diff --git a/.gitignore b/.gitignore index 6069922b..0b361641 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,7 @@ *.swp *.out node_modules/ +target/ +.idea +.npmrc diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..34e6d6c7 --- /dev/null +++ b/.npmignore @@ -0,0 +1,11 @@ +## generic files to ignore +*~ +*.lock +*.DS_Store +*.swp +*.out +node_modules/ +target/ + +.gitignore +test diff --git a/.travis.yml b/.travis.yml new file mode 100755 index 00000000..ca5f442d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: node_js +node_js: + - "14.18.0" diff --git a/base/core/core.js b/base/core/core.js index 8ea87394..c25797da 100755 --- a/base/core/core.js +++ b/base/core/core.js @@ -170,13 +170,17 @@ var Page = (function PageClosure() { var opList = new OperatorList(handler, self.pageIndex); - - handler.send('StartRenderPage', { - transparency: partialEvaluator.hasBlendModes(self.resources), - pageIndex: self.pageIndex - }); - partialEvaluator.getOperatorList(contentStream, self.resources, opList); - pageListPromise.resolve(opList); + try { + handler.send('StartRenderPage', { + transparency: partialEvaluator.hasBlendModes(self.resources), + pageIndex: self.pageIndex + }); + partialEvaluator.getOperatorList(contentStream, self.resources, opList); + pageListPromise.resolve(opList); + } + catch(e) { + pageListPromise.reject(e); + } }); var annotationsPromise = pdfManager.ensure(this, 'annotations'); diff --git a/base/core/crypto.js b/base/core/crypto.js index 11f4902f..c46e9281 100755 --- a/base/core/crypto.js +++ b/base/core/crypto.js @@ -553,17 +553,17 @@ var CipherTransformFactory = (function CipherTransformFactoryClosure() { function CipherTransformFactory(dict, fileId, password) { var filter = dict.get('Filter'); if (!isName(filter) || filter.name != 'Standard') - error('unknown encryption method'); + error('Error: unknown encryption method'); this.dict = dict; var algorithm = dict.get('V'); if (!isInt(algorithm) || (algorithm != 1 && algorithm != 2 && algorithm != 4)) - error('unsupported encryption algorithm'); + error('Error: unsupported encryption algorithm'); this.algorithm = algorithm; var keyLength = dict.get('Length') || 40; if (!isInt(keyLength) || keyLength < 40 || (keyLength % 8) !== 0) - error('invalid key length'); + error('Error: invalid key length'); // prepare keys var ownerPassword = stringToBytes(dict.get('O')).subarray(0, 32); var userPassword = stringToBytes(dict.get('U')).subarray(0, 32); diff --git a/base/core/fonts.js b/base/core/fonts.js index 41993a28..4aea6fda 100755 --- a/base/core/fonts.js +++ b/base/core/fonts.js @@ -2220,8 +2220,9 @@ var Font = (function FontClosure() { // name ArialBlack for example will be replaced by Helvetica. this.black = (name.search(/Black/g) != -1); + //MQZ Dec.03.2013 Disable font.remeasure // if at least one width is present, remeasure all chars when exists - this.remeasure = Object.keys(this.widths).length > 0; + //this.remeasure = Object.keys(this.widths).length > 0; this.encoding = properties.baseEncoding; this.noUnicodeAdaptation = true; diff --git a/base/core/obj.js b/base/core/obj.js index 10c2e98c..15951e92 100755 --- a/base/core/obj.js +++ b/base/core/obj.js @@ -198,7 +198,8 @@ var RefSetCache = (function RefSetCacheClosure() { }, has: function RefSetCache_has(ref) { - return ('R' + ref.num + '.' + ref.gen) in this.dict; + //MQZ. 03/08/2016 fix https://github.com/modesty/pdf2json/issues/26 + return !!ref ? ('R' + ref.num + '.' + ref.gen) in this.dict : false; }, put: function RefSetCache_put(ref, obj) { @@ -1000,6 +1001,7 @@ var XRef = (function XRefClosure() { throw e; } log('(while reading XRef): ' + e); + error(e); } if (recoveryMode) diff --git a/base/core/parser.js b/base/core/parser.js index bb2f1783..06f3e3e0 100755 --- a/base/core/parser.js +++ b/base/core/parser.js @@ -534,9 +534,8 @@ var Lexer = (function LexerClosure() { str += String.fromCharCode(ch); } } - if (str.length > 128) { - error('Warning: name token is longer than allowed by the spec: ' + - str.length); + if (str.length > 127) { + warn('Name token is longer than allowed by the spec: ' + str.length); } return new Name(str); }, diff --git a/base/core/worker.js b/base/core/worker.js index e1b22535..d98ba770 100755 --- a/base/core/worker.js +++ b/base/core/worker.js @@ -375,8 +375,9 @@ var WorkerMessageHandler = PDFJS.WorkerMessageHandler = { var start = Date.now(); page.extractTextContent().then(function(textContent) { promise.resolve(textContent); - log('text indexing: page=%d - time=%dms', pageNum, - Date.now() - start); + //MQZ 03/17/2016 comment out log + //log('text indexing: page=%d - time=%dms', pageNum, + // Date.now() - start); }, function (e) { // Skip errored pages promise.reject(e); diff --git a/base/display/api.js b/base/display/api.js index 344cb20f..fbe2285a 100755 --- a/base/display/api.js +++ b/base/display/api.js @@ -412,8 +412,13 @@ var PDFPageProxy = (function PDFPageProxyClosure() { return; } stats.time('Rendering'); - internalRenderTask.initalizeGraphics(transparency); - internalRenderTask.operatorListChanged(); + try {//MQZ. catch canvas drawing exceptions + internalRenderTask.initalizeGraphics(transparency); + internalRenderTask.operatorListChanged(); + } + catch(err) { + complete(err); + } }, function pageDisplayReadPromiseError(reason) { complete(reason); @@ -862,8 +867,8 @@ var WorkerTransport = (function WorkerTransportClosure() { promise.resolve({ data: buf, width: width, height: height}); }).bind(this); //MQZ. Oct.17.2012 - disable image drawing -// img.src = imageUrl; - img.src = 'data:image/jpeg;base64,' + img.btoa(imageUrl); + img.src = imageUrl; +// img.src = 'data:image/jpeg;base64,' + img.btoa(imageUrl); }); }, diff --git a/base/display/canvas.js b/base/display/canvas.js index f3a9dd07..55149342 100755 --- a/base/display/canvas.js +++ b/base/display/canvas.js @@ -918,12 +918,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { var rule = italic + ' ' + bold + ' ' + browserFontSize + 'px ' + typeface; this.ctx.font = rule; - //MQZ.Oct.23.2012. enable font detection - if (!fontObj.spaceWidth) { - var spaceId = isArray(fontObj.toFontChar) ? fontObj.toFontChar.indexOf(32) : -1; - fontObj.spaceWidth = (spaceId >= 0 && isArray(fontObj.widths)) ? fontObj.widths[spaceId] : 250; - } - this.ctx.setFont(fontObj); + this.ctx.setFont(fontObj); }, setTextRenderingMode: function CanvasGraphics_setTextRenderingMode(mode) { this.current.textRenderingMode = mode; @@ -1041,7 +1036,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { showText: function CanvasGraphics_showText(glyphs, skipTextSelection) { var ctx = this.ctx; var current = this.current; - var font = current.font; + var font = current.font || {}; var fontSize = current.fontSize; var fontSizeScale = current.fontSizeScale; var charSpacing = current.charSpacing; @@ -1100,19 +1095,20 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { this.processingType3 = null; } else { ctx.save(); - var tx = 0; //MQZ Dec.04.2013 handles leading word spacing + var tx = 0; if (wordSpacing !== 0) { - var firstGlyph = _.find(glyphs, function(g) { return _.isObject(g);}); + var firstGlyph = glyphs.filter(g => g && ('fontChar' in g || 'unicode' in g))[0]; if (firstGlyph && (firstGlyph.fontChar === ' ' || firstGlyph.unicode === ' ')) { - if (_.find(glyphs, function(g) { return _.isObject(g) && g.unicode !== ' ';})) { - current.x += wordSpacing * fontSize * textHScale; - } + tx = wordSpacing * fontSize * textHScale; } } + current.x += tx this.applyTextTransforms(); + current.x -= tx + // MQZ-GYJ Apr.20.2017 handles leading word spacing over var lineWidth = current.lineWidth; var a1 = current.textMatrix[0], b1 = current.textMatrix[1]; @@ -1167,9 +1163,6 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { scaledY = 0; } - //MQZ Dec.03.2013 Disable font.remeasure - font.remeasure = false; - if (font.remeasure && width > 0) { // some standard fonts may not have the exact width, trying to // rescale per character @@ -1274,7 +1267,12 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { } //MQZ Nov.28.2012 Adjust Text Positions, and also make it a string - var stGlyphs = []; + var stGlyphs = []; + var spaceWidth = font.spaceWidth; + if (!font.spaceWidth) { + var spaceId = isArray(font.toFontChar) ? font.toFontChar.indexOf(32) : -1; + spaceWidth = (spaceId >= 0 && isArray(font.widths)) ? font.widths[spaceId] : 250; + } for (var i = 0; i < arrLength; ++i) { var e = arr[i]; @@ -1289,7 +1287,8 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { } } else { - if (-e >= font.spaceWidth) { + //MQZ-GYJ. Apr.20.2017 split word when spacing is a positive number but very big + if (Math.abs(e) >= spaceWidth) { if (vertical) { current.y += spacingLength; } else { @@ -1536,6 +1535,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { var depth = this.current.paintFormXObjectDepth; do { this.restore(); + this.current.paintFormXObjectDepth--; // some pdf don't close all restores inside object // closing those for them } while (this.current.paintFormXObjectDepth >= depth); @@ -1619,6 +1619,10 @@ var CanvasGraphics = (function CanvasGraphicsClosure() { }, endGroup: function CanvasGraphics_endGroup(group) { + //MQZ. make sure endGroup is always invoked after beginGroup + if (this.groupLevel == 0) + this.beginGroup(group); + this.groupLevel--; var groupCtx = this.ctx; this.ctx = this.groupStack.pop(); diff --git a/base/display/metadata.js b/base/display/metadata.js index 029ad77f..6f62537d 100755 --- a/base/display/metadata.js +++ b/base/display/metadata.js @@ -57,7 +57,7 @@ var Metadata = PDFJS.Metadata = (function MetadataClosure() { var doc = this.metaDocument; var rdf = doc.documentElement; - if (rdf.nodeName.toLowerCase() !== 'rdf:rdf') { // Wrapped in + if (rdf && rdf.nodeName.toLowerCase() !== 'rdf:rdf') { // Wrapped in rdf = rdf.firstChild; while (rdf && rdf.nodeName.toLowerCase() !== 'rdf:rdf') rdf = rdf.nextSibling; diff --git a/base/shared/annotation.js b/base/shared/annotation.js index f7a23a6d..01830797 100755 --- a/base/shared/annotation.js +++ b/base/shared/annotation.js @@ -667,7 +667,7 @@ var LinkAnnotation = (function LinkAnnotationClosure() { // Lets URLs beginning with 'www.' default to using the 'http://' protocol. function addDefaultProtocolToUrl(url) { - if (url.indexOf('www.') === 0) { + if (url && url.indexOf('www.') === 0) { return ('http://' + url); } return url; diff --git a/base/shared/util.js b/base/shared/util.js index 65725ffa..3b4ebdd5 100755 --- a/base/shared/util.js +++ b/base/shared/util.js @@ -145,8 +145,11 @@ var OPS = PDFJS.OPS = { //MQZ.Mar.22 Disabled Operators (to prevent image painting & annotation default appearance) //paintJpegXObject, paintImageMaskXObject, paintImageMaskXObjectGroup, paintImageXObject, paintInlineImageXObject, paintInlineImageXObjectGroup -var NO_OPS = PDFJS.NO_OPS = [82, 83, 84, 85, 86, 87]; +var NO_OPS = PDFJS.NO_OPS = [83, 84, 86, 87]; var NO_OPS_RANGE = PDFJS.NO_OPS_RANGE = [78, 79, 80, 81]; //range pairs, all ops with each pair will be skipped. !important! +var HTMLElement = typeof HTMLElement === "undefined" ? + function() { } : HTMLElement; + // Use only for debugging purposes. This should not be used in any code that is // in mozilla master. @@ -188,10 +191,10 @@ function error(msg) { // Join the arguments into a single string for the lines below. msg = [].join.call(arguments, ' '); } else { - log('Error: ' + msg); + //log('Error: ' + msg); } - log(backtrace()); - PDFJS.LogManager.notify('error', msg); + //log(backtrace()); + //PDFJS.LogManager.notify('error', msg); throw new Error(msg); } @@ -1229,9 +1232,9 @@ function loadJpegStream(id, imageUrl, objs) { img.onload = (function loadJpegStream_onloadClosure() { objs.resolve(id, img); }); -// img.src = imageUrl; + img.src = imageUrl; //MQZ. Apr.09.2013 calls windows.btoa safely - img.src = 'data:image/jpeg;base64,' + img.btoa(imageUrl); +// img.src = 'data:image/jpeg;base64,' + img.btoa(imageUrl); } //MQZ Oct.18.2013 expose util methods @@ -1241,18 +1244,18 @@ nodeUtil.p2jinfo = info; nodeUtil.p2jwarn = warn; nodeUtil.p2jerror = error; nodeUtil.verbosity = function(verbo) { - if (!isNaN(verbo)) { + if (isNaN(verbo)) { + verbosity = WARNINGS; + } + else { if (verbo <= ERRORS) { - verbo = ERRORS; + verbosity = ERRORS; } else if (verbo >= INFOS) { - verbo = INFOS; + verbosity = INFOS; } - - verbosity = verbo; - } - else { - verbosity = ERRORS; + else + verbosity = verbo; } }; nodeUtil.verbosity(); diff --git a/bin/pdf2json b/bin/pdf2json index 9ccf33bc..8e9b6868 100755 --- a/bin/pdf2json +++ b/bin/pdf2json @@ -1,6 +1,4 @@ #!/usr/bin/env node -'use strict'; - -var P2JCMD = require('../lib/p2jcmd'); +const P2JCMD = require('../lib/p2jcmd'); new P2JCMD().start(); diff --git a/lib/imagedata.js b/lib/imagedata.js new file mode 100644 index 00000000..8f405b60 --- /dev/null +++ b/lib/imagedata.js @@ -0,0 +1,13 @@ +function ImageData(width, height) { + if (width && width instanceof Object) { + this.width = width.width; + this.height = width.height; + this.data = width.data; + } else { + this.width = width; + this.height = height; + this.data = new Uint8Array(width * height * 4); + } +}; + +module.exports = ImageData; diff --git a/lib/p2jcmd.js b/lib/p2jcmd.js index afade1b6..1e32a33f 100644 --- a/lib/p2jcmd.js +++ b/lib/p2jcmd.js @@ -1,145 +1,161 @@ -'use strict'; - -var fs = require('fs'), - path = require('path'), - _ = require('underscore'), - PDFParser = require("../pdfparser"), - pkInfo = require('../package.json'), - nodeUtil = require("util"), - async = require("async"); - -var optimist = require('optimist') - .usage('\nUsage: $0 -f|--file [-o|output_dir]') - .alias('v', 'version') - .describe('v', 'Display version.\n') - .alias('h', 'help') - .describe('h', 'Display brief help information.\n') - .alias('f', 'file') - .describe('f', '(required) Full path of input PDF file or a directory to scan for all PDF files. When specifying a PDF file name, it must end with .PDF, otherwise it would be treated as a input directory.\n') - .alias('o', 'output_dir') - .describe('o', '(optional) Full path of output directory, must already exist. Current JSON file in the output folder will be replaced when file name is same.\n') - .alias('s', 'silent') - .describe('s', '(optional) when specified, will only log errors, otherwise verbose.\n') - .alias('t', 'fieldTypes') - .describe('t', '(optional) when specified, will generate .fields.json that includes fields ids and types.\n') - .alias('c', 'content') - .describe('c', '(optional) when specified, will generate .content.txt that includes text content from PDF (Experimental).\n'); - -var argv = optimist.argv; - -var PDF2JSONUtil = (function () { - - var _continue = function(callback, err) { - if (err) - nodeUtil.p2jwarn(err); - if (_.isFunction(callback)) - callback(err); - }; - - var _generateFieldsTypesFile = function(data, callback) { - var pJSON = require("./pdffield").getAllFieldsTypes(data); - var fieldsTypesPath = this.outputPath.replace(".json", ".fields.json"); - var fieldTypesFile = this.outputFile.replace(".json", ".fields.json"); - - fs.writeFile(fieldsTypesPath, JSON.stringify(pJSON), function(err) { - if (err) { - nodeUtil.p2jwarn(this.inputFile + " => " + fieldTypesFile + " Exception: " + err); - } else { - nodeUtil.p2jinfo(this.inputFile + " => " + fieldTypesFile + " [" + this.outputDir + "] OK"); - } - callback(err, fieldTypesFile); - }.bind(this)); - }; - - var _generateRawTextContentFile = function(data, callback) { - var contentPath = this.outputPath.replace(".json", ".content.txt"); - var contentFile = this.outputFile.replace(".json", ".content.txt"); - - fs.writeFile(contentPath, this.pdfParser.getRawTextContent(), function(err) { - if (err) { - nodeUtil.p2jwarn(this.inputFile + " => " + contentFile + " Exception: " + err); - } else { - nodeUtil.p2jinfo(this.inputFile + " => " + contentFile + " [" + this.outputDir + "] OK"); - } - callback(err, contentFile); - }.bind(this)); - }; - - - var _writeOneJSON = function(data, callback) { - var pJSON = JSON.stringify({"formImage":data}); - - fs.writeFile(this.outputPath, pJSON, function(err) { - if(err) { - nodeUtil.p2jwarn(this.inputFile + " => " + this.outputFile + " Exception: " + err); - this.curProcessor.failedCount++; - } else { - nodeUtil.p2jinfo(this.inputFile + " => " + this.outputFile + " [" + this.outputDir + "] OK"); - this.curProcessor.successCount++; - } - callback(err, this.outputFile); - }.bind(this)); - }; - - var _parseOnePDF = function(callback) { - var processRawTextContent = _.has(argv, 'c'); - var self = this; - this.pdfParser = new PDFParser(null, processRawTextContent); - - this.pdfParser.on("pdfParser_dataReady", function (evtData) { - if ((!!evtData) && (!!evtData.data)) { - - var outputTasks = [function(cbFunc) { _writeOneJSON.call(self, evtData.data, cbFunc);}]; - if (_.has(argv, 't')) {//needs to generate fields.json file - outputTasks.push(function(cbFunc) {_generateFieldsTypesFile.call(self, evtData.data, cbFunc);}); - } - if (processRawTextContent) {//needs to generate content.txt file - outputTasks.push(function(cbFunc) {_generateRawTextContentFile.call(self, evtData.data, cbFunc);}); - } - - async.series(outputTasks, function(err, results){ - if (err) { - nodeUtil.p2jwarn("Error: " + err); - } else { - nodeUtil.p2jinfo("Output files OK", results); - } - - _continue.call(self, callback); - }); - } - else { - this.curProcessor.failedCount++; - _continue.call(this, callback, "Exception: empty parsing result - " + this.inputPath); - } - }.bind(this)); - - this.pdfParser.on("pdfParser_dataError", function (evtData) { - this.curProcessor.failedCount++; - var errMsg = "Exception: " + evtData.data; - _continue.call(this, callback, errMsg); - }.bind(this)); - - nodeUtil.p2jinfo("Transcoding " + this.inputFile + " to - " + this.outputPath); - this.pdfParser.loadPDF(this.inputPath, (_.has(argv, 's') ? 0 : 5)); - }; +const nodeUtil = require("util"), + fs = require("fs"), + path = require("path"), + {ParserStream, StringifyStream} = require("./parserstream"), + pkInfo = require("../package.json"), + PDFParser = require("../pdfparser"); + +const _PRO_TIMER = `${pkInfo.name}@${pkInfo.version} [${pkInfo.homepage}]`; + +const yargs = require('./p2jcmdarg') + .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.'); + +const argv = yargs.argv; +const ONLY_SHOW_VERSION = ('v' in argv); +const ONLY_SHOW_HELP = ('h' in argv); +const VERBOSITY_LEVEL = (('s' 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 INPUT_DIR_OR_FILE = argv.f; + +class PDFProcessor { + inputDir = null; + inputFile = null; + inputPath = null; + + outputDir = null; + outputFile = null; + outputPath = null; + + pdfParser = null; + curCLI = null; // constructor - var cls = function (inputDir, inputFile, curProcessor) { + constructor(inputDir, inputFile, curCLI) { // public, this instance copies this.inputDir = path.normalize(inputDir); this.inputFile = inputFile; - this.inputPath = this.inputDir + path.sep + this.inputFile; + this.inputPath = path.join(this.inputDir, this.inputFile); this.outputDir = path.normalize(argv.o || inputDir); this.outputFile = null; this.outputPath = null; this.pdfParser = null; - this.curProcessor = curProcessor; - }; + this.curCLI = curCLI; + } + + //private methods + #continue(callback, err) { + if (typeof callback === "function") + callback(err); + } + + #onPdfParserError(evtData, callback) { + this.curCLI.addResultCount(evtData.parserError); + this.#continue(callback, evtData.parserError); + } + + #generateMergedTextBlocksStream(callback) { + const outputStream = ParserStream.createOutputStream(this.outputPath.replace(".json", ".merged.json"), callback); + this.pdfParser.getMergedTextBlocksStream().pipe(new StringifyStream()).pipe(outputStream); + } + + #generateRawTextContentStream(callback) { + const outputStream = ParserStream.createOutputStream(this.outputPath.replace(".json", ".content.txt"), callback); + this.pdfParser.getRawTextContentStream().pipe(outputStream); + } + + #generateFieldsTypesStream(callback) { + const outputStream = ParserStream.createOutputStream(this.outputPath.replace(".json", ".fields.json"), callback); + this.pdfParser.getAllFieldsTypesStream().pipe(new StringifyStream()).pipe(outputStream); + } + + #processAdditionalStreams(callback) { + const outputTasks = []; + if (PROCESS_FIELDS_CONTENT) {//needs to generate fields.json file + outputTasks.push(cbFunc => this.#generateFieldsTypesStream(cbFunc)); + } + if (PROCESS_RAW_TEXT_CONTENT) {//needs to generate content.txt file + outputTasks.push(cbFunc => this.#generateRawTextContentStream(cbFunc)); + } + if (PROCESS_MERGE_BROKEN_TEXT_BLOCKS) {//needs to generate json file with merged broken text blocks + outputTasks.push(cbFunc => this.#generateMergedTextBlocksStream(cbFunc)); + } - cls.prototype.validateParams = function() { - var retVal = null; + let taskId = 0; + function sequenceTask() { + if (taskId < outputTasks.length) { + outputTasks[taskId]((err, ret) => { + this.curCLI.addStatusMsg(err, `[+]=> ${ret}`); + taskId++; + sequenceTask.call(this); + }); + } + else + this.#continue(callback); + } + sequenceTask.call(this); + } + + #onPrimarySuccess(callback) { + this.curCLI.addResultCount(); + this.#processAdditionalStreams(callback); + } + + #onPrimaryError(err, callback) { + this.curCLI.addResultCount(err); + callback(err); + } + + #parseOnePDFStream(callback) { + this.pdfParser = new PDFParser(null, PROCESS_RAW_TEXT_CONTENT); + this.pdfParser.on("pdfParser_dataError", evtData => this.#onPdfParserError(evtData, callback)); + + const outputStream = fs.createWriteStream(this.outputPath); + outputStream.on('finish', () => this.#onPrimarySuccess(callback)); + outputStream.on('error', err => this.#onPrimaryError(err, callback)); + + nodeUtil.p2jinfo("Transcoding Stream " + this.inputFile + " to - " + this.outputPath); + let inputStream = fs.createReadStream(this.inputPath, {bufferSize: 64 * 1024}); + inputStream.pipe(this.pdfParser.createParserStream()).pipe(new StringifyStream()).pipe(outputStream); + }; + + #parseOnePDF(callback) { + this.pdfParser = new PDFParser(null, PROCESS_RAW_TEXT_CONTENT); + this.pdfParser.on("pdfParser_dataError", evtData => this.#onPdfParserError(evtData, callback)); + + this.pdfParser.on("pdfParser_dataReady", evtData => { + fs.writeFile(this.outputPath, JSON.stringify(evtData), err => { + if(err) { + this.#onPrimaryError(err, callback); + } else { + this.#onPrimarySuccess(callback); + } + }); + }); + + nodeUtil.p2jinfo("Transcoding File " + this.inputFile + " to - " + this.outputPath); + this.pdfParser.loadPDF(this.inputPath, VERBOSITY_LEVEL); + } + + //public methods + validateParams() { + let retVal = null; if (!fs.existsSync(this.inputDir)) retVal = "Input error: input directory doesn't exist - " + this.inputDir + "."; @@ -149,20 +165,20 @@ var PDF2JSONUtil = (function () { retVal = "Input error: output directory doesn't exist - " + this.outputDir + "."; if (retVal != null) { - this.curProcessor.failedCount += 1; + this.curCLI.addResultCount(retVal); return retVal; } - var inExtName = path.extname(this.inputFile).toLowerCase(); + const inExtName = path.extname(this.inputFile).toLowerCase(); if (inExtName !== '.pdf') retVal = "Input error: input file name doesn't have pdf extention - " + this.inputFile + "."; else { this.outputFile = path.basename(this.inputPath, inExtName) + ".json"; - this.outputPath = this.outputDir + path.sep + this.outputFile; + this.outputPath = path.normalize(this.outputDir + "/" + this.outputFile); if (fs.existsSync(this.outputPath)) - nodeUtil.p2jinfo("Output file will be replaced - " + this.outputPath); + nodeUtil.p2jwarn("Output file will be replaced - " + this.outputPath); else { - var fod = fs.openSync(this.outputPath, "wx"); + let fod = fs.openSync(this.outputPath, "wx"); if (!fod) retVal = "Input error: can not write to " + this.outputPath; else { @@ -173,9 +189,9 @@ var PDF2JSONUtil = (function () { } return retVal; - }; + } - cls.prototype.destroy = function() { + destroy() { this.inputDir = null; this.inputFile = null; this.inputPath = null; @@ -186,71 +202,81 @@ var PDF2JSONUtil = (function () { this.pdfParser.destroy(); } this.pdfParser = null; - this.curProcessor = null; - }; + this.curCLI = null; + } - cls.prototype.processFile = function(callback) { - var validateMsg = this.validateParams(); + processFile(callback) { + let validateMsg = this.validateParams(); if (!!validateMsg) { - _continue.call(this, callback, validateMsg); + this.#continue(callback, validateMsg); } - else { - _parseOnePDF.call(this, callback); + else if (PROCESS_WITH_STREAM) { + this.#parseOnePDFStream(callback); + } + else { + this.#parseOnePDF(callback); } - }; + } - return cls; -})(); + getOutputFile = function() { + return path.join(this.outputDir, this.outputFile); + } +} -var PDFProcessor = (function () { - var _PRO_TIMER = pkInfo._id + " - " + pkInfo.homepage; +class PDFCLI { + inputCount = 0; + successCount = 0; + failedCount = 0; + warningCount = 0; + statusMsgs = []; // constructor - var cls = function () { + constructor() { this.inputCount = 0; this.successCount = 0; this.failedCount = 0; this.warningCount = 0; + this.statusMsgs = []; this.p2j = null; - }; + } - cls.prototype.initialize = function(){ + initialize() { console.time(_PRO_TIMER); - var retVal = true; + nodeUtil.verbosity(VERBOSITY_LEVEL); + let retVal = true; try { - if (_.has(argv, 'v')) { + if (ONLY_SHOW_VERSION) { console.log(pkInfo.version); retVal = false; } - else if (_.has(argv, 'h')) { - optimist.showHelp(); + else if (ONLY_SHOW_HELP) { + yargs.showHelp(); retVal = false; } - else if (!_.has(argv, 'f')) { - optimist.showHelp(); - console.log("-f is required to specify input directory or file."); + else if (!HAS_INPUT_DIR_OR_FILE) { + yargs.showHelp(); + console.error("-f is required to specify input directory or file."); retVal = false; } } catch(e) { - console.log("Exception: " + e.message); + console.error("Exception: " + e.message); retVal = false; } return retVal; - }; + } - cls.prototype.start = function(){ + start() { if (!this.initialize()) { console.timeEnd(_PRO_TIMER); return; } try { - console.log("\n" + pkInfo._id + " - " + pkInfo.homepage); - - var inputStatus = fs.statSync(argv.f); + console.log("\n" + _PRO_TIMER); + const inputStatus = fs.statSync(INPUT_DIR_OR_FILE); if (inputStatus.isFile()) { this.processOneFile(); } @@ -259,77 +285,86 @@ var PDFProcessor = (function () { } } catch(e) { - console.log("Exception: " + e.message); + console.error("Exception: " + e.message); console.timeEnd(_PRO_TIMER); } - }; - - cls.prototype.complete = function(err) { - var statusMsg = "\n%d input files\t%d success\t%d fail\t%d warning."; - console.log(statusMsg, this.inputCount, this.successCount, this.failedCount, this.warningCount); - - process.nextTick( function() { - console.timeEnd(_PRO_TIMER); - var exitCode = (this.inputCount === this.successCount) ? 0 : 1; - process.exit(exitCode); - }.bind(this)); - }; - - cls.prototype.processOneFile = function () { - var inputDir = path.dirname(argv.f); - var inputFile = path.basename(argv.f); + } + + complete() { + if (this.statusMsgs.length > 0) + console.log(this.statusMsgs); + console.log(`${this.inputCount} input files\t${this.successCount} success\t${this.failedCount} fail\t${this.warningCount} warning`); + process.nextTick( () => { + console.timeEnd(_PRO_TIMER); + // process.exit((this.inputCount === this.successCount) ? 0 : 1); + }); + } + + processOneFile() { + const inputDir = path.dirname(INPUT_DIR_OR_FILE); + const inputFile = path.basename(INPUT_DIR_OR_FILE); this.inputCount = 1; - this.p2j = new PDF2JSONUtil(inputDir, inputFile, this); - this.p2j.processFile(_.bind(this.complete, this)); - }; - - cls.prototype.processFiles = function(inputDir, files) { - var fId = 0; - this.p2j = new PDF2JSONUtil(inputDir, files[fId], this); + this.p2j = new PDFProcessor(inputDir, inputFile, this); + this.p2j.processFile( err => { + this.addStatusMsg(err, `${path.join(inputDir, inputFile)} => ${err ?? this.p2j.getOutputFile()}`); + this.complete(); + }); + } + + processFiles(inputDir, files) { + let fId = 0; + this.p2j = new PDFProcessor(inputDir, files[fId], this); this.p2j.processFile( function processPDFFile(err) { - if (err) { - this.complete(err); + this.addStatusMsg(err, `${path.join(inputDir, files[fId])} => ${err ?? this.p2j.getOutputFile()}`); + + fId++; + if (fId >= this.inputCount) { + this.complete(); } else { - fId++; - if (fId >= this.inputCount) { - this.complete(null); - } - else { - if (this.p2j) { - this.p2j.destroy(); - this.p2j = null; - } - - this.p2j = new PDF2JSONUtil(inputDir, files[fId], this); - this.p2j.processFile(processPDFFile.bind(this)); + if (this.p2j) { + this.p2j.destroy(); + this.p2j = null; } - } - }.bind(this)); - }; - cls.prototype.processOneDirectory = function () { - var inputDir = path.normalize(argv.f); + this.p2j = new PDFProcessor(inputDir, files[fId], this); + this.p2j.processFile(processPDFFile.bind(this)); + } + }.bind(this) ); + } - fs.readdir(inputDir, function(err, files) { - var _iChars = "!@#$%^&*()+=[]\\\';,/{}|\":<>?~`.-_ "; - var pdfFiles = files.filter(function(file) { - return file.substr(-4).toLowerCase() === '.pdf' && _iChars.indexOf(file.substr(0,1)) < 0; - }); + processOneDirectory() { + let inputDir = path.normalize(INPUT_DIR_OR_FILE); - this.inputCount = pdfFiles.length; - if (this.inputCount > 0) { - this.processFiles(inputDir, pdfFiles); + fs.readdir(inputDir, (err, files) => { + if (err) { + this.addStatusMsg(true, `[${inputDir}] - ${err.toString()}`); + this.complete(); } else { - console.log("No PDF files found. [" + inputDir + "]."); - this.complete(null); + const _iChars = "!@#$%^&*()+=[]\\\';,/{}|\":<>?~`.-_ "; + const pdfFiles = files.filter( file => file.substr(-4).toLowerCase() === '.pdf' && _iChars.indexOf(file.substr(0,1)) < 0 ); + + this.inputCount = pdfFiles.length; + if (this.inputCount > 0) { + this.processFiles(inputDir, pdfFiles); + } + else { + this.addStatusMsg(true, `[${inputDir}] - No PDF files found`); + this.complete(); + } } - }.bind(this)); - }; + }); + } + + addStatusMsg(error, oneMsg) { + this.statusMsgs.push(error ? `✗ Error - ${oneMsg}` : `✓ Success - ${oneMsg}`); + } - return cls; -})(); + addResultCount(error) { + (error ? this.failedCount++ : this.successCount++); + } +} -module.exports = PDFProcessor; +module.exports = PDFCLI; diff --git a/lib/p2jcmdarg.js b/lib/p2jcmdarg.js new file mode 100644 index 00000000..c7cc0084 --- /dev/null +++ b/lib/p2jcmdarg.js @@ -0,0 +1,136 @@ +class CLIArgParser { + args = []; + #aliases = {}; + + #usage = ""; + #argv = null; + + // constructor + constructor(args) { + if (Array.isArray(args)) + this.args = args; + } + + usage(usageMsg) { + this.#usage = usageMsg + '\n\nOptions:\n'; + return this; + } + + alias(key, name, description) { + this.#aliases[key] = {name, description}; + return this; + } + + showHelp() { + let helpMsg = this.#usage; + for (const [key, value] of Object.entries(this.#aliases)) { + helpMsg += `-${key},--${value.name}\t ${value.description}\n`; + } + console.log(helpMsg); + } + + get argv() { + return this.#argv ? this.#argv : this.#parseArgv(); + } + + static isNumber (x) { + if (typeof x === 'number') + return true; + if (/^0x[0-9a-f]+$/i.test(x)) + return true; + return /^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x); + } + + #setArg(key, val, argv) { + const value = CLIArgParser.isNumber(val) ? Number(val) : val; + this.#setKey(argv, key.split('.'), value); + + const aliasKey = (key in this.#aliases) ? [this.#aliases[key].name] : []; + if (aliasKey.length < 1) { + for (const [akey, avalue] of Object.entries(this.#aliases)) { + if (key === avalue.name) { + aliasKey.push(akey); + break; + } + } + } + aliasKey.forEach(x => this.#setKey(argv, x.split('.'), value)); + } + + #setKey(obj, keys, value) { + let o = obj; + for (let i = 0; i < keys.length-1; i++) { + let key = keys[i]; + if (key === '__proto__') return; + if (o[key] === undefined) o[key] = {}; + if (o[key] === Object.prototype || o[key] === Number.prototype + || o[key] === String.prototype) o[key] = {}; + if (o[key] === Array.prototype) o[key] = []; + o = o[key]; + } + + let key = keys[keys.length - 1]; + if (key === '__proto__') return; + if (o === Object.prototype || o === Number.prototype + || o === String.prototype) o = {}; + if (o === Array.prototype) o = []; + if (o[key] === undefined) { + o[key] = value; + } + else if (Array.isArray(o[key])) { + o[key].push(value); + } + else { + o[key] = [ o[key], value ]; + } + } + + #parseArgv() { + let aliases=this.#aliases, args = this.args; + let argv = {}; + + for (let i = 0; i < args.length; i++) { + let arg = args[i]; + + if (/^--.+/.test(arg)) { + let key = arg.match(/^--(.+)/)[1]; + let next = args[i + 1]; + if (next !== undefined && !/^-/.test(next)) { + this.#setArg(key, next, argv); + i++; + } + else if (/^(true|false)$/.test(next)) { + this.#setArg(key, next === 'true', argv); + i++; + } + else { + this.#setArg(key, true, argv); + } + } + else if (/^-[^-]+/.test(arg)) { + let key = arg.slice(-1)[0]; + if (key !== '-') { + if (args[i+1] && !/^(-|--)[^-]/.test(args[i+1])) { + this.#setArg(key, args[i+1], argv); + i++; + } + else if (args[i+1] && /^(true|false)$/.test(args[i+1])) { + this.#setArg(key, args[i+1] === 'true', argv); + i++; + } + else { + this.#setArg(key, true, argv); + } + } + } + else { + console.warn("Unknow CLI options:", arg); + } + } + + this.#argv = argv; + return argv; + } +} + +module.exports = new CLIArgParser(process.argv.slice(2)); \ No newline at end of file diff --git a/lib/parserstream.js b/lib/parserstream.js new file mode 100644 index 00000000..f54ef621 --- /dev/null +++ b/lib/parserstream.js @@ -0,0 +1,84 @@ +const {Transform, Readable} = require("stream"), + fs = require('fs'); + +class ParserStream extends Transform { + static createContentStream(jsonObj) { + const rStream = new Readable({objectMode: true}); + rStream.push(jsonObj); + rStream.push(null); + return rStream; + } + + static createOutputStream(outputPath, callback) { + const outputStream = fs.createWriteStream(outputPath); + outputStream.on('finish', () => { + callback(null, outputPath); + }); + outputStream.on('error', err => { + callback({"streamError": err}, outputPath); + }); + + return outputStream; + } + + #pdfParser = null; + #chunks = []; + #parsedData = {Pages:[]}; + #_flush_callback = null; + + constructor(pdfParser, options) { + super(options); + this.#pdfParser = pdfParser; + + this.#chunks = []; + + // this.#pdfParser.on("pdfParser_dataReady", evtData => { + // this.push(evtData); + // this.#_flush_callback(); + // this.emit('end', null); + // }); + this.#pdfParser.on("readable", meta => this.#parsedData = {...meta, Pages:[]}); + this.#pdfParser.on("data", page => { + if (!page) { + this.push(this.#parsedData); + this.#_flush_callback(); + } + else + this.#parsedData.Pages.push(page); + }); + } + + //implements transform stream + _transform(chunk, enc, callback) { + this.#chunks.push(Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk, enc)); + callback(); + } + + _flush(callback) { + this.#_flush_callback = callback; + this.#pdfParser.parseBuffer(Buffer.concat(this.#chunks)); + } + + _destroy() { + super.removeAllListeners(); + this.#pdfParser = null; + this.#chunks = []; + } +} + + +class StringifyStream extends Transform { + constructor(options) { + super(options); + + this._readableState.objectMode = false; + this._writableState.objectMode = true; + } + + _transform(obj, encoding, callback){ + this.push(JSON.stringify(obj)); + callback(); + } +} + +module.exports = {ParserStream, StringifyStream}; \ No newline at end of file diff --git a/lib/pdf.js b/lib/pdf.js index f5b5a703..37289666 100644 --- a/lib/pdf.js +++ b/lib/pdf.js @@ -1,16 +1,17 @@ -var nodeUtil = require("util"), - nodeEvents = require("events"), - fs = require('fs'), - _ = require('underscore'), - DOMParser = require('xmldom').DOMParser, - PDFCanvas = require('./pdfcanvas.js'), - PDFUnit = require('./pdfunit.js'), - PDFField = require('./pdffield.js'), - PDFAnno = require('./pdfanno.js'), - Image = require('./pdfimage.js'), - pkInfo = require('../package.json'); - -var _pdfjsFiles = [ +const nodeUtil = require("util"), + {EventEmitter} = require("events"), + {Blob} = require("buffer"), + fs = require("fs"), + DOMParser = require("@xmldom/xmldom").DOMParser, + PDFCanvas = require("./pdfcanvas"), + PDFUnit = require("./pdfunit"), + PDFField = require("./pdffield"), + PDFAnno = require("./pdfanno"), + Image = require("./pdfimage"), + pkInfo = require("../package.json"), + PDFFont = require("./pdffont"); + +const _pdfjsFiles = [ 'shared/util.js', 'shared/colorspace.js', 'shared/pattern.js', @@ -45,52 +46,55 @@ var _pdfjsFiles = [ 'display/api.js' ]; +const _PARSER_SIG = `${pkInfo.name}@${pkInfo.version} [${pkInfo.homepage}]`; + //////replacing HTML5 canvas with PDFCanvas (in-memory canvas) function createScratchCanvas(width, height) { return new PDFCanvas({}, width, height); } -var PDFJS = {}; -var globalScope = {console: console}; +const PDFJS = {}; +const globalScope = {console}; + +const _basePath = __dirname + "/../base/"; +let _fileContent = ''; -var _basePath = __dirname + "/../base/"; -var _fileContent = ''; -_.each(_pdfjsFiles, function(fielName, idx) { - _fileContent += fs.readFileSync(_basePath + fielName, 'utf8'); -}); +_pdfjsFiles.forEach( (fieldName, idx, arr) => _fileContent += fs.readFileSync(_basePath + fieldName, 'utf8') ); eval(_fileContent); ////////////////////////////////start of helper classes -var PDFPageParser = (function () { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFPageParser'; - - var RenderingStates = { - INITIAL: 0, - RUNNING: 1, - PAUSED: 2, - FINISHED: 3 +class PDFPageParser { + //static + static RenderingStates = { + INITIAL: 0, + RUNNING: 1, + PAUSED: 2, + FINISHED: 3 }; - - var _addField = function(field) { - if (!PDFField.isFormElement(field)) + + //public + id = -1; + pdfPage = null; + ptiParser = null; + scale = 0; + viewport = null; + renderingState = -1; + + Fields = null; + Boxsets = null; + ctxCanvas = null; + + #_addField (field) { + if (!PDFField.isFormElement(field)) { + nodeUtil.p2jwarn("NOT valid form element", field); return; + } - var oneField = new PDFField(field, this.viewport, this.Fields, this.Boxsets); + const oneField = new PDFField(field, this.viewport, this.Fields, this.Boxsets); oneField.processField(); - }; + } // constructor - var cls = function (pdfPage, id, scale, ptiParser) { - nodeEvents.EventEmitter.call(this); - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; - + constructor(pdfPage, id, scale, ptiParser) { // public, this instance copies this.id = id; this.pdfPage = pdfPage; @@ -101,169 +105,141 @@ var PDFPageParser = (function () { //leave out the 2nd parameter in order to use page's default rotation (for both portrait and landscape form) this.viewport = this.pdfPage.getViewport(this.scale); - this.renderingState = RenderingStates.INITIAL; + this.renderingState = PDFPageParser.RenderingStates.INITIAL; //form elements other than radio buttons and check boxes this.Fields = []; //form elements: radio buttons and check boxes this.Boxsets = []; - - //public properties - Object.defineProperty(this, 'width', { - get:function () { - return PDFUnit.toFormX(this.viewport.width); - }, - enumerable:true - }); - - Object.defineProperty(this, 'height', { - get:function () { - return PDFUnit.toFormY(this.viewport.height); - }, - enumerable:true - }); - }; - // inherit from event emitter - nodeUtil.inherits(cls, nodeEvents.EventEmitter); - - cls.prototype.destroy = function() { + this.ctxCanvas = {}; + } + + get width() { return PDFUnit.toFormX(this.viewport.width); } + get height() { return PDFUnit.toFormY(this.viewport.height); } + get HLines() { return this.ctxCanvas.HLines; } + get VLines() { return this.ctxCanvas.VLines; } + get Fills() { return this.ctxCanvas.Fills; } + get Texts() { return this.ctxCanvas.Texts; } + + destroy() { this.pdfPage.destroy(); - }; + this.pdfPage = null; - cls.prototype.getPagePoint = function(x, y) { + this.ptiParser = null; + this.Fields = null; + this.Boxsets = null; + this.ctxCanvas = null; + } + + getPagePoint(x, y) { return this.viewport.convertToPdfPoint(x, y); - }; + } - cls.prototype.parsePage = function(callback, errorCallBack) { - if (this.renderingState !== RenderingStates.INITIAL) - error('Must be in new state before drawing'); + parsePage(callback, errorCallBack) { + if (this.renderingState !== PDFPageParser.RenderingStates.INITIAL) { + errorCallBack('Must be in new state before drawing'); + return; + } - this.renderingState = RenderingStates.RUNNING; + this.renderingState = PDFPageParser.RenderingStates.RUNNING; - var canvas = createScratchCanvas(1, 1); - var ctx = canvas.getContext('2d'); + const canvas = createScratchCanvas(1, 1); + const ctx = canvas.getContext('2d'); - var self = this; function pageViewDrawCallback(error) { - self.renderingState = RenderingStates.FINISHED; + this.renderingState = PDFPageParser.RenderingStates.FINISHED; if (error) { - var errMsg = 'An error occurred while rendering the page ' + (self.id + 1) + - ':\n' + error.message + - ':\n' + error.stack; - errorCallBack(errMsg); + console.error(error); + errorCallBack(`Error: Page ${this.id + 1}: ${error.message}`); } else { - if (self.ptiParser) { - var extraFields = self.ptiParser.getFields(parseInt(self.id) + 1); - _.each(extraFields, _addField, self); + if (this.ptiParser) { + const extraFields = this.ptiParser.getFields(parseInt(this.id) + 1); + extraFields.forEach( field => this.#_addField(field) ); } + + this.ctxCanvas = ctx.canvas; + this.stats = this.pdfPage.stats; - _.extend(self, ctx.canvas); - self.stats = self.pdfPage.stats; - - nodeUtil.p2jinfo('page ' + (self.id + 1) + ' is rendered successfully.'); + nodeUtil.p2jinfo(`Success: Page ${this.id + 1}`); callback(); } } - var renderContext = { + const renderContext = { canvasContext:ctx, viewport:this.viewport }; - self.pdfPage.render(renderContext).then( - function pdfPageRenderCallback() { - self.pdfPage.getAnnotations().then(function(fields){ - _.each(fields, _addField, self); - pageViewDrawCallback(null); - }); + this.pdfPage.render(renderContext).then( + data => { + this.pdfPage.getAnnotations().then( + fields => { + fields.forEach(field => this.#_addField(field)); + pageViewDrawCallback.call(this, null); + }, + err => errorCallBack("pdfPage.getAnnotations error:" + err)); }, - function pdfPageRenderError(error) { - pageViewDrawCallback(error); - } + err => pageViewDrawCallback.call(this, err) ); - }; - - return cls; - -})(); + } +} ////////////////////////////////Start of Node.js Module -var PDFJSClass = (function () { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFJSClass'; - var _sufInfo = "_fieldInfo.xml"; - - var _getMetaDataString = function(metadata, key){ - var retVal = "unknown"; - if (metadata && metadata.has(key)) { - retVal = encodeURIComponent(metadata.get(key)); - } - return retVal; - }; +class PDFJSClass extends EventEmitter { + pdfDocument = null; + pages = null; + rawTextContents = null; - var _getMetaDataInt = function(metadata, key){ - var retVal = _getMetaDataString(metadata, key); - retVal = parseInt(retVal); - if (retVal == null || isNaN(retVal)) - retVal = -1; - return retVal; - }; + needRawText = null; // constructor - var cls = function (needRawText) { - nodeEvents.EventEmitter.call(this); - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; + constructor(needRawText) { + super(); // public, this instance copies this.pdfDocument = null; this.pages = []; - this.pageWidth = 0; this.rawTextContents = []; this.needRawText = needRawText; - }; - // inherit from event emitter - nodeUtil.inherits(cls, nodeEvents.EventEmitter); + } + + raiseErrorEvent(errMsg) { + console.error(errMsg); + process.nextTick( () => this.emit("pdfjs_parseDataError", errMsg)); + // this.emit("error", errMsg); + return errMsg; + } + + raiseReadyEvent(data) { + process.nextTick( () => this.emit("pdfjs_parseDataReady", data) ); + return data; + } + - cls.prototype.parsePDFData = function(arrayBuffer) { + parsePDFData(arrayBuffer, password) { this.pdfDocument = null; - var parameters = {password: '', data: arrayBuffer}; - var self = this; + const parameters = {password: password, data: arrayBuffer}; PDFJS.getDocument(parameters).then( - function getDocumentCallback(pdfDocument) { - self.load(pdfDocument, 1); - }, - function getDocumentError(message, exception) { - var errMsg = "An error occurred while parsing the PDF: " + message; - nodeUtil.p2jwarn(errMsg); - self.emit("pdfjs_parseDataError", errMsg); - }, - function getDocumentProgress(progressData) { - nodeUtil.p2jinfo("Loading progress: " + progressData.loaded / progressData.total + "%"); - } + pdfDocument => this.load(pdfDocument, 1), + error => this.raiseErrorEvent(error) ); }; - cls.prototype.tryLoadFieldInfoXML = function(pdfFilePath) { - var fieldInfoXMLPath = pdfFilePath.replace(".pdf", _sufInfo); + tryLoadFieldInfoXML(pdfFilePath) { + const _sufInfo = "_fieldInfo.xml"; + const fieldInfoXMLPath = pdfFilePath.replace(".pdf", _sufInfo); if ((fieldInfoXMLPath.indexOf(_sufInfo) < 1) || (!fs.existsSync(fieldInfoXMLPath))) { return; } nodeUtil.p2jinfo("About to load fieldInfo XML : " + fieldInfoXMLPath); - var PTIXmlParser = require('./ptixmlinject'); + let PTIXmlParser = require('./ptixmlinject'); this.ptiParser = new PTIXmlParser(); - this.ptiParser.parseXml(fieldInfoXMLPath, _.bind(function(err) { + this.ptiParser.parseXml(fieldInfoXMLPath, err => { if (err) { nodeUtil.p2jwarn("fieldInfo XML Error: " + JSON.stringify(err)); this.ptiParser = null; @@ -271,128 +247,188 @@ var PDFJSClass = (function () { else { nodeUtil.p2jinfo("fieldInfo XML loaded."); } - }, this)); - }; - - cls.prototype.load = function(pdfDocument, scale) { - this.pdfDocument = pdfDocument; - - var pagesCount = pdfDocument.numPages; - var pagePromises = []; - for (var i = 1; i <= pagesCount; i++) - pagePromises.push(pdfDocument.getPage(i)); - - var pagesPromise = PDFJS.Promise.all(pagePromises); - - nodeUtil.p2jinfo("PDF loaded. pagesCount = " + pagesCount); - - var self = this; - pagesPromise.then(function(promisedPages) { - self.parsePage(promisedPages, 0, 1.5); }); + } - pdfDocument.getMetadata().then(function(data) { - self.documentInfo = data.info; - self.metadata = data.metadata; - - self.parseMetaData(); - }); - }; - - cls.prototype.parseMetaData = function() { - var self = this; - - var info = self.documentInfo; - var metadata = self.metadata; - - var pdfTile = ""; - if (metadata && metadata.has('dc:title')) { - pdfTile = metadata.get('dc:title'); - } - else if (info && info['Title']) - pdfTile = info['Title']; - - var formAttr = {AgencyId:"", Name: "", MC: false, Max: 1, Parent:""}; - if (metadata) { - formAttr.AgencyId = _getMetaDataString(metadata, 'pdfx:agencyid'); - if (formAttr.AgencyId != "unknown") - pdfTile = formAttr.AgencyId; - - formAttr.Name = _getMetaDataString(metadata, 'pdfx:name'); - formAttr.MC = _getMetaDataString(metadata, 'pdfx:mc') === 'true'; - formAttr.Max = _getMetaDataInt(metadata, 'pdfx:max'); - formAttr.Parent = _getMetaDataInt(metadata, 'pdfx:parent'); - } - - self.emit("pdfjs_parseDataReady", {Transcoder: pkInfo._id, Agency:pdfTile, Id: formAttr}); - }; + load(pdfDocument, scale) { + this.pdfDocument = pdfDocument; - cls.prototype.parsePage = function(promisedPages, id, scale) { + return this.loadMetaData().then( + () => this.loadPages(), + error => this.raiseErrorEvent("loadMetaData error: " + error) + ); + } + + loadMetaData() { + return this.pdfDocument.getMetadata().then( + data => { + this.documentInfo = data.info; + this.metadata = data.metadata?.metadata ?? {}; + this.parseMetaData(); + }, + error => this.raiseErrorEvent("pdfDocument.getMetadata error: " + error) + ); + } + + parseMetaData() { + const meta = {Transcoder: _PARSER_SIG, Meta: {...this.documentInfo, Metadata: this.metadata}}; + this.raiseReadyEvent(meta); + this.emit("readable", meta); + } + + loadPages() { + const pagesCount = this.pdfDocument.numPages; + const pagePromises = []; + for (let i = 1; i <= pagesCount; i++) + pagePromises.push(this.pdfDocument.getPage(i)); + + const pagesPromise = PDFJS.Promise.all(pagePromises); + + nodeUtil.p2jinfo("PDF loaded. pagesCount = " + pagesCount); + + return pagesPromise.then( + promisedPages => this.parsePage(promisedPages, 0, 1.5), + error => this.raiseErrorEvent("pagesPromise error: " + error) + ); + } + + parsePage(promisedPages, id, scale) { nodeUtil.p2jinfo("start to parse page:" + (id+1)); - var self = this; - var pdfPage = promisedPages[id]; - var pageParser = new PDFPageParser(pdfPage, id, scale, this.ptiParser); + + const pdfPage = promisedPages[id]; + const pageParser = new PDFPageParser(pdfPage, id, scale, this.ptiParser); function continueOnNextPage() { nodeUtil.p2jinfo("complete parsing page:" + (id+1)); - if (id === (self.pdfDocument.numPages - 1) ) { - self.emit("pdfjs_parseDataReady", {Pages:self.pages, Width: self.pageWidth}); + if (id === (this.pdfDocument.numPages - 1) ) { + this.raiseReadyEvent({Pages:this.pages}); + //v1.1.2: signal end of parsed data with null + process.nextTick(() => this.raiseReadyEvent(null)); + this.emit("data", null); } else { - process.nextTick(function(){ - self.parsePage(promisedPages, ++id, scale); - }); + process.nextTick(() => this.parsePage(promisedPages, ++id, scale)); } - }; + } - pageParser.parsePage(function() { - if (!self.pageWidth) //get PDF width - self.pageWidth = pageParser.width; - - var page = {Height: pageParser.height, - HLines: pageParser.HLines, - VLines: pageParser.VLines, - Fills:pageParser.Fills, -//needs to keep current default output format, text content will output to a separate file if '-c' command line argument is set -// Content:pdfPage.getTextContent(), - Texts: pageParser.Texts, - Fields: pageParser.Fields, - Boxsets: pageParser.Boxsets - }; - - self.pages.push(page); - - if (self.needRawText) { - pdfPage.getTextContent().then(function(textContent){ - self.rawTextContents.push(textContent); - nodeUtil.p2jinfo("complete parsing raw text content:" + (id+1)); - continueOnNextPage(); - }); - } - else { - continueOnNextPage(); - } - }, function(errMsg) { - self.emit("pdfjs_parseDataError", errMsg); - }); - }; + pageParser.parsePage( + data => { + const page = { + Width: pageParser.width, + Height: pageParser.height, + HLines: pageParser.HLines, + VLines: pageParser.VLines, + Fills: pageParser.Fills, + //needs to keep current default output format, text content will output to a separate file if '-c' command line argument is set + // Content:pdfPage.getTextContent(), + Texts: pageParser.Texts, + Fields: pageParser.Fields, + Boxsets: pageParser.Boxsets, + Images: pageParser.Images + }; + + this.pages.push(page); + this.emit("data", page); + + if (this.needRawText) { + pdfPage.getTextContent().then( + textContent => { + this.rawTextContents.push(textContent); + nodeUtil.p2jinfo("complete parsing raw text content:" + (id+1)); + continueOnNextPage.call(this); + }, + error => this.raiseErrorEvent("pdfPage.getTextContent error: " + error) + ); + } + else { + continueOnNextPage.call(this); + } + }, + errMsg => this.raiseErrorEvent(errMsg) + ); + } - cls.prototype.getRawTextContent = function() { - var retVal = ""; + getRawTextContent() { + let retVal = ""; if (!this.needRawText) return retVal; - _.each(this.rawTextContents, function(textContent, index) { - _.each(textContent.bidiTexts, function(textObj, idx) { - retVal += textObj.str + "\r\n"; + this.rawTextContents.forEach( (textContent, index) => { + let prevText = null; + textContent.bidiTexts.forEach( (textObj, idx) => { + if (prevText) { + if (Math.abs(textObj.y - prevText.y) <= 9) { + prevText.str += textObj.str; + } + else { + retVal += prevText.str + "\r\n"; + prevText = textObj; + } + } + else { + prevText = textObj; + } + }); - retVal += "----------------Page (" + index + ") Break----------------\r\n"; + if (prevText) { + retVal += prevText.str; + } + retVal += "\r\n----------------Page (" + index + ") Break----------------\r\n"; }); return retVal; - }; - - cls.prototype.destroy = function() { + } + + getAllFieldsTypes() { + return PDFField.getAllFieldsTypes({Pages:this.pages || []}); + } + + getMergedTextBlocksIfNeeded() { + for (let p = 0; p < this.pages.length; p++) { + let prevText = null; + let page = this.pages[p]; + + page.Texts.sort(PDFFont.compareBlockPos); + page.Texts = page.Texts.filter( (t, j) => { + let isDup = (j > 0) && PDFFont.areDuplicateBlocks(page.Texts[j-1], t); + if (isDup) { + nodeUtil.p2jinfo("skipped: dup text block: " + decodeURIComponent(t.R[0].T)); + } + return !isDup; + }); + + for (let i = 0; i < page.Texts.length; i++) { + let text = page.Texts[i]; + + if (prevText) { + if (PDFFont.areAdjacentBlocks(prevText, text) && PDFFont.haveSameStyle(prevText, text)) { + let preT = decodeURIComponent(prevText.R[0].T); + let curT = decodeURIComponent(text.R[0].T); + + prevText.R[0].T += text.R[0].T; + prevText.w += text.w; + text.merged = true; + + let mergedText = decodeURIComponent(prevText.R[0].T); + nodeUtil.p2jinfo(`merged text block: ${preT} + ${curT} => ${mergedText}`); + prevText = null; //yeah, only merge two blocks for now + } + else { + prevText = text; + } + } + else { + prevText = text; + } + } + + page.Texts = page.Texts.filter( t => !t.merged); + } + + return {Pages:this.pages}; + } + + destroy() { this.removeAllListeners(); if (this.pdfDocument) @@ -401,10 +437,9 @@ var PDFJSClass = (function () { this.pages = null; this.rawTextContents = null; - }; + } - return cls; -})(); +} module.exports = PDFJSClass; -////////////////////////////////End of Node.js Module + diff --git a/lib/pdfanno.js b/lib/pdfanno.js index dd73abe1..b610278d 100644 --- a/lib/pdfanno.js +++ b/lib/pdfanno.js @@ -1,184 +1,157 @@ -var nodeUtil = require("util"), - _ = require("underscore"), - PDFUnit = require('./pdfunit.js'); - -var PDFAnno = (function PDFAnnoClosure() { - 'use strict'; - - //BEGIN - MQZ 9/19/2012. Helper functions to parse acroForm elements - function setupRadioButton(annotation, item) { - var asName = ''; - //PDF Spec p.689: parent item's DV holds the item's value that is selected by default - var po = annotation.get('Parent'); - if (po) { - po.forEach(function(key, val){ - if (key === 'DV') { - asName = val.name || ''; - } - else if (key === 'TU') { - //radio buttons use the alternative text from the parent - item.alternativeText = val; - } else if( key == 'TM') { - item.alternativeID = val; - } - }); - } - - //PDF Spec p.606: get appearance dictionary - var ap = annotation.get('AP'); - //PDF Spec p.614 get normal appearance - var nVal = ap.get('N'); - //PDF Spec p.689 - nVal.forEach(function (key, value) { - if (key.toLowerCase() != "off") { - //value if selected - item.value = key; //export value - item.checked = (key === asName); //initial selection state +const nodeUtil = require("util"); + +//BEGIN - MQZ 9/19/2012. Helper functions to parse acroForm elements +function setupRadioButton(annotation, item) { + let asName = ''; + //PDF Spec p.689: parent item's DV holds the item's value that is selected by default + let po = annotation.get('Parent'); + if (po) { + po.forEach(function(key, val){ + if (key === 'DV') { + asName = val.name || ''; + } + else if (key === 'TU') { + //radio buttons use the alternative text from the parent + item.alternativeText = val; + } else if( key == 'TM') { + item.alternativeID = val; } }); - - if (!item.value) - item.value = "off"; } - function setupPushButton(annotation, item) { - //button label: PDF Spec p.640 - var mk = annotation.get('MK'); - item.value = mk.get('CA') || ''; - - //button action: url when mouse up: PDF Spec:p.642 - item.FL = ""; - var ap = annotation.get('A'); - if (ap) { - var sp = ap.get('S'); - item.FL = ap.get(sp.name); + //PDF Spec p.606: get appearance dictionary + let ap = annotation.get('AP'); + //PDF Spec p.614 get normal appearance + let nVal = ap.get('N'); + //PDF Spec p.689 + nVal.forEach(function (key, value) { + if (key.toLowerCase() != "off") { + //value if selected + item.value = key; //export value + item.checked = (key === asName); //initial selection state } - } + }); - function setupCheckBox(annotation, item) { - //PDF Spec p.606: get appearance dictionary - var ap = annotation.get('AP'); - //PDF Spec p.614 get normal appearance - var nVal = ap.get('N'); - - //PDF Spec p.689 - var i = 0; - nVal.forEach(function (key, value) { - i++; - if (i == 1) //initial selection state - item.value = key; - }); - } + if (!item.value) + item.value = "off"; +} - function setupDropDown(annotation, item) { - //PDF Spec p.688 - item.value = annotation.get('Opt') || []; +function setupPushButton(annotation, item) { + //button label: PDF Spec p.640 + let mk = annotation.get('MK'); + if(mk) { + item.value = mk.get('CA') || ''; } - function setupFieldAttributes(annotation, item) { - //MQZ. Jan.03.2013. additional-actions dictionary - //PDF Spec P.648. 8.5.2. Trigger Events - var aa = annotation.get('AA'); - if (!aa) { - return; - } - - //PDF Spec p.651 get format dictionary - var nVal = aa.get('F'); - if (!nVal) { - nVal = aa.get('K'); - if (!nVal) - return; - } - - nVal.forEach(function (key, value) { - if (key === "JS") { - processFieldAttribute(value, item); - } - }); + //button action: url when mouse up: PDF Spec:p.642 + item.FL = ""; + let ap = annotation.get('A'); + if (ap) { + let sp = ap.get('S'); + item.FL = ap.get(sp.name); + } +} + +function setupCheckBox(annotation, item) { + //PDF Spec p.606: get appearance dictionary + let ap = annotation.get('AP'); + //PDF Spec p.614 get normal appearance + let nVal = ap.get('N'); + + //PDF Spec p.689 + let i = 0; + nVal.forEach(function (key, value) { + i++; + if (i == 1) //initial selection state + item.value = key; + }); +} + +function setupDropDown(annotation, item) { + //PDF Spec p.688 + item.value = annotation.get('Opt') || []; +} + +function setupFieldAttributes(annotation, item) { + //MQZ. Jan.03.2013. additional-actions dictionary + //PDF Spec P.648. 8.5.2. Trigger Events + let aa = annotation.get('AA'); + if (!aa) { + return; } - var AFSpecial_Format = ['zip', 'zip', 'phone', 'ssn', '']; -// var AFNumber_Format = ['nDec', 'sepStyle', 'negStyle', 'currStyle', 'strCurrency', 'bCurrencyPrepend']; - //– nDec is the number of places after the decimal point; - //– sepStyle is an integer denoting whether to use a separator or not. If sepStyle=0, use commas. If sepStyle=1, do not separate. - //– negStyle is the formatting used for negative numbers: 0 = MinusBlack, 1 = Red, 2 = ParensBlack, 3 = ParensRed - //– currStyle is the currency style - not used - //- strCurrency is the currency symbol - //– bCurrencyPrepend -// var AFDate_FormatEx = ["m/d", "m/d/yy", "mm/dd/yy", "mm/yy", "d-mmm", "d-mmm-yy", "dd-mmm-yy", "yymm-dd", "mmm-yy", "mmmm-yy", "mmm d, yyyy", "mmmm d, yyyy", "m/d/yy h:MM tt", "m/d/yy HH:MM"]; - - function processFieldAttribute(jsFuncName, item) { - if (item.hasOwnProperty('TName')) - return; - - var vParts = jsFuncName.split('('); - if (vParts.length !== 2) + //PDF Spec p.651 get format dictionary + let nVal = aa.get('F'); + if (!nVal) { + nVal = aa.get('K'); + if (!nVal) return; + } - var funcName = vParts[0]; - var funcParam = vParts[1].split(')')[0]; - - switch (funcName) { - case 'AFSpecial_Format': - item.TName = AFSpecial_Format[Number(funcParam)]; - break; - case 'AFNumber_Format': + nVal.forEach(function (key, value) { + if (key === "JS") { + processFieldAttribute(value, item); + } + }); +} + +const AFSpecial_Format = ['zip', 'zip', 'phone', 'ssn', '']; +// let AFNumber_Format = ['nDec', 'sepStyle', 'negStyle', 'currStyle', 'strCurrency', 'bCurrencyPrepend']; +//– nDec is the number of places after the decimal point; +//– sepStyle is an integer denoting whether to use a separator or not. If sepStyle=0, use commas. If sepStyle=1, do not separate. +//– negStyle is the formatting used for negative numbers: 0 = MinusBlack, 1 = Red, 2 = ParensBlack, 3 = ParensRed +//– currStyle is the currency style - not used +//- strCurrency is the currency symbol +//– bCurrencyPrepend +// let AFDate_FormatEx = ["m/d", "m/d/yy", "mm/dd/yy", "mm/yy", "d-mmm", "d-mmm-yy", "dd-mmm-yy", "yymm-dd", "mmm-yy", "mmmm-yy", "mmm d, yyyy", "mmmm d, yyyy", "m/d/yy h:MM tt", "m/d/yy HH:MM"]; + +function processFieldAttribute(jsFuncName, item) { + if (item.hasOwnProperty('TName')) + return; + + if(!jsFuncName.split) + return; + + let vParts = jsFuncName.split('('); + if (vParts.length !== 2) + return; + + let funcName = vParts[0]; + let funcParam = vParts[1].split(')')[0]; + + switch (funcName) { + case 'AFSpecial_Format': + item.TName = AFSpecial_Format[Number(funcParam)]; + break; + case 'AFNumber_Format': // nfs = funcParam.split(','); //set the Money fields to use the Number type with no decimal places after, no commas, and bCurrencyPrepend is set as true; (o use a negative sign (fits the PDF layout and our print formatting as well). // if (nfs[0] === '0' && nfs[1] === '1' && nfs[5]) // item.TName = 'money'; // else - item.TName = 'number'; - break; - case 'AFDate_FormatEx': - item.TName = 'date'; - item.MV = funcParam.replace(/^'+|^"+|'+$|"+$/g,''); //mask value - break; - case 'AFSpecial_KeystrokeEx': //special format: "arbitrary mask" - var maskValue = funcParam.replace(/^'+|^"+|'+$|"+$/g,''); //mask value - if ((!!maskValue) && maskValue.length > 0 && maskValue.length < 64) { - item.TName = 'mask'; //fixed length input - item.MV = maskValue; - } - break; - case 'AFPercent_Format': - item.TName = 'percent'; //funcParam => 2, 0, will specified how many decimal places - break; - } + item.TName = 'number'; + break; + case 'AFDate_FormatEx': + item.TName = 'date'; + item.MV = funcParam.replace(/^'+|^"+|'+$|"+$/g,''); //mask value + break; + case 'AFSpecial_KeystrokeEx': //special format: "arbitrary mask" + let maskValue = funcParam.replace(/^'+|^"+|'+$|"+$/g,''); //mask value + if ((!!maskValue) && maskValue.length > 0 && maskValue.length < 64) { + item.TName = 'mask'; //fixed length input + item.MV = maskValue; + } + break; + case 'AFPercent_Format': + item.TName = 'percent'; //funcParam => 2, 0, will specified how many decimal places + break; } +} - //END - MQZ 9/19/2012. Helper functions to parse acroForm elements - - // private static - var _nextId = 1; - var _name = 'PDFAnno'; - - // constructor - var cls = function (field, viewport, Fields, Boxsets) { - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function () { - return _id; - }; - this.get_name = function () { - return _name + _id; - }; - }; - - cls.prototype.clean = function () { - delete this.get_id; - delete this.get_name; - }; - - // public static - cls.get_nextId = function () { - return _name + _nextId; - }; - - cls.processAnnotation = function (annotation, item) { +//END - MQZ 9/19/2012. Helper functions to parse acroForm elements + +class PDFAnno { + static processAnnotation(annotation, item) { if (item.fieldType == 'Btn') { //PDF Spec p.675 if (item.fieldFlags & 32768) { setupRadioButton(annotation, item); @@ -196,10 +169,11 @@ var PDFAnno = (function PDFAnnoClosure() { else if (item.fieldType == 'Tx') { setupFieldAttributes(annotation, item); } - }; - - return cls; -})(); + else { + nodeUtil.p2jwarn("Unknown fieldType: ", item); + } + } +} module.exports = PDFAnno; diff --git a/lib/pdfcanvas.js b/lib/pdfcanvas.js index 2d227762..56ca97bd 100644 --- a/lib/pdfcanvas.js +++ b/lib/pdfcanvas.js @@ -1,124 +1,202 @@ -'use strict'; -var nodeUtil = require("util"), - _ = require('underscore'), +const nodeUtil = require("util"), PDFLine = require('./pdfline'), PDFFill = require('./pdffill'), - PDFFont = require('./pdffont'); - -(function () { - // private static - var _nextId = 1; - var _name = 'PDFCanvas'; - - // alias some functions to make (compiled) code shorter - var m = Math; - var mr = m.round; - var ms = m.sin; - var mc = m.cos; - var abs = m.abs; - var sqrt = m.sqrt; - - // precompute "00" to "FF" - var dec2hex = []; - for (var i = 0; i < 16; i++) { - for (var j = 0; j < 16; j++) { - dec2hex[i * 16 + j] = i.toString(16) + j.toString(16); - } - } + PDFFont = require('./pdffont'), + ImageData = require('./imagedata'); - function createMatrixIdentity() { - return [ - [1, 0, 0], - [0, 1, 0], - [0, 0, 1] - ]; +// alias some functions to make (compiled) code shorter +const {round: mr, sin: ms, cos: mc, abs, sqrt} = Math; + +// precompute "00" to "FF" +const dec2hex = []; +for (let i = 0; i < 16; i++) { + for (let j = 0; j < 16; j++) { + dec2hex[i * 16 + j] = i.toString(16) + j.toString(16); } +} - function matrixMultiply(m1, m2) { - var result = createMatrixIdentity(); +function createMatrixIdentity() { + return [ + [1, 0, 0], + [0, 1, 0], + [0, 0, 1] + ]; +} - for (var x = 0; x < 3; x++) { - for (var y = 0; y < 3; y++) { - var sum = 0; +function matrixMultiply(m1, m2) { + let result = createMatrixIdentity(); - for (var z = 0; z < 3; z++) { - sum += m1[x][z] * m2[z][y]; - } + for (let x = 0; x < 3; x++) { + for (let y = 0; y < 3; y++) { + let sum = 0; - result[x][y] = sum; - } - } - return result; - } - - function copyState(o1, o2) { - o2.fillStyle = o1.fillStyle; - o2.lineCap = o1.lineCap; - o2.lineJoin = o1.lineJoin; - o2.lineWidth = o1.lineWidth; - o2.miterLimit = o1.miterLimit; - o2.shadowBlur = o1.shadowBlur; - o2.shadowColor = o1.shadowColor; - o2.shadowOffsetX = o1.shadowOffsetX; - o2.shadowOffsetY = o1.shadowOffsetY; - o2.strokeStyle = o1.strokeStyle; - o2.globalAlpha = o1.globalAlpha; - o2.arcScaleX_ = o1.arcScaleX_; - o2.arcScaleY_ = o1.arcScaleY_; - o2.lineScale_ = o1.lineScale_; - o2.dashArray = o1.dashArray; - } - - function processStyle(styleString) { - var str, alpha = 1; - - styleString = String(styleString); - if (styleString.substring(0, 3) == 'rgb') { - var start = styleString.indexOf('(', 3); - var end = styleString.indexOf(')', start + 1); - var guts = styleString.substring(start + 1, end).split(','); - - str = '#'; - for (var i = 0; i < 3; i++) { - str += dec2hex[Number(guts[i])]; + for (let z = 0; z < 3; z++) { + sum += m1[x][z] * m2[z][y]; } - if (guts.length == 4 && styleString.substr(3, 1) == 'a') { - alpha = guts[3]; - } - } else { - str = styleString; + result[x][y] = sum; + } + } + return result; +} + +function copyState(o1, o2) { + o2.fillStyle = o1.fillStyle; + o2.lineCap = o1.lineCap; + o2.lineJoin = o1.lineJoin; + o2.lineWidth = o1.lineWidth; + o2.miterLimit = o1.miterLimit; + o2.shadowBlur = o1.shadowBlur; + o2.shadowColor = o1.shadowColor; + o2.shadowOffsetX = o1.shadowOffsetX; + o2.shadowOffsetY = o1.shadowOffsetY; + o2.strokeStyle = o1.strokeStyle; + o2.globalAlpha = o1.globalAlpha; + o2.arcScaleX_ = o1.arcScaleX_; + o2.arcScaleY_ = o1.arcScaleY_; + o2.lineScale_ = o1.lineScale_; + o2.dashArray = o1.dashArray; +} + +function processStyle(styleString) { + let str, alpha = 1; + + styleString = String(styleString); + if (styleString.substring(0, 3) == 'rgb') { + let start = styleString.indexOf('(', 3); + let end = styleString.indexOf(')', start + 1); + let guts = styleString.substring(start + 1, end).split(','); + + str = '#'; + for (let i = 0; i < 3; i++) { + str += dec2hex[Number(guts[i])]; } - return {color:str, alpha:alpha}; + if (guts.length == 4 && styleString.substr(3, 1) == 'a') { + alpha = guts[3]; + } + } else { + str = styleString; } - function processLineCap(lineCap) { - switch (lineCap) { - case 'butt': - return 'flat'; - case 'round': - return 'round'; - case 'square': - default: - return 'square'; + return {color:str, alpha:alpha}; +} + +function processLineCap(lineCap) { + switch (lineCap) { + case 'butt': + return 'flat'; + case 'round': + return 'round'; + case 'square': + default: + return 'square'; + } +} + +// Helper function that takes the already fixed cordinates. +function bezierCurveToHelper(self, cp1, cp2, p) { + self.currentPath_.push({ + type:'bezierCurveTo', + cp1x:cp1.x, + cp1y:cp1.y, + cp2x:cp2.x, + cp2y:cp2.y, + x:p.x, + y:p.y + }); + self.currentX_ = p.x; + self.currentY_ = p.y; +} + +function matrixIsFinite(m) { + for (let j = 0; j < 3; j++) { + for (let k = 0; k < 2; k++) { + if (!isFinite(m[j][k]) || isNaN(m[j][k])) { + return false; + } + } + } + + function addImage(image, images) { + if(images.indexOf(image) !== -1) { + return; } + if(images.find(function(im) { + if (im.src) { + return im.src === image.src; + } else if ( + image.data && + im.data && + im.data.length === image.data.length && + im.width === image.width && + im.height === image.height + ) { + if (image.data === im.data) { + return true; + } + return im.data.find(function(v,i) { + return v !== image.data[i]; + }) === undefined; + } else { + return false; + } + }) !== undefined) { + return; + } + images.push(image); } - /** - * This class implements CanvasRenderingContext2D interface as described by - * the WHATWG. - * @param {HTMLElement} surfaceElement The element that the 2D context should - * be associated with - */ - function CanvasRenderingContext2D_(canvasTarget, scaledWidth, scaledHeight) { - // private - var _id = _nextId++; +function setM(ctx, m, updateLineScale) { + if (!matrixIsFinite(m)) { + return; + } + ctx.m_ = m; + + if (updateLineScale) { + // Get the line scale. + // Determinant of this.m_ means how much the area is enlarged by the + // transformation. So its square root can be used as a scale factor + // for width. + let det = m[0][0] * m[1][1] - m[0][1] * m[1][0]; + ctx.lineScale_ = sqrt(abs(det)); + } +} - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; +class CanvasPattern_ { + constructor() { + } +} +// Gradient / Pattern Stubs +class CanvasGradient_ { + constructor(aType) { + this.type_ = aType; + this.x0_ = 0; + this.y0_ = 0; + this.r0_ = 0; + this.x1_ = 0; + this.y1_ = 0; + this.r1_ = 0; + this.colors_ = []; + } + addColorStop(aOffset, aColor) { + aColor = processStyle(aColor); + this.colors_.push({offset:aOffset, + color:aColor.color, + alpha:aColor.alpha}); + } +} + + +/** + * This class implements CanvasRenderingContext2D interface as described by + * the WHATWG. + * @param {HTMLElement} surfaceElement The element that the 2D context should + * be associated with + */ +class CanvasRenderingContext2D_ { + constructor(canvasTarget, scaledWidth, scaledHeight) { this.m_ = createMatrixIdentity(); this.mStack_ = []; @@ -136,14 +214,16 @@ var nodeUtil = require("util"), this.miterLimit = 1; this.globalAlpha = 1; - if (!_.has(canvasTarget, "HLines") || !_.isArray(canvasTarget.HLines)) + if (!("HLines" in canvasTarget) || !Array.isArray(canvasTarget.HLines)) canvasTarget.HLines = []; - if (!_.has(canvasTarget, "VLines") || !_.isArray(canvasTarget.VLines)) + if (!("VLines" in canvasTarget) || !Array.isArray(canvasTarget.VLines)) canvasTarget.VLines = []; - if (!_.has(canvasTarget, "Fills") || !_.isArray(canvasTarget.Fills)) + if (!("Fills" in canvasTarget) || !Array.isArray(canvasTarget.Fills)) canvasTarget.Fills = []; - if (!_.has(canvasTarget, "Texts") || !_.isArray(canvasTarget.Texts)) + if (!("Texts" in canvasTarget) || !Array.isArray(canvasTarget.Texts)) canvasTarget.Texts = []; + if (!_.has(canvasTarget, "Images") || !_.isArray(canvasTarget.Images)) + canvasTarget.Images = []; this.canvas = canvasTarget; @@ -158,139 +238,129 @@ var nodeUtil = require("util"), } //private helper methods - var _drawPDFLine = function(p1, p2, lineWidth, color) { - var dashedLine = _.isArray(this.dashArray) && (this.dashArray.length > 1); - var pL = new PDFLine(p1.x, p1.y, p2.x, p2.y, lineWidth, color, dashedLine); + #drawPDFLine(p1, p2, lineWidth, color) { + let dashedLine = Array.isArray(this.dashArray) && (this.dashArray.length > 1); + let pL = new PDFLine(p1.x, p1.y, p2.x, p2.y, lineWidth, color, dashedLine); pL.processLine(this.canvas); - }; + } - var _drawPDFFill = function(cp, min, max, color) { - var width = max.x - min.x; - var height = max.y - min.y; - var pF = new PDFFill(cp.x, cp.y, width, height, color); + #drawPDFFill(cp, min, max, color) { + let width = max.x - min.x; + let height = max.y - min.y; + let pF = new PDFFill(cp.x, cp.y, width, height, color); pF.processFill(this.canvas); - }; + } - var _needRemoveRect = function(x, y, w, h) { - var retVal = (Math.abs(w - Math.abs(h)) < 1 && w < 13); + #needRemoveRect(x, y, w, h) { + let retVal = (Math.abs(w - Math.abs(h)) < 1 && w < 13); if (retVal) { nodeUtil.p2jinfo("Skipped: tiny rect: w=" + w + ", h=" + h); } return retVal; - }; - - var contextPrototype = CanvasRenderingContext2D_.prototype; + } - contextPrototype.getContext = function(ctxType) { + getContext(ctxType) { return (ctxType === "2d") ? this : null; - }; + } - contextPrototype.setLineDash = function(lineDash) { + setLineDash(lineDash) { this.dashArray = lineDash; - }; + } - contextPrototype.getLineDash= function() { + getLineDash() { return this.dashArray; - }; + } - contextPrototype.fillText = function(text, x, y, maxWidth, fontSize) { + fillText(text, x, y, maxWidth, fontSize) { if (!text || text.trim().length < 1) return; - var p = this.getCoords_(x, y); + let p = this.getCoords_(x, y); - var a = processStyle(this.fillStyle || this.strokeStyle); - var color = (!!a) ? a.color : '#000000'; + let a = processStyle(this.fillStyle || this.strokeStyle); + let color = (!!a) ? a.color : '#000000'; this.currentFont.processText(p, text, maxWidth, color, fontSize, this.canvas, this.m_); }; - contextPrototype.strokeText = function(text, x, y, maxWidth) { + strokeText(text, x, y, maxWidth) { //MQZ. 10/23/2012, yeah, no hollow text for now this.fillText(text, x, y, maxWidth); - }; + } + + measureText(text) { + console.warn("to be implemented: contextPrototype.measureText - ", text); + let chars = text.length || 1; + return {width: chars * (this.currentFont.spaceWidth || 5)}; + } - contextPrototype.setFont = function(fontObj) { - if ((!!this.currentFont) && _.isFunction(this.currentFont.clean)) { + setFont(fontObj) { + if ((!!this.currentFont) && typeof(this.currentFont.clean) === "function") { this.currentFont.clean(); this.currentFont = null; } this.currentFont = new PDFFont(fontObj); - }; + } - contextPrototype.clearRect = function () { - }; + clearRect() { + console.warn("to be implemented: contextPrototype.clearRect"); + } - contextPrototype.beginPath = function () { + beginPath() { // TODO: Branch current matrix so that save/restore has no effect // as per safari docs. this.currentPath_ = []; - }; + } - contextPrototype.moveTo = function (aX, aY) { - var p = this.getCoords_(aX, aY); + moveTo(aX, aY) { + let p = this.getCoords_(aX, aY); this.currentPath_.push({type:'moveTo', x:p.x, y:p.y}); this.currentX_ = p.x; this.currentY_ = p.y; - }; + } - contextPrototype.lineTo = function (aX, aY) { - var p = this.getCoords_(aX, aY); + lineTo(aX, aY) { + let p = this.getCoords_(aX, aY); this.currentPath_.push({type:'lineTo', x:p.x, y:p.y}); this.currentX_ = p.x; this.currentY_ = p.y; - }; - - contextPrototype.bezierCurveTo = function (aCP1x, aCP1y, aCP2x, aCP2y, aX, aY) { - var p = this.getCoords_(aX, aY); - var cp1 = this.getCoords_(aCP1x, aCP1y); - var cp2 = this.getCoords_(aCP2x, aCP2y); - bezierCurveTo(this, cp1, cp2, p); - }; + } - // Helper function that takes the already fixed cordinates. - function bezierCurveTo(self, cp1, cp2, p) { - self.currentPath_.push({ - type:'bezierCurveTo', - cp1x:cp1.x, - cp1y:cp1.y, - cp2x:cp2.x, - cp2y:cp2.y, - x:p.x, - y:p.y - }); - self.currentX_ = p.x; - self.currentY_ = p.y; + bezierCurveTo(aCP1x, aCP1y, aCP2x, aCP2y, aX, aY) { + let p = this.getCoords_(aX, aY); + let cp1 = this.getCoords_(aCP1x, aCP1y); + let cp2 = this.getCoords_(aCP2x, aCP2y); + bezierCurveToHelper(this, cp1, cp2, p); } - contextPrototype.quadraticCurveTo = function (aCPx, aCPy, aX, aY) { + quadraticCurveTo(aCPx, aCPy, aX, aY) { // the following is lifted almost directly from // http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes - var cp = this.getCoords_(aCPx, aCPy); - var p = this.getCoords_(aX, aY); + let cp = this.getCoords_(aCPx, aCPy); + let p = this.getCoords_(aX, aY); - var cp1 = { + let cp1 = { x:this.currentX_ + 2.0 / 3.0 * (cp.x - this.currentX_), y:this.currentY_ + 2.0 / 3.0 * (cp.y - this.currentY_) }; - var cp2 = { + let cp2 = { x:cp1.x + (p.x - this.currentX_) / 3.0, y:cp1.y + (p.y - this.currentY_) / 3.0 }; - bezierCurveTo(this, cp1, cp2, p); - }; + bezierCurveToHelper(this, cp1, cp2, p); + } - contextPrototype.arc = function (aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise) { - var arcType = aClockwise ? 'at' : 'wa'; + arc(aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise) { + let arcType = aClockwise ? 'at' : 'wa'; - var xStart = aX + mc(aStartAngle) * aRadius; - var yStart = aY + ms(aStartAngle) * aRadius; + let xStart = aX + mc(aStartAngle) * aRadius; + let yStart = aY + ms(aStartAngle) * aRadius; - var xEnd = aX + mc(aEndAngle) * aRadius; - var yEnd = aY + ms(aEndAngle) * aRadius; + let xEnd = aX + mc(aEndAngle) * aRadius; + let yEnd = aY + ms(aEndAngle) * aRadius; // IE won't render arches drawn counter clockwise if xStart == xEnd. if (xStart == xEnd && !aClockwise) { @@ -298,9 +368,9 @@ var nodeUtil = require("util"), // that can be represented in binary } - var p = this.getCoords_(aX, aY); - var pStart = this.getCoords_(xStart, yStart); - var pEnd = this.getCoords_(xEnd, yEnd); + let p = this.getCoords_(aX, aY); + let pStart = this.getCoords_(xStart, yStart); + let pEnd = this.getCoords_(xEnd, yEnd); this.currentPath_.push({type:arcType, x:p.x, @@ -310,11 +380,10 @@ var nodeUtil = require("util"), yStart:pStart.y, xEnd:pEnd.x, yEnd:pEnd.y}); + } - }; - - contextPrototype.rect = function (aX, aY, aWidth, aHeight) { - if (_needRemoveRect.call(this, aX, aY, aWidth, aHeight)) { + rect(aX, aY, aWidth, aHeight) { + if (this.#needRemoveRect(aX, aY, aWidth, aHeight)) { return;//try to remove the rectangle behind radio buttons and checkboxes } @@ -323,14 +392,14 @@ var nodeUtil = require("util"), this.lineTo(aX + aWidth, aY + aHeight); this.lineTo(aX, aY + aHeight); this.closePath(); - }; + } - contextPrototype.strokeRect = function (aX, aY, aWidth, aHeight) { - if (_needRemoveRect.call(this, aX, aY, aWidth, aHeight)) { + strokeRect(aX, aY, aWidth, aHeight) { + if (this.#needRemoveRect(aX, aY, aWidth, aHeight)) { return;//try to remove the rectangle behind radio buttons and checkboxes } - var oldPath = this.currentPath_; + let oldPath = this.currentPath_; this.beginPath(); this.moveTo(aX, aY); @@ -341,14 +410,14 @@ var nodeUtil = require("util"), this.stroke(); this.currentPath_ = oldPath; - }; + } - contextPrototype.fillRect = function (aX, aY, aWidth, aHeight) { - if (_needRemoveRect.call(this, aX, aY, aWidth, aHeight)) { + fillRect(aX, aY, aWidth, aHeight) { + if (this.#needRemoveRect(aX, aY, aWidth, aHeight)) { return;//try to remove the rectangle behind radio buttons and checkboxes } - var oldPath = this.currentPath_; + let oldPath = this.currentPath_; this.beginPath(); this.moveTo(aX, aY); @@ -359,19 +428,19 @@ var nodeUtil = require("util"), this.fill(); this.currentPath_ = oldPath; - }; + } - contextPrototype.createLinearGradient = function (aX0, aY0, aX1, aY1) { - var gradient = new CanvasGradient_('gradient'); + createLinearGradient(aX0, aY0, aX1, aY1) { + let gradient = new CanvasGradient_('gradient'); gradient.x0_ = aX0; gradient.y0_ = aY0; gradient.x1_ = aX1; gradient.y1_ = aY1; return gradient; - }; + } - contextPrototype.createRadialGradient = function (aX0, aY0, aR0, aX1, aY1, aR1) { - var gradient = new CanvasGradient_('gradientradial'); + createRadialGradient(aX0, aY0, aR0, aX1, aY1, aR1) { + let gradient = new CanvasGradient_('gradientradial'); gradient.x0_ = aX0; gradient.y0_ = aY0; gradient.r0_ = aR0; @@ -379,36 +448,51 @@ var nodeUtil = require("util"), gradient.y1_ = aY1; gradient.r1_ = aR1; return gradient; + } + + drawImage(image) { + if (image instanceof CanvasRenderingContext2D_) { + image.canvas.Images.forEach(function(data) { + addImage(data, this.canvas.Images); + }, this); + } else { + addImage(image, this.canvas.Images); + } + }; + + putImageData(image) { + addImage(image, this.canvas.Images); }; - contextPrototype.drawImage = function (image, var_args) { - //MQZ. no image drawing support for now + + createImageData(width, height) { + return new ImageData(width, height); }; - contextPrototype.getImageData = function (x, y, w, h) { + getImageData(x, y, w, h) { //MQZ. returns empty data buffer for now return { width:w, height:h, data:new Uint8Array(w * h * 4) }; - }; + } - contextPrototype.stroke = function (aFill) { + stroke(aFill) { if (this.currentPath_.length < 2) { return; } - var a = processStyle(aFill ? this.fillStyle : this.strokeStyle); - var color = a.color; -// var opacity = a.alpha * this.globalAlpha; - var lineWidth = this.lineScale_ * this.lineWidth; + let a = processStyle(aFill ? this.fillStyle : this.strokeStyle); + let color = a.color; +// let opacity = a.alpha * this.globalAlpha; + let lineWidth = this.lineScale_ * this.lineWidth; - var min = {x:null, y:null}; - var max = {x:null, y:null}; + let min = {x:null, y:null}; + let max = {x:null, y:null}; - for (var i = 0; i < this.currentPath_.length; i++) { - var p = this.currentPath_[i]; + for (let i = 0; i < this.currentPath_.length; i++) { + let p = this.currentPath_[i]; switch (p.type) { case 'moveTo': @@ -416,14 +500,14 @@ var nodeUtil = require("util"), case 'lineTo': if (!aFill) { //lines if (i > 0) { - _drawPDFLine.call(this, this.currentPath_[i-1], p, lineWidth, color); + this.#drawPDFLine(this.currentPath_[i-1], p, lineWidth, color); } } break; case 'close': if (!aFill) { //lines if (i > 0) { - _drawPDFLine.call(this, this.currentPath_[i-1], this.currentPath_[0], lineWidth, color); + this.#drawPDFLine(this.currentPath_[i-1], this.currentPath_[0], lineWidth, color); } } p = null; @@ -453,163 +537,113 @@ var nodeUtil = require("util"), } if (aFill) { //fill - _drawPDFFill.call(this, min, min, max, color); + this.#drawPDFFill(min, min, max, color); } - }; + } - contextPrototype.fill = function () { + fill() { this.stroke(true); - }; + } - contextPrototype.closePath = function () { + closePath() { this.currentPath_.push({type:'close'}); - }; + } /** * @private */ - contextPrototype.getCoords_ = function (aX, aY) { - var m = this.m_; + getCoords_ (aX, aY) { + let m = this.m_; return { x: (aX * m[0][0] + aY * m[1][0] + m[2][0]), y: (aX * m[0][1] + aY * m[1][1] + m[2][1]) }; - }; + } - contextPrototype.save = function () { - var o = {}; + save() { + let o = {}; copyState(this, o); this.aStack_.push(o); this.mStack_.push(this.m_); this.m_ = matrixMultiply(createMatrixIdentity(), this.m_); - }; + } - contextPrototype.restore = function () { + restore() { copyState(this.aStack_.pop(), this); this.m_ = this.mStack_.pop(); - }; - - function matrixIsFinite(m) { - for (var j = 0; j < 3; j++) { - for (var k = 0; k < 2; k++) { - if (!isFinite(m[j][k]) || isNaN(m[j][k])) { - return false; - } - } - } - return true; } - function setM(ctx, m, updateLineScale) { - if (!matrixIsFinite(m)) { - return; - } - ctx.m_ = m; - - if (updateLineScale) { - // Get the line scale. - // Determinant of this.m_ means how much the area is enlarged by the - // transformation. So its square root can be used as a scale factor - // for width. - var det = m[0][0] * m[1][1] - m[0][1] * m[1][0]; - ctx.lineScale_ = sqrt(abs(det)); - } - } - - contextPrototype.translate = function (aX, aY) { - var m1 = [ + translate(aX, aY) { + let m1 = [ [1, 0, 0], [0, 1, 0], [aX, aY, 1] ]; setM(this, matrixMultiply(m1, this.m_), false); - }; + } - contextPrototype.rotate = function (aRot) { - var c = mc(aRot); - var s = ms(aRot); + rotate(aRot) { + let c = mc(aRot); + let s = ms(aRot); - var m1 = [ + let m1 = [ [c, s, 0], [-s, c, 0], [0, 0, 1] ]; setM(this, matrixMultiply(m1, this.m_), false); - }; + } - contextPrototype.scale = function (aX, aY) { + scale(aX, aY) { this.arcScaleX_ *= aX; this.arcScaleY_ *= aY; - var m1 = [ + let m1 = [ [aX, 0, 0], [0, aY, 0], [0, 0, 1] ]; setM(this, matrixMultiply(m1, this.m_), true); - }; + } - contextPrototype.transform = function (m11, m12, m21, m22, dx, dy) { - var m1 = [ + transform(m11, m12, m21, m22, dx, dy) { + let m1 = [ [m11, m12, 0], [m21, m22, 0], [dx, dy, 1] ]; setM(this, matrixMultiply(m1, this.m_), true); - }; + } - contextPrototype.setTransform = function (m11, m12, m21, m22, dx, dy) { - var m = [ + setTransform(m11, m12, m21, m22, dx, dy) { + let m = [ [m11, m12, 0], [m21, m22, 0], [dx, dy, 1] ]; setM(this, m, true); - }; + } /******** STUBS ********/ - contextPrototype.clip = function () { + clip() { // TODO: Implement - }; + } - contextPrototype.arcTo = function () { + arcTo() { // TODO: Implement - }; - - contextPrototype.createPattern = function () { - return new CanvasPattern_; - }; - - // Gradient / Pattern Stubs - function CanvasGradient_(aType) { - this.type_ = aType; - this.x0_ = 0; - this.y0_ = 0; - this.r0_ = 0; - this.x1_ = 0; - this.y1_ = 0; - this.r1_ = 0; - this.colors_ = []; } - CanvasGradient_.prototype.addColorStop = function (aOffset, aColor) { - aColor = processStyle(aColor); - this.colors_.push({offset:aOffset, - color:aColor.color, - alpha:aColor.alpha}); - }; - - function CanvasPattern_() { + createPattern() { + return new CanvasPattern_(); } +} - // set up externs - module.exports = CanvasRenderingContext2D_; +// set up externs +module.exports = CanvasRenderingContext2D_; // CanvasRenderingContext2D = CanvasRenderingContext2D_; // CanvasGradient = CanvasGradient_; -// CanvasPattern = CanvasPattern_; - -})(); +// CanvasPattern = CanvasPattern_; \ No newline at end of file diff --git a/lib/pdfconst.js b/lib/pdfconst.js new file mode 100644 index 00000000..e3cfef39 --- /dev/null +++ b/lib/pdfconst.js @@ -0,0 +1,117 @@ +const kColors = [ + '#000000', // 0 + '#ffffff', // 1 + '#4c4c4c', // 2 + '#808080', // 3 + '#999999', // 4 + '#c0c0c0', // 5 + '#cccccc', // 6 + '#e5e5e5', // 7 + '#f2f2f2', // 8 + '#008000', // 9 + '#00ff00', // 10 + '#bfffa0', // 11 + '#ffd629', // 12 + '#ff99cc', // 13 + '#004080', // 14 + '#9fc0e1', // 15 + '#5580ff', // 16 + '#a9c9fa', // 17 + '#ff0080', // 18 + '#800080', // 19 + '#ffbfff', // 20 + '#e45b21', // 21 + '#ffbfaa', // 22 + '#008080', // 23 + '#ff0000', // 24 + '#fdc59f', // 25 + '#808000', // 26 + '#bfbf00', // 27 + '#824100', // 28 + '#007256', // 29 + '#008000', // 30 + '#000080', // Last + 1 + '#008080', // Last + 2 + '#800080', // Last + 3 + '#ff0000', // Last + 4 + '#0000ff', // Last + 5 + '#008000' // Last + 6 +]; + +const kFontFaces = [ + "quicktype,arial,helvetica,sans-serif", // 00 - QuickType - sans-serif variable font + "quicktype condensed,arial narrow,arial,helvetica,sans-serif", // 01 - QuickType Condensed - thin sans-serif variable font + "quicktypepi,quicktypeiipi", // 02 - QuickType Pi + "quicktype mono,courier new,courier,monospace", // 03 - QuickType Mono - san-serif fixed font + "ocr-a,courier new,courier,monospace", // 04 - OCR-A - OCR readable san-serif fixed font + "ocr b mt,courier new,courier,monospace" // 05 - OCR-B MT - OCR readable san-serif fixed font + ]; + + const kFontStyles = [ + // Face Size Bold Italic StyleID(Comment) + // ----- ---- ---- ----- ----------------- + [0, 6, 0, 0], //00 + [0, 8, 0, 0], //01 + [0, 10, 0, 0], //02 + [0, 12, 0, 0], //03 + [0, 14, 0, 0], //04 + [0, 18, 0, 0], //05 + [0, 6, 1, 0], //06 + [0, 8, 1, 0], //07 + [0, 10, 1, 0], //08 + [0, 12, 1, 0], //09 + [0, 14, 1, 0], //10 + [0, 18, 1, 0], //11 + [0, 6, 0, 1], //12 + [0, 8, 0, 1], //13 + [0, 10, 0, 1], //14 + [0, 12, 0, 1], //15 + [0, 14, 0, 1], //16 + [0, 18, 0, 1], //17 + [0, 6, 1, 1], //18 + [0, 8, 1, 1], //19 + [0, 10, 1, 1], //20 + [0, 12, 1, 1], //21 + [0, 14, 1, 1], //22 + [0, 18, 1, 1], //23 + [1, 6, 0, 0], //24 + [1, 8, 0, 0], //25 + [1, 10, 0, 0], //26 + [1, 12, 0, 0], //27 + [1, 14, 0, 0], //28 + [1, 18, 0, 0], //29 + [1, 6, 1, 0], //30 + [1, 8, 1, 0], //31 + [1, 10, 1, 0], //32 + [1, 12, 1, 0], //33 + [1, 14, 1, 0], //34 + [1, 18, 1, 0], //35 + [1, 6, 0, 1], //36 + [1, 8, 0, 1], //37 + [1, 10, 0, 1], //38 + [1, 12, 0, 1], //39 + [1, 14, 0, 1], //40 + [1, 18, 0, 1], //41 + [2, 8, 0, 0], //42 + [2, 10, 0, 0], //43 + [2, 12, 0, 0], //44 + [2, 14, 0, 0], //45 + [2, 18, 0, 0], //46 + [3, 8, 0, 0], //47 + [3, 10, 0, 0], //48 + [3, 12, 0, 0], //49 + [4, 12, 0, 0], //50 + [0, 9, 0, 0], //51 + [0, 9, 1, 0], //52 + [0, 9, 0, 1], //53 + [0, 9, 1, 1], //54 + [1, 9, 0, 0], //55 + [1, 9, 1, 0], //56 + [1, 9, 1, 1], //57 + [4, 10, 0, 0], //58 + [5, 10, 0, 0], //59 + [5, 12, 0, 0] //60 +]; + + +module.exports = {kColors, kFontFaces, kFontStyles}; \ No newline at end of file diff --git a/lib/pdffield.js b/lib/pdffield.js index 56245803..be56c76f 100644 --- a/lib/pdffield.js +++ b/lib/pdffield.js @@ -1,57 +1,15 @@ -var nodeUtil = require("util"), - _ = require("underscore"), - PDFUnit = require('./pdfunit.js'); +const nodeUtil = require("util"), + PDFUnit = require("./pdfunit"); -var PDFField = (function PDFFieldClosure() { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFField'; - var _tabIndex = 0; +const kFBANotOverridable = 0x00000400; // indicates the field is read only by the user +const kFBARequired = 0x00000010; // indicates the field is required +const kMinHeight = 20; - var kFBANotOverridable = 0x00000400; // indicates the field is read only by the user - var kFBARequired = 0x00000010; // indicates the field is required - var kMinHeight = 20; +class PDFField { + static tabIndex = 0; - // constructor - var cls = function (field, viewport, Fields, Boxsets) { - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; - - this.field = field; - this.viewport = viewport; - this.Fields = Fields; - this.Boxsets = Boxsets; - }; - - // Normalize rectangle rect=[x1, y1, x2, y2] so that (x1,y1) < (x2,y2) - // For coordinate systems whose origin lies in the bottom-left, this - // means normalization to (BL,TR) ordering. For systems with origin in the - // top-left, this means (TL,BR) ordering. - var _normalizeRect = function(rect) { - var r = rect.slice(0); // clone rect - if (rect[0] > rect[2]) { - r[0] = rect[2]; - r[2] = rect[0]; - } - if (rect[1] > rect[3]) { - r[1] = rect[3]; - r[3] = rect[1]; - } - return r; - }; - - // public static - cls.get_nextId = function () { - return _name + _nextId; - }; - - cls.isWidgetSupported = function(field) { - var retVal = false; + static isWidgetSupported(field) { + let retVal = false; switch(field.fieldType) { case 'Tx': retVal = true; break; //text input @@ -74,25 +32,50 @@ var PDFField = (function PDFFieldClosure() { } return retVal; - }; + } - cls.isFormElement = function(field) { - var retVal = false; + static isFormElement(field) { + let retVal = false; switch(field.subtype) { - case 'Widget': retVal = cls.isWidgetSupported(field); break; + case 'Widget': retVal = PDFField.isWidgetSupported(field); break; default: nodeUtil.p2jwarn("Unsupported: field.type of " + field.subtype); break; } return retVal; - }; + } - var _getFieldPosition = function(field) { - var viewPort = this.viewport; - var fieldRect = viewPort.convertToViewportRectangle(field.rect); - var rect = _normalizeRect(fieldRect); + // constructor + constructor(field, viewport, Fields, Boxsets) { + this.field = field; + this.viewport = viewport; + this.Fields = Fields; + this.Boxsets = Boxsets; + } - var height = rect[3] - rect[1]; + // Normalize rectangle rect=[x1, y1, x2, y2] so that (x1,y1) < (x2,y2) + // For coordinate systems whose origin lies in the bottom-left, this + // means normalization to (BL,TR) ordering. For systems with origin in the + // top-left, this means (TL,BR) ordering. + static #normalizeRect(rect) { + const r = rect.slice(0); // clone rect + if (rect[0] > rect[2]) { + r[0] = rect[2]; + r[2] = rect[0]; + } + if (rect[1] > rect[3]) { + r[1] = rect[3]; + r[3] = rect[1]; + } + return r; + } + + #getFieldPosition(field) { + let viewPort = this.viewport; + let fieldRect = viewPort.convertToViewportRectangle(field.rect); + let rect = PDFField.#normalizeRect(fieldRect); + + let height = rect[3] - rect[1]; if (field.fieldType === 'Tx') { if (height > kMinHeight + 2) { rect[1] += 2; @@ -111,10 +94,10 @@ var PDFField = (function PDFFieldClosure() { w: PDFUnit.toFormX(rect[2] - rect[0]), h: PDFUnit.toFormY(height) }; - }; + } - var _getFieldBaseData = function(field) { - var attributeMask = 0; + #getFieldBaseData(field) { + let attributeMask = 0; //PDF Spec p.676 TABLE 8.70 Field flags common to all field types if (field.fieldFlags & 0x00000001) { attributeMask |= kFBANotOverridable; @@ -123,7 +106,7 @@ var PDFField = (function PDFFieldClosure() { attributeMask |= kFBARequired; } - var anData = { + let anData = { id: { Id: field.fullName, EN: 0}, TI: field.TI, AM: attributeMask @@ -137,17 +120,17 @@ var PDFField = (function PDFFieldClosure() { anData.TM = field.alternativeID; } - return _.extend(anData, _getFieldPosition.call(this, field)); - }; + return Object.assign(anData, this.#getFieldPosition(field)); + } - var _addAlpha = function(field) { - var anData = _.extend({ + #addAlpha(field) { + const anData = Object.assign({ style: 48, T: { Name: field.TName || "alpha", TypeInfo: {} } - }, _getFieldBaseData.call(this, field)); + }, this.#getFieldBaseData(field)); if (field.MV) { //field attributes: arbitrary mask value anData.MV = field.MV; @@ -157,48 +140,45 @@ var PDFField = (function PDFFieldClosure() { } this.Fields.push(anData); - }; + } - var _addCheckBox = function(box) { - var anData = _.extend({ + #addCheckBox(box) { + const anData = Object.assign({ style: 48, T: { Name: "box", TypeInfo: {} } - }, _getFieldBaseData.call(this, box)); + }, this.#getFieldBaseData(box)); this.Boxsets.push({boxes:[anData]}); - }; + } - var _addRadioButton = function(box) { - var anData = _.extend({ + #addRadioButton(box) { + const anData = Object.assign({ style: 48, T: { Name: "box", TypeInfo: {} } - }, _getFieldBaseData.call(this, box)); + }, this.#getFieldBaseData(box)); anData.id.Id = box.value; - if (_.has(box, 'checked')) { + if ('checked' in box) { anData.checked = box.checked; } - var rdGroup = _.find(this.Boxsets, function(boxset) { - return _.has(boxset, 'id') && _.has(boxset.id, 'Id') && (boxset.id.Id === box.fullName); - }); - - if ((!!rdGroup) && (_.has(rdGroup, 'boxes'))) { + const rdGroup = this.Boxsets.filter(boxset => ('id' in boxset) && ('Id' in boxset.id) && (boxset.id.Id === box.fullName))[0]; + if ((!!rdGroup) && ('boxes' in rdGroup)) { rdGroup.boxes.push(anData); } else { this.Boxsets.push({boxes:[anData], id: { Id: box.fullName, EN: 0}}); } - }; + } - var _addLinkButton = function(field) { - var anData = _.extend({ + #addLinkButton(field) { + const anData = Object.assign({ style: 48, T: { Name: "link" @@ -206,73 +186,76 @@ var PDFField = (function PDFFieldClosure() { FL: { form: {Id: field.FL} } - }, _getFieldBaseData.call(this, field)); + }, this.#getFieldBaseData(field)); this.Fields.push(anData); - }; + } - var _addSelect = function(field) { - var anData = _.extend({ + #addSelect(field) { + const anData = Object.assign({ style: 48, T: { Name: "alpha", TypeInfo: {} } - }, _getFieldBaseData.call(this, field)); + }, this.#getFieldBaseData(field)); anData.w -= 0.5; //adjust combobox width anData.PL = {V: [], D: []}; - _.each(field.value, function(ele, idx) { - anData.PL.D.push(ele[0]); - anData.PL.V.push(ele[1]); + field.value.forEach( (ele, idx) => { + if (Array.isArray(ele)) { + anData.PL.D.push(ele[0]); + anData.PL.V.push(ele[1]); + } else { + anData.PL.D.push(ele); + anData.PL.V.push(ele); + } }); - + + // add field value to the object + if (field.fieldValue) { + anData.V = field.fieldValue; + } this.Fields.push(anData); }; - // public (every instance will share the same method, but has no access to private fields defined in constructor) - cls.prototype.processField = function () { - - this.field.TI = _tabIndex++; + // public instance methods + processField() { + this.field.TI = PDFField.tabIndex++; switch(this.field.fieldType) { - case 'Tx': _addAlpha.call(this, this.field); break; - case 'Cb': _addCheckBox.call(this, this.field); break; - case 'Rd': _addRadioButton.call(this, this.field);break; - case 'Btn':_addLinkButton.call(this, this.field); break; - case 'Ch': _addSelect.call(this, this.field); break; + case 'Tx': this.#addAlpha(this.field); break; + case 'Cb': this.#addCheckBox(this.field); break; + case 'Rd': this.#addRadioButton(this.field);break; + case 'Btn':this.#addLinkButton(this.field); break; + case 'Ch': this.#addSelect(this.field); break; } this.clean(); - }; - - cls.prototype.clean = function() { - delete this.get_id; - delete this.get_name; + } + clean() { delete this.field; delete this.viewport; delete this.Fields; delete this.Boxsets; - }; + } //static public method to generate fieldsType object based on parser result - cls.getAllFieldsTypes = function(data) { - - function isFieldReadOnly(field) { + static getAllFieldsTypes(data) { + const isFieldReadOnly = field => { return (field.AM & kFBANotOverridable) ? true : false; - } + }; - function getFieldBase(field) { + const getFieldBase = field => { return {id: field.id.Id, type: field.T.Name, calc: isFieldReadOnly(field), value: field.V || ""}; - } - - var retVal = []; + }; - _.each(data.Pages, function(page) { - _.each(page.Boxsets, function(boxsets) { + let retVal = []; + data.Pages.forEach( page => { + page.Boxsets.forEach( boxsets => { if (boxsets.boxes.length > 1) { //radio button - _.each(boxsets.boxes, function(box) { + boxsets.boxes.forEach( box => { retVal.push({id: boxsets.id.Id, type: "radio", calc: isFieldReadOnly(box), value: box.id.Id}); }); } @@ -281,15 +264,12 @@ var PDFField = (function PDFFieldClosure() { } }); - _.each(page.Fields, function(field){ - retVal.push(getFieldBase(field)); - }); + page.Fields.forEach(field => retVal.push(getFieldBase(field))); + }); return retVal; - }; - - return cls; -})(); + } +} module.exports = PDFField; diff --git a/lib/pdffill.js b/lib/pdffill.js index 2a3bd42d..f144aa26 100644 --- a/lib/pdffill.js +++ b/lib/pdffill.js @@ -1,54 +1,37 @@ -var nodeUtil = require("util"), - _ = require("underscore"), - PDFUnit = require('./pdfunit.js'); -var PDFFill = (function PFPLineClosure() { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFFill'; +const nodeUtil = require("util"), + PDFUnit = require("./pdfunit"); +class PDFFill{ // constructor - var cls = function (x, y, width, height, color) { - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; - + constructor(x, y, width, height, color) { this.x = x; this.y = y; this.width = width; this.height = height; this.color = color; - }; - - // public static - cls.get_nextId = function () { - return _name + _nextId; - }; + } - // public (every instance will share the same method, but has no access to private fields defined in constructor) - cls.prototype.processFill = function (targetData) { - var clrId = PDFUnit.findColorIndex(this.color); + processFill(targetData) { + //MQZ.07/29/2013: when color is not in color dictionary, set the original color (oc) + const clrId = PDFUnit.findColorIndex(this.color); + const colorObj = (clrId > 0 && clrId < PDFUnit.colorCount()) ? {clr: clrId} : {oc: this.color}; - var oneFill = {x:PDFUnit.toFormX(this.x), + const oneFill = {x:PDFUnit.toFormX(this.x), y:PDFUnit.toFormY(this.y), w:PDFUnit.toFormX(this.width), h:PDFUnit.toFormY(this.height), - clr: clrId}; + ...colorObj}; - //MQZ.07/29/2013: when color is not in color dictionary, set the original color (oc) - if (clrId < 0) { - oneFill = _.extend({oc: this.color}, oneFill); + + if (oneFill.w < 2 && oneFill.h < 2) { + nodeUtil.p2jinfo("Skipped: tiny fill: " + oneFill.w + " x " + oneFill.h); + return; //skip short thick lines, like PA SPP lines behinds checkbox } targetData.Fills.push(oneFill); - }; - - return cls; -})(); + } +} module.exports = PDFFill; diff --git a/lib/pdffont.js b/lib/pdffont.js index ba090a2a..0a43a55e 100644 --- a/lib/pdffont.js +++ b/lib/pdffont.js @@ -1,128 +1,41 @@ -var nodeUtil = require("util"), - _ = require("underscore"), - PDFUnit = require('./pdfunit.js'); - -var PDFFont = (function PFPFontClosure() { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFFont'; - - var _boldSubNames = ["bd", "bold", "demi", "black"]; - var _stdFonts = ["arial", "helvetica", "sans-serif ", "courier ","monospace ", "ocr "]; - - var _kFontFaces = [ - "quicktype,arial,helvetica,sans-serif", // 00 - QuickType - sans-serif variable font - "quicktype condensed,arial narrow,arial,helvetica,sans-serif", // 01 - QuickType Condensed - thin sans-serif variable font - "quicktypepi,quicktypeiipi", // 02 - QuickType Pi - "quicktype mono,courier new,courier,monospace", // 03 - QuickType Mono - san-serif fixed font - "ocr-a,courier new,courier,monospace", // 04 - OCR-A - OCR readable san-serif fixed font - "ocr b mt,courier new,courier,monospace" // 05 - OCR-B MT - OCR readable san-serif fixed font - ]; - - var _kFontStyles = [ - // Face Size Bold Italic StyleID(Comment) - // ----- ---- ---- ----- ----------------- - [0, 6, 0, 0], //00 - [0, 8, 0, 0], //01 - [0, 10, 0, 0], //02 - [0, 12, 0, 0], //03 - [0, 14, 0, 0], //04 - [0, 18, 0, 0], //05 - [0, 6, 1, 0], //06 - [0, 8, 1, 0], //07 - [0, 10, 1, 0], //08 - [0, 12, 1, 0], //09 - [0, 14, 1, 0], //10 - [0, 18, 1, 0], //11 - [0, 6, 0, 1], //12 - [0, 8, 0, 1], //13 - [0, 10, 0, 1], //14 - [0, 12, 0, 1], //15 - [0, 14, 0, 1], //16 - [0, 18, 0, 1], //17 - [0, 6, 1, 1], //18 - [0, 8, 1, 1], //19 - [0, 10, 1, 1], //20 - [0, 12, 1, 1], //21 - [0, 14, 1, 1], //22 - [0, 18, 1, 1], //23 - [1, 6, 0, 0], //24 - [1, 8, 0, 0], //25 - [1, 10, 0, 0], //26 - [1, 12, 0, 0], //27 - [1, 14, 0, 0], //28 - [1, 18, 0, 0], //29 - [1, 6, 1, 0], //30 - [1, 8, 1, 0], //31 - [1, 10, 1, 0], //32 - [1, 12, 1, 0], //33 - [1, 14, 1, 0], //34 - [1, 18, 1, 0], //35 - [1, 6, 0, 1], //36 - [1, 8, 0, 1], //37 - [1, 10, 0, 1], //38 - [1, 12, 0, 1], //39 - [1, 14, 0, 1], //40 - [1, 18, 0, 1], //41 - [2, 8, 0, 0], //42 - [2, 10, 0, 0], //43 - [2, 12, 0, 0], //44 - [2, 14, 0, 0], //45 - [2, 18, 0, 0], //46 - [3, 8, 0, 0], //47 - [3, 10, 0, 0], //48 - [3, 12, 0, 0], //49 - [4, 12, 0, 0], //50 - [0, 9, 0, 0], //51 - [0, 9, 1, 0], //52 - [0, 9, 0, 1], //53 - [0, 9, 1, 1], //54 - [1, 9, 0, 0], //55 - [1, 9, 1, 0], //56 - [1, 9, 1, 1], //57 - [4, 10, 0, 0], //58 - [5, 10, 0, 0], //59 - [5, 12, 0, 0] //60 - ]; +const nodeUtil = require("util"), + PDFUnit = require("./pdfunit"), + {kFontFaces, kFontStyles} = require("./pdfconst"); +const _boldSubNames = ["bd", "bold", "demi", "black"]; +const _stdFonts = ["arial", "helvetica", "sans-serif ", "courier ","monospace ", "ocr "]; +const DISTANCE_DELTA = 0.1; - // constructor - var cls = function (fontObj) { - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; - - this.fontObj = fontObj; - var typeName = (fontObj.name || fontObj.fallbackName); +class PDFFont { + #initTypeName() { + let typeName = (this.fontObj.name || this.fontObj.fallbackName); if (!typeName) { - typeName = _kFontFaces[0]; //default font family name + typeName = kFontFaces[0]; //default font family name } typeName = typeName.toLowerCase(); - this.typeName = typeName; + return typeName; + } + + #initSubType() { + let subType = this.typeName; + let bold = false; - var subType = typeName; - var nameArray = typeName.split('+'); - if (_.isArray(nameArray) && nameArray.length > 1) { + let nameArray = this.typeName.split('+'); + if (Array.isArray(nameArray) && nameArray.length > 1) { subType = nameArray[1].split("-"); - if (_.isArray(subType) && subType.length > 1) { - if (!this.bold) { - var subName = subType[1].toLowerCase(); - this.bold = _boldSubNames.indexOf(subName) >= 0; - } + if (Array.isArray(subType) && subType.length > 1) { + let subName = subType[1].toLowerCase(); + bold = _boldSubNames.indexOf(subName) >= 0; subType = subType[0]; } } - this.subType = subType; + return {subType, bold}; + } - this.isSymbol = typeName.indexOf("symbol") > 0 || _kFontFaces[2].indexOf(this.subType) >= 0; + #initSymbol() { + let isSymbol = this.typeName.indexOf("symbol") > 0 || kFontFaces[2].indexOf(this.subType) >= 0; if (this.fontObj.isSymbolicFont) { - var mFonts = _.filter(_stdFonts, function(oneName){ - return (typeName.indexOf(oneName) >= 0); - }, this); + let mFonts = _stdFonts.filter( (oneName) => (this.typeName.indexOf(oneName) >= 0) ); if (mFonts.length > 0) { this.fontObj.isSymbolicFont = false; //lots of Arial-based font is detected as symbol in VA forms (301, 76-c, etc.) reset the flag for now @@ -130,49 +43,129 @@ var PDFFont = (function PFPFontClosure() { } } else { - if (this.isSymbol) { + if (isSymbol) { this.fontObj.isSymbolicFont = true; //text pdf: va_ind_760c nodeUtil.p2jinfo("Reset: isSymbolicFont (true) for " + this.fontObj.name); } - } + } + return isSymbol; + } + + #initSpaceWidth() { + let spaceWidth = this.fontObj.spaceWidth; + if (!spaceWidth) { + var spaceId = Array.isArray(this.fontObj.toFontChar) ? this.fontObj.toFontChar.indexOf(32) : -1; + spaceWidth = (spaceId >= 0 && Array.isArray(this.fontObj.widths)) ? this.fontObj.widths[spaceId] : 250; + } + spaceWidth = PDFUnit.toFormX(spaceWidth) / 32; + return spaceWidth; + } - this.fontSize = 1; + // constructor + constructor(fontObj) { + this.fontObj = fontObj; + this.typeName = this.#initTypeName(); + + const {subType, bold} = this.#initSubType(); + this.subType = subType; + this.bold = bold; + + this.isSymbol = this.#initSymbol(); + this.spaceWidth = this.#initSpaceWidth(); + + this.fontSize = 1; this.faceIdx = 0; - this.bold = false; this.italic = false; - this.fontStyleId = -1; - }; + } + + /** sort text blocks by y then x */ + static compareBlockPos(t1, t2) { + if (t1.y < t2.y - DISTANCE_DELTA) { + return -1; + } + if (Math.abs(t1.y - t2.y) <= DISTANCE_DELTA) { + if (t1.x < t2.x - DISTANCE_DELTA) { + return -1; + } + if (Math.abs(t1.x - t2.x) <= DISTANCE_DELTA) { + return 0; + } + } + return 1; + } + + static haveSameStyle(t1, t2) { + let retVal = t1.R[0].S === t2.R[0].S; + if (retVal && t1.R[0].S < 0) { + for (let i = 0; i < t1.R[0].TS.length; i++) { + if (t1.R[0].TS[i] !== t2.R[0].TS[i]) { + retVal = false; + break; + } + } + } + if (retVal) { // make sure both block are not rotated + retVal = (typeof t1.R[0].RA === 'undefined') && (typeof t2.R[0].RA === 'undefined'); + } + + return retVal; + } + + static getSpaceThreshHold(t1) { + return (PDFFont.getFontSize(t1)/12) * t1.sw; + } - // public static - cls.get_nextId = function () { - return _name + _nextId; - }; + static areAdjacentBlocks(t1, t2) { + const isInSameLine = Math.abs(t1.y - t2.y) <= DISTANCE_DELTA; + const isDistanceSmallerThanASpace = ((t2.x - t1.x - t1.w) < PDFFont.getSpaceThreshHold(t1)); + + return isInSameLine && isDistanceSmallerThanASpace; + } + + static getFontSize(textBlock) { + const sId = textBlock.R[0].S; + return (sId < 0) ? textBlock.R[0].TS[1] : kFontStyles[sId][1]; + } + + static areDuplicateBlocks(t1, t2) { + return t1.x == t2.x && t1.y == t2.y && t1.R[0].T == t2.R[0].T && PDFFont.haveSameStyle(t1, t2); + } // private - var _setFaceIndex = function() { - var fontObj = this.fontObj; + #setFaceIndex() { + const fontObj = this.fontObj; this.bold = fontObj.bold; if (!this.bold) { this.bold = this.typeName.indexOf("bold") >= 0 || this.typeName.indexOf("black") >= 0; } + this.italic = fontObj.italic; // fix https://github.com/modesty/pdf2json/issues/42 + // Extended the fix for https://github.com/modesty/pdf2json/issues/42 + if (!this.italic) { + this.italic = this.typeName.indexOf("italic") >= 0 || this.typeName.indexOf("oblique") >= 0; + } + // Added detection of hybrid dual bolditalic fonts + if (((!this.bold) || (!this.italic)) && (this.typeName.indexOf("boldobl") >= 0)) { + this.bold = true; + this.italic = true; + } - var typeName = this.subType; + let typeName = this.subType; if (fontObj.isSerifFont) { - if (_kFontFaces[1].indexOf(typeName) >= 0) + if (kFontFaces[1].indexOf(typeName) >= 0) this.faceIdx = 1; } - else if (_kFontFaces[2].indexOf(this.subType) >= 0) { + else if (kFontFaces[2].indexOf(this.subType) >= 0) { this.faceIdx = 2; } else if (fontObj.isMonospace) { this.faceIdx = 3; - if (_kFontFaces[4].indexOf(typeName) >= 0) + if (kFontFaces[4].indexOf(typeName) >= 0) this.faceIdx = 4; - else if (_kFontFaces[5].indexOf(typeName) >= 0) + else if (kFontFaces[5].indexOf(typeName) >= 0) this.faceIdx = 5; } else if (fontObj.isSymbolicFont) { @@ -185,18 +178,18 @@ var PDFFont = (function PFPFontClosure() { } // nodeUtil.p2jinfo"typeName = " + typeName + " => faceIdx = " + this.faceIdx); - }; + } - var _getFontStyleIndex = function(fontSize) { - _setFaceIndex.call(this); + #getFontStyleIndex(fontSize) { + this.#setFaceIndex(); //MQZ Feb.28.2013. Adjust bold text fontsize to work around word spacing issue this.fontSize = (this.bold && (fontSize > 12)) ? fontSize + 1 : fontSize; - var fsa = [this.faceIdx, this.fontSize, this.bold?1:0, this.italic?1:0]; - var retVal = -1; + let fsa = [this.faceIdx, this.fontSize, this.bold?1:0, this.italic?1:0]; + let retVal = -1; - _.each(_kFontStyles, function(element, index, list){ + kFontStyles.forEach(function(element, index, list){ if (retVal === -1) { if (element[0] === fsa[0] && element[1] === fsa[1] && element[2] === fsa[2] && element[3] === fsa[3]) { @@ -206,10 +199,10 @@ var PDFFont = (function PFPFontClosure() { }); return retVal; - }; + } - var _processSymbolicFont = function(str) { - var retVal = str; + #processSymbolicFont(str) { + let retVal = str; if (!str || str.length !== 1) return retVal; @@ -240,10 +233,10 @@ var PDFFont = (function PFPFontClosure() { } return retVal; - }; + } - var _textRotationAngle = function (matrix2D) { - var retVal = 0; + #textRotationAngle(matrix2D) { + let retVal = 0; if (matrix2D[0][0] === 0 && matrix2D[1][1] === 0) { if (matrix2D[0][1] != 0 && matrix2D[1][0] != 0) { if ((matrix2D[0][1] / matrix2D[1][0]) + 1 < 0.0001) @@ -251,57 +244,58 @@ var PDFFont = (function PFPFontClosure() { } } else if (matrix2D[0][0] !== 0 && matrix2D[1][1] !== 0) { - var r1 = Math.atan(-matrix2D[0][1] / matrix2D[0][0]); - var r2 = Math.atan(matrix2D[1][0] / matrix2D[1][1]); + let r1 = Math.atan(-matrix2D[0][1] / matrix2D[0][0]); + let r2 = Math.atan(matrix2D[1][0] / matrix2D[1][1]); if (Math.abs(r1) > 0.0001 && (r1 - r2 < 0.0001)) { retVal = r1 * 180 / Math.PI; } } return retVal; - }; + } - // public (every instance will share the same method, but has no access to private fields defined in constructor) - cls.prototype.processText = function (p, str, maxWidth, color, fontSize, targetData, matrix2D) { - var text = _processSymbolicFont.call(this, str); + // public instance methods + processText(p, str, maxWidth, color, fontSize, targetData, matrix2D) { + let text = this.#processSymbolicFont(str); if (!text) { return; } - this.fontStyleId = _getFontStyleIndex.call(this, fontSize); + this.fontStyleId = this.#getFontStyleIndex(fontSize); // when this.fontStyleId === -1, it means the text style doesn't match any entry in the dictionary // adding TS to better describe text style [fontFaceId, fontSize, 1/0 for bold, 1/0 for italic]; - var TS = [this.faceIdx, this.fontSize, this.bold?1:0, this.italic?1:0]; - - var clrId = PDFUnit.findColorIndex(color); + const TS = [this.faceIdx, this.fontSize, this.bold?1:0, this.italic?1:0]; + + const clrId = PDFUnit.findColorIndex(color); + const colorObj = (clrId > 0 && clrId < PDFUnit.colorCount()) ? {clr: clrId} : {oc: this.color}; + + let textRun = { + T: this.flash_encode(text), + S: this.fontStyleId, + TS: TS + }; + const rAngle = this.#textRotationAngle(matrix2D); + if (rAngle != 0) { + nodeUtil.p2jinfo(str + ": rotated " + rAngle + " degree."); + textRun = {...textRun, RA: rAngle}; + } - var oneText = {x: PDFUnit.toFormX(p.x) - 0.25, + let oneText = {x: PDFUnit.toFormX(p.x) - 0.25, y: PDFUnit.toFormY(p.y) - 0.75, - w: maxWidth, - clr: clrId, + w: PDFUnit.toFixedFloat(maxWidth), + sw: this.spaceWidth, //font space width, use to merge adjacent text blocks A: "left", - R: [{ - T: this.flash_encode(text), - S: this.fontStyleId, - TS: TS - }] + R: [textRun] }; //MQZ.07/29/2013: when color is not in color dictionary, set the original color (oc) - if (clrId < 0) { - oneText = _.extend({oc: color}, oneText); - } + oneText = {...oneText, ...colorObj}; - var rAngle = _textRotationAngle.call(this, matrix2D); - if (rAngle != 0) { - nodeUtil.p2jinfo(str + ": rotated " + rAngle + " degree."); - _.extend(oneText.R[0], {RA: rAngle}); - } - targetData.Texts.push(oneText); - }; + targetData.Texts.push(oneText); + } - cls.prototype.flash_encode = function(str) { - var retVal = encodeURIComponent(str); + flash_encode(str) { + let retVal = encodeURIComponent(str); retVal = retVal.replace("%C2%96", "-"); retVal = retVal.replace("%C2%91", "%27"); retVal = retVal.replace("%C2%92", "%27"); @@ -313,15 +307,12 @@ var PDFFont = (function PFPFontClosure() { retVal = retVal.replace("%C2%9B", "%C2%BB"); return retVal; - }; + } - cls.prototype.clean = function() { + clean() { this.fontObj = null; delete this.fontObj; - }; - - return cls; -})(); + } +} module.exports = PDFFont; - diff --git a/lib/pdfimage.js b/lib/pdfimage.js index a7f74413..56b9a549 100644 --- a/lib/pdfimage.js +++ b/lib/pdfimage.js @@ -1,37 +1,35 @@ -////////////////////////////////start of fake image -var PDFImage = (function() { - 'use strict'; - var _src = ''; - var _onload = null; +class PDFImage { + #_src = ''; + #_onload = null; - this.__defineSetter__("onload", function(val) { - _onload = val; - }); + set onload(val) { + this.#_onload = typeof val === 'function' ? val : null; + } - this.__defineGetter__("onload", function() { - return _onload; - }); + get onload() { + return this.#_onload; + } - this.__defineSetter__("src", function(val) { - _src = val; - if (_onload) _onload(); - }); + set src(val) { + this.#_src = val; + if (this.#_onload) this.#_onload(); + } - this.__defineGetter__("src", function() { - return _src; - }); + get src() { + return this.#_src; + } - this.btoa = function(val) { + btoa(val) { if (typeof window === 'undefined') { - return (new Buffer(val, 'ascii')).toString('base64'); + return (new Buffer.from(val, 'ascii')).toString('base64'); } else if (typeof window.btoa === 'function') return window.btoa(val); return ""; - }; + } -}); +} module.exports = PDFImage; diff --git a/lib/pdfline.js b/lib/pdfline.js index 4843d119..7278d7e2 100644 --- a/lib/pdfline.js +++ b/lib/pdfline.js @@ -1,22 +1,8 @@ -var nodeUtil = require("util"), - _ = require("underscore"), - PDFUnit = require('./pdfunit.js'); - -var PDFLine = (function PFPLineClosure() { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFLine'; - - // constructor - var cls = function (x1, y1, x2, y2, lineWidth, color, dashed) { - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; +const nodeUtil = require("util"), + PDFUnit = require("./pdfunit"); +class PDFLine { + constructor(x1, y1, x2, y2, lineWidth, color, dashed) { this.x1 = x1; this.y1 = y1; this.x2 = x2; @@ -24,38 +10,28 @@ var PDFLine = (function PFPLineClosure() { this.lineWidth = lineWidth || 1.0; this.color = color; this.dashed = dashed; - }; - - // public static - cls.get_nextId = function () { - return _name + _nextId; - }; + } - var _setStartPoint = function(oneLine, x, y) { + #setStartPoint(oneLine, x, y) { oneLine.x = PDFUnit.toFormX(x); oneLine.y = PDFUnit.toFormY(y); - }; + } - // public (every instance will share the same method, but has no access to private fields defined in constructor) - cls.prototype.processLine = function (targetData) { - var xDelta = Math.abs(this.x2 - this.x1); - var yDelta = Math.abs(this.y2 - this.y1); - var minDelta = this.lineWidth; + processLine(targetData) { + const xDelta = Math.abs(this.x2 - this.x1); + const yDelta = Math.abs(this.y2 - this.y1); + const minDelta = this.lineWidth; - var oneLine = {x:0, y:0, w:this.lineWidth, l:0}; + let oneLine = {x:0, y:0, w: PDFUnit.toFixedFloat(this.lineWidth), l:0}; //MQZ Aug.28.2013, adding color support, using color dictionary and default to black - var clrId = PDFUnit.findColorIndex(this.color); - if (clrId < 0) { - oneLine = _.extend({oc: this.color}, oneLine); - } - else if (clrId > 0 && clrId < (PDFUnit.colorCount() - 1)) { - oneLine = _.extend({clr: clrId}, oneLine); - } + const clrId = PDFUnit.findColorIndex(this.color); + const colorObj = (clrId > 0 && clrId < PDFUnit.colorCount()) ? {clr: clrId} : {oc: this.color}; + oneLine = {...oneLine, ...colorObj}; //MQZ Aug.29 dashed line support if (this.dashed) { - oneLine = _.extend({dsh: 1}, oneLine); + oneLine = oneLine = {...oneLine, dsh: 1}; } if ((yDelta < this.lineWidth) && (xDelta > minDelta)) { //HLine @@ -66,9 +42,9 @@ var PDFLine = (function PFPLineClosure() { oneLine.l = PDFUnit.toFormX(xDelta); if (this.x1 > this.x2) - _setStartPoint.call(this, oneLine, this.x2, this.y2); + this.#setStartPoint(oneLine, this.x2, this.y2); else - _setStartPoint.call(this, oneLine, this.x1, this.y1); + this.#setStartPoint(oneLine, this.x1, this.y1); targetData.HLines.push(oneLine); } else if ((xDelta < this.lineWidth) && (yDelta > minDelta)) {//VLine @@ -79,15 +55,13 @@ var PDFLine = (function PFPLineClosure() { oneLine.l = PDFUnit.toFormY(yDelta); if (this.y1 > this.y2) - _setStartPoint.call(this, oneLine, this.x2, this.y2); + this.#setStartPoint(oneLine, this.x2, this.y2); else - _setStartPoint.call(this, oneLine, this.x1, this.y1); + this.#setStartPoint(oneLine, this.x1, this.y1); targetData.VLines.push(oneLine); } - }; - - return cls; -})(); + } +} module.exports = PDFLine; diff --git a/lib/pdfunit.js b/lib/pdfunit.js index 28d8347f..2b198f60 100644 --- a/lib/pdfunit.js +++ b/lib/pdfunit.js @@ -1,121 +1,57 @@ -var nodeUtil = require("util"), - _ = require("underscore"); - -var PDFUnit = (function PFPUnitClosure() { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFUnit'; - - var dpi = 96.0; - var gridXPerInch = 11.0; - var gridYPerInch = 4.0; - - var _pixelXPerGrid = dpi/gridXPerInch; - var _pixelYPerGrid = dpi/gridYPerInch; - var _pixelPerPoint = dpi/72; - - var kColors = [ - '#000000', // 0 - '#ffffff', // 1 - '#4c4c4c', // 2 - '#808080', // 3 - '#999999', // 4 - '#c0c0c0', // 5 - '#cccccc', // 6 - '#e5e5e5', // 7 - '#f2f2f2', // 8 - '#008000', // 9 - '#00ff00', // 10 - '#bfffa0', // 11 - '#ffd629', // 12 - '#ff99cc', // 13 - '#004080', // 14 - '#9fc0e1', // 15 - '#5580ff', // 16 - '#a9c9fa', // 17 - '#ff0080', // 18 - '#800080', // 19 - '#ffbfff', // 20 - '#e45b21', // 21 - '#ffbfaa', // 22 - '#008080', // 23 - '#ff0000', // 24 - '#fdc59f', // 25 - '#808000', // 26 - '#bfbf00', // 27 - '#824100', // 28 - '#007256', // 29 - '#008000', // 30 - '#000080', // Last + 1 - '#008080', // Last + 2 - '#800080', // Last + 3 - '#ff0000', // Last + 4 - '#0000ff', // Last + 5 - '#008000', // Last + 6 - '#000000' // Last + 7 - ]; - - // constructor - var cls = function () { - // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; - }; - - // public static - cls.get_nextId = function () { - return _name + _nextId; - }; - - cls.toFixedFloat = function(fNum) { - return parseFloat(fNum.toFixed(3)) - }; - - cls.colorCount = function() { +const {kColors} = require("./pdfconst"); + +const dpi = 96.0; +const gridXPerInch = 4.0; +const gridYPerInch = 4.0; + +const _pixelXPerGrid = dpi/gridXPerInch; +const _pixelYPerGrid = dpi/gridYPerInch; +const _pixelPerPoint = dpi/72; + +class PDFUnit { + static toFixedFloat(fNum) { + return parseFloat(fNum.toFixed(3)); + } + + static colorCount() { return kColors.length; - }; + } - cls.toPixelX = function(formX) { + static toPixelX(formX) { return Math.round(formX * _pixelXPerGrid); - }; + } - cls.toPixelY = function(formY) { + static toPixelY(formY) { return Math.round(formY * _pixelYPerGrid); - }; + } - cls.pointToPixel = function(point) {// Point unit (1/72 an inch) to pixel units + static pointToPixel(point) {// Point unit (1/72 an inch) to pixel units return point * _pixelPerPoint; - }; + } - cls.getColorByIndex = function(clrId) { - return this.kColors[clrId]; - }; + static getColorByIndex(clrId) { + return kColors[clrId]; + } - cls.toFormPoint = function(viewportX, viewportY) { + static toFormPoint(viewportX, viewportY) { return [(viewportX / _pixelXPerGrid), (viewportY / _pixelYPerGrid)]; - }; + } - cls.toFormX = function(viewportX) { - return cls.toFixedFloat(viewportX / _pixelXPerGrid); - }; + static toFormX(viewportX) { + return PDFUnit.toFixedFloat(viewportX / _pixelXPerGrid); + } - cls.toFormY = function(viewportY) { - return cls.toFixedFloat(viewportY / _pixelYPerGrid); - }; + static toFormY(viewportY) { + return PDFUnit.toFixedFloat(viewportY / _pixelYPerGrid); + } - cls.findColorIndex = function(color) { + static findColorIndex(color) { if (color.length === 4) color += "000"; //MQZ. 07/29/2013: if color is not in dictionary, just return -1. The caller (pdffont, pdffill) will set the actual color return kColors.indexOf(color); - }; - - return cls; -})(); + } +} module.exports = PDFUnit; diff --git a/lib/ptixmlinject.js b/lib/ptixmlinject.js index 64dfc7ba..3e49a289 100644 --- a/lib/ptixmlinject.js +++ b/lib/ptixmlinject.js @@ -1,39 +1,26 @@ -'use strict'; +const fs = require("fs"), + DOMParser = require("@xmldom/xmldom").DOMParser; -var nodeUtil = require("util"), -nodeEvents = require("events"), -fs = require('fs'), -_ = require('underscore'), -DOMParser = require('xmldom').DOMParser, -PDFCanvas = require('./pdfcanvas.js'), -PDFUnit = require('./pdfunit.js'), -PDFField = require('./pdffield.js'), -PDFAnno = require('./pdfanno.js'), -Image = require('./pdfimage.js'), -pkInfo = require('../package.json'); - -var xmlData; - -var PTIXmlParser = (function () { - 'use strict'; - - var ptiPageArray = []; +class PTIXmlParser { + xmlData = null; + ptiPageArray = []; // constructor - var cls = function () { - }; + constructor() { + this.xmlData = null; + this.ptiPageArray = []; + } - cls.prototype.parseXml = function (filePath,callback) { - - fs.readFile(filePath, 'utf8', function (err,data) { + parseXml(filePath, callback) { + fs.readFile(filePath, 'utf8', (err, data) => { if (err) { callback(err); } else { - xmlData = data; + this.xmlData = data; var parser = new DOMParser(); - var dom = parser.parseFromString(xmlData); + var dom = parser.parseFromString(this.xmlData); var root = dom.documentElement; var xmlFields = root.getElementsByTagName("field"); @@ -73,19 +60,18 @@ var PTIXmlParser = (function () { fields.push(item); - ptiPageArray[parseInt(page)]=fields; + this.ptiPageArray[parseInt(page)]=fields; } } callback(); }); - }; + } - cls.prototype.getFields = function(pageNum) { - return ptiPageArray[pageNum]; - }; - return cls; -})(); + getFields(pageNum) { + return this.ptiPageArray[pageNum]; + } +} module.exports = PTIXmlParser; diff --git a/license.txt b/license.txt index 46e5959e..29575a40 100755 --- a/license.txt +++ b/license.txt @@ -1,7 +1,12 @@ -Copyright 2013 Intuit, Inc. +Licensed under the Apache License, Version 2.0 (the "License"); -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: +Copyright (c) 2016 Modesty Zhang. (@modestyqz) -http://www.apache.org/licenses/LICENSE-2.0 +You may not use this work except in compliance with the License: +http://www.apache.org/licenses/LICENSE-2.0. -Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License at http://www.apache.org/licenses/LICENSE-2.0 for the +specific language governing permissions and limitations under the License. diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..0024257a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "pdf2json", + "version": "2.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@xmldom/xmldom": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz", + "integrity": "sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==" + } + } +} diff --git a/package.json b/package.json index 07912736..c0f7c380 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,7 @@ { "name": "pdf2json", - "_id": "pdf2json@0.7.1", - "version": "0.7.1", - "description": "A PDF file parser that converts PDF binaries to text based JSON, powered by porting a fork of PDF.JS to Node.js", + "version": "2.0.0", + "description": "PDF file parser that converts PDF binaries to text based JSON, powered by porting a fork of PDF.JS to Node.js", "keywords": [ "pdf", "pdf parser", @@ -28,28 +27,32 @@ }, "main": "./pdfparser.js", "scripts": { - "test": "vows ./test" + "test": "cd ./test && sh p2j.forms.sh", + "test-misc": "cd ./test && sh p2j.one.sh misc . \"Expected: 5 success, 2 exception with stack trace\" ", + "parse": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form", + "parse-s": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s", + "parse-t": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t", + "parse-c": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c", + "parse-m": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c -m", + "parse-r": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form -o ./test/target/fd/form -t -c -m -r", + "parse-242": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i242_testingWithTable.pdf -o ./test/target/misc", + "parse-e": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i43_encrypted.pdf -o ./test/target/misc", + "parse-e2": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i243_problem_file_anon.pdf -o ./test/target/misc", + "parse-e3": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i200_test.pdf -o ./test/target/misc" }, "engines": { - "node": ">=0.8" + "node": ">=14.18.0", + "npm": ">=6.14.15" }, "bin": { "pdf2json": "./bin/pdf2json" }, "dependencies": { - "xmldom": ">=0.1.13", - "underscore": ">=1.4.2", - "optimist": ">=0.3.5", - "async": ">=0.2.6" - }, - "devDependencies": { - "vows": "^0.8.1" + "@xmldom/xmldom": "^0.7.5" }, + "devDependencies": {}, "bundledDependencies": [ - "xmldom", - "underscore", - "optimist", - "async" + "@xmldom/xmldom" ], "maintainers": [ { @@ -60,15 +63,8 @@ ], "contributors": [], "bugs": { - "email": "modestyz@hotmail.com", "url": "http://github.com/modesty/pdf2json/issues" }, - "licenses": [ - { - "type": "LGPL", - "url": "http://www.gnu.org/licenses/lgpl.html" - } - ], - "readme": "https://github.com/modesty/pdf2json/blob/master/readme.md", - "_from": "pdf2json" + "license": "Apache-2.0", + "readme": "https://github.com/modesty/pdf2json/blob/master/readme.md" } diff --git a/pdf2json.js b/pdf2json.js index 540608ca..19939fbf 100644 --- a/pdf2json.js +++ b/pdf2json.js @@ -1,4 +1,2 @@ -'use strict'; - -var P2JCMD = require('./lib/p2jcmd'); +const P2JCMD = require('./lib/p2jcmd'); new P2JCMD().start(); diff --git a/pdfparser.js b/pdfparser.js index f88020a7..340be777 100644 --- a/pdfparser.js +++ b/pdfparser.js @@ -1,154 +1,167 @@ -var PDFJS = require("./lib/pdf.js"), - nodeUtil = require("util"), - nodeEvents = require("events"), - _ = require("underscore"), - fs = require('fs'), - async = require("async"); - -var PDFParser = (function () { - 'use strict'; - // private static - var _nextId = 1; - var _name = 'PDFParser'; - - var _binBuffer = {}; - var _maxBinBufferCount = 10; +const fs = require("fs"), + { readFile } = require("fs/promises"), + {EventEmitter} = require("events"), + nodeUtil = require("util"), + PDFJS = require("./lib/pdf"), + {ParserStream} = require("./lib/parserstream"), + {kColors, kFontFaces, kFontStyles} = require("./lib/pdfconst"); + + +class PDFParser extends EventEmitter { // inherit from event emitter + //public static + static get colorDict() {return kColors; } + static get fontFaceDict() { return kFontFaces; } + static get fontStyleDict() { return kFontStyles; } + + //private static + static #maxBinBufferCount = 10; + static #binBuffer = {}; + + //private + #password = ""; + + #context = null; // service context object, only used in Web Service project; null in command line + + #pdfFilePath = null; //current PDF file to load and parse, null means loading/parsing not started + #pdfFileMTime = null; // last time the current pdf was modified, used to recognize changes and ignore cache + #data = null; //if file read success, data is PDF content; if failed, data is "err" object + #PDFJS = null; //will be initialized in constructor + #processFieldInfoXML = false;//disable additional _fieldInfo.xml parsing and merging (do NOT set to true) // constructor - var cls = function (context, needRawText) { - //call constructor for super class - nodeEvents.EventEmitter.call(this); - + constructor(context, needRawText, password) { + //call constructor for super class + super(); + // private - var _id = _nextId++; - - // public (every instance will have their own copy of these methods, needs to be lightweight) - this.get_id = function() { return _id; }; - this.get_name = function() { return _name + _id; }; - // service context object, only used in Web Service project; null in command line - this.context = context; - - this.pdfFilePath = null; //current PDF file to load and parse, null means loading/parsing not started - this.data = null; //if file read success, data is PDF content; if failed, data is "err" object - this.PDFJS = new PDFJS(needRawText); - this.parsePropCount = 0; - this.processFieldInfoXML = false;//disable additional _fieldInfo.xml parsing and merging - }; - // inherit from event emitter - nodeUtil.inherits(cls, nodeEvents.EventEmitter); - - // public static - cls.get_nextId = function () { - return _name + _nextId; - }; - - //private methods, needs to invoked by [funcName].call(this, ...) - var _onPDFJSParseDataReady = function(data) { - _.extend(this.data, data); - this.parsePropCount++; - if (this.parsePropCount >= 2) { - this.emit("pdfParser_dataReady", this); - nodeUtil.p2jinfo("PDF parsing completed."); + this.#context = context; + + this.#pdfFilePath = null; //current PDF file to load and parse, null means loading/parsing not started + this.#pdfFileMTime = null; // last time the current pdf was modified, used to recognize changes and ignore cache + this.#data = null; //if file read success, data is PDF content; if failed, data is "err" object + this.#processFieldInfoXML = false;//disable additional _fieldInfo.xml parsing and merging (do NOT set to true) + + this.#PDFJS = new PDFJS(needRawText); + this.#password = password; + } + + //public getter + get data() { return this.#data; } + get binBufferKey() { return this.#pdfFilePath + this.#pdfFileMTime; } + + //private methods, needs to invoked by [funcName].call(this, ...) + #onPDFJSParseDataReady(data) { + if (!data) { //v1.1.2: data===null means end of parsed data + nodeUtil.p2jinfo("PDF parsing completed."); + this.emit("pdfParser_dataReady", this.#data); + } + else { + this.#data = {...this.#data, ...data}; + } + } + + #onPDFJSParserDataError(err) { + this.#data = null; + this.emit("pdfParser_dataError", {"parserError": err}); + // this.emit("error", err); + } + + #startParsingPDF(buffer) { + this.#data = {}; + + this.#PDFJS.on("pdfjs_parseDataReady", this.#onPDFJSParseDataReady.bind(this)); + this.#PDFJS.on("pdfjs_parseDataError", this.#onPDFJSParserDataError.bind(this)); + + //v1.3.0 the following Readable Stream-like events are replacement for the top two custom events + this.#PDFJS.on("readable", meta => this.emit("readable", meta)); + this.#PDFJS.on("data", data => this.emit("data", data)); + this.#PDFJS.on("error", this.#onPDFJSParserDataError.bind(this)); + + this.#PDFJS.parsePDFData(buffer || PDFParser.#binBuffer[this.binBufferKey], this.#password); + } + + #processBinaryCache() { + if (this.binBufferKey in PDFParser.#binBuffer) { + this.#startParsingPDF(); + return true; + } + + const allKeys = Object.keys(PDFParser.#binBuffer); + if (allKeys.length > PDFParser.#maxBinBufferCount) { + const idx = this.id % PDFParser.#maxBinBufferCount; + const key = allKeys[idx]; + PDFParser.#binBuffer[key] = null; + delete PDFParser.#binBuffer[key]; + + nodeUtil.p2jinfo("re-cycled cache for " + key); + } + + return false; + } + + //public APIs + createParserStream() { + return new ParserStream(this, {objectMode: true, bufferSize: 64 * 1024}); + } + + async loadPDF(pdfFilePath, verbosity) { + nodeUtil.verbosity(verbosity || 0); + nodeUtil.p2jinfo("about to load PDF file " + pdfFilePath); + + this.#pdfFilePath = pdfFilePath; + + try { + this.#pdfFileMTime = fs.statSync(pdfFilePath).mtimeMs; + if (this.#processFieldInfoXML) { + this.#PDFJS.tryLoadFieldInfoXML(pdfFilePath); + } + + if (this.#processBinaryCache()) + return; + + PDFParser.#binBuffer[this.binBufferKey] = await readFile(pdfFilePath); + nodeUtil.p2jinfo(`Load OK: ${pdfFilePath}`); + this.#startParsingPDF(); } - }; - - var _onPDFJSParserDataError = function(data) { - this.data = data; - this.emit("pdfParser_dataError", this); - }; - - var startParsingPDF = function(buffer) { - this.data = {}; - this.parsePropCount = 0; - - this.PDFJS.on("pdfjs_parseDataReady", _.bind(_onPDFJSParseDataReady, this)); - this.PDFJS.on("pdfjs_parseDataError", _.bind(_onPDFJSParserDataError, this)); - - this.PDFJS.parsePDFData(buffer || _binBuffer[this.pdfFilePath]); - }; - - var processBinaryCache = function() { - if (_.has(_binBuffer, this.pdfFilePath)) { - startParsingPDF.call(this); - return true; + catch(err) { + nodeUtil.p2jerror(`Load Failed: ${pdfFilePath} - ${err}`); + this.emit("pdfParser_dataError", err); } + } - var allKeys = _.keys(_binBuffer); - if (allKeys.length > _maxBinBufferCount) { - var idx = this.get_id() % _maxBinBufferCount; - var key = allKeys[idx]; - _binBuffer[key] = null; - delete _binBuffer[key]; - - nodeUtil.p2jinfo("re-cycled cache for " + key); - } + // Introduce a way to directly process buffers without the need to write it to a temporary file + parseBuffer(pdfBuffer) { + this.#startParsingPDF(pdfBuffer); + } - return false; - }; + getRawTextContent() { return this.#PDFJS.getRawTextContent(); } + getRawTextContentStream() { return ParserStream.createContentStream(this.getRawTextContent()); } - var processPDFContent = function(err, data) { - nodeUtil.p2jinfo("Load PDF file status:" + (!!err ? "Error!" : "Success!") ); - if (err) { - this.data = err; - this.emit("pdfParser_dataError", this); - } - else { - _binBuffer[this.pdfFilePath] = data; - startParsingPDF.call(this); - } - }; + getAllFieldsTypes() { return this.#PDFJS.getAllFieldsTypes(); }; + getAllFieldsTypesStream() { return ParserStream.createContentStream(this.getAllFieldsTypes()); } - var fq = async.queue(function (task, callback) { - fs.readFile(task.path, callback); - }, 250); - - // public (every instance will share the same method, but has no access to private fields defined in constructor) - cls.prototype.loadPDF = function (pdfFilePath, verbosity) { - nodeUtil.verbosity(verbosity); - nodeUtil.p2jinfo("about to load PDF file " + pdfFilePath); - - this.pdfFilePath = pdfFilePath; - if (this.processFieldInfoXML) { - this.PDFJS.tryLoadFieldInfoXML(pdfFilePath); - } - - if (processBinaryCache.call(this)) - return; - -// fs.readFile(pdfFilePath, _.bind(processPDFContent, this)); - fq.push({path: pdfFilePath}, _.bind(processPDFContent, this)); - }; - - // Introduce a way to directly process buffers without the need to write it to a temporary file - cls.prototype.parseBuffer = function (pdfBuffer) { - startParsingPDF.call(this, pdfBuffer); - }; - - cls.prototype.getRawTextContent = function() { - return this.PDFJS.getRawTextContent(); - }; - - cls.prototype.destroy = function() { - this.removeAllListeners(); - - //context object will be set in Web Service project, but not in command line utility - if (this.context) { - this.context.destroy(); - this.context = null; - } + getMergedTextBlocksIfNeeded() { return this.#PDFJS.getMergedTextBlocksIfNeeded(); } + getMergedTextBlocksStream() { return ParserStream.createContentStream(this.getMergedTextBlocksIfNeeded()) } - this.pdfFilePath = null; - this.data = null; + destroy() { // invoked with stream transform process + super.removeAllListeners(); - this.PDFJS.destroy(); - this.PDFJS = null; + //context object will be set in Web Service project, but not in command line utility + if (this.#context) { + this.#context.destroy(); + this.#context = null; + } - this.parsePropCount = 0; - }; + this.#pdfFilePath = null; + this.#pdfFileMTime = null; + this.#data = null; + this.#processFieldInfoXML = false;//disable additional _fieldInfo.xml parsing and merging (do NOT set to true) - return cls; -})(); + this.#PDFJS.destroy(); + this.#PDFJS = null; + } +} module.exports = PDFParser; diff --git a/readme.md b/readme.md index 35b960ab..d65e776c 100644 --- a/readme.md +++ b/readme.md @@ -14,118 +14,179 @@ Or, install it globally: To update with latest version: >sudo npm update pdf2json -g -To Run in RESTful Web Servie or as Commandline Utility +To Run in RESTful Web Service or as Commandline Utility * More details can be found at the bottom of this document. -### Install on Ubuntu +## Test -For newcomers, make sure to have the binary "node" installed. +After install, run command line: -```shell -$ which node -/usr/sbin/node +> npm run test -$ node --version -v0.10.22 -``` +It'll scan and parse *260* PDF AcroForm files under *_./test/pdf_*, runs with *_-s -t -c -m_* command line options, generates primary output JSON, additional text content JSON, form fields JSON and merged text JSON file for each PDF. It usually takes ~20s in my MacBook Pro to complete, check *_./test/target/_* for outputs. -If you don't have it correctly configured, you will not even get the version output from pdf2json binary: +### Test Exception Handlings -``` -$ pdf2json -v +After install, run command line: -``` +> npm run test-misc -If the version does not get printed, then you need to properly install nodejs configure your system to properly point to it. Make sure to follow following steps: +It'll scan and parse all PDF files under *_./test/pdf/misc_*, also runs with *_-s -t -c -m_* command line options, generates primary output JSON, additional text content JSON, form fields JSON and merged text JSON file for 5 PDF fields, while catches exceptions with stack trace for: + * _bad XRef entry_ for `pdf/misc/i200_test.pdf` + * _unsupported encryption algorithm_ for `pdf/misc/i43_encrypted.pdf` + * _Invalid XRef stream header_ for `pdf/misc/i243_problem_file_anon.pdf` -* Install nodejs as described in http://stackoverflow.com/a/16303380/433814. You should have the following: +### Test Streams +After install, run command line: -``` -$ nodejs --version -v0.10.22 -``` +> npm run parse-r -* Create a symbolic link from node to nodejs +It scans 165 PDF files under *../test/pdf/fd/form_*, parses with [Stream API](https://nodejs.org/dist/latest-v14.x/docs/api/stream.html), then generates output to *_./test/target/fd/form_*. -``` -$ sudo rm -f /usr/sbin/node -$ sudo ln -s /usr/bin/nodejs /usr/sbin/node -``` -* Verify the version of node and install +More test scripts with different commandline options can be found at *_package.json_*. -``` -$ which node -/usr/sbin/node +## Code Example -$ node --version -v0.10.22 -``` -* Proceed with the install of pdf2json as described. +* Parse a PDF file then write to a JSON file: -``` -$ sudo npm install -g pdf2json -npm http GET https://registry.npmjs.org/pdf2json -npm http 304 https://registry.npmjs.org/pdf2json -/usr/bin/pdf2json -> /usr/lib/node_modules/pdf2json/bin/pdf2json -pdf2json@0.6.1 /usr/lib/node_modules/pdf2json +````javascript + const fs = require('fs'), + PDFParser = require("pdf2json"); -$ which pdf2json -/usr/bin/pdf2json + const pdfParser = new PDFParser(); -$ pdf2json --version -0.6.2 -``` + pdfParser.on("pdfParser_dataError", errData => console.error(errData.parserError) ); + pdfParser.on("pdfParser_dataReady", pdfData => { + fs.writeFile("./pdf2json/test/F1040EZ.json", JSON.stringify(pdfData)); + }); -## Code Example + pdfParser.loadPDF("./pdf2json/test/pdf/fd/form/F1040EZ.pdf"); +```` -```javascript +Or, call directly with buffer: - var nodeUtil = require("util"), - fs = require('fs'), - _ = require('underscore'), - PDFParser = require("./pdf2json/PDFParser"); +````javascript + fs.readFile(pdfFilePath, (err, pdfBuffer) => { + if (!err) { + pdfParser.parseBuffer(pdfBuffer); + } + }) +```` - var pdfParser = new PDFParser(); +Or, use more granular page level parsing events (v2.0.0) - pdfParser.on("pdfParser_dataReady", _.bind(_onPFBinDataReady, self)); +````javascript + pdfParser.on("readable", meta => console.log("PDF Metadata", meta) ); + pdfParser.on("data", page => console.log(page ? "One page paged" : "All pages parsed", page)); + pdfParser.on("error", err => console.erro("Parser Error", err); +```` - pdfParser.on("pdfParser_dataError", _.bind(_onPFBinDataError, self)); +* Parse a PDF then write a .txt file (which only contains textual content of the PDF) - var pdfFilePath = _pdfPathBase + folderName + "/" + pdfId + ".pdf"; +````javascript + const fs = require('fs'), + PDFParser = require("pdf2json"); - pdfParser.loadPDF(pdfFilePath); + const pdfParser = new PDFParser(this,1); - // or call directly with buffer - fs.readFile(pdfFilePath, function (err, pdfBuffer) { - if (!err) { - pdfParser.parseBuffer(pdfBuffer); - } - }) + pdfParser.on("pdfParser_dataError", errData => console.error(errData.parserError) ); + pdfParser.on("pdfParser_dataReady", pdfData => { + fs.writeFile("./pdf2json/test/F1040EZ.content.txt", pdfParser.getRawTextContent(), ()=>{console.log("Done.");}); + }); -``` + pdfParser.loadPDF("./pdf2json/test/pdf/fd/form/F1040EZ.pdf"); +```` -## API Reference +* Parse a PDF then write a fields.json file that only contains interactive forms' fields information: -* loadPDF: +````javascript + const fs = require('fs'), + PDFParser = require("pdf2json"); - function loadPDF(pdfFilePath); + const pdfParser = new PDFParser(); + + pdfParser.on("pdfParser_dataError", errData => console.error(errData.parserError) ); + pdfParser.on("pdfParser_dataReady", pdfData => { + fs.writeFile("./pdf2json/test/F1040EZ.fields.json", JSON.stringify(pdfParser.getAllFieldsTypes()), ()=>{console.log("Done.");}); + }); + + pdfParser.loadPDF("./pdf2json/test/pdf/fd/form/F1040EZ.pdf"); +```` + +Alternatively, you can pipe input and output streams: (requires v1.1.4) + +````javascript + const fs = require('fs'), + PDFParser = require("pdf2json"); + + const inputStream = fs.createReadStream("./pdf2json/test/pdf/fd/form/F1040EZ.pdf", {bufferSize: 64 * 1024}); + const outputStream = fs.createWriteStream("./pdf2json/test/target/fd/form/F1040EZ.json"); + + inputStream.pipe(new PDFParser()).pipe(new StringifyStream()).pipe(outputStream); +```` + +With v2.0.0, last line above changes to +````javascript + inputStream.pipe(this.pdfParser.createParserStream()).pipe(new StringifyStream()).pipe(outputStream); +```` + +For additional output streams support: +````javascript + #generateMergedTextBlocksStream(callback) { + const outputStream = ParserStream.createOutputStream(this.outputPath.replace(".json", ".merged.json"), callback); + this.pdfParser.getMergedTextBlocksStream().pipe(new StringifyStream()).pipe(outputStream); + } + + #generateRawTextContentStream(callback) { + const outputStream = ParserStream.createOutputStream(this.outputPath.replace(".json", ".content.txt"), callback); + this.pdfParser.getRawTextContentStream().pipe(outputStream); + } -load PDF file from specified file path asynchronously. + #generateFieldsTypesStream(callback) { + const outputStream = ParserStream.createOutputStream(this.outputPath.replace(".json", ".fields.json"), callback); + this.pdfParser.getAllFieldsTypesStream().pipe(new StringifyStream()).pipe(outputStream); + } +```` +See [p2jcmd.js](https://github.com/modesty/pdf2json/blob/master/lib/p2jcmd.js) for more details. -If failed, event "pdfParser_dataError" will be raised with error object; -If success, event "pdfParser_dataReady" will be raised with output data object, which can be saved as json file (in command line) or serialized to json when running in web service. + +## API Reference + +* events: + * pdfParser_dataError: will be raised when parsing failed + * pdfParser_dataReady: when parsing succeeded -## Output Text File +* alternative events: (v2.0.0) + * readable: first event dispatched after PDF file metadata is parsed and before processing any page + * data: one parsed page succeeded, null means last page has been processed, signle end of data stream + * error: exception or error occured -Please refer to the "-c" command line argument (v0.6.8) at the bottom of this document. +* start to parse PDF file from specified file path asynchronously: +````javascript + function loadPDF(pdfFilePath); +```` +If failed, event "pdfParser_dataError" will be raised with error object: {"parserError": errObj}; +If success, event "pdfParser_dataReady" will be raised with output data object: {"formImage": parseOutput}, which can be saved as json file (in command line) or serialized to json when running in web service. __note__: "formImage" is removed from v2.0.0, see breaking changes for details. + +* Get all textual content from "pdfParser_dataReady" event handler: +````javascript + function getRawTextContent(); +```` +returns text in string. + +* Get all input fields information from "pdfParser_dataReady" event handler: +````javascript + function getAllFieldsTypes(); +```` +returns an array of field objects. ## Output format Reference Current parsed data has four main sub objects to describe the PDF document. -* 'Agency': the main text identifier for the PDF document. If Id.AgencyId present, it'll be same, otherwise it'll be set as document title; * 'Transcoder': pdf2json version number -* 'Id': the XML meta data that embedded in PDF document +* 'Agency': the main text identifier for the PDF document. If Id.AgencyId present, it'll be same, otherwise it'll be set as document title; (_deprecated since v2.0.0, see notes below_) +* 'Id': the XML meta data that embedded in PDF document (_deprecated since v2.0.0, see notes below_) * all forms attributes metadata are defined in "Custom" tab of "Document Properties" dialog in Acrobat Pro; * v0.1.22 added support for the following custom properties: * AgencyId: default "unknown"; @@ -133,20 +194,50 @@ Current parsed data has four main sub objects to describe the PDF document. * MC: default false; * Max: default -1; * Parent: parent name, default "unknown"; + * *_v2.0.0_*: 'Agency' and 'Id' are replaced with full metadata, example: for `./test/pdf/fd/form/F1040.pdf`, full metadata is: + ````json + 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: { + 'xmp:modifydate': '2014-01-31T18:07:02-08:00', + 'xmp:createdate': '2013-12-03T13:39:43-08:00', + 'xmp:metadatadate': '2014-01-31T18:07:02-08:00', + 'xmp:creatortool': 'Adobe Acrobat Pro 10.1.8', + 'dc:format': 'application/pdf', + 'dc:description': 'U.S. Individual Income Tax Return', + 'dc:creator': 'SE:W:CAR:MP', + 'xmpmm:documentid': 'uuid:4d81e082-7ef2-4df7-b07b-8190e5d3eadf', + 'xmpmm:instanceid': 'uuid:7ea96d1c-3d2f-284a-a469-f0f284a093de', + 'pdf:producer': 'Adobe Acrobat Pro 10.1.8', + 'adhocwf:state': '1', + 'adhocwf:version': '1.1' + } + } + ```` * 'Pages': array of 'Page' object that describes each page in the PDF, including sizes, lines, fills and texts within the page. More info about 'Page' object can be found at 'Page Object Reference' section * 'Width': the PDF page width in page unit + ### Page object Reference Each page object within 'Pages' array describes page elements and attributes with 5 main fields: * 'Height': height of the page in page unit +* 'Width': width of the page in page unit, moved from root to page object in v2.0.0 * 'HLines': horizontal line array, each line has 'x', 'y' in relative coordinates for positioning, and 'w' for width, plus 'l' for length. Both width and length are in page unit * 'Vline': vertical line array, each line has 'x', 'y' in relative coordinates for positioning, and 'w' for width, plus 'l' for length. Both width and length are in page unit; * v0.4.3 added Line color support. Default is 'black', other wise set in 'clr' if found in color dictionary, or 'oc' field if not found in dictionary; * v0.4.4 added dashed line support. Default is 'solid', if line style is dashed line, {dsh:1} is added to line object; * 'Fills': an array of rectangular area with solid color fills, same as lines, each 'fill' object has 'x', 'y' in relative coordinates for positioning, 'w' and 'h' for width and height in page unit, plus 'clr' to reference a color with index in color dictionary. More info about 'color dictionary' can be found at 'Dictionary Reference' section. -* 'Texts': an array of text blocks with position, actual text and styling informations: +* 'Texts': an array of text blocks with position, actual text and styling information: * 'x' and 'y': relative coordinates for positioning * 'clr': a color index in color dictionary, same 'clr' field as in 'Fill' object. If a color can be found in color dictionary, 'oc' field will be added to the field as 'original color" value. * 'A': text alignment, including: @@ -156,8 +247,9 @@ Each page object within 'Pages' array describes page elements and attributes wit * 'R': an array of text run, each text run object has two main fields: * 'T': actual text * 'S': style index from style dictionary. More info about 'Style Dictionary' can be found at 'Dictionary Reference' section + * 'TS': [fontFaceId, fontSize, 1/0 for bold, 1/0 for italic] -v0.4.5 added support when fields attributes information is defined in external xml file. pdf2json will always try load field attributes xml file based on file name convention (pdffilename.pdf's field XML file must be named pdffilename_fieldInfo.xml in the same directory). If found, fields info will be injected. +v0.4.5 added support when fields attributes information is defined in external xml file. pdf2json will always try load field attributes xml file based on file name convention (pdfFileName.pdf's field XML file must be named pdfFileName_fieldInfo.xml in the same directory). If found, fields info will be injected. ### Dictionary Reference @@ -166,8 +258,8 @@ This dictionary data contract design will allow the output just reference a dict It does require the client of the payload to have the same dictionary definition to make sense out of it when render the parser output on to screen. * Color Dictionary - - var kColors = [ +````javascript + const kColors = [ '#000000', // 0 '#ffffff', // 1 '#4c4c4c', // 2 @@ -207,11 +299,11 @@ It does require the client of the payload to have the same dictionary definition '#008000', // Last + 6 '#000000' // Last + 7 ]; - +```` * Style Dictionary: - - var _kFontFaces = [ +````javascript + const kFontFaces = [ "QuickType,Arial,Helvetica,sans-serif", // 00 - QuickType - sans-serif variable font "QuickType Condensed,Arial Narrow,Arial,Helvetica,sans-serif", // 01 - QuickType Condensed - thin sans-serif variable font "QuickTypePi", // 02 - QuickType Pi @@ -220,7 +312,7 @@ It does require the client of the payload to have the same dictionary definition "OCR B MT,Courier New,Courier,monospace" // 05 - OCR-B MT - OCR readable san-serif fixed font ]; - var _kFontStyles = [ + const kFontStyles = [ // Face Size Bold Italic StyleID(Comment) // ----- ---- ---- ----- ----------------- [0, 6, 0, 0], //00 @@ -285,7 +377,17 @@ It does require the client of the payload to have the same dictionary definition [5, 10, 0, 0], //59 [5, 12, 0, 0] //60 ]; - +```` +v2.0.0: to access these dictionary programactically, do either +````javascript + const {kColors, kFontFaces, kFontStyles} = require("./lib/pdfconst"); +```` +or via public static getters of PDFParser: +````javascript + console.dir(PDFParser.colorDict); + console.dir(PDFParser.fontFaceDict); + console.dir(PDFParser.fontStyleDict); +```` ## Interactive Forms Elements @@ -605,7 +707,7 @@ In order to run pdf.js in Node.js, we have to address those dependencies and als * pdf.js' global objects (like PDFJS and globalScope) need to be wrapped in a node module's scope * API Dependencies * XHR Level 2: I don't need XMLHttpRequest to load PDF asynchronously in node.js, so replaced it with node's fs (File System) to load PDF file based on request parameters; - * DOMParser: pdf.js instantiates DOMParser to parse XML based PDF meta data, I used xmldom node module to replace this browser JS library dependency. xmldom can be found at https://github.com/jindw/xmldom; + * DOMParser: pdf.js instantiates DOMParser to parse XML based PDF meta data, I used xmldom node module to replace this browser JS library dependency. xmldom can be found at https://github.com/xmldom/xmldom; * Web Worker: pdf.js has "fake worker" code built in, not much works need to be done, only need to stay aware the parsing would occur in the same thread, not in background worker thread; * Canvas: in order to keep pdf.js code intact as much as possible, I decided to create a HTML5 Canvas API implementation in a node module. It's named as 'PDFCanvas' and has the same API as HTML5 Canvas does, so no change in pdf.js' canvas.js file, we just need to replace the browser's Canvas API with PDFCanvas. This way, when 2D context API invoked, PDFCanvas just write it to a JS object based on the json format above, rather than drawing graphics on html5 canvas; * Extend/Modify pdf.js @@ -637,13 +739,7 @@ This pdf2json module's output does not 100% maps from PDF definitions, some of t * As for interactive forms elements, their type, positions, sizes, limited styles and control data are all parsed and served in output, but user interactive data are not parsed, including radio button selection, checkbox status, text input box value, etc., these values should be handled in client renderer as part of user data, so that we can treat parsed PDF data as form template. -## Run Unit Test - -Test suite for pdf2json is created with Vows.js, it'll parse 3 PDF files under 'test/data' directory in parallel and have 12 test cases need to be honored. - - node test/index.js - -## Run As a Command Line Utility +## Run As a Commandline Utility v0.1.15 added the capability to run pdf2json as command line tool. It enables the use case that when running the parser as a web service is not absolutely necessary while transcoding local pdf files to json format is desired. Because in some use cases, the PDF files are relatively stable with less updates, even though parsing it in a web service, the parsing result will remain the same json payload. In this case, it's better to run pdf2json as a command line tool to pre-process those pdf files, and deploy the parsing result json files onto web server, client side form renderer can work in the same way as before while eliminating server side process to achieve higher scalability. @@ -707,15 +803,151 @@ Example of fields.json content: The fields.json output can be used to validate fields IDs with other data source, and/or to extract data value from user submitted PDFs. -v0.6.8 added "-c" or "--content" command line argument to generate raw text content from PDF. It'll be a separated output file named as (pdf_file_name).content.txt. -This feature is added to answer some inquiries on retrieving raw text content from PDF, it's in experimental phase at this point, needs more testing. +v0.6.8 added "-c" or "--content" command line argument to extract raw text content from PDF. It'll be a separated output file named as (pdf_file_name).content.txt. +If all you need is the textual content of the PDF, "-c" essentially converts PDF to text, of cause, all formatting and styling will be lost. + +## Run Unit Test (commandline) + +It takes less than 1 minutes for pdf2json to parse 261 PDFs under `test/pdf` directory. Usually, it takes about 40 seconds or so to parses all of them. Besides the parimary JSON for each PDF, it also generates text content JSON and form fields JSON file (by `-c` and `-t` parameters) for further testing. + +The 265 PDFs are all fill-able tax forms from government agencies for tax year 2013, including 165 federal forms, 23 efile instructions and 9 other state tax forms. + +Shell script is current driver for unit test. To parse one agency's PDFs, run the command line: + +```` + cd test + sh p2f.one.sh [2_character_agency_name] +```` + +For example, to parse and generate all 165 federal forms together with text content and forms fields: + +```` + cd test + sh p2f.one.sh fd +```` + +To parse and generate all VA forms together with text content and forms fields: + +```` + cd test + sh p2f.one.sh va +```` + +Additionally, to parse all 261 PDFs from commandline: + +```` + cd test + sh p2f.forms.sh +```` + +Or, from `npm scripts`: + +```` + npm test +```` + +Some testing PDFs are provided by bug reporters, like the "unsupported encryption" ([#43](https://github.com/modesty/pdf2json/issues/43)), "read property num from undefined" ([#26](https://github.com/modesty/pdf2json/issues/26)), and "excessive line breaks in text content" ([#28](https://github.com/modesty/pdf2json/issues/28)), their PDFs are all stored in `test/pdf/misc` directory. To run tests against these community contributed PDFs, run commandline: + +```` + npm run-script test-misc +```` + + +## Upgrade to ~v1.x.x + +If you have an early version of pdf2json, please remove your local `node_modules` directory and re-run `npm install` to upgrade to pdf2json@1.0.x. + +v1.x.x upgraded dependency packages, removed some unnecessary dependencies, started to assumes ES6 / ES2015 with node ~v4.x. More PDFs are added for unit testing. + +**Note:** +pdf2json has been in production for over 3 years, it's pretty reliable and solid when parsing hundreds (sometimes tens of thousands) of PDF forms every day, thanks to everybody's help. + +Starting v1.0.3, I'm trying to address a long over due annoying problem on [broken text blocks](https://github.com/modesty/pdf2json/issues/18). It's the biggest problem that hinders the efficiency of PDF content creation in our projects. Although the root cause lies in the original PDF streams, since the client doesn't render JSON character by character, it's a problem often appears in final rendered web content. We had to work around it by manually merge those text blocks. With the solution in v1.0.x, the need for manual text block merging is greately reduced. + +The solution is to put to a post-parsing process stage to identify and auto-merge those adjacent blocks. It's not ideal, but works in most of my tests with those 261 PDFs underneath test directory. + +The auto merge solution still needs some fine tuning, I keep it as an experimental feature for now, it's off by default, can be turned on by "-m" switch in commandline. + +In order to support this auto merging capability, text block objects have an additional "sw" (space width of the font) property together with x, y, clr and R. If you have a more effective usage of this new property for merging text blocks, please drop me a line. + +**Breaking Changes:** + +* v1.1.4 unified event data structure: **only when you handle these top level events, no change if you use commandline** + * event "pdfParser_dataError": {"parserError": errObj} + * event "pdfParser_dataReady": {"formImage": parseOutput} __note__: "formImage" is removed from v2.0.0, see breaking changes for details. + +* v1.0.8 fixed [issue 27](https://github.com/modesty/pdf2json/issues/27), it converts x coordinate with the same ratio as y, which is 24 (96/4), rather than 8.7 (96/11), please adjust client renderer accordingly when position all elements' x coordinate. + +* v2.0.0 output data field, `Agency` and `Id` are replaced with `Meta`, JSON of the PDF's full metadata. (See above for details). Each page object also added `Width` property besides `Height`. + +**Major Refactoring** +* v2.0.0 has the major refactoring since 2015. Primary updates including: + * Full PDF metadata support (see page format and breaking changes for details) + * Simplify root properties, besides the addition of `Meta` as root property, unnecessary "formImage" is removed from v2.0.0, also `Width` is move from root to each page object under `Pages`. + * Improved Stream support with test _`npm run parse-r`_, plus new events are added to PDF.js, including _`readable`_, _`data`_, _`end`_, _`error`_. These new Readable Stream like events can be optional replacement for customed events (_`pdfjs_parseDataReady`_, and _`pdfjs_parseDataError`_). It offers more granular data chunk flow control, like _`readable`_ with Meta, _`data`_ sequence for each PDF page result, instead of _`pdfjs_parseDataReady`_ combines all pages in one shot. See `./lib/parserstream.js` for more details + * Object with {clr:-1} (like HLines, VLines, Fills, etc.) is replaced with {oc: "#xxxxxx"}. If `clr` index value is valid, then `oc` (original color) field is removed. + * Greater performance, near ~20% improvements with PDFs under _test_ directory + * Better exception handling, fixes a few uncaught exception errors + * More test coverage, 4 more test scripts added, see _package.json_ for details + * Easier access to dictionaries, including color, font face and font style, see Dictionary reference section for details + * Refactor to ES6 class for major entry modules + * Dependencies removed: lodash, async and yargs + * Upgrade to Node v14.18.0 LTSs + +### Install on Ubuntu + +* Make sure nodejs is installed. Detailed installation steps can be found at http://stackoverflow.com/a/16303380/433814. + +```` +$ nodejs --version +v0.10.22 +```` + +* Create a symbolic link from node to nodejs + +``` +$ sudo rm -f /usr/sbin/node +$ sudo ln -s /usr/bin/nodejs /usr/sbin/node +``` + +* Verify the version of node and installation + +``` +$ which node +/usr/sbin/node + +$ node --version +v4.5.0 +``` + +* Proceed with the install of pdf2json as described above + +``` +$ sudo npm install -g pdf2json +npm http GET https://registry.npmjs.org/pdf2json +npm http 304 https://registry.npmjs.org/pdf2json +/usr/bin/pdf2json -> /usr/lib/node_modules/pdf2json/bin/pdf2json +pdf2json@0.6.1 /usr/lib/node_modules/pdf2json + +$ which pdf2json +/usr/bin/pdf2json + +$ pdf2json --version +0.6.2 +``` ## Run in a RESTful Web Service More info can be found at [Restful Web Service for pdf2json.](https://github.com/modesty/p2jsvc) +## Contribution +Participating in this project, you are expected to honor [open code of conduct](http://todogroup.org/opencodeofconduct/#Open+Code+of+Conduct/abuse@todogroup.org). +## License +Licensed under the [Apache License Version 2.0](https://github.com/modesty/pdf2json/blob/scratch/quadf-forms/license.txt). +## Support +I'm currently running this project in my spare time. Thanks all for your [stars](https://github.com/modesty/pdf2json/stargazers) and [supports](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=modestyZ%40gmail%2ecom&lc=GB&item_name=modesty%20zhang&item_number=git%40github%2ecom%3amodesty%2fpdf2json%2egit¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted). diff --git a/test/data/dc/availability.json b/test/data/dc/availability.json new file mode 100755 index 00000000..c14b985d --- /dev/null +++ b/test/data/dc/availability.json @@ -0,0 +1,35 @@ +{ + "formset": [ + { + "id": "S2013DCD", + "version": "0.1.1", + "agency": "dc", + "main": "DC40EZ", + "display_name": "Form 40EZ", + "forms": [ + {"id": "DC40EZ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCH", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + }, + { + "id": "S2013DCD", + "version": "0.1.1", + "agency": "dc", + "main": "DC40", + "display_name": "Form 40", + "forms": [ + {"id": "DC40", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCH", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DCSCHH", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DCSCHH34", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DCSCHI", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DCSCHN", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DCSCHNS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DCSCHS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DCSCHU", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DC2210", "planned_date":"02-13-14", "actual_date": "02-13-14"} + ] + } + + ] +} diff --git a/test/data/dc/form/DC2210.content.txt b/test/data/dc/form/DC2210.content.txt new file mode 100755 index 00000000..ac21f04e --- /dev/null +++ b/test/data/dc/form/DC2210.content.txt @@ -0,0 +1,111 @@ +IMPORTANT: Please read the instructions before completing this form. +2013 + +D-2210 + +Underpayment of Estimated +Income Tax By Individuals +6 Enter Line 5 amount or the annualized income amount in each + period +(The 2 +nd + period includes the 1 +st + period amount, 3 +rd + period includes the + 1 +st + and 2 +nd + period amounts, the 4 +th + period includes all period amounts). +7 DC withholding and estimated tax paid each period + + (The 2 +nd + period includes the 1 +st + period amount, 3 +rd + period includes the +st + and 2 +nd + period amounts, the 4 +th + period includes all period amounts). +8 Underpayment each period +(Line 6 minus Line 7) +9 Penalty Factors + + + + +10 Line 8 multiplied by Line 9 + + + +(See instructions) + +Your First name, M.I., Last name +Spouse’s/domestic partner’s First name, M.I., Last name +SSN +Spouse’s/domestic partner’s SSN +Daytime telephone number + +A. + +Your tax liability on taxable income after deducting your District of Columbia withholding tax and +applicable credits is less than $100, or +B. +You made periodic estimated tax payments and had amounts withheld as required and the total +is equal to or more than 110% of your last year’s taxes or is at least 90% of your current year’s +taxes. Note: You must have been a 12-month DC resident last year in order to use the prior year +110% exception. +$ +Government of the District of Columbia +Office of Tax and Revenue +Check here if you are using the “Annualized Income” method. +D-2210 page 1 +Revised 9/13 + Due date of Payments + +Make check or money order payable to: DC Treasurer +Computation of Underpayment + (lesser of Line 2 and 3). + Note: If your income was not evenly divided over 4 periods, see instructions + on the “Annualized Income” method. +No penalty is due and this form should not be filed if: +2 + +1 2013 DC Tax Liability “total tax” from your DC Individual Income Tax Return. +$ +Multiply the amount on Line 1 by 90% (.90) +$ +3 2012 DC Tax Liability “total tax” from your DC Individual Income Tax Return X 110%. +$ +4 Minimum withholding and estimated tax payment required for tax year 2013 +$ +5 Multiply Line 4 amount by 25% (.25) for amount required for each periodic payment +$ + +1 +11 Penalty – Total of amounts from Line 10. Pay this amount. +1st Period + +2nd Period + +3rd Period + +4th Period + +04/15/13 + +06/15/13 + +09/15/13 + +01/15/14 +----------------Page (0) Break---------------- diff --git a/test/data/dc/form/DC2210.fields.json b/test/data/dc/form/DC2210.fields.json new file mode 100755 index 00000000..c7884f8a --- /dev/null +++ b/test/data/dc/form/DC2210.fields.json @@ -0,0 +1 @@ +[{"id":"ANULIZD","type":"box","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"DAYPHON","type":"phone","calc":true,"value":""},{"id":"CYLIAB","type":"number","calc":false,"value":""},{"id":"MULTPCT1","type":"number","calc":true,"value":""},{"id":"PYLIAB","type":"number","calc":false,"value":""},{"id":"WHOLD","type":"number","calc":true,"value":""},{"id":"MULTPCT4","type":"number","calc":true,"value":""},{"id":"AMTEAPD1","type":"number","calc":false,"value":""},{"id":"AMTEAPD2","type":"number","calc":false,"value":""},{"id":"AMTEAPD3","type":"number","calc":false,"value":""},{"id":"AMTEAPD4","type":"number","calc":false,"value":""},{"id":"WHLDNG1","type":"number","calc":false,"value":""},{"id":"WHLDNG2","type":"number","calc":false,"value":""},{"id":"WHLDNG3","type":"number","calc":false,"value":""},{"id":"WHLDNG4","type":"number","calc":false,"value":""},{"id":"UNDRPD1","type":"number","calc":true,"value":""},{"id":"UNDRPD2","type":"number","calc":true,"value":""},{"id":"UNDRPD3","type":"number","calc":true,"value":""},{"id":"UNDRPD4","type":"number","calc":true,"value":""},{"id":"PNTYFAC1","type":"mask","calc":true,"value":""},{"id":"PNTYFAC2","type":"mask","calc":true,"value":""},{"id":"PNTYFAC3","type":"mask","calc":true,"value":""},{"id":"PNTYFAC4","type":"mask","calc":true,"value":""},{"id":"PAYXPEN1","type":"number","calc":true,"value":""},{"id":"PAYXPEN2","type":"number","calc":true,"value":""},{"id":"PAYXPEN3","type":"number","calc":true,"value":""},{"id":"PAYXPEN4","type":"number","calc":true,"value":""},{"id":"TOTPENLT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DC2210.json b/test/data/dc/form/DC2210.json new file mode 100755 index 00000000..21a3267e --- /dev/null +++ b/test/data/dc/form/DC2210.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"clr":1,"x":5.036,"y":11.5,"w":1.5,"l":97.651},{"clr":1,"x":5.036,"y":47.388,"w":1.5,"l":97.651},{"oc":"#2b2e34","x":34.023,"y":1.166,"w":1.5,"l":6.282},{"oc":"#2b2e34","x":34.023,"y":2.319,"w":1.5,"l":6.282},{"oc":"#bde8dd","x":5.809,"y":36.594,"w":1.5,"l":46.698},{"oc":"#bde8dd","x":5.809,"y":38.894,"w":1.5,"l":46.698},{"oc":"#bde8dd","x":5.809,"y":32.938,"w":1.5,"l":49.638},{"oc":"#bde8dd","x":5.809,"y":35.469,"w":1.5,"l":49.638},{"oc":"#bde8dd","x":5.564,"y":39.656,"w":1.5,"l":47.632},{"oc":"#bde8dd","x":5.564,"y":45.756,"w":1.5,"l":47.632},{"clr":1,"x":7.941,"y":5.481,"w":1.5,"l":91.094},{"clr":1,"x":7.941,"y":10.994,"w":1.5,"l":91.094},{"oc":"#d1efe7","x":9.556,"y":8.178,"w":1.5,"l":52.233},{"oc":"#d1efe7","x":9.556,"y":9.184,"w":1.5,"l":52.233},{"oc":"#d1efe7","x":63.112,"y":8.087,"w":1.5,"l":26.022},{"oc":"#d1efe7","x":63.112,"y":9.15,"w":1.5,"l":26.022},{"oc":"#d1efe7","x":62.812,"y":6.241,"w":1.5,"l":26.323},{"oc":"#d1efe7","x":62.812,"y":7.303,"w":1.5,"l":26.323},{"oc":"#d1efe7","x":63.138,"y":9.837,"w":1.5,"l":26.323},{"oc":"#d1efe7","x":63.138,"y":10.891,"w":1.5,"l":26.323},{"oc":"#d1efe7","x":9.462,"y":6.288,"w":1.5,"l":52.233},{"oc":"#d1efe7","x":9.462,"y":7.35,"w":1.5,"l":52.233},{"oc":"#2b2e34","x":4.735,"y":11.188,"w":3,"l":97.359},{"oc":"#bde8dd","x":77.523,"y":22.094,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.523,"y":22.981,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.533,"y":24.381,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.533,"y":25.269,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.543,"y":25.519,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.543,"y":26.406,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.533,"y":27.587,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.533,"y":28.475,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.553,"y":23.206,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":77.553,"y":24.094,"w":1.5,"l":19.66},{"oc":"#bde8dd","x":81.881,"y":44.031,"w":1.5,"l":20.23},{"oc":"#bde8dd","x":81.881,"y":44.984,"w":1.5,"l":20.23},{"oc":"#bde8dd","x":14.008,"y":35.76,"w":3,"l":1.59},{"oc":"#bde8dd","x":14.008,"y":36.301,"w":3,"l":1.59},{"oc":"#2b2e34","x":5.105,"y":19.138,"w":3,"l":97.359},{"oc":"#bde8dd","x":56.117,"y":34.431,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":56.117,"y":35.281,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":67.741,"y":34.431,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":67.741,"y":35.281,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.321,"y":34.431,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.321,"y":35.281,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.825,"y":34.431,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.825,"y":35.281,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":56.134,"y":37.869,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":56.134,"y":38.719,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":67.758,"y":37.869,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":67.758,"y":38.719,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.338,"y":37.869,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.338,"y":38.719,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.843,"y":37.869,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.843,"y":38.719,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":56.117,"y":39.694,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":56.117,"y":40.544,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":67.741,"y":39.694,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":67.741,"y":40.544,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.321,"y":39.694,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.321,"y":40.544,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.825,"y":39.694,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.825,"y":40.544,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":56.289,"y":42.431,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":56.289,"y":43.281,"w":1.5,"l":11.495},{"oc":"#bde8dd","x":67.913,"y":42.431,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":67.913,"y":43.281,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.493,"y":42.431,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":79.493,"y":43.281,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.997,"y":42.431,"w":1.5,"l":11.56},{"oc":"#bde8dd","x":90.997,"y":43.281,"w":1.5,"l":11.56},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"clr":1,"x":5.036,"y":11.5,"w":1.5,"l":35.888},{"clr":1,"x":102.687,"y":11.5,"w":1.5,"l":35.888},{"oc":"#2b2e34","x":34.023,"y":1.166,"w":1.5,"l":1.153},{"oc":"#2b2e34","x":40.305,"y":1.166,"w":1.5,"l":1.153},{"oc":"#bde8dd","x":5.809,"y":36.594,"w":1.5,"l":2.3},{"oc":"#bde8dd","x":52.508,"y":36.594,"w":1.5,"l":2.3},{"oc":"#bde8dd","x":5.809,"y":32.938,"w":1.5,"l":2.531},{"oc":"#bde8dd","x":55.447,"y":32.938,"w":1.5,"l":2.531},{"oc":"#bde8dd","x":5.564,"y":39.656,"w":1.5,"l":6.1},{"oc":"#bde8dd","x":53.195,"y":39.656,"w":1.5,"l":6.1},{"clr":1,"x":7.941,"y":5.481,"w":1.5,"l":5.513},{"clr":1,"x":99.034,"y":5.481,"w":1.5,"l":5.513},{"oc":"#d1efe7","x":9.556,"y":8.178,"w":1.5,"l":1.006},{"oc":"#d1efe7","x":61.789,"y":8.178,"w":1.5,"l":1.006},{"oc":"#d1efe7","x":63.112,"y":8.087,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.134,"y":8.087,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.812,"y":6.241,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.134,"y":6.241,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.138,"y":9.837,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":89.461,"y":9.837,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":9.462,"y":6.288,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.695,"y":6.288,"w":1.5,"l":1.063},{"oc":"#bde8dd","x":77.523,"y":22.094,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":97.183,"y":22.094,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":77.533,"y":24.381,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":97.193,"y":24.381,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":77.543,"y":25.519,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":97.203,"y":25.519,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":77.533,"y":27.587,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":97.193,"y":27.587,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":77.553,"y":23.206,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":97.212,"y":23.206,"w":1.5,"l":0.887},{"oc":"#bde8dd","x":81.881,"y":44.031,"w":1.5,"l":0.953},{"oc":"#bde8dd","x":102.111,"y":44.031,"w":1.5,"l":0.953},{"oc":"#bde8dd","x":14.008,"y":35.76,"w":3,"l":0.541},{"oc":"#bde8dd","x":15.598,"y":35.76,"w":3,"l":0.541},{"oc":"#bde8dd","x":56.117,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.613,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.741,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.301,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.321,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":90.882,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":90.825,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":102.386,"y":34.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":56.134,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.63,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.758,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.319,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.338,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":90.899,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":90.843,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":102.403,"y":37.869,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":56.117,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.613,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.741,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.301,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.321,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":90.882,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":90.825,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":102.386,"y":39.694,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":56.289,"y":42.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.784,"y":42.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":67.913,"y":42.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.473,"y":42.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":79.493,"y":42.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":91.054,"y":42.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":90.997,"y":42.431,"w":1.5,"l":0.85},{"oc":"#bde8dd","x":102.558,"y":42.431,"w":1.5,"l":0.85},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bde8dd","x":5.036,"y":11.5,"w":97.651,"h":35.887,"clr":-1},{"oc":"#2b2e34","x":34.023,"y":1.166,"w":6.282,"h":1.153,"clr":-1},{"oc":"#eef9f6","x":5.809,"y":36.594,"w":46.698,"h":2.3,"clr":-1},{"oc":"#eef9f6","x":5.809,"y":32.938,"w":49.638,"h":2.531,"clr":-1},{"oc":"#eef9f6","x":5.564,"y":39.656,"w":47.632,"h":6.1,"clr":-1},{"oc":"#e1f4ef","x":7.941,"y":5.481,"w":91.094,"h":5.513,"clr":-1},{"x":9.556,"y":8.178,"w":52.233,"h":1.006,"clr":1},{"x":63.112,"y":8.087,"w":26.022,"h":1.063,"clr":1},{"x":62.812,"y":6.241,"w":26.323,"h":1.063,"clr":1},{"x":63.138,"y":9.837,"w":26.323,"h":1.053,"clr":1},{"x":9.462,"y":6.288,"w":52.233,"h":1.063,"clr":1},{"x":77.523,"y":22.094,"w":19.66,"h":0.887,"clr":1},{"x":77.533,"y":24.381,"w":19.66,"h":0.887,"clr":1},{"x":77.543,"y":25.519,"w":19.66,"h":0.887,"clr":1},{"x":77.533,"y":27.588,"w":19.66,"h":0.888,"clr":1},{"x":77.553,"y":23.206,"w":19.66,"h":0.887,"clr":1},{"x":81.881,"y":44.031,"w":20.23,"h":0.953,"clr":1},{"x":56.117,"y":34.431,"w":11.495,"h":0.85,"clr":1},{"x":67.741,"y":34.431,"w":11.56,"h":0.85,"clr":1},{"x":79.321,"y":34.431,"w":11.56,"h":0.85,"clr":1},{"x":90.825,"y":34.431,"w":11.56,"h":0.85,"clr":1},{"x":56.134,"y":37.869,"w":11.495,"h":0.85,"clr":1},{"x":67.758,"y":37.869,"w":11.56,"h":0.85,"clr":1},{"x":79.338,"y":37.869,"w":11.56,"h":0.85,"clr":1},{"x":90.843,"y":37.869,"w":11.56,"h":0.85,"clr":1},{"x":56.117,"y":39.694,"w":11.495,"h":0.85,"clr":1},{"x":67.741,"y":39.694,"w":11.56,"h":0.85,"clr":1},{"x":79.321,"y":39.694,"w":11.56,"h":0.85,"clr":1},{"x":90.825,"y":39.694,"w":11.56,"h":0.85,"clr":1},{"x":56.289,"y":42.431,"w":11.495,"h":0.85,"clr":1},{"x":67.913,"y":42.431,"w":11.56,"h":0.85,"clr":1},{"x":79.493,"y":42.431,"w":11.56,"h":0.85,"clr":1},{"x":90.997,"y":42.431,"w":11.56,"h":0.85,"clr":1}],"Texts":[{"oc":"#2b2e34","x":12.456,"y":3.4000000000000004,"w":33.4868,"clr":-1,"A":"left","R":[{"T":"IMPORTANT%3A%20Please%20read%20the%20instructions%20before%20completing%20this%20form.","S":-1,"TS":[0,15,0,0]}]},{"x":34.426,"y":1.2690000000000001,"w":2.7725,"clr":1,"A":"left","R":[{"T":"2013%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":41.292,"y":1.2690000000000001,"w":4.09,"clr":-1,"A":"left","R":[{"T":"D-2210%20%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":48.446,"y":1.2690000000000001,"w":12.383000000000001,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Estimated%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":48.446,"y":2.169,"w":11.395000000000001,"clr":-1,"A":"left","R":[{"T":"Income%20Tax%20By%20Individuals","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":32.928,"w":28.439000000000007,"clr":-1,"A":"left","R":[{"T":"6%20%20%20Enter%20Line%205%20amount%20or%20the%20annualized%20income%20amount%20in%20each%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":33.678,"w":4.441,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20period%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.055,"y":33.678,"w":2.779,"clr":-1,"A":"left","R":[{"T":"(The%202","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":16.876,"y":33.49,"w":1.0950000000000002,"clr":-1,"A":"left","R":[{"T":"nd","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":17.863,"y":33.678,"w":9.511000000000001,"clr":-1,"A":"left","R":[{"T":"%20period%20includes%20the%201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":30.941,"y":33.49,"w":0.764,"clr":-1,"A":"left","R":[{"T":"st","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":31.63,"y":33.678,"w":7.757000000000001,"clr":-1,"A":"left","R":[{"T":"%20period%20amount%2C%203","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":42.295,"y":33.49,"w":0.915,"clr":-1,"A":"left","R":[{"T":"rd","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":43.103,"y":33.678,"w":8.909,"clr":-1,"A":"left","R":[{"T":"%20period%20includes%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":34.352,"w":2.408,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.733,"y":34.165,"w":0.764,"clr":-1,"A":"left","R":[{"T":"st","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":9.422,"y":34.352,"w":2.8089999999999997,"clr":-1,"A":"left","R":[{"T":"%20and%202","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":13.284,"y":34.165,"w":1.0950000000000002,"clr":-1,"A":"left","R":[{"T":"nd","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":14.272,"y":34.352,"w":9.876000000000001,"clr":-1,"A":"left","R":[{"T":"%20period%20amounts%2C%20the%204","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":27.851,"y":34.165,"w":0.8780000000000001,"clr":-1,"A":"left","R":[{"T":"th","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":28.643,"y":34.352,"w":15.903,"clr":-1,"A":"left","R":[{"T":"%20period%20includes%20all%20period%20amounts).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":36.602,"w":0.903,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.129,"y":36.602,"w":21.759000000000004,"clr":-1,"A":"left","R":[{"T":"DC%20withholding%20and%20estimated%20tax%20paid%20each%20period","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.715,"y":37.277,"w":3.08,"clr":-1,"A":"left","R":[{"T":"%20(The%202","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.95,"y":37.09,"w":1.0950000000000002,"clr":-1,"A":"left","R":[{"T":"nd","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":12.937,"y":37.277,"w":9.511000000000001,"clr":-1,"A":"left","R":[{"T":"%20period%20includes%20the%201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":26.015,"y":37.09,"w":0.764,"clr":-1,"A":"left","R":[{"T":"st","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":26.704,"y":37.277,"w":7.757000000000001,"clr":-1,"A":"left","R":[{"T":"%20period%20amount%2C%203","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":37.37,"y":37.09,"w":0.915,"clr":-1,"A":"left","R":[{"T":"rd","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":38.178,"y":37.277,"w":8.909,"clr":-1,"A":"left","R":[{"T":"%20period%20includes%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.957,"y":37.765,"w":0.764,"clr":-1,"A":"left","R":[{"T":"st","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":9.646,"y":37.953,"w":2.8089999999999997,"clr":-1,"A":"left","R":[{"T":"%20and%202","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":13.508,"y":37.765,"w":1.0950000000000002,"clr":-1,"A":"left","R":[{"T":"nd","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":14.495,"y":37.953,"w":9.876000000000001,"clr":-1,"A":"left","R":[{"T":"%20period%20amounts%2C%20the%204","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":28.075,"y":37.765,"w":0.8780000000000001,"clr":-1,"A":"left","R":[{"T":"th","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":28.867,"y":37.953,"w":15.903,"clr":-1,"A":"left","R":[{"T":"%20period%20includes%20all%20period%20amounts).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":39.453,"w":0.903,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.129,"y":39.453,"w":11.789,"clr":-1,"A":"left","R":[{"T":"Underpayment%20each%20period%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":28.391,"y":39.453,"w":9.340000000000003,"clr":-1,"A":"left","R":[{"T":"(Line%206%20minus%20Line%207)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":40.953,"w":0.903,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.129,"y":40.953,"w":7.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Penalty%20Factors%20%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":42.452,"w":13.306000000000001,"clr":-1,"A":"left","R":[{"T":"10%20%20Line%208%20multiplied%20by%20Line%209","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.129,"y":44.553,"w":7.609,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.272,"y":5.366,"w":14.364000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20First%20name%2C%20M.I.%2C%20Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.427,"y":7.2,"w":24.23899999999999,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fdomestic%20partner%E2%80%99s%20First%20name%2C%20M.I.%2C%20Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.086,"y":5.309,"w":2.136,"clr":-1,"A":"left","R":[{"T":"SSN%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.155,"y":7.138,"w":14.224,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fdomestic%20partner%E2%80%99s%20SSN%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.241,"y":8.903,"w":11.478,"clr":-1,"A":"left","R":[{"T":"Daytime%20telephone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":15.154,"y":13.666,"w":1.5410000000000001,"clr":-1,"A":"left","R":[{"T":"A.%20%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":17.453,"y":13.666,"w":42.163999999999994,"clr":-1,"A":"left","R":[{"T":"Your%20tax%20liability%20on%20taxable%20income%20after%20deducting%20your%20District%20of%20Columbia%20withholding%20tax%20and%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":17.453,"y":14.491,"w":17.006000000000004,"clr":-1,"A":"left","R":[{"T":"applicable%20credits%20is%20less%20than%20%24100%2C%20or","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":15.154,"y":15.315999999999999,"w":1.58,"clr":-1,"A":"left","R":[{"T":"B.%20%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":17.527,"y":15.315999999999999,"w":41.77000000000001,"clr":-1,"A":"left","R":[{"T":"You%20made%20periodic%20estimated%20tax%20payments%20and%20had%20amounts%20withheld%20as%20required%20and%20the%20total%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":17.527,"y":16.141,"w":41.575,"clr":-1,"A":"left","R":[{"T":"is%20equal%20to%20or%20more%20than%20110%25%20of%20your%20last%20year%E2%80%99s%20taxes%20or%20is%20at%20least%2090%25%20of%20your%20current%20year%E2%80%99s%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":17.527,"y":16.966,"w":42.001000000000005,"clr":-1,"A":"left","R":[{"T":"taxes.%20Note%3A%20You%20must%20have%20been%20a%2012-month%20DC%20resident%20last%20year%20in%20order%20to%20use%20the%20prior%20year%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":17.527,"y":17.791,"w":7.393999999999999,"clr":-1,"A":"left","R":[{"T":"110%25%20exception.","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":79.878,"y":43.953,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":12.254,"y":1.013,"w":17.505,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the%20District%20of%20Columbia%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.254,"y":1.5379999999999998,"w":11.324,"clr":-1,"A":"left","R":[{"T":"Office%20of%20Tax%20and%20Revenue","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.164,"y":35.538,"w":27.34100000000001,"clr":-1,"A":"left","R":[{"T":"Check%20here%20%20%20%20%20if%20you%20are%20using%20the%20%E2%80%9CAnnualized%20Income%E2%80%9D%20method.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":63.653,"y":47.473,"w":6.75,"clr":-1,"A":"left","R":[{"T":"D-2210%20page%201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":22.661,"y":47.582,"w":6.092,"clr":-1,"A":"left","R":[{"T":"Revised%20%209%2F13","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":72.62,"y":29.885,"w":9.661999999999999,"clr":-1,"A":"left","R":[{"T":"%20Due%20date%20of%20Payments","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":35.736,"y":46.055,"w":22.81999999999999,"clr":-1,"A":"left","R":[{"T":"Make%20check%20or%20money%20order%20payable%20to%3A%20DC%20Treasurer","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.786,"y":19.591,"w":14.619500000000004,"clr":-1,"A":"left","R":[{"T":"Computation%20of%20Underpayment","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":8.275,"y":26.278,"w":10.626,"clr":-1,"A":"left","R":[{"T":"(lesser%20of%20Line%202%20and%203).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.275,"y":28.528,"w":33.29199999999999,"clr":-1,"A":"left","R":[{"T":"Note%3A%20If%20your%20income%20was%20not%20evenly%20divided%20over%204%20periods%2C%20see%20instructions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.348,"y":29.153,"w":16.880999999999997,"clr":-1,"A":"left","R":[{"T":"%20on%20the%20%E2%80%9CAnnualized%20Income%E2%80%9D%20method.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":26.39,"y":12.138,"w":25.354999999999997,"clr":-1,"A":"left","R":[{"T":"No%20penalty%20is%20due%20and%20this%20form%20should%20not%20be%20filed%20if%3A","S":-1,"TS":[0,16,0,0]}]},{"oc":"#2b2e34","x":5.181,"y":23.091,"w":0.611,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.181,"y":21.966,"w":0.921,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.275,"y":21.966,"w":33.93900000000001,"clr":-1,"A":"left","R":[{"T":"2013%20DC%20Tax%20Liability%20%E2%80%9Ctotal%20tax%E2%80%9D%20from%20your%20DC%20Individual%20Income%20Tax%20Return.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":75.304,"y":21.966,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.26,"y":23.091,"w":19.709,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20Line%201%20by%2090%25%20(.90)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":75.305,"y":23.091,"w":0.921,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.181,"y":24.216,"w":0.921,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.275,"y":24.216,"w":37.80800000000001,"clr":-1,"A":"left","R":[{"T":"2012%20DC%20Tax%20Liability%20%E2%80%9Ctotal%20tax%E2%80%9D%20from%20your%20DC%20Individual%20Income%20Tax%20Return%20X%20110%25.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":75.304,"y":24.216,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.181,"y":25.341,"w":0.921,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.275,"y":25.341,"w":33.58399999999998,"clr":-1,"A":"left","R":[{"T":"Minimum%20withholding%20and%20estimated%20tax%20payment%20required%20for%20tax%20year%202013%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":75.304,"y":25.341,"w":0.921,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.181,"y":27.403,"w":0.921,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.275,"y":27.403,"w":37.097,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%204%20amount%20by%2025%25%20(.25)%20for%20amount%20required%20for%20each%20periodic%20payment%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":75.304,"y":27.403,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":8.129,"y":37.953,"w":2.2698,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.422,"y":43.803,"w":27.441,"clr":-1,"A":"left","R":[{"T":"11%20%20Penalty%20%E2%80%93%20Total%20of%20amounts%20from%20Line%2010.%20%20Pay%20this%20amount.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":57.792,"y":31.386000000000003,"w":4.34,"clr":-1,"A":"left","R":[{"T":"1st%20Period","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":69.342,"y":31.386000000000003,"w":4.673,"clr":-1,"A":"left","R":[{"T":"2nd%20Period","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":81.378,"y":31.386000000000003,"w":4.461,"clr":-1,"A":"left","R":[{"T":"3rd%20Period","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":93.105,"y":31.386000000000003,"w":4.455,"clr":-1,"A":"left","R":[{"T":"4th%20Period","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":57.792,"y":32.486,"w":4.156,"clr":-1,"A":"left","R":[{"T":"04%2F15%2F13","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":69.581,"y":32.486,"w":4.156,"clr":-1,"A":"left","R":[{"T":"06%2F15%2F13","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":81.369,"y":32.486,"w":4.156,"clr":-1,"A":"left","R":[{"T":"09%2F15%2F13","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":92.717,"y":32.486,"w":4.156,"clr":-1,"A":"left","R":[{"T":"01%2F15%2F14","S":-1,"TS":[0,11.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":0,"AM":1024,"x":9.592,"y":6.366,"w":52.269,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":1,"AM":1024,"x":62.969,"y":6.366,"w":25.922,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":2,"AM":1024,"x":9.592,"y":8.244,"w":52.269,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":3,"AM":1024,"x":63.246,"y":8.163,"w":25.923,"h":0.862},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DAYPHON","EN":0},"TI":4,"AM":1024,"x":63.418,"y":9.951,"w":25.997,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYLIAB","EN":0},"TI":5,"AM":0,"x":77.553,"y":22.145,"w":19.513,"h":0.833,"TU":"Line 1. 2013 DC Tax Liability \"total tax\" from your DC Individual Income Tax Return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTPCT1","EN":0},"TI":6,"AM":1024,"x":77.703,"y":23.248,"w":19.513,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYLIAB","EN":0},"TI":7,"AM":0,"x":77.683,"y":24.411,"w":19.513,"h":0.833,"TU":"Line 3. 2012 DC Tax Liability \"total tax\" from your DC Individual Income Tax Return times 110%."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHOLD","EN":0},"TI":8,"AM":1024,"x":77.663,"y":25.547,"w":19.513,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTPCT4","EN":0},"TI":9,"AM":1024,"x":77.643,"y":27.636,"w":19.513,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTEAPD1","EN":0},"TI":10,"AM":0,"x":56.132,"y":34.453,"w":11.203,"h":0.833,"TU":"Line 6. 1st period. Enter Line 5 amount or the annualized income amount in each period."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTEAPD2","EN":0},"TI":11,"AM":0,"x":67.933,"y":34.464,"w":11.203,"h":0.833,"TU":"Line 6. 2nd period. Enter Line 5 amount or the annualized income amount in each period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTEAPD3","EN":0},"TI":12,"AM":0,"x":79.443,"y":34.43,"w":11.203,"h":0.833,"TU":"Line 6. 3rd period. Enter Line 5 amount or the annualized income amount in each period."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTEAPD4","EN":0},"TI":13,"AM":0,"x":91.027,"y":34.45,"w":11.203,"h":0.833,"TU":"Line 6. 4th period. Enter Line 5 amount or the annualized income amount in each period."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHLDNG1","EN":0},"TI":15,"AM":0,"x":56.208,"y":37.904,"w":11.203,"h":0.833,"TU":"Line 7. 1st Period. DC withholding and estimated tax paid each period."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHLDNG2","EN":0},"TI":16,"AM":0,"x":67.944,"y":37.939,"w":11.203,"h":0.833,"TU":"Line 7. 2nd Period. DC withholding and estimated tax paid each period. (The 2nd period includes the 1st period amount)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHLDNG3","EN":0},"TI":17,"AM":0,"x":79.454,"y":37.904,"w":11.203,"h":0.833,"TU":"Line 7. 3rd Period. DC withholding and estimated tax paid each period. (The 3rd period includes the 1st and 2nd period amounts.)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHLDNG4","EN":0},"TI":18,"AM":0,"x":91.038,"y":37.924,"w":11.203,"h":0.833,"TU":"Line 7. 4th Period. DC withholding and estimated tax paid each period. (The 4th period includes all period amounts)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDRPD1","EN":0},"TI":19,"AM":1024,"x":56.262,"y":39.721,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDRPD2","EN":0},"TI":20,"AM":1024,"x":67.999,"y":39.756,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDRPD3","EN":0},"TI":21,"AM":1024,"x":79.509,"y":39.721,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDRPD4","EN":0},"TI":22,"AM":1024,"x":91.093,"y":39.741,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PNTYFAC1","EN":0},"TI":23,"AM":1024,"x":56.127,"y":41.06,"w":11.203,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PNTYFAC2","EN":0},"TI":24,"AM":1024,"x":67.939,"y":41.095,"w":11.203,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PNTYFAC3","EN":0},"TI":25,"AM":1024,"x":79.448,"y":41.033,"w":11.203,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PNTYFAC4","EN":0},"TI":26,"AM":1024,"x":91.033,"y":41.08,"w":11.203,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYXPEN1","EN":0},"TI":27,"AM":1024,"x":56.392,"y":42.436,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYXPEN2","EN":0},"TI":28,"AM":1024,"x":68.129,"y":42.471,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYXPEN3","EN":0},"TI":29,"AM":1024,"x":79.638,"y":42.436,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYXPEN4","EN":0},"TI":30,"AM":1024,"x":91.223,"y":42.456,"w":11.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPENLT","EN":0},"TI":31,"AM":1024,"x":82.046,"y":44.102,"w":19.813,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ANULIZD","EN":0},"TI":14,"AM":0,"x":13.913,"y":35.632,"w":1.939,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DC40.content.txt b/test/data/dc/form/DC40.content.txt new file mode 100755 index 00000000..90138f9b --- /dev/null +++ b/test/data/dc/form/DC40.content.txt @@ -0,0 +1,517 @@ +Government of the +District of Columbia +2013 + +D-40 Individual +Income Tax Return + +Print in CAPITAL letters using black ink. Leave lines blank that do not apply. +2013 D-40 P1 +Individual Income Tax Return page 1 File order 1 +Revised 09/13 +STAPLE W-2s AND ANY OTHER WITHHOLDING STATEMENTS HERE + +Fill in if: +Filing an +amended return +. + +Fill in if: +Filing for a deceased taxpayer + +See instructions. +Personal information + +Your telephone number +Your social security number (SSN) +and +and + Date of Birth (MMDDYYYY) +Home address (number, street and apartment number if applicable) + +City +STAPLE OTHER DOCUMENTS IN UPPER LEFT IN BACK +● +● +3 + +$ +. +00 + +Filing status +Single +, + Dependent claimed by someone else +1 +Fill in only one: + +Enter combined amounts for Lines 4–42. See instructions. + + +Head of household +Enter qualifying dependent and/or non-dependent information on Schedule S. +2 +Fill in if you are: + Part-year resident in DC from (month) to (month); number of months in DC +Income Information +a + +Wages, salaries, unemployment compensation and/or tips, +b + +Business income or loss, + +see instructions. +c + +Capital gain (or loss). + + +d + Rental real estate, royalties, partnerships, etc. +Computation of DC Gross and Adjusted Gross Income +3 + +Federal adjusted gross income. + +From adjusted gross income lines on Federal + Forms 1040, 1040A, 1040EZ, 1040NR, or 1040NR-EZ + +Additions to DC Income +4 Franchise tax deducted on federal forms, + +see instructions +. +5 Other additions from DC Schedule I, Calculation A, Line 8. +6 + Add + Lines 3, 4 and 5. + +Subtractions from DC Income +7 + +Part year residents, enter income received during period of nonresidence, +. +8 Taxable refunds, credits or offsets of state and local income tax. +9 Taxable amount of social security and tier 1 railroad retirement +11 DC and federal government pension and annuity limited exclusion, +see instructions. + +see instructions +. +13 Other subtractions from DC Schedule I, Calculation B, Line 16. +14 Total subtractions from DC income, +Lines 7-13. +15 DC adjusted gross income, + +Line 6 minus Line 14. + +a + $ +. +00 +b +$ +. +00 +c +$ +. +00 +d +$ +. +00 +From Federal Forms 1040 or 1040A. +Round cents to nearest dollar. If zero, leave the line blank. +Fill in if loss +Fill in if loss +Fill in if loss + +see instructions. +12 +$ +. +00 +13 +$ +. +00 +14 +$ +. +00 +15 +$ +. +00 +Fill in if loss +4 + +$ +. +00 +5 +$ +. +00 + +6 +$ +. +00 +Fill in if loss +Fill in if loss +7 + +$ +. +00 +8 + +$ +. +00 +9 +$ +. +00 +10 +$ +. +00 +11 +$ +. +00 + Date of Birth (MMDDYYYY) + +Spouse’s/registered domestic partner’s SSN +Your first name M.I. Last name +Spouse’s/registered domestic partner’s first name M.I. Last name +State + +Zip Code + +Married filing jointly, +Married filing separately, +Married filing separately on same return +filing separately on same return + Complete your federal return first – Enter your dependents’ information on DC Schedule S +(Not Supported) +(Not Supported) +(Not Supported) +10 Income reported and taxed this year on a DC franchise or fiduciary return. +Fill in + +if you are 62 or older + +if your spouse/domestic partner is 62 or older +12 DC and federal government survivor benefits, +Registered domestic partners filing jointly or +----------------Page (0) Break---------------- +2013 D-40 P2 +Individual Income Tax Return page 2 File order 2 +Enter your last name. +D-40 PAGE 2 +Enter your SSN. +spouse/domestic partner are over 65 or blind, attach a completed Calculation G, Schedule S. +Refund +– + Complete if Line 34 is more than Line 27 +35 Amount you overpaid +Subtract Line 27 from Line 34 +36 Amount to be applied +to your + +2014 estimated tax +37 Penalty +See instructions +38 Refund +Subtract sum of +Lines 36 and 37 from Line 35 +39 Contribution amount +from Sched. U, +Part II, Line 6 + +Can not exceed refund amt. on Line 38 +Put additional amt. on Line 42 +40 Net refund +Subtract Line 39 from Line 38 + See instructions. +Refund Options: + +. +Direct Deposit Account Type + +Third party designee +Signature +44 +T +otal amount due +Add Lines 41–43 +42 Contribution amount +from Sched. U, +Part II, Line 7 +41 +Tax due +Subtract Line +34 + +from Line 27 +Fill in if loss +17 +$ +. +00 +19 +$ +. +00 +20 +$ +. +00 +21 +$ +. +00 +From Federal form 2441; if part-year DC resident, fr +om Line 5, DC F +orm 2441 +41 +$ +. +00 +Preparer’s signature +Date +Your signature +Date +42 +$ + +. +00 +43a + +Penalty +$ + +. +00 +43b Interest +$ + +. +00 +Enter total P & I +43 +$ +. +00 +44 +$ + +. +00 +18 +36 +$ + +00 +35 +$ + +00 +22 +$ +. +00 +23 +$ +. +00 +26 +$ +. +00 +27 +$ +. +00 +24 +$ +. +00 +25 +$ +. +00 +28 +$ +. +00 +29 +$ +. +00 +30 +$ +. +00 +31 +$ +. +00 +32 +$ +. +00 +33 +$ +. +00 +34 +$ +. +00 +25a +28a +.00 X .40 +Enter result > +$ +.00 X .32 +Enter result > +$ +16 +Deduction type. +Take the same type as you took on your federal return. Fill in which type: +Standard or + +Itemized + +See instructions for amount to enter on Line 17. +17 +DC deduction amount. +Do not copy from federal return. For amount to enter, see instructions. +18 +Number of exemptions. +19 +Exemption amount. +Multiply $1,675 by number on line 18. Part-year DC residents see Calculation E, +see instructions +. +20 +Add Lines 17 and 19. +21 +DC taxable income. +Subtract Line 20 from Line 15. Enter result. +DC tax, credits and payments +22 +T +ax. +F +ill in + + Complete Calculation J on Schedule S. +23 +Credit for child and dependent care expenses +24 + Non-refundable credits from DC Schedule U, Part 1a, Line 6. +Attach Schedule U. + +25 + +DC Low Income Credit. + +25a + +Enter the number of exemptions claimed on your federal return. +26 +Total non-refundable credits. + +Add Lines 23, 24 and 25. +27 + Total tax. + +Subtract Line 26 from Line 22. If Line 22 is less than Line 26 leave Line 27 blank. +28 + DC Earned Income Tax Credit. Enter your federal EIC. + +29 + Property Tax Credit. +From your DC Schedule H; attach a copy +. +30 + Refundable credits from DC Schedule U, Part 1b, Line 4. +Attach Schedule U. +31 + DC income tax withheld + shown on F +orms W +-2 and 1099. A +ttach these forms. +32 + 2013 estimated income tax payments. +33 +34 + Total payments and refundable credits + Add Lines 28, 29–33. +Amount owed + – + Complete if Line 34 is equal to or less than Line 27 +37 +$ + +00 +38 +$ + +00 +39 +$ + +00 +40 +$ + +00 +If mor +e than 1 (more than 2 if filing jointly), or if you or your +if filing separately on same return. +28a Enter the number of qualified EIT +C children. + Tax paid with extension of time to file or with original return if this is an amended return. +Checking + +OR + + +Savings + +Will the refund you requested go to an account outside the U.S.? Yes +No +Routing Number +To deposit your refund, check the box and enter bank routing and account numbers. See instructions + +Account Number +To authorize another person to discuss this return with OTR, fill in here and enter the name and phone number of that person. See instructions. +Designee’s name +Phone number + Under penalties of law, I declare that I have examined this return and, to the best of my knowledge, it is correct. Declaration of paid preparer is based on information available to the preparer. +Spouse’s/domestic partner’s signature if filing jointly or separately on same return Date +Preparer's Tax Identification Number (PTIN) PTIN telephone number + + + +For information on the tax refund card and program limitations, see instructions or visit our website otr.dc.gov/refundprepaidcards +Use Calc. LIC/EITC to see if LIC or EITC is a greater benefit. See instructions. +If Line 21 is $100,000 or less, use tax tables to find the tax, If more, use Calculation I in instructions. +Check the box if Form D-2210 is attached +Check the box if Form D-2210 is attached +Mark one refund choice: +Direct deposit +Tax refund card +Paper check +----------------Page (1) Break---------------- diff --git a/test/data/dc/form/DC40.fields.json b/test/data/dc/form/DC40.fields.json new file mode 100755 index 00000000..8350d4bd --- /dev/null +++ b/test/data/dc/form/DC40.fields.json @@ -0,0 +1 @@ +[{"id":"AMENDBX","type":"box","calc":true,"value":""},{"id":"DEADBOXX","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FSA"},{"id":"FSRB","type":"radio","calc":false,"value":"FSC"},{"id":"FSRB","type":"radio","calc":false,"value":"FSE"},{"id":"FSRB","type":"radio","calc":false,"value":"FSF"},{"id":"FSRB","type":"radio","calc":false,"value":"FSD"},{"id":"FSRB","type":"radio","calc":false,"value":"FSDP"},{"id":"FSRB","type":"radio","calc":false,"value":"FSEP"},{"id":"FSRB","type":"radio","calc":false,"value":"FSB"},{"id":"PYRES","type":"box","calc":true,"value":""},{"id":"BUSLOSS","type":"box","calc":false,"value":""},{"id":"CAPLOSS","type":"box","calc":false,"value":""},{"id":"RENTLOSS","type":"box","calc":false,"value":""},{"id":"FAGLOSSX","type":"box","calc":false,"value":""},{"id":"ADDLOSSX","type":"box","calc":true,"value":""},{"id":"BX62","type":"box","calc":false,"value":""},{"id":"BXSP62","type":"box","calc":false,"value":""},{"id":"AGILOSSX","type":"box","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"TPDOB","type":"date","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"SPDOB","type":"date","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"TPINIT","type":"mask","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SPINIT","type":"mask","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"Add_Schedule_S_1","type":"link","calc":false,"value":""},{"id":"Add_Schedule_S_2","type":"link","calc":false,"value":""},{"id":"WAGES","type":"number","calc":false,"value":""},{"id":"BUSINC","type":"number","calc":false,"value":""},{"id":"CAPGAIN","type":"number","calc":false,"value":""},{"id":"RENTINC","type":"number","calc":false,"value":""},{"id":"FEDAGI","type":"number","calc":false,"value":""},{"id":"FRNTXDED","type":"number","calc":false,"value":""},{"id":"Add_Schedule_I_Line_8","type":"link","calc":false,"value":""},{"id":"OTHRADD","type":"number","calc":true,"value":""},{"id":"ADDFAG","type":"number","calc":true,"value":""},{"id":"NRINCOME","type":"number","calc":true,"value":""},{"id":"TXRFNDS","type":"number","calc":false,"value":""},{"id":"TXSSRR","type":"number","calc":false,"value":""},{"id":"FIDINC","type":"number","calc":false,"value":""},{"id":"OTHINC","type":"number","calc":false,"value":""},{"id":"SURVIVOR","type":"number","calc":false,"value":""},{"id":"Add_Schedule_I_Line_16","type":"link","calc":false,"value":""},{"id":"OTHRSUBS","type":"number","calc":true,"value":""},{"id":"ADDSUBS","type":"number","calc":true,"value":""},{"id":"DCAGI","type":"number","calc":true,"value":""},{"id":"DEDBOXRB","type":"radio","calc":false,"value":"STANDARD"},{"id":"DEDBOXRB","type":"radio","calc":false,"value":"ITEMIZED"},{"id":"TXINLOSS","type":"box","calc":true,"value":""},{"id":"TAXBOXX","type":"box","calc":false,"value":""},{"id":"D2210BX1","type":"box","calc":true,"value":""},{"id":"D2210BX2","type":"box","calc":true,"value":""},{"id":"A946RB","type":"radio","calc":false,"value":"OUTUS"},{"id":"A946RB","type":"radio","calc":false,"value":"NOCKBX"},{"id":"REFOPTRB","type":"radio","calc":false,"value":"DDX"},{"id":"REFOPTRB","type":"radio","calc":false,"value":"CCX"},{"id":"REFOPTRB","type":"radio","calc":false,"value":"PCX"},{"id":"ACCTTYRB","type":"radio","calc":false,"value":"CKBOX"},{"id":"ACCTTYRB","type":"radio","calc":false,"value":"SAVBOX"},{"id":"BXAUTH","type":"box","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"DEDUCT","type":"number","calc":false,"value":""},{"id":"EXEMPS","type":"number","calc":false,"value":""},{"id":"Add_Schedule_S_3","type":"link","calc":false,"value":""},{"id":"EXEMPAMT","type":"number","calc":true,"value":""},{"id":"DEDEXEMP","type":"number","calc":true,"value":""},{"id":"TAXINC","type":"number","calc":true,"value":""},{"id":"TAX","type":"number","calc":false,"value":""},{"id":"Add_Schedule_S_4","type":"link","calc":false,"value":""},{"id":"CHILDCR","type":"number","calc":false,"value":""},{"id":"CHCARECR","type":"number","calc":true,"value":""},{"id":"Add_Schedule_U_Line_6","type":"link","calc":false,"value":""},{"id":"OTHCRDS","type":"number","calc":true,"value":""},{"id":"LOWINCCR","type":"number","calc":false,"value":""},{"id":"EXEMP","type":"number","calc":false,"value":""},{"id":"NONREFCR","type":"number","calc":true,"value":""},{"id":"TOTTAX","type":"number","calc":true,"value":""},{"id":"FEDEIC","type":"number","calc":false,"value":""},{"id":"DCEIC","type":"number","calc":true,"value":""},{"id":"EITCNO","type":"number","calc":false,"value":""},{"id":"Add_Schedule_H","type":"link","calc":false,"value":""},{"id":"PROPTXCR","type":"number","calc":true,"value":""},{"id":"Add_Schedule_U_Line_4","type":"link","calc":false,"value":""},{"id":"RFNDCRDS","type":"number","calc":true,"value":""},{"id":"WITHHELD","type":"number","calc":false,"value":""},{"id":"ESTTAX","type":"number","calc":false,"value":""},{"id":"EXTPYMTS","type":"number","calc":false,"value":""},{"id":"TOTPYMTS","type":"number","calc":true,"value":""},{"id":"OVERPYMT","type":"number","calc":true,"value":""},{"id":"TAXDUE","type":"number","calc":true,"value":""},{"id":"APPLY","type":"number","calc":false,"value":""},{"id":"Add_Schedule_U_Line_7","type":"link","calc":false,"value":""},{"id":"CONTRIB2","type":"number","calc":true,"value":""},{"id":"Add_2210","type":"link","calc":false,"value":""},{"id":"Add_2210","type":"link","calc":false,"value":""},{"id":"REFPEN","type":"number","calc":true,"value":""},{"id":"UNDPNLTY","type":"number","calc":true,"value":""},{"id":"APPLYCON","type":"number","calc":true,"value":""},{"id":"INTEREST","type":"number","calc":false,"value":""},{"id":"CONTRIB","type":"number","calc":true,"value":""},{"id":"PENINT","type":"number","calc":true,"value":""},{"id":"Add_Schedule_U_Part_II","type":"link","calc":false,"value":""},{"id":"AMTDUE","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"ROUTE","type":"mask","calc":false,"value":""},{"id":"ACCT","type":"mask","calc":false,"value":""},{"id":"DESIGNEE","type":"alpha","calc":false,"value":""},{"id":"DSGNPHNO","type":"phone","calc":false,"value":""},{"id":"PREPNAME","type":"alpha","calc":true,"value":"SELF-PREPARED"},{"id":"PREPDATE","type":"date","calc":true,"value":""},{"id":"PTIN","type":"alpha","calc":true,"value":"SFF"},{"id":"PREPHONE","type":"phone","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DC40.json b/test/data/dc/form/DC40.json new file mode 100755 index 00000000..a1d1bba6 --- /dev/null +++ b/test/data/dc/form/DC40.json @@ -0,0 +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":"#e8f7f3","x":8.336,"y":4.484,"w":1.5,"l":92.563},{"oc":"#e8f7f3","x":8.336,"y":47.078,"w":1.5,"l":92.563},{"oc":"#2b2e34","x":24.655,"y":1.573,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":24.655,"y":2.573,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":8.611,"y":4.43,"w":3.75,"l":90.14},{"oc":"#2b2e34","x":8.413,"y":16.861,"w":3,"l":90.338},{"oc":"#2b2e34","x":9.253,"y":5.279,"w":0.7484999999999999,"l":14.363},{"oc":"#d1efe7","x":87.588,"y":6.939,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.588,"y":8.002,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.522,"y":6.945,"w":1.5,"l":88.12},{"oc":"#d1efe7","x":9.522,"y":8.042,"w":1.5,"l":88.12},{"oc":"#d1efe7","x":9.608,"y":6.95,"w":1.5,"l":2.243},{"oc":"#d1efe7","x":9.608,"y":7.976,"w":1.5,"l":2.243},{"oc":"#d1efe7","x":11.897,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":11.897,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":14.429,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":14.429,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":16.968,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":16.968,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":19.5,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":19.5,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":22.004,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":22.004,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":24.536,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":24.536,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":27.068,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":27.068,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":29.601,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":29.601,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":32.801,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":32.801,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":35.333,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":35.333,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":37.857,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":37.857,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":40.451,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":40.451,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":42.984,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":42.984,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":45.491,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":45.491,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":48.023,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":48.023,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":50.555,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":50.555,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":53.646,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":53.646,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":77.103,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":77.103,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":56.178,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":56.178,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":79.635,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":79.635,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":58.711,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":58.711,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":82.167,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":82.167,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":61.273,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":61.273,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":84.73,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":84.73,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":63.805,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":63.805,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":87.262,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":87.262,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":66.338,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":66.338,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":89.794,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":89.794,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":68.916,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":68.916,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":92.373,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":92.373,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":71.448,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":71.448,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":94.905,"y":6.959,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":94.905,"y":7.994,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":73.981,"y":6.953,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":73.981,"y":7.988,"w":1.5,"l":2.486},{"oc":"#d1efe7","x":87.141,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.141,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.736,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.736,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.098,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.098,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.693,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.693,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.288,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.288,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.445,"y":8.695,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":9.445,"y":9.792,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":9.53,"y":8.689,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.53,"y":9.748,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.877,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.877,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.472,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.472,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.067,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.067,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.663,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.663,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.258,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.258,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.853,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.853,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.448,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.448,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.044,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.044,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.639,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.639,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.234,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.234,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.83,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.83,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.654,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.654,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.616,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.616,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.211,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.211,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.806,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.806,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.402,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.402,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.997,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.997,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.592,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.592,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.188,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.188,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.783,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.783,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.378,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.378,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.973,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.973,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.569,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.569,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.164,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.164,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.759,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.759,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.355,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.355,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.95,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.95,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.545,"y":8.689,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.545,"y":9.752,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.402,"y":10.477,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":9.402,"y":11.573,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":9.488,"y":10.47,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.488,"y":11.523,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.834,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.834,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.429,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.429,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.024,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.024,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.62,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.62,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.215,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.215,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.81,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.81,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.405,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.405,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.001,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.001,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.596,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.596,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.191,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.191,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.787,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.787,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.611,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.611,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.573,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.573,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.168,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.168,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.763,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.763,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.359,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.359,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.954,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.954,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.549,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.549,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.145,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.145,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.74,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.74,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.335,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.335,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.93,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.93,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.526,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.526,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.121,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.121,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.716,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.716,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.312,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.312,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.907,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.907,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.502,"y":10.47,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.502,"y":11.533,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.307,"y":12.305,"w":1.5,"l":77.865},{"oc":"#d1efe7","x":9.307,"y":13.383,"w":1.5,"l":77.865},{"oc":"#d1efe7","x":9.393,"y":12.298,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.393,"y":13.352,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.739,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.739,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.334,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.334,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.93,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.93,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.525,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.525,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.12,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.12,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.716,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.716,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.311,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.311,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.906,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.906,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.502,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.502,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.097,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.097,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.692,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.692,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.408,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.408,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.003,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.003,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.598,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.598,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.194,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.194,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.789,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.789,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.384,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.384,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.98,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.98,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.575,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.575,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.17,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.17,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.766,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.766,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.361,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.361,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.956,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.956,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.552,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.552,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.147,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.147,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.742,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.742,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.83,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.83,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.425,"y":12.298,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.425,"y":13.361,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.303,"y":12.289,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.303,"y":13.352,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.307,"y":13.667,"w":1.5,"l":77.984},{"oc":"#d1efe7","x":9.307,"y":14.745,"w":1.5,"l":77.984},{"oc":"#d1efe7","x":9.393,"y":13.661,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.393,"y":14.714,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.739,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.739,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.334,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.334,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.93,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.93,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.525,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.525,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.12,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.12,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.716,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.716,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.311,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.311,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.906,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.906,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.502,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.502,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.097,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.097,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.692,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.692,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.408,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.408,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.003,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.003,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.598,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.598,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.194,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.194,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.789,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.789,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.384,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.384,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.98,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.98,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.575,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.575,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.17,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.17,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.766,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.766,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.361,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.361,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.956,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.956,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.552,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.552,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.147,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.147,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.742,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.742,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.83,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.83,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.425,"y":13.661,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.425,"y":14.723,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.303,"y":13.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.303,"y":14.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.101,"y":15.405,"w":1.5,"l":85.389},{"oc":"#d1efe7","x":9.101,"y":16.502,"w":1.5,"l":85.389},{"oc":"#d1efe7","x":9.161,"y":15.464,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.161,"y":16.517,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.507,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.507,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.102,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.102,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.698,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.698,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.293,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.293,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.888,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.888,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.484,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.484,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.079,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.079,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.674,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.674,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.27,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.27,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.865,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.865,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.46,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.46,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.176,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.176,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.771,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.771,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.366,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.366,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.962,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.962,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.557,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.557,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.152,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.152,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.748,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.748,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.343,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.343,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.786,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.786,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.381,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.381,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.713,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.713,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.308,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.308,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.903,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.903,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.498,"y":15.464,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.498,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.927,"y":15.445,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.927,"y":16.507,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.562,"y":15.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.562,"y":16.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.158,"y":15.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.158,"y":16.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.753,"y":15.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.753,"y":16.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.967,"y":15.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.967,"y":16.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.053,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.053,"y":9.757,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.648,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.648,"y":9.757,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.244,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.244,"y":9.757,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.839,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.839,"y":9.757,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.053,"y":10.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.053,"y":11.53,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.648,"y":10.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.648,"y":11.53,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.244,"y":10.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.244,"y":11.53,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.839,"y":10.467,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.839,"y":11.53,"w":1.5,"l":2.552},{"oc":"#2b2e34","x":8.731,"y":21.448,"w":3,"l":90.338},{"oc":"#d1efe7","x":67.289,"y":27.933,"w":4.5,"l":33.097},{"oc":"#d1efe7","x":67.289,"y":47.063,"w":4.5,"l":33.097},{"oc":"#d1efe7","x":54.61,"y":27.539,"w":4.5,"l":33.345},{"oc":"#d1efe7","x":54.353,"y":23.054,"w":4.5,"l":33.601},{"oc":"#d1efe7","x":8.864,"y":27.711,"w":6,"l":76.143},{"oc":"#d1efe7","x":71.242,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.242,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.82,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.82,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.57,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.57,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.664,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.664,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.242,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.242,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.992,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.992,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.086,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.086,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.664,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.664,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.414,"y":31.172,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.414,"y":32.109,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.371,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.371,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.949,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.949,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.699,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.699,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.793,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.793,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.371,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.371,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.121,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.121,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.215,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.215,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.793,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.793,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.543,"y":33.469,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.543,"y":34.406,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.371,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.371,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.949,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.949,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.699,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.699,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.793,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.793,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.371,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.371,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.121,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.121,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.215,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.215,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.793,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.793,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.543,"y":32.313,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.543,"y":33.25,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.191,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.191,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.769,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.769,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.519,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.519,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.612,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.612,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.191,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.191,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.941,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.941,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":44.542,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":45.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":42.276,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":43.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":43.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":44.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.034,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.034,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.613,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.613,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.363,"y":45.636,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.363,"y":46.573,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":35.667,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":36.605,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":37.917,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":38.855,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":36.714,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":37.651,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":40.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":41.167,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.159,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.737,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.487,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.581,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.159,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.909,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.003,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.581,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":39.214,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.331,"y":40.151,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.138,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.138,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.716,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.716,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.466,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.466,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.56,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.56,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.138,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.138,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.888,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.888,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.981,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.981,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.56,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.56,"y":29.653,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.31,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.31,"y":29.653,"w":1.5,"l":2.552},{"oc":"#2b2e34","x":8.839,"y":17.672,"w":0.7484999999999999,"l":8.925},{"oc":"#2b2e34","x":8.839,"y":22.859,"w":0.7484999999999999,"l":13.624},{"oc":"#2b2e34","x":8.839,"y":31.272,"w":0.7484999999999999,"l":16.584},{"oc":"#2b2e34","x":8.839,"y":35.272,"w":0.7484999999999999,"l":20.605},{"oc":"#d1efe7","x":59.073,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.073,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":26.417,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":27.355,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.073,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.073,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":25.386,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":26.323,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.073,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.073,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":24.292,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":25.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.073,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.073,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.652,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.402,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.495,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.073,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.917,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.495,"y":24.139,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":23.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.245,"y":24.139,"w":1.5,"l":2.552},{"oc":"#2b2e34","x":71.69,"y":22.855,"w":0.546,"l":10.226},{"oc":"#2b2e34","x":40.917,"y":41.188,"w":1.2000000000000002,"l":4.43},{"oc":"#d1efe7","x":24.441,"y":4.8,"w":1.5,"l":27.078},{"oc":"#d1efe7","x":24.441,"y":5.926,"w":1.5,"l":27.078},{"oc":"#d1efe7","x":24.497,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.497,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.093,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.093,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.688,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.688,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.902,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.902,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.497,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.497,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.093,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.093,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.307,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.307,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.902,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.902,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.497,"y":4.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.497,"y":5.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.902,"y":4.842,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.902,"y":5.905,"w":1.5,"l":2.552},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#e8f7f3","x":8.336,"y":4.484,"w":1.5,"l":42.594},{"oc":"#e8f7f3","x":100.899,"y":4.484,"w":1.5,"l":42.594},{"oc":"#2b2e34","x":24.655,"y":1.573,"w":1.5,"l":1},{"oc":"#2b2e34","x":30.766,"y":1.573,"w":1.5,"l":1},{"oc":"#d1efe7","x":87.588,"y":6.939,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.14,"y":6.939,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":9.522,"y":6.945,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":97.642,"y":6.945,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":9.608,"y":6.95,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":11.851,"y":6.95,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":11.897,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":14.383,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":14.429,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":16.915,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":16.968,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":19.454,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":19.5,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":21.986,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":22.004,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":24.49,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":24.536,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":27.022,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":27.068,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":29.555,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":29.601,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":32.087,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":32.801,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":35.287,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":35.333,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":37.819,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":37.857,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":40.343,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":40.451,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":42.937,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":42.984,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":45.47,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":45.491,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":47.977,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":48.023,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":50.509,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":50.555,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":53.041,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":53.646,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":56.132,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":77.103,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":79.589,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":56.178,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":58.665,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":79.635,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":82.121,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":58.711,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":61.197,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":82.167,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":84.653,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":61.273,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":63.759,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":84.73,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":87.216,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":63.805,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":66.291,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":87.262,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":89.748,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":66.338,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":68.824,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":89.794,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":92.28,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":68.916,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":71.402,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":92.373,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":94.859,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":71.448,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":73.935,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":94.905,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":97.391,"y":6.959,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":73.981,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":76.467,"y":6.953,"w":1.5,"l":1.035},{"oc":"#d1efe7","x":87.141,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.693,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.736,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.288,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.331,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.884,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.098,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.65,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.693,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.245,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.288,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.841,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":9.445,"y":8.695,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":97.642,"y":8.695,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":9.53,"y":8.689,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":11.834,"y":8.689,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":11.877,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.429,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.472,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.024,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.067,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.62,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.663,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.215,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.258,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.81,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.853,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.405,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.448,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.001,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.044,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.596,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.639,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.191,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.234,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.787,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.83,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.382,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.654,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.206,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.616,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.168,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.211,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.763,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.806,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.359,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.402,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.954,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.997,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.549,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.592,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.145,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.188,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.74,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.783,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.335,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.378,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.93,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.973,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.526,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.569,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.121,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.164,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.716,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.759,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.312,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.355,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.907,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.95,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.502,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.545,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.098,"y":8.689,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":9.402,"y":10.477,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":97.599,"y":10.477,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":9.488,"y":10.47,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.791,"y":10.47,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.834,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.386,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.429,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.981,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.024,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.577,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.62,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.172,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.215,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.767,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.81,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.363,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.405,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.958,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.001,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.553,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.596,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.148,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.191,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.744,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.787,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.339,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.611,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.163,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.573,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.125,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.168,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.72,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.763,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.316,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.359,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.911,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.954,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.506,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.549,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.102,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.145,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.697,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.74,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.292,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.335,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.888,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.93,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.483,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.526,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.078,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.121,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.673,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.716,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.269,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.312,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.864,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.907,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.459,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.502,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.055,"y":10.47,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":9.307,"y":12.305,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":87.172,"y":12.305,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":9.393,"y":12.298,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.696,"y":12.298,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.739,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.291,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.334,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.887,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.93,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.482,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.525,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.077,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.12,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.673,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.716,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.268,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.311,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.863,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.906,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.459,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.502,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.054,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.097,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.649,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.692,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.245,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.408,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.96,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.003,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.555,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.598,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.151,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.194,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.746,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.789,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.341,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.384,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.937,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.98,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.532,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.575,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.127,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.17,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.723,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.766,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.318,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.361,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.913,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.956,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.509,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.552,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.104,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.147,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.699,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.742,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.295,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.83,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.382,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.425,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.977,"y":12.298,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.303,"y":12.289,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.855,"y":12.289,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":9.307,"y":13.667,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":87.291,"y":13.667,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":9.393,"y":13.661,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.696,"y":13.661,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.739,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.291,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.334,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.887,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.93,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.482,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.525,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.077,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.12,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.673,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.716,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.268,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.311,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.863,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.906,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.459,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.502,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.054,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.097,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.649,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.692,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.245,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.408,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.96,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.003,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.555,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.598,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.151,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.194,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.746,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.789,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.341,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.384,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.937,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.98,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.532,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.575,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.127,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.17,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.723,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.766,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.318,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.361,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.913,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.956,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.509,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.552,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.104,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.147,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.699,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.742,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.295,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.83,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.382,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.425,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.977,"y":13.661,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.303,"y":13.651,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.855,"y":13.651,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":9.101,"y":15.405,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":94.49,"y":15.405,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":9.161,"y":15.464,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.464,"y":15.464,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.507,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.059,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.102,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.655,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.698,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.25,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.293,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.845,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.888,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.441,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.484,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.036,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.079,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.631,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.674,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.227,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.27,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.822,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.865,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.417,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.46,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.012,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.176,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.728,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.771,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.323,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.366,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.919,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.962,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.514,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.557,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.109,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.152,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.705,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.748,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.3,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.343,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.895,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.786,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.338,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.381,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.934,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.713,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.265,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.308,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.86,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.903,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.455,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.498,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.051,"y":15.464,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.927,"y":15.445,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.479,"y":15.445,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.562,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.115,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.158,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.71,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.753,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.305,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.967,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.519,"y":15.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.053,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.605,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.648,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.201,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.244,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.796,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.839,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":97.391,"y":8.695,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.053,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.605,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.648,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.201,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.244,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.796,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.839,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":97.391,"y":10.467,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.289,"y":27.933,"w":4.5,"l":19.129},{"oc":"#d1efe7","x":100.386,"y":27.933,"w":4.5,"l":19.129},{"oc":"#d1efe7","x":54.353,"y":23.054,"w":4.5,"l":4.485},{"oc":"#d1efe7","x":87.955,"y":23.054,"w":4.5,"l":4.488},{"oc":"#d1efe7","x":71.242,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.795,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.82,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.373,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.57,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.123,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.664,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.216,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.242,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.795,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.992,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.545,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.086,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.638,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.664,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.216,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.414,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.966,"y":31.172,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.371,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.923,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.949,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.502,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.699,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.252,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.793,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.345,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.371,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.923,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.121,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.673,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.215,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.767,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.793,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.345,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.543,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.095,"y":33.469,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.371,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.923,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.949,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.502,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.699,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.252,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.793,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.345,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.371,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.923,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.121,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.673,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.215,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.767,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.793,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.345,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.543,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.095,"y":32.313,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.191,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.743,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.769,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.321,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.519,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.071,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.612,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.165,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.191,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.743,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.941,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.493,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":44.542,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":42.276,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":43.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.034,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.587,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.613,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.165,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.363,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.915,"y":45.636,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":35.667,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":37.917,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":36.714,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":40.23,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.159,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.712,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.737,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.29,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.487,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.04,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.581,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.134,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.159,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.712,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.909,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.462,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.003,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.555,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.581,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.134,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.331,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.884,"y":39.214,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":71.138,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.69,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":73.716,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.268,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":76.466,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.018,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":79.56,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.112,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":82.138,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.69,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":84.888,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.44,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":87.981,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.534,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.56,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.112,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.31,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":95.862,"y":28.715,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":59.073,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.626,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.652,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.204,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.402,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":66.954,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":67.495,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.048,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.073,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.626,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.823,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.376,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.917,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.47,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.495,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.048,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.245,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.798,"y":26.417,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":59.073,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.626,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.652,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.204,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.402,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":66.954,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":67.495,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.048,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.073,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.626,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.823,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.376,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.917,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.47,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.495,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.048,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.245,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.798,"y":25.386,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":59.073,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.626,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.652,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.204,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.402,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":66.954,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":67.495,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.048,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.073,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.626,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.823,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.376,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.917,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.47,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.495,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.048,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.245,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.798,"y":24.292,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":59.073,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.626,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":61.652,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.204,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":64.402,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":66.954,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":67.495,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.048,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":70.073,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.626,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.823,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.376,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.917,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.47,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.495,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.048,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":81.245,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.798,"y":23.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":24.441,"y":4.8,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":51.519,"y":4.8,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":24.497,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.05,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.093,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.645,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.688,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.24,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.902,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.454,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.497,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.05,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.093,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.645,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.307,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.859,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.902,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.454,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.497,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.05,"y":4.837,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.902,"y":4.842,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.454,"y":4.842,"w":1.5,"l":1.063},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e8f7f3","x":8.336,"y":4.484,"w":92.563,"h":42.594,"clr":-1},{"oc":"#2b2e34","x":24.655,"y":1.573,"w":6.11,"h":1,"clr":-1},{"x":87.588,"y":6.939,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":9.522,"y":6.945,"w":88.12,"h":1.097,"clr":-1},{"x":9.608,"y":6.95,"w":2.243,"h":1.026,"clr":1},{"x":11.897,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":14.429,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":16.968,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":19.5,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":22.004,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":24.536,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":27.068,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":29.601,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":32.801,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":35.333,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":37.857,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":40.451,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":42.984,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":45.491,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":48.023,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":50.555,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":53.646,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":77.103,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":56.178,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":79.635,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":58.711,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":82.167,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":61.273,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":84.73,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":63.805,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":87.262,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":66.338,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":89.794,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":68.916,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":92.373,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":71.448,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":94.905,"y":6.959,"w":2.486,"h":1.035,"clr":1},{"x":73.981,"y":6.953,"w":2.486,"h":1.035,"clr":1},{"x":87.141,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":89.736,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":92.331,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":87.098,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":89.693,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":92.288,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":9.445,"y":8.695,"w":88.198,"h":1.097,"clr":-1},{"x":9.53,"y":8.689,"w":2.303,"h":1.059,"clr":1},{"x":11.877,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":14.472,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":17.067,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":19.663,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":22.258,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":24.853,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":27.448,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":30.044,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":32.639,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":35.234,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":37.83,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":41.654,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":45.616,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":48.211,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":50.806,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":53.402,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":55.997,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":58.592,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":61.188,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":63.783,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":66.378,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":68.973,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":71.569,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":74.164,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":76.759,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":79.355,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":81.95,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"x":84.545,"y":8.689,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":9.402,"y":10.477,"w":88.198,"h":1.097,"clr":-1},{"x":9.488,"y":10.47,"w":2.303,"h":1.053,"clr":1},{"x":11.834,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":14.429,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":17.024,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":19.62,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":22.215,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":24.81,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":27.405,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":30.001,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":32.596,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":35.191,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":37.787,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":41.611,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":45.573,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":48.168,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":50.763,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":53.359,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":55.954,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":58.549,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":61.145,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":63.74,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":66.335,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":68.93,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":71.526,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":74.121,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":76.716,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":79.312,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":81.907,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"x":84.502,"y":10.47,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":9.307,"y":12.305,"w":77.865,"h":1.078,"clr":-1},{"x":9.393,"y":12.298,"w":2.303,"h":1.053,"clr":1},{"x":11.739,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":14.334,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":16.93,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":19.525,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":22.12,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":24.716,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":27.311,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":29.906,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":32.502,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":35.097,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":37.692,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":40.408,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":43.003,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":45.598,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":48.194,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":50.789,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":53.384,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":55.98,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":58.575,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":61.17,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":63.766,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":66.361,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":68.956,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":71.552,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":74.147,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":76.742,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":81.83,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":84.425,"y":12.298,"w":2.552,"h":1.063,"clr":1},{"x":79.303,"y":12.289,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":9.307,"y":13.667,"w":77.984,"h":1.078,"clr":-1},{"x":9.393,"y":13.661,"w":2.303,"h":1.053,"clr":1},{"x":11.739,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":14.334,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":16.93,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":19.525,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":22.12,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":24.716,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":27.311,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":29.906,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":32.502,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":35.097,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":37.692,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":40.408,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":43.003,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":45.598,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":48.194,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":50.789,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":53.384,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":55.98,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":58.575,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":61.17,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":63.766,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":66.361,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":68.956,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":71.552,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":74.147,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":76.742,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":81.83,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":84.425,"y":13.661,"w":2.552,"h":1.063,"clr":1},{"x":79.303,"y":13.651,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":9.101,"y":15.405,"w":85.389,"h":1.097,"clr":-1},{"x":9.161,"y":15.464,"w":2.303,"h":1.053,"clr":1},{"x":11.507,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":14.102,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":16.698,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":19.293,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":21.888,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":24.484,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":27.079,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":29.674,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":32.27,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":34.865,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":37.46,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":40.176,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":42.771,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":45.366,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":47.962,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":50.557,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":53.152,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":55.748,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":58.343,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":62.786,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":65.381,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":69.713,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":72.308,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":74.903,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":77.498,"y":15.464,"w":2.552,"h":1.063,"clr":1},{"x":79.927,"y":15.445,"w":2.552,"h":1.063,"clr":1},{"x":86.562,"y":15.405,"w":2.552,"h":1.063,"clr":1},{"x":89.158,"y":15.405,"w":2.552,"h":1.063,"clr":1},{"x":91.753,"y":15.405,"w":2.552,"h":1.063,"clr":1},{"x":83.967,"y":15.405,"w":2.552,"h":1.063,"clr":1},{"x":87.053,"y":8.695,"w":2.552,"h":1.063,"clr":1},{"x":89.648,"y":8.695,"w":2.552,"h":1.063,"clr":1},{"x":92.244,"y":8.695,"w":2.552,"h":1.063,"clr":1},{"x":94.839,"y":8.695,"w":2.552,"h":1.063,"clr":1},{"x":87.053,"y":10.467,"w":2.552,"h":1.063,"clr":1},{"x":89.648,"y":10.467,"w":2.552,"h":1.063,"clr":1},{"x":92.244,"y":10.467,"w":2.552,"h":1.063,"clr":1},{"x":94.839,"y":10.467,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":67.289,"y":27.933,"w":33.097,"h":19.129,"clr":-1},{"oc":"#d1efe7","x":54.353,"y":23.054,"w":33.601,"h":4.488,"clr":-1},{"x":71.242,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":73.82,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":76.57,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":79.664,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":82.242,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":84.992,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":88.086,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":90.664,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":93.414,"y":31.172,"w":2.552,"h":0.938,"clr":1},{"x":71.371,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":73.949,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":76.699,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":79.793,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":82.371,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":85.121,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":88.215,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":90.793,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":93.543,"y":33.469,"w":2.552,"h":0.938,"clr":1},{"x":71.371,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":73.949,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":76.699,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":79.793,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":82.371,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":85.121,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":88.215,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":90.793,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":93.543,"y":32.313,"w":2.552,"h":0.938,"clr":1},{"x":71.191,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":73.769,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":76.519,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":79.612,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":82.191,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":84.941,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":44.542,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":42.276,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":43.417,"w":2.552,"h":0.938,"clr":1},{"x":88.034,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":90.613,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":93.363,"y":45.636,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":35.667,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":37.917,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":36.714,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":40.23,"w":2.552,"h":0.938,"clr":1},{"x":71.159,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":73.737,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":76.487,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":79.581,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":82.159,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":84.909,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":88.003,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":90.581,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":93.331,"y":39.214,"w":2.552,"h":0.938,"clr":1},{"x":71.138,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":73.716,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":76.466,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":79.56,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":82.138,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":84.888,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":87.981,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":90.56,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":93.31,"y":28.715,"w":2.552,"h":0.938,"clr":1},{"x":59.073,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":61.652,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":64.402,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":67.495,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":70.073,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":72.823,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":75.917,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":78.495,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":81.245,"y":26.417,"w":2.552,"h":0.938,"clr":1},{"x":59.073,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":61.652,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":64.402,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":67.495,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":70.073,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":72.823,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":75.917,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":78.495,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":81.245,"y":25.386,"w":2.552,"h":0.938,"clr":1},{"x":59.073,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":61.652,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":64.402,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":67.495,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":70.073,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":72.823,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":75.917,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":78.495,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":81.245,"y":24.292,"w":2.552,"h":0.938,"clr":1},{"x":59.073,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":61.652,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":64.402,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":67.495,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":70.073,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":72.823,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":75.917,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":78.495,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"x":81.245,"y":23.201,"w":2.552,"h":0.938,"clr":1},{"oc":"#d1efe7","x":24.441,"y":4.8,"w":27.078,"h":1.126,"clr":-1},{"x":24.497,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":27.093,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":29.688,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":32.902,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":35.497,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":38.093,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":41.307,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":43.902,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":46.497,"y":4.837,"w":2.552,"h":1.063,"clr":1},{"x":48.902,"y":4.842,"w":2.552,"h":1.063,"clr":1}],"Texts":[{"oc":"#2b2e34","x":11.695,"y":1.331,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":11.695,"y":1.8559999999999999,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":25.016,"y":1.601,"w":2.424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":31.89,"y":1.601,"w":7.255000000000001,"clr":-1,"A":"left","R":[{"T":"D-40%20%20Individual%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":31.89,"y":2.501,"w":8.032,"clr":-1,"A":"left","R":[{"T":"Income%20Tax%20Return","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":8.567,"y":3.359,"w":32.486000000000004,"clr":-1,"A":"left","R":[{"T":"Print%20in%20CAPITAL%20letters%20using%20black%20ink.%20Leave%20lines%20blank%20that%20do%20not%20apply.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":42.865,"y":46.669,"w":6.727000000000001,"clr":-1,"A":"left","R":[{"T":"2013%20D-40%20%20P1","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":42.865,"y":47.482,"w":15.991000000000001,"clr":-1,"A":"left","R":[{"T":"Individual%20Income%20Tax%20Return%20page%201%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":77.021,"y":47.482,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%201","S":51,"TS":[0,9,0,0]}]},{"oc":"#06060b","x":11.936,"y":46.829,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.339,"y":31.445,"w":30.077,"clr":-1,"A":"left","R":[{"T":"STAPLE%20W-2s%20AND%20ANY%20OTHER%20WITHHOLDING%20STATEMENTS%20HERE","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#2b2e34","x":52.691,"y":4.53,"w":3.0980000000000003,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.789,"y":4.53,"w":1.216,"clr":-1,"A":"left","R":[{"T":"if%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":61.384,"y":4.53,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Filing%20an%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.784,"y":4.53,"w":6.887000000000001,"clr":-1,"A":"left","R":[{"T":"amended%20return","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":76.253,"y":4.53,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":52.691,"y":5.093,"w":3.0980000000000003,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.789,"y":5.093,"w":1.216,"clr":-1,"A":"left","R":[{"T":"if%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":61.384,"y":5.093,"w":12.601,"clr":-1,"A":"left","R":[{"T":"Filing%20for%20a%20deceased%20taxpayer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":79.15,"y":5.093,"w":7.252,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":9.003,"y":4.472,"w":8.751000000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20information","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":9.003,"y":5.091,"w":10.027000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20telephone%20number","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#2b2e34","x":9.347,"y":6.036,"w":14.817,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20(SSN)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.722,"y":6.036,"w":1.601,"clr":-1,"A":"left","R":[{"T":"and","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":78.212,"y":6.036,"w":1.601,"clr":-1,"A":"left","R":[{"T":"and","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":81.054,"y":6.036,"w":11.908,"clr":-1,"A":"left","R":[{"T":"%20Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.109,"y":11.358,"w":29.33400000000001,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%2C%20street%20and%20apartment%20number%20if%20applicable)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.048,"y":14.481,"w":6.733000000000002,"clr":-1,"A":"left","R":[{"T":"City%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.728,"y":15.198,"w":24.342999999999996,"clr":-1,"A":"left","R":[{"T":"STAPLE%20OTHER%20DOCUMENTS%20IN%20UPPER%20LEFT%20IN%20BACK","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#ff403a","x":17.894,"y":21.431,"w":0.791,"clr":-1,"A":"left","R":[{"T":"%E2%97%8F","S":-1,"TS":[2,11,0,0]}]},{"oc":"#ff403a","x":85.092,"y":21.431,"w":0.791,"clr":-1,"A":"left","R":[{"T":"%E2%97%8F","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":67.206,"y":28.771,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"x":69.612,"y":28.771,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.597,"y":28.771,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.321,"y":28.771,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":16.865,"w":8.739,"clr":-1,"A":"left","R":[{"T":"Filing%20status%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":27.152,"y":16.865,"w":2.559,"clr":-1,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,11,0,0]}]},{"oc":"#ff403a","x":30.67,"y":16.865,"w":0.301,"clr":-1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.303,"y":16.865,"w":18.820000000000004,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20Dependent%20claimed%20by%20someone%20else","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":17.74,"w":0.903,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.07,"y":17.74,"w":6.702,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20only%20one%3A","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":51.171,"y":17.74,"w":25.253999999999987,"clr":-1,"A":"left","R":[{"T":"Enter%20combined%20amounts%20for%20Lines%204%E2%80%9342.%20See%20instructions.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":27.152,"y":19.49,"w":8.568,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":38.933,"y":19.49,"w":33.66899999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20qualifying%20dependent%20and%2For%20non-dependent%20information%20on%20Schedule%20S.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":20.365,"w":0.903,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.07,"y":20.365,"w":7.135000000000001,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20you%20are%3A","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":27.152,"y":20.365,"w":45.769999999999996,"clr":-1,"A":"left","R":[{"T":"Part-year%20resident%20in%20DC%20from%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20(month)%20to%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20(month)%3B%20number%20of%20months%20in%20DC%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":22.052,"w":8.257,"clr":-1,"A":"left","R":[{"T":"Income%20Information","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":23.177,"w":0.505,"clr":-1,"A":"left","R":[{"T":"a","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":23.177,"w":24.791,"clr":-1,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20unemployment%20compensation%20and%2For%20tips%2C","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":24.302,"w":0.538,"clr":-1,"A":"left","R":[{"T":"b","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":24.302,"w":10.465000000000002,"clr":-1,"A":"left","R":[{"T":"Business%20income%20or%20loss%2C","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":27.545,"y":24.302,"w":8.59,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":25.427,"w":0.46900000000000003,"clr":-1,"A":"left","R":[{"T":"c","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":25.427,"w":9.04,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20(or%20loss).","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":26.552,"w":0.538,"clr":-1,"A":"left","R":[{"T":"d","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":26.552,"w":20.102999999999994,"clr":-1,"A":"left","R":[{"T":"Rental%20real%20estate%2C%20royalties%2C%20partnerships%2C%20etc.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":27.927,"w":22.670000000000005,"clr":-1,"A":"left","R":[{"T":"Computation%20of%20DC%20Gross%20and%20Adjusted%20Gross%20Income","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":28.865,"w":0.903,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.321,"y":28.865,"w":13.157000000000002,"clr":-1,"A":"left","R":[{"T":"Federal%20adjusted%20gross%20income.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.195,"y":28.865,"w":19.240000000000002,"clr":-1,"A":"left","R":[{"T":"From%20adjusted%20gross%20income%20lines%20on%20Federal%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":29.49,"w":26.817,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20Forms%201040%2C%201040A%2C%201040EZ%2C%201040NR%2C%20or%201040NR-EZ","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":30.465,"w":10.051000000000002,"clr":-1,"A":"left","R":[{"T":"Additions%20to%20DC%20Income","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":31.465000000000003,"w":0.903,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":31.465000000000003,"w":17.287999999999997,"clr":-1,"A":"left","R":[{"T":"Franchise%20tax%20deducted%20on%20federal%20forms%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.34,"y":31.465000000000003,"w":6.784,"clr":-1,"A":"left","R":[{"T":"see%20instructions","S":-1,"TS":[0,8.4,0,0]}]},{"oc":"#2b2e34","x":44.54,"y":31.465000000000003,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":32.527,"w":0.903,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":32.527,"w":24.856000000000005,"clr":-1,"A":"left","R":[{"T":"Other%20additions%20from%20DC%20Schedule%20I%2C%20Calculation%20A%2C%20Line%208.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":33.59,"w":0.602,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.238,"y":33.59,"w":1.979,"clr":-1,"A":"left","R":[{"T":"%20Add","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":14.163,"y":33.59,"w":7.713000000000001,"clr":-1,"A":"left","R":[{"T":"%20Lines%203%2C%204%20and%205.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":34.465,"w":12.487999999999998,"clr":-1,"A":"left","R":[{"T":"Subtractions%20from%20DC%20Income","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":35.59,"w":0.602,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":35.59,"w":30.926000000000013,"clr":-1,"A":"left","R":[{"T":"Part%20year%20residents%2C%20enter%20income%20received%20during%20period%20of%20nonresidence%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":66.243,"y":35.59,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":36.715,"w":0.903,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":36.715,"w":27.025000000000006,"clr":-1,"A":"left","R":[{"T":"Taxable%20refunds%2C%20credits%20or%20offsets%20of%20state%20and%20local%20income%20tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":37.84,"w":0.903,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":37.84,"w":26.984000000000012,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount%20of%20social%20security%20and%20tier%201%20railroad%20retirement%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":40.277,"w":1.505,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":40.277,"w":28.44000000000001,"clr":-1,"A":"left","R":[{"T":"DC%20and%20federal%20government%20pension%20and%20annuity%20limited%20exclusion%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.073,"y":40.277,"w":7.085,"clr":-1,"A":"left","R":[{"T":"see%20instructions.","S":-1,"TS":[0,8.4,0,0]}]},{"oc":"#2b2e34","x":41.071,"y":42.308,"w":6.784,"clr":-1,"A":"left","R":[{"T":"see%20instructions","S":-1,"TS":[0,8.4,0,0]}]},{"oc":"#2b2e34","x":47.385,"y":42.308,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":43.433,"w":1.505,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":43.433,"w":26.781000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20subtractions%20from%20DC%20Schedule%20I%2C%20Calculation%20B%2C%20Line%2016.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":44.558,"w":1.505,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":44.558,"w":15.34,"clr":-1,"A":"left","R":[{"T":"Total%20subtractions%20from%20DC%20income%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.681,"y":44.558,"w":5.0360000000000005,"clr":-1,"A":"left","R":[{"T":"Lines%207-13.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":45.683,"w":1.505,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":45.683,"w":11.325,"clr":-1,"A":"left","R":[{"T":"DC%20adjusted%20gross%20income%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.021,"y":45.683,"w":10.187000000000001,"clr":-1,"A":"left","R":[{"T":"Line%206%20minus%20Line%2014.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":54.269,"y":23.119,"w":0.505,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,12.6,0,0]}]},{"x":55.102,"y":23.119,"w":1.505,"clr":1,"A":"left","R":[{"T":"%20%20%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":83.659,"y":23.119,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":84.384,"y":23.119,"w":1.505,"clr":-1,"A":"left","R":[{"T":"00%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":54.269,"y":24.181,"w":1.4409999999999998,"clr":-1,"A":"left","R":[{"T":"b%20%20%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":56.646,"y":24.181,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":83.659,"y":24.181,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":84.384,"y":24.181,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":54.269,"y":25.281,"w":1.3719999999999999,"clr":-1,"A":"left","R":[{"T":"c%20%20%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":56.532,"y":25.281,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":83.659,"y":25.281,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":84.384,"y":25.281,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":54.269,"y":26.381,"w":1.4409999999999998,"clr":-1,"A":"left","R":[{"T":"d%20%20%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":56.646,"y":26.381,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":83.659,"y":26.381,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":84.384,"y":26.381,"w":1.505,"clr":-1,"A":"left","R":[{"T":"00%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":12.125,"y":38.428,"w":15.986000000000004,"clr":-1,"A":"left","R":[{"T":"From%20Federal%20Forms%201040%20or%201040A.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.175,"y":22.064,"w":25.70899999999999,"clr":-1,"A":"left","R":[{"T":"Round%20cents%20to%20nearest%20dollar.%20%20If%20zero%2C%20leave%20the%20line%20blank.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":45.097,"y":24.23,"w":5.023,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":45.097,"y":25.355,"w":5.023,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":45.097,"y":26.48,"w":5.023,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.011,"y":23.615,"w":7.085,"clr":-1,"A":"left","R":[{"T":"see%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":66.738,"y":42.326,"w":1.505,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"x":69.066,"y":42.325,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.129,"y":42.326,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":96.853,"y":42.325,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":66.738,"y":43.451,"w":1.505,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"x":69.066,"y":43.45,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.129,"y":43.451,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":96.853,"y":43.45,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":66.738,"y":44.576,"w":1.505,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"x":69.066,"y":44.576,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.129,"y":44.576,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":96.853,"y":44.576,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":66.738,"y":45.701,"w":1.505,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"x":69.066,"y":45.701,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.129,"y":45.701,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":96.853,"y":45.701,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":56.984,"y":28.672,"w":5.023,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":67.039,"y":31.299,"w":0.602,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"x":69.445,"y":31.299,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.43,"y":31.299,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.154,"y":31.299,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.039,"y":32.361,"w":1.505,"clr":-1,"A":"left","R":[{"T":"5%20%20%20","S":3,"TS":[0,12,0,0]}]},{"x":69.367,"y":32.361,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.43,"y":32.361,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.154,"y":32.361,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.039,"y":33.424,"w":1.505,"clr":-1,"A":"left","R":[{"T":"6%20%20%20","S":3,"TS":[0,12,0,0]}]},{"x":69.367,"y":33.424,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.43,"y":33.424,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.154,"y":33.424,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":57.156,"y":45.679,"w":5.023,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":56.984,"y":33.302,"w":5.023,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":67.082,"y":35.634,"w":0.602,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":69.488,"y":35.634,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.473,"y":35.634,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.197,"y":35.634,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.082,"y":36.759,"w":0.602,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":69.488,"y":36.759,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.473,"y":36.759,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.197,"y":36.759,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.082,"y":37.884,"w":1.505,"clr":-1,"A":"left","R":[{"T":"9%20%20%20","S":3,"TS":[0,12,0,0]}]},{"x":69.41,"y":37.884,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.473,"y":37.884,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.197,"y":37.884,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.082,"y":39.196,"w":1.505,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"x":69.41,"y":39.196,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.473,"y":39.196,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.197,"y":39.196,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.082,"y":40.321,"w":1.505,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"x":69.41,"y":40.321,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.473,"y":40.321,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":97.197,"y":40.321,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":34.992,"y":6.036,"w":11.908,"clr":-1,"A":"left","R":[{"T":"%20Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":53.519,"y":6.036,"w":18.62899999999999,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20SSN%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.418,"y":7.734,"w":6.757,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":42.005,"y":7.734,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":45.872,"y":7.734,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.203,"y":9.515,"w":21.036999999999995,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20first%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":41.617,"y":9.515,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":45.484,"y":9.515,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.802,"y":14.481,"w":2.158,"clr":-1,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.763,"y":14.481,"w":4.063,"clr":-1,"A":"left","R":[{"T":"Zip%20%20Code","S":2,"TS":[0,10,0,0]}]},{"x":35.414,"y":16.855,"w":70.68000000000002,"clr":0,"A":"left","R":[{"T":"Married%20filing%20jointly%2C","S":-1,"TS":[0,11,0,0]}]},{"x":52.257,"y":16.855,"w":87.136,"clr":0,"A":"left","R":[{"T":"Married%20filing%20separately%2C","S":-1,"TS":[0,11,0,0]}]},{"x":26.877,"y":17.766,"w":140.936,"clr":0,"A":"left","R":[{"T":"Married%20filing%20separately%20on%20same%20return","S":-1,"TS":[0,11,0,0]}]},{"x":56.755,"y":18.594,"w":111.60000000000002,"clr":0,"A":"left","R":[{"T":"filing%20separately%20on%20same%20return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#ff403a","x":18.981,"y":21.431,"w":38.48500000000002,"clr":-1,"A":"left","R":[{"T":"%20Complete%20your%20federal%20return%20first%20%E2%80%93%20Enter%20your%20dependents%E2%80%99%20information%20on%20DC%20Schedule%20S%20","S":-1,"TS":[0,13,0,0]}]},{"x":77.151,"y":4.49,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"x":88.065,"y":20.385,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"x":57.672,"y":35.594,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":39.152,"w":1.505,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":39.152,"w":31.256000000000007,"clr":-1,"A":"left","R":[{"T":"Income%20reported%20and%20taxed%20this%20year%20on%20a%20DC%20franchise%20or%20fiduciary%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.054,"y":41.16,"w":2.3659999999999997,"clr":-1,"A":"left","R":[{"T":"Fill%20in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":19.834,"y":41.16,"w":8.963000000000001,"clr":-1,"A":"left","R":[{"T":"if%20you%20are%2062%20or%20older","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":37.124,"y":41.16,"w":19.291000000000004,"clr":-1,"A":"left","R":[{"T":"if%20your%20spouse%2Fdomestic%20partner%20is%2062%20or%20older","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.589,"y":42.308,"w":1.505,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.683,"y":42.308,"w":19.352,"clr":-1,"A":"left","R":[{"T":"DC%20and%20federal%20government%20survivor%20benefits%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.152,"y":18.615,"w":18.621,"clr":-1,"A":"left","R":[{"T":"Registered%20domestic%20partners%20filing%20jointly%20or","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":32,"AM":0,"x":23.713,"y":4.775,"w":27.951,"h":1.164,"TU":"Your telephone number."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":35,"AM":0,"x":9.673,"y":6.997,"w":22.336,"h":1.075,"TU":"Your social security number."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOB","EN":0},"TI":36,"AM":0,"x":32.549,"y":7.034,"w":20.862,"h":1.001,"TU":"Date of Birth (MMDDYYYY).","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":37,"AM":0,"x":53.77,"y":7.038,"w":22.581,"h":0.966,"TU":"Spouse’s/registered domestic partner’s SSN."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOB","EN":0},"TI":38,"AM":0,"x":77.037,"y":7.061,"w":20.562,"h":0.973,"TU":"Spouse's / registered domestic partner's Date of Birth (MMDDYYYY)","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":39,"AM":0,"x":9.673,"y":8.712,"w":30.9,"h":1.109,"TU":"Your first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":40,"AM":0,"x":41.807,"y":8.786,"w":2.527,"h":1.001,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":41,"AM":0,"x":45.767,"y":8.794,"w":51.939,"h":1.028,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":42,"AM":0,"x":9.632,"y":10.598,"w":30.525,"h":0.973,"TU":"Spouse’s/registered domestic partner ’s first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":43,"AM":0,"x":41.745,"y":10.563,"w":2.622,"h":0.981,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":44,"AM":0,"x":45.725,"y":10.49,"w":52.164,"h":1.117,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":45,"AM":0,"x":9.528,"y":12.393,"w":77.617,"h":1.02,"TU":"Home address (number, street and apartment number if applicable)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":46,"AM":0,"x":9.526,"y":13.726,"w":77.766,"h":1.048,"TU":"Home address (number, street and apartment number if applicable) continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":47,"AM":0,"x":9.154,"y":15.528,"w":51.862,"h":0.993,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":48,"AM":0,"x":62.836,"y":15.478,"w":4.741,"h":1.035,"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":49,"AM":0,"x":69.857,"y":15.476,"w":24.559,"h":1.09,"TU":"Zip Code."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHS"}},"id":{"Id":"Add_Schedule_S_1","EN":0},"TI":58,"AM":0,"x":83.013,"y":19.606,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHS"}},"id":{"Id":"Add_Schedule_S_2","EN":0},"TI":60,"AM":0,"x":87.139,"y":21.553,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WAGES","EN":0},"TI":61,"AM":0,"x":59.193,"y":23.243,"w":24.675,"h":0.89,"TU":"Line a. Wages, salaries, unemployment compensation and / or tips, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSINC","EN":0},"TI":63,"AM":0,"x":59.044,"y":24.386,"w":24.824,"h":0.834,"TU":"Line b. Business income or loss, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CAPGAIN","EN":0},"TI":65,"AM":0,"x":59.193,"y":25.481,"w":24.525,"h":0.834,"TU":"Line c. Capital gain (or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENTINC","EN":0},"TI":67,"AM":0,"x":59.193,"y":26.453,"w":24.6,"h":0.89,"TU":"Line d. Rental real estate, royalties, partnerships, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDAGI","EN":0},"TI":69,"AM":0,"x":71.259,"y":28.782,"w":24.525,"h":0.863,"TU":"Line 3. Federal adjusted gross income from adjusted gross income lines on Federal Forms 1040, 1040A, 1040EZ, 1040NR, or 1040NR-EZ."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRNTXDED","EN":0},"TI":70,"AM":0,"x":71.452,"y":31.25,"w":24.6,"h":0.872,"TU":"Line 4. Franchise tax deducted on federal forms, see instructions."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHI"}},"id":{"Id":"Add_Schedule_I_Line_8","EN":0},"TI":71,"AM":0,"x":50.808,"y":32.61,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHRADD","EN":0},"TI":72,"AM":1024,"x":71.39,"y":32.408,"w":24.899,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDFAG","EN":0},"TI":74,"AM":1024,"x":71.452,"y":33.55,"w":24.824,"h":0.89},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NRINCOME","EN":0},"TI":75,"AM":1024,"x":71.215,"y":35.804,"w":24.899,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TXRFNDS","EN":0},"TI":76,"AM":0,"x":71.29,"y":36.805,"w":24.675,"h":0.97,"TU":"Line 8. Taxable refunds, credits, or offsets of state and local income tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TXSSRR","EN":0},"TI":77,"AM":0,"x":71.364,"y":37.972,"w":24.675,"h":0.942,"TU":"Line 9. Taxable amount of social secuirty and tier 1 railroad retirement from Federal Forms 1040 and 1040A."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIDINC","EN":0},"TI":78,"AM":0,"x":71.364,"y":39.271,"w":24.525,"h":0.862,"TU":"Line 10. Income reported and taxed this year on a DC franchise or fiduciary return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC","EN":0},"TI":79,"AM":0,"x":71.417,"y":40.302,"w":24.45,"h":0.863,"TU":"Line 11. DC and federal government pension and annuity limited exclusion, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SURVIVOR","EN":0},"TI":82,"AM":0,"x":71.41,"y":42.362,"w":24.375,"h":0.915,"TU":"Line 12. DC and federal government survivor belenfits, see instructions."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHI"}},"id":{"Id":"Add_Schedule_I_Line_16","EN":0},"TI":83,"AM":0,"x":53.834,"y":43.602,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHRSUBS","EN":0},"TI":84,"AM":1024,"x":71.41,"y":43.475,"w":24.375,"h":0.915},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDSUBS","EN":0},"TI":85,"AM":1024,"x":71.41,"y":44.681,"w":24.375,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DCAGI","EN":0},"TI":87,"AM":1024,"x":71.431,"y":45.722,"w":24.3,"h":1.051,"TU":"15"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMENDBX","EN":0},"TI":33,"AM":1024,"x":57.402,"y":4.612,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEADBOXX","EN":0},"TI":34,"AM":0,"x":57.33,"y":5.296,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSA","EN":0},"TI":50,"AM":0,"x":24.847,"y":17.104,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSC","EN":0},"TI":51,"AM":0,"x":33.939,"y":17.085,"w":1.297,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSE","EN":0},"TI":52,"AM":0,"x":50.851,"y":17.057,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSF","EN":0},"TI":53,"AM":0,"x":68.686,"y":17.057,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSD","EN":0},"TI":54,"AM":0,"x":24.847,"y":18.038,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSDP","EN":0},"TI":55,"AM":0,"x":24.827,"y":18.875,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSEP","EN":0},"TI":56,"AM":0,"x":54.978,"y":18.813,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSB","EN":0},"TI":57,"AM":0,"x":24.861,"y":19.677,"w":1.372,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PYRES","EN":0},"TI":59,"AM":1024,"x":24.904,"y":20.523,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BUSLOSS","EN":0},"TI":62,"AM":0,"x":51.635,"y":24.478,"w":2.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CAPLOSS","EN":0},"TI":64,"AM":0,"x":51.73,"y":25.588,"w":2.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RENTLOSS","EN":0},"TI":66,"AM":0,"x":51.73,"y":26.677,"w":2.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FAGLOSSX","EN":0},"TI":68,"AM":0,"x":64.045,"y":28.92,"w":2.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADDLOSSX","EN":0},"TI":73,"AM":1024,"x":64.249,"y":33.554,"w":2.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX62","EN":0},"TI":80,"AM":0,"x":18.285,"y":41.355,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXSP62","EN":0},"TI":81,"AM":0,"x":35.58,"y":41.328,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGILOSSX","EN":0},"TI":86,"AM":1024,"x":64.185,"y":45.964,"w":2.525,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#e8f7f3","x":2.096,"y":5.469,"w":1.5,"l":98.967},{"oc":"#e8f7f3","x":2.096,"y":47.641,"w":1.5,"l":98.967},{"oc":"#d1efe7","x":58.628,"y":33.391,"w":4.5,"l":28.949},{"oc":"#d1efe7","x":58.628,"y":35.152,"w":4.5,"l":28.949},{"oc":"#d1efe7","x":71.003,"y":29.286,"w":4.5,"l":28.949},{"oc":"#d1efe7","x":71.003,"y":37.594,"w":4.5,"l":28.949},{"oc":"#d1efe7","x":15.037,"y":2.849,"w":1.5,"l":38.242},{"oc":"#d1efe7","x":15.037,"y":3.877,"w":1.5,"l":38.242},{"oc":"#d1efe7","x":14.985,"y":4.064,"w":1.5,"l":38.294},{"oc":"#d1efe7","x":14.985,"y":5.093,"w":1.5,"l":38.294},{"oc":"#d1efe7","x":68.59,"y":28.138,"w":4.5,"l":31.523},{"oc":"#d1efe7","x":68.535,"y":5.504,"w":4.5,"l":31.711},{"oc":"#2b2e34","x":2.318,"y":11.877,"w":3,"l":97.584},{"oc":"#d1efe7","x":21.945,"y":29.353,"w":4.5,"l":27.77},{"oc":"#d1efe7","x":21.945,"y":38.724,"w":4.5,"l":27.77},{"oc":"#2b2e34","x":2.02,"y":44.348,"w":3,"l":97.92},{"oc":"#d1efe7","x":72.617,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.617,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":7.629,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":6.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":7.629,"w":1.5,"l":2.552},{"oc":"#2b2e34","x":2.449,"y":29.171,"w":0.78,"l":5.163},{"oc":"#2b2e34","x":21.573,"y":29.153,"w":0.546,"l":2.613},{"oc":"#2b2e34","x":2.449,"y":40.317,"w":1.1475,"l":10.356},{"oc":"#d1efe7","x":86.598,"y":45.502,"w":0.75,"l":11.63},{"oc":"#d1efe7","x":86.598,"y":46.368,"w":0.75,"l":11.63},{"oc":"#2b2e34","x":2.404,"y":5.289,"w":3.75,"l":97.539},{"oc":"#d1efe7","x":18.081,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":18.081,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":20.488,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":20.488,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":22.928,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":22.928,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":25.369,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":25.369,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":27.775,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":27.775,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":30.207,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":30.207,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":32.553,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":32.553,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":34.959,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":34.959,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":37.391,"y":41.689,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":37.391,"y":42.529,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":57.375,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":57.375,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":59.816,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":59.816,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":62.257,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":62.257,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":64.663,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":64.663,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":67.095,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":67.095,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":69.441,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":69.441,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":71.847,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":71.847,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":74.279,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":74.279,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":76.763,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":76.763,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":79.169,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":79.169,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":81.61,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":81.61,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":84.05,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":84.05,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":86.457,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":86.457,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":88.889,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":88.889,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":91.235,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":91.235,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":93.641,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":93.641,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":96.073,"y":41.679,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":96.073,"y":42.539,"w":1.5,"l":2.355},{"oc":"#d1efe7","x":75.855,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":75.855,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":78.076,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":78.076,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":80.298,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":80.298,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.729,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.729,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.95,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.95,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":87.172,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":87.172,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.61,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.61,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.831,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.831,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":94.053,"y":29.286,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":94.053,"y":30.102,"w":1.3424726583665774,"l":2.211},{"oc":"#2b2e34","x":2.207,"y":28.232,"w":3,"l":97.695},{"oc":"#2b2e34","x":2.121,"y":39.688,"w":3,"l":97.695},{"oc":"#2b2e34","x":2.063,"y":42.67,"w":3,"l":97.781},{"oc":"#d1efe7","x":74.695,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":74.695,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":77.102,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":77.102,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":79.491,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":79.491,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":81.914,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":81.914,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":84.32,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":84.32,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":86.709,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":86.709,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":89.098,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":89.098,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":91.505,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":91.505,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":93.894,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":93.894,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":96.36,"y":46.784,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":96.36,"y":47.662,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":51.982,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":51.982,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":54.389,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":54.389,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":56.778,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":56.778,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":59.201,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":59.201,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":61.607,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":61.607,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":63.996,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":63.996,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":66.386,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":66.386,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":68.792,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":68.792,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":71.181,"y":46.789,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":71.181,"y":47.656,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":2.105,"y":46.789,"w":0.75,"l":38.684},{"oc":"#d1efe7","x":2.105,"y":47.655,"w":0.75,"l":38.684},{"oc":"#d1efe7","x":2.132,"y":45.433,"w":0.75,"l":38.684},{"oc":"#d1efe7","x":2.132,"y":46.298,"w":0.75,"l":38.684},{"oc":"#d1efe7","x":11.428,"y":43.356,"w":0.75,"l":32.125},{"oc":"#d1efe7","x":11.428,"y":44.221,"w":0.75,"l":32.125},{"oc":"#d1efe7","x":41.324,"y":46.796,"w":0.75,"l":9.586},{"oc":"#d1efe7","x":41.324,"y":47.662,"w":0.75,"l":9.586},{"oc":"#d1efe7","x":41.351,"y":45.44,"w":0.75,"l":9.586},{"oc":"#d1efe7","x":41.351,"y":46.305,"w":0.75,"l":9.586},{"oc":"#d1efe7","x":51.982,"y":45.44,"w":0.75,"l":34.334},{"oc":"#d1efe7","x":51.982,"y":46.305,"w":0.75,"l":34.334},{"oc":"#d1efe7","x":72.617,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.617,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":8.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":9.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.617,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.617,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":9.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":10.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.617,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.617,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.17,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.722,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.515,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.067,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.62,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.421,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.973,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":10.695,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.526,"y":11.633,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.761,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":75.761,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":77.983,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":77.983,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":80.204,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":80.204,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.635,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.635,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.857,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.857,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":87.078,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":87.078,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.517,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.517,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.738,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.738,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":93.96,"y":31.204,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":93.96,"y":32.02,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":59.947,"y":33.391,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":59.947,"y":34.19,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":62.124,"y":33.391,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":62.124,"y":34.19,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":64.301,"y":33.391,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":64.301,"y":34.19,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":66.515,"y":33.391,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":66.515,"y":34.19,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":68.692,"y":33.391,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":68.692,"y":34.19,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":60,"y":34.373,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":60,"y":35.171,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":62.177,"y":34.373,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":62.177,"y":35.171,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":64.354,"y":34.373,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":64.354,"y":35.171,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":66.568,"y":34.373,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":66.568,"y":35.171,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":68.746,"y":34.373,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":68.746,"y":35.171,"w":1.344,"l":2.164},{"oc":"#d1efe7","x":75.358,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":75.358,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":77.579,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":77.579,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":79.8,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":79.8,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.232,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.232,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.453,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.453,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":86.674,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":86.674,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.113,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.113,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.334,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.334,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":93.556,"y":35.602,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":93.556,"y":36.418,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":75.349,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":75.349,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":77.57,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":77.57,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":79.792,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":79.792,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.223,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":82.223,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.444,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":84.444,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":86.666,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":86.666,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.104,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":89.104,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.326,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":91.326,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":93.547,"y":36.577,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":93.547,"y":37.393,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":61.001,"y":7.734,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.001,"y":8.506,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.597,"y":7.734,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.597,"y":8.506,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.092,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.092,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":29.386,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":30.202,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":25.89,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":25.89,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.112,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.112,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.334,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.334,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.764,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.764,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":34.986,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":34.986,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.207,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.207,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.646,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.646,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":41.867,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":41.867,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.089,"y":31.027,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.089,"y":31.843,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":72.854,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.854,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.407,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.407,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.959,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.959,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.752,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.752,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.304,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.304,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.857,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.857,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.658,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.658,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.21,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.21,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.763,"y":12.609,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.763,"y":13.547,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.882,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.882,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.434,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.434,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.986,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.986,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.779,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.779,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.332,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.332,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.884,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.884,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.685,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.685,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.238,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.238,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.79,"y":14.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.79,"y":15.059,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.762,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.762,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.314,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.314,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.867,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.867,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.66,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.66,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.212,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.212,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.764,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.764,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.566,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.566,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.118,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.118,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.671,"y":18.269,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.671,"y":19.207,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.854,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.854,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.407,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.407,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.959,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.959,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.752,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.752,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.304,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.304,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.857,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.857,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.658,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.658,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.21,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.21,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.763,"y":19.221,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.763,"y":20.159,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.839,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.839,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.392,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.392,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.944,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.944,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.737,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.737,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.289,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.289,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.842,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.842,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.643,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.643,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.196,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.196,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.748,"y":15.588,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.748,"y":16.526,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.839,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.839,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.392,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.392,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.944,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.944,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.737,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.737,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.289,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.289,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.842,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.842,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.643,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.643,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.196,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.196,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.748,"y":16.488,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.748,"y":17.426,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.819,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.819,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.371,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.371,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.924,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.924,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.717,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.717,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.269,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.269,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.821,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.821,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.623,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.623,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.175,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.175,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.728,"y":20.201,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.728,"y":21.138,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.897,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.897,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.45,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.45,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.002,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.002,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.795,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.795,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.347,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.347,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.9,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.9,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.701,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.701,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.253,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.253,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.806,"y":21.996,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.806,"y":22.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.866,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.866,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.418,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.418,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.971,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.971,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.764,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.764,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.316,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.316,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.868,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.868,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.67,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.67,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.222,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.222,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.774,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.774,"y":23.918,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.897,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.897,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.45,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.45,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.002,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.002,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.795,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.795,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.347,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.347,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.9,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.9,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.701,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.701,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.253,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.253,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.806,"y":23.934,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.806,"y":24.871,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.882,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.882,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.434,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.434,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.986,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.986,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.779,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.779,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.332,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.332,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.884,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.884,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.685,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.685,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.238,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.238,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.79,"y":24.883,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.79,"y":25.82,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.944,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.944,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.496,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.496,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.049,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.049,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.842,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.842,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.394,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.394,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.946,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.946,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.748,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.748,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.3,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.3,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.853,"y":25.837,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.853,"y":26.775,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.85,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.85,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.403,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.403,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.955,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.955,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.748,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.748,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.3,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.3,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.853,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.853,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.654,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.654,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.206,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.206,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.759,"y":26.769,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.759,"y":27.706,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.854,"y":17.519,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.854,"y":18.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.449,"y":17.519,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.449,"y":18.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.705,"y":21.363,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.705,"y":22.135,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.3,"y":21.363,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.3,"y":22.135,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.433,"y":20.324,"w":1.5,"l":2.194},{"oc":"#d1efe7","x":46.433,"y":21.262,"w":1.5,"l":2.194},{"oc":"#d1efe7","x":48.581,"y":20.324,"w":1.5,"l":2.243},{"oc":"#d1efe7","x":48.581,"y":21.262,"w":1.5,"l":2.243},{"oc":"#d1efe7","x":50.682,"y":20.336,"w":1.5,"l":2.227},{"oc":"#d1efe7","x":50.682,"y":21.273,"w":1.5,"l":2.227},{"oc":"#d1efe7","x":44.149,"y":20.324,"w":1.5,"l":2.291},{"oc":"#d1efe7","x":44.149,"y":21.262,"w":1.5,"l":2.291},{"oc":"#d1efe7","x":46.6,"y":14.345,"w":1.5,"l":2.194},{"oc":"#d1efe7","x":46.6,"y":15.283,"w":1.5,"l":2.194},{"oc":"#d1efe7","x":48.747,"y":14.345,"w":1.5,"l":2.243},{"oc":"#d1efe7","x":48.747,"y":15.283,"w":1.5,"l":2.243},{"oc":"#d1efe7","x":50.849,"y":14.357,"w":1.5,"l":2.226},{"oc":"#d1efe7","x":50.849,"y":15.294,"w":1.5,"l":2.226},{"oc":"#d1efe7","x":44.316,"y":14.345,"w":1.5,"l":2.291},{"oc":"#d1efe7","x":44.316,"y":15.283,"w":1.5,"l":2.291},{"oc":"#2b2e34","x":2.486,"y":12.681,"w":0.7484999999999999,"l":20.633},{"oc":"#2b2e34","x":50.415,"y":29.108,"w":0.78,"l":10.08},{"oc":"#2b2e34","x":74.404,"y":29.091,"w":0.546,"l":7.92},{"oc":"#d1efe7","x":26.092,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.092,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":33.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":34.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.092,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.092,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":34.324,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":35.14,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.092,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.092,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.313,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.535,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.965,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.187,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.409,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.847,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.068,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":35.636,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.29,"y":36.452,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.038,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":26.038,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.259,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":28.259,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.481,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":30.481,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.912,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":32.912,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.133,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":35.133,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.354,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":37.354,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.793,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":39.793,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.014,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":42.014,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.236,"y":37.782,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":44.236,"y":38.598,"w":1.3424726583665774,"l":2.211},{"oc":"#d1efe7","x":66.064,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":66.064,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":68.47,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":68.47,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":70.859,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":70.859,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":73.283,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":73.283,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":75.689,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":75.689,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":78.078,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":78.078,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":80.467,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":80.467,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":82.873,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":82.873,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":85.262,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":85.262,"y":44.221,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":87.729,"y":43.359,"w":0.75,"l":2.355},{"oc":"#d1efe7","x":87.729,"y":44.221,"w":0.75,"l":2.355},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#e8f7f3","x":2.096,"y":5.469,"w":1.5,"l":42.172},{"oc":"#e8f7f3","x":101.063,"y":5.469,"w":1.5,"l":42.172},{"oc":"#d1efe7","x":58.628,"y":33.391,"w":4.5,"l":1.761},{"oc":"#d1efe7","x":87.577,"y":33.391,"w":4.5,"l":1.761},{"oc":"#d1efe7","x":71.003,"y":29.286,"w":4.5,"l":8.307},{"oc":"#d1efe7","x":99.952,"y":29.286,"w":4.5,"l":8.307},{"oc":"#d1efe7","x":15.037,"y":2.849,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":53.279,"y":2.849,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":14.985,"y":4.064,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":53.279,"y":4.064,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":68.535,"y":5.504,"w":4.5,"l":22.633},{"oc":"#d1efe7","x":100.246,"y":5.504,"w":4.5,"l":22.633},{"oc":"#d1efe7","x":21.945,"y":29.353,"w":4.5,"l":9.372},{"oc":"#d1efe7","x":49.715,"y":29.353,"w":4.5,"l":9.372},{"oc":"#d1efe7","x":72.617,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.274,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.515,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.172,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.421,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.078,"y":6.692,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":86.598,"y":45.502,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":98.228,"y":45.502,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":18.081,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":20.436,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":20.488,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":22.842,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":22.928,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":25.283,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":25.369,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":27.723,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":27.775,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":30.13,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":30.207,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":32.562,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":32.553,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":34.908,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":34.959,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":37.314,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":37.391,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":39.746,"y":41.689,"w":1.5,"l":0.839},{"oc":"#d1efe7","x":57.375,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":59.73,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":59.816,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":62.171,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":62.257,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":64.611,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":64.663,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":67.018,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":67.095,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":69.45,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":69.441,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":71.796,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":71.847,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":74.202,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":74.279,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":76.634,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":76.763,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":79.118,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":79.169,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":81.524,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":81.61,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":83.965,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":84.05,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":86.405,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":86.457,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":88.811,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":88.889,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":91.243,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":91.235,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":93.59,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":93.641,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":95.996,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":96.073,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":98.428,"y":41.679,"w":1.5,"l":0.86},{"oc":"#d1efe7","x":75.855,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":78.066,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":78.076,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":80.288,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":80.298,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.509,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.729,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.94,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.95,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":87.161,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":87.172,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":89.383,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":89.61,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.821,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.831,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":94.043,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":94.053,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":96.264,"y":29.286,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":74.695,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":77.05,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":77.102,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":79.456,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":79.491,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":81.845,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":81.914,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":84.269,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":84.32,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":86.675,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":86.709,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":89.064,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":89.098,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":91.453,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":91.505,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":93.859,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":93.894,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":96.248,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":96.36,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":98.715,"y":46.784,"w":0.75,"l":0.878},{"oc":"#d1efe7","x":51.982,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":54.337,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":54.389,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":56.743,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":56.778,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":59.132,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":59.201,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":61.556,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":61.607,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":63.962,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":63.996,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":66.351,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":66.386,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":68.74,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":68.792,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":71.146,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":71.181,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":73.536,"y":46.789,"w":0.75,"l":0.867},{"oc":"#d1efe7","x":2.105,"y":46.789,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":40.79,"y":46.789,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":2.132,"y":45.433,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":40.816,"y":45.433,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":11.428,"y":43.356,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":43.553,"y":43.356,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":41.324,"y":46.796,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":50.91,"y":46.796,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":41.351,"y":45.44,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":50.937,"y":45.44,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":51.982,"y":45.44,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":86.316,"y":45.44,"w":0.75,"l":0.866},{"oc":"#d1efe7","x":72.617,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.274,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.515,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.172,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.421,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.078,"y":8.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.617,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.274,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.515,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.172,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.421,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.078,"y":9.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.617,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.17,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.722,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.274,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.515,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.067,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.62,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.172,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.421,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":90.973,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.526,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.078,"y":10.695,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.761,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":77.973,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":77.983,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":80.194,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":80.204,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.416,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.635,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.847,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.857,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":87.068,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":87.078,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":89.289,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":89.517,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.728,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.738,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":93.949,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":93.96,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":96.171,"y":31.204,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":59.947,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":62.111,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":62.124,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":64.288,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":64.301,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":66.465,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":66.515,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":68.679,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":68.692,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":70.856,"y":33.391,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":60,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":62.164,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":62.177,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":64.341,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":64.354,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":66.519,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":66.568,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":68.732,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":68.746,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":70.91,"y":34.373,"w":1.344,"l":0.799},{"oc":"#d1efe7","x":75.358,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":77.569,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":77.579,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":79.79,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":79.8,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.012,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.232,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.443,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.453,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":86.664,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":86.674,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":88.886,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":89.113,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.324,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.334,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":93.545,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":93.556,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":95.767,"y":35.602,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":75.349,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":77.56,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":77.57,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":79.782,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":79.792,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.003,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":82.223,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.434,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":84.444,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":86.656,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":86.666,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":88.877,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":89.104,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.315,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":91.326,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":93.537,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":93.547,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":95.758,"y":36.577,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":61.001,"y":7.734,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":63.554,"y":7.734,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":63.597,"y":7.734,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":66.149,"y":7.734,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":26.092,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.303,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.313,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.524,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.535,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.746,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.965,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.177,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.187,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.398,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.409,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.62,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.847,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.058,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.068,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.28,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.29,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":46.501,"y":29.386,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":25.89,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.102,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.112,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.323,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.334,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.545,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.764,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":34.976,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":34.986,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.197,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.207,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.418,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.646,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":41.857,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":41.867,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.078,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.089,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":46.3,"y":31.027,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":72.854,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.407,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.407,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.959,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.959,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.511,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.752,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.304,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.304,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.857,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.857,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.409,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.658,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.21,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.21,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.763,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.763,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.315,"y":12.609,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.882,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.434,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.434,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.986,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.986,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.539,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.779,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.332,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.332,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.884,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.884,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.436,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.685,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.238,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.238,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.79,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.79,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.342,"y":14.121,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.762,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.314,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.314,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.867,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.867,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.419,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.66,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.212,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.212,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.764,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.764,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.317,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.566,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.118,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.118,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.671,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.671,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.223,"y":18.269,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.854,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.407,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.407,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.959,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.959,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.511,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.752,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.304,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.304,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.857,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.857,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.409,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.658,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.21,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.21,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.763,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.763,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.315,"y":19.221,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.839,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.392,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.392,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.944,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.944,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.496,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.737,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.289,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.289,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.842,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.842,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.394,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.643,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.196,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.196,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.748,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.748,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.3,"y":15.588,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.839,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.392,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.392,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.944,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.944,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.496,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.737,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.289,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.289,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.842,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.842,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.394,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.643,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.196,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.196,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.748,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.748,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.3,"y":16.488,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.819,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.371,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.371,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.924,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.924,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.476,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.717,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.269,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.269,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.821,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.821,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.374,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.623,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.175,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.175,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.728,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.728,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.28,"y":20.201,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.897,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.45,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.45,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.002,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.002,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.554,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.795,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.347,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.347,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.9,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.9,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.452,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.701,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.253,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.253,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.806,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.806,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.358,"y":21.996,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.866,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.418,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.418,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.971,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.971,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.523,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.764,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.316,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.316,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.868,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.868,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.421,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.67,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.222,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.222,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.774,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.774,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.327,"y":22.981,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.897,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.45,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.45,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.002,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.002,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.554,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.795,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.347,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.347,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.9,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.9,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.452,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.701,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.253,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.253,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.806,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.806,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.358,"y":23.934,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.882,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.434,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.434,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.986,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.986,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.539,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.779,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.332,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.332,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.884,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.884,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.436,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.685,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.238,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.238,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.79,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.79,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.342,"y":24.883,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.944,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.496,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.496,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.049,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":78.049,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.601,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.842,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.394,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.394,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.946,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.946,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.499,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.748,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.3,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.3,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.853,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.853,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.405,"y":25.837,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":72.85,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.403,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":75.403,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.955,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":77.955,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.507,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":80.748,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.3,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":83.3,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.853,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":85.853,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.405,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":88.654,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.207,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":91.206,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.759,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":93.759,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":96.311,"y":26.769,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":60.854,"y":17.519,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":63.406,"y":17.519,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":63.449,"y":17.519,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":66.002,"y":17.519,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":60.705,"y":21.363,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":63.257,"y":21.363,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":63.3,"y":21.363,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":65.853,"y":21.363,"w":1.5,"l":0.772},{"oc":"#d1efe7","x":46.433,"y":20.324,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":48.628,"y":20.324,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":48.581,"y":20.324,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":50.824,"y":20.324,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":50.682,"y":20.336,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":52.909,"y":20.336,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":44.149,"y":20.324,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":46.44,"y":20.324,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":46.6,"y":14.345,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":48.794,"y":14.345,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":48.747,"y":14.345,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":50.99,"y":14.345,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":50.849,"y":14.357,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":53.075,"y":14.357,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":44.316,"y":14.345,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":46.607,"y":14.345,"w":1.5,"l":0.938},{"oc":"#d1efe7","x":26.092,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.303,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.313,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.524,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.535,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.746,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.965,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.177,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.187,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.398,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.409,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.62,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.847,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.058,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.068,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.28,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.29,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":46.501,"y":33.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":26.092,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.303,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.313,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.524,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.535,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.746,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.965,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.177,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.187,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.398,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.409,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.62,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.847,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.058,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.068,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.28,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.29,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":46.501,"y":34.324,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":26.092,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.303,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.313,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.524,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.535,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.746,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.965,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.177,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.187,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.398,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.409,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.62,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.847,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.058,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.068,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.28,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.29,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":46.501,"y":35.636,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":26.038,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.249,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":28.259,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.47,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":30.481,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.692,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":32.912,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.123,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":35.133,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.344,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":37.354,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.566,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":39.793,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.004,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":42.014,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.226,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":44.236,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#d1efe7","x":46.447,"y":37.782,"w":1.3424726583665774,"l":0.816},{"oc":"#2b2e34","x":50.059,"y":29.259,"w":1.5,"l":9.559},{"oc":"#d1efe7","x":66.064,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":68.418,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":68.47,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":70.825,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":70.859,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":73.214,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":73.283,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":75.637,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":75.689,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":78.043,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":78.078,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":80.433,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":80.467,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":82.822,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":82.873,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":85.228,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":85.262,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":87.617,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":87.729,"y":43.359,"w":0.75,"l":0.863},{"oc":"#d1efe7","x":90.083,"y":43.359,"w":0.75,"l":0.863},{"dsh":1,"oc":"#ff2d16","x":102.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e8f7f3","x":2.096,"y":5.469,"w":98.967,"h":42.172,"clr":-1},{"oc":"#d1efe7","x":58.628,"y":33.391,"w":28.949,"h":1.761,"clr":-1},{"oc":"#d1efe7","x":71.003,"y":29.286,"w":28.949,"h":8.307,"clr":-1},{"x":15.037,"y":2.849,"w":38.242,"h":1.028,"clr":1},{"x":14.985,"y":4.064,"w":38.294,"h":1.028,"clr":1},{"oc":"#d1efe7","x":68.535,"y":5.504,"w":31.711,"h":22.633,"clr":-1},{"oc":"#d1efe7","x":21.945,"y":29.353,"w":27.77,"h":9.372,"clr":-1},{"x":72.617,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":75.17,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":77.722,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":80.515,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":83.067,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":85.62,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":88.421,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":90.973,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":93.526,"y":6.692,"w":2.552,"h":0.938,"clr":1},{"x":86.598,"y":45.502,"w":11.63,"h":0.866,"clr":1},{"x":18.081,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":20.488,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":22.928,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":25.369,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":27.775,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":30.207,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":32.553,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":34.959,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":37.391,"y":41.689,"w":2.355,"h":0.839,"clr":1},{"x":57.375,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":59.816,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":62.257,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":64.663,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":67.095,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":69.441,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":71.847,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":74.279,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":76.763,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":79.169,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":81.61,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":84.05,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":86.457,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":88.889,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":91.235,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":93.641,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":96.073,"y":41.679,"w":2.355,"h":0.86,"clr":1},{"x":74.695,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":77.102,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":79.491,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":81.914,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":84.32,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":86.709,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":89.098,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":91.505,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":93.894,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":96.36,"y":46.784,"w":2.355,"h":0.878,"clr":1},{"x":51.982,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":54.389,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":56.778,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":59.201,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":61.607,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":63.996,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":66.386,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":68.792,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":71.181,"y":46.789,"w":2.355,"h":0.867,"clr":1},{"x":2.105,"y":46.789,"w":38.684,"h":0.866,"clr":1},{"x":2.132,"y":45.433,"w":38.684,"h":0.866,"clr":1},{"x":11.428,"y":43.356,"w":32.125,"h":0.866,"clr":1},{"x":41.324,"y":46.796,"w":9.586,"h":0.866,"clr":1},{"x":41.351,"y":45.44,"w":9.586,"h":0.866,"clr":1},{"x":51.982,"y":45.44,"w":34.334,"h":0.866,"clr":1},{"x":72.617,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":75.17,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":77.722,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":80.515,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":83.067,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":85.62,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":88.421,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":90.973,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":93.526,"y":8.695,"w":2.552,"h":0.938,"clr":1},{"x":72.617,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":75.17,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":77.722,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":80.515,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":83.067,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":85.62,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":88.421,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":90.973,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":93.526,"y":9.695,"w":2.552,"h":0.938,"clr":1},{"x":72.617,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":75.17,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":77.722,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":80.515,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":83.067,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":85.62,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":88.421,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":90.973,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":93.526,"y":10.695,"w":2.552,"h":0.938,"clr":1},{"x":61.001,"y":7.734,"w":2.552,"h":0.772,"clr":1},{"x":63.597,"y":7.734,"w":2.552,"h":0.772,"clr":1},{"x":72.854,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":75.407,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":77.959,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":80.752,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":83.304,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":85.857,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":88.658,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":91.21,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":93.763,"y":12.609,"w":2.552,"h":0.938,"clr":1},{"x":72.882,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":75.434,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":77.986,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":80.779,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":83.332,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":85.884,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":88.685,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":91.238,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":93.79,"y":14.121,"w":2.552,"h":0.938,"clr":1},{"x":72.762,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":75.314,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":77.867,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":80.66,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":83.212,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":85.764,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":88.566,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":91.118,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":93.671,"y":18.269,"w":2.552,"h":0.938,"clr":1},{"x":72.854,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":75.407,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":77.959,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":80.752,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":83.304,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":85.857,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":88.658,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":91.21,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":93.763,"y":19.221,"w":2.552,"h":0.938,"clr":1},{"x":72.839,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":75.392,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":77.944,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":80.737,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":83.289,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":85.842,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":88.643,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":91.196,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":93.748,"y":15.588,"w":2.552,"h":0.938,"clr":1},{"x":72.839,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":75.392,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":77.944,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":80.737,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":83.289,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":85.842,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":88.643,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":91.196,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":93.748,"y":16.488,"w":2.552,"h":0.938,"clr":1},{"x":72.819,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":75.371,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":77.924,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":80.717,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":83.269,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":85.821,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":88.623,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":91.175,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":93.728,"y":20.201,"w":2.552,"h":0.938,"clr":1},{"x":72.897,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":75.45,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":78.002,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":80.795,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":83.347,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":85.9,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":88.701,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":91.253,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":93.806,"y":21.996,"w":2.552,"h":0.938,"clr":1},{"x":72.866,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":75.418,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":77.971,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":80.764,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":83.316,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":85.868,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":88.67,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":91.222,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":93.774,"y":22.981,"w":2.552,"h":0.938,"clr":1},{"x":72.897,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":75.45,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":78.002,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":80.795,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":83.347,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":85.9,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":88.701,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":91.253,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":93.806,"y":23.934,"w":2.552,"h":0.938,"clr":1},{"x":72.882,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":75.434,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":77.986,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":80.779,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":83.332,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":85.884,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":88.685,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":91.238,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":93.79,"y":24.883,"w":2.552,"h":0.938,"clr":1},{"x":72.944,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":75.496,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":78.049,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":80.842,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":83.394,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":85.946,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":88.748,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":91.3,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":93.853,"y":25.837,"w":2.552,"h":0.938,"clr":1},{"x":72.85,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":75.403,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":77.955,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":80.748,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":83.3,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":85.853,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":88.654,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":91.206,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":93.759,"y":26.769,"w":2.552,"h":0.938,"clr":1},{"x":60.854,"y":17.519,"w":2.552,"h":0.772,"clr":1},{"x":63.449,"y":17.519,"w":2.552,"h":0.772,"clr":1},{"x":60.705,"y":21.363,"w":2.552,"h":0.772,"clr":1},{"x":63.3,"y":21.363,"w":2.552,"h":0.772,"clr":1},{"oc":"#d0efe7","x":42.066,"y":20.313,"w":26.469,"h":0.984,"clr":-1},{"x":46.433,"y":20.324,"w":2.194,"h":0.938,"clr":1},{"x":48.581,"y":20.324,"w":2.243,"h":0.938,"clr":1},{"x":50.682,"y":20.336,"w":2.227,"h":0.938,"clr":1},{"x":44.149,"y":20.324,"w":2.291,"h":0.938,"clr":1},{"oc":"#d0efe7","x":42.459,"y":14.344,"w":25.855,"h":0.897,"clr":-1},{"x":46.6,"y":14.345,"w":2.194,"h":0.938,"clr":1},{"x":48.747,"y":14.345,"w":2.243,"h":0.938,"clr":1},{"x":50.849,"y":14.357,"w":2.226,"h":0.938,"clr":1},{"x":44.316,"y":14.345,"w":2.291,"h":0.938,"clr":1},{"x":66.064,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":68.47,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":70.859,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":73.283,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":75.689,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":78.078,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":80.467,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":82.873,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":85.262,"y":43.359,"w":2.355,"h":0.863,"clr":1},{"x":87.729,"y":43.359,"w":2.355,"h":0.863,"clr":1}],"Texts":[{"oc":"#2b2e34","x":38.508,"y":47.394,"w":6.727000000000001,"clr":-1,"A":"left","R":[{"T":"2013%20D-40%20%20P2","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":38.508,"y":47.956,"w":15.991000000000001,"clr":-1,"A":"left","R":[{"T":"Individual%20Income%20Tax%20Return%20page%202%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":57.195,"y":47.956,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%202","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":2.893,"y":3.002,"w":9.212000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20last%20name.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.91,"y":1.879,"w":6.152,"clr":-1,"A":"left","R":[{"T":"D-40%20%20PAGE%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.841,"y":4.217,"w":6.891000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20SSN.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.379,"y":7.974,"w":40.27899999999998,"clr":-1,"A":"left","R":[{"T":"spouse%2Fdomestic%20partner%20are%20over%2065%20or%20blind%2C%20attach%20a%20completed%20Calculation%20G%2C%20Schedule%20S.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":28.361,"w":3.3240000000000007,"clr":-1,"A":"left","R":[{"T":"Refund%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.880000000000001,"y":28.361,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":28.361,"w":18.548000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Complete%20if%20Line%2034%20is%20more%20than%20Line%2027","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":29.236,"w":10.249999999999998,"clr":-1,"A":"left","R":[{"T":"35%20Amount%20you%20overpaid","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":29.799,"w":12.870999999999999,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2027%20from%20Line%2034","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":30.924,"w":1.4689999999999999,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.121,"y":30.924,"w":8.905,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20applied","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":31.485999999999997,"w":2.8469999999999995,"clr":-1,"A":"left","R":[{"T":"to%20your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.511,"y":31.485999999999997,"w":8.17,"clr":-1,"A":"left","R":[{"T":"2014%20estimated%20tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":33.111,"w":4.809999999999999,"clr":-1,"A":"left","R":[{"T":"37%20Penalty%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.046,"y":33.111,"w":6.759,"clr":-1,"A":"left","R":[{"T":"See%20instructions","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":34.049,"w":4.997999999999999,"clr":-1,"A":"left","R":[{"T":"38%20%20Refund%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.932,"y":34.049,"w":6.741,"clr":-1,"A":"left","R":[{"T":"Subtract%20sum%20of","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":34.549,"w":12.740999999999998,"clr":-1,"A":"left","R":[{"T":"Lines%2036%20and%2037%20from%20Line%2035","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":35.486,"w":10.233999999999998,"clr":-1,"A":"left","R":[{"T":"39%20%20Contribution%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":35.986,"w":6.709999999999998,"clr":-1,"A":"left","R":[{"T":"from%20Sched.%20U%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.295,"y":35.986,"w":5.772,"clr":-1,"A":"left","R":[{"T":"Part%20II%2C%20Line%206","S":-1,"TS":[0,9.09,0,0]}]},{"oc":"#2b2e34","x":2.2,"y":36.487,"w":16.404000000000003,"clr":-1,"A":"left","R":[{"T":"Can%20not%20exceed%20refund%20amt.%20on%20Line%2038","S":-1,"TS":[0,9.09,1,0]}]},{"oc":"#2b2e34","x":2.2,"y":36.987,"w":12.898000000000001,"clr":-1,"A":"left","R":[{"T":"Put%20additional%20amt.%20on%20Line%2042","S":-1,"TS":[0,9.09,1,0]}]},{"oc":"#2b2e34","x":2.199,"y":37.861,"w":6.422999999999999,"clr":-1,"A":"left","R":[{"T":"40%20%20Net%20refund%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":38.594,"w":13.737999999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2039%20from%20Line%2038%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":78.681,"y":38.594,"w":10.232000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20See%20instructions.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":39.514,"w":7.343,"clr":-1,"A":"left","R":[{"T":"Refund%20Options%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":90.788,"y":39.514,"w":0.303,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.211,"y":40.756,"w":108.459,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit%20Account%20Type","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":42.514,"w":8.511000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20party%20designee","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":44.139,"w":3.9819999999999998,"clr":-1,"A":"left","R":[{"T":"Signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":50.398,"y":36.396,"w":1.505,"clr":-1,"A":"left","R":[{"T":"44%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.977,"y":36.397,"w":0.549,"clr":-1,"A":"left","R":[{"T":"T","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.668,"y":36.396,"w":6.934000000000001,"clr":-1,"A":"left","R":[{"T":"otal%20amount%20due","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.398,"y":36.899,"w":7.461000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2041%E2%80%9343","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.294,"y":31.064,"w":10.033000000000001,"clr":-1,"A":"left","R":[{"T":"42%20Contribution%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.294,"y":31.564,"w":6.709999999999998,"clr":-1,"A":"left","R":[{"T":"from%20Sched.%20U%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":58.389,"y":31.564,"w":5.772,"clr":-1,"A":"left","R":[{"T":"Part%20II%2C%20Line%207","S":-1,"TS":[0,9.09,0,0]}]},{"oc":"#2b2e34","x":50.386,"y":29.117,"w":1.8059999999999998,"clr":-1,"A":"left","R":[{"T":"41%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.964,"y":29.117,"w":3.647,"clr":-1,"A":"left","R":[{"T":"Tax%20due%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.447,"y":29.117,"w":5.808000000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":52.963,"y":29.805,"w":1.204,"clr":-1,"A":"left","R":[{"T":"34","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":54.878,"y":29.805,"w":6.809000000000002,"clr":-1,"A":"left","R":[{"T":"from%20Line%2027%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":59.474,"y":10.731,"w":5.114999999999999,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":-1,"TS":[0,8.46,0,0]}]},{"oc":"#2b2e34","x":68.457,"y":6.484,"w":1.505,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":70.94,"y":6.484,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.957,"y":6.484,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.686,"y":6.484,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.457,"y":8.765,"w":1.505,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":70.94,"y":8.765,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.957,"y":8.765,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.686,"y":8.765,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.457,"y":9.765,"w":1.505,"clr":-1,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":70.94,"y":9.765,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.957,"y":9.765,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.686,"y":9.765,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.457,"y":10.64,"w":1.505,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":70.94,"y":10.64,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.957,"y":10.64,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.686,"y":10.64,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":5.305,"y":14.991,"w":22.54299999999998,"clr":-1,"A":"left","R":[{"T":"From%20Federal%20form%202441%3B%20if%20part-year%20DC%20resident%2C%20fr","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.395,"y":14.991,"w":7.011,"clr":-1,"A":"left","R":[{"T":"om%20Line%205%2C%20DC%20F","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":40.762,"y":14.991,"w":4.333000000000001,"clr":-1,"A":"left","R":[{"T":"orm%202441","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":71.232,"y":29.219,"w":1.505,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":73.715,"y":29.219,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.153,"y":29.219,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.883,"y":29.219,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":51.69,"y":44.583,"w":15.329000000000002,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":86.409,"y":44.583,"w":1.9700000000000002,"clr":-1,"A":"left","R":[{"T":"Date","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":2.173,"y":44.644,"w":6.371,"clr":-1,"A":"left","R":[{"T":"Your%20signature%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":41.188,"y":44.644,"w":7.689000000000003,"clr":-1,"A":"left","R":[{"T":"Date%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":71.31,"y":31.042,"w":1.505,"clr":-1,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":73.793,"y":31.042,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":96.232,"y":31.042,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.961,"y":31.042,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":50.258,"y":33.274,"w":2.251,"clr":-1,"A":"left","R":[{"T":"43a%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.293,"y":33.274,"w":3.3410000000000006,"clr":-1,"A":"left","R":[{"T":"Penalty%20","S":3,"TS":[0,12,0,0]}]},{"x":58.39,"y":33.274,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":71.227,"y":33.274,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":71.956,"y":33.274,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":50.258,"y":34.214,"w":5.341999999999999,"clr":-1,"A":"left","R":[{"T":"43b%20Interest%20","S":3,"TS":[0,12,0,0]}]},{"x":58.521,"y":34.214,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":71.227,"y":34.214,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":71.956,"y":34.214,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":59.944,"y":35.189,"w":6.734999999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20total%20P%20%26%20I","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.966,"y":35.499,"w":1.505,"clr":-1,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":73.45,"y":35.499,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":95.888,"y":35.499,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.617,"y":35.499,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":71.011,"y":36.531,"w":1.505,"clr":-1,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":73.494,"y":36.531,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":95.933,"y":36.531,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.662,"y":36.531,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":58.274,"y":7.584,"w":1.204,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":21.922,"y":30.835,"w":1.505,"clr":-1,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":24.405,"y":30.835,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":46.844,"y":30.835,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":21.81,"y":29.259,"w":1.4749999999999999,"clr":-1,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":24.244,"y":29.259,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":46.732,"y":29.259,"w":1.184,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.694,"y":12.681,"w":1.505,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.177,"y":12.681,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.194,"y":12.681,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.923,"y":12.681,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.721,"y":14.192,"w":1.505,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.204,"y":14.192,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.221,"y":14.192,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.95,"y":14.192,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.679,"y":18.266,"w":1.505,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.162,"y":18.266,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.179,"y":18.266,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.908,"y":18.266,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.737,"y":19.305,"w":1.505,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.22,"y":19.305,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.237,"y":19.305,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.966,"y":19.305,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.679,"y":15.597000000000001,"w":1.505,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.162,"y":15.597000000000001,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.179,"y":15.597000000000001,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.908,"y":15.597000000000001,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.679,"y":16.497,"w":1.505,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.162,"y":16.497,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.179,"y":16.497,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.908,"y":16.497,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.659,"y":20.21,"w":1.505,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.142,"y":20.21,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.159,"y":20.21,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.888,"y":20.21,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.727,"y":22.09,"w":1.505,"clr":-1,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.21,"y":22.09,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.227,"y":22.09,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.956,"y":22.09,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.706,"y":23.052,"w":1.505,"clr":-1,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.189,"y":23.052,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.206,"y":23.052,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.935,"y":23.052,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.679,"y":23.972,"w":1.505,"clr":-1,"A":"left","R":[{"T":"31%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.162,"y":23.972,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.179,"y":23.972,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.908,"y":23.972,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.679,"y":24.934,"w":1.505,"clr":-1,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.162,"y":24.934,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.179,"y":24.934,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.908,"y":24.934,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.679,"y":25.862,"w":1.505,"clr":-1,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.162,"y":25.862,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.179,"y":25.862,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.908,"y":25.862,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":68.69,"y":26.778,"w":1.505,"clr":-1,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":71.173,"y":26.778,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":96.19,"y":26.778,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":96.919,"y":26.778,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":57.267,"y":17.369,"w":1.709,"clr":-1,"A":"left","R":[{"T":"25a","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":57.118,"y":21.213,"w":1.709,"clr":-1,"A":"left","R":[{"T":"28a","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":52.97,"y":20.132,"w":4.461,"clr":-1,"A":"left","R":[{"T":".00%20X%20.40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.871,"y":20.132,"w":5.9830000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20result%20%3E","S":2,"TS":[0,10,0,0]}]},{"x":42.534,"y":20.249,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.363,"y":14.25,"w":4.461,"clr":-1,"A":"left","R":[{"T":".00%20X%20.32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.264,"y":14.25,"w":5.9830000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20result%20%3E","S":2,"TS":[0,10,0,0]}]},{"x":42.7,"y":14.269,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":5.191,"w":1.505,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":5.191,"w":7.285000000000001,"clr":-1,"A":"left","R":[{"T":"Deduction%20type.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.77,"y":5.191,"w":31.80799999999997,"clr":-1,"A":"left","R":[{"T":"Take%20the%20same%20type%20as%20you%20took%20on%20your%20federal%20return.%20%20Fill%20in%20which%20type%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.673,"y":5.878,"w":5.195,"clr":-1,"A":"left","R":[{"T":"Standard%20or","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":59.673,"y":5.878,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"Itemized%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":21.561,"y":5.878,"w":20.868999999999993,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20amount%20to%20enter%20on%20Line%2017.","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":6.628,"w":1.8059999999999998,"clr":-1,"A":"left","R":[{"T":"17%20%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":6.628,"w":10.156999999999998,"clr":-1,"A":"left","R":[{"T":"DC%20deduction%20amount.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.213,"y":6.628,"w":30.42199999999998,"clr":-1,"A":"left","R":[{"T":"Do%20not%20copy%20from%20federal%20return.%20For%20amount%20to%20enter%2C%20see%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":7.406000000000001,"w":1.505,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":7.406000000000001,"w":10.505,"clr":-1,"A":"left","R":[{"T":"Number%20of%20exemptions.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":8.746,"w":1.505,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":8.746,"w":8.87,"clr":-1,"A":"left","R":[{"T":"Exemption%20amount.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.535,"y":8.746,"w":35.429999999999986,"clr":-1,"A":"left","R":[{"T":"Multiply%20%241%2C675%20by%20number%20on%20line%2018.%20Part-year%20DC%20residents%20see%20Calculation%20E%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.955,"y":8.745,"w":7.916928,"clr":-1,"A":"left","R":[{"T":"see%20instructions","S":-1,"TS":[0,8.951699999999999,0,0]}]},{"oc":"#2b2e34","x":67.834,"y":8.746,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":9.749,"w":1.505,"clr":-1,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":9.749,"w":9.993000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2017%20and%2019.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":10.686,"w":1.505,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":10.686,"w":8.872000000000002,"clr":-1,"A":"left","R":[{"T":"DC%20taxable%20income.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.225,"y":10.686,"w":19.109999999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2020%20from%20Line%2015.%20Enter%20result.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":11.874,"w":12.505000000000003,"clr":-1,"A":"left","R":[{"T":"DC%20tax%2C%20credits%20and%20payments","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":12.686,"w":1.505,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":12.686,"w":0.549,"clr":-1,"A":"left","R":[{"T":"T","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.193,"y":12.686,"w":1.8439999999999999,"clr":-1,"A":"left","R":[{"T":"ax.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":13.373,"w":0.537,"clr":-1,"A":"left","R":[{"T":"F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.303,"y":13.374,"w":1.829,"clr":-1,"A":"left","R":[{"T":"ill%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.796,"y":13.374,"w":17.153,"clr":-1,"A":"left","R":[{"T":"%20Complete%20Calculation%20J%20on%20Schedule%20S.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":14.311,"w":1.505,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":14.311,"w":24.504999999999974,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20child%20and%20dependent%20care%20expenses%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":"#2b2e34","x":2.236,"y":15.686,"w":1.204,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":15.686,"w":26.284999999999997,"clr":-1,"A":"left","R":[{"T":"Non-refundable%20credits%20from%20DC%20Schedule%20U%2C%20Part%201a%2C%20Line%206.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.645,"y":15.686,"w":8.450000000000001,"clr":-1,"A":"left","R":[{"T":"Attach%20Schedule%20U.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":16.561,"w":1.204,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":16.561,"w":9.844,"clr":-1,"A":"left","R":[{"T":"DC%20Low%20Income%20Credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":17.498,"w":1.709,"clr":-1,"A":"left","R":[{"T":"25a","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":17.499,"w":26.926000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20exemptions%20claimed%20on%20your%20federal%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":18.436,"w":1.505,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":18.436,"w":12.184999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20non-refundable%20credits.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.123,"y":18.436,"w":11.275000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2023%2C%2024%20and%2025.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":19.374,"w":1.204,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.036,"y":19.374,"w":4.261,"clr":-1,"A":"left","R":[{"T":"%20Total%20tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.558,"y":19.374,"w":36.31899999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2026%20from%20Line%2022.%20%20If%20Line%2022%20is%20less%20than%20Line%2026%20leave%20Line%2027%20blank.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":20.311,"w":1.204,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":20.311,"w":24.50099999999999,"clr":-1,"A":"left","R":[{"T":"DC%20Earned%20Income%20Tax%20Credit.%20Enter%20your%20federal%20EIC.%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":22.186,"w":1.204,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":22.186,"w":9.035,"clr":-1,"A":"left","R":[{"T":"Property%20Tax%20Credit.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.292,"y":22.186,"w":17.613,"clr":-1,"A":"left","R":[{"T":"From%20your%20DC%20Schedule%20H%3B%20attach%20a%20copy","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":40.427,"y":22.186,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":23.124,"w":1.204,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":23.124,"w":24.563999999999993,"clr":-1,"A":"left","R":[{"T":"Refundable%20credits%20from%20DC%20Schedule%20U%2C%20Part%201b%2C%20Line%204.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.724,"y":23.124,"w":8.450000000000001,"clr":-1,"A":"left","R":[{"T":"Attach%20Schedule%20U.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":24.061,"w":1.204,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":24.061,"w":10.149000000000001,"clr":-1,"A":"left","R":[{"T":"DC%20income%20tax%20withheld","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.513,"y":24.061,"w":5.471000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20shown%20on%20F","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":27.028,"y":24.061,"w":3.3750000000000004,"clr":-1,"A":"left","R":[{"T":"orms%20W","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":31.061,"y":24.061,"w":6.796000000000001,"clr":-1,"A":"left","R":[{"T":"-2%20and%201099.%20A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.192,"y":24.061,"w":7.848,"clr":-1,"A":"left","R":[{"T":"ttach%20these%20forms.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":24.999,"w":1.204,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":24.999,"w":16.445999999999998,"clr":-1,"A":"left","R":[{"T":"2013%20estimated%20income%20tax%20payments.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":25.936,"w":1.204,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":26.873,"w":1.204,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":26.874,"w":16.250999999999998,"clr":-1,"A":"left","R":[{"T":"Total%20payments%20and%20refundable%20credits","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.909,"y":26.874,"w":10.170000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Add%20Lines%2028%2C%2029%E2%80%9333.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.165,"y":28.299,"w":5.865,"clr":-1,"A":"left","R":[{"T":"Amount%20owed","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":60.245,"y":28.299,"w":0.8009999999999999,"clr":-1,"A":"left","R":[{"T":"%20%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.484,"y":28.299,"w":22.977999999999994,"clr":-1,"A":"left","R":[{"T":"%20%20Complete%20if%20Line%2034%20is%20equal%20to%20or%20less%20than%20Line%2027","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":21.851,"y":33.228,"w":1.505,"clr":-1,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":24.334,"y":33.228,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":46.773,"y":33.228,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":21.851,"y":34.112,"w":1.505,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":24.334,"y":34.112,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":46.773,"y":34.112,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":21.851,"y":35.507,"w":1.505,"clr":-1,"A":"left","R":[{"T":"39%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":24.334,"y":35.507,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":46.773,"y":35.507,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":22.066,"y":37.632,"w":1.505,"clr":-1,"A":"left","R":[{"T":"40%20","S":-1,"TS":[0,12.6,0,0]}]},{"x":24.55,"y":37.632,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":46.988,"y":37.632,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":21.751,"y":7.406000000000001,"w":2.555,"clr":-1,"A":"left","R":[{"T":"If%20mor","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":24.848,"y":7.406000000000001,"w":23.569999999999983,"clr":-1,"A":"left","R":[{"T":"e%20than%201%20(more%20than%202%20if%20filing%20jointly)%2C%20or%20if%20you%20or%20your","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.029,"y":13.374,"w":14.757,"clr":-1,"A":"left","R":[{"T":"if%20filing%20separately%20on%20same%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.236,"y":21.249,"w":16.12,"clr":-1,"A":"left","R":[{"T":"28a%20Enter%20the%20number%20of%20qualified%20EIT","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":28.803,"y":21.248,"w":4.901,"clr":-1,"A":"left","R":[{"T":"C%20children.%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.502,"y":25.936,"w":37.715,"clr":-1,"A":"left","R":[{"T":"Tax%20paid%20with%20extension%20of%20time%20to%20file%20or%20with%20original%20return%20if%20this%20is%20an%20amended%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.788,"y":40.763,"w":35.136,"clr":-1,"A":"left","R":[{"T":"Checking","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":32.616,"y":40.763,"w":12.204,"clr":-1,"A":"left","R":[{"T":"OR","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":37.737,"y":40.75,"w":29.529,"clr":-1,"A":"left","R":[{"T":"Savings","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":25.746,"y":38.594,"w":30.441999999999993,"clr":-1,"A":"left","R":[{"T":"Will%20the%20refund%20you%20requested%20go%20to%20an%20account%20outside%20the%20U.S.%3F%20%20%20%20%20Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":74.524,"y":38.594,"w":3.0240000000000005,"clr":-1,"A":"left","R":[{"T":"No%20%20%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.527,"y":41.514,"w":6.992999999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20Number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.84,"y":40.785,"w":305.0670000000002,"clr":-1,"A":"left","R":[{"T":"To%20deposit%20your%20refund%2C%20check%20the%20box%20and%20enter%20bank%20routing%20and%20account%20numbers.%20See%20instructions","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.025,"y":41.473,"w":57.160000000000004,"clr":-1,"A":"left","R":[{"T":"Account%20Number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.918,"y":42.514,"w":64.17600000000003,"clr":-1,"A":"left","R":[{"T":"To%20authorize%20another%20person%20to%20discuss%20this%20return%20with%20OTR%2C%20fill%20in%20here%20%20%20%20%20%20%20%20%20%20%20and%20enter%20the%20name%20and%20phone%20number%20of%20that%20person.%20See%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":43.139,"w":7.144,"clr":-1,"A":"left","R":[{"T":"Designee%E2%80%99s%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":57.887,"y":43.139,"w":6.217,"clr":-1,"A":"left","R":[{"T":"Phone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.674,"y":44.139,"w":75.677,"clr":-1,"A":"left","R":[{"T":"%20Under%20penalties%20of%20law%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20and%2C%20to%20the%20best%20of%20my%20knowledge%2C%20it%20is%20correct.%20Declaration%20of%20paid%20preparer%20is%20based%20on%20information%20available%20to%20the%20preparer.%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":2.113,"y":45.887,"w":36.487000000000016,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fdomestic%20partner%E2%80%99s%20signature%20if%20filing%20jointly%20or%20separately%20on%20same%20return%20%20%20%20%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":41.241,"y":45.887,"w":2.5720000000000005,"clr":-1,"A":"left","R":[{"T":"Date%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":51.786,"y":45.887,"w":19.178999999999995,"clr":-1,"A":"left","R":[{"T":"Preparer's%20Tax%20Identification%20Number%20(PTIN)%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":74.809,"y":45.887,"w":10.425,"clr":-1,"A":"left","R":[{"T":"PTIN%20telephone%20number%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":13.528,"y":39.514,"w":56.272,"clr":-1,"A":"left","R":[{"T":"For%20information%20on%20the%20tax%20refund%20card%20and%20program%20limitations%2C%20see%20instructions%20or%20visit%20our%20website%20otr.dc.gov%2Frefundprepaidcards","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":20.691,"y":16.561,"w":33.11899999999998,"clr":-1,"A":"left","R":[{"T":"Use%20Calc.%20LIC%2FEITC%20to%20see%20if%20LIC%20or%20EITC%20is%20a%20greater%20benefit.%20See%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.046,"y":12.686,"w":44.33499999999998,"clr":-1,"A":"left","R":[{"T":"If%20Line%2021%20is%20%24100%2C000%20or%20less%2C%20use%20tax%20tables%20to%20find%20the%20tax%2C%20If%20more%2C%20use%20Calculation%20I%20in%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.199,"y":32.174,"w":13.235999999999997,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20if%20Form%20D-2210%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#2b2e34","x":31.202,"y":32.174,"w":4.617999999999999,"clr":-1,"A":"left","R":[{"T":"is%20attached","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#2b2e34","x":50.326,"y":32.174,"w":13.235999999999997,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20if%20Form%20D-2210%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#2b2e34","x":79.845,"y":32.174,"w":4.617999999999999,"clr":-1,"A":"left","R":[{"T":"is%20attached","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#2b2e34","x":2.199,"y":40.139,"w":10.904999999999998,"clr":-1,"A":"left","R":[{"T":"Mark%20one%20refund%20choice%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.684,"y":40.139,"w":6.461,"clr":-1,"A":"left","R":[{"T":"Direct%20deposit%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.777,"y":40.139,"w":7.223000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20refund%20card%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.902,"y":40.139,"w":5.2139999999999995,"clr":-1,"A":"left","R":[{"T":"Paper%20check","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":88,"AM":1024,"x":14.939,"y":2.95,"w":38.463,"h":0.946,"TU":"Last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":89,"AM":1024,"x":15.18,"y":4.121,"w":38.118,"h":1.024},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDUCT","EN":0},"TI":92,"AM":0,"x":72.758,"y":6.755,"w":23.606,"h":0.943,"TU":"Line 17. DC deduction amount. Do not copy from federal return. For amount to enter, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMPS","EN":0},"TI":93,"AM":0,"x":61.008,"y":7.712,"w":5.049,"h":0.833,"TU":"Line 18. Number of exemptions. If more than 1 (more than 2 if filing jointly), or if you or you spouse/domestic partner are over 65 or blind, attach a completed Calculation G, Schedule S."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHS"}},"id":{"Id":"Add_Schedule_S_3","EN":0},"TI":94,"AM":0,"x":57.651,"y":8.328,"w":2.565,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMPAMT","EN":0},"TI":95,"AM":1024,"x":72.713,"y":8.747,"w":23.895,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDEXEMP","EN":0},"TI":96,"AM":1024,"x":72.843,"y":9.687,"w":23.564,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXINC","EN":0},"TI":98,"AM":1024,"x":72.584,"y":10.752,"w":23.98,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX","EN":0},"TI":99,"AM":0,"x":72.648,"y":12.686,"w":24.076,"h":0.861,"TU":"Line 22. Tax. If line 21 is $100,000 or less, use tax tables to find the tax. If more, use Calculation I in instructions."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHS"}},"id":{"Id":"Add_Schedule_S_4","EN":0},"TI":101,"AM":0,"x":55.677,"y":13.5,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHILDCR","EN":0},"TI":102,"AM":0,"x":44.413,"y":14.373,"w":8.632,"h":0.885,"TU":"Line 23. Credit for child and dependent care expenses from Federal Form 2441."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHCARECR","EN":0},"TI":103,"AM":1024,"x":73.022,"y":14.234,"w":23.851,"h":0.861},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHU"}},"id":{"Id":"Add_Schedule_U_Line_6","EN":0},"TI":104,"AM":0,"x":56.126,"y":15.785,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHCRDS","EN":0},"TI":105,"AM":1024,"x":73.097,"y":15.583,"w":23.681,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOWINCCR","EN":0},"TI":106,"AM":0,"x":72.958,"y":16.589,"w":23.831,"h":0.861,"TU":"Line 25. DC Low Income Credit. Use Calc. LIC/EITC to see if LIC or EITC is a greater benefit. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMP","EN":0},"TI":107,"AM":0,"x":60.933,"y":17.56,"w":5.199,"h":0.833,"TU":"Line 25a. Enter the number of exemptions claimed on your federal return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NONREFCR","EN":0},"TI":108,"AM":1024,"x":72.873,"y":18.334,"w":24.258,"h":0.862},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTAX","EN":0},"TI":109,"AM":1024,"x":72.932,"y":19.285,"w":24.183,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDEIC","EN":0},"TI":110,"AM":0,"x":44.155,"y":20.449,"w":8.594,"h":0.834,"TU":"Line 28. Enter your federal EIC."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DCEIC","EN":0},"TI":111,"AM":1024,"x":72.932,"y":20.23,"w":24.119,"h":0.862},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EITCNO","EN":0},"TI":112,"AM":0,"x":60.721,"y":21.405,"w":5.049,"h":0.833,"TU":"Line 28a. Enter the number of qualified EITC children."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHH"}},"id":{"Id":"Add_Schedule_H","EN":0},"TI":113,"AM":0,"x":41.566,"y":22.343,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROPTXCR","EN":0},"TI":114,"AM":1024,"x":73.101,"y":22.07,"w":23.862,"h":0.863},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHU"}},"id":{"Id":"Add_Schedule_U_Line_4","EN":0},"TI":115,"AM":0,"x":53.15,"y":23.288,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RFNDCRDS","EN":0},"TI":116,"AM":1024,"x":72.866,"y":23.04,"w":24.119,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WITHHELD","EN":0},"TI":117,"AM":0,"x":72.975,"y":24.018,"w":23.905,"h":0.834,"TU":"Line 31. DC income tax withheld shown on Forms W-2 and 1099."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTAX","EN":0},"TI":118,"AM":0,"x":72.892,"y":25.002,"w":24.001,"h":0.861,"TU":"Line 32. 2013 estimated tax payments."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXTPYMTS","EN":0},"TI":119,"AM":0,"x":72.826,"y":25.887,"w":24.001,"h":0.915,"TU":"Line 33. Tax paid with extension of time to file or with original return if this is an amended return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPYMTS","EN":0},"TI":120,"AM":1024,"x":72.668,"y":26.795,"w":24.236,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPYMT","EN":0},"TI":121,"AM":1024,"x":26.051,"y":29.329,"w":20.557,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":122,"AM":1024,"x":75.751,"y":29.276,"w":20.407,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"APPLY","EN":0},"TI":123,"AM":0,"x":25.901,"y":31.017,"w":20.482,"h":0.835,"TU":"Line 36. Amount to be applied to your 2014 estimated tax."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHU"}},"id":{"Id":"Add_Schedule_U_Line_7","EN":0},"TI":124,"AM":0,"x":66.578,"y":31.548,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIB2","EN":0},"TI":125,"AM":1024,"x":75.85,"y":31.215,"w":20.108,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DC2210"}},"id":{"Id":"Add_2210","EN":0},"TI":126,"AM":0,"x":26.519,"y":32.182,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DC2210"}},"id":{"Id":"Add_2210","EN":0},"TI":128,"AM":0,"x":74.506,"y":32.209,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFPEN","EN":0},"TI":130,"AM":1024,"x":26.105,"y":33.323,"w":20.782,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDPNLTY","EN":0},"TI":131,"AM":1024,"x":59.911,"y":33.383,"w":10.899,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"APPLYCON","EN":0},"TI":132,"AM":1024,"x":26.235,"y":34.323,"w":20.332,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTEREST","EN":0},"TI":133,"AM":0,"x":59.986,"y":34.363,"w":10.899,"h":0.833,"TU":"Line 43b. Interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIB","EN":0},"TI":134,"AM":1024,"x":26.29,"y":35.65,"w":20.183,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENINT","EN":0},"TI":135,"AM":1024,"x":75.411,"y":35.569,"w":20.183,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHU"}},"id":{"Id":"Add_Schedule_U_Part_II","EN":0},"TI":136,"AM":0,"x":16.896,"y":36.145,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTDUE","EN":0},"TI":137,"AM":1024,"x":75.466,"y":36.597,"w":20.183,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":138,"AM":1024,"x":25.97,"y":37.8,"w":20.632,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTE","EN":0},"TI":146,"AM":0,"x":17.912,"y":41.727,"w":21.786,"h":0.833,"TU":"Routing Number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCT","EN":0},"TI":147,"AM":0,"x":57.356,"y":41.688,"w":41.336,"h":0.836,"TU":"Account Number.","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESIGNEE","EN":0},"TI":148,"AM":0,"x":11.762,"y":43.467,"w":32.652,"h":0.834,"TU":"Designee's name."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DSGNPHNO","EN":0},"TI":150,"AM":0,"x":66.422,"y":43.375,"w":23.633,"h":0.876,"TU":"Phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPNAME","EN":0},"TI":151,"AM":1024,"x":52.046,"y":45.426,"w":34.099,"h":0.859,"V":"SELF-PREPARED"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PREPDATE","EN":0},"TI":152,"AM":1024,"x":86.766,"y":45.527,"w":11.107,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PTIN","EN":0},"TI":153,"AM":1024,"x":51.896,"y":46.831,"w":21.672,"h":0.913,"V":"SFF"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PREPHONE","EN":0},"TI":154,"AM":1024,"x":74.614,"y":46.853,"w":23.835,"h":0.883}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STANDARD","EN":0},"TI":90,"AM":0,"x":57.279,"y":5.985,"w":2.001,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ITEMIZED","EN":0},"TI":91,"AM":0,"x":66.347,"y":6,"w":2.001,"h":0.833,"checked":false}],"id":{"Id":"DEDBOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TXINLOSS","EN":0},"TI":97,"AM":1024,"x":65.206,"y":10.981,"w":2.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXBOXX","EN":0},"TI":100,"AM":0,"x":9.753,"y":13.587,"w":1.477,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"D2210BX1","EN":0},"TI":127,"AM":1024,"x":41.961,"y":32.343,"w":1.177,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"D2210BX2","EN":0},"TI":129,"AM":1024,"x":90.242,"y":32.338,"w":1.177,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OUTUS","EN":0},"TI":139,"AM":0,"x":67.915,"y":38.813,"w":1.577,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOCKBX","EN":0},"TI":140,"AM":0,"x":76.94,"y":38.786,"w":1.577,"h":0.833,"checked":true}],"id":{"Id":"A946RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DDX","EN":0},"TI":141,"AM":0,"x":21.718,"y":40.255,"w":1.877,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CCX","EN":0},"TI":142,"AM":0,"x":35.766,"y":40.299,"w":1.918,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PCX","EN":0},"TI":143,"AM":0,"x":51.099,"y":40.306,"w":1.918,"h":0.833,"checked":false}],"id":{"Id":"REFOPTRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CKBOX","EN":0},"TI":144,"AM":0,"x":21.845,"y":40.908,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SAVBOX","EN":0},"TI":145,"AM":0,"x":35.789,"y":40.877,"w":1.856,"h":0.833,"checked":false}],"id":{"Id":"ACCTTYRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAUTH","EN":0},"TI":149,"AM":0,"x":51.135,"y":42.704,"w":1.177,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DC40EZ.content.txt b/test/data/dc/form/DC40EZ.content.txt new file mode 100755 index 00000000..236e2527 --- /dev/null +++ b/test/data/dc/form/DC40EZ.content.txt @@ -0,0 +1,406 @@ +Government of the +District of Columbia +20 +13 + +D-40EZ Income Tax Return + + +for Single and Joint Filers + + +with No Dependents +2013 +D-40EZ +Revised 09/13 +Income T +ax Return +STAPLE W-2s AND ANY OTHER WITHHOLDING STATEMENTS HERE +2 + +$ + +. +00 +3 + +$ + +. +00 +4 + +$ + +. +00 +Signature + +Under penalties of law, I declare that I have examined this return and, to the best of my knowledge, it is correct. Declaration of paid preparer is based on the information available to the preparer. +Your signature + +Date + +Preparer’s signature + +Date +Spouse’s/domestic partner’s signature if filing jointly + +Date + +Preparer’s Tax Identification Number (PTIN) + + +PTIN +telephone number +STAPLE OTHER DOCUMENTS IN UPPER LEFT IN BACK +1 + +Total wages, salaries, tips, unemployment compensation, etc. +2 + +Taxable interest and ordinary dividends. + (If more than $1500, file form D-40.) +3 + +DC adjusted gross income. + +Add Lines 1 and 2. +4 + +Standard deduction +plus + exemption. + +, + + +5 + +DC taxable income. + +Line 3 minus Line 4. If Line 4 is equal to or more than Line 3, make no entry. +6 + +Tax. + +Use the tax tables on pages 53-62 to find the tax on the Line 5 amount. +7 + +DC Low Income Credit. + +7a + +Enter number of exemptions claimed on your federal return + + +7a +8 + +Net tax. + +Subtract Line 7 from Line 6. If Line 7 is equal to or more than Line 6, make no entry. +9a + +Contribution to Public Fund for Drug Prevention and Children at Risk. +9b + +Contribution to DC Statehood Delegation Fund. +9c + +Contribution to Anacostia River Cleanup and Protection Fund. +9d + + +RESERVED +10 + +Tax and/or contribution(s). + +Add Lines 8, 9a, 9b, 9c and 9d. +11 + +Total DC income tax withheld, + +shown on Forms W-2 and 1099 – attach these forms. +12 + +Tax paid with extension of time to file or with original return if this is an amended return. +13 + +DC Earned Income Tax Credit. + +Enter your federal earned income credit + +13a + + + +14 + +Total tax payments and credits. + +Add lines 11–13. +15 + +Refund. +If Line 14 is the larger, subtract Line 10 from Line 14. +16 + +Amount owed. +If Line 10 is the larger, subtract Line 14 from Line 10. +See payment options in instructions. +17 + +Penalty +Interest +See instructions. + +Enter results +18 + +TOTAL AMOUNT DUE. +Add lines 16 and 17. +19 + +TOTAL REFUND. +Subtract Line 17 (results) from Line 15 and enter here. +Home address (number, street and apartment number if applicable) + +City + +State + +Zip Code +Your first name + +M.I. + +Last name +Spouse’s/registered domestic partner’s first name + +M.I. + +Last name +Print in CAPITAL letters using black ink. +Third party designee +To authorize another person to discuss this return with the OTR, fll in here and enter the name and phone number of that person. See instructions. +Designee’s +name + + + + +Phone +number +1 + +$ + +. +00 +If more than $100,000 file form D-40. +5 + +$ + +. +00 +6 + + +$ + +. +00 +7 + + +$ + +. +00 + +8 + + +$ + +. +00 + +9a + + +$ + +. +00 + +9b + + +$ + +. +00 + +9c + + +$ + +. +00 + +9d + + +$ + +. +00 + +13 + + +$ + +. +00 + +18 + + +$ + +. +00 +See instructions. +19 + + +$ + +. +00 +$ + + . +00 +X .40 = +10 + + +$ + +. +00 +11 + + +$ + +. +00 +14 + +$ + +. +00 +15 + + +$ + +. +00 +16 + + +$ + +. +00 +17 + + +$ + +. +00 +12 + +$ + +. +00 +Your social security number (SSN) +and + and + +Personal information + + + + +Your telephone number + + + . +Filing status: + +Single, + +Married filing jointly, + +Registered domestic partners filing jointly, + + +Dependent claimed by someone else + +Fill in if Amended Return +Date of Birth (MMDDYYYY) + +Spouse’s/registered domestic partner’s SSN +Will the refund you requested go to an account outside the US? + +Yes + +No + + + + + Routing Number + +Account Number +$ + +.00 +$ + +.00 +Enter number of qualified EITC children + +13a +Date of Birth (MMDDYYYY) +Use Calc. LIC/EITC to see if LIC or EITC is a greater benefit. +See instructions. +Use Calc. LIC/EITC to see if EITC is greater. Leave blank if you took Line 7 LIC credit. +otr.dc.gov/refundprepaidcards. +or if claimed as a dependent on another’s tax return, enter $4100 +If single, enter $5775. + If fling jointly, enter $7450 +Refund Options: For information on the tax refund card and program limitations, visit our website +Direct Deposit Account Type +Checking +OR +Savings +To deposit your refund, check the box and enter bank routing and account numbers. See instructions +Mark one refund choice: +Direct deposit +Tax refund card +Paper check +----------------Page (0) Break---------------- diff --git a/test/data/dc/form/DC40EZ.fields.json b/test/data/dc/form/DC40EZ.fields.json new file mode 100755 index 00000000..dc721c68 --- /dev/null +++ b/test/data/dc/form/DC40EZ.fields.json @@ -0,0 +1 @@ +[{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"PRTNRBX"},{"id":"FSRB","type":"radio","calc":false,"value":"L4BX"},{"id":"AMEND","type":"box","calc":true,"value":""},{"id":"ACCBXRB","type":"radio","calc":false,"value":"USACCT"},{"id":"ACCBXRB","type":"radio","calc":false,"value":"NOUS"},{"id":"REFOPTRB","type":"radio","calc":false,"value":"DDX"},{"id":"REFOPTRB","type":"radio","calc":false,"value":"CCX"},{"id":"REFOPTRB","type":"radio","calc":false,"value":"PCX"},{"id":"ACCTTYRB","type":"radio","calc":false,"value":"CHECKBX"},{"id":"ACCTTYRB","type":"radio","calc":false,"value":"SAVINGBX"},{"id":"BXAUTH","type":"box","calc":false,"value":""},{"id":"DPHONE","type":"phone","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"TPDOB","type":"date","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"SPDOB","type":"date","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"TPINIT","type":"mask","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SPINIT","type":"mask","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"EXEMP","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"STFUND","type":"number","calc":false,"value":""},{"id":"ANACOST","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11WH","type":"number","calc":false,"value":""},{"id":"L11EXT","type":"number","calc":false,"value":""},{"id":"FEDEIC","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"EITC","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"PENALTY","type":"number","calc":false,"value":""},{"id":"INTEREST","type":"number","calc":false,"value":""},{"id":"PENINT","type":"number","calc":true,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""},{"id":"TOTREF","type":"number","calc":true,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCTNO","type":"mask","calc":false,"value":""},{"id":"DESIGNEE","type":"alpha","calc":false,"value":""},{"id":"DSGNPHNO","type":"phone","calc":false,"value":""},{"id":"PREPSIGN","type":"alpha","calc":true,"value":"Self-Prepared"},{"id":"PTIN","type":"alpha","calc":true,"value":"SFF"}] \ No newline at end of file diff --git a/test/data/dc/form/DC40EZ.json b/test/data/dc/form/DC40EZ.json new file mode 100755 index 00000000..1e53c51d --- /dev/null +++ b/test/data/dc/form/DC40EZ.json @@ -0,0 +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":"#eef9f4","x":2.836,"y":47.185,"w":1.5,"l":96.078},{"oc":"#eef9f4","x":2.836,"y":4.531,"w":1.5,"l":96.078},{"oc":"#2b2e34","x":20.081,"y":2.876,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":20.081,"y":1.926,"w":1.5,"l":6.11},{"clr":1,"x":4.183,"y":15.598,"w":1.5,"l":67.77},{"clr":1,"x":4.183,"y":16.591,"w":1.5,"l":67.77},{"clr":1,"x":4.381,"y":17.395,"w":1.5,"l":67.573},{"clr":1,"x":4.114,"y":20.698,"w":1.5,"l":67.667},{"clr":1,"x":4.183,"y":22.504,"w":1.5,"l":67.77},{"clr":1,"x":3.573,"y":21.623,"w":1.5,"l":68.258},{"clr":1,"x":4.114,"y":23.445,"w":1.5,"l":67.667},{"clr":1,"x":3.487,"y":24.435,"w":1.5,"l":68.466},{"clr":1,"x":3.768,"y":26.176,"w":1.5,"l":68.185},{"clr":1,"x":3.628,"y":27.107,"w":1.5,"l":68.326},{"clr":1,"x":4.037,"y":28.91,"w":1.5,"l":68.028},{"oc":"#2b2e34","x":3.094,"y":38.469,"w":1.5,"l":94.809},{"clr":1,"x":3.628,"y":31.329,"w":1.5,"l":68.209},{"oc":"#2b2e34","x":3.609,"y":41.856,"w":1.5,"l":94.359},{"oc":"#def3ea","x":50.331,"y":45.592,"w":1.5,"l":32.407},{"oc":"#def3ea","x":50.331,"y":44.694,"w":1.5,"l":32.407},{"oc":"#def3ea","x":83.185,"y":45.592,"w":1.5,"l":9.84},{"oc":"#def3ea","x":83.185,"y":44.694,"w":1.5,"l":9.84},{"oc":"#def3ea","x":37.363,"y":47.118,"w":1.5,"l":9.84},{"oc":"#def3ea","x":37.363,"y":46.198,"w":1.5,"l":9.84},{"oc":"#2b2e34","x":19.718,"y":18.108,"w":0.7020000000000001,"l":2.722},{"clr":1,"x":3.909,"y":25.29,"w":1.5,"l":68.063},{"oc":"#def3ea","x":5.024,"y":14.411,"w":1.5,"l":79.968},{"oc":"#def3ea","x":5.024,"y":13.54,"w":1.5,"l":79.968},{"oc":"#def3ea","x":5.081,"y":14.424,"w":1.5,"l":2.181},{"oc":"#def3ea","x":5.081,"y":13.56,"w":1.5,"l":2.181},{"oc":"#def3ea","x":7.311,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":7.311,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.778,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.778,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.245,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.245,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.712,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.712,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.179,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.179,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.647,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.647,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.114,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.114,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.581,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.581,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.048,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.048,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.515,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.515,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":31.982,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":31.982,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.564,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.564,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":37.031,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":37.031,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.498,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.498,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":41.965,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":41.965,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.432,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.432,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.899,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.899,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.366,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.366,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.833,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.833,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.057,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.057,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":58.524,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":58.524,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":62.641,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":62.641,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":65.108,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":65.108,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":67.575,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":67.575,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":70.043,"y":14.432,"w":1.5,"l":2.418},{"oc":"#def3ea","x":70.043,"y":13.56,"w":1.5,"l":2.418},{"oc":"#def3ea","x":72.351,"y":14.416,"w":1.5,"l":2.418},{"oc":"#def3ea","x":72.351,"y":13.544,"w":1.5,"l":2.418},{"oc":"#def3ea","x":77.799,"y":14.383,"w":1.5,"l":2.418},{"oc":"#def3ea","x":77.799,"y":13.511,"w":1.5,"l":2.418},{"oc":"#def3ea","x":80.266,"y":14.383,"w":1.5,"l":2.418},{"oc":"#def3ea","x":80.266,"y":13.511,"w":1.5,"l":2.418},{"oc":"#def3ea","x":82.734,"y":14.383,"w":1.5,"l":2.418},{"oc":"#def3ea","x":82.734,"y":13.511,"w":1.5,"l":2.418},{"oc":"#def3ea","x":75.332,"y":14.383,"w":1.5,"l":2.418},{"oc":"#def3ea","x":75.332,"y":13.511,"w":1.5,"l":2.418},{"oc":"#def3ea","x":78.886,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":78.886,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.354,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.354,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.821,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.821,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":5.029,"y":8.879,"w":1.5,"l":83.832},{"oc":"#def3ea","x":5.029,"y":7.92,"w":1.5,"l":83.832},{"oc":"#def3ea","x":5.11,"y":8.84,"w":1.5,"l":2.181},{"oc":"#def3ea","x":5.11,"y":7.915,"w":1.5,"l":2.181},{"oc":"#def3ea","x":7.341,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":7.341,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.808,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.808,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.275,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.275,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.742,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.742,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.209,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.209,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.676,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.676,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.143,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.143,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.61,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.61,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.077,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.077,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.544,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.544,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":32.012,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":32.012,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":35.647,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":35.647,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.413,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.413,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":41.88,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":41.88,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.347,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.347,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.814,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.814,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.281,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.281,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.748,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.748,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.216,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.216,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.683,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.683,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.15,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.15,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.617,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.617,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.084,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.084,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.551,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.551,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":69.018,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":69.018,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.485,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.485,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":73.952,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":73.952,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.419,"y":8.843,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.419,"y":7.915,"w":1.5,"l":2.418},{"oc":"#def3ea","x":78.803,"y":8.848,"w":1.5,"l":2.418},{"oc":"#def3ea","x":78.803,"y":7.92,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.27,"y":8.848,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.27,"y":7.92,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.737,"y":8.848,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.737,"y":7.92,"w":1.5,"l":2.418},{"oc":"#def3ea","x":86.205,"y":8.848,"w":1.5,"l":2.418},{"oc":"#def3ea","x":86.205,"y":7.92,"w":1.5,"l":2.418},{"oc":"#2b2e34","x":4.127,"y":14.663,"w":3,"l":94.728},{"oc":"#2b2e34","x":2.4,"y":4.5,"w":3,"l":96.521},{"oc":"#def3ea","x":72.444,"y":47.161,"w":1.5,"l":24.707},{"oc":"#def3ea","x":72.444,"y":46.227,"w":1.5,"l":24.707},{"oc":"#def3ea","x":72.66,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":72.66,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":75.183,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":75.183,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":77.705,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":77.705,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":80.141,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":80.141,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":82.663,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":82.663,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":85.186,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":85.186,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":87.794,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":87.794,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":90.316,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":90.316,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":92.667,"y":47.126,"w":1.5,"l":2.476},{"oc":"#def3ea","x":92.667,"y":46.222,"w":1.5,"l":2.476},{"oc":"#def3ea","x":94.832,"y":47.131,"w":1.5,"l":2.476},{"oc":"#def3ea","x":94.832,"y":46.227,"w":1.5,"l":2.476},{"oc":"#def3ea","x":12.284,"y":43.244,"w":1.5,"l":32.407},{"oc":"#def3ea","x":12.284,"y":42.556,"w":1.5,"l":32.407},{"oc":"#def3ea","x":55.136,"y":43.281,"w":1.5,"l":25.539},{"oc":"#def3ea","x":55.136,"y":42.55,"w":1.5,"l":25.539},{"oc":"#def3ea","x":54.966,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":54.966,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":57.488,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":57.488,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":60.01,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":60.01,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":63.134,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":63.134,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":65.656,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":65.656,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":68.179,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":68.179,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":71.302,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":71.302,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":73.824,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":73.824,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":76.347,"y":43.253,"w":1.5,"l":2.476},{"oc":"#def3ea","x":76.347,"y":42.546,"w":1.5,"l":2.476},{"oc":"#def3ea","x":78.684,"y":43.257,"w":1.5,"l":2.476},{"oc":"#def3ea","x":78.684,"y":42.55,"w":1.5,"l":2.476},{"clr":1,"x":3.768,"y":29.886,"w":1.5,"l":68.209},{"clr":1,"x":3.737,"y":34.04,"w":1.5,"l":68.209},{"oc":"#def3ea","x":4.698,"y":47.131,"w":1.5,"l":32.059},{"oc":"#def3ea","x":4.698,"y":46.21,"w":1.5,"l":32.059},{"oc":"#def3ea","x":37.363,"y":45.584,"w":1.5,"l":9.84},{"oc":"#def3ea","x":37.363,"y":44.664,"w":1.5,"l":9.84},{"oc":"#def3ea","x":4.729,"y":45.597,"w":1.5,"l":32.059},{"oc":"#def3ea","x":4.729,"y":44.676,"w":1.5,"l":32.059},{"oc":"#def3ea","x":48.925,"y":47.149,"w":1.5,"l":24.707},{"oc":"#def3ea","x":48.925,"y":46.216,"w":1.5,"l":24.707},{"oc":"#def3ea","x":49.141,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":49.141,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":51.663,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":51.663,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":54.185,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":54.185,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":56.622,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":56.622,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":59.144,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":59.144,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":61.666,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":61.666,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":64.274,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":64.274,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":66.796,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":66.796,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":69.147,"y":47.114,"w":1.5,"l":2.476},{"oc":"#def3ea","x":69.147,"y":46.21,"w":1.5,"l":2.476},{"oc":"#def3ea","x":78.853,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":78.853,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.32,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.32,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.787,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.787,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":4.995,"y":10.416,"w":1.5,"l":83.832},{"oc":"#def3ea","x":4.995,"y":9.458,"w":1.5,"l":83.832},{"oc":"#def3ea","x":5.077,"y":10.378,"w":1.5,"l":2.181},{"oc":"#def3ea","x":5.077,"y":9.452,"w":1.5,"l":2.181},{"oc":"#def3ea","x":7.307,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":7.307,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.774,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.774,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.241,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.241,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.708,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.708,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.175,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.175,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.642,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.642,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.109,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.109,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.576,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.576,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.044,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.044,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.511,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.511,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":31.978,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":31.978,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":35.613,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":35.613,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.379,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.379,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":41.846,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":41.846,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.313,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.313,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.78,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.78,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.248,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.248,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.715,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.715,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.182,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.182,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.649,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.649,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.116,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.116,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.583,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.583,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.05,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.05,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.517,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.517,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":68.984,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":68.984,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.451,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.451,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":73.918,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":73.918,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.386,"y":10.381,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.386,"y":9.452,"w":1.5,"l":2.418},{"oc":"#def3ea","x":78.769,"y":10.386,"w":1.5,"l":2.418},{"oc":"#def3ea","x":78.769,"y":9.457,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.237,"y":10.386,"w":1.5,"l":2.418},{"oc":"#def3ea","x":81.237,"y":9.457,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.704,"y":10.386,"w":1.5,"l":2.418},{"oc":"#def3ea","x":83.704,"y":9.457,"w":1.5,"l":2.418},{"oc":"#def3ea","x":86.171,"y":10.386,"w":1.5,"l":2.418},{"oc":"#def3ea","x":86.171,"y":9.457,"w":1.5,"l":2.418},{"oc":"#def3ea","x":5.061,"y":11.988,"w":1.5,"l":74.01},{"oc":"#def3ea","x":5.061,"y":11.038,"w":1.5,"l":74.01},{"oc":"#def3ea","x":5.143,"y":11.96,"w":1.5,"l":2.181},{"oc":"#def3ea","x":5.143,"y":11.032,"w":1.5,"l":2.181},{"oc":"#def3ea","x":7.373,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":7.373,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.84,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.84,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.307,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.307,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.775,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.775,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.242,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.242,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.709,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.709,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.176,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.176,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.643,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.643,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.11,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.11,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.577,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.577,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":32.044,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":32.044,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.626,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.626,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":37.093,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":37.093,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.56,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.56,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":42.027,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":42.027,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.494,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.494,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.961,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.961,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.428,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.428,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.895,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.895,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.363,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.363,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.83,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.83,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.297,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.297,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.764,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.764,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.231,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.231,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.698,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.698,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":69.165,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":69.165,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":74.001,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":74.001,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.469,"y":11.969,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.469,"y":11.032,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.6,"y":11.96,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.6,"y":11.024,"w":1.5,"l":2.418},{"oc":"#def3ea","x":5.106,"y":13.024,"w":1.5,"l":74.01},{"oc":"#def3ea","x":5.106,"y":12.074,"w":1.5,"l":74.01},{"oc":"#def3ea","x":5.188,"y":12.996,"w":1.5,"l":2.181},{"oc":"#def3ea","x":5.188,"y":12.068,"w":1.5,"l":2.181},{"oc":"#def3ea","x":7.418,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":7.418,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.885,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.885,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.352,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.352,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.819,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.819,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.287,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.287,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.754,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.754,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.221,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.221,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.688,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.688,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.155,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":27.155,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.622,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.622,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":32.089,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":32.089,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.671,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.671,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":37.138,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":37.138,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.605,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.605,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":42.072,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":42.072,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.539,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.539,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":47.006,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":47.006,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.473,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":49.473,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.94,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.94,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.408,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":54.408,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.875,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":56.875,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.342,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":59.342,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.809,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":61.809,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.276,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":64.276,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.743,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":66.743,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":69.21,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":69.21,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":74.046,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":74.046,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.513,"y":13.004,"w":1.5,"l":2.418},{"oc":"#def3ea","x":76.513,"y":12.068,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.645,"y":12.996,"w":1.5,"l":2.418},{"oc":"#def3ea","x":71.645,"y":12.06,"w":1.5,"l":2.418},{"clr":1,"x":4.527,"y":35.042,"w":1.5,"l":68.209},{"clr":1,"x":3.721,"y":28.04,"w":1.5,"l":68.326},{"clr":1,"x":3.721,"y":36.915,"w":1.5,"l":68.209},{"clr":1,"x":3.85,"y":33.165,"w":1.5,"l":68.209},{"oc":"#def3ea","x":13.175,"y":35.896,"w":1.5,"l":2.416},{"oc":"#def3ea","x":13.175,"y":35.167,"w":1.5,"l":2.416},{"oc":"#def3ea","x":18.253,"y":35.896,"w":1.5,"l":2.416},{"oc":"#def3ea","x":18.253,"y":35.167,"w":1.5,"l":2.416},{"oc":"#def3ea","x":20.718,"y":35.896,"w":1.5,"l":2.416},{"oc":"#def3ea","x":20.718,"y":35.167,"w":1.5,"l":2.416},{"oc":"#def3ea","x":23.184,"y":35.896,"w":1.5,"l":2.416},{"oc":"#def3ea","x":23.184,"y":35.167,"w":1.5,"l":2.416},{"oc":"#def3ea","x":15.714,"y":35.893,"w":1.5,"l":2.416},{"oc":"#def3ea","x":15.714,"y":35.165,"w":1.5,"l":2.416},{"oc":"#def3ea","x":36.721,"y":35.958,"w":1.5,"l":2.416},{"oc":"#def3ea","x":36.721,"y":35.229,"w":1.5,"l":2.416},{"oc":"#def3ea","x":41.799,"y":35.958,"w":1.5,"l":2.416},{"oc":"#def3ea","x":41.799,"y":35.229,"w":1.5,"l":2.416},{"oc":"#def3ea","x":44.265,"y":35.958,"w":1.5,"l":2.416},{"oc":"#def3ea","x":44.265,"y":35.229,"w":1.5,"l":2.416},{"oc":"#def3ea","x":46.731,"y":35.958,"w":1.5,"l":2.416},{"oc":"#def3ea","x":46.731,"y":35.229,"w":1.5,"l":2.416},{"oc":"#def3ea","x":39.26,"y":35.956,"w":1.5,"l":2.416},{"oc":"#def3ea","x":39.26,"y":35.227,"w":1.5,"l":2.416},{"clr":1,"x":4.091,"y":36.04,"w":1.5,"l":68.209},{"oc":"#def3ea","x":79.217,"y":15.646,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.217,"y":14.793,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":15.646,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":14.793,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":15.646,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":14.793,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":15.646,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":14.793,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":15.644,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":14.79,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":15.643,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":14.79,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.217,"y":16.605,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.217,"y":15.751,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":16.605,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":15.751,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":16.605,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":15.751,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":16.605,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":15.751,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":16.602,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":15.748,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":16.602,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":15.748,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.217,"y":17.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.217,"y":16.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":17.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":16.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":17.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":16.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":17.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":16.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":17.475,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":16.621,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":17.474,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":16.621,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.217,"y":18.313,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.217,"y":17.459,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":18.313,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.57,"y":17.459,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":18.313,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.012,"y":17.459,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":18.313,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.454,"y":17.459,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":18.31,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.732,"y":17.457,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":18.31,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.768,"y":17.456,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":19.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":18.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":19.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":18.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":19.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":18.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":19.477,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":18.624,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":19.475,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":18.621,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.854,"y":19.474,"w":1.5,"l":2.391},{"oc":"#def3ea","x":76.854,"y":18.621,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":20.584,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":19.73,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":20.584,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":19.73,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":20.584,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":19.73,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":20.584,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":19.73,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":20.581,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":19.727,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":21.563,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":20.709,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":21.563,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":20.709,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":21.563,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":20.709,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":21.563,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":20.709,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":21.56,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":20.707,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":23.355,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":22.501,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":23.355,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":22.501,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":23.355,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":22.501,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":23.355,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":22.501,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":23.352,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":22.498,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":24.271,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":23.418,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":24.271,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":23.418,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":24.271,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":23.418,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":24.271,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":23.418,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":24.269,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":23.415,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":25.188,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":24.334,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":25.188,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":24.334,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":25.188,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":24.334,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":25.188,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":24.334,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":25.185,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":24.332,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":26.084,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":25.23,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":26.084,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":25.23,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":26.084,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":25.23,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":26.084,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":25.23,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":26.081,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":25.227,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":27.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.131,"y":26.168,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":27.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.484,"y":26.168,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":27.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.926,"y":26.168,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":27.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.368,"y":26.168,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":27.019,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.646,"y":26.165,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":31.073,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":30.22,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":31.073,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":30.22,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":31.073,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":30.22,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":31.073,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":30.22,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":31.071,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":30.217,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":36.917,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.303,"y":36.063,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":36.917,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.656,"y":36.063,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":36.917,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.098,"y":36.063,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":36.917,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.54,"y":36.063,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":36.914,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.818,"y":36.061,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.361,"y":37.977,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.361,"y":37.124,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.714,"y":37.977,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.714,"y":37.124,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.155,"y":37.977,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.155,"y":37.124,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.597,"y":37.977,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.597,"y":37.124,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.875,"y":37.975,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.875,"y":37.121,"w":1.5,"l":2.391},{"clr":1,"x":3.718,"y":19.587,"w":1.5,"l":68.326},{"oc":"#dcf2e9","x":56.086,"y":31.233,"w":1.5,"l":1.889},{"oc":"#dcf2e9","x":56.086,"y":30.315,"w":1.5,"l":1.889},{"oc":"#dcf2e9","x":58.018,"y":31.233,"w":1.5,"l":1.889},{"oc":"#dcf2e9","x":58.018,"y":30.315,"w":1.5,"l":1.889},{"oc":"#dcf2e9","x":59.949,"y":31.233,"w":1.5,"l":1.889},{"oc":"#dcf2e9","x":59.949,"y":30.315,"w":1.5,"l":1.889},{"oc":"#dcf2e9","x":61.672,"y":31.233,"w":1.5,"l":1.889},{"oc":"#dcf2e9","x":61.672,"y":30.315,"w":1.5,"l":1.889},{"oc":"#def3ea","x":79.163,"y":28.016,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.163,"y":27.162,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.515,"y":28.016,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.515,"y":27.162,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.957,"y":28.016,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.957,"y":27.162,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.399,"y":28.016,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.399,"y":27.162,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.677,"y":28.013,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.677,"y":27.159,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.163,"y":29.003,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.163,"y":28.149,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.515,"y":29.003,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.515,"y":28.149,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.957,"y":29.003,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.957,"y":28.149,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.399,"y":29.003,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.399,"y":28.149,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.677,"y":29,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.677,"y":28.147,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.334,"y":33.178,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.334,"y":32.324,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.687,"y":33.178,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.687,"y":32.324,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.129,"y":33.178,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.129,"y":32.324,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.571,"y":33.178,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.571,"y":32.324,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.849,"y":33.175,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.849,"y":32.322,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.369,"y":34.166,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.369,"y":33.312,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.722,"y":34.166,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.722,"y":33.312,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.164,"y":34.166,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.164,"y":33.312,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.605,"y":34.166,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.605,"y":33.312,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.883,"y":34.163,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.883,"y":33.309,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.334,"y":35.041,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.334,"y":34.187,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.687,"y":35.041,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.687,"y":34.187,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.129,"y":35.041,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.129,"y":34.187,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.571,"y":35.041,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.571,"y":34.187,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.849,"y":35.038,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.849,"y":34.184,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.375,"y":35.875,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.375,"y":35.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.728,"y":35.875,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.728,"y":35.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.169,"y":35.875,"w":1.5,"l":2.391},{"oc":"#def3ea","x":87.169,"y":35.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.611,"y":35.875,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.611,"y":35.021,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.889,"y":35.872,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.889,"y":35.019,"w":1.5,"l":2.391},{"oc":"#dcf2e9","x":17.568,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":17.568,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":19.984,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":19.984,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":22.434,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":22.434,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":24.884,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":24.884,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":27.299,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":27.299,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":29.741,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":29.741,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":32.096,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":32.096,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":34.511,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":34.511,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":36.953,"y":41.706,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":36.953,"y":40.781,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":56.505,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":56.505,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":58.955,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":58.955,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":61.405,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":61.405,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":63.821,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":63.821,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":66.262,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":66.262,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":68.617,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":68.617,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":71.033,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":71.033,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":73.474,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":73.474,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":75.967,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":75.967,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":78.383,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":78.383,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":80.833,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":80.833,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":83.283,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":83.283,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":85.698,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":85.698,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":88.14,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":88.14,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":90.495,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":90.495,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":92.91,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":92.91,"y":40.731,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":95.352,"y":41.703,"w":1.5,"l":2.364},{"oc":"#dcf2e9","x":95.352,"y":40.731,"w":1.5,"l":2.364},{"oc":"#def3ea","x":79.134,"y":29.906,"w":1.5,"l":2.391},{"oc":"#def3ea","x":79.134,"y":29.053,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.487,"y":29.906,"w":1.5,"l":2.391},{"oc":"#def3ea","x":84.487,"y":29.053,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.929,"y":29.906,"w":1.5,"l":2.391},{"oc":"#def3ea","x":86.929,"y":29.053,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.371,"y":29.906,"w":1.5,"l":2.391},{"oc":"#def3ea","x":89.371,"y":29.053,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.649,"y":29.904,"w":1.5,"l":2.391},{"oc":"#def3ea","x":81.649,"y":29.05,"w":1.5,"l":2.391},{"oc":"#def3ea","x":18.993,"y":5.85,"w":1.5,"l":28.703},{"oc":"#def3ea","x":18.993,"y":4.753,"w":1.5,"l":28.703},{"oc":"#def3ea","x":19.14,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":19.14,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":21.895,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":21.895,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":24.624,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":24.624,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":28.037,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":28.037,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":44.923,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":44.923,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":42.181,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":42.181,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":30.766,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":30.766,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":33.495,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":33.495,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":36.736,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":36.736,"y":4.766,"w":1.5,"l":2.532},{"oc":"#def3ea","x":39.439,"y":5.829,"w":1.5,"l":2.532},{"oc":"#def3ea","x":39.439,"y":4.766,"w":1.5,"l":2.532},{"oc":"#2b2e34","x":4.641,"y":5.218,"w":0.7020000000000001,"l":13.465},{"oc":"#def3ea","x":4.727,"y":7.406,"w":1.5,"l":91.094},{"oc":"#def3ea","x":4.727,"y":6.45,"w":1.5,"l":91.094},{"oc":"#def3ea","x":5.242,"y":7.324,"w":1.5,"l":2.181},{"oc":"#def3ea","x":5.242,"y":6.406,"w":1.5,"l":2.181},{"oc":"#def3ea","x":7.472,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":7.472,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.94,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":9.94,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.554,"y":7.332,"w":1.5,"l":2.418},{"oc":"#def3ea","x":12.554,"y":6.406,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.946,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":14.946,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.658,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":17.658,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.781,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":19.781,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.248,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":22.248,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.715,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":24.715,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.241,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":29.241,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":31.708,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":31.708,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.929,"y":7.332,"w":1.5,"l":2.418},{"oc":"#def3ea","x":46.929,"y":6.406,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.48,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":34.48,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":36.776,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":36.776,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.708,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":39.708,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":42.004,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":42.004,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.471,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":44.471,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":51.133,"y":7.261,"w":1.5,"l":2.181},{"oc":"#def3ea","x":51.133,"y":6.344,"w":1.5,"l":2.181},{"oc":"#def3ea","x":53.363,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":53.363,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":55.83,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":55.83,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":58.445,"y":7.332,"w":1.5,"l":2.418},{"oc":"#def3ea","x":58.445,"y":6.406,"w":1.5,"l":2.418},{"oc":"#def3ea","x":60.837,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":60.837,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":63.548,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":63.548,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":65.672,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":65.672,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":68.139,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":68.139,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":70.606,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":70.606,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":75.131,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":75.131,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":77.598,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":77.598,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":92.82,"y":7.332,"w":1.5,"l":2.418},{"oc":"#def3ea","x":92.82,"y":6.406,"w":1.5,"l":2.418},{"oc":"#def3ea","x":80.371,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":80.371,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":82.666,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":82.666,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":85.599,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":85.599,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":87.894,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":87.894,"y":6.409,"w":1.5,"l":2.418},{"oc":"#def3ea","x":90.361,"y":7.335,"w":1.5,"l":2.418},{"oc":"#def3ea","x":90.361,"y":6.409,"w":1.5,"l":2.418}],"VLines":[{"oc":"#eef9f4","x":2.836,"y":4.531,"w":1.5,"l":42.654},{"oc":"#eef9f4","x":98.914,"y":4.565,"w":1.5,"l":42.653},{"oc":"#2b2e34","x":26.192,"y":1.926,"w":1.5,"l":0.95},{"oc":"#2b2e34","x":20.081,"y":1.926,"w":1.5,"l":0.95},{"oc":"#def3ea","x":82.738,"y":44.694,"w":1.5,"l":0.898},{"oc":"#def3ea","x":50.331,"y":44.694,"w":1.5,"l":0.898},{"oc":"#def3ea","x":93.025,"y":44.694,"w":1.5,"l":0.898},{"oc":"#def3ea","x":83.185,"y":44.694,"w":1.5,"l":0.898},{"oc":"#def3ea","x":47.203,"y":46.198,"w":1.5,"l":0.921},{"oc":"#def3ea","x":37.363,"y":46.198,"w":1.5,"l":0.921},{"oc":"#def3ea","x":84.992,"y":13.54,"w":1.5,"l":0.872},{"oc":"#def3ea","x":5.024,"y":13.54,"w":1.5,"l":0.872},{"oc":"#def3ea","x":7.262,"y":13.56,"w":1.5,"l":0.864},{"oc":"#def3ea","x":5.081,"y":13.56,"w":1.5,"l":0.864},{"oc":"#def3ea","x":9.729,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":7.311,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":12.196,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":9.778,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":14.663,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":12.245,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":17.13,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":14.712,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":19.597,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":17.179,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":22.064,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":19.647,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":24.531,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":22.114,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":26.998,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":24.581,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":29.466,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":27.048,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":31.933,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":29.515,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":34.4,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":31.982,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":36.981,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":34.564,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":39.448,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":37.031,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":41.916,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":39.498,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":44.383,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":41.965,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":46.85,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":44.432,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":49.317,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":46.899,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":51.784,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":49.366,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":54.251,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":51.833,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":58.474,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":56.057,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":60.942,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":58.524,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":65.059,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":62.641,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":67.526,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":65.108,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":69.993,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":67.575,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":72.46,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":70.043,"y":13.56,"w":1.5,"l":0.872},{"oc":"#def3ea","x":74.769,"y":13.544,"w":1.5,"l":0.872},{"oc":"#def3ea","x":72.351,"y":13.544,"w":1.5,"l":0.872},{"oc":"#def3ea","x":80.217,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":77.799,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":82.684,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":80.266,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":85.151,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":82.734,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":77.75,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":75.332,"y":13.511,"w":1.5,"l":0.872},{"oc":"#def3ea","x":81.304,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":78.886,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.771,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":81.354,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":86.239,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.821,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":88.861,"y":7.92,"w":1.5,"l":0.959},{"oc":"#def3ea","x":5.029,"y":7.92,"w":1.5,"l":0.959},{"oc":"#def3ea","x":7.291,"y":7.915,"w":1.5,"l":0.926},{"oc":"#def3ea","x":5.11,"y":7.915,"w":1.5,"l":0.926},{"oc":"#def3ea","x":9.758,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":7.341,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":12.225,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":9.808,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":14.693,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":12.275,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":17.16,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":14.742,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":19.627,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":17.209,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":22.094,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":19.676,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":24.561,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":22.143,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":27.028,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":24.61,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":29.495,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":27.077,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":31.962,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":29.544,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":34.429,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":32.012,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":38.065,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":35.647,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":41.831,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":39.413,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":44.298,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":41.88,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":46.765,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":44.347,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":49.232,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":46.814,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":51.699,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":49.281,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":54.166,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":51.748,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":56.633,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":54.216,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":59.1,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":56.683,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":61.568,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":59.15,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":64.035,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":61.617,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":66.502,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":64.084,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":68.969,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":66.551,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":71.436,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":69.018,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":73.903,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":71.485,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":76.37,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":73.952,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":78.837,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":76.419,"y":7.915,"w":1.5,"l":0.928},{"oc":"#def3ea","x":81.221,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":78.803,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.688,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":81.27,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":86.155,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.737,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":88.622,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":86.205,"y":7.92,"w":1.5,"l":0.928},{"oc":"#def3ea","x":97.151,"y":46.227,"w":1.5,"l":0.934},{"oc":"#def3ea","x":72.444,"y":46.227,"w":1.5,"l":0.934},{"oc":"#def3ea","x":75.136,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":72.66,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":77.658,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":75.183,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":80.181,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":77.705,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":82.617,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":80.141,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":85.139,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":82.663,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":87.661,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":85.186,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":90.269,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":87.794,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":92.792,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":90.316,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":95.142,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":92.667,"y":46.222,"w":1.5,"l":0.904},{"oc":"#def3ea","x":97.307,"y":46.227,"w":1.5,"l":0.904},{"oc":"#def3ea","x":94.832,"y":46.227,"w":1.5,"l":0.904},{"oc":"#def3ea","x":44.691,"y":42.556,"w":1.5,"l":0.687},{"oc":"#def3ea","x":12.284,"y":42.556,"w":1.5,"l":0.687},{"oc":"#def3ea","x":80.675,"y":42.55,"w":1.5,"l":0.731},{"oc":"#def3ea","x":55.136,"y":42.55,"w":1.5,"l":0.731},{"oc":"#def3ea","x":57.441,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":54.966,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":59.964,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":57.488,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":62.486,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":60.01,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":65.609,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":63.134,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":68.132,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":65.656,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":70.654,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":68.179,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":73.778,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":71.302,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":76.3,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":73.824,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":78.822,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":76.347,"y":42.546,"w":1.5,"l":0.707},{"oc":"#def3ea","x":81.159,"y":42.55,"w":1.5,"l":0.707},{"oc":"#def3ea","x":78.684,"y":42.55,"w":1.5,"l":0.707},{"oc":"#def3ea","x":36.757,"y":46.21,"w":1.5,"l":0.921},{"oc":"#def3ea","x":4.698,"y":46.21,"w":1.5,"l":0.921},{"oc":"#def3ea","x":47.203,"y":44.664,"w":1.5,"l":0.921},{"oc":"#def3ea","x":37.363,"y":44.664,"w":1.5,"l":0.921},{"oc":"#def3ea","x":36.788,"y":44.676,"w":1.5,"l":0.921},{"oc":"#def3ea","x":4.729,"y":44.676,"w":1.5,"l":0.921},{"oc":"#def3ea","x":73.632,"y":46.216,"w":1.5,"l":0.934},{"oc":"#def3ea","x":48.925,"y":46.216,"w":1.5,"l":0.934},{"oc":"#def3ea","x":51.616,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":49.141,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":54.139,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":51.663,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":56.661,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":54.185,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":59.097,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":56.622,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":61.62,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":59.144,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":64.142,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":61.666,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":66.75,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":64.274,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":69.272,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":66.796,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":71.623,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":69.147,"y":46.21,"w":1.5,"l":0.904},{"oc":"#def3ea","x":81.271,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":78.853,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.738,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":81.32,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":86.205,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.787,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":88.827,"y":9.458,"w":1.5,"l":0.959},{"oc":"#def3ea","x":4.995,"y":9.458,"w":1.5,"l":0.959},{"oc":"#def3ea","x":7.257,"y":9.452,"w":1.5,"l":0.926},{"oc":"#def3ea","x":5.077,"y":9.452,"w":1.5,"l":0.926},{"oc":"#def3ea","x":9.725,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":7.307,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":12.192,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":9.774,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":14.659,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":12.241,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":17.126,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":14.708,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":19.593,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":17.175,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":22.06,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":19.642,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":24.527,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":22.109,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":26.994,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":24.576,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":29.461,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":27.044,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":31.928,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":29.511,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":34.395,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":31.978,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":38.031,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":35.613,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":41.797,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":39.379,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":44.264,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":41.846,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":46.731,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":44.313,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":49.198,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":46.78,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":51.665,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":49.248,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":54.132,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":51.715,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":56.599,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":54.182,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":59.067,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":56.649,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":61.534,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":59.116,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":64.001,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":61.583,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":66.468,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":64.05,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":68.935,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":66.517,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":71.402,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":68.984,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":73.869,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":71.451,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":76.336,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":73.918,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":78.803,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":76.386,"y":9.452,"w":1.5,"l":0.928},{"oc":"#def3ea","x":81.187,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":78.769,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.654,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":81.237,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":86.121,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":83.704,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":88.588,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":86.171,"y":9.457,"w":1.5,"l":0.928},{"oc":"#def3ea","x":79.071,"y":11.038,"w":1.5,"l":0.95},{"oc":"#def3ea","x":5.061,"y":11.038,"w":1.5,"l":0.95},{"oc":"#def3ea","x":7.324,"y":11.032,"w":1.5,"l":0.928},{"oc":"#def3ea","x":5.143,"y":11.032,"w":1.5,"l":0.928},{"oc":"#def3ea","x":9.791,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":7.373,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":12.258,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":9.84,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":14.725,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":12.307,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":17.192,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":14.775,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":19.659,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":17.242,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":22.127,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":19.709,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":24.594,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":22.176,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":27.061,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":24.643,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":29.528,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":27.11,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":31.995,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":29.577,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":34.462,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":32.044,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":37.044,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":34.626,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":39.511,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":37.093,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":41.978,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":39.56,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":44.445,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":42.027,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":46.912,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":44.494,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":49.379,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":46.961,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":51.846,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":49.428,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":54.313,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":51.895,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":56.78,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":54.363,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":59.247,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":56.83,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":61.715,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":59.297,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":64.182,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":61.764,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":66.649,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":64.231,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":69.116,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":66.698,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":71.583,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":69.165,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":76.419,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":74.001,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":78.886,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":76.469,"y":11.032,"w":1.5,"l":0.936},{"oc":"#def3ea","x":74.017,"y":11.024,"w":1.5,"l":0.936},{"oc":"#def3ea","x":71.6,"y":11.024,"w":1.5,"l":0.936},{"oc":"#def3ea","x":79.116,"y":12.074,"w":1.5,"l":0.95},{"oc":"#def3ea","x":5.106,"y":12.074,"w":1.5,"l":0.95},{"oc":"#def3ea","x":7.369,"y":12.068,"w":1.5,"l":0.928},{"oc":"#def3ea","x":5.188,"y":12.068,"w":1.5,"l":0.928},{"oc":"#def3ea","x":9.836,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":7.418,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":12.303,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":9.885,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":14.77,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":12.352,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":17.237,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":14.819,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":19.704,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":17.287,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":22.171,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":19.754,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":24.638,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":22.221,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":27.106,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":24.688,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":29.573,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":27.155,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":32.04,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":29.622,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":34.507,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":32.089,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":37.088,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":34.671,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":39.555,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":37.138,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":42.023,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":39.605,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":44.49,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":42.072,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":46.957,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":44.539,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":49.424,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":47.006,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":51.891,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":49.473,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":54.358,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":51.94,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":56.825,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":54.408,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":59.292,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":56.875,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":61.76,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":59.342,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":64.227,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":61.809,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":66.694,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":64.276,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":69.161,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":66.743,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":71.628,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":69.21,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":76.464,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":74.046,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":78.931,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":76.513,"y":12.068,"w":1.5,"l":0.936},{"oc":"#def3ea","x":74.062,"y":12.06,"w":1.5,"l":0.936},{"oc":"#def3ea","x":71.645,"y":12.06,"w":1.5,"l":0.936},{"oc":"#def3ea","x":15.591,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":13.175,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":20.669,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":18.253,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":23.134,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":20.718,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":25.6,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":23.184,"y":35.167,"w":1.5,"l":0.729},{"oc":"#def3ea","x":18.13,"y":35.165,"w":1.5,"l":0.729},{"oc":"#def3ea","x":15.714,"y":35.165,"w":1.5,"l":0.729},{"oc":"#def3ea","x":39.137,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":36.721,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":44.216,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":41.799,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":46.681,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":44.265,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":49.147,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":46.731,"y":35.229,"w":1.5,"l":0.729},{"oc":"#def3ea","x":41.676,"y":35.227,"w":1.5,"l":0.729},{"oc":"#def3ea","x":39.26,"y":35.227,"w":1.5,"l":0.729},{"oc":"#def3ea","x":81.609,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.217,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.962,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.57,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.404,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.012,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.845,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.454,"y":14.793,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.123,"y":14.79,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.732,"y":14.79,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.16,"y":14.79,"w":1.5,"l":0.854},{"oc":"#def3ea","x":76.768,"y":14.79,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.609,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.217,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.962,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.57,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.404,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.012,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.845,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.454,"y":15.751,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.123,"y":15.748,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.732,"y":15.748,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.16,"y":15.748,"w":1.5,"l":0.854},{"oc":"#def3ea","x":76.768,"y":15.748,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.609,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.217,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.962,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.57,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.404,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.012,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.845,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.454,"y":16.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.123,"y":16.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.732,"y":16.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.16,"y":16.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":76.768,"y":16.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.609,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.217,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.962,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.57,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.404,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.012,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.845,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.454,"y":17.459,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.123,"y":17.457,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.732,"y":17.457,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.16,"y":17.456,"w":1.5,"l":0.854},{"oc":"#def3ea","x":76.768,"y":17.456,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.695,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.303,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.047,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.656,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.489,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.098,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.931,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.54,"y":18.624,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.209,"y":18.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.818,"y":18.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.246,"y":18.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":76.854,"y":18.621,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.695,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.303,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.047,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.656,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.489,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.098,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.931,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.54,"y":19.73,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.209,"y":19.727,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.818,"y":19.727,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.695,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.303,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.047,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.656,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.489,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.098,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.931,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.54,"y":20.709,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.209,"y":20.707,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.818,"y":20.707,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.523,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.131,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.876,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.484,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.318,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.926,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.759,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.368,"y":22.501,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.037,"y":22.498,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.646,"y":22.498,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.523,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.131,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.876,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.484,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.318,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.926,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.759,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.368,"y":23.418,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.037,"y":23.415,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.646,"y":23.415,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.523,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.131,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.876,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.484,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.318,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.926,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.759,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.368,"y":24.334,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.037,"y":24.332,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.646,"y":24.332,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.523,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.131,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.876,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.484,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.318,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.926,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.759,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.368,"y":25.23,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.037,"y":25.227,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.646,"y":25.227,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.523,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.131,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.876,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.484,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.318,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.926,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.759,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.368,"y":26.168,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.037,"y":26.165,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.646,"y":26.165,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.695,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.303,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.047,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.656,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.489,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.098,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.931,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.54,"y":30.22,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.209,"y":30.217,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.818,"y":30.217,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.695,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.303,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.047,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.656,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.489,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.098,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.931,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.54,"y":36.063,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.209,"y":36.061,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.818,"y":36.061,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.752,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.361,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.105,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.714,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.547,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.155,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.989,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.597,"y":37.124,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.267,"y":37.121,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.875,"y":37.121,"w":1.5,"l":0.854},{"oc":"#dcf2e9","x":57.976,"y":30.315,"w":1.5,"l":0.917},{"oc":"#dcf2e9","x":56.086,"y":30.315,"w":1.5,"l":0.917},{"oc":"#dcf2e9","x":59.907,"y":30.315,"w":1.5,"l":0.917},{"oc":"#dcf2e9","x":58.018,"y":30.315,"w":1.5,"l":0.917},{"oc":"#dcf2e9","x":61.838,"y":30.315,"w":1.5,"l":0.917},{"oc":"#dcf2e9","x":59.949,"y":30.315,"w":1.5,"l":0.917},{"oc":"#dcf2e9","x":63.561,"y":30.315,"w":1.5,"l":0.917},{"oc":"#dcf2e9","x":61.672,"y":30.315,"w":1.5,"l":0.917},{"oc":"#def3ea","x":81.554,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.163,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.907,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.515,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.349,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.957,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.791,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.399,"y":27.162,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.069,"y":27.159,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.677,"y":27.159,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.554,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.163,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.907,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.515,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.349,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.957,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.791,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.399,"y":28.149,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.069,"y":28.147,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.677,"y":28.147,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.726,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.334,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.079,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.687,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.521,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.129,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.962,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.571,"y":32.324,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.24,"y":32.322,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.849,"y":32.322,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.76,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.369,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.113,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.722,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.555,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.164,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.997,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.605,"y":33.312,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.275,"y":33.309,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.883,"y":33.309,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.726,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.334,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.079,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.687,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.521,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.129,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.962,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.571,"y":34.187,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.24,"y":34.184,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.849,"y":34.184,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.766,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.375,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.119,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.728,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.561,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":87.169,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":92.003,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.611,"y":35.021,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.281,"y":35.019,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.889,"y":35.019,"w":1.5,"l":0.854},{"oc":"#dcf2e9","x":19.933,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":17.568,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":22.348,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":19.984,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":24.798,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":22.434,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":27.248,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":24.884,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":29.664,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":27.299,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":32.105,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":29.741,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":34.46,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":32.096,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":36.876,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":34.511,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":39.317,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":36.953,"y":40.781,"w":1.5,"l":0.925},{"oc":"#dcf2e9","x":58.87,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":56.505,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":61.32,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":58.955,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":63.77,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":61.405,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":66.185,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":63.821,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":68.627,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":66.262,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":70.982,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":68.617,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":73.397,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":71.033,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":75.839,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":73.474,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":78.332,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":75.967,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":80.747,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":78.383,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":83.197,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":80.833,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":85.647,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":83.283,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":88.063,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":85.698,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":90.504,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":88.14,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":92.859,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":90.495,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":95.275,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":92.91,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":97.716,"y":40.731,"w":1.5,"l":0.972},{"oc":"#dcf2e9","x":95.352,"y":40.731,"w":1.5,"l":0.972},{"oc":"#def3ea","x":81.525,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":79.134,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.878,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.487,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.32,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":86.929,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":91.762,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":89.371,"y":29.053,"w":1.5,"l":0.854},{"oc":"#def3ea","x":84.04,"y":29.05,"w":1.5,"l":0.854},{"oc":"#def3ea","x":81.649,"y":29.05,"w":1.5,"l":0.854},{"oc":"#def3ea","x":47.696,"y":4.753,"w":1.5,"l":1.097},{"oc":"#def3ea","x":18.993,"y":4.753,"w":1.5,"l":1.097},{"oc":"#def3ea","x":21.672,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":19.14,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":24.427,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":21.895,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":27.156,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":24.624,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":30.568,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":28.037,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":47.455,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":44.923,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":44.713,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":42.181,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":33.297,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":30.766,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":36.027,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":33.495,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":39.267,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":36.736,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":41.971,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":39.439,"y":4.766,"w":1.5,"l":1.063},{"oc":"#def3ea","x":95.82,"y":6.45,"w":1.5,"l":0.956},{"oc":"#def3ea","x":4.727,"y":6.45,"w":1.5,"l":0.956},{"oc":"#def3ea","x":7.423,"y":6.406,"w":1.5,"l":0.917},{"oc":"#def3ea","x":5.242,"y":6.406,"w":1.5,"l":0.917},{"oc":"#def3ea","x":9.89,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":7.472,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":12.357,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":9.94,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":14.972,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":12.554,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":17.364,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":14.946,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":20.076,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":17.658,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":22.199,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":19.781,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":24.666,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":22.248,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":27.133,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":24.715,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":31.659,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":29.241,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":34.126,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":31.708,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":49.347,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":46.929,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":36.898,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":34.48,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":39.193,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":36.776,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":42.126,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":39.708,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":44.421,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":42.004,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":46.888,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":44.471,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":53.314,"y":6.344,"w":1.5,"l":0.917},{"oc":"#def3ea","x":51.133,"y":6.344,"w":1.5,"l":0.917},{"oc":"#def3ea","x":55.781,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":53.363,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":58.248,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":55.83,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":60.863,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":58.445,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":63.255,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":60.837,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":65.966,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":63.548,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":68.089,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":65.672,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":70.557,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":68.139,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":73.024,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":70.606,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":77.549,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":75.131,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":80.016,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":77.598,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":95.238,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":92.82,"y":6.406,"w":1.5,"l":0.926},{"oc":"#def3ea","x":82.789,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":80.371,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":85.084,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":82.666,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":88.017,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":85.599,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":90.312,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":87.894,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":92.779,"y":6.409,"w":1.5,"l":0.926},{"oc":"#def3ea","x":90.361,"y":6.409,"w":1.5,"l":0.926}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#eef9f4","x":2.836,"y":4.531,"w":96.078,"h":42.687,"clr":-1},{"oc":"#2b2e34","x":20.081,"y":1.926,"w":6.11,"h":0.95,"clr":-1},{"oc":"#dcf2e9","x":72.647,"y":14.725,"w":23.256,"h":23.525,"clr":-1},{"x":50.331,"y":44.694,"w":32.407,"h":0.898,"clr":1},{"x":83.185,"y":44.694,"w":9.84,"h":0.898,"clr":1},{"x":37.363,"y":46.198,"w":9.84,"h":0.921,"clr":1},{"oc":"#def3ea","x":5.024,"y":13.54,"w":79.968,"h":0.872,"clr":-1},{"x":5.081,"y":13.56,"w":2.181,"h":0.864,"clr":1},{"x":7.311,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":9.778,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":12.245,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":14.712,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":17.179,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":19.647,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":22.114,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":24.581,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":27.048,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":29.515,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":31.982,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":34.564,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":37.031,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":39.498,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":41.965,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":44.432,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":46.899,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":49.366,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":51.833,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":56.057,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":58.524,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":62.641,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":65.108,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":67.575,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":70.043,"y":13.56,"w":2.418,"h":0.872,"clr":1},{"x":72.351,"y":13.544,"w":2.418,"h":0.872,"clr":1},{"x":77.799,"y":13.511,"w":2.418,"h":0.872,"clr":1},{"x":80.266,"y":13.511,"w":2.418,"h":0.872,"clr":1},{"x":82.734,"y":13.511,"w":2.418,"h":0.872,"clr":1},{"x":75.332,"y":13.511,"w":2.418,"h":0.872,"clr":1},{"x":78.886,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":81.354,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":83.821,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"oc":"#def3ea","x":5.029,"y":7.92,"w":83.832,"h":0.959,"clr":-1},{"x":5.11,"y":7.915,"w":2.181,"h":0.926,"clr":1},{"x":7.341,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":9.808,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":12.275,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":14.742,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":17.209,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":19.676,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":22.143,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":24.61,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":27.077,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":29.544,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":32.012,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":35.647,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":39.413,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":41.88,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":44.347,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":46.814,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":49.281,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":51.748,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":54.216,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":56.683,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":59.15,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":61.617,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":64.084,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":66.551,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":69.018,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":71.485,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":73.952,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":76.419,"y":7.915,"w":2.418,"h":0.928,"clr":1},{"x":78.803,"y":7.92,"w":2.418,"h":0.928,"clr":1},{"x":81.27,"y":7.92,"w":2.418,"h":0.928,"clr":1},{"x":83.737,"y":7.92,"w":2.418,"h":0.928,"clr":1},{"x":86.205,"y":7.92,"w":2.418,"h":0.928,"clr":1},{"oc":"#def3ea","x":72.444,"y":46.227,"w":24.707,"h":0.934,"clr":-1},{"x":72.66,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":75.183,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":77.705,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":80.141,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":82.663,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":85.186,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":87.794,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":90.316,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":92.667,"y":46.222,"w":2.476,"h":0.904,"clr":1},{"x":94.832,"y":46.227,"w":2.476,"h":0.904,"clr":1},{"x":12.284,"y":42.556,"w":32.407,"h":0.687,"clr":1},{"oc":"#def3ea","x":55.136,"y":42.55,"w":25.539,"h":0.731,"clr":-1},{"x":54.966,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":57.488,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":60.01,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":63.134,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":65.656,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":68.179,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":71.302,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":73.824,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":76.347,"y":42.546,"w":2.476,"h":0.707,"clr":1},{"x":78.684,"y":42.55,"w":2.476,"h":0.707,"clr":1},{"x":4.698,"y":46.21,"w":32.059,"h":0.921,"clr":1},{"x":37.363,"y":44.664,"w":9.84,"h":0.921,"clr":1},{"x":4.729,"y":44.676,"w":32.059,"h":0.921,"clr":1},{"oc":"#def3ea","x":48.925,"y":46.216,"w":24.707,"h":0.934,"clr":-1},{"x":49.141,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":51.663,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":54.185,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":56.622,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":59.144,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":61.666,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":64.274,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":66.796,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":69.147,"y":46.21,"w":2.476,"h":0.904,"clr":1},{"x":78.853,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":81.32,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":83.787,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"oc":"#def3ea","x":4.995,"y":9.458,"w":83.832,"h":0.959,"clr":-1},{"x":5.077,"y":9.452,"w":2.181,"h":0.926,"clr":1},{"x":7.307,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":9.774,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":12.241,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":14.708,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":17.175,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":19.642,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":22.109,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":24.576,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":27.044,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":29.511,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":31.978,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":35.613,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":39.379,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":41.846,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":44.313,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":46.78,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":49.248,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":51.715,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":54.182,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":56.649,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":59.116,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":61.583,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":64.05,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":66.517,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":68.984,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":71.451,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":73.918,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":76.386,"y":9.452,"w":2.418,"h":0.928,"clr":1},{"x":78.769,"y":9.457,"w":2.418,"h":0.928,"clr":1},{"x":81.237,"y":9.457,"w":2.418,"h":0.928,"clr":1},{"x":83.704,"y":9.457,"w":2.418,"h":0.928,"clr":1},{"x":86.171,"y":9.457,"w":2.418,"h":0.928,"clr":1},{"oc":"#def3ea","x":5.061,"y":11.038,"w":74.01,"h":0.95,"clr":-1},{"x":5.143,"y":11.032,"w":2.181,"h":0.928,"clr":1},{"x":7.373,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":9.84,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":12.307,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":14.775,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":17.242,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":19.709,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":22.176,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":24.643,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":27.11,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":29.577,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":32.044,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":34.626,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":37.093,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":39.56,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":42.027,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":44.494,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":46.961,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":49.428,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":51.895,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":54.363,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":56.83,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":59.297,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":61.764,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":64.231,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":66.698,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":69.165,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":74.001,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":76.469,"y":11.032,"w":2.418,"h":0.936,"clr":1},{"x":71.6,"y":11.024,"w":2.418,"h":0.936,"clr":1},{"oc":"#def3ea","x":5.106,"y":12.074,"w":74.01,"h":0.95,"clr":-1},{"x":5.188,"y":12.068,"w":2.181,"h":0.928,"clr":1},{"x":7.418,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":9.885,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":12.352,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":14.819,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":17.287,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":19.754,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":22.221,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":24.688,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":27.155,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":29.622,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":32.089,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":34.671,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":37.138,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":39.605,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":42.072,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":44.539,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":47.006,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":49.473,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":51.94,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":54.408,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":56.875,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":59.342,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":61.809,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":64.276,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":66.743,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":69.21,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":74.046,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":76.513,"y":12.068,"w":2.418,"h":0.936,"clr":1},{"x":71.645,"y":12.06,"w":2.418,"h":0.936,"clr":1},{"x":13.175,"y":35.167,"w":2.416,"h":0.729,"clr":1},{"x":18.253,"y":35.167,"w":2.416,"h":0.729,"clr":1},{"x":20.718,"y":35.167,"w":2.416,"h":0.729,"clr":1},{"x":23.184,"y":35.167,"w":2.416,"h":0.729,"clr":1},{"x":15.714,"y":35.165,"w":2.416,"h":0.729,"clr":1},{"x":36.721,"y":35.229,"w":2.416,"h":0.729,"clr":1},{"x":41.799,"y":35.229,"w":2.416,"h":0.729,"clr":1},{"x":44.265,"y":35.229,"w":2.416,"h":0.729,"clr":1},{"x":46.731,"y":35.229,"w":2.416,"h":0.729,"clr":1},{"x":39.26,"y":35.227,"w":2.416,"h":0.729,"clr":1},{"x":79.217,"y":14.793,"w":2.391,"h":0.854,"clr":1},{"x":84.57,"y":14.793,"w":2.391,"h":0.854,"clr":1},{"x":87.012,"y":14.793,"w":2.391,"h":0.854,"clr":1},{"x":89.454,"y":14.793,"w":2.391,"h":0.854,"clr":1},{"x":81.732,"y":14.79,"w":2.391,"h":0.854,"clr":1},{"x":76.768,"y":14.79,"w":2.391,"h":0.854,"clr":1},{"x":79.217,"y":15.751,"w":2.391,"h":0.854,"clr":1},{"x":84.57,"y":15.751,"w":2.391,"h":0.854,"clr":1},{"x":87.012,"y":15.751,"w":2.391,"h":0.854,"clr":1},{"x":89.454,"y":15.751,"w":2.391,"h":0.854,"clr":1},{"x":81.732,"y":15.748,"w":2.391,"h":0.854,"clr":1},{"x":76.768,"y":15.748,"w":2.391,"h":0.854,"clr":1},{"x":79.217,"y":16.624,"w":2.391,"h":0.854,"clr":1},{"x":84.57,"y":16.624,"w":2.391,"h":0.854,"clr":1},{"x":87.012,"y":16.624,"w":2.391,"h":0.854,"clr":1},{"x":89.454,"y":16.624,"w":2.391,"h":0.854,"clr":1},{"x":81.732,"y":16.621,"w":2.391,"h":0.854,"clr":1},{"x":76.768,"y":16.621,"w":2.391,"h":0.854,"clr":1},{"x":79.217,"y":17.459,"w":2.391,"h":0.854,"clr":1},{"x":84.57,"y":17.459,"w":2.391,"h":0.854,"clr":1},{"x":87.012,"y":17.459,"w":2.391,"h":0.854,"clr":1},{"x":89.454,"y":17.459,"w":2.391,"h":0.854,"clr":1},{"x":81.732,"y":17.457,"w":2.391,"h":0.854,"clr":1},{"x":76.768,"y":17.456,"w":2.391,"h":0.854,"clr":1},{"x":79.303,"y":18.624,"w":2.391,"h":0.854,"clr":1},{"x":84.656,"y":18.624,"w":2.391,"h":0.854,"clr":1},{"x":87.098,"y":18.624,"w":2.391,"h":0.854,"clr":1},{"x":89.54,"y":18.624,"w":2.391,"h":0.854,"clr":1},{"x":81.818,"y":18.621,"w":2.391,"h":0.854,"clr":1},{"x":76.854,"y":18.621,"w":2.391,"h":0.854,"clr":1},{"x":79.303,"y":19.73,"w":2.391,"h":0.854,"clr":1},{"x":84.656,"y":19.73,"w":2.391,"h":0.854,"clr":1},{"x":87.098,"y":19.73,"w":2.391,"h":0.854,"clr":1},{"x":89.54,"y":19.73,"w":2.391,"h":0.854,"clr":1},{"x":81.818,"y":19.727,"w":2.391,"h":0.854,"clr":1},{"x":79.303,"y":20.709,"w":2.391,"h":0.854,"clr":1},{"x":84.656,"y":20.709,"w":2.391,"h":0.854,"clr":1},{"x":87.098,"y":20.709,"w":2.391,"h":0.854,"clr":1},{"x":89.54,"y":20.709,"w":2.391,"h":0.854,"clr":1},{"x":81.818,"y":20.707,"w":2.391,"h":0.854,"clr":1},{"x":79.131,"y":22.501,"w":2.391,"h":0.854,"clr":1},{"x":84.484,"y":22.501,"w":2.391,"h":0.854,"clr":1},{"x":86.926,"y":22.501,"w":2.391,"h":0.854,"clr":1},{"x":89.368,"y":22.501,"w":2.391,"h":0.854,"clr":1},{"x":81.646,"y":22.498,"w":2.391,"h":0.854,"clr":1},{"x":79.131,"y":23.418,"w":2.391,"h":0.854,"clr":1},{"x":84.484,"y":23.418,"w":2.391,"h":0.854,"clr":1},{"x":86.926,"y":23.418,"w":2.391,"h":0.854,"clr":1},{"x":89.368,"y":23.418,"w":2.391,"h":0.854,"clr":1},{"x":81.646,"y":23.415,"w":2.391,"h":0.854,"clr":1},{"x":79.131,"y":24.334,"w":2.391,"h":0.854,"clr":1},{"x":84.484,"y":24.334,"w":2.391,"h":0.854,"clr":1},{"x":86.926,"y":24.334,"w":2.391,"h":0.854,"clr":1},{"x":89.368,"y":24.334,"w":2.391,"h":0.854,"clr":1},{"x":81.646,"y":24.332,"w":2.391,"h":0.854,"clr":1},{"x":79.131,"y":25.23,"w":2.391,"h":0.854,"clr":1},{"x":84.484,"y":25.23,"w":2.391,"h":0.854,"clr":1},{"x":86.926,"y":25.23,"w":2.391,"h":0.854,"clr":1},{"x":89.368,"y":25.23,"w":2.391,"h":0.854,"clr":1},{"x":81.646,"y":25.227,"w":2.391,"h":0.854,"clr":1},{"x":79.131,"y":26.168,"w":2.391,"h":0.854,"clr":1},{"x":84.484,"y":26.168,"w":2.391,"h":0.854,"clr":1},{"x":86.926,"y":26.168,"w":2.391,"h":0.854,"clr":1},{"x":89.368,"y":26.168,"w":2.391,"h":0.854,"clr":1},{"x":81.646,"y":26.165,"w":2.391,"h":0.854,"clr":1},{"x":79.303,"y":30.22,"w":2.391,"h":0.854,"clr":1},{"x":84.656,"y":30.22,"w":2.391,"h":0.854,"clr":1},{"x":87.098,"y":30.22,"w":2.391,"h":0.854,"clr":1},{"x":89.54,"y":30.22,"w":2.391,"h":0.854,"clr":1},{"x":81.818,"y":30.217,"w":2.391,"h":0.854,"clr":1},{"x":79.303,"y":36.063,"w":2.391,"h":0.854,"clr":1},{"x":84.656,"y":36.063,"w":2.391,"h":0.854,"clr":1},{"x":87.098,"y":36.063,"w":2.391,"h":0.854,"clr":1},{"x":89.54,"y":36.063,"w":2.391,"h":0.854,"clr":1},{"x":81.818,"y":36.061,"w":2.391,"h":0.854,"clr":1},{"x":79.361,"y":37.124,"w":2.391,"h":0.854,"clr":1},{"x":84.714,"y":37.124,"w":2.391,"h":0.854,"clr":1},{"x":87.155,"y":37.124,"w":2.391,"h":0.854,"clr":1},{"x":89.597,"y":37.124,"w":2.391,"h":0.854,"clr":1},{"x":81.875,"y":37.121,"w":2.391,"h":0.854,"clr":1},{"x":56.086,"y":30.315,"w":1.889,"h":0.917,"clr":1},{"x":58.018,"y":30.315,"w":1.889,"h":0.917,"clr":1},{"x":59.949,"y":30.315,"w":1.889,"h":0.917,"clr":1},{"x":61.672,"y":30.315,"w":1.889,"h":0.917,"clr":1},{"x":79.163,"y":27.162,"w":2.391,"h":0.854,"clr":1},{"x":84.515,"y":27.162,"w":2.391,"h":0.854,"clr":1},{"x":86.957,"y":27.162,"w":2.391,"h":0.854,"clr":1},{"x":89.399,"y":27.162,"w":2.391,"h":0.854,"clr":1},{"x":81.677,"y":27.159,"w":2.391,"h":0.854,"clr":1},{"x":79.163,"y":28.149,"w":2.391,"h":0.854,"clr":1},{"x":84.515,"y":28.149,"w":2.391,"h":0.854,"clr":1},{"x":86.957,"y":28.149,"w":2.391,"h":0.854,"clr":1},{"x":89.399,"y":28.149,"w":2.391,"h":0.854,"clr":1},{"x":81.677,"y":28.147,"w":2.391,"h":0.854,"clr":1},{"x":79.334,"y":32.324,"w":2.391,"h":0.854,"clr":1},{"x":84.687,"y":32.324,"w":2.391,"h":0.854,"clr":1},{"x":87.129,"y":32.324,"w":2.391,"h":0.854,"clr":1},{"x":89.571,"y":32.324,"w":2.391,"h":0.854,"clr":1},{"x":81.849,"y":32.322,"w":2.391,"h":0.854,"clr":1},{"x":79.369,"y":33.312,"w":2.391,"h":0.854,"clr":1},{"x":84.722,"y":33.312,"w":2.391,"h":0.854,"clr":1},{"x":87.164,"y":33.312,"w":2.391,"h":0.854,"clr":1},{"x":89.605,"y":33.312,"w":2.391,"h":0.854,"clr":1},{"x":81.883,"y":33.309,"w":2.391,"h":0.854,"clr":1},{"x":79.334,"y":34.187,"w":2.391,"h":0.854,"clr":1},{"x":84.687,"y":34.187,"w":2.391,"h":0.854,"clr":1},{"x":87.129,"y":34.187,"w":2.391,"h":0.854,"clr":1},{"x":89.571,"y":34.187,"w":2.391,"h":0.854,"clr":1},{"x":81.849,"y":34.184,"w":2.391,"h":0.854,"clr":1},{"x":79.375,"y":35.021,"w":2.391,"h":0.854,"clr":1},{"x":84.728,"y":35.021,"w":2.391,"h":0.854,"clr":1},{"x":87.169,"y":35.021,"w":2.391,"h":0.854,"clr":1},{"x":89.611,"y":35.021,"w":2.391,"h":0.854,"clr":1},{"x":81.889,"y":35.019,"w":2.391,"h":0.854,"clr":1},{"x":17.568,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":19.984,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":22.434,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":24.884,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":27.299,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":29.741,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":32.096,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":34.511,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":36.953,"y":40.781,"w":2.364,"h":0.925,"clr":1},{"x":56.505,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":58.955,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":61.405,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":63.821,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":66.262,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":68.617,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":71.033,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":73.474,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":75.967,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":78.383,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":80.833,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":83.283,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":85.698,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":88.14,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":90.495,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":92.91,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":95.352,"y":40.731,"w":2.364,"h":0.972,"clr":1},{"x":79.134,"y":29.053,"w":2.391,"h":0.854,"clr":1},{"x":84.487,"y":29.053,"w":2.391,"h":0.854,"clr":1},{"x":86.929,"y":29.053,"w":2.391,"h":0.854,"clr":1},{"x":89.371,"y":29.053,"w":2.391,"h":0.854,"clr":1},{"x":81.649,"y":29.05,"w":2.391,"h":0.854,"clr":1},{"oc":"#def3ea","x":18.993,"y":4.753,"w":28.703,"h":1.097,"clr":-1},{"x":19.14,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":21.895,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":24.624,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":28.037,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":44.923,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":42.181,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":30.766,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":33.495,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":36.736,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"x":39.439,"y":4.766,"w":2.532,"h":1.063,"clr":1},{"oc":"#def3ea","x":4.727,"y":6.45,"w":91.094,"h":0.956,"clr":-1},{"x":5.242,"y":6.406,"w":2.181,"h":0.917,"clr":1},{"x":7.472,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":9.94,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":12.554,"y":6.406,"w":2.418,"h":0.926,"clr":1},{"x":14.946,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":17.658,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":19.781,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":22.248,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":24.715,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":29.241,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":31.708,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":46.929,"y":6.406,"w":2.418,"h":0.926,"clr":1},{"x":34.48,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":36.776,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":39.708,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":42.004,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":44.471,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":51.133,"y":6.344,"w":2.181,"h":0.917,"clr":1},{"x":53.363,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":55.83,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":58.445,"y":6.406,"w":2.418,"h":0.926,"clr":1},{"x":60.837,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":63.548,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":65.672,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":68.139,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":70.606,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":75.131,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":77.598,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":92.82,"y":6.406,"w":2.418,"h":0.926,"clr":1},{"x":80.371,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":82.666,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":85.599,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":87.894,"y":6.409,"w":2.418,"h":0.926,"clr":1},{"x":90.361,"y":6.409,"w":2.418,"h":0.926,"clr":1}],"Texts":[{"oc":"#2b2e34","x":6.778,"y":1.476,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.778,"y":2.001,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":20.613,"y":1.7770000000000001,"w":1.112,"clr":1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,15,0,0]}]},{"x":22.908,"y":1.7770000000000001,"w":1.112,"clr":1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":26.801,"y":1.7770000000000001,"w":12.782000000000002,"clr":-1,"A":"left","R":[{"T":"D-40EZ%20%20Income%20Tax%20Return%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":26.801,"y":2.677,"w":11.560000000000002,"clr":-1,"A":"left","R":[{"T":"for%20Single%20and%20Joint%20Filers%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":26.801,"y":3.577,"w":9.004,"clr":-1,"A":"left","R":[{"T":"with%20No%20Dependents","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":38.431,"y":47.744,"w":2.709,"clr":-1,"A":"left","R":[{"T":"2013%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":41.225,"y":47.744,"w":3.3289999999999997,"clr":-1,"A":"left","R":[{"T":"D-40EZ","S":51,"TS":[0,9,0,0]}]},{"oc":"#231e21","x":7.8420000000000005,"y":48.031,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":38.485,"y":48.213,"w":3.9530000000000003,"clr":-1,"A":"left","R":[{"T":"Income%20T","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":42.456,"y":48.213,"w":4.079,"clr":-1,"A":"left","R":[{"T":"ax%20Return","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":1.984,"y":33.16,"w":30.679,"clr":-1,"A":"left","R":[{"T":"STAPLE%20W-2s%20AND%20ANY%20OTHER%20WITHHOLDING%20STATEMENTS%20HERE%20%20","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#2b2e34","x":73.138,"y":15.582999999999998,"w":0.602,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"x":75.201,"y":15.582999999999998,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":15.582999999999998,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":15.582999999999998,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":16.49,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"x":75.201,"y":16.489,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":16.49,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":16.489,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":17.396,"w":0.602,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"x":75.201,"y":17.396,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":17.396,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":17.396,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":4.225,"y":43.262,"w":3.9819999999999998,"clr":-1,"A":"left","R":[{"T":"Signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":10.197,"y":43.262,"w":81.82699999999996,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20law%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20and%2C%20to%20the%20best%20of%20my%20knowledge%2C%20it%20is%20correct.%20Declaration%20of%20paid%20preparer%20is%20based%20on%20the%20information%20available%20to%20the%20preparer.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":4.277,"y":43.751,"w":6.07,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":37.147,"y":43.751,"w":1.9700000000000002,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#231e21","x":50.296,"y":43.751,"w":8.405999999999999,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":83.168,"y":43.751,"w":1.9700000000000002,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":4.294,"y":45.326,"w":21.948000000000004,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fdomestic%20partner%E2%80%99s%20signature%20if%20filing%20jointly","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":37.164,"y":45.326,"w":1.9700000000000002,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#231e21","x":48.767,"y":45.326,"w":18.638999999999996,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20Tax%20Identification%20Number%20(PTIN)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231e21","x":75.254,"y":45.326,"w":2.452,"clr":-1,"A":"left","R":[{"T":"PTIN%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":78.204,"y":45.326,"w":7.672,"clr":-1,"A":"left","R":[{"T":"telephone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":1.9900000000000002,"y":16.331,"w":24.643999999999995,"clr":-1,"A":"left","R":[{"T":"STAPLE%20OTHER%20DOCUMENTS%20IN%20UPPER%20LEFT%20IN%20BACK%20","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#2b2e34","x":2.732,"y":14.605,"w":0.602,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":14.605,"w":26.20200000000001,"clr":-1,"A":"left","R":[{"T":"Total%20wages%2C%20salaries%2C%20tips%2C%20unemployment%20compensation%2C%20etc.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":15.504999999999999,"w":0.602,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":15.504999999999999,"w":16.918999999999997,"clr":-1,"A":"left","R":[{"T":"Taxable%20interest%20and%20ordinary%20dividends.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.994,"y":15.504999999999999,"w":16.921000000000003,"clr":-1,"A":"left","R":[{"T":"%20(If%20more%20than%20%241500%2C%20file%20form%20D-40.)%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":16.405,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":16.405,"w":11.325,"clr":-1,"A":"left","R":[{"T":"DC%20adjusted%20gross%20income.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.744,"y":16.405,"w":8.566,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%201%20and%202.%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":17.305,"w":0.602,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":17.305,"w":8.569000000000003,"clr":-1,"A":"left","R":[{"T":"Standard%20deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.468,"y":17.305,"w":1.7600000000000002,"clr":-1,"A":"left","R":[{"T":"plus","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.19,"y":17.305,"w":4.963000000000001,"clr":-1,"A":"left","R":[{"T":"%20exemption.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.638,"y":17.305,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%2C%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":18.68,"w":0.602,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":18.68,"w":8.270000000000001,"clr":-1,"A":"left","R":[{"T":"DC%20taxable%20income.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.398,"y":18.68,"w":33.60399999999999,"clr":-1,"A":"left","R":[{"T":"Line%203%20minus%20Line%204.%20If%20Line%204%20is%20equal%20to%20or%20more%20than%20Line%203%2C%20make%20no%20entry.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":19.855,"w":0.602,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":19.855,"w":2.092,"clr":-1,"A":"left","R":[{"T":"Tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.684,"y":19.855,"w":31.31599999999998,"clr":-1,"A":"left","R":[{"T":"Use%20the%20tax%20tables%20on%20pages%2053-62%20to%20find%20the%20tax%20on%20the%20Line%205%20amount.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":20.755,"w":0.602,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":20.755,"w":9.844,"clr":-1,"A":"left","R":[{"T":"DC%20Low%20Income%20Credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":21.655,"w":1.107,"clr":-1,"A":"left","R":[{"T":"7a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":21.655,"w":24.98700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20number%20of%20exemptions%20claimed%20on%20your%20federal%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.958,"y":21.655,"w":1.107,"clr":-1,"A":"left","R":[{"T":"7a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":22.555,"w":0.602,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":22.555,"w":3.351,"clr":-1,"A":"left","R":[{"T":"Net%20tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.495,"y":22.555,"w":36.937,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%207%20from%20Line%206.%20If%20Line%207%20is%20equal%20to%20or%20more%20than%20Line%206%2C%20make%20no%20entry.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":23.455,"w":1.107,"clr":-1,"A":"left","R":[{"T":"9a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":23.455,"w":29.44700000000001,"clr":-1,"A":"left","R":[{"T":"Contribution%20to%20Public%20Fund%20for%20Drug%20Prevention%20and%20Children%20at%20Risk.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":24.355,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"9b","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":24.355,"w":19.956000000000003,"clr":-1,"A":"left","R":[{"T":"Contribution%20to%20DC%20Statehood%20Delegation%20Fund.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":25.255,"w":1.071,"clr":-1,"A":"left","R":[{"T":"9c","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":25.255,"w":26.134000000000007,"clr":-1,"A":"left","R":[{"T":"Contribution%20to%20Anacostia%20River%20Cleanup%20and%20Protection%20Fund.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":26.155,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"9d","S":3,"TS":[0,12,0,0]}]},{"oc":"#4e5055","x":34.149,"y":26.155,"w":4.849,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":27.055,"w":1.204,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":27.055,"w":11.214999999999998,"clr":-1,"A":"left","R":[{"T":"Tax%20and%2For%20contribution(s).","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.189,"y":27.055,"w":13.969999999999999,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%208%2C%209a%2C%209b%2C%209c%20and%209d.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":27.955,"w":1.204,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":27.955,"w":12.862,"clr":-1,"A":"left","R":[{"T":"Total%20DC%20income%20tax%20withheld%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.226,"y":27.955,"w":23.293999999999993,"clr":-1,"A":"left","R":[{"T":"shown%20on%20Forms%20W-2%20and%201099%20%E2%80%93%20attach%20these%20forms.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":28.855,"w":1.204,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":28.855,"w":37.996,"clr":-1,"A":"left","R":[{"T":"Tax%20paid%20with%20extension%20of%20time%20to%20file%20or%20with%20original%20return%20if%20this%20is%20an%20amended%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":29.855,"w":1.182,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":29.855,"w":12.528,"clr":-1,"A":"left","R":[{"T":"DC%20Earned%20Income%20Tax%20Credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.813,"y":29.855,"w":16.708000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20federal%20earned%20income%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":31.336,"w":1.709,"clr":-1,"A":"left","R":[{"T":"13a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":32.224,"w":1.505,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.169,"y":32.224,"w":13.334,"clr":-1,"A":"left","R":[{"T":"Total%20tax%20payments%20and%20credits.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.424,"y":32.224,"w":7.546000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%E2%80%9313.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":33.111,"w":1.204,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.169,"y":33.111,"w":3.625000000000001,"clr":-1,"A":"left","R":[{"T":"Refund.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.748,"y":33.111,"w":23.291999999999998,"clr":-1,"A":"left","R":[{"T":"If%20Line%2014%20is%20the%20larger%2C%20subtract%20Line%2010%20from%20Line%2014.","S":-1,"TS":[0,10.448,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":34.011,"w":1.204,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.17,"y":34.011,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.759,"y":34.011,"w":2.854,"clr":-1,"A":"left","R":[{"T":"owed.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.173,"y":34.011,"w":23.587,"clr":-1,"A":"left","R":[{"T":"If%20Line%2010%20is%20the%20larger%2C%20subtract%20Line%2014%20from%20Line%2010.%20","S":-1,"TS":[0,10.448,0,0]}]},{"oc":"#231e21","x":45.817,"y":34.011,"w":15.584999999999997,"clr":-1,"A":"left","R":[{"T":"See%20payment%20options%20in%20instructions.","S":-1,"TS":[0,10.448,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":34.949,"w":1.204,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.17,"y":34.949,"w":3.4370000000000003,"clr":-1,"A":"left","R":[{"T":"Penalty%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.108,"y":34.949,"w":3.4550000000000005,"clr":-1,"A":"left","R":[{"T":"Interest%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":52.145,"y":34.948,"w":7.372999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.%20","S":-1,"TS":[0,10.448,0,0]}]},{"oc":"#2b2e34","x":61.98,"y":34.949,"w":5.154,"clr":-1,"A":"left","R":[{"T":"Enter%20results","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":35.949,"w":1.204,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":35.949,"w":10.128,"clr":-1,"A":"left","R":[{"T":"TOTAL%20AMOUNT%20DUE.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.779,"y":35.949,"w":9.253000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2016%20and%2017.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":2.732,"y":36.949,"w":1.204,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.213,"y":36.949,"w":7.654,"clr":-1,"A":"left","R":[{"T":"TOTAL%20REFUND.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.952,"y":36.948,"w":41.41300000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2017%20(results)%20from%20Line%2015%20and%20enter%20here.%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":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":4.968,"y":10.134,"w":28.732000000000014,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%2C%20street%20and%20apartment%20number%20if%20applicable)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.081,"y":12.672,"w":6.432000000000002,"clr":-1,"A":"left","R":[{"T":"City%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":55.956,"y":12.672,"w":2.158,"clr":-1,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.488,"y":12.672,"w":4.063,"clr":-1,"A":"left","R":[{"T":"Zip%20%20Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.104,"y":7.022,"w":6.436,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":35.526,"y":7.022,"w":1.7249999999999999,"clr":-1,"A":"left","R":[{"T":"M.I.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.308,"y":7.022,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":4.891,"y":8.534,"w":20.715999999999998,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20first%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":35.485,"y":8.534,"w":1.7249999999999999,"clr":-1,"A":"left","R":[{"T":"M.I.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.266,"y":8.534,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":3.188,"y":3.497,"w":17.02,"clr":-1,"A":"left","R":[{"T":"Print%20in%20CAPITAL%20letters%20using%20black%20ink.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.875,"y":41.536,"w":8.932,"clr":-1,"A":"left","R":[{"T":"Third%20party%20designee%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":13.105,"y":41.536,"w":65.285,"clr":-1,"A":"left","R":[{"T":"To%20authorize%20another%20person%20to%20discuss%20this%20return%20with%20the%20OTR%2C%20fll%20in%20here%20%20%20%20%20%20%20%20%20and%20enter%20the%20name%20and%20phone%20number%20of%20that%20person.%20See%20instructions.","S":-1,"TS":[0,8.940000000000001,0,0]}]},{"oc":"#2b2e34","x":3.875,"y":42.349,"w":4.793,"clr":-1,"A":"left","R":[{"T":"Designee%E2%80%99s%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.818,"y":42.349,"w":2.351,"clr":-1,"A":"left","R":[{"T":"name","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":47.808,"y":42.349,"w":2.9730000000000003,"clr":-1,"A":"left","R":[{"T":"Phone%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":50.874,"y":42.349,"w":3.2439999999999998,"clr":-1,"A":"left","R":[{"T":"number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":14.677,"w":0.602,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"x":75.201,"y":14.677,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":14.677,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":14.677,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.565,"y":19.279,"w":16.865000000000002,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%20%24100%2C000%20file%20form%20D-40.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":18.507,"w":0.602,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"x":75.201,"y":18.507,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":18.507,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":18.507,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":19.614,"w":0.602,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":77.787,"y":19.615,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":19.615,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":19.615,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":20.704,"w":0.602,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":77.787,"y":20.704,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":20.704,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":20.704,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":72.966,"y":22.515,"w":0.602,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":77.615,"y":22.515,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.529,"y":22.515,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.253,"y":22.515,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":72.966,"y":23.552,"w":1.107,"clr":-1,"A":"left","R":[{"T":"9a","S":3,"TS":[0,12,0,0]}]},{"x":77.615,"y":23.552,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.529,"y":23.552,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.253,"y":23.552,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":72.966,"y":24.536,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"9b","S":3,"TS":[0,12,0,0]}]},{"x":77.615,"y":24.536,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.529,"y":24.536,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.253,"y":24.536,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":72.966,"y":25.281,"w":1.071,"clr":-1,"A":"left","R":[{"T":"9c","S":3,"TS":[0,12,0,0]}]},{"x":77.615,"y":25.281,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.529,"y":25.281,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.253,"y":25.281,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":72.966,"y":26.114,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"9d","S":3,"TS":[0,12,0,0]}]},{"x":77.615,"y":26.114,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.529,"y":26.114,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.253,"y":26.114,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":30.258,"w":1.204,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"x":77.787,"y":30.258,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":30.258,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":30.258,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.138,"y":35.963,"w":1.204,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":77.787,"y":35.963,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.701,"y":35.963,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.425,"y":35.963,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":53.583,"y":37.587,"w":7.252,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":73.195,"y":37.023,"w":1.204,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":77.644,"y":37.023,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.758,"y":37.023,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.482,"y":37.023,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":54.624,"y":30.305,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.6,0,0]}]},{"x":56.114,"y":30.305,"w":3.6120000000000005,"clr":1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20.","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":63.449,"y":30.305,"w":1.505,"clr":-1,"A":"left","R":[{"T":"00%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":66.553,"y":30.305,"w":2.655,"clr":-1,"A":"left","R":[{"T":"X%20.40%20%3D","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.997,"y":27.061,"w":1.204,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":77.446,"y":27.061,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.56,"y":27.061,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.284,"y":27.061,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":72.997,"y":28.049,"w":1.204,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":77.446,"y":28.049,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.56,"y":28.049,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.284,"y":28.049,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.169,"y":32.224,"w":1.204,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"x":77.618,"y":32.224,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.732,"y":32.224,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.456,"y":32.224,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.204,"y":33.211,"w":1.204,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":77.853,"y":33.211,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.766,"y":33.211,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.49,"y":33.211,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.169,"y":34.086,"w":1.204,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":77.618,"y":34.086,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.732,"y":34.086,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.456,"y":34.086,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":73.209,"y":34.921,"w":1.204,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"x":77.859,"y":34.921,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.772,"y":34.921,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.496,"y":34.921,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":72.969,"y":28.952,"w":1.204,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"x":77.418,"y":28.952,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":91.531,"y":28.952,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.256,"y":28.952,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":4.906,"y":5.569,"w":20.234999999999978,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20(SSN)%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]}]},{"oc":"#231e21","x":29.173,"y":5.569,"w":1.601,"clr":-1,"A":"left","R":[{"T":"and","S":8,"TS":[0,10,1,0]}]},{"oc":"#231e21","x":74.478,"y":5.569,"w":3.4069999999999996,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20and","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":4.391,"y":4.415,"w":8.751000000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20information","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":4.391,"y":5.015,"w":10.328000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20telephone%20number%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#ff403a","x":47.317,"y":5.015,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":47.703,"y":4.358,"w":5.574000000000001,"clr":-1,"A":"left","R":[{"T":"Filing%20status%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":57.646,"y":4.358,"w":2.931,"clr":-1,"A":"left","R":[{"T":"Single%2C","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":64.069,"y":4.358,"w":8.945000000000002,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly%2C","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":77.622,"y":4.358,"w":18.163999999999998,"clr":-1,"A":"left","R":[{"T":"Registered%20domestic%20partners%20filing%20jointly%2C","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":57.843,"y":4.883,"w":15.747000000000003,"clr":-1,"A":"left","R":[{"T":"Dependent%20claimed%20by%20someone%20else","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":81.496,"y":4.883,"w":11.172000000000002,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20Amended%20Return%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#231e21","x":31.787,"y":5.569,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231e21","x":51.043,"y":5.569,"w":18.327999999999992,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20SSN","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.121,"y":37.587,"w":27.589999999999993,"clr":-1,"A":"left","R":[{"T":"Will%20the%20refund%20you%20requested%20go%20to%20an%20account%20outside%20the%20US%3F","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":44.701,"y":37.587,"w":1.431,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":50.435,"y":37.587,"w":1.206,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#231e21","x":3.127,"y":40.654,"w":8.799000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20Routing%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":44.18,"y":40.654,"w":7.1450000000000005,"clr":-1,"A":"left","R":[{"T":"Account%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.452,"y":34.948,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":49.786,"y":34.948,"w":1.8059999999999998,"clr":-1,"A":"left","R":[{"T":".00%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":11.415,"y":34.948,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":25.963,"y":34.948,"w":2.408,"clr":-1,"A":"left","R":[{"T":".00%20%20%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.169,"y":31.336,"w":16.751,"clr":-1,"A":"left","R":[{"T":"Enter%20number%20of%20qualified%20EITC%20children","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.913,"y":31.336,"w":1.709,"clr":-1,"A":"left","R":[{"T":"13a","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":79.224,"y":5.569,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":21.833,"y":20.755,"w":25.565999999999985,"clr":-1,"A":"left","R":[{"T":"Use%20Calc.%20LIC%2FEITC%20to%20see%20if%20LIC%20or%20EITC%20is%20a%20greater%20benefit.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#231e21","x":54.7,"y":20.722,"w":7.252,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.192,"y":30.463,"w":36.611999999999995,"clr":-1,"A":"left","R":[{"T":"Use%20Calc.%20LIC%2FEITC%20to%20see%20if%20EITC%20is%20greater.%20Leave%20blank%20if%20you%20took%20Line%207%20LIC%20credit.","S":-1,"TS":[0,10.6,0,0]}]},{"x":81.305,"y":38.281,"w":122.05800000000004,"clr":0,"A":"left","R":[{"T":"otr.dc.gov%2Frefundprepaidcards.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.212,"y":17.93,"w":28.57299999999999,"clr":-1,"A":"left","R":[{"T":"or%20if%20claimed%20as%20a%20dependent%20on%20another%E2%80%99s%20tax%20return%2C%20enter%20%244100","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":30.624,"y":17.305,"w":9.872000000000002,"clr":-1,"A":"left","R":[{"T":"If%20single%2C%20enter%20%245775.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":43.519,"y":17.305,"w":12.191000000000003,"clr":-1,"A":"left","R":[{"T":"%20If%20fling%20jointly%2C%20enter%20%247450","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#231e21","x":3.127,"y":38.314,"w":42.47299999999999,"clr":-1,"A":"left","R":[{"T":"Refund%20Options%3A%20For%20information%20on%20the%20tax%20refund%20card%20and%20program%20limitations%2C%20visit%20our%20website%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":2.899,"y":39.657,"w":108.459,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit%20Account%20Type","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.475,"y":39.663,"w":35.136,"clr":-1,"A":"left","R":[{"T":"Checking","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":33.303,"y":39.663,"w":12.204,"clr":-1,"A":"left","R":[{"T":"OR","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":38.425,"y":39.65,"w":29.529,"clr":-1,"A":"left","R":[{"T":"Savings","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":46.527,"y":39.685,"w":305.0670000000002,"clr":-1,"A":"left","R":[{"T":"To%20deposit%20your%20refund%2C%20check%20the%20box%20and%20enter%20bank%20routing%20and%20account%20numbers.%20See%20instructions","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.887,"y":39.039,"w":10.904999999999998,"clr":-1,"A":"left","R":[{"T":"Mark%20one%20refund%20choice%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.371,"y":39.039,"w":6.461,"clr":-1,"A":"left","R":[{"T":"Direct%20deposit%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.465,"y":39.039,"w":7.223000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20refund%20card%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.59,"y":39.039,"w":5.2139999999999995,"clr":-1,"A":"left","R":[{"T":"Paper%20check","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":155,"AM":0,"x":18.993,"y":4.86,"w":28.388,"h":0.911,"TU":"Your telephone number."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":161,"AM":0,"x":4.811,"y":6.403,"w":22.037,"h":0.898,"TU":"Your social security number."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOB","EN":0},"TI":162,"AM":0,"x":29.401,"y":6.509,"w":20.113,"h":0.864,"TU":"and Date of Birth (MMDDYYYY)","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":163,"AM":0,"x":51.09,"y":6.493,"w":22.057,"h":0.884,"TU":"Spouse’s/registered domestic partner’s SSN."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOB","EN":0},"TI":164,"AM":0,"x":75.009,"y":6.446,"w":20.862,"h":0.892,"TU":"and Date of Birth (MMDDYYYY)","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":165,"AM":0,"x":4.93,"y":7.928,"w":29.477,"h":0.892,"TU":"First name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":166,"AM":0,"x":35.689,"y":7.928,"w":2.228,"h":0.892,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":167,"AM":0,"x":39.477,"y":7.991,"w":49.543,"h":0.892,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":168,"AM":0,"x":4.989,"y":9.491,"w":29.327,"h":0.892,"TU":"Spouse’s/registered domestic partner ’s first name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":169,"AM":0,"x":35.456,"y":9.518,"w":2.248,"h":0.899,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":170,"AM":0,"x":39.436,"y":9.518,"w":49.319,"h":0.899,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":171,"AM":0,"x":4.958,"y":11.036,"w":74.173,"h":0.884,"TU":"Home address (number, street and apartment number if applicable"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":172,"AM":0,"x":4.956,"y":12.119,"w":74.098,"h":0.884,"TU":"Home address (number, street and apartment number if applicable"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":173,"AM":0,"x":4.745,"y":13.545,"w":49.242,"h":0.884,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":174,"AM":0,"x":55.859,"y":13.489,"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":175,"AM":0,"x":62.688,"y":13.515,"w":22.762,"h":0.874,"TU":"Zip Code"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":176,"AM":0,"x":76.67,"y":14.877,"w":14.981,"h":0.833,"TU":"Line 1. Total wages, salaries, tips, unemployment compensation, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":177,"AM":0,"x":76.738,"y":15.787,"w":14.922,"h":0.833,"TU":"Line 2. Taxable interest and ordinary dividends. (If more than $1500, file Form D-40.)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":178,"AM":1024,"x":76.644,"y":16.633,"w":14.981,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":179,"AM":0,"x":76.712,"y":17.543,"w":14.922,"h":0.833,"TU":"Line 4. Standard deduction plus exemption. If single, enter $5775. If filing jointly, enter $7450, or if claimed as a dependent on another's tax return, enter $4100."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":180,"AM":1024,"x":76.849,"y":18.641,"w":15.056,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":181,"AM":0,"x":79.237,"y":19.746,"w":12.675,"h":0.833,"TU":"Line 6. Tax. Use the tax tables on pages 53-62 to find the tax on the Line 5 amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":182,"AM":0,"x":79.32,"y":20.736,"w":12.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMP","EN":0},"TI":183,"AM":0,"x":65.441,"y":21.808,"w":4.379,"h":0.833,"TU":"Line 7a. Enter number of exemptions claimed on your federal return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":184,"AM":1024,"x":79.182,"y":22.536,"w":12.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":185,"AM":0,"x":79.265,"y":23.464,"w":12.676,"h":0.833,"TU":"Line 9a. Contribution to Public Fund for Drug Prevention and Children at Risk."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STFUND","EN":0},"TI":186,"AM":0,"x":79.204,"y":24.356,"w":12.676,"h":0.833,"TU":"Line 9b. Contribution to DC Statehood Delegation Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ANACOST","EN":0},"TI":187,"AM":0,"x":79.116,"y":25.221,"w":12.675,"h":0.833,"TU":"Line 9c. Contributions to Anacostia River Cleanup and Protection Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":188,"AM":1024,"x":79.149,"y":27.128,"w":12.825,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11WH","EN":0},"TI":189,"AM":0,"x":79.087,"y":28.145,"w":12.751,"h":0.834,"TU":"Line 11. Total DC income tax withheld shown on Forms W-2 and 1099."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11EXT","EN":0},"TI":190,"AM":0,"x":78.999,"y":29.135,"w":12.676,"h":0.833,"TU":"Line 12. Tax paid with extension of time to file or with original return if this is an amended return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDEIC","EN":0},"TI":191,"AM":0,"x":56.206,"y":30.423,"w":7.224,"h":0.838,"TU":"Line 13. DC Earned Income Tax Credit. Enter your federal earned income credit. Use Calc. LIC/EITC to see if EITC is greater. Leave blank if you took Line 7 LIC credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":192,"AM":1024,"x":79.224,"y":30.265,"w":12.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EITC","EN":0},"TI":193,"AM":0,"x":67.949,"y":31.487,"w":4.005,"h":0.833,"TU":"Line 13a. Enter number of qualified EITC children."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":194,"AM":1024,"x":79.27,"y":32.372,"w":12.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":195,"AM":1024,"x":79.353,"y":33.273,"w":12.751,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":196,"AM":1024,"x":79.292,"y":34.165,"w":12.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY","EN":0},"TI":197,"AM":0,"x":12.816,"y":35.111,"w":12.676,"h":0.833,"TU":"Line 17. Penalty."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTEREST","EN":0},"TI":198,"AM":0,"x":36.529,"y":35.185,"w":12.676,"h":0.833,"TU":"Interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENINT","EN":0},"TI":199,"AM":1024,"x":79.203,"y":35.031,"w":12.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":200,"AM":1024,"x":79.353,"y":36.084,"w":12.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTREF","EN":0},"TI":201,"AM":1024,"x":79.408,"y":37.167,"w":13.05,"h":0.859},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":209,"AM":0,"x":17.558,"y":40.841,"w":21.711,"h":0.833,"TU":"Routing Number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCTNO","EN":0},"TI":210,"AM":0,"x":56.44,"y":40.817,"w":41.336,"h":0.889,"TU":"Account Number.","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESIGNEE","EN":0},"TI":212,"AM":0,"x":12.351,"y":42.558,"w":31.978,"h":0.833,"TU":"Designee's name."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DSGNPHNO","EN":0},"TI":213,"AM":0,"x":55.076,"y":42.502,"w":25.88,"h":0.833,"TU":"Phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIGN","EN":0},"TI":214,"AM":1024,"x":50.162,"y":44.696,"w":32.228,"h":0.833,"V":"Self-Prepared"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PTIN","EN":0},"TI":215,"AM":1024,"x":49.046,"y":46.262,"w":22.345,"h":0.857,"V":"SFF"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":156,"AM":0,"x":55.827,"y":4.498,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":157,"AM":0,"x":62.34,"y":4.498,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PRTNRBX","EN":0},"TI":158,"AM":0,"x":76.237,"y":4.546,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4BX","EN":0},"TI":159,"AM":0,"x":55.809,"y":5.192,"w":1.372,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMEND","EN":0},"TI":160,"AM":1024,"x":80.007,"y":5.125,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"USACCT","EN":0},"TI":202,"AM":0,"x":42.561,"y":37.725,"w":1.577,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOUS","EN":0},"TI":203,"AM":0,"x":48.449,"y":37.725,"w":1.577,"h":0.833,"checked":true}],"id":{"Id":"ACCBXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DDX","EN":0},"TI":204,"AM":0,"x":22.447,"y":39.176,"w":1.877,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CCX","EN":0},"TI":205,"AM":0,"x":36.416,"y":39.167,"w":1.918,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PCX","EN":0},"TI":208,"AM":0,"x":51.551,"y":39.214,"w":1.918,"h":0.833,"checked":false}],"id":{"Id":"REFOPTRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CHECKBX","EN":0},"TI":206,"AM":0,"x":22.399,"y":39.74,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SAVINGBX","EN":0},"TI":207,"AM":0,"x":36.383,"y":39.698,"w":1.856,"h":0.833,"checked":false}],"id":{"Id":"ACCTTYRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAUTH","EN":0},"TI":211,"AM":0,"x":49.51,"y":41.783,"w":1.177,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DCSCHH.content.txt b/test/data/dc/form/DCSCHH.content.txt new file mode 100755 index 00000000..458fc7c4 --- /dev/null +++ b/test/data/dc/form/DCSCHH.content.txt @@ -0,0 +1,208 @@ +Government of the +District of Columbia +2013 + +SCHEDULE H Homeowner + and Renter Property Tax Credit +2013 SCHEDULE H P1 +Homeowner and Renter Property Tax Credit File order 5 +Important: Read eligibility requirements before completing. +Print in CAPITAL letters using black ink. +7 + +$ +. +00 +8 + +$ +. +00 +9 + +$ +. +00 +Round cents to the nearest dollar. +If the amount is zero, leave the line blank. +Revised 09/13 +Section A Credit claim based on rent paid +1 Total household gross income. +From Line w on page 3. +If over $20,000, do not claim this credit. +2 Rent paid on the property in 2013. + +3 Property tax credit. +Use the +worksheet +. + +4 Rent supplements received in 2013 by you or your landlord on your behalf. + +5 Property tax credit. +6 +Landlord’s name + +Round cents to the nearest dollar. +If the amount is zero, leave the line blank. +1 + +$ +. +00 + + $ +. +00 +x.15 + > +2 + +$ +. +00 +3 + +$ +. +00 +4 + +$ +. +00 +5 + +$ +. +00 +Landlord’s telephone number +If 15% of the rent paid amount is more than the line 1 amount do not claim the credit. +Landlord’s address (number and street) +Apartment number +City +State Zip Code +Section B Credit claim based on real property tax paid +From Line w on page 3. +If over $20,000, do not claim this credit. + +Use the worksheet. + +10 + + + +Mailing address (number, street and apartment) +Address of +DC + +property (number, street and apartment) for which you are claiming the credit if different from above +City +State Zip Code +Type of property for which you are claiming the credit. Fill in only one: +Personal information +◆ + +Complete Section A or Section B, whichever applies. + +◆ +Spouse’s/registered domestic partner’s SSN +Your social security number (SSN) +Your daytime telephone number +Do not claim this credit for an exempt property owned by a government, a house of +Fill in if you are: + +62 or older + +Blind or disabled +Fill in if spouse/registered domestic partner is: + +62 or older + +Blind or disabled +Spouse’s/registered domestic partner’s first name + +M.I. + +Last name +House + +Apartment + +Rooming house +worship or a non-profit organization. +Subtract Line 4 from Line 3, D-40 filers enter here and on Line 29 of D-40. +Enter information from your real property tax bill or assessment. If a section is blank on your property tax bill, leave it blank here. + +Square number + +Suffix number + +Lot number +Your first name + +M.I. + +Last name +7 + +Total household gross income. +8 + +DC real property tax paid by you on the property in 2013. +9 + +Property tax credit +----------------Page (0) Break---------------- +Last name and SSN +2013 SCHEDULE H PAGE 2 +are not needed. +Claimant’s social security number +I certify that the above-named claimant + is blind; + has a physical or mental impairment that is expected to last continuously for 12 months or more; + was physically or mentally impaired on January 1, 2013. +Physician’s address (number and street) +Suite number +City +State Zip Code +Physician’s signature Date Where Licensed License Number +Defi + nitions +Blind +Central visual acuity that does not exceed 20/200 in the better eye +with correcting lenses, or visual acuity that is greater than 20/200, +than 20 degrees. +Disabled +Unable to engage in any gainful activity due to a medically determin- +able physical or mental impairment which can be expected to last +for 12 months or more. +Continue to Page 3 +Homeowner and Renter Property Tax Credit +Revised 09/13 +Signature +Under penalties of law, I declare that I have examined this return and, to the best of my knowledge, it is true and correct. + Declaration of preparer is based on the information available to the preparer. +Your signature Date Preparer’s signature Date +File order 6 +If you are blind or disabled, you must have this certificate completed to claim the Property Tax Credit. File it with your Schedule H. +If a physician’s certification of blindness or disability has been submitted previously and the claimant’s condition is unchanged, additional certifications +Claimant’s first name + +M.I. + +Last name +(fill in all that apply): +Physician’s first name + +M.I. + +Last name +but is accompanied by a limitation in the field of vision such that +the widest diameter of the visual field subtends an angle no greater +Preparer’s Tax Identification Number (PTIN) + +Preparer’s telephone number +Physician’s certification of blindness or disability. +2013 SCHEDULE H P2 +----------------Page (1) Break---------------- diff --git a/test/data/dc/form/DCSCHH.fields.json b/test/data/dc/form/DCSCHH.fields.json new file mode 100755 index 00000000..5ed3cb4e --- /dev/null +++ b/test/data/dc/form/DCSCHH.fields.json @@ -0,0 +1 @@ +[{"id":"AGBLDIS1","type":"box","calc":false,"value":""},{"id":"BXSP1","type":"box","calc":false,"value":""},{"id":"AGBLDIS2","type":"box","calc":false,"value":""},{"id":"BXSP2","type":"box","calc":false,"value":""},{"id":"PROPBXRB","type":"radio","calc":false,"value":"PROPBX1"},{"id":"PROPBXRB","type":"radio","calc":false,"value":"PROPBX2"},{"id":"PROPBXRB","type":"radio","calc":false,"value":"PROPBX3"},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPINIT","type":"mask","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SPMI","type":"mask","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"ADDR2","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"alpha","calc":true,"value":""},{"id":"ADDR3","type":"alpha","calc":false,"value":""},{"id":"ADDR4","type":"alpha","calc":false,"value":""},{"id":"INCOMEA","type":"number","calc":false,"value":""},{"id":"RENT","type":"number","calc":false,"value":""},{"id":"RENTPERC","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""},{"id":"RENTSUPP","type":"number","calc":false,"value":""},{"id":"CREDITA","type":"number","calc":true,"value":""},{"id":"LLNAME","type":"alpha","calc":false,"value":""},{"id":"LLADDR","type":"alpha","calc":false,"value":""},{"id":"LLAPTNUM","type":"alpha","calc":false,"value":""},{"id":"LLADDR2","type":"alpha","calc":false,"value":""},{"id":"LLPHONE","type":"phone","calc":false,"value":""},{"id":"LLCITY","type":"alpha","calc":false,"value":""},{"id":"LLSTATE","type":"alpha","calc":false,"value":""},{"id":"LLZIP","type":"zip","calc":false,"value":""},{"id":"INCOMEB","type":"number","calc":false,"value":""},{"id":"PROPTAX","type":"number","calc":false,"value":""},{"id":"CREDITB","type":"number","calc":false,"value":""},{"id":"SQNUM","type":"alpha","calc":false,"value":""},{"id":"SUFNUM","type":"alpha","calc":false,"value":""},{"id":"LOTNUM","type":"alpha","calc":false,"value":""},{"id":"PBX1","type":"box","calc":false,"value":""},{"id":"PBX2","type":"box","calc":false,"value":""},{"id":"PBX3","type":"box","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"CFNAME","type":"alpha","calc":false,"value":""},{"id":"CMI","type":"mask","calc":false,"value":""},{"id":"CLNAME","type":"alpha","calc":false,"value":""},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"PFNAME","type":"alpha","calc":false,"value":""},{"id":"PMI","type":"mask","calc":false,"value":""},{"id":"PLNAME","type":"alpha","calc":false,"value":""},{"id":"PADDR","type":"alpha","calc":false,"value":""},{"id":"PAPT","type":"alpha","calc":false,"value":""},{"id":"PCITY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"PREPSIGN","type":"alpha","calc":true,"value":"SELF-PREPARED"},{"id":"PTIN","type":"alpha","calc":true,"value":"SFF"},{"id":"PREPHONE","type":"phone","calc":true,"value":""},{"id":"Add_Schedule_H_Page_3","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DCSCHH.json b/test/data/dc/form/DCSCHH.json new file mode 100755 index 00000000..aec43958 --- /dev/null +++ b/test/data/dc/form/DCSCHH.json @@ -0,0 +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":"#eef9f6","x":62.073,"y":9.684,"w":4.5,"l":34.922},{"oc":"#eef9f6","x":62.073,"y":10.746,"w":4.5,"l":34.922},{"oc":"#d1efe7","x":8.757,"y":7.133,"w":1.5,"l":88.017},{"oc":"#d1efe7","x":8.757,"y":8.197,"w":1.5,"l":88.017},{"oc":"#edf8f5","x":7.964,"y":6.274,"w":1.5,"l":91.472},{"oc":"#edf8f5","x":7.964,"y":46.391,"w":1.5,"l":91.472},{"oc":"#2b2e34","x":23.753,"y":2.353,"w":1.5,"l":5.914},{"oc":"#2b2e34","x":23.753,"y":3.396,"w":1.5,"l":5.914},{"oc":"#2b2e34","x":8.258,"y":5.687,"w":4.5,"l":50.604},{"oc":"#2b2e34","x":7.571,"y":23.196,"w":4.5,"l":91.438},{"oc":"#eef9f6","x":59.628,"y":5.397,"w":4.5,"l":38.448},{"oc":"#eef9f6","x":59.628,"y":6.141,"w":4.5,"l":38.448},{"oc":"#2b2e34","x":7.657,"y":39.24,"w":4.5,"l":91.352},{"oc":"#d1efe7","x":66.997,"y":40.718,"w":4.5,"l":31.496},{"oc":"#d1efe7","x":66.997,"y":43.977,"w":4.5,"l":31.496},{"oc":"#d1efe7","x":70.546,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.546,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.201,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.201,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.865,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.865,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.839,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.839,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.494,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.494,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.158,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.158,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.003,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.003,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.667,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.667,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":40.762,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":41.824,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.546,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.546,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.201,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.201,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.865,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.865,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.839,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.839,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.494,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.494,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.158,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.158,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.003,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.003,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.667,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.667,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":41.709,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":42.771,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.546,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.546,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.201,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.201,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.865,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.865,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.839,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.839,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.494,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.494,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.158,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.158,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.003,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.003,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.667,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.667,"y":43.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":42.843,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.331,"y":43.906,"w":1.5,"l":2.552},{"clr":1,"x":4.262,"y":41.806,"w":1.5,"l":62.554},{"clr":1,"x":4.4,"y":43.021,"w":1.5,"l":62.219},{"clr":1,"x":4.331,"y":44.165,"w":1.5,"l":95.064},{"oc":"#2b2e34","x":82.018,"y":40.474,"w":0.5925,"l":11.103},{"oc":"#2b2e34","x":14.985,"y":26.131,"w":0.7484999999999999,"l":21.977},{"clr":1,"x":4.357,"y":26.956,"w":1.5,"l":62.711},{"clr":1,"x":4.357,"y":28.937,"w":1.5,"l":62.711},{"oc":"#2b2e34","x":82.998,"y":25.315,"w":0.5925,"l":11.103},{"clr":1,"x":4.159,"y":31.914,"w":1.5,"l":62.909},{"clr":1,"x":3.876,"y":29.777,"w":1.5,"l":63.303},{"clr":1,"x":4.46,"y":30.812,"w":1.5,"l":62.829},{"oc":"#d1efe7","x":67.436,"y":26.027,"w":4.5,"l":31.546},{"oc":"#d1efe7","x":67.436,"y":32.138,"w":4.5,"l":31.546},{"oc":"#d1efe7","x":70.761,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":26.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":27.134,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.905,"y":27.254,"w":4.5,"l":29.434},{"oc":"#d1efe7","x":32.905,"y":28.071,"w":4.5,"l":29.434},{"oc":"#d1efe7","x":34.564,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.564,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.348,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.348,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.961,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.961,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.883,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.883,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.667,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.667,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.28,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.28,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.253,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.253,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.865,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.865,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.478,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.478,"y":28.094,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":27.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":28.206,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":28.715,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":29.777,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":29.859,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":30.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.761,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.416,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.08,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.709,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.373,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.218,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.882,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":30.987,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.546,"y":32.049,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":7.931,"y":32.871,"w":1.5,"l":87.803},{"oc":"#d1efe7","x":7.931,"y":33.968,"w":1.5,"l":87.803},{"oc":"#d1efe7","x":8.069,"y":32.928,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.069,"y":33.987,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.415,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.415,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.011,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.011,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.606,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.606,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.201,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.201,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.797,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.797,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.392,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.392,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.987,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.987,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.583,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.583,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.178,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.178,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.773,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.773,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.369,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.369,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.955,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.955,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.551,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.551,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.146,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.146,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.741,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.741,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.337,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.337,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.932,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.932,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.527,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.527,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.122,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.122,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.718,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.718,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.313,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.313,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.908,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.908,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.504,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.504,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.099,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.099,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.694,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.694,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.29,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.29,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.885,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.885,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.48,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.48,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.076,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.076,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.671,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.671,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.266,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.266,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.862,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.862,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.465,"y":32.928,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.465,"y":33.99,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.112,"y":34.799,"w":1.5,"l":88.095},{"oc":"#d1efe7","x":8.112,"y":35.896,"w":1.5,"l":88.095},{"oc":"#d1efe7","x":8.198,"y":34.793,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.198,"y":35.852,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.544,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.544,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.14,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.14,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.735,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.735,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.33,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.33,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.926,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.926,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.521,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.521,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.116,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.116,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.712,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.712,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.307,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.307,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.902,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.902,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.497,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.497,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.084,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.084,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.68,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.68,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.275,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.275,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.87,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.87,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.465,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.465,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.061,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.061,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.656,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.656,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.251,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.251,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.847,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.847,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.442,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.442,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.037,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.037,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.633,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.633,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.228,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.228,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.823,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.419,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.419,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.014,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.014,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.376,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.376,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.972,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.972,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.567,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.567,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.162,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.162,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.766,"y":34.793,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.766,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.061,"y":36.068,"w":1.5,"l":44.052},{"oc":"#d1efe7","x":8.061,"y":37.165,"w":1.5,"l":44.052},{"oc":"#d1efe7","x":8.147,"y":36.062,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.147,"y":37.121,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.493,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.493,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.088,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.088,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.683,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.683,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.279,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.279,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.874,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.874,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.469,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.469,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.065,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.065,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.66,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.66,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.255,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.255,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.851,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.851,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.446,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.446,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.033,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.033,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.628,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.628,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.223,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.223,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.819,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.819,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.414,"y":36.062,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.414,"y":37.124,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.078,"y":37.902,"w":1.5,"l":85.636},{"oc":"#d1efe7","x":8.078,"y":38.999,"w":1.5,"l":85.636},{"oc":"#d1efe7","x":8.164,"y":37.896,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.164,"y":38.949,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.51,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.51,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.105,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.105,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.701,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.701,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.296,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.296,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.891,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.891,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.487,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.487,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.082,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.082,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.677,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.677,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.272,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.272,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.868,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.868,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.463,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.463,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.179,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.179,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.774,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.774,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.369,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.369,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.965,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.965,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.56,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.56,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.155,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.155,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.751,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.751,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.346,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.346,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.789,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.789,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.384,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.384,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.715,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.715,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.311,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.311,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.906,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.906,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.501,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.501,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.222,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.222,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.817,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.817,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.412,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.412,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.008,"y":37.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.008,"y":38.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.174,"y":37.893,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.174,"y":38.956,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.276,"y":36.065,"w":1.5,"l":26.906},{"oc":"#d1efe7","x":69.276,"y":37.162,"w":1.5,"l":26.906},{"oc":"#d1efe7","x":69.327,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.327,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.922,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.922,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.518,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.518,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.56,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.56,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.155,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.155,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.751,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.751,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.793,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.793,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.388,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.388,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.983,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.983,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.579,"y":36.081,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.579,"y":37.143,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.464,"y":45.155,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.464,"y":46.218,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.059,"y":45.155,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.059,"y":46.218,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.655,"y":45.155,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.655,"y":46.218,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.25,"y":45.155,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.25,"y":46.218,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.292,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.292,"y":46.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.887,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.887,"y":46.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.483,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.483,"y":46.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.078,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.078,"y":46.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.496,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.496,"y":46.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.091,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.091,"y":46.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.687,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.687,"y":46.23,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.282,"y":45.168,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.282,"y":46.23,"w":1.5,"l":2.552},{"oc":"#2b2e34","x":15.264,"y":40.694,"w":0.7484999999999999,"l":30.651},{"oc":"#2b2e34","x":70.293,"y":44.994,"w":0.5925,"l":10.484},{"oc":"#d1efe7","x":8.321,"y":14.756,"w":1.5,"l":78.202},{"oc":"#d1efe7","x":8.321,"y":15.852,"w":1.5,"l":78.202},{"oc":"#d1efe7","x":8.407,"y":14.749,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.407,"y":15.803,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.753,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.753,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.348,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.348,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.943,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.943,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.539,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.539,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.134,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.134,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.729,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.729,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.325,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.325,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.92,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.92,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.515,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.515,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.111,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.111,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.706,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.706,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.422,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.422,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.017,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.017,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.612,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.612,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.208,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.208,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.803,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.803,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.398,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.398,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.993,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.993,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.589,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.589,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.184,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.184,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.779,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.779,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.375,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.375,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.97,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.97,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.565,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.565,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.161,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.161,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.756,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.756,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.187,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.187,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.783,"y":14.749,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.783,"y":15.812,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.429,"y":14.79,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.429,"y":15.853,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.261,"y":16.106,"w":1.5,"l":78.262},{"oc":"#d1efe7","x":8.261,"y":17.203,"w":1.5,"l":78.262},{"oc":"#d1efe7","x":8.347,"y":16.099,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.347,"y":17.152,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.693,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.693,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.288,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.288,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.883,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.883,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.479,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.479,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.074,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.074,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.669,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.669,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.265,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.265,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.86,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.86,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.455,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.455,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.051,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.051,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.646,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.646,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.361,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.361,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.957,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.957,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.552,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.552,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.147,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.147,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.743,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.743,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.338,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.338,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.933,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.933,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.529,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.529,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.124,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.124,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.719,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.719,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.315,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.315,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.91,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.91,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.505,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.505,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.101,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.101,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.696,"y":16.099,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.696,"y":17.162,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.248,"y":16.093,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.248,"y":17.156,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.261,"y":17.906,"w":1.5,"l":85.534},{"oc":"#d1efe7","x":8.261,"y":19.003,"w":1.5,"l":85.534},{"oc":"#d1efe7","x":8.347,"y":17.899,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.347,"y":18.953,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.693,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.693,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.288,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.288,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.883,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.883,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.479,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.479,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.074,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.074,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.669,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.669,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.265,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.265,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.86,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.86,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.455,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.455,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.051,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.051,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.646,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.646,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.361,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.361,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.957,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.957,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.552,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.552,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.147,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.147,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.743,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.743,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.338,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.338,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.933,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.933,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.529,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.529,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.972,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.972,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.567,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.567,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.898,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.898,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.493,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.493,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.089,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.089,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.684,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.684,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.061,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.061,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.656,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.656,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.251,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.251,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.847,"y":17.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.847,"y":18.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.357,"y":17.896,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.357,"y":18.959,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.05,"y":16.093,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.05,"y":17.156,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.645,"y":16.093,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.645,"y":17.156,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.347,"y":19.881,"w":1.5,"l":78.202},{"oc":"#d1efe7","x":8.347,"y":20.978,"w":1.5,"l":78.202},{"oc":"#d1efe7","x":8.433,"y":19.875,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.433,"y":20.928,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.779,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.779,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.374,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.374,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.969,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.969,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.565,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.565,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.16,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.16,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.755,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.755,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.351,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.351,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.946,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.946,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.541,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.541,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.136,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.136,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.732,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.732,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.447,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.447,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.043,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.043,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.638,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.638,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.233,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.233,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.829,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.829,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.424,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.424,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.019,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.019,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.615,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.615,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.21,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.21,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.805,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.805,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.401,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.401,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.996,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.996,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.591,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.591,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.186,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.186,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.782,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.782,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.213,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.213,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.808,"y":19.875,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.808,"y":20.937,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.454,"y":19.915,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.454,"y":20.978,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.347,"y":21.152,"w":1.5,"l":78.202},{"oc":"#d1efe7","x":8.347,"y":22.249,"w":1.5,"l":78.202},{"oc":"#d1efe7","x":8.433,"y":21.146,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.433,"y":22.199,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.779,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.779,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.374,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.374,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.969,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.969,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.565,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.565,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.16,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.16,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.755,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.755,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.351,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.351,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.946,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.946,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.541,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.541,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.136,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.136,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.732,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.732,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.447,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.447,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.043,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.043,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.638,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.638,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.233,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.233,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.829,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.829,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.424,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.424,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.019,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.019,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.615,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.615,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.21,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.21,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.805,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.805,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.401,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.401,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.996,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.996,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.591,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.591,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.186,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.186,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.782,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.782,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.213,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.213,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.808,"y":21.146,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.808,"y":22.209,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.454,"y":21.187,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.454,"y":22.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.774,"y":8.874,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":8.774,"y":9.938,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":8.86,"y":8.868,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.86,"y":9.896,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.206,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.206,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.801,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.801,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.397,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.397,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.992,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.992,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.587,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.587,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.183,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.183,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.778,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.778,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.373,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.373,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.969,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.969,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.564,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.564,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.159,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.159,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.983,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.983,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.945,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.945,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.54,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.54,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.136,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.136,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.731,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.731,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.326,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.326,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.922,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.922,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.517,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.517,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.112,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.112,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.708,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.708,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.303,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.303,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.898,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.898,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.494,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.494,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.089,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.089,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.684,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.684,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.28,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.28,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.875,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.875,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.47,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.47,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.065,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.065,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.661,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.661,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.256,"y":8.868,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.256,"y":9.899,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.651,"y":12.728,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":8.651,"y":13.792,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":8.737,"y":12.722,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.737,"y":13.75,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.083,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.083,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.679,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.679,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.274,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.274,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.869,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.869,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.465,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.465,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.06,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.06,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.655,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.655,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.251,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.251,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.846,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.846,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.441,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.441,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.036,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.036,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.861,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.861,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.822,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.822,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.418,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.418,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.013,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.013,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.608,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.608,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.204,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.204,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.799,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.799,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.394,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.394,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.99,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.99,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.585,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.585,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.18,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.18,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.776,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.776,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.371,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.371,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.966,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.966,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.561,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.561,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.157,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.157,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.752,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.752,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.347,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.347,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.943,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.943,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.538,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.538,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.133,"y":12.722,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":94.133,"y":13.753,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.714,"y":10.95,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.714,"y":11.972,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.06,"y":10.954,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.06,"y":11.985,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.655,"y":10.954,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.655,"y":11.985,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.869,"y":10.954,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.869,"y":11.985,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.293,"y":10.954,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.293,"y":11.985,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.507,"y":10.954,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.507,"y":11.985,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.102,"y":10.954,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.102,"y":11.985,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.697,"y":10.954,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.697,"y":11.985,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.229,"y":10.962,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.229,"y":11.993,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.843,"y":7.127,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.843,"y":8.149,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.189,"y":7.13,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.189,"y":8.161,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.784,"y":7.13,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.784,"y":8.161,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.998,"y":7.13,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.998,"y":8.161,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.422,"y":7.13,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.422,"y":8.161,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.636,"y":7.13,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.636,"y":8.161,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.231,"y":7.13,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.231,"y":8.161,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.826,"y":7.13,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.826,"y":8.161,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.37,"y":7.121,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.37,"y":8.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.214,"y":7.104,"w":1.5,"l":26.906},{"oc":"#d1efe7","x":69.214,"y":8.201,"w":1.5,"l":26.906},{"oc":"#d1efe7","x":69.265,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.265,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.86,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.86,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.455,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.455,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.497,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.497,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.093,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.093,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.688,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.688,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.73,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.73,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.326,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.326,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.921,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.921,"y":8.182,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.516,"y":7.12,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.516,"y":8.182,"w":1.5,"l":2.552},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#eef9f6","x":62.073,"y":9.684,"w":4.5,"l":1.063},{"oc":"#eef9f6","x":96.995,"y":9.684,"w":4.5,"l":1.063},{"oc":"#d1efe7","x":8.757,"y":7.133,"w":1.5,"l":1.064},{"oc":"#d1efe7","x":96.773,"y":7.133,"w":1.5,"l":1.064},{"oc":"#edf8f5","x":7.964,"y":6.274,"w":1.5,"l":40.116},{"oc":"#edf8f5","x":99.436,"y":6.274,"w":1.5,"l":40.116},{"oc":"#2b2e34","x":23.753,"y":2.353,"w":1.5,"l":1.044},{"oc":"#2b2e34","x":29.667,"y":2.353,"w":1.5,"l":1.044},{"oc":"#eef9f6","x":59.628,"y":5.397,"w":4.5,"l":0.743},{"oc":"#eef9f6","x":98.076,"y":5.397,"w":4.5,"l":0.743},{"oc":"#d1efe7","x":66.997,"y":40.718,"w":4.5,"l":3.259},{"oc":"#d1efe7","x":98.493,"y":40.718,"w":4.5,"l":3.259},{"oc":"#d1efe7","x":70.546,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.098,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.201,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.754,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.865,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.418,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.839,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.391,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.494,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.047,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.158,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.711,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.003,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.555,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.667,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.219,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.331,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.883,"y":40.762,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.546,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.098,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.201,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.754,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.865,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.418,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.839,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.391,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.494,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.047,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.158,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.711,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.003,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.555,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.667,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.219,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.331,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.883,"y":41.709,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.546,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.098,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.201,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.754,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.865,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.418,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.839,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.391,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.494,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.047,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.158,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.711,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.003,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.555,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.667,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.219,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.331,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.883,"y":42.843,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.436,"y":26.027,"w":4.5,"l":6.111},{"oc":"#d1efe7","x":98.983,"y":26.027,"w":4.5,"l":6.111},{"oc":"#d1efe7","x":70.761,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.313,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.416,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.969,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.08,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.633,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.709,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.262,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.373,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.926,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.218,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.77,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.882,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.434,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.546,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.098,"y":26.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.905,"y":27.254,"w":4.5,"l":0.817},{"oc":"#d1efe7","x":62.339,"y":27.254,"w":4.5,"l":0.817},{"oc":"#d1efe7","x":34.564,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":37.116,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":37.348,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":39.901,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":39.961,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":42.513,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":42.883,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":45.435,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":45.667,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":48.219,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":48.28,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":50.832,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":51.253,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":53.805,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":53.865,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":56.418,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":56.478,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":59.03,"y":27.118,"w":1.5,"l":0.976},{"oc":"#d1efe7","x":70.761,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.313,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.416,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.969,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.08,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.633,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.709,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.262,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.373,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.926,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.218,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.77,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.882,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.434,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.546,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.098,"y":27.143,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.761,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.313,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.416,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.969,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.08,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.633,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.709,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.262,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.373,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.926,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.218,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.77,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.882,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.434,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.546,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.098,"y":28.715,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.761,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.313,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.416,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.969,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.08,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.633,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.709,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.262,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.373,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.926,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.218,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.77,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.882,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.434,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.546,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.098,"y":29.859,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.761,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.313,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.416,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.969,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.08,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.633,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.709,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.262,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.373,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.926,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.218,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.77,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.882,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.434,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.546,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.098,"y":30.987,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":7.931,"y":32.871,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.734,"y":32.871,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.069,"y":32.928,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.372,"y":32.928,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.415,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.968,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.011,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.563,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.606,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.158,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.201,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.754,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.797,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.349,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.392,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.944,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.987,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.54,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.583,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.135,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.178,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.73,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.773,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.326,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.369,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.921,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.955,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.508,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.551,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.103,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.146,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.698,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.741,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.294,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.337,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.889,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.932,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.484,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.527,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.08,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.122,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.675,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.718,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.27,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.313,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.865,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.908,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.461,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.504,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.056,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.099,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.651,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.694,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.247,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.29,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.842,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.885,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.437,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.48,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.033,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.076,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.628,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.671,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.223,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.266,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.819,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.862,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.414,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.465,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":96.018,"y":32.928,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.112,"y":34.799,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":96.207,"y":34.799,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.198,"y":34.793,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.501,"y":34.793,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.544,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.097,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.14,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.692,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.735,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.287,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.33,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.883,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.926,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.478,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.521,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.073,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.116,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.669,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.712,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.264,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.307,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.859,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.902,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.455,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.497,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.05,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.084,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.637,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.68,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.232,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.275,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.827,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.87,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.422,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.465,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.018,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.061,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.613,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.656,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.208,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.251,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.804,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.847,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.399,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.442,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.994,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.037,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.59,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.633,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.185,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.228,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.78,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.823,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.376,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.419,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.971,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.014,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.566,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.376,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.929,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.972,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.524,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.567,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.119,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.162,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.715,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.766,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":96.319,"y":34.793,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.061,"y":36.068,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":52.112,"y":36.068,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.147,"y":36.062,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.45,"y":36.062,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.493,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.045,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.088,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.64,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.683,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.236,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.279,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.831,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.874,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.426,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.469,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.022,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.065,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.617,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.66,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.212,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.255,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.808,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.851,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.403,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.446,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.998,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.033,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.585,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.628,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.18,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.223,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.776,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.819,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.371,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.414,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.966,"y":36.062,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.078,"y":37.902,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":93.714,"y":37.902,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.164,"y":37.896,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.467,"y":37.896,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.51,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.062,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.105,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.658,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.701,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.253,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.296,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.848,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.891,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.444,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.487,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.039,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.082,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.634,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.677,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.23,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.272,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.825,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.868,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.42,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.463,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.015,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.179,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.731,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.774,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.326,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.369,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.922,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.965,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.517,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.56,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.112,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.155,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.708,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.751,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.303,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.346,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.898,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.789,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.341,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.384,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.937,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.715,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.268,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.311,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.863,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.906,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.458,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.501,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.222,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.774,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.817,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.369,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.412,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.965,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.008,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.56,"y":37.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.174,"y":37.893,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.726,"y":37.893,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.276,"y":36.065,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":96.182,"y":36.065,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":69.327,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.88,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.922,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.475,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.518,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.07,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.56,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.112,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.155,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.708,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.751,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.303,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.793,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.345,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.388,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.94,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.983,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.536,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.579,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":96.131,"y":36.081,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.464,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.016,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.059,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.612,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.655,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.207,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.25,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.802,"y":45.155,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.292,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.844,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.887,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.44,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.483,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.035,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.078,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.63,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.496,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.048,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.091,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.644,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.687,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.239,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.282,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.834,"y":45.168,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.321,"y":14.756,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":86.523,"y":14.756,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.407,"y":14.749,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.71,"y":14.749,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.753,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.305,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.348,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.901,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.943,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.496,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.539,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.091,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.134,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.686,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.729,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.282,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.325,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.877,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.92,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.472,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.515,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.068,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.111,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.663,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.706,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.258,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.422,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.974,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.017,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.569,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.612,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.165,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.208,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.76,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.803,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.355,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.398,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.951,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.993,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.546,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.589,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.141,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.184,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.736,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.779,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.332,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.375,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.927,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.97,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.522,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.565,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.118,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.161,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.713,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.756,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.308,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.187,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.74,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.783,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.335,"y":14.749,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.429,"y":14.79,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.981,"y":14.79,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.261,"y":16.106,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":86.523,"y":16.106,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.347,"y":16.099,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.65,"y":16.099,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.693,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.245,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.288,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.84,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.883,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.436,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.479,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.031,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.074,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.626,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.669,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.222,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.265,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.817,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.86,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.412,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.455,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.008,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.051,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.603,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.646,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.198,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.361,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.914,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.957,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.509,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.552,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.104,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.147,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.7,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.743,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.295,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.338,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.89,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.933,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.486,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.529,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.081,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.124,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.676,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.719,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.272,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.315,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.867,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.91,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.462,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.505,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.058,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.101,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.653,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.696,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.248,"y":16.099,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.248,"y":16.093,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.801,"y":16.093,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.261,"y":17.906,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":93.794,"y":17.906,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.347,"y":17.899,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.65,"y":17.899,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.693,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.245,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.288,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.84,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.883,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.436,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.479,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.031,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.074,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.626,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.669,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.222,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.265,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.817,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.86,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.412,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.455,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.008,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.051,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.603,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.646,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.198,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.361,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.914,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.957,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.509,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.552,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.104,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.147,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.7,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.743,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.295,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.338,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.89,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.933,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.486,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.529,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.081,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.972,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.524,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.567,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.119,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.898,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.451,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.493,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.046,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.089,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.641,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.684,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.236,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.061,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.613,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.656,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.208,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.251,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.804,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.847,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.399,"y":17.899,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.357,"y":17.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.909,"y":17.896,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.05,"y":16.093,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.602,"y":16.093,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.645,"y":16.093,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.197,"y":16.093,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.347,"y":19.881,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":86.548,"y":19.881,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.433,"y":19.875,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.736,"y":19.875,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.779,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.331,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.374,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.926,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.969,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.522,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.565,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.117,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.16,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.712,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.755,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.308,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.351,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.903,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.946,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.498,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.541,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.093,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.136,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.689,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.732,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.284,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.447,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.043,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.595,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.638,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.19,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.233,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.786,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.829,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.381,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.424,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.976,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.019,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.572,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.615,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.167,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.21,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.762,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.805,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.358,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.401,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.953,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.996,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.548,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.591,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.143,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.186,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.739,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.782,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.334,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.213,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.765,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.808,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.361,"y":19.875,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.454,"y":19.915,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.007,"y":19.915,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.347,"y":21.152,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":86.548,"y":21.152,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":8.433,"y":21.146,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.736,"y":21.146,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":10.779,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.331,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.374,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.926,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.969,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.522,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.565,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.117,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.16,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.712,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.755,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.308,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.351,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.903,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.946,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.498,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.541,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.093,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.136,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.689,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.732,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.284,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.447,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.043,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.595,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.638,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.19,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.233,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.786,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.829,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.381,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.424,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.976,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.019,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.572,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.615,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.167,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.21,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.762,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.805,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.358,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.401,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.953,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.996,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.548,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.591,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.143,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.186,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.739,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.782,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.334,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.213,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.765,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.808,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.361,"y":21.146,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.454,"y":21.187,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.007,"y":21.187,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":8.774,"y":8.874,"w":1.5,"l":1.064},{"oc":"#d1efe7","x":96.972,"y":8.874,"w":1.5,"l":1.064},{"oc":"#d1efe7","x":8.86,"y":8.868,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":11.163,"y":8.868,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":11.206,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.758,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.801,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.354,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.397,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":18.949,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":18.992,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":21.544,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":21.587,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":24.14,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":24.183,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":26.735,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":26.778,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":29.33,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":29.373,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":31.926,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":31.969,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":34.521,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":34.564,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":37.116,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":37.159,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":39.712,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":40.983,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":43.536,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":44.945,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":47.497,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":47.54,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":50.093,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":50.136,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":52.688,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":52.731,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":55.283,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":55.326,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":57.879,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":57.922,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":60.474,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":60.517,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":63.069,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":63.112,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":65.665,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":65.708,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":68.26,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":68.303,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":70.855,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":70.898,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":73.451,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":73.494,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":76.046,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":76.089,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":78.641,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":78.684,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":81.237,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":81.28,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":83.832,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":83.875,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":86.427,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":86.47,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":89.022,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":89.065,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":91.618,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":91.661,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":94.213,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":94.256,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":96.808,"y":8.868,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":8.651,"y":12.728,"w":1.5,"l":1.064},{"oc":"#d1efe7","x":96.849,"y":12.728,"w":1.5,"l":1.064},{"oc":"#d1efe7","x":8.737,"y":12.722,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":11.04,"y":12.722,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":11.083,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.636,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.679,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.231,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.274,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":18.826,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":18.869,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":21.422,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":21.465,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":24.017,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":24.06,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":26.612,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":26.655,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":29.208,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":29.251,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":31.803,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":31.846,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":34.398,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":34.441,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":36.994,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":37.036,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":39.589,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":40.861,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":43.413,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":44.822,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":47.375,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":47.418,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":49.97,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":50.013,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":52.565,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":52.608,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":55.161,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":55.204,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":57.756,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":57.799,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":60.351,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":60.394,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":62.947,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":62.99,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":65.542,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":65.585,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":68.137,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":68.18,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":70.733,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":70.776,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":73.328,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":73.371,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":75.923,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":75.966,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":78.519,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":78.561,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":81.114,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":81.157,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":83.709,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":83.752,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":86.304,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":86.347,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":88.9,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":88.943,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":91.495,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":91.538,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":94.09,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":94.133,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":96.686,"y":12.722,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":8.714,"y":10.95,"w":1.5,"l":1.022},{"oc":"#d1efe7","x":11.017,"y":10.95,"w":1.5,"l":1.022},{"oc":"#d1efe7","x":11.06,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.612,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.655,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.208,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.869,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":19.422,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":19.293,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":21.845,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":22.507,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":25.059,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":25.102,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":27.655,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":27.697,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":30.25,"y":10.954,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":30.229,"y":10.962,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":32.782,"y":10.962,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":8.843,"y":7.127,"w":1.5,"l":1.022},{"oc":"#d1efe7","x":11.146,"y":7.127,"w":1.5,"l":1.022},{"oc":"#d1efe7","x":11.189,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.741,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":13.784,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.337,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":16.998,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":19.551,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":19.422,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":21.974,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":22.636,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":25.188,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":25.231,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":27.783,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":27.826,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":30.379,"y":7.13,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":30.37,"y":7.121,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":32.922,"y":7.121,"w":1.5,"l":1.031},{"oc":"#d1efe7","x":69.214,"y":7.104,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":96.12,"y":7.104,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":69.265,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.817,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.86,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.412,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.455,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.008,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.497,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.05,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.093,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.645,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.688,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.24,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.73,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.283,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.326,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.878,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.921,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.473,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.516,"y":7.12,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":96.069,"y":7.12,"w":1.5,"l":1.063},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#eef9f6","x":62.073,"y":9.684,"w":34.922,"h":1.063,"clr":-1},{"oc":"#d1efe7","x":8.757,"y":7.133,"w":88.016,"h":1.064,"clr":-1},{"oc":"#edf8f5","x":7.964,"y":6.274,"w":91.472,"h":40.116,"clr":-1},{"oc":"#2b2e34","x":23.753,"y":2.353,"w":5.914,"h":1.044,"clr":-1},{"oc":"#eef9f6","x":59.628,"y":5.397,"w":38.448,"h":0.743,"clr":-1},{"oc":"#d1efe7","x":66.997,"y":40.718,"w":31.496,"h":3.259,"clr":-1},{"x":70.546,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":73.201,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":75.865,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":78.839,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":81.494,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":84.158,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":87.003,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":89.667,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":92.331,"y":40.762,"w":2.552,"h":1.063,"clr":1},{"x":70.546,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":73.201,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":75.865,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":78.839,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":81.494,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":84.158,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":87.003,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":89.667,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":92.331,"y":41.709,"w":2.552,"h":1.063,"clr":1},{"x":70.546,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":73.201,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":75.865,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":78.839,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":81.494,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":84.158,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":87.003,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":89.667,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"x":92.331,"y":42.843,"w":2.552,"h":1.062,"clr":1},{"oc":"#d1efe7","x":67.436,"y":26.027,"w":31.546,"h":6.111,"clr":-1},{"x":70.761,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":73.416,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":76.08,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":81.709,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":84.373,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":87.218,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":89.882,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"x":92.546,"y":26.071,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":32.905,"y":27.254,"w":29.434,"h":0.817,"clr":-1},{"x":34.564,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":37.348,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":39.961,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":42.883,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":45.667,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":48.28,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":51.253,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":53.865,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":56.478,"y":27.118,"w":2.552,"h":0.976,"clr":1},{"x":70.761,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":73.416,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":76.08,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":81.709,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":84.373,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":87.218,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":89.882,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":92.546,"y":27.143,"w":2.552,"h":1.063,"clr":1},{"x":70.761,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":73.416,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":76.08,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":81.709,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":84.373,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":87.218,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":89.882,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":92.546,"y":28.715,"w":2.552,"h":1.063,"clr":1},{"x":70.761,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":73.416,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":76.08,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":81.709,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":84.373,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":87.218,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":89.882,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":92.546,"y":29.859,"w":2.552,"h":1.063,"clr":1},{"x":70.761,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":73.416,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":76.08,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":81.709,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":84.373,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":87.218,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":89.882,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"x":92.546,"y":30.987,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":7.931,"y":32.871,"w":87.803,"h":1.097,"clr":-1},{"x":8.069,"y":32.928,"w":2.303,"h":1.059,"clr":1},{"x":10.415,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":13.011,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":15.606,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":18.201,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":20.797,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":23.392,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":25.987,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":28.583,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":31.178,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":33.773,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":36.369,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":38.955,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":41.551,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":44.146,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":46.741,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":49.337,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":51.932,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":54.527,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":57.122,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":59.718,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":62.313,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":64.908,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":67.504,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":70.099,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":72.694,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":75.29,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":77.885,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":80.48,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":83.076,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":85.671,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":88.266,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":90.862,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"x":93.465,"y":32.928,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.112,"y":34.799,"w":88.095,"h":1.097,"clr":-1},{"x":8.198,"y":34.793,"w":2.303,"h":1.059,"clr":1},{"x":10.544,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":13.14,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":15.735,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":18.33,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":20.926,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":23.521,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":26.116,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":28.712,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":31.307,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":33.902,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":36.497,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":39.084,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":41.68,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":44.275,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":46.87,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":49.465,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":52.061,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":54.656,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":57.251,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":59.847,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":62.442,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":65.037,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":67.633,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":70.228,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":72.823,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":75.419,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":78.014,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":83.376,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":85.972,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":88.567,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":91.162,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"x":93.766,"y":34.793,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.061,"y":36.068,"w":44.052,"h":1.097,"clr":-1},{"x":8.147,"y":36.062,"w":2.303,"h":1.059,"clr":1},{"x":10.493,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":13.088,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":15.683,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":18.279,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":20.874,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":23.469,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":26.065,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":28.66,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":31.255,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":33.851,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":36.446,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":39.033,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":41.628,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":44.223,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":46.819,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"x":49.414,"y":36.062,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.078,"y":37.902,"w":85.636,"h":1.097,"clr":-1},{"x":8.164,"y":37.896,"w":2.303,"h":1.053,"clr":1},{"x":10.51,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":13.105,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":15.701,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":18.296,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":20.891,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":23.487,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":26.082,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":28.677,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":31.272,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":33.868,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":36.463,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":39.179,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":41.774,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":44.369,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":46.965,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":49.56,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":52.155,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":54.751,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":57.346,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":61.789,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":64.384,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":68.715,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":71.311,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":73.906,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":76.501,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":83.222,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":85.817,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":88.412,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":91.008,"y":37.896,"w":2.552,"h":1.063,"clr":1},{"x":79.174,"y":37.893,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":69.276,"y":36.065,"w":26.906,"h":1.097,"clr":-1},{"x":69.327,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":71.922,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":74.518,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":77.56,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":80.155,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":82.751,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":85.793,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":88.388,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":90.983,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":93.579,"y":36.081,"w":2.552,"h":1.063,"clr":1},{"x":22.464,"y":45.155,"w":2.552,"h":1.063,"clr":1},{"x":25.059,"y":45.155,"w":2.552,"h":1.063,"clr":1},{"x":27.655,"y":45.155,"w":2.552,"h":1.063,"clr":1},{"x":30.25,"y":45.155,"w":2.552,"h":1.063,"clr":1},{"x":44.292,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"x":46.887,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"x":49.483,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"x":52.078,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"x":64.496,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"x":67.091,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"x":69.687,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"x":72.282,"y":45.168,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.321,"y":14.756,"w":78.202,"h":1.097,"clr":-1},{"x":8.407,"y":14.749,"w":2.303,"h":1.053,"clr":1},{"x":10.753,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":13.348,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":15.943,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":18.539,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":21.134,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":23.729,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":26.325,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":28.92,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":31.515,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":34.111,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":36.706,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":39.422,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":42.017,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":44.612,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":47.208,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":49.803,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":52.398,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":54.993,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":57.589,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":60.184,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":62.779,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":65.375,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":67.97,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":70.565,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":73.161,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":75.756,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":81.187,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":83.783,"y":14.749,"w":2.552,"h":1.063,"clr":1},{"x":78.429,"y":14.79,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.261,"y":16.106,"w":78.262,"h":1.097,"clr":-1},{"x":8.347,"y":16.099,"w":2.303,"h":1.053,"clr":1},{"x":10.693,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":13.288,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":15.883,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":18.479,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":21.074,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":23.669,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":26.265,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":28.86,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":31.455,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":34.051,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":36.646,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":39.361,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":41.957,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":44.552,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":47.147,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":49.743,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":52.338,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":54.933,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":57.529,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":60.124,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":62.719,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":65.315,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":67.91,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":70.505,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":73.101,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":75.696,"y":16.099,"w":2.552,"h":1.063,"clr":1},{"x":78.248,"y":16.093,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.261,"y":17.906,"w":85.534,"h":1.097,"clr":-1},{"x":8.347,"y":17.899,"w":2.303,"h":1.053,"clr":1},{"x":10.693,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":13.288,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":15.883,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":18.479,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":21.074,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":23.669,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":26.265,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":28.86,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":31.455,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":34.051,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":36.646,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":39.361,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":41.957,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":44.552,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":47.147,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":49.743,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":52.338,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":54.933,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":57.529,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":61.972,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":64.567,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":68.898,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":71.493,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":74.089,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":76.684,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":83.061,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":85.656,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":88.251,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":90.847,"y":17.899,"w":2.552,"h":1.063,"clr":1},{"x":79.357,"y":17.896,"w":2.552,"h":1.063,"clr":1},{"x":81.05,"y":16.093,"w":2.552,"h":1.063,"clr":1},{"x":83.645,"y":16.093,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.347,"y":19.881,"w":78.202,"h":1.097,"clr":-1},{"x":8.433,"y":19.875,"w":2.303,"h":1.053,"clr":1},{"x":10.779,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":13.374,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":15.969,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":18.565,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":21.16,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":23.755,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":26.351,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":28.946,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":31.541,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":34.136,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":36.732,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":39.447,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":42.043,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":44.638,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":47.233,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":49.829,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":52.424,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":55.019,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":57.615,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":60.21,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":62.805,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":65.401,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":67.996,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":70.591,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":73.186,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":75.782,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":81.213,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":83.808,"y":19.875,"w":2.552,"h":1.063,"clr":1},{"x":78.454,"y":19.915,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":8.347,"y":21.152,"w":78.202,"h":1.097,"clr":-1},{"x":8.433,"y":21.146,"w":2.303,"h":1.053,"clr":1},{"x":10.779,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":13.374,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":15.969,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":18.565,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":21.16,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":23.755,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":26.351,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":28.946,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":31.541,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":34.136,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":36.732,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":39.447,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":42.043,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":44.638,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":47.233,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":49.829,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":52.424,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":55.019,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":57.615,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":60.21,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":62.805,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":65.401,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":67.996,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":70.591,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":73.186,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":75.782,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":81.213,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":83.808,"y":21.146,"w":2.552,"h":1.063,"clr":1},{"x":78.454,"y":21.187,"w":2.552,"h":1.063,"clr":1},{"x":45.851,"y":22.416,"w":2.243,"h":0.534,"clr":1},{"x":54.264,"y":22.416,"w":2.243,"h":0.534,"clr":1},{"x":64.976,"y":22.416,"w":2.243,"h":0.534,"clr":1},{"oc":"#d1efe7","x":8.774,"y":8.874,"w":88.198,"h":1.064,"clr":-1},{"x":8.86,"y":8.868,"w":2.303,"h":1.028,"clr":1},{"x":11.206,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":13.801,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":16.397,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":18.992,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":21.587,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":24.183,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":26.778,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":29.373,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":31.969,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":34.564,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":37.159,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":40.983,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":44.945,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":47.54,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":50.136,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":52.731,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":55.326,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":57.922,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":60.517,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":63.112,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":65.708,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":68.303,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":70.898,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":73.494,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":76.089,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":78.684,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":81.28,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":83.875,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":86.47,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":89.065,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":91.661,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"x":94.256,"y":8.868,"w":2.552,"h":1.031,"clr":1},{"oc":"#d1efe7","x":8.651,"y":12.728,"w":88.198,"h":1.064,"clr":-1},{"x":8.737,"y":12.722,"w":2.303,"h":1.028,"clr":1},{"x":11.083,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":13.679,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":16.274,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":18.869,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":21.465,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":24.06,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":26.655,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":29.251,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":31.846,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":34.441,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":37.036,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":40.861,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":44.822,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":47.418,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":50.013,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":52.608,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":55.204,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":57.799,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":60.394,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":62.99,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":65.585,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":68.18,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":70.776,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":73.371,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":75.966,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":78.561,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":81.157,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":83.752,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":86.347,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":88.943,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":91.538,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":94.133,"y":12.722,"w":2.552,"h":1.031,"clr":1},{"x":64.089,"y":10.115,"w":2.57,"h":0.518,"clr":1},{"x":75.964,"y":10.166,"w":2.512,"h":0.518,"clr":1},{"x":8.714,"y":10.95,"w":2.303,"h":1.022,"clr":1},{"x":11.06,"y":10.954,"w":2.552,"h":1.031,"clr":1},{"x":13.655,"y":10.954,"w":2.552,"h":1.031,"clr":1},{"x":16.869,"y":10.954,"w":2.552,"h":1.031,"clr":1},{"x":19.293,"y":10.954,"w":2.552,"h":1.031,"clr":1},{"x":22.507,"y":10.954,"w":2.552,"h":1.031,"clr":1},{"x":25.102,"y":10.954,"w":2.552,"h":1.031,"clr":1},{"x":27.697,"y":10.954,"w":2.552,"h":1.031,"clr":1},{"x":30.229,"y":10.962,"w":2.552,"h":1.031,"clr":1},{"x":46.995,"y":6.509,"w":2.57,"h":0.518,"clr":1},{"x":58.776,"y":6.556,"w":2.512,"h":0.518,"clr":1},{"x":8.843,"y":7.127,"w":2.303,"h":1.022,"clr":1},{"x":11.189,"y":7.13,"w":2.552,"h":1.031,"clr":1},{"x":13.784,"y":7.13,"w":2.552,"h":1.031,"clr":1},{"x":16.998,"y":7.13,"w":2.552,"h":1.031,"clr":1},{"x":19.422,"y":7.13,"w":2.552,"h":1.031,"clr":1},{"x":22.636,"y":7.13,"w":2.552,"h":1.031,"clr":1},{"x":25.231,"y":7.13,"w":2.552,"h":1.031,"clr":1},{"x":27.826,"y":7.13,"w":2.552,"h":1.031,"clr":1},{"x":30.37,"y":7.121,"w":2.552,"h":1.031,"clr":1},{"oc":"#d1efe7","x":69.214,"y":7.104,"w":26.906,"h":1.097,"clr":-1},{"x":69.265,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":71.86,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":74.455,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":77.497,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":80.093,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":82.688,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":85.73,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":88.326,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":90.921,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":93.516,"y":7.12,"w":2.552,"h":1.063,"clr":1},{"x":-1.547,"y":35.127,"w":1.547,"h":9.149,"clr":1}],"Texts":[{"oc":"#2b2e34","x":12.056,"y":2.135,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.056,"y":2.66,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":23.941,"y":2.401,"w":2.424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":30.815,"y":2.401,"w":6.248,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20H%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":44.395,"y":2.401,"w":5.102,"clr":-1,"A":"left","R":[{"T":"Homeowner","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":23.941,"y":3.3019999999999996,"w":18.21199999999999,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20and%20Renter%20Property%20Tax%20Credit%20%20%20%20%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":42.862,"y":46.405,"w":10.763000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20H%20%20%20P1","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":42.862,"y":47.217,"w":19.1,"clr":-1,"A":"left","R":[{"T":"Homeowner%20and%20Renter%20Property%20Tax%20Credit%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":75.877,"y":47.217,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%205","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.163,"y":4.061,"w":24.956000000000007,"clr":-1,"A":"left","R":[{"T":"Important%3A%20Read%20eligibility%20requirements%20before%20completing.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.163,"y":4.661,"w":17.02,"clr":-1,"A":"left","R":[{"T":"Print%20in%20CAPITAL%20letters%20using%20black%20ink.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.383,"y":40.827,"w":0.602,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.653,"y":40.827,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":94.883,"y":40.828,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.612,"y":40.827,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.374,"y":41.921,"w":0.602,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.644,"y":41.921,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":94.874,"y":41.921,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.603,"y":41.921,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.374,"y":43.055,"w":0.602,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.644,"y":43.055,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":94.874,"y":43.055,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.603,"y":43.055,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":69.969,"y":39.109,"w":15.001000000000001,"clr":-1,"A":"left","R":[{"T":"Round%20cents%20to%20the%20nearest%20dollar.%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":69.969,"y":39.679,"w":18.341000000000005,"clr":-1,"A":"left","R":[{"T":"If%20the%20amount%20is%20zero%2C%20leave%20the%20line%20blank.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":12.632,"y":47.139,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.991,"y":25.324,"w":17.928,"clr":-1,"A":"left","R":[{"T":"Section%20A%20%20Credit%20claim%20based%20on%20rent%20paid","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":7.991,"y":25.999,"w":14.022399999999996,"clr":-1,"A":"left","R":[{"T":"1%20Total%20household%20gross%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.501,"y":25.999,"w":10.408000000000001,"clr":-1,"A":"left","R":[{"T":"From%20Line%20w%20on%20page%203.%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":42.865,"y":25.999,"w":17.657000000000004,"clr":-1,"A":"left","R":[{"T":"If%20over%20%2420%2C000%2C%20do%20not%20claim%20this%20credit.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#2b2e34","x":7.991,"y":27.062,"w":15.576999999999996,"clr":-1,"A":"left","R":[{"T":"2%20Rent%20paid%20on%20the%20property%20in%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.991,"y":28.749,"w":9.559999999999999,"clr":-1,"A":"left","R":[{"T":"3%20Property%20tax%20credit.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.55,"y":28.749,"w":3.638,"clr":-1,"A":"left","R":[{"T":"Use%20the%20","S":-1,"TS":[0,9.687999999999999,0,0]}]},{"oc":"#2b2e34","x":26.732,"y":28.749,"w":4.297,"clr":-1,"A":"left","R":[{"T":"worksheet","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":32.345,"y":28.749,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.687999999999999,0,0]}]},{"oc":"#2b2e34","x":7.991,"y":29.749,"w":32.875,"clr":-1,"A":"left","R":[{"T":"4%20Rent%20supplements%20received%20in%202013%20by%20you%20or%20your%20landlord%20on%20your%20behalf.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.991,"y":30.811,"w":9.559999999999999,"clr":-1,"A":"left","R":[{"T":"5%20Property%20tax%20credit.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.991,"y":31.936999999999998,"w":0.903,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":9.538,"y":31.936,"w":7.030999999999999,"clr":-1,"A":"left","R":[{"T":"Landlord%E2%80%99s%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.949,"y":23.95,"w":15.001000000000001,"clr":-1,"A":"left","R":[{"T":"Round%20cents%20to%20the%20nearest%20dollar.%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":70.949,"y":24.52,"w":18.341000000000005,"clr":-1,"A":"left","R":[{"T":"If%20the%20amount%20is%20zero%2C%20leave%20the%20line%20blank.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":67.245,"y":25.971,"w":0.602,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.859,"y":25.971,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.089,"y":25.971,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.818,"y":25.971,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":31.6,"y":27.13,"w":1.505,"clr":1,"A":"left","R":[{"T":"%20%20%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":58.823,"y":27.13,"w":0.301,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":59.547,"y":27.13,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":62.587,"y":27.044,"w":1.94,"clr":-1,"A":"left","R":[{"T":"x.15","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":65.255,"y":27.044,"w":1.134,"clr":-1,"A":"left","R":[{"T":"%20%3E","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.245,"y":27.042,"w":0.602,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.859,"y":27.043,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.089,"y":27.043,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.818,"y":27.043,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.26,"y":28.77,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.874,"y":28.77,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.104,"y":28.77,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.833,"y":28.77,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.245,"y":29.758,"w":0.602,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.859,"y":29.758,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.089,"y":29.758,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.818,"y":29.758,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.245,"y":30.824,"w":0.602,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,12.6,0,0]}]},{"x":68.859,"y":30.824,"w":0.903,"clr":1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,15,0,0]}]},{"x":95.089,"y":30.824,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":95.818,"y":30.824,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":52.284,"y":35.995,"w":12.352,"clr":-1,"A":"left","R":[{"T":"Landlord%E2%80%99s%20telephone%20number","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":13.302,"y":27.907,"w":37.717999999999996,"clr":-1,"A":"left","R":[{"T":"If%2015%25%20of%20the%20rent%20paid%20amount%20is%20more%20than%20the%20line%201%20amount%20do%20not%20claim%20the%20credit.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":7.862,"y":33.803,"w":16.951999999999998,"clr":-1,"A":"left","R":[{"T":"Landlord%E2%80%99s%20address%20(number%20and%20street)%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":83.659,"y":33.803,"w":7.9750000000000005,"clr":-1,"A":"left","R":[{"T":"Apartment%20number","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":7.904999999999999,"y":36.948,"w":1.9169999999999998,"clr":-1,"A":"left","R":[{"T":"City%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":61.659,"y":36.948,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":68.62,"y":36.948,"w":3.7619999999999996,"clr":-1,"A":"left","R":[{"T":"Zip%20Code","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":7.862,"y":39.887,"w":23.205000000000005,"clr":-1,"A":"left","R":[{"T":"Section%20B%20%20Credit%20claim%20based%20on%20real%20property%20tax%20paid","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":29.739,"y":40.824,"w":10.27,"clr":-1,"A":"left","R":[{"T":"From%20Line%20w%20on%20page%203.%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":43.265,"y":40.824,"w":17.405,"clr":-1,"A":"left","R":[{"T":"If%20over%20%2420%2C000%2C%20do%20not%20claim%20this%20credit.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#2b2e34","x":22.987,"y":43.074,"w":8.536999999999999,"clr":-1,"A":"left","R":[{"T":"Use%20the%20worksheet.%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":7.862,"y":44.199,"w":1.505,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":8.372,"y":13.832,"w":20.316000000000006,"clr":-1,"A":"left","R":[{"T":"Mailing%20address%20(number%2C%20street%20and%20apartment)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.406,"y":18.901,"w":4.736000000000001,"clr":-1,"A":"left","R":[{"T":"Address%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":14.791,"y":18.901,"w":1.304,"clr":-1,"A":"left","R":[{"T":"DC","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":16.949,"y":18.901,"w":42.584999999999994,"clr":-1,"A":"left","R":[{"T":"property%20(number%2C%20street%20and%20apartment)%20for%20which%20you%20are%20claiming%20the%20credit%20if%20different%20from%20above","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.286,"y":16.957,"w":1.9169999999999998,"clr":-1,"A":"left","R":[{"T":"City%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.04,"y":16.957,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.001,"y":16.957,"w":3.7619999999999996,"clr":-1,"A":"left","R":[{"T":"Zip%20Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.904999999999999,"y":22.08,"w":33.696999999999974,"clr":-1,"A":"left","R":[{"T":"Type%20of%20property%20for%20which%20you%20are%20claiming%20the%20credit.%20Fill%20in%20only%20one%3A%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.487,"y":5.642,"w":9.052000000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20information%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":7.39,"y":23.198,"w":0.788,"clr":-1,"A":"left","R":[{"T":"%E2%97%86","S":43,"TS":[2,10,0,0]}]},{"oc":"#231e21","x":9.541,"y":23.198,"w":22.778000000000016,"clr":-1,"A":"left","R":[{"T":"Complete%20Section%20A%20or%20Section%20B%2C%20whichever%20applies.","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":45.294,"y":23.198,"w":0.788,"clr":-1,"A":"left","R":[{"T":"%E2%97%86","S":43,"TS":[2,10,0,0]}]},{"oc":"#2b2e34","x":8.507,"y":9.888,"w":18.327999999999992,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20SSN","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.636,"y":6.138,"w":14.516,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20(SSN)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.097,"y":7.273999999999999,"w":13.551,"clr":-1,"A":"left","R":[{"T":"Your%20daytime%20telephone%20number","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":8.147,"y":23.884,"w":36.00899999999999,"clr":-1,"A":"left","R":[{"T":"Do%20not%20claim%20this%20credit%20for%20an%20exempt%20property%20owned%20by%20a%20government%2C%20a%20house%20of%20","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":35.749,"y":6.188,"w":7.135000000000001,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20you%20are%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":49.674,"y":6.188,"w":4.776000000000001,"clr":-1,"A":"left","R":[{"T":"62%20or%20older","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":61.621,"y":6.188,"w":7.362000000000001,"clr":-1,"A":"left","R":[{"T":"Blind%20or%20disabled","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.167,"y":9.847,"w":20.127000000000002,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20spouse%2Fregistered%20domestic%20partner%20is%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.033,"y":9.847,"w":4.776000000000001,"clr":-1,"A":"left","R":[{"T":"62%20or%20older","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":78.98,"y":9.847,"w":7.362000000000001,"clr":-1,"A":"left","R":[{"T":"Blind%20or%20disabled","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.53,"y":11.831,"w":20.735999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20first%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":41.038,"y":11.831,"w":1.7249999999999999,"clr":-1,"A":"left","R":[{"T":"M.I.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":44.906,"y":11.831,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.415,"y":22.08,"w":2.67,"clr":-1,"A":"left","R":[{"T":"House","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":56.639,"y":22.08,"w":4.430000000000001,"clr":-1,"A":"left","R":[{"T":"Apartment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.309,"y":22.08,"w":6.565,"clr":-1,"A":"left","R":[{"T":"Rooming%20house","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.147,"y":24.484,"w":15.616000000000007,"clr":-1,"A":"left","R":[{"T":"worship%20or%20a%20non-profit%20organization.","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":22.901,"y":30.812,"w":32.85699999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%204%20from%20Line%203%2C%20D-40%20filers%20enter%20here%20and%20on%20Line%2029%20of%20D-40.","S":-1,"TS":[0,9.687999999999999,0,0]}]},{"oc":"#2b2e34","x":10.569,"y":44.199,"w":55.794,"clr":-1,"A":"left","R":[{"T":"Enter%20information%20from%20your%20real%20property%20tax%20bill%20or%20assessment.%20If%20a%20section%20is%20blank%20on%20your%20property%20tax%20bill%2C%20leave%20it%20blank%20here.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":11.422,"y":45.012,"w":6.489,"clr":-1,"A":"left","R":[{"T":"Square%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.238,"y":45.012,"w":5.881,"clr":-1,"A":"left","R":[{"T":"Suffix%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.894,"y":45.012,"w":4.875,"clr":-1,"A":"left","R":[{"T":"Lot%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":7.977,"w":6.4559999999999995,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":41.137,"y":7.977,"w":1.7249999999999999,"clr":-1,"A":"left","R":[{"T":"M.I.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":45.005,"y":7.977,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.862,"y":40.824,"w":0.593,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.226,"y":40.824,"w":12.939,"clr":-1,"A":"left","R":[{"T":"Total%20household%20gross%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.862,"y":41.949,"w":0.602,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.226,"y":41.949,"w":24.548000000000005,"clr":-1,"A":"left","R":[{"T":"DC%20real%20property%20tax%20paid%20by%20you%20on%20the%20property%20in%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.862,"y":43.074,"w":0.602,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.226,"y":43.074,"w":8.055,"clr":-1,"A":"left","R":[{"T":"Property%20tax%20credit%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":218,"AM":1024,"x":8.845,"y":7.247,"w":23.826,"h":0.862},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":219,"AM":1024,"x":69.45,"y":7.247,"w":26.521,"h":0.916},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":220,"AM":1024,"x":8.659,"y":8.99,"w":30.707,"h":0.862},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":221,"AM":1024,"x":40.794,"y":9.044,"w":2.764,"h":0.862,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":222,"AM":1024,"x":45.076,"y":8.99,"w":51.643,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":225,"AM":1024,"x":9.032,"y":11.059,"w":23.826,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":226,"AM":1024,"x":8.681,"y":12.858,"w":30.707,"h":0.862},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPMI","EN":0},"TI":227,"AM":1024,"x":40.891,"y":12.885,"w":2.764,"h":0.862,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":228,"AM":1024,"x":44.873,"y":12.858,"w":51.868,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":229,"AM":1024,"x":8.495,"y":14.854,"w":77.871,"h":0.971,"TU":"ADDRESS"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":230,"AM":1024,"x":8.513,"y":16.231,"w":77.871,"h":0.971,"TU":"ADDRESS"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":231,"AM":1024,"x":8.409,"y":18.046,"w":51.443,"h":0.889,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":232,"AM":1024,"x":60.636,"y":18.019,"w":6.208,"h":0.862,"TU":"State"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":233,"AM":1024,"x":68.878,"y":18.019,"w":24.473,"h":0.862,"TU":"Zip Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR3","EN":0},"TI":234,"AM":0,"x":8.513,"y":19.961,"w":77.871,"h":0.971,"TU":"Address of DC property (number, street and apartment) for which you are claiming the credit if different from above."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR4","EN":0},"TI":235,"AM":0,"x":8.418,"y":21.233,"w":77.871,"h":0.971,"TU":"Address of DC property (number, street and apartment) for which you are claiming the credit if different from above continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCOMEA","EN":0},"TI":239,"AM":0,"x":70.895,"y":26.211,"w":24.005,"h":0.884,"TU":"Line 1. Total household gross income. From Line w on page 3. If over $20,000, do not claim this credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENT","EN":0},"TI":240,"AM":0,"x":34.622,"y":27.192,"w":24.23,"h":0.884,"TU":"Line 2. Rent paid on the property in 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENTPERC","EN":0},"TI":241,"AM":1024,"x":70.988,"y":27.293,"w":24.005,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":242,"AM":0,"x":70.984,"y":28.834,"w":24.005,"h":0.884,"TU":"Line 3. Property tax credit. Use the worksheet."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENTSUPP","EN":0},"TI":243,"AM":0,"x":70.904,"y":29.951,"w":24.005,"h":0.884,"TU":"Line 4. Rent supplements received in 2013 by you or your landlord on your behalf."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDITA","EN":0},"TI":244,"AM":1024,"x":70.933,"y":31.112,"w":24.005,"h":0.884},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LLNAME","EN":0},"TI":245,"AM":0,"x":7.964,"y":33.013,"w":87.804,"h":0.932,"TU":"Line 6. Landlord's name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LLADDR","EN":0},"TI":246,"AM":0,"x":8.318,"y":34.9,"w":71.932,"h":0.862,"TU":"Landlord's address (number and street)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LLAPTNUM","EN":0},"TI":247,"AM":0,"x":83.425,"y":34.935,"w":12.796,"h":0.862,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LLADDR2","EN":0},"TI":248,"AM":0,"x":7.923,"y":36.208,"w":43.782,"h":0.862,"TU":"Landlord's address continued."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"LLPHONE","EN":0},"TI":249,"AM":0,"x":69.45,"y":36.214,"w":26.521,"h":0.916,"TU":"Landlord's telephone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LLCITY","EN":0},"TI":250,"AM":0,"x":8.278,"y":38.043,"w":51.643,"h":0.862,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LLSTATE","EN":0},"TI":251,"AM":0,"x":61.728,"y":37.951,"w":4.816,"h":0.953,"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":"LLZIP","EN":0},"TI":252,"AM":0,"x":68.847,"y":38.052,"w":24.698,"h":0.862,"TU":"Zip Code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCOMEB","EN":0},"TI":253,"AM":0,"x":70.723,"y":40.812,"w":24.005,"h":0.884,"TU":"Line 7. Total household gross income. From Line w on page 3. If over $20,000, do not claim this credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROPTAX","EN":0},"TI":254,"AM":0,"x":70.815,"y":41.867,"w":24.005,"h":0.884,"TU":"Line 8. DC real property tax paid by you on the property in 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDITB","EN":0},"TI":255,"AM":0,"x":70.844,"y":43.028,"w":24.005,"h":0.884,"TU":"Line 9. Property tax credit. Use the worksheet."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SQNUM","EN":0},"TI":256,"AM":0,"x":22.558,"y":45.293,"w":10.101,"h":0.862,"TU":"Line 10. Square number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SUFNUM","EN":0},"TI":257,"AM":0,"x":44.344,"y":45.293,"w":10.101,"h":0.862,"TU":"Suffix number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOTNUM","EN":0},"TI":258,"AM":0,"x":64.688,"y":45.313,"w":10.101,"h":0.862,"TU":"Lot number."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGBLDIS1","EN":0},"TI":216,"AM":0,"x":47.523,"y":6.327,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXSP1","EN":0},"TI":217,"AM":0,"x":59.358,"y":6.37,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGBLDIS2","EN":0},"TI":223,"AM":0,"x":64.693,"y":9.944,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXSP2","EN":0},"TI":224,"AM":0,"x":76.522,"y":9.971,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PROPBX1","EN":0},"TI":236,"AM":0,"x":46.144,"y":22.243,"w":1.419,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PROPBX2","EN":0},"TI":237,"AM":0,"x":54.559,"y":22.27,"w":1.419,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PROPBX3","EN":0},"TI":238,"AM":0,"x":65.414,"y":22.27,"w":1.494,"h":0.833,"checked":false}],"id":{"Id":"PROPBXRB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#edf8f5","x":6.548,"y":4.923,"w":1.5,"l":91.919},{"oc":"#edf8f5","x":6.548,"y":44.281,"w":1.5,"l":91.919},{"oc":"#d1efe7","x":18.391,"y":3.554,"w":1.5,"l":39.205},{"oc":"#d1efe7","x":18.391,"y":4.582,"w":1.5,"l":39.205},{"oc":"#2b2e34","x":6.609,"y":5.188,"w":4.5,"l":91.652},{"oc":"#d1efe7","x":7.081,"y":10.438,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":7.081,"y":11.535,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":7.167,"y":10.432,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":7.167,"y":11.491,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.513,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.513,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.109,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.109,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.704,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.704,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.299,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.299,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.895,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.895,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.49,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.49,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.085,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.085,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.68,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.68,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.276,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.276,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.871,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.871,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.466,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.466,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.088,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.088,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.674,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.674,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.27,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.27,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.068,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.068,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.038,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.038,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.634,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.634,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.229,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.229,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.824,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.824,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.42,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.42,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.015,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.015,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.61,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.61,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.205,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.205,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.968,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.968,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.563,"y":10.432,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.563,"y":11.494,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":7.064,"y":12.294,"w":1.5,"l":24.492},{"oc":"#d1efe7","x":7.064,"y":13.391,"w":1.5,"l":24.492},{"oc":"#d1efe7","x":7.15,"y":12.288,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":7.15,"y":13.341,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.496,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":9.496,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.091,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.091,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.305,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.305,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.901,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.901,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.115,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.115,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.71,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.71,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.305,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.305,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.901,"y":12.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.901,"y":13.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":7.58,"y":20.107,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":7.58,"y":21.204,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":7.666,"y":20.101,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":7.666,"y":21.16,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.012,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.012,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.607,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.607,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.202,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.202,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.798,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.798,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.393,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.393,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.988,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.988,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.584,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.584,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.179,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.179,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.774,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.774,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.37,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.37,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.965,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.965,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.586,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.586,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.173,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.173,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.768,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.768,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.566,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":47.566,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.537,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.537,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.132,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.132,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.727,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.727,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.323,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.323,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.918,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.918,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.513,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.513,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.109,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.109,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.704,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.704,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.299,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.299,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.895,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.895,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.49,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.49,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.085,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.085,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.68,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.68,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.276,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.276,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.871,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.871,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.466,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.466,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.062,"y":20.101,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.062,"y":21.163,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":7.58,"y":21.919,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":7.58,"y":23.016,"w":1.5,"l":88.198},{"oc":"#d1efe7","x":7.666,"y":21.913,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":7.666,"y":22.973,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.012,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.012,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.607,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.607,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.202,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.202,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.798,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.798,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.393,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.393,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.988,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":22.988,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.584,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.584,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.179,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.179,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.774,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.774,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.37,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.37,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.965,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.965,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.586,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.586,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.173,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.173,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.768,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.768,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.363,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.363,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.537,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.537,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.132,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.132,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.727,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.727,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.323,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.323,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.918,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.918,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.513,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.513,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.109,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.109,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.704,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.704,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.299,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.299,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.895,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.895,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.49,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.49,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.68,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.68,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.276,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.276,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.871,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.871,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.466,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":90.466,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.062,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.062,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.941,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.941,"y":22.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":7.726,"y":23.769,"w":1.5,"l":84.337},{"oc":"#d1efe7","x":7.726,"y":24.866,"w":1.5,"l":84.337},{"oc":"#d1efe7","x":7.812,"y":23.763,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":7.812,"y":24.823,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.158,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.158,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.753,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.753,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.348,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.348,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.944,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.944,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.539,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.539,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.134,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.134,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.73,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.73,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.325,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.325,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.92,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":30.92,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.516,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.516,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.111,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.111,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.732,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.732,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.319,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.319,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.914,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.914,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.509,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.509,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.683,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.683,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.278,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.278,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.873,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.873,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.689,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.689,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.284,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.284,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.255,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.255,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.85,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.85,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.445,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.445,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.041,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.041,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.636,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":77.636,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.452,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.452,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.047,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.047,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.642,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.642,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.238,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.238,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.088,"y":23.763,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.088,"y":24.826,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":7.837,"y":25.613,"w":1.5,"l":39.617},{"oc":"#d1efe7","x":7.837,"y":27.266,"w":1.5,"l":39.617},{"oc":"#d1efe7","x":48.314,"y":25.613,"w":1.5,"l":9.797},{"oc":"#d1efe7","x":48.314,"y":27.266,"w":1.5,"l":9.797},{"oc":"#d1efe7","x":58.97,"y":25.613,"w":1.5,"l":17.061},{"oc":"#d1efe7","x":58.97,"y":27.266,"w":1.5,"l":17.061},{"oc":"#d1efe7","x":76.906,"y":25.613,"w":1.5,"l":18.813},{"oc":"#d1efe7","x":76.906,"y":27.266,"w":1.5,"l":18.813},{"oc":"#d1efe7","x":7.079,"y":40.343,"w":1.5,"l":31.831},{"oc":"#d1efe7","x":7.079,"y":41.477,"w":1.5,"l":31.831},{"oc":"#d1efe7","x":39.366,"y":40.352,"w":1.5,"l":9.702},{"oc":"#d1efe7","x":39.366,"y":41.486,"w":1.5,"l":9.702},{"oc":"#d1efe7","x":51.466,"y":40.343,"w":1.5,"l":31.831},{"oc":"#d1efe7","x":51.466,"y":41.477,"w":1.5,"l":31.831},{"oc":"#d1efe7","x":83.752,"y":40.352,"w":1.5,"l":9.702},{"oc":"#d1efe7","x":83.752,"y":41.486,"w":1.5,"l":9.702},{"oc":"#d1efe7","x":43.972,"y":42.324,"w":4.5,"l":24.234},{"oc":"#d1efe7","x":43.972,"y":43.333,"w":4.5,"l":24.234},{"oc":"#d1efe7","x":43.989,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":43.989,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":46.713,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":46.713,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":49.429,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":49.429,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":52.153,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":52.153,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":54.877,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":54.877,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":57.593,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":57.593,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":60.326,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":60.326,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":63.05,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":63.05,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":65.766,"y":42.261,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":65.766,"y":43.358,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":69.839,"y":42.314,"w":4.5,"l":27.904},{"oc":"#d1efe7","x":69.839,"y":43.324,"w":4.5,"l":27.904},{"oc":"#d1efe7","x":69.796,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":69.796,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":72.52,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":72.52,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":75.236,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":75.236,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":78.459,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":78.459,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":81.183,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":81.183,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":83.898,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":83.898,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":87.13,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":87.13,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":89.845,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":89.845,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":92.561,"y":42.252,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":92.561,"y":43.349,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":95.242,"y":42.242,"w":1.5,"l":2.63},{"oc":"#d1efe7","x":95.242,"y":43.339,"w":1.5,"l":2.63},{"oc":"#2b2e34","x":6.648,"y":36.937,"w":4.5,"l":91.652},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#edf8f5","x":6.548,"y":4.923,"w":1.5,"l":39.359},{"oc":"#edf8f5","x":98.467,"y":4.923,"w":1.5,"l":39.359},{"oc":"#d1efe7","x":18.391,"y":3.554,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":57.595,"y":3.554,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":7.081,"y":10.438,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.279,"y":10.438,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":7.167,"y":10.432,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":9.47,"y":10.432,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":9.513,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.066,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.109,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.661,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.704,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.256,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.299,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.852,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.895,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.447,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.49,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.042,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.085,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.637,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.68,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.233,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.276,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.828,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.871,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.423,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.466,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.019,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.088,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.64,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.674,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.227,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.27,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.822,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.068,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.62,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.038,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.591,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.634,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.186,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.229,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.781,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.824,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.377,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.42,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.972,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.015,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.567,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.61,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.163,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.205,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.758,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.801,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.968,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.52,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.563,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.116,"y":10.432,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":7.064,"y":12.294,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":31.556,"y":12.294,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":7.15,"y":12.288,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":9.453,"y":12.288,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":9.496,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.048,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.091,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.644,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.305,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.858,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.901,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.453,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.115,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.667,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.71,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.262,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.305,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.858,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.901,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.453,"y":12.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":7.58,"y":20.107,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.777,"y":20.107,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":7.666,"y":20.101,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":9.969,"y":20.101,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.012,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.564,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.607,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.159,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.202,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.755,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.798,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.35,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.393,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.945,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.988,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.541,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.584,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.136,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.179,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.731,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.774,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.327,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.37,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.922,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.965,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.517,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.586,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.138,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.173,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.725,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.768,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.32,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":47.566,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.119,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.537,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.089,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.132,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.684,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.727,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.28,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.323,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.875,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.918,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.47,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.513,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.066,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.109,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.661,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.704,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.256,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.299,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.852,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.895,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.447,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.49,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.042,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.085,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.638,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.68,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.233,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.276,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.828,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.871,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.423,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.466,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.019,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.062,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.614,"y":20.101,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":7.58,"y":21.919,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.777,"y":21.919,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":7.666,"y":21.913,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":9.969,"y":21.913,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.012,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.564,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.607,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.159,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.202,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.755,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.798,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.35,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.393,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.945,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.988,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.541,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.584,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.136,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.179,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.731,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.774,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.327,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.37,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.922,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.965,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.517,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.586,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.138,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.173,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.725,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.768,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.32,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.363,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.916,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.537,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.089,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.132,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.684,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.727,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.28,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.323,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.875,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.918,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.47,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.513,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.066,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.109,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.661,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.704,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.256,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.299,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.852,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.895,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.447,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.49,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.042,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.68,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.233,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.276,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.828,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.871,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.423,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":90.466,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.019,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.062,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.614,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.941,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.494,"y":21.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":7.726,"y":23.769,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":92.062,"y":23.769,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":7.812,"y":23.763,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.115,"y":23.763,"w":1.5,"l":1.059},{"oc":"#d1efe7","x":10.158,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.71,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.753,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.305,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.348,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.901,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.944,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.496,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.539,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.091,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.134,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.687,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.73,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.282,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.325,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.877,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.92,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.473,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.516,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.068,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.111,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.663,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.732,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.284,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.319,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.871,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.914,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.466,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.509,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.062,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.683,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.235,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.278,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.83,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.873,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.426,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.689,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.241,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.284,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.837,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.255,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.807,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.85,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.402,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.445,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.998,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.041,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.593,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.636,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.188,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.452,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.004,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.047,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.599,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.642,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.195,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.238,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.79,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.088,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.64,"y":23.763,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":7.837,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":47.455,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":48.314,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":58.111,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":58.97,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":76.031,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":76.906,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":95.719,"y":25.613,"w":1.5,"l":1.653},{"oc":"#d1efe7","x":7.079,"y":40.343,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":38.91,"y":40.343,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":39.366,"y":40.352,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":49.068,"y":40.352,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":51.466,"y":40.343,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":83.297,"y":40.343,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":83.752,"y":40.352,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":93.455,"y":40.352,"w":1.5,"l":1.134},{"oc":"#d1efe7","x":43.972,"y":42.324,"w":4.5,"l":1.009},{"oc":"#d1efe7","x":68.206,"y":42.324,"w":4.5,"l":1.009},{"oc":"#d1efe7","x":43.989,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":46.619,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":46.713,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":49.343,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":49.429,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":52.059,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":52.153,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":54.783,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":54.877,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":57.507,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":57.593,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":60.223,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":60.326,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":62.955,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":63.05,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":65.68,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":65.766,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":68.395,"y":42.261,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":69.839,"y":42.314,"w":4.5,"l":1.009},{"oc":"#d1efe7","x":97.743,"y":42.314,"w":4.5,"l":1.009},{"oc":"#d1efe7","x":69.796,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":72.426,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":72.52,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":75.15,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":75.236,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":77.866,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":78.459,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":81.088,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":81.183,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":83.812,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":83.898,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":86.528,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":87.13,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":89.759,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":89.845,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":92.475,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":92.561,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.191,"y":42.252,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.242,"y":42.242,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":97.872,"y":42.242,"w":1.5,"l":1.097},{"dsh":1,"oc":"#ff2d16","x":102.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#edf8f5","x":6.548,"y":4.923,"w":91.919,"h":39.359,"clr":-1},{"x":18.391,"y":3.554,"w":39.205,"h":1.028,"clr":1},{"oc":"#d1efe7","x":7.081,"y":10.438,"w":88.198,"h":1.097,"clr":-1},{"x":7.167,"y":10.432,"w":2.303,"h":1.059,"clr":1},{"x":9.513,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":12.109,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":14.704,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":17.299,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":19.895,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":22.49,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":25.085,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":27.68,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":30.276,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":32.871,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":35.466,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":38.088,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":40.674,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":43.27,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":47.068,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":51.038,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":53.634,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":56.229,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":58.824,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":61.42,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":64.015,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":66.61,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":69.205,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":71.801,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":89.968,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"x":92.563,"y":10.432,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":7.064,"y":12.294,"w":24.492,"h":1.097,"clr":-1},{"x":7.15,"y":12.288,"w":2.303,"h":1.053,"clr":1},{"x":9.496,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"x":12.091,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"x":15.305,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"x":17.901,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"x":21.115,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"x":23.71,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"x":26.305,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"x":28.901,"y":12.291,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":7.58,"y":20.107,"w":88.198,"h":1.097,"clr":-1},{"x":7.666,"y":20.101,"w":2.303,"h":1.059,"clr":1},{"x":10.012,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":12.607,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":15.202,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":17.798,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":20.393,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":22.988,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":25.584,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":28.179,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":30.774,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":33.37,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":35.965,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":38.586,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":41.173,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":43.768,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":47.566,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":51.537,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":54.132,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":56.727,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":59.323,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":61.918,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":64.513,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":67.109,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":69.704,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":72.299,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":74.895,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":77.49,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":80.085,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":82.68,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":85.276,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":87.871,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":90.466,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"x":93.062,"y":20.101,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":7.58,"y":21.919,"w":88.198,"h":1.097,"clr":-1},{"x":7.666,"y":21.913,"w":2.303,"h":1.059,"clr":1},{"x":10.012,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":12.607,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":15.202,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":17.798,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":20.393,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":22.988,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":25.584,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":28.179,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":30.774,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":33.37,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":35.965,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":38.586,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":41.173,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":43.768,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":46.363,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":51.537,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":54.132,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":56.727,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":59.323,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":61.918,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":64.513,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":67.109,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":69.704,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":72.299,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":74.895,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":77.49,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":82.68,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":85.276,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":87.871,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":90.466,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":93.062,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"x":48.941,"y":21.913,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":7.726,"y":23.769,"w":84.337,"h":1.097,"clr":-1},{"x":7.812,"y":23.763,"w":2.303,"h":1.059,"clr":1},{"x":10.158,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":12.753,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":15.348,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":17.944,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":20.539,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":23.134,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":25.73,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":28.325,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":30.92,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":33.516,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":36.111,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":38.732,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":41.319,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":43.914,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":46.509,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":51.683,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":54.278,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":56.873,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":60.689,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":63.284,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":67.255,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":69.85,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":72.445,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":75.041,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":77.636,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":81.452,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":84.047,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":86.642,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":89.238,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":49.088,"y":23.763,"w":2.552,"h":1.063,"clr":1},{"x":7.837,"y":25.613,"w":39.617,"h":1.653,"clr":1},{"x":48.314,"y":25.613,"w":9.797,"h":1.653,"clr":1},{"x":58.97,"y":25.613,"w":17.061,"h":1.653,"clr":1},{"x":76.906,"y":25.613,"w":18.813,"h":1.653,"clr":1},{"x":7.451,"y":15.113,"w":2.148,"h":0.563,"clr":1},{"x":7.451,"y":15.988,"w":2.148,"h":0.563,"clr":1},{"x":7.451,"y":16.863,"w":2.148,"h":0.563,"clr":1},{"x":7.079,"y":40.343,"w":31.831,"h":1.134,"clr":1},{"x":39.366,"y":40.352,"w":9.702,"h":1.134,"clr":1},{"x":51.466,"y":40.343,"w":31.831,"h":1.134,"clr":1},{"x":83.752,"y":40.352,"w":9.702,"h":1.134,"clr":1},{"oc":"#d1efe7","x":43.972,"y":42.324,"w":24.234,"h":1.009,"clr":-1},{"x":43.989,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":46.713,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":49.429,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":52.153,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":54.877,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":57.593,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":60.326,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":63.05,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"x":65.766,"y":42.261,"w":2.63,"h":1.097,"clr":1},{"oc":"#d1efe7","x":69.839,"y":42.314,"w":27.904,"h":1.009,"clr":-1},{"x":69.796,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":72.52,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":75.236,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":78.459,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":81.183,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":83.898,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":87.13,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":89.845,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":92.561,"y":42.252,"w":2.63,"h":1.097,"clr":1},{"x":95.242,"y":42.242,"w":2.63,"h":1.097,"clr":1}],"Texts":[{"oc":"#2b2e34","x":6.359,"y":3.391,"w":8.582000000000003,"clr":-1,"A":"left","R":[{"T":"Last%20name%20and%20SSN","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.548,"y":2.271,"w":12.596000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20H%20%20PAGE%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.969,"y":8.302,"w":8.720000000000002,"clr":-1,"A":"left","R":[{"T":"are%20not%20needed.%20%20%20%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.943,"y":11.305,"w":14.258999999999999,"clr":-1,"A":"left","R":[{"T":"Claimant%E2%80%99s%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.072,"y":13.971,"w":17.009,"clr":-1,"A":"left","R":[{"T":"I%20certify%20that%20the%20above-named%20claimant%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.072,"y":14.846,"w":5.809,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20is%20blind%3B","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.072,"y":15.721,"w":43.693000000000005,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20has%20a%20physical%20or%20mental%20impairment%20that%20is%20expected%20to%20last%20continuously%20for%2012%20months%20or%20more%3B","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.072,"y":16.596,"w":26.752,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20was%20physically%20or%20mentally%20impaired%20on%20January%201%2C%202013.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.458,"y":20.974,"w":17.29,"clr":-1,"A":"left","R":[{"T":"Physician%E2%80%99s%20address%20(number%20and%20street)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":82.224,"y":20.974,"w":5.676,"clr":-1,"A":"left","R":[{"T":"Suite%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.605,"y":22.824,"w":1.9169999999999998,"clr":-1,"A":"left","R":[{"T":"City%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.714,"y":22.824,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":67.417,"y":22.824,"w":3.7619999999999996,"clr":-1,"A":"left","R":[{"T":"Zip%20Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.502,"y":24.661,"w":9.175999999999998,"clr":-1,"A":"left","R":[{"T":"Physician%E2%80%99s%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.259,"y":24.661,"w":2.2710000000000004,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":59.087,"y":24.661,"w":7.058000000000001,"clr":-1,"A":"left","R":[{"T":"Where%20Licensed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":76.79,"y":24.661,"w":6.8950000000000005,"clr":-1,"A":"left","R":[{"T":"License%20Number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":27.625,"w":1.665,"clr":-1,"A":"left","R":[{"T":"De%EF%AC%81","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.525,"y":27.625,"w":3.113,"clr":-1,"A":"left","R":[{"T":"%20nitions","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":28.675,"w":2.2110000000000003,"clr":-1,"A":"left","R":[{"T":"Blind","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":29.312,"w":28.68200000000001,"clr":-1,"A":"left","R":[{"T":"Central%20visual%20acuity%20that%20does%20not%20exceed%2020%2F200%20in%20the%20better%20eye%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":29.95,"w":28.723999999999997,"clr":-1,"A":"left","R":[{"T":"with%20correcting%20lenses%2C%20or%20visual%20acuity%20that%20is%20greater%20than%2020%2F200%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":31.862000000000002,"w":7.2299999999999995,"clr":-1,"A":"left","R":[{"T":"than%2020%20degrees.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":32.912,"w":3.6710000000000003,"clr":-1,"A":"left","R":[{"T":"Disabled","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":33.55,"w":29.198000000000004,"clr":-1,"A":"left","R":[{"T":"Unable%20to%20engage%20in%20any%20gainful%20activity%20due%20to%20a%20medically%20determin-","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":34.187,"w":28.228000000000005,"clr":-1,"A":"left","R":[{"T":"able%20physical%20or%20mental%20impairment%20which%20can%20be%20expected%20to%20last%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":34.825,"w":9.937,"clr":-1,"A":"left","R":[{"T":"for%2012%20months%20or%20more.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":43.767,"y":45.865,"w":9.494360460000001,"clr":-1,"A":"left","R":[{"T":"Continue%20to%20Page%203","S":-1,"TS":[0,10.000020000000001,0,0]}]},{"oc":"#2b2e34","x":43.767,"y":46.678,"w":19.1,"clr":-1,"A":"left","R":[{"T":"Homeowner%20and%20Renter%20Property%20Tax%20Credit%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":14.652,"y":46.803,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.648,"y":37.811,"w":4.2829999999999995,"clr":-1,"A":"left","R":[{"T":"Signature%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":16.703,"y":37.811,"w":51.525000000000006,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20law%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20and%2C%20to%20the%20best%20of%20my%20knowledge%2C%20it%20is%20true%20and%20correct.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":16.703,"y":38.373,"w":32.49200000000002,"clr":-1,"A":"left","R":[{"T":"Declaration%20of%20preparer%20is%20based%20on%20the%20information%20available%20to%20the%20preparer.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.027,"y":39.37,"w":6.371,"clr":-1,"A":"left","R":[{"T":"Your%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.589,"y":39.37,"w":2.2710000000000004,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.191,"y":39.37,"w":8.706999999999999,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":83.648,"y":39.37,"w":1.9700000000000002,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.441,"y":46.691,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%206","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.993,"y":5.488,"w":56.742000000000026,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20blind%20or%20disabled%2C%20you%20must%20have%20this%20certificate%20completed%20to%20claim%20the%20Property%20Tax%20Credit.%20File%20it%20with%20your%20Schedule%20H.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.969,"y":7.582000000000001,"w":63.980999999999995,"clr":-1,"A":"left","R":[{"T":"If%20a%20physician%E2%80%99s%20certification%20of%20blindness%20or%20disability%20has%20been%20submitted%20previously%20and%20the%20claimant%E2%80%99s%20condition%20is%20unchanged%2C%20additional%20certifications","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.96,"y":9.492,"w":8.991,"clr":-1,"A":"left","R":[{"T":"Claimant%E2%80%99s%20first%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":47.007,"y":9.492,"w":1.7249999999999999,"clr":-1,"A":"left","R":[{"T":"M.I.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.788,"y":9.492,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.295,"y":13.971,"w":9.246,"clr":-1,"A":"left","R":[{"T":"(fill%20in%20all%20that%20apply)%3A","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":7.458,"y":19.161,"w":9.261,"clr":-1,"A":"left","R":[{"T":"Physician%E2%80%99s%20first%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":47.505,"y":19.161,"w":1.7249999999999999,"clr":-1,"A":"left","R":[{"T":"M.I.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.287,"y":19.161,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":30.587,"w":27.857999999999997,"clr":-1,"A":"left","R":[{"T":"but%20is%20accompanied%20by%20a%20limitation%20in%20the%20field%20of%20vision%20such%20that%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":7.416,"y":31.225,"w":28.788000000000007,"clr":-1,"A":"left","R":[{"T":"the%20widest%20diameter%20of%20the%20visual%20field%20subtends%20an%20angle%20no%20greater%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":43.696,"y":41.267,"w":18.658999999999995,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20Tax%20Identification%20Number%20(PTIN)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.606,"y":41.267,"w":12.221,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20telephone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.969,"y":6.544,"w":21.39800000000001,"clr":-1,"A":"left","R":[{"T":"Physician%E2%80%99s%20certification%20of%20blindness%20or%20disability.","S":-1,"TS":[0,13.6,1,0]}]},{"oc":"#2b2e34","x":43.767,"y":45.24,"w":10.763000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20H%20%20%20P2","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":259,"AM":1024,"x":18.44,"y":3.687,"w":20.675,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":260,"AM":1024,"x":39.1,"y":3.659,"w":18.436,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CFNAME","EN":0},"TI":261,"AM":0,"x":7.208,"y":10.574,"w":38.493,"h":0.862,"TU":"Claimant's first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CMI","EN":0},"TI":262,"AM":0,"x":47.279,"y":10.547,"w":2.389,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLNAME","EN":0},"TI":263,"AM":0,"x":51.41,"y":10.574,"w":43.857,"h":0.862,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":264,"AM":0,"x":7.207,"y":12.399,"w":24.126,"h":0.862,"TU":"Claimant's social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PFNAME","EN":0},"TI":268,"AM":0,"x":7.732,"y":20.226,"w":38.493,"h":0.862,"TU":"Physician's first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PMI","EN":0},"TI":269,"AM":0,"x":47.803,"y":20.198,"w":2.389,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PLNAME","EN":0},"TI":270,"AM":0,"x":51.934,"y":20.226,"w":43.857,"h":0.862,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PADDR","EN":0},"TI":271,"AM":0,"x":7.885,"y":22.019,"w":71.932,"h":0.862,"TU":"Physician's address (number and street)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAPT","EN":0},"TI":272,"AM":0,"x":82.992,"y":22.053,"w":12.796,"h":0.862,"TU":"Suite number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCITY","EN":0},"TI":273,"AM":0,"x":7.893,"y":23.883,"w":51.643,"h":0.862,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":274,"AM":0,"x":60.51,"y":23.814,"w":4.816,"h":0.953,"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":275,"AM":0,"x":67.489,"y":23.891,"w":24.473,"h":0.862,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIGN","EN":0},"TI":276,"AM":1024,"x":51.707,"y":40.486,"w":31.479,"h":0.912,"V":"SELF-PREPARED"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PTIN","EN":0},"TI":277,"AM":1024,"x":44.22,"y":42.413,"w":23.992,"h":0.857,"V":"SFF"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PREPHONE","EN":0},"TI":278,"AM":1024,"x":69.655,"y":42.287,"w":28.551,"h":1.019},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHH34"}},"id":{"Id":"Add_Schedule_H_Page_3","EN":0},"TI":279,"AM":0,"x":54.812,"y":46.042,"w":1.604,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PBX1","EN":0},"TI":265,"AM":0,"x":7.795,"y":14.997,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PBX2","EN":0},"TI":266,"AM":0,"x":7.714,"y":15.873,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PBX3","EN":0},"TI":267,"AM":0,"x":7.732,"y":16.698,"w":1.447,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DCSCHH34.content.txt b/test/data/dc/form/DCSCHH34.content.txt new file mode 100755 index 00000000..61b0c250 --- /dev/null +++ b/test/data/dc/form/DCSCHH34.content.txt @@ -0,0 +1,126 @@ +2013 SCHEDULE H WORKSHEET P3 +Homeowner and Renter Property Tax Credit +Last name and SSN +2013 SCHEDULE H WORKSHEET PAGE 3 +Total Household Gross Income – +Report the total income of every member of your household, including income not subject to DC tax. + +You Your spouse/dom. partner Other household members +Revised 09/13 +a +Wages, salaries, tips, bonuses, commissions, fees and +a +any compensation for personal services. +b +Dividends and interest. +c +Lottery winnings. +d +Trade or business income (or loss). +e +Taxable and nontaxable pensions and annuities. +f +Capital gain (or loss). +g +Alimony received. +h +Net rental and royalty income. +i +Social security and/or railroad retirement. + +i +j +Unemployment insurance and workers‘ compensation. +k +Support money and public assistance grants. +l +Interest on U.S. obligations (to the extent not included in line b). +m +Disability income (from DC Form D-2440, Line 10) +m + (to the extent not included in other lines). + +n +Nontaxable portion of military compensation. +o +Fellowship and scholarship awards and grants +o + + (to the extent not included in line a). + +p +Life insurance proceeds. +q +Veteran’s pension and disability payments. +r +s + in other lines). +t +Cash distributions from a business or investment. +u +Other. +v +Total gross income. +Add Lines a–u for each column. +w +Total household gross income. Add amounts entered on Line v, +w +$ + +enter here and on Section A, Line 1 or Section B, Line 7. + +List names and social security numbers of other household members. If more than four, list on a separate sheet of paper and +attach with this form. +$ + +$ + +$ + +b + +c + +d + +e + +f + +g + +h + +j + +k + +l + +n + +p + +q + +r +Unincorporated business income (to the extent not included + +s + +t + +u + +v +#1 +#2 +#3 +#4 +This income does not include gifts from nongovernmental sources, food stamps or food and other relief in-kind supplied by a governmental agency. +First name +Last name +M.I. +SSN +GI Bill benefits. +----------------Page (0) Break---------------- diff --git a/test/data/dc/form/DCSCHH34.fields.json b/test/data/dc/form/DCSCHH34.fields.json new file mode 100755 index 00000000..920991d0 --- /dev/null +++ b/test/data/dc/form/DCSCHH34.fields.json @@ -0,0 +1 @@ +[{"id":"NAME3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"LA1","type":"number","calc":false,"value":""},{"id":"LA2","type":"number","calc":false,"value":""},{"id":"LA3","type":"number","calc":false,"value":""},{"id":"LB1","type":"number","calc":false,"value":""},{"id":"LB2","type":"number","calc":false,"value":""},{"id":"LB3","type":"number","calc":false,"value":""},{"id":"LC1","type":"number","calc":false,"value":""},{"id":"LC2","type":"number","calc":false,"value":""},{"id":"LC3","type":"number","calc":false,"value":""},{"id":"LD1","type":"number","calc":false,"value":""},{"id":"LD2","type":"number","calc":false,"value":""},{"id":"LD3","type":"number","calc":false,"value":""},{"id":"LE1","type":"number","calc":false,"value":""},{"id":"LE2","type":"number","calc":false,"value":""},{"id":"LE3","type":"number","calc":false,"value":""},{"id":"LF1","type":"number","calc":false,"value":""},{"id":"LF2","type":"number","calc":false,"value":""},{"id":"LF3","type":"number","calc":false,"value":""},{"id":"LG1","type":"number","calc":false,"value":""},{"id":"LG2","type":"number","calc":false,"value":""},{"id":"LG3","type":"number","calc":false,"value":""},{"id":"LH1","type":"number","calc":false,"value":""},{"id":"LH2","type":"number","calc":false,"value":""},{"id":"LH3","type":"number","calc":false,"value":""},{"id":"LI1","type":"number","calc":false,"value":""},{"id":"LI2","type":"number","calc":false,"value":""},{"id":"LI3","type":"number","calc":false,"value":""},{"id":"LK1","type":"number","calc":false,"value":""},{"id":"LK2","type":"number","calc":false,"value":""},{"id":"LK3","type":"number","calc":false,"value":""},{"id":"LL1","type":"number","calc":false,"value":""},{"id":"LL2","type":"number","calc":false,"value":""},{"id":"LL3","type":"number","calc":false,"value":""},{"id":"LM1","type":"number","calc":false,"value":""},{"id":"LM2","type":"number","calc":false,"value":""},{"id":"LM3","type":"number","calc":false,"value":""},{"id":"LN1","type":"number","calc":false,"value":""},{"id":"LN2","type":"number","calc":false,"value":""},{"id":"LN3","type":"number","calc":false,"value":""},{"id":"LO1","type":"number","calc":false,"value":""},{"id":"LO2","type":"number","calc":false,"value":""},{"id":"LO3","type":"number","calc":false,"value":""},{"id":"LP1","type":"number","calc":false,"value":""},{"id":"LP2","type":"number","calc":false,"value":""},{"id":"LP3","type":"number","calc":false,"value":""},{"id":"LQ1","type":"number","calc":false,"value":""},{"id":"LQ2","type":"number","calc":false,"value":""},{"id":"LQ3","type":"number","calc":false,"value":""},{"id":"LR1","type":"number","calc":false,"value":""},{"id":"LR2","type":"number","calc":false,"value":""},{"id":"LR3","type":"number","calc":false,"value":""},{"id":"LS1","type":"number","calc":false,"value":""},{"id":"LS2","type":"number","calc":false,"value":""},{"id":"LS3","type":"number","calc":false,"value":""},{"id":"LT1","type":"number","calc":false,"value":""},{"id":"LT2","type":"number","calc":false,"value":""},{"id":"LT3","type":"number","calc":false,"value":""},{"id":"LU1","type":"number","calc":false,"value":""},{"id":"LU2","type":"number","calc":false,"value":""},{"id":"LU3","type":"number","calc":false,"value":""},{"id":"LVOTH","type":"alpha","calc":false,"value":""},{"id":"LV1","type":"number","calc":false,"value":""},{"id":"LV2","type":"number","calc":false,"value":""},{"id":"LV3","type":"number","calc":false,"value":""},{"id":"TOTAL1","type":"number","calc":true,"value":""},{"id":"TOTAL2","type":"number","calc":true,"value":""},{"id":"TOTAL3","type":"number","calc":true,"value":""},{"id":"TGROSS","type":"number","calc":true,"value":""},{"id":"FNAME_1_","type":"alpha","calc":false,"value":""},{"id":"MI_1_","type":"mask","calc":false,"value":""},{"id":"LNAME_1_","type":"alpha","calc":false,"value":""},{"id":"SSN_1_","type":"ssn","calc":false,"value":""},{"id":"FNAME_2_","type":"alpha","calc":false,"value":""},{"id":"MI_2_","type":"mask","calc":false,"value":""},{"id":"LNAME_2_","type":"alpha","calc":false,"value":""},{"id":"SSN_2_","type":"ssn","calc":false,"value":""},{"id":"FNAME_3_","type":"alpha","calc":false,"value":""},{"id":"MI_3_","type":"mask","calc":false,"value":""},{"id":"LNAME_3_","type":"alpha","calc":false,"value":""},{"id":"SSN_3_","type":"ssn","calc":false,"value":""},{"id":"FNAME_4_","type":"alpha","calc":false,"value":""},{"id":"MI_4_","type":"mask","calc":false,"value":""},{"id":"LNAME_4_","type":"alpha","calc":false,"value":""},{"id":"SSN_4_","type":"ssn","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DCSCHH34.json b/test/data/dc/form/DCSCHH34.json new file mode 100755 index 00000000..5b933e2e --- /dev/null +++ b/test/data/dc/form/DCSCHH34.json @@ -0,0 +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":"#edf8f5","x":5.809,"y":4.248,"w":1.5,"l":91.919},{"oc":"#edf8f5","x":5.809,"y":35.845,"w":1.5,"l":91.919},{"oc":"#d1efe7","x":17.651,"y":3.067,"w":1.5,"l":39.205},{"oc":"#d1efe7","x":17.651,"y":4.095,"w":1.5,"l":39.205},{"oc":"#2b2e34","x":5.869,"y":4.639,"w":4.5,"l":91.652},{"clr":1,"x":5.869,"y":23.642,"w":1.5,"l":49.792},{"clr":1,"x":5.964,"y":27.189,"w":1.5,"l":49.792},{"clr":1,"x":5.869,"y":11.223,"w":1.5,"l":42.823},{"clr":1,"x":5.869,"y":12.098,"w":1.5,"l":42.737},{"clr":1,"x":5.869,"y":13.098,"w":1.5,"l":42.909},{"clr":1,"x":5.869,"y":14.161,"w":1.5,"l":43.123},{"clr":1,"x":5.869,"y":15.161,"w":1.5,"l":42.823},{"clr":1,"x":5.869,"y":16.161,"w":1.5,"l":42.909},{"clr":1,"x":5.869,"y":17.161,"w":1.5,"l":42.909},{"clr":1,"x":5.869,"y":18.223,"w":1.5,"l":43.029},{"clr":1,"x":5.646,"y":19.189,"w":1.5,"l":43.029},{"clr":1,"x":5.388,"y":20.158,"w":1.5,"l":43.029},{"clr":1,"x":5.818,"y":21.127,"w":1.5,"l":43.029},{"clr":1,"x":6.247,"y":22.158,"w":1.5,"l":42.187},{"clr":1,"x":5.646,"y":24.72,"w":1.5,"l":43.132},{"clr":1,"x":5.388,"y":26.127,"w":1.5,"l":43.132},{"clr":1,"x":6.187,"y":28.308,"w":1.5,"l":42.591},{"clr":1,"x":6.136,"y":29.333,"w":1.5,"l":42.642},{"clr":1,"x":6.136,"y":30.817,"w":1.5,"l":42.556},{"clr":1,"x":6.136,"y":32.827,"w":1.5,"l":42.642},{"clr":1,"x":6.015,"y":35.358,"w":1.5,"l":42.848},{"clr":1,"x":5.904,"y":31.908,"w":1.5,"l":42.556},{"clr":1,"x":5.904,"y":33.845,"w":1.5,"l":42.642},{"clr":1,"x":82.053,"y":11.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":11.967,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":12.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":12.967,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":13.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":13.967,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":14.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":14.967,"w":4.5,"l":14.979},{"oc":"#d1efe7","x":44.911,"y":8.345,"w":4.5,"l":52.645},{"oc":"#d1efe7","x":44.911,"y":35.783,"w":4.5,"l":52.645},{"clr":1,"x":48.211,"y":9.901,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":10.592,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":9.901,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":10.592,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":9.901,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":10.592,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":11.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":11.967,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":12.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":12.967,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":13.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":13.967,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":14.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":14.967,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":11.276,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":11.967,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":11.276,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":11.967,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":12.276,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":12.967,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":12.276,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":12.967,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":13.276,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":13.967,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":13.276,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":13.967,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":14.276,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":14.967,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":14.276,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":14.967,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":15.276,"w":4.5,"l":14.979},{"clr":1,"x":48.211,"y":15.967,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":15.276,"w":4.5,"l":14.979},{"clr":1,"x":65.132,"y":15.967,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":15.276,"w":4.5,"l":14.979},{"clr":1,"x":82.053,"y":15.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":16.276,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":16.967,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":16.276,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":16.967,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":16.276,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":16.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":17.276,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":17.967,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":17.276,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":17.967,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":17.276,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":17.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":18.276,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":18.967,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":18.276,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":18.967,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":18.276,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":18.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":19.276,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":19.967,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":19.276,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":19.967,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":19.276,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":19.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":20.276,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":20.967,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":20.276,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":20.967,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":20.276,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":20.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":21.276,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":21.967,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":21.276,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":21.967,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":21.276,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":21.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":22.276,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":22.967,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":22.276,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":22.967,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":22.276,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":22.967,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":23.901,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":24.592,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":23.901,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":24.592,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":23.901,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":24.592,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":24.901,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":25.592,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":24.901,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":25.592,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":24.901,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":25.592,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":26.339,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":27.03,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":26.339,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":27.03,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":26.339,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":27.03,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":27.464,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":28.155,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":27.464,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":28.155,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":27.464,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":28.155,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":28.464,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":29.155,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":28.464,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":29.155,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":28.464,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":29.155,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":29.589,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":30.28,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":29.589,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":30.28,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":29.589,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":30.28,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":31.089,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":31.78,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":31.089,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":31.78,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":31.089,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":31.78,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":32.089,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":32.78,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":32.089,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":32.78,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":32.089,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":32.78,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":33.089,"w":4.5,"l":14.979},{"clr":1,"x":48.262,"y":33.78,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":33.089,"w":4.5,"l":14.979},{"clr":1,"x":65.183,"y":33.78,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":33.089,"w":4.5,"l":14.979},{"clr":1,"x":82.105,"y":33.78,"w":4.5,"l":14.979},{"clr":1,"x":48.278,"y":34.095,"w":4.5,"l":14.979},{"clr":1,"x":48.278,"y":34.786,"w":4.5,"l":14.979},{"oc":"#2b2e34","x":5.68,"y":35.783,"w":4.5,"l":92.134},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#edf8f5","x":5.809,"y":4.248,"w":1.5,"l":31.597},{"oc":"#edf8f5","x":97.728,"y":4.248,"w":1.5,"l":31.597},{"oc":"#d1efe7","x":17.651,"y":3.067,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":56.856,"y":3.067,"w":1.5,"l":1.028},{"clr":1,"x":82.053,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":14.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":14.276,"w":4.5,"l":0.691},{"oc":"#d1efe7","x":44.911,"y":8.345,"w":4.5,"l":27.438},{"oc":"#d1efe7","x":97.556,"y":8.345,"w":4.5,"l":27.438},{"clr":1,"x":48.211,"y":9.901,"w":4.5,"l":0.691},{"clr":1,"x":63.19,"y":9.901,"w":4.5,"l":0.691},{"clr":1,"x":65.132,"y":9.901,"w":4.5,"l":0.691},{"clr":1,"x":80.111,"y":9.901,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":9.901,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":9.901,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":14.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":14.276,"w":4.5,"l":0.691},{"clr":1,"x":48.211,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":63.19,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":65.132,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":80.111,"y":11.276,"w":4.5,"l":0.691},{"clr":1,"x":48.211,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":63.19,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":65.132,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":80.111,"y":12.276,"w":4.5,"l":0.691},{"clr":1,"x":48.211,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":63.19,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":65.132,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":80.111,"y":13.276,"w":4.5,"l":0.691},{"clr":1,"x":48.211,"y":14.276,"w":4.5,"l":0.691},{"clr":1,"x":63.19,"y":14.276,"w":4.5,"l":0.691},{"clr":1,"x":65.132,"y":14.276,"w":4.5,"l":0.691},{"clr":1,"x":80.111,"y":14.276,"w":4.5,"l":0.691},{"clr":1,"x":48.211,"y":15.276,"w":4.5,"l":0.691},{"clr":1,"x":63.19,"y":15.276,"w":4.5,"l":0.691},{"clr":1,"x":65.132,"y":15.276,"w":4.5,"l":0.691},{"clr":1,"x":80.111,"y":15.276,"w":4.5,"l":0.691},{"clr":1,"x":82.053,"y":15.276,"w":4.5,"l":0.691},{"clr":1,"x":97.032,"y":15.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":16.276,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":16.276,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":16.276,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":16.276,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":16.276,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":16.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":17.276,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":17.276,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":17.276,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":17.276,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":17.276,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":17.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":18.276,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":18.276,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":18.276,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":18.276,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":18.276,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":18.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":19.276,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":19.276,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":19.276,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":19.276,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":19.276,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":19.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":20.276,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":20.276,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":20.276,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":20.276,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":20.276,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":20.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":21.276,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":21.276,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":21.276,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":21.276,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":21.276,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":21.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":22.276,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":22.276,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":22.276,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":22.276,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":22.276,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":22.276,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":23.901,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":23.901,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":23.901,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":23.901,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":23.901,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":23.901,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":24.901,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":24.901,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":24.901,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":24.901,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":24.901,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":24.901,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":26.339,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":26.339,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":26.339,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":26.339,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":26.339,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":26.339,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":27.464,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":27.464,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":27.464,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":27.464,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":27.464,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":27.464,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":28.464,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":28.464,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":28.464,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":28.464,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":28.464,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":28.464,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":29.589,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":29.589,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":29.589,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":29.589,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":29.589,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":29.589,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":31.089,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":31.089,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":31.089,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":31.089,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":31.089,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":31.089,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":32.089,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":32.089,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":32.089,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":32.089,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":32.089,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":32.089,"w":4.5,"l":0.691},{"clr":1,"x":48.262,"y":33.089,"w":4.5,"l":0.691},{"clr":1,"x":63.241,"y":33.089,"w":4.5,"l":0.691},{"clr":1,"x":65.183,"y":33.089,"w":4.5,"l":0.691},{"clr":1,"x":80.162,"y":33.089,"w":4.5,"l":0.691},{"clr":1,"x":82.105,"y":33.089,"w":4.5,"l":0.691},{"clr":1,"x":97.083,"y":33.089,"w":4.5,"l":0.691},{"clr":1,"x":48.278,"y":34.095,"w":4.5,"l":0.691},{"clr":1,"x":63.257,"y":34.095,"w":4.5,"l":0.691},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#edf8f5","x":5.809,"y":4.248,"w":91.919,"h":31.597,"clr":-1},{"x":17.651,"y":3.067,"w":39.205,"h":1.028,"clr":1},{"x":82.053,"y":11.277,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":12.277,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":13.277,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":14.277,"w":14.979,"h":0.691,"clr":1},{"oc":"#d1efe7","x":44.911,"y":8.345,"w":52.645,"h":27.438,"clr":-1},{"x":48.211,"y":9.902,"w":14.979,"h":0.691,"clr":1},{"x":65.132,"y":9.902,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":9.902,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":11.277,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":12.277,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":13.277,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":14.277,"w":14.979,"h":0.691,"clr":1},{"x":48.211,"y":11.277,"w":14.979,"h":0.691,"clr":1},{"x":65.132,"y":11.277,"w":14.979,"h":0.691,"clr":1},{"x":48.211,"y":12.277,"w":14.979,"h":0.691,"clr":1},{"x":65.132,"y":12.277,"w":14.979,"h":0.691,"clr":1},{"x":48.211,"y":13.277,"w":14.979,"h":0.691,"clr":1},{"x":65.132,"y":13.277,"w":14.979,"h":0.691,"clr":1},{"x":48.211,"y":14.277,"w":14.979,"h":0.691,"clr":1},{"x":65.132,"y":14.277,"w":14.979,"h":0.691,"clr":1},{"x":48.211,"y":15.277,"w":14.979,"h":0.691,"clr":1},{"x":65.132,"y":15.277,"w":14.979,"h":0.691,"clr":1},{"x":82.053,"y":15.277,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":16.277,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":16.277,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":16.277,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":17.277,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":17.277,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":17.277,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":18.277,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":18.277,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":18.277,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":19.276,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":19.276,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":19.276,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":20.276,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":20.276,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":20.276,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":21.276,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":21.276,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":21.276,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":22.276,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":22.276,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":22.276,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":23.901,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":23.901,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":23.901,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":24.901,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":24.901,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":24.901,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":26.339,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":26.339,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":26.339,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":27.464,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":27.464,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":27.464,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":28.464,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":28.464,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":28.464,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":29.589,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":29.589,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":29.589,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":31.089,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":31.089,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":31.089,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":32.089,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":32.089,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":32.089,"w":14.979,"h":0.691,"clr":1},{"x":48.262,"y":33.089,"w":14.979,"h":0.691,"clr":1},{"x":65.183,"y":33.089,"w":14.979,"h":0.691,"clr":1},{"x":82.105,"y":33.089,"w":14.979,"h":0.691,"clr":1},{"x":48.278,"y":34.095,"w":14.979,"h":0.691,"clr":1}],"Texts":[{"oc":"#2b2e34","x":47.084,"y":45.463,"w":17.183,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20H%20%20%20WORKSHEET%20%20P3","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":47.084,"y":46.213,"w":18.498000000000005,"clr":-1,"A":"left","R":[{"T":"Homeowner%20and%20Renter%20Property%20Tax%20Credit","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":5.619,"y":2.904,"w":8.582000000000003,"clr":-1,"A":"left","R":[{"T":"Last%20name%20and%20SSN","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.808,"y":1.7839999999999998,"w":19.016,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20H%20%20WORKSHEET%20%20PAGE%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.083,"y":5.338,"w":14.085000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20Household%20Gross%20Income%20%E2%80%93%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":29.155,"y":5.338,"w":43.32299999999999,"clr":-1,"A":"left","R":[{"T":"Report%20the%20total%20income%20of%20every%20member%20of%20your%20household%2C%20including%20income%20not%20subject%20to%20DC%20tax.","S":-1,"TS":[0,10.9,0,0]}]},{"oc":"#2b2e34","x":48.365,"y":7.181,"w":1.832,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":64.931,"y":7.181,"w":11.277,"clr":-1,"A":"left","R":[{"T":"Your%20spouse%2Fdom.%20partner%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":81.965,"y":7.181,"w":11.340000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20household%20members","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":11.377,"y":46.66,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":9.529,"w":1.107,"clr":-1,"A":"left","R":[{"T":"a%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":9.529,"w":23.629999999999995,"clr":-1,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20tips%2C%20bonuses%2C%20commissions%2C%20fees%20and%20%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":9.529,"w":0.505,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":10.091,"w":16.904999999999998,"clr":-1,"A":"left","R":[{"T":"any%20compensation%20for%20personal%20services.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":11.091,"w":0.839,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":11.091,"w":9.759,"clr":-1,"A":"left","R":[{"T":"Dividends%20and%20interest.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":12.091,"w":0.77,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":12.091,"w":7.256,"clr":-1,"A":"left","R":[{"T":"Lottery%20winnings.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":13.091,"w":0.839,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":13.091,"w":25.378999999999948,"clr":-1,"A":"left","R":[{"T":"Trade%20or%20business%20income%20(or%20loss).%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,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":14.091,"w":0.782,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":14.091,"w":20.366000000000007,"clr":-1,"A":"left","R":[{"T":"Taxable%20and%20nontaxable%20pensions%20and%20annuities.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":15.091,"w":0.579,"clr":-1,"A":"left","R":[{"T":"f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":15.091,"w":22.58499999999997,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20(or%20loss).%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":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":16.091,"w":0.7869999999999999,"clr":-1,"A":"left","R":[{"T":"g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":16.091,"w":7.807000000000001,"clr":-1,"A":"left","R":[{"T":"Alimony%20received.%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":17.091,"w":0.851,"clr":-1,"A":"left","R":[{"T":"h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":17.091,"w":27.00099999999994,"clr":-1,"A":"left","R":[{"T":"Net%20rental%20and%20royalty%20income.%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":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":18.091,"w":0.5489999999999999,"clr":-1,"A":"left","R":[{"T":"i%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":18.091,"w":17.484,"clr":-1,"A":"left","R":[{"T":"Social%20security%20and%2For%20railroad%20retirement.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":18.091,"w":0.248,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":19.091,"w":0.552,"clr":-1,"A":"left","R":[{"T":"j%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":19.091,"w":23.024000000000004,"clr":-1,"A":"left","R":[{"T":"Unemployment%20insurance%20and%20workers%E2%80%98%20compensation.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":20.091,"w":0.792,"clr":-1,"A":"left","R":[{"T":"k%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":20.091,"w":19.03,"clr":-1,"A":"left","R":[{"T":"Support%20money%20and%20public%20assistance%20grants.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":21.091,"w":0.5489999999999999,"clr":-1,"A":"left","R":[{"T":"l%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":21.091,"w":27.356000000000012,"clr":-1,"A":"left","R":[{"T":"Interest%20on%20U.S.%20obligations%20(to%20the%20extent%20not%20included%20in%20line%20b).","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":22.091,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"m%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":22.091,"w":22.459000000000003,"clr":-1,"A":"left","R":[{"T":"Disability%20income%20(from%20DC%20Form%20D-2440%2C%20Line%2010)%20%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":22.091,"w":0.8290000000000001,"clr":-1,"A":"left","R":[{"T":"m","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":22.623,"w":17.590999999999994,"clr":-1,"A":"left","R":[{"T":"(to%20the%20extent%20not%20included%20in%20other%20lines).","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":23.623,"w":0.837,"clr":-1,"A":"left","R":[{"T":"n%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":23.623,"w":19.078,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20portion%20of%20military%20compensation.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":24.56,"w":0.804,"clr":-1,"A":"left","R":[{"T":"o%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":24.56,"w":19.922000000000008,"clr":-1,"A":"left","R":[{"T":"Fellowship%20and%20scholarship%20awards%20and%20grants%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":24.56,"w":0.503,"clr":-1,"A":"left","R":[{"T":"o","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":25.123,"w":15.496999999999996,"clr":-1,"A":"left","R":[{"T":"(to%20the%20extent%20not%20included%20in%20line%20a).","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":26.06,"w":0.8420000000000001,"clr":-1,"A":"left","R":[{"T":"p%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":26.06,"w":10.273000000000001,"clr":-1,"A":"left","R":[{"T":"Life%20insurance%20proceeds.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":27.06,"w":0.839,"clr":-1,"A":"left","R":[{"T":"q%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":27.06,"w":18.116,"clr":-1,"A":"left","R":[{"T":"Veteran%E2%80%99s%20pension%20and%20disability%20payments.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":28.185,"w":0.625,"clr":-1,"A":"left","R":[{"T":"r%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":29.185,"w":0.736,"clr":-1,"A":"left","R":[{"T":"s%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":29.748,"w":6.127000000000001,"clr":-1,"A":"left","R":[{"T":"in%20other%20lines).","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":30.748,"w":0.607,"clr":-1,"A":"left","R":[{"T":"t%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":30.748,"w":20.928000000000008,"clr":-1,"A":"left","R":[{"T":"Cash%20distributions%20from%20a%20business%20or%20investment.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":31.747999999999998,"w":0.837,"clr":-1,"A":"left","R":[{"T":"u%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":31.747999999999998,"w":2.626,"clr":-1,"A":"left","R":[{"T":"Other.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":32.748,"w":0.759,"clr":-1,"A":"left","R":[{"T":"v%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":32.748,"w":8.865,"clr":-1,"A":"left","R":[{"T":"Total%20gross%20income.%20%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":19.231,"y":32.748,"w":13.6,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20a%E2%80%93u%20for%20each%20column.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.238,"y":33.748,"w":1.3319999999999999,"clr":-1,"A":"left","R":[{"T":"w%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":33.748,"w":27.375000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20household%20gross%20income.%20Add%20amounts%20entered%20on%20Line%20v%2C%20%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":33.748,"w":1.031,"clr":-1,"A":"left","R":[{"T":"w%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":46.5,"y":33.748,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":34.31,"w":24.149,"clr":-1,"A":"left","R":[{"T":"enter%20here%20and%20on%20Section%20A%2C%20Line%201%20or%20Section%20B%2C%20Line%207.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":5.628,"y":35.753,"w":53.25100000000002,"clr":-1,"A":"left","R":[{"T":"List%20names%20and%20social%20security%20numbers%20of%20other%20household%20members.%20If%20more%20than%20four%2C%20list%20on%20a%20separate%20sheet%20of%20paper%20and%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.628,"y":36.666,"w":9.152000000000001,"clr":-1,"A":"left","R":[{"T":"attach%20with%20this%20form.","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":46.465,"y":8.207,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.325,"y":8.207,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.481,"y":8.207,"w":0.602,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":11.091,"w":16.1073,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":12.091,"w":18.120700000000003,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":13.091,"w":3.0035,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":14.091,"w":7.1796,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":15.091,"w":5.0168,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":16.091,"w":17.7037,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":17.091,"w":1.5597,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":19.091,"w":5.238700000000001,"clr":-1,"A":"left","R":[{"T":"j","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":20.091,"w":9.2188,"clr":-1,"A":"left","R":[{"T":"k","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":21.091,"w":1.0843,"clr":-1,"A":"left","R":[{"T":"l","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":23.623,"w":9.2011,"clr":-1,"A":"left","R":[{"T":"n","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":26.06,"w":17.605800000000002,"clr":-1,"A":"left","R":[{"T":"p","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":27.06,"w":10.2234,"clr":-1,"A":"left","R":[{"T":"q","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":28.185,"w":20.957900000000002,"clr":-1,"A":"left","R":[{"T":"r","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":29.185,"w":25.301000000000013,"clr":-1,"A":"left","R":[{"T":"Unincorporated%20business%20income%20(to%20the%20extent%20not%20included","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":45.083,"y":29.185,"w":0.736,"clr":-1,"A":"left","R":[{"T":"s%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":30.748,"w":7.2487,"clr":-1,"A":"left","R":[{"T":"t","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":31.747999999999998,"w":24.962200000000003,"clr":-1,"A":"left","R":[{"T":"u","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.082,"y":32.748,"w":6.0555,"clr":-1,"A":"left","R":[{"T":"v","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.628,"y":38.041,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.628,"y":40.041,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.628,"y":42.041,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":5.628,"y":44.041,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%234","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":6.083,"y":6.118,"w":63.49700000000002,"clr":-1,"A":"left","R":[{"T":"This%20income%20does%20not%20include%20gifts%20from%20nongovernmental%20sources%2C%20food%20stamps%20or%20food%20and%20other%20relief%20in-kind%20supplied%20by%20a%20governmental%20agency.","S":-1,"TS":[0,10.9,0,0]}]},{"x":8.301,"y":37.281,"w":42.507,"clr":0,"A":"left","R":[{"T":"First%20name","S":3,"TS":[0,12,0,0]}]},{"x":51.441,"y":37.281,"w":42.021,"clr":0,"A":"left","R":[{"T":"Last%20name","S":3,"TS":[0,12,0,0]}]},{"x":45.254,"y":37.281,"w":15.003000000000002,"clr":0,"A":"left","R":[{"T":"M.I.","S":3,"TS":[0,12,0,0]}]},{"x":86.676,"y":37.281,"w":18.504,"clr":0,"A":"left","R":[{"T":"SSN","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.785,"y":28.185,"w":6.5360000000000005,"clr":-1,"A":"left","R":[{"T":"GI%20Bill%20benefits.","S":-1,"TS":[0,10.6,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME3","EN":0},"TI":280,"AM":1024,"x":17.65,"y":3.191,"w":20.675,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":281,"AM":1024,"x":38.31,"y":3.164,"w":18.436,"h":0.862},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LA1","EN":0},"TI":282,"AM":0,"x":47.73,"y":9.781,"w":15.695,"h":0.913,"TU":"Line a. You. Wages, salaries, tips, bonuses, commissions, fees and any compensation for personal services."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LA2","EN":0},"TI":283,"AM":0,"x":64.688,"y":9.781,"w":15.695,"h":0.913,"TU":"Line a. Your spouse/domestic partner. Wages, salaries, tips, bonuses, commissions, fees and any compensation for personal services."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LA3","EN":0},"TI":284,"AM":0,"x":81.662,"y":9.8,"w":15.695,"h":0.913,"TU":"Line a. Other household members. Wages, salaries, tips, bonuses, commissions, fees and any compensation for personal services."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LB1","EN":0},"TI":285,"AM":0,"x":47.796,"y":11.132,"w":15.695,"h":0.913,"TU":"Line b. You. Dividends and interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LB2","EN":0},"TI":286,"AM":0,"x":64.754,"y":11.132,"w":15.695,"h":0.913,"TU":"Line b. Your spouse/domestic partner. Dividends and interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LB3","EN":0},"TI":287,"AM":0,"x":81.729,"y":11.152,"w":15.695,"h":0.913,"TU":"Line b. Other household members. Dividends and interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LC1","EN":0},"TI":288,"AM":0,"x":47.851,"y":12.132,"w":15.695,"h":0.913,"TU":"Line c. You. Lottery winnings."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LC2","EN":0},"TI":289,"AM":0,"x":64.809,"y":12.132,"w":15.695,"h":0.913,"TU":"Line c. Your spouse/domestic partner. Lottery winnings."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LC3","EN":0},"TI":290,"AM":0,"x":81.847,"y":12.152,"w":15.695,"h":0.913,"TU":"Line c. Other household members. Lottery winnings."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LD1","EN":0},"TI":291,"AM":0,"x":47.844,"y":13.136,"w":15.695,"h":0.913,"TU":"Line d. You. Trade or business income (or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LD2","EN":0},"TI":292,"AM":0,"x":64.801,"y":13.136,"w":15.695,"h":0.913,"TU":"Line d. Your spouse/domestic partner. Trade or business income (or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LD3","EN":0},"TI":293,"AM":0,"x":81.776,"y":13.156,"w":15.695,"h":0.913,"TU":"Line d. Other household members. Trade or business income (or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LE1","EN":0},"TI":294,"AM":0,"x":47.899,"y":14.136,"w":15.695,"h":0.913,"TU":"Line e. You. Taxable and nontaxable pension and annuities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LE2","EN":0},"TI":295,"AM":0,"x":64.856,"y":14.136,"w":15.695,"h":0.913,"TU":"Line e. Your spouse/domestic partner. Taxable and nontaxable pension and annuities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LE3","EN":0},"TI":296,"AM":0,"x":81.831,"y":14.156,"w":15.695,"h":0.913,"TU":"Line e. Other household members. Taxable and nontaxable pension and annuities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LF1","EN":0},"TI":297,"AM":0,"x":47.917,"y":15.102,"w":15.695,"h":0.913,"TU":"Line f. You. Capital gain (or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LF2","EN":0},"TI":298,"AM":0,"x":64.875,"y":15.125,"w":15.695,"h":0.913,"TU":"Line f. Your spouse/domestic partner. Capital gain (or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LF3","EN":0},"TI":299,"AM":0,"x":81.913,"y":15.075,"w":15.695,"h":0.913,"TU":"Line f. Other household members. Capital gain (or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LG1","EN":0},"TI":300,"AM":0,"x":47.972,"y":16.102,"w":15.695,"h":0.913,"TU":"Line g. You. Alimony received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LG2","EN":0},"TI":301,"AM":0,"x":64.929,"y":16.102,"w":15.695,"h":0.913,"TU":"Line g. Your spouse/domestic partner. Alimony received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LG3","EN":0},"TI":302,"AM":0,"x":81.904,"y":16.121,"w":15.695,"h":0.913,"TU":"Line g. Other household members. Alimony received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LH1","EN":0},"TI":303,"AM":0,"x":47.965,"y":17.106,"w":15.695,"h":0.913,"TU":"Line h. You. Net rental and royalty income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LH2","EN":0},"TI":304,"AM":0,"x":64.922,"y":17.106,"w":15.695,"h":0.913,"TU":"Line h. Your spouse/domestic partner. Net rental and royalty income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LH3","EN":0},"TI":305,"AM":0,"x":81.897,"y":17.126,"w":15.695,"h":0.913,"TU":"Line h. Other household members. Net rental and royalty income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LI1","EN":0},"TI":306,"AM":0,"x":48.019,"y":18.106,"w":15.695,"h":0.913,"TU":"Line i. You. Social security and/or railroad retirement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LI2","EN":0},"TI":307,"AM":0,"x":64.977,"y":18.106,"w":15.695,"h":0.913,"TU":"Line i. Your spouse/domestic partner. Social security and/or railroad retirement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LI3","EN":0},"TI":308,"AM":0,"x":81.952,"y":18.126,"w":15.695,"h":0.913,"TU":"Line i. Other household members. Social security and/or railroad retirement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LK1","EN":0},"TI":309,"AM":0,"x":47.835,"y":19.164,"w":15.695,"h":0.913,"TU":"Line j. You. Unemployment insurance and workers' compensation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LK2","EN":0},"TI":310,"AM":0,"x":64.792,"y":19.188,"w":15.695,"h":0.913,"TU":"Line j. Your spouse/domestic partner. Unemployment insurance and workers' compensation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LK3","EN":0},"TI":311,"AM":0,"x":81.767,"y":19.208,"w":15.695,"h":0.913,"TU":"Line j. Other household members. Unemployment insurance and workers' compensation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LL1","EN":0},"TI":312,"AM":0,"x":47.889,"y":20.188,"w":15.695,"h":0.913,"TU":"Line k. You. Support money and public assistance grants."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LL2","EN":0},"TI":313,"AM":0,"x":64.847,"y":20.188,"w":15.695,"h":0.913,"TU":"Line k. Your spouse/domestic partner. Support money and public assistance grants."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LL3","EN":0},"TI":314,"AM":0,"x":81.822,"y":20.208,"w":15.695,"h":0.913,"TU":"Line k. Other household members. Support money and public assistance grants."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LM1","EN":0},"TI":315,"AM":0,"x":47.882,"y":21.192,"w":15.695,"h":0.913,"TU":"Line l. You. Interest on U.S. obligations (to the extent not included in line b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LM2","EN":0},"TI":316,"AM":0,"x":64.84,"y":21.192,"w":15.695,"h":0.913,"TU":"Line l. Your spouse/domestic partner. Interest on U.S. obligations (to the extent not included in line b)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LM3","EN":0},"TI":317,"AM":0,"x":81.814,"y":21.212,"w":15.695,"h":0.913,"TU":"Line l. Other household members. Interest on U.S. obligations (to the extent not included in line b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LN1","EN":0},"TI":318,"AM":0,"x":47.937,"y":22.192,"w":15.695,"h":0.913,"TU":"Line m. You. Disability income (from DC Form D-2440, Line 10) (to the extent not included in other lines)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LN2","EN":0},"TI":319,"AM":0,"x":64.894,"y":22.192,"w":15.695,"h":0.913,"TU":"Line m. Your spouse/domestic partner. Disability income (from DC Form D-2440, Line 10) (to the extent not included in other lines)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LN3","EN":0},"TI":320,"AM":0,"x":81.869,"y":22.212,"w":15.695,"h":0.913,"TU":"Line m. Other household members. Disability income (from DC Form D-2440, Line 10) (to the extent not included in other lines)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LO1","EN":0},"TI":321,"AM":0,"x":47.955,"y":23.784,"w":15.695,"h":0.913,"TU":"Line n. You. Nontaxable portion of military compensation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LO2","EN":0},"TI":322,"AM":0,"x":64.913,"y":23.784,"w":15.695,"h":0.913,"TU":"Line n. Your spouse/domestic partner. Nontaxable portion of military compensation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LO3","EN":0},"TI":323,"AM":0,"x":81.888,"y":23.803,"w":15.695,"h":0.913,"TU":"Line n. Other household members. Nontaxable portion of military compensation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LP1","EN":0},"TI":324,"AM":0,"x":48.01,"y":24.811,"w":15.695,"h":0.913,"TU":"Line o. You. Fellowship and scholarship awards and grants (to the extent not included in line a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LP2","EN":0},"TI":325,"AM":0,"x":64.968,"y":24.811,"w":15.695,"h":0.913,"TU":"Line o. Your spouse/domestic partner. Fellowship and scholarship awards and grants (to the extent not included in line a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LP3","EN":0},"TI":326,"AM":0,"x":81.942,"y":24.831,"w":15.695,"h":0.913,"TU":"Line o. Other household members. Fellowship and scholarship awards and grants (to the extent not included in line a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LQ1","EN":0},"TI":327,"AM":0,"x":47.853,"y":26.306,"w":15.695,"h":0.913,"TU":"Line p. You. Life insurance proceeds."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LQ2","EN":0},"TI":328,"AM":0,"x":64.81,"y":26.282,"w":15.695,"h":0.913,"TU":"Line p. Your spouse/domestic partner. Life insurance proceeds."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LQ3","EN":0},"TI":329,"AM":0,"x":81.785,"y":26.326,"w":15.695,"h":0.913,"TU":"Line p. Other household members. Life insurance proceeds."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LR1","EN":0},"TI":330,"AM":0,"x":47.908,"y":27.329,"w":15.695,"h":0.913,"TU":"Line q. You. Veteran's pension and disability payments."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LR2","EN":0},"TI":331,"AM":0,"x":64.865,"y":27.306,"w":15.695,"h":0.913,"TU":"Line q. Your spouse/domestic partner. Veteran's pension and disability payments."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LR3","EN":0},"TI":332,"AM":0,"x":81.84,"y":27.326,"w":15.695,"h":0.913,"TU":"Line q. Other household members. Veteran's pension and disability payments."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LS1","EN":0},"TI":333,"AM":0,"x":47.736,"y":28.313,"w":15.695,"h":0.913,"TU":"Line r. You. GI Bill benefits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LS2","EN":0},"TI":334,"AM":0,"x":64.693,"y":28.313,"w":15.695,"h":0.913,"TU":"Line r. Your spouse/domestic partner. GI Bill benefits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LS3","EN":0},"TI":335,"AM":0,"x":81.668,"y":28.333,"w":15.695,"h":0.913,"TU":"Line r. Other household members. GI Bill benefits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LT1","EN":0},"TI":336,"AM":0,"x":47.852,"y":29.449,"w":15.695,"h":0.913,"TU":"Line s. You. Unincorporated business income (to the extent not included in other lines)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LT2","EN":0},"TI":337,"AM":0,"x":64.712,"y":29.469,"w":15.695,"h":0.913,"TU":"Line s. Your spouse/domestic partner. Unincorporated business income (to the extent not included in other lines)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LT3","EN":0},"TI":338,"AM":0,"x":81.687,"y":29.488,"w":15.695,"h":0.913,"TU":"Line s. Other household members. Unincorporated business income (to the extent not included in other lines)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LU1","EN":0},"TI":339,"AM":0,"x":47.734,"y":30.986,"w":15.695,"h":0.913,"TU":"Line t. You. Cash distributions from a business or investment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LU2","EN":0},"TI":340,"AM":0,"x":64.692,"y":30.986,"w":15.695,"h":0.913,"TU":"Line t. Your spouse/domestic partner. Cash distributions from a business or investment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LU3","EN":0},"TI":341,"AM":0,"x":81.667,"y":31.006,"w":15.695,"h":0.913,"TU":"Line t. Other household members. Cash distributions from a business or investment."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LVOTH","EN":0},"TI":342,"AM":0,"x":12.267,"y":31.888,"w":25.632,"h":0.856,"TU":"Line u. Other description."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LV1","EN":0},"TI":343,"AM":0,"x":47.727,"y":31.991,"w":15.695,"h":0.913,"TU":"Line u. You. Other."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LV2","EN":0},"TI":344,"AM":0,"x":64.684,"y":31.99,"w":15.695,"h":0.913,"TU":"Line u. Your spouse/domestic partner. Other."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LV3","EN":0},"TI":345,"AM":0,"x":81.659,"y":32.01,"w":15.695,"h":0.913,"TU":"Line u. Other household members. Other."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL1","EN":0},"TI":346,"AM":1024,"x":47.782,"y":32.991,"w":15.695,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL2","EN":0},"TI":347,"AM":1024,"x":64.739,"y":32.991,"w":15.695,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL3","EN":0},"TI":348,"AM":1024,"x":81.714,"y":33.01,"w":15.695,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TGROSS","EN":0},"TI":349,"AM":1024,"x":47.79,"y":33.983,"w":15.695,"h":0.913},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_1_","EN":0},"TI":350,"AM":0,"x":8.556,"y":38.127,"w":36.467,"h":0.833,"TU":"FIRST NAME"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_1_","EN":0},"TI":351,"AM":0,"x":45.419,"y":38.105,"w":5.391,"h":0.833,"TU":"Middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_1_","EN":0},"TI":352,"AM":0,"x":51.422,"y":38.159,"w":33.921,"h":0.833,"TU":"LAST NAME"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_1_","EN":0},"TI":353,"AM":0,"x":86.014,"y":38.086,"w":10.911,"h":0.833,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_2_","EN":0},"TI":354,"AM":0,"x":8.623,"y":40.148,"w":36.467,"h":0.833,"TU":"FIRST NAME"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_2_","EN":0},"TI":355,"AM":0,"x":45.422,"y":40.15,"w":5.481,"h":0.833,"TU":"Middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_2_","EN":0},"TI":356,"AM":0,"x":51.588,"y":40.177,"w":33.921,"h":0.833,"TU":"LAST NAME"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_2_","EN":0},"TI":357,"AM":0,"x":86.081,"y":40.17,"w":10.911,"h":0.833,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_3_","EN":0},"TI":358,"AM":0,"x":8.477,"y":42.109,"w":36.467,"h":0.833,"TU":"FIRST NAME"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_3_","EN":0},"TI":359,"AM":0,"x":45.276,"y":42.111,"w":5.662,"h":0.833,"TU":"Middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_3_","EN":0},"TI":360,"AM":0,"x":51.582,"y":42.075,"w":33.921,"h":0.833,"TU":"LAST NAME"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_3_","EN":0},"TI":361,"AM":0,"x":86.115,"y":42.049,"w":10.731,"h":0.899,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_4_","EN":0},"TI":362,"AM":0,"x":8.544,"y":44.13,"w":36.467,"h":0.833,"TU":"FIRST NAME"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_4_","EN":0},"TI":363,"AM":0,"x":45.344,"y":44.132,"w":5.752,"h":0.833,"TU":"Middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_4_","EN":0},"TI":364,"AM":0,"x":51.658,"y":44.159,"w":33.921,"h":0.833,"TU":"LAST NAME"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_4_","EN":0},"TI":365,"AM":0,"x":86.183,"y":44.152,"w":10.731,"h":0.833,"TU":"SSN"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DCSCHI.content.txt b/test/data/dc/form/DCSCHI.content.txt new file mode 100755 index 00000000..225b6022 --- /dev/null +++ b/test/data/dc/form/DCSCHI.content.txt @@ -0,0 +1,206 @@ +* +Make entries using black ink. Attach to your D-40. +Government of the +District of Columbia +2013 + +SCHEDULE I Additions + to and Subtractions from + Federal Adjusted Gross Income + +2013 SCHEDULE I P1 +Additions to and Subtractions from Federal Adjusted Gross Income +Revised 09/13 +Calculation A + +Additions to federal adjusted gross income. +Fill in only those that apply. +Dollars only, do not enter cents + + 1 Part-year DC resident – enter the portion of adjustments +(from Federal Form 1040; + +1 +$ +. +00 + +1040A; or 1040NR) + + 2 Income distributions eligible for income averaging on your federal tax return + +2 +$ +. +00 +from Federal Form 4972) +. + + 3 30% or 50% federal bonus depreciation and/or extra IRC §179 expenses claimed 3 +$ +. +00 + +on + federal return + 4 Any part of a discrimination award subject to income averaging. 4 +$ +. +00 + 5 Deductions for S Corporations from Schedule K-I, Form 1120 S. 5 +$ +. +00 + 6 Other (see instructions). + +6 +$ +. +00 + 7 + +RESERVED + 7 +$ +. +00 + +8 Total additions +Add entries on Lines 1– 7. Enter the total here and on D-40, Line 5. +8 +$ +. +00 +Calculation B + +Subtractions from federal adjusted gross income. + Fill in only those that apply. + 1 Taxable interest from US Treasury bonds and other obligations. +See instructions. + 1 +$ +. +00 + 2 Disability income exclusion +from DC Form D-2440, Line 10. +See instructions. + + 2 +$ +. +00 + 3 Interest and dividend income of a child from Federal Form 8814*. 3 +$ +. +00 + 4 Awards, other than front and back pay, received due to unlawful 4 +$ +. +00 + + employment discrimination. + 5 Excess of DC allowable depreciation over federal allowable depreciation. +See instructions. + 5 +$ +. +00 + + 6 Long-term care insurance premiums paid in 2013, $500 annual limit per person. 6 +$ +. +00 + 7 Amount paid (or carried over) to DC College Savings plan in 2013 (maximum $4,000 per 7 +$ +. +00 +Part-year residents see instructions. +$ +. +00 + + as disabled) with adjusted annual household income of less than $100,000. +See instructions. + 9 Expenditures by DC teachers for necessary classroom teaching materials, 9 +$ +. +00 + $500 annual limit per person. +See instructions. + +10 +Expenditures by DC teachers for certain tuition and fees, $1500 annual limit per person +. +10 +$ +. +00 +See instructions. +11 Loan repayment awards received by health-care professionals from DC government. + +11 +$ +. +00 + +See instructions. +12 +Health-care insurance premiums paid by an employer for an employee’s registered + 12 +$ +. +00 + +domestic partner or same sex spouse. + +Make no entry if the premium was deducted on your federal return, see instructions. + +13 DC Poverty Lawyer Loan Assistance. + +See instructions. +13 +$ +. +00 + +See instructions. + _____________________________________________ + +14 +$ +. +00 +15 + +Military Spouse Residency Relief Act. + +See instructions. +RESERVED + +15 +$ +. +00 +16 Total subtractions. +Add entries on Lines 1–15. Enter the total here and on D-40, Line 13. +16 +$ +. +00 +File order 8 + Last name + +Social Security Number + that relate to the time you resided outside DC. + For Lines 2 – 7 below include only the amounts related to the time you resided in DC. + person, $8,000 for joint filers if each is an account owner). + 8 Exclusion of up to $10,000 for DC residents (certified by the Social Security Adm. + +8 +Note: Since income reported on Federal Form 8814, Parents’ Election to Report Child’s Interest and Dividends, and included in the parents’ federal +return income is subtracted above on Line 3 of Calculation B, the child must file a separate DC return reporting this income. +14 + +Other +(Not Supported) +----------------Page (0) Break---------------- diff --git a/test/data/dc/form/DCSCHI.fields.json b/test/data/dc/form/DCSCHI.fields.json new file mode 100755 index 00000000..5e6087de --- /dev/null +++ b/test/data/dc/form/DCSCHI.fields.json @@ -0,0 +1 @@ +[{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"NRADJUST","type":"number","calc":true,"value":""},{"id":"INCDISTS","type":"number","calc":false,"value":""},{"id":"DEPRADJ","type":"number","calc":false,"value":""},{"id":"DISCRIM","type":"number","calc":false,"value":""},{"id":"DEDSCORP","type":"number","calc":false,"value":""},{"id":"CALAOTHR","type":"alpha","calc":false,"value":""},{"id":"AOTHRAMT","type":"number","calc":false,"value":""},{"id":"TOTADDS","type":"number","calc":true,"value":""},{"id":"INTUSOBL","type":"number","calc":false,"value":""},{"id":"DISINCEX","type":"number","calc":false,"value":""},{"id":"CHINTDIV","type":"number","calc":false,"value":""},{"id":"AWARDS","type":"number","calc":false,"value":""},{"id":"DEPRECJ","type":"number","calc":false,"value":""},{"id":"LTC","type":"number","calc":false,"value":""},{"id":"COLLEGE","type":"number","calc":false,"value":""},{"id":"DISABLED","type":"number","calc":false,"value":""},{"id":"TEACHMAT","type":"number","calc":false,"value":""},{"id":"TEACHFEE","type":"number","calc":false,"value":""},{"id":"LOAN","type":"number","calc":false,"value":""},{"id":"PREMIUM","type":"number","calc":false,"value":""},{"id":"LAWLOAN","type":"number","calc":false,"value":""},{"id":"CALBOTHR","type":"alpha","calc":false,"value":""},{"id":"BOTHRAMT","type":"number","calc":false,"value":""},{"id":"MILSP","type":"number","calc":false,"value":""},{"id":"TOTSUBS","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DCSCHI.json b/test/data/dc/form/DCSCHI.json new file mode 100755 index 00000000..c3345a2a --- /dev/null +++ b/test/data/dc/form/DCSCHI.json @@ -0,0 +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":"#2b2e34","x":14.453,"y":46.541,"w":0.546,"l":2.388},{"clr":1,"x":6.265,"y":32.867,"w":1.5,"l":64.956},{"clr":1,"x":6.265,"y":34.664,"w":1.5,"l":64.956},{"clr":1,"x":6.265,"y":36.387,"w":1.5,"l":64.956},{"clr":1,"x":6.265,"y":40.633,"w":1.5,"l":64.956},{"clr":1,"x":6.265,"y":42.021,"w":1.5,"l":64.956},{"oc":"#2b2e34","x":23.01,"y":2.368,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":23.01,"y":3.412,"w":1.5,"l":6.11},{"oc":"#bde8dd","x":7.296,"y":7.389,"w":1.5,"l":33.03},{"oc":"#bde8dd","x":7.296,"y":8.643,"w":1.5,"l":33.03},{"oc":"#bde8dd","x":43.592,"y":7.389,"w":1.5,"l":26.702},{"oc":"#bde8dd","x":43.592,"y":8.635,"w":1.5,"l":26.702},{"oc":"#2b2e34","x":6.265,"y":6.32,"w":4.5,"l":92.813},{"clr":1,"x":6.265,"y":44.284,"w":1.5,"l":64.956},{"oc":"#d1efe7","x":78.919,"y":9.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":11.039,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":9.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":11.039,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":9.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":11.039,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":9.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":11.039,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":9.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":11.039,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":9.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":11.039,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":9.976,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":11.039,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":12.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":13.312,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":12.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":13.312,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":12.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":13.312,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":12.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":13.312,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":12.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":13.312,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":12.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":13.312,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":12.249,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":13.312,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":13.84,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":14.902,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":13.84,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":14.902,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":13.84,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":14.902,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":13.84,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":14.902,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":13.84,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":14.902,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":13.84,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":14.902,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":13.84,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":14.902,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.894,"y":15.746,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.894,"y":16.809,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":15.746,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":16.809,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":15.746,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":16.809,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":15.746,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":16.809,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":15.746,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":16.809,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":15.746,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":16.809,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":15.746,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":16.809,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":16.929,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":17.992,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":16.929,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":17.992,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":16.929,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":17.992,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":16.929,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":17.992,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":16.929,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":17.992,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":16.929,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":17.992,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":16.929,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":17.992,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":18.09,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":19.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":18.09,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":19.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":18.09,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":19.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":18.09,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":19.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":18.09,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":19.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":18.09,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":19.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":18.09,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":19.152,"w":1.5,"l":2.552},{"clr":1,"x":6.246,"y":31.152,"w":1.5,"l":64.975},{"clr":1,"x":6.265,"y":28.34,"w":1.5,"l":64.956},{"clr":1,"x":6.265,"y":25.556,"w":1.5,"l":64.956},{"clr":1,"x":6.236,"y":27.26,"w":1.5,"l":64.984},{"oc":"#2b2e34","x":37.127,"y":11.46,"w":0.7020000000000001,"l":5.264},{"oc":"#2b2e34","x":42.391,"y":11.46,"w":0.9045,"l":4.859},{"oc":"#2b2e34","x":47.427,"y":12.138,"w":0.585,"l":4.918},{"oc":"#d1efe7","x":78.926,"y":20.596,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.926,"y":21.658,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.581,"y":20.596,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.581,"y":21.658,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.245,"y":20.596,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.245,"y":21.658,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.09,"y":20.596,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.09,"y":21.658,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.754,"y":20.596,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.754,"y":21.658,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.418,"y":20.596,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.418,"y":21.658,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.107,"y":20.596,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.107,"y":21.658,"w":1.5,"l":2.552},{"clr":1,"x":6.209,"y":13.965,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":15.596,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":16.855,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":18.01,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":19.387,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":20.499,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":23.512,"w":1.5,"l":64.956},{"oc":"#d1efe7","x":78.841,"y":22.32,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.841,"y":23.383,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.497,"y":22.32,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.497,"y":23.383,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.161,"y":22.32,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.161,"y":23.383,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.005,"y":22.32,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.005,"y":23.383,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.669,"y":22.32,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.669,"y":23.383,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.333,"y":22.32,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.333,"y":23.383,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.023,"y":22.32,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.023,"y":23.383,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":28.181,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":28.181,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":28.181,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":28.181,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":28.181,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":28.181,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":27.118,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":28.181,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":28.329,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":29.391,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":28.329,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":29.391,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":28.329,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":29.391,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":28.329,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":29.391,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":28.329,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":29.391,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":28.329,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":29.391,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":28.329,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":29.391,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":29.516,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":30.579,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":29.516,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":30.579,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":29.516,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":30.579,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":29.516,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":30.579,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":29.516,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":30.579,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":29.516,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":30.579,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":29.516,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":30.579,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":31.054,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":32.117,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":31.054,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":32.117,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":31.054,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":32.117,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":31.054,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":32.117,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":31.054,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":32.117,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":31.054,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":32.117,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":31.054,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":32.117,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":32.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":33.755,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":32.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":33.755,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":32.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":33.755,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":32.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":33.755,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":32.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":33.755,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":32.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":33.755,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":32.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":33.755,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":34.63,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":35.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":34.63,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":35.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":34.63,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":35.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":34.63,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":35.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":34.63,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":35.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":34.63,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":35.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":34.63,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":35.692,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":36.368,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":37.431,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":36.368,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":37.431,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":36.368,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":37.431,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":36.368,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":37.431,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":36.368,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":37.431,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":36.368,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":37.431,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":36.368,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":37.431,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.068,"y":38.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.068,"y":39.113,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.723,"y":38.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.723,"y":39.113,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.387,"y":38.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.387,"y":39.113,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.232,"y":38.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.232,"y":39.113,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.896,"y":38.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.896,"y":39.113,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.56,"y":38.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.56,"y":39.113,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.25,"y":38.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.25,"y":39.113,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":40.726,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":41.789,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":40.726,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":41.789,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":40.726,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":41.789,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":40.726,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":41.789,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":40.726,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":41.789,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":40.726,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":41.789,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":40.726,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":41.789,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":41.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":42.982,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":41.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":42.982,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":41.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":42.982,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":41.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":42.982,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":41.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":42.982,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":41.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":42.982,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":41.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":42.982,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.856,"y":44.449,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.856,"y":45.512,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.512,"y":44.449,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.512,"y":45.512,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.176,"y":44.449,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.176,"y":45.512,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":44.449,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":45.512,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.684,"y":44.449,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.684,"y":45.512,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.348,"y":44.449,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.348,"y":45.512,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.038,"y":44.449,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.038,"y":45.512,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":25.527,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":26.59,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":25.527,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":26.59,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":25.527,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":26.59,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":25.527,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":26.59,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":25.527,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":26.59,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":25.527,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":26.59,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":25.527,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":26.59,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":23.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.919,"y":24.442,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":23.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.575,"y":24.442,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":23.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.239,"y":24.442,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":23.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.083,"y":24.442,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":23.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.747,"y":24.442,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":23.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.411,"y":24.442,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":23.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.101,"y":24.442,"w":1.5,"l":2.552},{"clr":1,"x":6.24,"y":43.13,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":38.118,"w":1.5,"l":64.956},{"clr":1,"x":6.24,"y":29.465,"w":1.5,"l":64.956},{"oc":"#d1efe7","x":78.894,"y":24.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.894,"y":25.543,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":24.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":25.543,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":24.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":25.543,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":24.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":25.543,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":24.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":25.543,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":24.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":25.543,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":24.48,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":25.543,"w":1.5,"l":2.552},{"clr":1,"x":6.24,"y":24.527,"w":1.5,"l":64.956},{"oc":"#d1efe7","x":78.894,"y":19.317,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.894,"y":20.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":19.317,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":20.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":19.317,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":20.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":19.317,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":20.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":19.317,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":20.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":19.317,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":20.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":19.317,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":20.38,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.894,"y":43.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.894,"y":44.215,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":43.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.55,"y":44.215,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":43.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.214,"y":44.215,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":43.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.058,"y":44.215,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":43.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.722,"y":44.215,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":43.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.386,"y":44.215,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":43.152,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.076,"y":44.215,"w":1.5,"l":2.552},{"clr":1,"x":6.126,"y":12.344,"w":1.5,"l":64.956},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#2b2e34","x":23.01,"y":2.368,"w":1.5,"l":1.044},{"oc":"#2b2e34","x":29.12,"y":2.368,"w":1.5,"l":1.044},{"oc":"#bde8dd","x":7.296,"y":7.389,"w":1.5,"l":1.255},{"oc":"#bde8dd","x":40.326,"y":7.389,"w":1.5,"l":1.255},{"oc":"#bde8dd","x":43.592,"y":7.389,"w":1.5,"l":1.246},{"oc":"#bde8dd","x":70.294,"y":7.389,"w":1.5,"l":1.246},{"oc":"#d1efe7","x":78.919,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":9.976,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":12.249,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":13.84,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.894,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.447,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.55,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.102,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.214,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.766,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.058,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.611,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.722,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.275,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.386,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.939,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.076,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.629,"y":15.746,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":16.929,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":18.09,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.926,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.478,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.581,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.133,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.245,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.797,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.09,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.642,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.754,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.306,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.418,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.97,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.107,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.66,"y":20.596,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.841,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.394,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.497,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.049,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.161,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.713,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.005,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.558,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.669,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.222,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.333,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.886,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.023,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.576,"y":22.32,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":27.118,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":28.329,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":29.516,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":31.054,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":32.692,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":34.63,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":36.368,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.068,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.62,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.723,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.275,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.387,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.94,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.232,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.784,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.896,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.448,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.56,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":95.112,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.25,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.802,"y":38.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":40.726,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":41.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.856,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.409,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.512,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.064,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.176,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.728,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.684,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.237,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.348,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.901,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.038,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.591,"y":44.449,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":25.527,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.919,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.472,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.575,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.127,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.239,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.791,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.083,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.636,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.747,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.3,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.411,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.964,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.101,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.653,"y":23.38,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.894,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.447,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.55,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.102,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.214,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.766,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.058,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.611,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.722,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.275,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.386,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.939,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.076,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.629,"y":24.48,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.894,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.447,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.55,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.102,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.214,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.766,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.058,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.611,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.722,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.275,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.386,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.939,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.076,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.629,"y":19.317,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.894,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.447,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.55,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.102,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.214,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.766,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.058,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.611,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.722,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.275,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.386,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.939,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.076,"y":43.152,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.629,"y":43.152,"w":1.5,"l":1.063},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#ccede4","x":6.265,"y":21.763,"w":92.813,"h":23.799,"clr":-1},{"oc":"#ecf8f5","x":6.265,"y":6.367,"w":92.813,"h":15.368,"clr":-1},{"oc":"#d1efe7","x":6.143,"y":21.527,"w":65.154,"h":0.922,"clr":-1},{"oc":"#d1efe7","x":6.308,"y":8.929,"w":92.77,"h":0.987,"clr":-1},{"oc":"#d1efe7","x":71.221,"y":9.92,"w":27.857,"h":10.792,"clr":-1},{"oc":"#d1efe7","x":71.221,"y":20.564,"w":27.857,"h":24.947,"clr":-1},{"oc":"#2b2e34","x":23.01,"y":2.368,"w":6.11,"h":1.044,"clr":-1},{"x":7.296,"y":7.389,"w":33.03,"h":1.255,"clr":1},{"x":43.592,"y":7.389,"w":26.702,"h":1.246,"clr":1},{"x":78.919,"y":9.976,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":9.976,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":9.976,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":9.976,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":9.976,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":9.976,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":9.976,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":12.249,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":12.249,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":12.249,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":12.249,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":12.249,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":12.249,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":12.249,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":13.84,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":13.84,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":13.84,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":13.84,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":13.84,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":13.84,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":13.84,"w":2.552,"h":1.063,"clr":1},{"x":78.894,"y":15.746,"w":2.552,"h":1.063,"clr":1},{"x":81.55,"y":15.746,"w":2.552,"h":1.063,"clr":1},{"x":84.214,"y":15.746,"w":2.552,"h":1.063,"clr":1},{"x":87.058,"y":15.746,"w":2.552,"h":1.063,"clr":1},{"x":89.722,"y":15.746,"w":2.552,"h":1.063,"clr":1},{"x":92.386,"y":15.746,"w":2.552,"h":1.063,"clr":1},{"x":76.076,"y":15.746,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":16.929,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":16.929,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":16.929,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":16.929,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":16.929,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":16.929,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":16.929,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":18.09,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":18.09,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":18.09,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":18.09,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":18.09,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":18.09,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":18.09,"w":2.552,"h":1.063,"clr":1},{"x":78.926,"y":20.596,"w":2.552,"h":1.063,"clr":1},{"x":81.581,"y":20.596,"w":2.552,"h":1.063,"clr":1},{"x":84.245,"y":20.596,"w":2.552,"h":1.063,"clr":1},{"x":87.09,"y":20.596,"w":2.552,"h":1.063,"clr":1},{"x":89.754,"y":20.596,"w":2.552,"h":1.063,"clr":1},{"x":92.418,"y":20.596,"w":2.552,"h":1.063,"clr":1},{"x":76.107,"y":20.596,"w":2.552,"h":1.063,"clr":1},{"x":78.841,"y":22.32,"w":2.552,"h":1.063,"clr":1},{"x":81.497,"y":22.32,"w":2.552,"h":1.063,"clr":1},{"x":84.161,"y":22.32,"w":2.552,"h":1.063,"clr":1},{"x":87.005,"y":22.32,"w":2.552,"h":1.063,"clr":1},{"x":89.669,"y":22.32,"w":2.552,"h":1.063,"clr":1},{"x":92.333,"y":22.32,"w":2.552,"h":1.063,"clr":1},{"x":76.023,"y":22.32,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":27.118,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":27.118,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":27.118,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":27.118,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":27.118,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":27.118,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":27.118,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":28.329,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":28.329,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":28.329,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":28.329,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":28.329,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":28.329,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":28.329,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":29.516,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":29.516,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":29.516,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":29.516,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":29.516,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":29.516,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":29.516,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":31.054,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":31.054,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":31.054,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":31.054,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":31.054,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":31.054,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":31.054,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":32.692,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":32.692,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":32.692,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":32.692,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":32.692,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":32.692,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":32.692,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":34.63,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":34.63,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":34.63,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":34.63,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":34.63,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":34.63,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":34.63,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":36.368,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":36.368,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":36.368,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":36.368,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":36.368,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":36.368,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":36.368,"w":2.552,"h":1.063,"clr":1},{"x":79.068,"y":38.05,"w":2.552,"h":1.063,"clr":1},{"x":81.723,"y":38.05,"w":2.552,"h":1.063,"clr":1},{"x":84.387,"y":38.05,"w":2.552,"h":1.063,"clr":1},{"x":87.232,"y":38.05,"w":2.552,"h":1.063,"clr":1},{"x":89.896,"y":38.05,"w":2.552,"h":1.063,"clr":1},{"x":92.56,"y":38.05,"w":2.552,"h":1.063,"clr":1},{"x":76.25,"y":38.05,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":40.726,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":40.726,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":40.726,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":40.726,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":40.726,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":40.726,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":40.726,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":41.919,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":41.919,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":41.919,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":41.919,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":41.919,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":41.919,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":41.919,"w":2.552,"h":1.063,"clr":1},{"x":78.856,"y":44.449,"w":2.552,"h":1.063,"clr":1},{"x":81.512,"y":44.449,"w":2.552,"h":1.063,"clr":1},{"x":84.176,"y":44.449,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":44.449,"w":2.552,"h":1.063,"clr":1},{"x":89.684,"y":44.449,"w":2.552,"h":1.063,"clr":1},{"x":92.348,"y":44.449,"w":2.552,"h":1.063,"clr":1},{"x":76.038,"y":44.449,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":25.527,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":25.527,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":25.527,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":25.527,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":25.527,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":25.527,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":25.527,"w":2.552,"h":1.063,"clr":1},{"x":78.919,"y":23.38,"w":2.552,"h":1.063,"clr":1},{"x":81.575,"y":23.38,"w":2.552,"h":1.063,"clr":1},{"x":84.239,"y":23.38,"w":2.552,"h":1.063,"clr":1},{"x":87.083,"y":23.38,"w":2.552,"h":1.063,"clr":1},{"x":89.747,"y":23.38,"w":2.552,"h":1.063,"clr":1},{"x":92.411,"y":23.38,"w":2.552,"h":1.063,"clr":1},{"x":76.101,"y":23.38,"w":2.552,"h":1.063,"clr":1},{"x":78.894,"y":24.48,"w":2.552,"h":1.063,"clr":1},{"x":81.55,"y":24.48,"w":2.552,"h":1.063,"clr":1},{"x":84.214,"y":24.48,"w":2.552,"h":1.063,"clr":1},{"x":87.058,"y":24.48,"w":2.552,"h":1.063,"clr":1},{"x":89.722,"y":24.48,"w":2.552,"h":1.063,"clr":1},{"x":92.386,"y":24.48,"w":2.552,"h":1.063,"clr":1},{"x":76.076,"y":24.48,"w":2.552,"h":1.063,"clr":1},{"x":78.894,"y":19.317,"w":2.552,"h":1.062,"clr":1},{"x":81.55,"y":19.317,"w":2.552,"h":1.062,"clr":1},{"x":84.214,"y":19.317,"w":2.552,"h":1.062,"clr":1},{"x":87.058,"y":19.317,"w":2.552,"h":1.062,"clr":1},{"x":89.722,"y":19.317,"w":2.552,"h":1.062,"clr":1},{"x":92.386,"y":19.317,"w":2.552,"h":1.062,"clr":1},{"x":76.076,"y":19.317,"w":2.552,"h":1.062,"clr":1},{"x":78.894,"y":43.152,"w":2.552,"h":1.063,"clr":1},{"x":81.55,"y":43.152,"w":2.552,"h":1.063,"clr":1},{"x":84.214,"y":43.152,"w":2.552,"h":1.063,"clr":1},{"x":87.058,"y":43.152,"w":2.552,"h":1.063,"clr":1},{"x":89.722,"y":43.152,"w":2.552,"h":1.063,"clr":1},{"x":92.386,"y":43.152,"w":2.552,"h":1.063,"clr":1},{"x":76.076,"y":43.152,"w":2.552,"h":1.063,"clr":1}],"Texts":[{"oc":"#2b2e34","x":13.607,"y":45.749,"w":0.8009999999999999,"clr":-1,"A":"left","R":[{"T":"*%20","S":-1,"TS":[0,9.93,0,0]}]},{"oc":"#2b2e34","x":6.015,"y":5.276,"w":21.482999999999993,"clr":-1,"A":"left","R":[{"T":"Make%20entries%20using%20black%20ink.%20Attach%20to%20your%20D-40.","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":11.088,"y":2.077,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":11.088,"y":2.602,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":23.32,"y":2.382,"w":2.424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":30.195,"y":2.382,"w":10.373999999999999,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20I%20%20%20Additions","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":23.321,"y":3.232,"w":13.802,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20to%20and%20Subtractions%20from","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":23.321,"y":4.081,"w":16.475,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20Federal%20Adjusted%20Gross%20Income","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":44.996,"y":46.883,"w":10.935,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20I%20%20%20%20%20P1","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":44.996,"y":47.445,"w":28.21100000000001,"clr":-1,"A":"left","R":[{"T":"Additions%20to%20and%20Subtractions%20from%20Federal%20Adjusted%20Gross%20Income","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":17.384,"y":46.883,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.668,"y":8.844,"w":6.3315,"clr":-1,"A":"left","R":[{"T":"Calculation%20A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.205,"y":8.844,"w":19.456499999999995,"clr":-1,"A":"left","R":[{"T":"Additions%20to%20federal%20adjusted%20gross%20income.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.135,"y":8.844,"w":22.97099999999998,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20only%20those%20that%20apply.%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,10.5,0,0]}]},{"oc":"#2b2e34","x":75.811,"y":8.844,"w":13.834199999999997,"clr":-1,"A":"left","R":[{"T":"Dollars%20only%2C%20do%20not%20enter%20cents","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#2b2e34","x":6.645,"y":9.969,"w":1.541,"clr":-1,"A":"left","R":[{"T":"%20%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.567,"y":9.969,"w":24.553000000000004,"clr":-1,"A":"left","R":[{"T":"Part-year%20DC%20resident%20%E2%80%93%20enter%20the%20portion%20of%20adjustments%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":43.955,"y":9.969,"w":11.405000000000005,"clr":-1,"A":"left","R":[{"T":"(from%20Federal%20Form%201040%3B","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":71.637,"y":9.969,"w":0.921,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":9.969,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":9.969,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":9.969,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":9.59,"y":10.656,"w":9.005999999999998,"clr":-1,"A":"left","R":[{"T":"1040A%3B%20or%201040NR)","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#2b2e34","x":6.645,"y":12.219,"w":1.541,"clr":-1,"A":"left","R":[{"T":"%20%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.567,"y":12.219,"w":32.96399999999999,"clr":-1,"A":"left","R":[{"T":"Income%20distributions%20eligible%20for%20income%20averaging%20on%20your%20federal%20tax%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.637,"y":12.219,"w":0.921,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":12.219,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":12.219,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":12.219,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":9.69,"y":12.906,"w":11.087000000000003,"clr":-1,"A":"left","R":[{"T":"from%20Federal%20Form%204972)","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":23.803,"y":12.906,"w":0.301,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":6.645,"y":13.846,"w":1.485,"clr":-1,"A":"left","R":[{"T":"%20%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.502,"y":13.846,"w":34.76399999999999,"clr":-1,"A":"left","R":[{"T":"30%25%20or%2050%25%20federal%20bonus%20depreciation%20and%2For%20extra%20IRC%20%C2%A7179%20expenses%20claimed%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.547,"y":13.846,"w":0.893,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":13.846,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":13.846,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":13.846,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":9.71,"y":14.533,"w":1.029,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.279,"y":14.533,"w":6.123999999999999,"clr":-1,"A":"left","R":[{"T":"%20federal%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.129,"y":15.658000000000001,"w":1.851,"clr":-1,"A":"left","R":[{"T":"%20%20%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.567,"y":15.658000000000001,"w":34.760000000000005,"clr":-1,"A":"left","R":[{"T":"Any%20part%20of%20a%20discrimination%20award%20subject%20to%20income%20averaging.%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":"#2b2e34","x":71.584,"y":15.658000000000001,"w":0.921,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":15.658000000000001,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":15.658000000000001,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":15.658000000000001,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.645,"y":16.848,"w":1.541,"clr":-1,"A":"left","R":[{"T":"%20%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.567,"y":16.848,"w":28.093,"clr":-1,"A":"left","R":[{"T":"Deductions%20for%20S%20Corporations%20from%20Schedule%20K-I%2C%20Form%201120%20S.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.699,"y":16.848,"w":0.921,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":16.848,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":16.848,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":16.848,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.645,"y":18.037,"w":1.541,"clr":-1,"A":"left","R":[{"T":"%20%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.567,"y":18.037,"w":10.388000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.637,"y":18.037,"w":0.921,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":18.037,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":18.037,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":18.037,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.153,"y":19.38,"w":1.4809999999999999,"clr":-1,"A":"left","R":[{"T":"%20%20%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":35.142,"y":19.38,"w":4.921000000000001,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":71.157,"y":19.38,"w":1.231,"clr":-1,"A":"left","R":[{"T":"%207%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":19.38,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":19.38,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":19.38,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":7.521,"y":20.535,"w":0.921,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.59,"y":20.535,"w":7.024,"clr":-1,"A":"left","R":[{"T":"Total%20additions%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.228,"y":20.535,"w":30.438999999999986,"clr":-1,"A":"left","R":[{"T":"Add%20entries%20on%20Lines%201%E2%80%93%207.%20Enter%20the%20total%20here%20and%20on%20D-40%2C%20Line%205.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.637,"y":20.535,"w":0.921,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"x":73.038,"y":20.535,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":94.84,"y":20.535,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.484,"y":20.535,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.926,"y":21.483,"w":6.3365,"clr":-1,"A":"left","R":[{"T":"Calculation%20B","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.47,"y":21.483,"w":21.669900000000002,"clr":-1,"A":"left","R":[{"T":"Subtractions%20from%20federal%20adjusted%20gross%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.828,"y":21.483,"w":12.741,"clr":-1,"A":"left","R":[{"T":"%20Fill%20in%20only%20those%20that%20apply.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":6.428,"y":22.483,"w":1.541,"clr":-1,"A":"left","R":[{"T":"%20%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.481,"y":22.483,"w":27.62200000000001,"clr":-1,"A":"left","R":[{"T":"Taxable%20interest%20from%20US%20Treasury%20bonds%20and%20other%20obligations.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":51.766,"y":22.483,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.071,"y":22.483,"w":1.231,"clr":-1,"A":"left","R":[{"T":"%201%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":22.483,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":22.483,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":22.483,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":23.483,"w":13.876000000000001,"clr":-1,"A":"left","R":[{"T":"%20%202%20%20Disability%20income%20exclusion%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.005,"y":23.483,"w":14.493000000000006,"clr":-1,"A":"left","R":[{"T":"from%20DC%20Form%20D-2440%2C%20Line%2010.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":45.548,"y":23.483,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.071,"y":23.483,"w":1.231,"clr":-1,"A":"left","R":[{"T":"%202%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":23.483,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":23.483,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":23.483,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":24.483,"w":30.919999999999998,"clr":-1,"A":"left","R":[{"T":"%20%203%20%20Interest%20and%20dividend%20income%20of%20a%20child%20from%20Federal%20Form%208814*.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.317,"y":24.483,"w":0.921,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":24.483,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":24.483,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":24.483,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":25.483,"w":30.028999999999996,"clr":-1,"A":"left","R":[{"T":"%20%204%20%20Awards%2C%20other%20than%20front%20and%20back%20pay%2C%20received%20due%20to%20unlawful%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.396,"y":25.483,"w":0.921,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":25.483,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":25.483,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":25.483,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.102,"y":26.171,"w":12.331,"clr":-1,"A":"left","R":[{"T":"%20employment%20discrimination.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":27.296,"w":1.541,"clr":-1,"A":"left","R":[{"T":"%20%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.48,"y":27.296,"w":31.549999999999994,"clr":-1,"A":"left","R":[{"T":"Excess%20of%20DC%20allowable%20depreciation%20over%20federal%20allowable%20depreciation.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.071,"y":27.296,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.551,"y":27.296,"w":0.891,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":27.296,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":27.296,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":27.296,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":28.421,"w":1.541,"clr":-1,"A":"left","R":[{"T":"%20%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.48,"y":28.421,"w":35.95700000000002,"clr":-1,"A":"left","R":[{"T":"Long-term%20care%20insurance%20premiums%20paid%20in%202013%2C%20%24500%20annual%20limit%20per%20person.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.555,"y":28.421,"w":0.921,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":28.421,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":28.421,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":28.421,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":29.421,"w":1.5006,"clr":-1,"A":"left","R":[{"T":"%20%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.434,"y":29.421,"w":38.292500000000025,"clr":-1,"A":"left","R":[{"T":"Amount%20paid%20(or%20carried%20over)%20to%20DC%20College%20Savings%20plan%20in%202013%20(maximum%20%244%2C000%20per%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.468,"y":29.421,"w":0.9008,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":29.421,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":29.421,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":29.421,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":45.6,"y":30.108,"w":15.489999999999997,"clr":-1,"A":"left","R":[{"T":"Part-year%20residents%20see%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"x":72.921,"y":31.108,"w":0.9072,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":31.108,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.721,"y":31.108,"w":1.202,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":31.796,"w":33.129,"clr":-1,"A":"left","R":[{"T":"%20as%20disabled)%20with%20adjusted%20annual%20household%20income%20of%20less%20than%20%24100%2C000.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57.126,"y":31.796,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":32.796,"w":1.5333999999999999,"clr":-1,"A":"left","R":[{"T":"%20%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.481,"y":32.796,"w":31.72519999999998,"clr":-1,"A":"left","R":[{"T":"Expenditures%20by%20DC%20teachers%20for%20necessary%20classroom%20teaching%20materials%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.478,"y":32.796,"w":0.9172,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"x":72.952,"y":32.796,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":32.796,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":32.796,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.386,"y":33.483,"w":13.667799999999996,"clr":-1,"A":"left","R":[{"T":"%20%24500%20annual%20limit%20per%20person.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.102,"y":33.483,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":34.671,"w":1.842,"clr":-1,"A":"left","R":[{"T":"10%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":34.671,"w":38.091000000000015,"clr":-1,"A":"left","R":[{"T":"Expenditures%20by%20DC%20teachers%20for%20certain%20tuition%20and%20fees%2C%20%241500%20annual%20limit%20per%20person","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":68.156,"y":34.671,"w":0.9299999999999999,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.551,"y":34.671,"w":1.532,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"x":73.897,"y":34.671,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":34.671,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":34.671,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":35.271,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":36.458,"w":1.532,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":36.458,"w":36.75700000000001,"clr":-1,"A":"left","R":[{"T":"Loan%20repayment%20awards%20received%20by%20health-care%20professionals%20from%20DC%20government.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.551,"y":36.458,"w":1.532,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"x":73.897,"y":36.458,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":36.458,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":36.458,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.582,"y":37.021,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":38.208,"w":1.532,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":38.208,"w":35.59999999999998,"clr":-1,"A":"left","R":[{"T":"Health-care%20insurance%20premiums%20paid%20by%20an%20employer%20for%20an%20employee%E2%80%99s%20registered","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#2b2e34","x":71.071,"y":38.208,"w":1.842,"clr":-1,"A":"left","R":[{"T":"%2012%20","S":3,"TS":[0,12,0,0]}]},{"x":73.897,"y":38.208,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":38.208,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":38.208,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.582,"y":38.896,"w":16.316000000000006,"clr":-1,"A":"left","R":[{"T":"domestic%20partner%20or%20same%20sex%20spouse.","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#2b2e34","x":6.582,"y":39.521,"w":37.18,"clr":-1,"A":"left","R":[{"T":"Make%20no%20entry%20if%20the%20premium%20was%20deducted%20on%20your%20federal%20return%2C%20see%20instructions.","S":-1,"TS":[0,10.425,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":40.833,"w":1.532,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":40.833,"w":15.761000000000003,"clr":-1,"A":"left","R":[{"T":"DC%20Poverty%20Lawyer%20Loan%20Assistance.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.207,"y":40.833,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.551,"y":40.833,"w":1.532,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"x":73.897,"y":40.833,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":40.833,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":40.833,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":14.083,"y":42.083,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":31.332,"y":42.083,"w":23.21500000000001,"clr":-1,"A":"left","R":[{"T":"%20_____________________________________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.551,"y":42.083,"w":1.532,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"x":73.897,"y":42.083,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":42.083,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":42.083,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":43.208,"w":1.222,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":43.208,"w":16.142,"clr":-1,"A":"left","R":[{"T":"Military%20Spouse%20Residency%20Relief%20Act.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.804,"y":43.208,"w":7.404999999999999,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#bde8dd","x":52.076,"y":43.208,"w":4.921000000000001,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":71.551,"y":43.208,"w":1.532,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"x":73.897,"y":43.208,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":43.208,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":43.208,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":44.458,"w":1.532,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":44.458,"w":8.645000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20subtractions.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.65,"y":44.458,"w":31.350999999999985,"clr":-1,"A":"left","R":[{"T":"Add%20entries%20on%20Lines%201%E2%80%9315.%20Enter%20the%20total%20here%20and%20on%20D-40%2C%20Line%2013.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.551,"y":44.458,"w":1.532,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"x":73.897,"y":44.458,"w":0.9272,"clr":1,"A":"left","R":[{"T":"%24%20","S":9,"TS":[0,12,1,0]}]},{"x":95.098,"y":44.458,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":95.741,"y":44.458,"w":1.222,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":86.437,"y":48.114,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%208","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.015,"y":6.378,"w":5.021,"clr":-1,"A":"left","R":[{"T":"%20%20Last%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":43.581,"y":6.378,"w":9.940000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.292,"y":10.656,"w":20.335000000000004,"clr":-1,"A":"left","R":[{"T":"%20that%20relate%20to%20the%20time%20you%20resided%20outside%20DC.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.59,"y":11.344,"w":37.842999999999996,"clr":-1,"A":"left","R":[{"T":"For%20Lines%202%20%E2%80%93%207%20below%20include%20only%20the%20amounts%20related%20to%20the%20time%20you%20resided%20in%20DC.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":30.108,"w":25.726000000000006,"clr":-1,"A":"left","R":[{"T":"%20person%2C%20%248%2C000%20for%20joint%20filers%20if%20each%20is%20an%20account%20owner).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.387,"y":31.108,"w":1.5002000000000002,"clr":-1,"A":"left","R":[{"T":"%20%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.434,"y":31.108,"w":34.76660000000002,"clr":-1,"A":"left","R":[{"T":"Exclusion%20of%20up%20to%20%2410%2C000%20for%20DC%20residents%20(certified%20by%20the%20Social%20Security%20Adm.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.54,"y":31.108,"w":0.9006000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":14.203,"y":45.749,"w":62.80499999999999,"clr":-1,"A":"left","R":[{"T":"Note%3A%20Since%20income%20reported%20on%20Federal%20Form%208814%2C%20Parents%E2%80%99%20Election%20to%20Report%20Child%E2%80%99s%20Interest%20and%20Dividends%2C%20and%20included%20in%20the%20parents%E2%80%99%20federal%20","S":-1,"TS":[0,9.93,0,0]}]},{"oc":"#2b2e34","x":14.203,"y":46.274,"w":52.636,"clr":-1,"A":"left","R":[{"T":"return%20income%20is%20subtracted%20above%20on%20Line%203%20of%20Calculation%20B%2C%20the%20child%20must%20file%20a%20separate%20DC%20return%20reporting%20this%20income.","S":-1,"TS":[0,9.93,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":42.083,"w":1.222,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.504,"y":42.083,"w":2.68,"clr":-1,"A":"left","R":[{"T":"Other%20","S":3,"TS":[0,12,0,0]}]},{"x":52.475,"y":10.614,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":366,"AM":1024,"x":7.293,"y":7.649,"w":32.96,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":367,"AM":1024,"x":43.603,"y":7.668,"w":26.447,"h":0.862},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NRADJUST","EN":0},"TI":368,"AM":1024,"x":76.258,"y":10.107,"w":18.636,"h":0.854},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCDISTS","EN":0},"TI":369,"AM":0,"x":76.258,"y":12.394,"w":18.636,"h":0.854,"TU":"Line 2. Income distributions eligible for income averaging on your federal tax return from Federal Form 4972."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPRADJ","EN":0},"TI":370,"AM":0,"x":76.313,"y":13.993,"w":18.636,"h":0.854,"TU":"Line 3. 30% or 50% federal bonus depreciation and/or extra IRC Section 179 expenses claimed on federal return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISCRIM","EN":0},"TI":371,"AM":0,"x":76.218,"y":15.891,"w":18.636,"h":0.854,"TU":"Line 4. Any part of a discrimination award subject to income averaging."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDSCORP","EN":0},"TI":372,"AM":0,"x":76.198,"y":17.082,"w":18.636,"h":0.854,"TU":"Line 5. Deductions for S Corporations from Schedule K-1, Form 1120S."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CALAOTHR","EN":0},"TI":373,"AM":0,"x":34.749,"y":18.146,"w":35.413,"h":1.042,"TU":"Line 6. Other. Description. (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AOTHRAMT","EN":0},"TI":374,"AM":0,"x":76.178,"y":18.245,"w":18.636,"h":0.854,"TU":"Line 6. Other amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTADDS","EN":0},"TI":375,"AM":1024,"x":76.232,"y":20.715,"w":18.636,"h":0.854},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTUSOBL","EN":0},"TI":376,"AM":0,"x":76.196,"y":22.451,"w":18.636,"h":0.854,"TU":"Line 1. Taxable interest from US Treasury bonds and other obligations. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISINCEX","EN":0},"TI":377,"AM":0,"x":76.176,"y":23.516,"w":18.636,"h":0.854,"TU":"Line 2. Disability income exclusion from DC Form D-2440, Line 10. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHINTDIV","EN":0},"TI":378,"AM":0,"x":76.156,"y":24.617,"w":18.636,"h":0.854,"TU":"Line 3. Interest and dividend income of a child from Federal Form 8814."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AWARDS","EN":0},"TI":379,"AM":0,"x":76.211,"y":25.669,"w":18.636,"h":0.854,"TU":"Line 4. Awards, other than front and back pay, received due to unlawful employment discrimination."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPRECJ","EN":0},"TI":380,"AM":0,"x":76.196,"y":27.229,"w":18.636,"h":0.854,"TU":"Line 5. Excess of DC allowable depreciation over federal allowable depreciation. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LTC","EN":0},"TI":381,"AM":0,"x":76.176,"y":28.482,"w":18.636,"h":0.854,"TU":"Line 6. Long-term care insurance premiums paid in 2013, $500 annual limit per person."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COLLEGE","EN":0},"TI":382,"AM":0,"x":76.156,"y":29.645,"w":18.636,"h":0.854,"TU":"Line 7. Amount paid (or carried over) to DC College Savings plan in 2013 (maximum $4,000 per person, $8,000 for joint filiers if each is an account owner). Part year residents see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISABLED","EN":0},"TI":383,"AM":0,"x":76.211,"y":31.196,"w":18.636,"h":0.854,"TU":"Line 8. Exclusion of up to $10,0000 for DC residents (certified by the Social Secuirty Administration as disabled) with adjusted annual household income of less than $100,000. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TEACHMAT","EN":0},"TI":384,"AM":0,"x":76.305,"y":32.83,"w":18.636,"h":0.854,"TU":"Line 9. Expenditures by DC teachers for necessary classroom teaching materials, $500 annual limit per person. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TEACHFEE","EN":0},"TI":385,"AM":0,"x":76.285,"y":34.755,"w":18.636,"h":0.854,"TU":"Line 10. Expenditures by DC teachers for certain tuition and fees, $1500 annual limit per person. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOAN","EN":0},"TI":386,"AM":0,"x":76.211,"y":36.498,"w":18.636,"h":0.854,"TU":"Line 11. Loan repayment awards received by health-care professionals from DC government. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREMIUM","EN":0},"TI":387,"AM":0,"x":76.34,"y":38.159,"w":18.636,"h":0.854,"TU":"Line 12. Health-care insurance premiums paid by an employer for an employee's registered domestic partner or same sex spouse. Make no entry if the premium was deducted on your federal return, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LAWLOAN","EN":0},"TI":388,"AM":0,"x":76.196,"y":40.841,"w":18.636,"h":0.854,"TU":"Line 13. DC Poverty Lawyer Loan Assistance. See instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CALBOTHR","EN":0},"TI":389,"AM":0,"x":31.99,"y":42.136,"w":35.413,"h":0.902,"TU":"Line 14. Other. Description. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BOTHRAMT","EN":0},"TI":390,"AM":0,"x":76.176,"y":42.031,"w":18.636,"h":0.854,"TU":"Line 14. Other. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILSP","EN":0},"TI":391,"AM":0,"x":76.156,"y":43.285,"w":18.636,"h":0.854,"TU":"Line 15. Military Spouse Residency Relief Act. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTSUBS","EN":0},"TI":392,"AM":1024,"x":76.211,"y":44.586,"w":18.636,"h":0.854}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DCSCHN.content.txt b/test/data/dc/form/DCSCHN.content.txt new file mode 100755 index 00000000..5d5f4748 --- /dev/null +++ b/test/data/dc/form/DCSCHN.content.txt @@ -0,0 +1,142 @@ +Government of the +District of Columbia +2013 + +SCHEDULE N DC Non- + Custodial Parent EITC Claim +2013 SCHEDULE N P1 +DC Non-Custodial Parent EITC Claim +Revised 09/13 +Important: +Print in CAPITAL letters using black ink. + Attach to Schedule U. File Schedules N and U with your D-40. + +First name of non-custodial parent M.I. Last name + +Address (number, street and apartment) +City State Zip Code +Social Security Number Date of birth (MMDDYYYY) + +Even if you are not eligible to claim the Federal Earned Income Credit you may be able to claim the DC Earned Income Tax Credit. +You may claim the DC Non-Custodial Parent EITC only if you can answer “Yes” to the following questions. + +1 Is your Federal Adjusted Gross Income for 2013 less than: + + + + + +2 Were you a DC resident taxpayer during the year? +3 Were you between the ages of 18 and 30 as of December 31, 2013? +4 Are you a parent of a minor child(ren) with whom you do not reside? +5 Are you under a court order requiring you to make child support payments? +6 Was the effective date of the child support payment order on or before 6/30/2013? +7 Did you make child support payment(s) through a government sponsored support collection unit? +8 Did you pay all of the court ordered child support due for 2013 by December 31, 2013? +If you answered “Yes” to the above questions, you may claim the DC Non-Custodial Parent EITC. +Complete Schedule N and attach it, and Schedule U, to your D-40. +File order 9 +DC Non-Custodial Parent EITC Eligibility – Please complete this checklist to determine your eligibility to file Schedule N. +$37,870 ($43,210 married filing jointly) with one qualifying child +$43,038 ($48,378 married filing jointly) with two qualifying children +$46,227 ($51,567 married filing jointly) with three or more qualifying children +YES + +NO +----------------Page (0) Break---------------- +2013 SCHEDULE N P2 +DC Non-Custodial Parent EITC Claim +Revised 09/13 +Number, street and apartment number +City State Zip Code +#1 +#1 +#2 +#1 +#2 +#3 +#1 +#2 +#3 +Qualifying Child Information + First Name M.I. Last Name + + Child’s name, #2 + Child’s name, #3 +If you have more than three qualifying children, you only need to list three to get the maximum credit. + 2. +Child’s +SSN + 3. Child’s date of birth + 4. Custodian’s name + 5. Custodian’s address + + 6. Custodian’s SSN + 7. Location of the + court that ordered + support payments for: + 8. Case or Docket number for: + +First Name M.I. Last Name +File order 10 +#2 +9. +Name of government agency to which you make payments for: +10. +Address of +the government +agency for: +#3 +14. +11. +Amount of +court ordered +payment +$ +. +00 per month +$ +. +00 per month +$ +. +00 per month +#2 +12. Date payments were #1 (MMDDYYYY) #2 (MMDDYYYY) #3 (MMDDYYYY) + ordered to start +13. Total payments made during 2013 $ +. +00 + + $ +. +00 + +$ +. +00 + 1. + +Child’s name, #1 +#1 + +#3 +#1 +#2 +#3 +Computation: Using the amount on Line 3 of Form D-40, find the correct Earned Income Credit (EIC) amount from the EIC table in the +Federal 1040 tax return booklet. Multiply that amount by .40 to determine the DC Non-Custodial Parent EITC amount to claim on Schedule U, +Part 1b, Line 1. If you are a part-year filer, see part-year resident instructions in the D-40 booklet on prorating the credit to be claimed. +#1 + +#2 + +#3 + +#1 + +#2 + +#3 +#3 +----------------Page (1) Break---------------- diff --git a/test/data/dc/form/DCSCHN.fields.json b/test/data/dc/form/DCSCHN.fields.json new file mode 100755 index 00000000..18d8342f --- /dev/null +++ b/test/data/dc/form/DCSCHN.fields.json @@ -0,0 +1 @@ +[{"id":"AGIXRB","type":"radio","calc":false,"value":"AGIY"},{"id":"AGIXRB","type":"radio","calc":false,"value":"AGIN"},{"id":"RESXRB","type":"radio","calc":false,"value":"RESY"},{"id":"RESXRB","type":"radio","calc":false,"value":"RESN"},{"id":"AGEXRB","type":"radio","calc":false,"value":"AGEY"},{"id":"AGEXRB","type":"radio","calc":false,"value":"AGEN"},{"id":"PARXRB","type":"radio","calc":false,"value":"PARY"},{"id":"PARXRB","type":"radio","calc":false,"value":"PARN"},{"id":"CSPXRB","type":"radio","calc":false,"value":"CSUPY"},{"id":"CSPXRB","type":"radio","calc":false,"value":"CSUPN"},{"id":"EFFXRB","type":"radio","calc":false,"value":"EFDTY"},{"id":"EFFXRB","type":"radio","calc":false,"value":"EFDTN"},{"id":"COLXRB","type":"radio","calc":false,"value":"COLLY"},{"id":"COLXRB","type":"radio","calc":false,"value":"COLLN"},{"id":"ALLXRB","type":"radio","calc":false,"value":"ALLY"},{"id":"ALLXRB","type":"radio","calc":false,"value":"ALLN"},{"id":"FNAME","type":"alpha","calc":true,"value":""},{"id":"MI","type":"mask","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DOB","type":"date","calc":true,"value":""},{"id":"CNAME1","type":"alpha","calc":false,"value":""},{"id":"CMI1","type":"mask","calc":false,"value":""},{"id":"CLNAME1","type":"alpha","calc":false,"value":""},{"id":"CNAME2","type":"alpha","calc":false,"value":""},{"id":"CMI2","type":"mask","calc":false,"value":""},{"id":"CLNAME2","type":"alpha","calc":false,"value":""},{"id":"CNAME3","type":"alpha","calc":false,"value":""},{"id":"CMI3","type":"mask","calc":false,"value":""},{"id":"CLNAME3","type":"alpha","calc":false,"value":""},{"id":"CSSN1","type":"ssn","calc":false,"value":""},{"id":"CSSN2","type":"ssn","calc":false,"value":""},{"id":"CSSN3","type":"ssn","calc":false,"value":""},{"id":"CDOB1","type":"date","calc":false,"value":""},{"id":"CDOB2","type":"date","calc":false,"value":""},{"id":"CDOB3","type":"date","calc":false,"value":""},{"id":"CUSTNAM","type":"alpha","calc":false,"value":""},{"id":"CUSTMI","type":"mask","calc":false,"value":""},{"id":"CUSTLNAM","type":"alpha","calc":false,"value":""},{"id":"CUSTADDR","type":"alpha","calc":false,"value":""},{"id":"CUSTCITY","type":"alpha","calc":false,"value":""},{"id":"CUSTST","type":"alpha","calc":false,"value":""},{"id":"CUSTZIP","type":"zip","calc":false,"value":""},{"id":"CUSTSSN","type":"ssn","calc":false,"value":""},{"id":"COURT1","type":"mask","calc":false,"value":""},{"id":"COURT3","type":"mask","calc":false,"value":""},{"id":"COURT2","type":"mask","calc":false,"value":""},{"id":"CASE1","type":"mask","calc":false,"value":""},{"id":"AGENCY1","type":"mask","calc":false,"value":""},{"id":"CASE2","type":"mask","calc":false,"value":""},{"id":"AGENCY2","type":"mask","calc":false,"value":""},{"id":"CASE3","type":"mask","calc":false,"value":""},{"id":"AGENCY3","type":"mask","calc":false,"value":""},{"id":"ADDR1","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"ADDR3","type":"alpha","calc":false,"value":""},{"id":"AMOUNT1","type":"number","calc":false,"value":""},{"id":"AMOUNT3","type":"number","calc":false,"value":""},{"id":"AMOUNT2","type":"number","calc":false,"value":""},{"id":"DATE1","type":"date","calc":false,"value":""},{"id":"DATE2","type":"date","calc":false,"value":""},{"id":"DATE3","type":"date","calc":false,"value":""},{"id":"TOTAL1","type":"number","calc":false,"value":""},{"id":"TOTAL2","type":"number","calc":false,"value":""},{"id":"TOTAL3","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DCSCHN.json b/test/data/dc/form/DCSCHN.json new file mode 100755 index 00000000..77393792 --- /dev/null +++ b/test/data/dc/form/DCSCHN.json @@ -0,0 +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":"#e8f7f3","x":7.218,"y":6.981,"w":1.5,"l":91.094},{"oc":"#e8f7f3","x":7.218,"y":42.77,"w":1.5,"l":91.094},{"oc":"#2b2e34","x":23.675,"y":2.419,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":23.675,"y":3.371,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":7.149,"y":7.066,"w":4.5,"l":91.266},{"oc":"#2b2e34","x":6.96,"y":17.762,"w":6,"l":91.266},{"oc":"#d1efe7","x":9.023,"y":8.544,"w":1.5,"l":87.398},{"oc":"#d1efe7","x":9.023,"y":9.669,"w":1.5,"l":87.398},{"oc":"#d1efe7","x":9.281,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.281,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.374,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.374,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.468,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.468,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.562,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.562,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.656,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.656,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.749,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.749,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.843,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.843,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.937,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.937,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.031,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.031,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.124,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.124,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.218,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.218,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.312,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.312,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.124,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.124,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.109,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.109,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.203,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.203,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.484,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.484,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.578,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.578,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.671,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.671,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.765,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.765,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.859,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.859,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.953,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.953,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.046,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.046,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.14,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.14,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.234,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.234,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":8.937,"y":13.044,"w":1.5,"l":86.797},{"oc":"#d1efe7","x":8.937,"y":14.169,"w":1.5,"l":86.797},{"oc":"#d1efe7","x":9.195,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.195,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.289,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.289,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.382,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.382,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.476,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.476,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.57,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.57,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.664,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.664,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.757,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.757,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.851,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.851,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.945,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.945,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.039,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.039,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.132,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.132,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.226,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.226,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.32,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.32,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.414,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.414,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":52.507,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":52.507,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.835,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.835,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.929,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.929,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.601,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.601,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.695,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.695,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":72.789,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":72.789,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.882,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.882,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.976,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.976,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.445,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.445,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.539,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.539,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.632,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.632,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.726,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.726,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.328,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.328,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.109,"y":15.481,"w":1.5,"l":55.129},{"oc":"#d1efe7","x":9.109,"y":16.606,"w":1.5,"l":55.129},{"oc":"#d1efe7","x":9.367,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.367,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.117,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.117,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.867,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.867,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.304,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.304,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.054,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.054,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.335,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.335,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.085,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.085,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.351,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.351,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.929,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.929,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.195,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.195,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.945,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.945,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.695,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.695,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.445,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.445,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.458,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.458,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.208,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.208,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.958,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.958,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.708,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.708,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.179,"y":10.865,"w":1.5,"l":78.235},{"oc":"#d1efe7","x":9.179,"y":11.943,"w":1.5,"l":78.235},{"oc":"#d1efe7","x":9.265,"y":10.858,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.265,"y":11.911,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.611,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.611,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.206,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.206,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.802,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.802,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.397,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.397,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.992,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.992,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.588,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.588,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.183,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.183,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.778,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.778,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.374,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.374,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.969,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.969,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.564,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.564,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.28,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.28,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.875,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.875,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.47,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.47,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.066,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.066,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.661,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.661,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.256,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.256,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.852,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.852,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.447,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.447,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.042,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.042,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.638,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.638,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.233,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.233,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.828,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.828,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.424,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.424,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.019,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.019,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.614,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.614,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.702,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.702,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.297,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.297,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.175,"y":10.849,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.175,"y":11.911,"w":1.5,"l":2.552},{"clr":1,"x":6.187,"y":26.732,"w":1.5,"l":93.991},{"clr":1,"x":5.598,"y":28.317,"w":1.5,"l":93.991},{"clr":1,"x":6.04,"y":29.763,"w":1.5,"l":93.991},{"clr":1,"x":6.187,"y":31.308,"w":1.5,"l":93.991},{"clr":1,"x":6.04,"y":32.763,"w":1.5,"l":93.991},{"clr":1,"x":5.451,"y":34.348,"w":1.5,"l":93.991},{"clr":1,"x":5.892,"y":35.795,"w":1.5,"l":93.991},{"clr":1,"x":6.04,"y":37.339,"w":1.5,"l":93.991},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#e8f7f3","x":7.218,"y":6.981,"w":1.5,"l":35.789},{"oc":"#e8f7f3","x":98.312,"y":6.981,"w":1.5,"l":35.789},{"oc":"#2b2e34","x":23.675,"y":2.419,"w":1.5,"l":0.952},{"oc":"#2b2e34","x":29.785,"y":2.419,"w":1.5,"l":0.952},{"oc":"#d1efe7","x":9.023,"y":8.544,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":96.421,"y":8.544,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":9.281,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.031,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.374,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.124,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.468,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.218,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.562,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.312,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.656,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.406,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.749,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.499,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.843,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.593,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.937,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.687,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.031,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.781,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.124,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.874,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.218,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.968,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.312,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.062,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.124,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.874,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.109,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.859,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.203,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.953,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.296,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.046,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.39,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.14,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.484,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.234,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.578,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.328,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.671,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.421,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.765,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.515,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.859,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.609,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.953,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.703,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.046,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.796,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.14,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.89,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.234,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.984,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":8.937,"y":13.044,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.734,"y":13.044,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":9.195,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":11.945,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.289,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.039,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.382,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.132,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.476,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.226,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.57,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.32,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.664,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.414,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.757,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.507,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.851,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.601,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.945,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.695,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.039,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.789,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.132,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.882,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.226,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.976,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.32,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.07,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.414,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.164,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.507,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.257,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.835,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.585,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.929,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.679,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.601,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.351,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.695,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.445,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.789,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.539,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.882,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.632,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.976,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.726,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.445,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.195,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.539,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.289,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.632,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.382,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.726,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.476,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.328,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.078,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":9.109,"y":15.481,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":64.238,"y":15.481,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":9.367,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.117,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.117,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.867,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.867,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.617,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.304,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.054,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.054,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.804,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.335,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.085,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.085,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.835,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.351,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.101,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.929,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.679,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.195,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.945,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.945,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.695,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.695,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.445,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.445,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.195,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.458,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.208,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.208,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.958,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.958,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.708,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.708,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.458,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":9.179,"y":10.865,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":87.414,"y":10.865,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":9.265,"y":10.858,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.568,"y":10.858,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.611,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.163,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.206,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.759,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.802,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.354,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.397,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.949,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.992,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.545,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.588,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.14,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.183,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.735,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.778,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.331,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.374,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.926,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.969,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.521,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.564,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.116,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.28,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.832,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.875,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.427,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.47,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.023,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.066,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.618,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.661,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.213,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.256,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.809,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.852,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.404,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.447,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.999,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.042,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.595,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.638,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.19,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.233,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.785,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.828,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.381,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.424,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.976,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.019,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.571,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.614,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.166,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.702,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.254,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.297,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.849,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.175,"y":10.849,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.727,"y":10.849,"w":1.5,"l":1.063},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e8f7f3","x":7.218,"y":6.981,"w":91.094,"h":35.789,"clr":-1},{"oc":"#2b2e34","x":23.675,"y":2.419,"w":6.11,"h":0.952,"clr":-1},{"oc":"#d1efe7","x":9.023,"y":8.544,"w":87.398,"h":1.125,"clr":-1},{"x":9.281,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":12.374,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":15.468,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":18.562,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":21.656,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":24.749,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":27.843,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":30.937,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":34.031,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":37.124,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":40.218,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":43.312,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":48.124,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":53.109,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":56.203,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":59.296,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":62.39,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":65.484,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":68.578,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":71.671,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":74.765,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":77.859,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":80.953,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":84.046,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":87.14,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":90.234,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":8.937,"y":13.044,"w":86.797,"h":1.125,"clr":-1},{"x":9.195,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":12.289,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":15.382,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":18.476,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":21.57,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":24.664,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":27.757,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":30.851,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":33.945,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":37.039,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":40.132,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":43.226,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":46.32,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":49.414,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":52.507,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":57.835,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":60.929,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":66.601,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":69.695,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":72.789,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":75.882,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":78.976,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":83.445,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":86.539,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":89.632,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":92.726,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":93.328,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":9.109,"y":15.481,"w":55.129,"h":1.125,"clr":-1},{"x":9.367,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":12.117,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":14.867,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":18.304,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":21.054,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":41.335,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":44.085,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":47.351,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":49.929,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":53.195,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":55.945,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":58.695,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":61.445,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":84.562,"y":23.044,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":23.044,"w":2.896,"h":0.734,"clr":1},{"x":24.458,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":27.208,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":29.958,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":32.708,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":9.179,"y":10.865,"w":78.235,"h":1.078,"clr":-1},{"x":9.265,"y":10.858,"w":2.303,"h":1.053,"clr":1},{"x":11.611,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":14.206,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":16.802,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":19.397,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":21.992,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":24.588,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":27.183,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":29.778,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":32.374,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":34.969,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":37.564,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":40.28,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":42.875,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":45.47,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":48.066,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":50.661,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":53.256,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":55.852,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":58.447,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":61.042,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":63.638,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":66.233,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":68.828,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":71.424,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":74.019,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":76.614,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":81.702,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":84.297,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":79.175,"y":10.849,"w":2.552,"h":1.063,"clr":1},{"x":84.562,"y":27.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":27.169,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":28.669,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":28.669,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":30.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":30.169,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":31.669,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":31.669,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":33.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":33.169,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":34.669,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":34.669,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":36.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":36.169,"w":2.896,"h":0.734,"clr":1},{"oc":"#2b2e34","x":-6.15,"y":51.17,"w":1.596,"h":0.58,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":11.978,"y":2.139,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":11.978,"y":2.664,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":24.036,"y":2.396,"w":2.424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":30.91,"y":2.396,"w":9.915000000000001,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20N%20DC%20Non-","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":24.036,"y":3.246,"w":15.333999999999998,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20Custodial%20Parent%20EITC%20Claim","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":43.767,"y":45.268,"w":11.666000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20N%20%20%20%20%20P1%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":43.767,"y":46.08,"w":15.689999999999998,"clr":-1,"A":"left","R":[{"T":"DC%20Non-Custodial%20Parent%20EITC%20Claim","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":14.093,"y":45.611,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.226,"y":5.159,"w":5.179,"clr":-1,"A":"left","R":[{"T":"Important%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.507,"y":5.159,"w":17.02,"clr":-1,"A":"left","R":[{"T":"Print%20in%20CAPITAL%20letters%20using%20black%20ink.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.507,"y":5.834,"w":26.717999999999993,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Schedule%20U.%20File%20Schedules%20N%20and%20U%20with%20your%20D-40.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":7.534000000000001,"w":14.872999999999998,"clr":-1,"A":"left","R":[{"T":"First%20name%20of%20non-custodial%20parent%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.99,"y":7.534000000000001,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.147,"y":7.534000000000001,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":9.784,"w":17.003,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%20and%20apartment)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":12.034,"w":1.9169999999999998,"clr":-1,"A":"left","R":[{"T":"City%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.273,"y":12.034,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":66.523,"y":12.034,"w":4.063,"clr":-1,"A":"left","R":[{"T":"Zip%20Code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":14.284,"w":10.542000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.257,"y":14.284,"w":11.504,"clr":-1,"A":"left","R":[{"T":"Date%20of%20birth%20(MMDDYYYY)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":17.984,"w":56.56099999999997,"clr":-1,"A":"left","R":[{"T":"Even%20if%20you%20are%20not%20eligible%20to%20claim%20the%20Federal%20Earned%20Income%20Credit%20you%20may%20be%20able%20to%20claim%20the%20DC%20Earned%20Income%20Tax%20Credit.","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#2b2e34","x":8.773,"y":19.984,"w":46.03899999999999,"clr":-1,"A":"left","R":[{"T":"You%20may%20claim%20the%20DC%20Non-Custodial%20Parent%20EITC%20only%20if%20you%20can%20answer%20%E2%80%9CYes%E2%80%9D%20to%20the%20following%20questions.","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#2b2e34","x":8.773,"y":22.871,"w":26.334,"clr":-1,"A":"left","R":[{"T":"1%20%20Is%20your%20Federal%20Adjusted%20Gross%20Income%20for%202013%20less%20than%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":26.996,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"2%20%20Were%20you%20a%20DC%20resident%20taxpayer%20during%20the%20year%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":28.496,"w":31.031,"clr":-1,"A":"left","R":[{"T":"3%20%20Were%20you%20between%20the%20ages%20of%2018%20and%2030%20as%20of%20December%2031%2C%202013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":29.996,"w":30.571,"clr":-1,"A":"left","R":[{"T":"4%20%20Are%20you%20a%20parent%20of%20a%20minor%20child(ren)%20with%20whom%20you%20do%20not%20reside%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":31.496000000000002,"w":33.351,"clr":-1,"A":"left","R":[{"T":"5%20%20Are%20you%20under%20a%20court%20order%20requiring%20you%20to%20make%20child%20support%20payments%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":32.996,"w":36.766999999999996,"clr":-1,"A":"left","R":[{"T":"6%20%20Was%20the%20effective%20date%20of%20the%20child%20support%20payment%20order%20on%20or%20before%206%2F30%2F2013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":34.496,"w":42.62800000000001,"clr":-1,"A":"left","R":[{"T":"7%20%20Did%20you%20make%20child%20support%20payment(s)%20through%20a%20government%20sponsored%20support%20collection%20unit%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":35.996,"w":39.16799999999999,"clr":-1,"A":"left","R":[{"T":"8%20%20Did%20you%20pay%20all%20of%20the%20court%20ordered%20child%20support%20due%20for%202013%20by%20December%2031%2C%202013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":37.496,"w":41.10799999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%E2%80%9D%20to%20the%20above%20questions%2C%20you%20may%20claim%20the%20DC%20Non-Custodial%20Parent%20EITC.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":38.246,"w":28.554,"clr":-1,"A":"left","R":[{"T":"Complete%20Schedule%20N%20and%20attach%20it%2C%20and%20Schedule%20U%2C%20to%20your%20D-40.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":88.875,"y":47.603,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%209","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":19.171,"w":52.190999999999995,"clr":-1,"A":"left","R":[{"T":"DC%20Non-Custodial%20Parent%20EITC%20Eligibility%20%E2%80%93%20Please%20complete%20this%20checklist%20to%20determine%20your%20eligibility%20to%20file%20Schedule%20N.","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#2b2e34","x":12.039,"y":23.746,"w":28.221000000000007,"clr":-1,"A":"left","R":[{"T":"%2437%2C870%20(%2443%2C210%20married%20filing%20jointly)%20with%20one%20qualifying%20child","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.039,"y":24.621,"w":29.58100000000001,"clr":-1,"A":"left","R":[{"T":"%2443%2C038%20(%2448%2C378%20married%20filing%20jointly)%20with%20two%20qualifying%20children","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.039,"y":25.496,"w":33.750000000000014,"clr":-1,"A":"left","R":[{"T":"%2446%2C227%20(%2451%2C567%20married%20filing%20jointly)%20with%20three%20or%20more%20qualifying%20children","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.013,"y":21.934,"w":1.6800000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":90.485,"y":21.934,"w":1.379,"clr":-1,"A":"left","R":[{"T":"NO","S":4,"TS":[0,14,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":393,"AM":1024,"x":9.037,"y":8.699,"w":37.146,"h":0.862,"TU":"First name of non-custodial parent"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":394,"AM":1024,"x":48.059,"y":8.699,"w":2.764,"h":0.862,"TU":"M.I","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":395,"AM":1024,"x":52.865,"y":8.699,"w":43.333,"h":0.862,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":396,"AM":1024,"x":9.295,"y":10.96,"w":77.347,"h":0.862,"TU":"ADDRESS"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":397,"AM":1024,"x":8.954,"y":13.199,"w":46.427,"h":0.862,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":398,"AM":1024,"x":57.807,"y":13.213,"w":6.208,"h":0.862,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":399,"AM":1024,"x":66.353,"y":13.199,"w":28.965,"h":0.862,"TU":"Zip Code + 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":400,"AM":1024,"x":8.916,"y":15.643,"w":26.596,"h":0.862},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB","EN":0},"TI":401,"AM":1024,"x":41.273,"y":15.636,"w":22.733,"h":0.862,"TU":"Date of birth (MMDDYYYY","MV":"MMDDYYYY"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGIY","EN":0},"TI":402,"AM":0,"x":85.065,"y":22.944,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGIN","EN":0},"TI":403,"AM":0,"x":91.117,"y":22.967,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"AGIXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RESY","EN":0},"TI":404,"AM":0,"x":85.257,"y":27.152,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RESN","EN":0},"TI":405,"AM":0,"x":91.342,"y":27.187,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"RESXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGEY","EN":0},"TI":406,"AM":0,"x":85.332,"y":28.65,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGEN","EN":0},"TI":407,"AM":0,"x":91.342,"y":28.684,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"AGEXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PARY","EN":0},"TI":408,"AM":0,"x":85.257,"y":30.147,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PARN","EN":0},"TI":409,"AM":0,"x":91.267,"y":30.182,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"PARXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CSUPY","EN":0},"TI":410,"AM":0,"x":85.332,"y":31.644,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CSUPN","EN":0},"TI":411,"AM":0,"x":91.267,"y":31.706,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"CSPXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFDTY","EN":0},"TI":412,"AM":0,"x":85.332,"y":33.142,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFDTN","EN":0},"TI":413,"AM":0,"x":91.267,"y":33.204,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"EFFXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLLY","EN":0},"TI":414,"AM":0,"x":85.257,"y":34.666,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLLN","EN":0},"TI":415,"AM":0,"x":91.342,"y":34.674,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"COLXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ALLY","EN":0},"TI":416,"AM":0,"x":85.182,"y":36.136,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ALLN","EN":0},"TI":417,"AM":0,"x":91.267,"y":36.144,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"ALLXRB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#e1f4ef","x":6.273,"y":5.059,"w":1.5,"l":94.188},{"oc":"#e1f4ef","x":6.273,"y":45.991,"w":1.5,"l":94.188},{"oc":"#2b2e34","x":6.187,"y":13.344,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.187,"y":11.313,"w":1.5,"l":94.219},{"oc":"#2b2e34","x":6.187,"y":15.406,"w":1.5,"l":94.219},{"oc":"#2b2e34","x":6.187,"y":17.509,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.187,"y":21.572,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.187,"y":23.122,"w":1.5,"l":94.078},{"oc":"#2b2e34","x":6.187,"y":25.853,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.058,"y":38.639,"w":1.5,"l":94.488},{"oc":"#2b2e34","x":6.187,"y":35.673,"w":1.5,"l":94.219},{"oc":"#2b2e34","x":6.187,"y":41.009,"w":1.5,"l":94.359},{"oc":"#d1efe7","x":23.684,"y":6.497,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.684,"y":7.622,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.976,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.976,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.07,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.07,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.164,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.164,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.257,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.257,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.351,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.351,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.445,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.445,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.539,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.539,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.632,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.632,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.726,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.726,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.82,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.82,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.914,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.914,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.382,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.382,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.023,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.023,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.117,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.117,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.21,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.21,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.304,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.304,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.398,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.398,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.492,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.492,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.585,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.585,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.679,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.679,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.773,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.773,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.867,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.867,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.96,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.96,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.632,"y":7.812,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.632,"y":8.937,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.899,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.899,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.992,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.992,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.086,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.086,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.18,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.18,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.274,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.274,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.367,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.367,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.461,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.461,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.555,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.555,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.649,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.649,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.742,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.742,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.836,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.836,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.305,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.305,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.946,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.946,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.039,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.039,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.133,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.133,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.227,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.227,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.321,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.321,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.414,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.414,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.508,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.508,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.602,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.602,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.696,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.696,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.789,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.789,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.883,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.883,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.75,"y":16.219,"w":1.5,"l":74.508},{"oc":"#d1efe7","x":24.75,"y":17.344,"w":1.5,"l":74.508},{"oc":"#d1efe7","x":25.18,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.18,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.273,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.273,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.367,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.367,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.461,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.461,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.555,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.555,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.648,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.648,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.742,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.742,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.836,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.836,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.93,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.93,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.023,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.023,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.117,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.117,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.586,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.586,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.226,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.226,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.32,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.32,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.414,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.414,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.508,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.508,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.601,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.601,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.695,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.695,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.789,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.789,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.883,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.883,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.976,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.976,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.07,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.07,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.164,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.164,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.039,"y":20.247,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":26.039,"y":21.372,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":26.124,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.124,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.218,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.218,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.312,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.312,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.406,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.406,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.499,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.499,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.593,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.593,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.687,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.687,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.781,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.781,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.874,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.874,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.968,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.968,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.062,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.062,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.156,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.156,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.249,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.249,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.343,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.343,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.437,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.437,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.906,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.906,"y":21.247,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.999,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.999,"y":21.247,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.101,"y":18.338,"w":1.5,"l":72.016},{"oc":"#d1efe7","x":26.101,"y":19.463,"w":1.5,"l":72.016},{"oc":"#d1efe7","x":26.445,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.445,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.711,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.711,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.804,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.804,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.898,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.898,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.992,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.992,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.086,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.086,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.179,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.179,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.273,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.273,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.367,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.367,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.461,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.461,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.554,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.554,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.648,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.648,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.742,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.742,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.836,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.836,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.929,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.929,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.023,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.023,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.117,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.117,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.211,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.211,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.476,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.476,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.57,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.57,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.664,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.664,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.758,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.758,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.851,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.851,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.093,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.093,"y":21.247,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.187,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.187,"y":21.247,"w":1.5,"l":2.75},{"oc":"#2b2e34","x":6.047,"y":31.109,"w":1.5,"l":94.5},{"oc":"#d1efe7","x":14.117,"y":27.088,"w":1.5,"l":31.109},{"oc":"#d1efe7","x":14.117,"y":28.213,"w":1.5,"l":31.109},{"oc":"#d1efe7","x":14.203,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.203,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.117,"y":28.406,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.117,"y":29.531,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.203,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.203,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.851,"y":27.128,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.851,"y":28.253,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.937,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.937,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.851,"y":28.48,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.851,"y":29.605,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.937,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.937,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.097,"y":32.849,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.097,"y":33.974,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.183,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.183,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.054,"y":31.484,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":27.054,"y":32.609,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":27.14,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.14,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.234,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.234,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.328,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.328,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.422,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.422,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.515,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.515,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.609,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.609,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.703,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.703,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.797,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.797,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.89,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.89,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.172,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.172,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.437,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.437,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.531,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.531,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.625,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.625,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.719,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.719,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.812,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.812,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.094,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.094,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.187,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.187,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.281,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.281,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.375,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.375,"y":32.547,"w":1.5,"l":2.75},{"oc":"#2b2e34","x":6.359,"y":43.497,"w":1.5,"l":94.317},{"oc":"#d1efe7","x":59.429,"y":41.868,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":59.429,"y":42.974,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":59.567,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":59.567,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":62.36,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":62.36,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":65.144,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":65.144,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":67.937,"y":41.912,"w":1.5,"l":2.836},{"oc":"#d1efe7","x":67.937,"y":42.924,"w":1.5,"l":2.836},{"oc":"#d1efe7","x":40.305,"y":41.881,"w":1.5,"l":15.039},{"oc":"#d1efe7","x":40.305,"y":42.974,"w":1.5,"l":15.039},{"oc":"#d1efe7","x":40.442,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":40.442,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":43.192,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":43.192,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":45.951,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":45.951,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":48.709,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":48.709,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":25.398,"y":14.072,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.398,"y":15.156,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.622,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.622,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.372,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.372,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.638,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.638,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.216,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.216,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.481,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.481,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.231,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.231,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.981,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.981,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.731,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.731,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.797,"y":14.072,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":50.797,"y":15.156,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":51.021,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.021,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.771,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.771,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.037,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.037,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.615,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.615,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.88,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.88,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.63,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.63,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.38,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.38,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.13,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.13,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.711,"y":9.111,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.711,"y":10.236,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.977,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.977,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.071,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.071,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.165,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.165,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.258,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.258,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.352,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.352,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.446,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.446,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.54,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.54,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.633,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.633,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.727,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.727,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.821,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.821,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.915,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.915,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.383,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.383,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.024,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.024,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.118,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.118,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.211,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.211,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.305,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.305,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.399,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.399,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.493,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.493,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.586,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.586,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.68,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.68,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.774,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.774,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.868,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.868,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.961,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.961,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":16.914,"y":12.048,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":16.914,"y":13.06,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":17.098,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":17.098,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":19.869,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":19.869,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":22.639,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":22.639,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":26.025,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":26.025,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":28.795,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":28.795,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":32.334,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":32.334,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":35.105,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":35.105,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":37.875,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":37.875,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":40.645,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":40.645,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":45.273,"y":12.06,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":45.273,"y":13.071,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":45.458,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":45.458,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":48.228,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":48.228,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":50.998,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":50.998,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":54.384,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":54.384,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":57.154,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":57.154,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":60.694,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":60.694,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":63.464,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":63.464,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":66.234,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":66.234,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":69.004,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":69.004,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":73.179,"y":12.06,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":73.179,"y":13.071,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":73.364,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":73.364,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":76.134,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":76.134,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":78.904,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":78.904,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":82.29,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":82.29,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":85.06,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":85.06,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":88.6,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":88.6,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":91.37,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":91.37,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":94.14,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":94.14,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":96.911,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":96.911,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":76.14,"y":14.072,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.14,"y":15.156,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.364,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.364,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.114,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.114,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.38,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.38,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.958,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.958,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.223,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.223,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.973,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.973,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.723,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.723,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.473,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.473,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.953,"y":21.809,"w":1.5,"l":29.648},{"oc":"#d1efe7","x":25.953,"y":22.934,"w":1.5,"l":29.648},{"oc":"#bde8dd","x":26.296,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":26.296,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":29.39,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":29.39,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":32.484,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":32.484,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":36.265,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":36.265,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":39.359,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":39.359,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":43.312,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":43.312,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":46.406,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":46.406,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":49.499,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":49.499,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":52.593,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":52.593,"y":22.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.07,"y":23.452,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.07,"y":24.478,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.151,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":30.151,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.065,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.065,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":35.98,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":35.98,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.895,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.895,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.809,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.809,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.724,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.724,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.638,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.638,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.553,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.553,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.467,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.467,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.382,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.382,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":64.601,"y":23.491,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":64.601,"y":24.517,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":64.682,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":64.682,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":67.597,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":67.597,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":70.511,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":70.511,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":73.426,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":73.426,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":76.34,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":76.34,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":79.255,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":79.255,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":82.169,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":82.169,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":85.084,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":85.084,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":87.998,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":87.998,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":90.913,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":90.913,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":30.101,"y":24.624,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.101,"y":25.649,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.182,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":30.182,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.097,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.097,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":36.011,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":36.011,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.926,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.926,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.84,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.84,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.755,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.755,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.669,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.669,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.584,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.584,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.498,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.498,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.413,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.413,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":14.117,"y":29.736,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.117,"y":30.861,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.203,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.203,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.851,"y":29.736,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.851,"y":30.861,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.937,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.937,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.789,"y":35.938,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.789,"y":37.094,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.926,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":29.926,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.676,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.676,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.435,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.435,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.194,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.194,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":27.097,"y":34.241,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.097,"y":35.366,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.183,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.183,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.711,"y":39.662,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.711,"y":40.746,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.934,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.934,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.684,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.684,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.95,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.95,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.528,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.528,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.794,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.794,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.544,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.544,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.294,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.294,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.044,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.044,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.949,"y":39.662,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":50.949,"y":40.746,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":51.173,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.173,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.923,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.923,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.188,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.188,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.767,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.767,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.032,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.032,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.782,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.782,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.532,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.532,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.282,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.282,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.82,"y":37.338,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.82,"y":38.494,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.958,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":29.958,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.708,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.708,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.466,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.466,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.225,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.225,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":65.023,"y":35.92,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":65.023,"y":37.077,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":65.161,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":65.161,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":67.911,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":67.911,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":70.669,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":70.669,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":73.428,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":73.428,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":76.063,"y":39.662,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.063,"y":40.746,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.287,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.287,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.037,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.037,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.302,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.302,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.88,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.88,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.146,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.146,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.896,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.896,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.646,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.646,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.396,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.396,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.414,"y":41.868,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":78.414,"y":42.974,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":78.551,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":78.551,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":81.344,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":81.344,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":84.129,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":84.129,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":86.922,"y":41.912,"w":1.5,"l":2.836},{"oc":"#d1efe7","x":86.922,"y":42.924,"w":1.5,"l":2.836},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#e1f4ef","x":6.273,"y":5.059,"w":1.5,"l":40.932},{"oc":"#e1f4ef","x":100.461,"y":5.059,"w":1.5,"l":40.932},{"oc":"#d1efe7","x":23.684,"y":6.497,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.02,"y":6.497,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":23.976,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.726,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.07,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.82,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.164,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.914,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.257,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.007,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.351,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.101,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.445,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.195,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.539,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.289,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.632,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.382,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.726,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.476,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.82,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.57,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.914,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.664,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.382,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.132,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.023,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.773,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.117,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.867,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.21,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.96,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.304,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.054,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.398,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.148,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.492,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.242,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.585,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.335,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.679,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.429,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.773,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.523,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.867,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.617,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.96,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.71,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.632,"y":7.812,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":97.968,"y":7.812,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":23.899,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.649,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.992,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.742,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.086,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.836,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.18,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.93,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.274,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.024,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.367,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.117,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.461,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.211,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.555,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.305,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.649,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.399,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.742,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.492,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.836,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.586,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.305,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.055,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.946,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.696,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.039,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.789,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.133,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.883,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.227,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.977,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.321,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.071,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.414,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.164,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.508,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.258,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.602,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.352,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.696,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.446,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.789,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.539,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.883,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.633,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.75,"y":16.219,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":99.258,"y":16.219,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":25.18,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.93,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.273,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.023,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.367,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.117,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.461,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.211,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.555,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.305,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.648,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.398,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.742,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.492,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.836,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.586,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.93,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.68,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.023,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.773,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.117,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.867,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.586,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.336,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.226,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.976,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.32,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.07,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.414,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.164,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.508,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.258,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.601,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.351,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.695,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.445,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.789,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.539,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.883,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.633,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.976,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.726,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.07,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.82,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.164,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.914,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.039,"y":20.247,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":97.367,"y":20.247,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":26.124,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.874,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.218,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.968,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.312,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.062,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.406,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.156,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.499,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.249,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.593,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.343,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.687,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.437,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.781,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.531,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.874,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.624,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.968,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.718,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.296,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.046,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.39,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.14,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.062,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.812,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.156,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.906,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.249,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.999,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.343,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.093,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.437,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.187,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.906,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.656,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.999,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.749,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.101,"y":18.338,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.117,"y":18.338,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":26.445,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.195,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.711,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.461,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.804,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.554,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.898,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.648,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.992,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.742,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.086,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.836,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.179,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.929,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.273,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.023,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.367,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.117,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.461,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.211,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.554,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.304,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.648,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.398,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.742,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.492,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.836,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.586,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.929,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.679,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.023,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.773,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.117,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.867,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.211,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.961,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.476,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.226,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.57,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.32,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.664,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.414,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.758,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.508,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.851,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.601,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.093,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.843,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.187,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.937,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.117,"y":27.088,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":45.226,"y":27.088,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":14.203,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.953,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.297,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.047,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.39,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.14,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.484,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.234,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.578,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.328,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.672,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.422,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.765,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.515,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.859,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.609,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.953,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.703,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.047,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.797,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.117,"y":28.406,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":45.02,"y":28.406,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":14.203,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.953,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.297,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.047,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.39,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.14,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.484,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.234,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.578,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.328,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.672,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.422,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.765,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.515,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.859,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.609,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.953,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.703,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.047,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.797,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.851,"y":27.128,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.89,"y":27.128,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":58.937,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.687,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.031,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.781,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.125,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.875,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.219,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.969,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.312,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.062,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.406,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.156,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.5,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.25,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.594,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.344,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.687,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.437,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.969,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.719,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.851,"y":28.48,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.89,"y":28.48,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":58.937,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.687,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.031,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.781,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.125,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.875,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.219,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.969,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.312,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.062,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.406,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.156,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.5,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.25,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.594,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.344,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.687,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.437,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.969,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.719,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.097,"y":32.849,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.34,"y":32.849,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":27.183,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.933,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.277,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.027,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.371,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.121,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.465,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.215,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.558,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.308,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.652,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.402,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.746,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.496,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.84,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.59,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.933,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.683,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.215,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.965,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.48,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.23,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.574,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.324,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.668,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.418,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.762,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.512,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.855,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.605,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.137,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.887,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.23,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.98,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.324,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.074,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.418,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.168,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.054,"y":31.484,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.383,"y":31.484,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":27.14,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.89,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.234,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.984,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.328,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.078,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.422,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.172,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.515,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.265,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.609,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.359,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.703,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.453,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.797,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.547,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.89,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.64,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.734,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.734,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.828,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.828,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.172,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.922,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.437,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.187,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.531,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.281,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.625,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.375,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.719,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.469,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.812,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.562,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.656,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.656,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.75,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.75,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.094,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.844,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.187,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.937,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.281,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.031,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.375,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.125,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.429,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":74.297,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":59.567,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":62.36,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":62.36,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":65.153,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":65.144,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":67.937,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":67.937,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":70.773,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":40.305,"y":41.881,"w":1.5,"l":1.094},{"oc":"#d1efe7","x":55.344,"y":41.881,"w":1.5,"l":1.094},{"oc":"#d1efe7","x":40.442,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":43.201,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":43.192,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":45.951,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":45.951,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":48.709,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":48.709,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":51.468,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":25.398,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":48.937,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":25.622,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.372,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.372,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.122,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.638,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.388,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.216,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.966,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.481,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.231,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.231,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.981,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.981,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.731,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.731,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.481,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.797,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":74.336,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":51.021,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.771,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.771,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.521,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.037,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.787,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.615,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.365,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.88,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.63,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.63,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.38,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.38,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.13,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.13,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.88,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.711,"y":9.111,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.047,"y":9.111,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":23.977,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.727,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.071,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.821,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.165,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.915,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.258,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.008,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.352,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.102,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.446,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.196,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.54,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.29,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.633,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.383,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.727,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.477,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.821,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.571,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.915,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.665,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.383,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.133,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.024,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.774,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.118,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.868,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.211,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.961,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.305,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.055,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.399,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.149,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.493,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.243,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.586,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.336,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.68,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.43,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.774,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.524,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.868,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.618,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.961,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.711,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.914,"y":12.048,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":43.32,"y":12.048,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":17.098,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":19.543,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":19.869,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":22.313,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":22.639,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":25.083,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":26.025,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":28.469,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":28.795,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":31.239,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":32.334,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":34.779,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":35.105,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":37.549,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":37.875,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":40.319,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":40.645,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":43.089,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":45.273,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":71.679,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":45.458,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":47.902,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":48.228,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":50.672,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":50.998,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":53.443,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":54.384,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":56.828,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":57.154,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":59.599,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":60.694,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":63.138,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":63.464,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":65.908,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":66.234,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":68.678,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":69.004,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":71.449,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":73.179,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":99.586,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":73.364,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":75.809,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":76.134,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":78.579,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":78.904,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":81.349,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":82.29,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":84.735,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":85.06,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":87.505,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":88.6,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":91.044,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":91.37,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":93.815,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":94.14,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":96.585,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":96.911,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":99.355,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":76.14,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":99.679,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":76.364,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.114,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.114,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.864,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.38,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.13,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.958,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.708,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.223,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.973,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.973,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.723,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.723,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.473,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.473,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":99.223,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":25.953,"y":21.809,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":55.601,"y":21.809,"w":1.5,"l":1.125},{"oc":"#bde8dd","x":26.296,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":29.046,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":29.39,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":32.14,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":32.484,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":35.234,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":36.265,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":39.015,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":39.359,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":42.109,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":43.312,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":46.062,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":46.406,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":49.156,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":49.499,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":52.249,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":52.593,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":55.343,"y":21.869,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.07,"y":23.452,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":59.367,"y":23.452,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":30.151,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":32.732,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":33.065,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":35.646,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":35.98,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.561,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.895,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.475,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.809,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.39,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.724,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.304,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.638,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.219,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.553,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.133,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.467,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.048,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.382,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":58.962,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":64.601,"y":23.491,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":93.898,"y":23.491,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":64.682,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":67.263,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":67.597,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":70.178,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":70.511,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":73.092,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":73.426,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":76.007,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":76.34,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":78.921,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":79.255,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":81.836,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":82.169,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":84.75,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":85.084,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":87.665,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":87.998,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":90.579,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":90.913,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":93.494,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":30.101,"y":24.624,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":59.398,"y":24.624,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":30.182,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":32.763,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":33.097,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":35.677,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":36.011,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.592,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.926,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.506,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.84,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.421,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.755,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.335,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.669,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.25,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.584,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.164,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.498,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.079,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.413,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":58.993,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":14.117,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":45.02,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":14.203,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.953,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.297,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.047,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.39,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.14,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.484,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.234,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.578,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.328,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.672,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.422,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.765,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.515,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.859,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.609,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.953,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.703,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.047,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.797,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.851,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.89,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":58.937,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.687,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.031,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.781,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.125,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.875,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.219,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.969,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.312,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.062,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.406,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.156,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.5,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.25,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.594,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.344,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.687,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.437,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.969,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.719,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.789,"y":35.938,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":53.422,"y":35.938,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":29.926,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.685,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.676,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.435,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.435,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.194,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.194,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":40.952,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":27.097,"y":34.241,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.34,"y":34.241,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":27.183,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.933,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.277,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.027,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.371,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.121,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.465,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.215,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.558,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.308,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.652,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.402,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.746,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.496,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.84,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.59,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.933,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.683,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.215,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.965,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.48,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.23,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.574,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.324,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.668,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.418,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.762,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.512,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.855,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.605,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.137,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.887,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.23,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.98,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.324,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.074,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.418,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.168,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":25.711,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":49.249,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":25.934,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.684,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.684,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.434,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.95,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.7,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.528,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.278,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.794,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.544,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.544,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.294,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.294,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.044,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.044,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.794,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.949,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":74.488,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":51.173,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.923,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.923,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.673,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.188,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.938,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.767,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.517,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.032,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.782,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.782,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.532,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.532,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.282,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.282,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.032,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.82,"y":37.338,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":53.453,"y":37.338,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":29.958,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.716,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.708,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.466,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.466,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.225,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.225,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":40.983,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":65.023,"y":35.92,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":88.656,"y":35.92,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":65.161,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":67.919,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":67.911,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":70.669,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":70.669,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":73.428,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":73.428,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":76.187,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":76.063,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":99.601,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":76.287,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.037,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.037,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.787,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.302,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.052,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.88,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.63,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.146,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.896,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.896,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.646,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.646,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.396,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.396,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":99.146,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.414,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":93.281,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":78.551,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":81.344,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":81.344,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":84.137,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":84.129,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":86.922,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":86.922,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":89.758,"y":41.912,"w":1.5,"l":1.012},{"dsh":1,"oc":"#ff2d16","x":102.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e8f7f3","x":6.273,"y":5.059,"w":94.188,"h":40.932,"clr":-1},{"oc":"#d1efe7","x":23.684,"y":6.497,"w":74.336,"h":1.125,"clr":-1},{"x":23.976,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":27.07,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":30.164,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":33.257,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":36.351,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":39.445,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":42.539,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":45.632,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":48.726,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":51.82,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":54.914,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":59.382,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":64.023,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":67.117,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":70.21,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":73.304,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":76.398,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":79.492,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":82.585,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":85.679,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":88.773,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":91.867,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":94.96,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":23.632,"y":7.812,"w":74.336,"h":1.125,"clr":-1},{"x":23.899,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":26.992,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":30.086,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":33.18,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":36.274,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":39.367,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":42.461,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":45.555,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":48.649,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":51.742,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":54.836,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":59.305,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":63.946,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":67.039,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":70.133,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":73.227,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":76.321,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":79.414,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":82.508,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":85.602,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":88.696,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":91.789,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":94.883,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":24.75,"y":16.219,"w":74.508,"h":1.125,"clr":-1},{"x":25.18,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":28.273,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":31.367,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":34.461,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":37.555,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":40.648,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":43.742,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":46.836,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":49.93,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":53.023,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":56.117,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":60.586,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":65.226,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":68.32,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":71.414,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":74.508,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":77.601,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":80.695,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":83.789,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":86.883,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":89.976,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":93.07,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":96.164,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":26.039,"y":20.247,"w":71.328,"h":1.125,"clr":-1},{"x":26.124,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":29.218,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":32.312,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":35.406,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":38.499,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":41.593,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":44.687,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":47.781,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":50.874,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":53.968,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":59.296,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":62.39,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":68.062,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":71.156,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":74.249,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":77.343,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":80.437,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":84.906,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"x":87.999,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":26.101,"y":18.338,"w":72.016,"h":1.125,"clr":-1},{"x":26.445,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":29.711,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":32.804,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":35.898,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":38.992,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":42.086,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":45.179,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":48.273,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":51.367,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":54.461,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":57.554,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":60.648,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":63.742,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":66.836,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":69.929,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":73.023,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":76.117,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":79.211,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":82.476,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":85.57,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":88.664,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":91.758,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":94.851,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":91.093,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"x":94.187,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":14.117,"y":27.088,"w":31.109,"h":1.125,"clr":-1},{"x":14.203,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":17.297,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":20.39,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":23.484,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":26.578,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":29.672,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":32.765,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":35.859,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":38.953,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":42.047,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":14.117,"y":28.406,"w":30.903,"h":1.125,"clr":-1},{"x":14.203,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":17.297,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":20.39,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":23.484,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":26.578,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":29.672,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":32.765,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":35.859,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":38.953,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":42.047,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":58.851,"y":27.128,"w":37.039,"h":1.125,"clr":-1},{"x":58.937,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":62.031,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":65.125,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":68.219,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":71.312,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":74.406,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":77.5,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":80.594,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":83.687,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":92.969,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":58.851,"y":28.48,"w":37.039,"h":1.125,"clr":-1},{"x":58.937,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":62.031,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":65.125,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":68.219,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":71.312,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":74.406,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":77.5,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":80.594,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":83.687,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":92.969,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":27.097,"y":32.849,"w":71.242,"h":1.125,"clr":-1},{"x":27.183,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":30.277,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":33.371,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":36.465,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":39.558,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":42.652,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":45.746,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":48.84,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":51.933,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":61.215,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":64.48,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":67.574,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":70.668,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":73.762,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":76.855,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":86.137,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":89.23,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":92.324,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":95.418,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":27.054,"y":31.484,"w":71.328,"h":1.125,"clr":-1},{"x":27.14,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":30.234,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":33.328,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":36.422,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":39.515,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":42.609,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":45.703,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":48.797,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":51.89,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":54.984,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":54.984,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":58.078,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":58.078,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":61.172,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":64.437,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":67.531,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":70.625,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":73.719,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":76.812,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":79.906,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":79.906,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":83,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":83,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":86.094,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":89.187,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":92.281,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":95.375,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":59.429,"y":41.868,"w":14.867,"h":1.106,"clr":-1},{"x":59.567,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":62.36,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":65.144,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":67.937,"y":41.912,"w":2.836,"h":1.012,"clr":1},{"oc":"#d1efe7","x":40.305,"y":41.881,"w":15.039,"h":1.094,"clr":-1},{"x":40.442,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"x":43.192,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"x":45.951,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"x":48.709,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":25.398,"y":14.072,"w":23.538,"h":1.084,"clr":-1},{"x":25.622,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":28.372,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":31.638,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":34.216,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":37.481,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":40.231,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":42.981,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":45.731,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":50.797,"y":14.072,"w":23.538,"h":1.084,"clr":-1},{"x":51.021,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":53.771,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":57.037,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":59.615,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":62.88,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":65.63,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":68.38,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":71.13,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":23.711,"y":9.111,"w":74.336,"h":1.125,"clr":-1},{"x":23.977,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":27.071,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":30.165,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":33.258,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":36.352,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":39.446,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":42.54,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":45.633,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":48.727,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":51.821,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":54.915,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":59.383,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":64.024,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":67.118,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":70.211,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":73.305,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":76.399,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":79.493,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":82.586,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":85.68,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":88.774,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":91.868,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":94.961,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":16.914,"y":12.048,"w":26.406,"h":1.011,"clr":-1},{"x":17.098,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":19.869,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":22.639,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":26.025,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":28.795,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":32.334,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":35.105,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":37.875,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":40.645,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"oc":"#d1efe7","x":45.273,"y":12.06,"w":26.406,"h":1.011,"clr":-1},{"x":45.458,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":48.228,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":50.998,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":54.384,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":57.154,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":60.694,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":63.464,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":66.234,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":69.004,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"oc":"#d1efe7","x":73.179,"y":12.06,"w":26.406,"h":1.011,"clr":-1},{"x":73.364,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":76.134,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":78.904,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":82.29,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":85.06,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":88.6,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":91.37,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":94.14,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":96.911,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"oc":"#d1efe7","x":76.14,"y":14.072,"w":23.538,"h":1.084,"clr":-1},{"x":76.364,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":79.114,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":82.38,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":84.958,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":88.223,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":90.973,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":93.723,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":96.473,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"oc":"#bde8dd","x":25.953,"y":21.809,"w":29.648,"h":1.125,"clr":-1},{"x":26.296,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":29.39,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":32.484,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":36.265,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":39.359,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":43.312,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":46.406,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":49.499,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":52.593,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"oc":"#bde8dd","x":30.07,"y":23.452,"w":29.297,"h":1.026,"clr":-1},{"x":30.151,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":33.065,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":35.98,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":38.895,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":41.809,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":44.724,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":47.638,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":50.553,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":53.467,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":56.382,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"oc":"#bde8dd","x":64.601,"y":23.491,"w":29.297,"h":1.026,"clr":-1},{"x":64.682,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":67.597,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":70.511,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":73.426,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":76.34,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":79.255,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":82.169,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":85.084,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":87.998,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":90.913,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"oc":"#bde8dd","x":30.101,"y":24.624,"w":29.297,"h":1.026,"clr":-1},{"x":30.182,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":33.097,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":36.011,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":38.926,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":41.84,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":44.755,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":47.669,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":50.584,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":53.498,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":56.413,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"oc":"#d1efe7","x":14.117,"y":29.736,"w":30.903,"h":1.125,"clr":-1},{"x":14.203,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":17.297,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":20.39,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":23.484,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":26.578,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":29.672,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":32.765,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":35.859,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":38.953,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":42.047,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":58.851,"y":29.736,"w":37.039,"h":1.125,"clr":-1},{"x":58.937,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":62.031,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":65.125,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":68.219,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":71.312,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":74.406,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":77.5,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":80.594,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":83.687,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":92.969,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":29.789,"y":35.938,"w":23.633,"h":1.156,"clr":-1},{"x":29.926,"y":36,"w":2.759,"h":1.028,"clr":1},{"x":32.676,"y":36,"w":2.759,"h":1.028,"clr":1},{"x":35.435,"y":36,"w":2.759,"h":1.028,"clr":1},{"x":38.194,"y":36,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":27.097,"y":34.241,"w":71.242,"h":1.125,"clr":-1},{"x":27.183,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":30.277,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":33.371,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":36.465,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":39.558,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":42.652,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":45.746,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":48.84,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":51.933,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":61.215,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":64.48,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":67.574,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":70.668,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":73.762,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":76.855,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":86.137,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":89.23,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":92.324,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":95.418,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":25.711,"y":39.662,"w":23.538,"h":1.084,"clr":-1},{"x":25.934,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":28.684,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":31.95,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":34.528,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":37.794,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":40.544,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":43.294,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":46.044,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":50.949,"y":39.662,"w":23.538,"h":1.084,"clr":-1},{"x":51.173,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":53.923,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":57.188,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":59.767,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":63.032,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":65.782,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":68.532,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":71.282,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":29.82,"y":37.338,"w":23.633,"h":1.156,"clr":-1},{"x":29.958,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"x":32.708,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"x":35.466,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"x":38.225,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":65.023,"y":35.92,"w":23.633,"h":1.156,"clr":-1},{"x":65.161,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"x":67.911,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"x":70.669,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"x":73.428,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":76.063,"y":39.662,"w":23.538,"h":1.084,"clr":-1},{"x":76.287,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":79.037,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":82.302,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":84.88,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":88.146,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":90.896,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":93.646,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":96.396,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":78.414,"y":41.868,"w":14.867,"h":1.106,"clr":-1},{"x":78.551,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":81.344,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":84.129,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":86.922,"y":41.912,"w":2.836,"h":1.012,"clr":1}],"Texts":[{"oc":"#2b2e34","x":44.047,"y":46.411,"w":11.666000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20N%20%20%20%20%20%20P2","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":44.047,"y":47.224,"w":15.689999999999998,"clr":-1,"A":"left","R":[{"T":"DC%20Non-Custodial%20Parent%20EITC%20Claim","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":14.187,"y":46.411,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":26.046,"y":17.393,"w":16.417,"clr":-1,"A":"left","R":[{"T":"Number%2C%20street%20and%20apartment%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.703,"y":19.33,"w":1.9169999999999998,"clr":-1,"A":"left","R":[{"T":"City%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.734,"y":19.33,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.015,"y":19.33,"w":4.063,"clr":-1,"A":"left","R":[{"T":"Zip%20Code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.344,"y":23.362,"w":1.672,"clr":-1,"A":"left","R":[{"T":"%231%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.879,"y":27.069,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%231%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":28.41,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.656,"y":27.041,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.656,"y":28.378,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.656,"y":29.716,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%233%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.906,"y":31.496000000000002,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.906,"y":32.846,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.906,"y":34.196,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%233%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":5.02,"w":12.481000000000003,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Child%20Information%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":23.812,"y":5.645,"w":4.982,"clr":-1,"A":"left","R":[{"T":"First%20Name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.42,"y":5.645,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.06,"y":5.645,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":7.932,"w":7.479,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name%2C%20%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":9.307,"w":7.479,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name%2C%20%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":10.307,"w":43.18800000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20three%20qualifying%20children%2C%20you%20only%20need%20to%20list%20three%20to%20get%20the%20maximum%20credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":11.795,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"%20%202.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":11.795,"w":2.8539999999999996,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":12.482,"w":1.835,"clr":-1,"A":"left","R":[{"T":"SSN","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":13.938,"w":10.14,"clr":-1,"A":"left","R":[{"T":"%20%203.%20Child%E2%80%99s%20date%20of%20birth","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":15.876000000000001,"w":9.335,"clr":-1,"A":"left","R":[{"T":"%20%204.%20Custodian%E2%80%99s%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":18.363,"w":10.541,"clr":-1,"A":"left","R":[{"T":"%20%205.%20Custodian%E2%80%99s%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":21.751,"w":8.818999999999999,"clr":-1,"A":"left","R":[{"T":"%20%206.%20Custodian%E2%80%99s%20SSN","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":23.063,"w":8.418000000000001,"clr":-1,"A":"left","R":[{"T":"%20%207.%20Location%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":23.751,"w":7.897,"clr":-1,"A":"left","R":[{"T":"court%20that%20ordered%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":24.438,"w":9.293,"clr":-1,"A":"left","R":[{"T":"support%20payments%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":25.813,"w":13.447999999999999,"clr":-1,"A":"left","R":[{"T":"%20%208.%20Case%20or%20Docket%20number%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.844,"y":15.302,"w":4.982,"clr":-1,"A":"left","R":[{"T":"First%20Name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.623,"y":15.302,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.092,"y":15.302,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":88.031,"y":47.501,"w":5.49,"clr":-1,"A":"left","R":[{"T":"File%20order%2010","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":27.375,"y":24.534,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%232%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.75,"y":25.961,"w":1.505,"clr":-1,"A":"left","R":[{"T":"9.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.612,"y":25.961,"w":26.558999999999997,"clr":-1,"A":"left","R":[{"T":"Name%20of%20government%20agency%20to%20which%20you%20make%20payments%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.441,"y":31.228,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"10.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.535,"y":31.228,"w":4.736000000000001,"clr":-1,"A":"left","R":[{"T":"Address%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.535,"y":31.915999999999997,"w":6.8790000000000004,"clr":-1,"A":"left","R":[{"T":"the%20government%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.535,"y":32.603,"w":4.65,"clr":-1,"A":"left","R":[{"T":"agency%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":29.751,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.515,"y":43.54,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"14.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.613,"y":35.632,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"11.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.707,"y":35.632,"w":4.695,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.707,"y":36.319,"w":5.929,"clr":-1,"A":"left","R":[{"T":"court%20ordered%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.707,"y":37.007,"w":3.656,"clr":-1,"A":"left","R":[{"T":"payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.066,"y":35.957,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":41.472,"y":35.957,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":41.941,"y":35.957,"w":5.8759999999999994,"clr":-1,"A":"left","R":[{"T":"00%20per%20month","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.066,"y":37.332,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":41.472,"y":37.332,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":41.941,"y":37.332,"w":5.8759999999999994,"clr":-1,"A":"left","R":[{"T":"00%20per%20month","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.301,"y":35.94,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":76.707,"y":35.94,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":77.176,"y":35.94,"w":5.8759999999999994,"clr":-1,"A":"left","R":[{"T":"00%20per%20month","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.906,"y":37.327,"w":1.672,"clr":-1,"A":"left","R":[{"T":"%232%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.484,"y":38.643,"w":10.786,"clr":-1,"A":"left","R":[{"T":"12.%20Date%20payments%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.075,"y":38.643,"w":7.857000000000002,"clr":-1,"A":"left","R":[{"T":"%231%20(MMDDYYYY)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.198,"y":38.643,"w":7.857000000000002,"clr":-1,"A":"left","R":[{"T":"%232%20(MMDDYYYY)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.149,"y":38.643,"w":7.556000000000002,"clr":-1,"A":"left","R":[{"T":"%233%20(MMDDYYYY)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.578,"y":39.393,"w":6.476,"clr":-1,"A":"left","R":[{"T":"ordered%20to%20start","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.484,"y":41.912,"w":16.942,"clr":-1,"A":"left","R":[{"T":"13.%20Total%20payments%20made%20during%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.28,"y":41.912,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":51.484,"y":41.912,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":51.953,"y":41.912,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.812,"y":41.912,"w":1.505,"clr":-1,"A":"left","R":[{"T":"%20%20%24%20","S":3,"TS":[0,12,0,0]}]},{"x":70.734,"y":41.912,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":71.203,"y":41.912,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.75,"y":41.912,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":89.984,"y":41.912,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":90.453,"y":41.912,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.124,"y":6.557,"w":1.204,"clr":-1,"A":"left","R":[{"T":"%201.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":6.557,"w":7.479,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name%2C%20%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.992,"y":35.967,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.055,"y":35.967,"w":1.672,"clr":-1,"A":"left","R":[{"T":"%233%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.738,"y":41.029,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.943,"y":40.988,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.687,"y":41.006,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":43.54,"w":57.766,"clr":-1,"A":"left","R":[{"T":"Computation%3A%20%20Using%20the%20amount%20on%20Line%203%20of%20Form%20D-40%2C%20find%20the%20correct%20Earned%20Income%20Credit%20(EIC)%20amount%20from%20the%20EIC%20table%20in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":44.165,"w":60.62100000000001,"clr":-1,"A":"left","R":[{"T":"Federal%201040%20tax%20return%20booklet.%20Multiply%20that%20amount%20by%20.40%20to%20determine%20the%20DC%20Non-Custodial%20Parent%20EITC%20amount%20to%20claim%20on%20Schedule%20U%2C%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":44.79,"w":56.963999999999984,"clr":-1,"A":"left","R":[{"T":"Part%201b%2C%20Line%201.%20If%20you%20are%20a%20part-year%20filer%2C%20see%20part-year%20resident%20instructions%20in%20the%20D-40%20booklet%20on%20prorating%20the%20credit%20to%20be%20claimed.","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#2b2e34","x":28.297,"y":11.217,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57,"y":11.217,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.843,"y":11.217,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.611,"y":13.201,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.189,"y":13.201,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.455,"y":13.201,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.14,"y":23.469,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%233%20%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAME1","EN":0},"TI":418,"AM":0,"x":23.85,"y":6.67,"w":34.031,"h":0.862,"TU":"1. Child’s name, #1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CMI1","EN":0},"TI":419,"AM":0,"x":59.429,"y":6.67,"w":2.743,"h":0.862,"TU":"M.I","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLNAME1","EN":0},"TI":420,"AM":0,"x":63.884,"y":6.67,"w":34.052,"h":0.862,"TU":"Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAME2","EN":0},"TI":421,"AM":0,"x":23.768,"y":7.99,"w":34.052,"h":0.854,"TU":"Child’s name, #2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CMI2","EN":0},"TI":422,"AM":0,"x":59.346,"y":7.99,"w":2.764,"h":0.854,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLNAME2","EN":0},"TI":423,"AM":0,"x":63.822,"y":7.99,"w":34.031,"h":0.854},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAME3","EN":0},"TI":424,"AM":0,"x":23.85,"y":9.287,"w":34.052,"h":0.854,"TU":"Child’s name, #3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CMI3","EN":0},"TI":425,"AM":0,"x":59.429,"y":9.287,"w":2.764,"h":0.854,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLNAME3","EN":0},"TI":426,"AM":0,"x":63.904,"y":9.287,"w":34.031,"h":0.854},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN1","EN":0},"TI":427,"AM":0,"x":17.147,"y":12.149,"w":26.596,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN2","EN":0},"TI":428,"AM":0,"x":45.372,"y":12.204,"w":26.596,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN3","EN":0},"TI":429,"AM":0,"x":73.128,"y":12.142,"w":26.596,"h":0.862},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CDOB1","EN":0},"TI":430,"AM":0,"x":25.892,"y":14.218,"w":22.733,"h":0.862,"TU":"Date of birth (MMDDYYYY)","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CDOB2","EN":0},"TI":431,"AM":0,"x":51.122,"y":14.218,"w":22.733,"h":0.862,"TU":"Date of birth (MMDDYYYY)","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CDOB3","EN":0},"TI":432,"AM":0,"x":76.407,"y":14.211,"w":22.733,"h":0.862,"TU":"Date of birth (MMDDYYYY)","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTNAM","EN":0},"TI":433,"AM":0,"x":25.047,"y":16.39,"w":34.052,"h":0.862,"TU":"4. Custodian’s name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CUSTMI","EN":0},"TI":434,"AM":0,"x":60.625,"y":16.39,"w":2.764,"h":0.862,"TU":"M.I","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTLNAM","EN":0},"TI":435,"AM":0,"x":65.1,"y":16.39,"w":34.031,"h":0.862,"TU":"Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTADDR","EN":0},"TI":436,"AM":0,"x":26.305,"y":18.512,"w":71.528,"h":0.862,"TU":"5. Custodian’s address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTCITY","EN":0},"TI":437,"AM":0,"x":25.995,"y":20.417,"w":30.958,"h":0.862,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTST","EN":0},"TI":438,"AM":0,"x":59.632,"y":20.309,"w":4.816,"h":0.953,"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":"CUSTZIP","EN":0},"TI":439,"AM":0,"x":67.926,"y":20.355,"w":28.965,"h":0.862,"TU":"Zip Code + 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CUSTSSN","EN":0},"TI":440,"AM":0,"x":26.356,"y":21.95,"w":28.917,"h":0.862},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"COURT1","EN":0},"TI":441,"AM":0,"x":30.038,"y":23.537,"w":29.143,"h":0.855,"MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"COURT3","EN":0},"TI":442,"AM":0,"x":64.564,"y":23.574,"w":29.143,"h":0.855,"MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"COURT2","EN":0},"TI":443,"AM":0,"x":30.059,"y":24.707,"w":29.143,"h":0.855,"MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CASE1","EN":0},"TI":444,"AM":0,"x":14.149,"y":27.265,"w":30.958,"h":0.854,"MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AGENCY1","EN":0},"TI":445,"AM":0,"x":58.81,"y":27.302,"w":36.998,"h":0.862,"MV":"maxl:12"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CASE2","EN":0},"TI":446,"AM":0,"x":14.074,"y":28.577,"w":30.958,"h":0.862,"MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AGENCY2","EN":0},"TI":447,"AM":0,"x":58.963,"y":28.675,"w":36.998,"h":0.862,"MV":"maxl:12"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CASE3","EN":0},"TI":448,"AM":0,"x":14.074,"y":29.912,"w":30.958,"h":0.854,"MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AGENCY3","EN":0},"TI":449,"AM":0,"x":58.643,"y":29.92,"w":36.998,"h":0.862,"MV":"maxl:12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR1","EN":0},"TI":450,"AM":0,"x":27.006,"y":31.66,"w":71.138,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":451,"AM":0,"x":27.047,"y":33.025,"w":71.063,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR3","EN":0},"TI":452,"AM":0,"x":27.047,"y":34.412,"w":70.988,"h":0.862},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMOUNT1","EN":0},"TI":453,"AM":0,"x":29.976,"y":36.115,"w":10.904,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMOUNT3","EN":0},"TI":454,"AM":0,"x":65.177,"y":36.088,"w":10.904,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMOUNT2","EN":0},"TI":455,"AM":0,"x":30.084,"y":37.484,"w":10.904,"h":0.884},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE1","EN":0},"TI":456,"AM":0,"x":26.042,"y":39.809,"w":22.733,"h":0.862,"MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE2","EN":0},"TI":457,"AM":0,"x":51.272,"y":39.782,"w":22.733,"h":0.862,"MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE3","EN":0},"TI":458,"AM":0,"x":76.482,"y":39.775,"w":22.733,"h":0.862,"MV":"MMDDYYYY"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL1","EN":0},"TI":459,"AM":0,"x":40.641,"y":42.031,"w":10.904,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL2","EN":0},"TI":460,"AM":0,"x":59.732,"y":42.003,"w":10.904,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL3","EN":0},"TI":461,"AM":0,"x":78.653,"y":42.05,"w":10.904,"h":0.884}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DCSCHNS.content.txt b/test/data/dc/form/DCSCHNS.content.txt new file mode 100755 index 00000000..5d5f4748 --- /dev/null +++ b/test/data/dc/form/DCSCHNS.content.txt @@ -0,0 +1,142 @@ +Government of the +District of Columbia +2013 + +SCHEDULE N DC Non- + Custodial Parent EITC Claim +2013 SCHEDULE N P1 +DC Non-Custodial Parent EITC Claim +Revised 09/13 +Important: +Print in CAPITAL letters using black ink. + Attach to Schedule U. File Schedules N and U with your D-40. + +First name of non-custodial parent M.I. Last name + +Address (number, street and apartment) +City State Zip Code +Social Security Number Date of birth (MMDDYYYY) + +Even if you are not eligible to claim the Federal Earned Income Credit you may be able to claim the DC Earned Income Tax Credit. +You may claim the DC Non-Custodial Parent EITC only if you can answer “Yes” to the following questions. + +1 Is your Federal Adjusted Gross Income for 2013 less than: + + + + + +2 Were you a DC resident taxpayer during the year? +3 Were you between the ages of 18 and 30 as of December 31, 2013? +4 Are you a parent of a minor child(ren) with whom you do not reside? +5 Are you under a court order requiring you to make child support payments? +6 Was the effective date of the child support payment order on or before 6/30/2013? +7 Did you make child support payment(s) through a government sponsored support collection unit? +8 Did you pay all of the court ordered child support due for 2013 by December 31, 2013? +If you answered “Yes” to the above questions, you may claim the DC Non-Custodial Parent EITC. +Complete Schedule N and attach it, and Schedule U, to your D-40. +File order 9 +DC Non-Custodial Parent EITC Eligibility – Please complete this checklist to determine your eligibility to file Schedule N. +$37,870 ($43,210 married filing jointly) with one qualifying child +$43,038 ($48,378 married filing jointly) with two qualifying children +$46,227 ($51,567 married filing jointly) with three or more qualifying children +YES + +NO +----------------Page (0) Break---------------- +2013 SCHEDULE N P2 +DC Non-Custodial Parent EITC Claim +Revised 09/13 +Number, street and apartment number +City State Zip Code +#1 +#1 +#2 +#1 +#2 +#3 +#1 +#2 +#3 +Qualifying Child Information + First Name M.I. Last Name + + Child’s name, #2 + Child’s name, #3 +If you have more than three qualifying children, you only need to list three to get the maximum credit. + 2. +Child’s +SSN + 3. Child’s date of birth + 4. Custodian’s name + 5. Custodian’s address + + 6. Custodian’s SSN + 7. Location of the + court that ordered + support payments for: + 8. Case or Docket number for: + +First Name M.I. Last Name +File order 10 +#2 +9. +Name of government agency to which you make payments for: +10. +Address of +the government +agency for: +#3 +14. +11. +Amount of +court ordered +payment +$ +. +00 per month +$ +. +00 per month +$ +. +00 per month +#2 +12. Date payments were #1 (MMDDYYYY) #2 (MMDDYYYY) #3 (MMDDYYYY) + ordered to start +13. Total payments made during 2013 $ +. +00 + + $ +. +00 + +$ +. +00 + 1. + +Child’s name, #1 +#1 + +#3 +#1 +#2 +#3 +Computation: Using the amount on Line 3 of Form D-40, find the correct Earned Income Credit (EIC) amount from the EIC table in the +Federal 1040 tax return booklet. Multiply that amount by .40 to determine the DC Non-Custodial Parent EITC amount to claim on Schedule U, +Part 1b, Line 1. If you are a part-year filer, see part-year resident instructions in the D-40 booklet on prorating the credit to be claimed. +#1 + +#2 + +#3 + +#1 + +#2 + +#3 +#3 +----------------Page (1) Break---------------- diff --git a/test/data/dc/form/DCSCHNS.fields.json b/test/data/dc/form/DCSCHNS.fields.json new file mode 100755 index 00000000..27a8af2f --- /dev/null +++ b/test/data/dc/form/DCSCHNS.fields.json @@ -0,0 +1 @@ +[{"id":"AGIXRB","type":"radio","calc":false,"value":"AGIY"},{"id":"AGIXRB","type":"radio","calc":false,"value":"AGIN"},{"id":"RESXRB","type":"radio","calc":false,"value":"RESY"},{"id":"RESXRB","type":"radio","calc":false,"value":"RESN"},{"id":"AGEXRB","type":"radio","calc":false,"value":"AGEY"},{"id":"AGEXRB","type":"radio","calc":false,"value":"AGEN"},{"id":"PARXRB","type":"radio","calc":false,"value":"PARY"},{"id":"PARXRB","type":"radio","calc":false,"value":"PARN"},{"id":"CSPXRB","type":"radio","calc":false,"value":"CSPY"},{"id":"CSPXRB","type":"radio","calc":false,"value":"CSPN"},{"id":"EFFXRB","type":"radio","calc":false,"value":"EFFY"},{"id":"EFFXRB","type":"radio","calc":false,"value":"EFFN"},{"id":"COLXRB","type":"radio","calc":false,"value":"COLY"},{"id":"COLXRB","type":"radio","calc":false,"value":"COLN"},{"id":"ALLXRB","type":"radio","calc":false,"value":"ALLY"},{"id":"ALLXRB","type":"radio","calc":false,"value":"ALLN"},{"id":"FNAME","type":"alpha","calc":true,"value":""},{"id":"MI","type":"mask","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DOB","type":"date","calc":true,"value":""},{"id":"CNAME1","type":"alpha","calc":false,"value":""},{"id":"CMI1","type":"mask","calc":false,"value":""},{"id":"CLNAME1","type":"alpha","calc":false,"value":""},{"id":"CNAME2","type":"alpha","calc":false,"value":""},{"id":"CMI2","type":"mask","calc":false,"value":""},{"id":"CLNAME2","type":"alpha","calc":false,"value":""},{"id":"CNAME3","type":"alpha","calc":false,"value":""},{"id":"CMI3","type":"mask","calc":false,"value":""},{"id":"CLNAME3","type":"alpha","calc":false,"value":""},{"id":"CSSN1","type":"ssn","calc":false,"value":""},{"id":"CSSN2","type":"ssn","calc":false,"value":""},{"id":"CSSN3","type":"ssn","calc":false,"value":""},{"id":"CDOB1","type":"date","calc":false,"value":""},{"id":"CDOB2","type":"date","calc":false,"value":""},{"id":"CDOB3","type":"date","calc":false,"value":""},{"id":"CUSTNAM","type":"alpha","calc":false,"value":""},{"id":"CUSTMI","type":"mask","calc":false,"value":""},{"id":"CUSTLNAM","type":"alpha","calc":false,"value":""},{"id":"CUSTADDR","type":"alpha","calc":false,"value":""},{"id":"CUSTCITY","type":"alpha","calc":false,"value":""},{"id":"CUSTST","type":"alpha","calc":false,"value":""},{"id":"CUSTZIP","type":"zip","calc":false,"value":""},{"id":"CUSTSSN","type":"ssn","calc":false,"value":""},{"id":"COURT1","type":"mask","calc":false,"value":""},{"id":"COURT3","type":"mask","calc":false,"value":""},{"id":"COURT2","type":"mask","calc":false,"value":""},{"id":"CASE1","type":"mask","calc":false,"value":""},{"id":"AGENCY1","type":"mask","calc":false,"value":""},{"id":"CASE2","type":"mask","calc":false,"value":""},{"id":"AGENCY2","type":"mask","calc":false,"value":""},{"id":"CASE3","type":"mask","calc":false,"value":""},{"id":"AGENCY3","type":"mask","calc":false,"value":""},{"id":"ADDR1","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"ADDR3","type":"alpha","calc":false,"value":""},{"id":"AMOUNT1","type":"number","calc":false,"value":""},{"id":"AMOUNT3","type":"number","calc":false,"value":""},{"id":"AMOUNT2","type":"number","calc":false,"value":""},{"id":"DATE1","type":"date","calc":false,"value":""},{"id":"DATE2","type":"date","calc":false,"value":""},{"id":"DATE3","type":"date","calc":false,"value":""},{"id":"TOTAL1","type":"number","calc":false,"value":""},{"id":"TOTAL2","type":"number","calc":false,"value":""},{"id":"TOTAL3","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DCSCHNS.json b/test/data/dc/form/DCSCHNS.json new file mode 100755 index 00000000..70ec9873 --- /dev/null +++ b/test/data/dc/form/DCSCHNS.json @@ -0,0 +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":"#e8f7f3","x":7.218,"y":6.981,"w":1.5,"l":91.094},{"oc":"#e8f7f3","x":7.218,"y":42.77,"w":1.5,"l":91.094},{"oc":"#2b2e34","x":23.675,"y":2.419,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":23.675,"y":3.371,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":7.149,"y":7.066,"w":4.5,"l":91.266},{"oc":"#2b2e34","x":6.96,"y":17.762,"w":6,"l":91.266},{"oc":"#d1efe7","x":9.023,"y":8.544,"w":1.5,"l":87.398},{"oc":"#d1efe7","x":9.023,"y":9.669,"w":1.5,"l":87.398},{"oc":"#d1efe7","x":9.281,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.281,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.374,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.374,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.468,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.468,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.562,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.562,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.656,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.656,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.749,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.749,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.843,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.843,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.937,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.937,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.031,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.031,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.124,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.124,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.218,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.218,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.312,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.312,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.124,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.124,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.109,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.109,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.203,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.203,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.484,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.484,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.578,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.578,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.671,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.671,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.765,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.765,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.859,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.859,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.953,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.953,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.046,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.046,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.14,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.14,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.234,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.234,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":8.937,"y":13.044,"w":1.5,"l":86.797},{"oc":"#d1efe7","x":8.937,"y":14.169,"w":1.5,"l":86.797},{"oc":"#d1efe7","x":9.195,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.195,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.289,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.289,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.382,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":15.382,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.476,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.476,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.57,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.57,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.664,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.664,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.757,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.757,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.851,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.851,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.945,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.945,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.039,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.039,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.132,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.132,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.226,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.226,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.32,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.32,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.414,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.414,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":52.507,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":52.507,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.835,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.835,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.929,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.929,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.601,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.601,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.695,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.695,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":72.789,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":72.789,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.882,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.882,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.976,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.976,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.445,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.445,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.539,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.539,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.632,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.632,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.726,"y":13.103,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.726,"y":14.106,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.328,"y":8.603,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.328,"y":9.606,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.109,"y":15.481,"w":1.5,"l":55.129},{"oc":"#d1efe7","x":9.109,"y":16.606,"w":1.5,"l":55.129},{"oc":"#d1efe7","x":9.367,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.367,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.117,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":12.117,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.867,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.867,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.304,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.304,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.054,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":21.054,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.335,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.335,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.085,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.085,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.351,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.351,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.929,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.929,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.195,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.195,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.945,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.945,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.695,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.695,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.445,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.445,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.458,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.458,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.208,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.208,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.958,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.958,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.708,"y":15.541,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.708,"y":16.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":9.179,"y":10.865,"w":1.5,"l":78.235},{"oc":"#d1efe7","x":9.179,"y":11.943,"w":1.5,"l":78.235},{"oc":"#d1efe7","x":9.265,"y":10.858,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":9.265,"y":11.911,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":11.611,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.611,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.206,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.206,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.802,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.802,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.397,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.397,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.992,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.992,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.588,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.588,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.183,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":27.183,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.778,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.778,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.374,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.374,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.969,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.969,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.564,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.564,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.28,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.28,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.875,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.875,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.47,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.47,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.066,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.066,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.661,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.661,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.256,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.256,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.852,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.852,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.447,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.447,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.042,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.042,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.638,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.638,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.233,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.233,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.828,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.828,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.424,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.424,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.019,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.019,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.614,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.614,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.702,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.702,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.297,"y":10.858,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.297,"y":11.921,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.175,"y":10.849,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.175,"y":11.911,"w":1.5,"l":2.552},{"clr":1,"x":6.187,"y":26.732,"w":1.5,"l":93.991},{"clr":1,"x":5.598,"y":28.317,"w":1.5,"l":93.991},{"clr":1,"x":6.04,"y":29.763,"w":1.5,"l":93.991},{"clr":1,"x":6.187,"y":31.308,"w":1.5,"l":93.991},{"clr":1,"x":6.04,"y":32.763,"w":1.5,"l":93.991},{"clr":1,"x":5.451,"y":34.348,"w":1.5,"l":93.991},{"clr":1,"x":5.892,"y":35.795,"w":1.5,"l":93.991},{"clr":1,"x":6.04,"y":37.339,"w":1.5,"l":93.991},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#e8f7f3","x":7.218,"y":6.981,"w":1.5,"l":35.789},{"oc":"#e8f7f3","x":98.312,"y":6.981,"w":1.5,"l":35.789},{"oc":"#2b2e34","x":23.675,"y":2.419,"w":1.5,"l":0.952},{"oc":"#2b2e34","x":29.785,"y":2.419,"w":1.5,"l":0.952},{"oc":"#d1efe7","x":9.023,"y":8.544,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":96.421,"y":8.544,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":9.281,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.031,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.374,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.124,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.468,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.218,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.562,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.312,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.656,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.406,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.749,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.499,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.843,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.593,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.937,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.687,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.031,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.781,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.124,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.874,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.218,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.968,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.312,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.062,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.124,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.874,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.109,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.859,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.203,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.953,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.296,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.046,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.39,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.14,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.484,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.234,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.578,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.328,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.671,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.421,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.765,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.515,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.859,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.609,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.953,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.703,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.046,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.796,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.14,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.89,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.234,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.984,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":8.937,"y":13.044,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.734,"y":13.044,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":9.195,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":11.945,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.289,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.039,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":15.382,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.132,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.476,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.226,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.57,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.32,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.664,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.414,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.757,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.507,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.851,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.601,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.945,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.695,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.039,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.789,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.132,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.882,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.226,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.976,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.32,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.07,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.414,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.164,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.507,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.257,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.835,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.585,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.929,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.679,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.601,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.351,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.695,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.445,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.789,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.539,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.882,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.632,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.976,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.726,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.445,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.195,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.539,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.289,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.632,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.382,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.726,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.476,"y":13.103,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.328,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.078,"y":8.603,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":9.109,"y":15.481,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":64.238,"y":15.481,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":9.367,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.117,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":12.117,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.867,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.867,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.617,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.304,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.054,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":21.054,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.804,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.335,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.085,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.085,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.835,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.351,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.101,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.929,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.679,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.195,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.945,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.945,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.695,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.695,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.445,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.445,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.195,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.458,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.208,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.208,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.958,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.958,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.708,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.708,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.458,"y":15.541,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":9.179,"y":10.865,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":87.414,"y":10.865,"w":1.5,"l":1.078},{"oc":"#d1efe7","x":9.265,"y":10.858,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.568,"y":10.858,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":11.611,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.163,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.206,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.759,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.802,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.354,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.397,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.949,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.992,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.545,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.588,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.14,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":27.183,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.735,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.778,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.331,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.374,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.926,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.969,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.521,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.564,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.116,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.28,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.832,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.875,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.427,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.47,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.023,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.066,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.618,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.661,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.213,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.256,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.809,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.852,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.404,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.447,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.999,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.042,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.595,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.638,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.19,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.233,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.785,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.828,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.381,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.424,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.976,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.019,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.571,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.614,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.166,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.702,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.254,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.297,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.849,"y":10.858,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.175,"y":10.849,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.727,"y":10.849,"w":1.5,"l":1.063},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e8f7f3","x":7.218,"y":6.981,"w":91.094,"h":35.789,"clr":-1},{"oc":"#2b2e34","x":23.675,"y":2.419,"w":6.11,"h":0.952,"clr":-1},{"oc":"#d1efe7","x":9.023,"y":8.544,"w":87.398,"h":1.125,"clr":-1},{"x":9.281,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":12.374,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":15.468,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":18.562,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":21.656,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":24.749,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":27.843,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":30.937,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":34.031,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":37.124,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":40.218,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":43.312,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":48.124,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":53.109,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":56.203,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":59.296,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":62.39,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":65.484,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":68.578,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":71.671,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":74.765,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":77.859,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":80.953,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":84.046,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":87.14,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"x":90.234,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":8.937,"y":13.044,"w":86.797,"h":1.125,"clr":-1},{"x":9.195,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":12.289,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":15.382,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":18.476,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":21.57,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":24.664,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":27.757,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":30.851,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":33.945,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":37.039,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":40.132,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":43.226,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":46.32,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":49.414,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":52.507,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":57.835,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":60.929,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":66.601,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":69.695,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":72.789,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":75.882,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":78.976,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":83.445,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":86.539,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":89.632,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":92.726,"y":13.103,"w":2.75,"h":1.003,"clr":1},{"x":93.328,"y":8.603,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":9.109,"y":15.481,"w":55.129,"h":1.125,"clr":-1},{"x":9.367,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":12.117,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":14.867,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":18.304,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":21.054,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":41.335,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":44.085,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":47.351,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":49.929,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":53.195,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":55.945,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":58.695,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":61.445,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":84.562,"y":23.044,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":23.044,"w":2.896,"h":0.734,"clr":1},{"x":24.458,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":27.208,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":29.958,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"x":32.708,"y":15.541,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":9.179,"y":10.865,"w":78.235,"h":1.078,"clr":-1},{"x":9.265,"y":10.858,"w":2.303,"h":1.053,"clr":1},{"x":11.611,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":14.206,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":16.802,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":19.397,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":21.992,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":24.588,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":27.183,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":29.778,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":32.374,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":34.969,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":37.564,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":40.28,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":42.875,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":45.47,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":48.066,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":50.661,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":53.256,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":55.852,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":58.447,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":61.042,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":63.638,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":66.233,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":68.828,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":71.424,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":74.019,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":76.614,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":81.702,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":84.297,"y":10.858,"w":2.552,"h":1.063,"clr":1},{"x":79.175,"y":10.849,"w":2.552,"h":1.063,"clr":1},{"x":84.562,"y":27.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":27.169,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":28.669,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":28.669,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":30.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":30.169,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":31.669,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":31.669,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":33.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":33.169,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":34.669,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":34.669,"w":2.896,"h":0.734,"clr":1},{"x":84.562,"y":36.169,"w":2.896,"h":0.734,"clr":1},{"x":90.509,"y":36.169,"w":2.896,"h":0.734,"clr":1}],"Texts":[{"oc":"#2b2e34","x":11.978,"y":2.139,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":11.978,"y":2.664,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":24.036,"y":2.396,"w":2.424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":30.91,"y":2.396,"w":9.915000000000001,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20N%20DC%20Non-","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":24.036,"y":3.246,"w":15.333999999999998,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20Custodial%20Parent%20EITC%20Claim","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":43.767,"y":45.268,"w":11.666000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20N%20%20%20%20%20P1%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":43.767,"y":46.08,"w":15.689999999999998,"clr":-1,"A":"left","R":[{"T":"DC%20Non-Custodial%20Parent%20EITC%20Claim","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":14.093,"y":45.611,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.226,"y":5.159,"w":5.179,"clr":-1,"A":"left","R":[{"T":"Important%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.507,"y":5.159,"w":17.02,"clr":-1,"A":"left","R":[{"T":"Print%20in%20CAPITAL%20letters%20using%20black%20ink.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.507,"y":5.834,"w":26.717999999999993,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Schedule%20U.%20File%20Schedules%20N%20and%20U%20with%20your%20D-40.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":7.534000000000001,"w":14.872999999999998,"clr":-1,"A":"left","R":[{"T":"First%20name%20of%20non-custodial%20parent%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.99,"y":7.534000000000001,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.147,"y":7.534000000000001,"w":4.4190000000000005,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":9.784,"w":17.003,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%20and%20apartment)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":12.034,"w":1.9169999999999998,"clr":-1,"A":"left","R":[{"T":"City%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.273,"y":12.034,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":66.523,"y":12.034,"w":4.063,"clr":-1,"A":"left","R":[{"T":"Zip%20Code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":14.284,"w":10.542000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.257,"y":14.284,"w":11.504,"clr":-1,"A":"left","R":[{"T":"Date%20of%20birth%20(MMDDYYYY)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":17.984,"w":56.56099999999997,"clr":-1,"A":"left","R":[{"T":"Even%20if%20you%20are%20not%20eligible%20to%20claim%20the%20Federal%20Earned%20Income%20Credit%20you%20may%20be%20able%20to%20claim%20the%20DC%20Earned%20Income%20Tax%20Credit.","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#2b2e34","x":8.773,"y":19.984,"w":46.03899999999999,"clr":-1,"A":"left","R":[{"T":"You%20may%20claim%20the%20DC%20Non-Custodial%20Parent%20EITC%20only%20if%20you%20can%20answer%20%E2%80%9CYes%E2%80%9D%20to%20the%20following%20questions.","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#2b2e34","x":8.773,"y":22.871,"w":26.334,"clr":-1,"A":"left","R":[{"T":"1%20%20Is%20your%20Federal%20Adjusted%20Gross%20Income%20for%202013%20less%20than%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":26.996,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"2%20%20Were%20you%20a%20DC%20resident%20taxpayer%20during%20the%20year%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":28.496,"w":31.031,"clr":-1,"A":"left","R":[{"T":"3%20%20Were%20you%20between%20the%20ages%20of%2018%20and%2030%20as%20of%20December%2031%2C%202013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":29.996,"w":30.571,"clr":-1,"A":"left","R":[{"T":"4%20%20Are%20you%20a%20parent%20of%20a%20minor%20child(ren)%20with%20whom%20you%20do%20not%20reside%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":31.496000000000002,"w":33.351,"clr":-1,"A":"left","R":[{"T":"5%20%20Are%20you%20under%20a%20court%20order%20requiring%20you%20to%20make%20child%20support%20payments%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":32.996,"w":36.766999999999996,"clr":-1,"A":"left","R":[{"T":"6%20%20Was%20the%20effective%20date%20of%20the%20child%20support%20payment%20order%20on%20or%20before%206%2F30%2F2013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":34.496,"w":42.62800000000001,"clr":-1,"A":"left","R":[{"T":"7%20%20Did%20you%20make%20child%20support%20payment(s)%20through%20a%20government%20sponsored%20support%20collection%20unit%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":35.996,"w":39.16799999999999,"clr":-1,"A":"left","R":[{"T":"8%20%20Did%20you%20pay%20all%20of%20the%20court%20ordered%20child%20support%20due%20for%202013%20by%20December%2031%2C%202013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":37.496,"w":41.10799999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%E2%80%9D%20to%20the%20above%20questions%2C%20you%20may%20claim%20the%20DC%20Non-Custodial%20Parent%20EITC.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":38.246,"w":28.554,"clr":-1,"A":"left","R":[{"T":"Complete%20Schedule%20N%20and%20attach%20it%2C%20and%20Schedule%20U%2C%20to%20your%20D-40.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":88.875,"y":47.603,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%209","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.773,"y":19.171,"w":52.190999999999995,"clr":-1,"A":"left","R":[{"T":"DC%20Non-Custodial%20Parent%20EITC%20Eligibility%20%E2%80%93%20Please%20complete%20this%20checklist%20to%20determine%20your%20eligibility%20to%20file%20Schedule%20N.","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#2b2e34","x":12.039,"y":23.746,"w":28.221000000000007,"clr":-1,"A":"left","R":[{"T":"%2437%2C870%20(%2443%2C210%20married%20filing%20jointly)%20with%20one%20qualifying%20child","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.039,"y":24.621,"w":29.58100000000001,"clr":-1,"A":"left","R":[{"T":"%2443%2C038%20(%2448%2C378%20married%20filing%20jointly)%20with%20two%20qualifying%20children","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.039,"y":25.496,"w":33.750000000000014,"clr":-1,"A":"left","R":[{"T":"%2446%2C227%20(%2451%2C567%20married%20filing%20jointly)%20with%20three%20or%20more%20qualifying%20children","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.013,"y":21.934,"w":1.6800000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":90.485,"y":21.934,"w":1.379,"clr":-1,"A":"left","R":[{"T":"NO","S":4,"TS":[0,14,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":462,"AM":1024,"x":9.037,"y":8.699,"w":37.146,"h":0.862,"TU":"First name of non-custodial parent"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":463,"AM":1024,"x":48.059,"y":8.699,"w":2.764,"h":0.862,"TU":"M.I","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":464,"AM":1024,"x":52.865,"y":8.699,"w":43.333,"h":0.862,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":465,"AM":1024,"x":9.295,"y":10.96,"w":77.347,"h":0.862,"TU":"ADDRESS"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":466,"AM":1024,"x":8.954,"y":13.199,"w":46.427,"h":0.862,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":467,"AM":1024,"x":57.913,"y":13.209,"w":6.208,"h":0.862,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":468,"AM":1024,"x":66.353,"y":13.199,"w":28.965,"h":0.862,"TU":"Zip Code + 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":469,"AM":1024,"x":8.916,"y":15.643,"w":26.596,"h":0.862},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB","EN":0},"TI":470,"AM":1024,"x":41.273,"y":15.636,"w":22.733,"h":0.862,"TU":"Date of birth (MMDDYYYY","MV":"mmddyyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGIY","EN":0},"TI":471,"AM":0,"x":85.065,"y":22.944,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGIN","EN":0},"TI":472,"AM":0,"x":91.117,"y":22.967,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"AGIXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RESY","EN":0},"TI":473,"AM":0,"x":85.257,"y":27.152,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RESN","EN":0},"TI":474,"AM":0,"x":91.342,"y":27.187,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"RESXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGEY","EN":0},"TI":475,"AM":0,"x":85.332,"y":28.65,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AGEN","EN":0},"TI":476,"AM":0,"x":91.342,"y":28.684,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"AGEXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PARY","EN":0},"TI":477,"AM":0,"x":85.257,"y":30.147,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PARN","EN":0},"TI":478,"AM":0,"x":91.267,"y":30.182,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"PARXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CSPY","EN":0},"TI":479,"AM":0,"x":85.332,"y":31.644,"w":1.607,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CSPN","EN":0},"TI":480,"AM":0,"x":91.267,"y":31.706,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"CSPXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFFY","EN":0},"TI":481,"AM":0,"x":85.257,"y":33.142,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFFN","EN":0},"TI":482,"AM":0,"x":91.192,"y":33.204,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"EFFXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLY","EN":0},"TI":483,"AM":0,"x":85.257,"y":34.666,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLN","EN":0},"TI":484,"AM":0,"x":91.342,"y":34.674,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"COLXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ALLY","EN":0},"TI":485,"AM":0,"x":85.182,"y":36.136,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ALLN","EN":0},"TI":486,"AM":0,"x":91.267,"y":36.144,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"ALLXRB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#e1f4ef","x":6.273,"y":5.059,"w":1.5,"l":94.188},{"oc":"#e1f4ef","x":6.273,"y":45.991,"w":1.5,"l":94.188},{"oc":"#2b2e34","x":6.187,"y":13.344,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.187,"y":11.313,"w":1.5,"l":94.219},{"oc":"#2b2e34","x":6.187,"y":15.406,"w":1.5,"l":94.219},{"oc":"#2b2e34","x":6.187,"y":17.509,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.187,"y":21.572,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.187,"y":23.122,"w":1.5,"l":94.078},{"oc":"#2b2e34","x":6.187,"y":25.853,"w":1.5,"l":94.359},{"oc":"#2b2e34","x":6.058,"y":38.639,"w":1.5,"l":94.488},{"oc":"#2b2e34","x":6.187,"y":35.673,"w":1.5,"l":94.219},{"oc":"#2b2e34","x":6.187,"y":41.009,"w":1.5,"l":94.359},{"oc":"#d1efe7","x":23.684,"y":6.497,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.684,"y":7.622,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.976,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.976,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.07,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.07,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.164,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.164,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.257,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.257,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.351,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.351,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.445,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.445,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.539,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.539,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.632,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.632,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.726,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.726,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.82,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.82,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.914,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.914,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.382,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.382,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.023,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.023,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.117,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.117,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.21,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.21,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.304,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.304,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.398,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.398,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.492,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.492,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.585,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.585,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.679,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.679,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.773,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.773,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.867,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.867,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.96,"y":6.556,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.96,"y":7.559,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.632,"y":7.812,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.632,"y":8.937,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.899,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.899,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.992,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.992,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.086,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.086,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.18,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.18,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.274,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.274,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.367,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.367,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.461,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.461,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.555,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.555,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.649,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.649,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.742,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.742,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.836,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.836,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.305,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.305,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.946,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.946,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.039,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.039,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.133,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.133,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.227,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.227,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.321,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.321,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.414,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.414,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.508,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.508,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.602,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.602,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.696,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.696,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.789,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.789,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.883,"y":7.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.883,"y":8.875,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":24.75,"y":16.219,"w":1.5,"l":74.508},{"oc":"#d1efe7","x":24.75,"y":17.344,"w":1.5,"l":74.508},{"oc":"#d1efe7","x":25.18,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.18,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.273,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.273,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.367,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.367,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.461,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.461,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.555,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.555,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.648,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.648,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.742,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.742,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.836,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.836,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.93,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":49.93,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.023,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.023,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.117,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":56.117,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.586,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.586,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.226,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.226,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.32,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.32,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.414,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.414,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.508,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.508,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.601,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.601,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.695,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.695,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.789,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.789,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.883,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.883,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.976,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.976,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.07,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.07,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.164,"y":16.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.164,"y":17.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.039,"y":20.247,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":26.039,"y":21.372,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":26.124,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.124,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.218,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.218,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.312,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.312,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.406,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.406,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.499,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.499,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.593,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":41.593,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.687,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":44.687,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.781,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.781,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.874,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.874,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.968,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.968,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.296,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.39,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.062,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.062,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.156,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.156,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.249,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.249,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.343,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.343,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.437,"y":20.306,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.437,"y":21.309,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.906,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.906,"y":21.247,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.999,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.999,"y":21.247,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.101,"y":18.338,"w":1.5,"l":72.016},{"oc":"#d1efe7","x":26.101,"y":19.463,"w":1.5,"l":72.016},{"oc":"#d1efe7","x":26.445,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.445,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.711,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.711,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.804,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.804,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.898,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.898,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.992,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.992,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.086,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.086,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.179,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.179,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.273,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.273,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.367,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.367,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.461,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.461,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.554,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.554,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.648,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":60.648,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.742,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.742,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.836,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.836,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.929,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":69.929,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.023,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.023,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.117,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.117,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.211,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.211,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.476,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.476,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.57,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.57,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.664,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.664,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.758,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.758,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.851,"y":18.397,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.851,"y":19.401,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.093,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.093,"y":21.247,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.187,"y":20.244,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.187,"y":21.247,"w":1.5,"l":2.75},{"oc":"#2b2e34","x":6.047,"y":31.109,"w":1.5,"l":94.5},{"oc":"#d1efe7","x":14.117,"y":27.088,"w":1.5,"l":31.109},{"oc":"#d1efe7","x":14.117,"y":28.213,"w":1.5,"l":31.109},{"oc":"#d1efe7","x":14.203,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.203,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":27.147,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":28.151,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.117,"y":28.406,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.117,"y":29.531,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.203,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.203,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":28.466,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":29.469,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.851,"y":27.128,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.851,"y":28.253,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.937,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.937,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":27.187,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":28.19,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.851,"y":28.48,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.851,"y":29.605,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.937,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.937,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":28.54,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":29.543,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.097,"y":32.849,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.097,"y":33.974,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.183,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.183,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":32.909,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":33.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.054,"y":31.484,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":27.054,"y":32.609,"w":1.5,"l":71.328},{"oc":"#d1efe7","x":27.14,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.14,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.234,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.234,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.328,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.328,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.422,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.422,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.515,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.515,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.609,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.609,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.703,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.703,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.797,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.797,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.89,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.89,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.984,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.078,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.172,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.172,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.437,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.437,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.531,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.531,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.625,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.625,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.719,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.719,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.812,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.812,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.906,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.094,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.094,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.187,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.187,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.281,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.281,"y":32.547,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.375,"y":31.544,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.375,"y":32.547,"w":1.5,"l":2.75},{"oc":"#2b2e34","x":6.359,"y":43.497,"w":1.5,"l":94.317},{"oc":"#d1efe7","x":59.429,"y":41.868,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":59.429,"y":42.974,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":59.567,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":59.567,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":62.36,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":62.36,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":65.144,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":65.144,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":67.937,"y":41.912,"w":1.5,"l":2.836},{"oc":"#d1efe7","x":67.937,"y":42.924,"w":1.5,"l":2.836},{"oc":"#d1efe7","x":40.305,"y":41.881,"w":1.5,"l":15.039},{"oc":"#d1efe7","x":40.305,"y":42.974,"w":1.5,"l":15.039},{"oc":"#d1efe7","x":40.442,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":40.442,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":43.192,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":43.192,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":45.951,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":45.951,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":48.709,"y":41.912,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":48.709,"y":42.94,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":25.398,"y":14.072,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.398,"y":15.156,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.622,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.622,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.372,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.372,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.638,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.638,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.216,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.216,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.481,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.481,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.231,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.231,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.981,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.981,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.731,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.731,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.797,"y":14.072,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":50.797,"y":15.156,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":51.021,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.021,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.771,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.771,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.037,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.037,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.615,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.615,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.88,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.88,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.63,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.63,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.38,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.38,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.13,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.13,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.711,"y":9.111,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.711,"y":10.236,"w":1.5,"l":74.336},{"oc":"#d1efe7","x":23.977,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.977,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.071,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.071,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.165,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.165,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.258,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.258,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.352,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.352,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.446,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.446,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.54,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.54,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.633,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.633,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.727,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.727,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.821,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.821,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.915,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":54.915,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.383,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.383,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.024,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.024,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.118,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.118,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.211,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.211,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.305,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.305,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.399,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.399,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.493,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.493,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.586,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.586,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.68,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.68,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.774,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.774,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.868,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.868,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.961,"y":9.17,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":94.961,"y":10.173,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":16.914,"y":12.048,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":16.914,"y":13.06,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":17.098,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":17.098,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":19.869,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":19.869,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":22.639,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":22.639,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":26.025,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":26.025,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":28.795,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":28.795,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":32.334,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":32.334,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":35.105,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":35.105,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":37.875,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":37.875,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":40.645,"y":12.102,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":40.645,"y":13.003,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":45.273,"y":12.06,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":45.273,"y":13.071,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":45.458,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":45.458,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":48.228,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":48.228,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":50.998,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":50.998,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":54.384,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":54.384,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":57.154,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":57.154,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":60.694,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":60.694,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":63.464,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":63.464,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":66.234,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":66.234,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":69.004,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":69.004,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":73.179,"y":12.06,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":73.179,"y":13.071,"w":1.5,"l":26.406},{"oc":"#d1efe7","x":73.364,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":73.364,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":76.134,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":76.134,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":78.904,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":78.904,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":82.29,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":82.29,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":85.06,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":85.06,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":88.6,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":88.6,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":91.37,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":91.37,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":94.14,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":94.14,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":96.911,"y":12.113,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":96.911,"y":13.014,"w":1.5,"l":2.444},{"oc":"#d1efe7","x":76.14,"y":14.072,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.14,"y":15.156,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.364,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.364,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.114,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.114,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.38,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.38,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.958,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.958,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.223,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.223,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.973,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.973,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.723,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.723,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.473,"y":14.094,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.473,"y":15.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.953,"y":21.809,"w":1.5,"l":29.648},{"oc":"#d1efe7","x":25.953,"y":22.934,"w":1.5,"l":29.648},{"oc":"#bde8dd","x":26.296,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":26.296,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":29.39,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":29.39,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":32.484,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":32.484,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":36.265,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":36.265,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":39.359,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":39.359,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":43.312,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":43.312,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":46.406,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":46.406,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":49.499,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":49.499,"y":22.872,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":52.593,"y":21.869,"w":1.5,"l":2.75},{"oc":"#bde8dd","x":52.593,"y":22.872,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.07,"y":23.452,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.07,"y":24.478,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.151,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":30.151,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.065,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.065,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":35.98,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":35.98,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.895,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.895,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.809,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.809,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.724,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.724,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.638,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.638,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.553,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.553,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.467,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.467,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.382,"y":23.506,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.382,"y":24.42,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":64.601,"y":23.491,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":64.601,"y":24.517,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":64.682,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":64.682,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":67.597,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":67.597,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":70.511,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":70.511,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":73.426,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":73.426,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":76.34,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":76.34,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":79.255,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":79.255,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":82.169,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":82.169,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":85.084,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":85.084,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":87.998,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":87.998,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":90.913,"y":23.546,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":90.913,"y":24.46,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":30.101,"y":24.624,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.101,"y":25.649,"w":1.5,"l":29.297},{"oc":"#d1efe7","x":30.182,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":30.182,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.097,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":33.097,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":36.011,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":36.011,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.926,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":38.926,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.84,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":41.84,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.755,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":44.755,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.669,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":47.669,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.584,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":50.584,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.498,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":53.498,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.413,"y":24.678,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":56.413,"y":25.592,"w":1.5,"l":2.581},{"oc":"#d1efe7","x":14.117,"y":29.736,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.117,"y":30.861,"w":1.5,"l":30.903},{"oc":"#d1efe7","x":14.203,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":14.203,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":17.297,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.39,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":23.484,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":26.578,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.672,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":32.765,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":35.859,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":38.953,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.047,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.851,"y":29.736,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.851,"y":30.861,"w":1.5,"l":37.039},{"oc":"#d1efe7","x":58.937,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.937,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":62.031,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.125,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.219,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.312,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.406,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.5,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":80.594,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.687,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.781,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.875,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":29.795,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.969,"y":30.798,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.789,"y":35.938,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.789,"y":37.094,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.926,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":29.926,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.676,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.676,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.435,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.435,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.194,"y":36,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.194,"y":37.028,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":27.097,"y":34.241,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.097,"y":35.366,"w":1.5,"l":71.242},{"oc":"#d1efe7","x":27.183,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":27.183,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":30.277,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":33.371,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":36.465,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":39.558,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":42.652,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":45.746,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":48.84,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.933,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.027,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":58.121,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.215,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":64.48,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":67.574,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":70.668,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":73.762,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.855,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.949,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":83.043,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":86.137,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.23,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.324,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":34.301,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":95.418,"y":35.304,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.711,"y":39.662,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.711,"y":40.746,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":25.934,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.934,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.684,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.684,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.95,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.95,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.528,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.528,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.794,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.794,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.544,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":40.544,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.294,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":43.294,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.044,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":46.044,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.949,"y":39.662,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":50.949,"y":40.746,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":51.173,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":51.173,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.923,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":53.923,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.188,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.188,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.767,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":59.767,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.032,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.032,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.782,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":65.782,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.532,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":68.532,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.282,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":71.282,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":29.82,"y":37.338,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.82,"y":38.494,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":29.958,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":29.958,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.708,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":32.708,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.466,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":35.466,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.225,"y":37.401,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":38.225,"y":38.429,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":65.023,"y":35.92,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":65.023,"y":37.077,"w":1.5,"l":23.633},{"oc":"#d1efe7","x":65.161,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":65.161,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":67.911,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":67.911,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":70.669,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":70.669,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":73.428,"y":35.983,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":73.428,"y":37.011,"w":1.5,"l":2.759},{"oc":"#d1efe7","x":76.063,"y":39.662,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.063,"y":40.746,"w":1.5,"l":23.538},{"oc":"#d1efe7","x":76.287,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":76.287,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.037,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.037,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.302,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.302,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.88,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.88,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.146,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.146,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.896,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":90.896,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.646,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":93.646,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.396,"y":39.684,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":96.396,"y":40.687,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.414,"y":41.868,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":78.414,"y":42.974,"w":1.5,"l":14.867},{"oc":"#d1efe7","x":78.551,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":78.551,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":81.344,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":81.344,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":84.129,"y":41.912,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":84.129,"y":42.924,"w":1.5,"l":2.793},{"oc":"#d1efe7","x":86.922,"y":41.912,"w":1.5,"l":2.836},{"oc":"#d1efe7","x":86.922,"y":42.924,"w":1.5,"l":2.836},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#e1f4ef","x":6.273,"y":5.059,"w":1.5,"l":40.932},{"oc":"#e1f4ef","x":100.461,"y":5.059,"w":1.5,"l":40.932},{"oc":"#d1efe7","x":23.684,"y":6.497,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.02,"y":6.497,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":23.976,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.726,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.07,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.82,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.164,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.914,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.257,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.007,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.351,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.101,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.445,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.195,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.539,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.289,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.632,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.382,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.726,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.476,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.82,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.57,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.914,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.664,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.382,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.132,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.023,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.773,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.117,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.867,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.21,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.96,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.304,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.054,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.398,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.148,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.492,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.242,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.585,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.335,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.679,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.429,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.773,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.523,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.867,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.617,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.96,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.71,"y":6.556,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.632,"y":7.812,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":97.968,"y":7.812,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":23.899,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.649,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.992,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.742,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.086,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.836,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.18,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.93,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.274,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.024,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.367,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.117,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.461,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.211,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.555,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.305,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.649,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.399,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.742,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.492,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.836,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.586,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.305,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.055,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.946,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.696,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.039,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.789,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.133,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.883,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.227,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.977,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.321,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.071,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.414,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.164,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.508,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.258,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.602,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.352,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.696,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.446,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.789,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.539,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.883,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.633,"y":7.872,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":24.75,"y":16.219,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":99.258,"y":16.219,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":25.18,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.93,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.273,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.023,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.367,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.117,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.461,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.211,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.555,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.305,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.648,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.398,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.742,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.492,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.836,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.586,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":49.93,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.68,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.023,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.773,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.117,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.867,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.586,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.336,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.226,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.976,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.32,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.07,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.414,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.164,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.508,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.258,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.601,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.351,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.695,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.445,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.789,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.539,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.883,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.633,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.976,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.726,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.07,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.82,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.164,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.914,"y":16.278,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.039,"y":20.247,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":97.367,"y":20.247,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":26.124,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.874,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.218,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.968,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.312,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.062,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.406,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.156,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.499,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.249,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.593,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.343,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.687,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.437,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.781,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.531,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.874,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.624,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.968,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.718,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.296,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.046,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.39,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.14,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.062,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.812,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.156,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.906,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.249,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.999,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.343,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.093,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.437,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.187,"y":20.306,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.906,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.656,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.999,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.749,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.101,"y":18.338,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.117,"y":18.338,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":26.445,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.195,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.711,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.461,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.804,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.554,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.898,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.648,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.992,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.742,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.086,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.836,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.179,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.929,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.273,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.023,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.367,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.117,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.461,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.211,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.554,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.304,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.648,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.398,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.742,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.492,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.836,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.586,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.929,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.679,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.023,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.773,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.117,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.867,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.211,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.961,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.476,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.226,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.57,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.32,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.664,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.414,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.758,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.508,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.851,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.601,"y":18.397,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.093,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.843,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.187,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.937,"y":20.244,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.117,"y":27.088,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":45.226,"y":27.088,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":14.203,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.953,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.297,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.047,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.39,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.14,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.484,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.234,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.578,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.328,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.672,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.422,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.765,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.515,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.859,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.609,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.953,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.703,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.047,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.797,"y":27.147,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":14.117,"y":28.406,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":45.02,"y":28.406,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":14.203,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.953,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.297,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.047,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.39,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.14,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.484,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.234,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.578,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.328,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.672,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.422,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.765,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.515,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.859,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.609,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.953,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.703,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.047,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.797,"y":28.466,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.851,"y":27.128,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.89,"y":27.128,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":58.937,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.687,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.031,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.781,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.125,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.875,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.219,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.969,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.312,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.062,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.406,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.156,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.5,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.25,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.594,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.344,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.687,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.437,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.969,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.719,"y":27.187,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.851,"y":28.48,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.89,"y":28.48,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":58.937,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.687,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.031,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.781,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.125,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.875,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.219,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.969,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.312,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.062,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.406,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.156,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.5,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.25,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.594,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.344,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.687,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.437,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.969,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.719,"y":28.54,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.097,"y":32.849,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.34,"y":32.849,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":27.183,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.933,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.277,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.027,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.371,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.121,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.465,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.215,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.558,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.308,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.652,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.402,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.746,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.496,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.84,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.59,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.933,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.683,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.215,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.965,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.48,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.23,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.574,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.324,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.668,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.418,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.762,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.512,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.855,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.605,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.137,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.887,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.23,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.98,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.324,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.074,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.418,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.168,"y":32.909,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.054,"y":31.484,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.383,"y":31.484,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":27.14,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.89,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.234,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.984,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.328,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.078,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.422,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.172,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.515,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.265,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.609,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.359,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.703,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.453,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.797,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.547,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.89,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.64,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.734,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.984,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.734,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.828,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.078,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.828,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.172,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.922,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.437,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.187,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.531,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.281,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.625,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.375,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.719,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.469,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.812,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.562,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.656,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.906,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.656,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.75,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.75,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.094,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.844,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.187,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.937,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.281,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.031,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.375,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.125,"y":31.544,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.429,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":74.297,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":59.567,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":62.36,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":62.36,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":65.153,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":65.144,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":67.937,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":67.937,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":70.773,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":40.305,"y":41.881,"w":1.5,"l":1.094},{"oc":"#d1efe7","x":55.344,"y":41.881,"w":1.5,"l":1.094},{"oc":"#d1efe7","x":40.442,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":43.201,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":43.192,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":45.951,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":45.951,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":48.709,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":48.709,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":51.468,"y":41.912,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":25.398,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":48.937,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":25.622,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.372,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.372,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.122,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.638,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.388,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.216,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.966,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.481,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.231,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.231,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.981,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.981,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.731,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.731,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.481,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.797,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":74.336,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":51.021,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.771,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.771,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.521,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.037,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.787,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.615,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.365,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.88,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.63,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.63,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.38,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.38,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.13,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.13,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.88,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.711,"y":9.111,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.047,"y":9.111,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":23.977,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.727,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":27.071,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.821,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.165,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.915,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.258,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.008,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.352,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.102,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.446,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.196,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.54,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.29,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.633,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.383,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.727,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.477,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.821,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.571,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.915,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.665,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.383,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.133,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.024,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.774,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.118,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.868,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.211,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.961,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.305,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.055,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.399,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.149,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.493,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.243,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.586,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.336,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.68,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.43,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.774,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.524,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.868,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.618,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.961,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":97.711,"y":9.17,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.914,"y":12.048,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":43.32,"y":12.048,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":17.098,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":19.543,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":19.869,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":22.313,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":22.639,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":25.083,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":26.025,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":28.469,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":28.795,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":31.239,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":32.334,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":34.779,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":35.105,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":37.549,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":37.875,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":40.319,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":40.645,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":43.089,"y":12.102,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":45.273,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":71.679,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":45.458,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":47.902,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":48.228,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":50.672,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":50.998,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":53.443,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":54.384,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":56.828,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":57.154,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":59.599,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":60.694,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":63.138,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":63.464,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":65.908,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":66.234,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":68.678,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":69.004,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":71.449,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":73.179,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":99.586,"y":12.06,"w":1.5,"l":1.011},{"oc":"#d1efe7","x":73.364,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":75.809,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":76.134,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":78.579,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":78.904,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":81.349,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":82.29,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":84.735,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":85.06,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":87.505,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":88.6,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":91.044,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":91.37,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":93.815,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":94.14,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":96.585,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":96.911,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":99.355,"y":12.113,"w":1.5,"l":0.901},{"oc":"#d1efe7","x":76.14,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":99.679,"y":14.072,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":76.364,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.114,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.114,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.864,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.38,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.13,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.958,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.708,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.223,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.973,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.973,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.723,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.723,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.473,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.473,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":99.223,"y":14.094,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":25.953,"y":21.809,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":55.601,"y":21.809,"w":1.5,"l":1.125},{"oc":"#bde8dd","x":26.296,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":29.046,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":29.39,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":32.14,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":32.484,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":35.234,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":36.265,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":39.015,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":39.359,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":42.109,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":43.312,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":46.062,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":46.406,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":49.156,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":49.499,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":52.249,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":52.593,"y":21.869,"w":1.5,"l":1.003},{"oc":"#bde8dd","x":55.343,"y":21.869,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.07,"y":23.452,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":59.367,"y":23.452,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":30.151,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":32.732,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":33.065,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":35.646,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":35.98,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.561,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.895,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.475,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.809,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.39,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.724,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.304,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.638,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.219,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.553,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.133,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.467,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.048,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.382,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":58.962,"y":23.506,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":64.601,"y":23.491,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":93.898,"y":23.491,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":64.682,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":67.263,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":67.597,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":70.178,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":70.511,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":73.092,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":73.426,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":76.007,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":76.34,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":78.921,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":79.255,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":81.836,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":82.169,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":84.75,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":85.084,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":87.665,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":87.998,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":90.579,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":90.913,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":93.494,"y":23.546,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":30.101,"y":24.624,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":59.398,"y":24.624,"w":1.5,"l":1.026},{"oc":"#d1efe7","x":30.182,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":32.763,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":33.097,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":35.677,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":36.011,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.592,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":38.926,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.506,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":41.84,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.421,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":44.755,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.335,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":47.669,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.25,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":50.584,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.164,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":53.498,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.079,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":56.413,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":58.993,"y":24.678,"w":1.5,"l":0.914},{"oc":"#d1efe7","x":14.117,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":45.02,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":14.203,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":16.953,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":17.297,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.047,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.39,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.14,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.484,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.234,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":26.578,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.328,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.672,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.422,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":32.765,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.515,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":35.859,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.609,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":38.953,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":41.703,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.047,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":44.797,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.851,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":95.89,"y":29.736,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":58.937,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.687,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.031,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.781,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.125,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.875,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.219,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.969,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.312,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.062,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.406,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.156,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.5,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.25,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.594,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.344,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.687,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.437,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.781,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.531,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.875,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.625,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.969,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.719,"y":29.795,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.789,"y":35.938,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":53.422,"y":35.938,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":29.926,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.685,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.676,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.435,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.435,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.194,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.194,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":40.952,"y":36,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":27.097,"y":34.241,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":98.34,"y":34.241,"w":1.5,"l":1.125},{"oc":"#d1efe7","x":27.183,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.933,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":30.277,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.027,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":33.371,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.121,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":36.465,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.215,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.558,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.308,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":42.652,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.402,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":45.746,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.496,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.84,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.59,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":51.933,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":54.683,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.027,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.777,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":58.121,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.871,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.215,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.965,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.48,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.23,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":67.574,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.324,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":70.668,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.418,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":73.762,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.512,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":76.855,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.605,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.949,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.699,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.043,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.793,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":86.137,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.887,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.23,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.98,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.324,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.074,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":95.418,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":98.168,"y":34.301,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":25.711,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":49.249,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":25.934,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.684,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.684,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.434,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.95,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.7,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.528,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.278,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.794,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.544,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":40.544,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.294,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":43.294,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.044,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":46.044,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":48.794,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.949,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":74.488,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":51.173,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.923,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.923,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":56.673,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.188,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.938,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":59.767,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":62.517,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.032,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.782,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":65.782,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.532,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":68.532,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.282,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":71.282,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.032,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":29.82,"y":37.338,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":53.453,"y":37.338,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":29.958,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.716,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":32.708,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.466,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":35.466,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.225,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":38.225,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":40.983,"y":37.401,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":65.023,"y":35.92,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":88.656,"y":35.92,"w":1.5,"l":1.156},{"oc":"#d1efe7","x":65.161,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":67.919,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":67.911,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":70.669,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":70.669,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":73.428,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":73.428,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":76.187,"y":35.983,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":76.063,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":99.601,"y":39.662,"w":1.5,"l":1.084},{"oc":"#d1efe7","x":76.287,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.037,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.037,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.787,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.302,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.052,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.88,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.63,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.146,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.896,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.896,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.646,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.646,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.396,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.396,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":99.146,"y":39.684,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.414,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":93.281,"y":41.868,"w":1.5,"l":1.106},{"oc":"#d1efe7","x":78.551,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":81.344,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":81.344,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":84.137,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":84.129,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":86.922,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":86.922,"y":41.912,"w":1.5,"l":1.012},{"oc":"#d1efe7","x":89.758,"y":41.912,"w":1.5,"l":1.012},{"dsh":1,"oc":"#ff2d16","x":102.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e8f7f3","x":6.273,"y":5.059,"w":94.188,"h":40.932,"clr":-1},{"oc":"#d1efe7","x":23.684,"y":6.497,"w":74.336,"h":1.125,"clr":-1},{"x":23.976,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":27.07,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":30.164,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":33.257,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":36.351,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":39.445,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":42.539,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":45.632,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":48.726,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":51.82,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":54.914,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":59.382,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":64.023,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":67.117,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":70.21,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":73.304,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":76.398,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":79.492,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":82.585,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":85.679,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":88.773,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":91.867,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"x":94.96,"y":6.556,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":23.632,"y":7.812,"w":74.336,"h":1.125,"clr":-1},{"x":23.899,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":26.992,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":30.086,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":33.18,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":36.274,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":39.367,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":42.461,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":45.555,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":48.649,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":51.742,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":54.836,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":59.305,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":63.946,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":67.039,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":70.133,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":73.227,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":76.321,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":79.414,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":82.508,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":85.602,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":88.696,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":91.789,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"x":94.883,"y":7.872,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":24.75,"y":16.219,"w":74.508,"h":1.125,"clr":-1},{"x":25.18,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":28.273,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":31.367,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":34.461,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":37.555,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":40.648,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":43.742,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":46.836,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":49.93,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":53.023,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":56.117,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":60.586,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":65.226,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":68.32,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":71.414,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":74.508,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":77.601,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":80.695,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":83.789,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":86.883,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":89.976,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":93.07,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"x":96.164,"y":16.278,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":26.039,"y":20.247,"w":71.328,"h":1.125,"clr":-1},{"x":26.124,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":29.218,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":32.312,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":35.406,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":38.499,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":41.593,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":44.687,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":47.781,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":50.874,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":53.968,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":59.296,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":62.39,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":68.062,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":71.156,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":74.249,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":77.343,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":80.437,"y":20.306,"w":2.75,"h":1.003,"clr":1},{"x":84.906,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"x":87.999,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":26.101,"y":18.338,"w":72.016,"h":1.125,"clr":-1},{"x":26.445,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":29.711,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":32.804,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":35.898,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":38.992,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":42.086,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":45.179,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":48.273,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":51.367,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":54.461,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":57.554,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":60.648,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":63.742,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":66.836,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":69.929,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":73.023,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":76.117,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":79.211,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":82.476,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":85.57,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":88.664,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":91.758,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":94.851,"y":18.397,"w":2.75,"h":1.003,"clr":1},{"x":91.093,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"x":94.187,"y":20.244,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":14.117,"y":27.088,"w":31.109,"h":1.125,"clr":-1},{"x":14.203,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":17.297,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":20.39,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":23.484,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":26.578,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":29.672,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":32.765,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":35.859,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":38.953,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"x":42.047,"y":27.147,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":14.117,"y":28.406,"w":30.903,"h":1.125,"clr":-1},{"x":14.203,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":17.297,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":20.39,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":23.484,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":26.578,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":29.672,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":32.765,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":35.859,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":38.953,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"x":42.047,"y":28.466,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":58.851,"y":27.128,"w":37.039,"h":1.125,"clr":-1},{"x":58.937,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":62.031,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":65.125,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":68.219,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":71.312,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":74.406,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":77.5,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":80.594,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":83.687,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"x":92.969,"y":27.187,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":58.851,"y":28.48,"w":37.039,"h":1.125,"clr":-1},{"x":58.937,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":62.031,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":65.125,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":68.219,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":71.312,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":74.406,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":77.5,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":80.594,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":83.687,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"x":92.969,"y":28.54,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":27.097,"y":32.849,"w":71.242,"h":1.125,"clr":-1},{"x":27.183,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":30.277,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":33.371,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":36.465,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":39.558,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":42.652,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":45.746,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":48.84,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":51.933,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":61.215,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":64.48,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":67.574,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":70.668,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":73.762,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":76.855,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":86.137,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":89.23,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":92.324,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"x":95.418,"y":32.909,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":27.054,"y":31.484,"w":71.328,"h":1.125,"clr":-1},{"x":27.14,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":30.234,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":33.328,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":36.422,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":39.515,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":42.609,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":45.703,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":48.797,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":51.89,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":54.984,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":54.984,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":58.078,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":58.078,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":61.172,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":64.437,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":67.531,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":70.625,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":73.719,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":76.812,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":79.906,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":79.906,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":83,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":83,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":86.094,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":89.187,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":92.281,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"x":95.375,"y":31.544,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":59.429,"y":41.868,"w":14.867,"h":1.106,"clr":-1},{"x":59.567,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":62.36,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":65.144,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":67.937,"y":41.912,"w":2.836,"h":1.012,"clr":1},{"oc":"#d1efe7","x":40.305,"y":41.881,"w":15.039,"h":1.094,"clr":-1},{"x":40.442,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"x":43.192,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"x":45.951,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"x":48.709,"y":41.912,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":25.398,"y":14.072,"w":23.538,"h":1.084,"clr":-1},{"x":25.622,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":28.372,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":31.638,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":34.216,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":37.481,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":40.231,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":42.981,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":45.731,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":50.797,"y":14.072,"w":23.538,"h":1.084,"clr":-1},{"x":51.021,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":53.771,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":57.037,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":59.615,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":62.88,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":65.63,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":68.38,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":71.13,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":23.711,"y":9.111,"w":74.336,"h":1.125,"clr":-1},{"x":23.977,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":27.071,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":30.165,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":33.258,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":36.352,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":39.446,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":42.54,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":45.633,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":48.727,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":51.821,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":54.915,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":59.383,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":64.024,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":67.118,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":70.211,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":73.305,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":76.399,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":79.493,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":82.586,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":85.68,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":88.774,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":91.868,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"x":94.961,"y":9.17,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":16.914,"y":12.048,"w":26.406,"h":1.011,"clr":-1},{"x":17.098,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":19.869,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":22.639,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":26.025,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":28.795,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":32.334,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":35.105,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":37.875,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"x":40.645,"y":12.102,"w":2.444,"h":0.901,"clr":1},{"oc":"#d1efe7","x":45.273,"y":12.06,"w":26.406,"h":1.011,"clr":-1},{"x":45.458,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":48.228,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":50.998,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":54.384,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":57.154,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":60.694,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":63.464,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":66.234,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":69.004,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"oc":"#d1efe7","x":73.179,"y":12.06,"w":26.406,"h":1.011,"clr":-1},{"x":73.364,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":76.134,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":78.904,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":82.29,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":85.06,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":88.6,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":91.37,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":94.14,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"x":96.911,"y":12.113,"w":2.444,"h":0.901,"clr":1},{"oc":"#d1efe7","x":76.14,"y":14.072,"w":23.538,"h":1.084,"clr":-1},{"x":76.364,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":79.114,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":82.38,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":84.958,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":88.223,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":90.973,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":93.723,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"x":96.473,"y":14.094,"w":2.75,"h":1.003,"clr":1},{"oc":"#bde8dd","x":25.953,"y":21.809,"w":29.648,"h":1.125,"clr":-1},{"x":26.296,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":29.39,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":32.484,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":36.265,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":39.359,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":43.312,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":46.406,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":49.499,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"x":52.593,"y":21.869,"w":2.75,"h":1.003,"clr":1},{"oc":"#bde8dd","x":30.07,"y":23.452,"w":29.297,"h":1.026,"clr":-1},{"x":30.151,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":33.065,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":35.98,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":38.895,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":41.809,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":44.724,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":47.638,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":50.553,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":53.467,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"x":56.382,"y":23.506,"w":2.581,"h":0.914,"clr":1},{"oc":"#bde8dd","x":64.601,"y":23.491,"w":29.297,"h":1.026,"clr":-1},{"x":64.682,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":67.597,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":70.511,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":73.426,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":76.34,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":79.255,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":82.169,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":85.084,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":87.998,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"x":90.913,"y":23.546,"w":2.581,"h":0.914,"clr":1},{"oc":"#bde8dd","x":30.101,"y":24.624,"w":29.297,"h":1.026,"clr":-1},{"x":30.182,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":33.097,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":36.011,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":38.926,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":41.84,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":44.755,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":47.669,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":50.584,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":53.498,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"x":56.413,"y":24.678,"w":2.581,"h":0.914,"clr":1},{"oc":"#d1efe7","x":14.117,"y":29.736,"w":30.903,"h":1.125,"clr":-1},{"x":14.203,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":17.297,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":20.39,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":23.484,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":26.578,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":29.672,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":32.765,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":35.859,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":38.953,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":42.047,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":58.851,"y":29.736,"w":37.039,"h":1.125,"clr":-1},{"x":58.937,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":62.031,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":65.125,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":68.219,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":71.312,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":74.406,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":77.5,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":80.594,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":83.687,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":86.781,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":89.875,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"x":92.969,"y":29.795,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":29.789,"y":35.938,"w":23.633,"h":1.156,"clr":-1},{"x":29.926,"y":36,"w":2.759,"h":1.028,"clr":1},{"x":32.676,"y":36,"w":2.759,"h":1.028,"clr":1},{"x":35.435,"y":36,"w":2.759,"h":1.028,"clr":1},{"x":38.194,"y":36,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":27.097,"y":34.241,"w":71.242,"h":1.125,"clr":-1},{"x":27.183,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":30.277,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":33.371,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":36.465,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":39.558,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":42.652,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":45.746,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":48.84,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":51.933,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":55.027,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":58.121,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":61.215,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":64.48,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":67.574,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":70.668,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":73.762,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":76.855,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":79.949,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":83.043,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":86.137,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":89.23,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":92.324,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"x":95.418,"y":34.301,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":25.711,"y":39.662,"w":23.538,"h":1.084,"clr":-1},{"x":25.934,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":28.684,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":31.95,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":34.528,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":37.794,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":40.544,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":43.294,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":46.044,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":50.949,"y":39.662,"w":23.538,"h":1.084,"clr":-1},{"x":51.173,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":53.923,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":57.188,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":59.767,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":63.032,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":65.782,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":68.532,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":71.282,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":29.82,"y":37.338,"w":23.633,"h":1.156,"clr":-1},{"x":29.958,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"x":32.708,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"x":35.466,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"x":38.225,"y":37.401,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":65.023,"y":35.92,"w":23.633,"h":1.156,"clr":-1},{"x":65.161,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"x":67.911,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"x":70.669,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"x":73.428,"y":35.983,"w":2.759,"h":1.028,"clr":1},{"oc":"#d1efe7","x":76.063,"y":39.662,"w":23.538,"h":1.084,"clr":-1},{"x":76.287,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":79.037,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":82.302,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":84.88,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":88.146,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":90.896,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":93.646,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"x":96.396,"y":39.684,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":78.414,"y":41.868,"w":14.867,"h":1.106,"clr":-1},{"x":78.551,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":81.344,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":84.129,"y":41.912,"w":2.793,"h":1.012,"clr":1},{"x":86.922,"y":41.912,"w":2.836,"h":1.012,"clr":1}],"Texts":[{"oc":"#2b2e34","x":44.047,"y":46.411,"w":11.666000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20N%20%20%20%20%20%20P2","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":44.047,"y":47.224,"w":15.689999999999998,"clr":-1,"A":"left","R":[{"T":"DC%20Non-Custodial%20Parent%20EITC%20Claim","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":14.187,"y":46.411,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":26.046,"y":17.393,"w":16.417,"clr":-1,"A":"left","R":[{"T":"Number%2C%20street%20and%20apartment%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.703,"y":19.33,"w":1.9169999999999998,"clr":-1,"A":"left","R":[{"T":"City%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.734,"y":19.33,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.015,"y":19.33,"w":4.063,"clr":-1,"A":"left","R":[{"T":"Zip%20Code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.344,"y":23.362,"w":1.672,"clr":-1,"A":"left","R":[{"T":"%231%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.879,"y":27.069,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%231%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":28.41,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.656,"y":27.041,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.656,"y":28.378,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.656,"y":29.716,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%233%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.906,"y":31.496000000000002,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.906,"y":32.846,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.906,"y":34.196,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%233%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":5.02,"w":12.481000000000003,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Child%20Information%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":23.812,"y":5.645,"w":4.982,"clr":-1,"A":"left","R":[{"T":"First%20Name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.42,"y":5.645,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.06,"y":5.645,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":7.932,"w":7.479,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name%2C%20%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":9.307,"w":7.479,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name%2C%20%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":10.307,"w":43.18800000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20three%20qualifying%20children%2C%20you%20only%20need%20to%20list%20three%20to%20get%20the%20maximum%20credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":11.795,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"%20%202.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":11.795,"w":2.8539999999999996,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":12.482,"w":1.835,"clr":-1,"A":"left","R":[{"T":"SSN","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":13.938,"w":10.14,"clr":-1,"A":"left","R":[{"T":"%20%203.%20Child%E2%80%99s%20date%20of%20birth","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":15.876000000000001,"w":9.335,"clr":-1,"A":"left","R":[{"T":"%20%204.%20Custodian%E2%80%99s%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":18.363,"w":10.541,"clr":-1,"A":"left","R":[{"T":"%20%205.%20Custodian%E2%80%99s%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":21.751,"w":8.818999999999999,"clr":-1,"A":"left","R":[{"T":"%20%206.%20Custodian%E2%80%99s%20SSN","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":23.063,"w":8.418000000000001,"clr":-1,"A":"left","R":[{"T":"%20%207.%20Location%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":23.751,"w":7.897,"clr":-1,"A":"left","R":[{"T":"court%20that%20ordered%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":24.438,"w":9.293,"clr":-1,"A":"left","R":[{"T":"support%20payments%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.656,"y":25.813,"w":13.447999999999999,"clr":-1,"A":"left","R":[{"T":"%20%208.%20Case%20or%20Docket%20number%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.844,"y":15.302,"w":4.982,"clr":-1,"A":"left","R":[{"T":"First%20Name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.623,"y":15.302,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.092,"y":15.302,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":88.031,"y":47.501,"w":5.49,"clr":-1,"A":"left","R":[{"T":"File%20order%2010","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":27.375,"y":24.534,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%232%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.75,"y":25.961,"w":1.505,"clr":-1,"A":"left","R":[{"T":"9.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.612,"y":25.961,"w":26.558999999999997,"clr":-1,"A":"left","R":[{"T":"Name%20of%20government%20agency%20to%20which%20you%20make%20payments%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.441,"y":31.228,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"10.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.535,"y":31.228,"w":4.736000000000001,"clr":-1,"A":"left","R":[{"T":"Address%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.535,"y":31.915999999999997,"w":6.8790000000000004,"clr":-1,"A":"left","R":[{"T":"the%20government%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.535,"y":32.603,"w":4.65,"clr":-1,"A":"left","R":[{"T":"agency%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":29.751,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.515,"y":43.54,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"14.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.613,"y":35.632,"w":2.1069999999999998,"clr":-1,"A":"left","R":[{"T":"11.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.707,"y":35.632,"w":4.695,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.707,"y":36.319,"w":5.929,"clr":-1,"A":"left","R":[{"T":"court%20ordered%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.707,"y":37.007,"w":3.656,"clr":-1,"A":"left","R":[{"T":"payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.066,"y":35.957,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":41.472,"y":35.957,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":41.941,"y":35.957,"w":5.8759999999999994,"clr":-1,"A":"left","R":[{"T":"00%20per%20month","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.066,"y":37.332,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":41.472,"y":37.332,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":41.941,"y":37.332,"w":5.8759999999999994,"clr":-1,"A":"left","R":[{"T":"00%20per%20month","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.301,"y":35.94,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":76.707,"y":35.94,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":77.176,"y":35.94,"w":5.8759999999999994,"clr":-1,"A":"left","R":[{"T":"00%20per%20month","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.906,"y":37.327,"w":1.672,"clr":-1,"A":"left","R":[{"T":"%232%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.484,"y":38.643,"w":10.786,"clr":-1,"A":"left","R":[{"T":"12.%20Date%20payments%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.075,"y":38.643,"w":7.857000000000002,"clr":-1,"A":"left","R":[{"T":"%231%20(MMDDYYYY)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.198,"y":38.643,"w":7.857000000000002,"clr":-1,"A":"left","R":[{"T":"%232%20(MMDDYYYY)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.149,"y":38.643,"w":7.556000000000002,"clr":-1,"A":"left","R":[{"T":"%233%20(MMDDYYYY)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.578,"y":39.393,"w":6.476,"clr":-1,"A":"left","R":[{"T":"ordered%20to%20start","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.484,"y":41.912,"w":16.942,"clr":-1,"A":"left","R":[{"T":"13.%20Total%20payments%20made%20during%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.28,"y":41.912,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":51.484,"y":41.912,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":51.953,"y":41.912,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.812,"y":41.912,"w":1.505,"clr":-1,"A":"left","R":[{"T":"%20%20%24%20","S":3,"TS":[0,12,0,0]}]},{"x":70.734,"y":41.912,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":71.203,"y":41.912,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.75,"y":41.912,"w":0.903,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"x":89.984,"y":41.912,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":90.453,"y":41.912,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.124,"y":6.557,"w":1.204,"clr":-1,"A":"left","R":[{"T":"%201.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":6.557,"w":7.479,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name%2C%20%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.992,"y":35.967,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.055,"y":35.967,"w":1.672,"clr":-1,"A":"left","R":[{"T":"%233%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.738,"y":41.029,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.943,"y":40.988,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.687,"y":41.006,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":43.54,"w":57.766,"clr":-1,"A":"left","R":[{"T":"Computation%3A%20%20Using%20the%20amount%20on%20Line%203%20of%20Form%20D-40%2C%20find%20the%20correct%20Earned%20Income%20Credit%20(EIC)%20amount%20from%20the%20EIC%20table%20in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":44.165,"w":60.62100000000001,"clr":-1,"A":"left","R":[{"T":"Federal%201040%20tax%20return%20booklet.%20Multiply%20that%20amount%20by%20.40%20to%20determine%20the%20DC%20Non-Custodial%20Parent%20EITC%20amount%20to%20claim%20on%20Schedule%20U%2C%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#2b2e34","x":10.609,"y":44.79,"w":56.963999999999984,"clr":-1,"A":"left","R":[{"T":"Part%201b%2C%20Line%201.%20If%20you%20are%20a%20part-year%20filer%2C%20see%20part-year%20resident%20instructions%20in%20the%20D-40%20booklet%20on%20prorating%20the%20credit%20to%20be%20claimed.","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#2b2e34","x":28.297,"y":11.217,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57,"y":11.217,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.843,"y":11.217,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.611,"y":13.201,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%231","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.189,"y":13.201,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%232","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.455,"y":13.201,"w":1.371,"clr":-1,"A":"left","R":[{"T":"%233","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.14,"y":23.469,"w":1.9729999999999999,"clr":-1,"A":"left","R":[{"T":"%233%20%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAME1","EN":0},"TI":487,"AM":0,"x":23.85,"y":6.67,"w":34.031,"h":0.862,"TU":"1. Child’s first name, #1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CMI1","EN":0},"TI":488,"AM":0,"x":59.429,"y":6.67,"w":2.743,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLNAME1","EN":0},"TI":489,"AM":0,"x":63.884,"y":6.67,"w":34.052,"h":0.862,"TU":"Last Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAME2","EN":0},"TI":490,"AM":0,"x":23.768,"y":7.99,"w":34.052,"h":0.854,"TU":"Child’s first name, #2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CMI2","EN":0},"TI":491,"AM":0,"x":59.346,"y":7.99,"w":2.764,"h":0.854,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLNAME2","EN":0},"TI":492,"AM":0,"x":63.822,"y":7.99,"w":34.031,"h":0.854,"TU":"Last Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAME3","EN":0},"TI":493,"AM":0,"x":23.85,"y":9.287,"w":34.052,"h":0.854,"TU":"Child’s first name, #3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CMI3","EN":0},"TI":494,"AM":0,"x":59.429,"y":9.287,"w":2.764,"h":0.854,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLNAME3","EN":0},"TI":495,"AM":0,"x":63.904,"y":9.264,"w":34.031,"h":0.854,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN1","EN":0},"TI":496,"AM":0,"x":17.147,"y":12.149,"w":26.596,"h":0.862,"TU":"Line 2. Child's SSN. Child #1. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN2","EN":0},"TI":497,"AM":0,"x":45.372,"y":12.204,"w":26.596,"h":0.862,"TU":"Line 2. Child's SSN. Child #2. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN3","EN":0},"TI":498,"AM":0,"x":73.128,"y":12.142,"w":26.596,"h":0.862,"TU":"Line 2. Child's SSN. Child #3. "},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CDOB1","EN":0},"TI":499,"AM":0,"x":25.892,"y":14.218,"w":22.733,"h":0.862,"TU":"Line 3. Child's Date of birth (MMDDYYYY). Child #1.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CDOB2","EN":0},"TI":500,"AM":0,"x":51.122,"y":14.218,"w":22.733,"h":0.862,"TU":"Line 3. Child's Date of birth (MMDDYYYY). Child #2.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CDOB3","EN":0},"TI":501,"AM":0,"x":76.407,"y":14.211,"w":22.733,"h":0.862,"TU":"Line 3. Child's Date of birth (MMDDYYYY). Child #3.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTNAM","EN":0},"TI":502,"AM":0,"x":25.047,"y":16.39,"w":34.052,"h":0.862,"TU":"Line 4. Custodian’s first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CUSTMI","EN":0},"TI":503,"AM":0,"x":60.625,"y":16.39,"w":2.764,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTLNAM","EN":0},"TI":504,"AM":0,"x":65.1,"y":16.39,"w":34.031,"h":0.862,"TU":"Last Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTADDR","EN":0},"TI":505,"AM":0,"x":26.305,"y":18.512,"w":71.528,"h":0.862,"TU":"Line 5. Custodian’s address. Number, street, and apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTCITY","EN":0},"TI":506,"AM":0,"x":25.995,"y":20.417,"w":30.958,"h":0.862,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTST","EN":0},"TI":507,"AM":0,"x":59.696,"y":20.333,"w":4.816,"h":0.953,"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":"CUSTZIP","EN":0},"TI":508,"AM":0,"x":67.926,"y":20.355,"w":28.965,"h":0.862,"TU":"Zip Code."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CUSTSSN","EN":0},"TI":509,"AM":0,"x":26.356,"y":21.95,"w":28.917,"h":0.862},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"COURT1","EN":0},"TI":510,"AM":0,"x":30.038,"y":23.537,"w":29.143,"h":0.855,"TU":"Line 7. Location of the court that ordered support payments for: Child #1.","MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"COURT3","EN":0},"TI":511,"AM":0,"x":64.564,"y":23.574,"w":29.143,"h":0.855,"TU":"Line 7. Location of the court that ordered support payments for: Child #3.","MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"COURT2","EN":0},"TI":512,"AM":0,"x":30.059,"y":24.707,"w":29.143,"h":0.855,"TU":"Line 7. Location of the court that ordered support payments for: Child #2.","MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CASE1","EN":0},"TI":513,"AM":0,"x":14.149,"y":27.265,"w":30.958,"h":0.854,"TU":"Line 8. Case or Docket number for: Child #1.","MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AGENCY1","EN":0},"TI":514,"AM":0,"x":58.81,"y":27.279,"w":36.998,"h":0.862,"TU":"Line 9. Name of government agency to which you make payments for: Child #1.","MV":"maxl:12"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CASE2","EN":0},"TI":515,"AM":0,"x":14.074,"y":28.577,"w":30.958,"h":0.862,"TU":"Line 8. Case or Docket number for: Child #2.","MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AGENCY2","EN":0},"TI":516,"AM":0,"x":58.963,"y":28.675,"w":36.998,"h":0.862,"TU":"Line 9. Name of government agency to which you make payments for: Child #2.","MV":"maxl:12"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CASE3","EN":0},"TI":517,"AM":0,"x":14.074,"y":29.912,"w":30.958,"h":0.854,"TU":"Line 8. Case or Docket number for: Child #3.","MV":"maxl:10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AGENCY3","EN":0},"TI":518,"AM":0,"x":58.643,"y":29.92,"w":36.998,"h":0.862,"TU":"Line 9. Name of government agency to which you make payments for: Child #3.","MV":"maxl:12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR1","EN":0},"TI":519,"AM":0,"x":27.006,"y":31.66,"w":71.138,"h":0.862,"TU":"Line 10. Address of the government agency for: Child #1."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":520,"AM":0,"x":27.047,"y":33.025,"w":71.063,"h":0.862,"TU":"Line 10. Address of the government agency for: Child #2."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR3","EN":0},"TI":521,"AM":0,"x":27.047,"y":34.412,"w":70.988,"h":0.862,"TU":"Line 10. Address of the government agency for: Child #3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMOUNT1","EN":0},"TI":522,"AM":0,"x":29.976,"y":36.115,"w":10.904,"h":0.884,"TU":"Line 11. Amount of court ordered payment. Child #1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMOUNT3","EN":0},"TI":523,"AM":0,"x":65.177,"y":36.088,"w":10.904,"h":0.884,"TU":"Line 11. Amount of court ordered payment. Child #3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMOUNT2","EN":0},"TI":524,"AM":0,"x":30.084,"y":37.484,"w":10.904,"h":0.884,"TU":"Line 11. Amount of court ordered payment. Child #2."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE1","EN":0},"TI":525,"AM":0,"x":26.042,"y":39.809,"w":22.733,"h":0.862,"TU":"Line 12. Date payments were ordered to start. MMDDYYYY. Child #1.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE2","EN":0},"TI":526,"AM":0,"x":51.272,"y":39.782,"w":22.733,"h":0.862,"TU":"Line 12. Date payments were ordered to start. MMDDYYYY. Child #2","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE3","EN":0},"TI":527,"AM":0,"x":76.557,"y":39.775,"w":22.733,"h":0.862,"TU":"Line 12. Date payments were ordered to start. MMDDYYYY. Child #3","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL1","EN":0},"TI":528,"AM":0,"x":40.641,"y":42.031,"w":10.904,"h":0.884,"TU":"Line 13. Total payments made during 2013. Child #1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL2","EN":0},"TI":529,"AM":0,"x":59.732,"y":42.003,"w":10.904,"h":0.884,"TU":"Line 13. Total payments made during 2013. Child #2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL3","EN":0},"TI":530,"AM":0,"x":78.653,"y":42.05,"w":10.904,"h":0.884,"TU":"Line 13. Total payments made during 2013. Child #3."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DCSCHS.content.txt b/test/data/dc/form/DCSCHS.content.txt new file mode 100755 index 00000000..d8053e5c --- /dev/null +++ b/test/data/dc/form/DCSCHS.content.txt @@ -0,0 +1,203 @@ +Government of the +District of Columbia +2013 + +SCHEDULE S Supplemental + Information and Dependents +2013 SCHEDULE S P1 +Supplemental Information and Dependents File order 3 +Revised 09/13 +Unless instructed otherwise – +Print in CAPITAL letters using black ink. +Enter your last name. Enter your social security number. +Do not enter your information +First name of qualifying non-dependent person M.I. Last Name +SSN of qualifying non-dependent person Date of Birth of qualifying non-dependent person (MMDDYYYY) +Dependents +If you have more than 8 dependents, list them on an attachment. +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +First name M.I. Last Name +Social security number Relationship Date of Birth (MMDDYYYY) +If you fill in any part of this schedule, attach it to your D-40. +Head of household filers +----------------Page (0) Break---------------- +EINs associated with Income +reported and taxed + on Franchise and Fidiciary Returns for the amount listed +on D-40, Line 10. +a +d +g +b +e +h +c +f +i +2013 SCHEDULE S P2 +Supplemental Information and Dependents File order 4 +Revised 09/13 +Last name and SSN +SCHEDULE S PAGE 2 +Calculation G Number of exemptions. + +$ +Enter separate amounts in each column. Combine amounts on line k. +a Federal adjusted gross income. a + +portion of federal adjusted gross income. Registered domestic partners +should enter the federal AGI reported on their separate federal returns. +b Total additions to federal adjusted gross income. b + +Enter each person’s portion of additions entered on D-40, Lines 4 and 5. +c +Add Lines a and b. +d Total subtractions from federal adjusted gross income. + Enter each person’s portion of subtractions entered on D-40, Line 14. +e DC adjusted gross income. +Subtract Line d from Line c. + +e + + Enter each person’s portion of the amount entered on D-40, Line 17. + (You may allocate this amount as you wish.) + Enter each person’s portion of exemption amount entered on D-40, Line 19. +h + Add Lines f and g. + +h + Subtract Line h from Line e. +i + If Line i is $100,000 or less, use tax tables. +j + If more than $100,000, use Calculation I, instructions. +k + Add the amounts on Line j, enter here and on D-40, Line 22. +k + Total tax +a Enter 1 for yourself and +a +c Enter 1 if you are age 65 or over and +c +d Enter 1 if you are blind +d +e +i Total number of exemptions +Add Lines a–h, enter here and on D-40, Line 18. +i +d +f +Fill in if loss +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +. +00 +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +Do not attach Schedule S to your D-40 if you only filled in Lines a, f and i and have not filled in any other section of Schedule S. +b Enter 1 if you are filing as a head of household and + +b + +f +g Enter 1 if you are married filing jointly or married filing separately on same return and your spouse/partner is 65 or over + +g +e Enter number of dependents +f + +Enter 1 for your spouse or registered domestic partner if filing jointly or filing separately on same return +h Enter 1 if you are married filing jointly or married filing separately on same return and your spouse/partner is blind + +h +Calculation J Tax computation for married or registered domestic partners filing separately on the same DC return. +You + +Your spouse/domestic partner +If you and your spouse filed a joint federal return, enter each person’s +f + +Deduction amount. +g + +Exemption amount. + +g +i + +Taxable income. +j + +Tax. + +c +----------------Page (1) Break---------------- diff --git a/test/data/dc/form/DCSCHS.fields.json b/test/data/dc/form/DCSCHS.fields.json new file mode 100755 index 00000000..aa57693a --- /dev/null +++ b/test/data/dc/form/DCSCHS.fields.json @@ -0,0 +1 @@ +[{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"FNAME_1_","type":"alpha","calc":false,"value":""},{"id":"MI_1_","type":"mask","calc":false,"value":""},{"id":"LNAME_1_","type":"alpha","calc":false,"value":""},{"id":"SSN_1_","type":"ssn","calc":false,"value":""},{"id":"RELATION_1_","type":"alpha","calc":false,"value":""},{"id":"DOB_1_","type":"date","calc":false,"value":""},{"id":"FNAME_2_","type":"alpha","calc":false,"value":""},{"id":"MI_2_","type":"mask","calc":false,"value":""},{"id":"LNAME_2_","type":"alpha","calc":false,"value":""},{"id":"SSN_2_","type":"ssn","calc":false,"value":""},{"id":"RELATION_2_","type":"alpha","calc":false,"value":""},{"id":"DOB_2_","type":"date","calc":false,"value":""},{"id":"FNAME_3_","type":"alpha","calc":false,"value":""},{"id":"MI_3_","type":"mask","calc":false,"value":""},{"id":"LNAME_3_","type":"alpha","calc":false,"value":""},{"id":"SSN_3_","type":"ssn","calc":false,"value":""},{"id":"RELATION_3_","type":"alpha","calc":false,"value":""},{"id":"DOB_3_","type":"date","calc":false,"value":""},{"id":"FNAME_4_","type":"alpha","calc":false,"value":""},{"id":"MI_4_","type":"mask","calc":false,"value":""},{"id":"LNAME_4_","type":"alpha","calc":false,"value":""},{"id":"SSN_4_","type":"ssn","calc":false,"value":""},{"id":"RELATION_4_","type":"alpha","calc":false,"value":""},{"id":"DOB_4_","type":"date","calc":false,"value":""},{"id":"FNAME_5_","type":"alpha","calc":false,"value":""},{"id":"MI_5_","type":"mask","calc":false,"value":""},{"id":"LNAME_5_","type":"alpha","calc":false,"value":""},{"id":"SSN_5_","type":"ssn","calc":false,"value":""},{"id":"RELATION_5_","type":"alpha","calc":false,"value":""},{"id":"DOB_5_","type":"date","calc":false,"value":""},{"id":"FNAME_6_","type":"alpha","calc":false,"value":""},{"id":"MI_6_","type":"mask","calc":false,"value":""},{"id":"LNAME_6_","type":"alpha","calc":false,"value":""},{"id":"SSN_6_","type":"ssn","calc":false,"value":""},{"id":"RELATION_6_","type":"alpha","calc":false,"value":""},{"id":"DOB_6_","type":"date","calc":false,"value":""},{"id":"FNAME_7_","type":"alpha","calc":false,"value":""},{"id":"MI_7_","type":"mask","calc":false,"value":""},{"id":"LNAME_7_","type":"alpha","calc":false,"value":""},{"id":"SSN_7_","type":"ssn","calc":false,"value":""},{"id":"RELATION_7_","type":"alpha","calc":false,"value":""},{"id":"DOB_7_","type":"date","calc":false,"value":""},{"id":"FNAME_8_","type":"alpha","calc":false,"value":""},{"id":"MI_8_","type":"mask","calc":false,"value":""},{"id":"LNAME_8_","type":"alpha","calc":false,"value":""},{"id":"SSN_8_","type":"ssn","calc":false,"value":""},{"id":"RELATION_8_","type":"alpha","calc":false,"value":""},{"id":"DOB_8_","type":"date","calc":false,"value":""},{"id":"QSSN","type":"ssn","calc":false,"value":""},{"id":"HOHDOB","type":"date","calc":false,"value":""},{"id":"QFNAME","type":"alpha","calc":false,"value":""},{"id":"QMI","type":"mask","calc":false,"value":""},{"id":"QLNAME","type":"alpha","calc":false,"value":""},{"id":"BXMINA","type":"box","calc":true,"value":""},{"id":"BXMINB","type":"box","calc":true,"value":""},{"id":"TPLNAME2","type":"alpha","calc":true,"value":""},{"id":"TPSSN2","type":"ssn","calc":true,"value":""},{"id":"TP","type":"number","calc":false,"value":""},{"id":"HH","type":"number","calc":false,"value":""},{"id":"TP65OVER","type":"number","calc":false,"value":""},{"id":"TPBLIND","type":"number","calc":false,"value":""},{"id":"DEPENDS","type":"number","calc":false,"value":""},{"id":"SP","type":"number","calc":false,"value":""},{"id":"SP65OVER","type":"number","calc":false,"value":""},{"id":"SPBLIND","type":"number","calc":false,"value":""},{"id":"EXEMPS","type":"number","calc":true,"value":""},{"id":"TPFEDAGI","type":"number","calc":false,"value":""},{"id":"SPFEDAGI","type":"number","calc":false,"value":""},{"id":"TPADDS","type":"number","calc":false,"value":""},{"id":"SPADDS","type":"number","calc":false,"value":""},{"id":"TPMODAGI","type":"number","calc":true,"value":""},{"id":"SPMODAGI","type":"number","calc":true,"value":""},{"id":"TPSUBS","type":"number","calc":false,"value":""},{"id":"SPSUBS","type":"number","calc":false,"value":""},{"id":"TPDCAGI","type":"number","calc":true,"value":""},{"id":"SPDCAGI","type":"number","calc":true,"value":""},{"id":"TPDEDUCT","type":"number","calc":false,"value":""},{"id":"SPDEDUCT","type":"number","calc":false,"value":""},{"id":"TPEXEMPT","type":"number","calc":false,"value":""},{"id":"SPEXEMPT","type":"number","calc":false,"value":""},{"id":"TPDEDEXE","type":"number","calc":true,"value":""},{"id":"SPDEDEXE","type":"number","calc":true,"value":""},{"id":"TPTAXINC","type":"number","calc":true,"value":""},{"id":"SPTAXINC","type":"number","calc":true,"value":""},{"id":"TPTAX","type":"number","calc":false,"value":""},{"id":"SPTAX","type":"number","calc":false,"value":""},{"id":"TOTTAX","type":"number","calc":true,"value":""},{"id":"EINA","type":"mask","calc":false,"value":""},{"id":"EINB","type":"mask","calc":false,"value":""},{"id":"EINC","type":"mask","calc":false,"value":""},{"id":"EIND","type":"mask","calc":false,"value":""},{"id":"EINE","type":"mask","calc":false,"value":""},{"id":"EINF","type":"mask","calc":false,"value":""},{"id":"EING","type":"mask","calc":false,"value":""},{"id":"EINH","type":"mask","calc":false,"value":""},{"id":"EINI","type":"mask","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DCSCHS.json b/test/data/dc/form/DCSCHS.json new file mode 100755 index 00000000..76f1b925 --- /dev/null +++ b/test/data/dc/form/DCSCHS.json @@ -0,0 +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":"#edf8f5","x":5.71,"y":7.049,"w":1.5,"l":92.211},{"oc":"#edf8f5","x":5.71,"y":46.352,"w":1.5,"l":92.211},{"oc":"#2b2e34","x":23.697,"y":1.83,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":23.697,"y":2.893,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":5.538,"y":8.883,"w":4.5,"l":92.555},{"oc":"#2b2e34","x":13.036,"y":4.95,"w":0.663,"l":5.106},{"oc":"#d1efe7","x":17.741,"y":7.315,"w":1.5,"l":29.03},{"oc":"#d1efe7","x":17.741,"y":8.643,"w":1.5,"l":29.03},{"oc":"#d1efe7","x":66.098,"y":7.321,"w":1.5,"l":29.03},{"oc":"#d1efe7","x":66.098,"y":8.649,"w":1.5,"l":29.03},{"oc":"#2b2e34","x":5.263,"y":42.155,"w":4.5,"l":92.151},{"oc":"#d1efe7","x":6.123,"y":45.083,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.123,"y":46.18,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.208,"y":45.077,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.208,"y":46.13,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.555,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.555,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.15,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.15,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.745,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.745,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.341,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.341,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.936,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.936,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.531,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.531,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.126,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.126,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.722,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.722,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.317,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.317,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.912,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.912,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.508,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.508,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.223,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.223,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.819,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.819,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.414,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.414,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.367,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.367,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.2,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.2,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.795,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.795,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.391,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.391,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.986,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.986,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.581,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.581,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.176,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.176,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.772,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.772,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.367,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.367,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.962,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.962,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.558,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.558,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.722,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.722,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.317,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.317,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.904,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":86.904,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.508,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.508,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.103,"y":45.077,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.103,"y":46.14,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.23,"y":45.071,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.23,"y":46.133,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.937,"y":45.102,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":78.937,"y":46.165,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.556,"y":43.187,"w":1.5,"l":24.681},{"oc":"#d1efe7","x":24.556,"y":44.237,"w":1.5,"l":24.681},{"oc":"#d1efe7","x":24.642,"y":43.18,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":24.642,"y":44.233,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":26.988,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.988,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.583,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.583,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.909,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.909,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.505,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.505,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.727,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.727,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.323,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.323,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.918,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.918,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.513,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.513,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.43,"y":43.19,"w":1.5,"l":21.062},{"oc":"#d1efe7","x":50.43,"y":44.286,"w":1.5,"l":21.062},{"oc":"#d1efe7","x":50.552,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.552,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.148,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.148,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.743,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.743,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.338,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.338,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.933,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.933,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.529,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.529,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.124,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":66.124,"y":44.243,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.719,"y":43.18,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.719,"y":44.243,"w":1.5,"l":2.552},{"oc":"#2b2e34","x":5.414,"y":9.778,"w":0.7484999999999999,"l":9.668},{"oc":"#2b2e34","x":15.082,"y":9.768,"w":0.624,"l":38.879},{"oc":"#d1efe7","x":6.239,"y":11.169,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":12.266,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":11.175,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":12.228,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":11.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":12.237,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":11.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":12.231,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":12.981,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":14.031,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":12.975,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":14.028,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":12.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":14.038,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":12.969,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":14.022,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":12.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":14.031,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":13.006,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":14.059,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":13.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":14.069,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":13.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":14.069,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":13.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":14.069,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":13.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":14.069,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":13.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":14.069,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":13.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":14.069,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":13.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":14.069,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":15.106,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":16.203,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":15.112,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":16.166,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":15.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":16.175,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":15.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":16.169,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":16.919,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":17.969,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":16.913,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":17.966,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":16.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":17.975,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":16.906,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":17.959,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":16.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":17.969,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":16.944,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":17.997,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":16.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":18.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":16.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":18.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":16.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":18.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":16.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":18.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":16.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":18.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":16.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":18.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":16.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":18.006,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":19.044,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":20.141,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":19.05,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":20.103,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":19.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":20.112,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":19.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":20.106,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":20.856,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":21.906,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":20.85,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":21.903,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":20.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":21.913,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":20.844,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":21.897,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":20.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":21.906,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":20.881,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":21.934,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":20.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":21.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":20.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":21.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":20.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":21.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":20.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":21.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":20.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":21.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":20.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":21.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":20.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":21.944,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":22.981,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":24.078,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":22.988,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":24.041,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":22.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":24.05,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":22.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":24.044,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":24.794,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":25.844,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":24.788,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":25.841,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":24.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":25.85,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":24.781,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":25.834,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":24.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":25.844,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":24.819,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":25.872,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":24.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":25.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":24.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":25.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":24.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":25.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":24.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":25.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":24.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":25.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":24.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":25.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":24.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":25.881,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":26.919,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":28.016,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":26.925,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":27.978,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":26.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":27.988,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":26.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":27.981,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":28.731,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":29.781,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":28.725,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":29.778,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":28.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":29.788,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":28.719,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":29.772,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":28.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":29.781,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":28.756,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":29.809,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":28.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":29.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":28.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":29.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":28.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":29.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":28.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":29.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":28.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":29.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":28.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":29.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":28.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":29.819,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":30.856,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":31.953,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":30.863,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":31.916,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":30.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":31.925,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":30.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":31.919,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":32.669,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":33.719,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":32.663,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":33.716,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":32.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":33.725,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":32.656,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":33.709,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":32.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":33.719,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":32.694,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":33.747,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":32.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":33.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":32.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":33.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":32.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":33.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":32.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":33.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":32.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":33.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":32.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":33.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":32.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":33.756,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":34.794,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":35.891,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":34.8,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":35.853,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":34.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":35.863,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":34.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":35.856,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":36.606,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":37.656,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":36.6,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":37.653,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":36.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":37.663,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":36.594,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":37.647,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":36.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":37.656,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":36.631,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":37.684,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":36.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":37.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":36.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":37.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":36.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":37.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":36.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":37.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":36.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":37.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":36.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":37.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":36.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":37.694,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":38.731,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.239,"y":39.828,"w":1.5,"l":88.773},{"oc":"#d1efe7","x":6.325,"y":38.738,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":39.791,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":13.862,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.457,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":19.052,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.648,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.243,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.838,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.434,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":32.029,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":34.624,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.34,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.935,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":42.53,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":38.738,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.484,"y":39.8,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":50.316,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.912,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":55.507,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.102,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":60.698,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":63.293,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.888,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.484,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.079,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":73.674,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":81.838,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.434,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.02,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":89.624,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":92.22,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.347,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":38.731,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.054,"y":39.794,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":6.239,"y":40.544,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.239,"y":41.594,"w":1.5,"l":83.909},{"oc":"#d1efe7","x":6.325,"y":40.538,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":6.325,"y":41.591,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.671,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":8.671,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":11.266,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":14.592,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":17.188,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.41,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.005,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.601,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":40.538,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.196,"y":41.6,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.206,"y":40.531,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":33.206,"y":41.584,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":35.552,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":35.552,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":38.148,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.743,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":43.338,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":45.934,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":48.529,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.124,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":53.72,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":56.315,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":58.91,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":61.505,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":40.531,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.221,"y":41.594,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":69.455,"y":40.569,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":69.455,"y":41.622,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":71.801,"y":40.569,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.801,"y":41.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":40.569,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.396,"y":41.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":40.569,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.991,"y":41.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":40.569,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.587,"y":41.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":40.569,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.182,"y":41.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":40.569,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.777,"y":41.631,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":40.569,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.373,"y":41.631,"w":1.5,"l":2.552},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#edf8f5","x":5.71,"y":7.049,"w":1.5,"l":39.303},{"oc":"#edf8f5","x":97.921,"y":7.049,"w":1.5,"l":39.303},{"oc":"#2b2e34","x":23.697,"y":1.83,"w":1.5,"l":1.063},{"oc":"#2b2e34","x":29.807,"y":1.83,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.741,"y":7.315,"w":1.5,"l":1.328},{"oc":"#d1efe7","x":46.771,"y":7.315,"w":1.5,"l":1.328},{"oc":"#d1efe7","x":66.098,"y":7.321,"w":1.5,"l":1.328},{"oc":"#d1efe7","x":95.128,"y":7.321,"w":1.5,"l":1.328},{"oc":"#d1efe7","x":6.123,"y":45.083,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":94.896,"y":45.083,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.208,"y":45.077,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.512,"y":45.077,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.555,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.107,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.15,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.702,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.745,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.298,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.341,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.893,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.936,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.488,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.531,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.083,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.126,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.679,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.722,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.274,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.317,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.869,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.912,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.465,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.508,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.06,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.223,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.776,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.819,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.371,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.414,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.966,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.367,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.919,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.2,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.752,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.795,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.348,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.391,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.943,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.986,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.538,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.581,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.133,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.176,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.729,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.772,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.324,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.367,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.919,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.962,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.515,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.558,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.11,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.722,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.274,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.317,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.869,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.904,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.456,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.508,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.06,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.103,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.655,"y":45.077,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.23,"y":45.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.783,"y":45.071,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.937,"y":45.102,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.49,"y":45.102,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.556,"y":43.187,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":49.237,"y":43.187,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":24.642,"y":43.18,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":26.945,"y":43.18,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":26.988,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.541,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.583,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.136,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.909,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.462,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":35.505,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.057,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.727,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.28,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.323,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.875,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.918,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.47,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.513,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.066,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.43,"y":43.19,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":71.492,"y":43.19,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":50.552,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.105,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.148,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.7,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.743,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.295,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.338,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.891,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.933,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.486,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.529,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.081,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.124,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.676,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.719,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.272,"y":43.18,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":11.169,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":11.169,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":11.175,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":11.175,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":11.175,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":11.169,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":12.981,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":12.981,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":12.975,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":12.975,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":12.975,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":12.969,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":12.969,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":12.969,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":13.006,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":13.006,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":13.006,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":15.106,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":15.106,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":15.112,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":15.112,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":15.112,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":15.106,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":16.919,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":16.919,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":16.913,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":16.913,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":16.913,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":16.906,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":16.906,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":16.906,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":16.944,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":16.944,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":16.944,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":19.044,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":19.044,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":19.05,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":19.05,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":19.05,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":19.044,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":20.856,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":20.856,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":20.85,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":20.85,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":20.85,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":20.844,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":20.844,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":20.844,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":20.881,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":20.881,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":20.881,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":22.981,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":22.981,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":22.988,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":22.988,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":22.988,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":22.981,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":24.794,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":24.794,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":24.788,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":24.788,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":24.788,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":24.781,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":24.781,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":24.781,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":24.819,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":24.819,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":24.819,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":26.919,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":26.919,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":26.925,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":26.925,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":26.925,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":26.919,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":28.731,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":28.731,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":28.725,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":28.725,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":28.725,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":28.719,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":28.719,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":28.719,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":28.756,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":28.756,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":28.756,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":30.856,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":30.856,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":30.863,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":30.863,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":30.863,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":30.856,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":32.669,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":32.669,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":32.663,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":32.663,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":32.663,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":32.656,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":32.656,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":32.656,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":32.694,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":32.694,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":32.694,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":34.794,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":34.794,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":34.8,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":34.8,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":34.8,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":34.794,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":36.606,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":36.606,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":36.6,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":36.6,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":36.6,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":36.594,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":36.594,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":36.594,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":36.631,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":36.631,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":36.631,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":38.731,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":95.013,"y":38.731,"w":1.5,"l":1.097},{"oc":"#d1efe7","x":6.325,"y":38.738,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":38.738,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.862,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.414,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.457,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.009,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.052,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.605,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.648,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.2,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.243,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.795,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.838,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.391,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.434,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.986,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":32.029,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.581,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.624,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.177,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.34,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.892,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.935,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.488,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":42.53,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.083,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.484,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.036,"y":38.738,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":50.316,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.869,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.912,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.464,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":55.507,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.059,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.102,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.655,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":60.698,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.25,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":63.293,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.845,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.888,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.441,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.484,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.036,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.079,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.631,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":73.674,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.227,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.838,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.391,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.434,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":86.986,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.02,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.573,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.624,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.177,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":92.22,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":94.772,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.347,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.899,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.054,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":81.606,"y":38.731,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":6.239,"y":40.544,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":90.148,"y":40.544,"w":1.5,"l":1.05},{"oc":"#d1efe7","x":6.325,"y":40.538,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.628,"y":40.538,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.671,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.223,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":11.266,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":13.819,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":14.592,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.145,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":17.188,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":19.74,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.41,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":22.963,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.005,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.558,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.601,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.153,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.196,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":30.748,"y":40.538,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.206,"y":40.531,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.509,"y":40.531,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":35.552,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.105,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.148,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.7,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.743,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.295,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.338,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.891,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":45.934,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.486,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":48.529,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.081,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.124,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.677,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":53.72,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.272,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":56.315,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.867,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":58.91,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.462,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":61.505,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.058,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.221,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":66.773,"y":40.531,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":69.455,"y":40.569,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.758,"y":40.569,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":71.801,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.353,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.396,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.948,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.991,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.544,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.587,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.139,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.182,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.734,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.777,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.33,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.373,"y":40.569,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.925,"y":40.569,"w":1.5,"l":1.063},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e8f7f3","x":5.71,"y":7.049,"w":92.211,"h":39.303,"clr":-1},{"oc":"#2b2e34","x":23.697,"y":1.83,"w":6.11,"h":1.063,"clr":-1},{"x":17.741,"y":7.315,"w":29.03,"h":1.328,"clr":1},{"x":66.098,"y":7.321,"w":29.03,"h":1.328,"clr":1},{"oc":"#d1efe7","x":6.123,"y":45.083,"w":88.773,"h":1.097,"clr":-1},{"x":6.208,"y":45.077,"w":2.303,"h":1.053,"clr":1},{"x":8.555,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":11.15,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":13.745,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":16.341,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":18.936,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":21.531,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":24.126,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":26.722,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":29.317,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":31.912,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":34.508,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":37.223,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":39.819,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":42.414,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":46.367,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":50.2,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":52.795,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":55.391,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":57.986,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":60.581,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":63.176,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":65.772,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":68.367,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":70.962,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":73.558,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":81.722,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":84.317,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":86.904,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":89.508,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":92.103,"y":45.077,"w":2.552,"h":1.063,"clr":1},{"x":76.23,"y":45.071,"w":2.552,"h":1.063,"clr":1},{"x":78.937,"y":45.102,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":24.556,"y":43.187,"w":24.681,"h":1.05,"clr":-1},{"x":24.642,"y":43.18,"w":2.303,"h":1.053,"clr":1},{"x":26.988,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":29.583,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":32.909,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":35.505,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":38.727,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":41.323,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":43.918,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":46.513,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":50.43,"y":43.19,"w":21.062,"h":1.097,"clr":-1},{"x":50.552,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":53.148,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":55.743,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":58.338,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":60.933,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":63.529,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":66.124,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"x":68.719,"y":43.18,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":11.169,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":11.175,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":11.175,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":52.912,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":55.507,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":58.102,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":60.698,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":63.293,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":65.888,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":68.484,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":71.079,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":73.674,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":81.838,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":84.434,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":89.624,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":92.22,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":76.347,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":11.169,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":12.981,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":12.975,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":12.975,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":12.969,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":12.969,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":13.006,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":13.006,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":13.006,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":13.006,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":13.006,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":13.006,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":13.006,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":13.006,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":15.106,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":15.112,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":15.112,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":52.912,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":55.507,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":58.102,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":60.698,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":63.293,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":65.888,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":68.484,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":71.079,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":73.674,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":81.838,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":84.434,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":89.624,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":92.22,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":76.347,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":15.106,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":16.919,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":16.913,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":16.913,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":16.906,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":16.906,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":16.944,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":16.944,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":16.944,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":16.944,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":16.944,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":16.944,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":16.944,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":16.944,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":19.044,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":19.05,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":19.05,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":52.912,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":55.507,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":58.102,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":60.698,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":63.293,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":65.888,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":68.484,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":71.079,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":73.674,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":81.838,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":84.434,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":87.02,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":89.624,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":92.22,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":76.347,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"x":79.054,"y":19.044,"w":2.552,"h":1.062,"clr":1},{"oc":"#d1efe7","x":6.239,"y":20.856,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":20.85,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":20.85,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":20.844,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":20.844,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":20.881,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":20.881,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":20.881,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":20.881,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":20.881,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":20.881,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":20.881,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":20.881,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":22.981,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":22.987,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":22.988,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":52.912,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":55.507,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":58.102,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":60.698,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":63.293,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":65.888,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":68.484,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":71.079,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":73.674,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":81.838,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":84.434,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":89.624,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":92.22,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":76.347,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":22.981,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":24.794,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":24.787,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":24.788,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":24.781,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":24.781,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":24.819,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":24.819,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":24.819,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":24.819,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":24.819,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":24.819,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":24.819,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":24.819,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":26.919,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":26.925,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":26.925,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":52.912,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":55.507,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":58.102,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":60.698,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":63.293,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":65.888,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":68.484,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":71.079,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":73.674,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":81.838,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":84.434,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":89.624,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":92.22,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":76.347,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":26.919,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":28.731,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":28.725,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":28.725,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":28.719,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":28.719,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":28.756,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":28.756,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":28.756,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":28.756,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":28.756,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":28.756,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":28.756,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":28.756,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":30.856,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":30.862,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":30.863,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":52.912,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":55.507,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":58.102,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":60.698,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":63.293,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":65.888,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":68.484,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":71.079,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":73.674,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":81.838,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":84.434,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":89.624,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":92.22,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":76.347,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":30.856,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":32.669,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":32.663,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":32.663,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":32.656,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":32.656,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":32.694,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":32.694,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":32.694,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":32.694,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":32.694,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":32.694,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":32.694,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":32.694,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":34.794,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":34.8,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":34.8,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":52.912,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":55.507,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":58.102,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":60.698,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":63.293,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":65.888,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":68.484,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":71.079,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":73.674,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":81.838,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":84.434,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":89.624,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":92.22,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":76.347,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":34.794,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":36.606,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":36.6,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":36.6,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":36.594,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":36.594,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":36.631,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":36.631,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":36.631,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":36.631,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":36.631,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":36.631,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":36.631,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":36.631,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":38.731,"w":88.773,"h":1.097,"clr":-1},{"x":6.325,"y":38.738,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":13.862,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":16.457,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":19.052,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":21.648,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":24.243,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":26.838,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":29.434,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":32.029,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":34.624,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":37.34,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":39.935,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":42.53,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":46.484,"y":38.738,"w":2.552,"h":1.063,"clr":1},{"x":50.316,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":52.912,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":55.507,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":58.102,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":60.698,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":63.293,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":65.888,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":68.484,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":71.079,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":73.674,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":81.838,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":84.434,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":87.02,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":89.624,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":92.22,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":76.347,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"x":79.054,"y":38.731,"w":2.552,"h":1.063,"clr":1},{"oc":"#d1efe7","x":6.239,"y":40.544,"w":83.909,"h":1.05,"clr":-1},{"x":6.325,"y":40.538,"w":2.303,"h":1.053,"clr":1},{"x":8.671,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":11.266,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":14.592,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":17.188,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":20.41,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":23.005,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":25.601,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":28.196,"y":40.538,"w":2.552,"h":1.063,"clr":1},{"x":33.206,"y":40.531,"w":2.303,"h":1.053,"clr":1},{"x":35.552,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":38.148,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":40.743,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":43.338,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":45.934,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":48.529,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":51.124,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":53.72,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":56.315,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":58.91,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":61.505,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":64.221,"y":40.531,"w":2.552,"h":1.063,"clr":1},{"x":69.455,"y":40.569,"w":2.303,"h":1.053,"clr":1},{"x":71.801,"y":40.569,"w":2.552,"h":1.063,"clr":1},{"x":74.396,"y":40.569,"w":2.552,"h":1.063,"clr":1},{"x":76.991,"y":40.569,"w":2.552,"h":1.063,"clr":1},{"x":79.587,"y":40.569,"w":2.552,"h":1.063,"clr":1},{"x":82.182,"y":40.569,"w":2.552,"h":1.063,"clr":1},{"x":84.777,"y":40.569,"w":2.552,"h":1.063,"clr":1},{"x":87.373,"y":40.569,"w":2.552,"h":1.063,"clr":1}],"Texts":[{"oc":"#2b2e34","x":10.762,"y":1.6280000000000001,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.762,"y":2.153,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":24.057,"y":1.8980000000000001,"w":2.424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":30.931,"y":1.8980000000000001,"w":6.093,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20S%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":44.167,"y":1.8980000000000001,"w":5.812,"clr":-1,"A":"left","R":[{"T":"Supplemental","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":24.057,"y":2.798,"w":15.358,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20Information%20and%20Dependents","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":41.511,"y":46.414,"w":10.608,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20S%20%20%20P1","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":41.511,"y":47.164,"w":18.461000000000002,"clr":-1,"A":"left","R":[{"T":"Supplemental%20Information%20and%20Dependents%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":79.796,"y":47.164,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%203","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":14.234,"y":46.11,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":5.408,"y":3.5119999999999996,"w":12.787,"clr":-1,"A":"left","R":[{"T":"Unless%20instructed%20otherwise%20%E2%80%93%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":5.408,"y":4.787,"w":17.02,"clr":-1,"A":"left","R":[{"T":"Print%20in%20CAPITAL%20letters%20using%20black%20ink.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":5.907,"y":7.7829999999999995,"w":9.513000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20last%20name.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":47.672,"y":7.7829999999999995,"w":14.707,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20social%20security%20number.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.001,"y":42.68,"w":12.495000000000001,"clr":-1,"A":"left","R":[{"T":"Do%20not%20enter%20your%20information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.127,"y":44.134,"w":20.032,"clr":-1,"A":"left","R":[{"T":"First%20name%20of%20qualifying%20non-dependent%20person%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.573,"y":44.134,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.214,"y":44.134,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":25.088,"y":42.016,"w":47.51199999999998,"clr":-1,"A":"left","R":[{"T":"SSN%20of%20qualifying%20non-dependent%20person%20%20%20%20%20%20%20%20%20%20%20%20Date%20of%20Birth%20of%20qualifying%20non-dependent%20person%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.164,"y":8.971,"w":5.314,"clr":-1,"A":"left","R":[{"T":"Dependents%20","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":14.832,"y":8.971,"w":28.25699999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%208%20dependents%2C%20list%20them%20on%20an%20attachment.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":10.232,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":10.232,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":10.232,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":12.051,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":12.051,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":12.051,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":14.17,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":14.17,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":14.17,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":15.989,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":15.989,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":15.989,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":18.107,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":18.107,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":18.107,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":19.926,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":19.926,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":19.926,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":22.045,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":22.045,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":22.045,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":23.864,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":23.864,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":23.864,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":25.982,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":25.982,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":25.982,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":27.801,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":27.801,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":27.801,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":29.92,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":29.92,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":29.92,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":31.738999999999997,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":31.738999999999997,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":31.738999999999997,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":33.857,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":33.857,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":33.857,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":35.676,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":35.676,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":35.676,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.041,"y":37.795,"w":4.803,"clr":-1,"A":"left","R":[{"T":"First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.282,"y":37.795,"w":2.026,"clr":-1,"A":"left","R":[{"T":"M.I.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.149,"y":37.795,"w":4.598,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.032,"y":39.614,"w":9.937000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.188,"y":39.614,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.305,"y":39.614,"w":11.607,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(MMDDYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.408,"y":4.149,"w":25.951999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20fill%20in%20any%20part%20of%20this%20schedule%2C%20attach%20it%20to%20your%20D-40.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":6.001,"y":42.08,"w":10.280999999999999,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household%20filers","S":-1,"TS":[0,12.6,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":531,"AM":1024,"x":17.704,"y":7.488,"w":28.992,"h":1.079},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":532,"AM":1024,"x":66.218,"y":7.379,"w":28.767,"h":1.243},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_1_","EN":0},"TI":533,"AM":0,"x":6.373,"y":11.303,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_1_","EN":0},"TI":534,"AM":0,"x":46.595,"y":11.336,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_1_","EN":0},"TI":535,"AM":0,"x":50.526,"y":11.309,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_1_","EN":0},"TI":536,"AM":0,"x":6.303,"y":13.119,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_1_","EN":0},"TI":537,"AM":0,"x":33.111,"y":13.055,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_1_","EN":0},"TI":538,"AM":0,"x":69.496,"y":13.154,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_2_","EN":0},"TI":539,"AM":0,"x":6.241,"y":15.249,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_2_","EN":0},"TI":540,"AM":0,"x":46.528,"y":15.258,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_2_","EN":0},"TI":541,"AM":0,"x":50.458,"y":15.231,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_2_","EN":0},"TI":542,"AM":0,"x":6.299,"y":17.018,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_2_","EN":0},"TI":543,"AM":0,"x":33.043,"y":16.977,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_2_","EN":0},"TI":544,"AM":0,"x":69.428,"y":17.076,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_3_","EN":0},"TI":545,"AM":0,"x":6.296,"y":19.216,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_3_","EN":0},"TI":546,"AM":0,"x":46.582,"y":19.198,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_3_","EN":0},"TI":547,"AM":0,"x":50.513,"y":19.198,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_3_","EN":0},"TI":548,"AM":0,"x":6.29,"y":21.009,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_3_","EN":0},"TI":549,"AM":0,"x":33.098,"y":20.945,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_3_","EN":0},"TI":550,"AM":0,"x":69.483,"y":21.044,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_4_","EN":0},"TI":551,"AM":0,"x":6.253,"y":23.129,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_4_","EN":0},"TI":552,"AM":0,"x":46.615,"y":23.139,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_4_","EN":0},"TI":553,"AM":0,"x":50.471,"y":23.111,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_4_","EN":0},"TI":554,"AM":0,"x":6.247,"y":24.922,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_4_","EN":0},"TI":555,"AM":0,"x":33.12,"y":24.835,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_4_","EN":0},"TI":556,"AM":0,"x":69.441,"y":24.957,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_5_","EN":0},"TI":557,"AM":0,"x":6.255,"y":27.097,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_5_","EN":0},"TI":558,"AM":0,"x":46.67,"y":27.083,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_5_","EN":0},"TI":559,"AM":0,"x":50.473,"y":27.079,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_5_","EN":0},"TI":560,"AM":0,"x":6.249,"y":28.89,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_5_","EN":0},"TI":561,"AM":0,"x":33.058,"y":28.825,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_5_","EN":0},"TI":562,"AM":0,"x":69.443,"y":28.924,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_6_","EN":0},"TI":563,"AM":0,"x":6.316,"y":31.039,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_6_","EN":0},"TI":564,"AM":0,"x":46.603,"y":31.048,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_6_","EN":0},"TI":565,"AM":0,"x":50.533,"y":31.021,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_6_","EN":0},"TI":566,"AM":0,"x":6.374,"y":32.832,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_6_","EN":0},"TI":567,"AM":0,"x":33.182,"y":32.768,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_6_","EN":0},"TI":568,"AM":0,"x":69.503,"y":32.866,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_7_","EN":0},"TI":569,"AM":0,"x":6.241,"y":34.945,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_7_","EN":0},"TI":570,"AM":0,"x":46.528,"y":34.955,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_7_","EN":0},"TI":571,"AM":0,"x":50.458,"y":34.928,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_7_","EN":0},"TI":572,"AM":0,"x":6.235,"y":36.739,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_7_","EN":0},"TI":573,"AM":0,"x":33.043,"y":36.674,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_7_","EN":0},"TI":574,"AM":0,"x":69.428,"y":36.773,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME_8_","EN":0},"TI":575,"AM":0,"x":6.37,"y":38.913,"w":38.673,"h":0.943,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI_8_","EN":0},"TI":576,"AM":0,"x":46.657,"y":38.923,"w":2.369,"h":0.862,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME_8_","EN":0},"TI":577,"AM":0,"x":50.588,"y":38.895,"w":44.159,"h":0.916,"TU":"Last Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_8_","EN":0},"TI":578,"AM":0,"x":6.364,"y":40.706,"w":24.201,"h":0.862,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELATION_8_","EN":0},"TI":579,"AM":0,"x":33.173,"y":40.642,"w":33.432,"h":0.998,"TU":"Relationship."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOB_8_","EN":0},"TI":580,"AM":0,"x":69.558,"y":40.741,"w":20.487,"h":0.862,"TU":"Date of Birth. MMDDYYYY.","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QSSN","EN":0},"TI":581,"AM":0,"x":24.68,"y":43.321,"w":24.201,"h":0.862,"TU":"SSN of qualifying non-dependent person."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"HOHDOB","EN":0},"TI":582,"AM":0,"x":50.664,"y":43.329,"w":20.487,"h":0.862,"TU":"Date of Birth of qualifying non-dependent person (MMDDYYYY)","MV":"MMDDYYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QFNAME","EN":0},"TI":583,"AM":0,"x":6.346,"y":45.207,"w":38.224,"h":0.862,"TU":"First name of qualifying non-dependent person."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"QMI","EN":0},"TI":584,"AM":0,"x":46.566,"y":45.176,"w":2.369,"h":0.862,"TU":"Middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QLNAME","EN":0},"TI":585,"AM":0,"x":50.497,"y":45.234,"w":44.009,"h":0.862,"TU":"Last Name."}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#edf8f5","x":7.115,"y":43.643,"w":1.5,"l":91.438},{"oc":"#edf8f5","x":7.115,"y":4.825,"w":1.5,"l":91.438},{"oc":"#d1efe7","x":62.976,"y":35.084,"w":4.5,"l":5.7},{"oc":"#d1efe7","x":62.976,"y":33.994,"w":4.5,"l":5.7},{"oc":"#2b2e34","x":7.279,"y":35.065,"w":4.5,"l":91.016},{"oc":"#d1efe7","x":10.165,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.165,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.76,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.76,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.387,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.387,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.982,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.982,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.577,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.577,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.172,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.172,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.768,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.768,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.38,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.38,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.976,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.976,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.165,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.165,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.76,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.76,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.387,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.387,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.982,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.982,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.577,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.577,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.172,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.172,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.768,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.768,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.38,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.38,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.976,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.976,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.165,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.165,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.76,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.76,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.387,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":16.387,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.982,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.982,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.577,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":21.577,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.172,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":24.172,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.768,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":26.768,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.38,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":29.38,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.976,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.976,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.985,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.985,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.58,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.58,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.207,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.207,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.802,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.802,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.398,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.398,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.993,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.993,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.588,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.588,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.201,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.201,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.796,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.796,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.985,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.985,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.58,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.58,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.207,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.207,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.802,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.802,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.398,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.398,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.993,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.993,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.588,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.588,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.201,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.201,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.796,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.796,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.985,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":37.985,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.58,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":40.58,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.207,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.207,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.802,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.802,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.398,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.398,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.993,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":51.993,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.588,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.588,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.201,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.201,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.796,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.796,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.441,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.441,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.037,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.037,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.663,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.663,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.259,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.259,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.854,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.854,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.449,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.449,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.045,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.045,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.657,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.657,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.252,"y":38.468,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.252,"y":37.405,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.441,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.441,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.037,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.037,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.663,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.663,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.259,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.259,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.854,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.854,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.449,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.449,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.045,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.045,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.657,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.657,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.252,"y":40.493,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.252,"y":39.43,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.441,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":65.441,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.037,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":68.037,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.663,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":71.663,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.259,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":74.259,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.854,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":76.854,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.449,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":79.449,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.045,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":82.045,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.657,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":84.657,"y":41.455,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.252,"y":42.518,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":87.252,"y":41.455,"w":1.5,"l":2.552},{"oc":"#edf8f5","x":7.115,"y":4.953,"w":1.5,"l":91.438},{"oc":"#edf8f5","x":7.115,"y":35.202,"w":1.5,"l":91.438},{"oc":"#d1efe7","x":17.858,"y":3.206,"w":1.5,"l":39.877},{"oc":"#d1efe7","x":17.858,"y":4.234,"w":1.5,"l":39.877},{"oc":"#d1efe7","x":7.442,"y":17.143,"w":4.5,"l":90.655},{"oc":"#d1efe7","x":7.442,"y":17.94,"w":4.5,"l":90.655},{"clr":1,"x":7.081,"y":19.034,"w":1.5,"l":49.792},{"clr":1,"x":7.176,"y":22.081,"w":1.5,"l":49.792},{"clr":1,"x":7.399,"y":23.637,"w":1.5,"l":49.569},{"clr":1,"x":7.347,"y":24.474,"w":1.5,"l":49.62},{"clr":1,"x":7.347,"y":26.084,"w":1.5,"l":49.526},{"clr":1,"x":7.347,"y":26.906,"w":1.5,"l":49.526},{"clr":1,"x":7.227,"y":29.187,"w":1.5,"l":49.844},{"oc":"#d1efe7","x":7.923,"y":5.015,"w":4.5,"l":90.028},{"oc":"#d1efe7","x":7.923,"y":5.612,"w":4.5,"l":90.028},{"oc":"#2b2e34","x":7.081,"y":4.906,"w":4.5,"l":91.042},{"clr":1,"x":7.081,"y":7.552,"w":1.5,"l":83.145},{"clr":1,"x":7.081,"y":8.678,"w":1.5,"l":83.145},{"clr":1,"x":7.081,"y":9.803,"w":1.5,"l":83.145},{"clr":1,"x":7.081,"y":10.928,"w":1.5,"l":83.145},{"clr":1,"x":7.081,"y":12.053,"w":1.5,"l":83.145},{"oc":"#d1efe7","x":54.117,"y":18.861,"w":4.5,"l":44.744},{"oc":"#d1efe7","x":54.117,"y":33.609,"w":4.5,"l":44.744},{"clr":1,"x":7.081,"y":13.178,"w":1.5,"l":83.145},{"clr":1,"x":7.081,"y":14.303,"w":1.5,"l":83.145},{"clr":1,"x":7.081,"y":15.428,"w":1.5,"l":83.145},{"clr":1,"x":93.053,"y":15.934,"w":4.5,"l":3.352},{"clr":1,"x":93.053,"y":16.624,"w":4.5,"l":3.352},{"clr":1,"x":7.038,"y":30.715,"w":1.5,"l":46.865},{"clr":1,"x":6.961,"y":31.581,"w":1.5,"l":46.823},{"clr":1,"x":6.995,"y":32.462,"w":1.5,"l":46.908},{"clr":1,"x":58.008,"y":19.124,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":19.849,"w":4.5,"l":14.438},{"clr":1,"x":80.695,"y":19.165,"w":4.5,"l":14.719},{"clr":1,"x":80.695,"y":19.89,"w":4.5,"l":14.719},{"clr":1,"x":58.008,"y":22.078,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":22.802,"w":4.5,"l":14.438},{"clr":1,"x":80.414,"y":22.078,"w":4.5,"l":14.977},{"clr":1,"x":80.414,"y":22.802,"w":4.5,"l":14.977},{"clr":1,"x":58.008,"y":23.562,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":24.287,"w":4.5,"l":14.438},{"clr":1,"x":80.414,"y":23.562,"w":4.5,"l":14.848},{"clr":1,"x":80.414,"y":24.287,"w":4.5,"l":14.848},{"clr":1,"x":58.008,"y":24.687,"w":4.5,"l":14.297},{"clr":1,"x":58.008,"y":25.412,"w":4.5,"l":14.297},{"clr":1,"x":80.414,"y":24.687,"w":4.5,"l":14.977},{"clr":1,"x":80.414,"y":25.412,"w":4.5,"l":14.977},{"clr":1,"x":58.008,"y":25.993,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":26.718,"w":4.5,"l":14.438},{"clr":1,"x":80.414,"y":25.993,"w":4.5,"l":14.977},{"clr":1,"x":80.414,"y":26.718,"w":4.5,"l":14.977},{"clr":1,"x":58.008,"y":27.027,"w":4.5,"l":14.297},{"clr":1,"x":58.008,"y":27.752,"w":4.5,"l":14.297},{"clr":1,"x":80.414,"y":27.027,"w":4.5,"l":14.977},{"clr":1,"x":80.414,"y":27.752,"w":4.5,"l":14.977},{"clr":1,"x":58.008,"y":29.293,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":30.018,"w":4.5,"l":14.438},{"clr":1,"x":80.414,"y":29.293,"w":4.5,"l":14.977},{"clr":1,"x":80.414,"y":30.018,"w":4.5,"l":14.977},{"clr":1,"x":58.008,"y":30.743,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":31.468,"w":4.5,"l":14.438},{"oc":"#d1efe7","x":62.977,"y":34.06,"w":4.5,"l":5.7},{"oc":"#d1efe7","x":62.977,"y":35.151,"w":4.5,"l":5.7},{"clr":1,"x":80.414,"y":30.743,"w":4.5,"l":14.848},{"clr":1,"x":80.414,"y":31.468,"w":4.5,"l":14.848},{"clr":1,"x":58.008,"y":31.777,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":32.502,"w":4.5,"l":14.438},{"clr":1,"x":80.414,"y":31.777,"w":4.5,"l":14.977},{"clr":1,"x":80.414,"y":32.502,"w":4.5,"l":14.977},{"clr":1,"x":58.008,"y":32.815,"w":4.5,"l":14.438},{"clr":1,"x":58.008,"y":33.54,"w":4.5,"l":14.438},{"clr":1,"x":80.414,"y":32.815,"w":4.5,"l":14.977},{"clr":1,"x":80.414,"y":33.54,"w":4.5,"l":14.977},{"clr":1,"x":68.99,"y":33.928,"w":4.5,"l":18.786},{"clr":1,"x":68.99,"y":34.652,"w":4.5,"l":18.786},{"oc":"#2b2e34","x":7.279,"y":35.131,"w":4.5,"l":91.016},{"oc":"#d1efe7","x":90.165,"y":6.703,"w":4.5,"l":7.923},{"oc":"#d1efe7","x":90.165,"y":16.771,"w":4.5,"l":7.923},{"clr":1,"x":93.302,"y":6.746,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":7.437,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":7.809,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":8.499,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":8.934,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":9.624,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":10.059,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":10.749,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":11.184,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":11.874,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":12.309,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":12.999,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":13.434,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":14.124,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":14.559,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":15.249,"w":4.5,"l":3.352},{"oc":"#2b2e34","x":7.115,"y":16.946,"w":4.5,"l":91.266},{"clr":1,"x":93.302,"y":15.728,"w":4.5,"l":3.352},{"clr":1,"x":93.302,"y":16.418,"w":4.5,"l":3.352},{"clr":1,"x":6.574,"y":34.013,"w":1.5,"l":56.134},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#edf8f5","x":98.553,"y":4.825,"w":1.5,"l":38.818},{"oc":"#edf8f5","x":7.115,"y":4.825,"w":1.5,"l":38.818},{"oc":"#d1efe7","x":68.677,"y":33.994,"w":4.5,"l":1.091},{"oc":"#d1efe7","x":62.976,"y":33.994,"w":4.5,"l":1.091},{"oc":"#d1efe7","x":12.717,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":10.165,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.312,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.76,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.939,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.387,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.534,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.982,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.13,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.577,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.725,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.172,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.32,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.768,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.933,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.38,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.528,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.976,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.717,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":10.165,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.312,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.76,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.939,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.387,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.534,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.982,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.13,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.577,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.725,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.172,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.32,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.768,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.933,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.38,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.528,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.976,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.717,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":10.165,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.312,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.76,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.939,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":16.387,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.534,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.982,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.13,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":21.577,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.725,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":24.172,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.32,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":26.768,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.933,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":29.38,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":34.528,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.976,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.537,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.985,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.133,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.58,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.759,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.207,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.355,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.802,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.95,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.398,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.545,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.993,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.141,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.588,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.753,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.201,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.348,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.796,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.537,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.985,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.133,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.58,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.759,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.207,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.355,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.802,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.95,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.398,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.545,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.993,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.141,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.588,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.753,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.201,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.348,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.796,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.537,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":37.985,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":43.133,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":40.58,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.759,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.207,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.355,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.802,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.95,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.398,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.545,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.993,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.141,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.588,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.753,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.201,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.348,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.796,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.994,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.441,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.589,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.037,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.216,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.663,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.811,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.259,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.406,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.854,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.002,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.449,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.597,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.045,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.209,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.657,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.805,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.252,"y":37.405,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.994,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.441,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.589,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.037,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.216,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.663,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.811,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.259,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.406,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.854,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.002,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.449,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.597,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.045,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.209,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.657,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.805,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.252,"y":39.43,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.994,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":65.441,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.589,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":68.037,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.216,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":71.663,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.811,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":74.259,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.406,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":76.854,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.002,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":79.449,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.597,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":82.045,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.209,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":84.657,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":89.805,"y":41.455,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":87.252,"y":41.455,"w":1.5,"l":1.063},{"oc":"#edf8f5","x":7.115,"y":4.953,"w":1.5,"l":30.249},{"oc":"#edf8f5","x":98.553,"y":4.953,"w":1.5,"l":30.249},{"oc":"#d1efe7","x":17.858,"y":3.206,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":57.735,"y":3.206,"w":1.5,"l":1.028},{"oc":"#d1efe7","x":7.442,"y":17.143,"w":4.5,"l":0.797},{"oc":"#d1efe7","x":98.097,"y":17.143,"w":4.5,"l":0.797},{"oc":"#d1efe7","x":7.923,"y":5.015,"w":4.5,"l":0.597},{"oc":"#d1efe7","x":97.951,"y":5.015,"w":4.5,"l":0.597},{"oc":"#d1efe7","x":54.117,"y":18.861,"w":4.5,"l":14.749},{"oc":"#d1efe7","x":98.861,"y":18.861,"w":4.5,"l":14.749},{"clr":1,"x":93.053,"y":15.934,"w":4.5,"l":0.691},{"clr":1,"x":96.405,"y":15.934,"w":4.5,"l":0.691},{"clr":1,"x":58.008,"y":19.124,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":19.124,"w":4.5,"l":0.725},{"clr":1,"x":80.695,"y":19.165,"w":4.5,"l":0.725},{"clr":1,"x":95.414,"y":19.165,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":22.078,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":22.078,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":22.078,"w":4.5,"l":0.725},{"clr":1,"x":95.391,"y":22.078,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":23.562,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":23.562,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":23.562,"w":4.5,"l":0.725},{"clr":1,"x":95.262,"y":23.562,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":24.687,"w":4.5,"l":0.725},{"clr":1,"x":72.305,"y":24.687,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":24.687,"w":4.5,"l":0.725},{"clr":1,"x":95.391,"y":24.687,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":25.993,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":25.993,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":25.993,"w":4.5,"l":0.725},{"clr":1,"x":95.391,"y":25.993,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":27.027,"w":4.5,"l":0.725},{"clr":1,"x":72.305,"y":27.027,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":27.027,"w":4.5,"l":0.725},{"clr":1,"x":95.391,"y":27.027,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":29.293,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":29.293,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":29.293,"w":4.5,"l":0.725},{"clr":1,"x":95.391,"y":29.293,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":30.743,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":30.743,"w":4.5,"l":0.725},{"oc":"#d1efe7","x":62.977,"y":34.06,"w":4.5,"l":1.091},{"oc":"#d1efe7","x":68.677,"y":34.06,"w":4.5,"l":1.091},{"clr":1,"x":80.414,"y":30.743,"w":4.5,"l":0.725},{"clr":1,"x":95.262,"y":30.743,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":31.777,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":31.777,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":31.777,"w":4.5,"l":0.725},{"clr":1,"x":95.391,"y":31.777,"w":4.5,"l":0.725},{"clr":1,"x":58.008,"y":32.815,"w":4.5,"l":0.725},{"clr":1,"x":72.445,"y":32.815,"w":4.5,"l":0.725},{"clr":1,"x":80.414,"y":32.815,"w":4.5,"l":0.725},{"clr":1,"x":95.391,"y":32.815,"w":4.5,"l":0.725},{"clr":1,"x":68.99,"y":33.928,"w":4.5,"l":0.725},{"clr":1,"x":87.776,"y":33.928,"w":4.5,"l":0.725},{"oc":"#d1efe7","x":90.165,"y":6.703,"w":4.5,"l":10.069},{"oc":"#d1efe7","x":98.089,"y":6.703,"w":4.5,"l":10.069},{"clr":1,"x":93.302,"y":6.746,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":6.746,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":7.809,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":7.809,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":8.934,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":8.934,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":10.059,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":10.059,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":11.184,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":11.184,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":12.309,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":12.309,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":13.434,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":13.434,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":14.559,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":14.559,"w":4.5,"l":0.691},{"clr":1,"x":93.302,"y":15.728,"w":4.5,"l":0.691},{"clr":1,"x":96.654,"y":15.728,"w":4.5,"l":0.691},{"dsh":1,"oc":"#ff2d16","x":102.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":0,"y":35.127,"w":105.188,"h":9.149,"clr":1},{"oc":"#edf8f5","x":7.115,"y":35.127,"w":91.438,"h":8.516,"clr":-1},{"x":10.165,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":12.76,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":16.387,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":18.982,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":21.577,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":24.172,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":26.768,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":29.38,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":31.976,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":10.165,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":12.76,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":16.387,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":18.982,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":21.577,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":24.172,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":26.768,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":29.38,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":31.976,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":10.165,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":12.76,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":16.387,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":18.982,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":21.577,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":24.172,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":26.768,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":29.38,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":31.976,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":37.985,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":40.58,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":44.207,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":46.802,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":49.398,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":51.993,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":54.588,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":57.201,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":59.796,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":37.985,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":40.58,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":44.207,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":46.802,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":49.398,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":51.993,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":54.588,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":57.201,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":59.796,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":37.985,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":40.58,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":44.207,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":46.802,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":49.398,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":51.993,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":54.588,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":57.201,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":59.796,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":65.441,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":68.037,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":71.663,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":74.259,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":76.854,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":79.449,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":82.045,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":84.657,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":87.252,"y":37.405,"w":2.552,"h":1.063,"clr":1},{"x":65.441,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":68.037,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":71.663,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":74.259,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":76.854,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":79.449,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":82.045,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":84.657,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":87.252,"y":39.43,"w":2.552,"h":1.063,"clr":1},{"x":65.441,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":68.037,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":71.663,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":74.259,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":76.854,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":79.449,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":82.045,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":84.657,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"x":87.252,"y":41.455,"w":2.552,"h":1.063,"clr":1},{"oc":"#edf8f5","x":6.514,"y":4.953,"w":91.438,"h":30.249,"clr":-1},{"x":17.858,"y":3.206,"w":39.877,"h":1.028,"clr":1},{"oc":"#d1efe7","x":7.442,"y":17.143,"w":90.655,"h":0.797,"clr":-1},{"oc":"#d1efe7","x":7.923,"y":5.015,"w":90.028,"h":0.597,"clr":-1},{"oc":"#d1efe7","x":54.117,"y":18.861,"w":44.744,"h":14.749,"clr":-1},{"x":93.053,"y":15.934,"w":3.352,"h":0.691,"clr":1},{"x":58.008,"y":19.124,"w":14.438,"h":0.725,"clr":1},{"x":80.695,"y":19.165,"w":14.719,"h":0.725,"clr":1},{"x":58.008,"y":22.077,"w":14.438,"h":0.725,"clr":1},{"x":80.414,"y":22.077,"w":14.977,"h":0.725,"clr":1},{"x":58.008,"y":23.562,"w":14.438,"h":0.725,"clr":1},{"x":80.414,"y":23.562,"w":14.848,"h":0.725,"clr":1},{"x":58.008,"y":24.687,"w":14.297,"h":0.725,"clr":1},{"x":80.414,"y":24.687,"w":14.977,"h":0.725,"clr":1},{"x":58.008,"y":25.993,"w":14.438,"h":0.725,"clr":1},{"x":80.414,"y":25.993,"w":14.977,"h":0.725,"clr":1},{"x":58.008,"y":27.027,"w":14.297,"h":0.725,"clr":1},{"x":80.414,"y":27.027,"w":14.977,"h":0.725,"clr":1},{"x":58.008,"y":29.293,"w":14.438,"h":0.725,"clr":1},{"x":80.414,"y":29.293,"w":14.977,"h":0.725,"clr":1},{"x":58.008,"y":30.743,"w":14.438,"h":0.725,"clr":1},{"oc":"#d1efe7","x":62.977,"y":34.06,"w":5.7,"h":1.091,"clr":-1},{"x":80.414,"y":30.743,"w":14.848,"h":0.725,"clr":1},{"x":58.008,"y":31.777,"w":14.438,"h":0.725,"clr":1},{"x":80.414,"y":31.777,"w":14.977,"h":0.725,"clr":1},{"x":58.008,"y":32.815,"w":14.438,"h":0.725,"clr":1},{"x":80.414,"y":32.815,"w":14.977,"h":0.725,"clr":1},{"x":68.99,"y":33.928,"w":18.786,"h":0.725,"clr":1},{"oc":"#d1efe7","x":90.165,"y":6.703,"w":7.923,"h":10.069,"clr":-1},{"x":93.302,"y":6.746,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":7.809,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":8.934,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":10.059,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":11.184,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":12.309,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":13.434,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":14.559,"w":3.352,"h":0.691,"clr":1},{"x":93.302,"y":15.728,"w":3.352,"h":0.691,"clr":1}],"Texts":[{"oc":"#2b2e34","x":7.681,"y":35.157,"w":12.572000000000001,"clr":-1,"A":"left","R":[{"T":"EINs%20associated%20with%20Income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.526,"y":35.157,"w":8.142,"clr":-1,"A":"left","R":[{"T":"reported%20and%20taxed","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":39.121,"y":35.157,"w":24.473000000000003,"clr":-1,"A":"left","R":[{"T":"%20on%20Franchise%20and%20Fidiciary%20Returns%20for%20the%20amount%20listed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.046,"y":35.157,"w":7.859999999999999,"clr":-1,"A":"left","R":[{"T":"on%20D-40%2C%20Line%2010.","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":8.495,"y":37.324,"w":0.505,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.495,"y":39.349,"w":0.538,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.495,"y":41.374,"w":0.486,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":36.315,"y":37.324,"w":0.538,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":36.315,"y":39.349,"w":0.481,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":36.315,"y":41.374,"w":0.55,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.772000000000006,"y":37.324,"w":0.46900000000000003,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.772000000000006,"y":39.349,"w":0.278,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.772000000000006,"y":41.374,"w":0.248,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.296,"y":45.417,"w":10.608,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20S%20%20%20P2","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":48.296,"y":46.167,"w":18.461000000000002,"clr":-1,"A":"left","R":[{"T":"Supplemental%20Information%20and%20Dependents%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":86.581,"y":46.167,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%204","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":17.41,"y":46.552,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.003,"y":3.171,"w":8.582000000000003,"clr":-1,"A":"left","R":[{"T":"Last%20name%20and%20SSN","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":7.02,"y":2.049,"w":9.732000000000001,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20S%20%20PAGE%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.295,"y":4.852,"w":16.174,"clr":-1,"A":"left","R":[{"T":"Calculation%20G%20%20Number%20of%20exemptions.","S":-1,"TS":[0,12.6,0,0]}]},{"x":66.527,"y":33.973,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":17.795,"w":29.92199999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20separate%20amounts%20in%20each%20column.%20Combine%20amounts%20on%20line%20k.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":18.976,"w":0.806,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":18.976,"w":13.458000000000002,"clr":-1,"A":"left","R":[{"T":"Federal%20adjusted%20gross%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.316,"y":18.976,"w":0.505,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":20.339,"w":30.880999999999982,"clr":-1,"A":"left","R":[{"T":"portion%20of%20federal%20adjusted%20gross%20income.%20Registered%20domestic%20partners%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":21.02,"w":30.621999999999982,"clr":-1,"A":"left","R":[{"T":"should%20enter%20the%20federal%20AGI%20reported%20on%20their%20separate%20federal%20returns.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":21.951,"w":0.839,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":21.951,"w":20.879,"clr":-1,"A":"left","R":[{"T":"Total%20additions%20to%20federal%20adjusted%20gross%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.417,"y":21.951,"w":0.538,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":22.633,"w":31.463999999999977,"clr":-1,"A":"left","R":[{"T":"Enter%20each%20person%E2%80%99s%20portion%20of%20additions%20entered%20on%20D-40%2C%20Lines%204%20and%205.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":23.501,"w":0.77,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":23.501,"w":8.026000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20a%20and%20b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":24.37,"w":0.839,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":24.37,"w":22.987000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20subtractions%20from%20federal%20adjusted%20gross%20income.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.615,"y":25.051,"w":30.135999999999978,"clr":-1,"A":"left","R":[{"T":"Enter%20each%20person%E2%80%99s%20portion%20of%20subtractions%20entered%20on%20D-40%2C%20Line%2014.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":25.92,"w":0.782,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":25.92,"w":11.927,"clr":-1,"A":"left","R":[{"T":"DC%20adjusted%20gross%20income.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.861,"y":25.92,"w":12.149000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20d%20from%20Line%20c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.259,"y":25.92,"w":0.481,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.615,"y":27.47,"w":29.80399999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20each%20person%E2%80%99s%20portion%20of%20the%20amount%20entered%20on%20D-40%2C%20Line%2017.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.615,"y":28.151,"w":18.931999999999995,"clr":-1,"A":"left","R":[{"T":"(You%20may%20allocate%20this%20amount%20as%20you%20wish.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.615,"y":29.701,"w":32.009,"clr":-1,"A":"left","R":[{"T":"Enter%20each%20person%E2%80%99s%20portion%20of%20exemption%20amount%20entered%20on%20D-40%2C%20Line%2019.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":30.57,"w":0.55,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":30.57,"w":7.747000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20f%20and%20g.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.259,"y":30.57,"w":0.55,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.176,"y":31.439,"w":13.069000000000004,"clr":-1,"A":"left","R":[{"T":"%20%20Subtract%20Line%20h%20from%20Line%20e.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.259,"y":31.439,"w":0.248,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.693,"y":32.308,"w":19.673999999999996,"clr":-1,"A":"left","R":[{"T":"%20If%20Line%20i%20is%20%24100%2C000%20or%20less%2C%20use%20tax%20tables.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.259,"y":32.308,"w":0.251,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.615,"y":32.989,"w":24.181999999999988,"clr":-1,"A":"left","R":[{"T":"%20If%20more%20than%20%24100%2C000%2C%20use%20Calculation%20I%2C%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":33.858,"w":0.491,"clr":-1,"A":"left","R":[{"T":"k","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":33.858,"w":26.733999999999984,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20Line%20j%2C%20enter%20here%20and%20on%20D-40%2C%20Line%2022.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":65.087,"y":33.858,"w":0.491,"clr":-1,"A":"left","R":[{"T":"k","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":88.505,"y":33.858,"w":6.0809999999999995,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20Total%20tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":6.421,"w":0.806,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.383,"y":6.421,"w":10.272000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%201%20for%20yourself%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.981,"y":6.421,"w":0.505,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":8.671,"w":0.77,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.383,"y":8.671,"w":16.011000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%201%20if%20you%20are%20age%2065%20or%20over%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.981,"y":8.671,"w":0.46900000000000003,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":9.796,"w":0.839,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.383,"y":9.796,"w":10.066999999999998,"clr":-1,"A":"left","R":[{"T":"Enter%201%20if%20you%20are%20blind%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.981,"y":9.796,"w":0.538,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.981,"y":10.921,"w":0.481,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":15.421,"w":0.5489999999999999,"clr":-1,"A":"left","R":[{"T":"i%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.384,"y":15.421,"w":12.437,"clr":-1,"A":"left","R":[{"T":"Total%20number%20of%20exemptions%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.347,"y":15.420000000000002,"w":21.43999999999999,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20a%E2%80%93h%2C%20enter%20here%20and%20on%20D-40%2C%20Line%2018.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":90.981,"y":15.421,"w":0.248,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.989,"y":24.365,"w":0.538,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.166,"y":26.802,"w":0.278,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.266,"y":31.479,"w":5.023,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20loss","S":2,"TS":[0,10,0,0]}]},{"x":72.734,"y":19.135,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.376,"y":19.135,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.527,"y":19.083,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.169,"y":19.083,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.734,"y":22.166,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.376,"y":22.166,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.527,"y":22.115,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.169,"y":22.115,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.797,"y":23.726,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.438,"y":23.726,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.59,"y":23.674,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.231,"y":23.674,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.765,"y":24.737,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.407,"y":24.737,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.559,"y":24.748,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.2,"y":24.748,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.734,"y":26.129,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.376,"y":26.129,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.527,"y":26.14,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.169,"y":26.14,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.765,"y":27.089,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.407,"y":27.089,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.558,"y":27.101,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.2,"y":27.101,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.765,"y":29.413,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.407,"y":29.413,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.559,"y":29.424,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.2,"y":29.424,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.766,"y":30.794,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.407,"y":30.794,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.559,"y":30.805,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.2,"y":30.805,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.797,"y":31.856,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.438,"y":31.856,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.59,"y":31.868000000000002,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.231,"y":31.868000000000002,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":88.051,"y":33.987,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":88.692,"y":33.987,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.875,"y":32.737,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":73.516,"y":32.737,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":95.625,"y":32.737,"w":0.311,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#2b2e34","x":96.266,"y":32.737,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":19.121,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":22.171,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":23.608,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":24.733,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":26.071,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":27.071,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":29.371,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":30.771,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":31.771,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":78.437,"y":32.771,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":19.155,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":22.205,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":23.643,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":24.768,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":26.105,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":27.105,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":29.405,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":30.805,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":31.805,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"x":55.861,"y":32.805,"w":0.602,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":7.295,"y":5.64,"w":55.825999999999986,"clr":-1,"A":"left","R":[{"T":"Do%20not%20attach%20Schedule%20S%20to%20your%20D-40%20if%20you%20only%20filled%20in%20Lines%20a%2C%20f%20and%20i%20and%20have%20not%20filled%20in%20any%20other%20section%20of%20Schedule%20S.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":7.545999999999999,"w":0.839,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.383,"y":7.545999999999999,"w":21.731000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%201%20if%20you%20are%20filing%20as%20a%20head%20of%20household%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.981,"y":7.545999999999999,"w":0.538,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":91.156,"y":12.046,"w":0.278,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":13.171,"w":0.7869999999999999,"clr":-1,"A":"left","R":[{"T":"g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.384,"y":13.171,"w":50.617,"clr":-1,"A":"left","R":[{"T":"Enter%201%20if%20you%20are%20married%20filing%20jointly%20or%20married%20filing%20separately%20on%20same%20return%20and%20your%20spouse%2Fpartner%20is%2065%20or%20over","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.982,"y":13.171,"w":0.486,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":10.921,"w":0.782,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.383,"y":10.921,"w":12.32,"clr":-1,"A":"left","R":[{"T":"Enter%20number%20of%20dependents%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":12.046,"w":0.278,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.291,"y":12.046,"w":43.62200000000003,"clr":-1,"A":"left","R":[{"T":"Enter%201%20for%20your%20spouse%20or%20registered%20domestic%20partner%20if%20filing%20jointly%20or%20filing%20separately%20on%20same%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.45,"y":14.296,"w":0.851,"clr":-1,"A":"left","R":[{"T":"h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.384,"y":14.296,"w":48.32599999999999,"clr":-1,"A":"left","R":[{"T":"Enter%201%20if%20you%20are%20married%20filing%20jointly%20or%20married%20filing%20separately%20on%20same%20return%20and%20your%20spouse%2Fpartner%20is%20blind","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.982,"y":14.296,"w":0.55,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":16.983,"w":48.325000000000024,"clr":-1,"A":"left","R":[{"T":"Calculation%20J%20Tax%20computation%20for%20married%20or%20registered%20domestic%20partners%20filing%20separately%20on%20the%20same%20DC%20return.","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":65.595,"y":17.831,"w":1.5310000000000001,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":78.805,"y":17.831,"w":12.709999999999999,"clr":-1,"A":"left","R":[{"T":"Your%20spouse%2Fdomestic%20partner","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":19.658,"w":30.42599999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20and%20your%20spouse%20filed%20a%20joint%20federal%20return%2C%20enter%20each%20person%E2%80%99s%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":26.789,"w":0.278,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":26.789,"w":8.111999999999998,"clr":-1,"A":"left","R":[{"T":"Deduction%20amount.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":29.02,"w":0.486,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":29.02,"w":8.267999999999999,"clr":-1,"A":"left","R":[{"T":"Exemption%20amount.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.259,"y":29.02,"w":0.486,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":31.439,"w":0.248,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":31.439,"w":6.9300000000000015,"clr":-1,"A":"left","R":[{"T":"Taxable%20income.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.681,"y":32.308,"w":0.251,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.614,"y":32.308,"w":2.092,"clr":-1,"A":"left","R":[{"T":"Tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.259,"y":23.501,"w":21.895,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME2","EN":0},"TI":586,"AM":1024,"x":17.985,"y":3.304,"w":21.73,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN2","EN":0},"TI":587,"AM":1024,"x":39.921,"y":3.304,"w":17.762,"h":0.862},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":588,"AM":0,"x":93.047,"y":6.538,"w":4.091,"h":0.884,"TU":"Line a. Enter 1 for yourself and."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HH","EN":0},"TI":589,"AM":0,"x":93.025,"y":7.627,"w":4.091,"h":0.884,"TU":"Line b. Enter 1 if you are filing as a head of household and."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TP65OVER","EN":0},"TI":590,"AM":0,"x":93.058,"y":8.743,"w":4.091,"h":0.884,"TU":"Line c. Enter 1 if you are age 65 or over and."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPBLIND","EN":0},"TI":591,"AM":0,"x":93.1,"y":9.832,"w":4.091,"h":0.884,"TU":"Line d. Enter 1 if you are blind."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPENDS","EN":0},"TI":592,"AM":0,"x":93.01,"y":10.989,"w":4.091,"h":0.884,"TU":"Line e. Enter number of dependents."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":593,"AM":0,"x":92.987,"y":12.078,"w":4.091,"h":0.884,"TU":"Line f. Enter 1 for your spouse or registered domestic partner if filing jointly or filing separately on same return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SP65OVER","EN":0},"TI":594,"AM":0,"x":93.085,"y":13.194,"w":4.091,"h":0.884,"TU":"Line g. Enter 1 if you are married filing jointly or married filing separately on same return and your spouse/partner is 65 or over."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPBLIND","EN":0},"TI":595,"AM":0,"x":93.062,"y":14.283,"w":4.091,"h":0.884,"TU":"Line h. Enter 1 if you are married filing jointly or married filing separately on same return and your spouse/partner is blind."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMPS","EN":0},"TI":596,"AM":1024,"x":93.025,"y":15.522,"w":4.091,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPFEDAGI","EN":0},"TI":597,"AM":0,"x":57.875,"y":19.015,"w":14.871,"h":0.884,"TU":"Line a. You. Federal adjusted gross income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPFEDAGI","EN":0},"TI":598,"AM":0,"x":80.298,"y":19.042,"w":15.396,"h":0.884,"TU":"Line a. Your spouse/domestic partner. Federal adjusted gross income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPADDS","EN":0},"TI":599,"AM":0,"x":57.894,"y":21.941,"w":14.871,"h":0.884,"TU":"Line b. You. Total additions to federal adjusted gross income. Enter each person's portion of additions entered on D-40, Lines 4 and 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPADDS","EN":0},"TI":600,"AM":0,"x":80.069,"y":21.969,"w":15.545,"h":0.884,"TU":"Line b. Your spouse/domestic partner. Total additions to federal adjusted gross income. Enter each person's portion of additions entered on D-40, Lines 4 and 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPMODAGI","EN":0},"TI":601,"AM":1024,"x":57.878,"y":23.439,"w":14.871,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPMODAGI","EN":0},"TI":602,"AM":1024,"x":80.182,"y":23.466,"w":15.545,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPSUBS","EN":0},"TI":603,"AM":0,"x":57.866,"y":24.585,"w":14.871,"h":0.884,"TU":"Line d. You. Total subtractions from federal adjusted gross income. Enter each person's portion of subtractions entered on D-40, line 14."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPSUBS","EN":0},"TI":604,"AM":0,"x":80.169,"y":24.588,"w":15.545,"h":0.884,"TU":"Line d. Your spouse/domestic partner. Total subtractions from federal adjusted gross income. Enter each person's portion of subtractions entered on D-40, line 14."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPDCAGI","EN":0},"TI":605,"AM":1024,"x":57.851,"y":25.871,"w":14.871,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPDCAGI","EN":0},"TI":606,"AM":1024,"x":80.154,"y":25.898,"w":15.545,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPDEDUCT","EN":0},"TI":607,"AM":0,"x":57.953,"y":26.951,"w":14.871,"h":0.884,"TU":"Line f. You. Deduction amount. Enter each person's portion of the amount entered on D-40, Line 17. (You may allocate this amount as you wish)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPDEDUCT","EN":0},"TI":608,"AM":0,"x":80.257,"y":26.978,"w":15.545,"h":0.884,"TU":"Line f. Your spouse/domestic partner. Deduction amount. Enter each person's portion of the amount entered on D-40, Line 17. (You may allocate this amount as you wish)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPEXEMPT","EN":0},"TI":609,"AM":0,"x":57.886,"y":29.142,"w":14.872,"h":0.884,"TU":"Line g. You. Exemption amount. Enter each person's portion of exemption amount entered on D-40. Line 19."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPEXEMPT","EN":0},"TI":610,"AM":0,"x":80.189,"y":29.169,"w":15.545,"h":0.884,"TU":"Line g. Your spouse/domestic partner, Exemption amount. Enter each person's portion of exemption amount entered on D-40. Line 19."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPDEDEXE","EN":0},"TI":611,"AM":1024,"x":57.87,"y":30.64,"w":14.872,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPDEDEXE","EN":0},"TI":612,"AM":1024,"x":80.346,"y":30.604,"w":15.545,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPTAXINC","EN":0},"TI":614,"AM":1024,"x":57.827,"y":31.692,"w":14.872,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPTAXINC","EN":0},"TI":616,"AM":1024,"x":80.302,"y":31.657,"w":15.545,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPTAX","EN":0},"TI":617,"AM":0,"x":57.929,"y":32.737,"w":14.872,"h":0.884,"TU":"Line j. You. Tax. If Line i is $100,000 or less, use tax tables. If more than $100,000, use Calculation I, instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPTAX","EN":0},"TI":618,"AM":0,"x":80.405,"y":32.764,"w":15.545,"h":0.884,"TU":"Line j. Your spouse/domestic partner. Tax. If Line i is $100,000 or less, use tax tables. If more than $100,000, use Calculation I, instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTAX","EN":0},"TI":619,"AM":1024,"x":68.843,"y":33.825,"w":19.214,"h":0.884},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINA","EN":0},"TI":620,"AM":0,"x":10.297,"y":37.492,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10.","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINB","EN":0},"TI":621,"AM":0,"x":38.11,"y":37.555,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINC","EN":0},"TI":622,"AM":0,"x":65.491,"y":37.52,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIND","EN":0},"TI":623,"AM":0,"x":10.466,"y":39.555,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINE","EN":0},"TI":624,"AM":0,"x":38.124,"y":39.575,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINF","EN":0},"TI":625,"AM":0,"x":65.655,"y":39.54,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EING","EN":0},"TI":626,"AM":0,"x":10.309,"y":41.575,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINH","EN":0},"TI":627,"AM":0,"x":38.139,"y":41.559,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINI","EN":0},"TI":628,"AM":0,"x":65.595,"y":41.587,"w":24.08,"h":0.884,"TU":"EINs associated with Income reported and taxed on Franchise and Fiduciary Returns for the amount listed on D-40, Line 10","MV":"99-9999999"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXMINA","EN":0},"TI":613,"AM":1024,"x":51.947,"y":31.555,"w":1.447,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXMINB","EN":0},"TI":615,"AM":1024,"x":77.053,"y":31.7,"w":1.447,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/DCSCHU.content.txt b/test/data/dc/form/DCSCHU.content.txt new file mode 100755 index 00000000..3683ec81 --- /dev/null +++ b/test/data/dc/form/DCSCHU.content.txt @@ -0,0 +1,191 @@ +File order 7 + +Government of the +District of Columbia +2013 + +SCHEDULE U Additional +Miscellaneous Credits and + + + + + + + + + + + + + + + + + + + + + + + + + + Contributions +2013 SCHEDULE U +Additional Miscellaneous Credits and Contributions +Revised 09/13 +Important: +Print in CAPITAL letters using black ink. Attach to D-40. +NOTE: +Contribution(s) will either decrease a refund or increase the tax owed by the +amount of the contribution(s). +Enter your last name Social Security Number +Part I + +Credits + a. Nonrefundable Credits + + +see instructions. +1 + +Dependents cannot claim this credit. + + 2 Enter state income tax credit. + + + + + +3 +Total of Line 2 state tax credits and any additional tax credits from the attachments. +Enter amount. 3 + 4 +RESERVED +4 + +5 +RESERVED + + + + 6 Total your nonrefundable credits, enter here and on Form D-40, Line 24. 6 + + + +b. Refundable Credits + 2 +RESERVED + +2 + 3 +RESERVED + +3 + + 4 Total your refundable credits, enter here and on Form D-40, Line 30. 4 +Part II Contributions + (The minimum contribution is $1.00.) + +1 DC Statehood Delegation Fund. + 1 + 2 Public Fund for Drug Prevention and Children at Risk. 2 + 3 Anacostia River Cleanup and Protection Fund. +3 + 4 +RESERVED + +4 + 5 +RESERVED + +5 +6 +If due a refund, total your contribution(s), enter here and on Form D-40, Line 39. +6 + + 7 If you owe tax, total your contribution(s), enter here and on Form D-40, Line 42. 7 +If you are not due a refund and do not owe additional tax, total your contribution(s) and enter on Form D-40, Line 42. +If you owe tax, make the payment plus any contribution(s), payable to the DC Treasurer and mail it with your return. Attach this +schedule to your D-40 Return. +List additional states on a separate sheet, attach it to this Schedule. +(Enter total of all state tax credits on Line 3 below.) +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +$ + . +00 +State +(a) +$ + +. +00 + (b) +$ + +. +00 +State +(c) +$ + +. +00 + (d) +$ + +. +00 +$ + . +00 +5 +1 DC Government Employee first-time DC homebuyer credit, + 1 DC Non-custodial parent EITC (see Schedule N). + +1 +Taxpayer Copy +Spouse Copy +----------------Page (0) Break---------------- diff --git a/test/data/dc/form/DCSCHU.fields.json b/test/data/dc/form/DCSCHU.fields.json new file mode 100755 index 00000000..c1fa60ed --- /dev/null +++ b/test/data/dc/form/DCSCHU.fields.json @@ -0,0 +1 @@ +[{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"POLICECD","type":"number","calc":false,"value":""},{"id":"STCD_1_","type":"alpha","calc":false,"value":""},{"id":"AMT_1_","type":"number","calc":false,"value":""},{"id":"STCD_2_","type":"alpha","calc":false,"value":""},{"id":"AMT_2_","type":"number","calc":false,"value":""},{"id":"STCD_3_","type":"alpha","calc":false,"value":""},{"id":"AMT_3_","type":"number","calc":false,"value":""},{"id":"STCD_4_","type":"alpha","calc":false,"value":""},{"id":"AMT_4_","type":"number","calc":false,"value":""},{"id":"AMTTOT","type":"number","calc":true,"value":""},{"id":"NONRFND","type":"number","calc":true,"value":""},{"id":"Add_Schedule_U_Line_4","type":"link","calc":false,"value":""},{"id":"Add_Schedule_U_Line_4","type":"link","calc":false,"value":""},{"id":"EITC","type":"number","calc":false,"value":""},{"id":"RFNDBL","type":"number","calc":true,"value":""},{"id":"STATEFND","type":"number","calc":false,"value":""},{"id":"DRUGTRST","type":"number","calc":false,"value":""},{"id":"ANACOST","type":"number","calc":false,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"OWETAX","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/DCSCHU.json b/test/data/dc/form/DCSCHU.json new file mode 100755 index 00000000..9720a8f3 --- /dev/null +++ b/test/data/dc/form/DCSCHU.json @@ -0,0 +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":"#e8f7f3","x":7.391,"y":7.344,"w":1.5,"l":91.094},{"oc":"#e8f7f3","x":7.391,"y":45.826,"w":1.5,"l":91.094},{"oc":"#d1efe7","x":15.407,"y":17.531,"w":1.5,"l":57.313},{"oc":"#d1efe7","x":15.407,"y":14.812,"w":1.5,"l":57.313},{"oc":"#2b2e34","x":24.277,"y":2.103,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":24.277,"y":3.009,"w":1.5,"l":6.11},{"oc":"#2b2e34","x":7.408,"y":7.187,"w":4.5,"l":91.266},{"oc":"#d1efe7","x":13.879,"y":13.4,"w":1.5,"l":63.379},{"oc":"#def3ee","x":14.008,"y":21.518,"w":1.5,"l":58.555},{"oc":"#def3ee","x":14.137,"y":25.185,"w":1.5,"l":58.425},{"oc":"#def3ee","x":14.008,"y":26.744,"w":1.5,"l":58.555},{"oc":"#def3ee","x":14.008,"y":34.248,"w":1.5,"l":58.555},{"oc":"#def3ee","x":13.922,"y":35.731,"w":1.5,"l":58.704},{"oc":"#def3ee","x":8.938,"y":8.478,"w":1.5,"l":88.479},{"oc":"#def3ee","x":8.938,"y":9.666,"w":1.5,"l":88.479},{"oc":"#d1efe7","x":9.195,"y":8.569,"w":1.5,"l":54.355},{"oc":"#d1efe7","x":9.195,"y":9.572,"w":1.5,"l":54.355},{"oc":"#d1efe7","x":64.883,"y":8.569,"w":1.5,"l":32.116},{"oc":"#d1efe7","x":64.883,"y":9.572,"w":1.5,"l":32.116},{"oc":"#def3ee","x":14.008,"y":37.075,"w":1.5,"l":58.584},{"oc":"#def3ee","x":14.008,"y":28.15,"w":1.5,"l":58.555},{"oc":"#def3ee","x":72.648,"y":42.933,"w":1.5,"l":26.266},{"oc":"#def3ee","x":72.648,"y":14.872,"w":1.5,"l":26.266},{"oc":"#def3ee","x":72.712,"y":29.697,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.712,"y":28.447,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":81.976,"y":28.516,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.976,"y":29.519,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":28.516,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":29.519,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":28.516,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":29.519,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":28.516,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":29.519,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":28.516,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":29.519,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":28.516,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":29.519,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.712,"y":37.12,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.712,"y":35.87,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":81.976,"y":35.939,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.976,"y":36.942,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":35.939,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":36.942,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":35.939,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":36.942,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":35.939,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":36.942,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":35.939,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":36.942,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":35.939,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":36.942,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.976,"y":37.355,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.976,"y":38.358,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":37.355,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":38.358,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":37.355,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":38.358,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":37.355,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":38.358,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":37.355,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":38.358,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":37.355,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":38.358,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":72.648,"y":12.776,"w":1.5,"l":25.011},{"oc":"#d1efe7","x":72.648,"y":11.594,"w":1.5,"l":25.011},{"oc":"#d1efe7","x":81.039,"y":11.662,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.039,"y":12.666,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.82,"y":11.662,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":84.82,"y":12.666,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.914,"y":11.662,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":87.914,"y":12.666,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.008,"y":11.662,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.008,"y":12.666,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.852,"y":11.662,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":74.852,"y":12.666,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.945,"y":11.662,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":77.945,"y":12.666,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.712,"y":34.259,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.712,"y":33.009,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":81.976,"y":33.078,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.976,"y":34.081,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":33.078,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":34.081,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":33.078,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":34.081,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":33.078,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":34.081,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":33.078,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":34.081,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":33.078,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":34.081,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.712,"y":31.094,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.712,"y":29.844,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":81.976,"y":29.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.976,"y":30.916,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":29.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.757,"y":30.916,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":29.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.851,"y":30.916,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":29.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.944,"y":30.916,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":29.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.788,"y":30.916,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":29.912,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.882,"y":30.916,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.806,"y":21.603,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.806,"y":20.353,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":82.07,"y":20.422,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.07,"y":21.425,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":20.422,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":21.425,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":20.422,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":21.425,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":20.422,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":21.425,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":20.422,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":21.425,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":20.422,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":21.425,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.425,"y":15.037,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.425,"y":16.041,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.175,"y":15.037,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.175,"y":16.041,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.081,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.081,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.831,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.831,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.581,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.581,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.065,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.065,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.815,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.815,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.133,"y":15.037,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.133,"y":16.041,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.883,"y":15.037,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.883,"y":16.041,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.616,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.616,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.366,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.366,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.116,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.116,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.601,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.601,"y":16.067,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.351,"y":15.064,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.351,"y":16.067,"w":1.5,"l":2.75},{"oc":"#def3ee","x":14.029,"y":20.296,"w":1.5,"l":58.533},{"oc":"#def3ee","x":13.803,"y":38.478,"w":1.5,"l":58.801},{"oc":"#def3ee","x":72.763,"y":26.806,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.763,"y":25.556,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":82.027,"y":25.625,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.027,"y":26.628,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.809,"y":25.625,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.809,"y":26.628,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.902,"y":25.625,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.902,"y":26.628,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.996,"y":25.625,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.996,"y":26.628,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.84,"y":25.625,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.84,"y":26.628,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.934,"y":25.625,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.934,"y":26.628,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.806,"y":28.278,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.806,"y":27.028,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":82.07,"y":27.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.07,"y":28.1,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":27.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":28.1,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":27.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":28.1,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":27.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":28.1,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":27.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":28.1,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":27.097,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":28.1,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.68,"y":35.666,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.68,"y":34.416,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":81.944,"y":34.484,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":81.944,"y":35.487,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.725,"y":34.484,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.725,"y":35.487,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.819,"y":34.484,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.819,"y":35.487,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.913,"y":34.484,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.913,"y":35.487,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.756,"y":34.484,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.756,"y":35.487,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.85,"y":34.484,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.85,"y":35.487,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.746,"y":20.322,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.746,"y":19.072,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":82.01,"y":19.141,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.01,"y":20.144,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.791,"y":19.141,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.791,"y":20.144,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.885,"y":19.141,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.885,"y":20.144,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.979,"y":19.141,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.979,"y":20.144,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.823,"y":19.141,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.823,"y":20.144,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.916,"y":19.141,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.916,"y":20.144,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.027,"y":38.853,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.027,"y":39.856,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.809,"y":38.853,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.809,"y":39.856,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.902,"y":38.853,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.902,"y":39.856,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.996,"y":38.853,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":91.996,"y":39.856,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.84,"y":38.853,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.84,"y":39.856,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.934,"y":38.853,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.934,"y":39.856,"w":1.5,"l":2.75},{"oc":"#def3ee","x":13.922,"y":39.952,"w":1.5,"l":58.662},{"oc":"#def3ee","x":13.781,"y":41.423,"w":1.5,"l":58.844},{"oc":"#def3ee","x":9.539,"y":31.281,"w":1.5,"l":63.023},{"oc":"#def3ee","x":72.875,"y":23.935,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.875,"y":22.685,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":82.139,"y":22.754,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.139,"y":23.757,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.92,"y":22.754,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.92,"y":23.757,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.014,"y":22.754,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":89.014,"y":23.757,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.108,"y":22.754,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.108,"y":23.757,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.952,"y":22.754,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.952,"y":23.757,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.045,"y":22.754,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":79.045,"y":23.757,"w":1.5,"l":2.75},{"oc":"#def3ee","x":72.82,"y":22.788,"w":1.5,"l":25.884},{"oc":"#def3ee","x":72.82,"y":21.538,"w":1.5,"l":25.884},{"oc":"#d1efe7","x":82.084,"y":21.607,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.084,"y":22.61,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.866,"y":21.607,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.866,"y":22.61,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.959,"y":21.607,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.959,"y":22.61,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.053,"y":21.607,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.053,"y":22.61,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.897,"y":21.607,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.897,"y":22.61,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.991,"y":21.607,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.991,"y":22.61,"w":1.5,"l":2.75},{"oc":"#def3ee","x":14.143,"y":22.719,"w":1.5,"l":58.419},{"oc":"#def3ee","x":13.684,"y":29.672,"w":1.5,"l":58.942},{"oc":"#d1efe7","x":82.07,"y":40.275,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.07,"y":41.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":40.275,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":41.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":40.275,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":41.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":40.275,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":41.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":40.275,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":41.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":40.275,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":41.278,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.511,"y":16.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":47.511,"y":17.284,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.261,"y":16.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":50.261,"y":17.284,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.167,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":61.167,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.917,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":63.917,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.667,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":66.667,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.151,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":55.151,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.901,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":57.901,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.219,"y":16.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":18.219,"y":17.284,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.969,"y":16.281,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":20.969,"y":17.284,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.702,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":31.702,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.452,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":34.452,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.202,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":37.202,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.687,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":25.687,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.437,"y":16.308,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":28.437,"y":17.311,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.07,"y":41.667,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":82.07,"y":42.671,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":41.667,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":85.852,"y":42.671,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":41.667,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":88.945,"y":42.671,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":41.667,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":92.039,"y":42.671,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":41.667,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":75.883,"y":42.671,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":41.667,"w":1.5,"l":2.75},{"oc":"#d1efe7","x":78.977,"y":42.671,"w":1.5,"l":2.75},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#e8f7f3","x":7.391,"y":7.344,"w":1.5,"l":38.482},{"oc":"#e8f7f3","x":98.484,"y":7.344,"w":1.5,"l":38.482},{"oc":"#d1efe7","x":15.407,"y":14.812,"w":1.5,"l":2.719},{"oc":"#d1efe7","x":72.72,"y":14.812,"w":1.5,"l":2.715},{"oc":"#2b2e34","x":24.277,"y":2.103,"w":1.5,"l":0.906},{"oc":"#2b2e34","x":30.387,"y":2.103,"w":1.5,"l":0.906},{"oc":"#def3ee","x":8.938,"y":8.478,"w":1.5,"l":1.188},{"oc":"#def3ee","x":97.416,"y":8.478,"w":1.5,"l":1.188},{"oc":"#d1efe7","x":9.195,"y":8.569,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.551,"y":8.569,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":64.883,"y":8.569,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":96.999,"y":8.569,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.648,"y":14.872,"w":1.5,"l":28.061},{"oc":"#def3ee","x":98.914,"y":14.872,"w":1.5,"l":28.02},{"oc":"#def3ee","x":72.712,"y":28.447,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.596,"y":28.447,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":81.976,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.726,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.757,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.507,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.851,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.601,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.944,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.694,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.788,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.538,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.882,"y":28.516,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.632,"y":28.516,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.712,"y":35.87,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.596,"y":35.87,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":81.976,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.726,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.757,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.507,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.851,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.601,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.944,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.694,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.788,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.538,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.882,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.632,"y":35.939,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.976,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.726,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.757,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.507,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.851,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.601,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.944,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.694,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.788,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.538,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.882,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.632,"y":37.355,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":72.648,"y":11.594,"w":1.5,"l":1.182},{"oc":"#d1efe7","x":97.659,"y":11.594,"w":1.5,"l":1.18},{"oc":"#d1efe7","x":81.039,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":83.789,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.82,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.57,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":87.914,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":90.664,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.008,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":93.758,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":74.852,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.602,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":77.945,"y":11.662,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":80.695,"y":11.662,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.712,"y":33.009,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.596,"y":33.009,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":81.976,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.726,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.757,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.507,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.851,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.601,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.944,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.694,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.788,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.538,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.882,"y":33.078,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.632,"y":33.078,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.712,"y":29.844,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.596,"y":29.844,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":81.976,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.726,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.757,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.507,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.851,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.601,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.944,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.694,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.788,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.538,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.882,"y":29.912,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.632,"y":29.912,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.806,"y":20.353,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.691,"y":20.353,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":82.07,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.82,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.852,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.602,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.945,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.695,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.039,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.789,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.883,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.633,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.977,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.727,"y":20.422,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.425,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.175,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.175,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":52.925,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.081,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.831,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.831,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.581,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.581,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.331,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.065,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.815,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.815,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.565,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.133,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.883,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.883,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.633,"y":15.037,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.616,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.366,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.366,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.116,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.116,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.866,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":25.601,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.351,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.351,"y":15.064,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.101,"y":15.064,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.763,"y":25.556,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.648,"y":25.556,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":82.027,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.777,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.809,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.559,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.902,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.652,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.996,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.746,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.84,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.59,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.934,"y":25.625,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.684,"y":25.625,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.806,"y":27.028,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.691,"y":27.028,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":82.07,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.82,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.852,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.602,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.945,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.695,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.039,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.789,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.883,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.633,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.977,"y":27.097,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.727,"y":27.097,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.68,"y":34.416,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.564,"y":34.416,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":81.944,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.694,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.725,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.475,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.819,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.569,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.913,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.663,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.756,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.506,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.85,"y":34.484,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.6,"y":34.484,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.746,"y":19.072,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.63,"y":19.072,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":82.01,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.76,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.791,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.541,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.885,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.635,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.979,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.729,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.823,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.573,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.916,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.666,"y":19.141,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.027,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.777,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.809,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.559,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.902,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.652,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.996,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.746,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.84,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.59,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.934,"y":38.853,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.684,"y":38.853,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.875,"y":22.685,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.759,"y":22.685,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":82.139,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.889,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.92,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.67,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":89.014,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.764,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.108,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.858,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.952,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.702,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":79.045,"y":22.754,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.795,"y":22.754,"w":1.5,"l":1.003},{"oc":"#def3ee","x":72.82,"y":21.538,"w":1.5,"l":1.25},{"oc":"#def3ee","x":98.705,"y":21.538,"w":1.5,"l":1.248},{"oc":"#d1efe7","x":82.084,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.834,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.866,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.616,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.959,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.709,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.053,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.803,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.897,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.647,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.991,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.741,"y":21.607,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.07,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.82,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.852,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.602,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.945,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.695,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.039,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.789,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.883,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.633,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.977,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.727,"y":40.275,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":47.511,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.261,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":50.261,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":53.011,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":61.167,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.917,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":63.917,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.667,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":66.667,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":69.417,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":55.151,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.901,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":57.901,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":60.651,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":18.219,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.969,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":20.969,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":23.719,"y":16.281,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.702,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.452,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":34.452,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.202,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":37.202,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":39.952,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":25.687,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.437,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":28.437,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":31.187,"y":16.308,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":82.07,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":84.82,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":85.852,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.602,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":88.945,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":91.695,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":92.039,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":94.789,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":75.883,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.633,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":78.977,"y":41.667,"w":1.5,"l":1.003},{"oc":"#d1efe7","x":81.727,"y":41.667,"w":1.5,"l":1.003},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d4f0e9","x":7.391,"y":7.344,"w":91.094,"h":38.482,"clr":-1},{"oc":"#e1f4ef","x":15.407,"y":14.812,"w":57.313,"h":2.719,"clr":-1},{"oc":"#2b2e34","x":24.277,"y":2.103,"w":6.11,"h":0.906,"clr":-1},{"oc":"#def3ee","x":8.938,"y":8.478,"w":88.479,"h":1.188,"clr":-1},{"x":9.195,"y":8.569,"w":54.355,"h":1.003,"clr":1},{"x":64.883,"y":8.569,"w":32.116,"h":1.003,"clr":1},{"oc":"#e1f4ef","x":72.648,"y":14.872,"w":26.266,"h":28.061,"clr":-1},{"oc":"#def3ee","x":72.712,"y":28.447,"w":25.884,"h":1.25,"clr":-1},{"x":81.976,"y":28.516,"w":2.75,"h":1.003,"clr":1},{"x":85.757,"y":28.516,"w":2.75,"h":1.003,"clr":1},{"x":88.851,"y":28.516,"w":2.75,"h":1.003,"clr":1},{"x":91.944,"y":28.516,"w":2.75,"h":1.003,"clr":1},{"x":75.788,"y":28.516,"w":2.75,"h":1.003,"clr":1},{"x":78.882,"y":28.516,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.712,"y":35.87,"w":25.884,"h":1.25,"clr":-1},{"x":81.976,"y":35.939,"w":2.75,"h":1.003,"clr":1},{"x":85.757,"y":35.939,"w":2.75,"h":1.003,"clr":1},{"x":88.851,"y":35.939,"w":2.75,"h":1.003,"clr":1},{"x":91.944,"y":35.939,"w":2.75,"h":1.003,"clr":1},{"x":75.788,"y":35.939,"w":2.75,"h":1.003,"clr":1},{"x":78.882,"y":35.939,"w":2.75,"h":1.003,"clr":1},{"x":81.976,"y":37.355,"w":2.75,"h":1.003,"clr":1},{"x":85.757,"y":37.355,"w":2.75,"h":1.003,"clr":1},{"x":88.851,"y":37.355,"w":2.75,"h":1.003,"clr":1},{"x":91.944,"y":37.355,"w":2.75,"h":1.003,"clr":1},{"x":75.788,"y":37.355,"w":2.75,"h":1.003,"clr":1},{"x":78.882,"y":37.355,"w":2.75,"h":1.003,"clr":1},{"oc":"#d1efe7","x":72.648,"y":11.594,"w":25.011,"h":1.182,"clr":-1},{"x":81.039,"y":11.662,"w":2.75,"h":1.003,"clr":1},{"x":84.82,"y":11.662,"w":2.75,"h":1.003,"clr":1},{"x":87.914,"y":11.662,"w":2.75,"h":1.003,"clr":1},{"x":91.008,"y":11.662,"w":2.75,"h":1.003,"clr":1},{"x":74.852,"y":11.662,"w":2.75,"h":1.003,"clr":1},{"x":77.945,"y":11.662,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.712,"y":33.009,"w":25.884,"h":1.25,"clr":-1},{"x":81.976,"y":33.078,"w":2.75,"h":1.003,"clr":1},{"x":85.757,"y":33.078,"w":2.75,"h":1.003,"clr":1},{"x":88.851,"y":33.078,"w":2.75,"h":1.003,"clr":1},{"x":91.944,"y":33.078,"w":2.75,"h":1.003,"clr":1},{"x":75.788,"y":33.078,"w":2.75,"h":1.003,"clr":1},{"x":78.882,"y":33.078,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.712,"y":29.844,"w":25.884,"h":1.25,"clr":-1},{"x":81.976,"y":29.912,"w":2.75,"h":1.003,"clr":1},{"x":85.757,"y":29.912,"w":2.75,"h":1.003,"clr":1},{"x":88.851,"y":29.912,"w":2.75,"h":1.003,"clr":1},{"x":91.944,"y":29.912,"w":2.75,"h":1.003,"clr":1},{"x":75.788,"y":29.912,"w":2.75,"h":1.003,"clr":1},{"x":78.882,"y":29.912,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.806,"y":20.353,"w":25.884,"h":1.25,"clr":-1},{"x":82.07,"y":20.422,"w":2.75,"h":1.003,"clr":1},{"x":85.852,"y":20.422,"w":2.75,"h":1.003,"clr":1},{"x":88.945,"y":20.422,"w":2.75,"h":1.003,"clr":1},{"x":92.039,"y":20.422,"w":2.75,"h":1.003,"clr":1},{"x":75.883,"y":20.422,"w":2.75,"h":1.003,"clr":1},{"x":78.977,"y":20.422,"w":2.75,"h":1.003,"clr":1},{"x":47.425,"y":15.037,"w":2.75,"h":1.003,"clr":1},{"x":50.175,"y":15.037,"w":2.75,"h":1.003,"clr":1},{"x":61.081,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":63.831,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":66.581,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":55.065,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":57.815,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":18.133,"y":15.037,"w":2.75,"h":1.003,"clr":1},{"x":20.883,"y":15.037,"w":2.75,"h":1.003,"clr":1},{"x":31.616,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":34.366,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":37.116,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":25.601,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"x":28.351,"y":15.064,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.763,"y":25.556,"w":25.884,"h":1.25,"clr":-1},{"x":82.027,"y":25.625,"w":2.75,"h":1.003,"clr":1},{"x":85.809,"y":25.625,"w":2.75,"h":1.003,"clr":1},{"x":88.902,"y":25.625,"w":2.75,"h":1.003,"clr":1},{"x":91.996,"y":25.625,"w":2.75,"h":1.003,"clr":1},{"x":75.84,"y":25.625,"w":2.75,"h":1.003,"clr":1},{"x":78.934,"y":25.625,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.806,"y":27.028,"w":25.884,"h":1.25,"clr":-1},{"x":82.07,"y":27.097,"w":2.75,"h":1.003,"clr":1},{"x":85.852,"y":27.097,"w":2.75,"h":1.003,"clr":1},{"x":88.945,"y":27.097,"w":2.75,"h":1.003,"clr":1},{"x":92.039,"y":27.097,"w":2.75,"h":1.003,"clr":1},{"x":75.883,"y":27.097,"w":2.75,"h":1.003,"clr":1},{"x":78.977,"y":27.097,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.68,"y":34.416,"w":25.884,"h":1.25,"clr":-1},{"x":81.944,"y":34.484,"w":2.75,"h":1.003,"clr":1},{"x":85.725,"y":34.484,"w":2.75,"h":1.003,"clr":1},{"x":88.819,"y":34.484,"w":2.75,"h":1.003,"clr":1},{"x":91.913,"y":34.484,"w":2.75,"h":1.003,"clr":1},{"x":75.756,"y":34.484,"w":2.75,"h":1.003,"clr":1},{"x":78.85,"y":34.484,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.746,"y":19.072,"w":25.884,"h":1.25,"clr":-1},{"x":82.01,"y":19.141,"w":2.75,"h":1.003,"clr":1},{"x":85.791,"y":19.141,"w":2.75,"h":1.003,"clr":1},{"x":88.885,"y":19.141,"w":2.75,"h":1.003,"clr":1},{"x":91.979,"y":19.141,"w":2.75,"h":1.003,"clr":1},{"x":75.823,"y":19.141,"w":2.75,"h":1.003,"clr":1},{"x":78.916,"y":19.141,"w":2.75,"h":1.003,"clr":1},{"x":82.027,"y":38.853,"w":2.75,"h":1.003,"clr":1},{"x":85.809,"y":38.853,"w":2.75,"h":1.003,"clr":1},{"x":88.902,"y":38.853,"w":2.75,"h":1.003,"clr":1},{"x":91.996,"y":38.853,"w":2.75,"h":1.003,"clr":1},{"x":75.84,"y":38.853,"w":2.75,"h":1.003,"clr":1},{"x":78.934,"y":38.853,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.875,"y":22.685,"w":25.884,"h":1.25,"clr":-1},{"x":82.139,"y":22.754,"w":2.75,"h":1.003,"clr":1},{"x":85.92,"y":22.754,"w":2.75,"h":1.003,"clr":1},{"x":89.014,"y":22.754,"w":2.75,"h":1.003,"clr":1},{"x":92.108,"y":22.754,"w":2.75,"h":1.003,"clr":1},{"x":75.952,"y":22.754,"w":2.75,"h":1.003,"clr":1},{"x":79.045,"y":22.754,"w":2.75,"h":1.003,"clr":1},{"oc":"#def3ee","x":72.82,"y":21.538,"w":25.884,"h":1.25,"clr":-1},{"x":82.084,"y":21.607,"w":2.75,"h":1.003,"clr":1},{"x":85.866,"y":21.607,"w":2.75,"h":1.003,"clr":1},{"x":88.959,"y":21.607,"w":2.75,"h":1.003,"clr":1},{"x":92.053,"y":21.607,"w":2.75,"h":1.003,"clr":1},{"x":75.897,"y":21.607,"w":2.75,"h":1.003,"clr":1},{"x":78.991,"y":21.607,"w":2.75,"h":1.003,"clr":1},{"x":82.07,"y":40.275,"w":2.75,"h":1.003,"clr":1},{"x":85.852,"y":40.275,"w":2.75,"h":1.003,"clr":1},{"x":88.945,"y":40.275,"w":2.75,"h":1.003,"clr":1},{"x":92.039,"y":40.275,"w":2.75,"h":1.003,"clr":1},{"x":75.883,"y":40.275,"w":2.75,"h":1.003,"clr":1},{"x":78.977,"y":40.275,"w":2.75,"h":1.003,"clr":1},{"x":47.511,"y":16.281,"w":2.75,"h":1.003,"clr":1},{"x":50.261,"y":16.281,"w":2.75,"h":1.003,"clr":1},{"x":61.167,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":63.917,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":66.667,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":55.151,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":57.901,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":18.219,"y":16.281,"w":2.75,"h":1.003,"clr":1},{"x":20.969,"y":16.281,"w":2.75,"h":1.003,"clr":1},{"x":31.702,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":34.452,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":37.202,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":25.687,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":28.437,"y":16.308,"w":2.75,"h":1.003,"clr":1},{"x":82.07,"y":41.667,"w":2.75,"h":1.003,"clr":1},{"x":85.852,"y":41.667,"w":2.75,"h":1.003,"clr":1},{"x":88.945,"y":41.667,"w":2.75,"h":1.003,"clr":1},{"x":92.039,"y":41.667,"w":2.75,"h":1.003,"clr":1},{"x":75.883,"y":41.667,"w":2.75,"h":1.003,"clr":1},{"x":78.977,"y":41.667,"w":2.75,"h":1.003,"clr":1}],"Texts":[{"oc":"#2b2e34","x":86.203,"y":47.194,"w":4.888,"clr":-1,"A":"left","R":[{"T":"File%20order%207","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":12.58,"y":1.573,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.58,"y":2.098,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"x":24.638,"y":2.08,"w":2.424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":31.512,"y":2.08,"w":11.118,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20U%20Additional%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":31.341,"y":2.93,"w":11.983,"clr":-1,"A":"left","R":[{"T":"Miscellaneous%20Credits%20and%20%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":30.89,"y":3.7800000000000002,"w":5.924,"clr":-1,"A":"left","R":[{"T":"%20Contributions","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":44.025,"y":45.765,"w":9.555,"clr":-1,"A":"left","R":[{"T":"2013%20SCHEDULE%20U%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":44.025,"y":46.39,"w":21.57700000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20Miscellaneous%20Credits%20and%20Contributions","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":14.351,"y":47.108,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2009%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.141,"y":4.686,"w":5.429,"clr":-1,"A":"left","R":[{"T":"Important%3A%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":15.55,"y":4.686,"w":24.418999999999997,"clr":-1,"A":"left","R":[{"T":"Print%20in%20CAPITAL%20letters%20using%20black%20ink.%20Attach%20to%20D-40.","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#2b2e34","x":7.141,"y":5.374,"w":3.177,"clr":-1,"A":"left","R":[{"T":"NOTE%3A%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.508,"y":5.374,"w":32.787800000000026,"clr":-1,"A":"left","R":[{"T":"Contribution(s)%20will%20either%20decrease%20a%20refund%20or%20increase%20the%20tax%20owed%20by%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.141,"y":5.999,"w":12.841,"clr":-1,"A":"left","R":[{"T":"amount%20of%20the%20contribution(s).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.859,"y":7.609,"w":9.088,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20last%20name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.234,"y":7.609,"w":10.241000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.859,"y":9.677,"w":2.223,"clr":-1,"A":"left","R":[{"T":"Part%20I","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":13.5,"y":9.677,"w":3.023,"clr":-1,"A":"left","R":[{"T":"Credits","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":10.969,"y":10.396,"w":11.113,"clr":-1,"A":"left","R":[{"T":"%20a.%20Nonrefundable%20Credits","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":51.34,"y":11.834,"w":7.386,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.734,"y":11.834,"w":0.602,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.378,"y":12.396,"w":16.000000000000004,"clr":-1,"A":"left","R":[{"T":"Dependents%20cannot%20claim%20this%20credit.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":13.271,"w":13.639,"clr":-1,"A":"left","R":[{"T":"2%20Enter%20state%20income%20tax%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.447,"y":18.333,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":14.897,"y":18.334,"w":35.67600000000001,"clr":-1,"A":"left","R":[{"T":"Total%20of%20Line%202%20state%20tax%20credits%20and%20any%20additional%20tax%20credits%20from%20the%20attachments.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":14.896,"y":19.146,"w":6.335999999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.39,"y":19.146,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":20.346,"w":18.661999999999992,"clr":-1,"A":"left","R":[{"T":"4%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":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":42.367,"y":20.346,"w":4.849,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":70.41,"y":20.346,"w":13.0294,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":21.546,"w":18.661999999999992,"clr":-1,"A":"left","R":[{"T":"5%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":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":42.367,"y":21.546,"w":4.849,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":22.796,"w":32.168000000000006,"clr":-1,"A":"left","R":[{"T":"6%20Total%20your%20nonrefundable%20credits%2C%20enter%20here%20and%20on%20Form%20D-40%2C%20Line%2024.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.577,"y":22.796,"w":0.602,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.438,"y":24.334,"w":9.398000000000001,"clr":-1,"A":"left","R":[{"T":"b.%20Refundable%20Credits","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":13.5,"y":27.09,"w":18.661999999999992,"clr":-1,"A":"left","R":[{"T":"2%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":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":42.367,"y":27.09,"w":4.849,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":70.391,"y":27.09,"w":0.602,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":28.527,"w":18.661999999999992,"clr":-1,"A":"left","R":[{"T":"3%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":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":42.367,"y":28.527,"w":4.849,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":70.391,"y":28.527,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":29.965,"w":30.592999999999996,"clr":-1,"A":"left","R":[{"T":"4%20Total%20your%20refundable%20credits%2C%20enter%20here%20and%20on%20Form%20D-40%2C%20Line%2030.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.577,"y":29.965,"w":0.602,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.859,"y":31.683999999999997,"w":8.847,"clr":-1,"A":"left","R":[{"T":"Part%20II%20Contributions","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":22.427,"y":31.683999999999997,"w":16.541999999999998,"clr":-1,"A":"left","R":[{"T":"%20(The%20minimum%20contribution%20is%20%241.00.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":33.121,"w":14.565,"clr":-1,"A":"left","R":[{"T":"1%20DC%20Statehood%20Delegation%20Fund.","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":69.925,"y":33.121,"w":1.204,"clr":-1,"A":"left","R":[{"T":"%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":34.559,"w":24.052,"clr":-1,"A":"left","R":[{"T":"2%20Public%20Fund%20for%20Drug%20Prevention%20and%20Children%20at%20Risk.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.577,"y":34.559,"w":0.903,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":35.996,"w":21.04,"clr":-1,"A":"left","R":[{"T":"3%20%20Anacostia%20River%20Cleanup%20and%20Protection%20Fund.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.391,"y":35.996,"w":0.602,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":37.434,"w":18.661999999999992,"clr":-1,"A":"left","R":[{"T":"4%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":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":42.367,"y":37.434,"w":4.849,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":70.391,"y":37.434,"w":0.602,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":38.871,"w":18.661999999999992,"clr":-1,"A":"left","R":[{"T":"5%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":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":42.367,"y":38.871,"w":4.849,"clr":-1,"A":"left","R":[{"T":"RESERVED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":70.391,"y":38.871,"w":0.602,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.328,"y":40.309,"w":0.596,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":14.878,"y":40.309,"w":33.56000000000003,"clr":-1,"A":"left","R":[{"T":"If%20due%20a%20refund%2C%20total%20your%20contribution(s)%2C%20enter%20here%20and%20on%20Form%20D-40%2C%20Line%2039.","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#2b2e34","x":70.308,"y":40.309,"w":3.3173,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":41.746,"w":35.452999999999996,"clr":-1,"A":"left","R":[{"T":"7%20If%20you%20owe%20tax%2C%20total%20your%20contribution(s)%2C%20enter%20here%20and%20on%20Form%20D-40%2C%20Line%2042.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.419,"y":41.746,"w":0.602,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.859,"y":43.215,"w":50.670000000000016,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20not%20due%20a%20refund%20and%20do%20not%20owe%20additional%20tax%2C%20total%20your%20contribution(s)%20and%20enter%20on%20Form%20D-40%2C%20Line%2042.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.859,"y":44.215,"w":55.59300000000005,"clr":-1,"A":"left","R":[{"T":"If%20you%20owe%20tax%2C%20make%20the%20payment%20plus%20any%20contribution(s)%2C%20payable%20to%20the%20DC%20Treasurer%20and%20mail%20it%20with%20your%20return.%20Attach%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.859,"y":44.84,"w":13.211999999999998,"clr":-1,"A":"left","R":[{"T":"schedule%20to%20your%20D-40%20Return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.982,"y":13.273,"w":30.192999999999984,"clr":-1,"A":"left","R":[{"T":"List%20additional%20states%20on%20a%20separate%20sheet%2C%20attach%20it%20to%20this%20Schedule.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":34.096,"y":13.835,"w":22.578999999999994,"clr":-1,"A":"left","R":[{"T":"(Enter%20total%20of%20all%20state%20tax%20credits%20on%20Line%203%20below.)%20","S":-1,"TS":[0,11,0,0]}]},{"x":73.905,"y":28.528,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.155,"y":28.528,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.778,"y":28.528,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.905,"y":35.951,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.155,"y":35.952,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.778,"y":35.951,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.905,"y":37.43,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.155,"y":37.43,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.778,"y":37.43,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":72.969,"y":11.675,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":74.219,"y":11.675,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":94.841,"y":11.675,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.905,"y":33.091,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.155,"y":33.091,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.778,"y":33.091,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.905,"y":29.925,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.155,"y":29.925,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.778,"y":29.925,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":74,"y":20.434,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.25,"y":20.434,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.872,"y":20.434,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.957,"y":25.637,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.207,"y":25.637,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.829,"y":25.637,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":74,"y":27.109,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.25,"y":27.109,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.872,"y":27.109,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.873,"y":34.497,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.123,"y":34.497,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.746,"y":34.497,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.94,"y":19.153,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.19,"y":19.153,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.812,"y":19.153,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":73.957,"y":38.866,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.207,"y":38.866,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.829,"y":38.866,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":74.069,"y":22.767,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.319,"y":22.767,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.941,"y":22.767,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":74.014,"y":21.619,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.264,"y":21.619,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.886,"y":21.619,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":74,"y":40.288,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.25,"y":40.288,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.872,"y":40.288,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":11.438,"y":15.137,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.241,"y":15.137,"w":1.463,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":9,"TS":[0,12,1,0]}]},{"x":23.813,"y":15.137,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":39.797,"y":15.137,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":40.734,"y":15.137,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":43.217,"y":15.137,"w":2.406,"clr":-1,"A":"left","R":[{"T":"%20%20%20(b)%20","S":9,"TS":[0,12,1,0]}]},{"x":53.031,"y":15.137,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":69.359,"y":15.137,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":70.297,"y":15.137,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":11.438,"y":16.45,"w":2.459,"clr":-1,"A":"left","R":[{"T":"State%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.241,"y":16.45,"w":1.437,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":9,"TS":[0,12,1,0]}]},{"x":23.813,"y":16.45,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":39.797,"y":16.45,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":40.734,"y":16.45,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":43.217,"y":16.45,"w":2.406,"clr":-1,"A":"left","R":[{"T":"%20%20%20(d)%20","S":9,"TS":[0,12,1,0]}]},{"x":53.031,"y":16.45,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":69.359,"y":16.45,"w":0.303,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":70.297,"y":16.45,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"x":74,"y":41.742,"w":0.606,"clr":1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,16,1,0]}]},{"x":75.25,"y":41.742,"w":6.6659999999999995,"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.","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":95.872,"y":41.742,"w":1.204,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":70.377,"y":21.541,"w":0.602,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":11.834,"w":25.952000000000005,"clr":-1,"A":"left","R":[{"T":"1%20DC%20Government%20Employee%20first-time%20DC%20homebuyer%20credit%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.5,"y":25.652,"w":21.497000000000003,"clr":-1,"A":"left","R":[{"T":"1%20DC%20Non-custodial%20parent%20EITC%20(see%20Schedule%20N).","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.391,"y":25.652,"w":6.3210000000000015,"clr":-1,"A":"left","R":[{"T":"1%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]}]},{"x":45.297,"y":25.641,"w":47.46000000000001,"clr":0,"A":"left","R":[{"T":"Taxpayer%20Copy","S":2,"TS":[0,10,0,0]}]},{"x":59.048,"y":25.64,"w":42.02100000000001,"clr":0,"A":"left","R":[{"T":"Spouse%20Copy","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":629,"AM":1024,"x":9.337,"y":8.684,"w":54.222,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":630,"AM":1024,"x":65.113,"y":8.638,"w":31.762,"h":0.862},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"POLICECD","EN":0},"TI":631,"AM":0,"x":75.045,"y":11.827,"w":18.636,"h":0.854,"TU":"Line a1. DC Government Employee first-time DC homebuyer credit. See instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STCD_1_","EN":0},"TI":632,"AM":0,"x":18.38,"y":15.096,"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":"number","TypeInfo":{}},"id":{"Id":"AMT_1_","EN":0},"TI":633,"AM":0,"x":25.708,"y":15.175,"w":14.144,"h":0.854,"TU":"Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STCD_2_","EN":0},"TI":634,"AM":0,"x":47.653,"y":15.096,"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":"number","TypeInfo":{}},"id":{"Id":"AMT_2_","EN":0},"TI":635,"AM":0,"x":54.982,"y":15.159,"w":14.144,"h":0.854,"TU":"Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STCD_3_","EN":0},"TI":636,"AM":0,"x":18.415,"y":16.334,"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":"number","TypeInfo":{}},"id":{"Id":"AMT_3_","EN":0},"TI":637,"AM":0,"x":25.786,"y":16.47,"w":14.144,"h":0.854,"TU":"Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STCD_4_","EN":0},"TI":638,"AM":0,"x":47.708,"y":16.368,"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":"number","TypeInfo":{}},"id":{"Id":"AMT_4_","EN":0},"TI":639,"AM":0,"x":55.112,"y":16.431,"w":14.144,"h":0.854,"TU":"Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTTOT","EN":0},"TI":640,"AM":1024,"x":75.943,"y":19.313,"w":18.636,"h":0.854},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NONRFND","EN":0},"TI":641,"AM":1024,"x":76.148,"y":22.892,"w":18.636,"h":0.854},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHN"}},"id":{"Id":"Add_Schedule_U_Line_4","EN":0},"TI":642,"AM":0,"x":53.721,"y":25.745,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DCSCHNS"}},"id":{"Id":"Add_Schedule_U_Line_4","EN":0},"TI":643,"AM":0,"x":67.429,"y":25.718,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EITC","EN":0},"TI":644,"AM":0,"x":76.103,"y":25.747,"w":18.636,"h":0.854,"TU":"Line b1. DC Non-custodial parent EITC (see Schedule N)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RFNDBL","EN":0},"TI":645,"AM":1024,"x":75.911,"y":30.038,"w":18.636,"h":0.854},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATEFND","EN":0},"TI":646,"AM":0,"x":75.889,"y":33.218,"w":18.636,"h":0.854,"TU":"Line 1. DC Statehood Delegation Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DRUGTRST","EN":0},"TI":647,"AM":0,"x":76.019,"y":34.616,"w":18.636,"h":0.854,"TU":"Line 2. Public Fund for Drug Prevention and Children at Risk."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ANACOST","EN":0},"TI":648,"AM":0,"x":75.974,"y":36.096,"w":18.636,"h":0.854,"TU":"Line 3. Anacostia River Cleanup and Protection Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":649,"AM":1024,"x":76.029,"y":40.406,"w":18.636,"h":0.854},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OWETAX","EN":0},"TI":650,"AM":1024,"x":76.093,"y":41.774,"w":18.636,"h":0.854}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/form/VOUCH.content.txt b/test/data/dc/form/VOUCH.content.txt new file mode 100755 index 00000000..145ebe6a --- /dev/null +++ b/test/data/dc/form/VOUCH.content.txt @@ -0,0 +1,48 @@ +- +Revised 08/13 +2013 + D-40P + Payment Voucher +Government of the +District of Columbia +STAPLE CHECK OR MONEY ORDER HERE + +Your first name +M.I. + Last name +Spouse’s/registered domestic partner’s first name +M.I. + Last name +Home address (number, street and apartment) + + + +Amount of payment +$ +. +00 +Do not enter cents, enter dollars only. To avoid penalties and interest, +your payment must be postmarked no later than April 15, 2014. +D-40P PAYMENT VOUCHER +See instructions + +D-40P P1 +Payment Voucher + + + + +separately on same return, see instructions. +Important: Print in CAPITAL letters using black ink. If filing jointly, or filing +Your social security number (SSN) + +Spouse’s/registered domestic partner’s SSN + +Daytime telephone number +City + +State + +Zip Code +Detach at perforation and mail the voucher, with payment attached, to the Office of Tax and Revenue, PO Box 96169, Washington DC 20090-6169. +----------------Page (0) Break---------------- diff --git a/test/data/dc/form/VOUCH.fields.json b/test/data/dc/form/VOUCH.fields.json new file mode 100755 index 00000000..3acf8643 --- /dev/null +++ b/test/data/dc/form/VOUCH.fields.json @@ -0,0 +1 @@ +[{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPIN","type":"mask","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPIN","type":"mask","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"DAYPHONE","type":"phone","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"PAYMENT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/dc/form/VOUCH.json b/test/data/dc/form/VOUCH.json new file mode 100755 index 00000000..9223c33e --- /dev/null +++ b/test/data/dc/form/VOUCH.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"dsh":1,"oc":"#2b2e34","x":0.103,"y":33,"w":1.5,"l":105.188},{"oc":"#d1efe7","x":73.772,"y":28.826,"w":1.5,"l":5.801},{"oc":"#d1efe7","x":73.772,"y":28.076,"w":1.5,"l":5.801},{"oc":"#2b2e34","x":25.927,"y":18.535,"w":0.75,"l":5.712},{"oc":"#2b2e34","x":25.927,"y":17.441,"w":0.75,"l":5.712},{"oc":"#d1efe7","x":48.297,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":48.297,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":50.703,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":50.703,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":53.109,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":53.109,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":55.515,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":55.515,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":57.922,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":57.922,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":60.328,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":60.328,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":62.734,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":62.734,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.14,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.14,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":67.547,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":67.547,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":69.953,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":69.953,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.359,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.359,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":74.765,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":74.765,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":77.172,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":77.172,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":79.578,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":79.578,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":81.984,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":81.984,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":84.39,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":84.39,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":86.797,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":86.797,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":89.203,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":89.203,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":91.609,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":91.609,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":94.015,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":94.015,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.159,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.159,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.565,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.565,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":19.972,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":19.972,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":22.378,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":22.378,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":24.784,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":24.784,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.19,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.19,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":29.597,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":29.597,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.003,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.003,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":34.409,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":34.409,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":36.815,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":36.815,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":39.222,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":39.222,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":41.628,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":41.628,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":44.962,"y":22.46,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":44.962,"y":21.513,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":48.297,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":48.297,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":50.703,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":50.703,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":53.109,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":53.109,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":55.515,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":55.515,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":57.922,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":57.922,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":60.328,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":60.328,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":62.734,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":62.734,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.14,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.14,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":67.547,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":67.547,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":69.953,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":69.953,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.359,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.359,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":74.765,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":74.765,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":77.172,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":77.172,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":79.578,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":79.578,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":81.984,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":81.984,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":84.39,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":84.39,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":86.797,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":86.797,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":89.203,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":89.203,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":91.609,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":91.609,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":94.015,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":94.015,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":24.094,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":23.147,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":24.094,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":23.147,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.159,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.159,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.565,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.565,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":19.972,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":19.972,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":22.378,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":22.378,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":24.784,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":24.784,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.19,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.19,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":29.597,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":29.597,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.003,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.003,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":34.409,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":34.409,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":36.815,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":36.815,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":39.222,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":39.222,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":41.628,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":41.628,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":44.962,"y":24.097,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":44.962,"y":23.15,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.572,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.572,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.978,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.978,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":20.762,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":20.762,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":23.168,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":23.168,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":25.575,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":25.575,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.981,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.981,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.793,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.793,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":35.2,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":35.2,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":37.606,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":37.606,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":42.831,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":42.831,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":45.615,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":45.615,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":48.022,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":48.022,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":50.428,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":50.428,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":52.834,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":52.834,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":62.803,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":62.803,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.209,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.209,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":67.512,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":67.512,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.84,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.84,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":75.247,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":75.247,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":78.065,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":78.065,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":80.472,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":80.472,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":82.878,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":82.878,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":85.284,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":85.284,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":40.425,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":40.425,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":70.434,"y":25.706,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":70.434,"y":24.76,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":7.94,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":10.347,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":12.753,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.159,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":15.159,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.565,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":17.565,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":19.972,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":19.972,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":22.378,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":22.378,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":24.784,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":24.784,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.19,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":27.19,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":29.597,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":29.597,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.003,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":32.003,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":34.409,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":34.409,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":36.815,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":36.815,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":39.222,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":39.222,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":41.628,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":41.628,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":44.034,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":44.034,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":46.44,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":46.44,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":48.847,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":48.847,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":51.253,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":51.253,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":58.472,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":58.472,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":60.878,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":60.878,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.69,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":65.69,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":68.097,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":68.097,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":70.503,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":70.503,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.909,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":72.909,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":53.659,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":53.659,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":75.315,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":75.315,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":78.822,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":78.822,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":81.056,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":81.056,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":83.29,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":83.29,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":85.525,"y":28.916,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":85.525,"y":27.969,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":37.838,"y":30.3,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":37.838,"y":29.353,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":40.081,"y":30.3,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":40.081,"y":29.353,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":42.367,"y":30.3,"w":1.5,"l":2.097},{"oc":"#d1efe7","x":42.367,"y":29.353,"w":1.5,"l":2.097},{"oc":"#d1efe7","x":30.825,"y":30.3,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":30.825,"y":29.353,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":33.077,"y":30.3,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":33.077,"y":29.353,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":35.32,"y":30.3,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":35.32,"y":29.353,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":23.804,"y":30.3,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":23.804,"y":29.353,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":26.047,"y":30.3,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":26.047,"y":29.353,"w":1.5,"l":2.131},{"oc":"#d1efe7","x":28.325,"y":30.3,"w":1.5,"l":2.097},{"oc":"#d1efe7","x":28.325,"y":29.353,"w":1.5,"l":2.097},{"dsh":1,"oc":"#2b2e34","x":0.097,"y":16.478,"w":1.5,"l":105.188},{"oc":"#d1efe7","x":8.026,"y":27.344,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":8.026,"y":26.291,"w":1.5,"l":2.303},{"oc":"#d1efe7","x":10.372,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":10.372,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.968,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":12.968,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.563,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":15.563,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.158,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":18.158,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.754,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":20.754,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.349,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":23.349,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.944,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":25.944,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.54,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":28.54,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.135,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":31.135,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.73,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":33.73,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.325,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":36.325,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.041,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":39.041,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.636,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":41.636,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.232,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":44.232,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.827,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":46.827,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.422,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":49.422,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.018,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":52.018,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.613,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":54.613,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":57.208,"y":27.354,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":57.208,"y":26.291,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":59.804,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":59.804,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":62.399,"y":27.354,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":62.399,"y":26.291,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":64.994,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":64.994,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.59,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":67.59,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":70.185,"y":27.354,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":70.185,"y":26.291,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":72.78,"y":27.354,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":72.78,"y":26.291,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":75.375,"y":27.354,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":75.375,"y":26.291,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":80.807,"y":27.394,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":80.807,"y":26.332,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.402,"y":27.394,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":83.402,"y":26.332,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":85.997,"y":27.394,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":85.997,"y":26.332,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":88.593,"y":27.394,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":88.593,"y":26.332,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":91.188,"y":27.394,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":91.188,"y":26.332,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":78.048,"y":27.394,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":78.048,"y":26.332,"w":1.5,"l":2.553},{"oc":"#d1efe7","x":93.922,"y":27.394,"w":1.5,"l":2.552},{"oc":"#d1efe7","x":93.922,"y":26.332,"w":1.5,"l":2.552},{"clr":1,"x":-4.125,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":0,"w":1.875,"l":2.578},{"clr":1,"x":-4.125,"y":49.5,"w":1.875,"l":2.578},{"clr":1,"x":106.734,"y":49.5,"w":1.875,"l":2.578},{"x":-4.125,"y":0,"w":0.375,"l":2.578},{"x":106.734,"y":0,"w":0.375,"l":2.578},{"x":-4.125,"y":49.5,"w":0.375,"l":2.578},{"x":106.734,"y":49.5,"w":0.375,"l":2.578}],"VLines":[{"oc":"#d1efe7","x":79.572,"y":28.076,"w":1.5,"l":0.75},{"oc":"#d1efe7","x":73.772,"y":28.076,"w":1.5,"l":0.75},{"oc":"#2b2e34","x":31.639,"y":17.441,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":25.927,"y":17.441,"w":0.75,"l":1.094},{"oc":"#d1efe7","x":50.428,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":48.297,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":52.834,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":50.703,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":55.24,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":53.109,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":57.647,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":55.515,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":60.053,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":57.922,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":62.459,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":60.328,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":64.865,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":62.734,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":67.272,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":65.14,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":69.678,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":67.547,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.084,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":69.953,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":74.49,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.359,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":76.897,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":74.765,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":79.303,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":77.172,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":81.709,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":79.578,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":84.115,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":81.984,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":86.522,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":84.39,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":88.928,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":86.797,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":91.334,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":89.203,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":93.74,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":91.609,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":96.147,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":94.015,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.072,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":7.94,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.478,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.347,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":14.884,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.753,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.29,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":15.159,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":19.697,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.565,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":22.103,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":19.972,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":24.509,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":22.378,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":26.915,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":24.784,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":29.322,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":27.19,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":31.728,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":29.597,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":34.134,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":32.003,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":36.54,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":34.409,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":38.947,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":36.815,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":41.353,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":39.222,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":43.759,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":41.628,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":47.093,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":44.962,"y":21.513,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":50.428,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":48.297,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":52.834,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":50.703,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":55.24,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":53.109,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":57.647,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":55.515,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":60.053,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":57.922,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":62.459,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":60.328,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":64.865,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":62.734,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":67.272,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":65.14,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":69.678,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":67.547,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.084,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":69.953,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":74.49,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.359,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":76.897,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":74.765,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":79.303,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":77.172,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":81.709,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":79.578,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":84.115,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":81.984,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":86.522,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":84.39,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":88.928,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":86.797,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":91.334,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":89.203,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":93.74,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":91.609,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":96.147,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":94.015,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.072,"y":23.147,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":7.94,"y":23.147,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.478,"y":23.147,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.347,"y":23.147,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":14.884,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.753,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.29,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":15.159,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":19.697,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.565,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":22.103,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":19.972,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":24.509,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":22.378,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":26.915,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":24.784,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":29.322,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":27.19,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":31.728,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":29.597,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":34.134,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":32.003,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":36.54,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":34.409,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":38.947,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":36.815,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":41.353,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":39.222,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":43.759,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":41.628,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":47.093,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":44.962,"y":23.15,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.072,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":7.94,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.478,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.347,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":14.884,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.753,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.703,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":15.572,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":20.109,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.978,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":22.893,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":20.762,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":25.3,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":23.168,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":27.706,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":25.575,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":30.112,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":27.981,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":34.925,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":32.793,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":37.331,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":35.2,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":39.737,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":37.606,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":44.962,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":42.831,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":47.747,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":45.615,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":50.153,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":48.022,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":52.559,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":50.428,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":54.965,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":52.834,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":64.934,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":62.803,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":67.34,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":65.209,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":69.643,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":67.512,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":74.972,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.84,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":77.378,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":75.247,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":80.196,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":78.065,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":82.603,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":80.472,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":85.009,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":82.878,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":87.415,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":85.284,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":42.556,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":40.425,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.565,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":70.434,"y":24.76,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.072,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":7.94,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.478,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.347,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":14.884,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":12.753,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.29,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":15.159,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":19.697,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":17.565,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":22.103,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":19.972,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":24.509,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":22.378,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":26.915,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":24.784,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":29.322,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":27.19,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":31.728,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":29.597,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":34.134,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":32.003,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":36.54,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":34.409,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":38.947,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":36.815,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":41.353,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":39.222,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":43.759,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":41.628,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":46.165,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":44.034,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":48.572,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":46.44,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":50.978,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":48.847,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":53.384,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":51.253,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":60.603,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":58.472,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":63.009,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":60.878,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":67.821,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":65.69,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":70.228,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":68.097,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.634,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":70.503,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":75.04,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":72.909,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":55.79,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":53.659,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":77.446,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":75.315,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":80.953,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":78.822,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":83.187,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":81.056,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":85.422,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":83.29,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":87.656,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":85.525,"y":27.969,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":39.969,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":37.838,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":42.212,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":40.081,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":44.464,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":42.367,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":32.957,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":30.825,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":35.208,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":33.077,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":37.451,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":35.32,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":25.936,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":23.804,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":28.179,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":26.047,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":30.422,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":28.325,"y":29.353,"w":1.5,"l":0.947},{"oc":"#d1efe7","x":10.329,"y":26.291,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":8.026,"y":26.291,"w":1.5,"l":1.053},{"oc":"#d1efe7","x":12.925,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":10.372,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.52,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":12.968,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.115,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":15.563,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.711,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":18.158,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.306,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":20.754,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.901,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":23.349,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.497,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":25.944,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.092,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":28.54,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.687,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":31.135,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.282,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":33.73,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":38.878,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":36.325,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.593,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":39.041,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.189,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":41.636,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.784,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":44.232,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.379,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":46.827,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":51.975,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":49.422,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.57,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":52.018,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.165,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":54.613,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.761,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":57.208,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.356,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":59.804,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.951,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":62.399,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.547,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":64.994,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.142,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":67.59,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.737,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":70.185,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.332,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":72.78,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":77.928,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":75.375,"y":26.291,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.359,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.807,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.954,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":83.402,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.55,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":85.997,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.145,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":88.593,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.74,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":91.188,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":80.601,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":78.048,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":96.474,"y":26.332,"w":1.5,"l":1.063},{"oc":"#d1efe7","x":93.922,"y":26.332,"w":1.5,"l":1.063},{"dsh":1,"oc":"#ff2d16","x":3.094,"y":-0.563,"w":1.5,"l":50.625},{"clr":1,"x":0,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":0,"y":50.063,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":-1.5,"w":1.875,"l":0.938},{"clr":1,"x":105.188,"y":50.063,"w":1.875,"l":0.938},{"x":0,"y":-1.5,"w":0.375,"l":0.938},{"x":0,"y":50.063,"w":0.375,"l":0.938},{"x":105.188,"y":-1.5,"w":0.375,"l":0.938},{"x":105.188,"y":50.063,"w":0.375,"l":0.938}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":0,"y":0,"w":105.188,"h":49.5,"clr":1},{"oc":"#e8f7f3","x":7.047,"y":20.685,"w":91.266,"h":10.266,"clr":-1},{"oc":"#2b2e34","x":25.927,"y":17.441,"w":5.712,"h":1.094,"clr":-1},{"x":48.297,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":50.703,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":53.109,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":55.515,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":57.922,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":60.328,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":62.734,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":65.14,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":67.547,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":69.953,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":72.359,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":74.765,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":77.172,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":79.578,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":81.984,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":84.39,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":86.797,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":89.203,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":91.609,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":94.015,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":7.94,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":10.347,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":12.753,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":15.159,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":17.565,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":19.972,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":22.378,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":24.784,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":27.19,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":29.597,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":32.003,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":34.409,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":36.815,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":39.222,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":41.628,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":44.962,"y":21.513,"w":2.131,"h":0.947,"clr":1},{"x":48.297,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":50.703,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":53.109,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":55.515,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":57.922,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":60.328,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":62.734,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":65.14,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":67.547,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":69.953,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":72.359,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":74.765,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":77.172,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":79.578,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":81.984,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":84.39,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":86.797,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":89.203,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":91.609,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":94.015,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":7.94,"y":23.147,"w":2.131,"h":0.947,"clr":1},{"x":10.347,"y":23.147,"w":2.131,"h":0.947,"clr":1},{"x":12.753,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":15.159,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":17.565,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":19.972,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":22.378,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":24.784,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":27.19,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":29.597,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":32.003,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":34.409,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":36.815,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":39.222,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":41.628,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":44.962,"y":23.15,"w":2.131,"h":0.947,"clr":1},{"x":7.94,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":10.347,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":12.753,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":15.572,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":17.978,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":20.762,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":23.168,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":25.575,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":27.981,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":32.793,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":35.2,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":37.606,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":42.831,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":45.615,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":48.022,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":50.428,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":52.834,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":62.803,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":65.209,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":67.512,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":72.84,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":75.247,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":78.065,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":80.472,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":82.878,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":85.284,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":40.425,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":70.434,"y":24.76,"w":2.131,"h":0.947,"clr":1},{"x":7.94,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":10.347,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":12.753,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":15.159,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":17.565,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":19.972,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":22.378,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":24.784,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":27.19,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":29.597,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":32.003,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":34.409,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":36.815,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":39.222,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":41.628,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":44.034,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":46.44,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":48.847,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":51.253,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":58.472,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":60.878,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":65.69,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":68.097,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":70.503,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":72.909,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":53.659,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":75.315,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":78.822,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":81.056,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":83.29,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":85.525,"y":27.969,"w":2.131,"h":0.947,"clr":1},{"x":37.838,"y":29.353,"w":2.131,"h":0.947,"clr":1},{"x":40.081,"y":29.353,"w":2.131,"h":0.947,"clr":1},{"x":42.367,"y":29.353,"w":2.097,"h":0.947,"clr":1},{"x":30.825,"y":29.353,"w":2.131,"h":0.947,"clr":1},{"x":33.077,"y":29.353,"w":2.131,"h":0.947,"clr":1},{"x":35.32,"y":29.353,"w":2.131,"h":0.947,"clr":1},{"x":23.804,"y":29.353,"w":2.131,"h":0.947,"clr":1},{"x":26.047,"y":29.353,"w":2.131,"h":0.947,"clr":1},{"x":28.325,"y":29.353,"w":2.097,"h":0.947,"clr":1},{"x":8.026,"y":26.291,"w":2.303,"h":1.053,"clr":1},{"x":10.372,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":12.968,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":15.563,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":18.158,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":20.754,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":23.349,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":25.944,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":28.54,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":31.135,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":33.73,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":36.325,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":39.041,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":41.636,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":44.232,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":46.827,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":49.422,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":52.018,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":54.613,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":57.208,"y":26.291,"w":2.553,"h":1.063,"clr":1},{"x":59.804,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":62.399,"y":26.291,"w":2.553,"h":1.063,"clr":1},{"x":64.994,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":67.59,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":70.185,"y":26.291,"w":2.553,"h":1.063,"clr":1},{"x":72.78,"y":26.291,"w":2.552,"h":1.063,"clr":1},{"x":75.375,"y":26.291,"w":2.553,"h":1.063,"clr":1},{"x":80.807,"y":26.332,"w":2.552,"h":1.063,"clr":1},{"x":83.402,"y":26.332,"w":2.552,"h":1.063,"clr":1},{"x":85.997,"y":26.332,"w":2.553,"h":1.063,"clr":1},{"x":88.593,"y":26.332,"w":2.552,"h":1.063,"clr":1},{"x":91.188,"y":26.332,"w":2.553,"h":1.063,"clr":1},{"x":78.048,"y":26.332,"w":2.553,"h":1.063,"clr":1},{"x":93.922,"y":26.332,"w":2.552,"h":1.063,"clr":1}],"Texts":[{"oc":"#2b2e34","x":78.201,"y":27.94,"w":0.33,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":14.201,"y":31.529000000000003,"w":6.276000000000002,"clr":-1,"A":"left","R":[{"T":"Revised%2008%2F13","S":-1,"TS":[0,9.5,0,0]}]},{"x":26.098,"y":17.436,"w":2.3424,"clr":1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":31.115,"y":17.436,"w":3.2661999999999995,"clr":-1,"A":"left","R":[{"T":"%20%20D-40P","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":38.025,"y":17.436,"w":8.073,"clr":-1,"A":"left","R":[{"T":"%20Payment%20Voucher%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":12.468,"y":17.134,"w":7.834,"clr":-1,"A":"left","R":[{"T":"Government%20of%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.468,"y":17.603,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.579,"y":28.453,"w":18.90000000000001,"clr":-1,"A":"left","R":[{"T":"STAPLE%20CHECK%20OR%20MONEY%20ORDER%20HERE","S":52,"TS":[0,9,1,0],"RA":90}]},{"oc":"#2b2e34","x":7.776,"y":20.576,"w":7.180400000000001,"clr":-1,"A":"left","R":[{"T":"Your%20%EF%AC%81rst%20name%20%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":45.073,"y":20.576,"w":1.7606000000000002,"clr":-1,"A":"left","R":[{"T":"M.I.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":47.978,"y":20.576,"w":5.118900000000001,"clr":-1,"A":"left","R":[{"T":"%20Last%20name%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":7.776,"y":22.201,"w":21.4531,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20%EF%AC%81rst%20name%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":45.073,"y":22.201,"w":1.7606000000000002,"clr":-1,"A":"left","R":[{"T":"M.I.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":47.978,"y":22.201,"w":5.118900000000001,"clr":-1,"A":"left","R":[{"T":"%20Last%20name%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":7.7780000000000005,"y":25.451,"w":20.427600000000005,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%2C%20street%20and%20apartment)%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":7.827999999999999,"y":29.258,"w":9.033,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20payment%20%20","S":3,"TS":[0,12,0,0]}]},{"x":21.798,"y":29.245,"w":10.836000000000004,"clr":1,"A":"left","R":[{"T":"%24%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,14.999962404107773,0,0],"RA":-0.18477978814926863}]},{"x":44.149,"y":29.258,"w":0.302,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":44.772,"y":29.258,"w":1.208,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":48.854,"y":28.952,"w":30.437999999999978,"clr":-1,"A":"left","R":[{"T":"Do%20not%20enter%20cents%2C%20enter%20dollars%20only.%20To%20avoid%20penalties%20and%20interest%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":48.854,"y":29.546,"w":27.90099999999999,"clr":-1,"A":"left","R":[{"T":"your%20payment%20must%20be%20postmarked%20no%20later%20than%20April%2015%2C%202014.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":40.007,"y":1.572,"w":12.282,"clr":-1,"A":"left","R":[{"T":"D-40P%20PAYMENT%20VOUCHER","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":40.533,"y":2.822,"w":7.684,"clr":-1,"A":"left","R":[{"T":"See%20instructions","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":44.157,"y":30.637,"w":4.62,"clr":-1,"A":"left","R":[{"T":"D-40P%20%20P1","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":44.157,"y":31.137,"w":7.471,"clr":-1,"A":"left","R":[{"T":"Payment%20Voucher","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":6.195,"y":19.578,"w":19.7094,"clr":-1,"A":"left","R":[{"T":"separately%20on%20same%20return%2C%20see%20instructions.","S":-1,"TS":[0,11.2,0,0]}]},{"x":6.109,"y":18.992,"w":257.8720000000001,"clr":0,"A":"left","R":[{"T":"Important%3A%20Print%20in%20CAPITAL%20letters%20using%20black%20ink.%20If%20filing%20jointly%2C%20or%20filing","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.776,"y":23.826,"w":14.809700000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20(SSN)","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":32.698,"y":23.826,"w":18.701800000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%2Fregistered%20domestic%20partner%E2%80%99s%20SSN","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":62.566,"y":23.826,"w":11.691600000000003,"clr":-1,"A":"left","R":[{"T":"Daytime%20telephone%20number","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":7.7780000000000005,"y":27.076,"w":1.6520000000000001,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":59.596,"y":27.076,"w":2.2030000000000003,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":66.017,"y":27.076,"w":3.8340000000000005,"clr":-1,"A":"left","R":[{"T":"Zip%20Code","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":3.825,"y":14.68,"w":64.61299999999999,"clr":-1,"A":"left","R":[{"T":"Detach%20at%20perforation%20and%20mail%20the%20voucher%2C%20with%20payment%20attached%2C%20to%20the%20Of%EF%AC%81ce%20of%20Tax%20and%20Revenue%2C%20PO%20Box%2096169%2C%20Washington%20DC%2020090-6169.","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":651,"AM":1024,"x":8.012,"y":21.556,"w":35.42,"h":0.897,"TU":"Your First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPIN","EN":0},"TI":652,"AM":1024,"x":44.631,"y":21.516,"w":2.899,"h":0.9,"TU":"Your Middlie Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":653,"AM":1024,"x":48.396,"y":21.592,"w":47.885,"h":0.897,"TU":"Your Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":654,"AM":1024,"x":8.224,"y":23.129,"w":35.398,"h":0.919,"TU":"Spouse's/Registered Domestic Partners's First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIN","EN":0},"TI":655,"AM":1024,"x":44.443,"y":23.186,"w":3.148,"h":0.867,"TU":"Spouse's/Registered Domestic Partners's Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":656,"AM":1024,"x":48.313,"y":23.198,"w":47.914,"h":0.897,"TU":"Spouse's/Registered Domestic Partners's Last Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":657,"AM":1024,"x":8.19,"y":24.787,"w":22.262,"h":0.868,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":658,"AM":1024,"x":32.422,"y":24.785,"w":22.689,"h":0.9,"TU":"Spouse's/Registered Domestic Partner's Social Security Number"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DAYPHONE","EN":0},"TI":659,"AM":1024,"x":62.606,"y":24.785,"w":24.804,"h":0.919,"TU":"Daytime Telephone Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":660,"AM":1024,"x":8.097,"y":26.322,"w":88.361,"h":1.008,"TU":"Home Address (number, street and apartment)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":661,"AM":1024,"x":8.026,"y":28.002,"w":48.345,"h":0.938,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":662,"AM":1024,"x":58.479,"y":28.045,"w":4.399,"h":0.9,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":663,"AM":1024,"x":65.465,"y":28.067,"w":22.265,"h":0.919,"TU":"Postal Zip Code First 5 Digits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYMENT","EN":0},"TI":664,"AM":0,"x":23.505,"y":29.355,"w":20.782,"h":0.888,"TU":"Amount of Payment Due"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/dc/formselect.json b/test/data/dc/formselect.json new file mode 100755 index 00000000..84e6e794 --- /dev/null +++ b/test/data/dc/formselect.json @@ -0,0 +1,37 @@ +{ + "mainList": [ + { + "header": "Booklet DC 40EZ", + "imgUrl": "/img/dc/mainform01.png", + "title": "Use Form DC 40EZ if you have:", + "notes": [ + "Income from wages, tips, interest only", + "No Adjustments", + "No Dependents", + "Income is less than $100,000" + ], + "links": [ + {"id": "viewDc40EzInstructionsLink", "href": "/data/dc/inst/dc_ins_40.pdf", "label": "View Instructions", "className": "fsViewLink", "target": "_blank"}, + {"id": "viewDc40EzSupportedFormsLink", "href": "/#/dc/forms.availability", "label": "View Supported Forms", "className": "fsViewLink", "target": "_blank"}, + {"id": "selectDc40EzButton", "href": "DC40EZ", "label": "Start DC 40EZ", "className": "btn btn-small genericButton continueButton", "target": "_blank"} + ] + }, + { + "header": "Booklet DC 40", + "imgUrl": "/img/dc/mainform02.png", + "title": "Use Form DC 40 if you have:", + "notes": [ + "Income from wages, interest, dividends, pensions", + "Investment transactions", + "Business income", + "Itemized deductions", + "Any credits" + ], + "links": [ + {"id": "viewDc40InstructionsLink", "href": "/data/dc/inst/dc_ins_40.pdf", "label": "View Instructions", "className": "fsViewLink", "target": "_blank"}, + {"id": "viewDc40SupportedFormsLink", "href": "/#/dc/forms.availability", "label": "View Supported Forms", "className": "fsViewLink", "target": "_blank"}, + {"id": "selectDc40Button", "href": "DC40", "label": "Start DC 40", "className": "btn btn-small genericButton continueButton", "target": "_blank"} + ] + } + ] +} \ No newline at end of file diff --git a/test/data/dc/formset.json b/test/data/dc/formset.json new file mode 100755 index 00000000..d1934c66 --- /dev/null +++ b/test/data/dc/formset.json @@ -0,0 +1,46 @@ +{ + "formset":[ + { + "id": "S2013DCD", + "version": "0.1.1", + "agency": "dc", + "main": "DC40EZ", + "forms": [ + {"id": "DC40EZ", "name":"D-40EZ - Income Tax Return for Single and Joint Filers with No Dependents", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40ez", "efmid":"EFIDCEZ", "cid": "40"}, + {"id": "VOUCH", "name":"D-40P - Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40ez", "cid": "40P"} + + ] + }, + { + "id": "S2013DCD", + "version": "0.1.1", + "agency": "dc", + "main": "DC40", + "forms": [ + {"id": "DC40", "name":"D-40 - Individual Income Tax Forms", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "efmid":"EFINFODC", "cid": "40"}, + {"id": "VOUCH", "name":"D-40P - Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "40P"}, + {"id": "DCSCHH", "name":"SCHEDULE H - Homeowner and Renter Property Tax Credit", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "SchH", "mpf":"DCSCHH"}, + {"id": "DCSCHH34", "name":"SCHEDULE H, Page 3 - Homeowner and Renter Property Tax Credit", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "SchH", "mpf":"DCSCHH"}, + {"id": "DCSCHI", "name":"SCHEDULE I - Additions to and Subtractions from Federal Adjusted Gross Income", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "SchI"}, + {"id": "DCSCHN", "name":"SCHEDULE N - DC Non-Custodial Parent EITC Claim - Taxpayer Copy", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "SchNTaxpayer"}, + {"id": "DCSCHNS", "name":"SCHEDULE N - DC Non-Custodial Parent EITC Claim - Spouse Copy", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "SchNSpouse"}, + {"id": "DCSCHS", "name":"SCHEDULE S - Supplemental Information and Dependents", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "SchS"}, + {"id": "DCSCHU", "name":"SCHEDULE U - Additional Miscellaneous Credits and Contributions", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "SchU"}, + {"id": "DC2210", "name":"D-2210 - Underpayment of Estimated Income Tax By Individuals", "mc": false, "max": 1, "parent": null, + "inst":"dc_ins_40", "cid": "2210"} + + ] + } + ] +} \ No newline at end of file diff --git a/test/data/dc/inst/dc_ins_40.pdf b/test/data/dc/inst/dc_ins_40.pdf new file mode 100755 index 00000000..b93a175e Binary files /dev/null and b/test/data/dc/inst/dc_ins_40.pdf differ diff --git a/test/data/dc/pageset.json b/test/data/dc/pageset.json new file mode 100755 index 00000000..094b3dbd --- /dev/null +++ b/test/data/dc/pageset.json @@ -0,0 +1,65 @@ +{ + "headerData" :{ + "valueLabel": [ + {"href": "#/dc/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "http://otr.cfo.dc.gov/service/customer-service-center", "label": "Contact DC Tax", "target": "_blank", "styleClass": "formImage"}, + {"href": "#/dc/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "stateTaxUrl":"http://otr.cfo.dc.gov/", + "eFileLinkUrl":"http://otr.cfo.dc.gov/page/federal-and-state-e-file-program", + "faqFooter":"View more of your state-specific FAQs", + "howItWorksList": { + "item1":"Either e-file your return, or print your return and mail it in." + }, + "noteList": { + "item2": "This program does not support prior-year returns, part-year, non-resident or amended returns." + } + }, + + "landingData": { + "formNumber":"D40 or D40EZ", + "makeSureList": {}, + "tipsList": { + "item1":"Complete your federal return first. You will need the Federal Adjusted Gross Income (AGI) from your federal return to begin your state return." + }, + "beforeList": { + "item1":"Make sure the Federal Adjusted Gross Income (AGI) agrees with your federal return.", + "item2":"Enter your exemption.", + "item3":"Enter your standard or itemized deductions." + } + }, + + "loginData": { + "signInHelpLink":"http://otr.cfo.dc.gov/page/individual-income-special-circumstances-faqs" + }, + + "recoveryData": { + "forgotAnswerLink":"http://otr.cfo.dc.gov/page/individual-income-special-circumstances-faqs" + }, + + "homeHeaderData": { + "href": "http://otr.cfo.dc.gov/page/individual-income-special-circumstances-faqs" + }, + + "efileData": { + "efRefundLink":" https://www.taxpayerservicecenter.com/individual/Ind_RefundStatus_Logon.jsp", + "efRequiredInfo":"Social Security number and amount of your expected refund", + "efPaymentDueDate":"April 15, 2014", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + + "commonData": { + "state":"District of Columbia", + "stateAbbr":"DC", + "departmentName":"District of Columbia Office of Tax and Revenue", + "siteName": "District of Columbia Fillable Forms", + "url": "https://www.statefillableforms.com/dc", + "currentTaxYear": "2013" + + } + +} \ No newline at end of file diff --git a/test/data/de/availability.json b/test/data/de/availability.json new file mode 100755 index 00000000..35d32b00 --- /dev/null +++ b/test/data/de/availability.json @@ -0,0 +1,18 @@ +{ + "formset": [ + { + "id": "S2013DED", + "version": "0.1.1", + "agency": "de", + "main": "DE200_01", + "display_name": "Form DE200", + "forms": [ + {"id": "DE200_01", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DE201P3", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DE329T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "DE329S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + } +] +} diff --git a/test/data/de/form/DE200_01.content.txt b/test/data/de/form/DE200_01.content.txt new file mode 100755 index 00000000..ba9b4baf --- /dev/null +++ b/test/data/de/form/DE200_01.content.txt @@ -0,0 +1,1334 @@ +Blind + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + + +STAPLE CHECK +HE +R +E + +STAPLE W-2 FORMS +H +E +RE + +ATTACH L +AB +EL +H +E +RE + +2013 + +R + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Jr.,Sr.,III,etc. + + + + +Jr.,Sr.,III,etc. + + + + + + + + + + + + + + + + + + + + +1. + + +3. + + + +5. + + + + + + + + + +From + + + +Month + +Day + +2013 + +To + + + +Month + +Day + +2013 + +2. + + + + +4 + + + + + + + + + + + + + + + +1. + + + + + + + + + + + + + + +00 + + +00 + +2a +. + + + + + + + + + + + +b +. + + + + + + +2 + +3. + + + + + + +00 + +00 + + + + + + + + +Blind + +3 + +4. + + + + + +4 + +5. + + + + + +5 + +00 + +00 + +00 + +00 + +00 + +00 + +6. + + + + + +7. + + + +.... +.... +.... + + + + + +00 + +00 + +6 + +00 + +00 + +7 + +8. + + + +.. +.. +.......... +. +...... +....... +. + +> + +8 + +00 +00 + +9 +a +. + + + + + + + + +.. +............. +..... +. +.. +. +............................. +. + +9a + + + + + + +00 +00 + +9 +b +. + + + + + + +. +...... +.. +. +...... +. +..................... +.. +.......................... +. + +9b + +1 +0 +. + +11. + +12. + +13. + + +. + + +.... +... +... +10 + + + - + + + + +. + . +11 + + + +.. +...... +.................................................................. +. + +12 + + + +.. +. +... +.. +................... +. +............ +. +13 + +1 +4 +. + + + + + + +............ +. +. +14 + +1 +5 +. + + + +.......... +. +15 + +16 +. + +BALANCE +. + + +... +... +......... +. +... +. +16 + +17. + + + + +.... +....... +.. + +00 +0 +0 + +17 + +1 +8 +. + + + +19 +. + + + +20 +. + + + +.... + +00 +0 +0 + +18 + +00 +0 +0 + +19 + +00 +0 +0 + +20 + +2 +1 +. + + +. +. +...... +............. +.. +. +.. +... +. + +> + +21 + +00 +00 + +22 +. + + + +. + +..... +... + +> + +22 + +2 +3 +. + + +.................... +.... + +> + +23 + +00 +00 + +00 +00 + +2 +4 +. + + + + + + +. +. +........ +. +24 + +00 + + +2 +5 +. + +26. + +27. + + +2 +8 +. + + + + + + + +> + + +00 + + + + + +> + + +00 + + + + + + +00 + + + + + + + + +28 +00 + + + +Present Home Address (Number and Street) +Column A is for Spouse information, Filing Status 4 only. +All other filing statuses use Column B. +If you elect the DELAWARE STANDARD DEDUCTION check here..... +Filing Status 4 Enter $3250 in Column A and in Column B +If you elect the DELAWARE ITEMIZED DEDUCTIONS check here..... +Filing Statuses 1, 3 & 5 Enter $3250 in Column B; Filing Status 2 Enter $6500 in Column B; +Filing Statuses 1, 2, 3 and 5, enter Itemized Deductions from reverse side, Line 48 in Column B +Filing status 4 enter Itemized Deductions from reverse side, Line 48 in Columns A and B +ADDITIONAL STANDARD DEDUCTIONS +(Not Allowed with Itemized Deductions - see instructions) +Multiply the number of boxes checked below by $2500. If you are filing a combined separate return (Filing status 4), enter the total for +each appropriate column. All others enter total in Column B. +Spouse +Taxpayer +DELAWARE INDIVIDUAL RESIDENT +INCOME TAX RETURN +FORM 200- 01 +or Fiscal year beginning +and ending +Your Social Security No. +Spouse’s Social Sec. No. +Your Last Name +Middle Initial +Spouse’s First Name +Apt.# +City +State +Zip Code +Form DE2210 +Attached +If you were a part-year resident in 2013, give the dates you resided in +Delaware. +FILING STATUS (MUST CHECK ONE) +Single, Divorced, +Widow(er) +Joint or Entered +into a Civil Union +Married or Entered into a Civil +Union & Filing Separate Forms +Married or Entered into a Civil Union +& Filing Combined Separate on this form +Head of +Household +Column A +Column B +DELAWARE ADJUSTED GROSS INCOME. Begin Return on Page 2, Line 29, then enter amount from Line 42 here...>1 +65 or over +Column B +- if YOU were: +TOTAL DEDUCTIONS +- Add Lines 2 & 3 and enter here........................................................................ +TAXABLE INCOME +- Subtract Line 4 from Line 1, and Compute Tax on this Amount............................... +Tax Liability from Tax Rate Table/Schedule +See Instructions............................................................... +Column A +Column B +Tax on Lump Sum Distribution +(Form 329) +TOTAL TAX +- Add Lines 6 and 7 and enter here.................................................... +PERSONAL CREDITS +If you are Filing Status 3, see instructions on Page 6. +If you use Filing Status 4, enter the total for each appropriate column. All others enter total in Column B. +Enter number of exemptions claimed on Federal return +On Line 9a, enter the number of exemptions for: +CHECK BOX(ES) +Spouse 60 or over (ColumnA) +Self 60 or over (ColumnB) +Enter number of boxes checked on Line 9b. +X $110. +Tax imposed by State of +(Must attach copy of DE ScheduleI and other state return) +Volunteer Fire fighter Co.# +Self (Column B) +Spouse (Column A) +Enter credit amount....... +Other Non-Refundable Credits (see instructionson Page 7) +Child Care Credit. +Must attach Form 2441. (Enter 50% of Federal credit) +Earned Income Tax Credit. +See instructions on Page 8 for ALL required documentation +Total Non-Refundable Credits. Add Lines 9a, 9b, 10, 11, 12, 13 & 14 and enter here......................... +Subtract Line 15 from Line 8. If Line 15 is greater than Line 8, enter “0” (Zero).... +Delaware Tax Withheld +(Attach W2s/ 1099s) +2013 Estimated Tax Paid & Payments with Extensions. +S Corp Payments and Refundable Business Credits.... +2013 Capital Gains Tax Payments +(Attach Form 5403) +TOTAL Refundable Credits. Add Lines 17, 18, 19, and 20 and enter here............... +If Line 16 is greater than Line 21, subtract 21 from 16 and enter here................. +OVERPAYMENT. +If Line 21 is greater than Line 16, subtract 16 from 21 and enter here +CONTRIBUTIONS TO SPECIAL FUNDS +If electing a contribution, complete and attach DE Schedule III +AMOUNT OF LINE 23 TO BE APPLIED TO 2014 ESTIMATED TAX ACCOUNT.............................. +ENTER +PENALTIES AND INTEREST DUE. +If Line 22 is greater than $400, see estimated tax instructions.............. +NET BALANCE DUE +(For Filing Status 4, see instructions, page 9)..................................................... +PAY IN FULL > +For all other filing statuses, enter Line 22 plus Lines 24 and 26 +NET REFUND (For Filing Status 4, see instructions, Page 9)................................. +ZERO DUE/TO BE REFUNDED > +For all other filing statuses, subtract Lines 24, 25 and 26 from Line 23 +DO NOT WRITE OR STAPLE IN THIS AREA +First Name +Middle Initial +X +$ +110. +BALANCE DUE. +ENTER +25 +27 +26 +Spouse’s Last Name +Column A Column B +Column A - if SPOUSE was: 65 or over +----------------Page (0) Break---------------- +Delaware NOL Carry forward. - please see instructions on Page 10. +2013 + +R + + + + +COLUMNS: + + + + +(Reconcile your Federal + + + + + + + + + + + +CO +L +UM +N A + + + + +CO +L +UM +N B + +29 +. + +............ +.... +..................... +. +. +.... + +29 + +00 + +00 + + +30 +. +....................... +............................... +.. +................... + +...... +.. + +30 + +31 +. + +.. +.................... +. +.. +. +.................... +. +.. + +31 + +32 +. + +............................................................................................. +. +... +.............. +.. +........ +. + +32 + +0 +0 + +00 + +0 +0 + +00 + +0 +0 +00 + +33 +. +. +. +................................... + + + +0 +0 + +0 +0 +33 + +34 +. + +. + +.. +.... +.. +... +........ +. + +34 + +35 +. + + + + + +..... + + +35 + +3 +6 +. + + + +.............................................................. +. +..... +. +.. + +36 + + +37 +. + + +....... + + +37 + +38 +. + + +........................................................................... +.. +. +... + +38 + +00 + +00 + +0 +0 + +00 + + +00 + +00 + + +0 +0 + +00 + +0 +0 + +00 + +39 +. +. +. +..................... + +00 + +0 +0 +39 + +40 +. +.... +................................. +. +... +. + +40 + +41 +. + TOTAL - +...................................................................................................... +. +.... +.. +... +.... +. +... +. + +41 + +4 +2. + +..... +. +.. + +42 + +0 +0 + +00 + +0 +0 + +00 + +00 + +00 + + + +43 +. +. +... +... +................. +... +..................... +. +.. +. + +43 + +44 +. + +....................................................... +... +................. +. +.. + +...... +. + +44 + +45 +. + +. +..... +.... +................ +.. +.... +. +. + +45 + +46 +. + + +........................................................ +. +.......... +........... +.... +. +. +. + +46 + +47a +. + +................. +... +................ +.. +......... +. + +47a + +47 +b +. + +.. +.................. +... +....................... +. +. + +47b + +48 +. + +. +.. +. +....... +... +. + +48 + +0 +0 + +00 + +0 +0 + +00 + +00 + +00 + +00 + +00 + +00 + +00 + +00 + +00 + +00 +00 + + + + + +a. + + +b +. +Savings + + + + +c +. + + +d. + + + + + + + + + +No + +NOTE: + + + + + + + +Date + + +Date + + + +Date + +Address + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +2013 DELAWARE RESIDENT FORM 200-01, PAGE 2 +Page 2 +totals to the appropriate individual. See Page 9 worksheet.) Taxpayers using filing statuses 1, 2, 3, or 5 are to complete Column B only. +Column A is reserved for the spouse of those couples choosing filing status 4. +MODIFICATIONS TOFEDERAL ADJUSTED GROSS INCOME +Filing Status 4 ONLY All other filings statuses +Spouse Information You or You plus Spouse +SECTION A - ADDITIONS (+) +Interest on State & Local obligations other than Delaware +.... +... +........................................................... +Fiduciary adjustment, oil depletion +Add Lines 30 and 31 + TOTAL - + Subtotal. Add Lines 29 and 32 +SECTION B - SUBTRACTIONS (-) +. +.. +....................................................................................... +Interest received on U.S. Obligations + Pension/Retirement Exclusions +(For a definition of eligible income, see instructions on Page10) +Delaware State tax refund, fiduciary adjustment, work opportunity tax credit, +Taxable Soc Sec/RR Retirement Benefits/Higher Educ. Excl/Certain Lump Sum Dist. (See instr. on Pg 11) +SUBTOTAL. Add Lines 34, 35, 36 and 37 and enter here +Subtotal. Subtract Line 38 from Line 33 +Enter total Itemized Deductions from Schedule A, Federal Form, Line 29.......... +Enter Foreign Taxes Paid (See instructions on Page 11) +. +.. +................................ +Enter Charitable Mileage Deduction (See instructions on Page 11) +SUBTOTAL. - Add Lines 43, 44, and 45 and enter here +Enter State Income Tax included in Line 43 above (See instructions on Page 11) +................. +Enter Form 700 Tax Credit Adjustment (See instructions on Page 11) +TOTAL - Subtract Line 47a and 47b from Line 46. Enter here and on Front, Line 2 (See instructions) +SECTION D - DIRECT DEPOSIT INFORMATION +If you would like your refund deposited directly +to your checking or savings account, complete boxes a, b, c and d below. See instructions for details. +Routing Number +Account Number +Type: +Checking +Is this refund going to or through an account that is +located outside of the United States? +Yes +If your refund is adjusted by$100.00 or more, a paper check will be issued and mailed to the address on your return. +BE SURE TOSIGN YOUR RETURN BELOW AND KEEP A COPY FOR YOUR RECORDS +Under penalties of perjury, I declare that I have examined this return, including accompanying schedules and statements, and be lieve it is true, correct and complete. +Your Signature +Signature of Paid Preparer +Spouse's Signature (if filing joint or combined return) +Home Phone +Business Phone +State +Zip +E-Mail Address +City +EIN, SSN OR PTIN +Business Phone +E +- +Mail Address +NET BALANCE DUE (LINE 27): +DELAWARE DIVISION OF REVENUE +P.O. BOX 508 +WILMINGTON, DE19899-0508 +NET REFUND (LINE 28): +DELAWARE DIVISION OF REVENUE +P.O. BOX 8765 +WILMINGTON, DE19899-8765 +ZERO (LINE 28): +DELAWARE DIVISION OF REVENUE +P.O.BOX8711 +WILMINGTON, DE19899-8711 +MAKE CHECK PAYABLE TO : DELAWARE DIVISION OF REVENUE +PLEASE REMEMBER TO ATTACH APPROPRIATE SUPPORTING SCHEDULES WHEN FILING YOUR RETURN +(Rev 1 0 /31/13) +allocate deductions between spouses, you must prorate in accordance with income. +DELAWARE ADJUSTED GROSS INCOME. Subtract line 41 from Line 33. Enter here and on Front, Line1 +Add Lines 38 and 40 + Exclusion for certain persons 60 and over or disabled (See instructions on Page 11). +Enter Federal AGI amount from Federal 1040, Line 37; 1040A, Line 21; or 1040EZ, Line 4 +SECTION C - ITEMIZED DEDUCTIONS (MUST ATTACH FEDERAL SCHEDULE A) If Columns A and B are used and you are unable to specifically +----------------Page (1) Break---------------- diff --git a/test/data/de/form/DE200_01.fields.json b/test/data/de/form/DE200_01.fields.json new file mode 100755 index 00000000..8a4e4c44 --- /dev/null +++ b/test/data/de/form/DE200_01.fields.json @@ -0,0 +1 @@ +[{"id":"BX2210","type":"box","calc":true,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"STDITERB","type":"radio","calc":false,"value":"STDX"},{"id":"STDITERB","type":"radio","calc":false,"value":"ITEMX"},{"id":"S65X","type":"box","calc":false,"value":""},{"id":"SBLINDX","type":"box","calc":false,"value":""},{"id":"T65X","type":"box","calc":false,"value":""},{"id":"TBLINDX","type":"box","calc":false,"value":""},{"id":"S60X","type":"box","calc":false,"value":""},{"id":"T60X","type":"box","calc":false,"value":""},{"id":"FYBEG","type":"date","calc":false,"value":""},{"id":"FYEND","type":"date","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"TPINIT","type":"alpha","calc":false,"value":""},{"id":"TPSUFFIX","type":"alpha","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SPINIT","type":"alpha","calc":false,"value":""},{"id":"SPSUFFIX","type":"alpha","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"PYFMMDD","type":"date","calc":true,"value":""},{"id":"PYTMMDD","type":"date","calc":true,"value":""},{"id":"SDEAGI","type":"number","calc":true,"value":""},{"id":"TDEAGI","type":"number","calc":true,"value":""},{"id":"SDESDVID","type":"number","calc":false,"value":""},{"id":"TDESDVID","type":"number","calc":false,"value":""},{"id":"SDEADDSD","type":"number","calc":false,"value":""},{"id":"TDEADDSD","type":"number","calc":false,"value":""},{"id":"SDEDUCT","type":"number","calc":true,"value":""},{"id":"TDEDUCT","type":"number","calc":true,"value":""},{"id":"SDETI","type":"number","calc":true,"value":""},{"id":"TDETI","type":"number","calc":true,"value":""},{"id":"SDETXTBL","type":"number","calc":false,"value":""},{"id":"TDETXTBL","type":"number","calc":false,"value":""},{"id":"SDEF329","type":"number","calc":true,"value":""},{"id":"TDEF329","type":"number","calc":true,"value":""},{"id":"Add_F329S","type":"link","calc":false,"value":""},{"id":"Add_F329T","type":"link","calc":false,"value":""},{"id":"SDETAX","type":"number","calc":true,"value":""},{"id":"TDETAX","type":"number","calc":true,"value":""},{"id":"SFDEX","type":"number","calc":false,"value":""},{"id":"TFDEX","type":"number","calc":false,"value":""},{"id":"FDEXNUM","type":"number","calc":false,"value":""},{"id":"SFDEXNUM","type":"number","calc":false,"value":""},{"id":"TFDEXNUM","type":"number","calc":false,"value":""},{"id":"ADDCRNUM","type":"number","calc":true,"value":""},{"id":"SDEADDCR","type":"number","calc":false,"value":""},{"id":"TDEADDCR","type":"number","calc":false,"value":""},{"id":"OSNAME","type":"alpha","calc":true,"value":""},{"id":"SOSTXCR","type":"number","calc":true,"value":""},{"id":"FIRENOA","type":"number","calc":false,"value":""},{"id":"Add_DE201P3","type":"link","calc":false,"value":""},{"id":"TOSTXCR","type":"number","calc":true,"value":""},{"id":"FIRENOB","type":"number","calc":false,"value":""},{"id":"SONRCR","type":"number","calc":false,"value":""},{"id":"Add_DE201P3","type":"link","calc":false,"value":""},{"id":"TONRCR","type":"number","calc":false,"value":""},{"id":"SOTHNRCR","type":"number","calc":false,"value":""},{"id":"TOTHNRCR","type":"number","calc":false,"value":""},{"id":"TF2441CR","type":"number","calc":false,"value":""},{"id":"SEITC","type":"number","calc":false,"value":""},{"id":"TEITC","type":"number","calc":false,"value":""},{"id":"SNREFCR","type":"number","calc":true,"value":""},{"id":"TNREFCR","type":"number","calc":true,"value":""},{"id":"STAXLIAB","type":"number","calc":true,"value":""},{"id":"TTAXLIAB","type":"number","calc":true,"value":""},{"id":"SF2441CR","type":"number","calc":false,"value":""},{"id":"SDEWH","type":"number","calc":false,"value":""},{"id":"TDEWH","type":"number","calc":false,"value":""},{"id":"SDEPMT","type":"number","calc":false,"value":""},{"id":"TDEPMT","type":"number","calc":false,"value":""},{"id":"SDESCORP","type":"number","calc":false,"value":""},{"id":"TDESCORP","type":"number","calc":false,"value":""},{"id":"REESTPA","type":"number","calc":false,"value":""},{"id":"REESTPAB","type":"number","calc":false,"value":""},{"id":"SREFCR","type":"number","calc":true,"value":""},{"id":"Add_DE201P3","type":"link","calc":false,"value":""},{"id":"TREFCR","type":"number","calc":true,"value":""},{"id":"SBALDUE","type":"number","calc":true,"value":""},{"id":"TBALDUE","type":"number","calc":true,"value":""},{"id":"SOVRPMT","type":"number","calc":true,"value":""},{"id":"TOVRPMT","type":"number","calc":true,"value":""},{"id":"CONTRIB","type":"number","calc":true,"value":""},{"id":"APPLIED","type":"number","calc":false,"value":""},{"id":"PENALTY","type":"number","calc":false,"value":""},{"id":"TAXDUE","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"DDRB","type":"radio","calc":false,"value":"DDCHECKX"},{"id":"DDRB","type":"radio","calc":false,"value":"DDSAVEX"},{"id":"A48RB","type":"radio","calc":false,"value":"USBXY"},{"id":"A48RB","type":"radio","calc":false,"value":"USBXN"},{"id":"L28A","type":"number","calc":false,"value":""},{"id":"L28B","type":"number","calc":false,"value":""},{"id":"L29A","type":"number","calc":false,"value":""},{"id":"L29B","type":"number","calc":false,"value":""},{"id":"L30A","type":"number","calc":false,"value":""},{"id":"L30B","type":"number","calc":false,"value":""},{"id":"L31A","type":"number","calc":true,"value":""},{"id":"L31B","type":"number","calc":true,"value":""},{"id":"L32A","type":"number","calc":true,"value":""},{"id":"L32B","type":"number","calc":true,"value":""},{"id":"L33A","type":"number","calc":false,"value":""},{"id":"L33B","type":"number","calc":false,"value":""},{"id":"L34A","type":"number","calc":false,"value":""},{"id":"L34B","type":"number","calc":false,"value":""},{"id":"L35A","type":"number","calc":false,"value":""},{"id":"L35B","type":"number","calc":false,"value":""},{"id":"SSA","type":"number","calc":false,"value":""},{"id":"SSB","type":"number","calc":false,"value":""},{"id":"L37A","type":"number","calc":true,"value":""},{"id":"L37B","type":"number","calc":true,"value":""},{"id":"L38B","type":"number","calc":true,"value":""},{"id":"L38A","type":"number","calc":true,"value":""},{"id":"L39A","type":"number","calc":false,"value":""},{"id":"L39B","type":"number","calc":false,"value":""},{"id":"L40A","type":"number","calc":true,"value":""},{"id":"L40B","type":"number","calc":true,"value":""},{"id":"L41A","type":"number","calc":true,"value":""},{"id":"L41B","type":"number","calc":true,"value":""},{"id":"L42A","type":"number","calc":false,"value":""},{"id":"L42B","type":"number","calc":false,"value":""},{"id":"L43A","type":"number","calc":false,"value":""},{"id":"L43B","type":"number","calc":false,"value":""},{"id":"L44A","type":"number","calc":false,"value":""},{"id":"L44B","type":"number","calc":false,"value":""},{"id":"L45A","type":"number","calc":true,"value":""},{"id":"L45B","type":"number","calc":true,"value":""},{"id":"L46A","type":"number","calc":false,"value":""},{"id":"L46B","type":"number","calc":false,"value":""},{"id":"L46BA","type":"number","calc":false,"value":""},{"id":"L46BB","type":"number","calc":false,"value":""},{"id":"STOTAL","type":"number","calc":true,"value":""},{"id":"TTOTAL","type":"number","calc":true,"value":""},{"id":"RNUM","type":"mask","calc":false,"value":""},{"id":"ANUM","type":"mask","calc":false,"value":""},{"id":"PREPSIGN","type":"alpha","calc":true,"value":"SELF-PREPARER"},{"id":"HPHONE","type":"phone","calc":false,"value":""},{"id":"DPHONE","type":"phone","calc":false,"value":""},{"id":"EMAIL1","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/de/form/DE200_01.json b/test/data/de/form/DE200_01.json new file mode 100755 index 00000000..de407988 --- /dev/null +++ b/test/data/de/form/DE200_01.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"TY13_200-01","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d9d9d9","x":8.892,"y":11.977,"w":0.9315,"l":46.668},{"oc":"#b6b6b6","x":82.835,"y":21.887,"w":1.6500000000000001,"l":16.122},{"oc":"#b6b6b6","x":82.835,"y":24.137,"w":0.744,"l":16.122},{"oc":"#b6b6b6","x":85.585,"y":24.131,"w":0.41250000000000003,"l":13.372},{"oc":"#b6b6b6","x":40.666,"y":24.166,"w":1.2165000000000001,"l":31.066},{"oc":"#b6b6b6","x":8.826,"y":23.387,"w":1.6500000000000001,"l":90.131},{"oc":"#b6b6b6","x":71.904,"y":22.666,"w":1.6500000000000001,"l":27.053},{"oc":"#b6b6b6","x":40.666,"y":24.856,"w":1.6500000000000001,"l":14.867},{"oc":"#b6b6b6","x":40.666,"y":25.616,"w":1.6500000000000001,"l":28.497},{"oc":"#b6b6b6","x":66.997,"y":24.866,"w":1.1655,"l":2.183},{"oc":"#b6b6b6","x":82.715,"y":19.691,"w":0.648,"l":16.225},{"oc":"#b6b6b6","x":82.715,"y":20.334,"w":0.8985,"l":16.242},{"oc":"#b6b6b6","x":8.783,"y":20.35,"w":1.6500000000000001,"l":62.949},{"oc":"#b6b6b6","x":82.835,"y":27.725,"w":0.3135,"l":16.122},{"oc":"#b6b6b6","x":8.886,"y":27.753,"w":1.6484999999999999,"l":62.846},{"oc":"#b6b6b6","x":82.835,"y":26.462,"w":0.2565,"l":16.122},{"oc":"#979797","x":85.413,"y":27.725,"w":0.3135,"l":0.172},{"oc":"#979797","x":96.456,"y":27.722,"w":0.18,"l":0.172},{"oc":"#979797","x":82.663,"y":27.722,"w":0.18,"l":0.172},{"oc":"#979797","x":82.663,"y":26.462,"w":0.255,"l":0.172},{"oc":"#b6b6b6","x":82.887,"y":29.228,"w":0.6945,"l":16.07},{"oc":"#b6b6b6","x":82.887,"y":28.491,"w":1.2525,"l":16.07},{"oc":"#b6b6b6","x":85.568,"y":42.006,"w":1.2525,"l":13.432},{"oc":"#b6b6b6","x":71.852,"y":42,"w":0.885,"l":13.544},{"oc":"#b6b6b6","x":9.496,"y":41.234,"w":1.6500000000000001,"l":89.461},{"oc":"#b6b6b6","x":9.496,"y":40.481,"w":1.6500000000000001,"l":89.461},{"oc":"#b6b6b6","x":53.281,"y":36.794,"w":0.741,"l":13.595},{"oc":"#b6b6b6","x":42.187,"y":38.256,"w":1.6500000000000001,"l":27.027},{"oc":"#b6b6b6","x":42.187,"y":37.494,"w":1.6500000000000001,"l":27.027},{"oc":"#b6b6b6","x":42.187,"y":39.006,"w":1.6500000000000001,"l":27.027},{"oc":"#b6b6b6","x":83.136,"y":39.725,"w":1.002,"l":15.821},{"oc":"#333333","x":24.75,"y":14.409,"w":1.6500000000000001,"l":12.392},{"oc":"#333333","x":8.762,"y":6.852,"w":0.654,"l":22.18},{"oc":"#333333","x":8.715,"y":5.391,"w":0.8999999999999999,"l":14.668},{"oc":"#333333","x":53.015,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":50.978,"y":12.875,"w":1.59,"l":1.014},{"oc":"#333333","x":48.933,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":46.888,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":44.851,"y":12.875,"w":1.59,"l":1.014},{"oc":"#333333","x":42.805,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":40.863,"y":12.862,"w":0.8504999999999999,"l":0.92},{"oc":"#333333","x":38.723,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":36.678,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":34.633,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":32.596,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":30.551,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":28.514,"y":12.875,"w":1.59,"l":1.014},{"oc":"#333333","x":26.469,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":24.423,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":22.387,"y":12.875,"w":1.59,"l":1.014},{"oc":"#333333","x":20.341,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":18.296,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":14.214,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":12.177,"y":12.875,"w":1.59,"l":1.014},{"oc":"#333333","x":10.132,"y":12.875,"w":1.59,"l":1.023},{"oc":"#333333","x":30.817,"y":6.844,"w":0.8999999999999999,"l":24.99},{"oc":"#333333","x":23.405,"y":5.391,"w":0.8999999999999999,"l":32.21},{"oc":"#333333","x":45.779,"y":4.6,"w":1.329,"l":9.797},{"oc":"#333333","x":24.724,"y":4.603,"w":1.149,"l":9.883},{"oc":"#b6b6b6","x":75.625,"y":45.791,"w":1.5,"l":17.239},{"oc":"#b6b6b6","x":75.625,"y":42,"w":1.5,"l":17.239},{"oc":"#b6b6b6","x":75.737,"y":43.5,"w":1.5,"l":17.127},{"oc":"#b6b6b6","x":75.797,"y":44.272,"w":1.5,"l":17.127},{"oc":"#b6b6b6","x":75.848,"y":45,"w":1.5,"l":17.136},{"oc":"#b6b6b6","x":40.683,"y":29.272,"w":1.6500000000000001,"l":7.537},{"oc":"#333333","x":42.015,"y":14.369,"w":1.6500000000000001,"l":12.47},{"oc":"#b6b6b6","x":40.666,"y":26.334,"w":1.6500000000000001,"l":28.497},{"oc":"#b6b6b6","x":42.187,"y":39.725,"w":1.6500000000000001,"l":27.027},{"oc":"#b6b6b6","x":42.195,"y":36.794,"w":0.741,"l":13.595},{"oc":"#333333","x":9.155,"y":8.391,"w":0.8999999999999999,"l":46.659},{"oc":"#333333","x":9.155,"y":9.891,"w":0.8999999999999999,"l":46.659},{"oc":"#333333","x":9.155,"y":11.453,"w":0.8999999999999999,"l":46.659},{"oc":"#d9d9d9","x":8.892,"y":10.414,"w":0.9315,"l":46.668},{"oc":"#d9d9d9","x":8.892,"y":8.945,"w":0.9315,"l":46.668},{"oc":"#d9d9d9","x":8.892,"y":7.508,"w":0.9315,"l":46.668}],"VLines":[{"oc":"#333333","x":40.82,"y":12,"w":0.8999999999999999,"l":0.847},{"oc":"#333333","x":34.633,"y":11.991,"w":0.8999999999999999,"l":0.853},{"oc":"#a7a7a7","x":55.662,"y":11.403,"w":0.5640000000000001,"l":0.588},{"oc":"#333333","x":33.43,"y":7.572,"w":0.8985,"l":0.853},{"oc":"#333333","x":33.387,"y":9.009,"w":0.8985,"l":0.825},{"oc":"#333333","x":33.43,"y":8.425,"w":0.8985,"l":0.587},{"oc":"#333333","x":33.387,"y":5.54,"w":0.8985,"l":1.951},{"oc":"#b6b6b6","x":82.749,"y":21.919,"w":1.6500000000000001,"l":2.209},{"oc":"#b6b6b6","x":85.499,"y":21.809,"w":1.6500000000000001,"l":2.319},{"oc":"#b6b6b6","x":96.499,"y":21.813,"w":1.6500000000000001,"l":2.313},{"oc":"#b6b6b6","x":53.204,"y":24.887,"w":1.653,"l":1.447},{"oc":"#b6b6b6","x":55.619,"y":24.191,"w":1.6500000000000001,"l":2.144},{"oc":"#b6b6b6","x":96.499,"y":19.703,"w":1.6500000000000001,"l":0.616},{"oc":"#b6b6b6","x":82.629,"y":19.703,"w":1.6500000000000001,"l":0.616},{"oc":"#b6b6b6","x":85.37,"y":19.703,"w":1.6500000000000001,"l":0.616},{"oc":"#b6b6b6","x":99.138,"y":26.966,"w":0.324,"l":0.797},{"oc":"#b6b6b6","x":85.465,"y":26.479,"w":1.6500000000000001,"l":1.182},{"oc":"#b6b6b6","x":96.551,"y":26.495,"w":1.6515,"l":1.197},{"oc":"#b6b6b6","x":82.758,"y":26.502,"w":1.6500000000000001,"l":1.183},{"oc":"#b6b6b6","x":98.966,"y":27.028,"w":0.3225,"l":0.694},{"oc":"#b6b6b6","x":99.138,"y":28.45,"w":0.324,"l":0.831},{"oc":"#b6b6b6","x":85.482,"y":28.512,"w":1.6484999999999999,"l":0.706},{"oc":"#b6b6b6","x":82.801,"y":28.512,"w":1.6515,"l":0.706},{"oc":"#b6b6b6","x":96.577,"y":28.512,"w":1.6500000000000001,"l":0.706},{"oc":"#b6b6b6","x":98.966,"y":28.512,"w":0.3225,"l":0.706},{"oc":"#b6b6b6","x":85.482,"y":39.744,"w":1.6484999999999999,"l":2.241},{"oc":"#b6b6b6","x":96.439,"y":39.744,"w":1.6500000000000001,"l":2.241},{"oc":"#b6b6b6","x":83.05,"y":39.744,"w":1.6515,"l":2.241},{"oc":"#b6b6b6","x":66.963,"y":36.806,"w":1.6515,"l":2.862},{"oc":"#b6b6b6","x":55.533,"y":36.806,"w":1.6500000000000001,"l":2.862},{"oc":"#b6b6b6","x":53.195,"y":36.806,"w":1.6500000000000001,"l":2.862},{"oc":"#b6b6b6","x":71.766,"y":40.512,"w":1.6500000000000001,"l":1.472},{"oc":"#b6b6b6","x":66.911,"y":24.887,"w":1.6500000000000001,"l":1.447},{"oc":"#b6b6b6","x":71.818,"y":23.419,"w":1.6500000000000001,"l":0.709},{"oc":"#333333","x":55.688,"y":5.376,"w":1.3155000000000001,"l":7.528},{"oc":"#b6b6b6","x":75.625,"y":42,"w":1.5,"l":3.791},{"oc":"#b6b6b6","x":92.864,"y":42,"w":1.5,"l":3.791},{"oc":"#b6b6b6","x":77.911,"y":42,"w":1.5,"l":3.831},{"oc":"#b6b6b6","x":90.346,"y":41.959,"w":1.5,"l":3.831},{"oc":"#b6b6b6","x":69.059,"y":24.887,"w":1.6500000000000001,"l":1.447},{"oc":"#b6b6b6","x":69.283,"y":36.806,"w":1.6515,"l":2.862},{"oc":"#333333","x":8.766,"y":5.307,"w":1.3155000000000001,"l":7.621}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d8d8d8","x":33.473,"y":6.978,"w":22.172,"h":0.594,"clr":-1},{"oc":"#b6b6b6","x":17.205,"y":12.897,"w":0.172,"h":2.256,"clr":-1},{"oc":"#b6b6b6","x":71.904,"y":21.856,"w":13.51,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":71.904,"y":24.125,"w":27.053,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":8.783,"y":24.125,"w":62.949,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":55.705,"y":24.825,"w":13.475,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":71.818,"y":19.641,"w":27.122,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":71.904,"y":20.319,"w":27.053,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":98.957,"y":11.388,"w":0.172,"h":15.016,"clr":-1},{"oc":"#b6b6b6","x":71.904,"y":27.722,"w":27.053,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":71.904,"y":26.403,"w":27.053,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":71.852,"y":29.219,"w":27.105,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":71.904,"y":28.45,"w":27.053,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":98.957,"y":27.762,"w":0.172,"h":0.688,"clr":-1},{"oc":"#b6b6b6","x":9.496,"y":41.984,"w":89.504,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":96.525,"y":41.984,"w":2.475,"h":0.031,"clr":-1},{"oc":"#b6b6b6","x":71.68,"y":36.725,"w":0.172,"h":3.725,"clr":-1},{"oc":"#b6b6b6","x":98.957,"y":29.281,"w":0.172,"h":12.719,"clr":-1},{"oc":"#979797","x":98.957,"y":27.722,"w":0.12,"h":0.063,"clr":-1},{"oc":"#acacac","x":98.957,"y":28.45,"w":0.172,"h":0.831,"clr":-1},{"oc":"#acacac","x":98.914,"y":26.399,"w":0.172,"h":1.343,"clr":-1},{"oc":"#b6b6b6","x":71.852,"y":39.681,"w":27.105,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":40.76,"y":12.847,"w":1.023,"h":0.059,"clr":-1},{"oc":"#b6b6b6","x":16.259,"y":12.847,"w":1.023,"h":0.059,"clr":-1},{"oc":"#b6b6b6","x":71.732,"y":20.381,"w":0.172,"h":2.975,"clr":-1},{"oc":"#b6b6b6","x":71.715,"y":24.04,"w":0.172,"h":3.67,"clr":-1},{"oc":"#b6b6b6","x":71.732,"y":27.784,"w":0.172,"h":1.466,"clr":-1},{"oc":"#b6b6b6","x":71.732,"y":19.672,"w":0.172,"h":0.647,"clr":-1},{"oc":"#333333","x":40.795,"y":4.575,"w":14.781,"h":0.063,"clr":-1},{"oc":"#333333","x":19.74,"y":4.581,"w":14.867,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":9.797,"y":42.716,"w":80.747,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":78.098,"y":42.719,"w":14.734,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":75.763,"y":42.716,"w":2.363,"h":0.031,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":30.765,"w":2.351,"h":0.008,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":30.765,"w":11.096,"h":0.038,"clr":-1},{"oc":"#b6b6b6","x":96.608,"y":30.765,"w":2.454,"h":0.038,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":30.802,"w":0.165,"h":0.652,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":30.802,"w":0.165,"h":0.652,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":30.802,"w":0.165,"h":0.652,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":31.455,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":31.455,"w":2.351,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.573,"y":31.455,"w":10.931,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.669,"y":31.455,"w":2.392,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":31.515,"w":0.165,"h":0.735,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":31.515,"w":0.165,"h":0.735,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":31.515,"w":0.165,"h":0.735,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":32.25,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":32.25,"w":2.351,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.573,"y":32.25,"w":10.931,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.669,"y":32.25,"w":2.392,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":32.31,"w":0.165,"h":0.63,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":32.31,"w":0.165,"h":0.63,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":32.31,"w":0.165,"h":0.63,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":32.94,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":32.94,"w":2.351,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.573,"y":32.94,"w":10.931,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.669,"y":32.94,"w":2.392,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":33,"w":0.165,"h":0.742,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":33,"w":0.165,"h":0.742,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":33,"w":0.165,"h":0.742,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":33.743,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":33.743,"w":2.351,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.573,"y":33.743,"w":10.931,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.669,"y":33.743,"w":2.392,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":33.802,"w":0.165,"h":0.66,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":33.802,"w":0.165,"h":0.66,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":33.802,"w":0.165,"h":0.66,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":34.463,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":34.463,"w":2.351,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.573,"y":34.463,"w":10.931,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.669,"y":34.463,"w":2.392,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":34.522,"w":0.165,"h":0.683,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":34.522,"w":0.165,"h":0.683,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":34.522,"w":0.165,"h":0.683,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":35.205,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":35.205,"w":2.351,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.573,"y":35.205,"w":10.931,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.669,"y":35.205,"w":2.392,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":35.265,"w":0.165,"h":0.698,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":35.265,"w":0.165,"h":0.698,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":35.265,"w":0.165,"h":0.698,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":35.962,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":83.057,"y":35.962,"w":2.351,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.573,"y":35.962,"w":10.931,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.669,"y":35.962,"w":2.392,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":36.023,"w":0.165,"h":0.69,"clr":-1},{"oc":"#b6b6b6","x":82.892,"y":36.712,"w":2.516,"h":0.007,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":36.023,"w":0.165,"h":0.69,"clr":-1},{"oc":"#b6b6b6","x":85.429,"y":36.712,"w":11.076,"h":0.007,"clr":-1},{"oc":"#b6b6b6","x":96.504,"y":36.023,"w":0.165,"h":0.69,"clr":-1},{"oc":"#b6b6b6","x":96.525,"y":36.712,"w":2.537,"h":0.007,"clr":-1},{"oc":"#b6b6b6","x":8.621,"y":15.165,"w":63.03,"h":0.015,"clr":-1},{"oc":"#b6b6b6","x":71.693,"y":15.165,"w":13.551,"h":0.015,"clr":-1},{"oc":"#b6b6b6","x":85.284,"y":15.165,"w":13.612,"h":0.015,"clr":-1},{"oc":"#b6b6b6","x":71.651,"y":15.188,"w":0.165,"h":0.682,"clr":-1},{"oc":"#b6b6b6","x":85.243,"y":15.188,"w":0.165,"h":0.682,"clr":-1},{"oc":"#b6b6b6","x":8.621,"y":15.87,"w":63.03,"h":0.03,"clr":-1},{"oc":"#b6b6b6","x":71.816,"y":15.87,"w":10.684,"h":0.03,"clr":-1},{"oc":"#b6b6b6","x":82.583,"y":15.87,"w":2.661,"h":0.03,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":15.87,"w":10.911,"h":0.03,"clr":-1},{"oc":"#b6b6b6","x":96.401,"y":15.87,"w":2.496,"h":0.03,"clr":-1},{"oc":"#b6b6b6","x":8.498,"y":16.582,"w":63.154,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":71.651,"y":15.9,"w":0.165,"h":0.682,"clr":-1},{"oc":"#b6b6b6","x":71.816,"y":16.582,"w":10.684,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":82.5,"y":15.9,"w":0.165,"h":0.682,"clr":-1},{"oc":"#b6b6b6","x":82.665,"y":16.582,"w":2.578,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":85.243,"y":15.9,"w":0.165,"h":0.682,"clr":-1},{"oc":"#b6b6b6","x":85.408,"y":16.582,"w":10.911,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":96.319,"y":15.9,"w":0.165,"h":0.682,"clr":-1},{"oc":"#b6b6b6","x":96.484,"y":16.582,"w":2.413,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":37.125,"y":31.455,"w":6.188,"h":0.083,"clr":-1},{"oc":"#b6b6b6","x":26.874,"y":32.145,"w":4.187,"h":0.083,"clr":-1},{"oc":"#b6b6b6","x":36.96,"y":32.872,"w":3.712,"h":0.083,"clr":-1},{"oc":"#b6b6b6","x":50.201,"y":32.872,"w":4.063,"h":0.083,"clr":-1},{"oc":"#b6b6b6","x":71.775,"y":36.65,"w":11.117,"h":0.06,"clr":-1},{"oc":"#b6b6b6","x":71.916,"y":30.765,"w":11.096,"h":0.038,"clr":-1},{"oc":"#b6b6b6","x":71.715,"y":30.782,"w":0.172,"h":5.984,"clr":-1}],"Texts":[{"x":34.976,"y":21.63,"w":1.7880000000000003,"clr":0,"A":"left","R":[{"T":"Blind","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#838383","x":83.054,"y":30.69,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.688,"y":30.675,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.054,"y":31.387,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.688,"y":31.387,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.054,"y":32.115,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.667,"y":32.115,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.054,"y":32.887,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.667,"y":32.887,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.054,"y":33.652,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.667,"y":33.652,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.054,"y":34.388,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.667,"y":34.388,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.054,"y":35.115,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.667,"y":35.115,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.054,"y":35.932,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.667,"y":35.932,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":6.928,"y":44.288,"w":7.890999999999998,"clr":-1,"A":"left","R":[{"T":"STAPLE%20CHECK%20","S":-1,"TS":[0,9.48,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":40.928,"w":1.403,"clr":-1,"A":"left","R":[{"T":"HE","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":40.328,"w":0.729,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.927,"y":40.013,"w":0.674,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":29.603,"w":10.113,"clr":-1,"A":"left","R":[{"T":"STAPLE%20W-2%20FORMS%20","S":-1,"TS":[0,9.48,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":25.26,"w":0.729,"clr":-1,"A":"left","R":[{"T":"H","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":24.945,"w":0.674,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.927,"y":24.653,"w":1.403,"clr":-1,"A":"left","R":[{"T":"RE","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":10.785,"w":4.2780000000000005,"clr":-1,"A":"left","R":[{"T":"ATTACH%20","S":-1,"TS":[0,9.48,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":8.94,"w":0.556,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[0,9.48,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":8.783,"w":1.334,"clr":-1,"A":"left","R":[{"T":"AB","S":-1,"TS":[0,9.48,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.927,"y":8.235,"w":1.5010000000000001,"clr":-1,"A":"left","R":[{"T":"EL%20","S":-1,"TS":[0,9.48,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":7.553000000000001,"w":0.729,"clr":-1,"A":"left","R":[{"T":"H","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.928,"y":7.237,"w":0.674,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":6.927,"y":6.945,"w":1.403,"clr":-1,"A":"left","R":[{"T":"RE","S":-1,"TS":[0,9.75,0,0],"RA":90}]},{"oc":"#1f1f1f","x":12.867,"y":1.762,"w":2.212,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,21,0,0]}]},{"oc":"#000019","x":21.241,"y":2.01,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,27,0,0]}]},{"oc":"#333333","x":48.94,"y":6.69,"w":4.585000000000002,"clr":-1,"A":"left","R":[{"T":"Jr.%2CSr.%2CIII%2Cetc.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":49.07,"y":8.13,"w":4.585000000000002,"clr":-1,"A":"left","R":[{"T":"Jr.%2CSr.%2CIII%2Cetc.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":56.551,"y":11.722,"w":0.684,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":70.226,"y":11.722,"w":0.684,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[1,9.7943,0,0]}]},{"oc":"#1f1f1f","x":88.707,"y":11.723,"w":0.738,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#838383","x":21.448,"y":13.575,"w":2.3289999999999997,"clr":-1,"A":"left","R":[{"T":"From","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#333333","x":25.284,"y":14.092,"w":2.6839999999999997,"clr":-1,"A":"left","R":[{"T":"Month","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#333333","x":30.75,"y":14.092,"w":1.775,"clr":-1,"A":"left","R":[{"T":"Day","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#333333","x":34.648,"y":13.508,"w":2.22,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#333333","x":39.289,"y":13.508,"w":1.167,"clr":-1,"A":"left","R":[{"T":"To","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#333333","x":43.063,"y":14.055,"w":2.6839999999999997,"clr":-1,"A":"left","R":[{"T":"Month","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#333333","x":48.219,"y":14.055,"w":1.775,"clr":-1,"A":"left","R":[{"T":"Day","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#333333","x":51.973,"y":13.507,"w":2.22,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#1f1f1f","x":56.572,"y":13.44,"w":0.684,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":70.265,"y":13.35,"w":0.456,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":9.485,"y":15.698,"w":0.684,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":82.972,"y":15.719999999999999,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.564,"y":15.719999999999999,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"x":9.609,"y":16.455,"w":0.9560000000000001,"clr":0,"A":"left","R":[{"T":"2a","S":-1,"TS":[1,11.04,0,0]}]},{"x":10.93,"y":16.455,"w":0.672,"clr":0,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"x":10.167,"y":18.825,"w":0.456,"clr":0,"A":"left","R":[{"T":"b","S":-1,"TS":[1,11.04,0,0]}]},{"x":10.867,"y":18.825,"w":0.896,"clr":0,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.875,"y":19.44,"w":0.456,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.609,"y":20.122,"w":0.684,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":83.075,"y":19.47,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.647,"y":19.47,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"x":63.688,"y":21.63,"w":1.7880000000000003,"clr":0,"A":"left","R":[{"T":"Blind","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#838383","x":70.04,"y":21.758,"w":0.456,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.609,"y":22.507,"w":0.684,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.975,"y":22.537,"w":0.456,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.609,"y":23.288,"w":0.684,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.857,"y":23.318,"w":0.456,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":83.178,"y":21.772,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.585,"y":21.772,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.18,"y":22.582,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.586,"y":22.582,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.181,"y":23.295,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.588,"y":23.295,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":9.609,"y":24.15,"w":0.684,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.526,"y":25.537,"w":0.684,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[1,11.04,0,0]}]},{"x":35.821,"y":25.44,"w":0.888,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":36.996,"y":25.44,"w":0.888,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":38.17,"y":25.44,"w":0.888,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#838383","x":53.416,"y":24.727,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.947,"y":24.727,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":70.37,"y":24.757,"w":0.456,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#838383","x":53.416,"y":25.492,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.947,"y":25.492,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":70.37,"y":25.522,"w":0.456,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":9.609,"y":26.828,"w":0.912,"clr":-1,"A":"left","R":[{"T":"8.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":57.933,"y":26.79,"w":0.488,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":58.573,"y":26.79,"w":0.456,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":59.273,"y":26.79,"w":2.2900000000000005,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":62.372,"y":26.79,"w":0.244,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":62.682,"y":26.789,"w":1.464,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":64.643,"y":26.79,"w":1.708,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":66.954,"y":26.79,"w":0.458,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":67.833,"y":26.888,"w":1.149,"clr":0,"A":"left","R":[{"T":"%3E%20%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#838383","x":70.301,"y":26.917,"w":0.456,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":83.178,"y":26.835,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.75,"y":26.835,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":27.45,"w":0.493,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.33,"y":27.45,"w":0.493,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.03,"y":27.45,"w":0.265,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":52.383,"y":28.566,"w":0.454,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#1f1f1f","x":52.961,"y":28.566,"w":3.158999999999999,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#1f1f1f","x":56.956,"y":28.566,"w":1.2149999999999999,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#1f1f1f","x":58.501,"y":28.566,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#1f1f1f","x":58.799,"y":28.566,"w":0.486,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#1f1f1f","x":59.417,"y":28.566,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#1f1f1f","x":59.707,"y":28.566,"w":7.047000000000002,"clr":-1,"A":"left","R":[{"T":".............................","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#1f1f1f","x":68.624,"y":28.41,"w":0.42200000000000004,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,10.3957,0,0]}]},{"oc":"#838383","x":69.648,"y":28.44,"w":0.8360000000000001,"clr":-1,"A":"left","R":[{"T":"9a","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":83.075,"y":28.327,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.833,"y":28.327,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":9.712,"y":29.842,"w":0.493,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.392,"y":29.842,"w":0.493,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.094,"y":29.842,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":47.042,"y":30.76,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":47.33,"y":30.76,"w":1.464,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":49.311,"y":30.76,"w":0.458,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":49.908,"y":30.76,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":50.238,"y":30.76,"w":1.464,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":52.198,"y":30.76,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":52.485,"y":30.76,"w":5.123999999999997,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":59.418,"y":30.76,"w":0.456,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":59.993,"y":30.76,"w":6.343999999999996,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":68.471,"y":30.76,"w":0.458,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#838383","x":69.504,"y":30.697,"w":0.866,"clr":-1,"A":"left","R":[{"T":"9b","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":31.395000000000003,"w":0.493,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.33,"y":31.395000000000003,"w":0.493,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.03,"y":31.395000000000003,"w":0.265,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":32.093,"w":1.251,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":32.82,"w":1.251,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":33.6,"w":1.251,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":30.813,"y":31.387999999999998,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.111,"y":31.328000000000003,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,10.155000000000001,0,0]}]},{"oc":"#1f1f1f","x":66.555,"y":31.328000000000003,"w":0.8550000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,10.155000000000001,0,0]}]},{"oc":"#1f1f1f","x":67.627,"y":31.328000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"...%20","S":-1,"TS":[0,10.155000000000001,0,0]}]},{"oc":"#838383","x":69.284,"y":31.387999999999998,"w":0.866,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":24.871,"y":32.115,"w":0.729,"clr":-1,"A":"left","R":[{"T":"%20-%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":54.634,"y":32.115,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":68.6,"y":32.115,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.4,"y":32.115,"w":0.746,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":44.362,"y":32.903,"w":0.488,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":45.002,"y":32.903,"w":1.464,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":46.962,"y":32.903,"w":16.10399999999999,"clr":-1,"A":"left","R":[{"T":"..................................................................","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":68.512,"y":32.903,"w":0.458,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#838383","x":69.456,"y":32.903,"w":0.866,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":54.714,"y":33.6,"w":0.5860000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":55.395,"y":33.6,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":55.766,"y":33.6,"w":0.8790000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":56.797,"y":33.6,"w":0.5860000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":57.477,"y":33.6,"w":5.567000000000002,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":63.995000000000005,"y":33.6,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":64.365,"y":33.6,"w":3.5160000000000013,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":68.47,"y":33.6,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#838383","x":69.531,"y":33.66,"w":0.866,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.713,"y":34.32,"w":0.493,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.391,"y":34.32,"w":0.493,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.073,"y":34.32,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.825,"y":34.336,"w":3.4320000000000004,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,17.384999999999998,0,0]}]},{"oc":"#1f1f1f","x":68.271,"y":34.336,"w":0.28600000000000003,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17.384999999999998,0,0]}]},{"oc":"#1f1f1f","x":68.931,"y":34.35,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#838383","x":69.566,"y":34.387,"w":0.8360000000000001,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":35.062,"w":0.493,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.33,"y":35.062,"w":0.493,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.03,"y":35.062,"w":0.265,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.704,"y":35.047,"w":2.39,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":69.007,"y":35.047,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.572,"y":35.107,"w":0.866,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.719,"y":35.85,"w":0.986,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.101,"y":35.85,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.434,"y":35.783,"w":4.668,"clr":-1,"A":"left","R":[{"T":"BALANCE","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":18.479,"y":35.783,"w":0.5720000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":62.48,"y":35.812,"w":0.762,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":63.554,"y":35.812,"w":0.762,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.628,"y":35.813,"w":2.286,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.839,"y":35.813,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":68.149,"y":35.813,"w":0.7170000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":69.139,"y":35.813,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.674,"y":35.94,"w":0.866,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.657,"y":36.615,"w":1.251,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":36.71,"y":36.563,"w":1.1360000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":38.278,"y":36.563,"w":1.9880000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":41.024,"y":36.562,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#838383","x":53.416,"y":36.63,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.988,"y":36.63,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":67.855,"y":36.63,"w":0.8420000000000001,"clr":-1,"A":"left","R":[{"T":"0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.628,"y":36.66,"w":0.866,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.712,"y":37.373,"w":0.493,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.392,"y":37.373,"w":0.493,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.094,"y":37.373,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.715,"y":38.085,"w":0.986,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.097,"y":38.085,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.717,"y":38.82,"w":0.986,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.099,"y":38.82,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":40.237,"y":38.76,"w":1.112,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#838383","x":53.416,"y":37.395,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.988,"y":37.395,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":67.855,"y":37.395,"w":0.8420000000000001,"clr":-1,"A":"left","R":[{"T":"0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.628,"y":37.425,"w":0.866,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":53.416,"y":38.168,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.988,"y":38.168,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":67.855,"y":38.168,"w":0.8420000000000001,"clr":-1,"A":"left","R":[{"T":"0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.628,"y":38.197,"w":0.866,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":53.416,"y":38.835,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.988,"y":38.835,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":67.855,"y":38.835,"w":0.8420000000000001,"clr":-1,"A":"left","R":[{"T":"0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.628,"y":38.865,"w":0.866,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.712,"y":39.585,"w":0.493,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.392,"y":39.585,"w":0.493,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.092,"y":39.585,"w":0.265,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"x":57.417,"y":39.57,"w":0.228,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":53.527,"y":39.564,"w":0.244,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,16.0413,0,0]}]},{"x":54.041,"y":39.564,"w":1.464,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[1,16.0413,0,0]}]},{"x":57.289,"y":39.564,"w":3.171999999999999,"clr":0,"A":"left","R":[{"T":".............","S":-1,"TS":[1,16.0413,0,0]}]},{"x":64.29,"y":39.57,"w":0.456,"clr":0,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":64.904,"y":39.57,"w":0.229,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":65.234,"y":39.57,"w":0.458,"clr":0,"A":"left","R":[{"T":"..","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":65.874,"y":39.57,"w":0.687,"clr":0,"A":"left","R":[{"T":"...","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":66.822,"y":39.57,"w":0.228,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":67.462,"y":39.6,"w":0.868,"clr":0,"A":"left","R":[{"T":"%3E%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.676,"y":39.63,"w":0.866,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":83.261,"y":39.615,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.833,"y":39.615,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":9.712,"y":40.35,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.052,"y":40.35,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"x":64.348,"y":40.32,"w":0.228,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":62.522,"y":40.314,"w":1.145,"clr":0,"A":"left","R":[{"T":".....","S":-1,"TS":[1,22.6196,0,0]}]},{"x":66.33,"y":40.32,"w":0.684,"clr":0,"A":"left","R":[{"T":"...","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":67.544,"y":40.35,"w":0.868,"clr":0,"A":"left","R":[{"T":"%3E%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.717,"y":40.38,"w":0.866,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.713,"y":41.108,"w":0.493,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.393,"y":41.108,"w":0.493,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.095,"y":41.108,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"x":59.512,"y":41.077,"w":4.779999999999999,"clr":0,"A":"left","R":[{"T":"....................","S":-1,"TS":[1,11.04,0,0]}]},{"x":66.278,"y":41.077,"w":0.912,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"x":67.771,"y":41.107,"w":0.868,"clr":0,"A":"left","R":[{"T":"%3E%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.799,"y":41.137,"w":0.866,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":83.24,"y":40.365,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.812,"y":40.365,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.241,"y":41.123,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.814,"y":41.123,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":9.609,"y":41.895,"w":0.493,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.289,"y":41.895,"w":0.493,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.991,"y":41.895,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":71.009,"y":41.895,"w":0.28600000000000003,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":71.402,"y":41.895,"w":0.28600000000000003,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":71.794,"y":41.895,"w":2.2880000000000003,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":74.767,"y":41.895,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#838383","x":75.674,"y":41.865,"w":0.8360000000000001,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":90.541,"y":41.835,"w":1.09,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,11.5909,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":42.487,"w":0.493,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.33,"y":42.487,"w":0.493,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.03,"y":42.487,"w":0.265,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":43.215,"w":1.251,"clr":-1,"A":"left","R":[{"T":"26.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":43.89,"w":1.251,"clr":-1,"A":"left","R":[{"T":"27.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.65,"y":44.925,"w":0.493,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.33,"y":44.925,"w":0.493,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":11.03,"y":44.925,"w":0.265,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"x":73.773,"y":42.517,"w":0.866,"clr":0,"A":"left","R":[{"T":"%3E%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#838383","x":90.438,"y":42.578,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"x":73.815,"y":43.238,"w":0.866,"clr":0,"A":"left","R":[{"T":"%3E%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#838383","x":90.438,"y":43.298,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":90.438,"y":44.055,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":75.733,"y":44.88,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":90.438,"y":44.85,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#333333","x":8.928,"y":9.6,"w":16.458999999999993,"clr":-1,"A":"left","R":[{"T":"Present%20Home%20Address%20(Number%20and%20Street)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":9.402,"y":14.985,"w":25.507,"clr":-1,"A":"left","R":[{"T":"Column%20A%20is%20for%20Spouse%20information%2C%20Filing%20Status%204%20only.%20%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":43.537,"y":14.985,"w":17.464000000000002,"clr":0,"A":"left","R":[{"T":"All%20other%20filing%20statuses%20use%20Column%20B.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":12.414,"y":16.455,"w":25.383000000000013,"clr":0,"A":"left","R":[{"T":"If%20you%20elect%20the%20DELAWARE%20STANDARD%20DEDUCTION%20check%20here.....","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.406,"y":17.648,"w":21.316000000000003,"clr":0,"A":"left","R":[{"T":"Filing%20Status%204%20Enter%20%243250%20in%20Column%20A%20and%20in%20Column%20B","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":12.414,"y":18.218,"w":25.247000000000014,"clr":0,"A":"left","R":[{"T":"If%20you%20elect%20the%20DELAWARE%20ITEMIZED%20DEDUCTIONS%20check%20here.....","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.414,"y":17.13,"w":33.81299999999999,"clr":0,"A":"left","R":[{"T":"Filing%20Statuses%201%2C%203%20%26%205%20Enter%20%243250%20in%20Column%20B%3B%20Filing%20Status%202%20Enter%20%246500%20in%20Column%20B%3B","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":12.414,"y":18.825,"w":35.30999999999999,"clr":0,"A":"left","R":[{"T":"Filing%20Statuses%201%2C%202%2C%203%20and%205%2C%20enter%20Itemized%20Deductions%20from%20reverse%20side%2C%20Line%2048%20in%20Column%20B","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":12.414,"y":19.312,"w":32.691999999999986,"clr":0,"A":"left","R":[{"T":"Filing%20status%204%20enter%20Itemized%20Deductions%20from%20reverse%20side%2C%20Line%2048%20in%20Columns%20A%20and%20B","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":12.291,"y":20.032,"w":16.156,"clr":0,"A":"left","R":[{"T":"ADDITIONAL%20STANDARD%20DEDUCTIONS%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":34.627,"y":20.003,"w":25.914000000000005,"clr":-1,"A":"left","R":[{"T":"(Not%20Allowed%20with%20Itemized%20Deductions%20-%20see%20instructions)","S":-1,"TS":[0,9.96,0,0]}]},{"x":12.414,"y":20.542,"w":49.35899999999989,"clr":0,"A":"left","R":[{"T":"Multiply%20the%20number%20of%20boxes%20checked%20below%20by%20%242500.%20If%20you%20are%20filing%20a%20combined%20separate%20return%20(Filing%20status%204)%2C%20enter%20the%20total%20for","S":-1,"TS":[1,9.96,0,0]}]},{"x":12.414,"y":21.007,"w":21.216000000000008,"clr":0,"A":"left","R":[{"T":"each%20appropriate%20column.%20All%20others%20enter%20total%20in%20Column%20B.","S":-1,"TS":[1,9.96,0,0]}]},{"x":12.403,"y":26.053,"w":23.737,"clr":0,"A":"left","R":[{"T":"Spouse","S":2,"TS":[0,10,0,0]}]},{"x":29.576,"y":26.095,"w":29.176,"clr":0,"A":"left","R":[{"T":"Taxpayer","S":2,"TS":[0,10,0,0]}]},{"x":26.604,"y":1.3650000000000002,"w":17.056,"clr":0,"A":"left","R":[{"T":"DELAWARE%20INDIVIDUAL%20RESIDENT%20","S":3,"TS":[0,12,0,0]}]},{"x":31.347,"y":1.995,"w":10.735,"clr":0,"A":"left","R":[{"T":"INCOME%20TAX%20RETURN","S":-1,"TS":[0,11.5909,0,0]}]},{"oc":"#1f1f1f","x":34.812,"y":2.61,"w":6.661000000000001,"clr":-1,"A":"left","R":[{"T":"FORM%20200-%2001","S":-1,"TS":[0,11.5909,0,0]}]},{"oc":"#333333","x":8.412,"y":3.6900000000000004,"w":8.801000000000002,"clr":-1,"A":"left","R":[{"T":"or%20Fiscal%20year%20beginning","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#333333","x":35.039,"y":3.878,"w":4.098,"clr":-1,"A":"left","R":[{"T":"and%20ending","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#333333","x":8.433,"y":4.463,"w":8.647,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20No.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":33.431,"y":4.463,"w":8.966999999999999,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Sec.%20No.","S":-1,"TS":[1,10.5375,0,0]}]},{"oc":"#333333","x":8.928,"y":6.69,"w":5.925000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Last%20Name","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":42.667,"y":6.69,"w":4.459,"clr":-1,"A":"left","R":[{"T":"Middle%20Initial","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":33.345,"y":8.13,"w":7.344000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20First%20Name","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#333333","x":43.413,"y":9.6,"w":1.9400000000000004,"clr":-1,"A":"left","R":[{"T":"Apt.%23","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":8.928,"y":11.123,"w":1.4,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":34.462,"y":11.123,"w":1.915,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":41.18,"y":11.123,"w":3.3830000000000005,"clr":-1,"A":"left","R":[{"T":"Zip%20Code","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":9.671,"y":12.675,"w":5.181000000000001,"clr":-1,"A":"left","R":[{"T":"Form%20DE2210","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#333333","x":11.012,"y":14.145,"w":3.3089999999999997,"clr":-1,"A":"left","R":[{"T":"Attached","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#333333","x":18.25,"y":12.607,"w":25.162,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20a%20part-year%20resident%20in%202013%2C%20give%20the%20dates%20you%20resided%20in","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#333333","x":18.249,"y":13.005,"w":3.8710000000000004,"clr":-1,"A":"left","R":[{"T":"Delaware.","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":66.226,"y":11.123,"w":14.185999999999996,"clr":-1,"A":"left","R":[{"T":"FILING%20STATUS%20(MUST%20CHECK%20ONE)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":60.944,"y":11.722,"w":6.062000000000001,"clr":-1,"A":"left","R":[{"T":"Single%2C%20Divorced%2C","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":60.986,"y":12.195,"w":3.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Widow(er)","S":-1,"TS":[1,9.7943,0,0]}]},{"oc":"#1f1f1f","x":60.862,"y":13.283,"w":5.881000000000001,"clr":-1,"A":"left","R":[{"T":"Joint%20or%20Entered%20","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":60.882,"y":13.718,"w":6.008000000000002,"clr":-1,"A":"left","R":[{"T":"into%20a%20Civil%20Union","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":74.804,"y":11.722,"w":11.054000000000002,"clr":-1,"A":"left","R":[{"T":"Married%20or%20Entered%20into%20a%20Civil%20%20%20","S":-1,"TS":[1,9.7943,0,0]}]},{"oc":"#1f1f1f","x":74.745,"y":12.165,"w":10.979000000000005,"clr":-1,"A":"left","R":[{"T":"Union%20%26%20Filing%20Separate%20Forms","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":74.742,"y":13.23,"w":13.586,"clr":-1,"A":"left","R":[{"T":"Married%20or%20Entered%20into%20a%20Civil%20Union","S":-1,"TS":[1,9.7943,0,0]}]},{"oc":"#1f1f1f","x":74.744,"y":13.65,"w":14.766999999999998,"clr":-1,"A":"left","R":[{"T":"%26%20Filing%20Combined%20Separate%20on%20this%20form","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":93.576,"y":11.73,"w":2.942,"clr":-1,"A":"left","R":[{"T":"Head%20of","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#1f1f1f","x":93.576,"y":12.127,"w":4.010000000000001,"clr":-1,"A":"left","R":[{"T":"Household","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#333333","x":74.969,"y":14.88,"w":4.382000000000001,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#333333","x":89.097,"y":14.88,"w":4.382000000000001,"clr":-1,"A":"left","R":[{"T":"Column%20B","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#000019","x":12.331,"y":15.697,"w":48.83295299999999,"clr":-1,"A":"left","R":[{"T":"DELAWARE%20ADJUSTED%20GROSS%20INCOME.%20Begin%20Return%20on%20Page%202%2C%20Line%2029%2C%20then%20enter%20amount%20from%20Line%2042%20here...%3E1","S":-1,"TS":[1,10.99704,0,0]}]},{"x":54.923,"y":21.63,"w":3.7320000000000007,"clr":0,"A":"left","R":[{"T":"65%20or%20over","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":42.382,"y":21.63,"w":3.8640000000000008,"clr":0,"A":"left","R":[{"T":"Column%20B%20","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":47.374,"y":21.63,"w":5.377,"clr":0,"A":"left","R":[{"T":"-%20if%20YOU%20were%3A%20","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":12.291,"y":22.507,"w":10.111999999999998,"clr":0,"A":"left","R":[{"T":"TOTAL%20DEDUCTIONS","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":26.521,"y":22.537,"w":28.953000000000078,"clr":0,"A":"left","R":[{"T":"-%20%20Add%20Lines%202%20%26%203%20and%20enter%20here........................................................................%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.29,"y":23.287,"w":9.058,"clr":0,"A":"left","R":[{"T":"TAXABLE%20INCOME%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":24.851,"y":23.318,"w":30.31500000000005,"clr":0,"A":"left","R":[{"T":"-%20%20Subtract%20Line%204%20from%20Line%201%2C%20and%20Compute%20Tax%20on%20this%20Amount...............................","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.289,"y":24.12,"w":15.677999999999995,"clr":0,"A":"left","R":[{"T":"Tax%20Liability%20from%20Tax%20Rate%20Table%2FSchedule","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.418,"y":24.728,"w":19.612000000000002,"clr":0,"A":"left","R":[{"T":"See%20Instructions...............................................................","S":-1,"TS":[1,11.04,0,0]}]},{"x":45.847,"y":23.933,"w":4.502,"clr":0,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,10.155000000000001,0,0]}]},{"x":60.14,"y":23.933,"w":4.510000000000001,"clr":0,"A":"left","R":[{"T":"Column%20B","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":12.29,"y":25.507,"w":11.256999999999998,"clr":0,"A":"left","R":[{"T":"Tax%20on%20Lump%20Sum%20Distribution%20","S":-1,"TS":[1,11.04,0,0]}]},{"x":27.704,"y":25.44,"w":5.025,"clr":0,"A":"left","R":[{"T":"(Form%20329)","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":12.291,"y":26.76,"w":5.749,"clr":0,"A":"left","R":[{"T":"TOTAL%20TAX%20%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":20.437,"y":26.76,"w":30.187999999999935,"clr":0,"A":"left","R":[{"T":"-%20%20Add%20Lines%206%20and%207%20and%20enter%20here....................................................","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":27.405,"w":10.663,"clr":-1,"A":"left","R":[{"T":"PERSONAL%20CREDITS%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":26.624,"y":27.435,"w":19.191000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20Filing%20Status%203%2C%20see%20instructions%20on%20Page%206.","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":12.411,"y":27.937,"w":37.560000000000024,"clr":-1,"A":"left","R":[{"T":"If%20you%20use%20Filing%20Status%204%2C%20enter%20the%20total%20for%20each%20appropriate%20column.%20All%20others%20enter%20total%20in%20Column%20B.","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":28.504,"w":20.34,"clr":-1,"A":"left","R":[{"T":"Enter%20number%20of%20exemptions%20claimed%20on%20Federal%20return","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":29.055,"w":17.459,"clr":-1,"A":"left","R":[{"T":"On%20Line%209a%2C%20enter%20the%20number%20of%20exemptions%20for%3A","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":29.812,"w":7.994000000000001,"clr":-1,"A":"left","R":[{"T":"CHECK%20BOX(ES)","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":27.078,"y":29.812,"w":10.847,"clr":-1,"A":"left","R":[{"T":"Spouse%2060%20or%20over%20(ColumnA)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":49.419,"y":29.812,"w":9.479000000000001,"clr":-1,"A":"left","R":[{"T":"Self%2060%20or%20over%20(ColumnB)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":30.76,"w":16.793000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20number%20of%20boxes%20checked%20on%20Line%209b.%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":43.068,"y":30.76,"w":3.055,"clr":-1,"A":"left","R":[{"T":"X%20%20%24110.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":31.387999999999998,"w":9.527,"clr":-1,"A":"left","R":[{"T":"Tax%20imposed%20by%20State%20of%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":32.338,"y":31.357,"w":25.282999999999983,"clr":-1,"A":"left","R":[{"T":"(Must%20attach%20copy%20of%20DE%20ScheduleI%20and%20other%20state%20return)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":32.115,"w":9.617,"clr":-1,"A":"left","R":[{"T":"Volunteer%20Fire%20fighter%20Co.%23","S":-1,"TS":[1,10.5375,0,0]}]},{"oc":"#1f1f1f","x":41.352,"y":32.115,"w":5.966999999999999,"clr":-1,"A":"left","R":[{"T":"Self%20(Column%20B)%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":26.315,"y":32.115,"w":7.131000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%20(Column%20A)%20","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"oc":"#1f1f1f","x":56.138,"y":32.115,"w":9.038000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20credit%20amount.......","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":32.902,"w":21.900999999999993,"clr":-1,"A":"left","R":[{"T":"Other%20Non-Refundable%20Credits%20(see%20instructionson%20Page%207)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":33.6,"w":6.732000000000001,"clr":-1,"A":"left","R":[{"T":"Child%20Care%20Credit.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":21.967,"y":33.57,"w":24.300000000000004,"clr":-1,"A":"left","R":[{"T":"Must%20attach%20Form%202441.%20(Enter%2050%25%20of%20Federal%20credit)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":34.29,"w":12.324,"clr":-1,"A":"left","R":[{"T":"Earned%20Income%20Tax%20Credit.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#333333","x":28.443,"y":34.29,"w":26.521,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20on%20Page%208%20for%20ALL%20required%20documentation","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":12.414,"y":35.047,"w":38.35400000000005,"clr":-1,"A":"left","R":[{"T":"Total%20Non-Refundable%20Credits.%20Add%20Lines%209a%2C%209b%2C%2010%2C%2011%2C%2012%2C%2013%20%26%2014%20and%20enter%20here.........................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":19.612,"y":35.813,"w":29.92599999999999,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2015%20from%20Line%208.%20If%20Line%2015%20is%20greater%20than%20Line%208%2C%20enter%20%E2%80%9C0%E2%80%9D%20(Zero)....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.421,"y":36.592,"w":8.704,"clr":-1,"A":"left","R":[{"T":"Delaware%20Tax%20Withheld%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":24.256,"y":36.563,"w":9.287,"clr":-1,"A":"left","R":[{"T":"(Attach%20W2s%2F%201099s)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#1f1f1f","x":12.435,"y":37.342,"w":20.320999999999998,"clr":-1,"A":"left","R":[{"T":"2013%20Estimated%20Tax%20Paid%20%26%20Payments%20with%20Extensions.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.437,"y":38.055,"w":19.736000000000004,"clr":-1,"A":"left","R":[{"T":"S%20Corp%20Payments%20and%20Refundable%20Business%20Credits....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.44,"y":38.82,"w":12.195000000000004,"clr":-1,"A":"left","R":[{"T":"2013%20Capital%20Gains%20Tax%20Payments","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":29.45,"y":38.76,"w":8.578000000000001,"clr":-1,"A":"left","R":[{"T":"(Attach%20Form%205403)","S":-1,"TS":[0,9.96,0,0]}]},{"x":12.414,"y":39.57,"w":29.815000000000026,"clr":0,"A":"left","R":[{"T":"TOTAL%20Refundable%20Credits.%20Add%20Lines%2017%2C%2018%2C%2019%2C%20and%2020%20and%20enter%20here...............","S":-1,"TS":[1,11.04,0,0]}]},{"x":22.5,"y":40.32,"w":28.949000000000023,"clr":0,"A":"left","R":[{"T":"If%20Line%2016%20is%20greater%20than%20Line%2021%2C%20subtract%20%2021%20from%2016%20and%20enter%20here.................","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.434,"y":41.047,"w":8.138,"clr":0,"A":"left","R":[{"T":"OVERPAYMENT.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":23.159,"y":41.077,"w":24.845,"clr":0,"A":"left","R":[{"T":"If%20Line%2021%20is%20greater%20than%20Line%2016%2C%20subtract%2016%20from%2021%20and%20enter%20here","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.434,"y":41.865,"w":18.319000000000003,"clr":0,"A":"left","R":[{"T":"CONTRIBUTIONS%20TO%20SPECIAL%20FUNDS","S":-1,"TS":[0,10.425,0,0]}]},{"oc":"#333333","x":36.834,"y":41.895,"w":26.151000000000003,"clr":-1,"A":"left","R":[{"T":"If%20electing%20a%20contribution%2C%20complete%20and%20attach%20DE%20Schedule%20III","S":-1,"TS":[0,9.96,0,0]}]},{"x":12.414,"y":42.48,"w":37.59699999999995,"clr":0,"A":"left","R":[{"T":"AMOUNT%20OF%20LINE%2023%20TO%20BE%20APPLIED%20TO%202014%20ESTIMATED%20TAX%20ACCOUNT..............................","S":-1,"TS":[1,11.04,0,0]}]},{"x":69.153,"y":42.517,"w":3.5740000000000003,"clr":0,"A":"left","R":[{"T":"ENTER","S":-1,"TS":[0,9.96,0,0]}]},{"x":12.414,"y":43.207,"w":13.225,"clr":0,"A":"left","R":[{"T":"PENALTIES%20AND%20INTEREST%20DUE.%20","S":-1,"TS":[1,10.872499999999999,0,0]}]},{"x":30.144,"y":43.207,"w":25.346000000000018,"clr":0,"A":"left","R":[{"T":"If%20Line%2022%20is%20greater%20than%20%24400%2C%20see%20estimated%20tax%20instructions..............","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.414,"y":43.897,"w":7.955000000000001,"clr":0,"A":"left","R":[{"T":"NET%20BALANCE%20DUE","S":-1,"TS":[1,11.04,0,0]}]},{"x":23.943,"y":43.897,"w":29.501000000000044,"clr":0,"A":"left","R":[{"T":"(For%20Filing%20Status%204%2C%20see%20instructions%2C%20page%209).....................................................","S":-1,"TS":[1,11.04,0,0]}]},{"x":65.874,"y":43.987,"w":7.142000000000001,"clr":0,"A":"left","R":[{"T":"PAY%20IN%20FULL%20%3E%20","S":-1,"TS":[0,9.96,0,0]}]},{"x":12.414,"y":44.409,"w":23.97500000000001,"clr":0,"A":"left","R":[{"T":"For%20all%20other%20filing%20statuses%2C%20enter%20Line%2022%20plus%20Lines%2024%20and%2026","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.421,"y":44.973,"w":5.283999999999999,"clr":0,"A":"left","R":[{"T":"NET%20REFUND","S":-1,"TS":[1,11.04,0,0]}]},{"x":20.401,"y":44.973,"w":23.93200000000005,"clr":0,"A":"left","R":[{"T":"(For%20Filing%20Status%204%2C%20see%20instructions%2C%20Page%209).................................","S":-1,"TS":[1,11.04,0,0]}]},{"x":56.118,"y":44.91,"w":15.237,"clr":0,"A":"left","R":[{"T":"ZERO%20DUE%2FTO%20BE%20REFUNDED%20%3E%20","S":-1,"TS":[0,9.96,0,0]}]},{"x":12.414,"y":45.57,"w":25.666,"clr":0,"A":"left","R":[{"T":"For%20all%20other%20filing%20statuses%2C%20subtract%20Lines%2024%2C%2025%20and%2026%20from%20Line%2023","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":61.481,"y":1.267,"w":20.044999999999995,"clr":-1,"A":"left","R":[{"T":"DO%20NOT%20WRITE%20OR%20STAPLE%20IN%20THIS%20AREA","S":3,"TS":[0,12,0,0]}]},{"oc":"#333333","x":33.433,"y":6.69,"w":3.939,"clr":-1,"A":"left","R":[{"T":"First%20Name","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":43.225,"y":8.143,"w":4.459,"clr":-1,"A":"left","R":[{"T":"Middle%20Initial","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":48.669,"y":28.535,"w":0.547,"clr":-1,"A":"left","R":[{"T":"X","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":49.807,"y":28.535,"w":0.456,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":50.419,"y":28.535,"w":1.596,"clr":-1,"A":"left","R":[{"T":"110.","S":-1,"TS":[1,10.559999999999999,0,0]}]},{"x":12.393,"y":40.29,"w":7.6129999999999995,"clr":0,"A":"left","R":[{"T":"BALANCE%20DUE.%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"x":69.256,"y":43.238,"w":3.5740000000000003,"clr":0,"A":"left","R":[{"T":"ENTER","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#838383","x":75.66,"y":42.607,"w":0.912,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":75.743,"y":44.085,"w":0.912,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":75.702,"y":43.335,"w":0.912,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#333333","x":8.928,"y":8.13,"w":7.566000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Last%20Name","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":44.551,"y":29.055,"w":3.7760000000000002,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":54.699,"y":29.055,"w":3.7760000000000002,"clr":-1,"A":"left","R":[{"T":"Column%20B","S":-1,"TS":[1,11.04,0,0]}]},{"x":12.414,"y":21.63,"w":13.571000000000009,"clr":0,"A":"left","R":[{"T":"Column%20A%20-%20if%20SPOUSE%20was%3A%2065%20or%20over","S":-1,"TS":[1,10.3957,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYBEG","EN":0},"TI":0,"AM":0,"x":20.001,"y":3.926,"w":14.354,"h":0.833,"TU":"Fiscal year beginning","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYEND","EN":0},"TI":1,"AM":0,"x":41.049,"y":3.919,"w":13.957,"h":0.833,"TU":"ending","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":2,"AM":0,"x":8.951,"y":5.564,"w":21.532,"h":1.177,"TU":"Your Social Security No."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":3,"AM":0,"x":33.555,"y":5.564,"w":22.09,"h":1.204,"TU":"Spouse’s Social Security No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":4,"AM":0,"x":8.951,"y":7.617,"w":24.151,"h":0.833,"TU":"Your Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":5,"AM":0,"x":33.785,"y":7.644,"w":8.613,"h":0.833,"TU":"First Name "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":6,"AM":0,"x":43.207,"y":7.61,"w":5.237,"h":0.833,"TU":"Middle Initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPSUFFIX","EN":0},"TI":7,"AM":0,"x":49.318,"y":7.609,"w":6.2,"h":0.833,"TU":"Taxpayer's Suffix"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":8,"AM":0,"x":8.951,"y":9.036,"w":24.301,"h":0.833,"TU":"Spouse’s Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":9,"AM":0,"x":33.795,"y":9.063,"w":10.185,"h":0.833,"TU":"Spouse’s First Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":10,"AM":0,"x":44.609,"y":9.061,"w":4.853,"h":0.833,"TU":"Spouse's Middle Initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPSUFFIX","EN":0},"TI":11,"AM":0,"x":50.05,"y":9.036,"w":5.376,"h":0.833,"TU":"Spouse's suffix"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":12,"AM":0,"x":9.215,"y":10.504,"w":44.798,"h":0.858,"TU":"Present Home Address (Number and Street), and Apt # (if applicable)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":13,"AM":0,"x":9.035,"y":12.02,"w":25.454,"h":0.833,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":14,"AM":0,"x":35.124,"y":12.009,"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":15,"AM":0,"x":41.352,"y":12.082,"w":14.056,"h":0.833,"TU":"Zip Code"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PYFMMDD","EN":0},"TI":17,"AM":1024,"x":25.311,"y":13.68,"w":9.31,"h":0.833,"TU":"Part-year resident from ","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PYTMMDD","EN":0},"TI":18,"AM":1024,"x":42.292,"y":13.686,"w":9.31,"h":0.833,"TU":"Part-year resident to","MV":"mm/dd"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEAGI","EN":0},"TI":24,"AM":1024,"x":72.114,"y":15.87,"w":10.638,"h":0.833,"TU":"Line 1, Column A. Delaware Adjusted Gross Income. Begin Return on Page 2, Line 29, then enter amount from Line 42 here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEAGI","EN":0},"TI":25,"AM":1024,"x":85.456,"y":15.836,"w":10.937,"h":0.833,"TU":"Line 1, Column B. Delaware Adjusted Gross Income. Begin Return on Page 2, Line 29, then enter amount from Line 42 here"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDESDVID","EN":0},"TI":28,"AM":0,"x":71.838,"y":19.657,"w":10.788,"h":0.833,"TU":"Line 2.. Column A. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDESDVID","EN":0},"TI":29,"AM":0,"x":85.479,"y":19.623,"w":10.862,"h":0.833,"TU":"26_Column A. Itemized Deductions from Line 4826_Column B. Itemized Deductions from Line 48"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEADDSD","EN":0},"TI":34,"AM":0,"x":71.968,"y":21.852,"w":10.638,"h":0.833,"TU":"Line3 Column A. Additional Standard Deductions (Not Allowed with Itemized Deductions - see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEADDSD","EN":0},"TI":35,"AM":0,"x":85.695,"y":21.892,"w":10.809,"h":0.833,"TU":"Line3 Column B. Additional Standard Deductions (Not Allowed with Itemized Deductions - see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEDUCT","EN":0},"TI":36,"AM":1024,"x":71.947,"y":22.671,"w":10.638,"h":0.833,"TU":"Line 4_Column A. Total Deductions. Add Lines 2 & 3 and enter here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEDUCT","EN":0},"TI":37,"AM":1024,"x":85.675,"y":22.687,"w":10.788,"h":0.833,"TU":"Line 4_Column B. Total Deductions. Add Lines 2 & 3 and enter here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDETI","EN":0},"TI":38,"AM":1024,"x":72.002,"y":23.392,"w":10.563,"h":0.833,"TU":"5_Column A. Taxable Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDETI","EN":0},"TI":39,"AM":1024,"x":85.73,"y":23.374,"w":10.788,"h":0.833,"TU":"5_Column B. Taxable Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDETXTBL","EN":0},"TI":40,"AM":0,"x":40.759,"y":24.883,"w":12.102,"h":0.833,"TU":"6_Column A. Tax Liability from Tax Rate Table/Schedule "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDETXTBL","EN":0},"TI":41,"AM":0,"x":55.931,"y":24.91,"w":10.976,"h":0.833,"TU":"6_Column B. Tax Liability from Tax Rate Table/ScheduleColumn B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEF329","EN":0},"TI":42,"AM":1024,"x":40.609,"y":25.599,"w":12.252,"h":0.833,"TU":"7. Column A. TAX on Lump Sum Distribution( Form 329)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEF329","EN":0},"TI":43,"AM":1024,"x":56.006,"y":25.626,"w":10.901,"h":0.833,"TU":"7. Column B. TAX on Lump Sum Distribution( Form 329)"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DE329S"}},"id":{"Id":"Add_F329S","EN":0},"TI":44,"AM":0,"x":16.845,"y":26.283,"w":6.086,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DE329T"}},"id":{"Id":"Add_F329T","EN":0},"TI":45,"AM":0,"x":35.117,"y":26.269,"w":6.086,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDETAX","EN":0},"TI":46,"AM":1024,"x":71.807,"y":27.032,"w":10.919,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDETAX","EN":0},"TI":47,"AM":1024,"x":85.535,"y":27.014,"w":10.919,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SFDEX","EN":0},"TI":48,"AM":0,"x":71.735,"y":28.459,"w":10.844,"h":0.833,"TU":"9a_ Column A. Personal Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TFDEX","EN":0},"TI":49,"AM":0,"x":85.463,"y":28.504,"w":10.919,"h":0.833,"TU":"9a_ Column B. Personal Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FDEXNUM","EN":0},"TI":50,"AM":0,"x":40.861,"y":28.785,"w":7.325,"h":0.833,"TU":"Enter number of exemptions claimed on Federal return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SFDEXNUM","EN":0},"TI":51,"AM":0,"x":50.035,"y":29.383,"w":2.07,"h":0.833,"TU":"enter the number of exemptions for Column A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TFDEXNUM","EN":0},"TI":52,"AM":0,"x":60.06,"y":29.398,"w":2.198,"h":0.833,"TU":"enter the number of exemptions for Column B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDCRNUM","EN":0},"TI":55,"AM":1024,"x":37.221,"y":30.897,"w":5.766,"h":0.833,"TU":"Enter number of boxes checked on Line 9b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEADDCR","EN":0},"TI":56,"AM":0,"x":71.715,"y":30.85,"w":11.069,"h":0.833,"TU":"9b_Column A. Spouse 60 or over credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEADDCR","EN":0},"TI":57,"AM":0,"x":85.517,"y":30.805,"w":10.994,"h":0.833,"TU":"9b_Column B. Spouse 60 or over credit"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OSNAME","EN":0},"TI":58,"AM":1024,"x":26.803,"y":31.608,"w":4.294,"h":0.833,"TU":"Tax imposed by state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SOSTXCR","EN":0},"TI":59,"AM":1024,"x":71.769,"y":31.542,"w":10.994,"h":0.833,"TU":"10_ Column A. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRENOA","EN":0},"TI":60,"AM":0,"x":36.991,"y":32.309,"w":3.279,"h":0.833,"TU":"Volunteer Firefighter Co. # -Spouse (Column A"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DE201P3"}},"id":{"Id":"Add_DE201P3","EN":0},"TI":61,"AM":0,"x":65.284,"y":31.401,"w":4.065,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOSTXCR","EN":0},"TI":62,"AM":1024,"x":85.497,"y":31.524,"w":10.844,"h":0.833,"TU":"10_ Column B. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRENOB","EN":0},"TI":63,"AM":0,"x":50.416,"y":32.236,"w":3.259,"h":0.833,"TU":"Self (Column B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SONRCR","EN":0},"TI":64,"AM":0,"x":71.749,"y":32.235,"w":11.144,"h":0.833,"TU":"11_ Column A. Volunteer Firefighter Credit"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DE201P3"}},"id":{"Id":"Add_DE201P3","EN":0},"TI":65,"AM":0,"x":64.974,"y":34.206,"w":4.065,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TONRCR","EN":0},"TI":66,"AM":0,"x":85.477,"y":32.279,"w":10.769,"h":0.833,"TU":"11_ Column B. Volunteer Firefighter Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SOTHNRCR","EN":0},"TI":67,"AM":0,"x":71.782,"y":32.999,"w":11.218,"h":0.833,"TU":"12_ Column A. Other Non-Refundable Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTHNRCR","EN":0},"TI":68,"AM":0,"x":85.51,"y":32.981,"w":10.844,"h":0.833,"TU":"12_ Column B. Other Non-Refundable Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TF2441CR","EN":0},"TI":69,"AM":0,"x":85.521,"y":33.792,"w":10.769,"h":0.833,"TU":"13_ Column B. Child Care Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEITC","EN":0},"TI":70,"AM":0,"x":71.698,"y":34.556,"w":11.293,"h":0.833,"TU":"14_ Column A. Earned Income Tax Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TEITC","EN":0},"TI":71,"AM":0,"x":85.598,"y":34.538,"w":10.769,"h":0.833,"TU":"14_ Column B. Earned Income Tax Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SNREFCR","EN":0},"TI":72,"AM":1024,"x":71.815,"y":35.308,"w":11.293,"h":0.833,"TU":"15_ Column A. Total Non-Refundable Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TNREFCR","EN":0},"TI":73,"AM":1024,"x":85.64,"y":35.228,"w":10.844,"h":0.833,"TU":"15_ Column B. Total Non-Refundable Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STAXLIAB","EN":0},"TI":74,"AM":1024,"x":71.817,"y":36.028,"w":11.144,"h":0.833,"TU":"16_Column A. Balance. Subtract Line 15 from Line 8. If Line 15 is greater than Line 8, enter \"0\""},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TTAXLIAB","EN":0},"TI":75,"AM":1024,"x":85.717,"y":35.975,"w":10.844,"h":0.833,"TU":"16_Column B. Balance. Subtract Line 15 from Line 8. If Line 15 is greater than Line 8, enter \"0\""},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SF2441CR","EN":0},"TI":76,"AM":0,"x":71.833,"y":33.766,"w":10.962,"h":0.833,"TU":"13_ Column A. Child Care Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEWH","EN":0},"TI":77,"AM":0,"x":41.999,"y":36.779,"w":11.124,"h":0.833,"TU":"17. Column A. Delaware Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEWH","EN":0},"TI":78,"AM":0,"x":55.806,"y":36.733,"w":11.05,"h":0.833,"TU":"17. Column B. Delaware Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEPMT","EN":0},"TI":79,"AM":0,"x":41.999,"y":37.564,"w":11.199,"h":0.833,"TU":"18_Column A. 2013 Estimated Tax Paid & Payment with Extension"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEPMT","EN":0},"TI":80,"AM":0,"x":55.806,"y":37.581,"w":11.05,"h":0.833,"TU":"18_Column B. 2013 Estimated Tax Paid & Payment with Extension"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDESCORP","EN":0},"TI":81,"AM":0,"x":42.074,"y":38.384,"w":11.199,"h":0.833,"TU":"19_Column A. S Corp Payments and Refundable Business Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDESCORP","EN":0},"TI":82,"AM":0,"x":55.881,"y":38.338,"w":11.05,"h":0.833,"TU":"19_Column B. S Corp Payments and Refundable Business Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REESTPA","EN":0},"TI":83,"AM":0,"x":41.999,"y":39.093,"w":11.199,"h":0.833,"TU":"20_Column A. 2013 Capital Gains Tax Payments"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REESTPAB","EN":0},"TI":84,"AM":0,"x":55.881,"y":39.066,"w":11.199,"h":0.833,"TU":"20_Column B. 2013 Capital Gains Tax Payments"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SREFCR","EN":0},"TI":85,"AM":1024,"x":71.807,"y":39.699,"w":11.216,"h":0.833,"TU":"21_Column A. Total Refundable Credits"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DE201P3"}},"id":{"Id":"Add_DE201P3","EN":0},"TI":86,"AM":0,"x":71.317,"y":41.903,"w":4.065,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TREFCR","EN":0},"TI":87,"AM":1024,"x":85.601,"y":39.711,"w":10.767,"h":0.833,"TU":"21_Column B. Total Refundable Credits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SBALDUE","EN":0},"TI":88,"AM":1024,"x":71.807,"y":40.517,"w":11.291,"h":0.833,"TU":"22_Column A. Balance Due"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TBALDUE","EN":0},"TI":89,"AM":1024,"x":85.601,"y":40.447,"w":10.692,"h":0.833,"TU":"22_Column B. Balance Due"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SOVRPMT","EN":0},"TI":90,"AM":1024,"x":71.807,"y":41.334,"w":11.291,"h":0.833,"TU":"23_Column A. Overpayment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOVRPMT","EN":0},"TI":91,"AM":1024,"x":85.601,"y":41.264,"w":10.767,"h":0.833,"TU":"23_Column B. Overpayment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIB","EN":0},"TI":92,"AM":1024,"x":78.036,"y":41.957,"w":12.429,"h":0.84,"TU":"24. Contributions to special funds"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"APPLIED","EN":0},"TI":93,"AM":0,"x":78.036,"y":42.824,"w":12.504,"h":0.833,"TU":"25. Amount of line 23 to be applied to 2014 estimated tax account"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY","EN":0},"TI":94,"AM":0,"x":78.036,"y":43.557,"w":12.504,"h":0.833,"TU":"26. Penalties and interest due"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":95,"AM":1024,"x":78.039,"y":44.253,"w":12.429,"h":0.833,"TU":"Line 27. Net Balance Due"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":96,"AM":1024,"x":78.098,"y":44.999,"w":12.359,"h":0.833,"TU":"28. Net Refund"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2210","EN":0},"TI":16,"AM":1024,"x":12.434,"y":13.473,"w":2.27,"h":0.853}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":19,"AM":0,"x":58.091,"y":11.92,"w":2.42,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":20,"AM":0,"x":71.772,"y":11.907,"w":2.495,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":21,"AM":0,"x":90.373,"y":11.865,"w":2.57,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":22,"AM":0,"x":58.229,"y":13.684,"w":2.495,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":23,"AM":0,"x":71.901,"y":13.585,"w":2.345,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STDX","EN":0},"TI":26,"AM":0,"x":47.72,"y":16.639,"w":2.345,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ITEMX","EN":0},"TI":27,"AM":0,"x":47.767,"y":18.347,"w":2.345,"h":0.833,"checked":false}],"id":{"Id":"STDITERB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"S65X","EN":0},"TI":30,"AM":0,"x":30.558,"y":21.863,"w":2.465,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SBLINDX","EN":0},"TI":31,"AM":0,"x":37.855,"y":21.89,"w":2.315,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"T65X","EN":0},"TI":32,"AM":0,"x":60.221,"y":21.836,"w":2.39,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TBLINDX","EN":0},"TI":33,"AM":0,"x":66.433,"y":21.89,"w":2.39,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"S60X","EN":0},"TI":53,"AM":0,"x":42.392,"y":29.861,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"T60X","EN":0},"TI":54,"AM":0,"x":62.902,"y":30.022,"w":2.27,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#d9d9d9","x":80.515,"y":38.303,"w":1.311,"l":5.388},{"oc":"#d9d9d9","x":6.051,"y":38.813,"w":0.3315,"l":92.441},{"oc":"#d9d9d9","x":6.372,"y":38.297,"w":1.287,"l":92.058},{"oc":"#d9d9d9","x":6.089,"y":41.063,"w":2.7750000000000004,"l":92.751},{"oc":"#d9d9d9","x":49.603,"y":41.169,"w":0.384,"l":13.492},{"oc":"#bdbdbd","x":34.736,"y":35.288,"w":0.9045,"l":64.264},{"oc":"#bdbdbd","x":80.343,"y":39.775,"w":0.2865,"l":0.172},{"oc":"#b7b7b7","x":83.05,"y":21.675,"w":0.3375,"l":2.355},{"oc":"#b6b6b6","x":85.662,"y":26.831,"w":1.4835,"l":10.708},{"oc":"#b6b6b6","x":83.179,"y":26.203,"w":1.1325,"l":13.191},{"oc":"#b6b6b6","x":71.827,"y":26.109,"w":0.6675,"l":27.105},{"oc":"#acacac","x":85.662,"y":26.159,"w":1.2225,"l":10.708},{"oc":"#b6b6b6","x":71.827,"y":25.403,"w":1.6500000000000001,"l":27.105},{"oc":"#b6b6b6","x":71.827,"y":24.703,"w":1.6484999999999999,"l":27.105},{"oc":"#b6b6b6","x":71.784,"y":23.93,"w":1.6500000000000001,"l":27.105},{"oc":"#b6b6b6","x":71.827,"y":23.175,"w":1.6500000000000001,"l":27.105},{"oc":"#b6b6b6","x":71.827,"y":22.428,"w":1.6500000000000001,"l":27.105},{"clr":4,"x":82.878,"y":21.675,"w":0.3375,"l":0.172},{"oc":"#868686","x":85.405,"y":26.137,"w":0.21149999999999997,"l":0.172},{"oc":"#b6b6b6","x":85.569,"y":11.133,"w":0.8865,"l":13.456},{"oc":"#b6b6b6","x":82.921,"y":11.122,"w":0.41100000000000003,"l":2.501},{"oc":"#b6b6b6","x":82.921,"y":8.922,"w":1.1505,"l":13.578},{"oc":"#b6b6b6","x":85.569,"y":8.93,"w":0.8340000000000001,"l":13.456},{"oc":"#b6b6b6","x":71.981,"y":10.447,"w":1.6515,"l":26.967},{"oc":"#b6b6b6","x":71.981,"y":9.638,"w":1.6500000000000001,"l":26.967},{"oc":"#b6b6b6","x":83.007,"y":17.153,"w":1.1925000000000001,"l":16.096},{"oc":"#979797","x":96.43,"y":17.134,"w":0.315,"l":0.172},{"oc":"#b6b6b6","x":71.835,"y":15.666,"w":1.6515,"l":27.096},{"oc":"#b6b6b6","x":71.835,"y":14.188,"w":1.6500000000000001,"l":27.096},{"oc":"#b6b6b6","x":71.827,"y":13.431,"w":1.6500000000000001,"l":27.105},{"oc":"#b6b6b6","x":71.835,"y":16.409,"w":1.6500000000000001,"l":27.096},{"oc":"#b6b6b6","x":71.612,"y":19.425,"w":1.6515,"l":27.423},{"oc":"#b6b6b6","x":71.955,"y":18.669,"w":1.6500000000000001,"l":27.079},{"oc":"#b6b6b6","x":53.187,"y":11.219,"w":1.5404999999999998,"l":13.389},{"oc":"#b6b6b6","x":53.445,"y":17.237,"w":1.395,"l":13.389},{"oc":"#b6b6b6","x":82.942,"y":8.156,"w":0.8400000000000001,"l":15.873},{"oc":"#b6b6b6","x":82.86,"y":7.406,"w":1.59,"l":16.296},{"oc":"#b6b6b6","x":22.429,"y":30.633,"w":0.8699999999999999,"l":19.595},{"oc":"#b6b6b6","x":22.397,"y":29.203,"w":1.3635000000000002,"l":19.531},{"oc":"#b6b6b6","x":22.284,"y":32.831,"w":1.1055,"l":39.574},{"oc":"#b6b6b6","x":42.144,"y":32.825,"w":0.8025,"l":17.084},{"oc":"#dfdfdf","x":6.188,"y":27.2,"w":1.6500000000000001,"l":92.813},{"oc":"#dfdfdf","x":6.188,"y":33.8,"w":1.6500000000000001,"l":92.813},{"oc":"#b6b6b6","x":71.775,"y":7.4,"w":1.59,"l":13.578},{"oc":"#b6b6b6","x":71.749,"y":8.922,"w":1.1505,"l":13.578},{"oc":"#b6b6b6","x":71.93,"y":11.134,"w":0.8865,"l":10.905},{"oc":"#b6b6b6","x":71.603,"y":8.166,"w":0.8400000000000001,"l":13.578},{"oc":"#b6b6b6","x":71.955,"y":17.856,"w":1.6500000000000001,"l":27.079},{"oc":"#b6b6b6","x":71.612,"y":20.144,"w":1.6515,"l":27.423},{"oc":"#b6b6b6","x":72.084,"y":26.831,"w":1.4835,"l":10.708},{"oc":"#b6b6b6","x":71.827,"y":21.647,"w":1.6500000000000001,"l":27.105},{"oc":"#b6b6b6","x":72.179,"y":17.153,"w":1.1925000000000001,"l":16.096},{"oc":"#b6b6b6","x":71.827,"y":12.744,"w":1.6500000000000001,"l":27.105},{"oc":"#b6b6b6","x":39.695,"y":11.219,"w":1.5404999999999998,"l":13.389},{"oc":"#b6b6b6","x":39.78,"y":11.938,"w":1.5404999999999998,"l":13.389},{"oc":"#b6b6b6","x":53.273,"y":11.938,"w":1.5404999999999998,"l":13.389},{"oc":"#b6b6b6","x":39.695,"y":17.237,"w":1.395,"l":13.389},{"oc":"#b6b6b6","x":53.445,"y":17.925,"w":1.395,"l":13.389},{"oc":"#b6b6b6","x":39.695,"y":17.894,"w":1.395,"l":13.389},{"oc":"#b6b6b6","x":22.284,"y":31.488,"w":1.1055,"l":39.574},{"oc":"#d9d9d9","x":6.372,"y":36.672,"w":1.287,"l":92.058},{"oc":"#d9d9d9","x":6.372,"y":39.891,"w":1.287,"l":92.058},{"oc":"#bdbdbd","x":6.374,"y":35.273,"w":0.9045,"l":92.568},{"oc":"#d9d9d9","x":6.051,"y":40.406,"w":0.3315,"l":92.441},{"oc":"#d9d9d9","x":6.051,"y":37.25,"w":0.3315,"l":92.441},{"oc":"#d9d9d9","x":6.051,"y":35.875,"w":0.3315,"l":92.441}],"VLines":[{"oc":"#d9d9d9","x":85.787,"y":38.359,"w":1.6500000000000001,"l":1.377},{"oc":"#bdbdbd","x":98.936,"y":35.698,"w":1.26,"l":2.62},{"oc":"#bdbdbd","x":6.252,"y":35.255,"w":1.26,"l":3.13},{"oc":"#bdbdbd","x":98.936,"y":38.357,"w":1.26,"l":1.474},{"oc":"#bdbdbd","x":6.252,"y":38.364,"w":1.26,"l":1.413},{"oc":"#bdbdbd","x":98.936,"y":39.811,"w":1.26,"l":1.191},{"oc":"#bdbdbd","x":6.252,"y":39.827,"w":1.26,"l":1.393},{"oc":"#d9d9d9","x":49.5,"y":35.31,"w":1.6484999999999999,"l":1.38},{"oc":"#d9d9d9","x":49.5,"y":36.646,"w":1.6484999999999999,"l":2.084},{"oc":"#d9d9d9","x":49.5,"y":38.537,"w":1.6484999999999999,"l":1.207},{"oc":"#d9d9d9","x":49.5,"y":39.778,"w":1.6484999999999999,"l":1.351},{"oc":"#d9d9d9","x":34.676,"y":35.173,"w":1.6515,"l":1.513},{"oc":"#d9d9d9","x":34.676,"y":36.677,"w":1.6515,"l":1.6},{"oc":"#d9d9d9","x":83.016,"y":35.316,"w":1.6500000000000001,"l":1.367},{"oc":"#d9d9d9","x":80.438,"y":38.303,"w":1.6515,"l":1.44},{"oc":"#d9d9d9","x":63.164,"y":39.922,"w":1.6515,"l":1.203},{"oc":"#d9d9d9","x":27.844,"y":38.296,"w":1.6500000000000001,"l":1.643},{"oc":"#d9d9d9","x":81.662,"y":39.917,"w":1.6500000000000001,"l":1.167},{"oc":"#b6b6b6","x":82.951,"y":24.639,"w":1.6500000000000001,"l":1.394},{"oc":"#b6b6b6","x":85.491,"y":21.678,"w":1.6500000000000001,"l":4.419},{"oc":"#b6b6b6","x":96.516,"y":21.678,"w":1.6515,"l":4.419},{"oc":"#b6b6b6","x":82.964,"y":21.678,"w":1.6500000000000001,"l":2.994},{"oc":"#b6b6b6","x":83.007,"y":26.222,"w":3.1500000000000004,"l":0.581},{"oc":"#b6b6b6","x":96.542,"y":26.222,"w":3.1500000000000004,"l":0.581},{"oc":"#b6b6b6","x":85.491,"y":26.222,"w":3.1500000000000004,"l":0.581},{"oc":"#b6b6b6","x":96.585,"y":8.941,"w":1.6500000000000001,"l":2.178},{"oc":"#b6b6b6","x":82.835,"y":8.941,"w":1.6500000000000001,"l":2.178},{"oc":"#b6b6b6","x":85.508,"y":8.941,"w":1.6484999999999999,"l":2.178},{"oc":"#b6b6b6","x":82.921,"y":12.759,"w":1.6500000000000001,"l":4.372},{"oc":"#b6b6b6","x":85.508,"y":12.75,"w":1.6484999999999999,"l":4.381},{"oc":"#b6b6b6","x":96.516,"y":12.728,"w":1.6500000000000001,"l":4.403},{"oc":"#b6b6b6","x":82.835,"y":17.925,"w":1.6500000000000001,"l":2.166},{"oc":"#b6b6b6","x":96.499,"y":17.925,"w":1.6500000000000001,"l":2.178},{"oc":"#b6b6b6","x":85.508,"y":17.925,"w":1.6484999999999999,"l":2.194},{"oc":"#b6b6b6","x":53.255,"y":11.247,"w":1.6500000000000001,"l":0.653},{"oc":"#b6b6b6","x":50.78,"y":11.247,"w":1.6500000000000001,"l":0.653},{"oc":"#b6b6b6","x":64.341,"y":11.247,"w":1.6500000000000001,"l":0.653},{"oc":"#b6b6b6","x":53.255,"y":17.266,"w":1.6500000000000001,"l":0.606},{"oc":"#b6b6b6","x":50.78,"y":17.266,"w":1.6500000000000001,"l":0.606},{"oc":"#b6b6b6","x":64.341,"y":17.266,"w":1.6500000000000001,"l":0.606},{"oc":"#b6b6b6","x":82.861,"y":7.431,"w":1.6500000000000001,"l":0.722},{"oc":"#b6b6b6","x":85.405,"y":7.431,"w":1.6500000000000001,"l":0.712},{"oc":"#b6b6b6","x":96.611,"y":7.431,"w":1.6500000000000001,"l":0.722},{"oc":"#9b9b9b","x":85.207,"y":4.878,"w":0.8684999999999999,"l":2.478},{"oc":"#b6b6b6","x":22.327,"y":29.244,"w":1.6500000000000001,"l":1.391},{"oc":"#b6b6b6","x":22.198,"y":31.494,"w":1.6500000000000001,"l":1.319},{"oc":"#9b9b9b","x":71.865,"y":4.879,"w":0.8684999999999999,"l":2.523},{"oc":"#b6b6b6","x":99.009,"y":12.728,"w":1.6500000000000001,"l":4.403},{"oc":"#b6b6b6","x":98.991,"y":8.941,"w":1.6500000000000001,"l":2.178},{"oc":"#b6b6b6","x":98.931,"y":7.431,"w":1.6500000000000001,"l":0.722},{"oc":"#b6b6b6","x":99.077,"y":17.894,"w":1.6500000000000001,"l":2.178},{"oc":"#b6b6b6","x":99,"y":21.681,"w":1.6515,"l":5.247},{"oc":"#b6b6b6","x":66.576,"y":11.247,"w":1.6500000000000001,"l":0.653},{"oc":"#b6b6b6","x":66.748,"y":17.266,"w":1.6500000000000001,"l":0.606},{"oc":"#9b9b9b","x":98.936,"y":4.879,"w":0.8684999999999999,"l":2.523},{"oc":"#b6b6b6","x":42.041,"y":29.244,"w":1.6500000000000001,"l":1.391},{"oc":"#b6b6b6","x":61.892,"y":31.481,"w":1.6500000000000001,"l":1.331}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bdbdbd","x":83.093,"y":35.278,"w":15.907,"h":0.519,"clr":-1},{"oc":"#b6b6b6","x":83.179,"y":26.803,"w":15.984,"h":0.075,"clr":-1},{"oc":"#acacac","x":85.577,"y":26.119,"w":13.527,"h":0.063,"clr":-1},{"oc":"#acacac","x":96.602,"y":26.097,"w":2.501,"h":0.037,"clr":-1},{"oc":"#acacac","x":83.179,"y":26.138,"w":2.14,"h":0.044,"clr":-1},{"oc":"#acacac","x":83.05,"y":26.119,"w":2.355,"h":0.019,"clr":-1},{"oc":"#acacac","x":71.655,"y":26.097,"w":11.223,"h":0.084,"clr":-1},{"oc":"#979797","x":82.835,"y":26.803,"w":0.344,"h":0.075,"clr":-1},{"oc":"#979797","x":82.835,"y":26.181,"w":0.344,"h":0.041,"clr":-1},{"oc":"#8b8b8b","x":82.835,"y":26.137,"w":0.344,"h":0.044,"clr":-1},{"oc":"#979797","x":96.37,"y":26.803,"w":0.344,"h":0.056,"clr":-1},{"oc":"#979797","x":96.37,"y":26.181,"w":0.344,"h":0.041,"clr":-1},{"oc":"#979797","x":85.319,"y":26.803,"w":0.344,"h":0.056,"clr":-1},{"oc":"#979797","x":85.319,"y":26.181,"w":0.344,"h":0.041,"clr":-1},{"oc":"#8b8b8b","x":85.319,"y":26.137,"w":0.344,"h":0.044,"clr":-1},{"oc":"#979797","x":85.422,"y":18.637,"w":0.172,"h":0.063,"clr":-1},{"oc":"#b6b6b6","x":6.291,"y":4.56,"w":92.751,"h":0.083,"clr":-1}],"Texts":[{"oc":"#1f1f1f","x":9.747,"y":14.46,"w":24.77499999999999,"clr":-1,"A":"left","R":[{"T":"Delaware%20NOL%20Carry%20forward.%20-%20%20%20please%20see%20instructions%20on%20Page%2010.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":12.95,"y":2.288,"w":2.212,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,21,0,0]}]},{"oc":"#1f1f1f","x":21.922,"y":2.542,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,27,0,0]}]},{"oc":"#1f1f1f","x":14.597,"y":3.195,"w":5.5200000000000005,"clr":-1,"A":"left","R":[{"T":"COLUMNS%3A%20","S":-1,"TS":[0,11.52,0,0]}]},{"oc":"#1f1f1f","x":74.234,"y":3.225,"w":8.635,"clr":-1,"A":"left","R":[{"T":"(Reconcile%20your%20Federal","S":27,"TS":[1,12,0,0]}]},{"oc":"#1f1f1f","x":75.587,"y":5.82,"w":1.21,"clr":-1,"A":"left","R":[{"T":"CO","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":77.258,"y":5.82,"w":0.446,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":77.877,"y":5.819,"w":1.255,"clr":-1,"A":"left","R":[{"T":"UM","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":79.629,"y":5.819,"w":1.367,"clr":-1,"A":"left","R":[{"T":"N%20A","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":89.24,"y":5.82,"w":1.21,"clr":-1,"A":"left","R":[{"T":"CO","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":90.911,"y":5.82,"w":0.446,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":91.53,"y":5.819,"w":1.255,"clr":-1,"A":"left","R":[{"T":"UM","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":93.282,"y":5.819,"w":1.367,"clr":-1,"A":"left","R":[{"T":"N%20B","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.306,"y":7.237,"w":0.912,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.627,"y":7.237,"w":1.12,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":55.191,"y":7.22,"w":2.6880000000000006,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[1,10.494900000000001,0,0]}]},{"oc":"#1f1f1f","x":58.673,"y":7.22,"w":0.896,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,10.494900000000001,0,0]}]},{"oc":"#1f1f1f","x":59.846,"y":7.22,"w":4.704000000000002,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[1,10.494900000000001,0,0]}]},{"oc":"#1f1f1f","x":66.023,"y":7.237,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.305,"y":7.237,"w":0.224,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.635,"y":7.237,"w":1.344,"clr":-1,"A":"left","R":[{"T":"....%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.131,"y":7.237,"w":1.044,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#838383","x":83.096,"y":7.282,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.668,"y":7.282,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":8.617,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.63,"y":8.617,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":40.552,"y":8.617,"w":5.496999999999999,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":48.169,"y":8.617,"w":7.408999999999998,"clr":-1,"A":"left","R":[{"T":"...............................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.406,"y":8.617,"w":0.456,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.052,"y":8.617,"w":4.256000000000002,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.095,"y":8.617,"w":1.4340000000000002,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.076,"y":8.617,"w":1.12,"clr":-1,"A":"left","R":[{"T":"..%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.055,"y":8.745,"w":1.044,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.314,"y":9.427,"w":0.912,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.635,"y":9.427,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":50.537,"y":9.427,"w":0.456,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":51.196,"y":9.427,"w":4.779999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":57.981,"y":9.427,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.476,"y":9.427,"w":0.47800000000000004,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.136,"y":9.427,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.569,"y":9.427,"w":4.779999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.174,"y":9.427,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.705,"y":9.427,"w":1.12,"clr":-1,"A":"left","R":[{"T":"..%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69,"y":9.487,"w":1.044,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.314,"y":10.17,"w":0.912,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.635,"y":10.17,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":26.409,"y":10.17,"w":22.227000000000043,"clr":-1,"A":"left","R":[{"T":".............................................................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":57.883,"y":10.17,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.377,"y":10.17,"w":0.672,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.327,"y":10.17,"w":3.136000000000001,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":63.66,"y":10.17,"w":0.684,"clr":-1,"A":"left","R":[{"T":"..%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.462,"y":10.17,"w":2.032,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.184,"y":10.17,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":68.999,"y":10.23,"w":1.044,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#838383","x":83.096,"y":8.73,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.962,"y":8.73,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.668,"y":8.73,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.068,"y":9.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.934,"y":9.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.669,"y":9.541,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.099,"y":10.238,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.965,"y":10.238,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.671,"y":10.238,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":10.905,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.63,"y":10.905,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":26.028,"y":10.905,"w":0.23900000000000002,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":26.338,"y":10.905,"w":0.23900000000000002,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":26.647,"y":10.905,"w":8.364999999999998,"clr":-1,"A":"left","R":[{"T":"...................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":50.859,"y":11.055,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":51.725,"y":11.055,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":64.431,"y":11.055,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":65.297,"y":11.055,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.071,"y":10.995,"w":1.044,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":12.472,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.63,"y":12.472,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":60.278,"y":12.472,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":60.72,"y":12.472,"w":0.47800000000000004,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":61.401,"y":12.473,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":62.762,"y":12.473,"w":0.448,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":63.402,"y":12.473,"w":0.684,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.434,"y":12.473,"w":1.9120000000000004,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.076,"y":12.473,"w":1.195,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.095,"y":12.473,"w":1.044,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.313,"y":13.252,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.634,"y":13.252,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.708,"y":13.252,"w":1.62,"clr":-1,"A":"left","R":[{"T":".....%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#838383","x":69.074,"y":13.252,"w":1.044,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":13.86,"w":0.456,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.949,"y":13.86,"w":0.456,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.61,"y":13.86,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":45.418,"y":14.46,"w":13.88800000000001,"clr":-1,"A":"left","R":[{"T":"..............................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.61,"y":14.46,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.074,"y":14.46,"w":1.12,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.622,"y":14.46,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.971,"y":14.46,"w":1.344,"clr":-1,"A":"left","R":[{"T":"..%20%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.196,"y":14.49,"w":1.044,"clr":-1,"A":"left","R":[{"T":"36","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":15.420000000000002,"w":1.1420000000000001,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":7.792999999999999,"y":15.420000000000002,"w":0.8580000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":65.446,"y":15.420000000000002,"w":2.24,"clr":-1,"A":"left","R":[{"T":".......%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.261,"y":15.48,"w":1.044,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.314,"y":16.23,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"38","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.635,"y":16.23,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":40.951,"y":16.23,"w":17.92500000000003,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.721,"y":16.23,"w":0.448,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.34,"y":16.23,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.688,"y":16.23,"w":0.672,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.184,"y":16.23,"w":1.044,"clr":-1,"A":"left","R":[{"T":"38","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#838383","x":83.075,"y":12.502,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.647,"y":12.502,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.077,"y":13.267,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.943,"y":13.268,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.649,"y":13.268,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.075,"y":14.46,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.647,"y":14.46,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.075,"y":15.533000000000001,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.941,"y":15.533000000000001,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.647,"y":15.533000000000001,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.077,"y":16.223,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.943,"y":16.223,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.649,"y":16.223,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":17.032,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"39","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.63,"y":17.032,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":30.442,"y":17.032,"w":0.23900000000000002,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":30.751,"y":17.032,"w":0.23900000000000002,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":31.061,"y":17.033,"w":5.018999999999999,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":50.859,"y":17.047,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":64.431,"y":17.047,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":65.297,"y":17.047,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":69.256,"y":16.987,"w":1.044,"clr":-1,"A":"left","R":[{"T":"39","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.288,"y":17.775,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.609,"y":17.775,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":54.038,"y":17.775,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":55.318,"y":17.775,"w":7.886999999999998,"clr":-1,"A":"left","R":[{"T":".................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.939,"y":17.775,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.29,"y":17.775,"w":0.672,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.219,"y":17.775,"w":1.12,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.26,"y":17.745,"w":1.044,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.292,"y":18.585,"w":0.912,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.613,"y":18.585,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.625,"y":18.585,"w":3.6000000000000005,"clr":-1,"A":"left","R":[{"T":"%20TOTAL%20-%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":26.428,"y":18.585,"w":24.37800000000005,"clr":-1,"A":"left","R":[{"T":"......................................................................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":60.116,"y":18.585,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":61.512,"y":18.585,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":62.873,"y":18.585,"w":0.448,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":63.512,"y":18.585,"w":0.912,"clr":-1,"A":"left","R":[{"T":"...%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.586,"y":18.585,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.907,"y":18.585,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.257,"y":18.585,"w":0.7170000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.248,"y":18.585,"w":1.12,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.206,"y":18.487,"w":1.044,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.3,"y":19.38,"w":0.456,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.961,"y":19.38,"w":1.572,"clr":-1,"A":"left","R":[{"T":"2.%20%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.056,"y":19.38,"w":1.12,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.604,"y":19.38,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.912,"y":19.38,"w":0.448,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.181,"y":19.282,"w":1.044,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#838383","x":83.178,"y":17.738,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":84.044,"y":17.738,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.75,"y":17.738,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.18,"y":18.563,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":84.045,"y":18.563,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.751,"y":18.563,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.181,"y":19.253,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.753,"y":19.253,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":21.458,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.63,"y":21.458,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":50.862,"y":21.458,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":51.213,"y":21.458,"w":0.7170000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":52.183,"y":21.458,"w":0.7170000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":53.153,"y":21.458,"w":4.063,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.767,"y":21.458,"w":0.684,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.587,"y":21.458,"w":5.018999999999999,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.352,"y":21.458,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.662,"y":21.458,"w":0.47800000000000004,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.302,"y":21.458,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.251,"y":21.458,"w":1.044,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.314,"y":22.2,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.635,"y":22.2,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":39.978,"y":22.2,"w":13.145000000000014,"clr":-1,"A":"left","R":[{"T":".......................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.148,"y":22.2,"w":0.684,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.097,"y":22.2,"w":3.8080000000000016,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.44,"y":22.2,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.77,"y":22.2,"w":0.448,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.533,"y":22.2,"w":1.4340000000000002,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.534,"y":22.2,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.304,"y":22.2,"w":1.044,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.297,"y":22.868,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"45","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.618,"y":22.868,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":56.108,"y":22.868,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":56.522,"y":22.868,"w":1.12,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.069,"y":22.868,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.389,"y":22.868,"w":3.8239999999999994,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.69,"y":22.868,"w":0.456,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.309,"y":22.868,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.649,"y":22.868,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.98,"y":22.868,"w":1.12,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.283,"y":22.965,"w":1.044,"clr":-1,"A":"left","R":[{"T":"45","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.301,"y":23.61,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"46","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.623,"y":23.61,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":40.088,"y":23.61,"w":13.384000000000015,"clr":-1,"A":"left","R":[{"T":"........................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.583,"y":23.61,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.878,"y":23.61,"w":2.39,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":62.18,"y":23.61,"w":2.4640000000000004,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":65.585,"y":23.61,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.906,"y":23.61,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.314,"y":23.61,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.644,"y":23.61,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.332,"y":23.708,"w":1.044,"clr":-1,"A":"left","R":[{"T":"46","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.306,"y":24.353,"w":1.368,"clr":-1,"A":"left","R":[{"T":"47a","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":8.246,"y":24.353,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":52.304,"y":24.353,"w":4.063,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":57.749,"y":24.353,"w":0.684,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.781,"y":24.353,"w":3.8239999999999994,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.065,"y":24.353,"w":0.456,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":64.68,"y":24.353,"w":2.1510000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.61,"y":24.353,"w":0.448,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":68.772,"y":24.451,"w":1.4340000000000002,"clr":-1,"A":"left","R":[{"T":"47a","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.313,"y":25.163,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"47","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.611,"y":25.163,"w":0.456,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":8.293,"y":25.163,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":52.312,"y":25.163,"w":0.456,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":52.947,"y":25.163,"w":4.302,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":58.891,"y":25.163,"w":0.684,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":59.712,"y":25.163,"w":5.496999999999999,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.116,"y":25.163,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.55,"y":25.163,"w":0.47800000000000004,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":68.841,"y":25.193,"w":1.4340000000000002,"clr":-1,"A":"left","R":[{"T":"47b","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.308,"y":25.92,"w":0.912,"clr":-1,"A":"left","R":[{"T":"48","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":7.629,"y":25.92,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":62.675,"y":25.92,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":63.026,"y":25.92,"w":0.47800000000000004,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":63.666,"y":25.92,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":63.974999999999994,"y":25.92,"w":1.6730000000000003,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":66.265,"y":25.92,"w":0.672,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":67.194,"y":25.92,"w":0.896,"clr":-1,"A":"left","R":[{"T":".%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":69.308,"y":25.951,"w":1.044,"clr":-1,"A":"left","R":[{"T":"48","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#838383","x":83.075,"y":21.487,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.941,"y":21.487,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.647,"y":21.487,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.077,"y":22.245,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.943,"y":22.245,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.649,"y":22.245,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.079,"y":23.01,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.651,"y":23.01,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.08,"y":23.76,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.652,"y":23.76,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.082,"y":24.518,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.654,"y":24.518,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.083,"y":25.208,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.656,"y":25.208,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":83.085,"y":25.957,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.656,"y":25.958,"w":1.12,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":7.443,"y":28.897,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":68.657,"y":28.897,"w":0.556,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":69.38,"y":28.897,"w":0.5720000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":87.736,"y":28.897,"w":3.5500000000000007,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":7.443,"y":31.028,"w":0.5,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":8.103,"y":31.028,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":68.7,"y":30.585,"w":0.8320000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":90.707,"y":31.905,"w":1.262,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#838383","x":5.938,"y":32.783,"w":3.026,"clr":-1,"A":"left","R":[{"T":"NOTE%3A","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#848484","x":34.607,"y":34.973,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":83.347,"y":34.957,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":34.683,"y":36.33,"w":1.716,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":49.995,"y":36.33,"w":3.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Address","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":35.142,"y":1.92,"w":24.06200000000001,"clr":-1,"A":"left","R":[{"T":"2013%20DELAWARE%20RESIDENT%20FORM%20200-01%2C%20PAGE%202","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":84.539,"y":2.138,"w":3.157,"clr":-1,"A":"left","R":[{"T":"Page%202","S":-1,"TS":[0,17.52,0,0]}]},{"oc":"#1f1f1f","x":14.579,"y":3.795,"w":48.76900000000008,"clr":-1,"A":"left","R":[{"T":"totals%20to%20the%20appropriate%20individual.%20See%20Page%209%20worksheet.)%20Taxpayers%20using%20filing%20statuses%201%2C%202%2C%203%2C%20or%205%20are%20to%20complete%20Column%20B%20only.%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#838383","x":24.414,"y":3.195,"w":33.858999999999995,"clr":-1,"A":"left","R":[{"T":"Column%20A%20is%20reserved%20for%20the%20spouse%20of%20those%20couples%20choosing%20filing%20status%204.","S":-1,"TS":[0,11.52,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":5.573,"w":28.962,"clr":-1,"A":"left","R":[{"T":"MODIFICATIONS%20TOFEDERAL%20ADJUSTED%20%20GROSS%20INCOME","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":73.257,"y":4.695,"w":7.821999999999999,"clr":-1,"A":"left","R":[{"T":"Filing%20Status%204%20ONLY%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":86.272,"y":4.695,"w":8.761,"clr":-1,"A":"left","R":[{"T":"All%20other%20filings%20statuses%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":73.773,"y":5.257,"w":7.339000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%20Information%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":85.757,"y":5.257,"w":9.072000000000001,"clr":-1,"A":"left","R":[{"T":"You%20or%20You%20plus%20Spouse%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":6.547,"w":13.477000000000004,"clr":-1,"A":"left","R":[{"T":"SECTION%20A%20-%20ADDITIONS%20(%2B)","S":-1,"TS":[0,10.638,0,0]}]},{"oc":"#1f1f1f","x":9.555,"y":8.617,"w":20.74099999999999,"clr":-1,"A":"left","R":[{"T":"Interest%20on%20State%20%26%20Local%20obligations%20other%20than%20Delaware","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":28.16,"y":9.428,"w":0.9560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":29.5,"y":9.428,"w":0.7170000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":30.512,"y":9.427,"w":14.101000000000017,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.454,"y":9.381,"w":12.397,"clr":-1,"A":"left","R":[{"T":"Fiduciary%20adjustment%2C%20oil%20depletion","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":14.848,"y":10.17,"w":8.151000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20%2030%20and%2031","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.217,"y":10.17,"w":3.6000000000000005,"clr":-1,"A":"left","R":[{"T":"%20TOTAL%20-%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.383,"y":10.905,"w":11.216,"clr":-1,"A":"left","R":[{"T":"%20Subtotal.%20Add%20Lines%2029%20and%2032","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":11.782,"w":16.062,"clr":-1,"A":"left","R":[{"T":"SECTION%20B%20-%20SUBTRACTIONS%20(-)","S":-1,"TS":[0,10.638,0,0]}]},{"oc":"#1f1f1f","x":29.725,"y":12.472,"w":0.23900000000000002,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":30.076,"y":12.472,"w":0.47800000000000004,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":30.757,"y":12.473,"w":20.79300000000004,"clr":-1,"A":"left","R":[{"T":".......................................................................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.791,"y":12.473,"w":13.762,"clr":-1,"A":"left","R":[{"T":"Interest%20received%20on%20U.S.%20Obligations","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.56,"y":13.252,"w":11.804,"clr":-1,"A":"left","R":[{"T":"%20Pension%2FRetirement%20Exclusions%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#838383","x":26.047,"y":13.252,"w":28.457000000000004,"clr":-1,"A":"left","R":[{"T":"(For%20a%20definition%20of%20eligible%20%20income%2C%20%20see%20instructions%20on%20Page10)","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":9.793,"y":13.86,"w":27.86899999999999,"clr":-1,"A":"left","R":[{"T":"Delaware%20State%20tax%20refund%2C%20fiduciary%20adjustment%2C%20work%20opportunity%20tax%20credit%2C","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.833,"y":15.420000000000002,"w":38.46600000000004,"clr":-1,"A":"left","R":[{"T":"Taxable%20Soc%20Sec%2FRR%20Retirement%20Benefits%2FHigher%20Educ.%20Excl%2FCertain%20Lump%20Sum%20Dist.%20(See%20instr.%20on%20Pg%2011)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.797,"y":16.23,"w":20.865999999999996,"clr":-1,"A":"left","R":[{"T":"SUBTOTAL.%20Add%20Lines%2034%2C%2035%2C%2036%20and%2037%20and%20enter%20here","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.9,"y":17.032,"w":14.222999999999997,"clr":-1,"A":"left","R":[{"T":"Subtotal.%20Subtract%20Line%2038%20from%20Line%2033","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.245,"y":21.457,"w":28.488000000000017,"clr":-1,"A":"left","R":[{"T":"Enter%20total%20Itemized%20Deductions%20from%20Schedule%20A%2C%20Federal%20Form%2C%20Line%2029..........","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.142,"y":22.2,"w":20.337000000000014,"clr":-1,"A":"left","R":[{"T":"Enter%20Foreign%20Taxes%20Paid%20(See%20instructions%20on%20%20Page%2011)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":44.87,"y":22.867,"w":0.23900000000000002,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":45.178,"y":22.867,"w":0.47800000000000004,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":45.818,"y":22.867,"w":7.647999999999998,"clr":-1,"A":"left","R":[{"T":"................................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.06,"y":22.867,"w":24.203,"clr":-1,"A":"left","R":[{"T":"Enter%20Charitable%20Mileage%20Deduction%20(See%20instructions%20%20on%20Page%2011)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.042,"y":23.61,"w":20.221999999999998,"clr":-1,"A":"left","R":[{"T":"SUBTOTAL.%20-%20Add%20Lines%2043%2C%2044%2C%20and%2045%20and%20enter%20here","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.086,"y":24.353,"w":29.174,"clr":-1,"A":"left","R":[{"T":"Enter%20State%20Income%20Tax%20included%20in%20Line%2043%20above%20(See%20instructions%20on%20Page%2011)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":46.844,"y":25.163,"w":4.063,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.048,"y":25.163,"w":25.028000000000016,"clr":-1,"A":"left","R":[{"T":"Enter%20Form%20700%20Tax%20Credit%20Adjustment%20(See%20%20instructions%20on%20Page%2011)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":10.097,"y":25.92,"w":44.188999999999965,"clr":-1,"A":"left","R":[{"T":"TOTAL%20-%20Subtract%20Line%2047a%20and%2047b%20from%20Line%2046.%20Enter%20here%20and%20on%20Front%2C%20Line%202%20(See%20instructions)","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":27.248,"w":23.215999999999998,"clr":-1,"A":"left","R":[{"T":"SECTION%20D%20-%20DIRECT%20DEPOSIT%20INFORMATION%20","S":-1,"TS":[0,10.638,0,0]}]},{"oc":"#1f1f1f","x":36.672,"y":27.25,"w":20.509000000000007,"clr":-1,"A":"left","R":[{"T":"If%20you%20would%20like%20your%20refund%20deposited%20directly","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":27.87,"w":44.687999999999974,"clr":-1,"A":"left","R":[{"T":"to%20your%20checking%20or%20savings%20account%2C%20complete%20boxes%20a%2C%20b%2C%20c%20and%20d%20below.%20See%20instructions%20for%20details.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":8.948,"y":28.897,"w":7.265999999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20Number","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":8.866,"y":31.028,"w":7.433,"clr":-1,"A":"left","R":[{"T":"Account%20Number","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":70.121,"y":28.897,"w":2.779,"clr":-1,"A":"left","R":[{"T":"Type%3A%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":76.062,"y":28.897,"w":4.437,"clr":-1,"A":"left","R":[{"T":"Checking%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":70.122,"y":30.585,"w":22.359,"clr":-1,"A":"left","R":[{"T":"Is%20this%20refund%20going%20to%20or%20through%20an%20account%20that%20is%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":70.122,"y":31.133,"w":16.232000000000006,"clr":-1,"A":"left","R":[{"T":"located%20outside%20of%20the%20United%20States%3F","S":-1,"TS":[0,10.155000000000001,0,0]}]},{"oc":"#1f1f1f","x":79.094,"y":31.905,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#838383","x":10.827,"y":32.783,"w":50.20299999999992,"clr":-1,"A":"left","R":[{"T":"If%20your%20refund%20is%20adjusted%20by%24100.00%20or%20more%2C%20a%20paper%20check%20will%20be%20issued%20and%20mailed%20to%20the%20address%20on%20your%20return.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":19.798,"y":33.675,"w":40.22900000000002,"clr":-1,"A":"left","R":[{"T":"BE%20SURE%20TOSIGN%20YOUR%20RETURN%20BELOW%20AND%20KEEP%20A%20COPY%20FOR%20YOUR%20RECORDS","S":-1,"TS":[0,12.48,0,0]}]},{"oc":"#1f1f1f","x":6.041,"y":34.297,"w":72.97800000000005,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%2C%20including%20accompanying%20schedules%20and%20statements%2C%20and%20be%20lieve%20it%20is%20true%2C%20correct%20and%20complete.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#848484","x":6.309,"y":34.973,"w":5.470000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20Signature","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":49.993,"y":34.957,"w":9.890999999999998,"clr":-1,"A":"left","R":[{"T":"Signature%20of%20Paid%20Preparer","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":6.309,"y":36.33,"w":19.254,"clr":-1,"A":"left","R":[{"T":"Spouse's%20Signature%20(if%20filing%20joint%20or%20combined%20return)%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":6.309,"y":37.935,"w":4.856000000000001,"clr":-1,"A":"left","R":[{"T":"Home%20Phone","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":28.09,"y":37.935,"w":6.233999999999999,"clr":-1,"A":"left","R":[{"T":"Business%20Phone","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":80.745,"y":37.935,"w":1.9700000000000002,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":86.066,"y":37.935,"w":1.202,"clr":-1,"A":"left","R":[{"T":"Zip","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":6.309,"y":39.507,"w":5.559000000000001,"clr":-1,"A":"left","R":[{"T":"E-Mail%20Address","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":50.034,"y":37.935,"w":1.46,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":50.055,"y":39.523,"w":7.238999999999998,"clr":-1,"A":"left","R":[{"T":"EIN%2C%20SSN%20OR%20PTIN","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":63.275,"y":39.507,"w":6.024,"clr":-1,"A":"left","R":[{"T":"Business%20Phone","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":82.022,"y":39.552,"w":0.547,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":82.784,"y":39.551,"w":0.273,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":83.156,"y":39.551,"w":1.503,"clr":-1,"A":"left","R":[{"T":"Mail","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#848484","x":85.578,"y":39.551,"w":3.0080000000000005,"clr":-1,"A":"left","R":[{"T":"Address","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.753,"y":41.393,"w":14.117999999999999,"clr":-1,"A":"left","R":[{"T":"NET%20BALANCE%20DUE%20(LINE%2027)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":7.795,"y":42.232,"w":17.279,"clr":-1,"A":"left","R":[{"T":"DELAWARE%20DIVISION%20OF%20REVENUE%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":16.044,"y":42.9,"w":6.337000000000001,"clr":-1,"A":"left","R":[{"T":"P.O.%20BOX%20508","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":10.042,"y":43.582,"w":13.301999999999996,"clr":-1,"A":"left","R":[{"T":"WILMINGTON%2C%20DE19899-0508","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":43.743,"y":41.393,"w":11.236999999999998,"clr":-1,"A":"left","R":[{"T":"NET%20REFUND%20(LINE%2028)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":39.414,"y":42.232,"w":17.279,"clr":-1,"A":"left","R":[{"T":"DELAWARE%20DIVISION%20OF%20REVENUE%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":47.249,"y":42.9,"w":6.893000000000001,"clr":-1,"A":"left","R":[{"T":"P.O.%20BOX%208765","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":41.659,"y":43.582,"w":13.301999999999996,"clr":-1,"A":"left","R":[{"T":"WILMINGTON%2C%20DE19899-8765","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":78.145,"y":41.393,"w":7.583,"clr":-1,"A":"left","R":[{"T":"ZERO%20(LINE%2028)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":71.029,"y":42.232,"w":17.279,"clr":-1,"A":"left","R":[{"T":"DELAWARE%20DIVISION%20OF%20REVENUE%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":78.909,"y":42.9,"w":6.337000000000001,"clr":-1,"A":"left","R":[{"T":"P.O.BOX8711","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":73.341,"y":43.582,"w":13.301999999999996,"clr":-1,"A":"left","R":[{"T":"WILMINGTON%2C%20DE19899-8711","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":31.327,"y":44.317,"w":31.164000000000016,"clr":-1,"A":"left","R":[{"T":"MAKE%20CHECK%20PAYABLE%20TO%20%3A%20DELAWARE%20DIVISION%20OF%20REVENUE","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#838383","x":17.818,"y":44.88,"w":51.90999999999998,"clr":-1,"A":"left","R":[{"T":"PLEASE%20REMEMBER%20TO%20ATTACH%20APPROPRIATE%20SUPPORTING%20SCHEDULES%20WHEN%20FILING%20YOUR%20RETURN","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#1f1f1f","x":13.012,"y":46.305,"w":7.170000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev%201%200%20%2F31%2F13)","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#838383","x":6.309,"y":20.82,"w":37.214,"clr":-1,"A":"left","R":[{"T":"allocate%20deductions%20between%20spouses%2C%20%20you%20must%20prorate%20in%20accordance%20with%20income.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#1f1f1f","x":10.029,"y":19.38,"w":37.491000000000035,"clr":-1,"A":"left","R":[{"T":"DELAWARE%20ADJUSTED%20GROSS%20INCOME.%20Subtract%20line%2041%20from%20Line%2033.%20Enter%20here%20and%20on%20Front%2C%20Line1","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":14.911,"y":18.585,"w":8.151000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20%2038%20and%2040","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.621,"y":17.775,"w":30.812999999999995,"clr":-1,"A":"left","R":[{"T":"%20Exclusion%20for%20certain%20persons%2060%20and%20over%20or%20disabled%20(See%20instructions%20on%20Page%2011).","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":9.587,"y":7.237,"w":33.196,"clr":-1,"A":"left","R":[{"T":"Enter%20Federal%20AGI%20amount%20from%20Federal%201040%2C%20Line%2037%3B%201040A%2C%20Line%2021%3B%20or%201040EZ%2C%20Line%204","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#1f1f1f","x":6.309,"y":20.19,"w":67.34499999999991,"clr":-1,"A":"left","R":[{"T":"SECTION%20C%20-%20ITEMIZED%20DEDUCTIONS%20(MUST%20ATTACH%20FEDERAL%20SCHEDULE%20A)%20If%20Columns%20%20A%20and%20B%20are%20used%20and%20you%20are%20unable%20to%20specifically%20","S":-1,"TS":[0,10.638,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28A","EN":0},"TI":97,"AM":0,"x":71.673,"y":7.402,"w":11.123,"h":0.833,"TU":"29 A. Enter Federal AGI amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28B","EN":0},"TI":98,"AM":0,"x":85.622,"y":7.415,"w":10.374,"h":0.833,"TU":"29 B. Enter Federal AGI amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29A","EN":0},"TI":99,"AM":0,"x":72.109,"y":8.926,"w":10.633,"h":0.833,"TU":"30 A. Interest on State & Local obligations other than Delaware"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29B","EN":0},"TI":100,"AM":0,"x":85.684,"y":8.912,"w":10.333,"h":0.833,"TU":"30 B. Interest on State & Local obligations other than Delaware"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30A","EN":0},"TI":101,"AM":0,"x":72.184,"y":9.632,"w":10.707,"h":0.833,"TU":"31 A. Fiduciary adjustment, oil depletion"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30B","EN":0},"TI":102,"AM":0,"x":85.684,"y":9.583,"w":10.333,"h":0.833,"TU":"31 B. Fiduciary adjustment, oil depletion"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31A","EN":0},"TI":103,"AM":1024,"x":72.035,"y":10.453,"w":10.857,"h":0.833,"TU":"32 A. Total - Add Lines 30 and 31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31B","EN":0},"TI":104,"AM":1024,"x":85.684,"y":10.393,"w":10.333,"h":0.833,"TU":"32 B. Total - Add Lines 30 and 31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32A","EN":0},"TI":105,"AM":1024,"x":39.468,"y":11.167,"w":11.6,"h":0.833,"TU":"33 A. Subtotal. Add Lines 29 and 32"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32B","EN":0},"TI":106,"AM":1024,"x":53.366,"y":11.187,"w":11.076,"h":0.833,"TU":"33 B. Subtotal. Add Lines 29 and 32"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33A","EN":0},"TI":107,"AM":0,"x":71.771,"y":12.729,"w":11.11,"h":0.833,"TU":"34 A. Interest received on U.S. Obligations"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33B","EN":0},"TI":108,"AM":0,"x":85.72,"y":12.68,"w":10.436,"h":0.833,"TU":"34 B. Interest received on U.S. Obligations"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34A","EN":0},"TI":109,"AM":0,"x":71.81,"y":13.382,"w":11.035,"h":0.833,"TU":"35 A. Pension/Retirement Exclusions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34B","EN":0},"TI":110,"AM":0,"x":85.684,"y":13.458,"w":10.436,"h":0.833,"TU":"35 B. Pension/Retirement Exclusions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35A","EN":0},"TI":111,"AM":0,"x":71.885,"y":14.8,"w":11.035,"h":0.855,"TU":"36 A. Delaware State tax refund, fiduciary adjustment, work opportunity tax credit, Delaware NOL Carry forward."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35B","EN":0},"TI":112,"AM":0,"x":85.684,"y":14.715,"w":10.436,"h":0.855,"TU":"36 B. Delaware State tax refund, fiduciary adjustment, work opportunity tax credit, Delaware NOL Carry forward."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSA","EN":0},"TI":113,"AM":0,"x":71.81,"y":15.718,"w":10.96,"h":0.833,"TU":"37 A. Taxable Soc Sec/RR Retirement Benefits/Higher Educ. Excl/Certain Lump Sum Dist."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSB","EN":0},"TI":114,"AM":0,"x":85.684,"y":15.677,"w":10.436,"h":0.833,"TU":"37 B. Taxable Soc Sec/RR Retirement Benefits/Higher Educ. Excl/Certain Lump Sum Dist."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37A","EN":0},"TI":115,"AM":1024,"x":71.907,"y":16.422,"w":10.96,"h":0.833,"TU":"38 A. Subtotal. Add Lines 34, 35, 36 and 37 "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37B","EN":0},"TI":116,"AM":1024,"x":85.684,"y":16.498,"w":10.436,"h":0.833,"TU":"38 B. Subtotal. Add Lines 34, 35, 36 and 37"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38B","EN":0},"TI":117,"AM":1024,"x":53.366,"y":17.194,"w":10.927,"h":0.833,"TU":"39 B. Subtotal. Subtract Line 38 from Line 33"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38A","EN":0},"TI":118,"AM":1024,"x":39.318,"y":17.262,"w":11.601,"h":0.833,"TU":"39A. Subtotal. Subtract Line 38 from Line 33"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39A","EN":0},"TI":119,"AM":0,"x":71.735,"y":17.897,"w":11.239,"h":0.833,"TU":"40 A. Exclusion for certain persons 60 and over disabled"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39B","EN":0},"TI":120,"AM":0,"x":85.684,"y":17.973,"w":10.416,"h":0.833,"TU":"40 B. Exclusion for certain persons 60 and over disabled"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40A","EN":0},"TI":121,"AM":1024,"x":71.885,"y":18.657,"w":11.089,"h":0.833,"TU":"41 A. TOTAL - Add Lines 38 and 40"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40B","EN":0},"TI":122,"AM":1024,"x":85.684,"y":18.698,"w":10.416,"h":0.833,"TU":"41 B. TOTAL - Add Lines 38 and 40"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41A","EN":0},"TI":123,"AM":1024,"x":71.781,"y":19.388,"w":11.164,"h":0.833,"TU":"42 A. DELAWARE ADJUSTED GROSS INCOME. Subtract line 41 from line 33. Enter here and on Front, Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41B","EN":0},"TI":124,"AM":1024,"x":85.73,"y":19.491,"w":10.416,"h":0.833,"TU":"42 B. DELAWARE ADJUSTED GROSS INCOME. Subtract line 41 from line 33. Enter here and on Front, Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42A","EN":0},"TI":125,"AM":0,"x":71.676,"y":21.682,"w":11.335,"h":0.833,"TU":"43 A. Enter total Itemized Deductions from Schedule A, Federal From, Line 29"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42B","EN":0},"TI":126,"AM":0,"x":85.625,"y":21.72,"w":10.436,"h":0.833,"TU":"43 B. Enter total Itemized Deductions from Schedule A, Federal From, Line 29"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43A","EN":0},"TI":127,"AM":0,"x":71.715,"y":22.444,"w":11.205,"h":0.833,"TU":"44 A. Enter Foreign Taxes Paid "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43B","EN":0},"TI":128,"AM":0,"x":85.663,"y":22.458,"w":10.457,"h":0.833,"TU":"44 B. Enter Foreign Taxes Paid "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44A","EN":0},"TI":129,"AM":0,"x":71.715,"y":23.254,"w":11.205,"h":0.833,"TU":"45 A. Enter Charitable Mileage Deduction"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44B","EN":0},"TI":130,"AM":0,"x":85.663,"y":23.205,"w":10.457,"h":0.833,"TU":"45 B. Enter Charitable Mileage Deduction"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45A","EN":0},"TI":131,"AM":1024,"x":71.715,"y":24.017,"w":11.355,"h":0.833,"TU":"46 A. SUBTOTAL. Add Lines 43, 44, and 45 and enter here"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45B","EN":0},"TI":132,"AM":1024,"x":85.663,"y":24.03,"w":10.457,"h":0.833,"TU":"46 B. SUBTOTAL. Add Lines 43, 44, and 45 and enter here"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46A","EN":0},"TI":133,"AM":0,"x":71.789,"y":24.692,"w":11.131,"h":0.833,"TU":"47a_Column A. Enter State Income Tax included in Line 43 above"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46B","EN":0},"TI":134,"AM":0,"x":85.663,"y":24.733,"w":10.457,"h":0.833,"TU":"47a_Column B. Enter State Income Tax included in Line 43 above"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46BA","EN":0},"TI":135,"AM":0,"x":71.715,"y":25.33,"w":11.206,"h":0.833,"TU":"47b_ Column A. Enter Form 700 Tax Credit Adjustment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46BB","EN":0},"TI":136,"AM":0,"x":85.663,"y":25.433,"w":10.457,"h":0.833,"TU":"47b_ Column B. Enter Form 700 Tax Credit Adjustment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STOTAL","EN":0},"TI":137,"AM":1024,"x":71.606,"y":26.194,"w":11.443,"h":0.833,"TU":"48 A. TOTAl - Subtract Line 47a and 47b from Line 46. Enter here and on Front, Line 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TTOTAL","EN":0},"TI":138,"AM":1024,"x":85.704,"y":26.145,"w":10.395,"h":0.833,"TU":"48 A. TOTAl - Subtract Line 47a and 47b from Line 46. Enter here and on Front, Line 2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RNUM","EN":0},"TI":139,"AM":0,"x":22.374,"y":29.342,"w":19.642,"h":1.257,"TU":"Line a. Routing Number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ANUM","EN":0},"TI":142,"AM":0,"x":22.285,"y":31.585,"w":39.514,"h":1.245,"TU":"Line c. Account Number.","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIGN","EN":0},"TI":145,"AM":1024,"x":49.669,"y":35.879,"w":33.111,"h":0.833,"TU":"Signature of Paid Preparer Date","V":"SELF-PREPARER"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"HPHONE","EN":0},"TI":146,"AM":0,"x":6.237,"y":38.943,"w":21.331,"h":0.839,"TU":"Home Phone"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":147,"AM":0,"x":28.094,"y":38.916,"w":21.348,"h":0.839,"TU":"Business Phone"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL1","EN":0},"TI":148,"AM":16,"x":6.717,"y":40.359,"w":42.277,"h":0.833,"TU":"E-Mail Address"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DDCHECKX","EN":0},"TI":140,"AM":0,"x":81.975,"y":29.212,"w":2.27,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DDSAVEX","EN":0},"TI":141,"AM":0,"x":92.871,"y":29.18,"w":2.27,"h":0.833,"checked":false}],"id":{"Id":"DDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"USBXY","EN":0},"TI":143,"AM":0,"x":82.07,"y":32.179,"w":2.27,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"USBXN","EN":0},"TI":144,"AM":0,"x":92.978,"y":32.222,"w":2.27,"h":0.833,"checked":true}],"id":{"Id":"A48RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/de/form/DE201P3.content.txt b/test/data/de/form/DE201P3.content.txt new file mode 100755 index 00000000..8fc338a7 --- /dev/null +++ b/test/data/de/form/DE201P3.content.txt @@ -0,0 +1,582 @@ +DE SCHEDULE I - CREDIT FOR INCOME TAXES PAID TO ANOTHER STATE +DE SCHEDULE III - CONTRIBUTIONS TO SPECIAL FUNDS + +00 + + + + +00 + + +00 + + +00 + + +00 + + +00 + + +00 + +00 + + +00 + + + +2013 + +R + + + + +Schedule + + + +Name(s): + + + + + + +COLUMNS +: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +. + + + + + +.................................. + +1 + +00 + +2 +. + + + + + + +.................................. + +2 + +3 +. + + + + + + +.................................. + +3 + +4 +. + + + + + +.................................. + +4 + +5 +. + + + + + +.................................. + +5 + +6 +. + + + + +.................... +..... .... +..... +.... +..... +..... +.... +. + +6 + + + + +00 + +00 + + +7a. Child’s First Name + +7b. + Child’s Last Name + +C +HIL +D + 1 + +C +HIL +D + 2 + +CHIL +D + 3 + + +10 +. + + + + + + + + + + + + + + + + + +........................................ +. +10 + +8. Child’s SSN + +9. Child’s Date of Birth + +M + +M + +D + +D + +Y + +Y + +Y + +Y +M + +M + +D + +D + +Y + +Y + +Y + +Y +M + +M + +D + +D + +Y + +Y + +Y + Y + + + + +YES + +NO + +YES + +NO + +YES + +NO + + +11 +. + + + + + + + +...................................... + +11 + + +YES + +NO + +YES + +NO + +YES + +NO + +12 +. + + +..................... + +12 + +13 +. + +Federal earned income credit from Federal Form 1040, Line 64a; + + + +.. +.............................. +...... +....... +....... +...... +....... +....... +. +.. +13 + +14 +. + + +........................................................................................... +. +............ + +14 + +15 +. + +................................ +....... +...... +....... +....... +...... +....... +....... +...... +....... +....... +. +.. +15 + +16 +. + + +................................................................................................... +. +................ + +16 + + + + + + + + + + + + + + + + + + + + + + + + + + + +00 + + +00 + + +.20 + +00 + + +00 + + +17 +. +A . + +00 + +B . + +00 + +C +. + +00 + + + + +I . + + +00 +M. + +00 + +00 +N . +Home of the Brave + +00 + +00 +O. +Senior Trust Fund + +00 + +D . + +E . + +F. + + +00 +J . +. + +0 +0 + +K . + +00 +L . + +00 +P. + + +00 + +00 + +00 + + +Enter the total Contribution amount here and on Resident Return, Line 24 +.................................. +....... +....... +..... +. +. +..... + +17 + +00 + + + + + + + + + + + + + + + + + + + + + + + +(Rev + +10/31/13) + + +2013 DELAWARE RESIDENT SCHEDULES +Social Security Number: +Column A is reserved for the spouse of those couples choosing filing status 4. (Reconcile your Federal totals to the appropriate +individual. See Page 9 worksheet.) Taxpayers using filing statuses 1, 2, 3, or 5 are to complete Column B only. +Filing Status 4 ONLY +Spouse Information +COLUMN A +All other filings statuses +You or You plus Spouse +COLUMN B +See the instructions and complete the work sheet on Page 7 prior to completing DE Schedule I. +Enter the credit in HIGHEST to LOWEST amount order. + Tax imposed by State of + Tax imposed by State of + Tax imposed by State of + Tax imposed by State of + Tax imposed by State of +other state return(s) with your Delaware tax return +(enter 2 character state name) +(enter 2 character state name) +(enter 2 character state name) +(enter 2 character state name) +(enter 2 character state name) +DE SCHEDULE II - EARNED INCOME TAX CREDIT (EITC) +Complete the Earned Income Tax Credit for each child YOU CLAIMED the Earned Income Credit for on your federal return. +Qualifying Child Information + Was the child under age 24 at the end of 2013, +a student, and younger than you (or your +spouse, if filing jointly)? + Was the child permanently and totally disabled +during any part of 2013? +Delaware State Income Tax from Line 8 (enter higher tax amount from Column A or B) +Form 1040A, Line 38a; or Form 1040EZ, Line 8a +Delaware EITC Percentage (20%). +Multiply Line 13 by Line 14 +Enter the Smaller of Line 12 or Line 15 above. Enter here and +on Resident Return, Line 14 +See the instructions on Page 8 for ALL required documentation to attach. +See Page 13 for a description of each worthwhile fund listed below. +Non-Game Wildlife +U.S. Olympics +Emergency Housing +Breast Cancer Educ. +Organ Donations +Diabetes Educ. +G. +Veteran’s Home +H. +DE National Guard +Juv. Diabetes Fund +Mult Sclerosis Soc. +Ovarian Cancer Fund +21st Fund for Children +White Clay Creek +Veteran’s Trust Fund +This page MUST be sent in with your Delaware return if any of the schedules (above) are completed. +CHILD 1 +CHILD 2 +CHILD 3 +Enter the total here and on Resident Return, Line 10. +You must attach a copy of the +----------------Page (0) Break---------------- diff --git a/test/data/de/form/DE201P3.fields.json b/test/data/de/form/DE201P3.fields.json new file mode 100755 index 00000000..f892f620 --- /dev/null +++ b/test/data/de/form/DE201P3.fields.json @@ -0,0 +1 @@ +[{"id":"A5RB","type":"radio","calc":false,"value":"C1AGEYBX"},{"id":"A5RB","type":"radio","calc":false,"value":"C1AGENBX"},{"id":"A9RB","type":"radio","calc":false,"value":"C2AGEYBX"},{"id":"A9RB","type":"radio","calc":false,"value":"C2AGENBX"},{"id":"A13RB","type":"radio","calc":false,"value":"C3AGEYBX"},{"id":"A13RB","type":"radio","calc":false,"value":"C3AGENBX"},{"id":"BX16RB","type":"radio","calc":false,"value":"C1DISYBX"},{"id":"BX16RB","type":"radio","calc":false,"value":"C1DISNBX"},{"id":"BX18RB","type":"radio","calc":false,"value":"C2DISYBX"},{"id":"BX18RB","type":"radio","calc":false,"value":"C2DISNBX"},{"id":"BX20RB","type":"radio","calc":false,"value":"C3DISYBX"},{"id":"BX20RB","type":"radio","calc":false,"value":"C3DISNBX"},{"id":"NAME3","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A2_STATEA_1_","type":"number","calc":false,"value":""},{"id":"A2_STATEB_1_","type":"number","calc":false,"value":""},{"id":"A2_STATE_1_","type":"alpha","calc":false,"value":""},{"id":"A2_STATE_2_","type":"alpha","calc":false,"value":""},{"id":"A2_STATEA_2_","type":"number","calc":false,"value":""},{"id":"A2_STATEB_2_","type":"number","calc":false,"value":""},{"id":"A2_STATE_3_","type":"alpha","calc":false,"value":""},{"id":"A2_STATEA_3_","type":"number","calc":false,"value":""},{"id":"A2_STATEB_3_","type":"number","calc":false,"value":""},{"id":"A2_STATE_4_","type":"alpha","calc":false,"value":""},{"id":"A2_STATEA_4_","type":"number","calc":false,"value":""},{"id":"A2_STATEB_4_","type":"number","calc":false,"value":""},{"id":"A2_STATE_5_","type":"alpha","calc":false,"value":""},{"id":"A2_STATEA_5_","type":"number","calc":false,"value":""},{"id":"A2_STATEB_5_","type":"number","calc":false,"value":""},{"id":"TOTALA","type":"number","calc":true,"value":""},{"id":"TOTALB","type":"number","calc":true,"value":""},{"id":"A14_CHFIRST_1_","type":"alpha","calc":false,"value":""},{"id":"A15_CHLAST_1_","type":"alpha","calc":false,"value":""},{"id":"A16_CHILDSSN_1_","type":"ssn","calc":false,"value":""},{"id":"A17_CHILDYOB_1_","type":"date","calc":false,"value":""},{"id":"A14_CHFIRST_2_","type":"alpha","calc":false,"value":""},{"id":"A15_CHLAST_2_","type":"alpha","calc":false,"value":""},{"id":"A16_CHILDSSN_2_","type":"ssn","calc":false,"value":""},{"id":"A17_CHILDYOB_2_","type":"date","calc":false,"value":""},{"id":"A14_CHFIRST_3_","type":"alpha","calc":false,"value":""},{"id":"A15_CHLAST_3_","type":"alpha","calc":false,"value":""},{"id":"A16_CHILDSSN_3_","type":"ssn","calc":false,"value":""},{"id":"A17_CHILDYOB_3_","type":"date","calc":false,"value":""},{"id":"DESTINC","type":"number","calc":true,"value":""},{"id":"FEDEIC","type":"number","calc":false,"value":""},{"id":"MULTIPLY","type":"number","calc":true,"value":""},{"id":"SMALLER","type":"number","calc":true,"value":""},{"id":"WILDLIFE","type":"number","calc":false,"value":""},{"id":"OLYMPICS","type":"number","calc":false,"value":""},{"id":"HOUSING","type":"number","calc":false,"value":""},{"id":"CANCER","type":"number","calc":false,"value":""},{"id":"ORGAN","type":"number","calc":false,"value":""},{"id":"DIABETES","type":"number","calc":false,"value":""},{"id":"VETERANS","type":"number","calc":false,"value":""},{"id":"NATGUARD","type":"number","calc":false,"value":""},{"id":"JDFUND","type":"number","calc":false,"value":""},{"id":"MULTSCL","type":"number","calc":false,"value":""},{"id":"OVCANCER","type":"number","calc":false,"value":""},{"id":"CHILD21","type":"number","calc":false,"value":""},{"id":"WHCLAY","type":"number","calc":false,"value":""},{"id":"HOBRA","type":"number","calc":false,"value":""},{"id":"SNTRU","type":"number","calc":false,"value":""},{"id":"VTF","type":"number","calc":false,"value":""},{"id":"CONTRIB","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/de/form/DE201P3.json b/test/data/de/form/DE201P3.json new file mode 100755 index 00000000..7bc4c429 --- /dev/null +++ b/test/data/de/form/DE201P3.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"TY13_schedule","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#b7b7b7","x":82.852,"y":16.466,"w":1.125,"l":13.836},{"oc":"#b7b7b7","x":82.938,"y":17.188,"w":1.125,"l":13.664},{"oc":"#b6b6b6","x":6.102,"y":22.403,"w":1.125,"l":92.813},{"oc":"#b6b6b6","x":6.102,"y":21.666,"w":1.125,"l":92.813},{"oc":"#b6b6b6","x":29.702,"y":23.109,"w":1.125,"l":69.245},{"oc":"#b6b6b6","x":61.798,"y":20.856,"w":1.125,"l":22.327},{"oc":"#b6b6b6","x":73.21,"y":32.172,"w":1.125,"l":23.298},{"oc":"#b6b6b6","x":73.21,"y":31.419,"w":1.125,"l":23.298},{"oc":"#b6b6b6","x":73.21,"y":30.697,"w":1.125,"l":23.298},{"oc":"#b6b6b6","x":73.21,"y":29.175,"w":1.125,"l":23.298},{"oc":"#1f1f1f","x":6.188,"y":43.381,"w":2.3085,"l":92.813},{"oc":"#1f1f1f","x":6.188,"y":44.694,"w":2.31,"l":92.813},{"oc":"#b6b6b6","x":24.896,"y":38.938,"w":1.125,"l":13.466},{"oc":"#b6b6b6","x":24.93,"y":38.184,"w":1.125,"l":13.423},{"oc":"#b6b6b6","x":24.905,"y":37.387,"w":1.125,"l":13.423},{"oc":"#b6b6b6","x":24.896,"y":39.653,"w":1.125,"l":13.32},{"oc":"#b6b6b6","x":24.896,"y":40.444,"w":1.125,"l":13.372},{"oc":"#b6b6b6","x":86.565,"y":37.422,"w":1.125,"l":13.277},{"oc":"#b6b6b6","x":86.565,"y":38.188,"w":1.125,"l":13.277},{"oc":"#b6b6b6","x":86.436,"y":38.944,"w":1.125,"l":13.329},{"oc":"#b7b7b7","x":75.625,"y":5.906,"w":1.125,"l":23.161},{"oc":"#b7b7b7","x":75.652,"y":4.406,"w":1.125,"l":23.236},{"oc":"#b6b6b6","x":55.662,"y":38.962,"w":1.125,"l":13.466},{"oc":"#b6b6b6","x":55.696,"y":38.209,"w":1.125,"l":13.423},{"oc":"#b6b6b6","x":55.67,"y":37.409,"w":1.125,"l":13.423},{"oc":"#b6b6b6","x":55.662,"y":39.675,"w":1.125,"l":13.32},{"oc":"#b6b6b6","x":55.662,"y":40.466,"w":1.125,"l":13.38},{"oc":"#b7b7b7","x":69.36,"y":17.188,"w":1.125,"l":13.664},{"oc":"#b7b7b7","x":69.36,"y":16.5,"w":1.125,"l":13.664},{"oc":"#b6b6b6","x":76.493,"y":20.856,"w":1.125,"l":22.327},{"oc":"#b6b6b6","x":73.21,"y":33.641,"w":1.125,"l":23.298},{"oc":"#b6b6b6","x":73.21,"y":28.456,"w":1.125,"l":23.298},{"oc":"#b7b7b7","x":12.42,"y":5.906,"w":1.125,"l":47.09},{"oc":"#b7b7b7","x":12.506,"y":4.438,"w":1.125,"l":47.09},{"oc":"#b6b6b6","x":24.922,"y":41.094,"w":1.125,"l":13.32},{"oc":"#b6b6b6","x":55.73,"y":41.133,"w":1.125,"l":13.32},{"oc":"#b6b6b6","x":66.728,"y":36.703,"w":1.125,"l":2.41},{"oc":"#b6b6b6","x":35.92,"y":36.68,"w":1.125,"l":2.41},{"oc":"#b6b6b6","x":86.436,"y":39.631,"w":1.125,"l":13.329},{"oc":"#b6b6b6","x":86.565,"y":36.734,"w":1.125,"l":13.277},{"oc":"#b6b6b6","x":85.577,"y":42.631,"w":1.125,"l":13.329},{"oc":"#b6b6b6","x":85.577,"y":41.944,"w":1.125,"l":13.329}],"VLines":[{"oc":"#b7b7b7","x":69.566,"y":8.453,"w":1.125,"l":1.906},{"oc":"#b7b7b7","x":96.645,"y":16.497,"w":1.125,"l":0.688},{"oc":"#b7b7b7","x":82.895,"y":16.497,"w":1.125,"l":0.688},{"oc":"#b7b7b7","x":85.267,"y":16.497,"w":1.125,"l":0.669},{"oc":"#b6b6b6","x":6.239,"y":21.681,"w":1.125,"l":0.706},{"oc":"#b6b6b6","x":29.648,"y":20.881,"w":1.125,"l":2.231},{"oc":"#b6b6b6","x":56.951,"y":20.909,"w":1.125,"l":2.2},{"oc":"#b6b6b6","x":79.123,"y":20.909,"w":1.6500000000000001,"l":2.2},{"oc":"#b6b6b6","x":94.084,"y":28.456,"w":1.125,"l":2.209},{"oc":"#b6b6b6","x":93.998,"y":31.344,"w":1.125,"l":2.303},{"oc":"#b6b6b6","x":96.508,"y":41.975,"w":1.6515,"l":0.622},{"oc":"#b6b6b6","x":38.35,"y":36.648,"w":1.125,"l":4.469},{"oc":"#b6b6b6","x":35.793,"y":36.634,"w":1.125,"l":4.516},{"oc":"#b6b6b6","x":99.838,"y":36.764,"w":1.125,"l":2.877},{"oc":"#b6b6b6","x":97.582,"y":36.681,"w":1.125,"l":2.956},{"oc":"#dfdfdf","x":80.386,"y":26.556,"w":1.125,"l":1.522},{"oc":"#dfdfdf","x":61.712,"y":26.541,"w":1.125,"l":1.509},{"oc":"#dfdfdf","x":80.266,"y":24.35,"w":1.125,"l":1.522},{"oc":"#dfdfdf","x":61.772,"y":24.334,"w":1.125,"l":1.509},{"oc":"#b7b7b7","x":59.529,"y":4.413,"w":1.125,"l":1.519},{"oc":"#b7b7b7","x":75.728,"y":4.416,"w":1.125,"l":1.503},{"oc":"#b6b6b6","x":69.158,"y":36.664,"w":1.125,"l":4.485},{"oc":"#b6b6b6","x":66.559,"y":36.659,"w":1.125,"l":4.516},{"oc":"#b6b6b6","x":98.936,"y":20.849,"w":1.125,"l":2.319},{"oc":"#b6b6b6","x":73.154,"y":28.492,"w":1.125,"l":5.219},{"oc":"#b7b7b7","x":98.957,"y":8.453,"w":1.125,"l":1.906},{"oc":"#b7b7b7","x":84.004,"y":8.453,"w":1.125,"l":1.906},{"oc":"#b7b7b7","x":12.633,"y":4.444,"w":1.125,"l":1.519},{"oc":"#b6b6b6","x":86.496,"y":36.681,"w":1.125,"l":2.956},{"oc":"#b6b6b6","x":98.828,"y":41.975,"w":1.6515,"l":0.622},{"oc":"#b7b7b7","x":98.88,"y":16.497,"w":1.125,"l":0.688},{"oc":"#b7b7b7","x":98.785,"y":11.93,"w":1.125,"l":0.688},{"oc":"#b6b6b6","x":96.486,"y":28.493,"w":1.125,"l":5.17},{"oc":"#b6b6b6","x":85.68,"y":41.975,"w":1.6515,"l":0.622}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#b7b7b7","x":96.645,"y":14.981,"w":2.191,"h":0.031,"clr":-1},{"oc":"#b6b6b6","x":6.196,"y":22.419,"w":82.912,"h":0.725,"clr":-1},{"oc":"#b6b6b6","x":6.196,"y":20.844,"w":55.602,"h":0.806,"clr":-1},{"oc":"#b6b6b6","x":24.759,"y":36.66,"w":10.94,"h":4.399,"clr":-1},{"oc":"#b7b7b7","x":96.508,"y":4.4,"w":2.475,"h":1.534,"clr":-1},{"oc":"#b6b6b6","x":55.567,"y":36.681,"w":10.94,"h":4.451,"clr":-1},{"oc":"#b7b7b7","x":82.629,"y":11.906,"w":2.449,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":85.207,"y":11.906,"w":11.215,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.629,"y":11.953,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":85.078,"y":11.953,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":96.422,"y":11.953,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":12.656,"w":13.148,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.758,"y":12.656,"w":2.32,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":85.207,"y":12.656,"w":11.215,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":96.551,"y":12.656,"w":2.191,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.629,"y":12.703,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":85.078,"y":12.703,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":96.422,"y":12.703,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":98.742,"y":12.703,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":13.453,"w":13.148,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.758,"y":13.453,"w":2.32,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":85.207,"y":13.453,"w":11.215,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":96.551,"y":13.453,"w":2.191,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.629,"y":13.5,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":85.078,"y":13.5,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":96.422,"y":13.5,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":98.742,"y":13.5,"w":0.129,"h":0.75,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":14.25,"w":13.148,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.758,"y":14.25,"w":2.32,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":85.207,"y":14.25,"w":11.215,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":96.551,"y":14.25,"w":2.191,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.629,"y":14.297,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":85.078,"y":14.297,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":96.422,"y":14.297,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":98.742,"y":14.297,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":15,"w":13.148,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.758,"y":15,"w":2.32,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":85.207,"y":15,"w":11.215,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":82.629,"y":15.047,"w":0.129,"h":0.656,"clr":-1},{"oc":"#b7b7b7","x":85.078,"y":15.047,"w":0.129,"h":0.656,"clr":-1},{"oc":"#b7b7b7","x":96.422,"y":15.047,"w":0.129,"h":0.656,"clr":-1},{"oc":"#b7b7b7","x":98.742,"y":15.047,"w":0.129,"h":0.656,"clr":-1},{"oc":"#1f1f1f","x":6.068,"y":10.031,"w":9.779,"h":0.094,"clr":-1},{"oc":"#b7b7b7","x":25.652,"y":12.656,"w":7.734,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":25.652,"y":13.5,"w":7.734,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":25.652,"y":14.25,"w":7.734,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":25.523,"y":14.953,"w":7.863,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":25.652,"y":15.75,"w":7.734,"h":0.047,"clr":-1},{"oc":"#1f1f1f","x":6.147,"y":18.094,"w":9.877,"h":0.094,"clr":-1},{"oc":"#1f1f1f","x":6.117,"y":35.344,"w":9.938,"h":0.094,"clr":-1},{"oc":"#838383","x":16.414,"y":44.25,"w":5.156,"h":0.094,"clr":-1},{"oc":"#b7b7b7","x":69.615,"y":11.883,"w":13.137,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":11.953,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":12.734,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":14.297,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":13.547,"w":0.129,"h":0.703,"clr":-1},{"oc":"#b7b7b7","x":82.5,"y":15.633,"w":16.5,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":69.411,"y":15.633,"w":13.201,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":69.48,"y":15.047,"w":0.129,"h":0.656,"clr":-1},{"oc":"#b7b7b7","x":69.309,"y":16.516,"w":0.129,"h":0.656,"clr":-1},{"oc":"#b7b7b7","x":69.524,"y":10.359,"w":29.303,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":69.524,"y":8.422,"w":29.303,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":96.551,"y":11.906,"w":2.191,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":96.723,"y":16.461,"w":2.191,"h":0.047,"clr":-1},{"oc":"#b7b7b7","x":96.723,"y":17.148,"w":2.191,"h":0.047,"clr":-1}],"Texts":[{"oc":"#1f1f1f","x":5.938,"y":9.281,"w":37.158000000000015,"clr":-1,"A":"left","R":[{"T":"DE%20SCHEDULE%20I%20-%20CREDIT%20FOR%20INCOME%20TAXES%20PAID%20TO%20ANOTHER%20STATE","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":5.938,"y":34.594,"w":28.626000000000012,"clr":-1,"A":"left","R":[{"T":"DE%20SCHEDULE%20III%20-%20CONTRIBUTIONS%20TO%20SPECIAL%20FUNDS","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":82.895,"y":11.719,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":82.895,"y":12.609,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.559,"y":12.609,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":82.895,"y":13.313,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.559,"y":13.313,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":82.895,"y":14.156,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.559,"y":14.109,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.559,"y":14.906,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":82.895,"y":14.906,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":12.77,"y":2.297,"w":2.168,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,21,0,0]}]},{"oc":"#1f1f1f","x":21.793,"y":2.531,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,27,0,0]}]},{"oc":"#1f1f1f","x":80.961,"y":2.203,"w":3.9289999999999994,"clr":-1,"A":"left","R":[{"T":"Schedule","S":-1,"TS":[0,17.25,0,0]}]},{"oc":"#1f1f1f","x":5.937,"y":4.547,"w":3.419,"clr":-1,"A":"left","R":[{"T":"Name(s)%3A","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":5.938,"y":6.328,"w":5.035,"clr":-1,"A":"left","R":[{"T":"COLUMNS","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":12.769,"y":6.328,"w":0.8190000000000001,"clr":-1,"A":"left","R":[{"T":"%3A%20%20","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":6.711,"y":11.859,"w":0.456,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.613,"y":11.859,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":53.127,"y":11.859,"w":7.853999999999997,"clr":-1,"A":"left","R":[{"T":"..................................","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":67.306,"y":11.812,"w":0.456,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":96.688,"y":11.719,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":6.711,"y":12.703,"w":0.456,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.613,"y":12.703,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":53.127,"y":12.703,"w":7.853999999999997,"clr":-1,"A":"left","R":[{"T":"..................................","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":67.306,"y":12.609,"w":0.456,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":6.711,"y":13.453,"w":0.456,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.613,"y":13.453,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":53.127,"y":13.453,"w":7.853999999999997,"clr":-1,"A":"left","R":[{"T":"..................................","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":67.306,"y":13.359,"w":0.456,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":6.711,"y":14.156,"w":0.456,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.613,"y":14.156,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":52.996,"y":14.156,"w":7.853999999999997,"clr":-1,"A":"left","R":[{"T":"..................................","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":67.218,"y":14.109,"w":0.456,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":6.711,"y":14.953,"w":0.456,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.613,"y":14.953,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":53.127,"y":14.953,"w":7.853999999999997,"clr":-1,"A":"left","R":[{"T":"..................................","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":67.435,"y":14.906,"w":0.456,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":6.711,"y":15.703,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":7.484,"y":15.703,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.25,0,0]}]},{"x":44.215,"y":16.453,"w":5.46,"clr":0,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11.25,0,0]}]},{"x":52.087,"y":16.453,"w":1.3650000000000002,"clr":0,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.25,0,0]}]},{"x":56.216,"y":16.453,"w":1.092,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.25,0,0]}]},{"x":54.151,"y":16.453,"w":1.3650000000000002,"clr":0,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.25,0,0]}]},{"x":59.958,"y":16.453,"w":1.092,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.25,0,0]}]},{"x":57.893,"y":16.453,"w":1.3650000000000002,"clr":0,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.25,0,0]}]},{"x":61.635,"y":16.453,"w":1.3650000000000002,"clr":0,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.25,0,0]}]},{"x":63.7,"y":16.453,"w":1.092,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.25,0,0]}]},{"x":65.248,"y":16.453,"w":0.8190000000000001,"clr":0,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":67.555,"y":16.359,"w":0.456,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":83.023,"y":16.312,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":96.815,"y":16.312,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":6.453,"y":19.781,"w":8.431000000000001,"clr":-1,"A":"left","R":[{"T":"7a.%20%20Child%E2%80%99s%20First%20Name","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":30.043,"y":19.781,"w":1.1580000000000001,"clr":-1,"A":"left","R":[{"T":"7b.","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":31.972,"y":19.781,"w":7.223,"clr":-1,"A":"left","R":[{"T":"%20%20Child%E2%80%99s%20Last%20Name","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#d9d9d9","x":13.285,"y":20.765,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":14.703,"y":20.765,"w":1.6460000000000001,"clr":-1,"A":"left","R":[{"T":"HIL","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":17.538,"y":20.765,"w":1.188,"clr":-1,"A":"left","R":[{"T":"D%20%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":20.116,"y":20.765,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%201","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":13.284,"y":21.469,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":14.701,"y":21.469,"w":1.6460000000000001,"clr":-1,"A":"left","R":[{"T":"HIL","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":17.537,"y":21.469,"w":1.188,"clr":-1,"A":"left","R":[{"T":"D%20%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":20.114,"y":21.469,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%202","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":13.282,"y":22.266,"w":2.466,"clr":-1,"A":"left","R":[{"T":"CHIL","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":17.408,"y":22.266,"w":1.188,"clr":-1,"A":"left","R":[{"T":"D%20%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":20.114,"y":22.266,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%203","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#1f1f1f","x":5.938,"y":23.719,"w":0.924,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.484,"y":23.719,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":23.607,"y":25.031,"w":9.239999999999997,"clr":-1,"A":"left","R":[{"T":"........................................","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":39.091,"y":25.031,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":40.098,"y":24.984,"w":1.09,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":57.242,"y":19.781,"w":5.094,"clr":-1,"A":"left","R":[{"T":"8.%20%20Child%E2%80%99s%20SSN","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":79.413,"y":19.781,"w":8.536,"clr":-1,"A":"left","R":[{"T":"9.%20%20Child%E2%80%99s%20Date%20of%20Birth","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#d9d9d9","x":79.413,"y":20.812,"w":1.137,"clr":-1,"A":"left","R":[{"T":"M%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":81.992,"y":20.812,"w":1.137,"clr":-1,"A":"left","R":[{"T":"M%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":84.571,"y":20.812,"w":0.94,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":87.021,"y":20.812,"w":0.94,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":89.471,"y":20.812,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":92.048,"y":20.812,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":94.626,"y":20.812,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":97.203,"y":20.812,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":79.414,"y":21.516,"w":1.137,"clr":-1,"A":"left","R":[{"T":"M%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":81.993,"y":21.516,"w":1.137,"clr":-1,"A":"left","R":[{"T":"M%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":84.573,"y":21.516,"w":0.94,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":87.023,"y":21.516,"w":0.94,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":89.473,"y":21.516,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":92.05,"y":21.516,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":94.627,"y":21.516,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":97.205,"y":21.516,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":79.416,"y":22.266,"w":1.137,"clr":-1,"A":"left","R":[{"T":"M%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":81.995,"y":22.266,"w":1.137,"clr":-1,"A":"left","R":[{"T":"M%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":84.574,"y":22.266,"w":0.94,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":87.024,"y":22.266,"w":0.94,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":89.474,"y":22.266,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":92.052,"y":22.266,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":94.629,"y":22.266,"w":0.9950000000000001,"clr":-1,"A":"left","R":[{"T":"Y%20","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#d9d9d9","x":96.305,"y":22.266,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"%20Y","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#838383","x":47.832,"y":24.516,"w":1.617,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":56.34,"y":24.516,"w":1.278,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":67.169,"y":24.516,"w":1.617,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":75.933,"y":24.516,"w":1.278,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":85.73,"y":24.516,"w":1.617,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":94.365,"y":24.516,"w":1.278,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":5.938,"y":26.484,"w":0.912,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.486,"y":26.484,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":24.638,"y":27.188,"w":9.008999999999997,"clr":-1,"A":"left","R":[{"T":"......................................%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":40.227,"y":27.141,"w":0.9080000000000001,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":47.832,"y":26.719,"w":1.617,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":56.467,"y":26.719,"w":1.278,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":67.296,"y":26.719,"w":1.617,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":76.061,"y":26.719,"w":1.278,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":85.857,"y":26.719,"w":1.617,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":94.365,"y":26.719,"w":1.278,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":5.936,"y":28.031,"w":0.924,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":7.483,"y":28.031,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":62.27,"y":28.031,"w":5.733,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":70.692,"y":28.078,"w":1.09,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11.25,0,0]}]},{"x":5.938,"y":28.828,"w":0.924,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[1,12.75,0,0]}]},{"x":7.484,"y":28.828,"w":0.6930000000000001,"clr":0,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"x":9.031,"y":28.828,"w":23.936000000000007,"clr":0,"A":"left","R":[{"T":"Federal%20earned%20income%20credit%20from%20Federal%20Form%201040%2C%20Line%2064a%3B","S":-1,"TS":[1,12.75,0,0]}]},{"x":39.84,"y":29.484,"w":0.556,"clr":0,"A":"left","R":[{"T":"..","S":-1,"TS":[0,11.25,0,0]}]},{"x":40.614,"y":29.484,"w":8.189999999999998,"clr":0,"A":"left","R":[{"T":"..............................","S":-1,"TS":[0,11.25,0,0]}]},{"x":52.356,"y":29.484,"w":1.6380000000000003,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.25,0,0]}]},{"x":54.808,"y":29.484,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":57.647,"y":29.484,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":60.485,"y":29.484,"w":1.6380000000000003,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.25,0,0]}]},{"x":62.937,"y":29.484,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":65.776,"y":29.484,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":68.615,"y":29.484,"w":0.273,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.25,0,0]}]},{"x":69.002,"y":29.484,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"..%20","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":70.779,"y":29.625,"w":1.09,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11.25,0,0]}]},{"x":5.938,"y":30.328,"w":0.924,"clr":0,"A":"left","R":[{"T":"14","S":-1,"TS":[1,12.75,0,0]}]},{"x":7.484,"y":30.328,"w":0.6930000000000001,"clr":0,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"x":31.721,"y":30.328,"w":21.02100000000003,"clr":0,"A":"left","R":[{"T":"...........................................................................................","S":-1,"TS":[1,12.75,0,0]}]},{"x":65.624,"y":30.328,"w":0.228,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,12.75,0,0]}]},{"x":66.011,"y":30.328,"w":2.772,"clr":0,"A":"left","R":[{"T":"............","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":70.777,"y":30.469,"w":1.09,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11.25,0,0]}]},{"x":5.938,"y":31.078,"w":1.09,"clr":0,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11.25,0,0]}]},{"x":7.483,"y":31.078,"w":0.546,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.25,0,0]}]},{"x":28.49,"y":31.078,"w":8.735999999999997,"clr":0,"A":"left","R":[{"T":"................................","S":-1,"TS":[0,11.25,0,0]}]},{"x":41.007,"y":31.078,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":43.846,"y":31.078,"w":1.6380000000000003,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.25,0,0]}]},{"x":46.297,"y":31.078,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":49.136,"y":31.078,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":51.975,"y":31.078,"w":1.6380000000000003,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.25,0,0]}]},{"x":54.426,"y":31.078,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":57.265,"y":31.078,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":60.104,"y":31.078,"w":1.6380000000000003,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.25,0,0]}]},{"x":62.556,"y":31.078,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":65.394,"y":31.078,"w":1.9110000000000005,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"x":68.233,"y":31.078,"w":0.273,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.25,0,0]}]},{"x":68.62,"y":31.078,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"..%20","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":70.642,"y":31.219,"w":1.09,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11.25,0,0]}]},{"x":5.938,"y":31.875,"w":0.924,"clr":0,"A":"left","R":[{"T":"16","S":-1,"TS":[1,12.75,0,0]}]},{"x":7.484,"y":31.875,"w":0.6930000000000001,"clr":0,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"x":27.103,"y":32.578,"w":22.869000000000042,"clr":0,"A":"left","R":[{"T":"...................................................................................................","S":-1,"TS":[1,12.75,0,0]}]},{"x":64.394,"y":32.578,"w":0.228,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[1,12.75,0,0]}]},{"x":64.744,"y":32.578,"w":3.6959999999999993,"clr":0,"A":"left","R":[{"T":"................","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":70.863,"y":32.531,"w":1.09,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":94.109,"y":28.219,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":94.109,"y":29.391,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":89.855,"y":30.469,"w":1.306,"clr":-1,"A":"left","R":[{"T":".20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":94.109,"y":31.219,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":94.109,"y":32.297,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":5.809,"y":36.516,"w":1.09,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":7.354,"y":36.516,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":8.516,"y":36.469,"w":1.231,"clr":-1,"A":"left","R":[{"T":"A%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":35.973,"y":36.469,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":8.516,"y":37.219,"w":1.231,"clr":-1,"A":"left","R":[{"T":"B%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":35.973,"y":37.266,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":8.516,"y":37.969,"w":0.82,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":9.675,"y":38.016,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":35.973,"y":38.063,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":39.843,"y":37.969,"w":0.912,"clr":-1,"A":"left","R":[{"T":"I%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":66.91,"y":36.562,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":71.164,"y":36.563,"w":1.139,"clr":-1,"A":"left","R":[{"T":"M.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":97.633,"y":36.562,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.909,"y":37.312,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":71.164,"y":37.266,"w":1.048,"clr":-1,"A":"left","R":[{"T":"N.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":73.098,"y":37.313,"w":6.939,"clr":-1,"A":"left","R":[{"T":"Home%20of%20the%20Brave","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":97.633,"y":37.266,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.909,"y":37.969,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":71.164,"y":37.969,"w":1.094,"clr":-1,"A":"left","R":[{"T":"O.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":73.098,"y":38.016,"w":6.664999999999999,"clr":-1,"A":"left","R":[{"T":"Senior%20Trust%20Fund","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":97.633,"y":37.969,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":8.516,"y":38.719,"w":1.276,"clr":-1,"A":"left","R":[{"T":"D%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.646,"y":39.469,"w":1.231,"clr":-1,"A":"left","R":[{"T":"E%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.646,"y":40.266,"w":0.805,"clr":-1,"A":"left","R":[{"T":"F.","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":36.102,"y":38.766,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":39.582,"y":38.719,"w":1.094,"clr":-1,"A":"left","R":[{"T":"J%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":43.709,"y":38.766,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":36.102,"y":39.469,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":37.003,"y":39.469,"w":1.193,"clr":-1,"A":"left","R":[{"T":"0%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":39.324,"y":39.469,"w":1.231,"clr":-1,"A":"left","R":[{"T":"K%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":36.102,"y":40.266,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":39.582,"y":40.219,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"L%20.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":66.91,"y":38.766,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"00%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":71.164,"y":38.719,"w":0.759,"clr":-1,"A":"left","R":[{"T":"P.","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":97.633,"y":38.719,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.909,"y":39.469,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.907,"y":40.266,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":9.031,"y":41.672,"w":31.937000000000015,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20Contribution%20amount%20here%20and%20on%20Resident%20Return%2C%20Line%2024%20","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":56.855,"y":41.672,"w":9.281999999999996,"clr":-1,"A":"left","R":[{"T":"..................................","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":70.146,"y":41.672,"w":1.9110000000000005,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":72.984,"y":41.672,"w":1.9110000000000005,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":75.823,"y":41.672,"w":1.3650000000000002,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":77.759,"y":41.672,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":78.125,"y":41.672,"w":0.273,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":78.641,"y":41.672,"w":1.3650000000000002,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":81.733,"y":41.719,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":96.559,"y":41.719,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#1f1f1f","x":13.543,"y":46.125,"w":2.3840000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev%20","S":-1,"TS":[0,9.75,0,0]}]},{"oc":"#1f1f1f","x":16.895,"y":46.125,"w":4.216000000000001,"clr":-1,"A":"left","R":[{"T":"10%2F31%2F13)","S":-1,"TS":[0,9.75,0,0]}]},{"oc":"#1f1f1f","x":36.488,"y":2.109,"w":19.262000000000008,"clr":-1,"A":"left","R":[{"T":"2013%20DELAWARE%20RESIDENT%20SCHEDULES","S":-1,"TS":[0,12.75,0,0]}]},{"oc":"#1f1f1f","x":60.207,"y":4.547,"w":8.933,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%3A","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":13.328,"y":6.328,"w":41.18800000000006,"clr":-1,"A":"left","R":[{"T":"Column%20A%20is%20reserved%20for%20the%20spouse%20of%20those%20couples%20choosing%20filing%20status%204.%20(Reconcile%20your%20Federal%20totals%20to%20the%20appropriate%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#1f1f1f","x":13.505,"y":6.937,"w":35.78200000000004,"clr":-1,"A":"left","R":[{"T":"individual.%20See%20Page%209%20worksheet.)%20Taxpayers%20using%20filing%20statuses%201%2C%202%2C%203%2C%20or%205%20are%20to%20complete%20Column%20B%20only.","S":27,"TS":[1,12,0,0]}]},{"oc":"#1f1f1f","x":70.004,"y":8.25,"w":11.253000000000002,"clr":-1,"A":"left","R":[{"T":"Filing%20Status%204%20ONLY%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#1f1f1f","x":70.262,"y":8.766,"w":8.949000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%20Information%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#1f1f1f","x":72.711,"y":9.328,"w":5.102,"clr":-1,"A":"left","R":[{"T":"COLUMN%20A","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#1f1f1f","x":84.012,"y":8.203,"w":11.362000000000002,"clr":-1,"A":"left","R":[{"T":"All%20other%20filings%20statuses","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#1f1f1f","x":84.227,"y":8.719,"w":10.784000000000002,"clr":-1,"A":"left","R":[{"T":"You%20or%20You%20plus%20Spouse","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#1f1f1f","x":88.437,"y":9.281,"w":5.102,"clr":-1,"A":"left","R":[{"T":"COLUMN%20B","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#838383","x":5.938,"y":10.266,"w":39.24899999999998,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20and%20complete%20the%20work%20sheet%20on%20Page%207%20prior%20to%20completing%20DE%20Schedule%20I.","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":6.711,"y":11.109,"w":20.184999999999988,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20credit%20in%20HIGHEST%20to%20LOWEST%20amount%20order.","S":-1,"TS":[1,11.25,0,0]}]},{"oc":"#1f1f1f","x":8.774,"y":11.859,"w":9.527,"clr":-1,"A":"left","R":[{"T":"%20Tax%20imposed%20by%20State%20of%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.774,"y":12.703,"w":9.527,"clr":-1,"A":"left","R":[{"T":"%20Tax%20imposed%20by%20State%20of%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.774,"y":13.453,"w":9.527,"clr":-1,"A":"left","R":[{"T":"%20Tax%20imposed%20by%20State%20of%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.774,"y":14.156,"w":9.071,"clr":-1,"A":"left","R":[{"T":"%20Tax%20imposed%20by%20State%20of","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.774,"y":14.953,"w":9.527,"clr":-1,"A":"left","R":[{"T":"%20Tax%20imposed%20by%20State%20of%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":9.031,"y":16.453,"w":21.502000000000006,"clr":-1,"A":"left","R":[{"T":"other%20state%20return(s)%20with%20your%20Delaware%20tax%20return","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":33.915,"y":11.859,"w":11.029999999999998,"clr":-1,"A":"left","R":[{"T":"(enter%202%20character%20state%20name)","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":33.915,"y":12.703,"w":11.209999999999999,"clr":-1,"A":"left","R":[{"T":"(enter%202%20character%20state%20name)","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":33.915,"y":13.453,"w":11.209999999999999,"clr":-1,"A":"left","R":[{"T":"(enter%202%20character%20state%20name)","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":33.999,"y":14.156,"w":11.029999999999998,"clr":-1,"A":"left","R":[{"T":"(enter%202%20character%20state%20name)","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":34.001,"y":14.953,"w":11.029999999999998,"clr":-1,"A":"left","R":[{"T":"(enter%202%20character%20state%20name)","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":5.938,"y":17.391,"w":28.069000000000013,"clr":-1,"A":"left","R":[{"T":"DE%20SCHEDULE%20II%20-%20EARNED%20INCOME%20TAX%20CREDIT%20(EITC)","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":5.938,"y":18.141,"w":53.50200000000009,"clr":-1,"A":"left","R":[{"T":"Complete%20the%20Earned%20Income%20Tax%20Credit%20for%20each%20child%20YOU%20CLAIMED%20the%20Earned%20Income%20Credit%20for%20on%20your%20federal%20return.%20","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":5.94,"y":18.797,"w":11.161999999999999,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Child%20Information","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":8.646,"y":23.719,"w":17.506999999999998,"clr":-1,"A":"left","R":[{"T":"%20Was%20the%20child%20under%20age%2024%20at%20the%20end%20of%202013%2C%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":9.034,"y":24.328,"w":14.815999999999997,"clr":-1,"A":"left","R":[{"T":"a%20student%2C%20and%20younger%20than%20you%20(or%20your","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.907,"y":25.031,"w":8.638999999999998,"clr":-1,"A":"left","R":[{"T":"spouse%2C%20if%20filing%20jointly)%3F","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":8.517,"y":26.484,"w":17.137999999999998,"clr":-1,"A":"left","R":[{"T":"%20Was%20the%20child%20permanently%20and%20totally%20disabled","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":9.036,"y":27.188,"w":9.033999999999999,"clr":-1,"A":"left","R":[{"T":"during%20any%20part%20of%202013%3F","S":-1,"TS":[1,12.75,0,0]}]},{"x":9.029,"y":28.031,"w":32.03700000000001,"clr":0,"A":"left","R":[{"T":"Delaware%20State%20Income%20Tax%20from%20Line%208%20(enter%20higher%20tax%20amount%20from%20Column%20A%20or%20B)%20","S":-1,"TS":[1,12.75,0,0]}]},{"x":9.031,"y":29.484,"w":18.424000000000003,"clr":0,"A":"left","R":[{"T":"Form%201040A%2C%20Line%2038a%3B%20or%20Form%201040EZ%2C%20Line%208a%20%20","S":-1,"TS":[1,12.75,0,0]}]},{"x":9.031,"y":30.328,"w":13.043999999999997,"clr":0,"A":"left","R":[{"T":"Delaware%20EITC%20Percentage%20%20(20%25).","S":-1,"TS":[1,12.75,0,0]}]},{"x":9.032,"y":31.078,"w":11.542,"clr":0,"A":"left","R":[{"T":"Multiply%20Line%2013%20by%20Line%2014","S":-1,"TS":[0,11.25,0,0]}]},{"x":9.031,"y":31.875,"w":17.869,"clr":0,"A":"left","R":[{"T":"Enter%20the%20Smaller%20of%20Line%2012%20or%20Line%2015%20above.%20Enter%20here%20and","S":-1,"TS":[1,12.75,0,0]}]},{"x":9.046,"y":32.578,"w":10.210999999999999,"clr":0,"A":"left","R":[{"T":"on%20Resident%20Return%2C%20Line%2014","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":5.938,"y":33.609,"w":30.063999999999975,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20on%20Page%208%20for%20ALL%20required%20documentation%20to%20attach.","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#838383","x":5.938,"y":35.391,"w":27.65999999999998,"clr":-1,"A":"left","R":[{"T":"See%20Page%2013%20for%20a%20description%20of%20each%20worthwhile%20fund%20listed%20below.","S":-1,"TS":[0,11.25,0,0]}]},{"oc":"#1f1f1f","x":10.449,"y":36.469,"w":6.981999999999999,"clr":-1,"A":"left","R":[{"T":"Non-Game%20Wildlife","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":10.449,"y":37.266,"w":5.233,"clr":-1,"A":"left","R":[{"T":"U.S.%20Olympics","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":10.449,"y":38.063,"w":7.484999999999999,"clr":-1,"A":"left","R":[{"T":"Emergency%20Housing","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":10.449,"y":38.766,"w":7.68,"clr":-1,"A":"left","R":[{"T":"Breast%20Cancer%20Educ.","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":10.451,"y":39.469,"w":5.853999999999999,"clr":-1,"A":"left","R":[{"T":"Organ%20Donations","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":10.451,"y":40.266,"w":5.6450000000000005,"clr":-1,"A":"left","R":[{"T":"Diabetes%20Educ.","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":39.711,"y":36.563,"w":1.094,"clr":-1,"A":"left","R":[{"T":"G.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":41.774,"y":36.563,"w":5.8790000000000004,"clr":-1,"A":"left","R":[{"T":"Veteran%E2%80%99s%20Home","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":39.714,"y":37.266,"w":1.048,"clr":-1,"A":"left","R":[{"T":"H.%20","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":41.648,"y":37.266,"w":6.8820000000000014,"clr":-1,"A":"left","R":[{"T":"DE%20National%20Guard","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":41.263,"y":38.016,"w":6.615,"clr":-1,"A":"left","R":[{"T":"Juv.%20Diabetes%20Fund","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":41.259,"y":38.766,"w":6.4399999999999995,"clr":-1,"A":"left","R":[{"T":"Mult%20Sclerosis%20Soc.","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":41.129,"y":39.516,"w":7.3069999999999995,"clr":-1,"A":"left","R":[{"T":"Ovarian%20Cancer%20Fund","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":41.13,"y":40.219,"w":8.245,"clr":-1,"A":"left","R":[{"T":"21st%20Fund%20for%20Children","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":73.098,"y":36.609,"w":5.067,"clr":-1,"A":"left","R":[{"T":"White%20Clay%20Creek","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#1f1f1f","x":73.098,"y":38.719,"w":7.776999999999999,"clr":-1,"A":"left","R":[{"T":"Veteran%E2%80%99s%20Trust%20Fund","S":-1,"TS":[1,12.75,0,0]}]},{"oc":"#838383","x":7.484,"y":43.5,"w":42.32000000000004,"clr":-1,"A":"left","R":[{"T":"This%20page%20MUST%20be%20sent%20in%20with%20your%20Delaware%20return%20if%20any%20of%20the%20schedules%20(above)%20are%20completed.","S":-1,"TS":[0,14.25,0,0]}]},{"oc":"#838383","x":46.93,"y":23.391,"w":5.7780000000000005,"clr":-1,"A":"left","R":[{"T":"CHILD%20%20%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":66.652,"y":23.391,"w":5.7780000000000005,"clr":-1,"A":"left","R":[{"T":"CHILD%20%20%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#838383","x":85.085,"y":23.391,"w":5.389,"clr":-1,"A":"left","R":[{"T":"CHILD%20%20%203","S":3,"TS":[0,12,0,0]}]},{"x":9.031,"y":15.703,"w":15.315999999999995,"clr":0,"A":"left","R":[{"T":"Enter%20the%20total%20here%20and%20on%20Resident%20Return%2C%20Line%2010.","S":-1,"TS":[1,12.75,0,0]}]},{"x":37.571,"y":15.703,"w":8.857999999999999,"clr":0,"A":"left","R":[{"T":"You%20must%20attach%20%20a%20copy%20of%20the","S":-1,"TS":[1,12.75,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME3","EN":0},"TI":149,"AM":1024,"x":12.203,"y":4.494,"w":47.343,"h":1.373,"TU":"Name(s) shown on Delaware tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":150,"AM":1024,"x":76.44,"y":4.466,"w":22.412,"h":1.428,"TU":"Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2_STATEA_1_","EN":0},"TI":151,"AM":0,"x":69.582,"y":11.942,"w":12.914,"h":0.833,"TU":"Line 1_Column A. Credit for income taxes paid to another state "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2_STATEB_1_","EN":0},"TI":152,"AM":0,"x":85.264,"y":11.985,"w":11.117,"h":0.833,"TU":"Line 1_Column B. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_STATE_1_","EN":0},"TI":153,"AM":0,"x":25.636,"y":12.061,"w":7.121,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"A2_STATE_2_","EN":0},"TI":154,"AM":0,"x":25.604,"y":12.928,"w":7.121,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"A2_STATEA_2_","EN":0},"TI":155,"AM":0,"x":69.574,"y":12.704,"w":12.914,"h":0.833,"TU":"Line 2_Column A. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2_STATEB_2_","EN":0},"TI":156,"AM":0,"x":85.256,"y":12.748,"w":11.117,"h":0.833,"TU":"Line 2_Column B. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_STATE_3_","EN":0},"TI":157,"AM":0,"x":25.62,"y":13.674,"w":7.121,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"A2_STATEA_3_","EN":0},"TI":158,"AM":0,"x":69.628,"y":13.514,"w":12.989,"h":0.833,"TU":"Line 3_Column A. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2_STATEB_3_","EN":0},"TI":159,"AM":0,"x":85.31,"y":13.557,"w":11.117,"h":0.833,"TU":"Line 3_Column B. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_STATE_4_","EN":0},"TI":160,"AM":0,"x":25.636,"y":14.369,"w":7.121,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"A2_STATEA_4_","EN":0},"TI":161,"AM":0,"x":69.608,"y":14.269,"w":12.988,"h":0.833,"TU":"Line 4_Column A. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2_STATEB_4_","EN":0},"TI":162,"AM":0,"x":85.29,"y":14.312,"w":11.117,"h":0.833,"TU":"Line 4_Column B. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_STATE_5_","EN":0},"TI":163,"AM":0,"x":25.715,"y":15.161,"w":7.121,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"A2_STATEA_5_","EN":0},"TI":164,"AM":0,"x":69.438,"y":15.024,"w":13.288,"h":0.833,"TU":"Line 5_Column A. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2_STATEB_5_","EN":0},"TI":165,"AM":0,"x":85.12,"y":15.04,"w":11.117,"h":0.833,"TU":"Line 5_Column B. Credit for income taxes paid to another state"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALA","EN":0},"TI":166,"AM":1024,"x":69.402,"y":16.498,"w":13.428,"h":0.833,"TU":"Line 6_Column A. Enter the total here and on resident return, Line 10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALB","EN":0},"TI":167,"AM":1024,"x":85.298,"y":16.532,"w":11.332,"h":0.833,"TU":"Line 6_Column B. Enter the total here and on resident return, Line 10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A14_CHFIRST_1_","EN":0},"TI":168,"AM":0,"x":6.252,"y":20.853,"w":23.146,"h":0.833,"TU":"7a. Qualified child's first name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A15_CHLAST_1_","EN":0},"TI":169,"AM":0,"x":29.762,"y":20.923,"w":27.081,"h":0.833,"TU":"7b. Qualified child's last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A16_CHILDSSN_1_","EN":0},"TI":170,"AM":0,"x":56.966,"y":20.887,"w":22.237,"h":0.833,"TU":"8. Qualified child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A17_CHILDYOB_1_","EN":0},"TI":171,"AM":0,"x":79.373,"y":20.887,"w":19.383,"h":0.833,"TU":"9. Qualified child's year of birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A14_CHFIRST_2_","EN":0},"TI":172,"AM":0,"x":6.305,"y":21.669,"w":23.146,"h":0.833,"TU":"7a. Qualified child's first name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A15_CHLAST_2_","EN":0},"TI":173,"AM":0,"x":29.814,"y":21.677,"w":27.081,"h":0.833,"TU":"7b. Qualified child's last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A16_CHILDSSN_2_","EN":0},"TI":174,"AM":0,"x":57.019,"y":21.704,"w":22.237,"h":0.833,"TU":"8. Qualified child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A17_CHILDYOB_2_","EN":0},"TI":175,"AM":0,"x":79.426,"y":21.704,"w":19.383,"h":0.833,"TU":"9. Qualified child's year of birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A14_CHFIRST_3_","EN":0},"TI":176,"AM":0,"x":6.434,"y":22.37,"w":23.146,"h":0.833,"TU":"7a. Qualified child's first name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A15_CHLAST_3_","EN":0},"TI":177,"AM":0,"x":29.869,"y":22.467,"w":27.081,"h":0.833,"TU":"7b. Qualified child's last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A16_CHILDSSN_3_","EN":0},"TI":178,"AM":0,"x":57.074,"y":22.432,"w":22.237,"h":0.833,"TU":"8. Qualified child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A17_CHILDYOB_3_","EN":0},"TI":179,"AM":0,"x":79.481,"y":22.432,"w":19.383,"h":0.833,"TU":"9. Qualified child's year of birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DESTINC","EN":0},"TI":192,"AM":1024,"x":73.22,"y":28.473,"w":20.99,"h":0.833,"TU":"Line 12. Delaware state income tax from line 8 (enter higher tax amount from Column A or B)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDEIC","EN":0},"TI":193,"AM":0,"x":73.057,"y":29.899,"w":20.99,"h":0.833,"TU":"Line 13. Federal earned income credit from Federal Form 1040, Line 64a: Form 1040A, Line 38A: of Form 1040EZ, Line 8a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTIPLY","EN":0},"TI":194,"AM":1024,"x":73.262,"y":31.444,"w":20.99,"h":0.833,"TU":"Line 15. Multiply line 13 by line 14."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER","EN":0},"TI":195,"AM":1024,"x":73.241,"y":32.879,"w":20.99,"h":0.833,"TU":"Line 16. Enter the smaller of line 12 or line 15 above. Enter here and on Resident Return, Line 14."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WILDLIFE","EN":0},"TI":196,"AM":0,"x":24.931,"y":36.671,"w":10.883,"h":0.833,"TU":"Line 17A. Non-Game Wildlife"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OLYMPICS","EN":0},"TI":197,"AM":0,"x":24.955,"y":37.44,"w":10.883,"h":0.833,"TU":"Line 17B. U.S. Olympics"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOUSING","EN":0},"TI":198,"AM":0,"x":24.935,"y":38.25,"w":10.883,"h":0.833,"TU":"Line 17C. Emergency Housing"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CANCER","EN":0},"TI":199,"AM":0,"x":24.84,"y":39.005,"w":10.883,"h":0.833,"TU":"Line 17D. Breast Cancer Educ."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ORGAN","EN":0},"TI":200,"AM":0,"x":24.895,"y":39.732,"w":10.883,"h":0.833,"TU":"Line 17E. Organ Donations"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIABETES","EN":0},"TI":201,"AM":0,"x":24.874,"y":40.488,"w":10.883,"h":0.833,"TU":"Line 17F. Diabetes Educ."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VETERANS","EN":0},"TI":202,"AM":0,"x":55.65,"y":36.678,"w":10.883,"h":0.833,"TU":"Line 17G. Veteran's Home"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NATGUARD","EN":0},"TI":203,"AM":0,"x":55.63,"y":37.406,"w":10.883,"h":0.833,"TU":"Line 17H. DE National Guard"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"JDFUND","EN":0},"TI":204,"AM":0,"x":55.685,"y":38.161,"w":10.883,"h":0.833,"TU":"Line 17I. Juv. Diabetes Fund"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTSCL","EN":0},"TI":205,"AM":0,"x":55.74,"y":38.943,"w":10.583,"h":0.833,"TU":"Line 17J. Mult. Sclerosis Soc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVCANCER","EN":0},"TI":206,"AM":0,"x":55.869,"y":39.643,"w":10.583,"h":0.833,"TU":"Line 17K. Ovarian Cancer Fund"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHILD21","EN":0},"TI":207,"AM":0,"x":55.7,"y":40.48,"w":10.883,"h":0.833,"TU":"Line 17L. 21st Fund for Children"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHCLAY","EN":0},"TI":208,"AM":0,"x":86.935,"y":36.689,"w":10.433,"h":0.833,"TU":"Line 17M. White Clay Creek"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOBRA","EN":0},"TI":209,"AM":0,"x":86.756,"y":37.44,"w":10.658,"h":0.833,"TU":"Line 17N. Home of the Brave"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SNTRU","EN":0},"TI":210,"AM":0,"x":86.714,"y":38.195,"w":10.583,"h":0.833,"TU":"Line 17O. Senior Trust Fund"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VTF","EN":0},"TI":211,"AM":0,"x":86.694,"y":38.923,"w":10.658,"h":0.833,"TU":"Line 17P. Veteran's Trust Fund"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIB","EN":0},"TI":212,"AM":1024,"x":85.537,"y":41.883,"w":10.883,"h":0.833,"TU":"Line 17. Enter the total Contribution amount here and on Resident Return, Line 24"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1AGEYBX","EN":0},"TI":180,"AM":0,"x":44.396,"y":24.513,"w":2.719,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1AGENBX","EN":0},"TI":181,"AM":0,"x":53.144,"y":24.563,"w":2.645,"h":0.833,"checked":false}],"id":{"Id":"A5RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2AGEYBX","EN":0},"TI":182,"AM":0,"x":64.267,"y":24.511,"w":2.719,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2AGENBX","EN":0},"TI":183,"AM":0,"x":72.94,"y":24.561,"w":2.644,"h":0.833,"checked":false}],"id":{"Id":"A9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3AGEYBX","EN":0},"TI":184,"AM":0,"x":82.74,"y":24.531,"w":2.719,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3AGENBX","EN":0},"TI":185,"AM":0,"x":91.412,"y":24.581,"w":2.645,"h":0.833,"checked":false}],"id":{"Id":"A13RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1DISYBX","EN":0},"TI":186,"AM":0,"x":44.347,"y":26.708,"w":2.719,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1DISNBX","EN":0},"TI":187,"AM":0,"x":53.094,"y":26.758,"w":2.645,"h":0.833,"checked":false}],"id":{"Id":"BX16RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2DISYBX","EN":0},"TI":188,"AM":0,"x":64.218,"y":26.706,"w":2.719,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2DISNBX","EN":0},"TI":189,"AM":0,"x":72.891,"y":26.756,"w":2.644,"h":0.833,"checked":false}],"id":{"Id":"BX18RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3DISYBX","EN":0},"TI":190,"AM":0,"x":83.162,"y":26.726,"w":2.42,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3DISNBX","EN":0},"TI":191,"AM":0,"x":91.662,"y":26.776,"w":2.345,"h":0.833,"checked":false}],"id":{"Id":"BX20RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/de/form/DE329S.content.txt b/test/data/de/form/DE329S.content.txt new file mode 100755 index 00000000..94c3b093 --- /dev/null +++ b/test/data/de/form/DE329S.content.txt @@ -0,0 +1,876 @@ +Enter capital gain portion of distribution from Box 3 of Form 1099R +DELAWARE +F +ORM + +3 +2 +9 + + + + +2013 + +Page + +1 + +SPECIAL + +TAX + +COMPUTATION + +FOR + +LUMP + +SUM +DISTRIBUTION + +FROM + +Q +U +A +L +IFIED + +RETIREMENT + +PLAN + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +. + + + + + + + + + + + +. +.. +. +...... +. +. +.. +. +...... +. +... +. +.... + +2 +. + + + + + + + + + + + + +. +..... +. +.... +. +... + +3 +. + + + + + +.. +. +.. +. +.. +.... +. +. +.. +. +.. +.... +. +... +. +.. +.... +. +.. +.. +. +. +.... +. +.. +.. +. +.. +. +. +. +. +.. +.. +. +.. +. +. +. +. +.. +.. +. +.. +. +. +.... +.. +. +.. +. +.. +.... +. +. +.. +. +.. +.... +. +... + +4 +. + + + + + + + +.. +.. +. +. +.... +. +.. +.. +. +.. +. +. +. +. +.. +.. +. +.. +. +. +. +. +.. +.. +. +.. +. +.. +... + +5 +. + + + + + +.. +.... +. +.. +.. +. +. +.... +. +.. +.. +. +.. +. +. +. +. +.. +.. +. +.. +. +.. +... +.. +. +.. +. +.. +.... +. +. +.. +. +.. +.... +. +. +.. +. +.. +.... +. +... +. +.. +.... +. +.. +.. +. + +6 +. + + + + + + + + + +.. +. +. +. +.. +.. +. +. +.. +. +. +. +... + +7. + + + + + + + + + + +. +. +. +.. +. +. +.. +.. +. +. +. +.. +.. +. +. +.. +. +. +. +.. +.. +. +. +.. +. +. +. +.. +.. +. +.. +. +. +.. + +8. + + + + + + + + + +. +.. +. +.. +... +.. +. +.. +..... +. +. +.. +. +.. +.... +. +... +. +.. +.... +. +... +. +.. +.... +. +.. +.. +. +. +.... +. +.. + +9 +. + + + + + + + + + + + + + + + +.. +. +....... +. +.. +. +.. + +1 +0. + + + + + + + + +. +. +...... +. +.... +. +..... +. +.... +. +.. +. +....... +. +.. +. +....... +. +.. +. +....... +. +.. +. +...... +. +. +.. +. +..... + +11. + + + + + + + + + +. +.. +. +.. +... +. +.. +. +.. +.... +. +. +.. +. +.. +.... +. +... +. +.. +.... +. +... +. +.. +.... +. +.. +.. +. +. +.... +. +.. + +1 +2. + + + + + + + + + + + + + + +. +....... +. +.. +. +.. + +1 +3. + + + + + + + + +. +. +...... +. +.... +. +..... +. +.... +. +.. +. +....... +. +.. +. +....... +. +.. +. +....... +. +.. +. +...... +. +. +.. +. +..... + +14. + + + + + +. +. +. +.. +.. +. +. +.... +. +.. +.. +. +.. +. +. +. +. +.. +.. +. +.. +. +.. +... +.. +. +.. +. +.. +.... +. +. +.. +. +.. +.... +. +. +.. +. +.. +.... +. +... +. +.. +.... +. +..... + +15. + + + + + + + + + + + + + + + + + + +. +. + +1 +6. + + + + + + + + + + + + + + + + + + + + + + + + + + +... +. +. +. +. +. +.. +... +.. +. +.. +. +.. +.. +. +. +. +. +.. +. +. +... +. +. +. +. +.. +. +.. +.. + +1 +. + +2 +. + +3 +. + +4 +. + +5 +. + +6 +. + +7 +. + +8 +. + +9 +. + +1 +0. + +1 +1. + +1 +2. + +1 +3. + +1 +4. + +1 +5. + + +1 +6. + + + + + + + + + + + + + + + + + + + + + + +TAX YEAR +Lump Sum Distributions +This form applies, in the case of someone who is not self-employed,only when the distribution was made: +-Due to the participant's death; +-Due to the participant's separation from employment; or +-After the participant had attained age 59 1/2 +In the case of a self-employed person, this form applies only when the distribution was made: +-Due to the participant's death; +-After the participant had attained age 59 1/2 +-The participant was previously disabled. +THIS FORM DOES NOT APPLY WHEN YOUR DISTRIBUTION WAS: +-Rolled over; +-An early distribution including an early distribution received for medical, education or housing exclusions; or +-Subject to the early withdrawal penalty on Line 58 of your Federal Form 1040. +LAST NAME(S) AS SHOWN ON RETURN +YOUR FIRST NAME +YOUR SOCIAL SECURITY NUMBER +SPOUSE'S SOCIAL SECURITY NUMBER(IF APPLICABLE) +SPOUSE'S FIRST NAME(IF APPLICABLE) +SPOUSE'S LAST NAME (IF APPLICABLE) +Enter ordinary income portion of distribution from Box 2a of Form 1099R....... +Add Lines1 and 2 +Death benefit exclusion allowed on Federal Form 4972. +Subtract Line 4 from Line 3. +Current actuarial value of annuity (if applicable, see Federal instructions) +Total taxable amount of distribution. Add Lines 5 and 6.. +Enter 10% of Line 7 (Multiply Line 7 by .10) +Compute the tax on Line 8 (use Tax Rate Schedule or Table for Form 200).. +Multiply the amount on Line 9 by ten.. +Enter 10% of Line 6 (Multiply Line 6 by .10) +Compute the tax on Line 11 (use Tax Rate Schedule or Table for Form 200).. +Multiply the amount on Line 12 by ten +Subtract Line 13 from Line 10. +Divide Line 2 by Line 3 and enter result as a decimal (rounded to at least two places) +Tax on ordinary income portion of distribution (Multiply Line 14 by decimal on Line 15 +and enter on Form 200-01, Line 7, or Form 400, Line 9) +ATTACH FORM 329 AND FORM 4972 TO FORM 200 OR FORM 400 +REVISED 09/20/13 +----------------Page (0) Break---------------- diff --git a/test/data/de/form/DE329S.fields.json b/test/data/de/form/DE329S.fields.json new file mode 100755 index 00000000..5619a489 --- /dev/null +++ b/test/data/de/form/DE329S.fields.json @@ -0,0 +1 @@ +[{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"alpha","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/de/form/DE329S.json b/test/data/de/form/DE329S.json new file mode 100755 index 00000000..665e8267 --- /dev/null +++ b/test/data/de/form/DE329S.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"TY13_329_1","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":21.02,"y":6.881,"w":1.5,"l":61.884},{"oc":"#221f1f","x":74.241,"y":25.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":24.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":25.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":27.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":28.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":27.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":28.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":30.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":31.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":30.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":31.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":33.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":34.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":33.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":34.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":37.484,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":6.188,"y":20.978,"w":0.75,"l":24.759},{"oc":"#221f1f","x":6.188,"y":19.459,"w":0.75,"l":24.759},{"oc":"#221f1f","x":33.37,"y":20.978,"w":0.75,"l":19.8},{"oc":"#221f1f","x":33.37,"y":19.459,"w":0.75,"l":19.8},{"oc":"#221f1f","x":33.413,"y":23.988,"w":0.75,"l":19.8},{"oc":"#221f1f","x":33.413,"y":22.456,"w":0.75,"l":19.8},{"oc":"#221f1f","x":6.188,"y":24.041,"w":0.75,"l":24.759},{"oc":"#221f1f","x":6.188,"y":22.469,"w":0.75,"l":24.759},{"oc":"#221f1f","x":55.748,"y":19.453,"w":0.75,"l":22.284},{"oc":"#221f1f","x":55.748,"y":20.984,"w":0.75,"l":22.284},{"oc":"#221f1f","x":55.748,"y":22.431,"w":0.75,"l":22.284},{"oc":"#221f1f","x":55.748,"y":24.025,"w":0.75,"l":22.284}],"VLines":[{"oc":"#221f1f","x":74.241,"y":24.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":24.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":25.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":25.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":26.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":26.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":26.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":26.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":27.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":27.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":28.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":28.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":29.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":29.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":29.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":29.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":30.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":30.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":31.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":31.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":32.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":32.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":32.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":32.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":33.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":33.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":34.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":34.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":35.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":35.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":35.997,"w":0.75,"l":1.488},{"oc":"#221f1f","x":95.279,"y":35.997,"w":0.75,"l":1.488},{"oc":"#221f1f","x":6.188,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":30.946,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":33.37,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":53.17,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":33.413,"y":22.456,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":22.456,"w":0.75,"l":1.531},{"oc":"#221f1f","x":6.188,"y":22.469,"w":0.75,"l":1.572},{"oc":"#221f1f","x":30.946,"y":22.469,"w":0.75,"l":1.572},{"oc":"#221f1f","x":78.031,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.748,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.556,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.081,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.606,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.131,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.648,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.173,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.698,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.223,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":78.031,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":55.748,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":75.556,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":73.081,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":70.606,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":68.131,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":65.648,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":63.173,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":60.698,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":58.223,"y":22.431,"w":0.75,"l":1.594}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":9.545,"y":24.682,"w":29.346000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20capital%20gain%20portion%20of%20distribution%20from%20Box%203%20of%20Form%201099R","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":12.228,"y":2.13,"w":5.865999999999999,"clr":-1,"A":"left","R":[{"T":"DELAWARE%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":12.228,"y":3.075,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":13.693,"y":3.075,"w":2.3209999999999997,"clr":-1,"A":"left","R":[{"T":"ORM","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":19.921,"y":3.075,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":21.263,"y":3.075,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":22.602,"y":3.075,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":48.631,"y":3.293,"w":2.228,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,24.04,1,0]}]},{"oc":"#221f1f","x":84.106,"y":2.235,"w":2.374,"clr":-1,"A":"left","R":[{"T":"Page","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":90.479,"y":2.235,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":25.076,"y":4.725,"w":4.3340000000000005,"clr":-1,"A":"left","R":[{"T":"SPECIAL","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":36.068,"y":4.725,"w":1.91,"clr":-1,"A":"left","R":[{"T":"TAX","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":41.493,"y":4.725,"w":7.4,"clr":-1,"A":"left","R":[{"T":"COMPUTATION","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":59.891,"y":4.725,"w":2.099,"clr":-1,"A":"left","R":[{"T":"FOR","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":65.583,"y":4.725,"w":2.817,"clr":-1,"A":"left","R":[{"T":"LUMP","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":73.008,"y":4.725,"w":2.448,"clr":-1,"A":"left","R":[{"T":"SUM%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":20.95,"y":5.858,"w":7.063,"clr":-1,"A":"left","R":[{"T":"DISTRIBUTION","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":38.585,"y":5.858,"w":2.892,"clr":-1,"A":"left","R":[{"T":"FROM","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":46.237,"y":5.858,"w":0.778,"clr":-1,"A":"left","R":[{"T":"Q","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":48.115,"y":5.858,"w":0.722,"clr":-1,"A":"left","R":[{"T":"U","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":49.867,"y":5.858,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":51.558,"y":5.858,"w":0.611,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":53.023,"y":5.858,"w":2.576,"clr":-1,"A":"left","R":[{"T":"IFIED","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":59.748,"y":5.858,"w":6.46,"clr":-1,"A":"left","R":[{"T":"RETIREMENT","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":75.919,"y":5.858,"w":2.638,"clr":-1,"A":"left","R":[{"T":"PLAN","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":5.937,"y":24.682,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.885,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":58.55,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":59.498,"y":24.682,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":60.446,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":60.921,"y":24.682,"w":1.6620000000000004,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":63.766000000000005,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":64.242,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":64.716,"y":24.682,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":65.664,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.138,"y":24.682,"w":1.6620000000000004,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":69.004,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":69.48,"y":24.682,"w":0.8310000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.923,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.397,"y":24.682,"w":1.108,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.934,"y":25.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.882,"y":25.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.159,"y":25.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.636,"y":25.433,"w":1.3850000000000002,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":69.03,"y":25.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":69.504,"y":25.433,"w":1.108,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.421,"y":25.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.897,"y":25.433,"w":0.8310000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.183,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.887,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":22.953,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":23.881,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":24.356,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":25.284,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":25.758,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":26.686,"y":26.183,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":28.542,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":28.996,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":29.47,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":30.42,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":30.873,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":31.801000000000002,"y":26.183,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":33.657,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":34.132,"y":26.183,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":35.492,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":35.968,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":36.917,"y":26.183,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":38.773,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":39.227,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":40.155,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":41.083,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":41.557,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.011,"y":26.183,"w":1.1560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.888,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":44.341,"y":26.183,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.269,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.197,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.672,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":47.6,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.075,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.528,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":49.003,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":49.456,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":50.405,"y":26.183,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.333,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.787,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":52.715,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.189,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.643,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.117,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.571,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.499,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.427,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.901,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":57.829,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.304,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.757,"y":26.183,"w":1.1560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.613,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.541,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.016,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.944,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.419,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.347,"y":26.183,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.203,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.656,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.131,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.059,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.533,"y":26.183,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.461,"y":26.183,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":71.317,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":71.771,"y":26.183,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":26.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":51.725,"y":26.932,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":52.653,"y":26.932,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.581,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.056,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.509,"y":26.932,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.365,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.84,"y":26.932,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":57.768,"y":26.932,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.696,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":59.171,"y":26.932,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.077,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.552,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.027,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.48,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.955,"y":26.932,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.883,"y":26.932,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.81100000000001,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.285,"y":26.932,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.213,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.688,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.141,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.616,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.091,"y":26.932,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.019,"y":26.932,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.947,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.421,"y":26.932,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.328,"y":26.932,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.803,"y":26.932,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":71.752,"y":26.932,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.938,"y":27.682,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":29.987,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":30.915,"y":27.682,"w":1.1560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":32.771,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":33.246,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":34.174,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":35.102,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":35.577,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":36.03,"y":27.682,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":37.886,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":38.361,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":39.289,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":40.217,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":40.691,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":41.598,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.073,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.547,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.022,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.475,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":44.403,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.331,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.806,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.734,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":47.209,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.137,"y":27.682,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":49.539,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":50.446,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":50.921,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.849,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":52.323,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.251,"y":27.682,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.107,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.561,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.035,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.963,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":57.438,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.366,"y":27.682,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.222,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.675,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.15,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.078,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.531,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.481,"y":27.682,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.337,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.79,"y":27.682,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.171,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.646,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.574,"y":27.682,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.43,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.905,"y":27.682,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":71.833,"y":27.682,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":72.761,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.938,"y":28.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":28.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":64.203,"y":28.432,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":65.152,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":65.646,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.121,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.595,"y":28.432,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":67.564,"y":28.432,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":68.533,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":69.007,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":69.481,"y":28.432,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.45,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.924,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.419,"y":28.432,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.893,"y":28.432,"w":0.8310000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.934,"y":29.183,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":51.328,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":51.802,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":52.277,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":52.771,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":53.72,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":54.194,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":54.689,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":55.637,"y":29.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":56.606,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":57.08,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":57.575,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":58.049,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":59.018,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":59.966,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":60.461,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":60.935,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":61.884,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":62.378,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":62.853,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":63.327,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":64.296,"y":29.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":65.265,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":65.739,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.213,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":67.182,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":67.656,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":68.151,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":68.625,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":69.573,"y":29.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.542,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.017,"y":29.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.985,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":72.46,"y":29.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":72.934,"y":29.183,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.922,"y":29.933,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":42.362,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.815,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.743,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":44.218,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.146,"y":29.933,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.549,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":47.477,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":47.951,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.879,"y":29.933,"w":1.3800000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.189,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.644,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":52.118,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.046,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.521,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.449,"y":29.933,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.305,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.78,"y":29.933,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.14,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.616,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":59.565,"y":29.933,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.421,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.875,"y":29.933,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.256,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.731,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.659,"y":29.933,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.515,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.989,"y":29.933,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.917,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.845,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.298,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.773,"y":29.933,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":71.629,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":72.082,"y":29.933,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.917,"y":30.683,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.865,"y":30.683,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":65.378,"y":30.682,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.327,"y":30.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.801,"y":30.682,"w":1.9390000000000005,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.141,"y":30.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.616,"y":30.682,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.585,"y":30.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":72.06,"y":30.682,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.914,"y":31.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.863,"y":31.433,"w":1.106,"clr":-1,"A":"left","R":[{"T":"0.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":37.225,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":37.678,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":38.153,"y":31.432000000000002,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":40.937,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":41.39,"y":31.432000000000002,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.246,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.721,"y":31.432000000000002,"w":1.3800000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.051,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.505,"y":31.432000000000002,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.339,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.794,"y":31.432000000000002,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":49.722,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":50.176,"y":31.432000000000002,"w":1.9320000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.413,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.868,"y":31.432000000000002,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.796,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.249,"y":31.432000000000002,"w":1.9320000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.465,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.942,"y":31.432000000000002,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":59.848,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.323,"y":31.432000000000002,"w":1.9320000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.539,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.015,"y":31.432000000000002,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.922,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.396,"y":31.432000000000002,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.18,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.634,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.087,"y":31.432000000000002,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.015,"y":31.432000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.468,"y":31.432000000000002,"w":1.3800000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.938,"y":32.183,"w":1.6600000000000001,"clr":-1,"A":"left","R":[{"T":"11.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":42.341,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.815,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.743,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":44.218,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.146,"y":32.182,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.527,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":47.002,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":47.93,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.405,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":49.333,"y":32.182,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.189,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.642,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":52.117,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.045,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.519,"y":32.182,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.447,"y":32.182,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.303,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.757,"y":32.182,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.138,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.613,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":59.541,"y":32.182,"w":1.1560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.397,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.871,"y":32.182,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.253,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.727,"y":32.182,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.655,"y":32.182,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.511,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.965,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.914,"y":32.182,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.842,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.317,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.77,"y":32.182,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":71.626,"y":32.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":72.101,"y":32.182,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.937,"y":32.925,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":32.925,"w":1.106,"clr":-1,"A":"left","R":[{"T":"2.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.471,"y":32.925,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":66.947,"y":32.925,"w":1.9390000000000005,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.266,"y":32.925,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":70.742,"y":32.925,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":71.691,"y":32.925,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":72.165,"y":32.925,"w":0.554,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":33.675,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.865,"y":33.675,"w":1.106,"clr":-1,"A":"left","R":[{"T":"3.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":37.206,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":37.659,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":38.134,"y":33.675,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":40.918,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":41.371,"y":33.675,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.206,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.681,"y":33.675,"w":1.3800000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.99,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.465,"y":33.675,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.299,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.754,"y":33.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":49.682,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":50.135,"y":33.675,"w":1.9320000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.373,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.828,"y":33.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.756,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.209,"y":33.675,"w":1.9320000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.425,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.901,"y":33.675,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":59.808,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.283,"y":33.675,"w":1.9320000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.499,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.974999999999994,"y":33.675,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.882,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.356,"y":33.675,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.14,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.594,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.047,"y":33.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.975,"y":33.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.428,"y":33.675,"w":1.3800000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.917,"y":34.425,"w":1.6600000000000001,"clr":-1,"A":"left","R":[{"T":"14.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":31.842,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":32.316,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":32.791,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":33.244,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":34.172,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":35.1,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":35.575,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":36.05,"y":34.425,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":37.906,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":38.359,"y":34.425,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":39.287,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":40.215,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":40.69,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":41.618,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.092,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.546,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.02,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":43.474,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":44.423,"y":34.425,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.33,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":45.804,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":46.732,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":47.207,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":48.135,"y":34.425,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":49.538,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":50.466,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":50.94,"y":34.425,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.847,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":52.322,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.271,"y":34.425,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.127,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.58,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.055,"y":34.425,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.962,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":57.436,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.364,"y":34.425,"w":1.1560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.242,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.695,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.148,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.076,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.551,"y":34.425,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.479,"y":34.425,"w":1.1560000000000001,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.335,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.81,"y":34.425,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.191,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.666,"y":34.425,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.594,"y":34.425,"w":1.104,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.45,"y":34.425,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.903,"y":34.425,"w":1.3800000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.917,"y":35.175,"w":1.6600000000000001,"clr":-1,"A":"left","R":[{"T":"15.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":72.183,"y":35.175,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":72.657,"y":35.175,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.915,"y":35.925,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.863,"y":35.925,"w":1.106,"clr":-1,"A":"left","R":[{"T":"6.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":51.767,"y":36.675,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.17,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":53.623,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.098,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":54.551,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.004,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":55.479,"y":36.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":56.407,"y":36.675,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":57.81,"y":36.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":58.738,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":59.212,"y":36.675,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.119,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":60.594,"y":36.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":61.522,"y":36.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.471,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":62.924,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.399,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":63.852000000000004,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.327,"y":36.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.255,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":65.73,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.183,"y":36.675,"w":0.8280000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":67.586,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.039,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.514,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":68.967,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":69.442,"y":36.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.37,"y":36.675,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":70.823,"y":36.675,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":71.772,"y":36.675,"w":0.552,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":95.388,"y":24.69,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.337,"y":24.69,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":25.44,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":25.44,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":26.19,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":26.19,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":26.94,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":26.94,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":27.683,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":27.683,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":28.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":28.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":29.182,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.502,"y":29.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":29.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.502,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":30.683,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.502,"y":30.683,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.387,"y":31.424999999999997,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.336,"y":31.424999999999997,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"0.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.385,"y":32.183,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.334,"y":32.183,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.384,"y":32.926,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.332,"y":32.926,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.382,"y":33.676,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.33,"y":33.676,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.38,"y":34.426,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.329,"y":34.426,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.379,"y":35.176,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.327,"y":35.176,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.388,"y":36.24,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.337,"y":36.24,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":48.219,"y":2.025,"w":4.914000000000001,"clr":-1,"A":"left","R":[{"T":"TAX%20YEAR","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.041,"y":7.275,"w":10.614000000000004,"clr":-1,"A":"left","R":[{"T":"Lump%20Sum%20Distributions","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.02,"y":8.4,"w":46.46399999999997,"clr":-1,"A":"left","R":[{"T":"This%20form%20applies%2C%20in%20the%20case%20of%20someone%20who%20is%20not%20self-employed%2Conly%20when%20the%20distribution%20was%20made%3A","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.015,"y":9.382,"w":13.587000000000005,"clr":-1,"A":"left","R":[{"T":"-Due%20to%20the%20participant's%20death%3B","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.032,"y":10.035,"w":24.923000000000002,"clr":-1,"A":"left","R":[{"T":"-Due%20to%20the%20participant's%20separation%20from%20employment%3B%20or","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.928,"y":10.687,"w":19.79000000000001,"clr":-1,"A":"left","R":[{"T":"-After%20the%20participant%20had%20attained%20age%2059%201%2F2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":11.745,"w":41.184999999999974,"clr":-1,"A":"left","R":[{"T":"In%20the%20case%20of%20a%20self-employed%20person%2C%20this%20form%20applies%20only%20when%20the%20distribution%20was%20made%3A","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.02,"y":12.855,"w":13.587000000000005,"clr":-1,"A":"left","R":[{"T":"-Due%20to%20the%20participant's%20death%3B","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.037,"y":13.5,"w":19.79000000000001,"clr":-1,"A":"left","R":[{"T":"-After%20the%20participant%20had%20attained%20age%2059%201%2F2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.931,"y":14.16,"w":18.062,"clr":-1,"A":"left","R":[{"T":"-The%20participant%20was%20previously%20disabled.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.041,"y":15.254999999999999,"w":32.278,"clr":-1,"A":"left","R":[{"T":"THIS%20FORM%20DOES%20NOT%20APPLY%20WHEN%20YOUR%20DISTRIBUTION%20WAS%3A","S":-1,"TS":[0,13.96,1,0]}]},{"oc":"#221f1f","x":6,"y":16.222,"w":5.668000000000001,"clr":-1,"A":"left","R":[{"T":"-Rolled%20over%3B","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.041,"y":16.875,"w":47.74099999999996,"clr":-1,"A":"left","R":[{"T":"-An%20early%20distribution%20including%20an%20early%20distribution%20received%20for%20medical%2C%20education%20or%20housing%20exclusions%3B%20or","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":17.52,"w":34.73799999999999,"clr":-1,"A":"left","R":[{"T":"-Subject%20to%20the%20early%20withdrawal%20penalty%20on%20Line%2058%20of%20your%20Federal%20Form%201040.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.247,"y":18.48,"w":18.729000000000003,"clr":-1,"A":"left","R":[{"T":"LAST%20NAME(S)%20AS%20SHOWN%20ON%20RETURN","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":33.41,"y":18.48,"w":9.118,"clr":-1,"A":"left","R":[{"T":"YOUR%20FIRST%20NAME","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":55.602,"y":18.48,"w":16.591,"clr":-1,"A":"left","R":[{"T":"YOUR%20SOCIAL%20SECURITY%20NUMBER","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":55.603,"y":21.473,"w":26.31200000000002,"clr":-1,"A":"left","R":[{"T":"SPOUSE'S%20SOCIAL%20SECURITY%20NUMBER(IF%20APPLICABLE)","S":-1,"TS":[0,8.8636,0,0]}]},{"oc":"#221f1f","x":33.41,"y":21.473,"w":18.899000000000004,"clr":-1,"A":"left","R":[{"T":"SPOUSE'S%20FIRST%20NAME(IF%20APPLICABLE)","S":-1,"TS":[0,8.8636,0,0]}]},{"oc":"#221f1f","x":6.082,"y":21.473,"w":18.789,"clr":-1,"A":"left","R":[{"T":"SPOUSE'S%20LAST%20NAME%20(IF%20APPLICABLE)","S":-1,"TS":[0,8.8636,0,0]}]},{"oc":"#221f1f","x":9.542,"y":25.433,"w":33.903,"clr":-1,"A":"left","R":[{"T":"Enter%20ordinary%20income%20portion%20of%20distribution%20from%20Box%202a%20of%20Form%201099R.......","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.547,"y":26.183,"w":7.783,"clr":-1,"A":"left","R":[{"T":"Add%20Lines1%20and%202","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.546,"y":26.933,"w":24.511000000000003,"clr":-1,"A":"left","R":[{"T":"Death%20benefit%20exclusion%20allowed%20on%20Federal%20Form%204972.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.547,"y":27.682,"w":12.284000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%204%20from%20Line%203.","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.547,"y":28.433,"w":31.915999999999972,"clr":-1,"A":"left","R":[{"T":"Current%20actuarial%20value%20of%20annuity%20(if%20applicable%2C%20see%20Federal%20instructions)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.543,"y":29.183,"w":25.647999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20taxable%20amount%20of%20distribution.%20Add%20Lines%205%20and%206..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.531,"y":29.933,"w":19.119999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20of%20Line%207%20(Multiply%20Line%207%20by%20.10)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.382,"y":30.682,"w":34.00899999999999,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20tax%20on%20Line%208%20(use%20Tax%20Rate%20Schedule%20or%20Table%20for%20Form%20200)..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.482,"y":31.433,"w":16.43,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20Line%209%20by%20ten..","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.528,"y":32.183,"w":19.119999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20of%20Line%206%20(Multiply%20Line%206%20by%20.10)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.526,"y":32.925,"w":34.126999999999995,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20tax%20on%20Line%2011%20(use%20Tax%20Rate%20Schedule%20or%20Table%20for%20Form%20200)..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.485,"y":33.675,"w":16.435,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20Line%2012%20by%20ten","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.506,"y":34.425,"w":13.396000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2013%20from%20Line%2010.","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.487,"y":35.175,"w":37.46199999999999,"clr":-1,"A":"left","R":[{"T":"Divide%20Line%202%20by%20Line%203%20and%20enter%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20two%20places)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.482,"y":35.925,"w":37.84899999999998,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20ordinary%20income%20portion%20of%20distribution%20(Multiply%20Line%2014%20by%20decimal%20on%20Line%2015%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.544,"y":36.675,"w":24.512000000000004,"clr":-1,"A":"left","R":[{"T":"and%20enter%20on%20Form%20200-01%2C%20Line%207%2C%20or%20Form%20400%2C%20Line%209)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":18.23,"y":38.61,"w":31.227,"clr":-1,"A":"left","R":[{"T":"ATTACH%20FORM%20329%20AND%20FORM%204972%20TO%20FORM%20200%20OR%20FORM%20400","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":12.785,"y":44.798,"w":9.394000000000005,"clr":-1,"A":"left","R":[{"T":"REVISED%20%20%20%2009%2F20%2F13","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":213,"AM":1024,"x":6.284,"y":19.603,"w":24.583,"h":1.346,"TU":"Last Name(s) as Shown on Return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":214,"AM":1024,"x":33.611,"y":19.569,"w":19.492,"h":1.346,"TU":"Your First Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":215,"AM":1024,"x":55.633,"y":19.585,"w":22.487,"h":1.407,"TU":"YOUR SOCIAL SECURITY NUMBER"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":216,"AM":1024,"x":6.256,"y":22.623,"w":24.619,"h":1.421,"TU":"Spouse's Last"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":217,"AM":1024,"x":33.386,"y":22.591,"w":19.717,"h":1.428,"TU":"Spouse's First Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":218,"AM":1024,"x":55.857,"y":22.52,"w":22.262,"h":1.469,"TU":"SPOUSE'S SOCIAL SECURITY NUMBER (IF APPLICABLE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":219,"AM":0,"x":74.289,"y":24.734,"w":20.852,"h":0.833,"TU":"Enter capital gain portion of distribution from Box 3 of Form 1099R"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":220,"AM":0,"x":74.2,"y":25.505,"w":21.109,"h":0.833,"TU":"Enter ordinary income portion of distribution from Box 2a of Form 1099R"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":221,"AM":1024,"x":74.24,"y":26.32,"w":21.159,"h":0.833,"TU":"Add Lines 1 and 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":222,"AM":0,"x":74.234,"y":27.016,"w":20.93,"h":0.833,"TU":"Death benefit exclusion allowed on Federal Form 4972"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":223,"AM":1024,"x":74.286,"y":27.75,"w":21.09,"h":0.833,"TU":"Subtract Line 4 from Line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":224,"AM":0,"x":74.209,"y":28.462,"w":21.091,"h":0.833,"TU":"Current actuarial value of annuity (if applicable, see Federal instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":225,"AM":1024,"x":74.254,"y":29.276,"w":21.034,"h":0.833,"TU":"Total taxable amount of distribution. Add Lines 5 and 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":226,"AM":1024,"x":74.254,"y":29.999,"w":20.959,"h":0.833,"TU":"Enter 10% of Line 6 ( Multiply Line 6 by .10)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":227,"AM":0,"x":74.258,"y":30.747,"w":21.062,"h":0.833,"TU":"Compute the tax on Line 8 (use Tax Rate Schedule or Table for Form 200"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":228,"AM":1024,"x":74.208,"y":31.497,"w":21.041,"h":0.833,"TU":"10. Multiply the amount on Line 9 by ten"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":229,"AM":1024,"x":74.105,"y":32.24,"w":21.108,"h":0.833,"TU":"11. Enter 10% of Line 6 ( Multiply Line 6 by .10)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":230,"AM":0,"x":74.283,"y":33.032,"w":20.991,"h":0.833,"TU":"12. Compute the tax on Line 11 (use Tax Rate Schedule or Table for Form 200"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":231,"AM":1024,"x":74.167,"y":33.739,"w":21.215,"h":0.833,"TU":"13. Multiply the amount on Line 12 by ten"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":232,"AM":1024,"x":74.254,"y":34.473,"w":21.034,"h":0.833,"TU":"14. Subtract Line 13 from Line 10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":233,"AM":1024,"x":74.254,"y":35.232,"w":21.108,"h":0.833,"TU":"15. Divide Line 2 by Line 3 and enter result as a decimal ( round to at least two places)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":234,"AM":1024,"x":74.188,"y":36.126,"w":21.166,"h":1.336,"TU":"and enter on Form 200-01, Line 7, or Form 400, Line 9"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/de/form/DE329T.content.txt b/test/data/de/form/DE329T.content.txt new file mode 100755 index 00000000..f1a2fb42 --- /dev/null +++ b/test/data/de/form/DE329T.content.txt @@ -0,0 +1,464 @@ +Enter capital gain portion of distribution from Box 3 of Form 1099R +DELAWARE +F +ORM + +3 +2 +9 + + + + +2013 + +Page + +1 + +SPECIAL + +TAX + +COMPUTATION + +FOR + +LUMP + +SUM +DISTRIBUTION + +FROM + +Q +U +A +L +IFIED + +RETIREMENT + +PLAN + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +. + + + + + + + + + + + + +2 +. + + + + + + + + + + + + + +3 +. + + + + + +.. + +4 +. + + + + + + + + +5 +. + + + + + + +6 +. + + + + + + + + + + +7. + + + + + + + + + + + +8. + + + + + + + + + + +9 +. + + + + + + + + + + + + + + + + +1 +0. + + + + + + + + + +11. + + + + + + + + + + +1 +2. + + + + + + + + + + + + + + + +1 +3. + + + + + + + + + +14. + + + + + + +15. + + + + + + + + + + + + + + + + + + + +1 +6. + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +. + +2 +. + +3 +. + +4 +. + +5 +. + +6 +. + +7 +. + +8 +. + +9 +. + +1 +0. + +1 +1. + +1 +2. + +1 +3. + +1 +4. + +1 +5. + + +1 +6. + + + + + + + + + + + + + + + + + + + + + + +TAX YEAR +Lump Sum Distributions +This form applies, in the case of someone who is not self-employed,only when the distribution was made: +-Due to the participant's death; +-Due to the participant's separation from employment; or +-After the participant had attained age 59 1/2 +In the case of a self-employed person, this form applies only when the distribution was made: +-Due to the participant's death; +-After the participant had attained age 59 1/2 +-The participant was previously disabled. +THIS FORM DOES NOT APPLY WHEN YOUR DISTRIBUTION WAS: +-Rolled over; +-An early distribution including an early distribution received for medical, education or housing exclusions; or +-Subject to the early withdrawal penalty on Line 58 of your Federal Form 1040. +LAST NAME(S) AS SHOWN ON RETURN +YOUR FIRST NAME +YOUR SOCIAL SECURITY NUMBER +SPOUSE'S SOCIAL SECURITY NUMBER(IF APPLICABLE) +SPOUSE'S FIRST NAME(IF APPLICABLE) +SPOUSE'S LAST NAME (IF APPLICABLE) +Add Lines 1 and 2 +Death benefit exclusion allowed on Federal Form 4972. +Subtract Line 4 from Line 3. +Current actuarial value of annuity (if applicable, see Federal instructions) +Enter 10% of Line 7 (Multiply Line 7 by .10) +Enter 10% of Line 6 (Multiply Line 6 by .10) +Multiply the amount on Line 12 by ten +Subtract Line 13 from Line 10. +Divide Line 2 by Line 3 and enter result as a decimal (rounded to at least two places) +Tax on ordinary income portion of distribution (Multiply Line 14 by decimal on Line 15 +and enter on Form 200-01, Line 7, or Form 400, Line 9) +ATTACH FORM 329 AND FORM 4972 TO FORM 200 OR FORM 400 +REVISED 09/20/13 +............................. +Enter ordinary income portion of distribution from Box 2a of Form 1099R +................ +.......................................................................................................... +.............................................. +......................................................................................... +................. +Compute the tax on Line 11 (use Tax Rate Schedule or Table for Form 200) +.............. +........................................................................... +Total taxable amount of distribution. Add Lines 5 and 6 +......................................... +Compute the tax on Line 8 (use Tax Rate Schedule or Table for Form 200) +.................. +......................................................................................... +.................................................................. +Multiply the amount on Line 9 by ten. +........................................................................... +................................................................. +............................................. +----------------Page (0) Break---------------- diff --git a/test/data/de/form/DE329T.fields.json b/test/data/de/form/DE329T.fields.json new file mode 100755 index 00000000..5619a489 --- /dev/null +++ b/test/data/de/form/DE329T.fields.json @@ -0,0 +1 @@ +[{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"alpha","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/de/form/DE329T.json b/test/data/de/form/DE329T.json new file mode 100755 index 00000000..2bd8d3a9 --- /dev/null +++ b/test/data/de/form/DE329T.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"TY13_329_1","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":21.02,"y":6.881,"w":1.5,"l":61.884},{"oc":"#221f1f","x":74.241,"y":25.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":24.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":25.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":27.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":26.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":28.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":27.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":28.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":30.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":29.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":31.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":30.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":31.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":33.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":32.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":34.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":33.747,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":34.497,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.247,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":37.484,"w":0.75,"l":21.038},{"oc":"#221f1f","x":74.241,"y":35.997,"w":0.75,"l":21.038},{"oc":"#221f1f","x":6.188,"y":20.978,"w":0.75,"l":24.759},{"oc":"#221f1f","x":6.188,"y":19.459,"w":0.75,"l":24.759},{"oc":"#221f1f","x":33.37,"y":20.978,"w":0.75,"l":19.8},{"oc":"#221f1f","x":33.37,"y":19.459,"w":0.75,"l":19.8},{"oc":"#221f1f","x":33.413,"y":23.988,"w":0.75,"l":19.8},{"oc":"#221f1f","x":33.413,"y":22.456,"w":0.75,"l":19.8},{"oc":"#221f1f","x":6.188,"y":24.041,"w":0.75,"l":24.759},{"oc":"#221f1f","x":6.188,"y":22.469,"w":0.75,"l":24.759},{"oc":"#221f1f","x":55.748,"y":19.453,"w":0.75,"l":22.284},{"oc":"#221f1f","x":55.748,"y":20.984,"w":0.75,"l":22.284},{"oc":"#221f1f","x":55.748,"y":22.431,"w":0.75,"l":22.284},{"oc":"#221f1f","x":55.748,"y":24.025,"w":0.75,"l":22.284}],"VLines":[{"oc":"#221f1f","x":74.241,"y":24.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":24.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":25.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":25.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":26.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":26.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":26.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":26.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":27.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":27.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":28.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":28.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":29.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":29.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":29.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":29.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":30.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":30.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":31.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":31.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":32.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":32.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":32.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":32.997,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":33.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":33.747,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":34.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":34.497,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":35.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.279,"y":35.247,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.241,"y":35.997,"w":0.75,"l":1.488},{"oc":"#221f1f","x":95.279,"y":35.997,"w":0.75,"l":1.488},{"oc":"#221f1f","x":6.188,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":30.946,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":33.37,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":53.17,"y":19.459,"w":0.75,"l":1.519},{"oc":"#221f1f","x":33.413,"y":22.456,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":22.456,"w":0.75,"l":1.531},{"oc":"#221f1f","x":6.188,"y":22.469,"w":0.75,"l":1.572},{"oc":"#221f1f","x":30.946,"y":22.469,"w":0.75,"l":1.572},{"oc":"#221f1f","x":78.031,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.748,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.556,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.081,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.606,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.131,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.648,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.173,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.698,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.223,"y":19.453,"w":0.75,"l":1.531},{"oc":"#221f1f","x":78.031,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":55.748,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":75.556,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":73.081,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":70.606,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":68.131,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":65.648,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":63.173,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":60.698,"y":22.431,"w":0.75,"l":1.594},{"oc":"#221f1f","x":58.223,"y":22.431,"w":0.75,"l":1.594}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":9.545,"y":24.682,"w":29.346000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20capital%20gain%20portion%20of%20distribution%20from%20Box%203%20of%20Form%201099R","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":12.228,"y":2.13,"w":5.865999999999999,"clr":-1,"A":"left","R":[{"T":"DELAWARE%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":12.228,"y":3.075,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":13.693,"y":3.075,"w":2.3209999999999997,"clr":-1,"A":"left","R":[{"T":"ORM","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":19.921,"y":3.075,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":21.263,"y":3.075,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":22.602,"y":3.075,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":48.631,"y":3.293,"w":2.228,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,24.04,1,0]}]},{"oc":"#221f1f","x":84.106,"y":2.235,"w":2.374,"clr":-1,"A":"left","R":[{"T":"Page","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":90.479,"y":2.235,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":25.076,"y":4.725,"w":4.3340000000000005,"clr":-1,"A":"left","R":[{"T":"SPECIAL","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":36.068,"y":4.725,"w":1.91,"clr":-1,"A":"left","R":[{"T":"TAX","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":41.493,"y":4.725,"w":7.4,"clr":-1,"A":"left","R":[{"T":"COMPUTATION","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":59.891,"y":4.725,"w":2.099,"clr":-1,"A":"left","R":[{"T":"FOR","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":65.583,"y":4.725,"w":2.817,"clr":-1,"A":"left","R":[{"T":"LUMP","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":73.008,"y":4.725,"w":2.448,"clr":-1,"A":"left","R":[{"T":"SUM%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":20.95,"y":5.858,"w":7.063,"clr":-1,"A":"left","R":[{"T":"DISTRIBUTION","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":38.585,"y":5.858,"w":2.892,"clr":-1,"A":"left","R":[{"T":"FROM","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":46.237,"y":5.858,"w":0.778,"clr":-1,"A":"left","R":[{"T":"Q","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":48.115,"y":5.858,"w":0.722,"clr":-1,"A":"left","R":[{"T":"U","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":49.867,"y":5.858,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":51.558,"y":5.858,"w":0.611,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":53.023,"y":5.858,"w":2.576,"clr":-1,"A":"left","R":[{"T":"IFIED","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":59.748,"y":5.858,"w":6.46,"clr":-1,"A":"left","R":[{"T":"RETIREMENT","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":75.919,"y":5.858,"w":2.638,"clr":-1,"A":"left","R":[{"T":"PLAN","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":5.937,"y":24.682,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.885,"y":24.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.934,"y":25.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.882,"y":25.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.183,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.887,"y":26.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":22.953,"y":26.183,"w":0.5780000000000001,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":26.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.938,"y":27.682,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":27.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.938,"y":28.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":28.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.934,"y":29.183,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.923,"y":29.933,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":30.683,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.865,"y":30.683,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.914,"y":31.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.863,"y":31.433,"w":1.106,"clr":-1,"A":"left","R":[{"T":"0.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.938,"y":32.183,"w":1.6600000000000001,"clr":-1,"A":"left","R":[{"T":"11.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.937,"y":32.925,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.886,"y":32.925,"w":1.106,"clr":-1,"A":"left","R":[{"T":"2.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":33.675,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.865,"y":33.675,"w":1.106,"clr":-1,"A":"left","R":[{"T":"3.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":34.425,"w":1.6600000000000001,"clr":-1,"A":"left","R":[{"T":"14.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":35.175,"w":1.6600000000000001,"clr":-1,"A":"left","R":[{"T":"15.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.915,"y":35.925,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.863,"y":35.925,"w":1.106,"clr":-1,"A":"left","R":[{"T":"6.%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.388,"y":24.69,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.337,"y":24.69,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":25.44,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":25.44,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":26.19,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":26.19,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":26.94,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":26.94,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":27.683,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":27.683,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":28.433,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.501,"y":28.433,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":29.182,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.502,"y":29.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":29.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.502,"y":29.933,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.553,"y":30.683,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.502,"y":30.683,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.387,"y":31.424999999999997,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.336,"y":31.424999999999997,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"0.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.385,"y":32.183,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.334,"y":32.183,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.384,"y":32.926,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.332,"y":32.926,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.382,"y":33.676,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.33,"y":33.676,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.38,"y":34.426,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.329,"y":34.426,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.379,"y":35.176,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.327,"y":35.176,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":95.388,"y":36.24,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":96.337,"y":36.24,"w":0.8300000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":48.219,"y":2.025,"w":4.914000000000001,"clr":-1,"A":"left","R":[{"T":"TAX%20YEAR","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.041,"y":7.275,"w":10.614000000000004,"clr":-1,"A":"left","R":[{"T":"Lump%20Sum%20Distributions","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.02,"y":8.4,"w":46.46399999999997,"clr":-1,"A":"left","R":[{"T":"This%20form%20applies%2C%20in%20the%20case%20of%20someone%20who%20is%20not%20self-employed%2Conly%20when%20the%20distribution%20was%20made%3A","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.015,"y":9.382,"w":13.587000000000005,"clr":-1,"A":"left","R":[{"T":"-Due%20to%20the%20participant's%20death%3B","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.032,"y":10.035,"w":24.923000000000002,"clr":-1,"A":"left","R":[{"T":"-Due%20to%20the%20participant's%20separation%20from%20employment%3B%20or","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.928,"y":10.687,"w":19.79000000000001,"clr":-1,"A":"left","R":[{"T":"-After%20the%20participant%20had%20attained%20age%2059%201%2F2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":11.745,"w":41.184999999999974,"clr":-1,"A":"left","R":[{"T":"In%20the%20case%20of%20a%20self-employed%20person%2C%20this%20form%20applies%20only%20when%20the%20distribution%20was%20made%3A","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.02,"y":12.855,"w":13.587000000000005,"clr":-1,"A":"left","R":[{"T":"-Due%20to%20the%20participant's%20death%3B","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.037,"y":13.5,"w":19.79000000000001,"clr":-1,"A":"left","R":[{"T":"-After%20the%20participant%20had%20attained%20age%2059%201%2F2","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.931,"y":14.16,"w":18.062,"clr":-1,"A":"left","R":[{"T":"-The%20participant%20was%20previously%20disabled.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.041,"y":15.254999999999999,"w":32.278,"clr":-1,"A":"left","R":[{"T":"THIS%20FORM%20DOES%20NOT%20APPLY%20WHEN%20YOUR%20DISTRIBUTION%20WAS%3A","S":-1,"TS":[0,13.96,1,0]}]},{"oc":"#221f1f","x":6,"y":16.222,"w":5.668000000000001,"clr":-1,"A":"left","R":[{"T":"-Rolled%20over%3B","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.041,"y":16.875,"w":47.74099999999996,"clr":-1,"A":"left","R":[{"T":"-An%20early%20distribution%20including%20an%20early%20distribution%20received%20for%20medical%2C%20education%20or%20housing%20exclusions%3B%20or","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":5.917,"y":17.52,"w":34.73799999999999,"clr":-1,"A":"left","R":[{"T":"-Subject%20to%20the%20early%20withdrawal%20penalty%20on%20Line%2058%20of%20your%20Federal%20Form%201040.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":6.247,"y":18.48,"w":18.729000000000003,"clr":-1,"A":"left","R":[{"T":"LAST%20NAME(S)%20AS%20SHOWN%20ON%20RETURN","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":33.41,"y":18.48,"w":9.118,"clr":-1,"A":"left","R":[{"T":"YOUR%20FIRST%20NAME","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":55.602,"y":18.48,"w":16.591,"clr":-1,"A":"left","R":[{"T":"YOUR%20SOCIAL%20SECURITY%20NUMBER","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":55.603,"y":21.473,"w":26.31200000000002,"clr":-1,"A":"left","R":[{"T":"SPOUSE'S%20SOCIAL%20SECURITY%20NUMBER(IF%20APPLICABLE)","S":-1,"TS":[0,8.8636,0,0]}]},{"oc":"#221f1f","x":33.41,"y":21.473,"w":18.899000000000004,"clr":-1,"A":"left","R":[{"T":"SPOUSE'S%20FIRST%20NAME(IF%20APPLICABLE)","S":-1,"TS":[0,8.8636,0,0]}]},{"oc":"#221f1f","x":6.082,"y":21.473,"w":18.789,"clr":-1,"A":"left","R":[{"T":"SPOUSE'S%20LAST%20NAME%20(IF%20APPLICABLE)","S":-1,"TS":[0,8.8636,0,0]}]},{"oc":"#221f1f","x":9.547,"y":26.183,"w":8.061,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%201%20and%202","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.546,"y":26.933,"w":24.511000000000003,"clr":-1,"A":"left","R":[{"T":"Death%20benefit%20exclusion%20allowed%20on%20Federal%20Form%204972.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.547,"y":27.682,"w":12.562000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%204%20from%20Line%203.%20","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.547,"y":28.433,"w":31.915999999999972,"clr":-1,"A":"left","R":[{"T":"Current%20actuarial%20value%20of%20annuity%20(if%20applicable%2C%20see%20Federal%20instructions)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.531,"y":29.933,"w":19.119999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20of%20Line%207%20(Multiply%20Line%207%20by%20.10)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.528,"y":32.183,"w":19.119999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20of%20Line%206%20(Multiply%20Line%206%20by%20.10)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.485,"y":33.675,"w":16.435,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20Line%2012%20by%20ten","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.506,"y":34.425,"w":13.396000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2013%20from%20Line%2010.","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.487,"y":35.175,"w":37.46199999999999,"clr":-1,"A":"left","R":[{"T":"Divide%20Line%202%20by%20Line%203%20and%20enter%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20two%20places)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.482,"y":35.925,"w":37.84899999999998,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20ordinary%20income%20portion%20of%20distribution%20(Multiply%20Line%2014%20by%20decimal%20on%20Line%2015%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.544,"y":36.675,"w":24.512000000000004,"clr":-1,"A":"left","R":[{"T":"and%20enter%20on%20Form%20200-01%2C%20Line%207%2C%20or%20Form%20400%2C%20Line%209)","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":18.23,"y":38.61,"w":31.227,"clr":-1,"A":"left","R":[{"T":"ATTACH%20FORM%20329%20AND%20FORM%204972%20TO%20FORM%20200%20OR%20FORM%20400","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":12.785,"y":44.798,"w":9.394000000000005,"clr":-1,"A":"left","R":[{"T":"REVISED%20%20%20%2009%2F20%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":59.498,"y":24.682,"w":8.033000000000003,"clr":-1,"A":"left","R":[{"T":".............................","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.542,"y":25.433,"w":31.957000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20ordinary%20income%20portion%20of%20distribution%20from%20Box%202a%20of%20Form%201099R","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":65.194,"y":25.433,"w":4.448,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":24.311,"y":26.183,"w":29.467999999999957,"clr":-1,"A":"left","R":[{"T":"..........................................................................................................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":51.725,"y":26.932,"w":12.695999999999993,"clr":-1,"A":"left","R":[{"T":"..............................................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":30.417,"y":27.682,"w":25.72100000000004,"clr":-1,"A":"left","R":[{"T":".........................................................................................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.633,"y":28.432,"w":4.709000000000001,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.526,"y":32.925,"w":33.571,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20tax%20on%20Line%2011%20(use%20Tax%20Rate%20Schedule%20or%20Table%20for%20Form%20200)","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":66.213,"y":32.925,"w":3.8920000000000003,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":38.993,"y":33.675,"w":20.69999999999999,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.543,"y":29.183,"w":25.059999999999995,"clr":-1,"A":"left","R":[{"T":"Total%20taxable%20amount%20of%20distribution.%20Add%20Lines%205%20and%206","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":52.196,"y":29.183,"w":12.054000000000013,"clr":-1,"A":"left","R":[{"T":".........................................","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":9.382,"y":30.682,"w":33.440999999999995,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20tax%20on%20Line%208%20(use%20Tax%20Rate%20Schedule%20or%20Table%20for%20Form%20200)","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":64.342,"y":30.682,"w":5.111999999999998,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":32.357,"y":34.425,"w":24.74199999999998,"clr":-1,"A":"left","R":[{"T":".........................................................................................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":42.62,"y":29.933,"w":18.34800000000001,"clr":-1,"A":"left","R":[{"T":"..................................................................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":9.482,"y":31.433,"w":16.157,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20Line%209%20by%20ten.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":37.63,"y":31.433,"w":20.474999999999984,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#221f1f","x":42.942,"y":32.182,"w":18.07000000000001,"clr":-1,"A":"left","R":[{"T":".................................................................","S":-1,"TS":[0,12.5562,0,0]}]},{"oc":"#221f1f","x":52.541,"y":36.675,"w":12.419999999999993,"clr":-1,"A":"left","R":[{"T":".............................................","S":-1,"TS":[0,12.5562,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":235,"AM":1024,"x":6.284,"y":19.603,"w":24.583,"h":1.346,"TU":"Last Name(s) as Shown on Return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":236,"AM":1024,"x":33.611,"y":19.569,"w":19.492,"h":1.346,"TU":"Your First Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":237,"AM":1024,"x":55.633,"y":19.585,"w":22.487,"h":1.407,"TU":"YOUR SOCIAL SECURITY NUMBER"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":238,"AM":1024,"x":6.256,"y":22.599,"w":24.619,"h":1.421,"TU":"Spouse's last name (if applicable)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":239,"AM":1024,"x":33.386,"y":22.591,"w":19.717,"h":1.428,"TU":"Spouse's First Name (If applicable)."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":240,"AM":1024,"x":55.857,"y":22.543,"w":22.262,"h":1.469,"TU":"Spouse's social security number (if applicable)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":241,"AM":0,"x":74.289,"y":24.734,"w":20.852,"h":0.833,"TU":"Line 1. Enter capital gain portion of distribution from Box 3 of Form 1099R."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":242,"AM":0,"x":74.2,"y":25.505,"w":21.109,"h":0.833,"TU":"Line 2. Enter ordinary income portion of distribution from Box 2a of Form 1099R."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":243,"AM":1024,"x":74.24,"y":26.32,"w":21.159,"h":0.833,"TU":"Add Lines 1 and 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":244,"AM":0,"x":74.234,"y":27.016,"w":20.93,"h":0.833,"TU":"Line 4. Death benefit exclusion allowed on Federal Form 4972."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":245,"AM":1024,"x":74.286,"y":27.75,"w":21.09,"h":0.833,"TU":"Subtract Line 4 from Line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":246,"AM":0,"x":74.209,"y":28.462,"w":21.091,"h":0.833,"TU":"Line 6. Current actuarial value of annuity (if applicable, see Federal instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":247,"AM":1024,"x":74.254,"y":29.276,"w":21.034,"h":0.833,"TU":"Total taxable amount of distribution. Add Lines 5 and 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":248,"AM":1024,"x":74.254,"y":29.999,"w":20.959,"h":0.833,"TU":"Enter 10% of Line 6 ( Multiply Line 6 by .10)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":249,"AM":0,"x":74.193,"y":30.77,"w":21.062,"h":0.833,"TU":"Line 9. Compute the tax on Line 8 (use Tax Rate Schedule or Table for Form 200)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":250,"AM":1024,"x":74.208,"y":31.497,"w":21.041,"h":0.833,"TU":"10. Multiply the amount on Line 9 by ten"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":251,"AM":1024,"x":74.105,"y":32.24,"w":21.108,"h":0.833,"TU":"11. Enter 10% of Line 6 ( Multiply Line 6 by .10)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":252,"AM":0,"x":74.283,"y":33.032,"w":20.991,"h":0.833,"TU":"Line 12. Compute the tax on Line 11 (use Tax Rate Schedule or Table for Form 200)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":253,"AM":1024,"x":74.167,"y":33.739,"w":21.215,"h":0.833,"TU":"13. Multiply the amount on Line 12 by ten"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":254,"AM":1024,"x":74.254,"y":34.473,"w":21.034,"h":0.833,"TU":"14. Subtract Line 13 from Line 10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":255,"AM":1024,"x":74.254,"y":35.232,"w":21.108,"h":0.833,"TU":"15. Divide Line 2 by Line 3 and enter result as a decimal ( round to at least two places)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":256,"AM":1024,"x":74.188,"y":36.126,"w":21.166,"h":1.336,"TU":"and enter on Form 200-01, Line 7, or Form 400, Line 9"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/de/form/VOUCHEF.content.txt b/test/data/de/form/VOUCHEF.content.txt new file mode 100755 index 00000000..9d6054a3 --- /dev/null +++ b/test/data/de/form/VOUCHEF.content.txt @@ -0,0 +1,523 @@ +FORM + + + + + + + + + +A + +payment voucher is a statement you send with your payment when + + + + + + +your payment. + + + + + + + + + + + + + + + + + + +- + + + + + + + + + + + + + + +- + + + + + + + + + + + +money order. + + +- + + + + + + + + + + + + + + + + + +previously received return. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Box 1. + + + +shown first + +on your return and the second SSN in box 4. + +- + + + + +- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Box 2. + + + +below: + + +Name + +John Brown +Joan + +A. + +Lee +John O’Neill +Juan +DeJesus +Jean McCarthy + +Pedro + +T +orres +- +Lopez + + +Enter + +BROW +LEE +ONEI +DEJE +MCCA +T +ORR + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Box 3. + + + + + + +past the due date, + + + + + + +Box 4. + +If + +you are filing a joint or married filing separate return, enter + +the spouse’s SSN. + + + + + + + + + + + + +Box 5. + +Enter your name(s) and address. + + + + + + + +DETACH HEREAND MAIL + +BOTTOM + +PORTION + +WITH + +YOUR PAYMENT + + + + + + + +DELAWARE + +2013 + +DE + +200 +- +V + +Electronic +Filer +Payment +Voucher + +DO + +NOT + +WRITE + +OR + +STAPLE + +IN + +THIS + +AREA + + +1. + +Enter + +your + +social + +security + +number + + + + + +4. + +If + +a + +joint + +return, + +enter + +your + +spouse +s + +social +security + +number + + +2. + +Enter + +the + +first + +four + +letters + +of + +your + +last +name + + + + +5. + +Name(s) + + + + +Address + + + +City + + + + + + + + + + + + + + +$ + + + + + + + +State + + +ZIP + +Code + + + + + +(Revised 09/18/13) + +What is a Payment Voucher and Why Should I Use It? +you have a balance due on your electronically filed tax return. It is like +the part of other bills –utilities, credit cards, etc. –that you send back with +This payment voucher is intended for use only when you have filed your +Delaware return electronically and have a balance due to the State of +Delaware. By submitting a voucher with the payment, the Delaware +Division of Revenue is better able to match up your payment with your +If you have a balance due on your 2013 Form 200 -01 or 200 -02, +please send the payment voucher with your payment. By sending it, +you will help save tax dollars since we will be able to process your +payment more accurately and efficiently. We strongly encourage you +to use Form DE -200V, but it is not required. +How Do I Fill in the Payment Voucher? +Enter your Social Security Number. Enter in box 1 the SSN +Enter the first four letters of your last name. See examples +Enter the amount of your payment. +How Do I Make My Payment? +Make your check or money order payable to the “Delaware +Division of Revenue”. Don’t send cash. +Make sure your name and address appear on your check or +Write your SSN, daytime telephone number, and “2013 Form +200-01” or “2013 Form 200-02” on your check or money order. +Detach the payment voucher at the perforation. +Mail your payment and payment voucher to the address below. +Mail To: +Delaware Division of Revenue +P.O. Box 830 +Wilmington, DE 19899-0830 +NOTE: DO NOT attach your return or DE 8453 to your payment or the +payment voucher. By sending a copy of your return or the DE 8453 +with your payment or payment voucher, you will be duplicating your +previously filed electronic return and/or its paper representation. +When is My Payment Due? +on or before April 30, 2014, +Payment of Individual Income Taxes is due +for all taxpayers filing on a calendar year basis. All others must pay their +taxes by the last day of the fourth month following the close of their tax +year. Non-calendar year filers may not file electronically and therefore +will not have use for this form. +Although extensions are some times granted tofile income tax returns +there is no extension of time for payment of tax. +Please review your Individual Income Tax Return Instructions for +additional information on substantial penalties and interest for failure to +pay (in whole or in part) the tax liability due by the due date. +3. Enter the amount of the payment you are making. +----------------Page (0) Break---------------- diff --git a/test/data/de/form/VOUCHEF.fields.json b/test/data/de/form/VOUCHEF.fields.json new file mode 100755 index 00000000..99f1af8d --- /dev/null +++ b/test/data/de/form/VOUCHEF.fields.json @@ -0,0 +1 @@ +[{"id":"L1","type":"ssn","calc":true,"value":""},{"id":"L2","type":"alpha","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"L4","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/de/form/VOUCHEF.json b/test/data/de/form/VOUCHEF.json new file mode 100755 index 00000000..405e03a4 --- /dev/null +++ b/test/data/de/form/VOUCHEF.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"TY04_200V.pmd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.188,"y":27.659,"w":6.1499999999999995,"l":92.813},{"oc":"#221f1f","x":6.188,"y":2.284,"w":6.1499999999999995,"l":92.813},{"dsh":1,"oc":"#221f1f","x":9.29,"y":29.144,"w":3,"l":87.725},{"x":6.445,"y":32.122,"w":1.5,"l":92.684},{"x":6.445,"y":45.034,"w":1.5,"l":92.684},{"x":6.677,"y":36.962,"w":1.5,"l":92.606},{"x":6.677,"y":39.994,"w":1.5,"l":92.606},{"x":36.937,"y":42.047,"w":1.5,"l":62.381},{"x":36.937,"y":43.609,"w":1.5,"l":62.381}],"VLines":[{"oc":"#221f1f","x":63.748,"y":37,"w":1.6680000000000001,"l":2.922},{"oc":"#221f1f","x":37.073,"y":39.653,"w":1.6665,"l":0.628},{"oc":"#221f1f","x":37.073,"y":38.775,"w":1.6665,"l":0.625},{"oc":"#221f1f","x":37.073,"y":37.897,"w":1.6665,"l":0.625},{"oc":"#221f1f","x":37.073,"y":44.047,"w":1.6665,"l":0.628},{"oc":"#221f1f","x":37.073,"y":43.169,"w":1.6665,"l":0.628},{"oc":"#221f1f","x":37.073,"y":42.291,"w":1.6665,"l":0.628},{"oc":"#221f1f","x":37.073,"y":41.413,"w":1.6665,"l":0.625},{"oc":"#221f1f","x":37.073,"y":40.531,"w":1.6665,"l":0.628},{"oc":"#221f1f","x":37.073,"y":37.016,"w":1.6665,"l":0.628},{"x":99.129,"y":32.122,"w":1.5,"l":12.913},{"x":6.445,"y":32.122,"w":1.5,"l":12.913},{"x":52.98,"y":32.116,"w":1.5,"l":4.769}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":57.492,"y":38.594,"w":6.188,"h":1.375,"clr":-1},{"oc":"#221f1f","x":37.091,"y":38.581,"w":2.905,"h":1.353,"clr":-1},{"oc":"#221f1f","x":37.005,"y":38.563,"w":3.077,"h":1.391,"clr":-1},{"oc":"#221f1f","x":39.909,"y":38.587,"w":0.172,"h":1.313,"clr":-1},{"oc":"#221f1f","x":6.377,"y":43.575,"w":30.663,"h":1.453,"clr":-1},{"oc":"#221f1f","x":12.354,"y":18.54,"w":3.754,"h":0.052,"clr":-1},{"oc":"#221f1f","x":30.773,"y":18.54,"w":3.506,"h":0.052,"clr":-1}],"Texts":[{"oc":"#221f1f","x":7.093,"y":33.42,"w":2.94,"clr":-1,"A":"left","R":[{"T":"FORM","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.937,"y":3.668,"w":0.667,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":7.259,"y":3.668,"w":29.595,"clr":-1,"A":"left","R":[{"T":"payment%20voucher%20is%20a%20statement%20you%20send%20with%20your%20payment%20when%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.942,"y":5.46,"w":6.284000000000001,"clr":-1,"A":"left","R":[{"T":"your%20payment.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":3.668,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":5.318,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.435,"y":5.917,"w":5.843,"clr":-1,"A":"left","R":[{"T":"money%20order.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":6.967,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.941,"y":8.91,"w":11.618000000000002,"clr":-1,"A":"left","R":[{"T":"previously%20received%20return.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":14.595,"w":4.073,"clr":-1,"A":"left","R":[{"T":"Box%201.%20%20%20%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.125,"y":15.234,"w":4.739,"clr":-1,"A":"left","R":[{"T":"shown%20%EF%AC%81rst","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":19.076,"y":15.203,"w":19.561000000000003,"clr":-1,"A":"left","R":[{"T":"on%20your%20return%20and%20the%20second%20SSN%20in%20box%204.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":8.52,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":9.57,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.938,"y":16.215,"w":2.977,"clr":-1,"A":"left","R":[{"T":"Box%202.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.126,"y":16.815,"w":2.866,"clr":-1,"A":"left","R":[{"T":"below%3A","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.104,"y":17.738,"w":2.699,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.042,"y":18.345,"w":5.514,"clr":-1,"A":"left","R":[{"T":"John%20Brown%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.042,"y":18.945,"w":2.152,"clr":-1,"A":"left","R":[{"T":"Joan","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":15.342,"y":18.945,"w":0.925,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":17.013,"y":18.945,"w":1.9300000000000002,"clr":-1,"A":"left","R":[{"T":"Lee%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.042,"y":19.537,"w":5.6160000000000005,"clr":-1,"A":"left","R":[{"T":"John%20O%E2%80%99Neill%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.042,"y":20.137,"w":2.426,"clr":-1,"A":"left","R":[{"T":"Juan%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":15.425,"y":20.137,"w":4.232,"clr":-1,"A":"left","R":[{"T":"DeJesus%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.042,"y":20.737,"w":6.671999999999999,"clr":-1,"A":"left","R":[{"T":"Jean%20McCarthy","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.042,"y":21.338,"w":2.708,"clr":-1,"A":"left","R":[{"T":"Pedro","S":-1,"TS":[0,10.236,0,0]}]},{"oc":"#221f1f","x":15.673,"y":21.338,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,9.432,0,0]}]},{"oc":"#221f1f","x":16.209,"y":21.338,"w":2.318,"clr":-1,"A":"left","R":[{"T":"orres","S":-1,"TS":[0,10.236,0,0]}]},{"oc":"#221f1f","x":19.097,"y":21.338,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,10.236,0,0]}]},{"oc":"#221f1f","x":19.509,"y":21.338,"w":2.7640000000000002,"clr":-1,"A":"left","R":[{"T":"Lopez","S":-1,"TS":[0,10.236,0,0]}]},{"oc":"#221f1f","x":30.523,"y":17.738,"w":2.531,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":30.523,"y":18.345,"w":3.2289999999999996,"clr":-1,"A":"left","R":[{"T":"BROW%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.523,"y":18.937,"w":2.188,"clr":-1,"A":"left","R":[{"T":"LEE%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.523,"y":19.537,"w":2.6930000000000005,"clr":-1,"A":"left","R":[{"T":"ONEI%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.523,"y":20.137,"w":2.859,"clr":-1,"A":"left","R":[{"T":"DEJE%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.523,"y":20.737,"w":3.192,"clr":-1,"A":"left","R":[{"T":"MCCA%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.523,"y":21.337,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":31.348,"y":21.337,"w":2.2039999999999997,"clr":-1,"A":"left","R":[{"T":"ORR","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":22.297,"w":2.977,"clr":-1,"A":"left","R":[{"T":"Box%203.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":55.561,"y":22.905,"w":8.208,"clr":-1,"A":"left","R":[{"T":"past%20the%20due%20date%2C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.94,"y":23.355,"w":2.977,"clr":-1,"A":"left","R":[{"T":"Box%204.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.128,"y":23.355,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":"If","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":13.283,"y":23.355,"w":25.425000000000008,"clr":-1,"A":"left","R":[{"T":"you%20are%20filing%20a%20joint%20or%20married%20filing%20separate%20return%2C%20enter","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.128,"y":23.955,"w":8.158000000000001,"clr":-1,"A":"left","R":[{"T":"the%20spouse%E2%80%99s%20SSN.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.942,"y":25.155,"w":2.977,"clr":-1,"A":"left","R":[{"T":"Box%205.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.965,"y":25.155,"w":14.493000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20name(s)%20and%20address.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":35.308,"y":27.975,"w":12.072,"clr":-1,"A":"left","R":[{"T":"DETACH%20HEREAND%20MAIL","S":52,"TS":[0,9,1,0]}]},{"oc":"#221f1f","x":48.054,"y":27.975,"w":4.345,"clr":-1,"A":"left","R":[{"T":"BOTTOM","S":52,"TS":[0,9,1,0]}]},{"oc":"#221f1f","x":52.777,"y":27.975,"w":4.57,"clr":-1,"A":"left","R":[{"T":"PORTION","S":52,"TS":[0,9,1,0]}]},{"oc":"#221f1f","x":57.706,"y":27.975,"w":2.4829999999999997,"clr":-1,"A":"left","R":[{"T":"WITH","S":52,"TS":[0,9,1,0]}]},{"oc":"#221f1f","x":60.614,"y":27.975,"w":7.9719999999999995,"clr":-1,"A":"left","R":[{"T":"YOUR%20PAYMENT","S":52,"TS":[0,9,1,0]}]},{"oc":"#221f1f","x":7.093,"y":32.52,"w":5.601000000000001,"clr":-1,"A":"left","R":[{"T":"DELAWARE","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":25.243,"y":34.26,"w":2.2520000000000002,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,25.96,1,0]}]},{"oc":"#221f1f","x":7.072,"y":35.032,"w":1.389,"clr":-1,"A":"left","R":[{"T":"DE","S":-1,"TS":[0,19.96,1,0]}]},{"oc":"#221f1f","x":11.691,"y":35.032,"w":1.6920000000000002,"clr":-1,"A":"left","R":[{"T":"200","S":-1,"TS":[0,19.96,1,0]}]},{"oc":"#221f1f","x":16.333,"y":35.032,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,19.96,1,0]}]},{"oc":"#221f1f","x":17.241,"y":35.032,"w":0.667,"clr":-1,"A":"left","R":[{"T":"V","S":-1,"TS":[0,19.96,1,0]}]},{"oc":"#221f1f","x":38.937,"y":32.565,"w":5.101999999999999,"clr":-1,"A":"left","R":[{"T":"Electronic%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":42.239,"y":33.607,"w":2.414,"clr":-1,"A":"left","R":[{"T":"Filer%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":39.743,"y":34.658,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Payment%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":39.949,"y":35.708,"w":4.036,"clr":-1,"A":"left","R":[{"T":"Voucher","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":63.378,"y":32.01,"w":1.504,"clr":-1,"A":"left","R":[{"T":"DO","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.523,"y":32.01,"w":2.105,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":68.39,"y":32.01,"w":3.1270000000000002,"clr":-1,"A":"left","R":[{"T":"WRITE","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":72.68,"y":32.01,"w":1.496,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":74.825,"y":32.01,"w":3.865,"clr":-1,"A":"left","R":[{"T":"STAPLE","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.837,"y":32.01,"w":0.962,"clr":-1,"A":"left","R":[{"T":"IN","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":81.343,"y":32.01,"w":2.202,"clr":-1,"A":"left","R":[{"T":"THIS","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":84.478,"y":32.01,"w":2.7430000000000003,"clr":-1,"A":"left","R":[{"T":"AREA","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":7.237,"y":36.72,"w":1.109,"clr":-1,"A":"left","R":[{"T":"1.%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":8.804,"y":36.72,"w":2.295,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":11.794,"y":36.72,"w":1.8690000000000002,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":14.31,"y":36.72,"w":2.5500000000000003,"clr":-1,"A":"left","R":[{"T":"social","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":17.528,"y":36.72,"w":3.4450000000000003,"clr":-1,"A":"left","R":[{"T":"security","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":21.715,"y":36.72,"w":3.3840000000000003,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":7.113,"y":39.623,"w":1.109,"clr":-1,"A":"left","R":[{"T":"4.%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":8.68,"y":39.623,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":9.609,"y":39.623,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":10.538,"y":39.623,"w":1.9290000000000003,"clr":-1,"A":"left","R":[{"T":"joint","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":12.929,"y":39.623,"w":2.7569999999999997,"clr":-1,"A":"left","R":[{"T":"return%2C","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":16.498,"y":39.623,"w":2.184,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":19.384,"y":39.623,"w":1.8690000000000002,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":21.879,"y":39.623,"w":3.224,"clr":-1,"A":"left","R":[{"T":"spouse","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":25.716,"y":39.623,"w":0.5,"clr":-1,"A":"left","R":[{"T":"s","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":26.644,"y":39.623,"w":2.834,"clr":-1,"A":"left","R":[{"T":"social%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":8.679,"y":40.11,"w":3.4450000000000003,"clr":-1,"A":"left","R":[{"T":"security","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":12.887,"y":40.11,"w":3.3840000000000003,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":37.535,"y":36.713,"w":1.109,"clr":-1,"A":"left","R":[{"T":"2.%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":39.102,"y":36.713,"w":2.295,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":42.092,"y":36.713,"w":1.3330000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":43.969,"y":36.713,"w":1.611,"clr":-1,"A":"left","R":[{"T":"first","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":46.114,"y":36.713,"w":1.6470000000000002,"clr":-1,"A":"left","R":[{"T":"four","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":48.362,"y":36.713,"w":2.7230000000000003,"clr":-1,"A":"left","R":[{"T":"letters","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":51.765,"y":36.713,"w":0.8320000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":53.003,"y":36.713,"w":1.8690000000000002,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":55.498,"y":36.713,"w":1.834,"clr":-1,"A":"left","R":[{"T":"last%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":39.101,"y":37.2,"w":2.4970000000000003,"clr":-1,"A":"left","R":[{"T":"name","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":37.618,"y":39.63,"w":1.109,"clr":-1,"A":"left","R":[{"T":"5.%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":39.185,"y":39.63,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Name(s)","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":39.268,"y":41.722,"w":3.6610000000000005,"clr":-1,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":39.247,"y":43.238,"w":1.722,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":64.327,"y":38.903,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":71.607,"y":43.238,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":79.445,"y":43.238,"w":1.556,"clr":-1,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":81.508,"y":43.238,"w":2.386,"clr":-1,"A":"left","R":[{"T":"Code","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":11.919,"y":46.282,"w":8.376,"clr":-1,"A":"left","R":[{"T":"(Revised%2009%2F18%2F13)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.938,"y":2.61,"w":25.545000000000005,"clr":-1,"A":"left","R":[{"T":"What%20is%20a%20Payment%20Voucher%20and%20Why%20Should%20I%20Use%20It%3F","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.939,"y":4.267,"w":30.496,"clr":-1,"A":"left","R":[{"T":"you%20have%20a%20balance%20due%20on%20your%20electronically%20filed%20tax%20return.%20It%20is%20like","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.942,"y":4.867,"w":32.083999999999996,"clr":-1,"A":"left","R":[{"T":"the%20part%20of%20other%20bills%20%E2%80%93utilities%2C%20credit%20cards%2C%20etc.%20%E2%80%93that%20you%20send%20back%20with%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":6.51,"w":31.730999999999995,"clr":-1,"A":"left","R":[{"T":"This%20payment%20voucher%20is%20intended%20for%20use%20only%20when%20you%20have%20filed%20your%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.939,"y":7.11,"w":30.625000000000004,"clr":-1,"A":"left","R":[{"T":"Delaware%20return%20electronically%20and%20have%20a%20balance%20due%20to%20the%20State%20of%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.710000000000001,"w":29.478000000000005,"clr":-1,"A":"left","R":[{"T":"Delaware.%20By%20submitting%20a%20voucher%20with%20the%20payment%2C%20the%20Delaware","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.942,"y":8.31,"w":31.431000000000004,"clr":-1,"A":"left","R":[{"T":"Division%20of%20Revenue%20is%20better%20able%20to%20match%20up%20your%20payment%20with%20your%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":9.96,"w":29.239,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20a%20balance%20due%20on%20your%202013%20Form%20200%20-01%20or%20200%20-02%2C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":10.553,"w":29.973000000000003,"clr":-1,"A":"left","R":[{"T":"please%20send%20the%20payment%20voucher%20with%20your%20payment.%20By%20sending%20it%2C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":11.153,"w":28.971999999999998,"clr":-1,"A":"left","R":[{"T":"you%20will%20help%20save%20tax%20dollars%20since%20we%20will%20be%20able%20to%20process%20your%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":11.753,"w":29.351000000000003,"clr":-1,"A":"left","R":[{"T":"payment%20more%20accurately%20and%20efficiently.%20We%20strongly%20encourage%20you%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.937,"y":12.353,"w":19.834000000000007,"clr":-1,"A":"left","R":[{"T":"to%20use%20Form%20DE%20-200V%2C%20but%20it%20is%20not%20required.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":5.938,"y":13.545,"w":17.875000000000004,"clr":-1,"A":"left","R":[{"T":"How%20Do%20I%20Fill%20in%20the%20Payment%20Voucher%3F","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.126,"y":14.595,"w":25.838000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20Social%20Security%20Number.%20Enter%20in%20box%201%20the%20SSN","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.126,"y":16.222,"w":25.823,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20first%20four%20letters%20of%20your%20last%20name.%20See%20examples%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.126,"y":22.298,"w":15.265,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20your%20payment.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":2.61,"w":13.505999999999998,"clr":-1,"A":"left","R":[{"T":"How%20Do%20I%20Make%20My%20Payment%3F","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.335,"y":3.668,"w":2.5170000000000003,"clr":-1,"A":"left","R":[{"T":"Make","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":63.448,"y":3.668,"w":2.0170000000000003,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.847,"y":3.668,"w":2.702,"clr":-1,"A":"left","R":[{"T":"check","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":71.211,"y":3.668,"w":0.925,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.122,"y":3.668,"w":3.091,"clr":-1,"A":"left","R":[{"T":"money","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.024,"y":3.668,"w":2.4240000000000004,"clr":-1,"A":"left","R":[{"T":"order","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":82.027,"y":3.668,"w":3.628,"clr":-1,"A":"left","R":[{"T":"payable","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":87.675,"y":3.668,"w":0.8700000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.49,"y":3.668,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":92.12,"y":3.668,"w":4.718,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CDelaware","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.442,"y":4.267,"w":17.351000000000003,"clr":-1,"A":"left","R":[{"T":"Division%20of%20Revenue%E2%80%9D.%20%20Don%E2%80%99t%20send%20cash.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.335,"y":5.318,"w":2.4570000000000003,"clr":-1,"A":"left","R":[{"T":"Make","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":63.323,"y":5.318,"w":1.9570000000000003,"clr":-1,"A":"left","R":[{"T":"sure","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.62,"y":5.318,"w":1.957,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.937,"y":5.318,"w":2.5130000000000003,"clr":-1,"A":"left","R":[{"T":"name","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":74.023,"y":5.318,"w":1.677,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":76.954,"y":5.318,"w":3.5780000000000003,"clr":-1,"A":"left","R":[{"T":"address","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":82.527,"y":5.318,"w":3.1310000000000002,"clr":-1,"A":"left","R":[{"T":"appear","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":87.467,"y":5.318,"w":1.118,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.605,"y":5.318,"w":1.957,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":92.901,"y":5.318,"w":2.6270000000000002,"clr":-1,"A":"left","R":[{"T":"check","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":97.16,"y":5.318,"w":1.1760000000000002,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.335,"y":6.968,"w":26.955000000000005,"clr":-1,"A":"left","R":[{"T":"Write%20your%20SSN%2C%20daytime%20telephone%20number%2C%20and%20%E2%80%9C2013%20Form","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.443,"y":7.5600000000000005,"w":27.933999999999997,"clr":-1,"A":"left","R":[{"T":"200-01%E2%80%9D%20%20or%20%20%E2%80%9C2013%20Form%20200-02%E2%80%9D%20on%20your%20check%20or%20money%20order.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.171,"y":8.52,"w":20.716000000000005,"clr":-1,"A":"left","R":[{"T":"Detach%20the%20payment%20voucher%20at%20the%20perforation.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.171,"y":9.57,"w":27.336,"clr":-1,"A":"left","R":[{"T":"Mail%20your%20payment%20and%20payment%20voucher%20tothe%20address%20below.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":61.749,"y":10.613,"w":3.626,"clr":-1,"A":"left","R":[{"T":"Mail%20To%3A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":61.749,"y":11.22,"w":9.033000000000001,"clr":-1,"A":"left","R":[{"T":"Delaware%20Division%20of","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":74.643,"y":11.22,"w":3.974,"clr":-1,"A":"left","R":[{"T":"Revenue","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":61.667,"y":11.82,"w":5.483,"clr":-1,"A":"left","R":[{"T":"P.O.Box%20830","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":61.667,"y":12.42,"w":12.404999999999998,"clr":-1,"A":"left","R":[{"T":"Wilmington%2C%20DE%2019899-0830","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":13.725,"w":32.027000000000015,"clr":-1,"A":"left","R":[{"T":"NOTE%3A%20DO%20NOT%20attach%20your%20return%20or%20DE%208453%20to%20your%20payment%20or%20the%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":55.561,"y":14.325,"w":32.07399999999998,"clr":-1,"A":"left","R":[{"T":"payment%20voucher.%20By%20sending%20a%20copy%20of%20your%20return%20or%20the%20DE%208453%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":55.56,"y":14.925,"w":32.34,"clr":-1,"A":"left","R":[{"T":"with%20your%20payment%20or%20payment%20voucher%2C%20you%20will%20be%20duplicating%20your%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":55.561,"y":15.524999999999999,"w":30.853999999999978,"clr":-1,"A":"left","R":[{"T":"previously%20filed%20electronic%20return%20and%2For%20its%20paper%20representation.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":55.561,"y":17.813,"w":12.794000000000002,"clr":-1,"A":"left","R":[{"T":"When%20is%20My%20Payment%20Due%3F","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.288,"y":18.863,"w":12.709999999999996,"clr":-1,"A":"left","R":[{"T":"on%20or%20before%20%20April%2030%2C%202014%2C","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":55.561,"y":18.863,"w":18.490000000000002,"clr":-1,"A":"left","R":[{"T":"Payment%20of%20Individual%20Income%20Taxes%20is%20due","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":55.562,"y":19.478,"w":31.815999999999995,"clr":-1,"A":"left","R":[{"T":"for%20all%20taxpayers%20filing%20on%20a%20calendar%20year%20basis.%20All%20others%20must%20pay%20their%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.562,"y":20.07,"w":31.461000000000013,"clr":-1,"A":"left","R":[{"T":"taxes%20by%20the%20last%20day%20of%20the%20fourth%20month%20following%20the%20close%20of%20their%20tax%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.559,"y":20.67,"w":30.775,"clr":-1,"A":"left","R":[{"T":"year.%20Non-calendar%20year%20filers%20may%20not%20file%20electronically%20and%20therefore%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.555,"y":21.27,"w":13.099000000000004,"clr":-1,"A":"left","R":[{"T":"will%20not%20have%20use%20for%20this%20form.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.561,"y":22.313,"w":30.682000000000002,"clr":-1,"A":"left","R":[{"T":"Although%20extensions%20are%20some%20times%20granted%20tofile%20income%20tax%20returns%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.966,"y":22.905,"w":22.587000000000003,"clr":-1,"A":"left","R":[{"T":"there%20is%20no%20extension%20of%20time%20for%20payment%20of%20tax.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":55.561,"y":23.963,"w":30.534000000000006,"clr":-1,"A":"left","R":[{"T":"Please%20review%20your%20Individual%20Income%20Tax%20Return%20Instructions%20for%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.565,"y":24.562,"w":30.719000000000005,"clr":-1,"A":"left","R":[{"T":"additional%20information%20on%20substantial%20penalties%20and%20interest%20forfailure%20to","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.565,"y":25.162,"w":25.872000000000003,"clr":-1,"A":"left","R":[{"T":"pay%20(in%20whole%20or%20in%20part)%20the%20taxliability%20due%20by%20the%20due%20date.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.574,"y":36.72,"w":23.017999999999994,"clr":-1,"A":"left","R":[{"T":"3.%20Enter%20the%20amount%20of%20the%20payment%20you%20are%20making.","S":-1,"TS":[0,9.48,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":257,"AM":1024,"x":7.562,"y":38.619,"w":28.252,"h":1.292,"TU":"1. Enter your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":258,"AM":1024,"x":40.389,"y":38.674,"w":16.947,"h":1.21,"TU":"2. Enter the first four letters of your last name"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":259,"AM":0,"x":66.937,"y":38.6,"w":16.498,"h":1.292,"TU":"3. Enter the amount of the payment you are making"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":260,"AM":1024,"x":39.619,"y":40.454,"w":29.075,"h":0.833,"TU":"Your First Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":261,"AM":1024,"x":69.763,"y":40.535,"w":27.503,"h":0.833,"TU":"Your Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":262,"AM":1024,"x":39.552,"y":41.39,"w":29.075,"h":0.833,"TU":"Spouse's First Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":263,"AM":1024,"x":69.8,"y":41.376,"w":27.503,"h":0.833,"TU":"Spouse's Last Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":264,"AM":1024,"x":7.511,"y":42.218,"w":28.252,"h":1.292,"TU":"enter your spouse's social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":265,"AM":1024,"x":39.321,"y":42.742,"w":57.749,"h":0.833,"TU":"Enter your address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":266,"AM":1024,"x":39.299,"y":44.178,"w":21.14,"h":0.833,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":267,"AM":1024,"x":71.498,"y":44.115,"w":6.765,"h":0.885,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":268,"AM":1024,"x":79.999,"y":44.128,"w":9.61,"h":0.885,"TU":"ZIP Code"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/de/formset.json b/test/data/de/formset.json new file mode 100755 index 00000000..cc283131 --- /dev/null +++ b/test/data/de/formset.json @@ -0,0 +1,18 @@ +{ + "formset": { + "id": "S2013DED", + "version": "0.1.1", + "agency": "de", + "main": "DE200_01", + "forms": [ + {"id": "DE200_01", "name":"Form 200-01: Delaware Individual Resident Income Tax Return", "mc": false, "max": 1, "parent": null, "inst":"de_ins_DE200-01", "cid":"200_01"}, + {"id": "DE201P3", "name":"2013 Delaware Resident Schedule", "mc": false, "max": 1, "parent": null, + "inst":"de_ins_DE200-01", "cid":"200_01_SchIIR"}, + {"id": "DE329T", "name":"Delaware Form 329: Special Tax Computation for Lump Sum Distribution from Qualified Retirement Plan - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"de_ins_DE200-01", "cid":"329T"}, + {"id": "DE329S", "name":"Delaware Form 329: Special Tax Computation for Lump Sum Distribution from Qualified Retirement Plan - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"de_ins_DE200-01", "cid":"329"}, + {"id": "VOUCHEF", "name":"Delaware Form DE 200-V: Electronic Filer Payment Voucher", "mc": false, "max": 1, "parent": null, "inst":"de_ins_DEVOUCHEF", "cid":"200V"} + ] + } +} \ No newline at end of file diff --git a/test/data/de/inst/de_ins_DE200-01.pdf b/test/data/de/inst/de_ins_DE200-01.pdf new file mode 100755 index 00000000..803ffe17 Binary files /dev/null and b/test/data/de/inst/de_ins_DE200-01.pdf differ diff --git a/test/data/de/pageset.json b/test/data/de/pageset.json new file mode 100755 index 00000000..505d582e --- /dev/null +++ b/test/data/de/pageset.json @@ -0,0 +1,78 @@ +{ + "headerData": { + "valueLabel": [ + { + "href": "#/de/faqs", + "label": "Help", + "target": "_blank", + "styleClass": "formImage", + "icon": "../img/questionFrame.png" + }, + { + "href": "http://revenue.delaware.gov/locations.shtml", + "label": "Contact DE Tax", + "target": "_blank", + "styleClass": "formImage" + }, + { + "href": "#/de/login", + "label": "Sign In / Create An Account", + "styleClass": "login", + "icon": "../img/logout.png" + } + ] + }, + "gatewayData": { + "stateTaxUrl":"http://revenue.delaware.gov/", + "eFileLinkUrl":"http://www.revenue.delaware.gov/pitfiling/residents.shtml", + "faqFooter":"View more of your state-specific FAQs", + "howItWorksList": {}, + "noteList": { + "item1": "This program does not support prior-year returns, part-year, non-resident or amended returns." + } + }, + + "landingData": { + "formNumber":"200-01", + "makeSureList": {}, + "tipsList": { + "item1":"Complete your federal return first. You will need the Federal Adjusted Gross Income (AGI) from your federal return to begin your state return." + }, + "beforeList": { + "item1":"Make sure the Federal Adjusted Gross Income (AGI) agrees with your federal return.", + "item2":"Enter your exemption.", + "item3":"Enter your standard or itemized deductions." + } + }, + + "loginData": { + "signInHelpLink":"http://revenue.delaware.gov/information/faqs_fillable.shtml" + }, + + "recoveryData": { + "forgotAnswerLink":"http://revenue.delaware.gov/information/faqs_fillable.shtml" + }, + + "homeHeaderData": { + "href": "http://revenue.delaware.gov/information/faqs_fillable.shtml" + }, + + "efileData": { + "efRefundLink":"https://dorweb.revenue.delaware.gov/refinq/", + "efRequiredInfo":"Social Security number and amount of your expected refund", + "efPaymentDueDate":"April 30, 2014", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + + "commonData": { + "state":"Delaware", + "stateAbbr":"DE", + "departmentName":"Delaware Division of Revenue", + "siteName": "Delaware State Fillable Forms", + "url": "https://www.statefillableforms.com/de", + "currentTaxYear": "2013" + + } + +} \ No newline at end of file diff --git a/test/data/ef/efset.json b/test/data/ef/efset.json new file mode 100755 index 00000000..41fde6ae --- /dev/null +++ b/test/data/ef/efset.json @@ -0,0 +1,26 @@ +{ + "formset" :{ + "id": "S2013USFDD", + "version": "0.1", + "agency": "ef", + "main": "EFINFO", + "forms": [ + {"id": "EFINFO","name":"Required Information for Electronic Filing", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_"}, + {"id": "EFINDEZ","name":"Required Information for Electronic Filing", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_nd"}, + {"id": "EFIDCEZ","name":"Required Information for Electronic Filing", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_dc"}, + {"id": "EFIF","name":"Required Information for Electronic Filing", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_fd"}, + {"id": "EFIFA","name":"Required Information for Electronic Filing", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_fd"}, + {"id": "EFIFEZ","name":"Required Information for Electronic Filing", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_fd"}, + {"id": "FW2", "name":"W-2 - Wage and Tax Statement", "mc": true, "max": 50, "parent": null, "inst":"ef_ins_w2", "cid": "W2"}, + {"id": "FW2G", "name":"W-2G - Certain Gambling Winnings", "mc": true, "max": 30, "parent": null, "inst":"ef_ins_w2g", "cid": "W2G"}, + {"id": "F1099D", "name":"1099-DIV - Dividends and Distributions", "mc": true, "max": 50, "parent": null, "inst":"ef_ins_1099div", "cid": "1099DIV_Wks"}, + {"id": "F1099G", "name":"1099-G - Certain Government Payments", "mc": true, "max": 10, "parent": null, "inst":"ef_ins_1099g", "cid": "1099G_Wks"}, + {"id": "F1099I", "name":"1099-INT - Interest Income", "mc": true, "max": 50, "parent": null, "inst":"ef_ins_1099int", "cid": "1099INT_Wks"}, + {"id": "F99MPER", "name":"1099-MISC - Miscellaneous Income", "mc": true, "max": 100, "parent": null, "inst":"ef_ins_1099misc", "cid": "1099MISC_Wks"}, + {"id": "F1099R", "name":"1099-R - Pension/IRA Distributions", "mc": true, "max": 20, "parent": null, "inst":"ef_ins_1099r", "cid": "1099R_Wks"}, + {"id": "A1040EZ", "name":"1040EZ - Individual Income Tax Return for Single and Joint Filers With No Dependents", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_1040ez", "attach": "1", "cid": "1040EZ"}, + {"id": "A1040A", "name":"1040A - U.S. Individual Income Tax Return", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_1040a", "attach": "1", "cid": "1040A"}, + {"id": "A1040", "name":"1040 - U.S. Individual Income Tax Return", "mc": false, "max": 1, "parent": null, "inst":"ef_ins_1040", "attach": "1", "cid": "1040"} + ] + } +} \ No newline at end of file diff --git a/test/data/ef/form/A1040.content.txt b/test/data/ef/form/A1040.content.txt new file mode 100755 index 00000000..e76dfb4f --- /dev/null +++ b/test/data/ef/form/A1040.content.txt @@ -0,0 +1,639 @@ +Taxpayer's Date of Death +Form +1040 +Department of the Treasury—Internal Revenue Service +OMB No. 1545-0074 +(99) +IRS Use Only—Do not write or staple in this space. +U.S. Individual Income Tax Return +20 +13 +For the year Jan. 1–Dec. 31, 2013, or other tax year beginning +, 2013, ending +, 20 +See separate instructions. +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse’s social security number +c +Make sure the SSN(s) above +and on line 6c are correct. +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +City, town or post office. If you have a foreign address, also complete spaces below (see instructions). +Foreign country name +Foreign province/state/county +Foreign postal code +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 +Spouse +Filing Status +Check only one +box. +1 +Single +2 +Married filing jointly (even if only one had income) +3 +Married filing separately. Enter spouse’s SSN above +and full name here. +a +4 +Head of household (with qualifying person). (See instructions.) If +the qualifying person is a child but not your dependent, enter this +child’s name here. +a +5 +Qualifying widow(er) with dependent child +Exemptions +6a +Yourself. +If someone can claim you as a dependent, + do not +check box 6a +..... +b +Spouse +........................ +} +c +Dependents: +(1) + First name +Last name +(2) +Dependent’s + +social security number +(3) + Dependent’s + +relationship to +you +(4) + + +if child under age 17 +qualifying for child tax credit +(see instructions) +If more than four +dependents, see +instructions and +check here +a +d +Total number of exemptions claimed +................. +Boxes checked +on 6a and 6b +No. of children +on 6c who: +• +lived with you +• +did not live with +you due to divorce +or separation + +(see instructions) +Dependents on 6c +not entered above +Add numbers on +lines above +a +Income +Attach Form(s) +W-2 here. Also +attach Forms +W-2G and +1099-R if tax +was withheld. +If you did not +get a W-2, +see instructions. +7 +Wages, salaries, tips, etc. Attach Form(s) W-2 +............ +7 +8a Taxable +interest. Attach Schedule B if required +............ +8a +interest. +Do not +include on line 8a +. +. . +8b +Ordinary dividends. Attach Schedule B if required +........... +9a +b +Qualified dividends +........... +9b +10 +Taxable refunds, credits, or offsets of state and local income taxes +...... +10 +11 +Alimony received +..................... +11 +12 +Business income or (loss). Attach Schedule C or C-EZ +.......... +12 +13 +Capital gain or (loss). Attach Schedule D if required. If not required, check here +a +13 +14 +Other gains or (losses). Attach Form 4797 +.............. +14 +IRA distributions . +15a +b +Taxable amount . +. . +15b +Pensions and annuities +16a +b +Taxable amount +. +. . +16b +17 +Rental real estate, royalties, partnerships, S corporations, trusts, etc. Attach Schedule E +17 +18 +Farm income or (loss). Attach Schedule F +.............. +18 +19 +Unemployment compensation +................. +19 +Social security benefits +20a +b +Taxable amount +. +. . +20b +21 +Other income. List type and amount +21 +22 +Combine the amounts in the far right column for lines 7 through 21. This is your +total income + +a +22 +Adjusted +Gross +Income +23 +Educator expenses +.......... +23 +24 +Certain business expenses of reservists, performing artists, and +fee-basis government officials. Attach Form 2106 or 2106-EZ +24 +25 +Health savings account deduction. Attach Form 8889 +. +25 +26 +Moving expenses. Attach Form 3903 +...... +26 +27 +Deductible part of self-employment tax. Attach Schedule SE +. +27 +28 +Self-employed SEP, SIMPLE, and qualified plans +. +. +28 +29 +Self-employed health insurance deduction +.... +29 +30 +Penalty on early withdrawal of savings +...... +30 +Alimony paid +b +Recipient’s SSN + +a +31a +32 +IRA deduction +............. +32 +33 +Student loan interest deduction +........ +33 +34 +Tuition and fees. Attach Form 8917 +....... +34 +35 +Domestic production activities deduction. Attach Form 8903 +35 +36 +Add lines 23 through 35 +................... +36 +37 +Subtract line 36 from line 22. This is your +adjusted gross income + ..... + + +a +37 +For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 11320B +Form +1040 + (2013) +9a + +15a + +16a + +20a + +31a + +and SSN +First +Last +First +Last +b Tax-exempt +Spouse's Date of Death +S +tate +ZIP code +----------------Page (0) Break---------------- +Form 1040 (2013) +Page +2 +Tax and +Credits +38 +Amount from line 37 (adjusted gross income) +.............. +38 +39a +Check +if: +{ +You + were born before January 2, 1949, +Blind. +Spouse + was born before January 2, 1949, +Blind. +} +Total boxes +checked + +a +39a +b +If your spouse itemizes on a separate return or you were a dual-status alien, check here +a +39b +Standard +Deduction +for— +• People who +check any +box on line +39a or 39b +or +who can be +claimed as a +dependent, +see +instructions. +• All others: +Single or +Married filing +separately, +$6,100 +Married filing +jointly or +Qualifying +widow(er), +$12,200 +Head of +household, +$8,950 +(from Schedule A) +or +your +standard deduction +(see left margin) +. . +40 +41 +Subtract line 40 from line 38 +................... +41 + +If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions +42 +43 +Taxable income. +Subtract line 42 from line 41. If line 42 is more than line 41, enter -0- . . +43 +44 +Tax +Check if any from: +a +Form(s) 8814 +b +Form 4972 TP or SP +c +44 +45 +Alternative minimum tax +(see instructions). Attach Form 6251 +......... +45 +46 +Add lines 44 and 45 +..................... +a +46 +47 +Foreign tax credit. Attach Form 1116 if required +.... +47 +48 +Credit for child and dependent care expenses. Attach Form 2441 +48 +49 +Education credits from Form 8863, line 19 +..... +49 +50 +Retirement savings contributions credit. Attach Form 8880 +50 +51 +Child tax credit. Attach Schedule 8812, if required +... +51 +52 +Residential energy credits. Attach Form 5695 +.... +52 +53 +Other credits from Form: +a +3800 +b +8801 +c +53 +54 +Add lines 47 through 53. These are your +total credits +............ +54 +55 +Subtract line 54 from line 46. If line 54 is more than line 46, enter -0- +...... +a +55 +Other +Taxes +56 +Self-employment tax. Attach Schedule SE +............... +56 +57 +Unreported social security and Medicare tax from Form: +a +4137 +b +8919 . +. +57 +58 +Additional tax on IRAs, other qualified retirement plans, etc. Attach Form 5329 if required +. . +58 +59a +59a +b +59b +Household employment taxes from Schedule H +. . . . . . . . . . . . . . +First-time homebuyer credit repayment. Attach Form 5405 if required . . . . . . . . +60 +Taxes from: +a +Form 8959 +b +Form 8960 +c +Instructions; enter code(s) +60 +61 +Add lines 55 through 60. This is your +total tax +............. +a +61 +Payments +62 +Federal income tax withheld from Forms W-2 and 1099 +. . +62 +63 +2013 estimated tax payments and amount applied from 2012 return +63 +If you have a +qualifying +child, attach +Schedule EIC. +64a +Earned income credit (EIC) +.......... +64a +b +Nontaxable combat pay election +64b +65 +Additional child tax credit. Attach Schedule 8812 +. . . . . +65 +66 +American opportunity credit from Form 8863, line 8 +.... +66 +67 +Reserved . +. . . . . . . . . . . . . . . +67 +68 +Amount paid with request for extension to file +..... +68 +69 +Excess social security and tier 1 RRTA tax withheld + .... +69 +70 +Credit for federal tax on fuels. Attach Form 4136 +. . . . +70 +71 +Credits from Form: +a +2439 +b +Reserved +c +8885 +d +71 +72 +Add lines 62, 63, 64a, and 65 through 71. These are your +total payments +..... +a +72 +Refund +Direct deposit? +See +instructions. +73 +If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you +overpaid +73 +74a +Amount of line 73 you want +refunded to you. + If Form 8888 is attached, check here +. +a +74a +a +a +b +Routing number +a + +c +Type: +Checking + +Savings +d +Account number +75 +Amount of line 73 you want +applied to your 2014 estimated tax + +a +75 +Amount +You Owe +76 +Amount you owe. + Subtract line 72 from line 61. For details on how to pay, see instructions + +a +76 +77 +Estimated tax penalty (see instructions) +....... +77 +Third Party +Designee +Do you want to allow another person to discuss this return with the IRS (see instructions)? +Yes. +Complete below. +No +Designee’s +name +a +Phone +no. +a +Personal identification +number (PIN) +a +Sign +Here +Joint r +eturn? See +instructions. +Keep a copy for +your records. +Under penalties of perjury, I declare that I have examined this return and accompanying schedules and statements, and to the be +st of my knowledge and belief, +they are true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which prepar +er has any knowledge. +Your signature +Date +Your occupation +Daytime phone number +Spouse’s signature. If a joint return, +both +must sign. +F +Date +Spouse’s occupation +If the IRS sent you an Identity Protection +PIN, enter it +here (see inst.) +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer’s signature +Date +Check if +self-employed + PTIN +Firm’s name +a +Firm’s address +a +Firm's EIN +a +Phone no. +Form +1040 +(2013) +(see instructions). +40 Itemized +deductions +42 Exemptions. +City +State +ZIP +----------------Page (1) Break---------------- diff --git a/test/data/ef/form/A1040.fields.json b/test/data/ef/form/A1040.fields.json new file mode 100755 index 00000000..5d9f98c8 --- /dev/null +++ b/test/data/ef/form/A1040.fields.json @@ -0,0 +1 @@ +[{"id":"PECY","type":"box","calc":false,"value":""},{"id":"SECY","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"L6A","type":"box","calc":false,"value":""},{"id":"L6B","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_1_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_2_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_3_","type":"box","calc":false,"value":""},{"id":"DEPSX","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_4_","type":"box","calc":false,"value":""},{"id":"L13X","type":"box","calc":false,"value":""},{"id":"TPDOD","type":"date","calc":false,"value":""},{"id":"SPDOD","type":"date","calc":false,"value":""},{"id":"FY","type":"date","calc":false,"value":""},{"id":"FYE","type":"date","calc":false,"value":""},{"id":"FYEYR","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"MI","type":"mask","calc":true,"value":""},{"id":"LNAM","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SNAM","type":"alpha","calc":true,"value":""},{"id":"SMI","type":"mask","calc":true,"value":""},{"id":"SLNM","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"CNAM","type":"alpha","calc":false,"value":""},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"SPNM","type":"alpha","calc":false,"value":""},{"id":"SPLNM","type":"alpha","calc":false,"value":""},{"id":"SPFNR","type":"alpha","calc":false,"value":""},{"id":"SPLNR","type":"alpha","calc":false,"value":""},{"id":"N6AB","type":"number","calc":false,"value":""},{"id":"N6C1","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_1_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_2_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_2_","type":"alpha","calc":false,"value":""},{"id":"N6C2","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_3_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_3_","type":"alpha","calc":false,"value":""},{"id":"N6C3","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_4_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_4_","type":"alpha","calc":false,"value":""},{"id":"N6E","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"QUALDIVS","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"L16A","type":"number","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20AMOD","type":"number","calc":false,"value":""},{"id":"L20LSE","type":"alpha","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"OTHINC_L21DESC_1_","type":"alpha","calc":false,"value":""},{"id":"OTHINC_L21DAMT_1_","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"BUSEXP","type":"number","calc":false,"value":""},{"id":"HSA","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"A365_RSSN_1_","type":"ssn","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L32C","type":"number","calc":false,"value":""},{"id":"DPAD","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L35A1","type":"box","calc":false,"value":""},{"id":"L35A2","type":"box","calc":false,"value":""},{"id":"L35A3","type":"box","calc":false,"value":""},{"id":"L35A4","type":"box","calc":false,"value":""},{"id":"L35BB","type":"box","calc":false,"value":""},{"id":"L40BA","type":"box","calc":false,"value":""},{"id":"L40BB","type":"box","calc":false,"value":""},{"id":"BX962","type":"box","calc":false,"value":""},{"id":"L49BA","type":"box","calc":false,"value":""},{"id":"L49BC","type":"box","calc":false,"value":""},{"id":"L49BD","type":"box","calc":false,"value":""},{"id":"F4137BX","type":"box","calc":false,"value":""},{"id":"F8919BX","type":"box","calc":false,"value":""},{"id":"BX8959","type":"box","calc":false,"value":""},{"id":"BX8960","type":"box","calc":false,"value":""},{"id":"BXOTHTAX","type":"box","calc":false,"value":""},{"id":"L64BA","type":"box","calc":false,"value":""},{"id":"BX8885","type":"box","calc":true,"value":""},{"id":"L64FMX","type":"box","calc":false,"value":""},{"id":"F8888","type":"box","calc":false,"value":""},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCS"},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCC"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDY"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDN"},{"id":"PSEX","type":"box","calc":false,"value":""},{"id":"L34","type":"number","calc":false,"value":""},{"id":"N35A","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":false,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"L39","type":"number","calc":false,"value":""},{"id":"L40FM","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":false,"value":""},{"id":"L42","type":"number","calc":false,"value":""},{"id":"L43","type":"number","calc":false,"value":""},{"id":"L44","type":"number","calc":false,"value":""},{"id":"L46","type":"number","calc":false,"value":""},{"id":"RSCCRED","type":"number","calc":false,"value":""},{"id":"L47","type":"number","calc":false,"value":""},{"id":"RESENRGY","type":"number","calc":false,"value":""},{"id":"L49FM","type":"alpha","calc":false,"value":""},{"id":"L49","type":"number","calc":false,"value":""},{"id":"L50","type":"number","calc":false,"value":""},{"id":"L51","type":"number","calc":false,"value":""},{"id":"L52","type":"number","calc":false,"value":""},{"id":"L53","type":"number","calc":false,"value":""},{"id":"L54","type":"number","calc":false,"value":""},{"id":"L56","type":"number","calc":false,"value":""},{"id":"FTHCR","type":"number","calc":false,"value":""},{"id":"L57T","type":"alpha","calc":false,"value":""},{"id":"L57W","type":"number","calc":false,"value":""},{"id":"L57","type":"number","calc":false,"value":""},{"id":"L58","type":"number","calc":false,"value":""},{"id":"L59","type":"number","calc":false,"value":""},{"id":"L60","type":"number","calc":false,"value":""},{"id":"NTCOMBAT","type":"number","calc":false,"value":""},{"id":"L62","type":"number","calc":false,"value":""},{"id":"HOPE","type":"number","calc":false,"value":""},{"id":"L63","type":"number","calc":false,"value":""},{"id":"L61","type":"number","calc":false,"value":""},{"id":"F4136AMT","type":"number","calc":false,"value":""},{"id":"L64FM","type":"alpha","calc":false,"value":""},{"id":"L64","type":"number","calc":false,"value":""},{"id":"L65","type":"number","calc":false,"value":""},{"id":"L66","type":"number","calc":false,"value":""},{"id":"L67A","type":"number","calc":false,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCNO","type":"mask","calc":false,"value":""},{"id":"L68","type":"number","calc":false,"value":""},{"id":"L69","type":"number","calc":false,"value":""},{"id":"L70","type":"number","calc":false,"value":""},{"id":"DESNAM","type":"alpha","calc":false,"value":""},{"id":"DESPH","type":"phone","calc":false,"value":""},{"id":"DESPIN","type":"mask","calc":false,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"DTPHO","type":"phone","calc":false,"value":""},{"id":"SOCC","type":"alpha","calc":false,"value":""},{"id":"IDTHEFT","type":"mask","calc":false,"value":""},{"id":"PNAME","type":"alpha","calc":false,"value":""},{"id":"PSSN","type":"alpha","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":false,"value":""},{"id":"PEIN","type":"mask","calc":false,"value":""},{"id":"PADD","type":"alpha","calc":false,"value":""},{"id":"PCITY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"PPHO","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/A1040.json b/test/data/ef/form/A1040.json new file mode 100755 index 00000000..9c09c56c --- /dev/null +++ b/test/data/ef/form/A1040.json @@ -0,0 +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}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e3f4f4","x":17.72,"y":2.966,"w":82.523,"h":44.153,"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":6.74,"y":0.5,"w":79.14899999999999,"clr":0,"A":"left","R":[{"T":"Taxpayer's%20Date%20of%20Death","S":2,"TS":[0,10,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.34,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,27,0,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":15.519999999999996,"clr":-1,"A":"left","R":[{"T":"U.S.%20Individual%20Income%20Tax%20Return%20","S":-1,"TS":[2,15,0,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":55.401,"y":2.018,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,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.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,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.776000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number%20","S":-1,"TS":[0,9.3,0,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.547,"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.937000000000001,"clr":-1,"A":"left","R":[{"T":"Presidential%20Election%20Campaign","S":-1,"TS":[0,9.3,0,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.149,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":94.598,"y":10.356,"w":3.575,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,0,0]}]},{"oc":"#221f1f","x":5.809,"y":11.483,"w":6.183999999999999,"clr":-1,"A":"left","R":[{"T":"Filing%20Status%20","S":-1,"TS":[0,13,0,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,0,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,0,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,0,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,0,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,0,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.904999999999999,"clr":-1,"A":"left","R":[{"T":"Exemptions%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.894,"y":14.201,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.609,"y":14.201,"w":4.518000000000001,"clr":-1,"A":"left","R":[{"T":"Yourself.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.820999999999998,"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":57.852,"y":14.201,"w":3.612,"clr":-1,"A":"left","R":[{"T":"%20do%20not%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.819,"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,0,0]}]},{"oc":"#221f1f","x":25.609,"y":14.951,"w":4.131,"clr":-1,"A":"left","R":[{"T":"Spouse%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.621,"y":14.951,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,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.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.134,"y":15.687999999999999,"w":6.594000000000001,"clr":-1,"A":"left","R":[{"T":"Dependents%3A%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.184,"y":16.406,"w":1.312,"clr":-1,"A":"left","R":[{"T":"(1)%20","S":2,"TS":[0,10,0,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.312,"clr":-1,"A":"left","R":[{"T":"(2)%20","S":2,"TS":[0,10,0,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.072,"clr":-1,"A":"left","R":[{"T":"(3)","S":2,"TS":[0,10,0,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":5.478000000000001,"clr":-1,"A":"left","R":[{"T":"relationship%20to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.152,"y":16.2,"w":1.5530000000000002,"clr":-1,"A":"left","R":[{"T":"you%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.429,"y":15.544,"w":1.552,"clr":-1,"A":"left","R":[{"T":"(4)%20%20","S":2,"TS":[0,10,0,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,0,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.593,"clr":-1,"A":"left","R":[{"T":"Boxes%20checked%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.771,"y":14.512,"w":6.1129999999999995,"clr":-1,"A":"left","R":[{"T":"on%206a%20and%206b","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.771,"y":15.106,"w":7.536000000000001,"clr":-1,"A":"left","R":[{"T":"No.%20of%20children%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.771,"y":15.544,"w":5.464,"clr":-1,"A":"left","R":[{"T":"on%206c%20who%3A%20","S":2,"TS":[0,10,0,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.795,"clr":-1,"A":"left","R":[{"T":"lived%20with%20you%20","S":2,"TS":[0,10,0,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.775,"clr":-1,"A":"left","R":[{"T":"did%20not%20live%20with%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":83.771,"y":16.893,"w":9.113,"clr":-1,"A":"left","R":[{"T":"you%20due%20to%20divorce%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":83.771,"y":17.299,"w":6.351,"clr":-1,"A":"left","R":[{"T":"or%20separation","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":83.771,"y":17.706,"w":8.202,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":83.771,"y":18.403,"w":8.928,"clr":-1,"A":"left","R":[{"T":"Dependents%20on%206c%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":83.771,"y":18.809,"w":8.947,"clr":-1,"A":"left","R":[{"T":"not%20entered%20above%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":83.9,"y":20.337,"w":8.426,"clr":-1,"A":"left","R":[{"T":"Add%20numbers%20on%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.9,"y":20.809,"w":5.944000000000001,"clr":-1,"A":"left","R":[{"T":"lines%20above%20%20","S":2,"TS":[0,10,0,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.831,"clr":-1,"A":"left","R":[{"T":"Income%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.938,"y":23.606,"w":7.5920000000000005,"clr":-1,"A":"left","R":[{"T":"Attach%20Form(s)%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":5.938,"y":24.191,"w":7.518000000000001,"clr":-1,"A":"left","R":[{"T":"W-2%20here.%20Also%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":5.938,"y":24.776,"w":6.889000000000001,"clr":-1,"A":"left","R":[{"T":"attach%20Forms%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":5.938,"y":25.361,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"W-2G%20and%20%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":5.938,"y":25.946,"w":6.519,"clr":-1,"A":"left","R":[{"T":"1099-R%20if%20tax%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.531,"w":6.812000000000001,"clr":-1,"A":"left","R":[{"T":"was%20withheld.%20","S":-1,"TS":[0,10.8,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":20.023,"y":22.357,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"8a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.262,"y":22.357,"w":4.0169999999999995,"clr":-1,"A":"left","R":[{"T":"Taxable%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.786,"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.4080000000000001,"clr":-1,"A":"left","R":[{"T":"8a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.459,"y":23.107,"w":3.871,"clr":-1,"A":"left","R":[{"T":"interest.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.782,"y":23.107,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.544,"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,0,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.4080000000000001,"clr":-1,"A":"left","R":[{"T":"9a%20","S":-1,"TS":[0,11,0,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,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"y":27.607,"w":35.634999999999984,"clr":-1,"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]}]},{"oc":"#221f1f","x":72.26,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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.9640000000000002,"clr":-1,"A":"left","R":[{"T":"15a%20","S":-1,"TS":[0,11,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":23.263,"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.9640000000000002,"clr":-1,"A":"left","R":[{"T":"16a%20","S":-1,"TS":[0,11,0,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,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,0]}]},{"oc":"#221f1f","x":23.263,"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.9640000000000002,"clr":-1,"A":"left","R":[{"T":"20a%20","S":-1,"TS":[0,11,0,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,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,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":67.366,"y":34.294,"w":6.218999999999999,"clr":-1,"A":"left","R":[{"T":"total%20income%20","S":-1,"TS":[0,10.2,0,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,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.675,"w":4.797000000000001,"clr":-1,"A":"left","R":[{"T":"Adjusted%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.938,"y":36.425,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"Gross%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.938,"y":37.175,"w":3.831,"clr":-1,"A":"left","R":[{"T":"Income%20","S":-1,"TS":[0,15,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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":31.924999999999997,"y":41.857,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.53,"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.9640000000000002,"clr":-1,"A":"left","R":[{"T":"31a%20","S":-1,"TS":[0,11,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"y":43.357,"w":14.319000000000004,"clr":-1,"A":"left","R":[{"T":"Student%20loan%20interest%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":43.357,"w":12,"clr":-1,"A":"left","R":[{"T":"........","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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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,0,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,0,0]}]},{"oc":"#221f1f","x":23.262,"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":48.707,"y":46.294,"w":11.165,"clr":-1,"A":"left","R":[{"T":"adjusted%20gross%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.688,"y":46.294,"w":9,"clr":-1,"A":"left","R":[{"T":"%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,0,0]}]},{"oc":"#221f1f","x":5.938,"y":47.107,"w":44.053999999999974,"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,0,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.816,"y":47.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,13,0,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.1300000000000001,"clr":-1,"A":"left","R":[{"T":"9a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.057,"y":29.107,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"15a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.984,"y":29.819,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"16a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.156,"y":32.849,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"20a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.241,"y":41.787,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"31a","S":-1,"TS":[0,11,0,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":52.933,"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.85,"clr":-1,"A":"left","R":[{"T":"b%20Tax-exempt%20","S":-1,"TS":[0,11,0,0]}]},{"x":27.365,"y":0.5,"w":73.71,"clr":0,"A":"left","R":[{"T":"Spouse's%20Date%20of%20Death","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.824,"y":7.984999999999999,"w":3.318,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":68.337,"y":7.984999999999999,"w":11.928,"clr":-1,"A":"left","R":[{"T":"tate","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":73.703,"y":8.018,"w":28.259,"clr":-1,"A":"left","R":[{"T":"ZIP%20code","S":-1,"TS":[0,9.299958,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOD","EN":0},"TI":0,"AM":0,"x":6.441,"y":0,"w":18.562,"h":0.847,"TU":"TAXPAYER'S DATE OF DEATH","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOD","EN":0},"TI":1,"AM":0,"x":26.88,"y":0,"w":18.563,"h":0.847,"TU":"SPOUSE'S DATE OF DEATH","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FY","EN":0},"TI":2,"AM":0,"x":37.961,"y":3.169,"w":16.17,"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.182,"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":4,"AM":0,"x":71.362,"y":3.169,"w":4.629,"h":0.833,"MV":"yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5,"AM":1024,"x":6.188,"y":4.386,"w":24.724,"h":0.852,"TU":"Your first name and initial."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":6,"AM":1024,"x":31.944,"y":4.472,"w":4.669,"h":0.833,"TU":"Taxpayer middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":7,"AM":1024,"x":37.485,"y":4.386,"w":42.772,"h":0.852,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8,"AM":1024,"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":1024,"x":6.188,"y":5.978,"w":24.948,"h":0.876,"TU":"If a joint return, spouse's first name and initial."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":10,"AM":1024,"x":32.029,"y":6.03,"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":1024,"x":37.575,"y":5.978,"w":42.683,"h":0.876,"TU":"Spouse's Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":12,"AM":1024,"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.478,"w":65.227,"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.478,"w":8.122,"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.953,"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":16,"AM":0,"x":66.896,"y":8.904,"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":72.407,"y":8.924,"w":7.611,"h":0.857},{"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.538,"w":24.3,"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.538,"w":10.597,"h":0.833,"TU":"Foreign postal code. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":27,"AM":0,"x":75.749,"y":12.969,"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":12.778,"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.705,"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.796,"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.087,"w":14.857,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNR","EN":0},"TI":35,"AM":0,"x":58.596,"y":15.052,"w":15.382,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":36,"AM":0,"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.341,"y":17.407,"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":"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.354,"y":18.195,"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":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.392,"y":18.94,"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":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.63,"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.336,"y":19.654,"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":61,"AM":0,"x":95.287,"y":20.582,"w":3.713,"h":0.98,"TU":"Line 6d. Add numbers on lines above."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":62,"AM":0,"x":83.137,"y":21.791,"w":11.925,"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":63,"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":64,"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":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":65,"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":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":66,"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":67,"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":68,"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":69,"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":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":71,"AM":0,"x":83.081,"y":27.77,"w":12.037,"h":0.833,"TU":"Line 13. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":72,"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":73,"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":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":74,"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":75,"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":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":76,"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":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":77,"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":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":78,"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":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":79,"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":80,"AM":0,"x":42.244,"y":33,"w":12.206,"h":0.833,"TU":"Line 20. a. Social Security benefits. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20LSE","EN":0},"TI":81,"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":82,"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":83,"AM":0,"x":46.987,"y":33.826,"w":17.746,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC_L21DAMT_1_","EN":0},"TI":84,"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":85,"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":86,"AM":0,"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":87,"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":88,"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":89,"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":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":90,"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":91,"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":92,"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":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":93,"AM":0,"x":63.094,"y":40.541,"w":12.299,"h":0.833,"TU":"Line 29. Self-employed health insurance deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":94,"AM":0,"x":63.188,"y":41.291,"w":12.299,"h":0.833,"TU":"Line 30. Penalty on early withdrawal of savings. Dollars."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A365_RSSN_1_","EN":0},"TI":95,"AM":0,"x":45.788,"y":42.062,"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":96,"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":97,"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":98,"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":"number","TypeInfo":{}},"id":{"Id":"L32C","EN":0},"TI":99,"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":"number","TypeInfo":{}},"id":{"Id":"DPAD","EN":0},"TI":100,"AM":0,"x":63.113,"y":45.061,"w":12.15,"h":0.833,"TU":"Line 35. Domestic production activities deduction. Attach Form 8903. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":101,"AM":0,"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":102,"AM":16,"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.584,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":22,"AM":0,"x":92.934,"y":10.584,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":23,"AM":0,"x":22.418,"y":11.298,"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.338,"w":1.498,"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.86,"w":1.464,"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.557,"y":14.374,"w":1.674,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":33,"AM":0,"x":23.482,"y":15.063,"w":1.749,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_1_","EN":0},"TI":42,"AM":0,"x":72.854,"y":17.299,"w":1.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_2_","EN":0},"TI":47,"AM":0,"x":72.947,"y":18.035,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_3_","EN":0},"TI":53,"AM":0,"x":72.928,"y":18.792,"w":1.45,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPSX","EN":0},"TI":55,"AM":0,"x":14.969,"y":19.666,"w":1.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_4_","EN":0},"TI":60,"AM":0,"x":72.854,"y":19.596,"w":1.437,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L13X","EN":0},"TI":70,"AM":0,"x":75.831,"y":27.75,"w":1.375,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.273,"y":1.969,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.899,"y":1.969,"w":1.5,"l":6.081},{"oc":"#221f1f","x":79.286,"y":2.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.999,"y":1.969,"w":1.5,"l":12.461},{"oc":"#221f1f","x":82.999,"y":2.719,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.374,"y":1.969,"w":1.5,"l":3.798},{"oc":"#221f1f","x":95.374,"y":2.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.617,"y":4.146,"w":1.5,"l":3.625},{"oc":"#221f1f","x":75.617,"y":2.719,"w":1.5,"l":3.625},{"oc":"#221f1f","x":79.286,"y":2.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.999,"y":2.719,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.374,"y":2.719,"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":14.936,"y":4.969,"w":0.75,"l":2.561},{"oc":"#221f1f","x":14.936,"y":5.719,"w":0.75,"l":2.561},{"oc":"#221f1f","x":79.286,"y":5.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.999,"y":5.719,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.374,"y":5.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.286,"y":6.469,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.042,"y":6.469,"w":0.75,"l":12.375},{"oc":"#221f1f","x":83.042,"y":5.719,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.374,"y":5.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.374,"y":6.469,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.286,"y":7.219,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.999,"y":6.469,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.999,"y":7.219,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.374,"y":6.469,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.374,"y":7.219,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.286,"y":7.969,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.999,"y":7.219,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.999,"y":7.969,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.374,"y":7.219,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.374,"y":7.969,"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.374,"y":7.969,"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":"#181516","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.157,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":21.75,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":68.02,"y":22.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.157,"y":22.5,"w":1.125,"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":1.125,"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":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":22.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":22.5,"w":1.125,"l":3.798},{"oc":"#181516","x":6.188,"y":23.25,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.357,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":24,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":24,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":23.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":24,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":24.75,"w":0.75,"l":12.461},{"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":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":5.809,"y":27.369,"w":0.75,"l":8.181},{"oc":"#221f1f","x":5.809,"y":24.369,"w":0.75,"l":8.181},{"oc":"#221f1f","x":14.807,"y":24.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":14.807,"y":25.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":59.357,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":25.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":24.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":39.557,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.27,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":55.645,"y":26.25,"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":59.357,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":27.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":27,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":27.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":27,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":28.504,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":28.504,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":27.754,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":28.504,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":27.754,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":29.254,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":28.504,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":29.254,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":28.504,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":30.004,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":30.004,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":29.254,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":30.004,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":29.254,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":30.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":30,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":30.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":30,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.07,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":31.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.445,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.445,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#181516","x":6.188,"y":32.25,"w":0.75,"l":92.813},{"oc":"#221f1f","x":79.157,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.913,"y":33,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":32.25,"w":0.75,"l":12.375},{"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":75.831,"y":33.625,"w":0.75,"l":1.375},{"oc":"#221f1f","x":75.831,"y":33.125,"w":0.75,"l":1.375},{"oc":"#221f1f","x":79.157,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.913,"y":33.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":33,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.132,"y":34.5,"w":0.75,"l":22.336},{"oc":"#221f1f","x":79.157,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.16,"y":35.244,"w":0.75,"l":42.037},{"oc":"#181516","x":6.188,"y":36,"w":0.75,"l":73.013},{"oc":"#221f1f","x":79.157,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":37.5,"w":0.75,"l":19.886},{"oc":"#181516","x":6.188,"y":37.5,"w":1.2000000000000002,"l":92.813},{"oc":"#181516","x":6.188,"y":39.75,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.125,"l":8.748},{"oc":"#221f1f","x":16.044,"y":42.75,"w":0.75,"l":31.034},{"oc":"#221f1f","x":46.982,"y":42.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":55.645,"y":42.75,"w":0.75,"l":23.579},{"oc":"#221f1f","x":79.157,"y":42.75,"w":0.75,"l":19.895},{"oc":"#221f1f","x":16.044,"y":42.75,"w":0.75,"l":31.034},{"oc":"#221f1f","x":16.044,"y":44.246,"w":1.125,"l":31.034},{"oc":"#221f1f","x":14.807,"y":44.25,"w":1.125,"l":2.561},{"oc":"#221f1f","x":46.982,"y":42.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.982,"y":44.246,"w":1.125,"l":8.748},{"oc":"#221f1f","x":55.645,"y":42.75,"w":0.75,"l":23.579},{"oc":"#221f1f","x":55.645,"y":44.246,"w":1.125,"l":23.579},{"oc":"#221f1f","x":79.157,"y":42.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":44.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":16.045,"y":44.25,"w":1.125,"l":19.886},{"oc":"#221f1f","x":16.045,"y":45.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":35.845,"y":44.25,"w":1.125,"l":31.023},{"oc":"#221f1f","x":35.845,"y":45.75,"w":0.75,"l":31.023},{"oc":"#221f1f","x":66.782,"y":44.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.782,"y":45.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":44.25,"w":1.125,"l":8.748},{"oc":"#221f1f","x":79.157,"y":45.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":87.82,"y":44.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":87.82,"y":45.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":16.045,"y":45.75,"w":0.75,"l":52.061},{"oc":"#221f1f","x":16.045,"y":46.5,"w":0.75,"l":52.061},{"oc":"#221f1f","x":68.02,"y":45.75,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.02,"y":46.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.02,"y":46.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":92.899},{"oc":"#221f1f","x":55.645,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":71.397,"y":9.281,"w":0.75,"l":5.036},{"oc":"#57585a","x":85.474,"y":39.719,"w":1.5,"l":12.203},{"oc":"#57585a","x":85.474,"y":39.031,"w":1.5,"l":12.203},{"oc":"#57585a","x":86.711,"y":44.219,"w":1.5,"l":12.203},{"oc":"#57585a","x":86.711,"y":43.531,"w":1.5,"l":12.203}],"VLines":[{"oc":"#221f1f","x":83.042,"y":1.953,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.329,"y":1.953,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.417,"y":1.937,"w":0.75,"l":0.797},{"oc":"#221f1f","x":83.042,"y":1.937,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.417,"y":1.937,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.242,"y":2.719,"w":1.5,"l":1.427},{"oc":"#221f1f","x":75.617,"y":2.719,"w":1.5,"l":1.427},{"oc":"#221f1f","x":83.042,"y":2.703,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.329,"y":2.703,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.417,"y":2.703,"w":0.75,"l":2.281},{"oc":"#221f1f","x":83.042,"y":2.703,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.417,"y":2.703,"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.042,"y":4.953,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.329,"y":4.953,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.417,"y":4.953,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.042,"y":4.953,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.417,"y":4.953,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.042,"y":5.703,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.329,"y":5.703,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.417,"y":5.719,"w":0.75,"l":0.75},{"oc":"#221f1f","x":83.042,"y":5.719,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.417,"y":5.703,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.042,"y":6.453,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.329,"y":6.453,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.417,"y":6.453,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.042,"y":6.453,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.417,"y":6.453,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.042,"y":7.195,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.329,"y":7.195,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.417,"y":7.195,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.042,"y":7.195,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.417,"y":7.195,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.887,"y":8.035,"w":0.75,"l":1.649},{"oc":"#221f1f","x":79.148,"y":7.901,"w":0.75,"l":1.823},{"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":7.901,"w":0.75,"l":1.823},{"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.2,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.4,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":23.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":23.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"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.235,"w":0.75,"l":8.281},{"oc":"#221f1f","x":79.2,"y":23.235,"w":0.75,"l":8.281},{"oc":"#221f1f","x":95.288,"y":23.235,"w":0.75,"l":8.281},{"oc":"#221f1f","x":82.913,"y":23.235,"w":0.75,"l":8.281},{"oc":"#221f1f","x":95.288,"y":23.235,"w":0.75,"l":8.281},{"oc":"#221f1f","x":4.95,"y":24.681,"w":0.75,"l":2.375},{"oc":"#221f1f","x":14.85,"y":24.681,"w":0.75,"l":2.375},{"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":79.2,"y":24.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":24.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":43.313,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.6,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.688,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"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":63.113,"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":59.4,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":27,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":27,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":27,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":27,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":27.738,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":27.754,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":27.754,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":27.754,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":27.754,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":28.504,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":28.504,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":28.504,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":28.504,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":29.238,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":29.254,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":29.254,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":29.254,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":29.254,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":30,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":30,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":30,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":30,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.113,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"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":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":95.288,"y":32.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":32.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.206,"y":33.125,"w":0.75,"l":0.5},{"oc":"#221f1f","x":75.831,"y":33.125,"w":0.75,"l":0.5},{"oc":"#221f1f","x":79.2,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":33,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":32.175,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":34.65,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":37.125,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":39.6,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":42.075,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":44.55,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":47.025,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":49.5,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":51.975,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":54.45,"y":33.812,"w":0.75,"l":0.688},{"oc":"#221f1f","x":82.913,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":33.735,"w":0.75,"l":2.281},{"dsh":1,"oc":"#221f1f","x":32.175,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":34.65,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":37.125,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":39.6,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":42.075,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":44.55,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":47.025,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":49.5,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":51.975,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":54.45,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":57.045,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":59.4,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":62.031,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":64.35,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":66.825,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":69.3,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":71.775,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":74.25,"y":34.525,"w":0.75,"l":0.688},{"oc":"#221f1f","x":63.113,"y":35.326,"w":0.75,"l":0.656},{"oc":"#221f1f","x":59.4,"y":35.326,"w":0.75,"l":0.656},{"oc":"#221f1f","x":75.488,"y":35.326,"w":0.75,"l":0.656},{"oc":"#221f1f","x":63.113,"y":35.326,"w":0.75,"l":0.656},{"oc":"#221f1f","x":79.2,"y":35.326,"w":0.75,"l":0.656},{"oc":"#221f1f","x":75.488,"y":35.326,"w":0.75,"l":0.656},{"oc":"#221f1f","x":79.2,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.035,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.688,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.025,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.181,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.688,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.035,"y":42.734,"w":0.75,"l":1.535},{"oc":"#221f1f","x":55.688,"y":42.734,"w":0.75,"l":1.535},{"oc":"#221f1f","x":47.025,"y":42.734,"w":0.75,"l":1.535},{"oc":"#221f1f","x":79.181,"y":42.734,"w":0.75,"l":1.535},{"oc":"#221f1f","x":55.688,"y":42.734,"w":0.75,"l":1.535},{"oc":"#221f1f","x":79.2,"y":42.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.888,"y":44.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":44.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":66.825,"y":44.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":44.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":87.863,"y":44.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.063,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.063,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.063,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.063,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":30.735,"w":0.75,"l":0.781},{"oc":"#57585a","x":97.677,"y":39.031,"w":1.5,"l":0.687},{"oc":"#57585a","x":85.474,"y":39.031,"w":1.5,"l":0.687},{"oc":"#57585a","x":87.863,"y":39.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":90.338,"y":39.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":92.813,"y":39.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":95.288,"y":39.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":95.288,"y":39.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":98.914,"y":43.531,"w":1.5,"l":0.687},{"oc":"#57585a","x":86.711,"y":43.531,"w":1.5,"l":0.687},{"oc":"#57585a","x":88.688,"y":43.563,"w":1.5,"l":0.656},{"oc":"#57585a","x":90.75,"y":43.563,"w":1.5,"l":0.656},{"oc":"#57585a","x":92.813,"y":43.563,"w":1.5,"l":0.656},{"oc":"#57585a","x":94.875,"y":43.563,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.938,"y":43.563,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.938,"y":43.563,"w":1.5,"l":0.656}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e3f4f4","x":5.079,"y":0.469,"w":95.288,"h":1.5,"clr":-1},{"oc":"#e3f4f4","x":14.85,"y":2.25,"w":84.15,"h":45,"clr":-1},{"oc":"#e3f4f4","x":4.95,"y":47.25,"w":95.288,"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":83.042,"y":1.969,"w":12.375,"h":0.75,"clr":1},{"x":95.417,"y":1.969,"w":3.712,"h":0.75,"clr":1},{"x":75.617,"y":2.719,"w":3.625,"h":1.427,"clr":1},{"oc":"#bdc0c2","x":79.329,"y":2.719,"w":3.712,"h":2.25,"clr":-1},{"x":83.042,"y":2.719,"w":12.375,"h":2.25,"clr":1},{"x":95.417,"y":2.719,"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.741,"y":4.969,"w":1.375,"h":0.75,"clr":1},{"x":14.979,"y":4.969,"w":2.475,"h":0.75,"clr":1},{"x":83.042,"y":4.969,"w":12.375,"h":0.75,"clr":1},{"x":95.417,"y":4.969,"w":3.712,"h":0.75,"clr":1},{"x":83.042,"y":5.719,"w":12.375,"h":0.75,"clr":1},{"x":95.417,"y":5.719,"w":3.712,"h":0.75,"clr":1},{"x":83.042,"y":6.469,"w":12.375,"h":0.75,"clr":1},{"x":95.417,"y":6.469,"w":3.712,"h":0.75,"clr":1},{"x":83.042,"y":7.219,"w":12.375,"h":0.75,"clr":1},{"x":95.417,"y":7.219,"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":"#bdc0c2","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":82.913,"y":20.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":20.25,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":21,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":21,"w":3.712,"h":0.75,"clr":1},{"x":68.063,"y":21.813,"w":9.9,"h":0.687,"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},{"x":63.113,"y":24,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":24,"w":3.713,"h":0.75,"clr":1},{"oc":"#bdc0c2","x":79.2,"y":23.25,"w":3.712,"h":8.25,"clr":-1},{"x":82.913,"y":23.25,"w":12.375,"h":8.25,"clr":1},{"x":95.288,"y":23.25,"w":3.712,"h":8.25,"clr":1},{"oc":"#ecf7f9","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.712,"h":0.75,"clr":1},{"oc":"#bdc0c2","x":59.4,"y":25.5,"w":3.713,"h":0.75,"clr":-1},{"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},{"oc":"#bdc0c2","x":63.113,"y":27.754,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bdc0c2","x":75.488,"y":27.754,"w":3.713,"h":0.75,"clr":-1},{"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.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":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},{"oc":"#bdc0c2","x":79.2,"y":33.75,"w":3.712,"h":2.25,"clr":-1},{"x":82.913,"y":33.75,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":33.75,"w":3.712,"h":2.25,"clr":1},{"x":63.113,"y":35.342,"w":12.375,"h":0.625,"clr":1},{"x":75.488,"y":35.342,"w":3.713,"h":0.625,"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":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},{"oc":"#bdc0c2","x":79.2,"y":36.75,"w":19.8,"h":0.75,"clr":-1},{"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.863,"y":44.25,"w":11.137,"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.712,"h":0.75,"clr":1},{"x":71.388,"y":8.531,"w":4.95,"h":0.75,"clr":1}],"Texts":[{"oc":"#221f1f","x":6.066,"y":0.937,"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.634,"y":0.978,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.731,"y":0.9770000000000001,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.067,"y":2.115,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Tax%20and%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.067,"y":2.954,"w":3.4619999999999997,"clr":-1,"A":"left","R":[{"T":"Credits","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.675,"y":1.826,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.679,"y":1.826,"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.379,"y":1.826,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.171,"y":1.826,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.675,"y":2.576,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"39a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.679,"y":2.638,"w":3.149,"clr":-1,"A":"left","R":[{"T":"Check%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.679,"y":3.3259999999999996,"w":1.074,"clr":-1,"A":"left","R":[{"T":"if%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.079,"y":3.006,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7B","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":28.41,"y":2.576,"w":1.871,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.983,"y":2.576,"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.21,"y":2.576,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.41,"y":3.3259999999999996,"w":3.575,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.326,"y":3.3259999999999996,"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.21,"y":3.3259999999999996,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.992,"y":2.993,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":64.229,"y":2.638,"w":6.109999999999999,"clr":-1,"A":"left","R":[{"T":"Total%20boxes%20%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":64.229,"y":3.3259999999999996,"w":4.074,"clr":-1,"A":"left","R":[{"T":"checked","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":69.877,"y":3.232,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":71.654,"y":3.3259999999999996,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"39a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.204,"y":4.076,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.679,"y":4.058,"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.645,"y":3.9640000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,8.1,0,0]}]},{"oc":"#221f1f","x":74.473,"y":4.076,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"39b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.067,"y":4.116,"w":4.909000000000001,"clr":-1,"A":"left","R":[{"T":"Standard%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.067,"y":4.553,"w":5.463000000000001,"clr":-1,"A":"left","R":[{"T":"Deduction%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.067,"y":4.991,"w":2.611,"clr":-1,"A":"left","R":[{"T":"for%E2%80%94%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.067,"y":5.615,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":7.069,"y":5.615,"w":5.277,"clr":-1,"A":"left","R":[{"T":"People%20who","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.067,"y":6.053,"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.067,"y":6.49,"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.067,"y":6.928,"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.634,"y":6.928,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.067,"y":7.365,"w":5.481999999999999,"clr":-1,"A":"left","R":[{"T":"who%20can%20be%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.849,"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":5.938,"y":8.286,"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.724,"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":9.161,"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":10.02,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.812,"y":10.02,"w":4.463000000000001,"clr":-1,"A":"left","R":[{"T":"All%20others%3A","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.809,"y":10.645,"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.809,"y":11.083,"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.809,"y":11.52,"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.809,"y":11.957,"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":33.373,"y":4.826,"w":8.242,"clr":-1,"A":"left","R":[{"T":"(from%20Schedule%20A)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.705,"y":4.826,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.463,"y":4.826,"w":2.241,"clr":-1,"A":"left","R":[{"T":"your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.544,"y":4.826,"w":9.574,"clr":-1,"A":"left","R":[{"T":"standard%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.708,"y":4.826,"w":7.371,"clr":-1,"A":"left","R":[{"T":"(see%20left%20margin)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.129,"y":4.825,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.192,"y":4.825,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.171,"y":4.826,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.675,"y":5.576,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.679,"y":5.576,"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.066,"y":5.576,"w":28.5,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.171,"y":5.576,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.18,"y":6.326,"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.171,"y":6.326,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.675,"y":7.076,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.679,"y":7.075,"w":8.366999999999999,"clr":-1,"A":"left","R":[{"T":"Taxable%20income.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.184,"y":7.075,"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":74.13,"y":7.075,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.192,"y":7.075,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.171,"y":7.076,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":7.638,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":7.638,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Tax%20%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":20.693,"y":8.294,"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":31.332,"y":8.295,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.113,"y":8.295,"w":6.132,"clr":-1,"A":"left","R":[{"T":"Form(s)%208814%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.156,"y":8.342,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.938,"y":8.341,"w":9.095,"clr":-1,"A":"left","R":[{"T":"Form%204972%20TP%20or%20SP","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":67.606,"y":8.341,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":19.55,"y":9.607,"w":12.124000000000002,"clr":-1,"A":"left","R":[{"T":"Alternative%20minimum%20tax%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.221,"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":59.563,"y":9.607,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","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,0,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,0,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":31.5,"clr":-1,"A":"left","R":[{"T":".....................","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,0,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,0,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,0,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,0,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,0,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,0,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,0,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,0,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.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.53,"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,0,0]}]},{"oc":"#221f1f","x":45.061,"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.269,"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,0,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":44.486,"y":16.357,"w":5.998000000000001,"clr":-1,"A":"left","R":[{"T":"total%20credits%20","S":-1,"TS":[0,11,0,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,0,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,0,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":9,"clr":-1,"A":"left","R":[{"T":"......","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,0,0]}]},{"oc":"#221f1f","x":5.938,"y":18.138,"w":3.242,"clr":-1,"A":"left","R":[{"T":"Other%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.938,"y":19.038,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Taxes%20","S":-1,"TS":[0,15,0,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,0,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":47.188,"y":17.857,"w":22.5,"clr":-1,"A":"left","R":[{"T":"...............","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,0,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,0,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.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,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,0,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,0,0]}]},{"oc":"#221f1f","x":15.546,"y":19.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"58%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":19.362,"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.003,"y":19.362,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":76.065,"y":19.362,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":80.042,"y":19.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"58","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":20.107,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"59a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.647,"y":20.107,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"59a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.075,"y":20.857,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.622,"y":20.857,"w":1.723,"clr":-1,"A":"left","R":[{"T":"59b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":20.112,"w":21.413,"clr":-1,"A":"left","R":[{"T":"Household%20employment%20taxes%20from%20Schedule%20H%20","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":49.252,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":53.376,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":55.438,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":57.5,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":59.561,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":61.623,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":63.685,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":65.747,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":67.809,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":69.871,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":71.933,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":73.995,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":76.057,"y":20.112,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":19.543,"y":20.862,"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":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":63.682,"y":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":65.744,"y":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":67.806,"y":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":69.868,"y":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":71.93,"y":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":73.992,"y":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":76.054,"y":20.862,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":15.546,"y":21.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"60%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":21.607,"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":21.607,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.688,"y":21.582,"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":21.607,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.564,"y":21.582,"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":21.607,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.523,"y":21.582,"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":21.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"60","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":22.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":22.357,"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":42.372,"y":22.357,"w":4.166,"clr":-1,"A":"left","R":[{"T":"total%20tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":22.357,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.521,"y":22.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":22.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":23.196,"w":5,"clr":-1,"A":"left","R":[{"T":"Payments%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.546,"y":23.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":23.107,"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.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.242,"y":23.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":23.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":23.857,"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":23.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":24.39,"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":24.953,"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":25.515,"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.078,"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":24.607,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"64a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":24.607,"w":13.050999999999997,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.938,"y":24.607,"w":15,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.847,"y":24.607,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"64a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.075,"y":25.357,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":25.357,"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":25.357,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"64b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":26.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.549,"y":26.107,"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.252,"y":26.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":51.314,"y":26.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":53.377,"y":26.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":55.439,"y":26.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":56.676,"y":26.107,"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.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":26.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.549,"y":26.857,"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":26.857,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":26.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":27.611,"w":1.112,"clr":-1,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":27.607,"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":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":30.686,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":32.749,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":34.811,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":36.873,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":38.935,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":40.997,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":43.059,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":45.121,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":47.183,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":49.245,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":51.307,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":53.369,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":55.431,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":57.493,"y":27.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":60.242,"y":27.611,"w":1.112,"clr":-1,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":28.361,"w":1.112,"clr":-1,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":28.357,"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":28.357,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":28.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":29.111,"w":1.112,"clr":-1,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":29.111,"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.111,"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.111,"w":1.112,"clr":-1,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":29.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":29.857,"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.313,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":53.376,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":55.439,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":57.502,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":60.242,"y":29.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":30.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":30.607,"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":30.607,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.87,"y":30.607,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2439%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.093,"y":30.597,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.416,"y":30.607,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":-1,"TS":[0,7.8,0,0]}]},{"oc":"#221f1f","x":44.524,"y":30.607,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.757,"y":30.607,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8885%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.726,"y":30.607,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":30.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":31.295,"w":1.112,"clr":-1,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":31.295,"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":54.805,"y":31.295,"w":7.369,"clr":-1,"A":"left","R":[{"T":"total%20payments%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.75,"y":31.295,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.521,"y":31.201,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":31.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":32.134,"w":3.704,"clr":-1,"A":"left","R":[{"T":"Refund%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":33.697,"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.938,"y":34.222,"w":2,"clr":-1,"A":"left","R":[{"T":"See%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":34.747,"w":5.742000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.546,"y":32.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":32.107,"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":71.046,"y":32.107,"w":4.426,"clr":-1,"A":"left","R":[{"T":"overpaid%20","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":80.042,"y":32.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":32.857,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"74a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":32.857,"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":36.717,"y":32.857,"w":7.797999999999998,"clr":-1,"A":"left","R":[{"T":"refunded%20to%20you.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.439,"y":32.857,"w":16.913000000000007,"clr":-1,"A":"left","R":[{"T":"%20If%20Form%208888%20is%20attached%2C%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.938,"y":32.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.036,"y":32.763,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":79.647,"y":32.857,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"74a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.703,"y":33.44,"w":1.28,"clr":-1,"A":"left","R":[{"T":"a%01","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":14.703,"y":34.253,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":17.075,"y":33.607,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":33.607,"w":7.466000000000001,"clr":-1,"A":"left","R":[{"T":"Routing%20number%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.81,"y":33.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":57.127,"y":33.607,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":58.182,"y":33.607,"w":2.7600000000000002,"clr":-1,"A":"left","R":[{"T":"Type%3A%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":64.031,"y":33.607,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":72.694,"y":33.607,"w":3.537,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":17.075,"y":34.354,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":34.357,"w":7.429,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":35.104,"w":1.112,"clr":-1,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":35.104,"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":35.687,"y":35.104,"w":16.387000000000008,"clr":-1,"A":"left","R":[{"T":"applied%20to%20your%202014%20estimated%20tax","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":57.248,"y":35.01,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":60.242,"y":35.074,"w":1.112,"clr":-1,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.771,"w":4.295999999999999,"clr":-1,"A":"left","R":[{"T":"Amount%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":36.484,"w":4.593,"clr":-1,"A":"left","R":[{"T":"You%20Owe%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":15.546,"y":35.795,"w":1.112,"clr":-1,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":35.795,"w":8.296000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20owe.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.957,"y":35.795,"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.953,"y":35.701,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":35.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":36.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.55,"y":36.607,"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":45.125,"y":36.607,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":36.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":37.634,"w":5.797000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20Party%20%20","S":-1,"TS":[0,12.4,0,0]}]},{"oc":"#221f1f","x":5.938,"y":38.384,"w":4.74,"clr":-1,"A":"left","R":[{"T":"Designee%20","S":-1,"TS":[0,12.4,0,0]}]},{"oc":"#221f1f","x":17.075,"y":37.357,"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":76.406,"y":37.357,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Yes.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.616,"y":37.357,"w":7.871,"clr":-1,"A":"left","R":[{"T":"Complete%20below.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.969,"y":37.357,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.075,"y":38.285,"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":17.075,"y":38.875,"w":3.039,"clr":-1,"A":"left","R":[{"T":"name%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.731,"y":38.781,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":47.622,"y":38.285,"w":3.4270000000000005,"clr":-1,"A":"left","R":[{"T":"Phone%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.622,"y":38.875,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"no.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.985,"y":38.781,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":70.288,"y":38.285,"w":10.167,"clr":-1,"A":"left","R":[{"T":"Personal%20identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.288,"y":38.875,"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":82.346,"y":38.781,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":39.611,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Sign%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.938,"y":40.361,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Here%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.938,"y":41.31,"w":2.797,"clr":-1,"A":"left","R":[{"T":"Joint%20r","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":8.946,"y":41.31,"w":5.131,"clr":-1,"A":"left","R":[{"T":"eturn%3F%20See%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":5.937,"y":41.835,"w":6.020000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":5.937,"y":42.36,"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.937,"y":42.885,"w":6.204000000000001,"clr":-1,"A":"left","R":[{"T":"your%20records.%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":17.075,"y":39.595,"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":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":81.455,"y":39.595,"w":13.947000000000005,"clr":-1,"A":"left","R":[{"T":"st%20of%20my%20knowledge%20and%20belief%2C%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":17.075,"y":40.083,"w":55.65499999999995,"clr":-1,"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%20prepar","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":79.252,"y":40.083,"w":10.038000000000002,"clr":-1,"A":"left","R":[{"T":"er%20has%20any%20knowledge.","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":17.074,"y":41,"w":6.797000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.463,"y":41,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.125,"y":41,"w":7.668000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20occupation%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.638,"y":41,"w":10.468,"clr":-1,"A":"left","R":[{"T":"Daytime%20phone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":17.074,"y":42.5,"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":36.506,"y":42.5,"w":2.445,"clr":-1,"A":"left","R":[{"T":"both%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.447,"y":42.5,"w":4.91,"clr":-1,"A":"left","R":[{"T":"must%20sign.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.373,"y":40.997,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,38.9996,0,0],"RA":90}]},{"oc":"#221f1f","x":47.463,"y":42.5,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.125,"y":42.5,"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.638,"y":42.5,"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.638,"y":42.937,"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.638,"y":43.375,"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.938,"y":44.382,"w":2.6660000000000004,"clr":-1,"A":"left","R":[{"T":"Paid%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":45.132,"w":4.723000000000001,"clr":-1,"A":"left","R":[{"T":"Preparer%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":45.882,"w":4.555999999999999,"clr":-1,"A":"left","R":[{"T":"Use%20Only%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":17.041,"y":43.969,"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.875,"y":44,"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.263,"y":44,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.638,"y":44.338,"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.638,"y":44.775,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.3,"y":43.969,"w":2.481,"clr":-1,"A":"left","R":[{"T":"%20PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":17.041,"y":45.625,"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":25.356,"y":45.563,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":17.041,"y":46.375,"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":25.353,"y":46.312,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":68.5,"y":45.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":74.739,"y":45.563,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":68.5,"y":46.375,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"Phone%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.008,"y":47.075,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":47.075,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.451,"y":47.075,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.864,"y":7.678000000000001,"w":8.112000000000002,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":15.675,"y":4.826,"w":5.757,"clr":-1,"A":"left","R":[{"T":"40%20Itemized%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.684,"y":4.825,"w":5.5920000000000005,"clr":-1,"A":"left","R":[{"T":"deductions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.675,"y":6.325,"w":7.295,"clr":-1,"A":"left","R":[{"T":"42%20Exemptions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.215,"y":46.29,"w":1.759,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":49.952,"y":46.29,"w":2.352,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":58.299,"y":46.29,"w":1.518,"clr":-1,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,9.3,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":103,"AM":0,"x":83.029,"y":1.942,"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":106,"AM":0,"x":75.604,"y":2.776,"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":110,"AM":0,"x":83.029,"y":4.942,"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":111,"AM":0,"x":83.029,"y":5.692,"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":112,"AM":0,"x":83.029,"y":6.442,"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":113,"AM":16,"x":83.029,"y":7.192,"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":"L40FM","EN":0},"TI":117,"AM":0,"x":71.442,"y":8.564,"w":4.875,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":118,"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":119,"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":120,"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":121,"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":122,"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":123,"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":124,"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":125,"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":126,"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":130,"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":131,"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":132,"AM":0,"x":82.912,"y":16.529,"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":133,"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":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":134,"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":137,"AM":0,"x":82.912,"y":18.75,"w":12.375,"h":0.833,"TU":"Line 57. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":138,"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":139,"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":140,"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":144,"AM":0,"x":68.236,"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":145,"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":146,"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":147,"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":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":148,"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":"number","TypeInfo":{}},"id":{"Id":"L60","EN":0},"TI":149,"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":150,"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":151,"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":152,"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":153,"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":154,"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":155,"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":"alpha","TypeInfo":{}},"id":{"Id":"L64FM","EN":0},"TI":159,"AM":0,"x":55.567,"y":30.756,"w":3.712,"h":0.833,"TU":"Line 71. D. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64","EN":0},"TI":160,"AM":0,"x":63.112,"y":30.75,"w":12.375,"h":0.833,"TU":"Line 71. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65","EN":0},"TI":161,"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":162,"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":164,"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":165,"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":167,"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":169,"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":170,"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":171,"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":174,"AM":0,"x":24.784,"y":38.901,"w":21.706,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":175,"AM":0,"x":52.821,"y":38.947,"w":16.841,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":176,"AM":0,"x":85.471,"y":39.051,"w":12.28,"h":0.833,"MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":177,"AM":0,"x":55.742,"y":41.91,"w":19.152,"h":0.833,"TU":"Your occupation"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":178,"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":179,"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":180,"AM":0,"x":86.701,"y":43.49,"w":12.36,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME","EN":0},"TI":181,"AM":0,"x":16.089,"y":44.951,"w":19.581,"h":0.833,"TU":"Firm's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PSSN","EN":0},"TI":183,"AM":0,"x":87.928,"y":44.924,"w":11.012,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":184,"AM":0,"x":26.94,"y":45.787,"w":41.212,"h":0.833,"TU":"Firm's Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PEIN","EN":0},"TI":185,"AM":0,"x":76.033,"y":45.755,"w":23.124,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PADD","EN":0},"TI":186,"AM":0,"x":26.929,"y":46.53,"w":14.335,"h":0.833,"TU":"Firm's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCITY","EN":0},"TI":187,"AM":0,"x":43.674,"y":46.571,"w":6.286,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":188,"AM":0,"x":52.971,"y":46.545,"w":4.741,"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":"PZIP","EN":0},"TI":189,"AM":0,"x":60.258,"y":46.57,"w":7.731,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PPHO","EN":0},"TI":190,"AM":0,"x":74.648,"y":46.462,"w":24.547,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A1","EN":0},"TI":104,"AM":0,"x":26.448,"y":2.755,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A2","EN":0},"TI":105,"AM":0,"x":57.385,"y":2.755,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A3","EN":0},"TI":107,"AM":0,"x":26.448,"y":3.505,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A4","EN":0},"TI":108,"AM":0,"x":57.385,"y":3.505,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35BB","EN":0},"TI":109,"AM":0,"x":77.185,"y":4.255,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BA","EN":0},"TI":114,"AM":0,"x":33.147,"y":8.498,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BB","EN":0},"TI":115,"AM":0,"x":47.799,"y":8.544,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX962","EN":0},"TI":116,"AM":0,"x":69.269,"y":8.427,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BA","EN":0},"TI":127,"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":128,"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":129,"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":135,"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":136,"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":141,"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":142,"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":143,"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":156,"AM":0,"x":31.066,"y":30.784,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8885","EN":0},"TI":157,"AM":1024,"x":46.044,"y":30.84,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64FMX","EN":0},"TI":158,"AM":0,"x":53.38,"y":30.741,"w":1.574,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":163,"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":166,"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":168,"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":172,"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":173,"AM":0,"x":93.172,"y":37.536,"w":1.423,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PSEX","EN":0},"TI":182,"AM":0,"x":84.437,"y":44.45,"w":1.375,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/A1040A.content.txt b/test/data/ef/form/A1040A.content.txt new file mode 100755 index 00000000..c98e2531 --- /dev/null +++ b/test/data/ef/form/A1040A.content.txt @@ -0,0 +1,462 @@ +Form +1040A +2013 +U.S. Individual Income Tax Return +Department of the Treasury—Internal Revenue Service +IRS Use Only—Do not write or staple in this space. + (99) +OMB No. 1545-0074 +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse’s social security number +c +Make sure the SSN(s) above +and on line 6c are correct. +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +Foreign country name +Foreign province/state/county +Foreign postal code +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 +Spouse +Filing +status +Check only +one box. +1 +Single +2 +Married filing jointly (even if only one had income) +3 +Married filing separately. Enter spouse’s SSN above and +full name here. +a +4 +Head of household (with qualifying person). +(See instructions.) + +If the qualifying person is a child but not your dependent, +enter this child’s name here. +a +5 +Qualifying widow(er) with dependent child +(see instructions) +Exemptions +6a +Yourself. +If someone can claim you as a dependent, +do not +check +box 6a. +b +Spouse +} +c +Dependents: +(1) +First name + +Last name +(2) +Dependent’s social + +security number +(3) +Dependent’s + +relationship to + +you +(4) + + +if + child under +age 17 qualifying for +child tax credit (see +instructions) +If more than six +dependents, see +instructions. +d +Total number of exemptions claimed. +Boxes +checked on +6a and 6b +No. of children +on 6c who: +• +lived with +you +• +did not live +with you due + +to +divorce or + +separation + +(see +instructions) +Dependents +on 6c not +entered above +Add numbers +on lines +above +a +Income +Attach +Form(s) W-2 +here. Also +attach +Form(s) +1099-R if tax +was +withheld. +If you did not +get a W-2, see +instructions. + + +7 +Wages, salaries, tips, etc. Attach Form(s) W-2. +7 +8a +Taxable +interest. Attach Schedule B if required. +8a +b +Tax-exempt +interest. + Do not +include on line 8a. 8b +9a +Ordinary dividends. Attach Schedule B if required. +9a +b +Qualified dividends (see instructions). +9b +10 +Capital gain distributions (see instructions). +10 +11 a +IRA +distributions. +11a +11b +Taxable amount +(see instructions). +11b +12 a +Pensions and +annuities. +12a +12b +Taxable amount +(see instructions). +12b +13 +Unemployment compensation and Alaska Permanent Fund dividends. +13 +14 a +Social security +benefits. +14a +14b +Taxable amount +(see instructions). +14b +15 +Add lines 7 through 14b (far right column). This is your +total income. + +a +15 +Adjusted +gross +income +16 +Educator expenses (see instructions). +16 +17 +IRA deduction (see instructions). +17 +18 +Student loan interest deduction (see instructions). +18 +19 +Tuition and fees. Attach Form 8917. +19 +20 +Add lines 16 through 19. These are your +total adjustments. +20 +21 +Subtract line 20 from line 15. This is your +adjusted gross income. + +a +21 +For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 11327A +Form +1040A +(2013) +Taxpayer's Date of Death +Spouse's Date of Death +City, town or post office. If you have a foreign address, also complete spaces below (see instructions). +S +tate +ZIP code +----------------Page (0) Break---------------- +Form 1040A (2013) +Page +2 +Tax, credits, +and +payments +22 +Enter the amount from line 21 (adjusted gross income). 22 +23 +a +Check +if: +{ +You + were born before January 2, 1949, +Blind +Spouse + was born before January 2, 1949, +Blind +} +Total boxes +checked +a +23a +b +If you are married filing separately and your spouse itemizes +deductions, check here + +a +23b +Standard +Deduction +for— +• People who +check any +box on line +23a or 23b +or +who can be +claimed as a +dependent, +see +instructions. +• All others: +Single or +Married filing +separately, +$6,100 +Married filing +jointly or +Qualifying +widow(er), +$12,200 +Head of +household, +$8,950 +24 +Enter your +standard deduction +.24 +25 +Subtract line 24 from line 22. If line 24 is more than line 22, enter -0-. 25 +26 Exemptions. +Multiply $3,900 by the number on line 6d. +26 +27 +Subtract line 26 from line 25. If line 26 is more than line 25, enter -0-. +This is your +taxable income. + +a +27 +28 Tax, +including any alternative minimum tax (see instructions). 28 +29 +Credit for child and dependent care expenses. Attach +Form 2441. 29 +30 +Credit for the elderly or the disabled. Attach +Schedule R. +30 +31 +Education credits from Form 8863, line 19. 31 +32 +Retirement savings contributions credit. Attach +Form 8880. 32 +33 +Child tax credit. Attach Schedule 8812, if required. 33 +34 +Add lines 29 through 33. These are your +total credits. +34 +35 +Subtract line 34 from line 28. If line 34 is more than line 28, enter -0-. This is +your +total tax. +35 +36 +Federal income tax withheld from Forms W-2 and +1099. 36 +37 +2013 estimated tax payments and amount applied +from 2012 return. 37 +If you have +a qualifying +child, attach +Schedule +EIC. +38a Earned income credit (EIC). +38a +b +Nontaxable combat pay +election. 38b +39 +Additional child tax credit. Attach Schedule 8812. +39 +40 +American opportunity credit from Form 8863, line 8. 40 +41 +Add lines 36, 37, 38a, 39, and 40. These are your +total payments. + +a +41 +Refund + +Direct +deposit? +See +instructions +and fill in +43b, 43c, +and 43d or +Form 8888. +42 +If line 41 is more than line 35, subtract line 35 from line 41. +This is the amount you +overpaid. +42 +43a +Amount of line 42 you want +refunded to you. +If Form 8888 is attached, check here +a +43a +a +b +Routing +number +a + +c + Type: +Checking +Savings +a +d +Account +number +44 +Amount of line 42 you want +applied to your + +2014 estimated tax. +44 +Amount +you owe +45 Amount you owe. +Subtract line 41 from line 35. For details on how to pay, +see instructions. +a +45 +46 +Estimated tax penalty (see instructions). 46 +Third party +designee +Do you want to allow another person to discuss this return with the IRS (see instructions)? +Yes. + Complete the following. +No +Designee’s +name +a +Phone +no. +a +Personal identification +number (PIN) +a +Sign +here + + +Joint return? +See instructions. +Keep a copy +for your records. +Under penalties of perjury, I declare that I have examined this return and accompanying schedules and statements, and to the be +st of my knowledge +and belief, they are true, correct, and accurately list all amounts and sources of income I received during the tax year. Decla +ration of preparer (other +than the taxpayer) is based on all information of which the preparer has any knowledge. +F +Your signature +Date +Your occupation +Daytime phone number +Spouse’s signature. If a joint return, +both + must sign. +Date +Spouse’s occupation +If the IRS sent you an Identity Protection +PIN, enter it +here (see inst.) +Paid +preparer +use only +Print/type preparer's name +Preparer’s signature +Date +Check +a + +if +self-employed +PTIN +Firm's name +a +Firm's address +a +Firm's EIN +a +Phone no. +Form +1040A + (2013) +City +State +ZIP +----------------Page (1) Break---------------- diff --git a/test/data/ef/form/A1040A.fields.json b/test/data/ef/form/A1040A.fields.json new file mode 100755 index 00000000..88bf5b20 --- /dev/null +++ b/test/data/ef/form/A1040A.fields.json @@ -0,0 +1 @@ +[{"id":"PECY","type":"box","calc":false,"value":""},{"id":"SECY","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"L6A","type":"box","calc":false,"value":""},{"id":"L6B","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_1_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_2_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_3_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_4_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_5_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_6_","type":"box","calc":false,"value":""},{"id":"TPDOD","type":"date","calc":false,"value":""},{"id":"SPDOD","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"MI","type":"mask","calc":true,"value":""},{"id":"LNAM","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SNAM","type":"alpha","calc":true,"value":""},{"id":"SMI","type":"mask","calc":true,"value":""},{"id":"SLNM","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"CNAM","type":"alpha","calc":false,"value":""},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"SPNM","type":"alpha","calc":false,"value":""},{"id":"SPLNM","type":"alpha","calc":false,"value":""},{"id":"N6AB","type":"number","calc":false,"value":""},{"id":"SPNR","type":"alpha","calc":false,"value":""},{"id":"N6C1","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_1_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_2_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_2_","type":"alpha","calc":false,"value":""},{"id":"N6C2","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_3_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_4_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_5_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_5_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_5_","type":"ssn","calc":false,"value":""},{"id":"N6C3","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C4_5_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_6_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_6_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_6_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_6_","type":"alpha","calc":false,"value":""},{"id":"N6E","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"QUALDIVS","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"L16A","type":"number","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20AMOD","type":"number","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L32C","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L35A1","type":"box","calc":false,"value":""},{"id":"L35A2","type":"box","calc":false,"value":""},{"id":"L35A3","type":"box","calc":false,"value":""},{"id":"L35A4","type":"box","calc":false,"value":""},{"id":"L21B","type":"box","calc":false,"value":""},{"id":"F8888","type":"box","calc":false,"value":""},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCC"},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCS"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDY"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDN"},{"id":"PSEX","type":"box","calc":false,"value":""},{"id":"L34","type":"number","calc":false,"value":""},{"id":"N35A","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"AFTDED","type":"number","calc":false,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"L39","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L44","type":"number","calc":false,"value":""},{"id":"ELDERLY","type":"number","calc":false,"value":""},{"id":"L46","type":"number","calc":false,"value":""},{"id":"RSCCRED","type":"number","calc":false,"value":""},{"id":"L47","type":"number","calc":false,"value":""},{"id":"L50","type":"number","calc":false,"value":""},{"id":"L57","type":"alpha","calc":false,"value":""},{"id":"L58","type":"number","calc":false,"value":""},{"id":"L59","type":"number","calc":false,"value":""},{"id":"L60","type":"number","calc":false,"value":""},{"id":"NTCOMBAT","type":"number","calc":false,"value":""},{"id":"L62","type":"number","calc":false,"value":""},{"id":"HOPE","type":"number","calc":false,"value":""},{"id":"L65","type":"number","calc":false,"value":""},{"id":"L66","type":"number","calc":false,"value":""},{"id":"L67A","type":"number","calc":false,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCNO","type":"mask","calc":false,"value":""},{"id":"L68","type":"number","calc":false,"value":""},{"id":"L69","type":"number","calc":false,"value":""},{"id":"L70","type":"alpha","calc":false,"value":""},{"id":"DESNAM","type":"alpha","calc":false,"value":""},{"id":"DESPH","type":"phone","calc":false,"value":""},{"id":"DESPIN","type":"mask","calc":false,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"DTPHO","type":"phone","calc":false,"value":""},{"id":"SOCC","type":"alpha","calc":false,"value":""},{"id":"IDTHEFT","type":"mask","calc":false,"value":""},{"id":"PNAME","type":"alpha","calc":false,"value":""},{"id":"PDAT","type":"date","calc":false,"value":""},{"id":"PSSN","type":"alpha","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":false,"value":""},{"id":"PEIN","type":"mask","calc":false,"value":""},{"id":"PADD","type":"alpha","calc":false,"value":""},{"id":"PCITY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"PPHO","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/A1040A.json b/test/data/ef/form/A1040A.json new file mode 100755 index 00000000..bac72483 --- /dev/null +++ b/test/data/ef/form/A1040A.json @@ -0,0 +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},{"oc":"#221f1f","x":5.365,"y":8.964,"w":0.75,"l":65.674}],"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}],"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.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":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.9090000000000003,"clr":-1,"A":"left","R":[{"T":"1040A","S":-1,"TS":[0,17,0,0]}]},{"oc":"#221f1f","x":60.391,"y":2.751,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,17,0,0]}]},{"oc":"#221f1f","x":19.552,"y":2.786,"w":16.127000000000002,"clr":-1,"A":"left","R":[{"T":"U.S.%20Individual%20Income%20Tax%20Return","S":-1,"TS":[0,15,0,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":52.965,"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.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,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.776000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number%20","S":-1,"TS":[0,9.3,0,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.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.937000000000001,"clr":-1,"A":"left","R":[{"T":"Presidential%20Election%20Campaign","S":-1,"TS":[0,9.3,0,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.149,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":94.729,"y":11.013,"w":3.575,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.974,"w":2.8489999999999998,"clr":-1,"A":"left","R":[{"T":"Filing%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.786,"w":3.223,"clr":-1,"A":"left","R":[{"T":"status%20","S":-1,"TS":[0,15,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":90.058,"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":-1,"TS":[0,13,0,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":90.775,"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.24,"clr":-1,"A":"left","R":[{"T":"Yourself.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.402,"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":67.419,"y":14.822,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":73.149,"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.402,"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.575,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,13,0,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.316000000000001,"clr":-1,"A":"left","R":[{"T":"Dependents%3A%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.265,"y":18.508,"w":1.4260000000000002,"clr":-1,"A":"left","R":[{"T":"(1)%20","S":-1,"TS":[0,11,0,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.4260000000000002,"clr":-1,"A":"left","R":[{"T":"(2)%20","S":-1,"TS":[0,10.5,0,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.4260000000000002,"clr":-1,"A":"left","R":[{"T":"(3)%20","S":-1,"TS":[0,11,0,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.4260000000000002,"clr":-1,"A":"left","R":[{"T":"(4)%20","S":-1,"TS":[0,10.5,0,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":-1,"TS":[0,13,0,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.241,"clr":-1,"A":"left","R":[{"T":"Boxes%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":15.189,"w":6.112,"clr":-1,"A":"left","R":[{"T":"checked%20on%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":15.626000000000001,"w":4.630999999999999,"clr":-1,"A":"left","R":[{"T":"6a%20and%206b","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":16.189,"w":7.258000000000001,"clr":-1,"A":"left","R":[{"T":"No.%20of%20children%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":16.689,"w":5.742000000000001,"clr":-1,"A":"left","R":[{"T":"on%206c%20who%3A%20%20","S":2,"TS":[0,10,0,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.7940000000000005,"clr":-1,"A":"left","R":[{"T":"lived%20with%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":17.814,"w":1.7229999999999999,"clr":-1,"A":"left","R":[{"T":"you","S":2,"TS":[0,10,0,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.202,"clr":-1,"A":"left","R":[{"T":"did%20not%20live","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":85.14,"y":19.064,"w":6.073999999999999,"clr":-1,"A":"left","R":[{"T":"with%20you%20due","S":-1,"TS":[0,9.86,0,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.815,"clr":-1,"A":"left","R":[{"T":"divorce%20or","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":85.14,"y":20.064,"w":5.073,"clr":-1,"A":"left","R":[{"T":"separation","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":91.449,"y":20.064,"w":2.2590000000000003,"clr":-1,"A":"left","R":[{"T":"(see%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":85.14,"y":20.564,"w":5.943,"clr":-1,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":85.14,"y":21.314,"w":6.038,"clr":-1,"A":"left","R":[{"T":"Dependents%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":21.814,"w":4.724,"clr":-1,"A":"left","R":[{"T":"on%206c%20not%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":22.314,"w":6.834999999999999,"clr":-1,"A":"left","R":[{"T":"entered%20above","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":23.439,"w":6.666,"clr":-1,"A":"left","R":[{"T":"Add%20numbers%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":23.939,"w":4.258,"clr":-1,"A":"left","R":[{"T":"on%20lines%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.14,"y":24.502,"w":3.1679999999999997,"clr":-1,"A":"left","R":[{"T":"above%20","S":2,"TS":[0,10,0,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.689,"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":-1,"TS":[0,13,0,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.1300000000000001,"clr":-1,"A":"left","R":[{"T":"8a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.265,"y":27.572,"w":4.0169999999999995,"clr":-1,"A":"left","R":[{"T":"Taxable%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":30.168,"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":81.107,"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":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.265,"y":28.322,"w":5.961,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":33.51,"y":28.322,"w":3.593,"clr":-1,"A":"left","R":[{"T":"interest.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":39.685,"y":28.322,"w":3.742,"clr":-1,"A":"left","R":[{"T":"%20Do%20not%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":46.117,"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.496,"y":28.322,"w":1.149,"clr":-1,"A":"left","R":[{"T":"8b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.834,"y":29.072,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"9a","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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.242,"clr":-1,"A":"left","R":[{"T":"11%20a%20","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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.242,"clr":-1,"A":"left","R":[{"T":"12%20a%20","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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.242,"clr":-1,"A":"left","R":[{"T":"14%20a%20","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":65.29,"y":38.01,"w":6.218999999999999,"clr":-1,"A":"left","R":[{"T":"total%20income.","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":54.434,"y":43.322,"w":8.610000000000001,"clr":-1,"A":"left","R":[{"T":"total%20adjustments.","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":55.07,"y":44.822,"w":11.443,"clr":-1,"A":"left","R":[{"T":"adjusted%20gross%20income.%20","S":-1,"TS":[0,13,0,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.053999999999974,"clr":-1,"A":"left","R":[{"T":"For%20Disclosure%2C%20Privacy%20Act%2C%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":3,"TS":[0,12,0,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.1870000000000003,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":3,"TS":[0,12,0,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]}]},{"x":5.708,"y":1,"w":79.14899999999999,"clr":0,"A":"left","R":[{"T":"Taxpayer's%20Date%20of%20Death","S":2,"TS":[0,10,0,0]}]},{"x":26.333,"y":1,"w":73.71,"clr":0,"A":"left","R":[{"T":"Spouse's%20Date%20of%20Death","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.845,"y":8.611,"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":65.335,"y":8.605,"w":3.318,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":65.849,"y":8.605,"w":11.928,"clr":-1,"A":"left","R":[{"T":"tate","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":71.95,"y":8.638,"w":28.259,"clr":-1,"A":"left","R":[{"T":"ZIP%20code","S":-1,"TS":[0,9.299958,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOD","EN":0},"TI":191,"AM":0,"x":5.692,"y":0.466,"w":18.562,"h":0.847,"TU":"TAXPAYER'S DATE OF DEATH","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOD","EN":0},"TI":192,"AM":0,"x":25.757,"y":0.457,"w":18.563,"h":0.847,"TU":"SPOUSE'S DATE OF DEATH","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":193,"AM":1024,"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":194,"AM":1024,"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":195,"AM":1024,"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":196,"AM":1024,"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":197,"AM":1024,"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":198,"AM":1024,"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":199,"AM":1024,"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":200,"AM":1024,"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":201,"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":202,"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":203,"AM":0,"x":6.229,"y":9.604,"w":56.809,"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":204,"AM":0,"x":64.372,"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":205,"AM":0,"x":70.824,"y":9.59,"w":9.033,"h":0.833,"TU":"Zip code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":206,"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":207,"AM":0,"x":44.769,"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":208,"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":215,"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":216,"AM":0,"x":91.575,"y":13.534,"w":11.602,"h":0.833,"TU":"Child SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":217,"AM":0,"x":39.403,"y":14.208,"w":7.957,"h":0.833,"TU":"Enter spouse's first name here"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNM","EN":0},"TI":218,"AM":0,"x":51.664,"y":14.252,"w":7.957,"h":0.833,"TU":"Enter spouse's last name here"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":221,"AM":0,"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":223,"AM":0,"x":32.89,"y":16.343,"w":45.534,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C1","EN":0},"TI":224,"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":225,"AM":0,"x":18.482,"y":19.548,"w":13.435,"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":226,"AM":0,"x":32.226,"y":19.52,"w":12.373,"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":227,"AM":0,"x":44.932,"y":19.567,"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":228,"AM":0,"x":59.804,"y":19.61,"w":12.533,"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":"DEPEND_L6C1_2_","EN":0},"TI":230,"AM":0,"x":18.491,"y":20.306,"w":13.435,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_2_","EN":0},"TI":231,"AM":0,"x":32.311,"y":20.278,"w":12.373,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_2_","EN":0},"TI":232,"AM":0,"x":44.942,"y":20.325,"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_2_","EN":0},"TI":233,"AM":0,"x":59.814,"y":20.368,"w":12.533,"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":"N6C2","EN":0},"TI":235,"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":236,"AM":0,"x":18.487,"y":21.058,"w":13.435,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_3_","EN":0},"TI":237,"AM":0,"x":32.23,"y":21.029,"w":12.373,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_3_","EN":0},"TI":238,"AM":0,"x":44.937,"y":21.077,"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_3_","EN":0},"TI":239,"AM":0,"x":59.809,"y":21.12,"w":12.533,"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":"DEPEND_L6C1_4_","EN":0},"TI":241,"AM":0,"x":18.496,"y":21.816,"w":13.435,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_4_","EN":0},"TI":242,"AM":0,"x":32.24,"y":21.788,"w":12.373,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_4_","EN":0},"TI":243,"AM":0,"x":44.946,"y":21.835,"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_4_","EN":0},"TI":244,"AM":0,"x":59.818,"y":21.878,"w":12.533,"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":"DEPEND_L6C1_5_","EN":0},"TI":246,"AM":0,"x":18.431,"y":22.526,"w":13.435,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_5_","EN":0},"TI":247,"AM":0,"x":32.174,"y":22.498,"w":12.373,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_5_","EN":0},"TI":248,"AM":0,"x":44.881,"y":22.546,"w":14.186,"h":0.833,"TU":"Line 6. c. Dependent 1. (2) Dependent's Social Security Number. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C3","EN":0},"TI":249,"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_L6C4_5_","EN":0},"TI":250,"AM":0,"x":59.753,"y":22.589,"w":12.533,"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":"DEPEND_L6C1_6_","EN":0},"TI":252,"AM":0,"x":18.44,"y":23.285,"w":13.435,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_6_","EN":0},"TI":253,"AM":0,"x":32.184,"y":23.257,"w":12.373,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_6_","EN":0},"TI":254,"AM":0,"x":44.89,"y":23.304,"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_6_","EN":0},"TI":255,"AM":0,"x":59.762,"y":23.347,"w":12.533,"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":257,"AM":0,"x":95.293,"y":24.186,"w":3.637,"h":1.104,"TU":"Add numbers"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":258,"AM":0,"x":84.144,"y":26.224,"w":11.231,"h":0.833,"TU":"7 Wages, salaries, tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":259,"AM":0,"x":84.284,"y":27.721,"w":10.926,"h":0.833,"TU":"8a Taxable interest. Attach Schedule B if required. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":260,"AM":0,"x":65.783,"y":28.519,"w":11.043,"h":0.833,"TU":"Tax-exempt interest. Do not include on line 8a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":261,"AM":0,"x":84.294,"y":29.293,"w":11.091,"h":0.833,"TU":"9a Ordinary Dividends. Attach Schedule B if required."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":262,"AM":0,"x":65.697,"y":29.947,"w":11.043,"h":0.836,"TU":"Qualified Dividends (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":263,"AM":0,"x":84.118,"y":30.68,"w":11.166,"h":0.833,"TU":"13 Unemployment compensation and Alaska Permanent Fund dividends. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":264,"AM":0,"x":42.141,"y":32.194,"w":10.907,"h":0.833,"TU":"11a IRA distributions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":265,"AM":0,"x":84.209,"y":32.248,"w":11.193,"h":0.833,"TU":"11b Taxable amount (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":266,"AM":0,"x":42.066,"y":33.666,"w":10.982,"h":0.833,"TU":"12a Pensions and annuities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":267,"AM":0,"x":84.209,"y":33.639,"w":11.279,"h":0.846,"TU":"12b Taxable amount (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":268,"AM":0,"x":84.135,"y":35.166,"w":11.204,"h":0.833,"TU":"21 Subtract line 20 from line 15. This is your adjusted gross income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20AMOD","EN":0},"TI":269,"AM":0,"x":42.066,"y":36.721,"w":10.982,"h":0.833,"TU":"14a Social security benefits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":270,"AM":0,"x":84.135,"y":36.666,"w":11.352,"h":0.833,"TU":"14b Taxable amount (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":271,"AM":0,"x":84.252,"y":38.147,"w":11.043,"h":0.833,"TU":"24 Enter your standard deduction. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":272,"AM":0,"x":65.691,"y":39.716,"w":10.87,"h":0.833,"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":"L23","EN":0},"TI":273,"AM":0,"x":65.76,"y":40.468,"w":10.854,"h":0.833,"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":274,"AM":0,"x":65.685,"y":41.288,"w":10.892,"h":0.833,"TU":"26 Exemptions. Multiply $3,900 by the number on line 6d. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32C","EN":0},"TI":275,"AM":0,"x":65.566,"y":42.668,"w":11.043,"h":0.833,"TU":"19 Tuition and fees. Attach Form 8917."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":276,"AM":0,"x":84.105,"y":43.509,"w":11.22,"h":0.833,"TU":"34 Add lines 29 through 33. These are your total credits. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":277,"AM":16,"x":84.242,"y":44.869,"w":11.132,"h":0.851,"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":209,"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":210,"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":211,"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":212,"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":213,"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":214,"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":219,"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":220,"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":222,"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":229,"AM":0,"x":78.11,"y":19.478,"w":1.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_2_","EN":0},"TI":234,"AM":0,"x":78.119,"y":20.236,"w":1.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_3_","EN":0},"TI":240,"AM":0,"x":78.114,"y":20.988,"w":1.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_4_","EN":0},"TI":245,"AM":0,"x":78.124,"y":21.746,"w":1.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_5_","EN":0},"TI":251,"AM":0,"x":78.058,"y":22.456,"w":1.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_6_","EN":0},"TI":256,"AM":0,"x":78.068,"y":23.215,"w":1.525,"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":65.177,"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":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.929,"w":6.129000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%2C%20credits%2C%20","S":-1,"TS":[0,11.8,0,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,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.579,"w":4.666,"clr":-1,"A":"left","R":[{"T":"payments","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":16.403,"y":2.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.315,"y":3.572,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,13,0,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.871,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11.8,0,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.575,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11.3,0,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.8,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.831999999999999,"clr":-1,"A":"left","R":[{"T":"Total%20boxes%20","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#221f1f","x":64.102,"y":4.291,"w":4.630000000000001,"clr":-1,"A":"left","R":[{"T":"checked%20%20","S":-1,"TS":[0,11.6,0,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":-1,"TS":[0,13,0,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.909000000000001,"clr":-1,"A":"left","R":[{"T":"Standard%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":6.211,"w":5.463000000000001,"clr":-1,"A":"left","R":[{"T":"Deduction%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":6.648,"w":2.611,"clr":-1,"A":"left","R":[{"T":"for%E2%80%94%20","S":-1,"TS":[0,10.5,0,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.771,"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":-1,"TS":[0,13,0,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":29.162,"y":6.572,"w":9.296,"clr":-1,"A":"left","R":[{"T":"standard%20deduction","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":45.139,"y":6.572,"w":63.89500000000001,"clr":-1,"A":"left","R":[{"T":".24","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":7.321999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":8.072,"w":6.183,"clr":-1,"A":"left","R":[{"T":"Exemptions.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.417,"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":-1,"TS":[0,13,0,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":30.021,"y":9.572,"w":7.552,"clr":-1,"A":"left","R":[{"T":"taxable%20income.","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":10.322,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Tax%2C%20","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":51.959,"y":17.072,"w":5.998000000000001,"clr":-1,"A":"left","R":[{"T":"total%20credits.","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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.641,"y":18.572,"w":4.166,"clr":-1,"A":"left","R":[{"T":"total%20tax.","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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.6860000000000002,"clr":-1,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":22.322,"w":13.050999999999997,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC).","S":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":58.905,"y":26.072,"w":7.369,"clr":-1,"A":"left","R":[{"T":"total%20payments.","S":-1,"TS":[0,13,0,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.704,"clr":-1,"A":"left","R":[{"T":"Refund%20","S":4,"TS":[0,14,0,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":-1,"TS":[0,13,0,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":38.653,"y":27.572,"w":4.426,"clr":-1,"A":"left","R":[{"T":"overpaid.","S":-1,"TS":[0,13,0,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.6860000000000002,"clr":-1,"A":"left","R":[{"T":"43a","S":-1,"TS":[0,13,0,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":39.888,"y":28.322,"w":8.075999999999999,"clr":-1,"A":"left","R":[{"T":"refunded%20to%20you.%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":52.242,"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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":-1,"TS":[0,13,0,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":42.248,"y":32.072,"w":7.128,"clr":-1,"A":"left","R":[{"T":"applied%20to%20your","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":32.822,"w":9.259000000000002,"clr":-1,"A":"left","R":[{"T":"2014%20estimated%20tax.","S":-1,"TS":[0,13,0,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.018,"clr":-1,"A":"left","R":[{"T":"Amount%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.94,"y":34.617,"w":4,"clr":-1,"A":"left","R":[{"T":"you%20owe","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":16.403,"y":33.572,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":33.572,"w":8.574000000000002,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20owe.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.526,"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":-1,"TS":[0,13,0,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.463000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20party%20","S":-1,"TS":[0,13.2,0,0]}]},{"oc":"#221f1f","x":5.94,"y":36.987,"w":4.332,"clr":-1,"A":"left","R":[{"T":"designee","S":-1,"TS":[0,13.2,0,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.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":-1,"TS":[0,11,0,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.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,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.389,"clr":-1,"A":"left","R":[{"T":"Sign%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.255,"w":2.13,"clr":-1,"A":"left","R":[{"T":"here","S":-1,"TS":[0,15,0,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.3880000000000003,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":43.662,"w":4.667000000000002,"clr":-1,"A":"left","R":[{"T":"preparer%20%20","S":-1,"TS":[0,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":44.562,"w":3.963,"clr":-1,"A":"left","R":[{"T":"use%20only","S":-1,"TS":[0,13.56,0,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":65.271,"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.1870000000000003,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":-1,"TS":[0,13,0,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":47.746,"y":44.79,"w":1.759,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":59.405,"y":44.79,"w":2.352,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":67.753,"y":44.79,"w":1.518,"clr":-1,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,9.3,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":278,"AM":0,"x":84.066,"y":3.049,"w":11.275,"h":0.833,"TU":"Tax, credits, 22 Enter the amount from line 21 (adjusted gross income). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N35A","EN":0},"TI":281,"AM":0,"x":78.126,"y":4.023,"w":3.26,"h":1.005},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":285,"AM":0,"x":85.286,"y":6.769,"w":9.895,"h":0.833,"TU":"36 Federal income tax withheld from Forms W-2 and 1099. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFTDED","EN":0},"TI":286,"AM":0,"x":85.318,"y":7.48,"w":9.895,"h":0.833,"TU":"Subtract line 24 from line 22. If line 24 is more than 22, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":287,"AM":0,"x":85.329,"y":8.218,"w":10.012,"h":0.833,"TU":"26 Exemptions. Multiply $3,900 by the number on line 6d. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":288,"AM":16,"x":85.379,"y":9.647,"w":10.105,"h":0.833,"TU":"39 Additional child tax credit. Attach Schedule 8812. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":289,"AM":0,"x":85.488,"y":10.475,"w":9.973,"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":"L44","EN":0},"TI":290,"AM":0,"x":68.178,"y":11.916,"w":10.029,"h":0.833,"TU":"45 Amount you owe. Subtract line 41 from line 35. For details on how to pay, see instructions. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ELDERLY","EN":0},"TI":291,"AM":0,"x":68.167,"y":13.416,"w":9.991,"h":0.833,"TU":"30 Credit for the elderly or the disabled. Attach Schedule R."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":292,"AM":0,"x":68.195,"y":14.323,"w":10,"h":0.833,"TU":"31 Education credits from Form 8863, line 19. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSCCRED","EN":0},"TI":293,"AM":0,"x":67.915,"y":15.698,"w":9.991,"h":0.833,"TU":"32 Retirement savings contribution credit. Attach Form 8880"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":294,"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":"L50","EN":0},"TI":295,"AM":0,"x":85.499,"y":17.118,"w":9.863,"h":0.86,"TU":"34 Add lines 29 through 33. These are your total credits. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L57","EN":0},"TI":296,"AM":0,"x":85.313,"y":18.619,"w":10.165,"h":0.833,"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":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":297,"AM":0,"x":68.311,"y":20.209,"w":9.764,"h":0.833,"TU":"36 Federal income tax withheld from Forms W-2 and 1099. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":298,"AM":0,"x":68.076,"y":21.554,"w":9.794,"h":0.833,"TU":"37 2013 estimated tax payments and amount applied from 2012 return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60","EN":0},"TI":299,"AM":0,"x":67.892,"y":22.48,"w":9.813,"h":0.833,"TU":"38a Earned income credit (EIC). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":300,"AM":0,"x":50.56,"y":23.92,"w":9.596,"h":0.833,"TU":"Nontaxable combat pay election"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L62","EN":0},"TI":301,"AM":0,"x":68.138,"y":24.778,"w":9.89,"h":0.833,"TU":"39 Additional child tax credit. Attach Schedule 8812. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOPE","EN":0},"TI":302,"AM":0,"x":68.084,"y":25.608,"w":9.808,"h":0.833,"TU":"40 American opportunity credit from Form 8863, line 8. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65","EN":0},"TI":303,"AM":0,"x":85.186,"y":26.087,"w":10.167,"h":0.856,"TU":"41 Add lines 36, 37, 38a, 39, and 40. These are your total payments. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L66","EN":0},"TI":304,"AM":0,"x":85.393,"y":27.531,"w":10.034,"h":0.833,"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":"number","TypeInfo":{}},"id":{"Id":"L67A","EN":0},"TI":306,"AM":0,"x":85.54,"y":28.468,"w":9.985,"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":307,"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":310,"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":"L68","EN":0},"TI":311,"AM":0,"x":68.223,"y":32.889,"w":9.775,"h":0.833,"TU":"44 Amount of line 42 you want applied to your 2014 estimated tax. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":312,"AM":0,"x":85.3,"y":34.2,"w":10.15,"h":0.866,"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":"L70","EN":0},"TI":313,"AM":0,"x":67.817,"y":35.232,"w":10.111,"h":0.833,"TU":"46 Estimated tax penalty (see instructions). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":316,"AM":0,"x":27.809,"y":37.464,"w":21.706,"h":0.833,"TU":"Designee's name"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":317,"AM":0,"x":58.088,"y":37.392,"w":15.644,"h":0.833,"TU":"Phone number"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":318,"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":319,"AM":0,"x":59.483,"y":40.298,"w":19.152,"h":0.833,"TU":"Your occupation"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":320,"AM":0,"x":80.156,"y":40.339,"w":18.782,"h":0.896,"TU":"Daytime phone number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":321,"AM":0,"x":59.814,"y":41.874,"w":18.924,"h":0.833,"TU":"Spouse’s occupation"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":322,"AM":0,"x":86.708,"y":42.016,"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":"PNAME","EN":0},"TI":323,"AM":0,"x":18.563,"y":43.479,"w":25.527,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PDAT","EN":0},"TI":324,"AM":0,"x":65.305,"y":43.428,"w":12.659,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PSSN","EN":0},"TI":326,"AM":0,"x":86.801,"y":43.422,"w":14.98,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":327,"AM":0,"x":28.58,"y":44.226,"w":49.298,"h":0.833,"TU":"Firm's Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PEIN","EN":0},"TI":328,"AM":0,"x":85.799,"y":44.276,"w":15.937,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PADD","EN":0},"TI":329,"AM":0,"x":28.589,"y":45.004,"w":18.377,"h":0.833,"TU":"Firm's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCITY","EN":0},"TI":330,"AM":0,"x":50.245,"y":45.045,"w":8.532,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":331,"AM":0,"x":62.365,"y":45.019,"w":4.741,"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":"PZIP","EN":0},"TI":332,"AM":0,"x":70.168,"y":45.044,"w":7.731,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PPHO","EN":0},"TI":333,"AM":0,"x":84.638,"y":45.011,"w":17.135,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A1","EN":0},"TI":279,"AM":0,"x":27.207,"y":3.693,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A2","EN":0},"TI":280,"AM":0,"x":56.928,"y":3.716,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A3","EN":0},"TI":282,"AM":0,"x":27.188,"y":4.513,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A4","EN":0},"TI":283,"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":284,"AM":0,"x":79.216,"y":5.889,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":305,"AM":0,"x":79.571,"y":28.485,"w":1.629,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":308,"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":309,"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":314,"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":315,"AM":0,"x":94.945,"y":35.945,"w":1.723,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PSEX","EN":0},"TI":325,"AM":0,"x":83.613,"y":42.844,"w":1.375,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/A1040EZ.content.txt b/test/data/ef/form/A1040EZ.content.txt new file mode 100755 index 00000000..db2477d4 --- /dev/null +++ b/test/data/ef/form/A1040EZ.content.txt @@ -0,0 +1,308 @@ +Form +1040EZ +Department of the Treasury—Internal Revenue Service +Income Tax Return for Single and +Joint Filers With No Dependents +(99) +2013 +OMB No. 1545-0074 +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse’s social security number +c +Make sure the SSN(s) +above are correct. +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +Foreign country name +Foreign province/state/county +Foreign postal code +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 +Spouse +Income +Attach +Form(s) W-2 +here. +Enclose, but do +not attach, any +payment. +1 +Wages, salaries, and tips. This should be shown in box 1 of your Form(s) W-2. +Attach your Form(s) W-2. +1 +2 +Taxable interest. If the total is over $1,500, you cannot use Form 1040EZ. +2 +3 +Unemployment compensation and Alaska Permanent Fund dividends (see instructions). +3 +4 +Add lines 1, 2, and 3. This is your +adjusted gross income. +4 +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 +Spouse +If no one can claim you (or your spouse if a joint return), enter $10,000 if +single; + +$20,000 if +married filing jointly. +See back for explanation. +5 +6 +Subtract line 5 from line 4. If line 5 is larger than line 4, enter -0-. +This is your +taxable income. + +a +6 +Payments, +Credits, +and Tax +7 +Federal income tax withheld from Form(s) W-2 and 1099. +7 +8a +Earned income credit (EIC) +(see instructions). +8a +b +Nontaxable combat pay election. +8b +9 +Add lines 7 and 8a. These are your +total payments and credits. +a +9 +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. +10 +11a +If line 9 is larger than line 10, subtract line 10 from line 9. This is your +refund. +If Form 8888 is attached, check here +a +11a +Refund +Have it directly +deposited! See +instructions and +fill in 11b, 11c, +and 11d or +Form 8888. +a +b +Routing number +a + +c + Type: +Checking +Savings +a +d +Account number +Amount +You Owe +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. + +a +12 +Third Party +Designee +Do you want to allow another person to discuss this return with the IRS (see instructions)? +Yes. + Complete below. +No +Designee’s +name +a +Phone +no. +a +Personal identification +number (PIN) +a +Sign +Here +Joint return? See +instructions. +Keep a copy for +your records. +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 +accurately lists all amounts and sources of income I received during the tax year. Declaration of preparer (other than the taxpayer) is based +on all information of which the preparer has any knowledge. +F +Your signature +Date +Your occupation +Daytime phone number +Spouse’s signature. If a joint return, +both + must sign. +Date +Spouse’s occupation +If the IRS sent you an Identity Protection +PIN, enter it +here (see inst.) +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer’s signature +Date +Check if +self-employed + PTIN +Firm’s name +a +Firm’s address +a +Firm's EIN +a +Phone no. +For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see instructions. +Cat. No. 11329W +Form +1040EZ + (2013) +City +State +ZIP +Taxpayer's Date of Death +Spouse's Date of Death +City, town or post office. If you have a foreign address, also complete spaces below (see instructions). +S +tate +ZIP code +----------------Page (0) Break---------------- +Form 1040EZ (2013) +Page +2 +Use this form +if +• Your filing status is single or married filing jointly. If you are not sure about your filing status, see instructions. +• 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 +January 1, 1949, you are considered to be age 65 at the end of 2013. +• You do not claim any dependents. For information on dependents, see Pub. 501. +• Your taxable income (line 6) is less than $100,000. +• You do not claim any adjustments to income. For information on adjustments to income, use the TeleTax topics listed under +Adjustments to Income + at +www.irs.gov/taxtopics + (see instructions). +• 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 +any tax. You do not need a qualifying child to claim the EIC. For information on credits, use the TeleTax topics listed under +Tax Credits + at +www.irs.gov/taxtopics + (see instructions). If you received a Form 1098-T or paid higher education expenses, you +may be eligible for a tax credit or deduction that you must claim on Form 1040A or Form 1040. For more information on tax +benefits for education, see Pub. 970. +• You had only wages, salaries, tips, taxable scholarship or fellowship grants, unemployment compensation, or Alaska +Permanent Fund dividends, and your taxable interest was not over $1,500. But if you earned tips, including allocated tips, that + +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 +planning to use Form 1040EZ for a child who received Alaska Permanent Fund dividends, see instructions. +Filling in your +return +If you received a scholarship or fellowship grant or tax-exempt interest income, such as on municipal bonds, see the +instructions before filling in the form. Also, see the instructions if you received a Form 1099-INT showing federal income tax +withheld or if federal income tax was withheld from your unemployment compensation or Alaska Permanent Fund dividends. +For tips on +how to avoid +common +mistakes, see +instructions. +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 +report all your taxable interest, including interest from banks, savings and loans, credit unions, etc., even if you do not get + a +Form 1099-INT. +Worksheet +for Line 5 — +Dependents +Who Checked +One or Both +Boxes +(keep a copy for +your records) +Use this worksheet to figure the amount to enter on line 5 if someone can claim you (or your spouse if married +filing jointly) as a dependent, even if that person chooses not to do so. To find out if someone can claim you as a +dependent, see Pub. 501. +A. +Amount, if any, from line 1 on front +...... ++ +350.00 Enter total + +a +A . +B. +Minimum standard deduction +..................... +B . +C. +Enter the +larger +of line A or line B here +.................. +C . +D. +Maximum standard deduction. If +single, +enter $6,100; if +married filing jointly, +enter $12,200 . +D . +E. +Enter the +smaller +of line C or line D here. This is your standard deduction +........ +E . +F. +Exemption amount. +• If single, enter -0-. +• If married filing jointly and — +—both you and your spouse can be claimed as dependents, enter -0-. +—only one of you can be claimed as a dependent, enter $3,900. +} +F . +G. +Add lines E and F. Enter the total here and on line 5 on the front +.......... +G . +If you did not check any boxes on line 5, + enter on line 5 the amount shown below that applies to you. +• Single, enter $10,000. This is the total of your standard deduction ($6,100) and your exemption ($3,900). +• Married filing jointly, enter $20,000. This is the total of your standard deduction ($12,200), your exemption ($3,900), and +your spouse's exemption ($3,900). +Mailing +Return +Mail your return by +April 15, 2014. +Mail it to the address shown on the last page of the instructions. +Form +1040EZ + (2013) +1,000 +----------------Page (1) Break---------------- diff --git a/test/data/ef/form/A1040EZ.fields.json b/test/data/ef/form/A1040EZ.fields.json new file mode 100755 index 00000000..74fe01b3 --- /dev/null +++ b/test/data/ef/form/A1040EZ.fields.json @@ -0,0 +1 @@ +[{"id":"PECY","type":"box","calc":false,"value":""},{"id":"SECY","type":"box","calc":false,"value":""},{"id":"DXT","type":"box","calc":false,"value":""},{"id":"DXS","type":"box","calc":false,"value":""},{"id":"F8888","type":"box","calc":false,"value":""},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCC"},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCS"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDY"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDN"},{"id":"PSEX","type":"box","calc":false,"value":""},{"id":"TPDOD","type":"date","calc":false,"value":""},{"id":"SPDOD","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"MI","type":"mask","calc":true,"value":""},{"id":"LNAM","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SNAM","type":"alpha","calc":true,"value":""},{"id":"SMI","type":"mask","calc":true,"value":""},{"id":"SLNM","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L39","type":"number","calc":false,"value":""},{"id":"L58","type":"number","calc":false,"value":""},{"id":"L60","type":"number","calc":false,"value":""},{"id":"NTCOMBAT","type":"number","calc":false,"value":""},{"id":"L65","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L67A","type":"number","calc":false,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCNO","type":"mask","calc":false,"value":""},{"id":"L69","type":"number","calc":false,"value":""},{"id":"DESNAM","type":"alpha","calc":false,"value":""},{"id":"DESPH","type":"phone","calc":false,"value":""},{"id":"DESPIN","type":"mask","calc":false,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"DTPHO","type":"phone","calc":false,"value":""},{"id":"SOCC","type":"alpha","calc":false,"value":""},{"id":"IDTHEFT","type":"mask","calc":false,"value":""},{"id":"PNAME","type":"alpha","calc":false,"value":""},{"id":"PDAT","type":"date","calc":false,"value":""},{"id":"PSSN","type":"alpha","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":false,"value":""},{"id":"PEIN","type":"mask","calc":false,"value":""},{"id":"PADD","type":"alpha","calc":false,"value":""},{"id":"PCITY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"PPHO","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/A1040EZ.json b/test/data/ef/form/A1040EZ.json new file mode 100755 index 00000000..5be17de7 --- /dev/null +++ b/test/data/ef/form/A1040EZ.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1040EZ","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":"#201e1f","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},{"oc":"#221f1f","x":7.222,"y":9.092,"w":0.75,"l":65.674},{"oc":"#221f1f","x":6.441,"y":9.054,"w":0.75,"l":65.674}],"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}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#ebf5e9","x":16.09,"y":2.251,"w":83.097,"h":41.25,"clr":-1},{"oc":"#ebf5e9","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.04,"y":48.814,"w":1.887,"h":0.686,"clr":0}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.573,"w":2.638,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[2,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.476,"w":3.64,"clr":-1,"A":"left","R":[{"T":"1040EZ","S":-1,"TS":[2,17,0,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":15.259999999999998,"clr":-1,"A":"left","R":[{"T":"Income%20Tax%20Return%20for%20Single%20and%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":19.552,"y":3.4530000000000003,"w":14.959999999999996,"clr":-1,"A":"left","R":[{"T":"Joint%20Filers%20With%20No%20Dependents%20%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":50.407,"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.4,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,19,0,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.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,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.776000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number%20","S":-1,"TS":[0,9.3,0,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":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.937000000000001,"clr":-1,"A":"left","R":[{"T":"Presidential%20Election%20Campaign","S":-1,"TS":[0,9.3,0,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.149,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":94.729,"y":11.013,"w":3.575,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.008,"w":3.2800000000000002,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.956,"w":3.138,"clr":-1,"A":"left","R":[{"T":"Attach%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":13.519,"w":5.776000000000001,"clr":-1,"A":"left","R":[{"T":"Form(s)%20W-2%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":14.081,"w":2.138,"clr":-1,"A":"left","R":[{"T":"here.","S":-1,"TS":[2,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.75,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[2,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.75,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":14.01,"w":0.75,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[2,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.75,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":15.510000000000002,"w":0.75,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[2,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.75,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":17.01,"w":0.75,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[2,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":44.663,"y":17.01,"w":9.694,"clr":-1,"A":"left","R":[{"T":"adjusted%20gross%20income.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":80.672,"y":17.01,"w":0.75,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":17.773,"w":0.75,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[2,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.778,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":19.323,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[2,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":69.147,"y":20.023,"w":2.7780000000000005,"clr":-1,"A":"left","R":[{"T":"single%3B","S":-1,"TS":[2,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":9.5,"clr":-1,"A":"left","R":[{"T":"married%20filing%20jointly.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":44.706,"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.75,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":21.523,"w":0.75,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[2,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":31.042,"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.75,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":23.453,"w":5.02,"clr":-1,"A":"left","R":[{"T":"Payments%2C%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":24.203,"w":3.8199999999999994,"clr":-1,"A":"left","R":[{"T":"Credits%2C%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":24.953,"w":3.54,"clr":-1,"A":"left","R":[{"T":"and%20Tax","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":20.016,"y":23.01,"w":0.75,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[2,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.75,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":23.76,"w":1.25,"clr":-1,"A":"left","R":[{"T":"8a%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":23.264,"y":23.76,"w":12.415,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC)%20%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":42.468,"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.67,"y":23.76,"w":1.25,"clr":-1,"A":"left","R":[{"T":"8a%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":20.79,"y":24.51,"w":0.806,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[2,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.5,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[2,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.216,"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.5,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.243,"y":26.029,"w":1,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":26.023,"w":2.167,"clr":-1,"A":"left","R":[{"T":"Tax.%20","S":-1,"TS":[2,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":5.306,"clr":-1,"A":"left","R":[{"T":"line%206%20above%20","S":-1,"TS":[2,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,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.243,"y":27.573,"w":1.75,"clr":-1,"A":"left","R":[{"T":"11a%20","S":-1,"TS":[2,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":67.389,"y":27.573,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"refund.%20","S":-1,"TS":[2,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.5,"clr":-1,"A":"left","R":[{"T":"11a","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":27.797,"w":3.12,"clr":-1,"A":"left","R":[{"T":"Refund","S":-1,"TS":[2,15,0,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.806,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[2,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.694,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[2,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.806,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[2,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.06,"clr":-1,"A":"left","R":[{"T":"Amount%20%20","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":32.68,"w":3.92,"clr":-1,"A":"left","R":[{"T":"You%20Owe","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":19.243,"y":32.023,"w":1.25,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[2,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.491,"y":32.739,"w":7.500000000000001,"clr":-1,"A":"left","R":[{"T":"amount%20you%20owe.%20","S":-1,"TS":[2,11.8,1,0]}]},{"oc":"#221f1f","x":36.835,"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.25,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":33.899,"w":5.180000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20Party%20","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":34.586,"w":4.140000000000001,"clr":-1,"A":"left","R":[{"T":"Designee","S":-1,"TS":[2,13,0,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.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.542,"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.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,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.5599999999999996,"clr":-1,"A":"left","R":[{"T":"Sign%20%20","S":45,"TS":[2,14,0,0]}]},{"oc":"#221f1f","x":5.94,"y":36.522,"w":2.08,"clr":-1,"A":"left","R":[{"T":"Here","S":45,"TS":[2,14,0,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.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":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.746,"y":38.688,"w":2.167,"clr":-1,"A":"left","R":[{"T":"both","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.353,"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.3880000000000003,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.398,"w":4.445,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.223,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":4,"TS":[0,14,0,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":35.605999999999995,"clr":-1,"A":"left","R":[{"T":"For%20Disclosure%2C%20Privacy%20Act%2C%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[2,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.7980000000000005,"clr":-1,"A":"left","R":[{"T":"1040EZ%20","S":-1,"TS":[0,13,0,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]}]},{"oc":"#221f1f","x":41.043,"y":42.541,"w":1.759,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":49.78,"y":42.541,"w":2.352,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":58.127,"y":42.541,"w":1.518,"clr":-1,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,9.3,0,0]}]},{"x":6.052,"y":0.938,"w":79.14899999999999,"clr":0,"A":"left","R":[{"T":"Taxpayer's%20Date%20of%20Death","S":2,"TS":[0,10,0,0]}]},{"x":26.677,"y":0.938,"w":73.71,"clr":0,"A":"left","R":[{"T":"Spouse's%20Date%20of%20Death","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.921,"y":8.701,"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":67.422,"y":8.721,"w":3.318,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":67.935,"y":8.721,"w":11.928,"clr":-1,"A":"left","R":[{"T":"tate","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":73.025,"y":8.729,"w":28.259,"clr":-1,"A":"left","R":[{"T":"ZIP%20code","S":-1,"TS":[0,9.299958,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOD","EN":0},"TI":334,"AM":0,"x":6.104,"y":0.375,"w":18.562,"h":0.847,"TU":"TAXPAYER'S DATE OF DEATH","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOD","EN":0},"TI":335,"AM":0,"x":26.093,"y":0.393,"w":18.562,"h":0.847,"TU":"SPOUSE'S DATE OF DEATH","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":336,"AM":1024,"x":6.234,"y":5.114,"w":25.772,"h":0.879,"TU":"Page 1. Your first name and initial."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":337,"AM":1024,"x":32.21,"y":5.084,"w":4.744,"h":0.912,"TU":"Taxpayer middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":338,"AM":1024,"x":37.189,"y":5.154,"w":43.313,"h":0.833,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":339,"AM":1024,"x":80.634,"y":5.117,"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":340,"AM":1024,"x":6.076,"y":6.634,"w":25.996,"h":0.847,"TU":"If a joint return, spouse's first name and initial."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":341,"AM":1024,"x":32.104,"y":6.581,"w":4.969,"h":0.912,"TU":"Spouse middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":342,"AM":1024,"x":37.189,"y":6.573,"w":43.313,"h":0.876,"TU":"Spouse's Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":343,"AM":1024,"x":80.485,"y":6.594,"w":18.563,"h":0.887,"TU":"Spouse's social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":344,"AM":0,"x":6.062,"y":8.067,"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":345,"AM":0,"x":71.809,"y":8.062,"w":8.663,"h":0.891,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":346,"AM":0,"x":6.21,"y":9.611,"w":60.475,"h":0.845,"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":347,"AM":0,"x":66.963,"y":9.518,"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":348,"AM":0,"x":72.256,"y":9.529,"w":7.881,"h":0.857,"TU":"Zip code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":349,"AM":0,"x":6.178,"y":11.101,"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":350,"AM":0,"x":44.599,"y":11.149,"w":24.75,"h":0.833,"TU":"Foreign province or county. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":351,"AM":0,"x":69.373,"y":11.151,"w":11.137,"h":0.833,"TU":"Foreign postal code. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":354,"AM":0,"x":82.755,"y":12.719,"w":12.375,"h":0.833,"TU":"Payments, Credits, and Tax. Line 7. Federal income tax withheld from Form(s) W-2 and 1099. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":355,"AM":0,"x":82.792,"y":14.259,"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. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":356,"AM":0,"x":82.904,"y":15.755,"w":12.375,"h":0.833,"TU":"Line 3. Unemployment compensation and Alaska Permanent Fund dividends (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":357,"AM":16,"x":82.755,"y":17.226,"w":12.375,"h":0.833,"TU":"Line 5. If no one can claim you (or your spouse if a joint return), enter $9,500 if single; $19,000 if married filing jointly. See back for explanation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":360,"AM":0,"x":82.83,"y":20.955,"w":12.375,"h":0.833,"TU":"Line 5. If no one can claim you (or your spouse if a joint return), enter $9,500 if single; $19,000 if married filing jointly. See back for explanation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":361,"AM":16,"x":82.83,"y":22.453,"w":12.375,"h":0.833,"TU":"Line 6. Subtract line 5 from line 4. If line 5 is larger than line 4, enter zero. \rThis is your taxable income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":362,"AM":0,"x":82.83,"y":23.269,"w":12.375,"h":0.833,"TU":"Payments, Credits, and Tax. Line 7. Federal income tax withheld from Form(s) W-2 and 1099. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60","EN":0},"TI":363,"AM":0,"x":82.83,"y":24.032,"w":12.375,"h":0.833,"TU":"Line 8a. Earned income credit (E I C) (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":364,"AM":0,"x":61.845,"y":24.74,"w":12.269,"h":0.833,"TU":"Line 8b. Nontaxable combat pay election. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65","EN":0},"TI":365,"AM":0,"x":82.83,"y":25.502,"w":12.375,"h":0.833,"TU":"Line 9. Add lines 7 and 8a. These are your total payments and credits. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":366,"AM":0,"x":82.904,"y":26.972,"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. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L67A","EN":0},"TI":368,"AM":0,"x":82.83,"y":28.469,"w":12.375,"h":0.833,"TU":"Line 11a. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":369,"AM":0,"x":35.986,"y":29.693,"w":22.06,"h":0.833,"TU":"Routing","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":372,"AM":0,"x":35.832,"y":31.056,"w":42.133,"h":0.833,"TU":"Line 11d. Account Number. 17 digits.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":373,"AM":0,"x":82.904,"y":32.907,"w":12.375,"h":0.833,"TU":"Amount you owe. 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. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":376,"AM":0,"x":27.195,"y":35.194,"w":22.275,"h":0.833,"TU":"Designee's name. "},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":377,"AM":0,"x":56.961,"y":35.221,"w":14.85,"h":0.833,"TU":"Designee's Phone number. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":378,"AM":0,"x":86.743,"y":35.167,"w":11.138,"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":379,"AM":0,"x":59.427,"y":38.113,"w":19.8,"h":0.847,"TU":"Sign Here. Joint return? See instructions. Keep a copy for your records. Your occupation."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":380,"AM":0,"x":79.342,"y":38.099,"w":19.8,"h":0.875,"TU":"Daytime phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":381,"AM":0,"x":59.502,"y":39.621,"w":19.8,"h":0.854,"TU":"Spouse's occupation. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":382,"AM":0,"x":86.626,"y":39.74,"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":"PNAME","EN":0},"TI":383,"AM":0,"x":16.135,"y":41.224,"w":19.687,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PDAT","EN":0},"TI":384,"AM":0,"x":67.003,"y":41.14,"w":11.985,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PSSN","EN":0},"TI":386,"AM":0,"x":88.003,"y":41.167,"w":11.012,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":387,"AM":0,"x":26.665,"y":41.992,"w":41.212,"h":0.833,"TU":"Firm's Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PEIN","EN":0},"TI":388,"AM":0,"x":76.022,"y":42.025,"w":23.124,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PADD","EN":0},"TI":389,"AM":0,"x":26.636,"y":42.822,"w":14.559,"h":0.833,"TU":"Firm's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCITY","EN":0},"TI":390,"AM":0,"x":43.381,"y":42.79,"w":6.286,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":391,"AM":0,"x":52.678,"y":42.764,"w":4.741,"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":"PZIP","EN":0},"TI":392,"AM":0,"x":60.137,"y":42.789,"w":7.731,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PPHO","EN":0},"TI":393,"AM":0,"x":74.648,"y":42.756,"w":24.547,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":352,"AM":0,"x":88.21,"y":11.236,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":353,"AM":0,"x":93.241,"y":11.236,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DXT","EN":0},"TI":358,"AM":0,"x":23.519,"y":19.423,"w":1.719,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DXS","EN":0},"TI":359,"AM":0,"x":34.656,"y":19.423,"w":1.719,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":367,"AM":0,"x":49.601,"y":28.352,"w":1.719,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":370,"AM":0,"x":66.773,"y":29.492,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":371,"AM":0,"x":75.465,"y":29.551,"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":374,"AM":0,"x":75.392,"y":33.758,"w":1.645,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDN","EN":0},"TI":375,"AM":0,"x":94.04,"y":33.744,"w":1.484,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PSEX","EN":0},"TI":385,"AM":0,"x":84.437,"y":40.557,"w":1.525,"h":0.833}]}]},{"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":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.016,"w":6.279999999999999,"clr":-1,"A":"left","R":[{"T":"Use%20this%20form%20","S":-1,"TS":[2,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.891,"w":0.56,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[2,13.56,0,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.28,"clr":-1,"A":"left","R":[{"T":"Filling%20in%20your%20","S":-1,"TS":[2,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.641,"w":2.68,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[2,13.56,0,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.4399999999999995,"clr":-1,"A":"left","R":[{"T":"Worksheet%20%20","S":-1,"TS":[2,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.641,"w":5.819999999999999,"clr":-1,"A":"left","R":[{"T":"for%20Line%205%20%E2%80%94%20","S":-1,"TS":[2,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":27.516,"w":5.62,"clr":-1,"A":"left","R":[{"T":"Dependents%20","S":-1,"TS":[2,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":28.391,"w":6.499999999999999,"clr":-1,"A":"left","R":[{"T":"Who%20Checked%20","S":-1,"TS":[2,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.266,"w":5.64,"clr":-1,"A":"left","R":[{"T":"One%20or%20Both%20","S":-1,"TS":[2,13.56,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.142,"w":2.7800000000000002,"clr":-1,"A":"left","R":[{"T":"Boxes","S":-1,"TS":[2,13.56,0,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.222,"clr":-1,"A":"left","R":[{"T":"A.%20","S":-1,"TS":[2,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":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","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.765,"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.222,"clr":-1,"A":"left","R":[{"T":"A%20.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":29.823,"w":1.167,"clr":-1,"A":"left","R":[{"T":"B.%20","S":-1,"TS":[2,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.167,"clr":-1,"A":"left","R":[{"T":"B%20.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":30.573,"w":1.222,"clr":-1,"A":"left","R":[{"T":"C.%20","S":-1,"TS":[2,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":2.86,"clr":-1,"A":"left","R":[{"T":"larger%20","S":-1,"TS":[2,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.222,"clr":-1,"A":"left","R":[{"T":"C%20.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":31.323,"w":1.222,"clr":-1,"A":"left","R":[{"T":"D.%20","S":-1,"TS":[2,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":42.194,"y":31.323,"w":2.9450000000000003,"clr":-1,"A":"left","R":[{"T":"single%2C%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":46.749,"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.631,"y":31.323,"w":9.5,"clr":-1,"A":"left","R":[{"T":"married%20filing%20jointly%2C%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":71.326,"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":82.252,"y":31.323,"w":0.25,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.194,"y":31.323,"w":1.222,"clr":-1,"A":"left","R":[{"T":"D%20.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":32.072,"w":1.167,"clr":-1,"A":"left","R":[{"T":"E.%20","S":-1,"TS":[2,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.416,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[2,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.167,"clr":-1,"A":"left","R":[{"T":"E%20.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":32.823,"w":1.111,"clr":-1,"A":"left","R":[{"T":"F.%20","S":-1,"TS":[2,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.111,"clr":-1,"A":"left","R":[{"T":"F%20.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":36.572,"w":1.278,"clr":-1,"A":"left","R":[{"T":"G.%20","S":-1,"TS":[2,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.278,"clr":-1,"A":"left","R":[{"T":"G%20.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":38.073,"w":17.058000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20check%20any%20boxes%20on%20line%205%2C","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":45.939,"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.6,"clr":-1,"A":"left","R":[{"T":"Mailing%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.89,"w":3,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[2,15,0,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":32.097,"y":42.498,"w":6.5280000000000005,"clr":-1,"A":"left","R":[{"T":"April%2015%2C%202014.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":42.195,"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.5200000000000005,"clr":-1,"A":"left","R":[{"T":"1040EZ","S":-1,"TS":[0,13,0,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.878,"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 diff --git a/test/data/ef/form/EFIDCEZ.content.txt b/test/data/ef/form/EFIDCEZ.content.txt new file mode 100755 index 00000000..78ef6ac9 --- /dev/null +++ b/test/data/ef/form/EFIDCEZ.content.txt @@ -0,0 +1,84 @@ +Section 2: Signing Your Return +Section 1: Information Needed for District of Columbia Return +Required Information For Electronic Filing - Complete All 5 Sections Below +A. Withholding + + +Example: +If you received two Forms W-2, click the Add button next to the Form W-2 and enter the information for your first Form +W-2. After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat + +this for each of the types of forms listed below that you received. +Form W-2 + Wage & Tax Statement +G +Form 1099-G + Certain Government Payment +G +Form 1099-MISC + Miscellaneous Income +G +Check the box if you do not have any of the above forms to enter +G +Disclosure Statement +Section 3: Additional Information Needed to E-file Your District of Columbia Return +A. Enter Email Address: +E-mail address (for confirmation e-mail) +Re-enter e-mail address (must match) +– Select from 3 refund methods on Form D-40EZ. +A. Paying Tax Due by Check +- If you are paying with a check, print Form D-40P, Payment Voucher, and mail it with your check to the +District of Columbia Office of Tax and Revenue. +B. Electronic Funds Withdrawal of Tax Due +- If you would like to pay your tax balance due using electronic funds withdrawal enter the +required information below. +By filling in the information below, I agree to pay my tax balance due by electronic funds withdrawal +G +Routing number +Type: +G +Checking +Account number +Savings +Date to make withdrawal +G +Form 1099-INT +Dividends and Distributions +G +Form 1099-DIV +G + you are required to enter all information for each of the forms received. You must enter the information exactly as it appears + on the form. If you have multiple forms, use the Add button to enter information from each form separately. +Interest Income +Section 4: Refund +Refund +Direct Deposit to your bank account. Enter all required direct deposit information on form D-40EZ, +including selecting checking or savings account. +DC Tax Refund Visa Prepaid Card. Select this refund method on Form D-40EZ if you wish to receive +a tax refund card in lieu of direct deposit or paper check. +Paper Check. Select this refund method on Form D-40EZ if you wish to receive a paper check +in lieu of direct deposit or tax refund card. +Yes No +Will the funds originate from an account outside the U.S.? +• +• +• +Section 5: Payment Options (Do not enter refund information here.) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +If you received a Form W-2, 1099-G, 1099-MISC, 1099-INT, or 1099-DIV that has District of Columbia witholding on it, +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . +. . . . . . . . +G +G +I affirm that, under penalties of law, I have examined this return, and to the best of my knowledge, it is correct. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFIDCEZ.fields.json b/test/data/ef/form/EFIDCEZ.fields.json new file mode 100755 index 00000000..5c69af04 --- /dev/null +++ b/test/data/ef/form/EFIDCEZ.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"Add_US_1099I","type":"link","calc":false,"value":""},{"id":"Add_US_1099D","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFIDCEZ.json b/test/data/ef/form/EFIDCEZ.json new file mode 100755 index 00000000..3b71b742 --- /dev/null +++ b/test/data/ef/form/EFIDCEZ.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"EFIDC.pdf","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},{"oc":"#231f20","x":47.953,"y":23,"w":32.072,"h":0.038,"clr":-1},{"oc":"#231f20","x":47.953,"y":23.75,"w":32.072,"h":0.038,"clr":-1},{"oc":"#231f20","x":4.125,"y":16.969,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":3.932,"y":24.297,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":4.125,"y":19.813,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":4.125,"y":4.042,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":68.833,"y":40.188,"w":20.213,"h":0.038,"clr":-1},{"oc":"#231f20","x":28.958,"y":41.688,"w":11.103,"h":0.038,"clr":-1},{"oc":"#231f20","x":6.443,"y":37.563,"w":93.088,"h":0.038,"clr":-1},{"oc":"#231f20","x":6.443,"y":43.48,"w":93.088,"h":0.038,"clr":-1},{"oc":"#231f20","x":99.378,"y":37.563,"w":0.103,"h":5.936,"clr":-1},{"oc":"#231f20","x":6.394,"y":37.518,"w":0.103,"h":6.027,"clr":-1},{"oc":"#231f20","x":28.958,"y":40.188,"w":17.119,"h":0.038,"clr":-1},{"oc":"#231f20","x":4.036,"y":44.272,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":3.932,"y":24.297,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":4.877,"y":32.37,"w":97.281,"h":0.125,"clr":-1},{"x":30.122,"y":40.339,"w":1.887,"h":0.686,"clr":1},{"x":44.228,"y":40.311,"w":1.887,"h":0.686,"clr":1},{"x":30.197,"y":40.339,"w":1.887,"h":0.686,"clr":1},{"x":44.303,"y":40.311,"w":1.886,"h":0.686,"clr":1},{"x":8.64,"y":42.503,"w":1.887,"h":0.686,"clr":1},{"x":13.207,"y":42.503,"w":1.887,"h":0.686,"clr":1}],"Texts":[{"oc":"#231f20","x":4.219,"y":17.219,"w":14.783000000000005,"clr":-1,"A":"left","R":[{"T":"Section%202%3A%20Signing%20Your%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":4.219,"y":4.604,"w":29.337,"clr":-1,"A":"left","R":[{"T":"Section%201%3A%20Information%20Needed%20for%20District%20of%20Columbia%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":4.219,"y":2.542,"w":35.56299999999999,"clr":-1,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20All%205%20Sections%20Below","S":-1,"TS":[0,15.52,1,0]}]},{"oc":"#231f20","x":5.078,"y":5.792,"w":7.057800000000001,"clr":-1,"A":"left","R":[{"T":"A.%20Withholding","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":6.109,"y":9.167,"w":4.724,"clr":-1,"A":"left","R":[{"T":"Example%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":12.901,"y":9.167,"w":52.352999999999916,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20Add%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.109,"y":9.917,"w":57.06730000000009,"clr":-1,"A":"left","R":[{"T":"W-2.%20After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.109,"y":10.667,"w":28.451300000000014,"clr":-1,"A":"left","R":[{"T":"this%20for%20each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.109,"y":11.792,"w":4.611,"clr":-1,"A":"left","R":[{"T":"Form%20W-2","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":13.243,"y":11.792,"w":10.6139,"clr":-1,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":11.792,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":12.5,"w":6.111900000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-G","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":15.566,"y":12.5,"w":13.502300000000002,"clr":-1,"A":"left","R":[{"T":"%20Certain%20Government%20Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":12.5,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":13.25,"w":7.8336000000000015,"clr":-1,"A":"left","R":[{"T":"Form%201099-MISC","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":18.23,"y":13.25,"w":10.167900000000001,"clr":-1,"A":"left","R":[{"T":"%20Miscellaneous%20Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":13.25,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":15.625,"w":28.676599999999997,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20above%20forms%20to%20enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":15.625,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":4.82,"y":18.469,"w":9.501000000000001,"clr":-1,"A":"left","R":[{"T":"Disclosure%20Statement","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.219,"y":20.063,"w":39.39399999999998,"clr":-1,"A":"left","R":[{"T":"Section%203%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20District%20of%20Columbia%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.078,"y":21.375,"w":11.392000000000005,"clr":-1,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":6.109,"y":22.125,"w":17.499000000000006,"clr":-1,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.109,"y":22.875,"w":16.833400000000005,"clr":-1,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.921,"y":25.57,"w":21.337400000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20Select%20from%203%20refund%20methods%20on%20Form%20D-40EZ.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.361,"y":33.799,"w":13.727000000000006,"clr":-1,"A":"left","R":[{"T":"A.%20Paying%20Tax%20Due%20by%20Check%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":23.673,"y":33.799,"w":45.84160000000002,"clr":-1,"A":"left","R":[{"T":"-%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20Form%20D-40P%2C%20Payment%20Voucher%2C%20and%20mail%20it%20with%20your%20check%20to%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":7.424,"y":34.549,"w":21.11430000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia%20Office%20of%20Tax%20and%20Revenue.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.361,"y":35.612,"w":20.671000000000006,"clr":-1,"A":"left","R":[{"T":"B.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":33.04,"y":35.612,"w":39.73180000000004,"clr":-1,"A":"left","R":[{"T":"-%20If%20you%20would%20like%20to%20pay%20your%20tax%20balance%20due%20using%20electronic%20funds%20withdrawal%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":7.424,"y":36.362,"w":12.0573,"clr":-1,"A":"left","R":[{"T":"required%20information%20below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.083,"y":37.813,"w":47.45799999999994,"clr":-1,"A":"left","R":[{"T":"By%20filling%20in%20the%20information%20below%2C%20I%20agree%20to%20pay%20my%20tax%20balance%20due%20by%20electronic%20funds%20withdrawal","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":90.927,"y":37.813,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":8.083,"y":39.313,"w":7.111199999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.083,"y":40.063,"w":2.5004999999999997,"clr":-1,"A":"left","R":[{"T":"Type%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.989,"y":40.063,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":31.973999999999997,"y":40.063,"w":4.1664,"clr":-1,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":47.958,"y":39.313,"w":7.279600000000002,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":46.068,"y":40.063,"w":3.5563000000000002,"clr":-1,"A":"left","R":[{"T":"Savings","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.083,"y":40.813,"w":10.945699999999997,"clr":-1,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.989,"y":40.813,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":13.958,"w":6.944700000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-INT","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":17.198,"y":14.708,"w":12.1123,"clr":-1,"A":"left","R":[{"T":"Dividends%20and%20Distributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":13.958,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":14.708,"w":7.000700000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-DIV","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":91.016,"y":14.708,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":5.799,"y":7.292,"w":54.56740000000005,"clr":-1,"A":"left","R":[{"T":"%20you%20are%20required%20to%20enterall%20information%20for%20each%20of%20the%20forms%20received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.197,"y":8.073,"w":47.01130000000004,"clr":-1,"A":"left","R":[{"T":"%20on%20the%20form.%20If%20you%20havemultiple%20forms%2C%20use%20the%20Add%20button%20to%20enter%20information%20from%20each%20form%20separately.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":17.312,"y":13.958,"w":6.892000000000001,"clr":-1,"A":"left","R":[{"T":"Interest%20Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.33,"y":24.518,"w":8.501,"clr":-1,"A":"left","R":[{"T":"Section%204%3A%20Refund","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.361,"y":25.529,"w":3.444,"clr":-1,"A":"left","R":[{"T":"Refund","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":8.709,"y":26.417,"w":42.50720000000003,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit%20to%20your%20bank%20account.%20Enter%20all%20required%20direct%20deposit%20information%20on%20form%20D-40EZ%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.735,"y":27.073,"w":21.282200000000003,"clr":-1,"A":"left","R":[{"T":"including%20selecting%20checking%20or%20savings%20account.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.735,"y":28.188,"w":44.11830000000001,"clr":-1,"A":"left","R":[{"T":"DC%20Tax%20Refund%20Visa%20Prepaid%20Card.%20Select%20this%20refund%20method%20on%20Form%20D-40EZ%20if%20you%20wish%20to%20receive%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.674,"y":28.875,"w":24.895100000000006,"clr":-1,"A":"left","R":[{"T":"a%20tax%20refund%20card%20in%20lieu%20of%20direct%20deposit%20or%20paper%20check.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.503,"y":30.094,"w":41.174900000000015,"clr":-1,"A":"left","R":[{"T":"Paper%20Check.%20Select%20this%20refund%20method%20on%20Form%20D-40EZ%20if%20you%20wish%20to%20receive%20a%20paper%20check%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.586,"y":30.688,"w":18.337500000000002,"clr":-1,"A":"left","R":[{"T":"in%20lieu%20of%20direct%20deposit%20or%20tax%20refund%20card.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8,"y":41.542,"w":1.7787000000000002,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":12.983,"y":41.542,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":16.078,"y":42.292,"w":25.50620000000001,"clr":-1,"A":"left","R":[{"T":"Will%20the%20funds%20originate%20from%20an%20account%20outside%20the%20U.S.%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.882,"y":26.346,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.882,"y":28.138,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.739,"y":30.054,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":5.103,"y":32.539,"w":32.227,"clr":-1,"A":"left","R":[{"T":"Section%205%3A%20Payment%20Options%20(Do%20not%20enter%20refund%20information%20here.)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":34.369,"y":13.23,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.31846,1,0]}]},{"oc":"#231f20","x":6.109,"y":6.542,"w":52.18599999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20Form%20W-2%2C%201099-G%2C%201099-MISC%2C%201099-INT%2C%20or%201099-DIV%20that%20has%20District%20of%20Columbia%20witholding%20on%20it%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.25,"y":14.636,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.117650000000001,1,0]}]},{"oc":"#231f20","x":37.088,"y":12.487,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.05679,1,0]}]},{"oc":"#231f20","x":33.03,"y":22.284,"w":18.55919999999999,"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","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":32.708,"y":22.987,"w":18.55919999999999,"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","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":12.212,"y":40.05,"w":18.55919999999999,"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","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":59.52,"y":39.37,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":19.619,"y":39.394,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":23.765,"y":40.87,"w":4.218000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,5.7380700000000004,1,0]}]},{"oc":"#231f20","x":26.989,"y":39.313,"w":23.3,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":67.036,"y":39.313,"w":23.3,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":21.305,"y":18.42,"w":48.52299999999995,"clr":-1,"A":"left","R":[{"T":"I%20affirm%20that%2C%20under%20penalties%20of%20law%2C%20I%20have%20examined%20this%20return%2C%20and%20to%20the%20best%20of%20my%20knowledge%2C%20it%20is%20correct.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.439,"y":11.8,"w":55.67759999999977,"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.%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":[0,8.481200000000001,1,0]}]},{"oc":"#231f20","x":50.343,"y":15.636,"w":39.649199999999865,"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.%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,8.117650000000001,1,0]}]},{"oc":"#231f20","x":79.973,"y":37.808,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":28.687,"y":13.948,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.117650000000001,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":394,"AM":0,"x":92.668,"y":11.888,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099G"}},"id":{"Id":"Add_US_1099G","EN":0},"TI":395,"AM":0,"x":92.628,"y":12.613,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F99MPER"}},"id":{"Id":"Add_US_MISC","EN":0},"TI":396,"AM":0,"x":92.683,"y":13.341,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099I"}},"id":{"Id":"Add_US_1099I","EN":0},"TI":397,"AM":0,"x":92.815,"y":14.109,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099D"}},"id":{"Id":"Add_US_1099D","EN":0},"TI":398,"AM":0,"x":92.815,"y":14.852,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":401,"AM":0,"x":47.821,"y":22.203,"w":32.717,"h":0.833,"TU":"E-mail Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":402,"AM":0,"x":47.896,"y":23.061,"w":32.642,"h":0.833,"TU":"Re-enter E-mail Address"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":404,"AM":0,"x":28.753,"y":39.498,"w":17.519,"h":0.833,"TU":"Routing Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":405,"AM":0,"x":68.657,"y":39.463,"w":20.589,"h":0.833,"TU":"Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":408,"AM":0,"x":28.603,"y":41.069,"w":11.679,"h":0.833,"TU":"Date to Make Withdrawal","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":399,"AM":0,"x":92.664,"y":15.777,"w":3.061,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":400,"AM":0,"x":19.324,"y":18.523,"w":2.195,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":403,"AM":0,"x":92.727,"y":38.077,"w":2.92,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":406,"AM":0,"x":29.718,"y":40.225,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":407,"AM":0,"x":44.048,"y":40.198,"w":1.967,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":409,"AM":0,"x":8.46,"y":42.362,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":410,"AM":0,"x":13.027,"y":42.362,"w":1.967,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFIF.content.txt b/test/data/ef/form/EFIF.content.txt new file mode 100755 index 00000000..a0162f64 --- /dev/null +++ b/test/data/ef/form/EFIF.content.txt @@ -0,0 +1,125 @@ +Section 2: Boxes C and D Must Match +Look at last year's (2012) federal tax return and enter the Adjusted Gross Income (AGI) in the space provided. Look at the AGI on +D +Box C and Box D MUST match to activate the 'Efile Now' button. +Total Federal Withholding (Box A plus Box B) . +Required Information For Electronic Filing- Complete All 5 Sections Below +Section 1: W-2s, 1099-Rs and W-2Gs +item separately. +Complete one electronic W-2 for every W-2 you received. + +Click the Add button for each W-2 you received. . . +Complete one electronic 1099-R for every 1099-R you received. + +Click the Add button for each 1099-R you received. . . +Complete one electronic W-2G for every W-2G you received. + Click the Add button for each W-2G you received. . . + +Section 4: +Signing This Year's Return +birth, and today's date. +Taxpayer +Spouse +Select any 5-digit PIN to sign this return. +(Your PIN(s) cannot be 12345 or 00000) +. . . . . . . . . . . . . . . . . . . . . +Date of Birth (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Today's Date (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +A +C +You (and your spouse if filing Married Filing Joint) will need to sign this return electronically. To do so enter a 5-digit PIN, your date of +To prevent issues with your e-filed return, perform the following reconciliation: +Enter in Box B the total amount of other withholding that you are reporting on Form 1040, line 62 +that is not reported on a form in Section 1 above. These amounts come from documents such as +SSA- 1099, 1099- DIV, 1099- MISC, 1099- B, other 1099s +, Form 8959 + or Schedule K-1's. +C +A +Total the federal withholding amounts entered on the W-2's, 1099- R's and W-2Gs in Section 1 +B +D Total Federal Withholding from From 1040, Line 62. +(If not, check the amounts you have entered in Box A and Box B.) +B +Electronic Filing PIN: +or call the IRS at 1-866-704-7388 to get an Electronic Filing PIN from the IRS and enter it in the space provided (all 5 digits are required). +http://www.irs.gov/Individuals/Electronic-Filing-PIN-Request, +of the three pieces of information also. +(b) If you don't have or can't remember last year's AGI, go to +Last year's AGI: +not file a return last year, enter a zero in the AGI space provided. +the same spouse that you filed in 2012, the prior year AGI will be the same for both you the "Taxpayer" and your "Spouse". If you did +of the Form 1040EZ. If you are filing Married Filing Jointly with +line 37 +line 4 +of the Form 1040A and +line 21 +of the Form 1040, +(a) +one +must complete +of the following two pieces of information. If you are filing a joint return with your spouse, your spouse +one +As the taxpayer, enter +Section 3: Verifying Your Identity +Taxpayer +Spouse +. . . . . . . . . . . . . . . . . . . . . . . +OR +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Taxpayer +Spouse +above and enter it in Box A. +If you received a form W-2, 1099-R, or W-2G select the "Add" button below to add the applicable form. You will need to enter each +----------------Page (0) Break---------------- +Disclosure Statement +I agree +Return by entering my Self-Select PIN above. +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . . . . +Section 5: Payment Options +Review the option below that applies to you and complete any required entry fields. +A. Paying Tax Due by Check + - If you are paying with a check print Form 1040V and mail it with your check to the IRS (print your return +to get Form 1040V). You have no futher action in this step. +B. Electronic Withdrawal of Tax Due (Does not apply to estimated tax payments) + - If you would like to pay your balance due using +direct debit enter the required information below and agree to the disclosure statement. +Routing number +. . . . . . . . . . . +Account number +. . . . . . . . . . . . . +Type: +. . . . . . . . . . . . . . . . . . . . . +Checking +Savings +Not applicable (if not using direct debit) +Date to make withdrawal +. +Note +: do +not + enter direct deposit information here, enter it on the return +Day time phone number +. . +Electronic withdrawal disclosure statement +I agree +I authorize the U.S. Treasury and its designated Financial Agent to intitiate an ACH Electronic Funds Withdrawal (Direct Debit) +entry to the financial institution account indicated for payment of my federal taxes owed on this return and the financial +payments that I direct to be debited through the Electronic Federal Payment System (EFTPS). In order for me to initiate +subsequent payments, I request that the IRS send me a personal identification number (PIN) to access EFTPS. This +To revoke a payment, I must contact the U.S. Treasury Financial Agent at 1-888-353-4537 no later than 2 business days prior to +taxes to receive confidential information necessary to answer inquiries and resolve issues related to the payment. +Service Provider, transmitter, or Electronic Originator (EROS) to send my return (or request for refund) to the IRS and to receive the +following information from the IRS: a) an acknowledgement of receipt or reason for rejection of transmission; b) an indication of any +refund offset; c) the reason for any delay in processing the return or refund; and d) the date of any refund. I am signing this Tax +institution to debit the entry to this account. I further understand that this authorization may apply to subsequent federal tax +authorization is to remain in full force and effect until I notify the U.S. Treasure Financial Agent to terminate the authorization. +the payment (settlement) date. I also authorize the financial institutions involved in the processing of the electronic payment of +Under penalties of perjury, I declare that I have examined this return (or request for refund) including any accompanying statements +and schedules and, to the best of my knowledge and belief, it is true, correct, and complete. I consent to allow my Intermediate +----------------Page (1) Break---------------- diff --git a/test/data/ef/form/EFIF.fields.json b/test/data/ef/form/EFIF.fields.json new file mode 100755 index 00000000..e84c3383 --- /dev/null +++ b/test/data/ef/form/EFIF.fields.json @@ -0,0 +1 @@ +[{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"BXA","type":"number","calc":false,"value":""},{"id":"BXB","type":"number","calc":false,"value":""},{"id":"BXC","type":"number","calc":true,"value":""},{"id":"BXD","type":"number","calc":true,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"TEFPIN","type":"mask","calc":false,"value":""},{"id":"SEFPIN","type":"mask","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"TPDOB","type":"date","calc":false,"value":""},{"id":"SPDOB","type":"date","calc":false,"value":""},{"id":"TCURDATE","type":"date","calc":false,"value":""},{"id":"SCURDAT","type":"date","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"TARB","type":"radio","calc":false,"value":"TANA"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFIF.json b/test/data/ef/form/EFIF.json new file mode 100755 index 00000000..b69b654e --- /dev/null +++ b/test/data/ef/form/EFIF.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdiy4912.pfm : default (Read Only)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":0.086,"y":49.469,"w":1.5,"l":6.652},{"x":0.086,"y":48.769,"w":1.5,"l":6.652}],"VLines":[{"x":6.738,"y":48.769,"w":1.5,"l":0.7},{"x":0.086,"y":48.769,"w":1.5,"l":0.7}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":2.922,"y":1.5,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":9,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":23.813,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.664,"y":39.281,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":48.028,"y":45.599,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":45.599,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":48.028,"y":47.099,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":47.099,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":48.028,"y":48.412,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":48.412,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":13,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":14,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":15.891,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":16.891,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":17.344,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":18.281,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":13.125,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.442,"y":13.125,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.817,"y":13.125,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.285,"y":16.016,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.442,"y":16.016,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.817,"y":16.016,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.285,"y":17.406,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.442,"y":17.406,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.817,"y":17.406,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.285,"y":19.125,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":20.063,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.285,"y":19.188,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.442,"y":19.188,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.817,"y":19.188,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":49.136,"y":33.037,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":63.574,"y":33.037,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":47.718,"y":37.748,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.156,"y":37.748,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":0.172,"y":48.863,"w":6.308,"h":0.575,"clr":-1}],"Texts":[{"oc":"#231f20","x":3.637,"y":10.788,"w":18.170000000000005,"clr":-1,"A":"left","R":[{"T":"Section%202%3A%20%20Boxes%20C%20and%20D%20Must%20Match","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":6.653,"y":28.342,"w":57.23290000000008,"clr":-1,"A":"left","R":[{"T":"Look%20at%20last%20year's%20(2012)%20federal%20tax%20return%20and%20enter%20the%20Adjusted%20Gross%20Income%20(AGI)%20in%20the%20space%20provided.%20Look%20at%20the%20AGI%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":84.179,"y":19.067,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"D","S":44,"TS":[2,12,0,0]}]},{"x":9.851,"y":20.341,"w":273.3210000000001,"clr":0,"A":"left","R":[{"T":"Box%20C%20and%20Box%20D%20MUST%20match%20to%20activate%20the%20'Efile%20Now'%20button.","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":9.7,"y":17.419,"w":20.896999999999995,"clr":-1,"A":"left","R":[{"T":"Total%20Federal%20Withholding%20(Box%20A%20plus%20Box%20B)%20.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":3.012,"y":-0.124,"w":35.28499999999999,"clr":-1,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing-%20Complete%20All%205%20Sections%20Below","S":-1,"TS":[2,16,1,0]}]},{"oc":"#231f20","x":3.012,"y":2.126,"w":17.338000000000005,"clr":-1,"A":"left","R":[{"T":"Section%201%3A%20W-2s%2C%201099-Rs%20and%20W-2Gs","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":4.044,"y":4.376,"w":7.7877,"clr":-1,"A":"left","R":[{"T":"item%20%20separately.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.044,"y":5.876,"w":27.008000000000003,"clr":-1,"A":"left","R":[{"T":"Complete%20one%20electronic%20W-2%20for%20every%20W-2%20you%20received.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":51.484,"y":5.876,"w":23.495099999999997,"clr":-1,"A":"left","R":[{"T":"Click%20the%20Add%20button%20for%20each%20W-2%20you%20received.%20.%20.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.042,"y":6.626,"w":29.89390000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20one%20electronic%201099-R%20for%20every%201099-R%20you%20received.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":51.481,"y":6.626,"w":24.958000000000006,"clr":-1,"A":"left","R":[{"T":"Click%20the%20Add%20button%20for%20each%201099-R%20you%20received.%20.%20.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.043,"y":7.3759999999999994,"w":28.564000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20one%20electronic%20W-2G%20for%20every%20W-2G%20you%20received.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":51.481,"y":7.3759999999999994,"w":24.233000000000004,"clr":-1,"A":"left","R":[{"T":"Click%20the%20Add%20button%20for%20each%20W-2G%20you%20received.%20.%20.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.743,"y":40.226,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Section%204%3A","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":10.663,"y":40.225,"w":13.019000000000002,"clr":-1,"A":"left","R":[{"T":"Signing%20This%20Year's%20Return%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":42.475,"w":10.678399999999998,"clr":-1,"A":"left","R":[{"T":"birth%2C%20and%20today's%20date.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":51.213,"y":43.225,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":66.685,"y":43.225,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.777,"y":43.975,"w":18.945999999999998,"clr":-1,"A":"left","R":[{"T":"Select%20any%205-digit%20PIN%20to%20sign%20this%20return.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.777,"y":44.724,"w":18.619999999999997,"clr":-1,"A":"left","R":[{"T":"(Your%20PIN(s)%20cannot%20be%2012345%20or%2000000)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":33.485,"y":44.726,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.774,"y":46.226,"w":12.4876,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(mm%2Fdd%2Fyyyy)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":23.956,"y":46.226,"w":22.73879999999998,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.774,"y":47.538,"w":12.647499999999997,"clr":-1,"A":"left","R":[{"T":"Today's%20Date%20(mm%2Fdd%2Fyyyy)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":23.956,"y":47.538,"w":22.73879999999998,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":84.252,"y":13.001,"w":0.687,"clr":-1,"A":"left","R":[{"T":"A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":84.18,"y":17.286,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"C","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":41.725,"w":62.686200000000085,"clr":-1,"A":"left","R":[{"T":"You%20(and%20your%20spouse%20if%20filing%20Married%20Filing%20Joint)%20will%20need%20to%20sign%20this%20return%20electronically.%20To%20do%20so%20enter%20a%205-digit%20PIN%2C%20your%20date%20of%20","S":44,"TS":[2,12,0,0]}]},{"x":3.939,"y":11.813,"w":308.61000000000007,"clr":0,"A":"left","R":[{"T":"To%20prevent%20issues%20with%20your%20e-filed%20return%2C%20perform%20the%20following%20reconciliation%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.778,"y":14.614,"w":385.70400000000035,"clr":-1,"A":"left","R":[{"T":"Enter%20in%20Box%20B%20the%20total%20amount%20of%20other%20withholding%20that%20you%20are%20reporting%20on%20Form%201040%2C%20line%2062%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.753,"y":15.263000000000002,"w":389.18700000000024,"clr":-1,"A":"left","R":[{"T":"that%20is%20not%20reported%20on%20a%20form%20in%20Section%201%20above.%20%20These%20amounts%20come%20from%20documents%20such%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.753,"y":15.911000000000001,"w":231.11999999999995,"clr":-1,"A":"left","R":[{"T":"SSA-%201099%2C%201099-%20DIV%2C%201099-%20MISC%2C%201099-%20B%2C%20other%201099s","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":45.184,"y":15.911000000000001,"w":48.51899999999999,"clr":-1,"A":"left","R":[{"T":"%2C%20Form%208959","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":53.869,"y":15.911000000000001,"w":75.75299999999999,"clr":-1,"A":"left","R":[{"T":"%20or%20Schedule%20K-1's.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.624,"y":17.364,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"C","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.559,"y":12.966,"w":0.687,"clr":-1,"A":"left","R":[{"T":"A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":9.715,"y":12.966,"w":42.06799999999997,"clr":-1,"A":"left","R":[{"T":"Total%20the%20federal%20withholding%20amounts%20entered%20on%20the%20%20W-2's%2C%201099-%20R's%20and%20W-2Gs%20in%20Section%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.622,"y":14.614,"w":0.687,"clr":-1,"A":"left","R":[{"T":"B","S":44,"TS":[2,12,0,0]}]},{"x":4.691,"y":19.141,"w":9,"clr":0,"A":"left","R":[{"T":"D%20","S":3,"TS":[0,12,0,0]}]},{"x":9.762,"y":19.141,"w":206.08199999999997,"clr":0,"A":"left","R":[{"T":"Total%20Federal%20Withholding%20from%20From%201040%2C%20Line%2062.","S":3,"TS":[0,12,0,0]}]},{"x":9.52,"y":21.139,"w":261.144,"clr":0,"A":"left","R":[{"T":"(If%20not%2C%20check%20the%20amounts%20you%20have%20entered%20in%20Box%20A%20and%20Box%20B.)","S":3,"TS":[0,12,0,0]}]},{"x":84.109,"y":15.934999999999999,"w":6.67,"clr":0,"A":"left","R":[{"T":"B","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":22.758,"y":36.846,"w":9.282200000000001,"clr":-1,"A":"left","R":[{"T":"Electronic%20Filing%20PIN%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.651,"y":34.456,"w":60.541200000000075,"clr":-1,"A":"left","R":[{"T":"or%20call%20the%20IRS%20at%201-866-704-7388%20to%20get%20an%20Electronic%20Filing%20PIN%20from%20the%20IRS%20and%20enter%20it%20in%20the%20space%20provided%20(all%205%20digits%20are%20required).","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":41.278,"y":33.744,"w":28.845100000000016,"clr":-1,"A":"left","R":[{"T":"http%3A%2F%2Fwww.irs.gov%2FIndividuals%2FElectronic-Filing-PIN-Request%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":16.802,"y":26.609,"w":16.957000000000004,"clr":-1,"A":"left","R":[{"T":"of%20the%20three%20pieces%20of%20information%20also.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":3.941,"y":33.752,"w":26.702199999999998,"clr":-1,"A":"left","R":[{"T":"(b)%20If%20you%20don't%20have%20or%20can't%20remember%20last%20year's%20AGI%2C%20go%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":25.155,"y":32.008,"w":7.0846,"clr":-1,"A":"left","R":[{"T":"Last%20year's%20AGI%3A","S":-1,"TS":[0,12.5192,0,0]}]},{"oc":"#231f20","x":5.742,"y":30.265,"w":28.687800000000006,"clr":-1,"A":"left","R":[{"T":"not%20file%20a%20return%20last%20year%2C%20enter%20a%20zero%20in%20the%20AGI%20space%20provided.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.935,"y":29.585,"w":58.85240000000008,"clr":-1,"A":"left","R":[{"T":"the%20same%20spouse%20that%20you%20filed%20in%202012%2C%20the%20prior%20year%20AGI%20will%20be%20the%20same%20for%20both%20you%20the%20%22Taxpayer%22%20and%20your%20%22Spouse%22.%20If%20you%20did%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":44.231,"y":28.918,"w":27.460500000000014,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040EZ.%20If%20you%20are%20filing%20Married%20Filing%20Jointly%20with","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.806,"y":28.988,"w":3.1136999999999997,"clr":-1,"A":"left","R":[{"T":"line%2037","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":40.254,"y":28.97,"w":2.5576,"clr":-1,"A":"left","R":[{"T":"line%204","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":25.547,"y":29.012,"w":10.230100000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040A%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":20.833,"y":28.983,"w":3.1136999999999997,"clr":-1,"A":"left","R":[{"T":"line%2021","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":10.38,"y":28.961,"w":7.8947,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040%2C","S":-1,"TS":[0,11.3426,0,0]}]},{"oc":"#231f20","x":3.9459999999999997,"y":28.369,"w":1.6574,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":13.259,"y":26.662,"w":1.9756580000000001,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,13.999,1,0]}]},{"oc":"#231f20","x":3.9370000000000003,"y":26.632,"w":6.7814,"clr":-1,"A":"left","R":[{"T":"must%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":21.622,"y":25.882,"w":44.69760000000005,"clr":-1,"A":"left","R":[{"T":"of%20the%20following%20two%20pieces%20of%20information.%20If%20you%20are%20filing%20a%20joint%20return%20with%20your%20spouse%2C%20your%20spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":18.069,"y":25.881,"w":1.9756580000000001,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,13.999,1,0]}]},{"oc":"#231f20","x":3.9349999999999996,"y":25.881,"w":10.063300000000002,"clr":-1,"A":"left","R":[{"T":"As%20the%20taxpayer%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":2.904,"y":24.381,"w":15.726000000000006,"clr":-1,"A":"left","R":[{"T":"Section%203%3A%20Verifying%20Your%20Identity","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":50.844,"y":30.925,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":65.286,"y":30.925,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":37.523,"y":32.139,"w":15.1662,"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","S":-1,"TS":[2,6.8108,0,0]}]},{"oc":"#231f20","x":3.893,"y":32.646,"w":1.4608,"clr":-1,"A":"left","R":[{"T":"OR","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":37.508,"y":36.831,"w":19.78199999999999,"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","S":-1,"TS":[2,5.577500000000001,0,0]}]},{"oc":"#231f20","x":51.835,"y":35.533,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":66.276,"y":35.533,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":10.047,"y":13.69,"w":12.285000000000002,"clr":-1,"A":"left","R":[{"T":"above%20and%20enter%20it%20in%20Box%20A.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.044,"y":3.627,"w":60.97000000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20form%20W-2%2C%201099-R%2C%20or%20W-2G%20select%20the%20%22Add%22%20button%20below%20to%20add%20the%20applicable%20form.%20You%20will%20need%20to%20enter%20each%20","S":44,"TS":[2,12,0,0]}]},{"x":2.045,"y":48.498,"w":12.995999999999999,"clr":35,"A":"left","R":[{"T":"ADD","S":52,"TS":[0,9,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":411,"AM":0,"x":90.199,"y":5.849,"w":6.88,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":412,"AM":0,"x":90.223,"y":6.627,"w":6.824,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2G"}},"id":{"Id":"Add_US_W2G","EN":0},"TI":413,"AM":0,"x":90.223,"y":7.44,"w":6.824,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXA","EN":0},"TI":414,"AM":0,"x":87.918,"y":13.197,"w":11.483,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXB","EN":0},"TI":415,"AM":0,"x":87.785,"y":16.034,"w":11.482,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXC","EN":0},"TI":416,"AM":1024,"x":87.84,"y":17.533,"w":11.333,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXD","EN":0},"TI":417,"AM":1024,"x":87.843,"y":19.278,"w":11.333,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLYAGI","EN":0},"TI":418,"AM":0,"x":49.034,"y":32.131,"w":12.561,"h":0.833,"TU":"Taxpayer"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SLYAGI","EN":0},"TI":419,"AM":0,"x":63.472,"y":32.104,"w":12.561,"h":0.833,"TU":"Spouse [1]"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TEFPIN","EN":0},"TI":420,"AM":0,"x":50.48,"y":36.902,"w":8.795,"h":0.833,"TU":"2) Prior Year PIN [2]","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEFPIN","EN":0},"TI":421,"AM":0,"x":63.946,"y":36.99,"w":9.767,"h":0.833,"TU":"Spouse [3]","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPIN","EN":0},"TI":422,"AM":0,"x":48.059,"y":44.736,"w":12.561,"h":0.833,"TU":"Taxpayer","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIN","EN":0},"TI":423,"AM":0,"x":62.668,"y":44.736,"w":12.561,"h":0.833,"TU":"Spouse [1]","MV":"99999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOB","EN":0},"TI":424,"AM":0,"x":48.231,"y":46.299,"w":12.561,"h":0.833,"TU":"Date of Birth (mm/dd/yyyy","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOB","EN":0},"TI":425,"AM":0,"x":62.668,"y":46.299,"w":12.561,"h":0.833,"TU":"Spouse [2]","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TCURDATE","EN":0},"TI":426,"AM":0,"x":48.231,"y":47.594,"w":12.561,"h":0.833,"TU":"Today's Date (mm/dd/yyyy","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SCURDAT","EN":0},"TI":427,"AM":0,"x":62.668,"y":47.594,"w":12.561,"h":0.833,"TU":"undefined","MV":"mm/dd/yyyy"}],"Boxsets":[]},{"Height":49.5,"HLines":[],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":2.148,"y":9.25,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":47.899,"y":1.605,"w":33.165,"h":0.06,"clr":-1},{"oc":"#231f20","x":47.899,"y":2.73,"w":33.165,"h":0.06,"clr":-1},{"oc":"#231f20","x":4.964,"y":18.928,"w":95.989,"h":0.03,"clr":-1},{"oc":"#231f20","x":79.73,"y":20.053,"w":20.708,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.167,"y":21.928,"w":11.426,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.167,"y":23.803,"w":14.52,"h":0.03,"clr":-1},{"oc":"#231f20","x":4.964,"y":32.428,"w":95.989,"h":0.03,"clr":-1},{"oc":"#231f20","x":4.964,"y":18.928,"w":0.082,"h":13.53,"clr":-1},{"oc":"#231f20","x":100.871,"y":18.928,"w":0.082,"h":13.53,"clr":-1}],"Texts":[{"oc":"#231f20","x":2.983,"y":3.362,"w":10.223,"clr":-1,"A":"left","R":[{"T":"Disclosure%20Statement","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":22.578,"y":3.362,"w":3.2467,"clr":-1,"A":"left","R":[{"T":"I%20agree","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":7.862,"w":21.169,"clr":-1,"A":"left","R":[{"T":"Return%20by%20entering%20my%20Self-Select%20PIN%20above.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.646,"y":0.732,"w":18.607000000000003,"clr":-1,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":33.356,"y":0.732,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.646,"y":1.8570000000000002,"w":17.7086,"clr":-1,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":31.994999999999997,"y":1.8570000000000002,"w":14.826,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":2.476,"y":10.179,"w":13.281000000000006,"clr":-1,"A":"left","R":[{"T":"Section%205%3A%20Payment%20Options","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":3.508,"y":10.928,"w":38.72530000000002,"clr":-1,"A":"left","R":[{"T":"Review%20the%20option%20below%20that%20applies%20to%20you%20and%20complete%20any%20required%20entry%20fields.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.508,"y":14.679,"w":13.449000000000005,"clr":-1,"A":"left","R":[{"T":"A.%20Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":20.527,"y":14.679,"w":49.71190000000004,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20are%20paying%20with%20a%20check%20print%20Form%201040V%20and%20mail%20it%20with%20your%20check%20to%20the%20IRS%20(print%20your%20return%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":15.428,"w":27.39200000000001,"clr":-1,"A":"left","R":[{"T":"to%20get%20Form%201040V).%20You%20have%20no%20futher%20action%20in%20this%20step.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.508,"y":16.929,"w":38.06399999999998,"clr":-1,"A":"left","R":[{"T":"B.%20Electronic%20Withdrawal%20of%20Tax%20Due%20(Does%20not%20apply%20to%20estimated%20tax%20payments)","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":51.746,"y":16.929,"w":23.263099999999998,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20would%20like%20to%20pay%20your%20balance%20due%20using%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":17.678,"w":40.533,"clr":-1,"A":"left","R":[{"T":"direct%20debit%20enter%20the%20required%20information%20below%20and%20agree%20to%20the%20disclosure%20statement.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.602,"y":19.179,"w":7.367999999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":18.368,"y":19.179,"w":6.9132000000000025,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":56.102,"y":19.179,"w":7.564,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":68.569,"y":19.179,"w":8.232000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":6.602,"y":20.241,"w":2.5715,"clr":-1,"A":"left","R":[{"T":"Type%3A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":11.562,"y":20.241,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":32.383,"y":20.241,"w":4.2458,"clr":-1,"A":"left","R":[{"T":"Checking","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":45.791,"y":20.241,"w":3.6787,"clr":-1,"A":"left","R":[{"T":"Savings","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":58.169,"y":20.241,"w":18.364199999999997,"clr":-1,"A":"left","R":[{"T":"Not%20applicable%20(if%20not%20using%20direct%20debit)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.603,"y":21.054,"w":11.4533,"clr":-1,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":25.174,"y":21.054,"w":0.3192,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":6.602,"y":21.991,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":10.036,"y":21.991,"w":2.1275000000000004,"clr":-1,"A":"left","R":[{"T":"%3A%20do%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":13.326,"y":21.991,"w":1.5555999999999999,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":15.739,"y":21.991,"w":27.481,"clr":-1,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20the%20return","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.602,"y":22.929,"w":11.141,"clr":-1,"A":"left","R":[{"T":"Day%20time%20phone%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":24.494,"y":22.929,"w":0.9785999999999999,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":5.57,"y":24.429,"w":20.562,"clr":-1,"A":"left","R":[{"T":"Electronic%20withdrawal%20disclosure%20statement","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":42.695,"y":24.429,"w":3.2467,"clr":-1,"A":"left","R":[{"T":"I%20agree","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":25.179,"w":58.645700000000076,"clr":-1,"A":"left","R":[{"T":"I%20authorize%20the%20U.S.%20Treasury%20and%20its%20designated%20Financial%20Agent%20to%20intitiate%20an%20ACH%20Electronic%20Funds%20Withdrawal%20(Direct%20Debit)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":25.928,"w":55.66730000000006,"clr":-1,"A":"left","R":[{"T":"entry%20to%20the%20financial%20institution%20account%20indicated%20for%20payment%20of%20my%20federal%20taxes%20owed%20on%20this%20return%20and%20the%20financial%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":27.429,"w":56.32810000000005,"clr":-1,"A":"left","R":[{"T":"payments%20that%20I%20direct%20to%20be%20debited%20through%20the%20Electronic%20Federal%20Payment%20System%20(EFTPS).%20%20In%20order%20for%20me%20to%20initiate%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":28.178,"w":54.33630000000005,"clr":-1,"A":"left","R":[{"T":"subsequent%20payments%2C%20I%20request%20that%20the%20IRS%20send%20me%20a%20personal%20identification%20number%20(PIN)%20to%20access%20EFTPS.%20This%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":29.679,"w":59.94170000000003,"clr":-1,"A":"left","R":[{"T":"To%20revoke%20a%20payment%2C%20I%20must%20contact%20the%20U.S.%20Treasury%20Financial%20Agent%20at%201-888-353-4537%20no%20later%20than%202%20business%20days%20prior%20to%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":31.179,"w":52.787400000000076,"clr":-1,"A":"left","R":[{"T":"taxes%20to%20receive%20confidential%20information%20necessary%20to%20answer%20inquiries%20and%20resolve%20issues%20related%20to%20the%20payment.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":5.612,"w":62.18460000000011,"clr":-1,"A":"left","R":[{"T":"Service%20Provider%2C%20transmitter%2C%20or%20Electronic%20Originator%20(EROS)%20%20to%20send%20my%20return%20(or%20request%20for%20refund)%20to%20the%20IRS%20and%20to%20receive%20the%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":6.362,"w":61.762400000000056,"clr":-1,"A":"left","R":[{"T":"following%20information%20from%20the%20IRS%3A%20a)%20an%20acknowledgement%20of%20receipt%20or%20reason%20for%20rejection%20of%20transmission%3B%20b)%20an%20indication%20of%20any%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":7.111,"w":59.86400000000004,"clr":-1,"A":"left","R":[{"T":"refund%20offset%3B%20c)%20the%20reason%20for%20any%20delay%20in%20processing%20the%20return%20or%20refund%3B%20and%20d)%20the%20date%20of%20any%20refund.%20I%20am%20signing%20this%20Tax%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":26.678,"w":57.95300000000008,"clr":-1,"A":"left","R":[{"T":"institution%20to%20debit%20the%20entry%20to%20this%20account.%20%20I%20further%20understand%20that%20this%20authorization%20may%20apply%20to%20subsequent%20federal%20tax%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":28.928,"w":58.91130000000007,"clr":-1,"A":"left","R":[{"T":"authorization%20is%20to%20remain%20in%20full%20force%20and%20effect%20until%20I%20notify%20the%20U.S.%20Treasure%20Financial%20Agent%20to%20terminate%20the%20authorization.%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":30.428,"w":59.57520000000008,"clr":-1,"A":"left","R":[{"T":"the%20payment%20(settlement)%20date.%20%20I%20also%20authorize%20the%20financial%20institutions%20involved%20in%20the%20processing%20of%20the%20electronic%20payment%20of%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.984,"y":4.112,"w":61.70930000000007,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20(or%20request%20for%20refund)%20including%20any%20accompanying%20statements%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.984,"y":4.862,"w":59.60690000000007,"clr":-1,"A":"left","R":[{"T":"and%20schedules%20and%2C%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.%20I%20consent%20to%20allow%20my%20Intermediate%20","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":428,"AM":0,"x":47.864,"y":0.81,"w":33.343,"h":0.833,"TU":"Re-enter e-mail address (must match"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":429,"AM":0,"x":47.939,"y":1.877,"w":33.343,"h":0.833,"TU":"Re-enter e-mail address (must match"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":431,"AM":0,"x":29.01,"y":19.321,"w":19.321,"h":0.833,"TU":"Checking","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":432,"AM":0,"x":79.833,"y":19.243,"w":20.728,"h":0.833,"TU":"Account number . . . . . . . . . . . . . G","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":436,"AM":0,"x":28.443,"y":21.118,"w":11.447,"h":0.833,"TU":"Date to make withdrawal . G","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":437,"AM":0,"x":28.443,"y":22.993,"w":14.541,"h":0.833,"TU":"Day time phone number . . G"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":430,"AM":0,"x":19.44,"y":3.348,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":433,"AM":0,"x":29.036,"y":20.301,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":434,"AM":0,"x":42.484,"y":20.357,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TANA","EN":0},"TI":435,"AM":0,"x":55.116,"y":20.287,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":438,"AM":0,"x":39.838,"y":24.451,"w":3.094,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFIFA.content.txt b/test/data/ef/form/EFIFA.content.txt new file mode 100755 index 00000000..3cca6ea9 --- /dev/null +++ b/test/data/ef/form/EFIFA.content.txt @@ -0,0 +1,122 @@ +Required Information For Electronic Filing- Complete All 5 Sections Below +Section 1: W-2s and 1099-Rs +item separately. +Complete one electronic W-2 for every W-2 you received. + Click the Add button for each W-2 you received . . . +Complete one electronic 1099-R for every 1099-R you received. + Click the Add button for each 1099-R you received . . . +. + +Section 4: Signing This Year's Return +birth, and today's date. +Taxpayer +Spouse +Select any 5-digit PIN to sign this return. +(Your PIN(s) cannot be 12345 or 00000) +. . . . . . . . . . . . . . . . . . . . . +Date of Birth (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Today's Date (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +You (and your spouse if filing Married Filing Joint) will need to sign this return electronically. To do so enter a 5-digit PIN, your date of +D +A +C +To prevent issues with your e-filed return, perform the following reconciliation: +D Total Federal Withholding from From 1040A, Line 36. +B +Look at last year's (2012) federal tax return and enter the Adjusted Gross Income (AGI) in the space provided. Look at the AGI on +Electronic Filing PIN: +http://www.irs.gov/Individuals/Electronic-Filing-PIN-Request, +of the three pieces of information also. +(b) If you don't have or can't remember last year's AGI, go to +Last year's AGI: +not file a return last year, enter a zero in the AGI space provided. +the same spouse that you filed in 2012, the prior year AGI will be the same for both you the "Taxpayer" and your "Spouse". If you did +of the Form 1040EZ. If you are filing Married Filing Jointly with +line 37 +line 4 +of the Form 1040A and +line 21 +of the Form 1040, +(a) +one +must complete +of the following two pieces of information. If you are filing a joint return with your spouse, your spouse +one +As the taxpayer, enter +Taxpayer +Spouse +OR +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Taxpayer +Spouse +Total Federal Withholding (Box A plus Box B) . +Enter in Box B the total amount of other withholding that you are reporting on Form 1040A, line 36 +that is not reported on a form in Section 1 above. These amounts come from documents such as +SSA- 1099, 1099- DIV, 1099- MISC, 1099- B, other 1099s + +or Schedule K-1's. +C +A +Total the federal withholding amounts entered on the W-2's, 1099- R's and W-2Gs in Section 1 +B +above and enter it in Box A. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Box C and Box D MUST match to activate the 'Efile Now' button. +(If not, check the amounts you have entered in Box A and Box B.) +Section 2: Boxes C and D Must Match +or call the IRS at 1-866-704-7388 to get an Electronic Filing PIN from the IRS and enter it in the space provided (all 5 digits are required). +Section 3: Verifying Your Identity +If you received a form W-2 or 1099-R select the "Add" button below to add the applicable form. You will need to enter each +----------------Page (0) Break---------------- +Section 5: Payment Options +Disclosure Statement +I agree +Return by entering my Self-Select PIN above. +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . . . . +Review the option below that applies to you and complete any required entry fields. +A. Paying Tax Due by Check + - If you are paying with a check print Form 1040V and mail it with your check to the IRS (print your return +to get Form 1040V). You have no futher action in this step. +B. Electronic Withdrawal of Tax Due (Does not apply to estimated tax payments) + - If you would like to pay your balance due using +direct debit enter the required information below and agree to the disclosure statement. +Routing number +. . . . . . . . . . . +Account number +. . . . . . . . . . . . . +Type: +. . . . . . . . . . . . . . . . . . . . . +Checking Savings +Not applicable (if not using direct debit) +Date to make withdrawal +. +Note +: do +not + enter direct deposit information here, enter it on the return +Day time phone number +. . +Electronic withdrawal disclosure statement +I agree +I authorize the U.S. Treasury and its designated Financial Agent to intitiate an ACH Electronic Funds Withdrawal (Direct Debit) +entry to the financial institution account indicated for payment of my federal taxes owed on this return and the financial +payments that I direct to be debited through the Electronic Federal Payment System (EFTPS). In order for me to initiate +subsequent payments, I request that the IRS send me a personal identification number (PIN) to access EFTPS. This +To revoke a payment, I must contact the U.S. Treasury Financial Agent at 1-888-353-4537 no later than 2 business days prior to +taxes to receive confidential information necessary to answer inquiries and resolve issues related to the payment. +and schedules and, to the best of my knowledge and belief, it is true, correct, and complete. I consent to allow my Intermediat +e +Service Provider, transmitter, or Electronic Originator (EROS) to send my return (or request for refund) to the IRS and to receive the +following information from the IRS: a) an acknowledgement of receipt or reason for rejection of transmission; b) an indication of any +refund offset; c) the reason for any delay in processing the return or refund; and d) the date of any refund. I am signing this Tax +institution to debit the entry to this account. I further understand that this authorization may apply to subsequent federal tax +authorization is to remain in full force and effect until I notify the U.S. Treasure Financial Agent to terminate the authorization. +the payment (settlement) date. I also authorize the financial institutions involved in the processing of the electronic payment of +Under penalties of perjury, I declare that I have examined this return (or request for refund) including any accompanying statements +----------------Page (1) Break---------------- diff --git a/test/data/ef/form/EFIFA.fields.json b/test/data/ef/form/EFIFA.fields.json new file mode 100755 index 00000000..99d47594 --- /dev/null +++ b/test/data/ef/form/EFIFA.fields.json @@ -0,0 +1 @@ +[{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"BXA","type":"number","calc":false,"value":""},{"id":"BXB","type":"number","calc":false,"value":""},{"id":"BXC","type":"number","calc":true,"value":""},{"id":"BXD","type":"number","calc":true,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"TEFPIN","type":"mask","calc":false,"value":""},{"id":"SEFPIN","type":"mask","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"TPDOB","type":"date","calc":false,"value":""},{"id":"SPDOB","type":"date","calc":false,"value":""},{"id":"TCURDATE","type":"date","calc":false,"value":""},{"id":"SCURDAT","type":"date","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"TARB","type":"radio","calc":false,"value":"TANA"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFIFA.json b/test/data/ef/form/EFIFA.json new file mode 100755 index 00000000..b44d135b --- /dev/null +++ b/test/data/ef/form/EFIFA.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdiy4912.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},{"oc":"#231f20","x":2.922,"y":1.5,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":9,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":23.813,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.664,"y":39.141,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":48.028,"y":45.599,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":45.599,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":48.028,"y":47.099,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":47.099,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":48.028,"y":48.412,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":48.412,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":13,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":14,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":15.375,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":16.375,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":17.344,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":18.281,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":13.125,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":13.125,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":13.125,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.028,"y":15.5,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":15.5,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":15.5,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.028,"y":17.406,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":17.406,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":17.406,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.028,"y":19.125,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":20.063,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":19.188,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":19.188,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":19.188,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":47.331,"y":37.794,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":61.769,"y":37.794,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":46.535,"y":32.625,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":60.973,"y":32.625,"w":12.54,"h":0.06,"clr":-1}],"Texts":[{"oc":"#231f20","x":3.012,"y":-0.124,"w":35.28499999999999,"clr":-1,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing-%20Complete%20All%205%20Sections%20Below","S":-1,"TS":[2,16,1,0]}]},{"oc":"#231f20","x":3.012,"y":2.126,"w":13.893000000000006,"clr":-1,"A":"left","R":[{"T":"Section%201%3A%20W-2s%20and%201099-Rs%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":4.044,"y":4.376,"w":7.7877,"clr":-1,"A":"left","R":[{"T":"item%20%20separately.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.044,"y":5.876,"w":27.008000000000003,"clr":-1,"A":"left","R":[{"T":"Complete%20one%20electronic%20W-2%20for%20every%20W-2%20you%20received.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":51.484,"y":5.876,"w":23.835199999999997,"clr":-1,"A":"left","R":[{"T":"Click%20the%20Add%20button%20for%20each%20W-2%20you%20received%20.%20.%20.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.042,"y":7.064,"w":29.89390000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20one%20electronic%201099-R%20for%20every%201099-R%20you%20received.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":51.48,"y":7.064,"w":25.298000000000005,"clr":-1,"A":"left","R":[{"T":"Click%20the%20Add%20button%20for%20each%201099-R%20you%20received%20.%20.%20.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":88.616,"y":7.064,"w":0.6592,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":2.743,"y":40.226,"w":18.076000000000004,"clr":-1,"A":"left","R":[{"T":"Section%204%3A%20Signing%20This%20Year's%20Return%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":42.476,"w":10.678399999999998,"clr":-1,"A":"left","R":[{"T":"birth%2C%20and%20today's%20date.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":51.213,"y":43.225,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":66.683,"y":43.226,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":43.976,"w":18.945999999999998,"clr":-1,"A":"left","R":[{"T":"Select%20any%205-digit%20PIN%20to%20sign%20this%20return.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":44.726,"w":18.619999999999997,"clr":-1,"A":"left","R":[{"T":"(Your%20PIN(s)%20cannot%20be%2012345%20or%2000000)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":33.485,"y":44.726,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.774,"y":46.226,"w":12.4876,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(mm%2Fdd%2Fyyyy)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":23.956,"y":46.226,"w":22.73879999999998,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.774,"y":47.538,"w":12.647499999999997,"clr":-1,"A":"left","R":[{"T":"Today's%20Date%20(mm%2Fdd%2Fyyyy)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":23.956,"y":47.538,"w":22.73879999999998,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":41.726,"w":62.686200000000085,"clr":-1,"A":"left","R":[{"T":"You%20(and%20your%20spouse%20if%20filing%20Married%20Filing%20Joint)%20will%20need%20to%20sign%20this%20return%20electronically.%20To%20do%20so%20enter%20a%205-digit%20PIN%2C%20your%20date%20of%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":83.922,"y":19.067,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"D","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":83.995,"y":13.001,"w":0.687,"clr":-1,"A":"left","R":[{"T":"A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":83.922,"y":17.286,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"C","S":44,"TS":[2,12,0,0]}]},{"x":3.682,"y":11.813,"w":308.61000000000007,"clr":0,"A":"left","R":[{"T":"To%20prevent%20issues%20with%20your%20e-filed%20return%2C%20perform%20the%20following%20reconciliation%3A","S":3,"TS":[0,12,0,0]}]},{"x":4.434,"y":19.141,"w":9,"clr":0,"A":"left","R":[{"T":"D%20","S":3,"TS":[0,12,0,0]}]},{"x":9.504,"y":19.141,"w":212.08499999999995,"clr":0,"A":"left","R":[{"T":"Total%20Federal%20Withholding%20from%20From%201040A%2C%20Line%2036.","S":3,"TS":[0,12,0,0]}]},{"x":83.851,"y":15.419,"w":6.67,"clr":0,"A":"left","R":[{"T":"B","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":6.267,"y":27.967,"w":57.23290000000008,"clr":-1,"A":"left","R":[{"T":"Look%20at%20last%20year's%20(2012)%20federal%20tax%20return%20and%20enter%20the%20Adjusted%20Gross%20Income%20(AGI)%20in%20the%20space%20provided.%20Look%20at%20the%20AGI%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":22.371,"y":36.893,"w":9.282200000000001,"clr":-1,"A":"left","R":[{"T":"Electronic%20Filing%20PIN%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":41.064,"y":33.744,"w":28.845100000000016,"clr":-1,"A":"left","R":[{"T":"http%3A%2F%2Fwww.irs.gov%2FIndividuals%2FElectronic-Filing-PIN-Request%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":16.416,"y":26.235,"w":16.957000000000004,"clr":-1,"A":"left","R":[{"T":"of%20the%20three%20pieces%20of%20information%20also.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":3.555,"y":33.752,"w":26.702199999999998,"clr":-1,"A":"left","R":[{"T":"(b)%20If%20you%20don't%20have%20or%20can't%20remember%20last%20year's%20AGI%2C%20go%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":24.898,"y":31.866999999999997,"w":7.0846,"clr":-1,"A":"left","R":[{"T":"Last%20year's%20AGI%3A","S":-1,"TS":[0,12.5192,0,0]}]},{"oc":"#231f20","x":5.355,"y":29.889,"w":28.687800000000006,"clr":-1,"A":"left","R":[{"T":"not%20file%20a%20return%20last%20year%2C%20enter%20a%20zero%20in%20the%20AGI%20space%20provided.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.549,"y":29.21,"w":58.85240000000008,"clr":-1,"A":"left","R":[{"T":"the%20same%20spouse%20that%20you%20filed%20in%202012%2C%20the%20prior%20year%20AGI%20will%20be%20the%20same%20for%20both%20you%20the%20%22Taxpayer%22%20and%20your%20%22Spouse%22.%20If%20you%20did%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":44.016,"y":28.543,"w":27.460500000000014,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040EZ.%20If%20you%20are%20filing%20Married%20Filing%20Jointly%20with","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.419,"y":28.613,"w":3.1136999999999997,"clr":-1,"A":"left","R":[{"T":"line%2037","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":39.868,"y":28.595,"w":2.5576,"clr":-1,"A":"left","R":[{"T":"line%204","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":25.16,"y":28.637,"w":10.230100000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040A%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":20.273,"y":28.608,"w":3.1136999999999997,"clr":-1,"A":"left","R":[{"T":"line%2021","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":9.821,"y":28.586,"w":7.8947,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040%2C","S":-1,"TS":[0,11.3426,0,0]}]},{"oc":"#231f20","x":3.56,"y":27.994,"w":1.6574,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":13,"y":26.209,"w":1.9756580000000001,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,13.999,1,0]}]},{"oc":"#231f20","x":3.55,"y":26.257,"w":6.7814,"clr":-1,"A":"left","R":[{"T":"must%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":21.236,"y":25.507,"w":44.69760000000005,"clr":-1,"A":"left","R":[{"T":"of%20the%20following%20two%20pieces%20of%20information.%20If%20you%20are%20filing%20a%20joint%20return%20with%20your%20spouse%2C%20your%20spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":17.726,"y":25.522,"w":1.9756580000000001,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,13.999,1,0]}]},{"oc":"#231f20","x":3.549,"y":25.507,"w":10.063300000000002,"clr":-1,"A":"left","R":[{"T":"As%20the%20taxpayer%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":50.458,"y":30.551,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":64.899,"y":30.55,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.021,"y":32.552,"w":1.4608,"clr":-1,"A":"left","R":[{"T":"OR","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":37.122,"y":36.878,"w":19.78199999999999,"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","S":-1,"TS":[2,5.577500000000001,0,0]}]},{"oc":"#231f20","x":50.16,"y":35.58,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":64.6,"y":35.58,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":9.636,"y":17.338,"w":20.896999999999995,"clr":-1,"A":"left","R":[{"T":"Total%20Federal%20Withholding%20(Box%20A%20plus%20Box%20B)%20.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.714,"y":14.534,"w":389.2050000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20in%20Box%20B%20the%20total%20amount%20of%20other%20withholding%20that%20you%20are%20reporting%20on%20Form%201040A%2C%20line%2036","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.69,"y":15.182,"w":386.6850000000003,"clr":-1,"A":"left","R":[{"T":"that%20is%20not%20reported%20on%20a%20form%20in%20Section%201%20above.%20These%20amounts%20come%20from%20documents%20such%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.69,"y":15.831,"w":231.11999999999995,"clr":-1,"A":"left","R":[{"T":"SSA-%201099%2C%201099-%20DIV%2C%201099-%20MISC%2C%201099-%20B%2C%20other%201099s","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":49.848,"y":15.831,"w":73.25099999999999,"clr":-1,"A":"left","R":[{"T":"or%20Schedule%20K-1's.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.56,"y":17.284,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"C","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.495,"y":12.885,"w":0.687,"clr":-1,"A":"left","R":[{"T":"A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":9.651,"y":12.885,"w":42.06799999999997,"clr":-1,"A":"left","R":[{"T":"Total%20the%20federal%20withholding%20amounts%20entered%20on%20the%20%20W-2's%2C%201099-%20R's%20and%20W-2Gs%20in%20Section%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.559,"y":14.534,"w":0.687,"clr":-1,"A":"left","R":[{"T":"B","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":9.982,"y":13.61,"w":12.285000000000002,"clr":-1,"A":"left","R":[{"T":"above%20and%20enter%20it%20in%20Box%20A.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":37.122,"y":36.878,"w":19.78199999999999,"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","S":-1,"TS":[2,5.577500000000001,0,0]}]},{"oc":"#231f20","x":37.184,"y":31.896,"w":19.78199999999999,"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","S":-1,"TS":[2,5.577500000000001,0,0]}]},{"x":9.476,"y":20.472,"w":273.3210000000001,"clr":0,"A":"left","R":[{"T":"Box%20C%20and%20Box%20D%20MUST%20match%20to%20activate%20the%20'Efile%20Now'%20button.","S":9,"TS":[0,12,1,0]}]},{"x":9.661,"y":21.223,"w":261.144,"clr":0,"A":"left","R":[{"T":"(If%20not%2C%20check%20the%20amounts%20you%20have%20entered%20in%20Box%20A%20and%20Box%20B.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":3.637,"y":10.366,"w":18.170000000000005,"clr":-1,"A":"left","R":[{"T":"Section%202%3A%20%20Boxes%20C%20and%20D%20Must%20Match","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":4.651,"y":34.456,"w":60.541200000000075,"clr":-1,"A":"left","R":[{"T":"or%20call%20the%20IRS%20at%201-866-704-7388%20to%20get%20an%20Electronic%20Filing%20PIN%20from%20the%20IRS%20and%20enter%20it%20in%20the%20space%20provided%20(all%205%20digits%20are%20required).","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":2.52,"y":24.007,"w":16.004000000000005,"clr":-1,"A":"left","R":[{"T":"Section%203%3A%20Verifying%20Your%20Identity%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":4.043,"y":3.6260000000000003,"w":57.423000000000016,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20form%20W-2%20or%201099-R%20select%20the%20%22Add%22%20button%20below%20to%20add%20the%20applicable%20form.%20You%20will%20need%20to%20enter%20each%20","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":439,"AM":0,"x":90.367,"y":5.988,"w":6.88,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":440,"AM":0,"x":90.39,"y":7.079,"w":6.824,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXA","EN":0},"TI":441,"AM":0,"x":87.606,"y":13.195,"w":11.782,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXB","EN":0},"TI":442,"AM":0,"x":87.882,"y":15.586,"w":11.408,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXC","EN":0},"TI":443,"AM":1024,"x":87.877,"y":17.491,"w":11.557,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXD","EN":0},"TI":444,"AM":1024,"x":87.88,"y":19.28,"w":11.557,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLYAGI","EN":0},"TI":445,"AM":0,"x":46.868,"y":31.809,"w":12.561,"h":0.833,"TU":"Taxpayer"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SLYAGI","EN":0},"TI":446,"AM":0,"x":61.591,"y":31.752,"w":12.561,"h":0.833,"TU":"Spouse [1]"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TEFPIN","EN":0},"TI":447,"AM":0,"x":49.747,"y":36.898,"w":7.702,"h":0.833,"TU":"2) Prior Year PIN [2]","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEFPIN","EN":0},"TI":448,"AM":0,"x":63.844,"y":36.845,"w":8.309,"h":0.833,"TU":"Spouse [3]","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPIN","EN":0},"TI":449,"AM":0,"x":48.059,"y":44.785,"w":12.561,"h":0.833,"TU":"Taxpayer","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIN","EN":0},"TI":450,"AM":0,"x":62.497,"y":44.785,"w":12.561,"h":0.833,"TU":"Spouse [1]","MV":"99999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOB","EN":0},"TI":451,"AM":0,"x":48.134,"y":46.32,"w":12.561,"h":0.833,"TU":"Date of Birth (mm/dd/yyyy","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOB","EN":0},"TI":452,"AM":0,"x":62.646,"y":46.285,"w":12.561,"h":0.833,"TU":"Spouse [2]","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TCURDATE","EN":0},"TI":453,"AM":0,"x":48.059,"y":47.58,"w":12.561,"h":0.833,"TU":"Today's Date (mm/dd/yyyy","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SCURDAT","EN":0},"TI":454,"AM":0,"x":62.497,"y":47.58,"w":12.561,"h":0.833,"TU":"undefined","MV":"mm/dd/yyyy"}],"Boxsets":[]},{"Height":49.5,"HLines":[],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":2.148,"y":9.063,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":47.899,"y":1.605,"w":33.165,"h":0.06,"clr":-1},{"oc":"#231f20","x":47.899,"y":2.668,"w":33.165,"h":0.06,"clr":-1},{"oc":"#231f20","x":4.964,"y":18.615,"w":95.989,"h":0.03,"clr":-1},{"oc":"#231f20","x":79.73,"y":19.865,"w":20.708,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.167,"y":21.49,"w":11.426,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.167,"y":23.49,"w":14.52,"h":0.03,"clr":-1},{"oc":"#231f20","x":4.964,"y":32.115,"w":95.989,"h":0.03,"clr":-1},{"oc":"#231f20","x":4.964,"y":18.615,"w":0.082,"h":13.53,"clr":-1},{"oc":"#231f20","x":100.871,"y":18.615,"w":0.083,"h":13.53,"clr":-1},{"oc":"#231f20","x":0,"y":49.5,"w":0.948,"h":0.345,"clr":-1}],"Texts":[{"oc":"#231f20","x":2.476,"y":9.866,"w":13.281000000000006,"clr":-1,"A":"left","R":[{"T":"Section%205%3A%20Payment%20Options","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":2.984,"y":3.05,"w":10.223,"clr":-1,"A":"left","R":[{"T":"Disclosure%20Statement","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":22.578,"y":3.05,"w":3.2467,"clr":-1,"A":"left","R":[{"T":"I%20agree","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.984,"y":7.550000000000001,"w":21.169,"clr":-1,"A":"left","R":[{"T":"Return%20by%20entering%20my%20Self-Select%20PIN%20above.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.646,"y":0.732,"w":18.607000000000003,"clr":-1,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":33.356,"y":0.732,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.646,"y":1.794,"w":17.7086,"clr":-1,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":31.994999999999997,"y":1.794,"w":14.826,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.508,"y":10.616,"w":38.72530000000002,"clr":-1,"A":"left","R":[{"T":"Review%20the%20option%20below%20that%20applies%20to%20you%20and%20complete%20any%20required%20entry%20fields.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.508,"y":14.366,"w":13.449000000000005,"clr":-1,"A":"left","R":[{"T":"A.%20Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":20.871,"y":14.366,"w":49.71190000000004,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20are%20paying%20with%20a%20check%20print%20Form%201040V%20and%20mail%20it%20with%20your%20check%20to%20the%20IRS%20(print%20your%20return%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.571,"y":15.116,"w":27.39200000000001,"clr":-1,"A":"left","R":[{"T":"to%20get%20Form%201040V).%20You%20have%20no%20futher%20action%20in%20this%20step.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.509,"y":16.616,"w":38.06399999999998,"clr":-1,"A":"left","R":[{"T":"B.%20Electronic%20Withdrawal%20of%20Tax%20Due%20(Does%20not%20apply%20to%20estimated%20tax%20payments)","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":52.779,"y":16.616,"w":23.263099999999998,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20would%20like%20to%20pay%20your%20balance%20due%20using%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.571,"y":17.366,"w":40.533,"clr":-1,"A":"left","R":[{"T":"direct%20debit%20enter%20the%20required%20information%20below%20and%20agree%20to%20the%20disclosure%20statement.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.603,"y":18.866,"w":7.367999999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":18.368,"y":18.866,"w":6.9132000000000025,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":56.102,"y":18.866,"w":7.564,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":68.569,"y":18.866,"w":8.232000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":6.602,"y":19.804,"w":2.5715,"clr":-1,"A":"left","R":[{"T":"Type%3A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":11.562,"y":19.804,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":32.383,"y":19.804,"w":4.2458,"clr":-1,"A":"left","R":[{"T":"Checking","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":45.791,"y":19.804,"w":3.6787,"clr":-1,"A":"left","R":[{"T":"Savings","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":58.169,"y":19.804,"w":18.364199999999997,"clr":-1,"A":"left","R":[{"T":"Not%20applicable%20(if%20not%20using%20direct%20debit)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.603,"y":20.616,"w":11.4533,"clr":-1,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":25.174,"y":20.616,"w":0.3192,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":6.602,"y":21.554,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":10.036,"y":21.554,"w":2.1275000000000004,"clr":-1,"A":"left","R":[{"T":"%3A%20do%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":13.326,"y":21.554,"w":1.5555999999999999,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":15.739,"y":21.554,"w":27.481,"clr":-1,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20the%20return","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.602,"y":22.616,"w":11.141,"clr":-1,"A":"left","R":[{"T":"Day%20time%20phone%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":24.494,"y":22.616,"w":0.9785999999999999,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":5.57,"y":24.116,"w":20.562,"clr":-1,"A":"left","R":[{"T":"Electronic%20withdrawal%20disclosure%20statement","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":42.695,"y":24.116,"w":3.2467,"clr":-1,"A":"left","R":[{"T":"I%20agree","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":24.866,"w":58.645700000000076,"clr":-1,"A":"left","R":[{"T":"I%20authorize%20the%20U.S.%20Treasury%20and%20its%20designated%20Financial%20Agent%20to%20intitiate%20an%20ACH%20Electronic%20Funds%20Withdrawal%20(Direct%20Debit)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":25.616,"w":55.66730000000006,"clr":-1,"A":"left","R":[{"T":"entry%20to%20the%20financial%20institution%20account%20indicated%20for%20payment%20of%20my%20federal%20taxes%20owed%20on%20this%20return%20and%20the%20financial%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":27.116,"w":56.32810000000005,"clr":-1,"A":"left","R":[{"T":"payments%20that%20I%20direct%20to%20be%20debited%20through%20the%20Electronic%20Federal%20Payment%20System%20(EFTPS).%20%20In%20order%20for%20me%20to%20initiate%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":27.866,"w":54.33630000000005,"clr":-1,"A":"left","R":[{"T":"subsequent%20payments%2C%20I%20request%20that%20the%20IRS%20send%20me%20a%20personal%20identification%20number%20(PIN)%20to%20access%20EFTPS.%20This%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":29.366,"w":59.94170000000003,"clr":-1,"A":"left","R":[{"T":"To%20revoke%20a%20payment%2C%20I%20must%20contact%20the%20U.S.%20Treasury%20Financial%20Agent%20at%201-888-353-4537%20no%20later%20than%202%20business%20days%20prior%20to%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":30.866,"w":52.787400000000076,"clr":-1,"A":"left","R":[{"T":"taxes%20to%20receive%20confidential%20information%20necessary%20to%20answer%20inquiries%20and%20resolve%20issues%20related%20to%20the%20payment.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.982,"y":4.549,"w":58.705700000000064,"clr":-1,"A":"left","R":[{"T":"and%20schedules%20and%2C%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.%20I%20consent%20to%20allow%20my%20Intermediat","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":93.764,"y":4.549,"w":0.9012,"clr":-1,"A":"left","R":[{"T":"e%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":5.299,"w":62.18460000000011,"clr":-1,"A":"left","R":[{"T":"Service%20Provider%2C%20transmitter%2C%20or%20Electronic%20Originator%20(EROS)%20%20to%20send%20my%20return%20(or%20request%20for%20refund)%20to%20the%20IRS%20and%20to%20receive%20the%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":6.049,"w":61.762400000000056,"clr":-1,"A":"left","R":[{"T":"following%20information%20from%20the%20IRS%3A%20a)%20an%20acknowledgement%20of%20receipt%20or%20reason%20for%20rejection%20of%20transmission%3B%20b)%20an%20indication%20of%20any%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":6.799,"w":59.86400000000004,"clr":-1,"A":"left","R":[{"T":"refund%20offset%3B%20c)%20the%20reason%20for%20any%20delay%20in%20processing%20the%20return%20or%20refund%3B%20and%20d)%20the%20date%20of%20any%20refund.%20I%20am%20signing%20this%20Tax%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":26.365,"w":57.95300000000008,"clr":-1,"A":"left","R":[{"T":"institution%20to%20debit%20the%20entry%20to%20this%20account.%20%20I%20further%20understand%20that%20this%20authorization%20may%20apply%20to%20subsequent%20federal%20tax%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":28.615,"w":58.91130000000007,"clr":-1,"A":"left","R":[{"T":"authorization%20is%20to%20remain%20in%20full%20force%20and%20effect%20until%20I%20notify%20the%20U.S.%20Treasure%20Financial%20Agent%20to%20terminate%20the%20authorization.%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":30.115,"w":59.57520000000008,"clr":-1,"A":"left","R":[{"T":"the%20payment%20(settlement)%20date.%20%20I%20also%20authorize%20the%20financial%20institutions%20involved%20in%20the%20processing%20of%20the%20electronic%20payment%20of%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.985,"y":3.8,"w":61.70930000000007,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20(or%20request%20for%20refund)%20including%20any%20accompanying%20statements%20","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":455,"AM":0,"x":48.014,"y":0.802,"w":33.043,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":457,"AM":0,"x":28.685,"y":19.045,"w":19.321,"h":0.833,"TU":"Checking","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":458,"AM":0,"x":79.68,"y":19.03,"w":20.728,"h":0.833,"TU":"Account number . . . . . . . . . . . . . G","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":462,"AM":0,"x":28.118,"y":20.717,"w":11.447,"h":0.833,"TU":"Date to make withdrawal . G","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":463,"AM":0,"x":28.118,"y":22.655,"w":14.541,"h":0.833,"TU":"Day time phone number . . G"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":465,"AM":0,"x":47.915,"y":1.84,"w":33.043,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":456,"AM":0,"x":19.496,"y":3.258,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":459,"AM":0,"x":28.978,"y":19.862,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":460,"AM":0,"x":42.502,"y":19.893,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TANA","EN":0},"TI":461,"AM":0,"x":54.963,"y":19.823,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":464,"AM":0,"x":39.685,"y":24.112,"w":3.094,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFIFEZ.content.txt b/test/data/ef/form/EFIFEZ.content.txt new file mode 100755 index 00000000..df38fbf1 --- /dev/null +++ b/test/data/ef/form/EFIFEZ.content.txt @@ -0,0 +1,115 @@ +Required Information For Electronic Filing- Complete All 5 Sections Below +Section 1: W-2s +item separately. +Complete one electronic W-2 for every W-2 you received. +Click the Add button for each W-2 you received. . . . + + +Section 4: Signing This Year's Return +birth, and today's date. +Taxpayer +Spouse +Select any 5-digit PIN to sign this return. +(Your PIN(s) cannot be 12345 or 00000) +. . . . . . . . . . . . . . . . . . . . . +Date of Birth (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Today's Date (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +You (and your spouse if filing Married Filing Joint) will need to sign this return electronically. To do so enter a 5-digit PIN, your date of +D +A +C +B +Look at last year's (2012) federal tax return and enter the Adjusted Gross Income (AGI) in the space provided. Look at the AGI on +Electronic Filing PIN: +http://www.irs.gov/Individuals/Electronic-Filing-PIN-Request, +of the three pieces of information also. +(b) If you don't have or can't remember last year's AGI, go to +Last year's AGI: +not file a return last year, enter a zero in the AGI space provided. +the same spouse that you filed in 2012, the prior year AGI will be the same for both you the "Taxpayer" and your "Spouse". If you did +of the Form 1040EZ. If you are filing Married Filing Jointly with +line 37 +line 4 +of the Form 1040A and +line 21 +of the Form 1040, +(a) +one +must complete +of the following two pieces of information. If you are filing a joint return with your spouse, your spouse +one +As the taxpayer, enter +Taxpayer +Spouse +. . . . . . . . . . . . . . . . . . . . . . . +OR +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Taxpayer +Spouse +Total Federal Withholding (Box A plus Box B) . +To prevent issues with your e-filed return, perform the following reconciliation: +that is not reported on a form in Section 1 above. These amounts come from documents such as +SSA- 1099, 1099- DIV, 1099- MISC, 1099- B, other 1099s or Schedule K-1's. +C +A +Total the federal withholding amounts entered on the W-2's, 1099- R's and W-2Gs in Section 1 +B +Enter in Box B the total amount of other withholding that you are reporting on Form 1040EZ, line 7 +D Total Federal Withholding from From 1040EZ, Line 7. +above and enter it in Box A. +Box C and Box D MUST match to activate the 'Efile Now' button. +(If not, check the amounts you have entered in Box A and Box B.) +Section 2: Boxes C and D Must Match +or call the IRS at 1-866-704-7388 to get an Electronic Filing PIN from the IRS and enter it in the space provided (all 5 digits are required). +Section 3: Verifying Your Identity +If you received a form W-2 select the "Add" button below to add the applicable form. You will need to enter each +----------------Page (0) Break---------------- +Disclosure Statement +I agree +Return by entering my Self-Select PIN above. +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . . . . +Section 5: Payment Options +Review the option below that applies to you and complete any required entry fields. +A. Paying Tax Due by Check + - If you are paying with a check print Form 1040V and mail it with your check to the IRS (print your return +to get Form 1040V). You have no futher action in this step. +B. Electronic Withdrawal of Tax Due (Does not apply to estimated tax payments) + - If you would like to pay your balance due using +direct debit enter the required information below and agree to the disclosure statement. +Routing number +. . . . . . . . . . . +Account number +. . . . . . . . . . . . . +Type: +. . . . . . . . . . . . . . . . . . . . . +Checking Savings Not applicable (if not using direct debit) +Date to make withdrawal +. +Note +: do +not + enter direct deposit information here, enter it on the return +Day time phone number +. . +Electronic withdrawal disclosure statement +I agree +I authorize the U.S. Treasury and its designated Financial Agent to intitiate an ACH Electronic Funds Withdrawal (Direct Debit) +entry to the financial institution account indicated for payment of my federal taxes owed on this return and the financial +payments that I direct to be debited through the Electronic Federal Payment System (EFTPS). In order for me to initiate +subsequent payments, I request that the IRS send me a personal identification number (PIN) to access EFTPS. This +To revoke a payment, I must contact the U.S. Treasury Financial Agent at 1-888-353-4537 no later than 2 business days prior to +taxes to receive confidential information necessary to answer inquiries and resolve issues related to the payment. +Under penalties of perjury, I declare that I have examined this return (or request for refund) including any accompanying statements +Service Provider, transmitter, or Electronic Originator (EROS) to send my return (or request for refund) to the IRS and to receive the +institution to debit the entry to this account. I further understand that this authorization may apply to subsequent federal tax +authorization is to remain in full force and effect until I notify the U.S. Treasure Financial Agent to terminate the authorization. +the payment (settlement) date. I also authorize the financial institutions involved in the processing of the electronic payment of +and schedules and, to the best of my knowledge and belief, it is true, correct, and complete. I consent to allow my Intermediate +following information from the IRS: a) an acknowledgement of receipt or reason for rejection of transmission; b) an indication of any +refund offset; c) the reason for any delay in processing the return or refund; and d) the date of any refund. I am signing this Tax +----------------Page (1) Break---------------- diff --git a/test/data/ef/form/EFIFEZ.fields.json b/test/data/ef/form/EFIFEZ.fields.json new file mode 100755 index 00000000..22ff5445 --- /dev/null +++ b/test/data/ef/form/EFIFEZ.fields.json @@ -0,0 +1 @@ +[{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"BXA","type":"number","calc":false,"value":""},{"id":"BXB","type":"number","calc":false,"value":""},{"id":"BXC","type":"number","calc":true,"value":""},{"id":"BXD","type":"number","calc":true,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"TEFPIN","type":"mask","calc":false,"value":""},{"id":"SEFPIN","type":"mask","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"TPDOB","type":"date","calc":false,"value":""},{"id":"SPDOB","type":"date","calc":false,"value":""},{"id":"TCURDATE","type":"date","calc":false,"value":""},{"id":"SCURDAT","type":"date","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"TARB","type":"radio","calc":false,"value":"TANA"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFIFEZ.json b/test/data/ef/form/EFIFEZ.json new file mode 100755 index 00000000..25e14042 --- /dev/null +++ b/test/data/ef/form/EFIFEZ.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdiy4912.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},{"oc":"#231f20","x":2.922,"y":1.5,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":9,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":3.051,"y":23.156,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":39.281,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":48.028,"y":45.599,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":45.599,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":48.028,"y":47.099,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":47.099,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":48.028,"y":47.974,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.466,"y":47.974,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":12.672,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":13.672,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":15.047,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":16.047,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":17.016,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":17.953,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":12.797,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":12.797,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":12.797,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.028,"y":15.172,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":15.172,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":15.172,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.028,"y":17.078,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":17.078,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":17.078,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":82.028,"y":18.797,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":19.734,"w":17.696,"h":0.06,"clr":-1},{"oc":"#231f20","x":82.028,"y":18.859,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":87.184,"y":18.859,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":99.559,"y":18.859,"w":0.165,"h":0.81,"clr":-1},{"oc":"#231f20","x":48.878,"y":32.521,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":63.316,"y":32.521,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":47.976,"y":37.748,"w":12.54,"h":0.06,"clr":-1},{"oc":"#231f20","x":62.413,"y":37.748,"w":12.54,"h":0.06,"clr":-1}],"Texts":[{"oc":"#231f20","x":3.012,"y":-0.124,"w":35.28499999999999,"clr":-1,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing-%20Complete%20All%205%20Sections%20Below","S":-1,"TS":[2,16,1,0]}]},{"oc":"#231f20","x":3.012,"y":2.126,"w":7.446000000000001,"clr":-1,"A":"left","R":[{"T":"Section%201%3A%20W-2s","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":4.044,"y":4.376,"w":7.7877,"clr":-1,"A":"left","R":[{"T":"item%20%20separately.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.044,"y":5.876,"w":27.008000000000003,"clr":-1,"A":"left","R":[{"T":"Complete%20one%20electronic%20W-2%20for%20every%20W-2%20you%20received.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":37.732,"y":5.876,"w":24.154299999999996,"clr":-1,"A":"left","R":[{"T":"Click%20the%20Add%20button%20for%20each%20W-2%20you%20received.%20.%20.%20.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.743,"y":40.226,"w":18.076000000000004,"clr":-1,"A":"left","R":[{"T":"Section%204%3A%20Signing%20This%20Year's%20Return%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":42.476,"w":10.678399999999998,"clr":-1,"A":"left","R":[{"T":"birth%2C%20and%20today's%20date.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":51.213,"y":43.225,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":66.683,"y":43.226,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":43.976,"w":18.945999999999998,"clr":-1,"A":"left","R":[{"T":"Select%20any%205-digit%20PIN%20to%20sign%20this%20return.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":44.725,"w":18.619999999999997,"clr":-1,"A":"left","R":[{"T":"(Your%20PIN(s)%20cannot%20be%2012345%20or%2000000)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":33.485,"y":44.726,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.774,"y":46.226,"w":12.4876,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth%20(mm%2Fdd%2Fyyyy)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":23.956,"y":46.226,"w":22.73879999999998,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.774,"y":46.976,"w":12.647499999999997,"clr":-1,"A":"left","R":[{"T":"Today's%20Date%20(mm%2Fdd%2Fyyyy)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":23.956,"y":46.976,"w":22.73879999999998,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.7750000000000004,"y":41.726,"w":62.686200000000085,"clr":-1,"A":"left","R":[{"T":"You%20(and%20your%20spouse%20if%20filing%20Married%20Filing%20Joint)%20will%20need%20to%20sign%20this%20return%20electronically.%20To%20do%20so%20enter%20a%205-digit%20PIN%2C%20your%20date%20of%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":83.922,"y":18.739,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"D","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":83.995,"y":12.673,"w":0.687,"clr":-1,"A":"left","R":[{"T":"A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":83.922,"y":16.958,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"C","S":44,"TS":[2,12,0,0]}]},{"x":83.851,"y":15.091,"w":6.67,"clr":0,"A":"left","R":[{"T":"B","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":6.267,"y":27.92,"w":57.23290000000008,"clr":-1,"A":"left","R":[{"T":"Look%20at%20last%20year's%20(2012)%20federal%20tax%20return%20and%20enter%20the%20Adjusted%20Gross%20Income%20(AGI)%20in%20the%20space%20provided.%20Look%20at%20the%20AGI%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":23.016,"y":36.846,"w":9.282200000000001,"clr":-1,"A":"left","R":[{"T":"Electronic%20Filing%20PIN%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":40.505,"y":33.697,"w":28.845100000000016,"clr":-1,"A":"left","R":[{"T":"http%3A%2F%2Fwww.irs.gov%2FIndividuals%2FElectronic-Filing-PIN-Request%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":16.416,"y":26.188,"w":16.957000000000004,"clr":-1,"A":"left","R":[{"T":"of%20the%20three%20pieces%20of%20information%20also.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":3.168,"y":33.705,"w":26.702199999999998,"clr":-1,"A":"left","R":[{"T":"(b)%20If%20you%20don't%20have%20or%20can't%20remember%20last%20year's%20AGI%2C%20go%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":24.898,"y":31.491999999999997,"w":7.0846,"clr":-1,"A":"left","R":[{"T":"Last%20year's%20AGI%3A","S":-1,"TS":[0,12.5192,0,0]}]},{"oc":"#231f20","x":5.355,"y":29.843,"w":28.687800000000006,"clr":-1,"A":"left","R":[{"T":"not%20file%20a%20return%20last%20year%2C%20enter%20a%20zero%20in%20the%20AGI%20space%20provided.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.549,"y":29.163,"w":58.85240000000008,"clr":-1,"A":"left","R":[{"T":"the%20same%20spouse%20that%20you%20filed%20in%202012%2C%20the%20prior%20year%20AGI%20will%20be%20the%20same%20for%20both%20you%20the%20%22Taxpayer%22%20and%20your%20%22Spouse%22.%20If%20you%20did%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":44.016,"y":28.497,"w":27.460500000000014,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040EZ.%20If%20you%20are%20filing%20Married%20Filing%20Jointly%20with","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.419,"y":28.566,"w":3.1136999999999997,"clr":-1,"A":"left","R":[{"T":"line%2037","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":39.868,"y":28.548,"w":2.5576,"clr":-1,"A":"left","R":[{"T":"line%204","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":25.16,"y":28.59,"w":10.230100000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040A%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":20.273,"y":28.561,"w":3.1136999999999997,"clr":-1,"A":"left","R":[{"T":"line%2021","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":9.821,"y":28.539,"w":7.8947,"clr":-1,"A":"left","R":[{"T":"of%20the%20Form%201040%2C","S":-1,"TS":[0,11.3426,0,0]}]},{"oc":"#231f20","x":3.56,"y":27.947,"w":1.6574,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":13,"y":26.224,"w":1.9756580000000001,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,13.999,1,0]}]},{"oc":"#231f20","x":3.55,"y":26.21,"w":6.7814,"clr":-1,"A":"left","R":[{"T":"must%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":21.236,"y":25.46,"w":44.69760000000005,"clr":-1,"A":"left","R":[{"T":"of%20the%20following%20two%20pieces%20of%20information.%20If%20you%20are%20filing%20a%20joint%20return%20with%20your%20spouse%2C%20your%20spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":17.726,"y":25.475,"w":1.9756580000000001,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,13.999,1,0]}]},{"oc":"#231f20","x":3.549,"y":25.46,"w":10.063300000000002,"clr":-1,"A":"left","R":[{"T":"As%20the%20taxpayer%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":50.458,"y":30.504,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":64.9,"y":30.504,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":37.265,"y":31.622999999999998,"w":15.1662,"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","S":-1,"TS":[2,6.8108,0,0]}]},{"oc":"#231f20","x":3.377,"y":32.646,"w":1.4608,"clr":-1,"A":"left","R":[{"T":"OR","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":37.766,"y":36.831,"w":19.78199999999999,"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","S":-1,"TS":[2,5.577500000000001,0,0]}]},{"oc":"#231f20","x":51.32,"y":35.72,"w":4.2658000000000005,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":65.76,"y":35.72,"w":3.4646,"clr":-1,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":10.13,"y":16.95,"w":20.896999999999995,"clr":-1,"A":"left","R":[{"T":"Total%20Federal%20Withholding%20(Box%20A%20plus%20Box%20B)%20.%20","S":3,"TS":[0,12,0,0]}]},{"x":4.369,"y":11.344,"w":308.61000000000007,"clr":0,"A":"left","R":[{"T":"To%20prevent%20issues%20with%20your%20e-filed%20return%2C%20perform%20the%20following%20reconciliation%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.257,"y":14.801,"w":42.964999999999975,"clr":-1,"A":"left","R":[{"T":"that%20is%20not%20reported%20on%20a%20form%20in%20Section%201%20above.%20These%20amounts%20come%20from%20documents%20such%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.183,"y":15.442,"w":34.09700000000001,"clr":-1,"A":"left","R":[{"T":"SSA-%201099%2C%201099-%20DIV%2C%201099-%20MISC%2C%201099-%20B%2C%20other%201099s%20or%20Schedule%20K-1's.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.054,"y":16.895,"w":0.6930000000000001,"clr":-1,"A":"left","R":[{"T":"C","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.989,"y":12.497,"w":0.687,"clr":-1,"A":"left","R":[{"T":"A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":10.144,"y":12.497,"w":42.06799999999997,"clr":-1,"A":"left","R":[{"T":"Total%20the%20federal%20withholding%20amounts%20entered%20on%20the%20%20W-2's%2C%201099-%20R's%20and%20W-2Gs%20in%20Section%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.052,"y":14.146,"w":0.687,"clr":-1,"A":"left","R":[{"T":"B","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":10.208,"y":14.146,"w":43.29999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20in%20Box%20B%20the%20total%20amount%20of%20other%20withholding%20that%20you%20are%20reporting%20on%20Form%201040EZ%2C%20line%207","S":3,"TS":[0,12,0,0]}]},{"x":5.121,"y":18.672,"w":9,"clr":0,"A":"left","R":[{"T":"D%20","S":3,"TS":[0,12,0,0]}]},{"x":10.191,"y":18.672,"w":212.57999999999996,"clr":0,"A":"left","R":[{"T":"Total%20Federal%20Withholding%20from%20From%201040EZ%2C%20Line%207.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.477,"y":13.221,"w":12.285000000000002,"clr":-1,"A":"left","R":[{"T":"above%20and%20enter%20it%20in%20Box%20A.","S":3,"TS":[0,12,0,0]}]},{"x":9.207,"y":20.107,"w":273.3210000000001,"clr":0,"A":"left","R":[{"T":"Box%20C%20and%20Box%20D%20MUST%20match%20to%20activate%20the%20'Efile%20Now'%20button.","S":9,"TS":[0,12,1,0]}]},{"x":9.262,"y":20.904,"w":261.144,"clr":0,"A":"left","R":[{"T":"(If%20not%2C%20check%20the%20amounts%20you%20have%20entered%20in%20Box%20A%20and%20Box%20B.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":3.379,"y":9.898,"w":18.170000000000005,"clr":-1,"A":"left","R":[{"T":"Section%202%3A%20%20Boxes%20C%20and%20D%20Must%20Match","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":3.824,"y":34.394,"w":60.541200000000075,"clr":-1,"A":"left","R":[{"T":"or%20call%20the%20IRS%20at%201-866-704-7388%20to%20get%20an%20Electronic%20Filing%20PIN%20from%20the%20IRS%20and%20enter%20it%20in%20the%20space%20provided%20(all%205%20digits%20are%20required).","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":2.52,"y":23.96,"w":16.004000000000005,"clr":-1,"A":"left","R":[{"T":"Section%203%3A%20Verifying%20Your%20Identity%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":4.044,"y":3.6260000000000003,"w":52.53,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20form%20W-2%20select%20the%20%22Add%22%20button%20below%20to%20add%20the%20applicable%20form.%20You%20will%20need%20to%20enter%20each%20","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":466,"AM":0,"x":90.371,"y":5.974,"w":6.88,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXA","EN":0},"TI":467,"AM":0,"x":87.297,"y":12.83,"w":11.932,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXB","EN":0},"TI":468,"AM":0,"x":87.371,"y":15.261,"w":11.857,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXC","EN":0},"TI":469,"AM":1024,"x":87.507,"y":17.148,"w":11.857,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BXD","EN":0},"TI":470,"AM":1024,"x":87.387,"y":18.938,"w":11.857,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLYAGI","EN":0},"TI":471,"AM":0,"x":48.699,"y":31.674,"w":12.56,"h":0.833,"TU":"Taxpayer"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SLYAGI","EN":0},"TI":472,"AM":0,"x":63.137,"y":31.674,"w":12.56,"h":0.833,"TU":"Spouse [1]"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TEFPIN","EN":0},"TI":473,"AM":0,"x":50.432,"y":36.908,"w":8.431,"h":0.833,"TU":"2) Prior Year PIN [2]","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEFPIN","EN":0},"TI":474,"AM":0,"x":64.263,"y":36.863,"w":8.552,"h":0.833,"TU":"Spouse [3]","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPIN","EN":0},"TI":475,"AM":0,"x":48.101,"y":44.801,"w":12.561,"h":0.833,"TU":"Taxpayer","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIN","EN":0},"TI":476,"AM":0,"x":62.314,"y":44.801,"w":12.561,"h":0.833,"TU":"Spouse [1]","MV":"99999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOB","EN":0},"TI":477,"AM":0,"x":47.876,"y":46.301,"w":12.561,"h":0.833,"TU":"Date of Birth (mm/dd/yyyy","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOB","EN":0},"TI":478,"AM":0,"x":62.314,"y":46.301,"w":12.561,"h":0.833,"TU":"Spouse [2]","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TCURDATE","EN":0},"TI":479,"AM":0,"x":47.876,"y":47.221,"w":12.561,"h":0.833,"TU":"Today's Date (mm/dd/yyyy","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SCURDAT","EN":0},"TI":480,"AM":0,"x":62.314,"y":47.221,"w":12.561,"h":0.833,"TU":"undefined","MV":"mm/dd/yyyy"}],"Boxsets":[]},{"Height":49.5,"HLines":[],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":2.148,"y":9.063,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":47.899,"y":1.605,"w":33.165,"h":0.06,"clr":-1},{"oc":"#231f20","x":47.899,"y":2.855,"w":33.165,"h":0.06,"clr":-1},{"oc":"#231f20","x":4.964,"y":18.865,"w":95.989,"h":0.03,"clr":-1},{"oc":"#231f20","x":79.73,"y":19.99,"w":20.708,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.167,"y":21.49,"w":11.426,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.167,"y":23.74,"w":14.52,"h":0.03,"clr":-1},{"oc":"#231f20","x":4.964,"y":32.365,"w":95.989,"h":0.03,"clr":-1},{"oc":"#231f20","x":4.964,"y":18.865,"w":0.082,"h":13.53,"clr":-1},{"oc":"#231f20","x":100.871,"y":18.865,"w":0.082,"h":13.53,"clr":-1}],"Texts":[{"oc":"#231f20","x":2.983,"y":3.3,"w":10.223,"clr":-1,"A":"left","R":[{"T":"Disclosure%20Statement","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":22.578,"y":3.3,"w":3.2467,"clr":-1,"A":"left","R":[{"T":"I%20agree","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":7.800000000000001,"w":21.169,"clr":-1,"A":"left","R":[{"T":"Return%20by%20entering%20my%20Self-Select%20PIN%20above.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.646,"y":0.732,"w":18.607000000000003,"clr":-1,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":33.356,"y":0.732,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.646,"y":1.919,"w":17.7086,"clr":-1,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":31.994999999999997,"y":2.044,"w":14.826,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":2.476,"y":10.116,"w":13.281000000000006,"clr":-1,"A":"left","R":[{"T":"Section%205%3A%20Payment%20Options","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":3.508,"y":10.866,"w":38.72530000000002,"clr":-1,"A":"left","R":[{"T":"Review%20the%20option%20below%20that%20applies%20to%20you%20and%20complete%20any%20required%20entry%20fields.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.508,"y":14.616,"w":13.449000000000005,"clr":-1,"A":"left","R":[{"T":"A.%20Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":20.527,"y":14.616,"w":49.71190000000004,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20are%20paying%20with%20a%20check%20print%20Form%201040V%20and%20mail%20it%20with%20your%20check%20to%20the%20IRS%20(print%20your%20return%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":15.366,"w":27.39200000000001,"clr":-1,"A":"left","R":[{"T":"to%20get%20Form%201040V).%20You%20have%20no%20futher%20action%20in%20this%20step.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.508,"y":16.866,"w":38.06399999999998,"clr":-1,"A":"left","R":[{"T":"B.%20Electronic%20Withdrawal%20of%20Tax%20Due%20(Does%20not%20apply%20to%20estimated%20tax%20payments)","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":51.403,"y":16.866,"w":23.263099999999998,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20would%20like%20to%20pay%20your%20balance%20due%20using%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":17.616,"w":40.533,"clr":-1,"A":"left","R":[{"T":"direct%20debit%20enter%20the%20required%20information%20below%20and%20agree%20to%20the%20disclosure%20statement.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.602,"y":19.116,"w":7.367999999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":18.368,"y":19.116,"w":6.9132000000000025,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":56.102,"y":19.116,"w":7.564,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":68.569,"y":19.116,"w":8.232000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":6.602,"y":19.866,"w":2.5715,"clr":-1,"A":"left","R":[{"T":"Type%3A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":11.562,"y":19.866,"w":13.507200000000001,"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.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":32.383,"y":19.866,"w":4.2458,"clr":-1,"A":"left","R":[{"T":"Checking","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":45.791,"y":19.866,"w":3.6787,"clr":-1,"A":"left","R":[{"T":"Savings","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":58.169,"y":19.866,"w":18.364199999999997,"clr":-1,"A":"left","R":[{"T":"Not%20applicable%20(if%20not%20using%20direct%20debit)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.603,"y":20.616,"w":11.4533,"clr":-1,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":25.174,"y":20.616,"w":0.3192,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":6.602,"y":21.366,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":10.036,"y":21.366,"w":2.1275000000000004,"clr":-1,"A":"left","R":[{"T":"%3A%20do%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":12.637,"y":21.366,"w":1.5555999999999999,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":14.879,"y":21.366,"w":27.481,"clr":-1,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20the%20return","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":6.602,"y":22.866,"w":11.141,"clr":-1,"A":"left","R":[{"T":"Day%20time%20phone%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":24.494,"y":22.866,"w":0.9785999999999999,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":5.57,"y":24.366,"w":20.562,"clr":-1,"A":"left","R":[{"T":"Electronic%20withdrawal%20disclosure%20statement","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":42.695,"y":24.366,"w":3.2467,"clr":-1,"A":"left","R":[{"T":"I%20agree","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":25.116,"w":58.645700000000076,"clr":-1,"A":"left","R":[{"T":"I%20authorize%20the%20U.S.%20Treasury%20and%20its%20designated%20Financial%20Agent%20to%20intitiate%20an%20ACH%20Electronic%20Funds%20Withdrawal%20(Direct%20Debit)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":25.866,"w":55.66730000000006,"clr":-1,"A":"left","R":[{"T":"entry%20to%20the%20financial%20institution%20account%20indicated%20for%20payment%20of%20my%20federal%20taxes%20owed%20on%20this%20return%20and%20the%20financial%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":27.366,"w":56.32810000000005,"clr":-1,"A":"left","R":[{"T":"payments%20that%20I%20direct%20to%20be%20debited%20through%20the%20Electronic%20Federal%20Payment%20System%20(EFTPS).%20%20In%20order%20for%20me%20to%20initiate%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":28.116,"w":54.33630000000005,"clr":-1,"A":"left","R":[{"T":"subsequent%20payments%2C%20I%20request%20that%20the%20IRS%20send%20me%20a%20personal%20identification%20number%20(PIN)%20to%20access%20EFTPS.%20This%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":29.616,"w":59.94170000000003,"clr":-1,"A":"left","R":[{"T":"To%20revoke%20a%20payment%2C%20I%20must%20contact%20the%20U.S.%20Treasury%20Financial%20Agent%20at%201-888-353-4537%20no%20later%20than%202%20business%20days%20prior%20to%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.57,"y":31.116,"w":52.787400000000076,"clr":-1,"A":"left","R":[{"T":"taxes%20to%20receive%20confidential%20information%20necessary%20to%20answer%20inquiries%20and%20resolve%20issues%20related%20to%20the%20payment.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.984,"y":4.05,"w":61.70930000000007,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20(or%20request%20for%20refund)%20including%20any%20accompanying%20statements%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":5.549,"w":62.18460000000011,"clr":-1,"A":"left","R":[{"T":"Service%20Provider%2C%20transmitter%2C%20or%20Electronic%20Originator%20(EROS)%20%20to%20send%20my%20return%20(or%20request%20for%20refund)%20to%20the%20IRS%20and%20to%20receive%20the%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":26.616,"w":57.95300000000008,"clr":-1,"A":"left","R":[{"T":"institution%20to%20debit%20the%20entry%20to%20this%20account.%20%20I%20further%20understand%20that%20this%20authorization%20may%20apply%20to%20subsequent%20federal%20tax%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":28.866,"w":58.91130000000007,"clr":-1,"A":"left","R":[{"T":"authorization%20is%20to%20remain%20in%20full%20force%20and%20effect%20until%20I%20notify%20the%20U.S.%20Treasure%20Financial%20Agent%20to%20terminate%20the%20authorization.%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.569,"y":30.366,"w":59.57520000000008,"clr":-1,"A":"left","R":[{"T":"the%20payment%20(settlement)%20date.%20%20I%20also%20authorize%20the%20financial%20institutions%20involved%20in%20the%20processing%20of%20the%20electronic%20payment%20of%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.984,"y":4.8,"w":59.60690000000007,"clr":-1,"A":"left","R":[{"T":"and%20schedules%20and%2C%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.%20I%20consent%20to%20allow%20my%20Intermediate%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":6.299,"w":61.762400000000056,"clr":-1,"A":"left","R":[{"T":"following%20information%20from%20the%20IRS%3A%20a)%20an%20acknowledgement%20of%20receipt%20or%20reason%20for%20rejection%20of%20transmission%3B%20b)%20an%20indication%20of%20any%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.983,"y":7.049,"w":59.86400000000004,"clr":-1,"A":"left","R":[{"T":"refund%20offset%3B%20c)%20the%20reason%20for%20any%20delay%20in%20processing%20the%20return%20or%20refund%3B%20and%20d)%20the%20date%20of%20any%20refund.%20I%20am%20signing%20this%20Tax%20","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":481,"AM":0,"x":47.848,"y":0.804,"w":33.186,"h":0.833,"TU":"E-mail address (for confirmation e-mail"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":482,"AM":0,"x":47.751,"y":2.046,"w":33.186,"h":0.833,"TU":"Re-enter e-mail address (must match"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":484,"AM":0,"x":29.182,"y":19.195,"w":19.321,"h":0.833,"TU":"Checking","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":485,"AM":0,"x":79.833,"y":19.18,"w":20.728,"h":0.833,"TU":"Account number . . . . . . . . . . . . . G","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":489,"AM":0,"x":28.443,"y":20.707,"w":11.447,"h":0.833,"TU":"Date to make withdrawal . G","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":490,"AM":0,"x":28.443,"y":22.867,"w":14.541,"h":0.833,"TU":"Day time phone number . . G"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":483,"AM":0,"x":19.268,"y":3.313,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":486,"AM":0,"x":29.132,"y":19.887,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":487,"AM":0,"x":42.484,"y":19.918,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TANA","EN":0},"TI":488,"AM":0,"x":55.116,"y":19.911,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":491,"AM":0,"x":39.838,"y":24.325,"w":3.094,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINDEZ.content.txt b/test/data/ef/form/EFINDEZ.content.txt new file mode 100755 index 00000000..1297a39d --- /dev/null +++ b/test/data/ef/form/EFINDEZ.content.txt @@ -0,0 +1,85 @@ +Required Information For Electronic Filing - Complete All 4 Sections Below +Per North Dakota Office of State Tax Commissioner +Section 1: Federal Information Needed for North Dakota Return +multiple forms, use the Add button to enter information from each form separately. +Example: +If you received two Forms W-2, click the "Add" button next to the Form W-2 and enter the information for your first Form +W-2. After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat +Form W-2 + Wage & Tax Statement +G +Form 1099-R +G +Form W-2G + Certain Gambling Winnings +G +Form 1099-G + Certain Government Payments +G +Form 1099-MISC + Miscellaneous Income +G +Check the box if you do not have any of the above forms +G + +IMPORTANT: Identifying information from your North Dakota return +Note: + If you are married filing joint, and you filed together in 2012, enter the same amount in the taxpayer and spouse columns. + Taxpayer +Spouse +Prior Year North Dakota Taxable Income +. . . . . . . . . . . . . . . . . . . . . +Section 3: Additional Information Needed to E-file Your North Dakota Return +A. Enter Email Address +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . +Enter your 2012 North Dakota taxable income (Form ND-1, line 18). The North Dakota Office of State Tax Commissioner uses +this information to verify your identity. This information must match what they have in their records, so don't guess. Do not use +amounts from an amended 2012 North Dakota tax return. The 2012 taxable income must come from your originally filed tax return. + this for each of the types of forms listed below that you received. +B. International ACH Transactions - Required if using direct deposit or electronic funds withdrawal +Yes +No +Will the funds go to or originate from an account outside the U.S.? + - You will receive a check unless you entered direct deposit information directly on Form ND-1. +Section 4: Refund/Payment Options +A. Refund +B. Paying Tax Due by Check- + If you are paying with a check, print form ND-1V payment voucher and mail it with your check to +Routing number +. . . . . . . . . . . +G +Account number +. . . . . . . . . . +G +Type: +. . . . . . . . . . . . . . . . . . . . . +G +Date to make withdrawal +. +G +Note +: Do +not + enter direct deposit information here, enter it on Form ND-1. +C. Electronic Funds Withdrawal of Tax Due + - If you would like to pay your tax balance due using electronic funds withdrawal, enter +the required information below. +Checking +Saving +If you received a form W-2, 1099-R, W-2G, 1099-G, or 1099-MISC that has North Dakota Witholding on it, you are required to enter +specific information for each of the forms received. You must enter the information exactly as it appears on the form. If you have +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + Distributions from Pensions, Annuities, Retirement or Profit-Sharing Plans, IRAs, Insurance Contracts, etc + . . . . . . . . . . . . . . . . . . . +the North Dakota Officeof State Tax Commissioner. +By checking the box and entering the information below, I agree to pay my tax balance due by electronic funds withdrawal +Section 2: Verifying Your Identity +Check the box to authorize electronic funds withdrawal +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINDEZ.fields.json b/test/data/ef/form/EFINDEZ.fields.json new file mode 100755 index 00000000..34262528 --- /dev/null +++ b/test/data/ef/form/EFINDEZ.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINDEZ.json b/test/data/ef/form/EFINDEZ.json new file mode 100755 index 00000000..0e905934 --- /dev/null +++ b/test/data/ef/form/EFINDEZ.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdindwkt.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":3.438,"y":2.313,"w":100.372,"h":0.124,"clr":0},{"x":3.609,"y":16.563,"w":100.372,"h":0.124,"clr":0},{"x":50.531,"y":24.812,"w":12.458,"h":0.03,"clr":0},{"x":64.969,"y":24.812,"w":12.458,"h":0.03,"clr":0},{"x":3.438,"y":25.437,"w":100.372,"h":0.124,"clr":0},{"x":50.531,"y":29.125,"w":33.083,"h":0.03,"clr":0},{"x":50.531,"y":30.187,"w":33.083,"h":0.03,"clr":0},{"x":2.922,"y":35.125,"w":100.372,"h":0.124,"clr":0},{"x":7.531,"y":32.099,"w":93.926,"h":0.03,"clr":0},{"x":7.531,"y":34.349,"w":93.926,"h":0.03,"clr":0},{"x":7.531,"y":32.099,"w":0.082,"h":2.28,"clr":0},{"x":188.129,"y":31.771,"w":0.082,"h":2.28,"clr":0},{"x":101.406,"y":32.125,"w":0.082,"h":2.28,"clr":0},{"x":30.291,"y":46.031,"w":17.614,"h":0.03,"clr":0},{"x":71.026,"y":46.406,"w":20.708,"h":0.03,"clr":0},{"x":30.291,"y":47.781,"w":16.583,"h":0.03,"clr":0},{"x":7.088,"y":49.156,"w":94.958,"h":0.03,"clr":0},{"x":7.049,"y":43.206,"w":0.082,"h":5.933,"clr":0},{"x":101.924,"y":43.184,"w":0.082,"h":5.977,"clr":0},{"x":7.197,"y":43.13,"w":94.958,"h":0.03,"clr":0},{"x":3.566,"y":51.048,"w":100.372,"h":0.124,"clr":0}],"Texts":[{"x":5.247,"y":0.3759999999999999,"w":35.56299999999999,"clr":0,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20All%204%20Sections%20Below","S":-1,"TS":[2,16,1,0]}]},{"x":6.278,"y":1.126,"w":23.99300000000001,"clr":0,"A":"left","R":[{"T":"Per%20North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":44,"TS":[2,12,0,0]}]},{"x":5.246,"y":2.939,"w":29.949000000000005,"clr":0,"A":"left","R":[{"T":"Section%201%3A%20Federal%20Information%20Needed%20for%20North%20Dakota%20Return","S":-1,"TS":[2,12,1,0]}]},{"x":6.278,"y":5.938,"w":38.73500000000001,"clr":0,"A":"left","R":[{"T":"multiple%20forms%2C%20use%20the%20Add%20button%20to%20enter%20information%20from%20each%20form%20separately.%20","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":7.439,"w":4.724,"clr":0,"A":"left","R":[{"T":"Example%3A%20","S":-1,"TS":[2,12,1,0]}]},{"x":12.719,"y":7.439,"w":56.10399999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20%22Add%22%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form%20","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":8.188,"w":60.11300000000002,"clr":0,"A":"left","R":[{"T":"W-2.%20After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":10.438,"w":4.611,"clr":0,"A":"left","R":[{"T":"Form%20W-2","S":-1,"TS":[2,12,1,0]}]},{"x":13.414,"y":10.438,"w":11.093,"clr":0,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":10.439,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":11.189,"w":6.057,"clr":0,"A":"left","R":[{"T":"Form%201099-R","S":-1,"TS":[2,12,1,0]}]},{"x":94.965,"y":11.189,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":11.939,"w":5.388999999999999,"clr":0,"A":"left","R":[{"T":"Form%20W-2G","S":-1,"TS":[2,12,1,0]}]},{"x":14.62,"y":11.939,"w":13.325000000000003,"clr":0,"A":"left","R":[{"T":"%20Certain%20Gambling%20Winnings%20","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":11.939,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":12.689,"w":6.1129999999999995,"clr":0,"A":"left","R":[{"T":"Form%201099-G","S":-1,"TS":[2,12,1,0]}]},{"x":15.725,"y":12.689,"w":14.591,"clr":0,"A":"left","R":[{"T":"%20Certain%20Government%20Payments","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":12.689,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":13.439,"w":7.834999999999999,"clr":0,"A":"left","R":[{"T":"Form%201099-MISC","S":-1,"TS":[2,12,1,0]}]},{"x":18.385,"y":13.439,"w":10.565999999999999,"clr":0,"A":"left","R":[{"T":"%20Miscellaneous%20Income","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":13.439,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":14.939,"w":26.315000000000005,"clr":0,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20above%20forms","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":14.939,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":18.376,"w":32.057,"clr":0,"A":"left","R":[{"T":"IMPORTANT%3A%20Identifying%20information%20from%20your%20North%20Dakota%20return","S":-1,"TS":[2,12,1,0]}]},{"x":6.278,"y":22.001,"w":2.555,"clr":0,"A":"left","R":[{"T":"Note%3A","S":-1,"TS":[2,12,1,0]}]},{"x":9.54,"y":22.001,"w":56.910000000000004,"clr":0,"A":"left","R":[{"T":"%20If%20you%20are%20married%20filing%20joint%2C%20and%20you%20filed%20together%20in%202012%2C%20enter%20the%20same%20amount%20in%20the%20taxpayer%20and%20spouse%20columns.","S":44,"TS":[2,12,0,0]}]},{"x":53.716,"y":23.188,"w":4.6049999999999995,"clr":0,"A":"left","R":[{"T":"%20Taxpayer","S":44,"TS":[2,12,0,0]}]},{"x":68.154,"y":23.189,"w":3.4640000000000004,"clr":0,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":23.939,"w":18.826999999999998,"clr":0,"A":"left","R":[{"T":"Prior%20Year%20North%20Dakota%20Taxable%20Income","S":44,"TS":[2,12,0,0]}]},{"x":35.988,"y":23.939,"w":13.499000000000004,"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.","S":-1,"TS":[2,9,0,0]}]},{"x":5.247,"y":26.001,"w":36.171,"clr":0,"A":"left","R":[{"T":"Section%203%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20North%20Dakota%20Return","S":-1,"TS":[2,12,1,0]}]},{"x":6.278,"y":27.501,"w":11.059000000000005,"clr":0,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address","S":-1,"TS":[2,12,1,0]}]},{"x":8.34,"y":28.251,"w":18.603000000000005,"clr":0,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":44,"TS":[2,12,0,0]}]},{"x":38.03,"y":28.251,"w":11.522000000000002,"clr":0,"A":"left","R":[{"T":".%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":8.34,"y":29.314,"w":17.705,"clr":0,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":44,"TS":[2,12,0,0]}]},{"x":36.669,"y":29.314,"w":12.840000000000003,"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.","S":-1,"TS":[2,9,0,0]}]},{"x":6.278,"y":19.251,"w":58.653000000000006,"clr":0,"A":"left","R":[{"T":"Enter%20your%202012%20North%20Dakota%20taxable%20income%20(Form%20ND-1%2C%20line%2018).%20The%20North%20Dakota%20Office%20of%20State%20Tax%20Commissioner%20uses%20","S":44,"TS":[2,12,0,0]}]},{"x":6.242,"y":20.001,"w":59.19700000000003,"clr":0,"A":"left","R":[{"T":"this%20information%20to%20verify%20your%20identity.%20This%20information%20must%20match%20what%20they%20have%20in%20their%20records%2C%20so%20don't%20guess.%20Do%20not%20use%20","S":44,"TS":[2,12,0,0]}]},{"x":6.197,"y":20.751,"w":60.73599999999998,"clr":0,"A":"left","R":[{"T":"amounts%20from%20an%20amended%202012%20North%20Dakota%20tax%20return.%20The%202012%20taxable%20income%20must%20come%20from%20your%20originally%20filed%20tax%20return.","S":44,"TS":[2,12,0,0]}]},{"x":6.173,"y":8.955,"w":30.44200000000001,"clr":0,"A":"left","R":[{"T":"%20this%20for%20each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":44,"TS":[2,12,0,0]}]},{"x":6.075,"y":30.851,"w":46.84299999999995,"clr":0,"A":"left","R":[{"T":"B.%20International%20ACH%20Transactions%20-%20Required%20if%20using%20direct%20deposit%20or%20electronic%20funds%20withdrawal","S":-1,"TS":[2,12,1,0]}]},{"x":8.137,"y":32.351,"w":1.7790000000000001,"clr":0,"A":"left","R":[{"T":"Yes","S":-1,"TS":[2,12,1,0]}]},{"x":13.292,"y":32.35,"w":1.333,"clr":0,"A":"left","R":[{"T":"No","S":-1,"TS":[2,12,1,0]}]},{"x":16.386,"y":33.1,"w":30.85000000000001,"clr":0,"A":"left","R":[{"T":"Will%20the%20funds%20go%20to%20or%20originate%20from%20an%20account%20outside%20the%20U.S.%3F","S":44,"TS":[2,12,0,0]}]},{"x":13.483,"y":37.085,"w":44.391000000000005,"clr":0,"A":"left","R":[{"T":"%20-%20You%20will%20receive%20a%20check%20unless%20you%20entered%20direct%20deposit%20information%20directly%20on%20Form%20ND-1.","S":44,"TS":[2,12,0,0]}]},{"x":5.828,"y":35.647,"w":17.003000000000004,"clr":0,"A":"left","R":[{"T":"Section%204%3A%20Refund%2FPayment%20Options","S":-1,"TS":[2,12,1,0]}]},{"x":6.86,"y":37.085,"w":4.7219999999999995,"clr":0,"A":"left","R":[{"T":"A.%20Refund","S":-1,"TS":[2,12,1,0]}]},{"x":6.86,"y":38.585,"w":14.060000000000006,"clr":0,"A":"left","R":[{"T":"B.%20Paying%20Tax%20Due%20by%20Check-%20","S":-1,"TS":[2,12,1,0]}]},{"x":24.91,"y":38.585,"w":45.420000000000016,"clr":0,"A":"left","R":[{"T":"%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20form%20ND-1V%20payment%20voucher%20and%20mail%20it%20with%20your%20check%20to%20","S":44,"TS":[2,12,0,0]}]},{"x":8.725,"y":45.47,"w":7.114000000000001,"clr":0,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"x":20.492,"y":45.47,"w":7.248999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"x":28.319,"y":45.47,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":49.975,"y":45.47,"w":7.281000000000001,"clr":0,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"x":62.422,"y":45.47,"w":6.589999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"x":69.053,"y":45.47,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":8.725,"y":46.157,"w":2.501,"clr":0,"A":"left","R":[{"T":"Type%3A","S":3,"TS":[0,12,0,0]}]},{"x":13.686,"y":46.157,"w":13.839000000000004,"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","S":-1,"TS":[2,9,0,0]}]},{"x":28.319,"y":46.157,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":8.725,"y":46.907,"w":10.947999999999999,"clr":0,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":3,"TS":[0,12,0,0]}]},{"x":27.298,"y":46.908,"w":0.659,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,9,0,0]}]},{"x":28.319,"y":46.908,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":8.725,"y":48.095,"w":2.222,"clr":0,"A":"left","R":[{"T":"Note","S":-1,"TS":[2,12,1,0]}]},{"x":12.159,"y":48.095,"w":2.112,"clr":0,"A":"left","R":[{"T":"%3A%20Do%20","S":3,"TS":[0,12,0,0]}]},{"x":15.14,"y":48.095,"w":1.555,"clr":0,"A":"left","R":[{"T":"not","S":-1,"TS":[2,12,1,0]}]},{"x":17.382,"y":48.095,"w":26.787999999999997,"clr":0,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20Form%20ND-1.","S":3,"TS":[0,12,0,0]}]},{"x":6.6,"y":40.757,"w":20.671000000000006,"clr":0,"A":"left","R":[{"T":"C.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":-1,"TS":[2,12,1,0]}]},{"x":33.282,"y":40.757,"w":40.940000000000005,"clr":0,"A":"left","R":[{"T":"%20-%20If%20you%20would%20like%20to%20pay%20your%20tax%20balance%20due%20using%20electronic%20funds%20withdrawal%2C%20enter%20","S":44,"TS":[2,12,0,0]}]},{"x":8.662,"y":41.507,"w":14.440999999999999,"clr":0,"A":"left","R":[{"T":"the%20required%20information%20below.","S":44,"TS":[2,12,0,0]}]},{"x":34.423,"y":46.068,"w":37.512,"clr":0,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"x":47.116,"y":46.052,"w":27.513000000000005,"clr":0,"A":"left","R":[{"T":"Saving","S":3,"TS":[0,12,0,0]}]},{"x":6.278,"y":4.439,"w":60.64799999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20a%20form%20W-2%2C%201099-R%2C%20W-2G%2C%201099-G%2C%20or%201099-MISC%20that%20has%20North%20Dakota%20Witholding%20on%20it%2C%20you%20are%20required%20to%20enter","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":5.189,"w":59.86200000000001,"clr":0,"A":"left","R":[{"T":"specific%20information%20for%20each%20of%20the%20forms%20received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears%20on%20the%20form.%20If%20you%20have","S":44,"TS":[2,12,0,0]}]},{"x":31.275,"y":10.331,"w":51.985999999999855,"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.%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,9.9661,0,0]}]},{"x":36.091,"y":11.939,"w":56.674000000000206,"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.%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":47.662,"y":14.939,"w":45.4710000000001,"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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"x":15.631,"y":11.189,"w":49.575,"clr":0,"A":"left","R":[{"T":"%20Distributions%20from%20Pensions%2C%20Annuities%2C%20Retirement%20or%20Profit-Sharing%20Plans%2C%20IRAs%2C%20Insurance%20Contracts%2C%20etc","S":44,"TS":[2,12,0,0]}]},{"x":76.122,"y":11.084,"w":13.881000000000004,"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.","S":-1,"TS":[2,11.5263,0,0]}]},{"x":8.715,"y":39.476,"w":24.136000000000006,"clr":0,"A":"left","R":[{"T":"the%20North%20Dakota%20Officeof%20State%20Tax%20Commissioner.%20","S":44,"TS":[2,12,0,0]}]},{"x":9.055,"y":43.351,"w":59.7762440000001,"clr":0,"A":"left","R":[{"T":"By%20checking%20the%20box%20and%20entering%20the%20information%20below%2C%20I%20agree%20to%20pay%20my%20tax%20balance%20due%20by%20electronic%20funds%20withdrawal","S":-1,"TS":[0,12.999,0,0]}]},{"x":5.245,"y":17.002,"w":16.004000000000005,"clr":0,"A":"left","R":[{"T":"Section%202%3A%20Verifying%20Your%20Identity%20","S":-1,"TS":[2,12,1,0]}]},{"x":11.438,"y":44.063,"w":241.7700000000001,"clr":0,"A":"left","R":[{"T":"Check%20the%20box%20to%20authorize%20electronic%20funds%20withdrawal","S":-1,"TS":[0,13,0,0]}]},{"x":38.814,"y":12.689,"w":54.03800000000018,"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.%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":35.411,"y":13.439,"w":57.33300000000021,"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.%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":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":492,"AM":0,"x":96.75,"y":10.508,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":493,"AM":0,"x":96.9,"y":11.27,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2G"}},"id":{"Id":"Add_US_W2G","EN":0},"TI":494,"AM":0,"x":96.9,"y":12.033,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099G"}},"id":{"Id":"Add_US_1099G","EN":0},"TI":495,"AM":0,"x":96.975,"y":12.795,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F99MPER"}},"id":{"Id":"Add_US_MISC","EN":0},"TI":496,"AM":0,"x":96.975,"y":13.53,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLYAGI","EN":0},"TI":498,"AM":0,"x":50.531,"y":24.04,"w":12.478,"h":0.833,"TU":"Taxpayer"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SLYAGI","EN":0},"TI":499,"AM":0,"x":64.969,"y":24.04,"w":12.478,"h":0.833,"TU":"Spouse"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":500,"AM":0,"x":50.531,"y":28.415,"w":33.103,"h":0.833,"TU":"E-mail address (for confirmation e-mail"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":501,"AM":0,"x":50.606,"y":29.54,"w":33.103,"h":0.833,"TU":"Re-enter e-mail address (must match"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":505,"AM":0,"x":30.377,"y":45.322,"w":17.634,"h":0.833,"TU":"Routing number ","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":506,"AM":0,"x":71.408,"y":45.657,"w":20.728,"h":0.833,"TU":"Account number ","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":509,"AM":0,"x":30.409,"y":47.085,"w":16.603,"h":0.833,"TU":"Date to make withdrawal ","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":497,"AM":0,"x":97.028,"y":14.983,"w":2.869,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":502,"AM":0,"x":8.235,"y":33.205,"w":2.794,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":503,"AM":0,"x":13.352,"y":33.228,"w":2.794,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":504,"AM":0,"x":9.501,"y":44.288,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":507,"AM":0,"x":31.756,"y":46.137,"w":2.495,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":508,"AM":0,"x":44.867,"y":46.175,"w":2.016,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINFODC.content.txt b/test/data/ef/form/EFINFODC.content.txt new file mode 100755 index 00000000..a20ef89b --- /dev/null +++ b/test/data/ef/form/EFINFODC.content.txt @@ -0,0 +1,151 @@ +Section 2: Signing Your Return +Section 1: Information Needed for District of Columbia Return +Required Information For Electronic Filing - Complete All 5 Sections Below +A. Withholding +Example: +If you received two Forms W-2, click the Add button next to the Form W-2 and enter the information for your first Form +W-2. After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat +this for each of the types of forms listed below that you received. +Form W-2 + Wage & Tax Statement +G +Form W-2G + Certain Gambling Winnings +G +Form 1099-R + Distributions from Pensions, Annuities, Retirement or Profit-Sharing Plans, IRAs, Insurance Contracts, etc. +G +Form 1099-G + Certain Government Payment +G +Form 1099-MISC + Miscellaneous Income +G +Check the box if you do not have any of the above forms to enter +G +Disclosure Statement +I affirm that, under penalties of law, I have examined this return, and to the best of my knowledge, it is correct. +Section 3: Additional Information Needed to E-file Your District of Columbia Return +A. Enter Email Address: +E-mail address (for confirmation e-mail) +Re-enter e-mail address (must match) +– Select from 3 refund methods on Form D-40. +A. Paying Tax Due by Check +- If you are paying with a check, print Form D-40P, Payment Voucher, and mail it with your check to the +District of Columbia Office of Tax and Revenue. +B. Electronic Funds Withdrawal of Tax Due +- If you would like to pay your tax balance due using electronic funds withdrawal enter the +required information below. +By filling in the information below, I agree to pay my tax balance due by electronic funds withdrawal +G +Routing number +Type: +G +Checking +Account number +Savings +Date to make withdrawal +G +Form 1099-INT +Dividends and Distributions +G +Form 1099-DIV +G +Interest Income +Section 4: Refund +Refund +Direct Deposit to your bank account. Enter all required direct deposit information on form D-40, +including selecting checking or savings account. +DC Tax Refund Visa Prepaid Card. Select this refund method on Form D-40 if you wish to receive +a tax refund card in lieu of direct deposit or paper check. +Paper Check. Select this refund method on Form D-40 if you wish to receive a paper check +in lieu of direct deposit or tax refund card. +Yes No +Will the funds originate from an account outside the U.S.? +• +• +• +Section 5: Payment Options (Do not enter refund information here.) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +If you received a Form W-2, W-2G, 1099-R, 1099-G, 1099-MISC, 1099-INT, or 1099-DIV that has District of Columbia witholding on it, +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +.. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . +. . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . +. . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + you are required to enterall information for each of the forms received. You must enter the information exactly as it appears + on the form. If you havemultiple forms, use the Add button to enter information from each form separately. +G +G +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINFODC.fields.json b/test/data/ef/form/EFINFODC.fields.json new file mode 100755 index 00000000..992445fd --- /dev/null +++ b/test/data/ef/form/EFINFODC.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"Add_US_1099I","type":"link","calc":false,"value":""},{"id":"Add_US_1099D","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINFODC.json b/test/data/ef/form/EFINFODC.json new file mode 100755 index 00000000..81bf9f15 --- /dev/null +++ b/test/data/ef/form/EFINFODC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"EFIDC.pdf","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},{"oc":"#231f20","x":47.953,"y":23.25,"w":32.072,"h":0.038,"clr":-1},{"oc":"#231f20","x":47.953,"y":24,"w":32.072,"h":0.038,"clr":-1},{"oc":"#231f20","x":4.125,"y":16.969,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":3.932,"y":24.547,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":4.125,"y":20.063,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":4.125,"y":2.625,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":68.833,"y":40.438,"w":20.213,"h":0.038,"clr":-1},{"oc":"#231f20","x":28.958,"y":41.938,"w":11.103,"h":0.037,"clr":-1},{"oc":"#231f20","x":6.443,"y":37.813,"w":93.088,"h":0.038,"clr":-1},{"oc":"#231f20","x":6.443,"y":43.73,"w":93.088,"h":0.037,"clr":-1},{"oc":"#231f20","x":99.378,"y":37.813,"w":0.103,"h":5.936,"clr":-1},{"oc":"#231f20","x":6.394,"y":37.768,"w":0.103,"h":6.027,"clr":-1},{"oc":"#231f20","x":28.958,"y":40.438,"w":17.119,"h":0.038,"clr":-1},{"oc":"#231f20","x":4.036,"y":44.522,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":3.932,"y":24.547,"w":97.281,"h":0.125,"clr":-1},{"oc":"#231f20","x":4.877,"y":32.62,"w":97.281,"h":0.125,"clr":-1},{"x":30.122,"y":40.589,"w":1.887,"h":0.686,"clr":1},{"x":44.228,"y":40.561,"w":1.887,"h":0.686,"clr":1},{"x":8.64,"y":42.753,"w":1.887,"h":0.686,"clr":1},{"x":13.207,"y":42.753,"w":1.887,"h":0.686,"clr":1},{"oc":"#231f20","x":0.04,"y":48.814,"w":1.887,"h":0.686,"clr":-1}],"Texts":[{"oc":"#231f20","x":4.219,"y":17.219,"w":14.783000000000005,"clr":-1,"A":"left","R":[{"T":"Section%202%3A%20Signing%20Your%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":4.219,"y":3.062,"w":29.337,"clr":-1,"A":"left","R":[{"T":"Section%201%3A%20Information%20Needed%20for%20District%20of%20Columbia%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":4.219,"y":1,"w":35.56299999999999,"clr":-1,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20All%205%20Sections%20Below","S":-1,"TS":[0,15.52,1,0]}]},{"oc":"#231f20","x":5.078,"y":4.25,"w":7.057800000000001,"clr":-1,"A":"left","R":[{"T":"A.%20Withholding","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":6.11,"y":7.625,"w":4.724,"clr":-1,"A":"left","R":[{"T":"Example%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":12.731,"y":7.625,"w":52.352999999999916,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20Add%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.11,"y":8.375,"w":57.06730000000009,"clr":-1,"A":"left","R":[{"T":"W-2.%20After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.11,"y":9.125,"w":28.451300000000014,"clr":-1,"A":"left","R":[{"T":"this%20for%20each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.11,"y":10.25,"w":4.611,"clr":-1,"A":"left","R":[{"T":"Form%20W-2","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":13.243,"y":10.25,"w":10.6139,"clr":-1,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":10.25,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":11,"w":5.3881000000000006,"clr":-1,"A":"left","R":[{"T":"Form%20W-2G","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":14.446,"y":11,"w":12.723299999999998,"clr":-1,"A":"left","R":[{"T":"%20Certain%20Gambling%20Winnings%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":11,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":11.75,"w":6.055900000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-R","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":15.479,"y":11.75,"w":47.294999999999966,"clr":-1,"A":"left","R":[{"T":"%20Distributions%20from%20Pensions%2C%20Annuities%2C%20Retirement%20or%20Profit-Sharing%20Plans%2C%20IRAs%2C%20Insurance%20Contracts%2C%20etc.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":11.75,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":12.5,"w":6.111900000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-G","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":15.566,"y":12.5,"w":13.502300000000002,"clr":-1,"A":"left","R":[{"T":"%20Certain%20Government%20Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":12.5,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":13.25,"w":7.8336000000000015,"clr":-1,"A":"left","R":[{"T":"Form%201099-MISC","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":18.23,"y":13.25,"w":10.167900000000001,"clr":-1,"A":"left","R":[{"T":"%20Miscellaneous%20Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":13.25,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":15.625,"w":28.676599999999997,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20above%20forms%20to%20enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":15.625,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":4.82,"y":18.469,"w":9.501000000000001,"clr":-1,"A":"left","R":[{"T":"Disclosure%20Statement","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":23.025,"y":18.406,"w":48.52299999999995,"clr":-1,"A":"left","R":[{"T":"I%20affirm%20that%2C%20under%20penalties%20of%20law%2C%20I%20have%20examined%20this%20return%2C%20and%20to%20the%20best%20of%20my%20knowledge%2C%20it%20is%20correct.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.219,"y":20.313,"w":39.39399999999998,"clr":-1,"A":"left","R":[{"T":"Section%203%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20District%20of%20Columbia%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.079,"y":21.625,"w":11.392000000000005,"clr":-1,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":6.11,"y":22.375,"w":17.499000000000006,"clr":-1,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.11,"y":23.125,"w":16.833400000000005,"clr":-1,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.921,"y":25.82,"w":0.5559000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":12.211,"y":25.82,"w":19.836799999999997,"clr":-1,"A":"left","R":[{"T":"Select%20from%203%20refund%20methods%20on%20Form%20D-40.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.362,"y":34.05,"w":13.727000000000006,"clr":-1,"A":"left","R":[{"T":"A.%20Paying%20Tax%20Due%20by%20Check%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":24.534,"y":34.05,"w":45.84160000000002,"clr":-1,"A":"left","R":[{"T":"-%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20Form%20D-40P%2C%20Payment%20Voucher%2C%20and%20mail%20it%20with%20your%20check%20to%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":7.425,"y":34.799,"w":21.11430000000001,"clr":-1,"A":"left","R":[{"T":"District%20of%20Columbia%20Office%20of%20Tax%20and%20Revenue.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.363,"y":35.862,"w":20.671000000000006,"clr":-1,"A":"left","R":[{"T":"B.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":33.901,"y":35.862,"w":39.73180000000004,"clr":-1,"A":"left","R":[{"T":"-%20If%20you%20would%20like%20to%20pay%20your%20tax%20balance%20due%20using%20electronic%20funds%20withdrawal%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":7.427,"y":36.612,"w":12.0573,"clr":-1,"A":"left","R":[{"T":"required%20information%20below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.086,"y":38.063,"w":47.45799999999994,"clr":-1,"A":"left","R":[{"T":"By%20filling%20in%20the%20information%20below%2C%20I%20agree%20to%20pay%20my%20tax%20balance%20due%20by%20electronic%20funds%20withdrawal","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":90.927,"y":38.063,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":8.083,"y":39.563,"w":7.111199999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.083,"y":40.313,"w":2.5004999999999997,"clr":-1,"A":"left","R":[{"T":"Type%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.989,"y":40.313,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":31.973999999999997,"y":40.313,"w":4.1664,"clr":-1,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":47.958,"y":39.563,"w":7.279600000000002,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":46.067,"y":40.313,"w":3.5563000000000002,"clr":-1,"A":"left","R":[{"T":"Savings","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.082,"y":41.063,"w":10.945699999999997,"clr":-1,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.989,"y":41.063,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":13.958,"w":6.944700000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-INT","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":17.197,"y":14.708,"w":12.1123,"clr":-1,"A":"left","R":[{"T":"Dividends%20and%20Distributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.016,"y":13.958,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":6.109,"y":14.708,"w":7.000700000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-DIV","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":91.016,"y":14.708,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":17.312,"y":13.959,"w":6.892000000000001,"clr":-1,"A":"left","R":[{"T":"Interest%20Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":4.33,"y":24.768,"w":8.501,"clr":-1,"A":"left","R":[{"T":"Section%204%3A%20Refund","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.362,"y":25.779,"w":3.444,"clr":-1,"A":"left","R":[{"T":"Refund","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":8.709,"y":26.667,"w":41.84040000000004,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit%20to%20your%20bank%20account.%20Enter%20all%20required%20direct%20deposit%20information%20on%20form%20D-40%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.735,"y":27.323,"w":21.282200000000003,"clr":-1,"A":"left","R":[{"T":"including%20selecting%20checking%20or%20savings%20account.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.735,"y":28.438,"w":43.45150000000002,"clr":-1,"A":"left","R":[{"T":"DC%20Tax%20Refund%20Visa%20Prepaid%20Card.%20Select%20this%20refund%20method%20on%20Form%20D-40%20if%20you%20wish%20to%20receive%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.675,"y":29.125,"w":24.895100000000006,"clr":-1,"A":"left","R":[{"T":"a%20tax%20refund%20card%20in%20lieu%20of%20direct%20deposit%20or%20paper%20check.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.503,"y":30.344,"w":40.50810000000001,"clr":-1,"A":"left","R":[{"T":"Paper%20Check.%20Select%20this%20refund%20method%20on%20Form%20D-40%20if%20you%20wish%20to%20receive%20a%20paper%20check%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8.586,"y":30.938,"w":18.337500000000002,"clr":-1,"A":"left","R":[{"T":"in%20lieu%20of%20direct%20deposit%20or%20tax%20refund%20card.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":8,"y":41.792,"w":1.7787000000000002,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":12.984,"y":41.792,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":16.08,"y":42.542,"w":25.50620000000001,"clr":-1,"A":"left","R":[{"T":"Will%20the%20funds%20originate%20from%20an%20account%20outside%20the%20U.S.%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.882,"y":26.596,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.882,"y":28.388,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.739,"y":30.304,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":5.103,"y":32.789,"w":31.948999999999998,"clr":-1,"A":"left","R":[{"T":"Section%205%3A%20Payment%20Options%20(Do%20not%20enter%20refund%20information%20here.)","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":34.369,"y":13.23,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.3185,1,0]}]},{"oc":"#231f20","x":6.109,"y":5,"w":59.18799999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20Form%20W-2%2C%20W-2G%2C%201099-R%2C%201099-G%2C%201099-MISC%2C%201099-INT%2C%20or%201099-DIV%20that%20has%20District%20of%20Columbia%20witholding%20on%20it%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.25,"y":14.636,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.1177,1,0]}]},{"oc":"#231f20","x":37.088,"y":12.487,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.056799999999999,1,0]}]},{"oc":"#231f20","x":33.03,"y":22.534,"w":18.55919999999999,"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","S":-1,"TS":[0,7.5634,1,0]}]},{"oc":"#231f20","x":32.708,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":33.156,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":33.604,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":34.053,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":34.501,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":34.949,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":35.398,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":35.846,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":36.294,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":36.742,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":37.191,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":37.639,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":38.087,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":38.536,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":38.984,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":39.432,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":39.881,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":40.329,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":40.777,"y":23.237,"w":4.5,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":41.448,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":41.896,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":42.345,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":42.793,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":43.241,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":43.689,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":44.138,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":44.586,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":45.035,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":45.483,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":45.931,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":46.379,"y":23.237,"w":2.25,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":46.828,"y":23.237,"w":4.5,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,7.563352,1,0]}]},{"oc":"#231f20","x":12.212,"y":40.3,"w":18.55919999999999,"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","S":-1,"TS":[0,7.5634,1,0]}]},{"oc":"#231f20","x":59.52,"y":39.62,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,7.5634,1,0]}]},{"oc":"#231f20","x":19.619,"y":39.644,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,7.5634,1,0]}]},{"oc":"#231f20","x":23.765,"y":41.12,"w":4.218000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,5.7381,1,0]}]},{"oc":"#231f20","x":33.994,"y":10.987,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.056799999999999,1,0]}]},{"oc":"#231f20","x":51.203,"y":15.636,"w":39.649199999999865,"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.%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,8.1177,1,0]}]},{"oc":"#231f20","x":81.52,"y":38.12,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,7.5634,1,0]}]},{"oc":"#231f20","x":86.242,"y":11.706,"w":4.218000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,5.7381,1,0]}]},{"oc":"#231f20","x":28.343,"y":13.948,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.1177,1,0]}]},{"oc":"#231f20","x":30.556,"y":10.3,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.056799999999999,1,0]}]},{"oc":"#231f20","x":5.799,"y":5.75,"w":54.56740000000005,"clr":-1,"A":"left","R":[{"T":"%20you%20are%20required%20to%20enterall%20information%20for%20each%20of%20the%20forms%20received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.197,"y":6.531,"w":47.01130000000004,"clr":-1,"A":"left","R":[{"T":"%20on%20the%20form.%20If%20you%20havemultiple%20forms%2C%20use%20the%20Add%20button%20to%20enter%20information%20from%20each%20form%20separately.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":67.036,"y":39.563,"w":23.3,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":26.989,"y":39.626,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":510,"AM":0,"x":92.71,"y":10.451,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2G"}},"id":{"Id":"Add_US_W2G","EN":0},"TI":511,"AM":0,"x":92.69,"y":11.164,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":512,"AM":0,"x":92.745,"y":11.87,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099G"}},"id":{"Id":"Add_US_1099G","EN":0},"TI":513,"AM":0,"x":92.67,"y":12.614,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F99MPER"}},"id":{"Id":"Add_US_MISC","EN":0},"TI":514,"AM":0,"x":92.725,"y":13.405,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099I"}},"id":{"Id":"Add_US_1099I","EN":0},"TI":515,"AM":0,"x":92.857,"y":14.11,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099D"}},"id":{"Id":"Add_US_1099D","EN":0},"TI":516,"AM":0,"x":92.857,"y":14.79,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":519,"AM":0,"x":47.746,"y":22.476,"w":32.717,"h":0.833,"TU":"E-mail Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":520,"AM":0,"x":47.821,"y":23.333,"w":32.717,"h":0.833,"TU":"Re-enter E-mail Address"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":522,"AM":0,"x":28.678,"y":39.708,"w":17.519,"h":0.833,"TU":"Routing Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":523,"AM":0,"x":68.582,"y":39.673,"w":20.589,"h":0.833,"TU":"Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":526,"AM":0,"x":28.528,"y":41.279,"w":11.904,"h":0.833,"TU":"Date to Make Withdrawal","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":517,"AM":0,"x":92.836,"y":15.84,"w":3.061,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":518,"AM":0,"x":20.011,"y":18.585,"w":2.195,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":521,"AM":0,"x":92.652,"y":38.287,"w":2.92,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":524,"AM":0,"x":29.718,"y":40.497,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":525,"AM":0,"x":44.048,"y":40.47,"w":1.967,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":527,"AM":0,"x":8.385,"y":42.572,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":528,"AM":0,"x":12.952,"y":42.572,"w":1.967,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINFODE.content.txt b/test/data/ef/form/EFINFODE.content.txt new file mode 100755 index 00000000..d4579bbb --- /dev/null +++ b/test/data/ef/form/EFINFODE.content.txt @@ -0,0 +1,64 @@ +Section 1: Information Needed for Delaware Return +Required Information For Electronic Filing - Complete All 3 Sections Below +Per Delaware Division of Revenue +Example: +If you received two Forms W-2, click the Add button next to the Form W-2 and enter the information for your first Form W-2. +each of the types of forms listed below that you received. +Form W-2 + Wage & Tax Statement +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Form 1099-R + Distributions from Pensions, Annuities, Retirement or Profit-Sharing Plans, IRAs, Insurance Contracts, etc. +. . +Check the box if you do not have any of the above +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . +Section 2: Additional Information Needed to E-file Your Delaware Return +A. Enter Email Address +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . . . +B. Disclosure Statement +I agree +Under penalties of perjury, I declare that I have examined this return, including accompanying schedules and statements, and +believe it is true correct and complete +Section 3: Refund/Payment Options +A. Refund + - You will receive a check unless you entered direct deposit information directly on Form 200-01. +B. Paying Tax Due by Check + - If you are paying with a check, print Form DE 200-V and mail it with your check to the Delaware +Division of Revenue. +C. Electronic Funds Withdrawal of Tax Due + - If you would like to pay your tax balance due using electronic funds withdrawal, enter +the required information below. +By filling in the information below I agree to pay my tax balance due by electronic funds withdrawal +. . . . . . . . . . . . . . . +Routing number +. . . . . . . . . . . +Account number +. . . . . . . . . . +Type: +. . . . . . . . . . . . . . . . . . . . . +Checking Savings +Date to make withdrawal +. +Yes No +Will the funds originate from an account outside the U.S.? +Note +: Do +not + enter direct deposit information here, enter it on Form 200-01. +G +G +G +G +G +G +G +After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat this for +If you received a Form W-2, 1099-R that has Delaware Witholding on it, you are required to enter all information for eachof the forms +information from each form separately. +received. You must enter the information exactly as it appears on the form. If you have multiple forms, use theAdd button to enter +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINFODE.fields.json b/test/data/ef/form/EFINFODE.fields.json new file mode 100755 index 00000000..cf3a9116 --- /dev/null +++ b/test/data/ef/form/EFINFODE.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINFODE.json b/test/data/ef/form/EFINFODE.json new file mode 100755 index 00000000..0cb610ed --- /dev/null +++ b/test/data/ef/form/EFINFODE.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdidewkt.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},{"oc":"#231f20","x":2.063,"y":4,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.063,"y":16,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":47.438,"y":19.75,"w":33.083,"h":0.03,"clr":-1},{"oc":"#231f20","x":47.438,"y":20.938,"w":33.083,"h":0.03,"clr":-1},{"oc":"#231f20","x":2.063,"y":24.25,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":5.672,"y":33.625,"w":94.958,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.875,"y":34.75,"w":17.614,"h":0.03,"clr":-1},{"oc":"#231f20","x":70.125,"y":34.75,"w":20.708,"h":0.03,"clr":-1},{"oc":"#231f20","x":28.875,"y":36.688,"w":17.614,"h":0.03,"clr":-1},{"oc":"#231f20","x":5.672,"y":40.375,"w":94.958,"h":0.03,"clr":-1},{"oc":"#231f20","x":2.063,"y":41.5,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":5.672,"y":33.625,"w":0.082,"h":6.78,"clr":-1},{"oc":"#231f20","x":100.547,"y":33.625,"w":0.082,"h":6.78,"clr":-1},{"x":12.79,"y":38.028,"w":2.27,"h":0.825,"clr":1},{"x":0.683,"y":48.991,"w":0.679,"h":0.247,"clr":0},{"x":0,"y":48.674,"w":2.27,"h":0.826,"clr":1},{"x":0.739,"y":48.943,"w":0.791,"h":0.288,"clr":0}],"Texts":[{"oc":"#231f20","x":2.153,"y":4.626,"w":24.227000000000007,"clr":-1,"A":"left","R":[{"T":"Section%201%3A%20Information%20Needed%20for%20Delaware%20Return","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":2.153,"y":1.626,"w":35.56299999999999,"clr":-1,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20All%203%20Sections%20Below","S":-1,"TS":[2,16,1,0]}]},{"oc":"#231f20","x":3.184,"y":2.376,"w":15.799199999999997,"clr":-1,"A":"left","R":[{"T":"Per%20Delaware%20Division%20of%20Revenue","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.184,"y":9.126,"w":4.724,"clr":-1,"A":"left","R":[{"T":"Example%3A%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":9.626,"y":9.126,"w":57.459,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20Add%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form%20W-2.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.184,"y":10.626,"w":26.564799999999995,"clr":-1,"A":"left","R":[{"T":"each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.184,"y":12.126,"w":4.611,"clr":-1,"A":"left","R":[{"T":"Form%20W-2","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":9.805,"y":12.126,"w":11.093,"clr":-1,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":28.233,"y":12.126,"w":41.861400000000025,"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.%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]}]},{"oc":"#231f20","x":71.356,"y":12.126,"w":19.46279999999999,"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","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.184,"y":12.876,"w":6.055900000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-R","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":11.85,"y":12.876,"w":49.90480000000004,"clr":-1,"A":"left","R":[{"T":"%20Distributions%20from%20Pensions%2C%20Annuities%2C%20Retirement%20or%20Profit-Sharing%20Plans%2C%20IRAs%2C%20Insurance%20Contracts%2C%20etc.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":90.17,"y":12.876,"w":1.3188,"clr":-1,"A":"left","R":[{"T":".%20.%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.184,"y":14.376,"w":23.369899999999994,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20above","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":39.804,"y":14.376,"w":41.861400000000025,"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.%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]}]},{"oc":"#231f20","x":82.927,"y":14.376,"w":8.253000000000004,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":2.153,"y":16.626,"w":34.284,"clr":-1,"A":"left","R":[{"T":"Section%202%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20Delaware%20Return","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":3.184,"y":18.126,"w":11.059000000000005,"clr":-1,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":4.215,"y":18.876,"w":18.607000000000003,"clr":-1,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":33.575,"y":18.876,"w":13.188,"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","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":4.215,"y":20.126,"w":17.7086,"clr":-1,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":32.214,"y":20.064,"w":14.5068,"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","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":3.184,"y":21.126,"w":11.503000000000002,"clr":-1,"A":"left","R":[{"T":"B.%20Disclosure%20Statement","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":23.809,"y":21.126,"w":3.2467,"clr":-1,"A":"left","R":[{"T":"I%20agree","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.215,"y":21.876,"w":58.43740000000005,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%2C%20including%20accompanying%20schedules%20and%20statements%2C%20and","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":4.215,"y":22.626,"w":17.529899999999994,"clr":-1,"A":"left","R":[{"T":"believe%20it%20is%20true%20correct%20and%20complete","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":2.153,"y":24.876,"w":17.003000000000004,"clr":-1,"A":"left","R":[{"T":"Section%203%3A%20Refund%2FPayment%20Options","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":3.184,"y":26.376,"w":4.7219999999999995,"clr":-1,"A":"left","R":[{"T":"A.%20Refund","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":9.808,"y":26.376,"w":45.23680000000001,"clr":-1,"A":"left","R":[{"T":"%20-%20You%20will%20receive%20a%20check%20unless%20you%20entered%20direct%20deposit%20information%20directly%20on%20Form%20200-01.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.184,"y":27.876,"w":13.449000000000005,"clr":-1,"A":"left","R":[{"T":"B.%20Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":20.719,"y":27.876,"w":45.99090000000005,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20Form%20DE%20200-V%20and%20mail%20it%20with%20your%20check%20to%20the%20Delaware%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.247,"y":28.626,"w":9.529,"clr":-1,"A":"left","R":[{"T":"Division%20of%20Revenue.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.184,"y":30.126,"w":20.671000000000006,"clr":-1,"A":"left","R":[{"T":"C.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":29.694,"y":30.126,"w":40.94900000000003,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20would%20like%20to%20pay%20your%20tax%20balance%20due%20using%20electronic%20funds%20withdrawal%2C%20enter%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.247,"y":30.876,"w":14.440999999999999,"clr":-1,"A":"left","R":[{"T":"the%20required%20information%20below.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":5.247,"y":32.376,"w":47.17999999999994,"clr":-1,"A":"left","R":[{"T":"By%20filling%20in%20the%20information%20below%20I%20agree%20to%20pay%20my%20tax%20balance%20due%20by%20electronic%20funds%20withdrawal","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":79.26,"y":32.376,"w":9.891000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":7.309,"y":33.876,"w":7.367999999999999,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":19.076,"y":33.876,"w":7.253400000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":48.559,"y":33.876,"w":7.564,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":61.006,"y":33.876,"w":6.594000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":7.309,"y":34.876,"w":2.5715,"clr":-1,"A":"left","R":[{"T":"Type%3A","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":12.269,"y":34.876,"w":13.8474,"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","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":32.059,"y":34.876,"w":4.2458,"clr":-1,"A":"left","R":[{"T":"Checking","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":45.467,"y":34.876,"w":3.6787,"clr":-1,"A":"left","R":[{"T":"Savings","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":7.309,"y":35.814,"w":11.4533,"clr":-1,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":25.882,"y":35.814,"w":0.6594,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#231f20","x":7.309,"y":37.126,"w":1.7787000000000002,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":12.464,"y":37.126,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":15.559,"y":37.876,"w":26.925799999999995,"clr":-1,"A":"left","R":[{"T":"Will%20the%20funds%20originate%20from%20an%20account%20outside%20the%20U.S.%3F","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":7.309,"y":39.126,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":10.743,"y":39.126,"w":2.2595000000000005,"clr":-1,"A":"left","R":[{"T":"%3A%20Do%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":14.239,"y":39.126,"w":1.5555999999999999,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[2,12,1,0]}]},{"oc":"#231f20","x":16.653,"y":39.126,"w":29.181999999999995,"clr":-1,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20Form%20200-01.","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":91.875,"y":14.625,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.047,"y":13.063,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.047,"y":12.375,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":26.536,"y":36.085,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":26.45,"y":35.007,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":26.536,"y":34.163,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":89.571,"y":32.523,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":3.184,"y":9.876,"w":61.17100000000001,"clr":-1,"A":"left","R":[{"T":"After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat%20this%20for","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.184,"y":6.126,"w":61.65130000000011,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20Form%20W-2%2C%201099-R%20that%20has%20Delaware%20Witholding%20on%20it%2C%20you%20are%20required%20to%20enter%20all%20information%20for%20eachof%20the%20forms","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.298,"y":7.6259999999999994,"w":18.428,"clr":-1,"A":"left","R":[{"T":"information%20from%20each%20form%20separately.%20","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":3.243,"y":6.862,"w":60.7511000000001,"clr":-1,"A":"left","R":[{"T":"received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears%20on%20the%20form.%20If%20you%20have%20multiple%20forms%2C%20use%20theAdd%20button%20to%20enter%20","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":529,"AM":0,"x":93.606,"y":12.523,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":530,"AM":0,"x":93.606,"y":13.203,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":532,"AM":0,"x":47.541,"y":18.902,"w":31.744,"h":0.833,"TU":"E-mail Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":533,"AM":0,"x":47.541,"y":20.181,"w":31.744,"h":0.833,"TU":"Re-enter E-mail Address"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":536,"AM":0,"x":28.974,"y":33.886,"w":17.519,"h":0.833,"TU":"Routing Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":537,"AM":0,"x":70.081,"y":33.851,"w":20.589,"h":0.833,"TU":"Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":540,"AM":0,"x":28.824,"y":35.957,"w":11.305,"h":0.833,"TU":"Date to Make Withdrawal","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":531,"AM":0,"x":94.524,"y":14.842,"w":3.061,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":534,"AM":0,"x":21.584,"y":21.27,"w":2.345,"h":0.853}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":535,"AM":0,"x":92.012,"y":32.495,"w":2.644,"h":0.907}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":538,"AM":0,"x":29.123,"y":35.075,"w":2.046,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":539,"AM":0,"x":43.111,"y":35.03,"w":2.121,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":541,"AM":0,"x":7.57,"y":38.18,"w":2.27,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":542,"AM":0,"x":12.416,"y":38.197,"w":2.27,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINFOND.content.txt b/test/data/ef/form/EFINFOND.content.txt new file mode 100755 index 00000000..0a156efc --- /dev/null +++ b/test/data/ef/form/EFINFOND.content.txt @@ -0,0 +1,90 @@ +Required Information For Electronic Filing - Complete All 4 Sections Below +Per North Dakota Office of State Tax Commissioner +Section 1: Federal Information Needed for North Dakota Return +multiple forms, use the Add button to enter information from each form separately. +Example: +If you received two Forms W-2, click the "Add" button next to the Form W-2 and enter the information for your first Form +W-2. After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat +Form W-2 + Wage & Tax Statement +G +Form 1099-R +G +Form W-2G + Certain Gambling Winnings +G +Form 1099-G + Certain Government Payments +G +Form 1099-MISC + Miscellaneous Income +G +Check the box if you do not have any of the above forms +G +Section 2: + +Verifying Your Identity +IMPORTANT: Identifying information from your North Dakota return +Note: + If you are married filing joint, and you filed together in 2012, enter the same amount in the taxpayer and spouse columns. + Taxpayer +Spouse +Prior Year North Dakota Taxable Income +. . . . . . . . . . . . . . . . . . . . . +Section 3: Additional Information Needed to E-file Your North Dakota Return +A. Enter Email Address +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . +Enter your 2012 North Dakota taxable income (Form ND-1, line 18). The North Dakota Office of State Tax Commissioner uses +this information to verify your identity. This information must match what they have in their records, so don't guess. Do not use +amounts from an amended 2012 North Dakota tax return. The 2012 taxable income must come from your originally filed tax return. + this for each of the types of forms listed below that you received. +B. International ACH Transactions - Required if using direct deposit or electronic funds withdrawal +Yes +No +Will the funds go to or originate from an account outside the U.S.? + +Section 4: Refund/Payment Options +B. Paying Tax Due by Check- + If you are paying with a check, print form ND-1V payment voucher and mail it with your check to +Routing number +. . . . . . . . . . . +G +Account number +. . . . . . . . . . +G +Type: +. . . . . . . . . . . . . . . . . . . . . +G +Date to make withdrawal +. +G +Note: +Do +not + enter direct deposit information here, enter it on Form ND-1. +C. Electronic Funds Withdrawal of Tax Due + - If you would like to pay your tax balance due using electronic funds withdrawal, enter +the required information below. +By checking the box and entering the information below, I agree to pay my tax balance due by electronic funds withdrawal +Checking +Saving +If you received a form W-2, 1099-R, W-2G, 1099-G, or 1099-MISC that has North Dakota Witholding on it, you are required to enter +specific information for each of the forms received. You must enter the information exactly as it appears on the form. If you have +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + Distributions from Pensions, Annuities, Retirement or Profit-Sharing Plans, IRAs, Insurance Contracts, etc + . . . . . . . . . . . . . . . . . . . +Required: +the North Dakota Officeof State Tax Commissioner. +Check the box to authorize electronic funds withdrawal +A. Refund +- You will receive a check unless entered direct deposit information directly on Form ND-1. +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINFOND.fields.json b/test/data/ef/form/EFINFOND.fields.json new file mode 100755 index 00000000..34262528 --- /dev/null +++ b/test/data/ef/form/EFINFOND.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINFOND.json b/test/data/ef/form/EFINFOND.json new file mode 100755 index 00000000..eda4cee6 --- /dev/null +++ b/test/data/ef/form/EFINFOND.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdindwkt.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":3.438,"y":2.313,"w":100.372,"h":0.124,"clr":0},{"x":3.609,"y":16.563,"w":100.372,"h":0.124,"clr":0},{"x":50.531,"y":24.812,"w":12.458,"h":0.03,"clr":0},{"x":64.969,"y":24.812,"w":12.458,"h":0.03,"clr":0},{"x":3.438,"y":25.437,"w":100.372,"h":0.124,"clr":0},{"x":50.531,"y":29.125,"w":33.083,"h":0.03,"clr":0},{"x":50.531,"y":30.187,"w":33.083,"h":0.03,"clr":0},{"x":2.922,"y":35.125,"w":100.372,"h":0.124,"clr":0},{"x":7.531,"y":32.099,"w":93.926,"h":0.03,"clr":0},{"x":7.531,"y":34.349,"w":93.926,"h":0.03,"clr":0},{"x":7.531,"y":32.099,"w":0.082,"h":2.28,"clr":0},{"x":188.129,"y":31.771,"w":0.082,"h":2.28,"clr":0},{"x":101.406,"y":32.125,"w":0.082,"h":2.28,"clr":0},{"x":30.291,"y":46.031,"w":17.614,"h":0.03,"clr":0},{"x":71.026,"y":46.406,"w":20.708,"h":0.03,"clr":0},{"x":30.291,"y":47.781,"w":16.583,"h":0.03,"clr":0},{"x":7.088,"y":49.344,"w":94.958,"h":0.03,"clr":0},{"x":7.098,"y":43.222,"w":0.102,"h":6.066,"clr":0},{"x":101.804,"y":43.223,"w":0.103,"h":6.132,"clr":0},{"x":7.197,"y":43.13,"w":94.958,"h":0.03,"clr":0},{"x":3.566,"y":51.048,"w":100.372,"h":0.124,"clr":0},{"x":1.02,"y":48.964,"w":0.754,"h":0.274,"clr":0}],"Texts":[{"x":5.247,"y":0.3759999999999999,"w":35.56299999999999,"clr":0,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20All%204%20Sections%20Below","S":-1,"TS":[0,16,1,0]}]},{"x":6.278,"y":1.126,"w":23.99300000000001,"clr":0,"A":"left","R":[{"T":"Per%20North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":44,"TS":[2,12,0,0]}]},{"x":5.246,"y":2.939,"w":29.949000000000005,"clr":0,"A":"left","R":[{"T":"Section%201%3A%20Federal%20Information%20Needed%20for%20North%20Dakota%20Return","S":9,"TS":[0,12,1,0]}]},{"x":6.278,"y":5.938,"w":38.73500000000001,"clr":0,"A":"left","R":[{"T":"multiple%20forms%2C%20use%20the%20Add%20button%20to%20enter%20information%20from%20each%20form%20separately.%20","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":7.439,"w":4.724,"clr":0,"A":"left","R":[{"T":"Example%3A%20","S":9,"TS":[0,12,1,0]}]},{"x":12.719,"y":7.439,"w":56.10399999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20%22Add%22%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form%20","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":8.188,"w":60.11300000000002,"clr":0,"A":"left","R":[{"T":"W-2.%20After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":10.438,"w":4.611,"clr":0,"A":"left","R":[{"T":"Form%20W-2","S":9,"TS":[0,12,1,0]}]},{"x":13.414,"y":10.438,"w":11.093,"clr":0,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":10.439,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":11.189,"w":6.057,"clr":0,"A":"left","R":[{"T":"Form%201099-R","S":9,"TS":[0,12,1,0]}]},{"x":94.965,"y":11.189,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":11.939,"w":5.388999999999999,"clr":0,"A":"left","R":[{"T":"Form%20W-2G","S":9,"TS":[0,12,1,0]}]},{"x":14.62,"y":11.939,"w":13.325000000000003,"clr":0,"A":"left","R":[{"T":"%20Certain%20Gambling%20Winnings%20","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":11.939,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":12.689,"w":6.1129999999999995,"clr":0,"A":"left","R":[{"T":"Form%201099-G","S":9,"TS":[0,12,1,0]}]},{"x":15.725,"y":12.689,"w":14.591,"clr":0,"A":"left","R":[{"T":"%20Certain%20Government%20Payments","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":12.689,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":13.439,"w":7.834999999999999,"clr":0,"A":"left","R":[{"T":"Form%201099-MISC","S":9,"TS":[0,12,1,0]}]},{"x":18.385,"y":13.439,"w":10.565999999999999,"clr":0,"A":"left","R":[{"T":"%20Miscellaneous%20Income","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":13.439,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":6.278,"y":14.939,"w":26.315000000000005,"clr":0,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20above%20forms","S":44,"TS":[2,12,0,0]}]},{"x":94.965,"y":14.939,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":5.247,"y":17.001,"w":4.779,"clr":0,"A":"left","R":[{"T":"Section%202%3A","S":9,"TS":[0,12,1,0]}]},{"x":12.136,"y":17.001,"w":10.947000000000001,"clr":0,"A":"left","R":[{"T":"Verifying%20Your%20Identity%20","S":9,"TS":[0,12,1,0]}]},{"x":6.278,"y":18.376,"w":32.057,"clr":0,"A":"left","R":[{"T":"IMPORTANT%3A%20Identifying%20information%20from%20your%20North%20Dakota%20return","S":9,"TS":[0,12,1,0]}]},{"x":6.278,"y":22.001,"w":2.555,"clr":0,"A":"left","R":[{"T":"Note%3A","S":9,"TS":[0,12,1,0]}]},{"x":9.712,"y":22.001,"w":56.910000000000004,"clr":0,"A":"left","R":[{"T":"%20If%20you%20are%20married%20filing%20joint%2C%20and%20you%20filed%20together%20in%202012%2C%20enter%20the%20same%20amount%20in%20the%20taxpayer%20and%20spouse%20columns.","S":44,"TS":[2,12,0,0]}]},{"x":53.716,"y":23.188,"w":4.6049999999999995,"clr":0,"A":"left","R":[{"T":"%20Taxpayer","S":44,"TS":[2,12,0,0]}]},{"x":68.155,"y":23.189,"w":3.4640000000000004,"clr":0,"A":"left","R":[{"T":"Spouse","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":23.939,"w":18.826999999999998,"clr":0,"A":"left","R":[{"T":"Prior%20Year%20North%20Dakota%20Taxable%20Income","S":44,"TS":[2,12,0,0]}]},{"x":35.988,"y":23.939,"w":13.499000000000004,"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.","S":-1,"TS":[2,9,0,0]}]},{"x":5.247,"y":26.001,"w":36.171,"clr":0,"A":"left","R":[{"T":"Section%203%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20North%20Dakota%20Return","S":9,"TS":[0,12,1,0]}]},{"x":6.278,"y":27.501,"w":11.059000000000005,"clr":0,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address","S":9,"TS":[0,12,1,0]}]},{"x":8.34,"y":28.251,"w":18.603000000000005,"clr":0,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":44,"TS":[2,12,0,0]}]},{"x":38.03,"y":28.251,"w":11.522000000000002,"clr":0,"A":"left","R":[{"T":".%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":8.34,"y":29.314,"w":17.705,"clr":0,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":44,"TS":[2,12,0,0]}]},{"x":36.669,"y":29.314,"w":12.840000000000003,"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.","S":-1,"TS":[2,9,0,0]}]},{"x":6.278,"y":19.251,"w":58.653000000000006,"clr":0,"A":"left","R":[{"T":"Enter%20your%202012%20North%20Dakota%20taxable%20income%20(Form%20ND-1%2C%20line%2018).%20The%20North%20Dakota%20Office%20of%20State%20Tax%20Commissioner%20uses%20","S":44,"TS":[2,12,0,0]}]},{"x":6.242,"y":20.001,"w":59.19700000000003,"clr":0,"A":"left","R":[{"T":"this%20information%20to%20verify%20your%20identity.%20This%20information%20must%20match%20what%20they%20have%20in%20their%20records%2C%20so%20don't%20guess.%20Do%20not%20use%20","S":44,"TS":[2,12,0,0]}]},{"x":6.197,"y":20.751,"w":60.73599999999998,"clr":0,"A":"left","R":[{"T":"amounts%20from%20an%20amended%202012%20North%20Dakota%20tax%20return.%20The%202012%20taxable%20income%20must%20come%20from%20your%20originally%20filed%20tax%20return.","S":44,"TS":[2,12,0,0]}]},{"x":6.173,"y":8.955,"w":30.44200000000001,"clr":0,"A":"left","R":[{"T":"%20this%20for%20each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":44,"TS":[2,12,0,0]}]},{"x":6.075,"y":30.851,"w":46.84299999999995,"clr":0,"A":"left","R":[{"T":"B.%20International%20ACH%20Transactions%20-%20Required%20if%20using%20direct%20deposit%20or%20electronic%20funds%20withdrawal","S":9,"TS":[0,12,1,0]}]},{"x":8.137,"y":32.351,"w":1.7790000000000001,"clr":0,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":13.292,"y":32.35,"w":1.333,"clr":0,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":16.386,"y":33.1,"w":30.85000000000001,"clr":0,"A":"left","R":[{"T":"Will%20the%20funds%20go%20to%20or%20originate%20from%20an%20account%20outside%20the%20U.S.%3F","S":44,"TS":[2,12,0,0]}]},{"x":5.828,"y":35.647,"w":17.003000000000004,"clr":0,"A":"left","R":[{"T":"Section%204%3A%20Refund%2FPayment%20Options","S":9,"TS":[0,12,1,0]}]},{"x":6.86,"y":38.585,"w":14.060000000000006,"clr":0,"A":"left","R":[{"T":"B.%20Paying%20Tax%20Due%20by%20Check-%20","S":9,"TS":[0,12,1,0]}]},{"x":25.769,"y":38.585,"w":45.420000000000016,"clr":0,"A":"left","R":[{"T":"%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20form%20ND-1V%20payment%20voucher%20and%20mail%20it%20with%20your%20check%20to%20","S":44,"TS":[2,12,0,0]}]},{"x":8.725,"y":45.47,"w":7.114000000000001,"clr":0,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"x":20.492,"y":45.47,"w":7.248999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"x":28.319,"y":45.47,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":49.975,"y":45.47,"w":7.281000000000001,"clr":0,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"x":62.422,"y":45.47,"w":6.589999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"x":69.053,"y":45.47,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":8.725,"y":46.157,"w":2.501,"clr":0,"A":"left","R":[{"T":"Type%3A","S":3,"TS":[0,12,0,0]}]},{"x":13.686,"y":46.157,"w":13.839000000000004,"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","S":-1,"TS":[2,9,0,0]}]},{"x":28.319,"y":46.157,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":8.725,"y":46.907,"w":10.947999999999999,"clr":0,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":3,"TS":[0,12,0,0]}]},{"x":27.298,"y":46.908,"w":0.659,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,9,0,0]}]},{"x":28.319,"y":46.908,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.96,0,0]}]},{"x":8.725,"y":48.095,"w":2.555,"clr":0,"A":"left","R":[{"T":"Note%3A","S":9,"TS":[0,12,1,0]}]},{"x":12.503,"y":48.095,"w":1.278,"clr":0,"A":"left","R":[{"T":"Do","S":3,"TS":[0,12,0,0]}]},{"x":14.624,"y":48.095,"w":1.555,"clr":0,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"x":16.865,"y":48.095,"w":26.787999999999997,"clr":0,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20Form%20ND-1.","S":3,"TS":[0,12,0,0]}]},{"x":6.6,"y":40.757,"w":20.671000000000006,"clr":0,"A":"left","R":[{"T":"C.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":9,"TS":[0,12,1,0]}]},{"x":34.314,"y":40.757,"w":40.940000000000005,"clr":0,"A":"left","R":[{"T":"%20-%20If%20you%20would%20like%20to%20pay%20your%20tax%20balance%20due%20using%20electronic%20funds%20withdrawal%2C%20enter%20","S":44,"TS":[2,12,0,0]}]},{"x":8.663,"y":41.507,"w":14.440999999999999,"clr":0,"A":"left","R":[{"T":"the%20required%20information%20below.","S":44,"TS":[2,12,0,0]}]},{"x":15.928999999999998,"y":43.351,"w":430.43199999999956,"clr":0,"A":"left","R":[{"T":"By%20checking%20the%20box%20and%20entering%20the%20information%20below%2C%20I%20agree%20to%20pay%20my%20tax%20balance%20due%20by%20electronic%20funds%20withdrawal","S":-1,"TS":[0,11,0,0]}]},{"x":34.423,"y":46.068,"w":37.512,"clr":0,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"x":47.116,"y":46.052,"w":27.513000000000005,"clr":0,"A":"left","R":[{"T":"Saving","S":3,"TS":[0,12,0,0]}]},{"x":6.278,"y":4.439,"w":60.64799999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20a%20form%20W-2%2C%201099-R%2C%20W-2G%2C%201099-G%2C%20or%201099-MISC%20that%20has%20North%20Dakota%20Witholding%20on%20it%2C%20you%20are%20required%20to%20enter","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":5.189,"w":59.86200000000001,"clr":0,"A":"left","R":[{"T":"specific%20information%20for%20each%20of%20the%20forms%20received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears%20on%20the%20form.%20If%20you%20have","S":44,"TS":[2,12,0,0]}]},{"x":31.275,"y":10.331,"w":51.985999999999855,"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.%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,9.9661,0,0]}]},{"x":36.091,"y":11.939,"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":79.214,"y":11.939,"w":14.838000000000006,"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","S":-1,"TS":[2,9,0,0]}]},{"x":38.814,"y":12.689,"w":54.03800000000018,"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.%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":35.411,"y":13.439,"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":78.533,"y":13.439,"w":15.497000000000007,"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","S":-1,"TS":[2,9,0,0]}]},{"x":47.662,"y":14.939,"w":45.4710000000001,"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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]},{"x":15.631,"y":11.189,"w":49.575,"clr":0,"A":"left","R":[{"T":"%20Distributions%20from%20Pensions%2C%20Annuities%2C%20Retirement%20or%20Profit-Sharing%20Plans%2C%20IRAs%2C%20Insurance%20Contracts%2C%20etc","S":44,"TS":[2,12,0,0]}]},{"x":76.122,"y":11.084,"w":13.881000000000004,"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.","S":-1,"TS":[2,11.5263,0,0]}]},{"x":8.834,"y":43.319,"w":4.667,"clr":0,"A":"left","R":[{"T":"Required%3A","S":9,"TS":[0,12,1,0]}]},{"x":8.715,"y":39.476,"w":24.136000000000006,"clr":0,"A":"left","R":[{"T":"the%20North%20Dakota%20Officeof%20State%20Tax%20Commissioner.%20","S":44,"TS":[2,12,0,0]}]},{"x":10.75,"y":44.156,"w":241.7700000000001,"clr":0,"A":"left","R":[{"T":"Check%20the%20box%20to%20authorize%20electronic%20funds%20withdrawal","S":-1,"TS":[0,13,0,0]}]},{"x":6.86,"y":37.085,"w":4.7219999999999995,"clr":0,"A":"left","R":[{"T":"A.%20Refund","S":9,"TS":[0,12,1,0]}]},{"x":13.717,"y":37.085,"w":381.7439999999999,"clr":0,"A":"left","R":[{"T":"-%20You%20will%20receive%20a%20check%20unless%20%20entered%20direct%20deposit%20information%20directly%20on%20Form%20ND-1.","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":543,"AM":0,"x":96.75,"y":10.508,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":544,"AM":0,"x":96.9,"y":11.27,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2G"}},"id":{"Id":"Add_US_W2G","EN":0},"TI":545,"AM":0,"x":96.9,"y":12.033,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099G"}},"id":{"Id":"Add_US_1099G","EN":0},"TI":546,"AM":0,"x":96.975,"y":12.795,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F99MPER"}},"id":{"Id":"Add_US_MISC","EN":0},"TI":547,"AM":0,"x":96.975,"y":13.53,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLYAGI","EN":0},"TI":549,"AM":0,"x":50.531,"y":24.04,"w":12.478,"h":0.833,"TU":"Taxpayer"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SLYAGI","EN":0},"TI":550,"AM":0,"x":64.969,"y":24.04,"w":12.478,"h":0.833,"TU":"Spouse"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":551,"AM":0,"x":50.531,"y":28.415,"w":33.103,"h":0.833,"TU":"E-mail address (for confirmation e-mail"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":552,"AM":0,"x":50.606,"y":29.54,"w":33.103,"h":0.833,"TU":"Re-enter e-mail address (must match"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":556,"AM":0,"x":30.377,"y":45.322,"w":17.634,"h":0.833,"TU":"Routing number ","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":557,"AM":0,"x":71.408,"y":45.657,"w":20.728,"h":0.833,"TU":"Account number ","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":560,"AM":0,"x":30.409,"y":47.085,"w":16.603,"h":0.833,"TU":"Date to make withdrawal ","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":548,"AM":0,"x":97.028,"y":14.983,"w":2.869,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":553,"AM":0,"x":8.235,"y":33.205,"w":2.794,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":554,"AM":0,"x":13.352,"y":33.228,"w":2.794,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":555,"AM":0,"x":9.329,"y":44.351,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":558,"AM":0,"x":31.756,"y":46.137,"w":2.495,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":559,"AM":0,"x":44.867,"y":46.175,"w":2.016,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINFOOR.content.txt b/test/data/ef/form/EFINFOOR.content.txt new file mode 100755 index 00000000..a921f5c6 --- /dev/null +++ b/test/data/ef/form/EFINFOOR.content.txt @@ -0,0 +1,58 @@ +Required Information For Electronic Filing - Complete Sections 1-3 Below +Per Oregon Department of Revenue +Section 1: Information Needed for Oregon Return +If you received a Form W-2, 1099-R, W-2G, 1099-G, or 1099-MISC that has Oregon Witholding on it, you are required to enter all +forms, use the "Add" button to enter information from each form separately. +Example: +If you received two Forms W-2, click the Add button next to the Form W-2 and enter the information for your first Form W-2. +each of the types of forms listed below that you received. +Form W-2 + Wage & Tax Statement +Form 1099-R + Distributions from Pensions, Annuities, Retirement or Profit-Sharing Plans, IRAs, Insurance Contracts, etc. +Form W-2G + Certain Gambling Winnings +Form 1099-G + Certain Government Payments +Form 1099-MISC + Miscellaneous Income +Check the box if you do not have any of the above +Section 2: Signing Your Return +Disclosure Statement +I (we, if filing jointly) certify that the above statement is true. +Under penalties for false swearing, I declare that I have examined a copy of my electronic individual income tax return and +accompanying schedules and statements and to the best of my knowledge and belief, it is true, correct, and complete. +Oregon Department of Revenue an acknowledgement of receipt or reason for rejection of the transmission. I further acknowledge +acknowledges that the submission of this electronic return constitues both of our signatures. +Section 3: Additional Information Needed to E-file Your Oregon Return +A. Enter Email Address +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . . . . . . +Section 4: Refund/Payment Options +A. Refund + - You will receive a check unless you entered direct deposit information directly on Form 40. +B. Paying Tax Due by Check +C. Electronic Funds Withdrawal of Tax Due +- If you would like to pay your tax liability online go to +https://secure.dor.state.or.us/directdebit/index.faces. + - If you are paying with a check, print Form 40-V, Payment Voucher, +and mail it with your check to the Oregon Department of Revenue. +G +G +G +G +G +G +information for each of the forms received. You must enter the information exactly as it appears on the form. If you have multiple +After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat this for +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +that the submission of this electronic Oregon Individual Tax Return constitutes my signature. If jointly filed return, each of us +I consent to allow the electronic return originator to send my return to the Oregon Department of Revenue and to receive from the +. . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINFOOR.fields.json b/test/data/ef/form/EFINFOOR.fields.json new file mode 100755 index 00000000..acbda986 --- /dev/null +++ b/test/data/ef/form/EFINFOOR.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINFOOR.json b/test/data/ef/form/EFINFOOR.json new file mode 100755 index 00000000..58393d51 --- /dev/null +++ b/test/data/ef/form/EFINFOOR.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdiorwkt.pfm : default (Read Only)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":0.086,"y":49.469,"w":1.5,"l":2.023},{"x":0.086,"y":48.842,"w":1.5,"l":2.023}],"VLines":[{"x":2.109,"y":48.842,"w":1.5,"l":0.627},{"x":0.086,"y":48.842,"w":1.5,"l":0.627}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":2.922,"y":7.563,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":21.688,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":2.922,"y":29.938,"w":100.372,"h":0.124,"clr":-1},{"oc":"#231f20","x":49.156,"y":33.688,"w":32.051,"h":0.03,"clr":-1},{"oc":"#231f20","x":48.641,"y":34.438,"w":32.051,"h":0.03,"clr":-1},{"oc":"#231f20","x":2.922,"y":35.125,"w":100.372,"h":0.124,"clr":-1}],"Texts":[{"oc":"#231f20","x":3.012,"y":5.189,"w":34.89599999999999,"clr":-1,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20Sections%201-3%20Below","S":-1,"TS":[2,15.9773,1,0]}]},{"oc":"#231f20","x":4.043,"y":5.939,"w":16.654,"clr":-1,"A":"left","R":[{"T":"Per%20Oregon%20Department%20of%20Revenue","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":3.012,"y":8.189,"w":23.392000000000007,"clr":-1,"A":"left","R":[{"T":"Section%201%3A%20Information%20Needed%20for%20Oregon%20Return","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":4.043,"y":9.564,"w":59.69799999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20Form%20W-2%2C%201099-R%2C%20W-2G%2C%201099-G%2C%20or%201099-MISC%20that%20has%20Oregon%20Witholding%20on%20it%2C%20you%20are%20required%20to%20enter%20all","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":11.064,"w":35.187000000000005,"clr":-1,"A":"left","R":[{"T":"forms%2C%20use%20the%20%22Add%22%20button%20to%20enter%20information%20from%20each%20form%20separately.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":12.564,"w":4.724,"clr":-1,"A":"left","R":[{"T":"Example%3A%20","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":10.485,"y":12.564,"w":57.79900000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20Add%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form%20W-2.%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":14.063,"w":26.564799999999995,"clr":-1,"A":"left","R":[{"T":"each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":15.564,"w":4.611,"clr":-1,"A":"left","R":[{"T":"Form%20W-2","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":15.907,"y":15.564,"w":11.093,"clr":-1,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":16.314,"w":6.055900000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-R","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":15.905999999999999,"y":16.314,"w":49.90480000000004,"clr":-1,"A":"left","R":[{"T":"%20Distributions%20from%20Pensions%2C%20Annuities%2C%20Retirement%20or%20Profit-Sharing%20Plans%2C%20IRAs%2C%20Insurance%20Contracts%2C%20etc.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":17.064,"w":5.3881000000000006,"clr":-1,"A":"left","R":[{"T":"Form%20W-2G","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":15.905999999999999,"y":17.064,"w":12.9876,"clr":-1,"A":"left","R":[{"T":"%20Certain%20Gambling%20Winnings","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":17.814,"w":6.111900000000001,"clr":-1,"A":"left","R":[{"T":"Form%201099-G","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":15.905999999999999,"y":17.814,"w":14.593799999999996,"clr":-1,"A":"left","R":[{"T":"%20Certain%20Government%20Payments","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":18.564,"w":7.8336000000000015,"clr":-1,"A":"left","R":[{"T":"Form%201099-MISC","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":15.905999999999999,"y":18.564,"w":10.568099999999998,"clr":-1,"A":"left","R":[{"T":"%20Miscellaneous%20Income","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":20.064,"w":23.369899999999994,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20above","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":3.012,"y":22.314,"w":14.783000000000005,"clr":-1,"A":"left","R":[{"T":"Section%202%3A%20Signing%20Your%20Return","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":4.903,"y":23.814,"w":10.223,"clr":-1,"A":"left","R":[{"T":"Disclosure%20Statement","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":21.747,"y":23.814,"w":28.131699999999995,"clr":-1,"A":"left","R":[{"T":"I%20(we%2C%20if%20filing%20jointly)%20certify%20that%20the%20above%20statement%20is%20true.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":5.075,"y":24.564,"w":57.39840000000006,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20for%20false%20swearing%2C%20I%20declare%20that%20I%20have%20examined%20a%20copy%20of%20my%20electronic%20individual%20income%20tax%20return%20and%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":5.075,"y":25.314,"w":55.01660000000006,"clr":-1,"A":"left","R":[{"T":"accompanying%20schedules%20and%20statements%20and%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":5.075,"y":26.813,"w":60.645700000000076,"clr":-1,"A":"left","R":[{"T":"Oregon%20Department%20of%20Revenue%20an%20acknowledgement%20of%20receipt%20or%20reason%20for%20rejection%20of%20the%20transmission.%20%20I%20further%20acknowledge%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":5.075,"y":28.313,"w":42.75930000000004,"clr":-1,"A":"left","R":[{"T":"acknowledges%20that%20the%20submission%20of%20this%20electronic%20return%20constitues%20both%20of%20our%20signatures.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":3.012,"y":30.563,"w":33.45590000000001,"clr":-1,"A":"left","R":[{"T":"Section%203%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20Oregon%20Return","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":4.044,"y":32.063,"w":11.059000000000005,"clr":-1,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":5.075,"y":32.813,"w":18.607000000000003,"clr":-1,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":33.252,"y":32.814,"w":15.1662,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"oc":"#231f20","x":5.075,"y":33.564,"w":17.7086,"clr":-1,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":31.375,"y":33.564,"w":16.485,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"oc":"#231f20","x":3.012,"y":35.751,"w":17.003000000000004,"clr":-1,"A":"left","R":[{"T":"Section%204%3A%20Refund%2FPayment%20Options","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":4.043,"y":37.251,"w":4.7219999999999995,"clr":-1,"A":"left","R":[{"T":"A.%20Refund","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":9.981,"y":37.251,"w":43.19240000000001,"clr":-1,"A":"left","R":[{"T":"%20-%20You%20will%20receive%20a%20check%20unless%20you%20entered%20direct%20deposit%20information%20directly%20on%20Form%2040.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":38.752,"w":13.449000000000005,"clr":-1,"A":"left","R":[{"T":"B.%20Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":4.043,"y":41.002,"w":20.949000000000005,"clr":-1,"A":"left","R":[{"T":"C.%20%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":-1,"TS":[2,11.9829,1,0]}]},{"oc":"#231f20","x":30.986,"y":41.002,"w":24.9158,"clr":-1,"A":"left","R":[{"T":"-%20If%20you%20would%20like%20to%20pay%20your%20tax%20liability%20online%20go%20to","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":6.106,"y":41.751,"w":24.3315,"clr":-1,"A":"left","R":[{"T":"https%3A%2F%2Fsecure.dor.state.or.us%2Fdirectdebit%2Findex.faces.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":21.406,"y":38.752,"w":32.5139,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20Form%2040-V%2C%20Payment%20Voucher%2C%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":5.809,"y":39.548,"w":30.800399999999993,"clr":-1,"A":"left","R":[{"T":"and%20mail%20it%20with%20your%20check%20to%20the%20Oregon%20Department%20of%20Revenue.","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":92.047,"y":15.547,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.047,"y":16.297,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.047,"y":17.047,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.047,"y":20.109,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.047,"y":17.755,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.047,"y":18.505,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":4.043,"y":10.314,"w":60.37910000000007,"clr":-1,"A":"left","R":[{"T":"information%20for%20each%20of%20the%20forms%20received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears%20on%20the%20form.%20If%20you%20have%20multiple%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":4.043,"y":13.314,"w":61.51100000000001,"clr":-1,"A":"left","R":[{"T":"After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat%20this%20for%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":33.176,"y":18.564,"w":57.367800000000145,"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.%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]}]},{"oc":"#231f20","x":36.579,"y":17.814,"w":54.07080000000012,"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.%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]}]},{"oc":"#231f20","x":33.176,"y":17.064,"w":57.367800000000145,"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.%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]}]},{"oc":"#231f20","x":29.093,"y":15.564,"w":61.324200000000175,"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.%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]}]},{"oc":"#231f20","x":5.075,"y":27.563,"w":58.471100000000085,"clr":-1,"A":"left","R":[{"T":"that%20the%20submission%20of%20this%20electronic%20Oregon%20Individual%20Tax%20Return%20constitutes%20my%20signature.%20%20If%20jointly%20filed%20return%2C%20each%20of%20us%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":5.075,"y":26.063,"w":60.601000000000084,"clr":-1,"A":"left","R":[{"T":"I%20consent%20to%20allow%20the%20electronic%20return%20originator%20to%20send%20my%20return%20to%20the%20Oregon%20Department%20of%20Revenue%20and%20to%20receive%20from%20the%20","S":-1,"TS":[2,11.9829,0,0]}]},{"oc":"#231f20","x":75.001,"y":16.287,"w":16.485,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"oc":"#231f20","x":32.661,"y":20.064,"w":57.367800000000145,"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.%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]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":562,"AM":0,"x":93.68,"y":15.708,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":563,"AM":0,"x":93.68,"y":16.416,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2G"}},"id":{"Id":"Add_US_W2G","EN":0},"TI":564,"AM":0,"x":93.66,"y":17.171,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099G"}},"id":{"Id":"Add_US_1099G","EN":0},"TI":565,"AM":0,"x":93.64,"y":17.871,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F99MPER"}},"id":{"Id":"Add_US_MISC","EN":0},"TI":566,"AM":0,"x":93.695,"y":18.599,"w":1.529,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":568,"AM":0,"x":48.923,"y":32.988,"w":33.186,"h":0.833,"TU":"E-mail address (for confirmation e-mail"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":569,"AM":0,"x":48.601,"y":33.755,"w":33.186,"h":0.833,"TU":"Re-enter e-mail address (must match"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":561,"AM":0,"x":93.402,"y":20.33,"w":3.019,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":567,"AM":0,"x":19.243,"y":23.939,"w":2.195,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINFOPA.content.txt b/test/data/ef/form/EFINFOPA.content.txt new file mode 100755 index 00000000..41f3323d --- /dev/null +++ b/test/data/ef/form/EFINFOPA.content.txt @@ -0,0 +1,327 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Section 4: Payment Options + + +A. Refund: + + +A. Paying Tax Due by Check + + + + + + + + + + + +- + + + + + + + + + + + + + + + + + + + + +If you agree, enter your five-digit self-selected PIN below. +A self-selected five-digit personal identification number (PIN) will serve as your electronic signature on your tax return. If you +are filing with a spouse, you must each enter your five-digit PIN. If filing a joint return on behalf of one or more deceased +taxpayers, you must enter both PINs. +Primary Taxpayer +Section 2: Additional Information Needed to E-file Your Pennsylvania Return +......................... +......................... +Section 3: Refund Options +If you would like to have your refund directly deposited into your bank account, enter the information below. +If you are paying with a check, print Form PA-V Payment Voucher, and mail it with your check to the Pennsylvania Department of +Revenue. See Instructions for more information. +B. Electronic Funds Withdrawal of Tax Due +I authorize (1) The Pennsylvania Department of Revenue and its designated financial agents to initiate an +electronic funds withdrawal (automatic withdrawal) entry to my financial institution account designated above for payment +of my Pennsylvania taxes owed, and (2) my financial institution to debit the entry to my account. I also authorize the +financial institutions involved in the processing of my electronic payment of taxes to receive confidential information +necessary to answer inquiries and resolve issues related to my payment. Under the terms of this authorization, I can +revoke authorization by notifying the Pennsylvania Department of Revenue no later than two business days prior to the +payment date. I understand that notification must be made in writing by one of the following methods: +Routing Transit Number +Type +Checking +Requested payment Date +Bank Account Number +or Savings +Taxpayer's Daytime Phone Number +Secondary Taxpayer +E-mail address (for confirmation e-mail) +Re-enter e-mail address (must match) +Routing Transit Number +Type +Checking +Bank Account Number +or Savings +I authorize the Department of Revenue to direct deposit my refund as designated herein. If I have filed a joint +return, this is an irrevocable appointment of the other spouse as an agent to receive the refund. +Required Information For Electronic Filing -Complete All 4 Sections Below +Will the fund go to an account outside the U.S.? +Section1: E-Signature +..................... +G +..................... +G +. +G +G +G +G +G +. +G +............... +............... +Under penalties of perjury, I/we declare that I/we have examined this return, including all accompanying schedules and +statements, and to the best of my/our belief, they are true, correct and complete. +box below, you will receive a check. +Will the fund come from an account outside the U.S.? +Email to: ra-achrevok@pa.gov, or Fax to: 717-772-4193 +All fields are required. If you do not enter all required direct deposit information and check the authorization +withdraw the amount of your tax payment from your bank account: +Filling out the information below authorizes the Department of Revenue and its designated financial agents to electronically +Yes +No +Yes +No +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINFOPA.fields.json b/test/data/ef/form/EFINFOPA.fields.json new file mode 100755 index 00000000..2b1a9cbc --- /dev/null +++ b/test/data/ef/form/EFINFOPA.fields.json @@ -0,0 +1 @@ +[{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"DDAUTH","type":"box","calc":false,"value":""},{"id":"TA2RB","type":"radio","calc":false,"value":"TACK2"},{"id":"TA2RB","type":"radio","calc":false,"value":"TASV2"},{"id":"ACH2RB","type":"radio","calc":false,"value":"IATYES2"},{"id":"ACH2RB","type":"radio","calc":false,"value":"IATNO2"},{"id":"AUTH","type":"box","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"RTN2","type":"mask","calc":false,"value":""},{"id":"DAN2","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINFOPA.json b/test/data/ef/form/EFINFOPA.json new file mode 100755 index 00000000..014128d3 --- /dev/null +++ b/test/data/ef/form/EFINFOPA.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":4.125,"y":10.616,"w":1.6500000000000001,"l":97.281},{"x":4.125,"y":27.928,"w":1.6500000000000001,"l":97.281},{"x":4.125,"y":15.366,"w":1.6500000000000001,"l":97.281},{"x":4.339,"y":1.734,"w":1.6500000000000001,"l":97.025},{"x":6.309,"y":34.969,"w":1.0499999999999998,"l":94.116},{"x":6.245,"y":47.952,"w":1.0499999999999998,"l":93.987},{"x":6.248,"y":19.931,"w":1.0499999999999998,"l":93.088},{"x":6.248,"y":27.244,"w":1.0499999999999998,"l":93.088}],"VLines":[{"x":100.031,"y":34.953,"w":1.0499999999999998,"l":12.968},{"x":6.394,"y":34.962,"w":1.0499999999999998,"l":12.951},{"x":99.258,"y":19.852,"w":1.0499999999999998,"l":7.312},{"x":6.188,"y":19.908,"w":1.0499999999999998,"l":7.294}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":46.85,"y":13.015,"w":32.113,"h":0.015,"clr":0},{"x":46.829,"y":14.203,"w":32.196,"h":0.015,"clr":0},{"x":163.926,"y":11.766,"w":0.083,"h":2.28,"clr":0},{"x":-0.943,"y":49.157,"w":1.887,"h":0.686,"clr":0},{"x":0.86,"y":49.051,"w":0.593,"h":0.216,"clr":0}],"Texts":[{"x":4.514,"y":28.83,"w":13.359000000000005,"clr":0,"A":"left","R":[{"T":"Section%204%3A%20Payment%20Options","S":9,"TS":[0,12,1,0]}]},{"x":5.36,"y":16.986,"w":5.085,"clr":0,"A":"left","R":[{"T":"A.%20Refund%3A","S":9,"TS":[0,12,1,0]}]},{"x":5.36,"y":30.1,"w":13.527,"clr":0,"A":"left","R":[{"T":"A.%20Paying%20Tax%20Due%20by%20Check","S":9,"TS":[0,12,1,0]}]},{"x":17.981,"y":33.4,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":3,"TS":[0,12,0,0]}]},{"x":5.336,"y":7.452999999999999,"w":253.44000000000003,"clr":0,"A":"left","R":[{"T":"If%20you%20agree%2C%20enter%20your%20five-digit%20self-selected%20PIN%20below.","S":-1,"TS":[0,13,0,0]}]},{"x":5.336,"y":2.953,"w":550.7599999999995,"clr":0,"A":"left","R":[{"T":"A%20self-selected%20five-digit%20personal%20identification%20number%20(PIN)%20will%20serve%20as%20your%20electronic%20signature%20on%20your%20tax%20return.%20%20If%20you","S":-1,"TS":[0,13,0,0]}]},{"x":5.381,"y":3.6719999999999997,"w":535.8099999999995,"clr":0,"A":"left","R":[{"T":"are%20filing%20with%20a%20spouse%2C%20you%20must%20each%20enter%20your%20five-digit%20PIN.%20%20If%20filing%20a%20joint%20return%20on%20behalf%20of%20one%20or%20more%20deceased%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.434,"y":4.469,"w":164.52,"clr":0,"A":"left","R":[{"T":"taxpayers%2C%20you%20must%20enter%20both%20PINs.","S":-1,"TS":[0,13,0,0]}]},{"x":5.336,"y":8.516,"w":78.9,"clr":0,"A":"left","R":[{"T":"Primary%20Taxpayer","S":-1,"TS":[0,13,0,0]}]},{"x":4.097,"y":11.139,"w":36.584999999999994,"clr":0,"A":"left","R":[{"T":"Section%202%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20Pennsylvania%20Return","S":9,"TS":[0,12,1,0]}]},{"x":32.389,"y":12.235,"w":7.949999999999996,"clr":0,"A":"left","R":[{"T":".........................","S":-1,"TS":[2,12.8323,0,0]}]},{"x":32.368,"y":13.423,"w":7.949999999999996,"clr":0,"A":"left","R":[{"T":".........................","S":-1,"TS":[2,12.8323,0,0]}]},{"x":4.292,"y":15.8,"w":12.632000000000003,"clr":0,"A":"left","R":[{"T":"Section%203%3A%20Refund%20Options","S":9,"TS":[0,12,1,0]}]},{"x":13.414,"y":17.016,"w":473.0099999999998,"clr":0,"A":"left","R":[{"T":"If%20you%20would%20like%20to%20have%20your%20refund%20directly%20deposited%20into%20your%20bank%20account%2C%20enter%20the%20information%20below.","S":-1,"TS":[0,13,0,0]}]},{"x":7.453,"y":30.865,"w":57.80999999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20are%20paying%20with%20a%20check%2C%20print%20Form%20PA-V%20Payment%20Voucher%2C%20and%20mail%20it%20with%20your%20check%20to%20the%20Pennsylvania%20Department%20of%20","S":3,"TS":[0,12,0,0]}]},{"x":7.435,"y":31.542,"w":21.700999999999997,"clr":0,"A":"left","R":[{"T":"Revenue.%20See%20Instructions%20for%20more%20information.%20","S":3,"TS":[0,12,0,0]}]},{"x":5.876,"y":32.635,"w":20.797000000000008,"clr":0,"A":"left","R":[{"T":"B.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":9,"TS":[0,12,1,0]}]},{"x":16.223,"y":40.193,"w":468.56999999999994,"clr":0,"A":"left","R":[{"T":"I%20authorize%20(1)%20The%20Pennsylvania%20Department%20of%20Revenue%20and%20its%20designated%20financial%20agents%20to%20initiate%20an%20","S":-1,"TS":[0,13,0,0]}]},{"x":7.514,"y":41.098,"w":537.4399999999997,"clr":0,"A":"left","R":[{"T":"electronic%20funds%20withdrawal%20(automatic%20withdrawal)%20entry%20to%20my%20financial%20institution%20account%20designated%20above%20for%20payment%20","S":-1,"TS":[0,13,0,0]}]},{"x":7.503,"y":41.9,"w":513.0199999999995,"clr":0,"A":"left","R":[{"T":"of%20my%20Pennsylvania%20taxes%20owed%2C%20and%20(2)%20my%20financial%20institution%20to%20debit%20the%20entry%20to%20my%20account.%20%20I%20also%20authorize%20the","S":-1,"TS":[0,13,0,0]}]},{"x":7.488,"y":42.696,"w":510.7699999999998,"clr":0,"A":"left","R":[{"T":"financial%20institutions%20involved%20in%20the%20processing%20of%20my%20electronic%20payment%20of%20taxes%20to%20receive%20confidential%20information%20","S":-1,"TS":[0,13,0,0]}]},{"x":7.583,"y":43.5,"w":518.5499999999995,"clr":0,"A":"left","R":[{"T":"necessary%20to%20answer%20inquiries%20and%20resolve%20issues%20related%20to%20my%20payment.%20%20Under%20the%20terms%20of%20this%20authorization%2C%20I%20can%20","S":-1,"TS":[0,13,0,0]}]},{"x":7.606,"y":44.333,"w":527.4799999999996,"clr":0,"A":"left","R":[{"T":"revoke%20authorization%20by%20notifying%20the%20Pennsylvania%20Department%20of%20Revenue%20no%20later%20than%20two%20business%20days%20prior%20to%20the%20","S":-1,"TS":[0,13,0,0]}]},{"x":7.559,"y":45.208,"w":446.3399999999999,"clr":0,"A":"left","R":[{"T":"payment%20date.%20I%20understand%20that%20notification%20must%20be%20made%20in%20writing%20by%20one%20of%20the%20following%20methods%3A","S":-1,"TS":[0,13,0,0]}]},{"x":7.9,"y":35.364,"w":10.702000000000002,"clr":0,"A":"left","R":[{"T":"Routing%20Transit%20Number","S":3,"TS":[0,12,0,0]}]},{"x":7.9,"y":36.301,"w":2.239,"clr":0,"A":"left","R":[{"T":"Type","S":3,"TS":[0,12,0,0]}]},{"x":24.18,"y":36.301,"w":4.2,"clr":0,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"x":7.9,"y":37.224,"w":11.427000000000003,"clr":0,"A":"left","R":[{"T":"Requested%20payment%20Date","S":3,"TS":[0,12,0,0]}]},{"x":47.768,"y":35.356,"w":10.080000000000002,"clr":0,"A":"left","R":[{"T":"Bank%20Account%20Number","S":3,"TS":[0,12,0,0]}]},{"x":37.965,"y":36.294,"w":4.763999999999999,"clr":0,"A":"left","R":[{"T":"or%20Savings","S":3,"TS":[0,12,0,0]}]},{"x":47.882,"y":37.297,"w":15.931000000000003,"clr":0,"A":"left","R":[{"T":"Taxpayer's%20Daytime%20Phone%20Number","S":3,"TS":[0,12,0,0]}]},{"x":45.778,"y":8.486,"w":92.26,"clr":0,"A":"left","R":[{"T":"Secondary%20Taxpayer","S":-1,"TS":[0,13,0,0]}]},{"x":5.164,"y":12.235,"w":17.50300000000001,"clr":0,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":3,"TS":[0,12,0,0]}]},{"x":5.164,"y":13.423,"w":16.764999999999997,"clr":0,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":3,"TS":[0,12,0,0]}]},{"x":7.9,"y":20.22,"w":10.702000000000002,"clr":0,"A":"left","R":[{"T":"Routing%20Transit%20Number","S":3,"TS":[0,12,0,0]}]},{"x":7.9,"y":21.407,"w":2.239,"clr":0,"A":"left","R":[{"T":"Type","S":3,"TS":[0,12,0,0]}]},{"x":24.524,"y":21.407,"w":4.2,"clr":0,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"x":47.768,"y":20.213,"w":10.080000000000002,"clr":0,"A":"left","R":[{"T":"Bank%20Account%20Number","S":3,"TS":[0,12,0,0]}]},{"x":35.043,"y":21.4,"w":4.763999999999999,"clr":0,"A":"left","R":[{"T":"or%20Savings","S":3,"TS":[0,12,0,0]}]},{"x":14.617,"y":24.828,"w":485.8099999999997,"clr":0,"A":"left","R":[{"T":"I%20authorize%20the%20Department%20of%20Revenue%20to%20direct%20deposit%20my%20refund%20as%20designated%20herein.%20%20If%20I%20have%20filed%20a%20joint%20","S":-1,"TS":[0,13,0,0]}]},{"x":8.339,"y":25.675,"w":420.7799999999998,"clr":0,"A":"left","R":[{"T":"return%2C%20this%20is%20an%20irrevocable%20appointment%20of%20the%20other%20spouse%20as%20an%20agent%20to%20receive%20the%20refund.","S":-1,"TS":[0,13,0,0]}]},{"x":4.226,"y":0.2549999999999999,"w":35.138999999999996,"clr":0,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-Complete%20All%204%20Sections%20Below","S":-1,"TS":[0,15.625,1,0]}]},{"x":14.668,"y":23.554,"w":22.284999999999997,"clr":0,"A":"left","R":[{"T":"Will%20the%20fund%20go%20to%20an%20account%20outside%20the%20U.S.%3F","S":44,"TS":[2,12,0,0]}]},{"x":4.453,"y":1.8719999999999999,"w":10.390999999999998,"clr":0,"A":"left","R":[{"T":"Section1%3A%20E-Signature","S":-1,"TS":[2,12,1,0]}]},{"x":11.63,"y":21.304,"w":6.677999999999997,"clr":0,"A":"left","R":[{"T":".....................","S":-1,"TS":[2,12.8323,0,0]}]},{"oc":"#231f20","x":23.125,"y":21.5,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"x":11.415,"y":36.169,"w":6.677999999999997,"clr":0,"A":"left","R":[{"T":".....................","S":-1,"TS":[2,12.8323,0,0]}]},{"oc":"#231f20","x":22.91,"y":36.365,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"x":24.134,"y":35.276,"w":0.318,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[2,12.8323,0,0]}]},{"oc":"#231f20","x":24.801,"y":35.409,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":71.309,"y":35.479,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":25.231,"y":37.3,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":72.238,"y":37.441,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":24.607,"y":20.268,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"x":24.22,"y":20.101,"w":0.318,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[2,12.8323,0,0]}]},{"oc":"#231f20","x":70.751,"y":20.382,"w":0.85,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,13,0,0]}]},{"x":63.021,"y":20.226,"w":4.77,"clr":0,"A":"left","R":[{"T":"...............","S":-1,"TS":[2,12.8323,0,0]}]},{"x":63.45,"y":35.338,"w":4.77,"clr":0,"A":"left","R":[{"T":"...............","S":-1,"TS":[2,12.8323,0,0]}]},{"x":5.336,"y":5.578,"w":527.4599999999999,"clr":0,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%2Fwe%20declare%20that%20I%2Fwe%20have%20examined%20this%20return%2C%20including%20all%20accompanying%20schedules%20and%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.12,"y":6.309,"w":355.17999999999995,"clr":0,"A":"left","R":[{"T":"statements%2C%20and%20to%20the%20best%20of%20my%2Four%20belief%2C%20they%20are%20true%2C%20correct%20and%20complete.","S":-1,"TS":[0,13,0,0]}]},{"x":13.51,"y":18.631,"w":158.39000000000001,"clr":0,"A":"left","R":[{"T":"box%20below%2C%20you%20will%20receive%20a%20check.","S":-1,"TS":[0,13,0,0]}]},{"x":16.376,"y":38.927,"w":24.898999999999997,"clr":0,"A":"left","R":[{"T":"Will%20the%20fund%20come%20from%20an%20account%20outside%20the%20U.S.%3F","S":44,"TS":[2,12,0,0]}]},{"x":17.274,"y":46.318,"w":247.4800000000001,"clr":0,"A":"left","R":[{"T":"Email%20to%3A%20ra-achrevok%40pa.gov%2C%20or%20Fax%20to%3A%20717-772-4193","S":-1,"TS":[0,13,0,0]}]},{"x":13.515,"y":17.759,"w":474.66999999999985,"clr":0,"A":"left","R":[{"T":"All%20fields%20are%20required.%20If%20you%20do%20not%20enter%20all%20required%20direct%20deposit%20information%20and%20check%20the%20authorization%20","S":-1,"TS":[0,13,0,0]}]},{"x":7.849,"y":33.846,"w":292.91,"clr":0,"A":"left","R":[{"T":"withdraw%20the%20amount%20of%20your%20tax%20payment%20from%20your%20bank%20account%3A","S":-1,"TS":[0,13,0,0]}]},{"x":7.785,"y":33.26,"w":54.30299999999994,"clr":0,"A":"left","R":[{"T":"Filling%20out%20the%20information%20below%20authorizes%20the%20Department%20of%20Revenue%20and%20its%20designated%20financial%20agents%20to%20electronically","S":3,"TS":[0,12,0,0]}]},{"x":8.133,"y":22.455,"w":20.01,"clr":0,"A":"left","R":[{"T":"Yes%20","S":-1,"TS":[0,13,0,0]}]},{"x":12.26,"y":22.455,"w":12.780000000000001,"clr":0,"A":"left","R":[{"T":"No","S":-1,"TS":[0,13,0,0]}]},{"x":8.004,"y":38.345,"w":20.01,"clr":0,"A":"left","R":[{"T":"Yes%20","S":-1,"TS":[0,13,0,0]}]},{"x":12.131,"y":38.345,"w":12.780000000000001,"clr":0,"A":"left","R":[{"T":"No","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPIN","EN":0},"TI":570,"AM":0,"x":20.931,"y":8.598,"w":16.731,"h":0.833,"TU":"Primary Taxpayer PIN","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIN","EN":0},"TI":571,"AM":0,"x":63.582,"y":8.545,"w":16.731,"h":0.833,"TU":"Secondary Taxpayer PIN","MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":572,"AM":0,"x":46.839,"y":12.144,"w":32.134,"h":0.836,"TU":"E-mail address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":573,"AM":0,"x":46.744,"y":13.33,"w":32.237,"h":0.833,"TU":"Re-enter email address"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":574,"AM":0,"x":26.148,"y":20.552,"w":20.75,"h":0.833,"TU":"Routing Transit Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":575,"AM":0,"x":73.066,"y":20.586,"w":20.392,"h":0.833,"TU":"Bank Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN2","EN":0},"TI":581,"AM":0,"x":26.26,"y":35.707,"w":21.05,"h":0.833,"TU":"Routing Transit Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN2","EN":0},"TI":582,"AM":0,"x":73.688,"y":35.678,"w":19.943,"h":0.833,"TU":"Bank Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":585,"AM":0,"x":27.028,"y":37.425,"w":11.305,"h":0.833,"TU":"Date to Make Withdrawal","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":586,"AM":0,"x":73.969,"y":37.604,"w":16.872,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":576,"AM":0,"x":31.519,"y":21.701,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":577,"AM":0,"x":43.059,"y":21.639,"w":1.967,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":578,"AM":0,"x":8.772,"y":23.557,"w":2.312,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":579,"AM":0,"x":12.181,"y":23.547,"w":2.312,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DDAUTH","EN":0},"TI":580,"AM":0,"x":12.625,"y":24.766,"w":2.046,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK2","EN":0},"TI":583,"AM":0,"x":31.044,"y":36.477,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV2","EN":0},"TI":584,"AM":0,"x":45.814,"y":36.442,"w":1.967,"h":0.833,"checked":false}],"id":{"Id":"TA2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES2","EN":0},"TI":587,"AM":0,"x":8.39,"y":39.095,"w":2.312,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO2","EN":0},"TI":588,"AM":0,"x":12.2,"y":39.143,"w":2.312,"h":0.833,"checked":true}],"id":{"Id":"ACH2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AUTH","EN":0},"TI":589,"AM":0,"x":14.072,"y":40.237,"w":2.345,"h":0.853}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINFOSC.content.txt b/test/data/ef/form/EFINFOSC.content.txt new file mode 100755 index 00000000..94ed11b1 --- /dev/null +++ b/test/data/ef/form/EFINFOSC.content.txt @@ -0,0 +1,73 @@ +Required Information For Electronic Filing - Complete All 4 Sections Below +Per South Carolina Department of Revenue +Section 1: Information Needed for South Carolina Return +If you received a Form W-2, 1099-R, 1099-G, or 1099-MISC that has South Carolina Witholding on it, you are required to enter all +information for each of the forms received. You must enter the information exactly as it appears on the form. If you have multiple +forms, use the Add button to enter information from each form separately. +Example: +If you received two Forms W-2, click the Add button next to the Form W-2 and enter the information for your first Form W-2. +After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat this for +each of the types of forms listed below that you received. +Form W-2 + Wage & Tax Statement +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +G +Form 1099-R + Distributions from Pensions, Annuities, Retirement or Profit-Sharing Plans, IRAs, Insurance Contracts, etc. +. . +G +Form 1099-G + Certain Government Payments +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +G +Form 1099-MISC + Miscellaneous Income +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +G +Check the box if you do not have any of the forms to enter +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +G +Section 2: E-Signature Required +Form SC8453, Declaration for an E-Filed Return, must be completed and signed. Retain the SC8453 with your tax records for three +years unless requested by South Carolina Department of Revenue. +Section 3: Additional Information Needed to E-file Your South Carolina Return +A. Enter Email Address +E-mail address (for confirmation e-mail) +. . . . . . . . . . . . . . . . . . . . +Re-enter e-mail address (must match) +. . . . . . . . . . . . . . . . . . . . . . +B. International ACH Transactions - Required if using direct deposit or electronic withdrawal +Yes +No +Will the refunds go to or originate from an account outside the U.S.? +Section 4: Refund/Payment Options +A. Refund + - You will receive a check unless you select direct deposit or a state debit card on Form SC1040. +B. Paying Tax Due by Check + - If you are paying with a check, print Form SC 1040-V and mail it with your check to the South Carolina +Department of Revenue. +C. Electronic Funds Withdrawal of Tax Due +- If you would like to pay your tax balance due using electronic funds withdrawal, enter the +required information below: +. . . . . . . . . . . . . +G +Routing number +. . . . . . . . . . . +G +Account number +. . . . . . . . . . +G +Type: +. . . . . . . . . . . . . . . . . . . . . +G +Date to make withdrawal +. +G +Note +: Do +not + enter direct deposit information here, enter it on Form SC1040. +Checking +Savings +By filling in the information below, I agree to pay my tax balance due by electronic funds withdrawal +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINFOSC.fields.json b/test/data/ef/form/EFINFOSC.fields.json new file mode 100755 index 00000000..494db360 --- /dev/null +++ b/test/data/ef/form/EFINFOSC.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINFOSC.json b/test/data/ef/form/EFINFOSC.json new file mode 100755 index 00000000..d15eb1b9 --- /dev/null +++ b/test/data/ef/form/EFINFOSC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdiscwkt.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":2.063,"y":3.125,"w":100.372,"h":0.124,"clr":0},{"x":2.063,"y":16.625,"w":100.372,"h":0.124,"clr":0},{"x":2.063,"y":20.375,"w":100.372,"h":0.124,"clr":0},{"x":47.438,"y":24.125,"w":33.083,"h":0.03,"clr":0},{"x":47.438,"y":24.875,"w":33.083,"h":0.03,"clr":0},{"x":3.609,"y":26.75,"w":97.02,"h":0.03,"clr":0},{"x":3.609,"y":29,"w":97.02,"h":0.03,"clr":0},{"x":2.063,"y":30.125,"w":100.372,"h":0.124,"clr":0},{"x":4.641,"y":38,"w":95.989,"h":0.03,"clr":0},{"x":27.844,"y":40.625,"w":17.614,"h":0.03,"clr":0},{"x":69.094,"y":40.625,"w":20.708,"h":0.03,"clr":0},{"x":27.844,"y":42.125,"w":17.614,"h":0.03,"clr":0},{"x":4.641,"y":44,"w":95.989,"h":0.03,"clr":0},{"x":2.063,"y":45.125,"w":100.372,"h":0.124,"clr":0},{"x":3.609,"y":26.75,"w":0.082,"h":2.28,"clr":0},{"x":100.547,"y":26.75,"w":0.082,"h":2.28,"clr":0},{"x":4.641,"y":38,"w":0.082,"h":6.03,"clr":0},{"x":100.547,"y":38,"w":0.082,"h":6.03,"clr":0},{"x":27.844,"y":40.625,"w":3.176,"h":0.03,"clr":0},{"x":41.25,"y":40.625,"w":3.176,"h":0.03,"clr":0},{"x":1.676,"y":48.379,"w":0.481,"h":0.175,"clr":0}],"Texts":[{"x":2.153,"y":0.7509999999999999,"w":35.56299999999999,"clr":0,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20All%204%20Sections%20Below","S":-1,"TS":[2,15.9773,1,0]}]},{"x":3.184,"y":1.501,"w":20.134,"clr":0,"A":"left","R":[{"T":"Per%20South%20Carolina%20Department%20of%20Revenue","S":-1,"TS":[2,11.9829,0,0]}]},{"x":2.153,"y":3.7510000000000003,"w":26.948000000000008,"clr":0,"A":"left","R":[{"T":"Section%201%3A%20Information%20Needed%20for%20South%20Carolina%20Return","S":-1,"TS":[2,11.9829,1,0]}]},{"x":3.184,"y":5.251,"w":59.94999999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20a%20Form%20W-2%2C%201099-R%2C%201099-G%2C%20or%201099-MISC%20that%20has%20South%20Carolina%20Witholding%20on%20it%2C%20you%20are%20required%20to%20enter%20all","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":6.001,"w":60.02600000000001,"clr":0,"A":"left","R":[{"T":"information%20for%20each%20of%20the%20forms%20received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears%20on%20the%20form.%20If%20you%20have%20multiple","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":6.751,"w":34.737000000000016,"clr":0,"A":"left","R":[{"T":"forms%2C%20use%20the%20Add%20button%20to%20enter%20information%20from%20each%20form%20separately.%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":8.251,"w":4.724,"clr":0,"A":"left","R":[{"T":"Example%3A%20","S":-1,"TS":[2,11.9829,1,0]}]},{"x":9.626,"y":8.251,"w":57.459,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20Add%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form%20W-2.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":9.001,"w":61.17100000000001,"clr":0,"A":"left","R":[{"T":"After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat%20this%20for","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":9.751,"w":26.559000000000005,"clr":0,"A":"left","R":[{"T":"each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":11.251,"w":4.611,"clr":0,"A":"left","R":[{"T":"Form%20W-2","S":-1,"TS":[2,11.9829,1,0]}]},{"x":10.32,"y":11.251,"w":11.093,"clr":0,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":-1,"TS":[2,11.9829,0,0]}]},{"x":28.233,"y":11.251,"w":61.28700000000025,"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.%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":91.872,"y":11.251,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":3.184,"y":12.001,"w":6.057,"clr":0,"A":"left","R":[{"T":"Form%201099-R","S":-1,"TS":[2,11.9829,1,0]}]},{"x":12.537,"y":12.001,"w":49.894000000000005,"clr":0,"A":"left","R":[{"T":"%20Distributions%20from%20Pensions%2C%20Annuities%2C%20Retirement%20or%20Profit-Sharing%20Plans%2C%20IRAs%2C%20Insurance%20Contracts%2C%20etc.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":90.17,"y":12.001,"w":1.318,"clr":0,"A":"left","R":[{"T":".%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":91.872,"y":12.001,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":3.184,"y":12.751,"w":6.1129999999999995,"clr":0,"A":"left","R":[{"T":"Form%201099-G","S":-1,"TS":[2,11.9829,1,0]}]},{"x":12.63,"y":12.751,"w":14.591,"clr":0,"A":"left","R":[{"T":"%20Certain%20Government%20Payments","S":-1,"TS":[2,11.9829,0,0]}]},{"x":35.72,"y":12.751,"w":54.03800000000018,"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.%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":91.872,"y":12.751,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":3.184,"y":13.501,"w":7.834999999999999,"clr":0,"A":"left","R":[{"T":"Form%201099-MISC","S":-1,"TS":[2,11.9829,1,0]}]},{"x":15.292,"y":13.501,"w":10.565999999999999,"clr":0,"A":"left","R":[{"T":"%20Miscellaneous%20Income","S":-1,"TS":[2,11.9829,0,0]}]},{"x":32.317,"y":13.501,"w":57.33300000000021,"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.%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":91.872,"y":13.501,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":3.184,"y":15.001,"w":27.127000000000002,"clr":0,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20forms%20to%20enter","S":-1,"TS":[2,11.9829,0,0]}]},{"x":45.929,"y":15.001,"w":44.15300000000009,"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.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":91.872,"y":15.001,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":2.153,"y":17.251,"w":15.281000000000002,"clr":0,"A":"left","R":[{"T":"Section%202%3A%20E-Signature%20Required","S":-1,"TS":[2,11.9829,1,0]}]},{"x":3.184,"y":18.189,"w":61.206000000000024,"clr":0,"A":"left","R":[{"T":"Form%20SC8453%2C%20Declaration%20for%20an%20E-Filed%20Return%2C%20must%20be%20completed%20and%20signed.%20Retain%20the%20SC8453%20with%20your%20tax%20records%20for%20three%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":18.938,"w":30.98000000000001,"clr":0,"A":"left","R":[{"T":"years%20unless%20requested%20by%20South%20Carolina%20Department%20of%20Revenue.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":2.153,"y":21.001,"w":37.004999999999995,"clr":0,"A":"left","R":[{"T":"Section%203%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20South%20Carolina%20Return","S":-1,"TS":[2,11.9829,1,0]}]},{"x":3.184,"y":22.501,"w":11.059000000000005,"clr":0,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address","S":-1,"TS":[2,11.9829,1,0]}]},{"x":4.216,"y":23.251,"w":18.603000000000005,"clr":0,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":33.575,"y":23.251,"w":13.180000000000003,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":4.215,"y":24.001,"w":17.705,"clr":0,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":32.214,"y":24.001,"w":14.498000000000005,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":3.184,"y":25.501,"w":43.84299999999996,"clr":0,"A":"left","R":[{"T":"B.%20International%20ACH%20Transactions%20-%20Required%20if%20using%20direct%20deposit%20or%20electronic%20withdrawal","S":-1,"TS":[2,11.9829,1,0]}]},{"x":5.247,"y":27.001,"w":1.7790000000000001,"clr":0,"A":"left","R":[{"T":"Yes","S":-1,"TS":[2,11.9829,1,0]}]},{"x":10.403,"y":27.001,"w":1.333,"clr":0,"A":"left","R":[{"T":"No","S":-1,"TS":[2,11.9829,1,0]}]},{"x":13.497,"y":27.751,"w":31.76900000000001,"clr":0,"A":"left","R":[{"T":"Will%20the%20refunds%20go%20to%20or%20originate%20from%20an%20account%20outside%20the%20U.S.%3F","S":-1,"TS":[2,11.9829,0,0]}]},{"x":2.154,"y":30.751,"w":17.003000000000004,"clr":0,"A":"left","R":[{"T":"Section%204%3A%20Refund%2FPayment%20Options","S":-1,"TS":[2,11.9829,1,0]}]},{"x":3.185,"y":32.251,"w":4.7219999999999995,"clr":0,"A":"left","R":[{"T":"A.%20Refund","S":-1,"TS":[2,11.9829,1,0]}]},{"x":9.982,"y":32.251,"w":45.371000000000016,"clr":0,"A":"left","R":[{"T":"%20-%20You%20will%20receive%20a%20check%20unless%20you%20select%20direct%20deposit%20or%20a%20state%20debit%20card%20on%20Form%20SC1040.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.185,"y":33.751,"w":13.449000000000005,"clr":0,"A":"left","R":[{"T":"B.%20Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[2,11.9829,1,0]}]},{"x":20.548,"y":33.751,"w":49.107000000000006,"clr":0,"A":"left","R":[{"T":"%20-%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20Form%20SC%201040-V%20and%20mail%20it%20with%20your%20check%20to%20the%20South%20Carolina%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":5.248,"y":34.501,"w":11.296000000000001,"clr":0,"A":"left","R":[{"T":"Department%20of%20Revenue.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.185,"y":36.001,"w":20.393000000000008,"clr":0,"A":"left","R":[{"T":"C.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due","S":-1,"TS":[2,11.9829,1,0]}]},{"x":30.046,"y":36.001,"w":42.37000000000001,"clr":0,"A":"left","R":[{"T":"-%20If%20you%20would%20like%20to%20pay%20your%20tax%20balance%20due%20using%20electronic%20funds%20withdrawal%2C%20enter%20the%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":5.248,"y":36.751,"w":12.678,"clr":0,"A":"left","R":[{"T":"required%20information%20below%3A","S":-1,"TS":[2,11.9829,0,0]}]},{"x":80.621,"y":38.251,"w":8.566999999999998,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":89.809,"y":38.251,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":6.278,"y":39.751,"w":7.367999999999999,"clr":0,"A":"left","R":[{"T":"Routing%20number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":18.044,"y":39.751,"w":7.248999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":25.872,"y":39.751,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":47.528,"y":39.751,"w":7.564,"clr":0,"A":"left","R":[{"T":"Account%20number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":59.975,"y":39.751,"w":6.589999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":67.121,"y":39.751,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":6.278,"y":40.501,"w":2.571,"clr":0,"A":"left","R":[{"T":"Type%3A","S":-1,"TS":[2,11.9829,0,0]}]},{"x":11.238,"y":40.501,"w":13.839000000000004,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":25.872,"y":40.501,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":6.278,"y":41.251,"w":11.450999999999999,"clr":0,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":-1,"TS":[2,11.9829,0,0]}]},{"x":24.851,"y":41.251,"w":0.659,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":25.872,"y":41.251,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":6.278,"y":42.751,"w":2.222,"clr":0,"A":"left","R":[{"T":"Note","S":-1,"TS":[2,11.9829,1,0]}]},{"x":9.712,"y":42.751,"w":2.26,"clr":0,"A":"left","R":[{"T":"%3A%20Do%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.691,"y":42.751,"w":1.555,"clr":0,"A":"left","R":[{"T":"not","S":-1,"TS":[2,11.9829,1,0]}]},{"x":15.276,"y":42.751,"w":29.631999999999998,"clr":0,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20Form%20SC1040.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":30.169,"y":40.485,"w":37.512,"clr":0,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"x":43.876,"y":40.485,"w":32.013000000000005,"clr":0,"A":"left","R":[{"T":"Savings","S":3,"TS":[0,12,0,0]}]},{"x":6.085,"y":38.219,"w":427.1220000000006,"clr":0,"A":"left","R":[{"T":"By%20filling%20in%20the%20information%20below%2C%20I%20agree%20to%20pay%20my%20tax%20balance%20due%20by%20electronic%20funds%20withdrawal","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":590,"AM":0,"x":93.618,"y":11.349,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":591,"AM":0,"x":93.618,"y":12.057,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099G"}},"id":{"Id":"Add_US_1099G","EN":0},"TI":592,"AM":0,"x":93.578,"y":12.888,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F99MPER"}},"id":{"Id":"Add_US_MISC","EN":0},"TI":593,"AM":0,"x":93.633,"y":13.615,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":595,"AM":0,"x":47.333,"y":23.437,"w":33.186,"h":0.833,"TU":"E-mail address (for confirmation e-mail"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":596,"AM":0,"x":47.355,"y":24.204,"w":33.186,"h":0.833,"TU":"Re-enter e-mail address (must match"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":600,"AM":0,"x":27.869,"y":39.867,"w":17.519,"h":0.833,"TU":"Routing Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":601,"AM":0,"x":69.149,"y":39.832,"w":20.589,"h":0.833,"TU":"Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":604,"AM":0,"x":27.72,"y":41.438,"w":17.669,"h":0.833,"TU":"Date to Make Withdrawal","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":594,"AM":0,"x":94.021,"y":14.98,"w":3.019,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":597,"AM":0,"x":5.08,"y":27.747,"w":3.243,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":598,"AM":0,"x":10.459,"y":27.802,"w":3.094,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":599,"AM":0,"x":91.843,"y":38.446,"w":2.92,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":602,"AM":0,"x":28.031,"y":40.728,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":603,"AM":0,"x":41.427,"y":40.743,"w":1.222,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/EFINFOVA.content.txt b/test/data/ef/form/EFINFOVA.content.txt new file mode 100755 index 00000000..e79edd0e --- /dev/null +++ b/test/data/ef/form/EFINFOVA.content.txt @@ -0,0 +1,91 @@ +Required Information For Electronic Filing - Complete All 4 Sections Below +Section 1: Federal Information Needed for Virginia Return +A. Federal Withholding +If you received a Form W-2, 1099-R, W-2G, 1099-G, or 1099-MISC that has Virginia witholding on it, you are required to enter + +specific information for each of the forms received. You must enter the information exactly as it appears on the form. If you have + +multiple forms, use the Add button to enter information from each form separately. +Example: +If you received two Forms W-2, click the Add button next to the Form W-2 and enter the information for your first Form + +W-2. After completing the first Form W-2, select the Add button again and enter the information for the second Form W-2. Repeat + +this for each of the types of forms listed below that you received. +Form W-2 + Wage & Tax Statement +G +Form W-2G + Certain Gambling Winnings + +G +Form 1099-R + Distributions from Pensions, Annuities, Retirement or Profit-Sharing Plans, IRAs, Insurance Contracts, etc. +G +Form 1099-G + Certain Government Payment +G +Form 1099-MISC + Miscellaneous Income +G +Check the box if you do not have any of the above forms to enter +G +B. Schedule FED +If you file federal Schedule C and/or Schedule F, you need to complete the Virginia Schedule FED. Select the "View/Add Forms" +button, add the schedule and enter the items needed to complete the form. You may complete the items based upon any +combination of two Schedule C’s or F’s. Also complete this schedule if you file Form 2106 or Form 4562 with your federal return. +Section 2: E-Signature Required +You will be signing your return with a 5-digit electronic signature PIN. If you are filing with a spouse you will both need to enter a 5- +digit PIN. Write the PIN(s) down and keep with your tax records. + +Taxpayer Spouse +Enter your 5-digit electronic signature PIN +Section 3: Additional Information Needed to E-file Your Virginia Return +A. Enter Email Address: +E-mail address (for confirmation e-mail) +Re-enter e-mail address (must match) +B. International ACH Transactions - Required if using direct deposit or electronic funds withdrawal +Yes No +Will the funds go to or originate from an account outside the U.S.? +Section 4: Refund/Payment Options +A. Refund - Do not enter refund information here. + Select your refund method on Form 760 and enter your direct deposit information +there. Paper checks will +NOT + be issued by the state of Virginia. +B. Paying Tax Due by Check +- If you are paying with a check, print Form 760-PMT or 760-PFF and mail it with your check to the +Virginia Department of Taxation. +C. Electronic Funds Withdrawal of Tax Due +- If you would like to pay your tax balance due using electronic funds withdrawal enter the +required information below. +Note +: Do +not + enter direct deposit information here, enter it on Form 760. +By filling in the information below I agree to pay my tax balance due by electronic funds withdrawal +G +Routing number +G +G +Type: +G +Checking +Account number +Savings +Date to make withdrawal +G +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . +. . . . . . . . +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/EFINFOVA.fields.json b/test/data/ef/form/EFINFOVA.fields.json new file mode 100755 index 00000000..00197e70 --- /dev/null +++ b/test/data/ef/form/EFINFOVA.fields.json @@ -0,0 +1 @@ +[{"id":"WHNO","type":"box","calc":false,"value":""},{"id":"ACHRB","type":"radio","calc":false,"value":"IATYES"},{"id":"ACHRB","type":"radio","calc":false,"value":"IATNO"},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"Add_US_W2","type":"link","calc":false,"value":""},{"id":"Add_US_W2G","type":"link","calc":false,"value":""},{"id":"Add_US_1099R","type":"link","calc":false,"value":""},{"id":"Add_US_1099G","type":"link","calc":false,"value":""},{"id":"Add_US_MISC","type":"link","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/EFINFOVA.json b/test/data/ef/form/EFINFOVA.json new file mode 100755 index 00000000..0674d808 --- /dev/null +++ b/test/data/ef/form/EFINFOVA.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","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":47.953,"y":29.625,"w":32.072,"h":0.038,"clr":0},{"x":62.047,"y":25.687,"w":12.134,"h":0.038,"clr":0},{"x":47.953,"y":25.687,"w":12.134,"h":0.038,"clr":0},{"x":5.5,"y":32.25,"w":0.103,"h":2.287,"clr":0},{"x":5.5,"y":34.5,"w":93.088,"h":0.038,"clr":0},{"x":5.5,"y":32.25,"w":93.088,"h":0.038,"clr":0},{"x":98.484,"y":32.25,"w":0.103,"h":2.287,"clr":0},{"x":47.953,"y":30.375,"w":32.072,"h":0.038,"clr":0},{"x":4.125,"y":20.625,"w":97.281,"h":0.125,"clr":0},{"x":4.125,"y":35.063,"w":97.281,"h":0.125,"clr":0},{"x":4.125,"y":26.438,"w":97.281,"h":0.125,"clr":0},{"x":4.125,"y":3.75,"w":97.281,"h":0.125,"clr":0},{"x":68.833,"y":45.397,"w":20.213,"h":0.037,"clr":0},{"x":28.958,"y":46.896,"w":11.103,"h":0.038,"clr":0},{"x":6.443,"y":42.772,"w":93.088,"h":0.037,"clr":0},{"x":6.443,"y":47.271,"w":93.088,"h":0.038,"clr":0},{"x":99.427,"y":42.772,"w":0.103,"h":4.537,"clr":0},{"x":6.443,"y":42.772,"w":0.103,"h":4.537,"clr":0},{"x":28.958,"y":45.397,"w":17.119,"h":0.037,"clr":0},{"x":4.036,"y":47.522,"w":97.281,"h":0.125,"clr":0},{"x":4.809,"y":47.548,"w":0.599,"h":0.218,"clr":0}],"Texts":[{"x":4.219,"y":2.125,"w":426.7560000000003,"clr":0,"A":"left","R":[{"T":"Required%20Information%20For%20Electronic%20Filing%20-%20Complete%20All%204%20Sections%20Below","S":-1,"TS":[0,15.52,1,0]}]},{"x":4.219,"y":4.188,"w":246.05099999999996,"clr":0,"A":"left","R":[{"T":"Section%201%3A%20Federal%20Information%20Needed%20for%20Virginia%20Return","S":9,"TS":[0,12,1,0]}]},{"x":5.078,"y":5.375,"w":98.00999999999998,"clr":0,"A":"left","R":[{"T":"A.%20Federal%20Withholding","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":6.125,"w":500.2020000000006,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20a%20Form%20W-2%2C%201099-R%2C%20W-2G%2C%201099-G%2C%20or%201099-MISC%20that%20has%20Virginia%20witholding%20on%20it%2C%20you%20are%20required%20to%20enter","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":6.875,"w":508.2300000000007,"clr":0,"A":"left","R":[{"T":"specific%20information%20for%20each%20of%20the%20forms%20received.%20You%20must%20enter%20the%20information%20exactly%20as%20it%20appears%20on%20the%20form.%20If%20you%20have","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":7.625,"w":326.14200000000017,"clr":0,"A":"left","R":[{"T":"multiple%20forms%2C%20use%20the%20Add%20button%20to%20enter%20information%20from%20each%20form%20separately.","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":8.75,"w":42.516000000000005,"clr":0,"A":"left","R":[{"T":"Example%3A%20","S":9,"TS":[0,12,1,0]}]},{"x":12.729,"y":8.75,"w":468.6750000000006,"clr":0,"A":"left","R":[{"T":"If%20you%20received%20two%20Forms%20W-2%2C%20click%20the%20Add%20button%20next%20to%20the%20Form%20W-2%20and%20enter%20the%20information%20for%20your%20first%20Form","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":9.5,"w":513.7200000000008,"clr":0,"A":"left","R":[{"T":"W-2.%20After%20completing%20the%20first%20Form%20W-2%2C%20select%20the%20Add%20button%20again%20and%20enter%20the%20information%20for%20the%20second%20Form%20W-2.%20Repeat","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":10.25,"w":256.1219999999999,"clr":0,"A":"left","R":[{"T":"this%20for%20each%20of%20the%20types%20of%20forms%20listed%20below%20that%20you%20received.","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":11.375,"w":41.498999999999995,"clr":0,"A":"left","R":[{"T":"Form%20W-2","S":9,"TS":[0,12,1,0]}]},{"x":13.242,"y":11.375,"w":95.54400000000001,"clr":0,"A":"left","R":[{"T":"%20Wage%20%26%20Tax%20Statement","S":3,"TS":[0,12,0,0]}]},{"x":91.016,"y":11.375,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":6.109,"y":12.125,"w":48.501,"clr":0,"A":"left","R":[{"T":"Form%20W-2G","S":9,"TS":[0,12,1,0]}]},{"x":14.445,"y":12.125,"w":112.03200000000002,"clr":0,"A":"left","R":[{"T":"%20Certain%20Gambling%20Winnings","S":3,"TS":[0,12,0,0]}]},{"x":91.016,"y":12.125,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":6.109,"y":12.875,"w":54.51299999999999,"clr":0,"A":"left","R":[{"T":"Form%201099-R","S":9,"TS":[0,12,1,0]}]},{"x":15.479,"y":12.875,"w":425.65500000000026,"clr":0,"A":"left","R":[{"T":"%20Distributions%20from%20Pensions%2C%20Annuities%2C%20Retirement%20or%20Profit-Sharing%20Plans%2C%20IRAs%2C%20Insurance%20Contracts%2C%20etc.","S":3,"TS":[0,12,0,0]}]},{"x":91.016,"y":12.875,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":6.109,"y":13.625,"w":55.016999999999996,"clr":0,"A":"left","R":[{"T":"Form%201099-G","S":9,"TS":[0,12,1,0]}]},{"x":15.565,"y":13.625,"w":121.54500000000002,"clr":0,"A":"left","R":[{"T":"%20Certain%20Government%20Payment","S":3,"TS":[0,12,0,0]}]},{"x":91.016,"y":13.625,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":6.109,"y":14.375,"w":70.515,"clr":0,"A":"left","R":[{"T":"Form%201099-MISC","S":9,"TS":[0,12,1,0]}]},{"x":18.229,"y":14.375,"w":91.53000000000002,"clr":0,"A":"left","R":[{"T":"%20Miscellaneous%20Income","S":3,"TS":[0,12,0,0]}]},{"x":91.016,"y":14.375,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":6.109,"y":15.875,"w":258.147,"clr":0,"A":"left","R":[{"T":"Check%20the%20box%20if%20you%20do%20not%20have%20any%20of%20the%20above%20forms%20to%20enter","S":3,"TS":[0,12,0,0]}]},{"x":91.016,"y":15.875,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":5.078,"y":17.063,"w":72.01800000000001,"clr":0,"A":"left","R":[{"T":"B.%20Schedule%20FED","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":17.813,"w":512.6310000000004,"clr":0,"A":"left","R":[{"T":"If%20you%20file%20federal%20Schedule%20C%20and%2For%20Schedule%20F%2C%20you%20need%20to%20complete%20the%20Virginia%20Schedule%20FED.%20%20Select%20the%20%22View%2FAdd%20Forms%22","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":18.563,"w":482.76900000000063,"clr":0,"A":"left","R":[{"T":"button%2C%20add%20the%20schedule%20and%20enter%20the%20items%20needed%20to%20complete%20the%20form.%20%20You%20may%20complete%20the%20items%20based%20upon%20any","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":19.313,"w":512.1990000000008,"clr":0,"A":"left","R":[{"T":"combination%20of%20two%20Schedule%20C%E2%80%99s%20or%20F%E2%80%99s.%20%20Also%20complete%20this%20schedule%20if%20you%20file%20Form%202106%20or%20Form%204562%20with%20your%20federal%20return.","S":3,"TS":[0,12,0,0]}]},{"x":4.219,"y":20.875,"w":137.529,"clr":0,"A":"left","R":[{"T":"Section%202%3A%20E-Signature%20Required","S":9,"TS":[0,12,1,0]}]},{"x":5.078,"y":21.938,"w":518.2290000000005,"clr":0,"A":"left","R":[{"T":"You%20will%20be%20signing%20your%20return%20with%20a%205-digit%20electronic%20signature%20PIN.%20If%20you%20are%20filing%20with%20a%20spouse%20you%20will%20both%20need%20to%20enter%20a%205-","S":3,"TS":[0,12,0,0]}]},{"x":5.078,"y":22.688,"w":254.59199999999996,"clr":0,"A":"left","R":[{"T":"digit%20PIN.%20Write%20the%20PIN(s)%20down%20and%20keep%20with%20your%20tax%20records.","S":3,"TS":[0,12,0,0]}]},{"x":51.141,"y":23.75,"w":37.512,"clr":0,"A":"left","R":[{"T":"Taxpayer","S":3,"TS":[0,12,0,0]}]},{"x":65.063,"y":23.75,"w":30.519000000000005,"clr":0,"A":"left","R":[{"T":"Spouse","S":3,"TS":[0,12,0,0]}]},{"x":5.078,"y":24.813,"w":166.56300000000005,"clr":0,"A":"left","R":[{"T":"Enter%20your%205-digit%20electronic%20signature%20PIN","S":3,"TS":[0,12,0,0]}]},{"x":4.219,"y":26.688,"w":302.0490000000002,"clr":0,"A":"left","R":[{"T":"Section%203%3A%20Additional%20Information%20Needed%20to%20E-file%20Your%20Virginia%20Return","S":9,"TS":[0,12,1,0]}]},{"x":5.078,"y":28,"w":102.52800000000002,"clr":0,"A":"left","R":[{"T":"A.%20Enter%20Email%20Address%3A","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":28.75,"w":157.527,"clr":0,"A":"left","R":[{"T":"E-mail%20address%20(for%20confirmation%20e-mail)","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":29.5,"w":151.53300000000002,"clr":0,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":3,"TS":[0,12,0,0]}]},{"x":5.078,"y":31,"w":421.58700000000056,"clr":0,"A":"left","R":[{"T":"B.%20International%20ACH%20Transactions%20-%20Required%20if%20using%20direct%20deposit%20or%20electronic%20funds%20withdrawal","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":32.5,"w":16.011000000000003,"clr":0,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":11.094,"y":32.5,"w":11.997,"clr":0,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":14.188,"y":33.25,"w":262.62899999999996,"clr":0,"A":"left","R":[{"T":"Will%20the%20funds%20go%20to%20or%20originate%20from%20an%20account%20outside%20the%20U.S.%3F","S":3,"TS":[0,12,0,0]}]},{"x":4.502,"y":35.237,"w":153.02699999999996,"clr":0,"A":"left","R":[{"T":"Section%204%3A%20Refund%2FPayment%20Options","S":9,"TS":[0,12,1,0]}]},{"x":5.361,"y":36.362,"w":210.01500000000004,"clr":0,"A":"left","R":[{"T":"A.%20Refund%20-%20Do%20not%20enter%20refund%20information%20here.","S":9,"TS":[0,12,1,0]}]},{"x":37.333,"y":36.362,"w":325.15200000000016,"clr":0,"A":"left","R":[{"T":"%20Select%20your%20refund%20method%20on%20Form%20760%20and%20enter%20your%20direct%20deposit%20information","S":3,"TS":[0,12,0,0]}]},{"x":7.424,"y":37.112,"w":97.533,"clr":0,"A":"left","R":[{"T":"there.%20Paper%20checks%20will%20","S":3,"TS":[0,12,0,0]}]},{"x":22.984,"y":37.112,"w":18.999000000000002,"clr":0,"A":"left","R":[{"T":"NOT","S":9,"TS":[0,12,1,0]}]},{"x":26.25,"y":37.112,"w":137.57400000000004,"clr":0,"A":"left","R":[{"T":"%20be%20issued%20by%20the%20state%20of%20Virginia.%20","S":3,"TS":[0,12,0,0]}]},{"x":5.361,"y":38.174,"w":123.543,"clr":0,"A":"left","R":[{"T":"B.%20Paying%20Tax%20Due%20by%20Check%20","S":9,"TS":[0,12,1,0]}]},{"x":24.705,"y":38.174,"w":393.1470000000002,"clr":0,"A":"left","R":[{"T":"-%20If%20you%20are%20paying%20with%20a%20check%2C%20print%20Form%20760-PMT%20or%20760-PFF%20and%20mail%20it%20with%20your%20check%20to%20the%20","S":3,"TS":[0,12,0,0]}]},{"x":7.424,"y":38.924,"w":129.05100000000002,"clr":0,"A":"left","R":[{"T":"Virginia%20Department%20of%20Taxation.","S":3,"TS":[0,12,0,0]}]},{"x":5.361,"y":39.987,"w":186.03899999999996,"clr":0,"A":"left","R":[{"T":"C.%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%20","S":9,"TS":[0,12,1,0]}]},{"x":33.899,"y":39.987,"w":357.66900000000015,"clr":0,"A":"left","R":[{"T":"-%20If%20you%20would%20like%20to%20pay%20your%20tax%20balance%20due%20using%20electronic%20funds%20withdrawal%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"x":7.424,"y":40.737,"w":108.54000000000003,"clr":0,"A":"left","R":[{"T":"required%20information%20below.","S":3,"TS":[0,12,0,0]}]},{"x":5.82,"y":41.71,"w":19.998,"clr":0,"A":"left","R":[{"T":"Note","S":9,"TS":[0,12,1,0]}]},{"x":9.257,"y":41.71,"w":19.008,"clr":0,"A":"left","R":[{"T":"%3A%20Do%20","S":3,"TS":[0,12,0,0]}]},{"x":12.524,"y":41.71,"w":13.995000000000001,"clr":0,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"x":14.929,"y":41.69,"w":235.10700000000006,"clr":0,"A":"left","R":[{"T":"%20enter%20direct%20deposit%20information%20here%2C%20enter%20it%20on%20Form%20760.","S":3,"TS":[0,12,0,0]}]},{"x":8.083,"y":43.021,"w":427.1220000000006,"clr":0,"A":"left","R":[{"T":"By%20filling%20in%20the%20information%20below%20%20I%20agree%20to%20pay%20my%20tax%20balance%20due%20by%20electronic%20funds%20withdrawal","S":9,"TS":[0,12,1,0]}]},{"x":90.927,"y":43.021,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":8.083,"y":44.521,"w":64.026,"clr":0,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"x":26.99,"y":44.521,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":67.036,"y":44.521,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":8.083,"y":45.271,"w":22.509,"clr":0,"A":"left","R":[{"T":"Type%3A","S":3,"TS":[0,12,0,0]}]},{"x":26.99,"y":45.271,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":31.973999999999997,"y":45.271,"w":37.512,"clr":0,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"x":47.958,"y":44.521,"w":65.529,"clr":0,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"x":46.068,"y":45.271,"w":32.013000000000005,"clr":0,"A":"left","R":[{"T":"Savings","S":3,"TS":[0,12,0,0]}]},{"x":8.083,"y":46.021,"w":98.53200000000002,"clr":0,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":3,"TS":[0,12,0,0]}]},{"x":26.99,"y":46.021,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":34.498,"y":14.355,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.31846,1,0]}]},{"oc":"#231f20","x":29.803,"y":11.355,"w":49.20999999999981,"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.%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":[0,8.73834,1,0]}]},{"oc":"#231f20","x":51.259,"y":15.878,"w":48.366399999999814,"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.%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":[0,6.73248,1,0]}]},{"oc":"#231f20","x":33.927,"y":12.105,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.37361,1,0]}]},{"oc":"#231f20","x":37.345,"y":13.659,"w":61.863999999999734,"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.%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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,8.05679,1,0]}]},{"oc":"#231f20","x":86.646,"y":12.925,"w":5.061600000000001,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,8.07994,1,0]}]},{"oc":"#231f20","x":33.288,"y":28.956,"w":18.55919999999999,"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","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":33.159,"y":29.753,"w":18.55919999999999,"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","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":33.804,"y":24.972,"w":18.55919999999999,"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","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":12.338,"y":45.258,"w":18.55919999999999,"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","S":-1,"TS":[0,6.95227,1,0]}]},{"oc":"#231f20","x":19.619,"y":44.602,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":59.643,"y":44.555,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,7.56345,1,0]}]},{"oc":"#231f20","x":24.754,"y":46.102,"w":4.218000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,5.7380700000000004,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2"}},"id":{"Id":"Add_US_W2","EN":0},"TI":605,"AM":0,"x":92.87,"y":11.513,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FW2G"}},"id":{"Id":"Add_US_W2G","EN":0},"TI":606,"AM":0,"x":92.85,"y":12.226,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099R"}},"id":{"Id":"Add_US_1099R","EN":0},"TI":607,"AM":0,"x":92.905,"y":12.931,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1099G"}},"id":{"Id":"Add_US_1099G","EN":0},"TI":608,"AM":0,"x":92.83,"y":13.676,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F99MPER"}},"id":{"Id":"Add_US_MISC","EN":0},"TI":609,"AM":0,"x":92.884,"y":14.404,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPIN","EN":0},"TI":611,"AM":0,"x":47.975,"y":24.991,"w":12.129,"h":0.833,"TU":"Taxpayer 5-digit Electronic Signature PIN","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIN","EN":0},"TI":612,"AM":0,"x":62.05,"y":24.977,"w":12.129,"h":0.833,"TU":"Spouse 5-digit Electronic Signature PIN","MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":613,"AM":0,"x":47.788,"y":28.844,"w":32.417,"h":0.833,"TU":"E-mail Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":614,"AM":0,"x":47.863,"y":29.701,"w":32.418,"h":0.833,"TU":"Re-enter E-mail Address"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":618,"AM":0,"x":28.892,"y":44.701,"w":17.519,"h":0.833,"TU":"Routing Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":619,"AM":0,"x":68.796,"y":44.666,"w":20.589,"h":0.833,"TU":"Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":622,"AM":0,"x":28.742,"y":46.272,"w":11.305,"h":0.833,"TU":"Date to Make Withdrawal","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WHNO","EN":0},"TI":610,"AM":0,"x":92.997,"y":15.878,"w":3.061,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATYES","EN":0},"TI":615,"AM":0,"x":6.503,"y":33.467,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IATNO","EN":0},"TI":616,"AM":0,"x":11.145,"y":33.44,"w":1.967,"h":0.833,"checked":true}],"id":{"Id":"ACHRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":617,"AM":0,"x":92.866,"y":43.189,"w":2.92,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":620,"AM":0,"x":30.003,"y":45.387,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":621,"AM":0,"x":44.109,"y":45.36,"w":1.967,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/F1099D.content.txt b/test/data/ef/form/F1099D.content.txt new file mode 100755 index 00000000..0df49e83 --- /dev/null +++ b/test/data/ef/form/F1099D.content.txt @@ -0,0 +1,97 @@ +Form +1099-DIV +20 +13 +Dividends and +Distributions +Copy B +For Recipient +Department of the Treasury - Internal Revenue Service +This is important tax +information and is +being furnished to +the Internal Revenue +Service. If you are +required to file a +return, a negligence +penalty or other +sanction may be +imposed on you if + this income is taxable +and the IRS +determines that it has +not been reported. +OMB No. 1545-0110 +CORRECTED (if checked) +PAYER’S federal identification number +RECIPIENT’S identification number +RECIPIENT’S name +Street address (including apt. no.) +City or town, province or state, country, and ZIP or foreign postal code +Account number (see instructions) +1a +Total ordinary dividends +$ +1b +Qualified dividends +$ +2a +Total capital gain distr. +$ +2b +Unrecap. Sec. 1250 gain +$ +2c +Section 1202 gain +$ +2d +Collectibles (28%) gain +$ +3 +Nondividend distributions +$ +4 + Federal income tax withheld +$ +5 +Investment expenses +$ +6 +Foreign tax paid +$ +7 +Foreign country or U.S. possession +8 +Cash liquidation distributions +$ +9 + +Noncash liquidation distributions +$ +10 +Exempt-interest dividends +$ +11 +Specified private activity +bond interest dividends +$ +12 + State +13 + +State identification no. +14 +State tax withheld +$ +$ +Form +1099-DIV +(keep for your records) +www.irs.gov/form1099div +City +State ZIP Code +Payer’s Name +PAYER’S INFORMATION +Street address (including apt. no.) +Telephone no. +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/F1099D.fields.json b/test/data/ef/form/F1099D.fields.json new file mode 100755 index 00000000..3123a7f6 --- /dev/null +++ b/test/data/ef/form/F1099D.fields.json @@ -0,0 +1 @@ +[{"id":"PNA1","type":"alpha","calc":false,"value":""},{"id":"L1B","type":"number","calc":false,"value":""},{"id":"ADD1","type":"alpha","calc":false,"value":""},{"id":"QDIV","type":"number","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STP2","type":"alpha","calc":false,"value":""},{"id":"ST2","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"PPH","type":"phone","calc":false,"value":""},{"id":"L1C","type":"number","calc":false,"value":""},{"id":"L2C","type":"number","calc":false,"value":""},{"id":"PYID","type":"mask","calc":false,"value":""},{"id":"L2D","type":"number","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"L1CTX","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"L1D","type":"number","calc":false,"value":""},{"id":"L2","type":"alpha","calc":false,"value":""},{"id":"L1E","type":"number","calc":false,"value":""},{"id":"RADD","type":"alpha","calc":false,"value":""},{"id":"TAX","type":"number","calc":false,"value":""},{"id":"CTRY","type":"alpha","calc":false,"value":""},{"id":"RCITY","type":"alpha","calc":false,"value":""},{"id":"STP","type":"alpha","calc":false,"value":""},{"id":"ZIP2","type":"zip","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"EX2","type":"number","calc":false,"value":""},{"id":"EX4","type":"number","calc":false,"value":""},{"id":"ACCT","type":"alpha","calc":false,"value":""},{"id":"STATEID","type":"alpha","calc":false,"value":""},{"id":"STWH","type":"number","calc":false,"value":""},{"id":"STAT2","type":"alpha","calc":false,"value":""},{"id":"STATEID2","type":"alpha","calc":false,"value":""},{"id":"STWH2","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/F1099D.json b/test/data/ef/form/F1099D.json new file mode 100755 index 00000000..5d13e0bc --- /dev/null +++ b/test/data/ef/form/F1099D.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1099-DIV","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":67.998,"y":6.75,"w":1.125,"l":12.504},{"oc":"#221f1f","x":80.373,"y":6.75,"w":1.125,"l":18.67},{"oc":"#221f1f","x":85.323,"y":22.5,"w":1.5,"l":13.72},{"oc":"#221f1f","x":67.998,"y":2.25,"w":1.5,"l":12.504},{"oc":"#221f1f","x":8.577,"y":2.25,"w":1.5,"l":42.226},{"oc":"#221f1f","x":8.577,"y":8.25,"w":1.125,"l":42.226},{"oc":"#221f1f","x":8.577,"y":11.25,"w":1.125,"l":21.166},{"oc":"#221f1f","x":29.636,"y":11.25,"w":1.125,"l":21.166},{"oc":"#221f1f","x":8.577,"y":13.5,"w":1.125,"l":42.226},{"oc":"#221f1f","x":8.577,"y":15.75,"w":1.125,"l":42.226},{"oc":"#221f1f","x":8.577,"y":18,"w":1.125,"l":42.226},{"oc":"#221f1f","x":8.577,"y":20.25,"w":1.125,"l":42.226},{"oc":"#221f1f","x":8.577,"y":22.5,"w":1.5,"l":42.226},{"oc":"#221f1f","x":50.673,"y":2.25,"w":1.5,"l":17.454},{"oc":"#221f1f","x":50.673,"y":4.501,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":6.75,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":8.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.998,"y":8.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":11.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.998,"y":11.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":12.75,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.891,"y":11.25,"w":3,"l":17.669},{"oc":"#221f1f","x":67.891,"y":12.75,"w":3,"l":17.669},{"oc":"#221f1f","x":50.673,"y":12.75,"w":0.75,"l":17.454},{"oc":"#221f1f","x":50.673,"y":14.25,"w":0.75,"l":17.454},{"oc":"#221f1f","x":67.998,"y":14.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":16.5,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.998,"y":16.5,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":18,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.998,"y":18,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":20.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.998,"y":20.25,"w":1.125,"l":17.454},{"dsh":1,"oc":"#221f1f","x":50.673,"y":21.75,"w":0.75,"l":6.295},{"oc":"#221f1f","x":50.673,"y":22.5,"w":1.5,"l":6.316},{"dsh":1,"oc":"#221f1f","x":56.861,"y":21.75,"w":0.75,"l":11.245},{"oc":"#221f1f","x":56.861,"y":22.5,"w":1.5,"l":11.266},{"dsh":1,"oc":"#221f1f","x":67.998,"y":21.75,"w":0.75,"l":17.454},{"oc":"#221f1f","x":67.998,"y":22.5,"w":1.5,"l":17.454}],"VLines":[{"oc":"#221f1f","x":68.063,"y":5.984,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":2.984,"w":1.125,"l":3.031},{"oc":"#221f1f","x":80.438,"y":2.234,"w":1.125,"l":4.539},{"oc":"#221f1f","x":85.388,"y":6.734,"w":1.125,"l":4.539},{"oc":"#221f1f","x":85.388,"y":11.234,"w":1.125,"l":11.297},{"oc":"#221f1f","x":68.063,"y":2.219,"w":1.125,"l":0.797},{"oc":"#221f1f","x":8.662,"y":2.219,"w":1.5,"l":6.055},{"oc":"#221f1f","x":8.662,"y":8.234,"w":1.5,"l":3.039},{"oc":"#221f1f","x":29.7,"y":8.234,"w":1.125,"l":3.039},{"oc":"#221f1f","x":8.662,"y":11.234,"w":1.5,"l":2.289},{"oc":"#221f1f","x":8.662,"y":13.484,"w":1.5,"l":2.289},{"oc":"#221f1f","x":8.662,"y":15.734,"w":1.5,"l":2.289},{"oc":"#221f1f","x":50.738,"y":17.977,"w":1.125,"l":2.297},{"oc":"#221f1f","x":8.662,"y":17.977,"w":1.5,"l":2.297},{"oc":"#221f1f","x":8.662,"y":20.234,"w":1.5,"l":2.297},{"oc":"#221f1f","x":50.738,"y":2.219,"w":1.125,"l":1.547},{"oc":"#221f1f","x":50.738,"y":3.735,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":4.484,"w":1.125,"l":1.531},{"oc":"#221f1f","x":50.738,"y":5.984,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":6.734,"w":1.125,"l":0.781},{"oc":"#221f1f","x":50.738,"y":7.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":6.734,"w":1.125,"l":0.781},{"oc":"#221f1f","x":68.063,"y":7.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":8.234,"w":1.125,"l":2.281},{"oc":"#221f1f","x":50.738,"y":10.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":8.234,"w":1.125,"l":2.297},{"oc":"#221f1f","x":68.063,"y":10.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":11.234,"w":1.125,"l":0.781},{"oc":"#221f1f","x":50.738,"y":11.984,"w":1.125,"l":0.789},{"oc":"#221f1f","x":85.388,"y":11.188,"w":3,"l":0.875},{"oc":"#221f1f","x":68.063,"y":11.188,"w":3,"l":0.875},{"oc":"#221f1f","x":85.388,"y":11.984,"w":3,"l":0.828},{"oc":"#221f1f","x":68.063,"y":11.984,"w":3,"l":0.828},{"oc":"#221f1f","x":68.063,"y":12.734,"w":1.125,"l":1.531},{"oc":"#221f1f","x":50.738,"y":12.734,"w":1.125,"l":1.531},{"oc":"#221f1f","x":68.063,"y":12.734,"w":1.125,"l":0.781},{"oc":"#221f1f","x":68.063,"y":13.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":14.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":50.738,"y":15.734,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":14.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":68.063,"y":15.734,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":16.484,"w":1.125,"l":0.781},{"oc":"#221f1f","x":50.738,"y":17.234,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":16.484,"w":1.125,"l":0.781},{"oc":"#221f1f","x":68.063,"y":17.234,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":17.977,"w":1.125,"l":1.586},{"oc":"#221f1f","x":68.063,"y":19.485,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":20.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":50.738,"y":21.735,"w":1.125,"l":0.797},{"oc":"#221f1f","x":56.925,"y":20.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":56.925,"y":21.735,"w":1.125,"l":0.797},{"oc":"#221f1f","x":68.063,"y":20.234,"w":1.125,"l":0.797},{"oc":"#221f1f","x":68.063,"y":20.984,"w":1.125,"l":0.781},{"oc":"#221f1f","x":68.063,"y":21.735,"w":1.125,"l":0.797}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c0c1c4","x":8.662,"y":18,"w":42.075,"h":2.25,"clr":-1},{"x":8.652,"y":6.169,"w":41.992,"h":0.037,"clr":0},{"x":8.649,"y":3.942,"w":42.128,"h":0.037,"clr":0},{"x":8.713,"y":2.77,"w":42.128,"h":0.037,"clr":0},{"x":8.652,"y":7.387,"w":41.992,"h":0.037,"clr":0}],"Texts":[{"oc":"#221f1f","x":69.123,"y":5.739,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.6,"y":5.739,"w":4.575000000000001,"clr":-1,"A":"left","R":[{"T":"1099-DIV%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":69.531,"y":4.018,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":73.876,"y":4.018,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":84.81,"y":3.473,"w":7.036999999999999,"clr":-1,"A":"left","R":[{"T":"Dividends%20and%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":86.19,"y":4.285,"w":6.368,"clr":-1,"A":"left","R":[{"T":"Distributions%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":92.796,"y":6.759,"w":3.7419999999999995,"clr":-1,"A":"left","R":[{"T":"Copy%20B%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":88.87,"y":7.602,"w":6.664999999999999,"clr":-1,"A":"left","R":[{"T":"For%20Recipient%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.515,"y":22.375,"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":87.831,"y":11.437,"w":9.354000000000003,"clr":-1,"A":"left","R":[{"T":"This%20is%20important%20tax%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.123,"y":11.937,"w":8.280000000000003,"clr":-1,"A":"left","R":[{"T":"information%20and%20is%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.034,"y":12.438,"w":8.354000000000003,"clr":-1,"A":"left","R":[{"T":"being%20furnished%20to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.697,"y":12.938,"w":9.465000000000003,"clr":-1,"A":"left","R":[{"T":"the%20Internal%20Revenue%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.104,"y":13.438,"w":8.296,"clr":-1,"A":"left","R":[{"T":"Service.%20If%20you%20are%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.039,"y":13.938,"w":7.519000000000002,"clr":-1,"A":"left","R":[{"T":"required%20to%20file%20a%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.099,"y":14.438,"w":9.131000000000002,"clr":-1,"A":"left","R":[{"T":"return%2C%20a%20negligence%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.283,"y":14.938,"w":7.316000000000001,"clr":-1,"A":"left","R":[{"T":"penalty%20or%20other%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.88,"y":15.437999999999999,"w":7.650999999999998,"clr":-1,"A":"left","R":[{"T":"sanction%20may%20be%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.145,"y":15.937999999999999,"w":8.262,"clr":-1,"A":"left","R":[{"T":"imposed%20on%20you%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.761,"y":16.438,"w":10.243000000000002,"clr":-1,"A":"left","R":[{"T":"%20this%20income%20is%20taxable%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.444,"y":16.938,"w":5.52,"clr":-1,"A":"left","R":[{"T":"and%20the%20IRS%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.116,"y":17.438,"w":9.948000000000004,"clr":-1,"A":"left","R":[{"T":"determines%20that%20it%20has%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.744,"y":17.938,"w":8.595000000000002,"clr":-1,"A":"left","R":[{"T":"not%20been%20reported.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.416,"y":1.972,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0110%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.3,"y":1.3210000000000002,"w":11.482000000000005,"clr":-1,"A":"left","R":[{"T":"CORRECTED%20(if%20checked)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":9.1,"y":7.936999999999999,"w":17.464999999999996,"clr":-1,"A":"left","R":[{"T":"PAYER%E2%80%99S%20federal%20identification%20number%20","S":-1,"TS":[0,9.79,0,0]}]},{"oc":"#221f1f","x":30.138,"y":7.936999999999999,"w":15.983,"clr":-1,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20identification%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.1,"y":10.937,"w":9.056000000000001,"clr":-1,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.1,"y":13.187,"w":15.355000000000002,"clr":-1,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.1,"y":15.437000000000001,"w":31.558000000000003,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20province%20or%20state%2C%20country%2C%20and%20ZIP%20or%20foreign%20postal%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.1,"y":20,"w":15.541000000000006,"clr":-1,"A":"left","R":[{"T":"Account%20number%20(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.175,"y":2,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"1a%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.538,"y":2,"w":11.020000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20ordinary%20dividends%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.261,"y":3.527,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.175,"y":4.25,"w":1.723,"clr":-1,"A":"left","R":[{"T":"1b%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.248,"y":4.25,"w":8.539000000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20dividends","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.261,"y":5.777,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.175,"y":6.5,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"2a%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.204,"y":6.5,"w":10.149000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20capital%20gain%20distr.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.261,"y":7.276999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.5,"y":6.5,"w":1.723,"clr":-1,"A":"left","R":[{"T":"2b%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.573,"y":6.5,"w":11.318000000000003,"clr":-1,"A":"left","R":[{"T":"Unrecap.%20Sec.%201250%20gain%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.586,"y":7.276999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.175,"y":8,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"2c%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.204,"y":8,"w":8.336,"clr":-1,"A":"left","R":[{"T":"Section%201202%20gain%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.261,"y":10.277,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.5,"y":8,"w":1.723,"clr":-1,"A":"left","R":[{"T":"2d%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.573,"y":8,"w":10.556000000000003,"clr":-1,"A":"left","R":[{"T":"Collectibles%20(28%25)%20gain%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.586,"y":10.277,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.175,"y":11,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.513,"y":11,"w":11.725,"clr":-1,"A":"left","R":[{"T":"Nondividend%20distributions%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.261,"y":11.777,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.5,"y":11,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":69.423,"y":11,"w":13.131000000000002,"clr":-1,"A":"left","R":[{"T":"%20Federal%20income%20tax%20withheld%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":68.586,"y":11.777,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.5,"y":12.5,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.838,"y":12.5,"w":9.762,"clr":-1,"A":"left","R":[{"T":"Investment%20expenses%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.586,"y":13.277,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.175,"y":14,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.513,"y":14,"w":7.519,"clr":-1,"A":"left","R":[{"T":"Foreign%20tax%20paid%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.261,"y":15.527000000000001,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.5,"y":14,"w":1.112,"clr":-1,"A":"left","R":[{"T":"7%20%20","S":-1,"TS":[0,8.67,0,0]}]},{"oc":"#221f1f","x":69.584,"y":14,"w":16.02,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20or%20U.S.%20possession%20","S":-1,"TS":[0,8.67,0,0]}]},{"oc":"#221f1f","x":51.175,"y":16.25,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8%20%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":52.446,"y":16.25,"w":13.261999999999999,"clr":-1,"A":"left","R":[{"T":"Cash%20liquidation%20distributions%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":51.261,"y":17.027,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.5,"y":16.25,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.758,"y":16.25,"w":14.929,"clr":-1,"A":"left","R":[{"T":"Noncash%20liquidation%20distributions%20","S":-1,"TS":[0,9.02,0,0]}]},{"oc":"#221f1f","x":68.586,"y":17.027,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.175,"y":17.75,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.847,"y":17.75,"w":11.725000000000001,"clr":-1,"A":"left","R":[{"T":"Exempt-interest%20dividends","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.261,"y":19.277,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.5,"y":17.75,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":70.346,"y":17.75,"w":11.204,"clr":-1,"A":"left","R":[{"T":"Specified%20private%20activity%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":70.391,"y":18.275,"w":10.503000000000004,"clr":-1,"A":"left","R":[{"T":"bond%20interest%20dividends","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":68.586,"y":19.277,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.175,"y":20,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.513,"y":20,"w":3.186,"clr":-1,"A":"left","R":[{"T":"%20%20State%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.363,"y":20,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.369,"y":20,"w":10.020000000000003,"clr":-1,"A":"left","R":[{"T":"State%20identification%20no.","S":-1,"TS":[0,7.92,0,0]}]},{"oc":"#221f1f","x":68.5,"y":20,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"14%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.507,"y":20,"w":8.037000000000003,"clr":-1,"A":"left","R":[{"T":"State%20tax%20withheld","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.586,"y":20.777,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.586,"y":21.527,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":22.321,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.555,"y":22.321,"w":4.575000000000001,"clr":-1,"A":"left","R":[{"T":"1099-DIV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.199,"y":22.339,"w":10.389000000000001,"clr":-1,"A":"left","R":[{"T":"(keep%20for%20your%20records)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.874,"y":22.375,"w":11.461000000000004,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform1099div","S":2,"TS":[0,10,0,0]}]},{"x":8.859,"y":5.921,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":38.766,"y":5.921,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":42.225,"y":5.921,"w":39.298,"clr":0,"A":"left","R":[{"T":"%20%20%20%20%20ZIP%20Code","S":2,"TS":[0,10,0,0]}]},{"x":8.659,"y":2.49,"w":43.95300000000001,"clr":0,"A":"left","R":[{"T":"Payer%E2%80%99s%20Name","S":2,"TS":[0,10,0,0]}]},{"x":8.688,"y":1.948,"w":80.89900000000002,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20INFORMATION","S":2,"TS":[0,10,0,0]}]},{"x":8.688,"y":3.6820000000000004,"w":105.04899999999998,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":2,"TS":[0,10,0,0]}]},{"x":8.668,"y":7.231,"w":51.144000000000005,"clr":0,"A":"left","R":[{"T":"Telephone%20no.","S":-1,"TS":[0,10.975999999999999,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNA1","EN":0},"TI":623,"AM":0,"x":8.632,"y":3.355,"w":42.127,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":624,"AM":0,"x":52.608,"y":3.349,"w":15.171,"h":1.145},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":625,"AM":0,"x":8.727,"y":5.551,"w":42.086,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QDIV","EN":0},"TI":626,"AM":0,"x":52.588,"y":5.547,"w":15.171,"h":1.145},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":627,"AM":0,"x":8.804,"y":6.923,"w":28.351,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STP2","EN":0},"TI":628,"AM":0,"x":37.433,"y":6.866,"w":3.7720000000000002,"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":"ST2","EN":0},"TI":629,"AM":0,"x":50.805,"y":21.052,"w":5.332,"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":630,"AM":0,"x":42.096,"y":6.948,"w":8.43,"h":0.833,"TU":"Payer's ZIP Code"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PPH","EN":0},"TI":631,"AM":0,"x":18.153,"y":7.596,"w":32.457,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":632,"AM":0,"x":52.468,"y":7.339,"w":15.62,"h":0.874},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2C","EN":0},"TI":633,"AM":0,"x":69.667,"y":7.332,"w":15.246,"h":0.874},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PYID","EN":0},"TI":634,"AM":0,"x":8.858,"y":8.916,"w":20.501,"h":2.245,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2D","EN":0},"TI":635,"AM":0,"x":52.398,"y":10.074,"w":15.171,"h":1.145},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":636,"AM":0,"x":30.021,"y":8.909,"w":20.576,"h":2.272},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1CTX","EN":0},"TI":637,"AM":0,"x":69.65,"y":10.238,"w":15.545,"h":1.036},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":638,"AM":0,"x":8.733,"y":11.823,"w":41.621,"h":1.612},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1D","EN":0},"TI":639,"AM":0,"x":52.56,"y":11.878,"w":15.62,"h":0.874},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":640,"AM":0,"x":69.76,"y":11.87,"w":15.245,"h":0.874},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1E","EN":0},"TI":641,"AM":0,"x":69.72,"y":13.37,"w":15.62,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RADD","EN":0},"TI":642,"AM":0,"x":8.755,"y":14.099,"w":41.621,"h":1.612},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX","EN":0},"TI":643,"AM":0,"x":52.563,"y":15.328,"w":15.171,"h":1.145},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CTRY","EN":0},"TI":644,"AM":0,"x":68.225,"y":15.33,"w":16.818,"h":1.118},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCITY","EN":0},"TI":645,"AM":0,"x":8.592,"y":16.512,"w":27.947,"h":1.387,"TU":"Recipient's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STP","EN":0},"TI":646,"AM":0,"x":36.924,"y":16.529,"w":4.07,"h":1.291,"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":"ZIP2","EN":0},"TI":647,"AM":0,"x":41.819,"y":16.553,"w":8.884,"h":1.374,"TU":"Recipient's ZIP Code"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":648,"AM":0,"x":52.373,"y":17.186,"w":15.695,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":649,"AM":0,"x":69.729,"y":17.062,"w":15.62,"h":0.902},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EX2","EN":0},"TI":650,"AM":0,"x":52.408,"y":18.975,"w":15.62,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EX4","EN":0},"TI":651,"AM":0,"x":69.682,"y":19.294,"w":15.47,"h":0.873},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ACCT","EN":0},"TI":652,"AM":0,"x":8.903,"y":20.852,"w":41.621,"h":1.612,"TU":"Account number (see instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATEID","EN":0},"TI":653,"AM":0,"x":57.071,"y":20.998,"w":10.821,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STWH","EN":0},"TI":654,"AM":0,"x":69.694,"y":20.998,"w":15.535,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STAT2","EN":0},"TI":655,"AM":0,"x":50.805,"y":21.757,"w":5.332,"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":"STATEID2","EN":0},"TI":656,"AM":0,"x":57.021,"y":21.742,"w":10.821,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STWH2","EN":0},"TI":657,"AM":0,"x":69.719,"y":21.742,"w":15.385,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/F1099G.content.txt b/test/data/ef/form/F1099G.content.txt new file mode 100755 index 00000000..c6e5526b --- /dev/null +++ b/test/data/ef/form/F1099G.content.txt @@ -0,0 +1,76 @@ +CORRECTED (if checked) +1 +Unemployment compensation OMB No. 1545-0120 +Certain +$ +Government +2 +State or local income tax +2013 +Payments +City +refunds, credits, or offsets +Telephone no. +$ +Form + 1099-G +PAYER’S federal identification number +RECIPIENT’S identification number +3 +Box 2 amount is for tax year +4 +Federal income tax withheld +Copy B +$ +For Recipient +RECIPIENT’S name +5 +ATAA payments +6 +Taxable energy grants +This is important tax +information and is +$ +$ +being furnished to the +Street address (including apt. no.) +7 +Agricultural payments +8 +trade or business +required to file a return. +Apartment no. +$ +income +G +a negligence penalty or +City +9 +Market gain +other sanction may be +imposed on you if this +$ +income is taxable and +Account number (see instructions) +10a +State +10b +State identification no. +11 +State income tax withheld +the IRS determines that +it has not been +reported. +Form +1099-G +(keep for your records) +Department of the Treasury - Internal Revenue Service +State ZIP Code +State ZIP Code +Payer’s Name +PAYER’S INFORMATION +Street address (including apt. no.) +Street address line 2 +Check if box 2 is +Service. If you are +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/F1099G.fields.json b/test/data/ef/form/F1099G.fields.json new file mode 100755 index 00000000..f061de28 --- /dev/null +++ b/test/data/ef/form/F1099G.fields.json @@ -0,0 +1 @@ +[{"id":"COR","type":"box","calc":false,"value":""},{"id":"BUSREF","type":"box","calc":false,"value":""},{"id":"PNAME","type":"alpha","calc":false,"value":""},{"id":"ADD1","type":"alpha","calc":false,"value":""},{"id":"ADD2","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STP","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"PPH","type":"phone","calc":false,"value":""},{"id":"PYID","type":"mask","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"RNAM","type":"alpha","calc":false,"value":""},{"id":"RADD","type":"alpha","calc":false,"value":""},{"id":"RAPT","type":"alpha","calc":false,"value":""},{"id":"RCTY","type":"alpha","calc":false,"value":""},{"id":"ST2","type":"alpha","calc":false,"value":""},{"id":"ZIP2","type":"zip","calc":false,"value":""},{"id":"ACCT","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"TXYR","type":"date","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"ATTAPMT","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"MRKTGN","type":"number","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"PYSID","type":"alpha","calc":false,"value":""},{"id":"STWHD","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/F1099G.json b/test/data/ef/form/F1099G.json new file mode 100755 index 00000000..e0fc823a --- /dev/null +++ b/test/data/ef/form/F1099G.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","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":50.05,"y":2.982,"w":0.103,"h":18.098,"clr":0},{"x":71.019,"y":3.016,"w":0.103,"h":6.905,"clr":0},{"x":28.016,"y":9.792,"w":0.103,"h":1.537,"clr":0},{"x":84.081,"y":3.016,"w":0.103,"h":6.78,"clr":0},{"x":86.969,"y":11.292,"w":0.103,"h":9.787,"clr":0},{"x":4.125,"y":3,"w":80.025,"h":0.037,"clr":0},{"x":5.008,"y":6.325,"w":44.985,"h":0.037,"clr":0},{"x":4.984,"y":9.042,"w":45.134,"h":0.037,"clr":0},{"x":50.034,"y":9.783,"w":51.182,"h":0.037,"clr":0},{"x":49.898,"y":11.283,"w":21.205,"h":0.037,"clr":0},{"x":4.074,"y":14.294,"w":82.946,"h":0.037,"clr":0},{"x":4.16,"y":18.794,"w":82.946,"h":0.038,"clr":0},{"x":4.181,"y":21.023,"w":96.825,"h":0.038,"clr":0},{"x":4.074,"y":16.544,"w":82.946,"h":0.038,"clr":0},{"x":86.969,"y":11.292,"w":14.197,"h":0.037,"clr":0},{"x":4.989,"y":7.669,"w":45.021,"h":0.037,"clr":0},{"x":5.035,"y":4.95,"w":65.9,"h":0.037,"clr":0},{"x":56.49,"y":18.792,"w":0.103,"h":2.287,"clr":0},{"x":70.984,"y":11.292,"w":0.103,"h":9.787,"clr":0},{"x":4.159,"y":3.014,"w":0.103,"h":18.035,"clr":0},{"x":86.969,"y":9.792,"w":0.344,"h":1.625,"clr":0},{"x":70.984,"y":9.792,"w":16.328,"h":0.125,"clr":0},{"x":70.984,"y":11.292,"w":16.328,"h":0.125,"clr":0},{"x":70.813,"y":9.792,"w":0.344,"h":1.625,"clr":0},{"x":4.159,"y":3.669,"w":45.994,"h":0.037,"clr":0},{"x":4.074,"y":11.294,"w":45.993,"h":0.037,"clr":0},{"x":4.246,"y":9.794,"w":45.821,"h":0.037,"clr":0}],"Texts":[{"x":43.063,"y":2.125,"w":117.79,"clr":0,"A":"left","R":[{"T":"CORRECTED%20(if%20checked)","S":-1,"TS":[0,13,0,0]}]},{"x":50.625,"y":2.875,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"x":52.172,"y":2.875,"w":105.81600000000003,"clr":0,"A":"left","R":[{"T":"Unemployment%20compensation","S":-1,"TS":[0,11,0,0]}]},{"x":71.078,"y":2.875,"w":73.36800000000002,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0120","S":-1,"TS":[0,11,0,0]}]},{"x":93.078,"y":4.083,"w":41.339999999999996,"clr":0,"A":"left","R":[{"T":"Certain","S":-1,"TS":[0,16,1,0]}]},{"x":50.625,"y":4,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":88.094,"y":4.833,"w":70.67999999999999,"clr":0,"A":"left","R":[{"T":"Government","S":-1,"TS":[0,16,1,0]}]},{"x":50.625,"y":4.833,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":52.688,"y":4.833,"w":87.59200000000001,"clr":0,"A":"left","R":[{"T":"State%20or%20local%20income%20tax","S":-1,"TS":[0,11,0,0]}]},{"x":74.172,"y":6.208,"w":31.136,"clr":0,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"x":90.156,"y":5.583,"w":56.687999999999995,"clr":0,"A":"left","R":[{"T":"Payments","S":-1,"TS":[0,16,1,0]}]},{"x":5.078,"y":7.545999999999999,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":52.688,"y":5.463,"w":92.04000000000003,"clr":0,"A":"left","R":[{"T":"refunds%2C%20credits%2C%20or%20offsets","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":9.005,"w":51.144000000000005,"clr":0,"A":"left","R":[{"T":"Telephone%20no.","S":-1,"TS":[0,10.975999999999999,0,0]}]},{"x":50.625,"y":8.671,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":71.078,"y":9.005,"w":27.996000000000002,"clr":0,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,15,0,0]}]},{"x":75.89,"y":9.005,"w":43.356,"clr":0,"A":"left","R":[{"T":"%201099-G","S":-1,"TS":[0,16,1,0]}]},{"x":4.62,"y":9.755,"w":136.94400000000005,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20federal%20identification%20number","S":-1,"TS":[0,10.704,0,0]}]},{"x":28.109,"y":9.755,"w":125.81600000000005,"clr":0,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20identification%20number","S":-1,"TS":[0,11,0,0]}]},{"x":50.625,"y":9.796,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":52.688,"y":9.796,"w":99.60000000000001,"clr":0,"A":"left","R":[{"T":"Box%202%20amount%20is%20for%20tax%20year","S":-1,"TS":[0,11,0,0]}]},{"x":71.25,"y":9.796,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":72.969,"y":9.755,"w":81.672,"clr":0,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld","S":-1,"TS":[1,10.736,0,0]}]},{"x":92.047,"y":9.671,"w":35,"clr":0,"A":"left","R":[{"T":"Copy%20B","S":10,"TS":[0,14,1,0]}]},{"x":71.25,"y":10.359,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":91.016,"y":10.421,"w":57.51000000000001,"clr":0,"A":"left","R":[{"T":"For%20Recipient","S":-1,"TS":[0,11.919,1,0]}]},{"x":5.078,"y":11.255,"w":72.01600000000002,"clr":0,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20name","S":-1,"TS":[0,11,0,0]}]},{"x":50.625,"y":11.296,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"x":52.688,"y":11.296,"w":57.80000000000001,"clr":0,"A":"left","R":[{"T":"ATAA%20payments","S":-1,"TS":[0,11,0,0]}]},{"x":71.25,"y":11.296,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"x":73.312,"y":11.296,"w":79.592,"clr":0,"A":"left","R":[{"T":"Taxable%20energy%20grants","S":-1,"TS":[0,10.936,0,0]}]},{"x":88.094,"y":12.046,"w":71.57600000000002,"clr":0,"A":"left","R":[{"T":"This%20is%20important%20tax","S":-1,"TS":[0,11,0,0]}]},{"x":90.156,"y":12.796,"w":63.136,"clr":0,"A":"left","R":[{"T":"information%20and%20is","S":-1,"TS":[0,10.856,0,0]}]},{"x":50.625,"y":13.38,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":71.078,"y":13.421,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":88.094,"y":13.546,"w":76.93600000000004,"clr":0,"A":"left","R":[{"T":"being%20furnished%20to%20the","S":-1,"TS":[0,10.687999999999999,0,0]}]},{"x":4.964,"y":14.213,"w":120.05600000000004,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":50.625,"y":14.296,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":52.688,"y":14.296,"w":76.91200000000002,"clr":0,"A":"left","R":[{"T":"Agricultural%20payments","S":-1,"TS":[0,11,0,0]}]},{"x":71.422,"y":14.296,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"x":74.172,"y":14.88,"w":61.36000000000001,"clr":0,"A":"left","R":[{"T":"trade%20or%20business","S":-1,"TS":[0,11,0,0]}]},{"x":87.062,"y":14.859,"w":82.704,"clr":0,"A":"left","R":[{"T":"required%20to%20file%20a%20return.","S":-1,"TS":[0,10.736,0,0]}]},{"x":32.063,"y":15.629000000000001,"w":50.248000000000005,"clr":0,"A":"left","R":[{"T":"Apartment%20no.","S":-1,"TS":[0,11,0,0]}]},{"x":50.625,"y":15.671,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":74.172,"y":15.629000000000001,"w":25.784,"clr":0,"A":"left","R":[{"T":"income","S":-1,"TS":[0,11,0,0]}]},{"x":82.078,"y":15.796,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":87.062,"y":15.609000000000002,"w":82.712,"clr":0,"A":"left","R":[{"T":"a%20negligence%20penalty%20or","S":-1,"TS":[0,10.736,0,0]}]},{"x":5.078,"y":16.463,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":50.625,"y":16.546,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"x":52.688,"y":16.546,"w":41.792,"clr":0,"A":"left","R":[{"T":"Market%20gain","S":-1,"TS":[0,11,0,0]}]},{"x":87.063,"y":16.359,"w":78.70400000000001,"clr":0,"A":"left","R":[{"T":"other%20sanction%20may%20be","S":-1,"TS":[0,11,0,0]}]},{"x":87.063,"y":17.109,"w":77.36800000000001,"clr":0,"A":"left","R":[{"T":"imposed%20on%20you%20if%20this","S":-1,"TS":[0,11,0,0]}]},{"x":50.625,"y":17.921,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":87.063,"y":17.859,"w":77.36800000000002,"clr":0,"A":"left","R":[{"T":"income%20is%20taxable%20and","S":-1,"TS":[0,11,0,0]}]},{"x":4.963,"y":18.754,"w":121.37600000000005,"clr":0,"A":"left","R":[{"T":"Account%20number%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":18.796,"w":15.012,"clr":0,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"x":53.375,"y":18.796,"w":15.32,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[1,11,0,0]}]},{"x":56.641,"y":18.796,"w":15.507000000000001,"clr":0,"A":"left","R":[{"T":"10b","S":9,"TS":[0,12,1,0]}]},{"x":59.563,"y":18.796,"w":64.55200000000002,"clr":0,"A":"left","R":[{"T":"State%20identification%20no.","S":-1,"TS":[1,11,0,0]}]},{"x":71.25,"y":18.796,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"x":73.313,"y":18.796,"w":74.752,"clr":0,"A":"left","R":[{"T":"State%20income%20tax%20withheld","S":-1,"TS":[1,11,0,0]}]},{"x":87.063,"y":18.609,"w":84.04000000000003,"clr":0,"A":"left","R":[{"T":"the%20IRS%20determines%20that","S":-1,"TS":[0,10.608,0,0]}]},{"x":91.016,"y":19.359,"w":52.480000000000004,"clr":0,"A":"left","R":[{"T":"it%20has%20not%20been","S":-1,"TS":[0,11,0,0]}]},{"x":95.141,"y":20.109,"w":32.016000000000005,"clr":0,"A":"left","R":[{"T":"reported.","S":-1,"TS":[0,11,0,0]}]},{"x":4.219,"y":21.046,"w":23.499,"clr":0,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"x":8.258,"y":21.046,"w":40.019999999999996,"clr":0,"A":"left","R":[{"T":"1099-G","S":-1,"TS":[0,16,1,0]}]},{"x":41.172,"y":21.046,"w":91.02600000000001,"clr":0,"A":"left","R":[{"T":"(keep%20for%20your%20records)","S":3,"TS":[0,12,0,0]}]},{"x":62.141,"y":21.046,"w":219.0869999999999,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20-%20Internal%20Revenue%20Service","S":3,"TS":[0,12,0,0]}]},{"x":34.984,"y":7.545999999999999,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":7.545999999999999,"w":44.912000000000006,"clr":0,"A":"left","R":[{"T":"%20%20%20%20%20ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":34.813,"y":16.546,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":39.797,"y":16.546,"w":40.464000000000006,"clr":0,"A":"left","R":[{"T":"%20%20%20ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":4.62,"y":3.458,"w":50.232,"clr":0,"A":"left","R":[{"T":"Payer%E2%80%99s%20Name","S":-1,"TS":[0,11,0,0]}]},{"x":4.734,"y":2.792,"w":92.456,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20INFORMATION","S":-1,"TS":[0,11,0,0]}]},{"x":4.734,"y":4.775,"w":120.05600000000004,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":4.734,"y":6.067,"w":73.36800000000002,"clr":0,"A":"left","R":[{"T":"Street%20address%20line%202","S":-1,"TS":[0,11,0,0]}]},{"x":74.172,"y":14.13,"w":58.687999999999995,"clr":0,"A":"left","R":[{"T":"Check%20if%20box%202%20is","S":-1,"TS":[0,11,0,0]}]},{"x":89.125,"y":14.296,"w":64.47200000000001,"clr":0,"A":"left","R":[{"T":"Service.%20If%20you%20are","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME","EN":0},"TI":659,"AM":0,"x":5.274,"y":4.286,"w":43.846,"h":0.833,"TU":"Payer's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":660,"AM":0,"x":5.274,"y":5.678,"w":43.846,"h":0.833,"TU":"Payer's Street Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD2","EN":0},"TI":661,"AM":0,"x":5.254,"y":7.007,"w":43.845,"h":0.833,"TU":"Payer's Street Address (line 2)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":662,"AM":0,"x":5.227,"y":8.398,"w":29.626,"h":0.833,"TU":"Payer's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STP","EN":0},"TI":663,"AM":0,"x":35.193,"y":8.408,"w":4.706,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":664,"AM":0,"x":40.596,"y":8.393,"w":8.505,"h":0.833,"TU":"Payer's ZIP Code"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PPH","EN":0},"TI":665,"AM":0,"x":14.767,"y":9.136,"w":34.358,"h":0.833,"TU":"Payer's Telephone No."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PYID","EN":0},"TI":666,"AM":0,"x":5.534,"y":10.582,"w":22.138,"h":0.833,"TU":"Payer's Federal Identification Number","MV":"99-9999999"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":667,"AM":0,"x":29.279,"y":10.569,"w":20.248,"h":0.833,"TU":"Recipient's Identification Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RNAM","EN":0},"TI":668,"AM":0,"x":5.227,"y":13.325,"w":43.918,"h":0.833,"TU":"Recipient's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RADD","EN":0},"TI":669,"AM":0,"x":5.211,"y":15.639,"w":26.367,"h":0.833,"TU":"Recipient's Street Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RAPT","EN":0},"TI":670,"AM":0,"x":41.89,"y":15.661,"w":7.272,"h":0.833,"TU":"Recipient's Apartment No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCTY","EN":0},"TI":671,"AM":0,"x":5.266,"y":17.91,"w":29.22,"h":0.833,"TU":"Recipient's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST2","EN":0},"TI":672,"AM":0,"x":34.893,"y":17.907,"w":4.816,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"ZIP2","EN":0},"TI":673,"AM":0,"x":40.573,"y":17.909,"w":8.884,"h":0.833,"TU":"Recipient's ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ACCT","EN":0},"TI":674,"AM":0,"x":5.228,"y":19.931,"w":43.916,"h":0.833,"TU":"Recipient's Account Number (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":675,"AM":0,"x":51.991,"y":4.082,"w":18.461,"h":0.833,"TU":"Unemployment Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":676,"AM":0,"x":51.991,"y":8.762,"w":18.461,"h":0.833,"TU":"State or Local Income Tax Refunds, Credits, or Offsets"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TXYR","EN":0},"TI":677,"AM":0,"x":51.349,"y":10.513,"w":19.128,"h":0.833,"TU":"Box 2 Amount is for Tax Year","MV":"yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":678,"AM":0,"x":73.042,"y":10.521,"w":13.68,"h":0.833,"TU":"Federal Income Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ATTAPMT","EN":0},"TI":679,"AM":0,"x":51.954,"y":13.401,"w":18.572,"h":0.833,"TU":"ATAA Payments"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":680,"AM":0,"x":72.723,"y":13.438,"w":13.68,"h":0.833,"TU":"Taxable Energy Grants"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":681,"AM":0,"x":52.125,"y":15.666,"w":18.572,"h":0.833,"TU":"Agricultural Payments"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MRKTGN","EN":0},"TI":683,"AM":0,"x":52.089,"y":17.918,"w":18.572,"h":0.833,"TU":"Market Gain"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":684,"AM":0,"x":50.318,"y":19.923,"w":4.816,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"PYSID","EN":0},"TI":685,"AM":0,"x":56.814,"y":19.94,"w":13.36,"h":0.833,"TU":"State Identification No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STWHD","EN":0},"TI":686,"AM":0,"x":71.785,"y":19.94,"w":14.534,"h":0.833,"TU":"State Income Tax Withheld"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COR","EN":0},"TI":658,"AM":0,"x":40.502,"y":2.228,"w":2.389,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BUSREF","EN":0},"TI":682,"AM":0,"x":84.012,"y":15.672,"w":2.757,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/F1099I.content.txt b/test/data/ef/form/F1099I.content.txt new file mode 100755 index 00000000..6ce02db9 --- /dev/null +++ b/test/data/ef/form/F1099I.content.txt @@ -0,0 +1,79 @@ +Form +1099-INT +20 +13 +Interest Income +Copy B +For Recipient +Department of the Treasury - Internal Revenue Service +This is important tax +information and is +being furnished to the +Internal Revenue +Service. If you are +required to file a +return, a negligence +penalty or other +sanction may be + imposed on you if +this income is +taxable and the IRS +determines that it has +not been reported. +OMB No. 1545-0112 +CORRECTED (if checked) +PAYER’S federal identification number +RECIPIENT’S identification number +RECIPIENT’S name +Street address (including apt. no.) +City or town, province or state, country, and ZIP or foreign postal code +Account number (see instructions) +Payer's RTN (optional) +1 +Interest income +$ +2 +Early withdrawal penalty +$ +3 +Interest on U.S. Savings Bonds and Treas. obligations +$ +4 +Federal income tax withheld +$ +5 +Investment expenses +$ +6 +Foreign tax paid +$ +7 +Foreign country or U.S. possession +8 +Tax-exempt interest +$ +9 +Specified private activity bond +interest +$ +10 +Tax-exempt bond CUSIP no. +11 +State +12 +State identification no. +13 +State tax withheld +$ +$ +Form +1099-INT +(keep for your records) +www.irs.gov/form1099int +City +State ZIP Code +Payer’s Name +Street address (including apt. no.) +Telephone no. +PAYER’S INFORMATION +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/F1099I.fields.json b/test/data/ef/form/F1099I.fields.json new file mode 100755 index 00000000..afc4eea6 --- /dev/null +++ b/test/data/ef/form/F1099I.fields.json @@ -0,0 +1 @@ +[{"id":"PNA1","type":"alpha","calc":false,"value":""},{"id":"ADD1","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STP","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"PPH","type":"phone","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"RADD","type":"alpha","calc":false,"value":""},{"id":"RCITY","type":"alpha","calc":false,"value":""},{"id":"STP2","type":"alpha","calc":false,"value":""},{"id":"ZIP2","type":"zip","calc":false,"value":""},{"id":"ACCT","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"TAX","type":"number","calc":false,"value":""},{"id":"CTRY","type":"number","calc":false,"value":""},{"id":"EXINT","type":"number","calc":false,"value":""},{"id":"INTP","type":"number","calc":false,"value":""},{"id":"CUSIP","type":"alpha","calc":false,"value":""},{"id":"ST2","type":"alpha","calc":false,"value":""},{"id":"STATEID","type":"alpha","calc":false,"value":""},{"id":"STWH","type":"number","calc":false,"value":""},{"id":"STAT2","type":"alpha","calc":false,"value":""},{"id":"STATEID2","type":"alpha","calc":false,"value":""},{"id":"STWH2","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/F1099I.json b/test/data/ef/form/F1099I.json new file mode 100755 index 00000000..f00f76df --- /dev/null +++ b/test/data/ef/form/F1099I.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1099-INT","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":67.998,"y":6.75,"w":1.125,"l":12.482},{"oc":"#221f1f","x":80.351,"y":6.75,"w":1.125,"l":18.691},{"oc":"#221f1f","x":85.323,"y":20.25,"w":1.125,"l":13.72},{"oc":"#221f1f","x":67.998,"y":2.25,"w":1.5,"l":12.482},{"oc":"#221f1f","x":8.577,"y":2.25,"w":1.5,"l":42.225},{"oc":"#221f1f","x":8.577,"y":8.25,"w":1.125,"l":42.225},{"oc":"#221f1f","x":8.577,"y":11.25,"w":1.125,"l":21.188},{"oc":"#221f1f","x":29.636,"y":11.25,"w":1.125,"l":21.166},{"oc":"#221f1f","x":8.577,"y":18,"w":1.125,"l":42.225},{"oc":"#221f1f","x":8.577,"y":20.25,"w":1.125,"l":42.204},{"oc":"#221f1f","x":8.577,"y":22.5,"w":1.5,"l":42.225},{"oc":"#221f1f","x":50.673,"y":2.25,"w":1.5,"l":17.454},{"oc":"#221f1f","x":50.673,"y":4.5,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":6.75,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":9,"w":1.125,"l":34.791},{"oc":"#221f1f","x":50.673,"y":11.25,"w":1.125,"l":34.791},{"oc":"#221f1f","x":50.566,"y":11.25,"w":3,"l":17.669},{"oc":"#221f1f","x":50.566,"y":14.25,"w":3,"l":17.669},{"oc":"#221f1f","x":67.998,"y":14.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":17.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.998,"y":17.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":20.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":67.998,"y":20.25,"w":1.125,"l":17.454},{"oc":"#221f1f","x":50.673,"y":22.5,"w":1.5,"l":17.454},{"dsh":1,"oc":"#221f1f","x":67.998,"y":21.75,"w":0.75,"l":5.057},{"oc":"#221f1f","x":67.998,"y":22.5,"w":1.5,"l":5.079},{"dsh":1,"oc":"#221f1f","x":72.929,"y":21.75,"w":0.75,"l":12.502},{"oc":"#221f1f","x":72.929,"y":22.5,"w":1.5,"l":12.523},{"dsh":1,"oc":"#221f1f","x":85.323,"y":21.75,"w":0.75,"l":13.72},{"dsh":1,"oc":"#221f1f","x":85.323,"y":21.75,"w":0.75,"l":13.741},{"oc":"#221f1f","x":85.323,"y":22.5,"w":1.5,"l":13.741}],"VLines":[{"oc":"#221f1f","x":68.063,"y":5.984,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":2.984,"w":1.125,"l":3.031},{"oc":"#221f1f","x":80.437,"y":2.234,"w":1.5,"l":4.539},{"oc":"#221f1f","x":85.387,"y":6.734,"w":1.125,"l":1.531},{"oc":"#221f1f","x":85.387,"y":8.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":85.387,"y":9.734,"w":1.125,"l":10.539},{"oc":"#221f1f","x":68.063,"y":2.219,"w":1.125,"l":0.797},{"oc":"#221f1f","x":8.663,"y":2.219,"w":1.5,"l":6.055},{"oc":"#221f1f","x":8.663,"y":8.219,"w":1.5,"l":3.055},{"oc":"#221f1f","x":29.7,"y":8.219,"w":1.125,"l":3.055},{"oc":"#221f1f","x":8.663,"y":11.219,"w":1.5,"l":2.305},{"oc":"#221f1f","x":8.663,"y":13.469,"w":1.5,"l":2.305},{"oc":"#221f1f","x":8.663,"y":15.719,"w":1.5,"l":2.305},{"oc":"#221f1f","x":8.663,"y":17.984,"w":1.5,"l":2.289},{"oc":"#221f1f","x":8.663,"y":20.219,"w":1.5,"l":2.312},{"oc":"#221f1f","x":50.738,"y":2.219,"w":1.125,"l":2.305},{"oc":"#221f1f","x":50.738,"y":4.484,"w":1.125,"l":1.531},{"oc":"#221f1f","x":50.738,"y":5.984,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":6.734,"w":1.125,"l":1.531},{"oc":"#221f1f","x":50.738,"y":8.234,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":8.984,"w":1.125,"l":1.531},{"oc":"#221f1f","x":50.738,"y":10.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":11.187,"w":3,"l":2.328},{"oc":"#221f1f","x":50.738,"y":11.187,"w":3,"l":2.328},{"oc":"#221f1f","x":68.063,"y":13.484,"w":3,"l":0.828},{"oc":"#221f1f","x":50.738,"y":13.484,"w":3,"l":0.828},{"oc":"#221f1f","x":68.063,"y":11.234,"w":1.125,"l":2.281},{"oc":"#221f1f","x":68.063,"y":13.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":14.234,"w":1.125,"l":2.281},{"oc":"#221f1f","x":50.738,"y":16.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":14.234,"w":1.125,"l":3.039},{"oc":"#221f1f","x":50.738,"y":17.234,"w":1.125,"l":2.281},{"oc":"#221f1f","x":50.738,"y":19.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":68.063,"y":17.234,"w":1.125,"l":2.281},{"oc":"#221f1f","x":68.063,"y":19.484,"w":1.125,"l":0.789},{"oc":"#221f1f","x":50.738,"y":20.234,"w":1.125,"l":2.297},{"oc":"#221f1f","x":68.063,"y":20.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":68.063,"y":21.734,"w":1.125,"l":0.797},{"oc":"#221f1f","x":72.993,"y":20.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":72.993,"y":21.734,"w":1.125,"l":0.797},{"oc":"#221f1f","x":85.387,"y":20.234,"w":1.125,"l":1.531},{"oc":"#221f1f","x":85.387,"y":20.984,"w":1.125,"l":0.781},{"oc":"#221f1f","x":85.387,"y":21.734,"w":1.125,"l":0.797}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":8.663,"y":18,"w":42.075,"h":2.25,"clr":-1},{"x":8.649,"y":2.848,"w":42.128,"h":0.037,"clr":0},{"x":8.649,"y":7.442,"w":42.128,"h":0.037,"clr":0},{"x":8.649,"y":6.348,"w":42.128,"h":0.037,"clr":0},{"x":8.649,"y":3.88,"w":42.128,"h":0.037,"clr":0},{"x":0,"y":48.155,"w":4.272,"h":1.345,"clr":0}],"Texts":[{"oc":"#221f1f","x":68.752,"y":5.759,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":71.895,"y":5.759,"w":4.2780000000000005,"clr":-1,"A":"left","R":[{"T":"1099-INT","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":69.531,"y":4.017,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,22.9998,0,0]}]},{"oc":"#221f1f","x":73.876,"y":4.017,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,22.9998,0,0]}]},{"oc":"#221f1f","x":80.711,"y":3.9370000000000003,"w":7.496999999999999,"clr":-1,"A":"left","R":[{"T":"Interest%20Income","S":-1,"TS":[0,16.9999,0,0]}]},{"oc":"#221f1f","x":92.796,"y":6.889,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Copy%20B","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":88.87,"y":8.395,"w":6.387,"clr":-1,"A":"left","R":[{"T":"For%20Recipient","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":69.514,"y":22.375,"w":24.299999999999994,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20-%20Internal%20Revenue%20Service","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":86.271,"y":10.719,"w":9.354000000000003,"clr":-1,"A":"left","R":[{"T":"This%20is%20important%20tax%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":87.747,"y":11.282,"w":8.280000000000003,"clr":-1,"A":"left","R":[{"T":"information%20and%20is%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":85.327,"y":11.844,"w":10.040000000000003,"clr":-1,"A":"left","R":[{"T":"being%20furnished%20to%20the%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":88.436,"y":12.407,"w":7.779,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":87.725,"y":12.969,"w":8.296,"clr":-1,"A":"left","R":[{"T":"Service.%20If%20you%20are%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":88.794,"y":13.532,"w":7.519000000000002,"clr":-1,"A":"left","R":[{"T":"required%20to%20file%20a%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":86.577,"y":14.094,"w":9.131000000000002,"clr":-1,"A":"left","R":[{"T":"return%2C%20a%20negligence%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":89.073,"y":14.657,"w":7.316000000000001,"clr":-1,"A":"left","R":[{"T":"penalty%20or%20other%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":88.612,"y":15.219,"w":7.650999999999998,"clr":-1,"A":"left","R":[{"T":"sanction%20may%20be%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":87.39,"y":15.782,"w":8.540000000000001,"clr":-1,"A":"left","R":[{"T":"%20imposed%20on%20you%20if%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":90.294,"y":16.344,"w":6.427999999999999,"clr":-1,"A":"left","R":[{"T":"this%20income%20is%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":86.679,"y":16.907,"w":9.057,"clr":-1,"A":"left","R":[{"T":"taxable%20and%20the%20IRS%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":85.454,"y":17.469,"w":9.948000000000004,"clr":-1,"A":"left","R":[{"T":"determines%20that%20it%20has%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":87.314,"y":18.032,"w":8.317000000000002,"clr":-1,"A":"left","R":[{"T":"not%20been%20reported.","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":68.416,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0112","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":44.521,"y":1.259,"w":11.482000000000005,"clr":-1,"A":"left","R":[{"T":"CORRECTED%20(if%20checked)","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":9.1,"y":8,"w":17.186999999999998,"clr":-1,"A":"left","R":[{"T":"PAYER%E2%80%99S%20federal%20identification%20number","S":-1,"TS":[0,9.7899,0,0]}]},{"oc":"#221f1f","x":30.138,"y":8,"w":15.705,"clr":-1,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20identification%20number","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.1,"y":11,"w":8.778,"clr":-1,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20name","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.1,"y":13.25,"w":15.077000000000002,"clr":-1,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.1,"y":15.5,"w":31.558000000000003,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20province%20or%20state%2C%20country%2C%20and%20ZIP%20or%20foreign%20postal%20code","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.1,"y":20,"w":15.263000000000005,"clr":-1,"A":"left","R":[{"T":"Account%20number%20(see%20instructions)","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":51.519,"y":2,"w":9.981000000000002,"clr":-1,"A":"left","R":[{"T":"Payer's%20RTN%20(optional)","S":-1,"TS":[0,9.7899,0,0]}]},{"oc":"#221f1f","x":51.519,"y":4.25,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":52.522,"y":4.25,"w":6.909,"clr":-1,"A":"left","R":[{"T":"Interest%20income","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":50.77,"y":5.821,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":51.519,"y":6.5,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":52.522,"y":6.5,"w":10.850000000000003,"clr":-1,"A":"left","R":[{"T":"Early%20withdrawal%20penalty","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":50.77,"y":8.071,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":51.519,"y":8.75,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":52.522,"y":8.75,"w":24.13300000000001,"clr":-1,"A":"left","R":[{"T":"Interest%20on%20U.S.%20Savings%20Bonds%20and%20Treas.%20obligations","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":50.77,"y":10.321,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":51.519,"y":11,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":52.522,"y":11,"w":12.575000000000003,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld","S":-1,"TS":[0,9.9299,0,0]}]},{"oc":"#221f1f","x":50.77,"y":13.321,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":68.5,"y":11,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":69.503,"y":11,"w":9.484,"clr":-1,"A":"left","R":[{"T":"Investment%20expenses","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":68.094,"y":13.321,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":51.519,"y":14,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":52.522,"y":14,"w":7.241,"clr":-1,"A":"left","R":[{"T":"Foreign%20tax%20paid","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":50.77,"y":16.321,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":68.5,"y":14,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":69.503,"y":14,"w":15.742,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20or%20U.S.%20possession","S":-1,"TS":[0,8.6,0,0]}]},{"oc":"#221f1f","x":51.519,"y":17,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":52.522,"y":17,"w":8.964000000000002,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20interest","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":50.77,"y":19.321,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":68.5,"y":17,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":69.826,"y":17,"w":13.798,"clr":-1,"A":"left","R":[{"T":"Specified%20private%20activity%20bond%20","S":-1,"TS":[0,9.5099,0,0]}]},{"oc":"#221f1f","x":69.875,"y":17.5,"w":3.315,"clr":-1,"A":"left","R":[{"T":"interest","S":-1,"TS":[0,9.5099,0,0]}]},{"oc":"#221f1f","x":68.094,"y":19.321,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":50.831,"y":20,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":52.504,"y":20,"w":12.928,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20bond%20CUSIP%20no.","S":-1,"TS":[0,9.719899999999999,0,0]}]},{"oc":"#221f1f","x":68.5,"y":20,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":70.172,"y":20,"w":2.352,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,8.74,0,0]}]},{"oc":"#221f1f","x":73.431,"y":20,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":75.103,"y":20,"w":10.020000000000003,"clr":-1,"A":"left","R":[{"T":"State%20identification%20no.","S":-1,"TS":[0,8.74,0,0]}]},{"oc":"#221f1f","x":85.825,"y":20,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":87.497,"y":20,"w":8.037000000000003,"clr":-1,"A":"left","R":[{"T":"State%20tax%20withheld","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":85.419,"y":20.821,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":85.419,"y":21.571,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":8.413,"y":22.321,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":11.555,"y":22.321,"w":4.2780000000000005,"clr":-1,"A":"left","R":[{"T":"1099-INT","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":25.962,"y":22.339,"w":10.111,"clr":-1,"A":"left","R":[{"T":"(keep%20for%20your%20records)","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":51.152,"y":22.375,"w":11.239000000000003,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform1099int","S":-1,"TS":[0,9.9999,0,0]}]},{"x":8.773,"y":6.046,"w":10.332,"clr":0,"A":"left","R":[{"T":"City","S":51,"TS":[0,9,0,0]}]},{"x":38.766,"y":6.046,"w":14.01,"clr":0,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"x":41.73,"y":6.046,"w":33.684,"clr":0,"A":"left","R":[{"T":"%20%20%20%20%20ZIP%20Code","S":51,"TS":[0,9,0,0]}]},{"x":8.745,"y":2.552,"w":37.67399999999999,"clr":0,"A":"left","R":[{"T":"Payer%E2%80%99s%20Name","S":51,"TS":[0,9,0,0]}]},{"x":8.773,"y":3.6189999999999998,"w":90.04200000000002,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":51,"TS":[0,9,0,0]}]},{"x":8.668,"y":7.2940000000000005,"w":38.35799999999999,"clr":0,"A":"left","R":[{"T":"Telephone%20no.","S":-1,"TS":[0,8.982,0,0]}]},{"x":8.688,"y":1.948,"w":69.34199999999998,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20INFORMATION","S":51,"TS":[0,9,0,0]}]},{"x":0.09399999999999997,"y":48.356,"w":16.008,"clr":0,"A":"left","R":[{"T":"AK","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNA1","EN":0},"TI":687,"AM":0,"x":8.807,"y":3.312,"w":41.753,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":688,"AM":0,"x":8.828,"y":5.754,"w":41.786,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":689,"AM":0,"x":8.807,"y":6.943,"w":28.351,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STP","EN":0},"TI":690,"AM":0,"x":37.499,"y":6.944,"w":3.7720000000000002,"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":691,"AM":0,"x":42.1,"y":6.968,"w":8.43,"h":0.833,"TU":"Payer's ZIP Code"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PPH","EN":0},"TI":692,"AM":0,"x":15.386,"y":7.616,"w":35.228,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":693,"AM":0,"x":9.222,"y":8.982,"w":20.501,"h":2.245,"MV":"99-9999999"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":694,"AM":0,"x":30.028,"y":8.978,"w":20.576,"h":2.272},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":695,"AM":0,"x":8.74,"y":12.018,"w":41.621,"h":1.612},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RADD","EN":0},"TI":696,"AM":0,"x":8.762,"y":14.168,"w":41.621,"h":1.612},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCITY","EN":0},"TI":697,"AM":0,"x":8.599,"y":16.581,"w":27.947,"h":1.387,"TU":"Recipient's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STP2","EN":0},"TI":698,"AM":0,"x":36.983,"y":16.568,"w":3.7720000000000002,"h":1.345,"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":"ZIP2","EN":0},"TI":699,"AM":0,"x":41.826,"y":16.574,"w":8.884,"h":1.374,"TU":"Recipient's ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ACCT","EN":0},"TI":700,"AM":0,"x":8.91,"y":20.858,"w":41.621,"h":1.612,"TU":"Account number (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":701,"AM":0,"x":52.236,"y":5.528,"w":15.62,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":702,"AM":0,"x":52.084,"y":7.732,"w":33.139,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":703,"AM":0,"x":52.084,"y":9.937,"w":33.139,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":704,"AM":0,"x":52.159,"y":12.932,"w":15.62,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":705,"AM":0,"x":69.433,"y":12.952,"w":15.62,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX","EN":0},"TI":706,"AM":0,"x":52.044,"y":15.993,"w":15.62,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CTRY","EN":0},"TI":707,"AM":0,"x":68.644,"y":15.986,"w":16.294,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXINT","EN":0},"TI":708,"AM":0,"x":52.078,"y":18.974,"w":15.62,"h":1.199},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTP","EN":0},"TI":709,"AM":0,"x":69.427,"y":18.966,"w":15.62,"h":1.199},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSIP","EN":0},"TI":710,"AM":0,"x":51.065,"y":21.273,"w":16.668,"h":1.199},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST2","EN":0},"TI":711,"AM":0,"x":68.674,"y":21.03,"w":3.358,"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":"STATEID","EN":0},"TI":712,"AM":0,"x":73.166,"y":21.044,"w":12.169,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STWH","EN":0},"TI":713,"AM":0,"x":86.477,"y":21.044,"w":12.54,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STAT2","EN":0},"TI":714,"AM":0,"x":68.664,"y":21.78,"w":3.737,"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":"STATEID2","EN":0},"TI":715,"AM":0,"x":73.116,"y":21.788,"w":12.169,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STWH2","EN":0},"TI":716,"AM":0,"x":86.501,"y":21.788,"w":12.54,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/F1099R.content.txt b/test/data/ef/form/F1099R.content.txt new file mode 100755 index 00000000..3ba33536 --- /dev/null +++ b/test/data/ef/form/F1099R.content.txt @@ -0,0 +1,119 @@ +CORRECTED (If checked) +PAYER’S INFORMATION +1 + Gross distribution +OMB No. 1545-0119 +Distributions From +Payer’s Name +$ +Pensions, Annuities, +2a + Taxable amount +2013 +Retirement or +Street address (including apt. no.) +Profit-Sharing Plans, IRAs, +$ +Form +1099-R +Insurance Contracts, etc. +City +State +ZIP code +2b +Taxable amount not +Total +Copy B +determined +distribution + Report this +Payer’s country +3 +Capital gain (included +4 +Federal income tax + income on your + in box 2a) + withheld + federal tax +$ +$ +return. If this +PAYER’S federal identification +RECIPIENT’S identification +5 +Employee contributions +6 +Net unrealized +form shows +number +number +/Designated Roth appreciation in +federal income +contributions or +employer’s securities +tax withheld in +RECIPIENT’S name +insurance premiums +box 4, attach +$ +$ + this copy to +Street address (including apt. no.) +7 +Distribution +IRA/ +8 +Other + your return. +This information is +City +State ZIP code +SIMPLE +being furnished to +$ +% +the Internal +Recipient’s country +9a +Your percentage of total +9b +Total employee contributions +Revenue Service. +distribution +% +$ +10 +Amount allocable to IRR +11 +1st year of desig. Roth contrib. +12 +State tax withheld +13 +State/ Payer’s state no. +14 +State distribution +within 5 years +$ +/ +$ +$ +$ +/ +$ +Account number (see instructions) +15 +Local tax withheld +16 +Name of locality +17 +Local distribution +$ +$ +$ +$ +Form +1099-R +Department of the Treasury - Internal Revenue Service +code(s) SEP/ +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/F1099R.fields.json b/test/data/ef/form/F1099R.fields.json new file mode 100755 index 00000000..4052288c --- /dev/null +++ b/test/data/ef/form/F1099R.fields.json @@ -0,0 +1 @@ +[{"id":"CMX","type":"box","calc":false,"value":""},{"id":"L2B","type":"box","calc":false,"value":""},{"id":"TOTAL","type":"box","calc":false,"value":""},{"id":"IRA","type":"box","calc":false,"value":""},{"id":"PNAM1","type":"alpha","calc":false,"value":""},{"id":"PADD","type":"alpha","calc":false,"value":""},{"id":"PCTY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"PCOUNTRY","type":"alpha","calc":false,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"RID","type":"ssn","calc":false,"value":""},{"id":"RNAM","type":"alpha","calc":false,"value":""},{"id":"RADD","type":"alpha","calc":false,"value":""},{"id":"RCTY","type":"alpha","calc":false,"value":""},{"id":"RST","type":"alpha","calc":false,"value":""},{"id":"RZIP","type":"zip","calc":false,"value":""},{"id":"RCOUNTRY","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7A","type":"alpha","calc":false,"value":""},{"id":"L7B","type":"alpha","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L9A","type":"number","calc":false,"value":""},{"id":"L9B","type":"number","calc":false,"value":""},{"id":"ACCIRR","type":"number","calc":false,"value":""},{"id":"DESROTH","type":"date","calc":false,"value":""},{"id":"L10A","type":"number","calc":false,"value":""},{"id":"L11A","type":"alpha","calc":false,"value":""},{"id":"L11AID","type":"alpha","calc":false,"value":""},{"id":"L12A","type":"number","calc":false,"value":""},{"id":"L10B","type":"number","calc":false,"value":""},{"id":"L11B","type":"alpha","calc":false,"value":""},{"id":"L11BID","type":"alpha","calc":false,"value":""},{"id":"L12B","type":"number","calc":false,"value":""},{"id":"ACCT","type":"alpha","calc":false,"value":""},{"id":"L13A","type":"number","calc":false,"value":""},{"id":"L14A","type":"alpha","calc":false,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"L13B","type":"number","calc":false,"value":""},{"id":"L14B","type":"alpha","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/F1099R.json b/test/data/ef/form/F1099R.json new file mode 100755 index 00000000..227b8fdd --- /dev/null +++ b/test/data/ef/form/F1099R.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","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":80.953,"y":3,"w":0.103,"h":3.788,"clr":0},{"x":51.047,"y":6.75,"w":0.103,"h":16.538,"clr":0},{"x":68.063,"y":10.5,"w":0.103,"h":12.788,"clr":0},{"x":63.078,"y":14.25,"w":0.103,"h":3.038,"clr":0},{"x":88,"y":6.75,"w":0.103,"h":16.538,"clr":0},{"x":36.953,"y":6.75,"w":0.103,"h":1.538,"clr":0},{"x":29.047,"y":6.75,"w":0.103,"h":6.038,"clr":0},{"x":81.984,"y":14.25,"w":0.103,"h":3.038,"clr":0},{"x":36.953,"y":15.75,"w":0.103,"h":1.538,"clr":0},{"x":4.125,"y":3,"w":47.025,"h":0.037,"clr":0},{"x":4.984,"y":3.75,"w":46.166,"h":0.037,"clr":0},{"x":51.047,"y":4.5,"w":17.119,"h":0.037,"clr":0},{"x":4.125,"y":6.75,"w":47.025,"h":0.037,"clr":0},{"x":68.063,"y":6.75,"w":33.103,"h":0.037,"clr":0},{"x":4.984,"y":8.25,"w":63.181,"h":0.037,"clr":0},{"x":4.125,"y":10.5,"w":47.025,"h":0.037,"clr":0},{"x":44,"y":10.5,"w":24.166,"h":0.037,"clr":0},{"x":4.984,"y":12.75,"w":46.166,"h":0.037,"clr":0},{"x":4.125,"y":14.25,"w":83.978,"h":0.037,"clr":0},{"x":4.125,"y":17.25,"w":83.978,"h":0.038,"clr":0},{"x":4.125,"y":18.75,"w":97.041,"h":0.038,"clr":0},{"x":4.125,"y":21,"w":97.041,"h":0.038,"clr":0},{"x":4.125,"y":23.25,"w":97.041,"h":0.038,"clr":0},{"x":4.984,"y":15.75,"w":46.166,"h":0.037,"clr":0},{"x":4.984,"y":9.75,"w":24.166,"h":0.037,"clr":0},{"x":4.125,"y":5.25,"w":47.025,"h":0.037,"clr":0},{"x":68.063,"y":3,"w":12.994,"h":0.037,"clr":0},{"x":57.922,"y":16.5,"w":0.103,"h":0.788,"clr":0},{"x":29.047,"y":15.75,"w":0.103,"h":5.288,"clr":0},{"x":4.125,"y":3,"w":0.103,"h":20.288,"clr":0},{"x":88,"y":8.25,"w":0.344,"h":2.375,"clr":0},{"x":68.063,"y":8.25,"w":0.344,"h":2.375,"clr":0},{"x":68.063,"y":10.5,"w":20.281,"h":0.125,"clr":0},{"x":68.063,"y":8.25,"w":20.281,"h":0.125,"clr":0},{"x":51.047,"y":6.75,"w":17.359,"h":0.125,"clr":0},{"x":51.047,"y":3,"w":17.359,"h":0.125,"clr":0},{"x":68.063,"y":3,"w":0.344,"h":3.875,"clr":0},{"x":51.047,"y":3,"w":0.344,"h":3.875,"clr":0},{"x":51.261,"y":20.184,"w":49.846,"h":0.037,"clr":0},{"x":51.261,"y":22.497,"w":49.846,"h":0.037,"clr":0}],"Texts":[{"x":35.156,"y":2.125,"w":106.51500000000001,"clr":0,"A":"left","R":[{"T":"CORRECTED%20(If%20checked)","S":3,"TS":[0,12,0,0]}]},{"x":5.078,"y":2.875,"w":92.456,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20INFORMATION","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":2.875,"w":4.448,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,1,0]}]},{"x":52.421,"y":2.875,"w":64.464,"clr":0,"A":"left","R":[{"T":"%20Gross%20distribution","S":-1,"TS":[0,11,0,0]}]},{"x":68.672,"y":2.875,"w":73.36800000000002,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0119","S":-1,"TS":[0,10.952,0,0]}]},{"x":87.063,"y":2.875,"w":80.50500000000001,"clr":0,"A":"left","R":[{"T":"Distributions%20From","S":-1,"TS":[0,11.937,1,0]}]},{"x":5.078,"y":3.625,"w":50.232,"clr":0,"A":"left","R":[{"T":"Payer%E2%80%99s%20Name","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":3.625,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":86.031,"y":3.625,"w":88.524,"clr":0,"A":"left","R":[{"T":"Pensions%2C%20Annuities%2C","S":-1,"TS":[0,11.738999999999999,1,0]}]},{"x":51.656,"y":4.375,"w":8.896,"clr":0,"A":"left","R":[{"T":"2a","S":-1,"TS":[0,11,1,0]}]},{"x":53.185,"y":4.375,"w":59.584,"clr":0,"A":"left","R":[{"T":"%20Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"x":72.109,"y":4.375,"w":31.136,"clr":0,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"x":91.016,"y":4.375,"w":58.50900000000001,"clr":0,"A":"left","R":[{"T":"Retirement%20or","S":-1,"TS":[0,11.766,1,0]}]},{"x":5.078,"y":5.067,"w":120.05600000000004,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":82.078,"y":5.254,"w":114.525,"clr":0,"A":"left","R":[{"T":"Profit-Sharing%20Plans%2C%20IRAs%2C","S":-1,"TS":[0,11.559,1,0]}]},{"x":51.656,"y":5.817,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":69.016,"y":6.004,"w":23.499,"clr":0,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"x":73.055,"y":6.004,"w":39.348,"clr":0,"A":"left","R":[{"T":"1099-R","S":-1,"TS":[0,16,1,0]}]},{"x":83.109,"y":6.004,"w":107.53200000000002,"clr":0,"A":"left","R":[{"T":"Insurance%20Contracts%2C%20etc.","S":-1,"TS":[0,11.613,1,0]}]},{"x":5.078,"y":6.567,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":29.656,"y":6.567,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":37.563,"y":6.567,"w":32.016000000000005,"clr":0,"A":"left","R":[{"T":"ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":6.567,"w":9.336,"clr":0,"A":"left","R":[{"T":"2b","S":-1,"TS":[0,11,1,0]}]},{"x":53.547,"y":6.567,"w":70.70400000000002,"clr":0,"A":"left","R":[{"T":"Taxable%20amount%20not","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":6.567,"w":17.784000000000002,"clr":0,"A":"left","R":[{"T":"Total","S":-1,"TS":[0,11,0,0]}]},{"x":95.313,"y":6.754,"w":31.500000000000004,"clr":0,"A":"left","R":[{"T":"Copy%20B","S":9,"TS":[0,12,1,0]}]},{"x":53.547,"y":7.317,"w":40.016,"clr":0,"A":"left","R":[{"T":"determined","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":7.317,"w":38.68,"clr":0,"A":"left","R":[{"T":"distribution","S":-1,"TS":[0,11,0,0]}]},{"x":92.047,"y":7.504,"w":50.004000000000005,"clr":0,"A":"left","R":[{"T":"%20Report%20this","S":9,"TS":[0,12,1,0]}]},{"x":5.078,"y":8.067,"w":55.128,"clr":0,"A":"left","R":[{"T":"Payer%E2%80%99s%20country","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":8.067,"w":4.448,"clr":0,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,1,0]}]},{"x":53.547,"y":8.067,"w":76.92000000000004,"clr":0,"A":"left","R":[{"T":"Capital%20gain%20(included","S":-1,"TS":[0,11,0,0]}]},{"x":68.672,"y":8.067,"w":4.448,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,1,0]}]},{"x":70.563,"y":8.067,"w":68.024,"clr":0,"A":"left","R":[{"T":"Federal%20income%20tax","S":-1,"TS":[0,11,0,0]}]},{"x":89.125,"y":8.254,"w":69.516,"clr":0,"A":"left","R":[{"T":"%20income%20on%20your","S":-1,"TS":[0,11.802,1,0]}]},{"x":53.547,"y":8.817,"w":37.352000000000004,"clr":0,"A":"left","R":[{"T":"%20in%20box%202a)","S":-1,"TS":[0,11,0,0]}]},{"x":70.563,"y":8.817,"w":31.568,"clr":0,"A":"left","R":[{"T":"%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":92.047,"y":9.004,"w":50.022000000000006,"clr":0,"A":"left","R":[{"T":"%20federal%20tax%20","S":9,"TS":[0,12,1,0]}]},{"x":51.656,"y":9.567,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":68.672,"y":9.567,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":91.016,"y":9.754,"w":57.51000000000001,"clr":0,"A":"left","R":[{"T":"return.%20%20If%20this","S":-1,"TS":[0,11.919,1,0]}]},{"x":5.078,"y":10.317,"w":107.60000000000005,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20federal%20identification","S":-1,"TS":[0,11,0,0]}]},{"x":29.656,"y":10.317,"w":98.69600000000004,"clr":0,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20identification%20","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":10.317,"w":4.448,"clr":0,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11,1,0]}]},{"x":53.547,"y":10.317,"w":83.14400000000003,"clr":0,"A":"left","R":[{"T":"Employee%20contributions","S":-1,"TS":[0,11,0,0]}]},{"x":68.672,"y":10.317,"w":4.448,"clr":0,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,1,0]}]},{"x":70.563,"y":10.317,"w":53.80000000000001,"clr":0,"A":"left","R":[{"T":"Net%20unrealized%20","S":-1,"TS":[0,11,0,0]}]},{"x":92.047,"y":10.504,"w":50.508,"clr":0,"A":"left","R":[{"T":"form%20shows","S":9,"TS":[0,12,1,0]}]},{"x":5.078,"y":10.942,"w":27.120000000000005,"clr":0,"A":"left","R":[{"T":"number","S":-1,"TS":[0,11,0,0]}]},{"x":29.656,"y":10.942,"w":27.120000000000005,"clr":0,"A":"left","R":[{"T":"number","S":-1,"TS":[0,11,0,0]}]},{"x":53.547,"y":11.067,"w":64.032,"clr":0,"A":"left","R":[{"T":"%2FDesignated%20Roth%20","S":-1,"TS":[0,11,0,0]}]},{"x":70.563,"y":11.067,"w":54.24800000000002,"clr":0,"A":"left","R":[{"T":"appreciation%20in%20","S":-1,"TS":[0,11,0,0]}]},{"x":90.156,"y":11.254,"w":63.522000000000006,"clr":0,"A":"left","R":[{"T":"federal%20income","S":-1,"TS":[0,11.783999999999999,1,0]}]},{"x":53.547,"y":11.817,"w":56.912000000000006,"clr":0,"A":"left","R":[{"T":"contributions%20or%20","S":-1,"TS":[0,11,0,0]}]},{"x":70.563,"y":11.817,"w":74.68,"clr":0,"A":"left","R":[{"T":"employer%E2%80%99s%20securities","S":-1,"TS":[0,11,0,0]}]},{"x":90.156,"y":12.004,"w":62.51400000000002,"clr":0,"A":"left","R":[{"T":"tax%20withheld%20in","S":-1,"TS":[0,11.919,1,0]}]},{"x":5.078,"y":12.567,"w":72.01600000000002,"clr":0,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20name","S":-1,"TS":[0,11,0,0]}]},{"x":53.547,"y":12.567,"w":72.01600000000002,"clr":0,"A":"left","R":[{"T":"insurance%20premiums","S":-1,"TS":[0,11,0,0]}]},{"x":91.188,"y":12.754,"w":55.016999999999996,"clr":0,"A":"left","R":[{"T":"box%204%2C%20attach","S":9,"TS":[0,12,1,0]}]},{"x":51.656,"y":13.317,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":68.672,"y":13.317,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":91.016,"y":13.504,"w":53.010000000000005,"clr":0,"A":"left","R":[{"T":"%20this%20copy%20to","S":9,"TS":[0,12,1,0]}]},{"x":5.078,"y":14.067,"w":120.05600000000004,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":14.067,"w":4.448,"clr":0,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,1,0]}]},{"x":53.547,"y":14.067,"w":42.232,"clr":0,"A":"left","R":[{"T":"Distribution%20","S":-1,"TS":[0,11,0,0]}]},{"x":63.344,"y":14.067,"w":17.784,"clr":0,"A":"left","R":[{"T":"IRA%2F%20","S":-1,"TS":[0,11,0,0]}]},{"x":68.672,"y":14.067,"w":4.448,"clr":0,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,1,0]}]},{"x":70.563,"y":14.067,"w":20.008000000000003,"clr":0,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"x":91.531,"y":14.254,"w":53.010000000000005,"clr":0,"A":"left","R":[{"T":"%20your%20return.","S":9,"TS":[0,12,1,0]}]},{"x":88.094,"y":15.004,"w":73.017,"clr":0,"A":"left","R":[{"T":"This%20information%20is","S":3,"TS":[0,12,0,0]}]},{"x":5.078,"y":15.567,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":29.656,"y":15.567,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":37.563,"y":15.567,"w":32.016000000000005,"clr":0,"A":"left","R":[{"T":"ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"x":63.172,"y":15.567,"w":29.344,"clr":0,"A":"left","R":[{"T":"SIMPLE","S":-1,"TS":[0,10.36,0,0]}]},{"x":88.094,"y":15.754000000000001,"w":71.54099999999998,"clr":0,"A":"left","R":[{"T":"being%20furnished%20to","S":3,"TS":[0,12,0,0]}]},{"x":68.672,"y":16.317,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":86.375,"y":16.317,"w":6,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[4,13,0,0]}]},{"x":92.906,"y":16.504,"w":45.026999999999994,"clr":0,"A":"left","R":[{"T":"the%20Internal","S":3,"TS":[0,12,0,0]}]},{"x":5.078,"y":17.067,"w":67.57600000000001,"clr":0,"A":"left","R":[{"T":"Recipient%E2%80%99s%20country","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":17.067,"w":8.896,"clr":0,"A":"left","R":[{"T":"9a","S":-1,"TS":[0,11,1,0]}]},{"x":53.719,"y":17.067,"w":85.384,"clr":0,"A":"left","R":[{"T":"Your%20percentage%20of%20total","S":-1,"TS":[0,11,0,0]}]},{"x":68.672,"y":17.067,"w":9.336,"clr":0,"A":"left","R":[{"T":"9b","S":-1,"TS":[0,11,1,0]}]},{"x":70.734,"y":17.067,"w":102.26400000000004,"clr":0,"A":"left","R":[{"T":"Total%20employee%20contributions","S":-1,"TS":[0,11,0,0]}]},{"x":89.125,"y":17.254,"w":71.028,"clr":0,"A":"left","R":[{"T":"Revenue%20Service.","S":-1,"TS":[0,11.613,0,0]}]},{"x":53.719,"y":17.817,"w":38.68,"clr":0,"A":"left","R":[{"T":"distribution","S":-1,"TS":[0,11,0,0]}]},{"x":65.922,"y":17.817,"w":6,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[4,13,0,0]}]},{"x":68.672,"y":17.817,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":5.25,"y":18.567,"w":8.896,"clr":0,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11,1,0]}]},{"x":7.141,"y":18.567,"w":86.25600000000003,"clr":0,"A":"left","R":[{"T":"Amount%20allocable%20to%20IRR","S":-1,"TS":[0,11,0,0]}]},{"x":29.656,"y":18.567,"w":8.896,"clr":0,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,1,0]}]},{"x":31.547,"y":18.567,"w":108.49600000000002,"clr":0,"A":"left","R":[{"T":"1st%20year%20of%20desig.%20Roth%20contrib.","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":18.567,"w":8.896,"clr":0,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,1,0]}]},{"x":53.547,"y":18.567,"w":63.144,"clr":0,"A":"left","R":[{"T":"State%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":68.672,"y":18.567,"w":8.896,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,1,0]}]},{"x":70.563,"y":18.567,"w":82.712,"clr":0,"A":"left","R":[{"T":"State%2F%20Payer%E2%80%99s%20state%20no.","S":-1,"TS":[0,11,0,0]}]},{"x":88.781,"y":18.567,"w":8.896,"clr":0,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,1,0]}]},{"x":90.672,"y":18.567,"w":59.58400000000001,"clr":0,"A":"left","R":[{"T":"State%20distribution","S":-1,"TS":[0,11,0,0]}]},{"x":7.141,"y":19.317,"w":48.904,"clr":0,"A":"left","R":[{"T":"within%205%20years","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":19.317,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":75.031,"y":19.317,"w":2.224,"clr":0,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"x":88.781,"y":19.317,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":5.766,"y":20.067,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":51.656,"y":20.067,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":75.031,"y":20.067,"w":2.224,"clr":0,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"x":88.781,"y":20.067,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":5.078,"y":20.817,"w":136.548,"clr":0,"A":"left","R":[{"T":"Account%20number%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"x":51.656,"y":20.817,"w":8.896,"clr":0,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11,1,0]}]},{"x":53.547,"y":20.817,"w":63.58400000000001,"clr":0,"A":"left","R":[{"T":"Local%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":68.672,"y":20.817,"w":8.896,"clr":0,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11,1,0]}]},{"x":70.563,"y":20.817,"w":56.90400000000001,"clr":0,"A":"left","R":[{"T":"Name%20of%20locality","S":-1,"TS":[0,11,0,0]}]},{"x":88.781,"y":20.817,"w":8.896,"clr":0,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,1,0]}]},{"x":90.672,"y":20.817,"w":60.02400000000001,"clr":0,"A":"left","R":[{"T":"Local%20distribution","S":-1,"TS":[0,11,0,0]}]},{"x":51.656,"y":21.567,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":88.781,"y":21.567,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":51.656,"y":22.317,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":88.781,"y":22.317,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":4.219,"y":23.254,"w":23.499,"clr":0,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"x":8.258,"y":23.254,"w":39.348,"clr":0,"A":"left","R":[{"T":"1099-R","S":-1,"TS":[0,16,1,0]}]},{"x":68.156,"y":23.254,"w":194.7440000000001,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20-%20Internal%20Revenue%20Service","S":-1,"TS":[0,10.8,0,0]}]},{"x":53.547,"y":14.817,"w":76.04000000000005,"clr":0,"A":"left","R":[{"T":"code(s)%20%20%20%20%20%20%20%20%20%20%20%20%20SEP%2F%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM1","EN":0},"TI":718,"AM":16,"x":5.267,"y":4.454,"w":44.972,"h":0.833,"TU":"Payer's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PADD","EN":0},"TI":719,"AM":16,"x":5.267,"y":5.988,"w":44.987,"h":0.833,"TU":"Street Address (including apt. no.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCTY","EN":0},"TI":720,"AM":16,"x":5.267,"y":7.449,"w":22.847,"h":0.833,"TU":"Payer's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":721,"AM":16,"x":30.521,"y":7.49,"w":4.516,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":722,"AM":16,"x":37.906,"y":7.422,"w":12.407,"h":0.833,"TU":"Payer's ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCOUNTRY","EN":0},"TI":723,"AM":16,"x":5.342,"y":8.944,"w":22.875,"h":0.833,"TU":"Payer's Country"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":724,"AM":16,"x":5.42,"y":11.917,"w":22.799,"h":0.833,"TU":"Payer's Federal Identification Number","MV":"99-9999999"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"RID","EN":0},"TI":725,"AM":0,"x":29.941,"y":11.945,"w":20.317,"h":0.833,"TU":"Recipient's Identification Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RNAM","EN":0},"TI":726,"AM":0,"x":5.25,"y":13.486,"w":45.032,"h":0.833,"TU":"Recipient's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RADD","EN":0},"TI":727,"AM":0,"x":5.25,"y":14.981,"w":45.032,"h":0.833,"TU":"Recipient's Street Address (including apt. no.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCTY","EN":0},"TI":728,"AM":0,"x":5.278,"y":16.472,"w":22.835,"h":0.833,"TU":"Recipient's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RST","EN":0},"TI":729,"AM":0,"x":29.988,"y":16.494,"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":730,"AM":0,"x":37.85,"y":16.472,"w":12.452,"h":0.833,"TU":"Recipient's ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCOUNTRY","EN":0},"TI":731,"AM":0,"x":5.315,"y":17.947,"w":22.835,"h":0.833,"TU":"Recipient's Country"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":732,"AM":0,"x":53.239,"y":3.664,"w":14.186,"h":0.833,"TU":"Gross Distribution"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":733,"AM":0,"x":53.239,"y":5.904,"w":14.201,"h":0.833,"TU":"Taxable Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":736,"AM":0,"x":53.287,"y":9.687,"w":14.136,"h":0.833,"TU":"Capital Gain (included in box 2a)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":737,"AM":0,"x":70.387,"y":9.723,"w":16.663,"h":0.833,"TU":"Federal Income Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":738,"AM":0,"x":53.342,"y":13.444,"w":14.136,"h":0.833,"TU":"Employee Contributions/Designated Roth Contributions or Insurance Premiums"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":739,"AM":0,"x":70.274,"y":13.437,"w":16.678,"h":0.833,"TU":"Net Unrealized Appreciation in Employer's Securities"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":740,"AM":0,"x":52.954,"y":16.46,"w":3.294,"h":0.833,"TU":"Distribution Code(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":741,"AM":0,"x":58.957,"y":16.487,"w":3.294,"h":0.833,"TU":"Distribution Code(s)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":743,"AM":0,"x":70.306,"y":16.434,"w":10.607,"h":0.833,"TU":"Other Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":744,"AM":0,"x":83.081,"y":16.434,"w":2.92,"h":0.833,"TU":"Other Percentage"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":745,"AM":0,"x":60.41,"y":17.96,"w":5.545,"h":0.833,"TU":"Your Percentage of Total Distribution"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":746,"AM":0,"x":70.285,"y":17.96,"w":16.69,"h":0.833,"TU":"Total Employee Contributions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ACCIRR","EN":0},"TI":747,"AM":0,"x":7.556,"y":20.217,"w":20.643,"h":0.833,"TU":"Amount Allocable to IRR Within 5 Years"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DESROTH","EN":0},"TI":748,"AM":0,"x":29.93,"y":20.225,"w":20.368,"h":0.833,"TU":"1st Year of Desig. Roth Contrib.","MV":"yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":749,"AM":0,"x":53.325,"y":19.468,"w":14.088,"h":0.833,"TU":"State Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":750,"AM":0,"x":69.066,"y":19.388,"w":4.832,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"L11AID","EN":0},"TI":751,"AM":0,"x":76.382,"y":19.386,"w":10.631,"h":0.833,"TU":"Payer's State No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":752,"AM":0,"x":90.509,"y":19.392,"w":9.997,"h":0.833,"TU":"State Distribution"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":753,"AM":0,"x":53.236,"y":20.285,"w":14.23,"h":0.833,"TU":"State Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":754,"AM":0,"x":69.145,"y":20.255,"w":4.832,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"L11BID","EN":0},"TI":755,"AM":0,"x":76.382,"y":20.258,"w":10.631,"h":0.833,"TU":"Payer's State No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":756,"AM":0,"x":90.583,"y":20.298,"w":9.87,"h":0.833,"TU":"State Distribution"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ACCT","EN":0},"TI":757,"AM":0,"x":5.252,"y":21.998,"w":45.039,"h":0.833,"TU":"Account Number (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":758,"AM":0,"x":53.311,"y":21.749,"w":14.103,"h":0.833,"TU":"Local Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14A","EN":0},"TI":759,"AM":0,"x":69.079,"y":21.749,"w":17.944,"h":0.833,"TU":"Name of Locality"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":760,"AM":0,"x":90.583,"y":21.817,"w":9.87,"h":0.833,"TU":"Local Distribution"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":761,"AM":0,"x":53.311,"y":22.566,"w":14.103,"h":0.833,"TU":"Local Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":762,"AM":0,"x":69.042,"y":22.566,"w":17.929,"h":0.833,"TU":"Name of Locality"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":763,"AM":0,"x":90.568,"y":22.58,"w":9.886,"h":0.833,"TU":"Local Distribution"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CMX","EN":0},"TI":717,"AM":0,"x":32.413,"y":2.198,"w":2.353,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":734,"AM":0,"x":63.411,"y":7.418,"w":1.722,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":735,"AM":0,"x":84.207,"y":7.465,"w":1.797,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IRA","EN":0},"TI":742,"AM":0,"x":64.676,"y":16.409,"w":1.722,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/F99MPER.content.txt b/test/data/ef/form/F99MPER.content.txt new file mode 100755 index 00000000..07cabbbe --- /dev/null +++ b/test/data/ef/form/F99MPER.content.txt @@ -0,0 +1,106 @@ +CORRECTED (if checked) +1 +Rents +OMB No. 1545-0115 +$ +Miscellaneous +2 +Royalties +2 +013 +Income +$ +Form + +1099-MISC +City +3 +Other income +4 +Federal income tax withheld +Copy B +Telephone no. +$ +$ +For Recipient +PAYER’S federal identification number +RECIPIENT’S identification number +5 +Fishing boat proceeds +6 +Medical and health care payments +RECIPIENT’S name +7 +Nonemployee compensation +8 +Substitute payments in lieu +This is important tax +of dividends or interest +information and is +being furnished to +the Internal Revenue +$ +$ +Service. If you are +Street address (including apt. no.) +9 +Payer made direct sales of +10 +Crop insurance proceeeds +required to file a +Apartment no. +$5,000 or more of consumer +return, a negligence +products to a buyer +penalty or other +(recipient) for resale +G +$ +sanction may be +City +State ZIP Code +11 +12 +imposed on you if +this income is +Account number (see instructions) +13 +Excess golden parachute +14 +Gross proceeds paid to +taxable and the IRS +payments +an attorney +determines that it +has not been +$ +$ +reported. +15a +Section 409A deferrals +15b +Section 409A income +16 +State tax withheld +17 +State/ Payer’s state no. +18 +State income +$ +/ +$ +$ +$ +$ +/ +$ +Form +1099-MISC +(keep for your records) Department of the Treasury - Internal Revenue Service +Payer’s Name +PAYER’S INFORMATION +Street address (including apt. no.) +Street address (line 2) +State + ZIP Code +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/F99MPER.fields.json b/test/data/ef/form/F99MPER.fields.json new file mode 100755 index 00000000..ecda8e17 --- /dev/null +++ b/test/data/ef/form/F99MPER.fields.json @@ -0,0 +1 @@ +[{"id":"COR","type":"box","calc":false,"value":""},{"id":"DIRSALE","type":"box","calc":false,"value":""},{"id":"PNM","type":"alpha","calc":false,"value":""},{"id":"ADD1","type":"alpha","calc":false,"value":""},{"id":"ADD2","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STP","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"PPH","type":"phone","calc":false,"value":""},{"id":"FEDIDNO","type":"mask","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"RADD","type":"alpha","calc":false,"value":""},{"id":"RAPT","type":"alpha","calc":false,"value":""},{"id":"RCTY","type":"alpha","calc":false,"value":""},{"id":"ST2","type":"alpha","calc":false,"value":""},{"id":"ZIP2","type":"zip","calc":false,"value":""},{"id":"ACCT","type":"alpha","calc":false,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L13A","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12A","type":"alpha","calc":false,"value":""},{"id":"L12","type":"alpha","calc":false,"value":""},{"id":"L18A","type":"number","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"L17A","type":"alpha","calc":false,"value":""},{"id":"L17","type":"alpha","calc":false,"value":""},{"id":"L18B","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/F99MPER.json b/test/data/ef/form/F99MPER.json new file mode 100755 index 00000000..bea00eee --- /dev/null +++ b/test/data/ef/form/F99MPER.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","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},{"oc":"#bfbfbf","x":52.078,"y":19.15,"w":15.984,"h":0.75,"clr":-1},{"oc":"#bfbfbf","x":70.317,"y":19.103,"w":16.632,"h":1.5,"clr":-1},{"oc":"#bfbfbf","x":50.037,"y":19.853,"w":20.323,"h":0.75,"clr":-1},{"x":49.964,"y":2.963,"w":0.103,"h":23.249,"clr":0},{"x":83.995,"y":2.987,"w":0.103,"h":4.001,"clr":0},{"x":68.011,"y":2.981,"w":0.103,"h":4.162,"clr":0},{"x":68.011,"y":8.232,"w":0.103,"h":17.886,"clr":0},{"x":4.125,"y":3,"w":80.025,"h":0.037,"clr":0},{"x":4.984,"y":6.85,"w":45.134,"h":0.037,"clr":0},{"x":4.984,"y":9.612,"w":45.134,"h":0.037,"clr":0},{"x":50.021,"y":8.781,"w":18.14,"h":0.037,"clr":0},{"x":4.984,"y":16.15,"w":82.088,"h":0.037,"clr":0},{"x":50.016,"y":19.15,"w":37.056,"h":0.038,"clr":0},{"x":4.984,"y":20.65,"w":82.088,"h":0.038,"clr":0},{"x":4.125,"y":23.65,"w":97.041,"h":0.038,"clr":0},{"x":4.125,"y":26.15,"w":97.041,"h":0.038,"clr":0},{"x":4.984,"y":17.85,"w":45.134,"h":0.037,"clr":0},{"x":4.984,"y":12.4,"w":96.181,"h":0.037,"clr":0},{"x":50.072,"y":7.031,"w":18.037,"h":0.037,"clr":0},{"x":4.984,"y":5.3,"w":63.181,"h":0.037,"clr":0},{"x":29.03,"y":23.72,"w":0.103,"h":2.435,"clr":0},{"x":86.986,"y":8.195,"w":0.103,"h":17.96,"clr":0},{"x":27.586,"y":10.783,"w":0.103,"h":1.684,"clr":0},{"x":4.073,"y":2.944,"w":0.103,"h":23.212,"clr":0},{"x":68.063,"y":6.925,"w":19.25,"h":0.125,"clr":0},{"x":68.063,"y":8.8,"w":19.25,"h":0.125,"clr":0},{"x":86.969,"y":7.067,"w":0.344,"h":1.766,"clr":0},{"x":67.891,"y":6.916,"w":0.344,"h":1.994,"clr":0},{"x":50.192,"y":25.256,"w":50.951,"h":0.037,"clr":0},{"x":4.193,"y":3.731,"w":45.857,"h":0.037,"clr":0},{"x":37.692,"y":8.353,"w":0.103,"h":1.245,"clr":0},{"x":32.055,"y":8.353,"w":0.103,"h":1.245,"clr":0},{"x":4.984,"y":10.762,"w":45.134,"h":0.037,"clr":0},{"x":4.984,"y":8.3,"w":45.134,"h":0.037,"clr":0}],"Texts":[{"x":43.063,"y":2.125,"w":117.79,"clr":0,"A":"left","R":[{"T":"CORRECTED%20(if%20checked)","S":-1,"TS":[0,13,0,0]}]},{"x":50.453,"y":2.813,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":2.813,"w":20.896,"clr":0,"A":"left","R":[{"T":"Rents","S":-1,"TS":[0,11,0,0]}]},{"x":68.156,"y":2.875,"w":73.36800000000002,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0115","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":4.262,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":85.688,"y":3.625,"w":82.03199999999998,"clr":0,"A":"left","R":[{"T":"Miscellaneous","S":-1,"TS":[0,16,1,0]}]},{"x":50.453,"y":5.062,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":5.062,"w":32.896,"clr":0,"A":"left","R":[{"T":"Royalties","S":-1,"TS":[0,11,0,0]}]},{"x":74.172,"y":4.375,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"2","S":-1,"TS":[0,22,1,0]}]},{"x":75.892,"y":4.375,"w":30.024,"clr":0,"A":"left","R":[{"T":"013","S":-1,"TS":[0,22,1,0]}]},{"x":92.6,"y":4.375,"w":42.012,"clr":0,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,16,1,0]}]},{"x":50.453,"y":5.954,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":68.156,"y":5.291,"w":23.330000000000002,"clr":0,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,13,0,0]}]},{"x":72.74,"y":5.291,"w":50.57,"clr":0,"A":"left","R":[{"T":"1099-MISC","S":10,"TS":[0,14,1,0]}]},{"x":5.078,"y":8.029,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":6.866,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":6.866,"w":48.016000000000005,"clr":0,"A":"left","R":[{"T":"Other%20income","S":-1,"TS":[0,11,0,0]}]},{"x":68.5,"y":6.929,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":70.391,"y":6.929,"w":81.672,"clr":0,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld","S":-1,"TS":[1,11,0,0]}]},{"x":91.016,"y":6.941,"w":35,"clr":0,"A":"left","R":[{"T":"Copy%20B","S":10,"TS":[0,14,1,0]}]},{"x":5.078,"y":9.404,"w":51.144000000000005,"clr":0,"A":"left","R":[{"T":"Telephone%20no.","S":-1,"TS":[0,10.975999999999999,0,0]}]},{"x":50.453,"y":7.754,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":68.5,"y":7.741,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":91.016,"y":7.691000000000001,"w":57.51000000000001,"clr":0,"A":"left","R":[{"T":"For%20Recipient","S":-1,"TS":[0,11.919,1,0]}]},{"x":4.253,"y":10.654,"w":136.94400000000005,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20federal%20identification%20number","S":-1,"TS":[0,10.704,0,0]}]},{"x":27.938,"y":10.654,"w":125.81600000000005,"clr":0,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20identification%20number","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":8.654,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":8.654,"w":78.70400000000004,"clr":0,"A":"left","R":[{"T":"Fishing%20boat%20proceeds","S":-1,"TS":[0,11,0,0]}]},{"x":68.5,"y":8.654,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"x":70.391,"y":8.654,"w":99.91199999999999,"clr":0,"A":"left","R":[{"T":"Medical%20and%20health%20care%20payments","S":-1,"TS":[1,10.76,0,0]}]},{"x":5.078,"y":12.254,"w":72.01600000000002,"clr":0,"A":"left","R":[{"T":"RECIPIENT%E2%80%99S%20name","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":12.254,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":12.254,"w":83.136,"clr":0,"A":"left","R":[{"T":"Nonemployee%20compensation","S":-1,"TS":[1,11,0,0]}]},{"x":68.672,"y":12.254,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"x":70.391,"y":12.254,"w":78.40000000000002,"clr":0,"A":"left","R":[{"T":"Substitute%20payments%20in%20lieu","S":-1,"TS":[1,11,0,0]}]},{"x":88.094,"y":12.191,"w":71.57600000000002,"clr":0,"A":"left","R":[{"T":"This%20is%20important%20tax","S":-1,"TS":[0,11,0,0]}]},{"x":70.391,"y":13.004,"w":66,"clr":0,"A":"left","R":[{"T":"of%20dividends%20or%20interest","S":-1,"TS":[1,11,0,0]}]},{"x":89.469,"y":12.941,"w":63.136,"clr":0,"A":"left","R":[{"T":"information%20and%20is","S":-1,"TS":[0,11,0,0]}]},{"x":89.881,"y":13.691,"w":63.59200000000002,"clr":0,"A":"left","R":[{"T":"being%20furnished%20to","S":-1,"TS":[0,10.792,0,0]}]},{"x":87.681,"y":14.441,"w":74.26400000000001,"clr":0,"A":"left","R":[{"T":"the%20Internal%20Revenue","S":-1,"TS":[0,10.968,0,0]}]},{"x":50.109,"y":15.191,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":68.156,"y":15.254000000000001,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":89.4,"y":15.191,"w":64.47200000000001,"clr":0,"A":"left","R":[{"T":"Service.%20If%20you%20are","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":15.940999999999999,"w":120.05600000000004,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":16.004,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":16.004,"w":77.66400000000002,"clr":0,"A":"left","R":[{"T":"Payer%20made%20direct%20sales%20of","S":-1,"TS":[1,11,0,0]}]},{"x":68.5,"y":16.004,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"x":70.734,"y":16.004,"w":76.936,"clr":0,"A":"left","R":[{"T":"Crop%20insurance%20proceeeds","S":-1,"TS":[1,11,0,0]}]},{"x":90.603,"y":15.940999999999999,"w":57.36000000000001,"clr":0,"A":"left","R":[{"T":"required%20to%20file%20a","S":-1,"TS":[0,10.943999999999999,0,0]}]},{"x":32.063,"y":16.954,"w":50.248000000000005,"clr":0,"A":"left","R":[{"T":"Apartment%20no.","S":-1,"TS":[0,11,0,0]}]},{"x":52.516,"y":16.654,"w":82.408,"clr":0,"A":"left","R":[{"T":"%245%2C000%20or%20more%20of%20consumer","S":-1,"TS":[1,11,0,0]}]},{"x":88.369,"y":16.691,"w":70.70400000000001,"clr":0,"A":"left","R":[{"T":"return%2C%20a%20negligence","S":-1,"TS":[0,11,0,0]}]},{"x":52.516,"y":17.354,"w":56.16000000000002,"clr":0,"A":"left","R":[{"T":"products%20to%20a%20buyer","S":-1,"TS":[1,11,0,0]}]},{"x":91.016,"y":17.441,"w":55.584,"clr":0,"A":"left","R":[{"T":"penalty%20or%20other","S":-1,"TS":[0,11,0,0]}]},{"x":52.516,"y":18.029,"w":58.32800000000001,"clr":0,"A":"left","R":[{"T":"(recipient)%20for%20resale","S":-1,"TS":[1,10.68,0,0]}]},{"x":62.484,"y":18.254,"w":8.5,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,13,0,0]}]},{"x":68.156,"y":18.316,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":90.431,"y":18.191,"w":58.248000000000005,"clr":0,"A":"left","R":[{"T":"sanction%20may%20be","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":18.816,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":35.156,"y":18.816,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":40.141,"y":18.816,"w":33.792,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":50.281,"y":18.941,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"x":68.328,"y":19.004,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"x":89.537,"y":18.941,"w":62.69600000000001,"clr":0,"A":"left","R":[{"T":"imposed%20on%20you%20if","S":-1,"TS":[0,11,0,0]}]},{"x":92.012,"y":19.691,"w":48.45600000000001,"clr":0,"A":"left","R":[{"T":"this%20income%20is","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":20.504,"w":121.37600000000005,"clr":0,"A":"left","R":[{"T":"Account%20number%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":20.504,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":20.504,"w":73.664,"clr":0,"A":"left","R":[{"T":"Excess%20golden%20parachute","S":-1,"TS":[1,11,0,0]}]},{"x":68.5,"y":20.566,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"x":70.391,"y":20.566,"w":67.82400000000003,"clr":0,"A":"left","R":[{"T":"Gross%20proceeds%20paid%20to","S":-1,"TS":[1,11,0,0]}]},{"x":88.575,"y":20.441,"w":70.26400000000001,"clr":0,"A":"left","R":[{"T":"taxable%20and%20the%20IRS","S":-1,"TS":[0,10.736,0,0]}]},{"x":52.516,"y":21.154,"w":28.44,"clr":0,"A":"left","R":[{"T":"payments","S":-1,"TS":[1,11,0,0]}]},{"x":70.391,"y":21.216,"w":32.824,"clr":0,"A":"left","R":[{"T":"an%20attorney","S":-1,"TS":[1,11,0,0]}]},{"x":89.744,"y":21.191,"w":61.360000000000014,"clr":0,"A":"left","R":[{"T":"determines%20that%20it","S":-1,"TS":[0,11,0,0]}]},{"x":92.666,"y":21.941,"w":46.25600000000001,"clr":0,"A":"left","R":[{"T":"has%20not%20been","S":-1,"TS":[0,10.776,0,0]}]},{"x":50.453,"y":22.754,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":68.5,"y":22.754,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":95.141,"y":22.691,"w":32.016000000000005,"clr":0,"A":"left","R":[{"T":"reported.","S":-1,"TS":[0,11,0,0]}]},{"x":4.563,"y":23.504,"w":15.012,"clr":0,"A":"left","R":[{"T":"15a","S":9,"TS":[0,12,1,0]}]},{"x":7.656,"y":23.504,"w":91.04400000000001,"clr":0,"A":"left","R":[{"T":"Section%20409A%20deferrals","S":3,"TS":[0,12,0,0]}]},{"x":29.484,"y":23.504,"w":15.507000000000001,"clr":0,"A":"left","R":[{"T":"15b","S":9,"TS":[0,12,1,0]}]},{"x":32.406,"y":23.504,"w":75.59200000000001,"clr":0,"A":"left","R":[{"T":"Section%20409A%20income","S":-1,"TS":[0,11,0,0]}]},{"x":50.453,"y":23.504,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"x":52.516,"y":23.504,"w":63.144,"clr":0,"A":"left","R":[{"T":"State%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":68.5,"y":23.566,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"x":70.391,"y":23.566,"w":82.712,"clr":0,"A":"left","R":[{"T":"State%2F%20Payer%E2%80%99s%20state%20no.","S":-1,"TS":[0,11,0,0]}]},{"x":87.406,"y":23.566,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"x":89.469,"y":23.566,"w":46.688,"clr":0,"A":"left","R":[{"T":"State%20income","S":-1,"TS":[0,11,0,0]}]},{"x":50.797,"y":24.254,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":75.031,"y":24.316,"w":2.224,"clr":0,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"x":87.75,"y":24.316,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":4.563,"y":25.254,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":29.484,"y":25.254,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":50.797,"y":25.316,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":75.031,"y":25.316,"w":2.224,"clr":0,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"x":87.75,"y":25.316,"w":6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[4,13,0,0]}]},{"x":4.219,"y":26.191,"w":23.499,"clr":0,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"x":8.258,"y":26.191,"w":60.684,"clr":0,"A":"left","R":[{"T":"1099-MISC","S":-1,"TS":[0,16,1,0]}]},{"x":41.172,"y":26.191,"w":91.02600000000001,"clr":0,"A":"left","R":[{"T":"(keep%20for%20your%20records)","S":3,"TS":[0,12,0,0]}]},{"x":62.141,"y":26.191,"w":219.0869999999999,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20-%20Internal%20Revenue%20Service","S":3,"TS":[0,12,0,0]}]},{"x":5.078,"y":3.5250000000000004,"w":50.232,"clr":0,"A":"left","R":[{"T":"Payer%E2%80%99s%20Name","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":2.875,"w":92.456,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99S%20INFORMATION","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":5.067,"w":120.05600000000004,"clr":0,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":6.617,"w":78.69600000000001,"clr":0,"A":"left","R":[{"T":"Street%20address%20(line%202)","S":-1,"TS":[0,11,0,0]}]},{"x":32.75,"y":8.029,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":39.835,"y":8.029,"w":38.24,"clr":0,"A":"left","R":[{"T":"%20%20ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":4.219,"y":47.149,"w":16.008,"clr":0,"A":"left","R":[{"T":"AK","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNM","EN":0},"TI":765,"AM":0,"x":5.1,"y":4.444,"w":44.057,"h":0.898,"TU":"Payer's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":766,"AM":0,"x":5.062,"y":5.96,"w":44.057,"h":0.898,"TU":"Payer's Street Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD2","EN":0},"TI":767,"AM":0,"x":5.137,"y":7.44,"w":44.057,"h":0.898,"TU":"Payer's Street Address (line 2)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":768,"AM":0,"x":5.062,"y":8.893,"w":26.688,"h":0.833,"TU":"Payer's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STP","EN":0},"TI":769,"AM":0,"x":32.561,"y":8.828,"w":4.232,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":770,"AM":0,"x":38.148,"y":8.835,"w":11.638,"h":0.833,"TU":"Payer's ZIP Code"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PPH","EN":0},"TI":771,"AM":0,"x":14.493,"y":9.783,"w":34.625,"h":0.898,"TU":"Payer's Telephone No."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDIDNO","EN":0},"TI":772,"AM":0,"x":5.121,"y":11.443,"w":22.213,"h":0.898,"TU":"Payer's Federal Identification Number","MV":"99-9999999"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":773,"AM":0,"x":28.797,"y":11.478,"w":20.323,"h":0.898,"TU":"Recipient's Identification Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":774,"AM":0,"x":5.07,"y":15.088,"w":44.057,"h":0.898,"TU":"Recipient's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RADD","EN":0},"TI":775,"AM":0,"x":5.084,"y":16.902,"w":26.647,"h":0.898,"TU":"Recipient's Street Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RAPT","EN":0},"TI":776,"AM":0,"x":41.742,"y":16.866,"w":7.407,"h":0.898,"TU":"Recipient's Apartment No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCTY","EN":0},"TI":777,"AM":0,"x":5.137,"y":19.684,"w":29.288,"h":0.898,"TU":"Recipient's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST2","EN":0},"TI":778,"AM":0,"x":34.83,"y":19.692,"w":4.264,"h":0.897,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"ZIP2","EN":0},"TI":779,"AM":0,"x":39.88,"y":19.667,"w":9.235,"h":0.898,"TU":"Recipient's ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ACCT","EN":0},"TI":780,"AM":0,"x":5.315,"y":22.661,"w":43.995,"h":0.898,"TU":"Account Number (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":781,"AM":0,"x":6.635,"y":25.143,"w":21.868,"h":0.898,"TU":"Section 409A Deferrals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":782,"AM":0,"x":31.11,"y":25.171,"w":18.415,"h":0.898,"TU":"Section 409A Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":783,"AM":0,"x":51.859,"y":4.269,"w":15.566,"h":0.898,"TU":"Rents"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":784,"AM":0,"x":51.859,"y":6.055,"w":15.566,"h":0.898,"TU":"Royalties"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":785,"AM":0,"x":51.931,"y":7.951,"w":15.566,"h":0.833,"TU":"Other Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":786,"AM":0,"x":69.877,"y":7.958,"w":16.233,"h":0.833,"TU":"Federal Income Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":787,"AM":0,"x":51.687,"y":11.494,"w":15.566,"h":0.833,"TU":"Fishing Boat Proceeds"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":788,"AM":0,"x":69.744,"y":11.51,"w":16.233,"h":0.833,"TU":"Medical and Health Care Payments"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":789,"AM":0,"x":51.667,"y":15.233,"w":15.566,"h":0.833,"TU":"Nonemployee Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":790,"AM":0,"x":69.667,"y":15.259,"w":16.233,"h":0.833,"TU":"Substitute Payments in Lieu of Dividends or Interest"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":792,"AM":0,"x":69.916,"y":18.229,"w":16.233,"h":0.833,"TU":"Crop Insurance Proceeds"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":793,"AM":0,"x":51.893,"y":22.793,"w":15.566,"h":0.833,"TU":"Excess Golden Parachute Payments"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":794,"AM":0,"x":69.879,"y":22.798,"w":16.233,"h":0.833,"TU":"Gross Proceeds Paid to an Attorney"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":795,"AM":0,"x":52.354,"y":24.372,"w":14.898,"h":0.833,"TU":"State Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":796,"AM":0,"x":76.401,"y":24.421,"w":9.52,"h":0.833,"TU":"Payer's State No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":797,"AM":0,"x":69.381,"y":24.448,"w":4.863,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"L18A","EN":0},"TI":798,"AM":0,"x":89.437,"y":24.444,"w":11.461,"h":0.833,"TU":"State Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":799,"AM":0,"x":52.411,"y":25.368,"w":14.899,"h":0.833,"TU":"State Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L17A","EN":0},"TI":800,"AM":0,"x":76.346,"y":25.376,"w":9.631,"h":0.833,"TU":"Payer's State No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":801,"AM":0,"x":69.336,"y":25.399,"w":4.863,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"L18B","EN":0},"TI":802,"AM":0,"x":89.382,"y":25.398,"w":11.461,"h":0.833,"TU":"State Income"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COR","EN":0},"TI":764,"AM":0,"x":40.706,"y":2.15,"w":1.761,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIRSALE","EN":0},"TI":791,"AM":0,"x":64.728,"y":18.088,"w":2.053,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/FW2.content.txt b/test/data/ef/form/FW2.content.txt new file mode 100755 index 00000000..dd3b6fa8 --- /dev/null +++ b/test/data/ef/form/FW2.content.txt @@ -0,0 +1,103 @@ +In addition to wage and withholding information, employee/employer names, addresses, and identification numbers are required + a + Employee’s social security number +Safe, accurate, +IRS +Visit the IRS website +OMB No. 1545-0008 +FAST! Use +e-file +at +www.irs.gov/efile +. +b +Employer identification number(EIN) +1 +Wages, tips, other compensation +2 +Federal income tax withheld +c +Employer’s name, address, and ZIP code +3 +Social security wages +4 +Social security tax withheld +Name +Name +5 +Medicare wages and tips +6 +Medicare tax withheld +Street +City +7 +Social security tips +8 +Allocated tips +State +ZIP Code +Foreign Country +d +Control number +9 +10 +Dependent care benefits +e +Employee’s first name and initial +Last name +Suff. +11 +Nonqualified plans +12 +a +code +See instructions for box 12 +First +M.I. +13 +Statutory employee +Retirement plan +Third-party sick pay +12 +b +code +Last +Suff. +12 +c +code +f +Employee’s address and ZIP code +14 +Other +12 +d +code +Description +Amount +Street +City +State +ZIP Code +Foreign Country +15 +State +Employer’s state I.D. no. +16 +State wages, tips, etc. +17 +State income tax +18 +Local wages, tips, etc. +19 +Local income tax +20 +Locality name +Form +W-2 + Wage and Tax Statement +Department of the Treasury - Internal Revenue Service +Copy B - To Be Filed With Employee’s FEDERAL Tax Return. +This information is being furnished to the Internal Revenue Service. +2013 +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/FW2.fields.json b/test/data/ef/form/FW2.fields.json new file mode 100755 index 00000000..101b6715 --- /dev/null +++ b/test/data/ef/form/FW2.fields.json @@ -0,0 +1 @@ +[{"id":"STATX","type":"box","calc":false,"value":""},{"id":"PPX","type":"box","calc":false,"value":""},{"id":"SICKPAYX","type":"box","calc":false,"value":""},{"id":"D","type":"ssn","calc":false,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"CA","type":"alpha","calc":false,"value":""},{"id":"CA2","type":"alpha","calc":false,"value":""},{"id":"CB","type":"alpha","calc":false,"value":""},{"id":"CADDR","type":"alpha","calc":false,"value":""},{"id":"CST","type":"alpha","calc":false,"value":""},{"id":"CZIP","type":"zip","calc":false,"value":""},{"id":"CCOUNTRY","type":"alpha","calc":false,"value":""},{"id":"A","type":"alpha","calc":false,"value":""},{"id":"EFIRST","type":"alpha","calc":false,"value":""},{"id":"EMI","type":"mask","calc":false,"value":""},{"id":"ELAST","type":"alpha","calc":false,"value":""},{"id":"ESF","type":"alpha","calc":false,"value":""},{"id":"FA","type":"alpha","calc":false,"value":""},{"id":"FADDR","type":"alpha","calc":false,"value":""},{"id":"FST","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"zip","calc":false,"value":""},{"id":"ECOUNTRY","type":"alpha","calc":false,"value":""},{"id":"WAGES","type":"number","calc":false,"value":""},{"id":"FEDTAX","type":"number","calc":false,"value":""},{"id":"SSWAGES","type":"number","calc":false,"value":""},{"id":"SSTAX","type":"number","calc":false,"value":""},{"id":"MEDWAGES","type":"number","calc":false,"value":""},{"id":"MEDTAX","type":"number","calc":false,"value":""},{"id":"SSTIPS","type":"number","calc":false,"value":""},{"id":"ALLOCTIP","type":"number","calc":false,"value":""},{"id":"DCB","type":"number","calc":false,"value":""},{"id":"NQAMOUNT","type":"number","calc":false,"value":""},{"id":"CODES_CODESC_1_","type":"mask","calc":false,"value":""},{"id":"CODES_CODESA_1_","type":"number","calc":false,"value":""},{"id":"CODES_CODESC_2_","type":"mask","calc":false,"value":""},{"id":"CODES_CODESA_2_","type":"number","calc":false,"value":""},{"id":"CODES_CODESC_3_","type":"mask","calc":false,"value":""},{"id":"CODES_CODESA_3_","type":"number","calc":false,"value":""},{"id":"CODES_CODESC_4_","type":"mask","calc":false,"value":""},{"id":"CODES_CODESA_4_","type":"number","calc":false,"value":""},{"id":"OTHR_OTHERD_1_","type":"alpha","calc":false,"value":""},{"id":"OTHR_OTHERA_1_","type":"number","calc":false,"value":""},{"id":"OTHR_OTHERD_2_","type":"alpha","calc":false,"value":""},{"id":"OTHR_OTHERA_2_","type":"number","calc":false,"value":""},{"id":"OTHR_OTHERD_3_","type":"alpha","calc":false,"value":""},{"id":"OTHR_OTHERA_3_","type":"number","calc":false,"value":""},{"id":"OTHR_OTHERD_4_","type":"alpha","calc":false,"value":""},{"id":"OTHR_OTHERA_4_","type":"number","calc":false,"value":""},{"id":"STATE_STATEST_1_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEID_1_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEWAG_1_","type":"number","calc":false,"value":""},{"id":"STATE_STATETAX_1_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLWAGES_1_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLTAX_1_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLNAME_1_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEST_2_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEID_2_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEWAG_2_","type":"number","calc":false,"value":""},{"id":"STATE_STATETAX_2_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLWAGES_2_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLTAX_2_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLNAME_2_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEST_3_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEID_3_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEWAG_3_","type":"number","calc":false,"value":""},{"id":"STATE_STATETAX_3_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLWAGES_3_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLTAX_3_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLNAME_3_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEST_4_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEID_4_","type":"alpha","calc":false,"value":""},{"id":"STATE_STATEWAG_4_","type":"number","calc":false,"value":""},{"id":"STATE_STATETAX_4_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLWAGES_4_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLTAX_4_","type":"number","calc":false,"value":""},{"id":"LOCAL_LCLNAME_4_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/FW2.json b/test/data/ef/form/FW2.json new file mode 100755 index 00000000..a305a00d --- /dev/null +++ b/test/data/ef/form/FW2.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","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},{"oc":"#bfbfbf","x":42.969,"y":12.75,"w":34.031,"h":0.75,"clr":-1},{"oc":"#bfbfbf","x":40.047,"y":13.5,"w":36.953,"h":0.75,"clr":-1},{"oc":"#bfbfbf","x":77,"y":18,"w":24.063,"h":3.75,"clr":-1},{"x":101.063,"y":4.5,"w":0.103,"h":1.538,"clr":0},{"x":40.047,"y":7.5,"w":0.103,"h":5.288,"clr":0},{"x":101.063,"y":7.5,"w":0.103,"h":18.038,"clr":0},{"x":61.016,"y":18.75,"w":0.103,"h":3.038,"clr":0},{"x":50.016,"y":4.5,"w":51.15,"h":0.037,"clr":0},{"x":4.125,"y":4.5,"w":21.072,"h":0.037,"clr":0},{"x":90.922,"y":15,"w":0.103,"h":3.038,"clr":0},{"x":77,"y":14.25,"w":0.103,"h":7.538,"clr":0},{"x":40.047,"y":14.25,"w":0.103,"h":7.538,"clr":0},{"x":77,"y":7.5,"w":0.103,"h":5.288,"clr":0},{"x":4.125,"y":6,"w":21.072,"h":0.037,"clr":0},{"x":4.125,"y":7.5,"w":36.025,"h":0.037,"clr":0},{"x":11,"y":9.75,"w":29.15,"h":0.037,"clr":0},{"x":6.016,"y":11.25,"w":34.134,"h":0.037,"clr":0},{"x":4.125,"y":12.75,"w":36.025,"h":0.037,"clr":0},{"x":77,"y":12.75,"w":24.166,"h":0.037,"clr":0},{"x":4.125,"y":14.25,"w":36.025,"h":0.037,"clr":0},{"x":40.047,"y":15.75,"w":61.119,"h":0.037,"clr":0},{"x":77,"y":16.5,"w":24.166,"h":0.038,"clr":0},{"x":77,"y":18,"w":24.166,"h":0.038,"clr":0},{"x":6.016,"y":19.5,"w":95.15,"h":0.038,"clr":0},{"x":6.016,"y":21,"w":95.15,"h":0.038,"clr":0},{"x":4.125,"y":24,"w":97.041,"h":0.038,"clr":0},{"x":4.125,"y":25.5,"w":97.041,"h":0.038,"clr":0},{"x":44.516,"y":21.75,"w":0.103,"h":3.788,"clr":0},{"x":75.453,"y":21.75,"w":0.103,"h":3.788,"clr":0},{"x":11.516,"y":22.5,"w":0.103,"h":3.038,"clr":0},{"x":89.547,"y":21.75,"w":0.103,"h":3.788,"clr":0},{"x":58.438,"y":21.75,"w":0.103,"h":3.788,"clr":0},{"x":27.5,"y":21.75,"w":0.103,"h":3.788,"clr":0},{"x":4.125,"y":24.75,"w":97.041,"h":0.038,"clr":0},{"x":4.125,"y":21.75,"w":97.041,"h":0.038,"clr":0},{"x":6.016,"y":20.25,"w":95.15,"h":0.038,"clr":0},{"x":40.047,"y":18.75,"w":61.119,"h":0.038,"clr":0},{"x":4.125,"y":17.25,"w":97.041,"h":0.038,"clr":0},{"x":6.016,"y":16.5,"w":34.134,"h":0.038,"clr":0},{"x":77,"y":14.25,"w":24.166,"h":0.037,"clr":0},{"x":6.016,"y":12,"w":34.134,"h":0.037,"clr":0},{"x":6.016,"y":10.5,"w":95.15,"h":0.037,"clr":0},{"x":11,"y":9,"w":90.166,"h":0.037,"clr":0},{"x":4.125,"y":4.5,"w":0.103,"h":21.038,"clr":0},{"x":50.016,"y":4.5,"w":0.344,"h":1.625,"clr":0},{"x":77,"y":12.75,"w":0.344,"h":1.625,"clr":0},{"x":40.047,"y":12.75,"w":0.344,"h":1.625,"clr":0},{"x":77,"y":6,"w":0.344,"h":1.625,"clr":0},{"x":42.969,"y":12.75,"w":34.375,"h":0.125,"clr":0},{"x":40.047,"y":14.25,"w":37.297,"h":0.125,"clr":0},{"x":40.047,"y":12.75,"w":3.266,"h":0.125,"clr":0},{"x":25.094,"y":4.5,"w":25.266,"h":0.125,"clr":0},{"x":40.047,"y":7.5,"w":61.359,"h":0.125,"clr":0},{"x":25.094,"y":6,"w":76.313,"h":0.125,"clr":0},{"x":101.063,"y":6,"w":0.344,"h":1.625,"clr":0},{"x":40.047,"y":6,"w":0.344,"h":1.625,"clr":0},{"x":25.094,"y":4.5,"w":0.344,"h":1.625,"clr":0},{"x":4.125,"y":23.25,"w":97.041,"h":0.038,"clr":0}],"Texts":[{"x":5.25,"y":2.875,"w":549.1440000000007,"clr":0,"A":"left","R":[{"T":"In%20addition%20to%20wage%20and%20withholding%20information%2C%20employee%2Femployer%20names%2C%20addresses%2C%20and%20identification%20numbers%20are%20required","S":9,"TS":[0,12,1,0]}]},{"x":25.188,"y":4.375,"w":7.506,"clr":0,"A":"left","R":[{"T":"%20a","S":9,"TS":[0,12,1,0]}]},{"x":26.478,"y":4.375,"w":125.36800000000004,"clr":0,"A":"left","R":[{"T":"%20Employee%E2%80%99s%20social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"x":66.094,"y":4.375,"w":56.47200000000001,"clr":0,"A":"left","R":[{"T":"Safe%2C%20accurate%2C","S":-1,"TS":[0,11,1,0]}]},{"x":78.125,"y":4.375,"w":13.336,"clr":0,"A":"left","R":[{"T":"IRS","S":-1,"TS":[0,11,1,0]}]},{"x":88.094,"y":4.375,"w":73.35999999999999,"clr":0,"A":"left","R":[{"T":"Visit%20the%20IRS%20website","S":-1,"TS":[0,11,0,0]}]},{"x":52.172,"y":5.125,"w":73.36800000000002,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0008","S":-1,"TS":[0,11,0,0]}]},{"x":66.094,"y":5.125,"w":42.672,"clr":0,"A":"left","R":[{"T":"FAST!%20%20Use","S":-1,"TS":[0,11,1,0]}]},{"x":79.156,"y":5.125,"w":32.676,"clr":0,"A":"left","R":[{"T":"e-file","S":11,"TS":[0,18,1,0]}]},{"x":88.094,"y":5.125,"w":8.896,"clr":0,"A":"left","R":[{"T":"at%20","S":-1,"TS":[0,11,0,0]}]},{"x":89.623,"y":5.125,"w":60.008,"clr":0,"A":"left","R":[{"T":"www.irs.gov%2Fefile","S":-1,"TS":[0,11,0,0]}]},{"x":99.937,"y":5.125,"w":2.224,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":4.391,"y":5.875,"w":5.4990000000000006,"clr":0,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":5.875,"w":128.48000000000002,"clr":0,"A":"left","R":[{"T":"Employer%20identification%20number(EIN)","S":-1,"TS":[0,11,0,0]}]},{"x":40.656,"y":5.875,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"x":43.063,"y":5.875,"w":116.49600000000004,"clr":0,"A":"left","R":[{"T":"Wages%2C%20tips%2C%20other%20compensation","S":-1,"TS":[0,11,0,0]}]},{"x":77.781,"y":5.875,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":5.875,"w":99.59200000000001,"clr":0,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":4.391,"y":7.375,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":7.375,"w":146.7280000000001,"clr":0,"A":"left","R":[{"T":"Employer%E2%80%99s%20name%2C%20address%2C%20and%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"x":40.656,"y":7.375,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":43.063,"y":7.375,"w":76.91200000000003,"clr":0,"A":"left","R":[{"T":"Social%20security%20wages","S":-1,"TS":[0,11,0,0]}]},{"x":77.781,"y":7.375,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":7.375,"w":96.03200000000004,"clr":0,"A":"left","R":[{"T":"Social%20security%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":8.125,"w":21.336,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":8.875,"w":21.336,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"x":40.656,"y":8.875,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"x":43.063,"y":8.875,"w":88.48000000000002,"clr":0,"A":"left","R":[{"T":"Medicare%20wages%20and%20tips","S":-1,"TS":[0,11,0,0]}]},{"x":77.781,"y":8.875,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":8.875,"w":77.35999999999999,"clr":0,"A":"left","R":[{"T":"Medicare%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":9.625,"w":21.344,"clr":0,"A":"left","R":[{"T":"Street","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":10.375,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":40.656,"y":10.375,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":43.063,"y":10.375,"w":66.24000000000002,"clr":0,"A":"left","R":[{"T":"Social%20security%20tips","S":-1,"TS":[0,11,0,0]}]},{"x":77.781,"y":10.375,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":10.375,"w":47.57600000000001,"clr":0,"A":"left","R":[{"T":"Allocated%20tips","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":11.125,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":19.172,"y":11.125,"w":33.792,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":11.875,"w":57.352000000000004,"clr":0,"A":"left","R":[{"T":"Foreign%20Country","S":-1,"TS":[0,11,0,0]}]},{"x":4.391,"y":12.625,"w":5.4990000000000006,"clr":0,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":12.625,"w":55.12800000000001,"clr":0,"A":"left","R":[{"T":"Control%20number","S":-1,"TS":[0,11,0,0]}]},{"x":40.656,"y":12.625,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"x":77.609,"y":12.625,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":12.625,"w":87.16000000000001,"clr":0,"A":"left","R":[{"T":"Dependent%20care%20benefits","S":-1,"TS":[0,11,0,0]}]},{"x":4.391,"y":14.125,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":14.125,"w":114.70400000000002,"clr":0,"A":"left","R":[{"T":"Employee%E2%80%99s%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":27.078,"y":14.125,"w":37.352000000000004,"clr":0,"A":"left","R":[{"T":"Last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":37.047,"y":14.125,"w":16.456000000000003,"clr":0,"A":"left","R":[{"T":"Suff.","S":-1,"TS":[0,10.776,0,0]}]},{"x":40.484,"y":14.125,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"x":43.063,"y":14.125,"w":65.808,"clr":0,"A":"left","R":[{"T":"Nonqualified%20plans","S":-1,"TS":[0,11,0,0]}]},{"x":77.609,"y":14.125,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"x":79.844,"y":14.125,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":14.125,"w":17.344,"clr":0,"A":"left","R":[{"T":"code","S":-1,"TS":[0,11,0,0]}]},{"x":84.484,"y":14.125,"w":94.71200000000005,"clr":0,"A":"left","R":[{"T":"See%20instructions%20for%20box%2012","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":15.625,"w":15.552,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[0,11,0,0]}]},{"x":31.031,"y":15.625,"w":13.336,"clr":0,"A":"left","R":[{"T":"M.I.","S":-1,"TS":[0,11,0,0]}]},{"x":40.484,"y":15.625,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"x":43.063,"y":15.625,"w":63.584999999999994,"clr":0,"A":"left","R":[{"T":"Statutory%20employee","S":27,"TS":[1,12,0,0]}]},{"x":55.094,"y":15.625,"w":52.09199999999999,"clr":0,"A":"left","R":[{"T":"Retirement%20plan","S":27,"TS":[1,12,0,0]}]},{"x":65.063,"y":15.625,"w":64.38599999999998,"clr":0,"A":"left","R":[{"T":"Third-party%20sick%20pay","S":27,"TS":[1,12,0,0]}]},{"x":77.781,"y":15.625,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"x":79.844,"y":15.625,"w":5.4990000000000006,"clr":0,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":15.625,"w":17.344,"clr":0,"A":"left","R":[{"T":"code","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":16.375,"w":15.120000000000001,"clr":0,"A":"left","R":[{"T":"Last","S":-1,"TS":[0,11,0,0]}]},{"x":31.031,"y":16.375,"w":16.456000000000003,"clr":0,"A":"left","R":[{"T":"Suff.","S":-1,"TS":[0,11,0,0]}]},{"x":77.781,"y":16.375,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"x":79.844,"y":16.375,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":16.375,"w":17.344,"clr":0,"A":"left","R":[{"T":"code","S":-1,"TS":[0,11,0,0]}]},{"x":4.734,"y":17.125,"w":2.997,"clr":0,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":17.125,"w":121.83200000000005,"clr":0,"A":"left","R":[{"T":"Employee%E2%80%99s%20address%20and%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"x":40.484,"y":17.125,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"x":43.063,"y":17.125,"w":22.509,"clr":0,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"x":77.781,"y":17.125,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"x":79.844,"y":17.125,"w":5.4990000000000006,"clr":0,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"x":81.047,"y":17.125,"w":17.344,"clr":0,"A":"left","R":[{"T":"code","S":-1,"TS":[0,11,0,0]}]},{"x":48.047,"y":17.875,"w":45.009,"clr":0,"A":"left","R":[{"T":"Description","S":3,"TS":[0,12,0,0]}]},{"x":65.063,"y":17.875,"w":31.014000000000003,"clr":0,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"x":6.109,"y":18.625,"w":21.344,"clr":0,"A":"left","R":[{"T":"Street","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":19.375,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":20.125,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":19.172,"y":20.125,"w":33.792,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":6.109,"y":20.875,"w":57.352000000000004,"clr":0,"A":"left","R":[{"T":"Foreign%20Country","S":-1,"TS":[0,11,0,0]}]},{"x":4.219,"y":21.625,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"x":6.109,"y":21.625,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":12.125,"y":21.625,"w":87.14400000000002,"clr":0,"A":"left","R":[{"T":"Employer%E2%80%99s%20state%20I.D.%20no.","S":-1,"TS":[0,10.8,0,0]}]},{"x":28.109,"y":21.625,"w":12.510000000000002,"clr":0,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"x":30.26,"y":21.625,"w":78.26400000000004,"clr":0,"A":"left","R":[{"T":"State%20wages%2C%20tips%2C%20etc.","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":21.625,"w":12.510000000000002,"clr":0,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"x":47.275,"y":21.625,"w":59.58400000000001,"clr":0,"A":"left","R":[{"T":"State%20income%20tax","S":-1,"TS":[0,11,0,0]}]},{"x":59.047,"y":21.625,"w":12.510000000000002,"clr":0,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11.973,1,0]}]},{"x":61.191,"y":21.625,"w":78.70400000000004,"clr":0,"A":"left","R":[{"T":"Local%20wages%2C%20tips%2C%20etc.","S":-1,"TS":[0,10.975999999999999,0,0]}]},{"x":76.063,"y":21.625,"w":12.510000000000002,"clr":0,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"x":78.213,"y":21.625,"w":60.02400000000001,"clr":0,"A":"left","R":[{"T":"Local%20income%20tax","S":-1,"TS":[0,11,0,0]}]},{"x":90.156,"y":21.625,"w":12.510000000000002,"clr":0,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"x":92.306,"y":21.625,"w":49.352000000000004,"clr":0,"A":"left","R":[{"T":"Locality%20name","S":-1,"TS":[0,11,0,0]}]},{"x":4.219,"y":25.375,"w":25.002,"clr":0,"A":"left","R":[{"T":"Form%20","S":9,"TS":[0,12,1,0]}]},{"x":8.516,"y":25.375,"w":21.996,"clr":0,"A":"left","R":[{"T":"W-2","S":-1,"TS":[0,16,1,0]}]},{"x":12.297,"y":25.375,"w":109.02600000000002,"clr":0,"A":"left","R":[{"T":"%20Wage%20and%20Tax%20Statement","S":9,"TS":[0,12,1,0]}]},{"x":68.156,"y":25.375,"w":194.7440000000001,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20-%20Internal%20Revenue%20Service","S":-1,"TS":[0,10.8,0,0]}]},{"x":4.219,"y":26.125,"w":262.0439999999999,"clr":0,"A":"left","R":[{"T":"Copy%20B%20-%20To%20Be%20Filed%20With%20Employee%E2%80%99s%20FEDERAL%20Tax%20Return.%20","S":9,"TS":[0,12,1,0]}]},{"x":4.219,"y":26.875,"w":238.32800000000006,"clr":0,"A":"left","R":[{"T":"This%20information%20is%20being%20furnished%20to%20the%20Internal%20Revenue%20Service.","S":-1,"TS":[0,11,0,0]}]},{"x":39.453,"y":25.375,"w":34.56,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":803,"AM":16,"x":27.388,"y":5.195,"w":21.005,"h":0.833,"TU":"Employee's Social Security Number"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":804,"AM":16,"x":6.374,"y":6.72,"w":33.059,"h":0.833,"TU":"Employer Identification Number (EIN)","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CA","EN":0},"TI":805,"AM":16,"x":10.625,"y":8.209,"w":29.275,"h":0.833,"TU":"Employer's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CA2","EN":0},"TI":806,"AM":0,"x":10.662,"y":8.983,"w":29.275,"h":0.833,"TU":"Employer's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CB","EN":0},"TI":807,"AM":16,"x":10.662,"y":9.764,"w":29.275,"h":0.833,"TU":"Employer's Street Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CADDR","EN":0},"TI":808,"AM":16,"x":10.614,"y":10.545,"w":29.192,"h":0.833,"TU":"Employer's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CST","EN":0},"TI":809,"AM":0,"x":10.901,"y":11.255,"w":4.516,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"CZIP","EN":0},"TI":810,"AM":16,"x":25.714,"y":11.281,"w":13.329,"h":0.833,"TU":"Employer's ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CCOUNTRY","EN":0},"TI":811,"AM":0,"x":16.37,"y":12.093,"w":23.51,"h":0.833,"TU":"Employer's Country"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":812,"AM":0,"x":6.192,"y":13.451,"w":33.431,"h":0.833,"TU":"Control Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EFIRST","EN":0},"TI":813,"AM":16,"x":9.483,"y":15.715,"w":21.377,"h":0.833,"TU":"Employee's First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMI","EN":0},"TI":814,"AM":0,"x":34.59,"y":15.742,"w":2.96,"h":0.833,"TU":"Employee's Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ELAST","EN":0},"TI":815,"AM":16,"x":9.491,"y":16.513,"w":21.219,"h":0.833,"TU":"Employee's Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESF","EN":0},"TI":816,"AM":0,"x":34.638,"y":16.513,"w":3.035,"h":0.833,"TU":"Employee's Suffix"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FA","EN":0},"TI":817,"AM":16,"x":10.335,"y":18.745,"w":29.313,"h":0.833,"TU":"Employee's Street Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FADDR","EN":0},"TI":818,"AM":16,"x":10.421,"y":19.526,"w":29.236,"h":0.833,"TU":"Employee's City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FST","EN":0},"TI":819,"AM":0,"x":10.462,"y":20.262,"w":4.516,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"FZIP","EN":0},"TI":820,"AM":16,"x":25.801,"y":20.262,"w":9.997,"h":0.833,"TU":"Employee's ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ECOUNTRY","EN":0},"TI":821,"AM":0,"x":16.296,"y":21.032,"w":23.474,"h":0.833,"TU":"Employee's Foreign Country"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WAGES","EN":0},"TI":822,"AM":0,"x":42.723,"y":6.72,"w":32.535,"h":0.833,"TU":"Wages, tips, other compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDTAX","EN":0},"TI":823,"AM":0,"x":80.109,"y":6.693,"w":19.583,"h":0.833,"TU":"Federal Income Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSWAGES","EN":0},"TI":824,"AM":0,"x":42.646,"y":8.182,"w":32.535,"h":0.833,"TU":"Social Security Wages"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSTAX","EN":0},"TI":825,"AM":0,"x":80.163,"y":8.202,"w":19.583,"h":0.833,"TU":"Social Security Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MEDWAGES","EN":0},"TI":826,"AM":0,"x":42.681,"y":9.719,"w":32.235,"h":0.833,"TU":"Medicare Wages and Tips"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MEDTAX","EN":0},"TI":827,"AM":0,"x":80.101,"y":9.657,"w":19.583,"h":0.833,"TU":"Medicare Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSTIPS","EN":0},"TI":828,"AM":0,"x":42.64,"y":11.362,"w":32.385,"h":0.833,"TU":"Social Security Tips"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOCTIP","EN":0},"TI":829,"AM":0,"x":80.136,"y":11.48,"w":19.583,"h":0.833,"TU":"Allocated Tips"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DCB","EN":0},"TI":830,"AM":0,"x":78.987,"y":13.407,"w":19.583,"h":0.833,"TU":"Dependent Care Benefits"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NQAMOUNT","EN":0},"TI":831,"AM":0,"x":42.432,"y":14.937,"w":33.808,"h":0.833,"TU":"Nonqualified Plans"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODES_CODESC_1_","EN":0},"TI":832,"AM":0,"x":85.91,"y":14.943,"w":4.085,"h":0.833,"TU":"Code See Instructions for Box 12","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CODES_CODESA_1_","EN":0},"TI":833,"AM":0,"x":91.221,"y":14.942,"w":9.626,"h":0.833,"TU":"Code See Instructions for Box 12"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODES_CODESC_2_","EN":0},"TI":834,"AM":0,"x":85.963,"y":15.758,"w":4.085,"h":0.833,"TU":"Code See Instructions for Box 12","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CODES_CODESA_2_","EN":0},"TI":835,"AM":0,"x":91.179,"y":15.805,"w":9.667,"h":0.833,"TU":"Code See Instructions for Box 12"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODES_CODESC_3_","EN":0},"TI":836,"AM":0,"x":85.863,"y":16.587,"w":4.085,"h":0.833,"TU":"Code See Instructions for Box 12","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CODES_CODESA_3_","EN":0},"TI":837,"AM":0,"x":91.179,"y":16.56,"w":9.7,"h":0.833,"TU":"Code See Instructions for Box 12"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODES_CODESC_4_","EN":0},"TI":838,"AM":0,"x":85.918,"y":17.315,"w":4.085,"h":0.833,"TU":"Code See Instructions for Box 12","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CODES_CODESA_4_","EN":0},"TI":839,"AM":0,"x":91.159,"y":17.303,"w":9.7,"h":0.833,"TU":"Code See Instructions for Box 12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHR_OTHERD_1_","EN":0},"TI":843,"AM":0,"x":40.439,"y":18.718,"w":19.733,"h":0.833,"TU":"Other Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHR_OTHERA_1_","EN":0},"TI":844,"AM":0,"x":61.402,"y":18.764,"w":14.941,"h":0.833,"TU":"Other Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHR_OTHERD_2_","EN":0},"TI":845,"AM":0,"x":40.514,"y":19.507,"w":19.732,"h":0.833,"TU":"Other Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHR_OTHERA_2_","EN":0},"TI":846,"AM":0,"x":61.477,"y":19.507,"w":15.016,"h":0.833,"TU":"Other Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHR_OTHERD_3_","EN":0},"TI":847,"AM":0,"x":40.494,"y":20.306,"w":19.807,"h":0.833,"TU":"Other Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHR_OTHERA_3_","EN":0},"TI":848,"AM":0,"x":61.532,"y":20.262,"w":15.016,"h":0.833,"TU":"Other Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHR_OTHERD_4_","EN":0},"TI":849,"AM":0,"x":40.539,"y":21.048,"w":19.807,"h":0.833,"TU":"Other Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHR_OTHERA_4_","EN":0},"TI":850,"AM":0,"x":61.502,"y":21.048,"w":15.091,"h":0.833,"TU":"Other Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_STATEST_1_","EN":0},"TI":851,"AM":0,"x":4.483,"y":22.552,"w":6.331,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"STATE_STATEID_1_","EN":0},"TI":852,"AM":0,"x":11.766,"y":22.497,"w":15.388,"h":0.833,"TU":"Employer's State I.D. No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATEWAG_1_","EN":0},"TI":853,"AM":0,"x":27.836,"y":22.469,"w":16.394,"h":0.833,"TU":"State Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATETAX_1_","EN":0},"TI":854,"AM":0,"x":45.036,"y":22.497,"w":13.142,"h":0.833,"TU":"State Income Tax"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLWAGES_1_","EN":0},"TI":855,"AM":0,"x":58.871,"y":22.469,"w":16.178,"h":0.833,"TU":"Local Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLTAX_1_","EN":0},"TI":856,"AM":0,"x":75.602,"y":22.516,"w":13.68,"h":0.833,"TU":"Local Income Tax"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOCAL_LCLNAME_1_","EN":0},"TI":857,"AM":0,"x":90.05,"y":22.489,"w":10.629,"h":0.833,"TU":"Locality Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_STATEST_2_","EN":0},"TI":858,"AM":0,"x":4.595,"y":23.314,"w":6.331,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"STATE_STATEID_2_","EN":0},"TI":859,"AM":0,"x":11.766,"y":23.279,"w":15.313,"h":0.833,"TU":"Employer's State I.D. No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATEWAG_2_","EN":0},"TI":860,"AM":0,"x":27.836,"y":23.314,"w":16.394,"h":0.833,"TU":"State Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATETAX_2_","EN":0},"TI":861,"AM":0,"x":45.073,"y":23.314,"w":13.142,"h":0.833,"TU":"State Income Tax"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLWAGES_2_","EN":0},"TI":862,"AM":0,"x":58.908,"y":23.314,"w":16.178,"h":0.833,"TU":"Local Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLTAX_2_","EN":0},"TI":863,"AM":0,"x":75.66,"y":23.314,"w":13.68,"h":0.833,"TU":"Local Income Tax"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOCAL_LCLNAME_2_","EN":0},"TI":864,"AM":0,"x":90.145,"y":23.314,"w":10.629,"h":0.833,"TU":"Locality Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_STATEST_3_","EN":0},"TI":865,"AM":0,"x":4.551,"y":24.067,"w":6.331,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"STATE_STATEID_3_","EN":0},"TI":866,"AM":0,"x":11.876,"y":24.021,"w":15.388,"h":0.833,"TU":"Employer's State I.D. No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATEWAG_3_","EN":0},"TI":867,"AM":0,"x":27.774,"y":23.994,"w":16.394,"h":0.833,"TU":"State Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATETAX_3_","EN":0},"TI":868,"AM":0,"x":44.974,"y":24.021,"w":13.142,"h":0.833,"TU":"State Income Tax"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLWAGES_3_","EN":0},"TI":869,"AM":0,"x":58.809,"y":23.994,"w":16.178,"h":0.833,"TU":"Local Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLTAX_3_","EN":0},"TI":870,"AM":0,"x":75.541,"y":24.041,"w":13.68,"h":0.833,"TU":"Local Income Tax"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOCAL_LCLNAME_3_","EN":0},"TI":871,"AM":0,"x":89.988,"y":24.076,"w":10.629,"h":0.833,"TU":"Locality Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_STATEST_4_","EN":0},"TI":872,"AM":0,"x":4.595,"y":24.801,"w":6.331,"h":0.833,"PL":{"V":[" ","AL","AK","AZ","AR","CA","CO","MP","AS","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","AZ","AR","CA","CO","MP","AS","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":"STATE_STATEID_4_","EN":0},"TI":873,"AM":0,"x":11.876,"y":24.804,"w":15.313,"h":0.833,"TU":"Employer's State I.D. No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATEWAG_4_","EN":0},"TI":874,"AM":0,"x":27.774,"y":24.839,"w":16.394,"h":0.833,"TU":"State Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATE_STATETAX_4_","EN":0},"TI":875,"AM":0,"x":45.011,"y":24.839,"w":13.142,"h":0.833,"TU":"State Income Tax"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLWAGES_4_","EN":0},"TI":876,"AM":0,"x":58.846,"y":24.839,"w":16.178,"h":0.833,"TU":"Local Wages, Tips, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCAL_LCLTAX_4_","EN":0},"TI":877,"AM":0,"x":75.598,"y":24.839,"w":13.68,"h":0.833,"TU":"Local Income Tax"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOCAL_LCLNAME_4_","EN":0},"TI":878,"AM":0,"x":90.083,"y":24.839,"w":10.629,"h":0.833,"TU":"Locality Name"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STATX","EN":0},"TI":840,"AM":0,"x":47.787,"y":16.467,"w":1.647,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPX","EN":0},"TI":841,"AM":0,"x":58.643,"y":16.439,"w":1.647,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SICKPAYX","EN":0},"TI":842,"AM":0,"x":69.628,"y":16.467,"w":1.647,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/FW2G.content.txt b/test/data/ef/form/FW2G.content.txt new file mode 100755 index 00000000..a16d67b2 --- /dev/null +++ b/test/data/ef/form/FW2G.content.txt @@ -0,0 +1,84 @@ +City or town, province or state, country, and ZIP or foreign +13 +OMB No. 1545-0238 +PAYER’s name, street address, city or town, province or +tax withheld in box 4 +CORRECTED (if checked) +1 +Gross winnings +2 +state, country, ZIP or foreign postal code +Federal income tax withheld +2013 +Street Address +3 +Type of wager +4 +Date won +Form W-2G +Certain +City +State +ZIP Code +5 +Transaction +6 +Race +Gambling +Winnings +Federal ID Number +Telephone Number +7 +Winnings from identical wagers +8 +Cashier +WINNER’s name +9 +Winner’s taxpayer identification no. +10 +Window +Street Address (including apt. no.) +11 +First I.D. +12 +Second I.D. +Copy B +Report this income on +City +State +ZIP Code +State/Payer’s state identification no. +14 +State winnings +your federal tax +return. If this form +Under penalties of perjury, I declare that, to the best of my knowledge and belief, the name, address, and taxpayer identification number +shows federal income +that I have furnished correctly identify me as the recipient of this payment and any payments from identical wagers, and that no other +person is entitled to any part of these payments. +attach this copy to +Signature +G +Date +G +your return. +Form +W-2G +Department of the Treasury - Internal Revenue Service +15 +$ +16 +$ +17 +$ +18 +$ +$ +$ +$ +State income tax withheld +Local winnings +Local income tax withheld +Name of Locality +postal code +----------------Page (0) Break---------------- diff --git a/test/data/ef/form/FW2G.fields.json b/test/data/ef/form/FW2G.fields.json new file mode 100755 index 00000000..806771ee --- /dev/null +++ b/test/data/ef/form/FW2G.fields.json @@ -0,0 +1 @@ +[{"id":"CORRX","type":"box","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":false,"value":""},{"id":"PADD","type":"alpha","calc":false,"value":""},{"id":"PCTY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"PFIN","type":"mask","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""},{"id":"WNAM","type":"alpha","calc":false,"value":""},{"id":"WADD","type":"alpha","calc":false,"value":""},{"id":"WCTY","type":"alpha","calc":false,"value":""},{"id":"WST","type":"alpha","calc":false,"value":""},{"id":"WZIP","type":"zip","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L4","type":"date","calc":false,"value":""},{"id":"L3","type":"alpha","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L5","type":"alpha","calc":false,"value":""},{"id":"L6","type":"alpha","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"alpha","calc":false,"value":""},{"id":"L9","type":"ssn","calc":false,"value":""},{"id":"L10","type":"alpha","calc":false,"value":""},{"id":"L11","type":"alpha","calc":false,"value":""},{"id":"L12","type":"alpha","calc":false,"value":""},{"id":"L13A","type":"alpha","calc":false,"value":""},{"id":"L13B","type":"alpha","calc":false,"value":""},{"id":"L14B","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L15","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ef/form/FW2G.json b/test/data/ef/form/FW2G.json new file mode 100755 index 00000000..31effab8 --- /dev/null +++ b/test/data/ef/form/FW2G.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","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":68.14,"y":3.093,"w":0.103,"h":19.065,"clr":0},{"x":43.003,"y":3.05,"w":0.103,"h":19.118,"clr":0},{"x":43.025,"y":5.278,"w":43.888,"h":0.037,"clr":0},{"x":42.952,"y":8.429,"w":44.034,"h":0.037,"clr":0},{"x":42.973,"y":12.778,"w":43.991,"h":0.037,"clr":0},{"x":4.125,"y":17,"w":82.947,"h":0.038,"clr":0},{"x":4.125,"y":25.958,"w":97.041,"h":0.038,"clr":0},{"x":43.066,"y":14.565,"w":43.977,"h":0.037,"clr":0},{"x":4.125,"y":10.208,"w":82.947,"h":0.037,"clr":0},{"x":42.969,"y":6.833,"w":44.103,"h":0.037,"clr":0},{"oc":"#c0c1c4","x":4.014,"y":19.917,"w":38.895,"h":2.25,"clr":-1},{"x":4.233,"y":19.908,"w":82.801,"h":0.038,"clr":0},{"x":87.085,"y":10.846,"w":13.574,"h":0.037,"clr":0},{"x":4.174,"y":12.033,"w":38.746,"h":0.037,"clr":0},{"x":4.174,"y":15.216,"w":38.746,"h":0.037,"clr":0},{"x":4.073,"y":3.05,"w":0.103,"h":19.12,"clr":0},{"x":87.003,"y":3.05,"w":0.103,"h":19.118,"clr":0},{"x":4.125,"y":3.031,"w":82.947,"h":0.038,"clr":0},{"x":4.1,"y":22.153,"w":96.471,"h":0.038,"clr":0}],"Texts":[{"x":5.078,"y":16.838,"w":204.976,"clr":0,"A":"left","R":[{"T":"City%20or%20town%2C%20province%20or%20state%2C%20country%2C%20and%20ZIP%20or%20foreign","S":-1,"TS":[0,11,0,0]}]},{"x":42.891,"y":14.588,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"x":87.807,"y":2.875,"w":73.36800000000002,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0238","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":2.875,"w":201.40800000000002,"clr":0,"A":"left","R":[{"T":"PAYER%E2%80%99s%20name%2C%20street%20address%2C%20city%20or%20town%2C%20province%20or%20","S":-1,"TS":[0,11,0,0]}]},{"x":88.094,"y":16.546,"w":78.68799999999999,"clr":0,"A":"left","R":[{"T":"tax%20withheld%20in%20box%204","S":-1,"TS":[0,10.312000000000001,1,0]}]},{"x":43.063,"y":2.125,"w":117.79,"clr":0,"A":"left","R":[{"T":"CORRECTED%20(if%20checked)","S":-1,"TS":[0,13,0,0]}]},{"x":43.75,"y":2.875,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"x":46.156,"y":2.875,"w":54.68000000000001,"clr":0,"A":"left","R":[{"T":"Gross%20winnings","S":-1,"TS":[0,11,0,0]}]},{"x":68.328,"y":2.875,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":5.078,"y":3.625,"w":144.07200000000003,"clr":0,"A":"left","R":[{"T":"state%2C%20country%2C%20ZIP%20or%20foreign%20postal%20code","S":-1,"TS":[0,11,0,0]}]},{"x":69.588,"y":5.167,"w":99.59200000000001,"clr":0,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":95.141,"y":3.833,"w":31.136,"clr":0,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"x":5.078,"y":5.255,"w":52.912000000000006,"clr":0,"A":"left","R":[{"T":"Street%20Address","S":-1,"TS":[0,11,0,0]}]},{"x":43.75,"y":5.213,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":46.156,"y":5.171,"w":50.688,"clr":0,"A":"left","R":[{"T":"Type%20of%20wager","S":-1,"TS":[0,11,0,0]}]},{"x":68.328,"y":5.171,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":69.961,"y":2.89,"w":33.792,"clr":0,"A":"left","R":[{"T":"Date%20won","S":-1,"TS":[0,11,0,0]}]},{"x":90.156,"y":5.004,"w":64.668,"clr":0,"A":"left","R":[{"T":"Form%20W-2G","S":-1,"TS":[0,15.495999999999999,1,0]}]},{"x":94.109,"y":7.004,"w":41.339999999999996,"clr":0,"A":"left","R":[{"T":"Certain","S":-1,"TS":[0,15.315999999999999,1,0]}]},{"x":5.078,"y":6.879,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":25.188,"y":6.879,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":30.172,"y":6.879,"w":33.792,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":43.75,"y":6.754,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"x":46.156,"y":6.754,"w":41.792,"clr":0,"A":"left","R":[{"T":"Transaction","S":-1,"TS":[0,11,0,0]}]},{"x":68.328,"y":6.754,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"x":71.078,"y":6.754,"w":18.672,"clr":0,"A":"left","R":[{"T":"Race","S":-1,"TS":[0,11,0,0]}]},{"x":92.047,"y":7.754,"w":55.344,"clr":0,"A":"left","R":[{"T":"Gambling","S":-1,"TS":[0,15.052,1,0]}]},{"x":92.047,"y":8.504,"w":54,"clr":0,"A":"left","R":[{"T":"Winnings","S":-1,"TS":[0,15.328,1,0]}]},{"x":5.078,"y":10.005,"w":68.016,"clr":0,"A":"left","R":[{"T":"Federal%20ID%20Number","S":-1,"TS":[0,11,0,0]}]},{"x":21.063,"y":10.005,"w":68.472,"clr":0,"A":"left","R":[{"T":"Telephone%20Number","S":-1,"TS":[0,11,0,0]}]},{"x":43.75,"y":8.379,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":46.156,"y":8.379,"w":110.69600000000004,"clr":0,"A":"left","R":[{"T":"Winnings%20from%20identical%20wagers","S":-1,"TS":[0,11,0,0]}]},{"x":68.328,"y":8.379,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"x":71.078,"y":8.379,"w":27.560000000000002,"clr":0,"A":"left","R":[{"T":"Cashier","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":11.921,"w":60.448,"clr":0,"A":"left","R":[{"T":"WINNER%E2%80%99s%20name","S":-1,"TS":[0,11,0,0]}]},{"x":43.75,"y":10.213,"w":5.0040000000000004,"clr":0,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"x":46.156,"y":10.213,"w":124.04800000000004,"clr":0,"A":"left","R":[{"T":"Winner%E2%80%99s%20taxpayer%20identification%20no.","S":-1,"TS":[0,11,0,0]}]},{"x":67.984,"y":10.213,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"x":71.078,"y":10.213,"w":28.448000000000004,"clr":0,"A":"left","R":[{"T":"Window","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":15.13,"w":120.94400000000005,"clr":0,"A":"left","R":[{"T":"Street%20Address%20(including%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":42.891,"y":12.755,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"x":45.698,"y":12.755,"w":30.224,"clr":0,"A":"left","R":[{"T":"First%20I.D.","S":-1,"TS":[0,11,0,0]}]},{"x":67.984,"y":12.755,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"x":71.078,"y":12.755,"w":41.8,"clr":0,"A":"left","R":[{"T":"Second%20I.D.","S":-1,"TS":[0,11,0,0]}]},{"x":95.141,"y":12.796,"w":31.500000000000004,"clr":0,"A":"left","R":[{"T":"Copy%20B","S":9,"TS":[0,12,1,0]}]},{"x":87.063,"y":13.546,"w":84.45600000000003,"clr":0,"A":"left","R":[{"T":"Report%20this%20income%20on","S":-1,"TS":[0,10.576,1,0]}]},{"x":5.078,"y":18.005,"w":13.776,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,11,0,0]}]},{"x":25.188,"y":18.005,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":30.172,"y":18.005,"w":33.792,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"x":45.583,"y":14.588,"w":127.17600000000006,"clr":0,"A":"left","R":[{"T":"State%2FPayer%E2%80%99s%20state%20identification%20no.","S":-1,"TS":[0,10.92,0,0]}]},{"x":67.984,"y":14.588,"w":10.008000000000001,"clr":0,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"x":71.078,"y":14.588,"w":52.024,"clr":0,"A":"left","R":[{"T":"State%20winnings","S":-1,"TS":[0,10.984,0,0]}]},{"x":91.016,"y":14.296,"w":59.57600000000001,"clr":0,"A":"left","R":[{"T":"your%20federal%20tax","S":-1,"TS":[0,10.648,1,0]}]},{"x":90.156,"y":15.046,"w":68.89599999999999,"clr":0,"A":"left","R":[{"T":"return.%20If%20this%20form","S":-1,"TS":[0,10.192,1,0]}]},{"x":5.078,"y":22.629,"w":480.6879999999992,"clr":0,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%2C%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20the%20name%2C%20address%2C%20and%20taxpayer%20identification%20number","S":-1,"TS":[0,10.904,0,0]}]},{"x":87.062,"y":15.796,"w":83.584,"clr":0,"A":"left","R":[{"T":"shows%20federal%20income","S":-1,"TS":[0,10.655999999999999,1,0]}]},{"x":5.078,"y":23.379,"w":471.3359999999992,"clr":0,"A":"left","R":[{"T":"that%20I%20have%20furnished%20correctly%20identify%20me%20as%20the%20recipient%20of%20this%20payment%20and%20any%20payments%20from%20identical%20wagers%2C%20and%20that%20no%20other%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.078,"y":24.129,"w":170.31200000000004,"clr":0,"A":"left","R":[{"T":"person%20is%20entitled%20to%20any%20part%20of%20these%20payments.","S":-1,"TS":[0,11,0,0]}]},{"x":90.156,"y":17.296,"w":70.68,"clr":0,"A":"left","R":[{"T":"attach%20this%20copy%20to","S":-1,"TS":[0,10.016,1,0]}]},{"x":5.078,"y":24.879,"w":41.507999999999996,"clr":0,"A":"left","R":[{"T":"Signature","S":9,"TS":[0,12,1,0]}]},{"x":12.813,"y":24.879,"w":10.200000000000001,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,15,0,0]}]},{"x":59.047,"y":24.879,"w":19.503,"clr":0,"A":"left","R":[{"T":"Date","S":9,"TS":[0,12,1,0]}]},{"x":62.828,"y":24.879,"w":10.200000000000001,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[0,15,0,0]}]},{"x":94.109,"y":18.046,"w":44.896,"clr":0,"A":"left","R":[{"T":"your%20return.","S":-1,"TS":[0,9.943999999999999,1,0]}]},{"x":4.219,"y":25.963,"w":23.499,"clr":0,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"x":8.258,"y":25.963,"w":31.332,"clr":0,"A":"left","R":[{"T":"W-2G","S":-1,"TS":[0,16,1,0]}]},{"x":68.156,"y":25.963,"w":194.7440000000001,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20-%20Internal%20Revenue%20Service","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":43.04,"y":16.792,"w":2.145048,"clr":-1,"A":"left","R":[{"T":"15%20%20","S":-1,"TS":[0,12.002,0,0]}]},{"oc":"#221f1f","x":43.842,"y":19.023,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.157,"y":16.792,"w":2.145048,"clr":-1,"A":"left","R":[{"T":"16%20%20","S":-1,"TS":[0,12.002,0,0]}]},{"oc":"#221f1f","x":68.844,"y":19.024,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.154,"y":19.667,"w":2.145048,"clr":-1,"A":"left","R":[{"T":"17%20%20","S":-1,"TS":[0,12.002,0,0]}]},{"oc":"#221f1f","x":43.842,"y":21.274,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.042,"y":19.667,"w":2.145048,"clr":-1,"A":"left","R":[{"T":"18%20%20","S":-1,"TS":[0,12.002,0,0]}]},{"oc":"#221f1f","x":43.716,"y":4.3,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.38,"y":5.831,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.664,"y":9.284,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.552,"y":15.883,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"x":45.813,"y":16.807,"w":91.15200000000002,"clr":0,"A":"left","R":[{"T":"State%20income%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":71.078,"y":16.796,"w":52.464000000000006,"clr":0,"A":"left","R":[{"T":"Local%20winnings","S":-1,"TS":[0,10.984,0,0]}]},{"x":45.813,"y":19.682,"w":91.59200000000001,"clr":0,"A":"left","R":[{"T":"Local%20income%20tax%20withheld","S":-1,"TS":[0,11,0,0]}]},{"x":70.734,"y":19.692,"w":59.57600000000001,"clr":0,"A":"left","R":[{"T":"Name%20of%20Locality","S":-1,"TS":[0,10.984,0,0]}]},{"x":5.078,"y":17.38,"w":40.912000000000006,"clr":0,"A":"left","R":[{"T":"postal%20code","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":880,"AM":16,"x":5.204,"y":4.511,"w":37.093,"h":0.833,"TU":"Payer's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PADD","EN":0},"TI":881,"AM":16,"x":5.204,"y":6.224,"w":37.093,"h":0.833,"TU":"Payer's Street Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCTY","EN":0},"TI":882,"AM":16,"x":5.204,"y":7.864,"w":19.568,"h":0.859,"TU":"Payer's City or Town"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":883,"AM":0,"x":24.863,"y":7.921,"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":"PZIP","EN":0},"TI":884,"AM":16,"x":30.246,"y":7.866,"w":12.014,"h":0.833,"TU":"Payer's ZIP or Foreign Postal Code"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PFIN","EN":0},"TI":885,"AM":16,"x":5.221,"y":11.058,"w":15.468,"h":0.833,"TU":"Federal ID Number","MV":"99-9999999"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":886,"AM":0,"x":21.315,"y":11.058,"w":20.966,"h":0.833,"TU":"Telephone Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WNAM","EN":0},"TI":887,"AM":16,"x":5.114,"y":13.006,"w":37.183,"h":0.833,"TU":"Winner's Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WADD","EN":0},"TI":888,"AM":16,"x":5.204,"y":16.085,"w":37.093,"h":0.833,"TU":"Winner's Street Address (including apt. no.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WCTY","EN":0},"TI":889,"AM":16,"x":5.223,"y":18.945,"w":19.658,"h":0.833,"TU":"Winner's City or Town"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WST","EN":0},"TI":890,"AM":0,"x":25.083,"y":18.93,"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":"WZIP","EN":0},"TI":891,"AM":16,"x":30.291,"y":18.937,"w":12.104,"h":0.833,"TU":"Winner's ZIP or Foreign Postal Code"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":892,"AM":0,"x":45.169,"y":3.932,"w":22.271,"h":1.16,"TU":"Gross Winnings"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":893,"AM":0,"x":68.754,"y":4.339,"w":17.603,"h":0.833,"TU":"Federal Income Tax Withheld","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":894,"AM":0,"x":43.99,"y":5.999,"w":23.472,"h":0.833,"TU":"Type of Wager"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":895,"AM":0,"x":69.712,"y":5.947,"w":16.725,"h":0.833,"TU":"Federal Income Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":896,"AM":0,"x":44.006,"y":7.567,"w":23.382,"h":0.833,"TU":"Transaction"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":897,"AM":0,"x":68.781,"y":7.559,"w":17.64,"h":0.833,"TU":"Race"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":898,"AM":0,"x":44.986,"y":9.333,"w":22.455,"h":0.833,"TU":"Winnings from Identical Wagers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":899,"AM":0,"x":68.781,"y":9.306,"w":17.524,"h":0.833,"TU":"Cashier"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":900,"AM":16,"x":43.737,"y":11.9,"w":23.442,"h":0.833,"TU":"Winner's Taxpayer Identification No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":901,"AM":0,"x":68.752,"y":11.824,"w":17.613,"h":0.833,"TU":"Window"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":902,"AM":0,"x":43.992,"y":13.701,"w":23.442,"h":0.833,"TU":"First I.D."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":903,"AM":0,"x":68.752,"y":13.707,"w":17.583,"h":0.833,"TU":"Second I.D."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":904,"AM":0,"x":43.424,"y":16.043,"w":4.816,"h":0.834,"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"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":905,"AM":0,"x":49.07,"y":16.063,"w":18.394,"h":0.833,"TU":"Payer's State Identification No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":906,"AM":0,"x":69.758,"y":16.118,"w":16.596,"h":0.833,"TU":"State Winnings"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":907,"AM":0,"x":45.46,"y":19,"w":22.02,"h":0.833,"TU":"State Income Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":908,"AM":0,"x":70.355,"y":18.968,"w":16.066,"h":0.833,"TU":"Local Winnings"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":909,"AM":0,"x":45.426,"y":21.233,"w":22.02,"h":0.833,"TU":"Local Income Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":910,"AM":0,"x":68.725,"y":21.211,"w":17.638,"h":0.833,"TU":"Name of Locality"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CORRX","EN":0},"TI":879,"AM":0,"x":40.425,"y":2.151,"w":2.506,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/ef/form/PAStep_2.content.txt b/test/data/ef/form/PAStep_2.content.txt new file mode 100755 index 00000000..3fc295f0 --- /dev/null +++ b/test/data/ef/form/PAStep_2.content.txt @@ -0,0 +1,438 @@ +enter your five digit PIN. If filing a joint return on behalf of one or more deceased +Section 1: + +E +- +Signature + + +A + +self +- +selected +five +- +digit personal identification number (PIN) + +will serve as your +- +taxpayers, you must enter both PINs. + + +Under penalties + +of + +perjury, I +/ +we declare that I +/ +we have examined this return, including all +accompanying schedules and statements, and +to +the best + +of my +/ +our belief +, + +they are true, +correct and complete. + + +If you agree, enter your +five +- +digit self +- +selected PIN below. + + + +Primary +Taxpayer + + + + +Secondary Taxpayer + + + + + + + + + +Section 2: Additional Information Needed to e +- +File your Pennsylvania Return + + +E +m +ail addre +ss (for confirmation email) + + + +Re +- +enter email address (must match) + + + + + + + + + + + + + + + + + + + + + +electronic signature on your tax return. If you are filing with a spouse, you must each +----------------Page (0) Break---------------- +Section 3: Refund + +Options +/Payment Options + + +A. + +Refund +: + +If you would like to receive your refund directly deposited into your +bank account, enter the information below +. All +fields are required. + +Routing Transit Number + +Bank Account Number + +Checking or Savings + + +I authorize the +Department of Revenue to +direct deposit my refund +as designated +herein +. If I have filed a joint return, this is an irrevocable +appointment of the other s +pouse as an agent to receive the refund. + + +If you do not enter +all required +direct deposit information + +and check the authorization box +above +, you will receive a check. + + +Section 4: Payment Options + +A. + +Paying Tax Due by Check +: + +If you are paying with a check, +print Form D +- +40P, Payment Voucher, and mail it with your check to +the + +Pennsylvania Department of Revenue + +A. + +If you are paying the tax due by check +, print form PA +- +V and make the +check or money order payable to: + +PA Department of Revenue + +Payment Enclosed + +1 Reve +nue Place + +Harrisburg PA 17129 +- +0001 + +Include +“ +2013 PA +- +40 +” + +and the last four digits of the primary + +taxpayer’s + +Social +Security number on the check. If paying without form PA +- +V, mail your check +to the above address with +“ +2013 PA +- +40 +” + +and +the + +complete Social Security +number + +of the primary taxpayer + +noted +on your check. If you pay by money +order or check that does not include your name and address, include your +name, address and +the +full Social Security number + +of the primary taxpayer + +on +the che +ck or money order along with +“ +2013 PA +- +40 +” +. + + + + +B. + +B. +Electronic Funds Withdrawal of Tax Due: Filling out the information +below authorizes the Department of Revenue and its designated financial agents +to electronically withdraw the amount of your tax payment f +rom your bank +account: + +Routing Transit Number + +Bank Account Number + +Checking or Savings + +Requested Payment Date + +Taxpayer’s Daytime Phone Number + + + + + +I authorize + +(1) The Pennsylvania Department of Revenue and its +designated +financial agents +to initiate an el +ectronic funds withdrawal (automatic +withdrawal) entry to my financial institution account designated above for payment of my +Pennsylvania taxes owed, and (2) my financial institution to debit the entry to my +Formatted: + +List + +Paragraph, + +Numbered + ++ +Level: + +1 + ++ + +Numbering + +Style: + +A, + +B, + +C, + +... + ++ + +Start +at: + +1 + ++ + +Alignment: + +Left + ++ + +Aligned + +at: + + +0.25" + ++ +Indent + +at: + + +0.5" +Formatted: + +Indent: + +First + +line: + + +0.5" +Formatted: + +Indent: + +Left: + + +0.75", + + +No + +bullets + +or +numbering +Formatted: + +Normal, + +Indent: + +Left: + + +0.5", + + +No +bullets + +or + +numbering +----------------Page (1) Break---------------- +account. I also authorize the financial instit +utions involved in the processing of my +electronic payment of taxes to receive confidential information necessary to answer +inquiries and resolve issues related to my payment. Under the terms of this authorization, +I can revoke authorization by notifying +the Pennsylvania Department of Revenue no later +than two business days prior to the payment date. I understand that notification must be +made in writing by one of the following methods: + + +Email to +ra +- +achrevok@pa. +gov +, or + + +Fax to717 +- +772 +- +4193 + + +I understand that if the Pennsylvania Department of Revenue does not receive full and +timely payment of my tax liability, I will remain liable +for the +tax liability and all +applicable interest, penalties and return item charges +. + + +NOTE +: In some instances, your account will be debited on the business banking day + +following your authorization +. + + + +C. + +The Federal Office of Foreign Assets Control is imposing additional reporting +requirements on electronic banking transactions directly involving a financial +institution outside of the territorial jurisdiction of the +U.S +. These transactions +are called +i +nter +national +ACH +t +ransactions +(IAT). + +Presently, the Pennsylvania Department of Revenue does not support IAT +ACH Debit Transactions. + +Please select the appropriate answer to the following question. + +Will the funds for this payment come from a bank account outside + +of the +U.S. +? Yes or No + + +----------------Page (2) Break---------------- diff --git a/test/data/ef/form/PAStep_2.fields.json b/test/data/ef/form/PAStep_2.fields.json new file mode 100755 index 00000000..0637a088 --- /dev/null +++ b/test/data/ef/form/PAStep_2.fields.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/test/data/ef/form/PAStep_2.json b/test/data/ef/form/PAStep_2.json new file mode 100755 index 00000000..04e85e62 --- /dev/null +++ b/test/data/ef/form/PAStep_2.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","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},{"oc":"#f1f1f1","x":75.75,"y":4.222,"w":29.429,"h":41.085,"clr":-1}],"Texts":[{"x":12.589,"y":10.631,"w":32.24399999999999,"clr":0,"A":"left","R":[{"T":"enter%20your%20five%20digit%20PIN.%20If%20filing%20a%20joint%20return%20on%20behalf%20of%20one%20or%20more%20deceased%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":7.768000000000001,"w":4.299999999999999,"clr":0,"A":"left","R":[{"T":"Section%201%3A%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":20.361,"y":7.768000000000001,"w":0.611,"clr":0,"A":"left","R":[{"T":"E","S":-1,"TS":[0,12.96,0,0]}]},{"x":21.405,"y":7.768000000000001,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":21.97,"y":7.768000000000001,"w":3.7430000000000008,"clr":0,"A":"left","R":[{"T":"Signature","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":9.2,"w":0.722,"clr":0,"A":"left","R":[{"T":"A","S":-1,"TS":[0,12.96,0,0]}]},{"x":14.232,"y":9.2,"w":1.448,"clr":0,"A":"left","R":[{"T":"self","S":-1,"TS":[0,12.96,0,0]}]},{"x":16.715,"y":9.2,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.28,"y":9.2,"w":3.5250000000000004,"clr":0,"A":"left","R":[{"T":"selected%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":23.254,"y":9.2,"w":1.515,"clr":0,"A":"left","R":[{"T":"five","S":-1,"TS":[0,12.96,0,0]}]},{"x":25.907,"y":9.2,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":26.472,"y":9.2,"w":16.971000000000004,"clr":0,"A":"left","R":[{"T":"digit%20personal%20identification%20number%20(PIN)","S":-1,"TS":[0,12.96,0,0]}]},{"x":55.814,"y":9.2,"w":7.369999999999999,"clr":0,"A":"left","R":[{"T":"will%20serve%20as%20your%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.655,"y":10.631,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":11.347,"w":15.020000000000003,"clr":0,"A":"left","R":[{"T":"taxpayers%2C%20you%20must%20enter%20both%20PINs.","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":12.779,"w":6.394,"clr":0,"A":"left","R":[{"T":"Under%20penalties","S":-1,"TS":[0,12.96,0,0]}]},{"x":23.802,"y":12.779,"w":0.853,"clr":0,"A":"left","R":[{"T":"of","S":-1,"TS":[0,12.96,0,0]}]},{"x":25.668,"y":12.779,"w":3.621,"clr":0,"A":"left","R":[{"T":"perjury%2C%20I","S":-1,"TS":[0,12.96,0,0]}]},{"x":32.019,"y":12.779,"w":0.278,"clr":0,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,12.96,0,0]}]},{"x":32.515,"y":12.779,"w":6.738000000000001,"clr":0,"A":"left","R":[{"T":"we%20declare%20that%20I","S":-1,"TS":[0,12.96,0,0]}]},{"x":43.865,"y":12.779,"w":0.278,"clr":0,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,12.96,0,0]}]},{"x":44.361,"y":12.779,"w":17.113000000000007,"clr":0,"A":"left","R":[{"T":"we%20have%20examined%20this%20return%2C%20including%20all%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":13.495,"w":18.588000000000005,"clr":0,"A":"left","R":[{"T":"accompanying%20schedules%20and%20statements%2C%20and%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":43.968,"y":13.495,"w":1.034,"clr":0,"A":"left","R":[{"T":"to%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":45.748,"y":13.495,"w":3.1310000000000002,"clr":0,"A":"left","R":[{"T":"the%20best","S":-1,"TS":[0,12.96,0,0]}]},{"x":51.432,"y":13.495,"w":2.3209999999999997,"clr":0,"A":"left","R":[{"T":"of%20my","S":-1,"TS":[0,12.96,0,0]}]},{"x":55.454,"y":13.495,"w":0.278,"clr":0,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,12.96,0,0]}]},{"x":55.934,"y":13.495,"w":3.9200000000000004,"clr":0,"A":"left","R":[{"T":"our%20belief","S":-1,"TS":[0,12.96,0,0]}]},{"x":62.576,"y":13.495,"w":0.25,"clr":24,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,12.96,0,0]}]},{"x":63.432,"y":13.495,"w":5.588000000000001,"clr":0,"A":"left","R":[{"T":"they%20are%20true%2C%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":14.211,"w":8.762000000000002,"clr":0,"A":"left","R":[{"T":"correct%20and%20complete.","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":15.642,"w":9.813000000000004,"clr":0,"A":"left","R":[{"T":"If%20you%20agree%2C%20enter%20your%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":29.126,"y":15.642,"w":1.515,"clr":0,"A":"left","R":[{"T":"five","S":-1,"TS":[0,12.96,0,0]}]},{"x":31.796,"y":15.642,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":32.361,"y":15.642,"w":3.548,"clr":0,"A":"left","R":[{"T":"digit%20self","S":-1,"TS":[0,12.96,0,0]}]},{"x":38.421,"y":15.642,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":38.986,"y":15.642,"w":7.950000000000001,"clr":0,"A":"left","R":[{"T":"selected%20PIN%20below.","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":17.79,"w":3.5280000000000005,"clr":0,"A":"left","R":[{"T":"Primary%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":18.512,"y":17.79,"w":3.8240000000000003,"clr":0,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,12.96,0,0]}]},{"x":43.403,"y":17.79,"w":8.355000000000002,"clr":0,"A":"left","R":[{"T":"Secondary%20Taxpayer","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":22.801,"w":19.31900000000001,"clr":0,"A":"left","R":[{"T":"Section%202%3A%20%20Additional%20Information%20Needed%20to%20e","S":-1,"TS":[0,12.96,0,0]}]},{"x":44.892,"y":22.801,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":45.457,"y":22.801,"w":11.904000000000002,"clr":0,"A":"left","R":[{"T":"File%20your%20Pennsylvania%20Return","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":24.233,"w":0.611,"clr":0,"A":"left","R":[{"T":"E","S":-1,"TS":[0,12.96,0,0]}]},{"x":13.65,"y":24.233,"w":0.778,"clr":0,"A":"left","R":[{"T":"m","S":-1,"TS":[0,12.96,0,0]}]},{"x":14.951,"y":24.233,"w":3.4890000000000003,"clr":0,"A":"left","R":[{"T":"ail%20addre","S":-1,"TS":[0,12.96,0,0]}]},{"x":20.926,"y":24.233,"w":10.802,"clr":0,"A":"left","R":[{"T":"ss%20(for%20confirmation%20email)","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":25.665,"w":1.097,"clr":0,"A":"left","R":[{"T":"Re","S":-1,"TS":[0,12.96,0,0]}]},{"x":14.489,"y":25.665,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":15.054,"y":25.665,"w":13.467000000000004,"clr":0,"A":"left","R":[{"T":"enter%20email%20address%20(must%20match)","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":9.915,"w":33.44699999999998,"clr":0,"A":"left","R":[{"T":"electronic%20signature%20on%20your%20tax%20return.%20If%20you%20are%20filing%20with%20a%20spouse%2C%20you%20must%20each%20","S":-1,"TS":[0,12.96,0,0]}]}],"Fields":[],"Boxsets":[]},{"Height":49.5,"HLines":[{"dsh":1,"oc":"#ff0101","x":74.895,"y":19.766,"w":0.15000000000000002,"l":0.223},{"oc":"#ff0101","x":79.397,"y":19.412,"w":0.597,"l":24.805},{"oc":"#ff0101","x":79.397,"y":21.652,"w":0.597,"l":24.805},{"dsh":1,"oc":"#ff0101","x":74.895,"y":20.395,"w":0.15000000000000002,"l":0.223},{"oc":"#ff0101","x":79.397,"y":21.715,"w":0.597,"l":24.805},{"oc":"#ff0101","x":79.397,"y":22.443,"w":0.597,"l":24.805},{"dsh":1,"oc":"#ff0101","x":74.895,"y":21.559,"w":0.15000000000000002,"l":0.223},{"oc":"#ff0101","x":79.397,"y":22.505,"w":0.597,"l":24.805},{"oc":"#ff0101","x":79.397,"y":23.738,"w":0.597,"l":24.805},{"dsh":1,"oc":"#ff0101","x":74.895,"y":31.581,"w":0.15000000000000002,"l":0.223},{"oc":"#ff0101","x":79.397,"y":31.22,"w":0.597,"l":24.805},{"oc":"#ff0101","x":79.397,"y":32.459,"w":0.597,"l":24.805}],"VLines":[{"oc":"#385d89","x":24.196,"y":13.959,"w":2.4885,"l":0.492},{"oc":"#385d89","x":23.326,"y":13.959,"w":2.4885,"l":0.492},{"oc":"#385d89","x":23.583,"y":38.483,"w":2.4885,"l":0.492},{"oc":"#385d89","x":22.713,"y":38.483,"w":2.4885,"l":0.492},{"oc":"#ff0101","x":74.895,"y":19.692,"w":0.15000000000000002,"l":0.149},{"oc":"#ff0101","x":104.63,"y":19.567,"w":0.597,"l":1.93},{"oc":"#ff0101","x":78.969,"y":19.567,"w":0.597,"l":1.93},{"oc":"#ff0101","x":74.895,"y":20.32,"w":0.15000000000000002,"l":0.149},{"oc":"#ff0101","x":104.63,"y":21.87,"w":0.597,"l":0.417},{"oc":"#ff0101","x":78.969,"y":21.87,"w":0.597,"l":0.417},{"oc":"#ff0101","x":74.895,"y":21.484,"w":0.15000000000000002,"l":0.149},{"oc":"#ff0101","x":104.63,"y":22.661,"w":0.597,"l":0.921},{"oc":"#ff0101","x":78.969,"y":22.661,"w":0.597,"l":0.921},{"oc":"#ff0101","x":74.895,"y":31.507,"w":0.15000000000000002,"l":0.149},{"oc":"#ff0101","x":104.63,"y":31.376,"w":0.597,"l":0.927},{"oc":"#ff0101","x":78.969,"y":31.376,"w":0.597,"l":0.927}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#f1f1f1","x":75.75,"y":4.222,"w":29.429,"h":41.085,"clr":-1},{"oc":"#ff0101","x":25.627,"y":8.586,"w":5.837,"h":0.031,"clr":-1},{"oc":"#ff0101","x":31.464,"y":8.356,"w":12.325,"h":0.031,"clr":-1},{"x":11.555,"y":7.958,"w":0.103,"h":0.716,"clr":0},{"x":11.555,"y":17.98,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":12.839,"y":19.324,"w":19.173,"h":0.031,"clr":-1},{"x":11.555,"y":18.696,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":15.407,"y":20.04,"w":2.568,"h":0.037,"clr":-1},{"x":11.555,"y":19.412,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":17.975,"y":20.613,"w":55.602,"h":0.031,"clr":-1},{"x":11.555,"y":20.127,"w":0.103,"h":0.535,"clr":0},{"oc":"#ff0101","x":12.839,"y":21.148,"w":23.778,"h":0.031,"clr":-1},{"x":11.555,"y":20.663,"w":0.103,"h":0.535,"clr":0},{"oc":"#ff0101","x":20.543,"y":21.596,"w":1.66,"h":0.031,"clr":-1},{"oc":"#ff0101","x":23.11,"y":21.596,"w":48.052,"h":0.031,"clr":-1},{"x":11.555,"y":21.198,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":22.312,"w":22.973,"h":0.031,"clr":-1},{"x":11.555,"y":21.914,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":23.11,"y":23.028,"w":18.968,"h":0.031,"clr":-1},{"x":11.555,"y":22.63,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":23.11,"y":23.744,"w":12.702,"h":0.031,"clr":-1},{"x":11.555,"y":23.346,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":23.11,"y":24.46,"w":11.401,"h":0.031,"clr":-1},{"x":11.555,"y":24.062,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":23.11,"y":25.176,"w":18.728,"h":0.031,"clr":-1},{"x":11.555,"y":24.777,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":25.892,"w":53.633,"h":0.031,"clr":-1},{"x":11.555,"y":25.493,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":26.608,"w":53.65,"h":0.031,"clr":-1},{"x":11.555,"y":26.209,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":27.324,"w":50.603,"h":0.031,"clr":-1},{"x":11.555,"y":26.925,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":28.039,"w":51.682,"h":0.031,"clr":-1},{"x":11.555,"y":27.641,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":28.755,"w":50.141,"h":0.031,"clr":-1},{"x":11.555,"y":28.357,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":29.471,"w":53.085,"h":0.031,"clr":-1},{"x":11.555,"y":29.073,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":30.187,"w":34.717,"h":0.031,"clr":-1},{"x":11.555,"y":29.789,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":17.975,"y":31.619,"w":1.575,"h":0.031,"clr":-1},{"oc":"#ff0101","x":23.11,"y":31.849,"w":2.003,"h":0.031,"clr":-1},{"x":11.555,"y":31.22,"w":0.103,"h":0.716,"clr":0},{"oc":"#4f81bc","x":23.326,"y":13.959,"w":0.87,"h":0.492,"clr":-1},{"oc":"#4f81bc","x":22.713,"y":38.483,"w":0.87,"h":0.492,"clr":-1},{"oc":"#ff0101","x":74.467,"y":19.692,"w":0.428,"h":0.149,"clr":-1},{"x":78.969,"y":19.412,"w":25.661,"h":2.241,"clr":1},{"oc":"#ff0101","x":74.467,"y":20.32,"w":0.428,"h":0.149,"clr":-1},{"x":78.969,"y":21.715,"w":25.661,"h":0.728,"clr":1},{"oc":"#ff0101","x":74.467,"y":21.484,"w":0.428,"h":0.149,"clr":-1},{"x":78.969,"y":22.505,"w":25.661,"h":1.233,"clr":1},{"oc":"#ff0101","x":74.467,"y":31.507,"w":0.428,"h":0.149,"clr":-1},{"x":78.969,"y":31.22,"w":25.661,"h":1.239,"clr":1}],"Texts":[{"x":12.589,"y":7.768000000000001,"w":7.292000000000002,"clr":0,"A":"left","R":[{"T":"Section%203%3A%20%20Refund","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":25.805,"y":7.768000000000001,"w":3.097,"clr":-1,"A":"left","R":[{"T":"Options","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":31.214,"y":7.768000000000001,"w":7.035,"clr":-1,"A":"left","R":[{"T":"%2FPayment%20Options","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.725,"y":9.2,"w":0.948,"clr":0,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,12.96,0,0]}]},{"x":20.293,"y":9.2,"w":2.8840000000000003,"clr":0,"A":"left","R":[{"T":"Refund","S":-1,"TS":[0,12.96,0,0]}]},{"x":25.325,"y":9.2,"w":0.278,"clr":0,"A":"left","R":[{"T":"%3A","S":-1,"TS":[0,12.96,0,0]}]},{"x":26.233,"y":9.2,"w":28.251000000000033,"clr":0,"A":"left","R":[{"T":"If%20you%20would%20like%20to%20receive%20your%20refund%20directly%20deposited%20into%20your%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":20.293,"y":9.915,"w":17.18700000000001,"clr":0,"A":"left","R":[{"T":"bank%20account%2C%20enter%20the%20information%20below","S":-1,"TS":[0,12.96,0,0]}]},{"x":49.275,"y":9.915,"w":2.292,"clr":0,"A":"left","R":[{"T":".%20%20All%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":53.178,"y":9.915,"w":7.464999999999999,"clr":0,"A":"left","R":[{"T":"fields%20are%20required.","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":10.631,"w":9.877,"clr":0,"A":"left","R":[{"T":"Routing%20Transit%20Number","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":11.347,"w":9.086,"clr":0,"A":"left","R":[{"T":"Bank%20Account%20Number","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":12.063,"w":8.143000000000002,"clr":0,"A":"left","R":[{"T":"Checking%20or%20Savings","S":-1,"TS":[0,12.96,0,0]}]},{"x":27.996,"y":13.495,"w":5.866000000000001,"clr":0,"A":"left","R":[{"T":"I%20authorize%20the%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":38.319,"y":13.495,"w":10.581000000000001,"clr":0,"A":"left","R":[{"T":"Department%20of%20Revenue%20to%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":56.858,"y":13.495,"w":10.054,"clr":0,"A":"left","R":[{"T":"direct%20deposit%20my%20refund%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":14.211,"w":5.694000000000001,"clr":0,"A":"left","R":[{"T":"as%20designated%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":32.481,"y":14.211,"w":2.535,"clr":0,"A":"left","R":[{"T":"herein","S":-1,"TS":[0,12.96,0,0]}]},{"x":36.744,"y":14.211,"w":20.806000000000008,"clr":0,"A":"left","R":[{"T":".%20%20If%20I%20have%20filed%20a%20joint%20return%2C%20this%20is%20an%20irrevocable%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":14.927,"w":10.239,"clr":0,"A":"left","R":[{"T":"appointment%20of%20the%20other%20s","S":-1,"TS":[0,12.96,0,0]}]},{"x":40.835,"y":14.927,"w":16.013,"clr":0,"A":"left","R":[{"T":"pouse%20as%20an%20agent%20to%20receive%20the%20refund.","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":16.358,"w":7.493000000000002,"clr":0,"A":"left","R":[{"T":"If%20you%20do%20not%20enter%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":25.771,"y":16.358,"w":4.780000000000001,"clr":0,"A":"left","R":[{"T":"all%20required%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":34.022,"y":16.358,"w":10.44,"clr":0,"A":"left","R":[{"T":"direct%20deposit%20information","S":-1,"TS":[0,12.96,0,0]}]},{"x":52.219,"y":16.358,"w":12.705000000000004,"clr":0,"A":"left","R":[{"T":"and%20check%20the%20authorization%20box%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":17.074,"w":2.338,"clr":0,"A":"left","R":[{"T":"above","S":-1,"TS":[0,12.96,0,0]}]},{"x":16.68,"y":17.074,"w":10.631,"clr":0,"A":"left","R":[{"T":"%2C%20you%20will%20receive%20a%20check.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":12.589,"y":18.506,"w":11.247,"clr":-1,"A":"left","R":[{"T":"Section%204%3A%20Payment%20Options","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":15.157,"y":19.222,"w":0.948,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.725,"y":19.222,"w":10.324000000000002,"clr":0,"A":"left","R":[{"T":"Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[0,12.96,0,0]}]},{"x":35.768,"y":19.222,"w":0.784,"clr":0,"A":"left","R":[{"T":"%3A%20%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":17.725,"y":19.813,"w":13.857000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20paying%20with%20a%20check%2C%20","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#ff0101","x":35.358,"y":19.813,"w":5.448,"clr":-1,"A":"left","R":[{"T":"print%20Form%20D","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#ff0101","x":42.478,"y":19.813,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#ff0101","x":42.906,"y":19.813,"w":24.167,"clr":-1,"A":"left","R":[{"T":"40P%2C%20Payment%20Voucher%2C%20and%20mail%20it%20with%20your%20check%20to%20","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#ff0101","x":12.589,"y":20.348,"w":1.363,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#ff0101","x":14.729,"y":20.348,"w":16.977,"clr":-1,"A":"left","R":[{"T":"Pennsylvania%20Department%20of%20Revenue","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#ff0101","x":20.293,"y":21.008,"w":0.948,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":22.86,"y":21.008,"w":15.557,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20paying%20the%20tax%20due%20by%20check","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":49.086,"y":21.008,"w":6.111000000000001,"clr":-1,"A":"left","R":[{"T":"%2C%20print%20form%20PA","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":59.563,"y":21.008,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":60.128,"y":21.008,"w":6.644000000000001,"clr":-1,"A":"left","R":[{"T":"V%20and%20make%20the%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":21.724,"w":13.861000000000002,"clr":-1,"A":"left","R":[{"T":"check%20or%20money%20order%20payable%20to%3A%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":22.86,"y":22.44,"w":10.841000000000001,"clr":-1,"A":"left","R":[{"T":"PA%20Department%20of%20Revenue","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":22.86,"y":23.156,"w":7.256000000000001,"clr":-1,"A":"left","R":[{"T":"Payment%20Enclosed","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":22.86,"y":23.872,"w":2.745,"clr":-1,"A":"left","R":[{"T":"1%20Reve","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":27.671,"y":23.872,"w":3.7700000000000005,"clr":-1,"A":"left","R":[{"T":"nue%20Place","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":22.86,"y":24.588,"w":8.61,"clr":-1,"A":"left","R":[{"T":"Harrisburg%20PA%2017129","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":37.617,"y":24.588,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":38.164,"y":24.588,"w":2,"clr":-1,"A":"left","R":[{"T":"0001","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":25.304,"w":3.1690000000000005,"clr":-1,"A":"left","R":[{"T":"Include%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":25.873,"y":25.304,"w":0.444,"clr":-1,"A":"left","R":[{"T":"%E2%80%9C","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":26.609,"y":25.304,"w":3.528,"clr":-1,"A":"left","R":[{"T":"2013%20PA","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":32.652,"y":25.304,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":33.217,"y":25.304,"w":1,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":34.946,"y":25.304,"w":0.444,"clr":-1,"A":"left","R":[{"T":"%E2%80%9D","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":36.127,"y":25.304,"w":14.993000000000004,"clr":-1,"A":"left","R":[{"T":"and%20the%20last%20four%20digits%20of%20the%20primary","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":62.062,"y":25.304,"w":4.225,"clr":-1,"A":"left","R":[{"T":"taxpayer%E2%80%99s","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":69.646,"y":25.304,"w":2.7640000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":26.019,"w":22.797999999999995,"clr":-1,"A":"left","R":[{"T":"Security%20number%20on%20the%20check.%20%20If%20paying%20without%20form%20PA","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":60.248,"y":26.019,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":60.813,"y":26.019,"w":8.029000000000002,"clr":-1,"A":"left","R":[{"T":"V%2C%20mail%20your%20check%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":26.735,"w":10.415000000000001,"clr":-1,"A":"left","R":[{"T":"to%20the%20above%20address%20with%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":38.113,"y":26.735,"w":0.444,"clr":-1,"A":"left","R":[{"T":"%E2%80%9C","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":38.849,"y":26.735,"w":3.528,"clr":-1,"A":"left","R":[{"T":"2013%20PA","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":44.909,"y":26.735,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":45.474,"y":26.735,"w":1.02,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":47.203,"y":26.735,"w":0.444,"clr":-1,"A":"left","R":[{"T":"%E2%80%9D","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":48.384,"y":26.735,"w":1.654,"clr":-1,"A":"left","R":[{"T":"and%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":51.295,"y":26.735,"w":1.192,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":53.811,"y":26.735,"w":10.399000000000004,"clr":-1,"A":"left","R":[{"T":"complete%20Social%20Security%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":27.451,"w":3.055,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":25.942,"y":27.451,"w":9.552000000000001,"clr":-1,"A":"left","R":[{"T":"of%20the%20primary%20taxpayer","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":42.496,"y":27.451,"w":2.532,"clr":-1,"A":"left","R":[{"T":"noted%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":46.724,"y":27.451,"w":14.637000000000004,"clr":-1,"A":"left","R":[{"T":"on%20your%20check.%20%20If%20you%20pay%20by%20money%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":28.167,"w":28.81899999999999,"clr":-1,"A":"left","R":[{"T":"order%20or%20check%20that%20does%20not%20include%20your%20name%20and%20address%2C%20include%20your%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":28.883,"w":7.717000000000001,"clr":-1,"A":"left","R":[{"T":"name%2C%20address%20and%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":33.337,"y":28.883,"w":1.432,"clr":-1,"A":"left","R":[{"T":"the%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":35.853,"y":28.883,"w":11.081000000000001,"clr":-1,"A":"left","R":[{"T":"full%20Social%20Security%20number","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":55.146,"y":28.883,"w":9.552000000000001,"clr":-1,"A":"left","R":[{"T":"of%20the%20primary%20taxpayer","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":71.683,"y":28.883,"w":1.22,"clr":-1,"A":"left","R":[{"T":"on%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":29.599,"w":2.79,"clr":-1,"A":"left","R":[{"T":"the%20che","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":25.188,"y":29.599,"w":11.819000000000004,"clr":-1,"A":"left","R":[{"T":"ck%20or%20money%20order%20along%20with%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":45.919,"y":29.599,"w":0.444,"clr":-1,"A":"left","R":[{"T":"%E2%80%9C","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":46.655,"y":29.599,"w":3.528,"clr":-1,"A":"left","R":[{"T":"2013%20PA","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":52.715,"y":29.599,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":53.28,"y":29.599,"w":1.02,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,12.96,0,0]}]},{"x":55.009,"y":29.599,"w":0.444,"clr":0,"A":"left","R":[{"T":"%E2%80%9D","S":-1,"TS":[0,12.96,0,0]}]},{"x":55.78,"y":29.599,"w":0.25,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":17.725,"y":31.031,"w":0.923,"clr":-1,"A":"left","R":[{"T":"B.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":22.86,"y":31.031,"w":1.167,"clr":-1,"A":"left","R":[{"T":"B.%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":24.863,"y":31.031,"w":28.386000000000003,"clr":0,"A":"left","R":[{"T":"Electronic%20Funds%20Withdrawal%20of%20Tax%20Due%3A%20%20Filling%20out%20the%20information%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.725,"y":31.746000000000002,"w":32.772999999999996,"clr":0,"A":"left","R":[{"T":"below%20authorizes%20the%20Department%20of%20Revenue%20and%20its%20designated%20financial%20agents%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.725,"y":32.462,"w":23.54499999999999,"clr":0,"A":"left","R":[{"T":"to%20electronically%20withdraw%20the%20amount%20of%20your%20tax%20payment%20f","S":-1,"TS":[0,12.96,0,0]}]},{"x":59.015,"y":32.462,"w":5.998000000000001,"clr":0,"A":"left","R":[{"T":"rom%20your%20bank%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.725,"y":33.178,"w":3.308,"clr":0,"A":"left","R":[{"T":"account%3A","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":33.894,"w":9.877,"clr":0,"A":"left","R":[{"T":"Routing%20Transit%20Number","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":34.61,"w":9.086,"clr":0,"A":"left","R":[{"T":"Bank%20Account%20Number","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":35.326,"w":8.143000000000002,"clr":0,"A":"left","R":[{"T":"Checking%20or%20Savings","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":36.042,"w":10.186000000000002,"clr":0,"A":"left","R":[{"T":"Requested%20Payment%20Date","S":-1,"TS":[0,12.96,0,0]}]},{"x":22.86,"y":36.758,"w":14.655,"clr":0,"A":"left","R":[{"T":"Taxpayer%E2%80%99s%20Daytime%20Phone%20Number","S":-1,"TS":[0,12.96,0,0]}]},{"x":24.144,"y":38.189,"w":4.194000000000001,"clr":0,"A":"left","R":[{"T":"I%20authorize","S":-1,"TS":[0,12.96,0,0]}]},{"x":31.950000000000003,"y":38.189,"w":21.802,"clr":0,"A":"left","R":[{"T":"(1)%20The%20Pennsylvania%20Department%20of%20Revenue%20and%20its%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":38.905,"w":4.593000000000001,"clr":0,"A":"left","R":[{"T":"designated%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":20.361,"y":38.905,"w":6.656000000000001,"clr":0,"A":"left","R":[{"T":"financial%20agents%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":31.557,"y":38.905,"w":6.006,"clr":0,"A":"left","R":[{"T":"to%20initiate%20an%20el","S":-1,"TS":[0,12.96,0,0]}]},{"x":41.777,"y":38.905,"w":15.293000000000001,"clr":0,"A":"left","R":[{"T":"ectronic%20funds%20withdrawal%20(automatic%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":39.621,"w":36.42300000000001,"clr":0,"A":"left","R":[{"T":"withdrawal)%20entry%20to%20my%20financial%20institution%20account%20designated%20above%20for%20payment%20of%20my%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":40.337,"w":32.02899999999999,"clr":0,"A":"left","R":[{"T":"Pennsylvania%20taxes%20owed%2C%20and%20(2)%20my%20financial%20institution%20to%20debit%20the%20entry%20to%20my%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":79.369,"y":19.197,"w":5.623,"clr":0,"A":"left","R":[{"T":"Formatted%3A","S":-1,"TS":[0,9.6732,1,0]}]},{"x":86.199,"y":19.197,"w":1.4869999999999999,"clr":0,"A":"left","R":[{"T":"List","S":-1,"TS":[0,9.6732,0,0]}]},{"x":88.321,"y":19.197,"w":4.793000000000001,"clr":0,"A":"left","R":[{"T":"Paragraph%2C","S":-1,"TS":[0,9.6732,0,0]}]},{"x":94.227,"y":19.197,"w":4.551,"clr":0,"A":"left","R":[{"T":"Numbered","S":-1,"TS":[0,9.6732,0,0]}]},{"x":99.859,"y":19.197,"w":0.728,"clr":0,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.367,"y":19.701,"w":2.607,"clr":0,"A":"left","R":[{"T":"Level%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":82.773,"y":19.701,"w":0.546,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,9.6732,0,0]}]},{"x":83.783,"y":19.701,"w":0.728,"clr":0,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,9.6732,0,0]}]},{"x":84.997,"y":19.701,"w":4.799,"clr":0,"A":"left","R":[{"T":"Numbering","S":-1,"TS":[0,9.6732,0,0]}]},{"x":90.938,"y":19.701,"w":2.552,"clr":0,"A":"left","R":[{"T":"Style%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":94.206,"y":19.701,"w":0.927,"clr":0,"A":"left","R":[{"T":"A%2C","S":-1,"TS":[0,9.6732,0,0]}]},{"x":95.626,"y":19.701,"w":0.9079999999999999,"clr":0,"A":"left","R":[{"T":"B%2C","S":-1,"TS":[0,9.6732,0,0]}]},{"x":97.03,"y":19.701,"w":0.9259999999999999,"clr":0,"A":"left","R":[{"T":"C%2C","S":-1,"TS":[0,9.6732,0,0]}]},{"x":98.45,"y":19.701,"w":0.8170000000000001,"clr":0,"A":"left","R":[{"T":"%E2%80%A6","S":-1,"TS":[0,9.6732,0,0]}]},{"x":99.768,"y":19.701,"w":0.728,"clr":0,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,9.6732,0,0]}]},{"x":100.983,"y":19.701,"w":2.1,"clr":0,"A":"left","R":[{"T":"Start","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.361,"y":20.205,"w":1.2069999999999999,"clr":0,"A":"left","R":[{"T":"at%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":81.141,"y":20.205,"w":0.546,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,9.6732,0,0]}]},{"x":82.151,"y":20.205,"w":0.728,"clr":0,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,9.6732,0,0]}]},{"x":83.365,"y":20.205,"w":4.731,"clr":0,"A":"left","R":[{"T":"Alignment%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":89.271,"y":20.205,"w":1.656,"clr":0,"A":"left","R":[{"T":"Left","S":-1,"TS":[0,9.6732,0,0]}]},{"x":91.582,"y":20.205,"w":0.728,"clr":0,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,9.6732,0,0]}]},{"x":92.797,"y":20.205,"w":3.213,"clr":0,"A":"left","R":[{"T":"Aligned","S":-1,"TS":[0,9.6732,0,0]}]},{"x":96.922,"y":20.205,"w":1.2069999999999999,"clr":0,"A":"left","R":[{"T":"at%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":99.079,"y":20.205,"w":2.372,"clr":0,"A":"left","R":[{"T":"0.25%22","S":-1,"TS":[0,9.6732,0,0]}]},{"x":102.177,"y":20.205,"w":0.728,"clr":0,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.357,"y":20.71,"w":2.9019999999999997,"clr":0,"A":"left","R":[{"T":"Indent","S":-1,"TS":[0,9.6732,0,0]}]},{"x":83.071,"y":20.71,"w":1.2069999999999999,"clr":0,"A":"left","R":[{"T":"at%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":85.227,"y":20.71,"w":1.82,"clr":0,"A":"left","R":[{"T":"0.5%22","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.369,"y":21.5,"w":5.623,"clr":0,"A":"left","R":[{"T":"Formatted%3A","S":-1,"TS":[0,9.6732,1,0]}]},{"x":86.199,"y":21.5,"w":3.256,"clr":0,"A":"left","R":[{"T":"Indent%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":90.325,"y":21.5,"w":1.8800000000000001,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[0,9.6732,0,0]}]},{"x":92.892,"y":21.5,"w":1.9460000000000002,"clr":0,"A":"left","R":[{"T":"line%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":95.835,"y":21.5,"w":1.82,"clr":0,"A":"left","R":[{"T":"0.5%22","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.369,"y":22.291,"w":5.623,"clr":0,"A":"left","R":[{"T":"Formatted%3A","S":-1,"TS":[0,9.6732,1,0]}]},{"x":86.199,"y":22.291,"w":3.256,"clr":0,"A":"left","R":[{"T":"Indent%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":90.325,"y":22.291,"w":2.005,"clr":0,"A":"left","R":[{"T":"Left%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":93.423,"y":22.291,"w":2.681,"clr":0,"A":"left","R":[{"T":"0.75%22%2C","S":-1,"TS":[0,9.6732,0,0]}]},{"x":97.257,"y":22.291,"w":1.218,"clr":0,"A":"left","R":[{"T":"No","S":-1,"TS":[0,9.6732,0,0]}]},{"x":99.02,"y":22.291,"w":2.9450000000000003,"clr":0,"A":"left","R":[{"T":"bullets","S":-1,"TS":[0,9.6732,0,0]}]},{"x":102.718,"y":22.291,"w":0.891,"clr":0,"A":"left","R":[{"T":"or","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.368,"y":22.795,"w":4.69,"clr":0,"A":"left","R":[{"T":"numbering","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.369,"y":31.006,"w":5.623,"clr":0,"A":"left","R":[{"T":"Formatted%3A","S":-1,"TS":[0,9.6732,1,0]}]},{"x":86.199,"y":31.006,"w":3.4530000000000003,"clr":0,"A":"left","R":[{"T":"Normal%2C","S":-1,"TS":[0,9.6732,0,0]}]},{"x":90.565,"y":31.006,"w":3.256,"clr":0,"A":"left","R":[{"T":"Indent%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":94.69,"y":31.006,"w":2.005,"clr":0,"A":"left","R":[{"T":"Left%3A","S":-1,"TS":[0,9.6732,0,0]}]},{"x":97.788,"y":31.006,"w":2.129,"clr":0,"A":"left","R":[{"T":"0.5%22%2C","S":-1,"TS":[0,9.6732,0,0]}]},{"x":100.971,"y":31.006,"w":1.218,"clr":0,"A":"left","R":[{"T":"No","S":-1,"TS":[0,9.6732,0,0]}]},{"x":79.367,"y":31.509999999999998,"w":2.9450000000000003,"clr":0,"A":"left","R":[{"T":"bullets","S":-1,"TS":[0,9.6732,0,0]}]},{"x":83.065,"y":31.509999999999998,"w":0.891,"clr":0,"A":"left","R":[{"T":"or","S":-1,"TS":[0,9.6732,0,0]}]},{"x":84.469,"y":31.509999999999998,"w":4.69,"clr":0,"A":"left","R":[{"T":"numbering","S":-1,"TS":[0,9.6732,0,0]}]}],"Fields":[],"Boxsets":[]},{"Height":49.5,"HLines":[],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#f1f1f1","x":75.75,"y":4.222,"w":29.429,"h":41.085,"clr":-1},{"x":24.685,"y":12.881,"w":16.639,"h":0.031,"clr":35},{"oc":"#ff0101","x":17.975,"y":20.538,"w":1.575,"h":0.031,"clr":-1},{"oc":"#ff0101","x":19.55,"y":20.538,"w":54.523,"h":0.031,"clr":-1},{"x":11.555,"y":19.412,"w":0.103,"h":1.444,"clr":0},{"oc":"#ff0101","x":20.543,"y":21.254,"w":53.068,"h":0.031,"clr":-1},{"x":11.555,"y":20.856,"w":0.103,"h":0.71,"clr":0},{"oc":"#ff0101","x":20.543,"y":21.964,"w":52.76,"h":0.031,"clr":-1},{"x":11.555,"y":21.565,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":22.68,"w":33.176,"h":0.031,"clr":-1},{"x":11.555,"y":22.281,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":23.396,"w":50.689,"h":0.031,"clr":-1},{"x":11.555,"y":22.997,"w":0.103,"h":0.716,"clr":0},{"oc":"#ff0101","x":20.543,"y":24.111,"w":17.444,"h":0.031,"clr":-1},{"x":11.555,"y":23.713,"w":0.103,"h":1.444,"clr":0},{"oc":"#ff0101","x":20.543,"y":25.556,"w":42.746,"h":0.031,"clr":-1},{"x":11.555,"y":25.157,"w":0.103,"h":1.444,"clr":0}],"Texts":[{"x":12.589,"y":7.768000000000001,"w":17.591,"clr":0,"A":"left","R":[{"T":"account.%20%20I%20also%20authorize%20the%20financial%20instit","S":-1,"TS":[0,12.96,0,0]}]},{"x":42.547,"y":7.768000000000001,"w":15.683000000000002,"clr":0,"A":"left","R":[{"T":"utions%20involved%20in%20the%20processing%20of%20my%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":8.484,"w":34.18999999999999,"clr":0,"A":"left","R":[{"T":"electronic%20payment%20of%20taxes%20to%20receive%20confidential%20information%20necessary%20to%20answer%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":9.2,"w":35.26999999999999,"clr":0,"A":"left","R":[{"T":"inquiries%20and%20resolve%20issues%20related%20to%20my%20payment.%20%20Under%20the%20terms%20of%20this%20authorization%2C%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":9.915,"w":15.486000000000006,"clr":0,"A":"left","R":[{"T":"I%20can%20revoke%20authorization%20by%20notifying%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":39.774,"y":9.915,"w":19.654999999999998,"clr":0,"A":"left","R":[{"T":"the%20Pennsylvania%20Department%20of%20Revenue%20no%20later%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":10.631,"w":34.568999999999996,"clr":0,"A":"left","R":[{"T":"than%20two%20business%20days%20prior%20to%20the%20payment%20date.%20%20I%20understand%20that%20notification%20must%20be%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":11.347,"w":20.236,"clr":0,"A":"left","R":[{"T":"made%20in%20writing%20by%20one%20of%20the%20following%20methods%3A%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.725,"y":12.063,"w":3.9369999999999994,"clr":0,"A":"left","R":[{"T":"Email%20to%20%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":24.435,"y":12.063,"w":0.771,"clr":35,"A":"left","R":[{"T":"ra","S":-1,"TS":[0,12.96,0,0]}]},{"x":25.771,"y":12.063,"w":0.333,"clr":35,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":26.335,"y":12.063,"w":5.660000000000001,"clr":35,"A":"left","R":[{"T":"achrevok%40pa.","S":-1,"TS":[0,12.96,0,0]}]},{"x":36.23,"y":12.063,"w":1.47,"clr":35,"A":"left","R":[{"T":"gov","S":-1,"TS":[0,12.96,0,0]}]},{"x":38.781,"y":12.063,"w":1.333,"clr":35,"A":"left","R":[{"T":"%2C%20or","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.725,"y":12.779,"w":4.0280000000000005,"clr":0,"A":"left","R":[{"T":"Fax%20to717","S":-1,"TS":[0,12.96,0,0]}]},{"x":24.641,"y":12.779,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":25.188,"y":12.779,"w":1.5,"clr":0,"A":"left","R":[{"T":"772","S":-1,"TS":[0,12.96,0,0]}]},{"x":27.773,"y":12.779,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[0,12.96,0,0]}]},{"x":28.321,"y":12.779,"w":2,"clr":0,"A":"left","R":[{"T":"4193","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":14.211,"w":33.910999999999994,"clr":0,"A":"left","R":[{"T":"I%20understand%20that%20if%20the%20Pennsylvania%20Department%20of%20Revenue%20does%20not%20receive%20full%20and%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":14.927,"w":22.19700000000001,"clr":0,"A":"left","R":[{"T":"timely%20payment%20of%20my%20tax%20liability%2C%20I%20will%20remain%20liable%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":50.387,"y":14.927,"w":2.808,"clr":0,"A":"left","R":[{"T":"for%20the%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":55.335,"y":14.927,"w":7.822,"clr":0,"A":"left","R":[{"T":"tax%20liability%20and%20all%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":15.642,"w":21.346999999999994,"clr":0,"A":"left","R":[{"T":"applicable%20interest%2C%20penalties%20and%20return%20item%20charges","S":-1,"TS":[0,12.96,0,0]}]},{"x":48.59,"y":15.642,"w":0.75,"clr":0,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":17.074,"w":2.658,"clr":0,"A":"left","R":[{"T":"NOTE","S":-1,"TS":[0,12.96,0,0]}]},{"x":17.16,"y":17.074,"w":30.521999999999984,"clr":0,"A":"left","R":[{"T":"%3A%20%20In%20some%20instances%2C%20your%20account%20will%20be%20debited%20on%20the%20business%20banking%20day","S":-1,"TS":[0,12.96,0,0]}]},{"x":12.589,"y":17.79,"w":11.219000000000003,"clr":0,"A":"left","R":[{"T":"following%20your%20authorization","S":-1,"TS":[0,12.96,0,0]}]},{"x":32.276,"y":17.79,"w":0.25,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":17.725,"y":19.95,"w":0.903,"clr":-1,"A":"left","R":[{"T":"C.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":19.95,"w":31.681000000000004,"clr":-1,"A":"left","R":[{"T":"The%20Federal%20Office%20of%20Foreign%20Assets%20Control%20is%20imposing%20additional%20reporting%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":20.666,"w":31.718999999999987,"clr":-1,"A":"left","R":[{"T":"requirements%20on%20electronic%20banking%20transactions%20directly%20involving%20a%20financial%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":21.376,"w":21.507,"clr":-1,"A":"left","R":[{"T":"institution%20outside%20of%20the%20territorial%20jurisdiction%20of%20the%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":56.892,"y":21.376,"w":1.522,"clr":-1,"A":"left","R":[{"T":"U.S","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":59.494,"y":21.376,"w":8.291,"clr":-1,"A":"left","R":[{"T":".%20These%20transactions%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":22.091,"w":4.175000000000001,"clr":-1,"A":"left","R":[{"T":"are%20called%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":27.345,"y":22.091,"w":0.278,"clr":-1,"A":"left","R":[{"T":"i","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":27.825,"y":22.091,"w":1.515,"clr":-1,"A":"left","R":[{"T":"nter","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":30.478,"y":22.091,"w":3.3820000000000006,"clr":-1,"A":"left","R":[{"T":"national%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":36.418,"y":22.091,"w":2.313,"clr":-1,"A":"left","R":[{"T":"ACH%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":40.424,"y":22.091,"w":0.278,"clr":-1,"A":"left","R":[{"T":"t","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":40.903,"y":22.091,"w":4.8210000000000015,"clr":-1,"A":"left","R":[{"T":"ransactions%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":49.052,"y":22.091,"w":2.624,"clr":-1,"A":"left","R":[{"T":"(IAT).","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":22.807,"w":29.146999999999984,"clr":-1,"A":"left","R":[{"T":"Presently%2C%20the%20Pennsylvania%20Department%20of%20Revenue%20does%20not%20support%20IAT%20","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":23.523,"w":10.331000000000003,"clr":-1,"A":"left","R":[{"T":"ACH%20Debit%20Transactions.","S":-1,"TS":[0,12.96,0,0]}]},{"oc":"#ff0101","x":20.293,"y":24.967,"w":25.346,"clr":-1,"A":"left","R":[{"T":"Please%20select%20the%20appropriate%20answer%20to%20the%20following%20question.","S":-1,"TS":[0,12.96,0,0]}]},{"x":20.293,"y":26.412,"w":26.652,"clr":0,"A":"left","R":[{"T":"Will%20the%20funds%20for%20this%20payment%20come%20from%20a%20bank%20account%20outside","S":-1,"TS":[0,12.96,0,0]}]},{"x":66.137,"y":26.412,"w":2.4850000000000003,"clr":0,"A":"left","R":[{"T":"of%20the%20","S":-1,"TS":[0,12.96,0,0]}]},{"x":20.293,"y":27.128,"w":1.754,"clr":0,"A":"left","R":[{"T":"U.S.","S":-1,"TS":[0,12.96,0,0]}]},{"x":23.323,"y":27.128,"w":4.91,"clr":0,"A":"left","R":[{"T":"%3F%20%20Yes%20or%20No","S":-1,"TS":[0,12.96,0,0]}]}],"Fields":[],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/f1040.pdf b/test/data/f1040.pdf deleted file mode 100644 index 2db52f8a..00000000 Binary files a/test/data/f1040.pdf and /dev/null differ diff --git a/test/data/f1040a.pdf b/test/data/f1040a.pdf deleted file mode 100644 index 37c6ac97..00000000 Binary files a/test/data/f1040a.pdf and /dev/null differ diff --git a/test/data/f1040ez.pdf b/test/data/f1040ez.pdf deleted file mode 100644 index 7c9de654..00000000 Binary files a/test/data/f1040ez.pdf and /dev/null differ diff --git a/test/data/f1040ezt.pdf b/test/data/f1040ezt.pdf deleted file mode 100644 index 54ba0acb..00000000 Binary files a/test/data/f1040ezt.pdf and /dev/null differ diff --git a/test/data/faqs.json b/test/data/faqs.json new file mode 100755 index 00000000..a3f5132b --- /dev/null +++ b/test/data/faqs.json @@ -0,0 +1,244 @@ +{ + "faqs": [ + { + "category_name":"General Overview", + "qna": [ + {"id": "1", "question":"What is Free File Fillable Forms?", + "answer": "

Free File Fillable Forms is a FREE forms-based tool enabling you to:

  • Self-select your <%=FEDORSTATE%> income tax forms and schedules
  • Fill in your tax information online
  • Perform basic mathematical calculations
  • Print your tax return for record keeping and filing
  • E-file your <%=FEDORSTATE%> income tax return

Free File Fillable Forms is the tool for you if you’re comfortable filling out the forms and schedules without software help or assistance. If you’re not comfortable with this method, you may want to consider choosing the traditional free file program.

This FREE, forms-based program allows taxpayers to choose the <%=FEDORSTATE%> income tax forms and schedules they need, fill in information, e-file and sign the return electronically and print a copy for record keeping. It is designed to be the simple electronic equivalent of paper forms. Unlike most tax software, it doesn’t ask about or explain tax situations. It performs only basic calculations and doesn’t have extensive error checking. Just like completing a paper return, you’ll be responsible for the input of most of the information on the return.

", + "fed": 1, "state": 1, "va":1}, + {"id": "2", "question":"How is Free File Fillable Forms different from tax software?", + "answer": "

Unlike most tax software, Free File Fillable Forms is a simple electronic equivalent of paper forms. It provides basic mathematical calculations and basic field error checking. It doesn’t ask about or explain tax situations, automatic calculations, or extensive error checking. The program provides forms for <%=FEDORSTATE%> taxes only, while most tax software provides federal and state.

", + "fed": 1, "state": 1, "va":1}, + {"id": "3", "question":"Can I use Free File Fillable Forms to prepare and e-file my <%=STATEORFED%> tax return?", + "answer": "

No. If you want to prepare and file your <%=STATEORFED%> income tax return, you may want to choose a Free File tax software program or look for other federal and state tax preparation and e-filing options.

", + "fed": 1, "state": 1, "va":1}, + {"id": "4", "question":"What are the qualifications to use Free File Fillable Forms?", + "answer": "

With Free File Fillable Forms, there are no limitations for income, age, location or any other criteria. Free File Fillable Forms provides forms that most individual taxpayers require to file their taxes. Note: Free File Fillable Forms is not intended to be used by paid preparers.

", + "fed": 1, "state": 0, "va":0}, + {"id": "4", "question":"What are the qualifications to use Free File Fillable Forms?", + "answer": "

With Free File Fillable Forms, there are no limitations for income, age, location or any other criteria. You must be a full year resident (not a part-year or nonresident) to use Free File Fillable Forms.

", + "fed": 0, "state": 1, "va":0}, + {"id": "4", "question":"What are the qualifications to use Free File Fillable Forms?", + "answer": "

With State Fillable Forms, there are no limitations for income, age, or location. However, there are some limitations if you plan to e-file your return. You can still use the program but you will have to print and mail in the return.

  • If you have more than three additions:
    • Enter Code 00 and the total additions on line 2b, SchADJ and attach an explanation of each addition
  • If you have more than two subtractions:
    • Enter Code 00 and the total subtractions on line 6b, SchADJ and attach an explanation of each subtraction
  • If you have more than three deductions:
    • Enter Code 000 and the total subtractions on line 8a, SchADJ and attach an explanation of each subtraction
  • If you have more than three voluntary contributions:
    • Enter Code 00 and the total additions on line 22a, SchADJ and attach an explanation of each addition.
  • If you have more than three public school or library contributions:
    • Enter Code 999999 and the total additions on line 23a, SchADJ and attach an explanation of each addition.
  • If you are claiming any of the nine credits that require supporting documentation to be mailed to the Department. Please see the Schedule CR instructions for details.
  • If you are claiming credits for taxes paid to another state on the Schedule OSC
", + "fed": 0, "state": 0, "va":1}, + {"id": "5", "question":"Is the Free File Fillable Forms program safe?", + "answer": "

Yes, your internet session and transmission of your <%=FEDORSTATE%> return will be encrypted in a secure environment.

", + "fed": 1, "state": 1, "va":1}, + {"id": "6", "question":"How long will this be available?", + "answer": "

Free File Fillable Forms will be available from January 28, 2014 through Oct 20, 2014. If you file for an extension, you will have until Oct. 15, 2014 to file your income tax return.

", + "fed": 1, "state": 1, "va":1}, + {"id": "7", "question":"What is the advantage over filling out a 'pencil and paper' return?", + "answer": "

Free File Fillable Forms allows taxpayers to complete their tax forms online, using the computer, and e-file over the internet. Unlike paper returns, Free File Fillable Forms provides basic math calculations and basic field validation checking. E-filed returns are typically processed by the IRS within 24-48 hours. Taxpayers receive their refunds in less time compared to pencil and paper returns.

", + "fed": 1, "state": 1, "va":1}, + {"id": "8", "question":"Can I use Free File Fillable Forms for filing a prior-year tax return?", + "answer": "

No! Only the current tax year forms are available in Free File Fillable Forms.

", + "fed": 1, "state": 1, "va":1}, + {"id": "9", "question":"Can I use Free File Fillable Forms to prepare and e-file a Federal Extension?", + "answer": "

Yes. You’ll need to file your extension, Form 4868, by April 15, 2014.

", + "fed": 1, "state": 0}, + {"id": "10", "question":"What forms are supported?", + "answer": "

Select the list of supported forms at the “View Supported Forms” link on the left hand navigation just under the 'About' link.

", + "fed": 1, "state": 1, "va":1}, + {"id": "11", "question":"Is it safe to use this from a public computer?", + "answer": "

Yes. If you are using a public computer, such as a public library computer or other shared computer, be sure to sign out and completely close the Free File Fillable Forms browser before leaving the computer.

", + "fed": 1, "state": 1, "va":1} + ] + }, + { + "category_name":"System Requirements", + "qna": [ + {"id": "1", "question":"What are the recommended browsers for using Free File Fillable Forms?", + "answer": "

Free File Fillable Forms will run best using any of the following browsers:

", + "fed": 1, "state": 1, "va":1}, + {"id": "2", "question":"What are the minimum computer requirements for using Free File Fillable Forms?", + "answer": "

Free File Fillable Forms is optimized for the following.

Processor

  • Windows: Pentium 4 3GHz or equivalent
  • Macintosh: PowerPC G5 2GHz or Intel-based processor

Oldest Supported Browser

(Actual version, not emulated)

Windows 8, 7, and Vista support:

  • Google Chrome 4.x
  • Mozilla Firefox 6.x
  • Safari 5.x
  • Microsoft Internet Explorer 10.x (on Windows 8)

Windows XP Service Pack 2 supports:

  • Google Chrome 4.x
  • Mozilla Firefox 6.x
  • Safari 5.x

Mac OS X 10.7 (Lion) supports:

  • Google Chrome 4.x
  • Mozilla Firefox 6.x
  • Safari 5.x

Mac OS X 10.6 (Snow Leopard) supports:

  • Google Chrome 4.x
  • Mozilla Firefox 6.x
  • Safari 5.x

Mac OS X 10.5 (Leopard) supports:

  • Google Chrome 4.x
  • Mozilla Firefox 6.x

Mac OS X 10.4 (Tiger) supports:

  • Mozilla Firefox 3.5.x

Important: Although older versions of Firefox may appear to function normally on OS X 10.4 and 10.5, we do not recommend using these browser/OS combinations due to potential security issues.


RAM

512 MB

Monitor

1024x768 or higher screen resolution

Internet Connection

High-speed connection

Other Software

Acrobat Reader 7.0+ (for printing)


* In your browser settings, set the language to default and enable JavaScript and cookies.

* Make sure any pop-up blockers are turned off.

* You will need a printer if you wish to print your return.

* You will need an email address.

", + "fed": 1, "state": 1, "va":1}, + {"id": "3", "question":"How do I allow pop-ups?", + "answer": "

See your browser’s Help for instructions on how to enable pop-ups.

", + "fed": 1, "state": 1, "va":1} + ] + }, + { + "category_name":"Your Fillable Forms Account", + "qna": [ + {"id": "1", "question":"What is the registration process for Free File Fillable Forms?", + "answer": "

You will create an account by providing your own user ID and password. You will use this information each time you sign in to your return. You will also enter your email address so that the IRS can notify you of errors and acknowledge receipt of the return. Once you establish an account, you will be sent a confirmation email with your user ID and password and a link to access the application.

", + "fed": 1, "state": 1, "va":1}, + {"id": "2", "question":"Why do I have to create a new account each year?", + "answer": "

The software providers do not retain your account information for subsequent years when using this product; therefore, if you used Free File Fillable Forms last year, you must create a new account this year.

", + "fed": 1, "state": 1, "va":1}, + {"id": "3", "question":"I didn't receive a confirmation email after my account was created. What should I do?", + "answer": "

If you didn’t receive a confirmation email when you created an account, it is possible that your spam filter is blocking the email. Check your email account for a spam folder, open it and look for an email from customer_service@freefilefillableforms.com. Each email program and spam filter differs; check with your email service provider for additional help. If you still haven’t received the email after this step, email the IRS. In your email, provide your username and the email address you used to create the account.

", + "fed": 1, "state": 0, "va":0}, + {"id": "3", "question":"I didn't receive a confirmation email after my account was created. What should I do?", + "answer": "

If you didn’t receive a confirmation email when you created an account, it is possible that your spam filter is blocking the email. Check your email account for a spam folder, open it and look for an email from customer_service@freefilefillableforms.com. Each email program and spam filter differs; check with your email service provider for additional help. If you still have not received the email after this step, contact the state to request help in resolving your issue.

", + "fed": 0, "state": 1, "va":1}, + {"id": "4", "question":"Why didn't I receive an acknowledgment email after I transmitted my return?", + "answer": "

Within 48 hours after you file your return using Free File Fillable Forms, you will receive an email letting you know your return has been accepted or rejected. If not, review the following:

  • Are you checking the right email account? Make sure you are checking the same email account you entered in Step 2 (the E-file Your Tax Forms screen) when you submitted your tax return.
  • Check your spam filter. If the email is in your spam filter, add customer_service@freefilefillableforms.com to your safe senders list to ensure that you receive future emails. Each email program and spam filter differs; check your email service provider for additional help.
  • If you still haven’t received an email, you can check your status by selecting the 'Get E-file Status' link on the left side of the page. Enter your Social Security Number and zip code that was on the e-filed return. If the program shows no status, then this means you have not e-filed your return.
", + "fed": 1, "state": 1, "va":1}, + {"id": "5", "question":"How do I change my current account information?", + "answer": "

To change your account information, click the ‘Update Account’ link on the upper right navigation bar. At this account screen, you will have four choices:

  • Change your user ID
  • Change your password
  • Change your security question
  • Change your email address

Click the appropriate link and follow the instructions to make the necessary changes. Click 'Update' when finished.

", + "fed": 1, "state": 1, "va":1}, + {"id": "6", "question":"How long will my account be active?", + "answer": "

A Free File Fillable Forms account is active through the extended filing due date, which varies each year but usually ends on Oct. 15th. Please refer to the form instructions for this year’s date. We encourage you to print a copy of your return after you have an accepted e-filed return.

", + "fed": 1, "state": 1, "va":1}, + {"id": "7", "question":"What if I forget my password, user ID or security questions?", + "answer": "

If you forget your password or user ID, you will be able to retrieve this information at the beginning of the program. Select the Sign In/Create an Account Link. Select the 'Forgot Username/Password?' link at the bottom left of the 'Sign in Screen.' If you forgot your User ID, you will be prompted to enter the email address you used when setting up your account. An email will be sent to you with your User ID. If you forgot your password, you will need to enter your User ID, and after answering your security question correctly, a new password will be emailed to you. If you are unable to recover your password because you do not remember your security question/answer, you will need to create a new account and start your return again from the beginning.

", "fed": 1, "state": 1, "va":1}, + {"id": "8", "question":"How do I access my account if I need to make a correction?", + "answer": "

Access your account by using the URL shown in your ‘New Account Confirmation’ email, which was sent when you created your account. Once you are on the provider's page, select ‘Sign In / Create an Account,’ and then enter your username and password on the next screen.

", "fed": 1, "state": 1, "va":1}, + {"id": "9", "question":"Can I use Free File Fillable Forms if I do not have an email address?", + "answer": "

No. In order to establish an account and to e-file a return, an email address is required. After e-filing, you will receive two emails. The first will acknowledge receipt of filing. The second email will have the return status from the IRS. Returns are either accepted or rejected. If the return is rejected, you will need to fix the issue that caused your return to reject. Either e-file again or print and file by mail.

", "fed": 1, "state": 1, "va":1}, + {"id": "10", "question":"Will I be able to access my completed <%=FEDORSTATE%> return after it has been accepted by the IRS?", + "answer": "

We encourage you to print a copy of your return after you have an accepted e-filed return. You can print and view your return through October 20, 2014.

", "fed": 1, "state": 1, "va":1}, + {"id": "11", "question":"How secure is my information?", + "answer": "

All your tax information entered in Free File Fillable Forms is protected with industry-standard security or greater. When you e-file, the transaction is encrypted with the same technology used by banks to protect online transactions. This means that your information is protected from any unauthorized access while it is sent to the IRS.

", "fed": 1, "state": 1, "va":1}, + {"id": "12", "question":"Do you sell any of my information to other companies?", + "answer": "

No. For more information, you may read the Free File Alliance LLC privacy policy by clicking the ‘Privacy Statement’ link at the bottom of the page.

", "fed": 1, "state": 0}, + {"id": "22", "question":"Do you sell any of my information to other companies?", + "answer": "

No. The information entered in State Fillable Forms will not be sold or marketed to any companies.

", + "fed": 0, "state": 1, "va":1}, + {"id": "13", "question":"Where is my data stored?", + "answer": "

All tax data is stored in the secure Free File Fillable Forms database.

", + "fed": 1, "state": 1, "va":1}, + {"id": "14", "question":"What happens if I start a return but don't come back and finish it?", + "answer": "

No matter when you start your tax return, it will be accessible in the Free File Fillable Forms system until the extended filing due date. This varies each year, and this year it is October 15, 2014. Afterward, it will be removed from the database, and your return will not be filed or e-filed.

", "fed": 1, "state": 1, "va":1}, + {"id": "15", "question":"I haven’t e-filed my Free File Fillable Forms return. How can I delete my data?", + "answer": "

You can delete your data by selecting the 'Start Over' option and then signing out of the return. This will clear any data previously entered in your tax return.

", "fed": 1, "state": 1, "va":1} + + ] + }, + { + "category_name":"Preparing and E-filing Your Return", + "qna": + [ + {"id": "1", "question":"What do I need before starting?", + "answer": "

  • A copy of your completed Federal tax return.
  • A copy of your 2012 state tax return.
  • All income and tax statements you received for 2013, such as Forms W-2, W-2G, 1099-G, 1099-INT, 1099-MISC, 1099-R, and any other income statements.
  • Your 2013 estimated tax payment amounts, if any.
  • Your bank account information to get your refund by direct deposit or to electronically pay any taxes owed.

", "fed": 1, "state": 1, "va":1}, + {"id": "2", "question":"How do I navigate through the program?", + "answer": "

Once you are in the Free File Fillable Forms product:

  • You will use two basic elements: buttons and tabs. You will see an 'Add' button next to any line that has a form associated with it. Click the 'Add' button to add that form into your return. You can click on the tabs to fill out the forms or to e-file
  • To view the list of forms you want to add, click the ‘Add/View Forms’ button at the top of the screen. This will open a window on the left side of your screen. Next click on the ‘Add a Form’ button. You will be able to see all of the available forms in the pop-up window. Click on the form you want to add. You will see the list of forms that you have added in the ‘My Tax Forms’ window.
", "fed": 1, "state": 1, "va":1}, + {"id": "3", "question":"When should I click the 'Do the math' button?", + "answer": "

The 'Do the math' button runs minimal calculations for you. Make sure to click 'Do the math' after you complete each section of a form. If you're unable to enter information into a certain field, the field is calculated for you.

", "fed": 1, "state": 1, "va":1}, + {"id": "4", "question":"Should I round the dollar amounts that I enter?", + "answer": "

No. The Free File Fillable Forms program does the rounding for you.

", "fed": 1, "state": 1, "va":1}, + {"id": "5", "question":"Should I include dashes, dollar signs, commas or text with my data entries?", + "answer": "

No. Exclude all dashes, dollar signs, commas and text.

", "fed": 1, "state": 1, "va":1}, + {"id": "6", "question":"Why are some fields automatically calculated, but others require manual data entry?", + "answer": "

Fields that can be calculated with simple math are calculated. If the calculation is conditional on other information you have entered, like filing status, the field is not calculated and must be entered manually.

", "fed": 1, "state": 1, "va":1}, + {"id": "7", "question":"How do I know which fields automatically calculate?", + "answer": "

Automatically calculated fields will not allow data entry. When you click in the field, a round circle with a line through it will indicate that the field is automatically calculated.

", "fed": 1, "state": 1, "va":1}, + {"id": "8", "question":"May I make changes after I have entered all of my information?", + "answer": "

Yes. After you have entered all the information, you can still go back and make corrections, as long as your return hasn't been e-filed and accepted.

", "fed": 1, "state": 1, "va":1}, + {"id": "9", "question":"How do I attach a new form or schedule to my return?", + "answer": "

To attach a form or schedule to your return:

  • Click the ‘Add’ button located at the line where the information from that form will go.
  • Input the information into the form or schedule, and use the ‘Do the Math’ button when necessary.
  • Click 'Done with this Form' when finished.

The form will now be attached to your tax return. To check which forms you currently have attached, click the 'Add/View Forms' button in the upper right corner, and a list of all of the forms that you currently have attached will display.

", "fed": 1, "state": 1, "va":1}, + {"id": "10", "question":"How do I enter information from more than one W-2 or 1099?", + "answer": "

If you have more than one W-2 or 1099 reporting income you received, you can add multiple W-2 or 1099 forms when you prepare your return for e-filing. On the ‘Step 2, E-File Your Tax Forms’ page, click the ‘Add’ button next to the information about entering W-2s and 1099s. At the bottom of the window that will appear, click the appropriate ‘Add another’ button for: Form W-2 - Wage and Tax Statement, Form W-2G, Form 1099-G, Form 1099-MISC, or Form 1099-R.

", "fed": 1, "state": 1, "va":1}, + {"id": "11", "question":"How do I write in additional information on my return?", + "answer": "

The program is designed so that you can enter a piece of information (called a literal per the instructions) in the shaded area to the left of the field on forms 1040, 1040A and 1040EZ. Some lines have one shaded box, and only a text value can be entered in this field. Some lines have two shaded boxes, the first for the text value and the second for the amount related to the text value.

The program is enabled for e-filing for users who have one literal on a line (whether it only has text or has text and related amounts). If your return requires you to have multiple literals on a single line (either multiple text-only fields or multiple text and amount fields) or if you have a literal that is required on a form other than forms 1040, 1040A and 1040EZ, then you will not be able to e-file using this program.

", + "fed": 1, "state": 0}, + {"id": "12", "question":"Will my existing entries be lost if I start over because I chose the wrong main form?", + "answer": "Yes. If you think you chose the wrong main form, you can start over with a new form by selecting 'Start Over.'' However, you will lose all information entered on all of the forms, not just the main form.", + "fed": 1, "state": 0, "va":0}, + {"id": "12", "question":"Will my existing entries be lost if I start over because I chose the wrong main form?", + "answer": "If your state has more than one form, and you think you chose the wrong one, you can start over with a new form by selecting 'Start Over.'' However, you will lose all information entered on all of the forms, not just the main form.", + "fed": 0, "state": 1, "va":1}, + {"id": "13", "question":"I closed the 'My Tax Forms' area on the left. How do I get it back?", + "answer": "

Click the 'Add/View Forms' button at the top of your screen.

", + "fed": 1, "state": 1, "va":1}, + {"id": "14", "question":"What do the page references on the form refer to? How do I get there?", + "answer": "

The page references on the forms refer to specific pages in the instruction booklet that accompanies each main form. These instructions are available by clicking the 'Instructions for this Form' button at the bottom of the screen.

", + "fed": 1, "state": 1, "va":1}, + {"id": "15", "question":"What do the different colors mean?", + "answer": "

Green text indicates information you have input, and blue text indicates input that is calculated based on information you previously entered.

", + "fed": 1, "state": 1, "va":1}, + {"id": "16", "question":"Why am I unable to enter information into a field?", + "answer": "

If you are unable to enter information in a certain field, it means that the field is calculated for you. Select the 'Do the Math' button to run the calculations. Another possibility is that the form related to that field is not supported in Free File Fillable Forms. If a field you need is not supported, then you will not be able to use this product to prepare and file your return.

", + "fed": 1, "state": 1, "va":1}, + {"id": "17", "question":"What if I enter the wrong data?", + "answer": "

If you make an error such as entering the wrong data from a statement, simply go back, delete the wrong information and enter the correct information. If the form is no longer needed, you can select the 'Delete this Form' button at the bottom of the screen to delete the form and the related information.

", + "fed": 1, "state": 1, "va":1}, + {"id": "18", "question":"I selected a radio button on one of my forms, and now I cannot undo it.", + "answer": "

If you select a radio button on one of the forms and find you cannot 'uncheck' it, just double click on the selected radio button.

", + "fed": 1, "state": 1, "va":1}, + {"id": "19", "question":"If I do not have to report a Form W-2, but I have other income that I need to report, may I still use Free File Fillable Forms?", + "answer": "

Yes, but at the screen that reads, ‘Step 2, E-File Your Tax Forms,’ you may skip the requirement to add a Form W-2.

", + "fed": 1, "state": 1, "va":1}, + {"id": "20", "question":"Can I save my return and finish it later?", + "answer": "

Yes. Your data is automatically saved as you work through your return in Free File Fillable Forms. If you take a break, be sure to sign out of your return. When you sign back in, your data will be how you left it.

", + "fed": 1, "state": 1, "va":1}, + {"id": "21", "question":"Will I be able to view my actual return before I e-file it?", + "answer": "

Yes. Before e-filing your return, we encourage you to print it out and review your data to make certain all information is complete and accurate. This simple precaution will help you avoid mistakes that may delay your refund or result in correspondence.

", + "fed": 1, "state": 1, "va":1}, + {"id": "22", "question":"Why is the ‘E-file Now’ button on the ‘Step 2’ tab gray?", + "answer": "

The ‘E-file Now’ button is gray when it is deactivated. The button will remain deactivated until all required information on the forms is complete. Click the “Electronic Filing Instructions” button located at the bottom of Step 2 in order to see a complete list of required information.

", + "fed": 1, "state": 1, "va":1}, + {"id": "23", "question":"How do I know if my return was sent?", + "answer": "

You will receive an email within 48 hours, confirming that the taxing authority received your return.

", + "fed": 1, "state": 1, "va":1}, + {"id": "24", "question":"Do I need to do anything else after transmitting my return?", + "answer": "

Yes, you should track your return to make sure the IRS accepts it. If you entered a valid email address when you created your account in Free File Fillable Forms, you will receive acknowledgement of successful transmission and then acknowledgment that the IRS accepted or rejected your return. You can also view the status of your return by returning to the Free File Fillable Forms program and clicking the ‘Get E-file Status’ link from the left-hand navigation on the home page.

", + "fed": 1, "state": 1, "va":1} + + + ] + }, + + { + "category_name":"Printing Your Fillable Forms Return", + "qna": + [ + {"id": "1", "question":"I forgot to print my return before I e-filed. Can I get a copy?", + "answer": "

Yes, you can return to your account and print your return any time prior to October 20, 2014. Print buttons are on the top and bottom of the page.

", + "fed": 1, "state": 1, "va":1}, + {"id": "2", "question":"If I am not able to print my return, what should I do?", + "answer": "

Check your system requirements and compare them to the system requirements given. Make sure your browser's pop-up blocker is disabled.

You must also have Adobe Acrobat Reader 7.0 version or higher installed to view the instructions and print your return.

You can also save a copy of the return to your computer and then print the saved copy.

", + "fed": 1, "state": 1, "va":1}, + {"id": "3", "question":"Do I have to pay to e-file or print my return?", + "answer": "

No, e-filing and printing your Free File Fillable Form is free.

", + "fed": 1, "state": 1, "va":1}, + {"id": "4", "question":"What if I can't or don't want to e-file? Can I just print my return and mail it in?", + "answer": "

Yes, Free File Fillable Forms supports both e-filing and printing your return to mail.

", + "fed": 1, "state": 1, "va":1}, + {"id": "5", "question":"Can I save a copy of my return onto my computer?", + "answer": "

Yes. You must change your default printer to Adobe PDF, Microsoft Image Writer or another program that will allow you to save your return. We always recommend you have a printed copy in case you have computer problems later.

", + "fed": 1, "state": 1, "va":1}, + {"id": "6", "question":"Why do the forms that print out look different from what I see on the screen?", + "answer": "

Computer-generated forms frequently differ from what you see on the screen and from what you may be used to seeing. What prints out is accurate even though it does not look like what you are used to. This is because of requirements that are needed for tax forms that are created using software.

", + "fed": 1, "state": 1, "va":1} + ] + }, + + { + "category_name":"Additional Help", + "qna": + [ + {"id": "1", "question":"If I need help with a form entry, what should I do?", + "answer": "

You can refer to specific instructions for the relevant form, schedule or publication. Click on the ‘Instructions for this Form’ button at the bottom of the page.

", + "fed": 1, "state": 1, "va":1}, + {"id": "2", "question":"How do I contact technical support?", + "answer": "

Taxpayers who need help signing in, accessing tax returns or who experience technical difficulties with Free File Fillable Forms can contact the IRS Web Site Help Desk at irs.gov.website.helpdesk@speedymail.com.

", + "fed": 1, "state": 0, "va":0} + ] + }, + + { + "category_name":"Return Corrections, Rejections and Errors", + "qna": + [ + {"id": "1", "question":"I discovered a mistake after I e-filed. Can I get my return back?", + "answer": "

Once your return is accepted, you will not be able to make changes to it. If you need to make a change, you will need to file an amended return. If your return is rejected, you can come back to the program to fix any errors and resubmit your return.

", + "fed": 1, "state": 1, "va":1}, + {"id": "2", "question":"Who is responsible if there are errors on the return?", + "answer": "

It is your responsibility to enter all information completely and accurately. Before you begin, be sure you have all of the information you will need to complete your return. Verify all information on your return before submitting it.

", + "fed": 1, "state": 1, "va":1}, + {"id": "3", "question":"What are some tips for avoiding common errors?", + "answer": "

Make sure:

  • Your Social Security Number or Employee Identification Number contains the proper number of digits.
  • You do not enter invalid characters.
  • The date and telephone number fields are formatted correctly and do not contain invalid characters.
  • Your email address is correct.
  • Your deduction and exemption amounts have been calculated.
  • All of your tax information has been entered before going to Step 2 to e-file your tax forms.
  • Your address on the return is a valid mailing address according to the US Postal Service. If your post office does not deliver mail to your street address and you have a P.O. Box, your P.O. Box is your mailing address.
  • You have reconciled the <%=FEDORSTATE%> withholding reported on your return to the amounts entered in Step 2 (see section 3 of Step 2).
  • You have properly entered any 2013 estimated payments, 2013 extension payments, or a carryover of an overpayment from 2012 that you applied to 2013.

Check your return before you e-file to make sure all information you entered is complete and accurate. This simple precaution will help you avoid mistakes that can delay your refund or result in correspondence from the taxing authority.

", + "fed": 1, "state": 1, "va":1}, + {"id": "4", "question":"What are some common reasons for ‘Transmission Failed Errors?’", + "answer": "

This type of error means that the return was not transmitted to the IRS because of certain problems such as missing or incorrect information. The most common reasons for this type of transmission failure are:

  • Missing address (including street, city, state and ZIP code)
  • Missing name
  • Missing Social Security Number (SSN)
  • Missing bank information for direct debit or direct deposit (routing number, account number)

Go back to your tax return and make sure that all of this information is complete and accurate, and then transmit the return again. If you are unable to resolve this error, print the return and file by mail. For more information about where you should mail your return, see the ‘Instructions for this Form’ button.

", + "fed": 1, "state": 1, "va":1}, + {"id": "5", "question":"What if my return is rejected by the <%=DEPTNAME%>?", + "answer": "

E-filed returns can be rejected for many reasons. If your return is rejected by the IRS, your return has not been filed. Resolve the issue that caused the rejection, and e-file again. If you are unable to resolve the issue or choose not to e-file, you will need to print the return and file it by mail. See the ‘Instructions for this Form’ button to mail your return.

", + "fed": 1, "state": 1, "va":1} + ] + } + ] +} \ No newline at end of file diff --git a/test/data/fd/availability.json b/test/data/fd/availability.json new file mode 100755 index 00000000..e3e5d029 --- /dev/null +++ b/test/data/fd/availability.json @@ -0,0 +1,260 @@ +{ + "formset": [ + { + "id": "S2013FDD", + "version": "0.1.1", + "agency": "fd", + "main": "F1040EZ", + "display_name": "Form 1040EZ", + "forms": [ + {"id": "F1040EZ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1040V", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1310", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1310S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4868", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8379", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8453", "planned_date":"02-13-14", "actual_date": "02-13-14"}, + {"id": "F8888", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F9465", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FES1", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES2", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES3", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES4", "planned_date":"02-26-14", "actual_date": "02-26-14"} + ] + }, + { + "id": "S2013FDD", + "version": "0.1.1", + "agency": "fd", + "main": "F1040A", + "display_name": "Form 1040A", + "forms": [ + {"id": "F1040A", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FDEPENDA", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FES1", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES2", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES3", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES4", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "F1040V", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHB", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHB2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHB3", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHEIC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHR", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1310", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1310S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2120", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2210", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2210AI", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2439", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2441", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4868", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8379", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8453", "planned_date":"02-13-14", "actual_date": "02-13-14"}, + {"id": "F8606T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8606S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8615", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8812", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8815", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8862", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8863", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8863P2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8880", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8888", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8917", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F9465", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + }, + { + "id": "S2013FDD", + "version": "0.1.1", + "agency": "fd", + "main": "F1040", + "display_name": "Form 1040", + "forms": [ + {"id": "F1040", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FDEPEND", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FES1", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES2", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES3", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "FES4", "planned_date":"02-26-14", "actual_date": "02-26-14"}, + {"id": "F1040V", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHA", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHB", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHB2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHB3", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4562C", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6198C", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8829", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHCEZT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHCEZS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHD", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHE1", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHE2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4562E", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6198E", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHEIC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHF", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4562F", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6198F", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHHT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHHS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHJ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHR", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHSEST", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHSESS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHSELT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "FSCHSELS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F982", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1116", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1310", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1310S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2106", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2106S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2106EZ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2106EZS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2120", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2210", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2210AI", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2210F", "planned_date":"02-13-14", "actual_date": "02-13-14"}, + {"id": "F2439", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2441", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2441DEP", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2555EZ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F2555EZS", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F255512T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F25553T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F255512S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F25553S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F3468", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F3800", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F3800MLT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F3903", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4136", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4137T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4137S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4255", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4684", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F46842", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F46843", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4797", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F47972", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4835", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4562R", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6198R", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4868", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4952", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4972T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F4972S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F5329T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F5329S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F5405", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F5695", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F5884", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F6251", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6252", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F6478", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6765", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6765P2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F6781", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + + {"id": "F8082", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8275", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8275R", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8283", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8379", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8396", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8453", "planned_date":"02-13-14", "actual_date": "02-13-14"}, + {"id": "F8582", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8582W15", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8582W6", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8582CR", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8586", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8594", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8606T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8606S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8609A", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8611", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8615", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8689", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8697", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8801", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8812", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8814", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8815", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8820", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8824", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8826", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8828", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8833", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8834", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8839", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8844", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8845", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8846", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8853", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F88532", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8859", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8862", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8863", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8863P2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8864", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8874", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8880", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8881", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8882", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8885T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8885S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8886", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8888", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8889T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8889S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8891", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8903", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8906", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8907", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8908", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8909", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8910", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8911", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8917", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8919T", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8919S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8931", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8932", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8933", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8936", "planned_date":"02-13-14", "actual_date": "02-13-14"}, + + {"id": "F8938", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8941", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8941S", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + + {"id": "F8949ST", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8949LT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8959", "planned_date":"02-13-14", "actual_date": "02-13-14"}, + {"id": "F8960", "planned_date":"02-13-14", "actual_date": "02-13-14"}, + {"id": "F9465", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + } + ] +} \ No newline at end of file diff --git a/test/data/fd/form/F1040.content.txt b/test/data/fd/form/F1040.content.txt new file mode 100755 index 00000000..89ac3dea --- /dev/null +++ b/test/data/fd/form/F1040.content.txt @@ -0,0 +1,631 @@ +Enter additional dependents +Form +1040 +Department of the Treasury—Internal Revenue Service +OMB No. 1545-0074 +(99) +IRS Use Only—Do not write or staple in this space. +U.S. Individual Income Tax Return +20 +13 +For the year Jan. 1–Dec. 31, 2013, or other tax year beginning +, 2013, ending +, 20 +See separate instructions. +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse's social security number +c +Make sure the SSN(s) above +and on line 6c are correct. +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +City, town or post office. If you have a foreign address, also complete spaces below (see instructions). +Foreign country name +Foreign province/state/county +Foreign postal code +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 +Spouse +Filing Status +Check only one +box. +1 +Single +2 +Married filing jointly (even if only one had income) +3 +Married filing separately. Enter spouse’s SSN above +and full name here. +a +4 +Head of household (with qualifying person). (See instructions.) If +the qualifying person is a child but not your dependent, enter this +child’s name here. +a +5 +Qualifying widow(er) with dependent child +Exemptions +6a +Yourself. +If someone can claim you as a dependent, + do not +check box 6a +..... +b +Spouse +} +c +Dependents: +(1) + First name +Last name +(2) +Dependent’s + +social security number +(3) + Dependent’s + +relationship to you +(4) + + +if child under age 17 +qualifying for child tax credit +(see instructions) +If more than four +dependents, see +instructions and +check here +a +d +Total number of exemptions claimed +................. +Boxes checked +on 6a and 6b +No. of children +on 6c who: +• +lived with you +• +did not live with +you due to divorce +or separation + +(see instructions) +Dependents on 6c +not entered above +Add numbers on +lines above +a +Income +Attach Form(s) +W-2 here. Also +attach Forms +W-2G and +1099-R if tax +was withheld. +If you did not +get a W-2, +see instructions. +7 +Wages, salaries, tips, etc. Attach Form(s) W-2 +............ +7 +8a Taxable +interest. Attach Schedule B if required +............ +8a +interest. +Do not +include on line 8a . . . +8b +Ordinary dividends. Attach Schedule B if required +........... +9a +b +Qualified dividends +........... +9b +10 +Taxable refunds, credits, or offsets of state and local income taxes +...... +10 +11 +Alimony received +..................... +11 +12 +Business income or (loss). Attach Schedule C or C-EZ +.......... +12 +13 +Capital gain or (loss). Attach Sch D. If not required, check here +a +13 +14 +Other gains or (losses). Attach Form 4797 +.............. +14 +IRA distributions . +15a +b +Taxable amount . . . +15b +Pensions and annuities +16a +b +Taxable amount . . . +16b +17 +Rental real estate, royalties, partnerships, S corporations, trusts, etc. Attach Schedule E +17 +18 +Farm income or (loss). Attach Schedule F +.............. +18 +19 +Unemployment compensation +................. +19 +Social security benefits +20a +b +Taxable amount . . . +20b +21 +Other income. List type and amount +21 +22 +Combine the amounts in the far right column for lines 7 through 21. This is your +total income +a +22 +Adjusted +Gross +Income +23 +Educator expenses +.......... +23 +24 +Certain business expenses of reservists, performing artists, and +fee-basis government officials. Attach Form 2106 or 2106-EZ +24 +25 +Health savings account deduction. Attach Form 8889 . +25 +26 +Moving expenses. Attach Form 3903 +...... +26 +27 +Deductible part of self-employment tax. Attach Schedule SE . +27 +28 +Self-employed SEP, SIMPLE, and qualified plans . . +28 +29 +Self-employed health insurance deduction +.... +29 +30 +Penalty on early withdrawal of savings +...... +30 +Alimony paid +b +Recipient’s SSN +a +31a +32 +IRA deduction +............. +32 +33 +Student loan interest deduction (see instructions) +33 +34 +Tuition and fees. Attach Form 8917 +....... +34 +35 +Domestic production activities deduction. Attach Form 8903 +35 +36 +Add lines 23 through 35 +................... +36 +37 +Subtract line 36 from line 22. This is your +adjusted gross income + ..... +a +37 +For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 11320B +Form +1040 + (2013) +9a + +15a + +16a + +20a + +31a + +and SSN +First +Last +First +Last +b Tax-exempt +. . +ZIP code +State +----------------Page (0) Break---------------- +Form 1040 (2013) +Page +2 +Tax and +Credits + +38 +Amount from line 37 (adjusted gross income) +.............. +38 +39a +Check +if: +{ +You + were born before January 2, 1949, +Blind. +Spouse + was born before January 2, 1949, +Blind. +} +Total boxes +checked + + +a +39a +b +If your spouse itemizes on a separate return or you were a dual-status alien, check here + +a +39b +Standard +Deduction +for- +• People who +check any +box on line +39a or 39b +or +who can be +claimed as a +dependent, +see +instructions. +• All others: +Single or +Married filing +separately, +$6,100 +Married filing +jointly or +Qualifying +widow(er), +$12,200 +Head of +household, +$8,950 +(from Schedule A) +or +your +standard deduction +(see left margin) . . +40 +41 +Subtract line 40 from line 38 +................... +41 + +If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions + +42 +Subtract line 42 from line 41. If line 42 is more than line 41, enter -0- . . +43 +44 +Tax +Check if any from: +a +Form(s) 8814 +b +c +44 +45 Alternative minimum tax +(see instructions). Attach Form 6251 +45 +46 +Add lines 44 and 45 +..................... +a +46 +47 +Foreign tax credit. Attach Form 1116 if required +.... +47 +48 +Credit for child and dependent care expenses. Attach Form 2441 +48 +49 +Education credits from Form 8863, line 19 +..... +49 +50 +Retirement savings contributions credit. Attach Form 8880 +50 +51 +Child tax credit. Attach Schedule 8812, if required +... +51 +52 +Residential energy credits. Attach Form 5695 +.... +52 +53 +Other credits from Form: +a +3800 +b +8801 +c +53 +54 +Add lines 47 through 53. These are your +total credits +............ +54 +55 +Subtract line 54 from line 46. If line 54 is more than line 46, enter -0- +...... +a +55 +Other +Taxes +56 +Self-employment tax. Attach Schedule SE +56 +57 +Unreported social security and Medicare tax from Form: +a +4137 +b +8919 . . +57 +58 +Additional tax on IRAs, other qualified retirement plans, etc. Attach Form 5329 if required . . +58 +59a +59a +b +59b +Household employment taxes from Schedule H +First-time homebuyer credit repayment. Attach Form 5405 if required . . . . . . . . +60 +Taxes from: +a +Form 8959 +b +Form 8960 +c +Instructions; enter code(s) +60 +61 +Add lines 55 through 60. This is your +total tax +............. + + +a +61 +Payments +62 +Federal income tax withheld from Forms W-2 and 1099 . . +62 +63 +2013 estimated tax payments and amount applied from 2012 return +63 +If you have a +qualifying +child, attach +Schedule EIC. +64a Earned income credit (EIC) +.......... +64a +b +Nontaxable combat pay election +64b +65 +Additional child tax credit. Attach Schedule 8812 . . . . . +65 +66 +American opportunity credit from Form 8863, line 8 +.... +66 +67 +Reserved . . . . . . . . . . . . . . . . +67 +68 +Amount paid with request for extension to file +..... +68 +69 +Excess social security and tier 1 RRTA tax withheld + .... +69 +70 +Credit for federal tax on fuels. Attach Form 4136 . . . . +70 +71 +Credits from Form: +a +2439 +b +Reserved +c +8885 +d +71 +72 +Add lines 62, 63, 64a, and 65 through 71. These are your +total payments +..... + + +a +72 +Refund +Direct deposit? +See +instructions. +73 +If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you +overpaid +73 +74a +Amount of line 73 you want +refunded to you. + If Form 8888 is attached, check here +a +74a +a +a +b +Routing number +a + +c +Type: +Checking + +Savings +d +Account number +75 +Amount of line 73 you want +applied to your 2014 estimated tax + +a +75 +Amount +You Owe +76 Amount you owe. + Subtract line 72 from line 61. For details on how to pay, see instructions + +a +76 +77 +Estimated tax penalty (see instructions) +....... +77 +Third Party +Designee +Do you want to allow another person to discuss this return with the IRS (see instructions)? +Yes. +Complete below. +No +Designee’s +name +a +Phone +no. +a +Personal identification +number (PIN) +a +Sign +Here +Joint return? See +instructions. +Keep a copy for +your records. +Your signature +Date +Your occupation +Daytime phone number +Spouse’s signature. If a joint return, +both +must sign. +F +Date +Spouse’s occupation +If the IRS sent you an Identity Protection +PIN, enter it +here (see inst.) +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer’s signature +Date +Check if +self-employed + PTIN +Firm’s name +a +Firm’s address +a +Firm's EIN +a +Phone no. +Form +1040 +(2013) +Click "Do the math" +(see instructions). +Taxpayer 8885 +Spouse 8885 +Taxpayer Sch H +Spouse Sch H +Taxpayer Copy 5329 +Spouse Copy 5329 +Taxpayer 4137 +Spouse 4137 +Taxpayer 8919 +Spouse 8919 +Taxpayer +Spouse +Spouse +before calculating tax. +Amount +Form 2439 +40 + +Itemized deductions +42 + +Exemptions. +43 + +Taxable income. +Form 4972 + +Taxpayer +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, they are true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F1040.fields.json b/test/data/fd/form/F1040.fields.json new file mode 100755 index 00000000..2f0ba88e --- /dev/null +++ b/test/data/fd/form/F1040.fields.json @@ -0,0 +1 @@ +[{"id":"PECY","type":"box","calc":false,"value":""},{"id":"SECY","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"L6A","type":"box","calc":false,"value":""},{"id":"L6B","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_1_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_2_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_3_","type":"box","calc":false,"value":""},{"id":"DEPSX","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_4_","type":"box","calc":false,"value":""},{"id":"L13X","type":"box","calc":false,"value":""},{"id":"INJUR","type":"alpha","calc":false,"value":""},{"id":"DECE","type":"alpha","calc":false,"value":""},{"id":"FY","type":"date","calc":false,"value":""},{"id":"FYE","type":"date","calc":false,"value":""},{"id":"FYEYR","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"MI","type":"mask","calc":false,"value":""},{"id":"LNAM","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"SNAM","type":"alpha","calc":false,"value":""},{"id":"SMI","type":"mask","calc":false,"value":""},{"id":"SLNM","type":"alpha","calc":false,"value":""},{"id":"SSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"CNAM","type":"alpha","calc":false,"value":""},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"SPNM","type":"alpha","calc":false,"value":""},{"id":"SPLNM","type":"alpha","calc":false,"value":""},{"id":"SPFNR","type":"alpha","calc":false,"value":""},{"id":"SPLNR","type":"alpha","calc":false,"value":""},{"id":"N6AB","type":"number","calc":true,"value":""},{"id":"N6C1","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_1_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_2_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_2_","type":"alpha","calc":false,"value":""},{"id":"N6C2","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_3_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_3_","type":"alpha","calc":false,"value":""},{"id":"N6C3","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_4_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_4_","type":"alpha","calc":false,"value":""},{"id":"Add_FDEPEND","type":"link","calc":false,"value":""},{"id":"N6E","type":"number","calc":true,"value":""},{"id":"L7W","type":"alpha","calc":false,"value":""},{"id":"L7WAMT","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"Add_SchB","type":"link","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"Add_SchB","type":"link","calc":false,"value":""},{"id":"F8814T1","type":"alpha","calc":false,"value":""},{"id":"F8814A","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"F8814T2","type":"alpha","calc":false,"value":""},{"id":"F8814A2","type":"number","calc":false,"value":""},{"id":"QUALDIVS","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"F8814LIT","type":"alpha","calc":false,"value":""},{"id":"F8814AMT","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"Add_F4797","type":"link","calc":false,"value":""},{"id":"L14W","type":"alpha","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"QCD","type":"mask","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"L16A","type":"number","calc":false,"value":""},{"id":"PSO","type":"mask","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"Add_SCHE","type":"link","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"Add_SCHF","type":"link","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19T1","type":"mask","calc":false,"value":""},{"id":"L19T2","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20AMOD","type":"number","calc":false,"value":""},{"id":"L20LSE","type":"mask","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"OTHINC_L21DESC_1_","type":"alpha","calc":false,"value":""},{"id":"OTHINC_L21DAMT_1_","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"BUSEXP","type":"number","calc":false,"value":""},{"id":"HSA","type":"number","calc":false,"value":""},{"id":"Add_F3909","type":"link","calc":false,"value":""},{"id":"L26T","type":"alpha","calc":false,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L29W","type":"alpha","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"A586_RSSN_1_","type":"ssn","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"Add_F8917","type":"link","calc":false,"value":""},{"id":"L32C","type":"number","calc":false,"value":""},{"id":"Add_F8903","type":"link","calc":false,"value":""},{"id":"DPAD","type":"number","calc":false,"value":""},{"id":"L32T","type":"alpha","calc":false,"value":""},{"id":"L32W","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":true,"value":""},{"id":"L35A1","type":"box","calc":false,"value":""},{"id":"L35A2","type":"box","calc":false,"value":""},{"id":"L35A3","type":"box","calc":false,"value":""},{"id":"L35A4","type":"box","calc":false,"value":""},{"id":"L35BB","type":"box","calc":false,"value":""},{"id":"L40BA","type":"box","calc":false,"value":""},{"id":"L40BB","type":"box","calc":false,"value":""},{"id":"BX962","type":"box","calc":false,"value":""},{"id":"L49BA","type":"box","calc":false,"value":""},{"id":"L49BC","type":"box","calc":false,"value":""},{"id":"L49BD","type":"box","calc":false,"value":""},{"id":"F4137BX","type":"box","calc":false,"value":""},{"id":"F8919BX","type":"box","calc":false,"value":""},{"id":"BX8959","type":"box","calc":true,"value":""},{"id":"BX8960","type":"box","calc":true,"value":""},{"id":"BXOTHTAX","type":"box","calc":false,"value":""},{"id":"L64BA","type":"box","calc":false,"value":""},{"id":"BX8885","type":"box","calc":true,"value":""},{"id":"L64FM","type":"box","calc":true,"value":""},{"id":"F8888","type":"box","calc":true,"value":""},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCC"},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCS"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDY"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"N35A","type":"number","calc":true,"value":""},{"id":"A507","type":"link","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":true,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"L39","type":"number","calc":true,"value":""},{"id":"Add_F8814","type":"link","calc":false,"value":""},{"id":"AMT8814","type":"number","calc":false,"value":""},{"id":"Add_F4972T","type":"link","calc":false,"value":""},{"id":"Add_F4972S","type":"link","calc":false,"value":""},{"id":"L40FM","type":"number","calc":false,"value":""},{"id":"L40T","type":"alpha","calc":false,"value":""},{"id":"L40W","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"Add_F6251","type":"link","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"L42","type":"number","calc":true,"value":""},{"id":"Add_F1116","type":"link","calc":false,"value":""},{"id":"L43","type":"number","calc":false,"value":""},{"id":"Add_F2441","type":"link","calc":false,"value":""},{"id":"L44","type":"number","calc":true,"value":""},{"id":"Add_F8863_Line19","type":"link","calc":false,"value":""},{"id":"L46","type":"number","calc":true,"value":""},{"id":"Add_F8880","type":"link","calc":false,"value":""},{"id":"RSCCRED","type":"number","calc":true,"value":""},{"id":"L47","type":"number","calc":false,"value":""},{"id":"Add_F5695","type":"link","calc":false,"value":""},{"id":"RESENRGY","type":"number","calc":true,"value":""},{"id":"Add_F3800","type":"link","calc":false,"value":""},{"id":"Add_F8801","type":"link","calc":false,"value":""},{"id":"L49FM","type":"alpha","calc":false,"value":""},{"id":"L49","type":"number","calc":false,"value":""},{"id":"L50","type":"number","calc":true,"value":""},{"id":"L51","type":"number","calc":true,"value":""},{"id":"Add_SchSET","type":"link","calc":false,"value":""},{"id":"Add_SchSES","type":"link","calc":false,"value":""},{"id":"L52T","type":"alpha","calc":false,"value":""},{"id":"L52","type":"number","calc":false,"value":""},{"id":"L53","type":"number","calc":false,"value":""},{"id":"Add_F4137T","type":"link","calc":false,"value":""},{"id":"Add_F4137S","type":"link","calc":false,"value":""},{"id":"Add_F8919T","type":"link","calc":false,"value":""},{"id":"Add_F8919S","type":"link","calc":false,"value":""},{"id":"L54","type":"number","calc":false,"value":""},{"id":"Add_F5329T","type":"link","calc":false,"value":""},{"id":"Add_F5329S","type":"link","calc":false,"value":""},{"id":"L54W","type":"alpha","calc":false,"value":""},{"id":"Add_SchHT","type":"link","calc":false,"value":""},{"id":"Add_SchHS","type":"link","calc":false,"value":""},{"id":"L56","type":"number","calc":false,"value":""},{"id":"Add_F5405","type":"link","calc":false,"value":""},{"id":"FTHCR","type":"number","calc":false,"value":""},{"id":"L57T","type":"alpha","calc":false,"value":""},{"id":"L57W","type":"number","calc":false,"value":""},{"id":"L57","type":"number","calc":true,"value":""},{"id":"L58","type":"number","calc":false,"value":""},{"id":"L59W","type":"alpha","calc":false,"value":""},{"id":"L59S","type":"number","calc":false,"value":""},{"id":"L59","type":"number","calc":false,"value":""},{"id":"L60C","type":"mask","calc":false,"value":""},{"id":"L60","type":"number","calc":false,"value":""},{"id":"NTCOMBAT","type":"number","calc":false,"value":""},{"id":"Add_F8812","type":"link","calc":false,"value":""},{"id":"L62","type":"number","calc":true,"value":""},{"id":"Add_F8863","type":"link","calc":false,"value":""},{"id":"HOPE","type":"number","calc":true,"value":""},{"id":"L63","type":"number","calc":false,"value":""},{"id":"L61","type":"number","calc":false,"value":""},{"id":"A577","type":"link","calc":false,"value":""},{"id":"F4136AMT","type":"number","calc":true,"value":""},{"id":"L64","type":"number","calc":true,"value":""},{"id":"Add_F2439","type":"link","calc":false,"value":""},{"id":"Add_F8885T","type":"link","calc":false,"value":""},{"id":"L64W","type":"alpha","calc":false,"value":""},{"id":"L64A","type":"number","calc":false,"value":""},{"id":"Add_F8885S","type":"link","calc":false,"value":""},{"id":"L65T","type":"alpha","calc":false,"value":""},{"id":"L65W","type":"number","calc":false,"value":""},{"id":"L65","type":"number","calc":false,"value":""},{"id":"L66","type":"number","calc":true,"value":""},{"id":"A552","type":"link","calc":false,"value":""},{"id":"L67A","type":"number","calc":true,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCNO","type":"mask","calc":false,"value":""},{"id":"L68","type":"number","calc":false,"value":""},{"id":"L69","type":"number","calc":true,"value":""},{"id":"L70","type":"number","calc":false,"value":""},{"id":"DESNAM","type":"alpha","calc":false,"value":""},{"id":"DESPH","type":"phone","calc":false,"value":""},{"id":"DESPIN","type":"mask","calc":false,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"DTPHO","type":"phone","calc":false,"value":""},{"id":"SOCC","type":"alpha","calc":false,"value":""},{"id":"IDTHEFT","type":"mask","calc":false,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"PNAM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F1040.json b/test/data/fd/form/F1040.json new file mode 100755 index 00000000..e07fc697 --- /dev/null +++ b/test/data/fd/form/F1040.json @@ -0,0 +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 diff --git a/test/data/fd/form/F1040A.content.txt b/test/data/fd/form/F1040A.content.txt new file mode 100755 index 00000000..03f6cbab --- /dev/null +++ b/test/data/fd/form/F1040A.content.txt @@ -0,0 +1,449 @@ +Form +1040A +2013 +U.S. Individual Income Tax Return +Department of the Treasury—Internal Revenue Service +IRS Use Only—Do not write or staple in this space. + (99) +OMB No. 1545-0074 +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse's social security number +c +Make sure the SSN(s) above +and on line 6c are correct. +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +City, town or post office. If you have a foreign address, also complete spaces below (see instructions). +Foreign country name +Foreign province/state/county +Foreign postal code +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 +Spouse +Filing +status +Check only +one box. +1 +Single +2 +Married filing jointly (even if only one had income) +3 +Married filing separately. Enter spouse’s SSN above and +full name here. +a +4 +Head of household (with qualifying person). +(See instructions.) + +If the qualifying person is a child but not your dependent, +enter this child’s name here. +a +5 +Qualifying widow(er) with dependent child +(see instructions) +Exemptions +6a +Yourself. +If someone can claim you as a dependent, +do not +check +box 6a. +b +Spouse +} +c +Dependents: +(1) +First name + +Last name +(2) +Dependent’s social + +security number +(3) +Dependent’s + +relationship to + +you +(4) + + +if + child under +age 17 qualifying for +child tax credit (see +instructions) +If more than six +dependents, see +instructions. +d +Total number of exemptions claimed. +Boxes +checked on +6a and 6b +No. of children +on 6c who: +• +lived with +you +• +did not live + +with you due + +to +divorce or + +separation + +(see +instructions) +Dependents +on 6c not +entered above +Add numbers +on lines +above +a +Income +Attach +Form(s) W-2 +here. Also +attach +Form(s) +1099-R if tax +was +withheld. +If you did not +get a W-2, see +instructions. + + +7 +Wages, salaries, tips, etc. Attach Form(s) W-2. +7 +8a +Taxable +interest. Attach Schedule B if required. +8a +b Tax-exempt +interest. + Do not +9a +Ordinary dividends. Attach Schedule B if required. +9a +b +Qualified dividends (see instructions). +9b +10 +Capital gain distributions (see instructions). +10 +11 a +IRA +distributions. 11a +11b +Taxable amount +(see instructions). 11b +12 a +Pensions and +annuities. 12a +12b +Taxable amount +(see instructions). 12b +13 +Unemployment compensation and Alaska Permanent Fund dividends. 13 +14 a +Social security +benefits. 14a +14b +Taxable amount +(see instructions). +14b +15 +Add lines 7 through 14b (far right column). This is your +total income. +a +15 +Adjusted +gross +income +16 +Educator expenses (see instructions). +16 +17 +IRA deduction (see instructions). +17 +18 +Student loan interest deduction (see instructions). +18 +19 +Tuition and fees. Attach Form 8917. +19 +20 +Add lines 16 through 19. These are your +total adjustments. +20 +21 +Subtract line 20 from line 15. This is your +adjusted gross income. + +a +21 +For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 11327A +Form +1040A +(2013) +include on line 8a. 8b +State +ZIP code +----------------Page (0) Break---------------- +Form 1040A (2013) +Page +2 +Tax, credits, +and +payments +22 +Enter the amount from line 21 (adjusted gross income). 22 +23 +a +Check +if: +{ +You + were born before January 2, 1949, +Blind +Spouse + was born before January 2, 1949, +Blind +} +Total boxes +checked +a +23a +b +If you are married filing separately and your spouse itemizes +deductions, check here + +a +23b +Standard +Deduction +for- +• People who +check any +box on line +23a or 23b +or +who can be +claimed as a +dependent, +see +instructions. +• All others: +Single or +Married filing +separately, +$6,100 +Married filing +jointly or +Qualifying +widow(er), +$12,200 +Head of +household, +$8,950 +24 +Enter your +standard deduction. +25 +Subtract line 24 from line 22. If line 24 is more than line 22, enter -0-. 25 +26 Exemptions. +Multiply $3,900 by the number on line 6d. +26 +27 +Subtract line 26 from line 25. If line 26 is more than line 25, enter -0-. +This is your +taxable income. + +a +27 +28 Tax, +including any alternative minimum tax (see instructions). 28 +29 +Credit for child and dependent care expenses. Attach +Form 2441. 29 +30 +Credit for the elderly or the disabled. Attach +Schedule R. +30 +31 +Education credits from Form 8863, line 19. 31 +32 +Retirement savings contributions credit. Attach +Form 8880. 32 +33 +Child tax credit. Attach Schedule 8812, if required. 33 +34 +Add lines 29 through 33. These are your +total credits. +34 +35 +Subtract line 34 from line 28. If line 34 is more than line 28, enter -0-. This is +your +total tax. +35 +36 +Federal income tax withheld from Forms W-2 and +1099. 36 +37 +2013 estimated tax payments and amount applied +from 2012 return. 37 +If you have +a qualifying +child, attach +Schedule +EIC. +38a Earned income credit (EIC). +38a +b +Nontaxable combat pay +election. 38b +39 +Additional child tax credit. Attach Schedule 8812. +39 +40 +American opportunity credit from Form 8863, line 8. 40 +41 +Add lines 36, 37, 38a, 39, and 40. These are your +total payments. + +a +41 +Refund + +Direct +deposit? +See +instructions +and fill in +43b, 43c, +and 43d or +Form 8888. +42 +If line 41 is more than line 35, subtract line 35 from line 41. +This is the amount you +overpaid. +42 +43a +Amount of line 42 you want +refunded to you. +If Form 8888 is attached, check here +a +43a +a +b +Routing +number +a + +c + Type: +Checking +Savings +a +d +Account +number +44 +Amount of line 42 you want +applied to your + +2014 estimated tax. +44 +Amount +you owe +45 Amount you owe. +Subtract line 41 from line 35. For details on how to pay, +see instructions. +a +45 +46 +Estimated tax penalty (see instructions). 46 +Third party +designee +Do you want to allow another person to discuss this return with the IRS (see instructions)? +Yes. + Complete the following. +No +Designee’s +name +a +Phone +no. +a +Personal identification +number (PIN) +a +Sign +here + + +Joint return? +See instructions. +Keep a copy +for your records. +Under penalties of perjury, I declare that I have examined this return and accompanying schedules and statements, and to the be +st of my knowledge +and belief, they are true, correct, and accurately list all amounts and sources of income I received during the tax year. Decla +ration of preparer (other +than the taxpayer) is based on all information of which the preparer has any knowledge. +F +Your signature +Date +Your occupation +Daytime phone number +Spouse’s signature. If a joint return, +both + must sign. +Date +Spouse’s occupation +If the IRS sent you an Identity Protection +PIN, enter it +here (see inst.) +Paid +preparer +use only +Print/type preparer's name +Preparer’s signature +Date +Check +a + +if +self-employed +PTIN +Firm's name +a +Firm's address +a +Firm's EIN +a +Phone no. +Form +1040A + (2013) +24 +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F1040A.fields.json b/test/data/fd/form/F1040A.fields.json new file mode 100755 index 00000000..a191be9c --- /dev/null +++ b/test/data/fd/form/F1040A.fields.json @@ -0,0 +1 @@ +[{"id":"PECY","type":"box","calc":false,"value":""},{"id":"SECY","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"L6A","type":"box","calc":false,"value":""},{"id":"L6B","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_1_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_2_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_3_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_4_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_5_","type":"box","calc":false,"value":""},{"id":"DEPEND_L6C5_6_","type":"box","calc":false,"value":""},{"id":"INJUR","type":"alpha","calc":false,"value":""},{"id":"DECE","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"MI","type":"mask","calc":false,"value":""},{"id":"LNAM","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"SNAM","type":"alpha","calc":false,"value":""},{"id":"SMI","type":"mask","calc":false,"value":""},{"id":"SLNM","type":"alpha","calc":false,"value":""},{"id":"SSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"CNAM","type":"alpha","calc":false,"value":""},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"SPNM","type":"alpha","calc":false,"value":""},{"id":"SPLNM","type":"alpha","calc":false,"value":""},{"id":"N6AB","type":"number","calc":true,"value":""},{"id":"SPNR","type":"alpha","calc":false,"value":""},{"id":"SPLNR","type":"alpha","calc":false,"value":""},{"id":"N6C1","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_1_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_1_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_2_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_2_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_2_","type":"alpha","calc":false,"value":""},{"id":"N6C2","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_3_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_3_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_4_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_4_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C1_5_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_5_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_5_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_5_","type":"alpha","calc":false,"value":""},{"id":"N6C3","type":"number","calc":false,"value":""},{"id":"DEPEND_L6C1_6_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C2_6_","type":"alpha","calc":false,"value":""},{"id":"DEPEND_L6C3_6_","type":"ssn","calc":false,"value":""},{"id":"DEPEND_L6C4_6_","type":"alpha","calc":false,"value":""},{"id":"Add_FDEPEND","type":"link","calc":true,"value":""},{"id":"N6E","type":"number","calc":true,"value":""},{"id":"L7W","type":"alpha","calc":false,"value":""},{"id":"L7WAMT","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"Add_SchB","type":"link","calc":true,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"Add_SchB","type":"link","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"QUALDIVS","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11A","type":"number","calc":false,"value":""},{"id":"QCD","type":"mask","calc":false,"value":""},{"id":"L11B","type":"number","calc":false,"value":""},{"id":"L12A","type":"number","calc":false,"value":""},{"id":"PSO","type":"mask","calc":false,"value":""},{"id":"L12B","type":"number","calc":false,"value":""},{"id":"L13T1","type":"mask","calc":false,"value":""},{"id":"L13T2","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14AMOD","type":"number","calc":false,"value":""},{"id":"L14LSE","type":"mask","calc":false,"value":""},{"id":"L14B","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"EDUCEXP","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"Add_F8917","type":"link","calc":false,"value":""},{"id":"TUITION","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L21A1","type":"box","calc":false,"value":""},{"id":"L21A2","type":"box","calc":false,"value":""},{"id":"L21A3","type":"box","calc":false,"value":""},{"id":"L21A4","type":"box","calc":false,"value":""},{"id":"L21B","type":"box","calc":false,"value":""},{"id":"FM8888","type":"box","calc":true,"value":""},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCC"},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCS"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDY"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"N21A","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L26T","type":"mask","calc":false,"value":""},{"id":"L26W","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"Add_F2441","type":"link","calc":true,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"Add_SchR","type":"link","calc":true,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"Add_F8863","type":"link","calc":true,"value":""},{"id":"L29","type":"number","calc":true,"value":""},{"id":"Add_F8880","type":"link","calc":true,"value":""},{"id":"RSCCRED","type":"number","calc":true,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L37B1","type":"ssn","calc":false,"value":""},{"id":"L37B2","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":false,"value":""},{"id":"Add_FSCHEIC","type":"link","calc":true,"value":""},{"id":"L38W","type":"mask","calc":false,"value":""},{"id":"L38A","type":"number","calc":false,"value":""},{"id":"NTCOMBAT","type":"number","calc":false,"value":""},{"id":"SST1","type":"alpha","calc":false,"value":""},{"id":"Add_F8812","type":"link","calc":false,"value":""},{"id":"L39","type":"number","calc":true,"value":""},{"id":"SST2","type":"number","calc":false,"value":""},{"id":"Add_F8863","type":"link","calc":true,"value":""},{"id":"HOPE","type":"number","calc":true,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"Add_F8888","type":"link","calc":false,"value":""},{"id":"L42A","type":"number","calc":true,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCNO","type":"mask","calc":false,"value":""},{"id":"L43","type":"number","calc":false,"value":""},{"id":"L44","type":"number","calc":true,"value":""},{"id":"L45","type":"alpha","calc":false,"value":""},{"id":"DESNAM","type":"alpha","calc":false,"value":""},{"id":"DESPH","type":"phone","calc":false,"value":""},{"id":"DESPIN","type":"mask","calc":false,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"DTPHO","type":"phone","calc":false,"value":""},{"id":"SOCC","type":"alpha","calc":false,"value":""},{"id":"IDTHEFT","type":"mask","calc":false,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"PNAM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F1040A.json b/test/data/fd/form/F1040A.json new file mode 100755 index 00000000..654e77b4 --- /dev/null +++ b/test/data/fd/form/F1040A.json @@ -0,0 +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 diff --git a/test/data/fd/form/F1040EZ.content.txt b/test/data/fd/form/F1040EZ.content.txt new file mode 100755 index 00000000..2d58af1e --- /dev/null +++ b/test/data/fd/form/F1040EZ.content.txt @@ -0,0 +1,305 @@ +Form +1040EZ +Department of the Treasury—Internal Revenue Service +Income Tax Return for Single and +Joint Filers With No Dependents +(99) +2013 +OMB No. 1545-0074 +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse's social security number +c +Make sure the SSN(s) +above are correct. +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +City, town or post office. If you have a foreign address, also complete spaces below (see instructions). +Foreign country name +Foreign province/state/county +Foreign postal code +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 +Spouse +Income +Attach +Form(s) W-2 +here. +Enclose, but do +not attach, any +payment. +1 +Wages, salaries, and tips. This should be shown in box 1 of your Form(s) W-2. +Attach your Form(s) W-2. +1 +2 +Taxable interest. If the total is over $1,500, you cannot use Form 1040EZ. +2 +3 +Unemployment compensation and Alaska Permanent Fund dividends (see instructions). +3 +4 +Add lines 1, 2, and 3. This is your +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 +Spouse +If no one can claim you (or your spouse if a joint return), enter $10,000 if +single; + +$20,000 if +married filing jointly. +See back for explanation. +5 +6 +Subtract line 5 from line 4. If line 5 is larger than line 4, enter -0-. +This is your +taxable income. +a +6 +Payments, +Credits, +and Tax +7 +Federal income tax withheld from Form(s) W-2 and 1099. +7 +8a Earned income credit (EIC) +(see instructions). +8a +b +Nontaxable combat pay election. +8b +9 +Add lines 7 and 8a. These are your +total payments and credits. +a +9 +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. +10 +11a +If line 9 is larger than line 10, subtract line 10 from line 9. This is your +refund. +If Form 8888 is attached, check here +a +11a +Refund +Have it directly +deposited! See +instructions and +fill in 11b, 11c, +and 11d or +Form 8888. +a +b +Routing number +a + +c + Type: +Checking +Savings +a +d +Account number +Amount +You Owe +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. + +a +12 +Third Party +Designee +Do you want to allow another person to discuss this return with the IRS (see instructions)? +Yes. + Complete below. +No +Designee’s +name +a +Phone +no. +a +Personal identification +number (PIN) +a +Sign +Here +Joint return? See +instructions. +Keep a copy for +your records. +on all information of which the preparer has any knowledge. +F +Your signature +Date +Your occupation +Daytime phone number +Spouse’s signature. If a joint return, +both + must sign. +Date +Spouse’s occupation +If the IRS sent you an Identity Protection +PIN, enter it +here (see inst.) +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer’s signature +Date +Check if +self-employed + PTIN +Firm’s name +a +Firm’s address +a +Firm's EIN +a +Phone no. +For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see instructions. +Cat. No. 11329W +Form +1040EZ + (2013) +Click "Do the math" before calculating tax. +adjusted gross income. +4 +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 +accurately lists all amounts and sources of income I received during the tax year. Declaration of preparer (other than the taxpayer) is based +State + +ZIP code +----------------Page (0) Break---------------- +Form 1040EZ (2013) +Page +2 +Use this form +if +• Your filing status is single or married filing jointly. If you are not sure about your filing status, see instructions. +• 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 +January 1, 1949, you are considered to be age 65 at the end of 2013. +• You do not claim any dependents. For information on dependents, see Pub. 501. +• Your taxable income (line 6) is less than $100,000. +• You do not claim any adjustments to income. For information on adjustments to income, use the TeleTax topics listed under +Adjustments to Income + at +www.irs.gov/taxtopics + (see instructions). +• 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 +any tax. You do not need a qualifying child to claim the EIC. For information on credits, use the TeleTax topics listed under +Tax Credits + at +www.irs.gov/taxtopics + (see instructions). If you received a Form 1098-T or paid higher education expenses, you +may be eligible for a tax credit or deduction that you must claim on Form 1040A or Form 1040. For more information on tax +benefits for education, see Pub. 970. +• You had only wages, salaries, tips, taxable scholarship or fellowship grants, unemployment compensation, or Alaska +Permanent Fund dividends, and your taxable interest was not over $1,500. But if you earned tips, including allocated tips, that + +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 +planning to use Form 1040EZ for a child who received Alaska Permanent Fund dividends, see instructions. +Filling in your +return +If you received a scholarship or fellowship grant or tax-exempt interest income, such as on municipal bonds, see the +instructions before filling in the form. Also, see the instructions if you received a Form 1099-INT showing federal income tax +withheld or if federal income tax was withheld from your unemployment compensation or Alaska Permanent Fund dividends. +For tips on +how to avoid +common +mistakes, see +instructions. +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 +report all your taxable interest, including interest from banks, savings and loans, credit unions, etc., even if you do not get + a +Form 1099-INT. +Worksheet +for Line 5 „ +Dependents +Who Checked +One or Both +Boxes +(keep a copy for +your records) +Use this worksheet to figure the amount to enter on line 5 if someone can claim you (or your spouse if married +filing jointly) as a dependent, even if that person chooses not to do so. To find out if someone can claim you as a +dependent, see Pub. 501. +A. +Amount, if any, from line 1 on front +...... + ++ +350.00 +Enter total + +a +A . +B. +Minimum standard deduction +..................... +B . +C. +Enter the +larger +of line A or line B here +.................. +C . +D. +Maximum standard deduction. If +single, +enter $6,100; if +married filing jointly, +enter $12,200 +. +D . +E. +Enter the +smaller +of line C or line D here. This is your standard deduction +........ +E . +F. +Exemption amount. +• If single, enter -0-. +• If married filing jointly and — +—both you and your spouse can be claimed as dependents, enter -0-. +—only one of you can be claimed as a dependent, enter $3,900. +} +F . +G. +Add lines E and F. Enter the total here and on line 5 on the front +.......... +G . +If you did not check any boxes on line 5, + enter on line 5 the amount shown below that applies to you. +• Single, enter $10,000. This is the total of your standard deduction ($6,100) and your exemption ($3,900). +• Married filing jointly, enter $20,000. This is the total of your standard deduction ($12,200), your exemption ($3,900), and +your spouse's exemption ($3,900). +Mailing +Return +Mail your return by +April 15, 2014. +Mail it to the address shown on the last page of the instructions. +Form +1040EZ + (2013) +1,000 +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F1040EZ.fields.json b/test/data/fd/form/F1040EZ.fields.json new file mode 100755 index 00000000..c6e1f4ca --- /dev/null +++ b/test/data/fd/form/F1040EZ.fields.json @@ -0,0 +1 @@ +[{"id":"PECY","type":"box","calc":false,"value":""},{"id":"SECY","type":"box","calc":false,"value":""},{"id":"DXT","type":"box","calc":false,"value":""},{"id":"DXS","type":"box","calc":false,"value":""},{"id":"F8888","type":"box","calc":true,"value":""},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCC"},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCS"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDY"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDN"},{"id":"INJUR","type":"alpha","calc":false,"value":""},{"id":"DECE","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"MI","type":"mask","calc":false,"value":""},{"id":"LNAM","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"SNAM","type":"alpha","calc":false,"value":""},{"id":"SMI","type":"mask","calc":false,"value":""},{"id":"SLNM","type":"alpha","calc":false,"value":""},{"id":"SSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"L1T","type":"alpha","calc":false,"value":""},{"id":"LSCL1T","type":"number","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2W","type":"mask","calc":false,"value":""},{"id":"L2WA","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3T1","type":"alpha","calc":false,"value":""},{"id":"L3T2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8W","type":"mask","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"NTCOMBAT","type":"number","calc":false,"value":""},{"id":"L9W","type":"alpha","calc":false,"value":""},{"id":"L9WA","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"Add_F8888","type":"link","calc":false,"value":""},{"id":"L11A","type":"number","calc":true,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCNO","type":"mask","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"DESNAM","type":"alpha","calc":false,"value":""},{"id":"DESPH","type":"phone","calc":false,"value":""},{"id":"DESPIN","type":"mask","calc":false,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"DTPHO","type":"phone","calc":false,"value":""},{"id":"SOCC","type":"alpha","calc":false,"value":""},{"id":"IDTHEFT","type":"mask","calc":false,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"PNAM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F1040EZ.json b/test/data/fd/form/F1040EZ.json new file mode 100755 index 00000000..e469b024 --- /dev/null +++ b/test/data/fd/form/F1040EZ.json @@ -0,0 +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 diff --git a/test/data/fd/form/F1040ST.content.txt b/test/data/fd/form/F1040ST.content.txt new file mode 100755 index 00000000..46ef4450 --- /dev/null +++ b/test/data/fd/form/F1040ST.content.txt @@ -0,0 +1,1094 @@ +DO NOT FILE +July 26, 2013 +DRAFT AS OF +Form +1040 +Department of the Treasury—Internal Revenue Service +OMB No. 1545-0074 +(99) +IRS Use Only—Do not write or staple in this space. +U.S. Individual Income Tax Return +20 +13 +For the year Jan. 1–Dec. 31, 2013, or other tax year beginning +, 2013, ending +, +See separate instructions. +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse’s social security number +▲ +Make sure the SSN(s) above +and on line 6c are correct. +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +City, town or post office, state, and ZIP code. If you have a foreign address, also complete spaces below (see instructions). +Foreign country name +Foreign province/state/county +Foreign postal code +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 +Spouse +Filing Status +Check only one +box. +1 +Single +2 +Married filing jointly (even if only one had income) +3 +Married filing separately. Enter spouse’s SSN above +and full name here. +▶ +4 +Head of household (with qualifying person). (See instructions.) If +the qualifying person is a child but not your dependent, enter this +child’s name here. +▶ +5 +Qualifying widow(er) with dependent child +Exemptions +6 +a +Yourself. +If someone can claim you as a dependent, + do not +check box 6a +. +. +. +. +. +b +Spouse +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +} +c +Dependents: +(1) + First name + +Last name +(2) +Dependent’s + +social security number +(3) + Dependent’s + +relationship to + +you +(4) +✓ + +if child under age 17 +qualifying for child tax credit + +(see instructions) +If more than four +dependents, see +instructions and +check here +▶ +d +Total number of exemptions claimed +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +Boxes checked +on 6a and 6b +No. of children +on 6c who: +• +lived with you +• +did not live with + +you due to divorce + +or separation + +(see instructions) +Dependents on 6c +not entered above +Add numbers on +lines above +▶ +Income +Attach Form(s) +W-2 here. Also +attach Forms +W-2G and +1099-R if tax +was withheld. +If you did not +get a W-2, +see instructions. +7 +Wages, salaries, tips, etc. Attach Form(s) W-2 +. +. +. +. +. +. +. +. +. +. +. +. +7 +8 +a +Taxable +interest. Attach Schedule B if required +. +. +. +. +. +. +. +. +. +. +. +. +8a +b +Tax-exempt +interest. +Do not +include on line 8a +. +. +. +8b +9 +a +Ordinary dividends. Attach Schedule B if required +. +. +. +. +. +. +. +. +. +. +. +9a +b +Qualified dividends +. +. +. +. +. +. +. +. +. +. +. +9b +10 +Taxable refunds, credits, or offsets of state and local income taxes +. +. +. +. +. +. +10 +11 +Alimony received +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +11 +12 +Business income or (loss). Attach Schedule C or C-EZ +. +. +. +. +. +. +. +. +. +. +12 +13 +Capital gain or (loss). Attach Schedule D if required. If not required, check here +▶ +13 +14 +Other gains or (losses). Attach Form 4797 +. +. +. +. +. +. +. +. +. +. +. +. +. +. +14 +15 +a +IRA distributions +. +15a +b +Taxable amount +. +. +. +15b +16 +a +Pensions and annuities +16a +b +Taxable amount +. +. +. +16b +17 +Rental real estate, royalties, partnerships, S corporations, trusts, etc. Attach Schedule E +17 +18 +Farm income or (loss). Attach Schedule F +. +. +. +. +. +. +. +. +. +. +. +. +. +. +18 +19 +Unemployment compensation +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +19 +20 +a +Social security benefits +20a +b +Taxable amount +. +. +. +20b +21 +Other income. List type and amount +21 +22 +Combine the amounts in the far right column for lines 7 through 21. This is your +total income + +▶ +22 +Adjusted +Gross +Income +23 +Educator expenses +. +. +. +. +. +. +. +. +. +. +23 +24 +Certain +business +expenses +of +reservists, +performing +artists, +and +fee-basis government officials. Attach Form 2106 or 2106-EZ +24 +25 +Health savings account deduction. Attach Form 8889 +. +25 +26 +Moving expenses. Attach Form 3903 +. +. +. +. +. +. +26 +27 +Deductible part of self-employment tax. Attach Schedule SE +. +27 +28 +Self-employed SEP, SIMPLE, and qualified plans +. +. +28 +29 +Self-employed health insurance deduction +. +. +. +. +29 +30 +Penalty on early withdrawal of savings +. +. +. +. +. +. +30 +31 +a +Alimony paid +b +Recipient’s SSN + +▶ +31a +32 +IRA deduction +. +. +. +. +. +. +. +. +. +. +. +. +. +32 +33 +Student loan interest deduction +. +. +. +. +. +. +. +. +33 +34 +Tuition and fees. Attach Form 8917 +. +. +. +. +. +. +. +34 +35 +Domestic production activities deduction. Attach Form 8903 +35 +36 +Add lines 23 through 35 +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +36 +37 +Subtract line 36 from line 22. This is your +adjusted gross income + +. +. +. +. +. + +▶ +37 +For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 11320B +Form +1040 + (2013) +State +ZIP +----------------Page (0) Break---------------- +DO NOT FILE +July 26, 2013 +DRAFT AS OF +Form 1040 (2013) +Page +2 +Tax and +Credits + +38 +Amount from line 37 (adjusted gross income) +. +. +. +. +. +. +. +. +. +. +. +. +. +. +38 +39 +a +Check +if: +{ +You + were born before January 2, 1949, +Blind. +Spouse + was born before January 2, 1949, +Blind. +} +Total boxes +checked + + +▶ +39a +b +If your spouse itemizes on a separate return or you were a dual-status alien, check here + +▶ +39b +Standard +Deduction +for— +• People who +check any +box on line +39a or 39b +or +who can be +claimed as a +dependent, +see +instructions. +• All others: +Single or +Married filing +separately, +$6,100 +Married filing +jointly or +Qualifying +widow(er), +$12,200 +Head of +household, +$8,950 +40 +Itemized deductions +(from Schedule A) +or +your +standard deduction +(see left margin) +. +. +40 +41 +Subtract line 40 from line 38 +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +41 +42 +Exemptions. + +If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions + +42 +43 +Taxable income. +Subtract line 42 from line 41. If line 42 is more than line 41, enter -0- +. +. +43 +44 +Tax +(see instructions). Check if any from: +a +Form(s) 8814 +b +Form 4972 +c +44 +45 +Alternative minimum tax +(see instructions). Attach Form 6251 +. +. +. +. +. +. +. +. +. +45 +46 +Add lines 44 and 45 +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. + +▶ +46 +47 +Foreign tax credit. Attach Form 1116 if required +. +. +. +. +47 +48 +Credit for child and dependent care expenses. Attach Form 2441 +48 +49 +Education credits from Form 8863, line 19 +. +. +. +. +. +49 +50 +Retirement savings contributions credit. Attach Form 8880 +50 +51 +Child tax credit. Attach Schedule 8812, if required +. +. +. +51 +52 +Residential energy credits. Attach Form 5695 +. +. +. +. +52 +53 +Other credits from Form: +a +3800 +b +8801 +c +53 +54 +Add lines 47 through 53. These are your +total credits +. +. +. +. +. +. +. +. +. +. +. +. +54 +55 +Subtract line 54 from line 46. If line 54 is more than line 46, enter -0- +. +. +. +. +. +. + +▶ +55 +Other +Taxes +56 +Self-employment tax. Attach Schedule SE +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +56 +57 +Unreported social security and Medicare tax from Form: +a +4137 +b +8919 +. +. +57 +58 +Additional tax on IRAs, other qualified retirement plans, etc. Attach Form 5329 if required +. +. +58 +59 +a +59a +b +59b +Household employment taxes from Schedule H +. +. +. +. +. +. +. +. +. +. +. +. +. +. +First-time homebuyer credit repayment. Attach Form 5405 if required +. +. +. +. +. +. +. +. +60 +Taxes from: +a +Form 8959 +b +Form 8960 +c +Instructions; enter code(s) +60 +61 +Add lines 55 through 60. This is your +total tax +. +. +. +. +. +. +. +. +. +. +. +. +. + + +▶ +61 +Payments +62 +Federal income tax withheld from Forms W-2 and 1099 +. +. +62 +63 +2013 estimated tax payments and amount applied from 2012 return +63 +If you have a +qualifying +child, attach +Schedule EIC. +64 +a +Earned income credit (EIC) +. +. +. +. +. +. +. +. +. +. +64a +b +Nontaxable combat pay election +64b +65 +Additional child tax credit. Attach Schedule 8812 +. +. +. +. + . +65 +66 +American opportunity credit from Form 8863, line 8 +. +. +. +. +66 +67 +Reserved +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +67 +68 +Amount paid with request for extension to file +. +. +. +. +. +68 +69 +Excess social security and tier 1 RRTA tax withheld + +. +. +. +. +69 +70 +Credit for federal tax on fuels. Attach Form 4136 +. +. +. +. +70 +71 +Credits from Form: +a +2439 +b +Reserved +c +8885 +d +71 +72 +Add lines 62, 63, 64a, and 65 through 71. These are your +total payments +. +. +. +. +. + + +▶ +72 +Refund +Direct deposit? +See +instructions. +73 +If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you +overpaid +73 +74 +a +Amount of line 73 you want +refunded to you. + If Form 8888 is attached, check here +. + +▶ +74a +▶ +▶ +b +Routing number +▶ + +c +Type: +Checking + +Savings +d +Account number +75 +Amount of line 73 you want +applied to your 2014 estimated tax + +▶ +75 +Amount +You Owe +76 +Amount you owe. + Subtract line 72 from line 61. For details on how to pay, see instructions + +▶ +76 +77 +Estimated tax penalty (see instructions) +. +. +. +. +. +. +. +77 +Third Party +Designee +Do you want to allow another person to discuss this return with the IRS (see instructions)? +Yes. +Complete below. +No +Designee’s +name +▶ +Phone +no. +▶ +Personal identification +number (PIN) +▶ +Sign +Here +Joint r +etur +n? See +instructions. +Keep a copy for +your r +ecor +ds. +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, +they are true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. +Your signature +Date +Your occupation +Daytime phone number +Spouse’s signature. If a joint return, +both +must sign. +▲ +Date +Spouse’s occupation +If the IRS sent you an Identity Protection +PIN, enter it +here (see inst.) +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer’s signature +Date +Check if +self-employed + PTIN +Firm’s name +▶ +Firm’s address +▶ +Firm's EIN +▶ +Phone no. +Form +1040 +(2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F1040ST.fields.json b/test/data/fd/form/F1040ST.fields.json new file mode 100755 index 00000000..1d2d3d47 --- /dev/null +++ b/test/data/fd/form/F1040ST.fields.json @@ -0,0 +1 @@ +[{"id":"PECY","type":"box","calc":false,"value":""},{"id":"SECY","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"L6A","type":"box","calc":false,"value":""},{"id":"L6B","type":"box","calc":false,"value":""},{"id":"L6C5_1_","type":"box","calc":false,"value":""},{"id":"L6C5_2_","type":"box","calc":false,"value":""},{"id":"L6C5_3_","type":"box","calc":false,"value":""},{"id":"DEPSX","type":"box","calc":false,"value":""},{"id":"L6C5_4_","type":"box","calc":false,"value":""},{"id":"L13X","type":"box","calc":false,"value":""},{"id":"INJUR","type":"alpha","calc":false,"value":""},{"id":"DECE","type":"alpha","calc":false,"value":""},{"id":"FY","type":"date","calc":false,"value":""},{"id":"FYE","type":"date","calc":false,"value":""},{"id":"FYEYR","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"MI","type":"alpha","calc":false,"value":""},{"id":"LNAM","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"SNAM","type":"alpha","calc":false,"value":""},{"id":"SMI","type":"alpha","calc":false,"value":""},{"id":"SLNM","type":"alpha","calc":false,"value":""},{"id":"SSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"CNAM","type":"alpha","calc":false,"value":""},{"id":"TEXT3","type":"alpha","calc":true,"value":"and SSN"},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"TEXT1","type":"alpha","calc":true,"value":"First"},{"id":"SPNM","type":"alpha","calc":false,"value":""},{"id":"TEXT2","type":"alpha","calc":true,"value":"Last"},{"id":"SPLMN","type":"alpha","calc":false,"value":""},{"id":"TEXT4","type":"alpha","calc":true,"value":"First"},{"id":"SPFNR","type":"alpha","calc":false,"value":""},{"id":"TEXT5","type":"alpha","calc":true,"value":"Last"},{"id":"SPLNR","type":"alpha","calc":false,"value":""},{"id":"N6AB","type":"number","calc":false,"value":""},{"id":"N6C1","type":"number","calc":false,"value":""},{"id":"L6C1_1_","type":"alpha","calc":false,"value":""},{"id":"L6C2_1_","type":"alpha","calc":false,"value":""},{"id":"L6C3_1_","type":"alpha","calc":false,"value":""},{"id":"L6C4_1_","type":"alpha","calc":false,"value":""},{"id":"L6C1_2_","type":"alpha","calc":false,"value":""},{"id":"L6C2_2_","type":"alpha","calc":false,"value":""},{"id":"L6C3_2_","type":"alpha","calc":false,"value":""},{"id":"L6C4_2_","type":"alpha","calc":false,"value":""},{"id":"N6C2","type":"number","calc":false,"value":""},{"id":"L6C1_3_","type":"alpha","calc":false,"value":""},{"id":"L6C2_3_","type":"alpha","calc":false,"value":""},{"id":"L6C3_3_","type":"alpha","calc":false,"value":""},{"id":"L6C4_3_","type":"alpha","calc":false,"value":""},{"id":"N6C3","type":"number","calc":false,"value":""},{"id":"L6C1_4_","type":"alpha","calc":false,"value":""},{"id":"L6C2_4_","type":"alpha","calc":false,"value":""},{"id":"L6C3_4_","type":"alpha","calc":false,"value":""},{"id":"L6C4_4_","type":"alpha","calc":false,"value":""},{"id":"N6E","type":"number","calc":false,"value":""},{"id":"L7W","type":"alpha","calc":false,"value":""},{"id":"L7WAMT","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"F8814T1","type":"alpha","calc":false,"value":""},{"id":"F8814A","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"F8814T2","type":"alpha","calc":false,"value":""},{"id":"F8814A2","type":"number","calc":false,"value":""},{"id":"QUALDIVS","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"F8814LIT","type":"alpha","calc":false,"value":""},{"id":"F8814AMT","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14W","type":"alpha","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"QCD","type":"alpha","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"L16A","type":"number","calc":false,"value":""},{"id":"PSO","type":"alpha","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19T1","type":"alpha","calc":false,"value":""},{"id":"L19T2","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20AMOD","type":"number","calc":false,"value":""},{"id":"L20LSE","type":"alpha","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"OTHINC_L21DESC_1_","type":"number","calc":false,"value":""},{"id":"OTHINC_L21DAMT_1_","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"BUSEXP","type":"number","calc":false,"value":""},{"id":"HSA","type":"number","calc":false,"value":""},{"id":"L26T","type":"alpha","calc":false,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L29W","type":"alpha","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"A586","type":"ssn","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L32C","type":"number","calc":false,"value":""},{"id":"DPAD","type":"number","calc":false,"value":""},{"id":"L32T","type":"alpha","calc":false,"value":""},{"id":"L32W","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L35A1","type":"box","calc":false,"value":""},{"id":"L35A2","type":"box","calc":false,"value":""},{"id":"L35A3","type":"box","calc":false,"value":""},{"id":"L35A4","type":"box","calc":false,"value":""},{"id":"L35BB","type":"box","calc":false,"value":""},{"id":"L40BA","type":"box","calc":false,"value":""},{"id":"L40BB","type":"box","calc":false,"value":""},{"id":"BX962","type":"box","calc":false,"value":""},{"id":"L49BA","type":"box","calc":false,"value":""},{"id":"L49BC","type":"box","calc":false,"value":""},{"id":"L49BD","type":"box","calc":false,"value":""},{"id":"F4137BX","type":"box","calc":false,"value":""},{"id":"F8919BX","type":"box","calc":false,"value":""},{"id":"BX8959","type":"box","calc":false,"value":""},{"id":"BX8960","type":"box","calc":false,"value":""},{"id":"BXOTHTAX","type":"box","calc":false,"value":""},{"id":"L64BA","type":"box","calc":false,"value":""},{"id":"BX885","type":"box","calc":false,"value":""},{"id":"L64FM","type":"box","calc":false,"value":""},{"id":"F8888","type":"box","calc":false,"value":""},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCS"},{"id":"ACCRB","type":"radio","calc":false,"value":"ACCC"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDY"},{"id":"PPDRB","type":"radio","calc":false,"value":"PPDN"},{"id":"L34","type":"number","calc":false,"value":""},{"id":"N35A","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":false,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"TEXT10","type":"alpha","calc":true,"value":"Click \"Do the math\" before calculating tax."},{"id":"L39","type":"number","calc":false,"value":""},{"id":"AMT8814","type":"number","calc":false,"value":""},{"id":"L40FM","type":"number","calc":false,"value":""},{"id":"L40T","type":"alpha","calc":false,"value":""},{"id":"L40W","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":false,"value":""},{"id":"L42","type":"number","calc":false,"value":""},{"id":"L43","type":"number","calc":false,"value":""},{"id":"L44","type":"number","calc":false,"value":""},{"id":"L46","type":"number","calc":false,"value":""},{"id":"RSCCRED","type":"number","calc":false,"value":""},{"id":"L47","type":"number","calc":false,"value":""},{"id":"RESENRGY","type":"number","calc":false,"value":""},{"id":"L49FM","type":"alpha","calc":false,"value":""},{"id":"L49","type":"number","calc":false,"value":""},{"id":"L50","type":"number","calc":false,"value":""},{"id":"L51","type":"number","calc":false,"value":""},{"id":"L52T","type":"alpha","calc":false,"value":""},{"id":"L52","type":"number","calc":false,"value":""},{"id":"L53","type":"number","calc":false,"value":""},{"id":"L54W","type":"alpha","calc":false,"value":""},{"id":"L54","type":"number","calc":false,"value":""},{"id":"L56","type":"number","calc":false,"value":""},{"id":"FTHCR","type":"number","calc":false,"value":""},{"id":"L57T","type":"alpha","calc":false,"value":""},{"id":"L57W","type":"number","calc":false,"value":""},{"id":"L57","type":"number","calc":false,"value":""},{"id":"L58","type":"number","calc":false,"value":""},{"id":"L59W","type":"alpha","calc":false,"value":""},{"id":"L59S","type":"number","calc":false,"value":""},{"id":"L59","type":"number","calc":false,"value":""},{"id":"L60C","type":"alpha","calc":false,"value":""},{"id":"L60","type":"number","calc":false,"value":""},{"id":"NTCOMBAT","type":"number","calc":false,"value":""},{"id":"L62","type":"number","calc":false,"value":""},{"id":"HOPE","type":"number","calc":false,"value":""},{"id":"L63","type":"number","calc":false,"value":""},{"id":"L61","type":"number","calc":false,"value":""},{"id":"F4136AMT","type":"number","calc":false,"value":""},{"id":"L64","type":"number","calc":false,"value":""},{"id":"L64W","type":"alpha","calc":false,"value":""},{"id":"L64A","type":"number","calc":false,"value":""},{"id":"L65T","type":"alpha","calc":false,"value":""},{"id":"L65W","type":"number","calc":false,"value":""},{"id":"L65","type":"number","calc":false,"value":""},{"id":"L66","type":"number","calc":false,"value":""},{"id":"L67A","type":"number","calc":false,"value":""},{"id":"ROUTNO","type":"mask","calc":false,"value":""},{"id":"ACCNO","type":"mask","calc":false,"value":""},{"id":"L68","type":"number","calc":false,"value":""},{"id":"L69","type":"number","calc":false,"value":""},{"id":"L70","type":"number","calc":false,"value":""},{"id":"DESNAM","type":"alpha","calc":false,"value":""},{"id":"DESPH","type":"phone","calc":false,"value":""},{"id":"DESPIN","type":"mask","calc":false,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"DTPHO","type":"phone","calc":false,"value":""},{"id":"SOCC","type":"alpha","calc":false,"value":""},{"id":"IDTHEFT","type":"mask","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F1040ST.json b/test/data/fd/form/F1040ST.json new file mode 100755 index 00000000..028c41e8 --- /dev/null +++ b/test/data/fd/form/F1040ST.json @@ -0,0 +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 diff --git a/test/data/fd/form/F1040V.content.txt b/test/data/fd/form/F1040V.content.txt new file mode 100755 index 00000000..9c850b46 --- /dev/null +++ b/test/data/fd/form/F1040V.content.txt @@ -0,0 +1,111 @@ +20 +13 +Form 1040-V +Department of the Treasury +Internal Revenue Service +What Is Form 1040-V +It is a statement you send with your check or money +order for any balance due on the “Amount you owe” line +of your 2013 Form 1040, Form 1040A, or Form 1040EZ. +TIP +You can also pay your taxes online or by phone either by a +direct transfer from your bank account or by credit or debit +card. Paying online or by phone is convenient and secure +and helps make sure we get your payments on time. For +more information, go to +www.irs.gov/e-pay. +How To Fill In Form 1040-V +Line 1. + + +return. +Line 2. + +second on your return. +Line 3. +Enter the amount you are paying by check or + +money order. +Line 4. + +on your return. Please print clearly. +How To Prepare Your Payment +• Make your check or money order payable to “ +United +States Treasury. +” Do not send cash. +• Make sure your name and address appear on your +check or money order. +• Enter your daytime phone number and your SSN on +your check or money order. If you are filing a joint return, +enter the SSN shown first on your return. Also enter +“2013 Form 1040,” “2013 Form 1040A,” or “2013 Form +1040EZ,” whichever is appropriate. +• To help us process your payment, enter the amount on +the right side of your check like this: $ XXX.XX. Do not +use dashes or lines (for example, do not enter “$ XXX—” +or “$ XXX +xx +/ +100 +”). +How To Send In Your 2013 Tax Return, +Payment, and Form 1040-V +• Detach Form 1040-V along the dotted line. +• Do not staple or otherwise attach your payment or Form +1040-V to your return or to each other. Instead, just put +them loose in the envelope. +• Mail your 2013 tax return, payment, and Form 1040-V to +the address shown on the back that applies to you. +Cat. No. 20975C +Form +1040-V + (2013) +d + +Detach Here and Mail With Your Payment and Return + +d +Form +1040-V +Department of the Treasury +Internal Revenue Service (99) +Payment Voucher +a + Do not staple or attach this voucher to your payment or return. +OMB No. 1545-0074 +20 +13 +Print or type +1 +Your social security number (SSN) +2 +If a joint return, SSN shown second +on your return +3 +Amount you are paying by check or +money order. +Make your check or +money order payable to +'United States +Treasury' +Dollars +Cents +4 +Your first name and initial +Last name +If a joint return, spouse’s first name and initial +Last name +Home address (number and street) +Apt. no. +City, town or post office, state, and ZIP code (If a foreign address, also complete spaces below.) +Foreign country name +Foreign province/state/county +Foreign postal code +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 20975C +Enter your social security number (SSN). If youare +filing a joint return, enter the SSN shown first onyour +If you are filing a joint return, enter the SSNshown +Enter your name(s) and address exactly asshown +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F1040V.fields.json b/test/data/fd/form/F1040V.fields.json new file mode 100755 index 00000000..473d6b80 --- /dev/null +++ b/test/data/fd/form/F1040V.fields.json @@ -0,0 +1 @@ +[{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"AMT","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"APT","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"FCOUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPROV","type":"alpha","calc":true,"value":""},{"id":"FPOSTAL","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F1040V.json b/test/data/fd/form/F1040V.json new file mode 100755 index 00000000..a54ad143 --- /dev/null +++ b/test/data/fd/form/F1040V.json @@ -0,0 +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 diff --git a/test/data/fd/form/F1116.content.txt b/test/data/fd/form/F1116.content.txt new file mode 100755 index 00000000..3d515d36 --- /dev/null +++ b/test/data/fd/form/F1116.content.txt @@ -0,0 +1,334 @@ +Form +1116 +Department of the Treasury +Internal Revenue Service + +(99) + +Foreign Tax Credit +(Individual, Estate, or Trust) + +a + Attach to Form 1040, 1040NR, 1041, or 990-T. + + +a +. +OMB No. 1545-0121 +20 +13 +Attachment +Sequence No. +19 +Name +Form 1116. Report all amounts in U.S. dollars except where specified in Part II below. +a +Passive category income +b +General category income +c +Section 901(j) income +d +Certain income re-sourced by treaty +e +Lump-sum distributions +f +Resident of (name of country) +a +Note: + + +Part I +Taxable Income or Loss From Sources Outside the United States (for Category Checked Above) +Foreign Country or U.S. Possession +A +B +C +Total +(Add cols. A, B, and C.) +g +Enter the name of the foreign country or U.S. +possession + ........... +a +1a +Gross income from sources within country shown +above and of the type checked above (see +instructions): +1a +b +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 alternative basis to +determine its source (see instructions) . . +a + +2 + +1a (attach statement) +......... +3 + +related: +a + +Certain itemized deductions or standard deduction +(see instructions) +........... +b +Other deductions (attach statement) +..... +c +Add lines 3a and 3b +.......... +d +Gross foreign source income (see instructions) . +e +Gross income from all sources (see instructions) . +f +Divide line 3d by line 3e (see instructions) . . . +g +Multiply line 3c by line 3f +........ +4 +Pro rata share of interest expense (see instructions): +a + +Home mortgage interest (use the Worksheet for +Home Mortgage Interest in the instructions) . . +b +Other interest expense +......... +5 +Losses from foreign sources +....... +6 +Add lines 2, 3g, 4a, 4b, and 5 +....... +6 +7 +Subtract line 6 from line 1a. Enter the result here and on line 15, page 2 +.......... +a +7 +Part II +Foreign Taxes Paid or Accrued +(see instructions) +Country +Credit is claimed +for taxes +(you must check one) +(h) +Paid +(i) +Accrued +(j) +Date paid + +or accrued +Foreign taxes paid or accrued +In foreign currency +Taxes withheld at source on: +(k) +Dividends +(l) +Rents + +and royalties +(m) +Interest +(n) +Other + +foreign taxes + +paid or + +accrued +In U.S. dollars +Taxes withheld at source on: +(o) +Dividends +(p) +Rents + +and royalties +(q) +Interest +(r) +Other + +foreign taxes + +paid or + +accrued +(s) +Total foreign + +taxes paid or +accrued (add cols. +(o) through (r)) + + + + + + + + + + + +A +B +C +8 +Add lines A through C, column (s). Enter the total here and on line 9, page 2 + ........ +a +8 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 11440U +Form +1116 + (2013) +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 + Information about Form 1116 and its separate instructions is at www.irs.gov/form1116 +Deductions and losses Caution: (See instructions): +Expenses definitely related to the income on line +Pro rata share of other deductions not definitely +Identifying number as shown on page 1 of your tax return +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 +more than oneforeign country or U.S. possession, use a separate column and line for each country or possession. +----------------Page (0) Break---------------- +Form 1116 (2013) +Page +2 +Part III +Figuring the Credit +9 + +Enter the amount from line 8. These are your total foreign taxes paid +or accrued for the category of income checked above Part I . . +9 +10 +Carryback or carryover (attach detailed computation) +.... +10 +11 +Add lines 9 and 10 +............... +11 +12 +Reduction in foreign taxes (see instructions) +....... +12 + ( ) +13 +Taxes reclassified under high tax kickout (see instructions) . . +13 +14 +Combine lines 11, 12, and 13. This is the total amount of foreign taxes available for credit . . . +14 +15 + + +Enter the amount from line 7. This is your taxable income or (loss) from +sources outside the United States (before adjustments) for the category +of income checked above Part I (see instructions) +...... +15 +16 +Adjustments to line 15 (see instructions) +........ +16 +17 + + + + +Combine the 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 category of income you checked above +Part I. Skip lines 18 through 22. However, if you are filing more than +one Form 1116, you must complete line 20.) +....... +17 +18 + + + +........ +18 +instructions. +19 +Divide line 17 by line 18. If line 17 is more than line 18, enter “1” +........... +19 +Schedule G, line 1a, or the total of Form 990-T, lines 36 and 37 +........... +20 +instructions. +21 +Multiply line 20 by line 19 (maximum amount of credit) +.............. +21 +22 + + +through 27 and enter this amount on line 28. Otherwise, complete the appropriate line in Part IV (see +instructions) +........................... +a +22 +Part IV +Summary of Credits From Separate Parts III +(see instructions) +23 +Credit for taxes on passive category income +....... +23 +24 +Credit for taxes on general category income +....... +24 +25 +Credit for taxes on certain income re-sourced by treaty . . . . +25 +26 +Credit for taxes on lump-sum distributions +........ +26 +27 +Add lines 23 through 26 +....................... +27 +28 +................... +28 +29 +Reduction of credit for international boycott operations. See instructions for line 12 +..... +29 +30 +Form 1040NR, line 45; Form 1041, Schedule G, line 2a; or Form 990-T, line 40a . +..... +a +30 +Form +1116 + (2013) +Enter the smaller of line 14 or line 21. If this is the only Form 1116 you are filing, skip lines 23 +Caution: If you are completing line 20 for separate category e (lump-sum distributions), see +amount from Form 1040NR, line 42. Estates and trusts: Enter the amount from Form 1041, +20 +Individuals: Enter the amount from Form 1040, line 44. If you are a nonresident alien, enter the +Caution: If you figured your tax using the lower rates on qualified dividends or capital gains, see +1040NR, line 39. Estates and trusts: Enter your taxable income +Individuals: Enter the amount from Form 1040, line 41, or Form +Subtract line 29 from line 28. This is your foreign tax credit. Enter here and on Form 1040, line 47; +Enter the smaller of line 20 or line 27 +without the deduction for your exemption +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F1116.fields.json b/test/data/fd/form/F1116.fields.json new file mode 100755 index 00000000..fcb072a5 --- /dev/null +++ b/test/data/fd/form/F1116.fields.json @@ -0,0 +1 @@ +[{"id":"BOXRB","type":"radio","calc":false,"value":"BOX1"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOX10"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOX7"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOX8"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOX11"},{"id":"COMPNX","type":"box","calc":false,"value":""},{"id":"CBXRB","type":"radio","calc":false,"value":"CBXP"},{"id":"CBXRB","type":"radio","calc":false,"value":"CBXA"},{"id":"COPY","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"RESI","type":"alpha","calc":false,"value":""},{"id":"A234_LJ_1_","type":"alpha","calc":false,"value":""},{"id":"A234_LJ_2_","type":"alpha","calc":false,"value":""},{"id":"A234_LJ_3_","type":"alpha","calc":false,"value":""},{"id":"L1T","type":"alpha","calc":false,"value":""},{"id":"A247_L1TT_1_","type":"alpha","calc":false,"value":""},{"id":"A247_L1TT_2_","type":"alpha","calc":false,"value":""},{"id":"A235_L1_1_","type":"number","calc":false,"value":""},{"id":"A235_L1_2_","type":"number","calc":false,"value":""},{"id":"A235_L1_3_","type":"number","calc":false,"value":""},{"id":"L1T3","type":"number","calc":true,"value":""},{"id":"A236_L2_1_","type":"number","calc":false,"value":""},{"id":"A236_L2_2_","type":"number","calc":false,"value":""},{"id":"A236_L2_3_","type":"number","calc":false,"value":""},{"id":"A237_L3A_1_","type":"number","calc":false,"value":""},{"id":"A237_L3A_2_","type":"number","calc":false,"value":""},{"id":"A237_L3A_3_","type":"number","calc":false,"value":""},{"id":"A238_L3B_1_","type":"number","calc":false,"value":""},{"id":"A238_L3B_2_","type":"number","calc":false,"value":""},{"id":"A238_L3B_3_","type":"number","calc":false,"value":""},{"id":"A239_L3C_1_","type":"number","calc":true,"value":""},{"id":"A239_L3C_2_","type":"number","calc":true,"value":""},{"id":"A239_L3C_3_","type":"number","calc":true,"value":""},{"id":"A240_L3D_1_","type":"number","calc":false,"value":""},{"id":"A240_L3D_2_","type":"number","calc":false,"value":""},{"id":"A240_L3D_3_","type":"number","calc":false,"value":""},{"id":"L3E_1_","type":"number","calc":false,"value":""},{"id":"L3E_2_","type":"number","calc":false,"value":""},{"id":"L3E_3_","type":"number","calc":false,"value":""},{"id":"A241_L3F_1_","type":"percent","calc":true,"value":""},{"id":"A241_L3F_2_","type":"percent","calc":true,"value":""},{"id":"A241_L3F_3_","type":"percent","calc":true,"value":""},{"id":"A242_L3G_1_","type":"number","calc":true,"value":""},{"id":"A242_L3G_2_","type":"number","calc":true,"value":""},{"id":"A242_L3G_3_","type":"number","calc":true,"value":""},{"id":"A243_L4A_1_","type":"number","calc":false,"value":""},{"id":"A243_L4A_2_","type":"number","calc":false,"value":""},{"id":"A243_L4A_3_","type":"number","calc":false,"value":""},{"id":"A244_L4B_1_","type":"number","calc":false,"value":""},{"id":"A244_L4B_2_","type":"number","calc":false,"value":""},{"id":"A244_L4B_3_","type":"number","calc":false,"value":""},{"id":"A246_L5_1_","type":"number","calc":false,"value":""},{"id":"A246_L5_2_","type":"number","calc":false,"value":""},{"id":"A246_L5_3_","type":"number","calc":false,"value":""},{"id":"A245_L6_1_","type":"number","calc":true,"value":""},{"id":"A245_L6_2_","type":"number","calc":true,"value":""},{"id":"A245_L6_3_","type":"number","calc":true,"value":""},{"id":"L6ET","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"A248_DATE_1_","type":"date","calc":false,"value":""},{"id":"A249_N_1_","type":"number","calc":false,"value":""},{"id":"A250_O_1_","type":"number","calc":false,"value":""},{"id":"A251_P_1_","type":"number","calc":false,"value":""},{"id":"A252_Q_1_","type":"number","calc":false,"value":""},{"id":"A253_R_1_","type":"number","calc":false,"value":""},{"id":"A254_S_1_","type":"number","calc":false,"value":""},{"id":"A255_INTEREST_1_","type":"number","calc":false,"value":""},{"id":"A256_U_1_","type":"number","calc":false,"value":""},{"id":"A257_V_1_","type":"number","calc":true,"value":""},{"id":"A248_DATE_2_","type":"date","calc":false,"value":""},{"id":"A249_N_2_","type":"number","calc":false,"value":""},{"id":"A250_O_2_","type":"number","calc":false,"value":""},{"id":"A251_P_2_","type":"number","calc":false,"value":""},{"id":"A252_Q_2_","type":"number","calc":false,"value":""},{"id":"A253_R_2_","type":"number","calc":false,"value":""},{"id":"A254_S_2_","type":"number","calc":false,"value":""},{"id":"A255_INTEREST_2_","type":"number","calc":false,"value":""},{"id":"A256_U_2_","type":"number","calc":false,"value":""},{"id":"A257_V_2_","type":"number","calc":true,"value":""},{"id":"A248_DATE_3_","type":"date","calc":false,"value":""},{"id":"A249_N_3_","type":"number","calc":false,"value":""},{"id":"A250_O_3_","type":"number","calc":false,"value":""},{"id":"A251_P_3_","type":"number","calc":false,"value":""},{"id":"A252_Q_3_","type":"number","calc":false,"value":""},{"id":"A253_R_3_","type":"number","calc":false,"value":""},{"id":"A254_S_3_","type":"number","calc":false,"value":""},{"id":"A255_INTEREST_3_","type":"number","calc":false,"value":""},{"id":"A256_U_3_","type":"number","calc":false,"value":""},{"id":"A257_V_3_","type":"number","calc":true,"value":""},{"id":"L8T","type":"number","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"RECLASS","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"percent","calc":true,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"L31SUB","type":"number","calc":true,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F1116.json b/test/data/fd/form/F1116.json new file mode 100755 index 00000000..ef632542 --- /dev/null +++ b/test/data/fd/form/F1116.json @@ -0,0 +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 diff --git a/test/data/fd/form/F1310.content.txt b/test/data/fd/form/F1310.content.txt new file mode 100755 index 00000000..fc39e99f --- /dev/null +++ b/test/data/fd/form/F1310.content.txt @@ -0,0 +1,109 @@ +State +, +3 +I.R.S. SPECIFICATIONS +TO BE REMOVED BEFORE PRINTING +DO NOT PRINT — DO NOT PRINT — DO NOT PRINT — DO NOT PRINT +TLS, have you +transmitted all R +text files for this +cycle update? +Date +Action +Revised proofs +requested +Date Signature +O.K. to print +INSTRUCTIONS TO PRINTERS +FORM 1310, PAGE 1 of 2 +MARGINS: TOP +1 +⁄ +2 +" CENTER SIDES PRINTS: HEAD to HEAD +PAPER: WHITE, WRITING, SUB. 20 INK: BLACK +FLAT SIZE: 216mm (8 +1 +⁄ +2 +") x 279mm (11") +PERFORATE: (NONE) +OMB No. 1545-0074 +Statement of Person Claiming +Refund Due a Deceased Taxpayer +1310 +Form +(Rev. November 2005) +Attachment +Sequence No. +87 +Department of the Treasury +Internal Revenue Service + +See instructions below and on back. +Tax year decedent was due a refund: +Calendar year +, or other tax year beginning +, , and ending +Decedent’s social security number +Name of decedent +Date of death +Name of person claiming refund +Home address (number and street). If you have a P.O. box, see instructions. +City, town or post office, state, and ZIP code. If you have a foreign address, see instructions. +Check the box that applies to you. +Check only one box. +Be sure to complete Part III below. +Surviving spouse requesting reissuance of a refund check (see instructions). +A +B +Court-appointed or certified personal representative (defined below). Attach a court certificate showing your appointment, +unless previously filed (see instructions). +Complete this part only if you checked the box on line C above. +Did the decedent leave a will? +1 +2a +Has a court appointed a personal representative for the estate of the decedent? +3 +As the person claiming the refund for the decedent’s estate, will you pay out the refund according to the laws +of the state where the decedent was a legal resident? +Signature and verification. All filers must complete this part. +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 +the best of my knowledge and belief, it is true, correct, and complete. +Signature of person claiming refund +Date +Form +1310 +(Rev. 11-2005) +Part I +Part II +Cat. No. 11566B +Part III +Please +print +or +type +Person, +other +than A or B, claiming refund for the decedent’s estate (see instructions). Also, complete Part II. +C + +Apt. no. +If you answered +“No” +to 2a, will one be appointed? +If you answered +“No” +to 3, a refund cannot be made until you submit a court certificate showing your appointment +as personal representative or other evidence that you are entitled under state law to receive the refund. + +For Privacy Act and Paperwork Reduction Act Notice, see page 2. +If you answered +“Yes” +to 2a or 2b, the personal representative must file for the refund. +Yes No +b +Your social security number +// +ZIP +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F1310.fields.json b/test/data/fd/form/F1310.fields.json new file mode 100755 index 00000000..1c3a3d8f --- /dev/null +++ b/test/data/fd/form/F1310.fields.json @@ -0,0 +1 @@ +[{"id":"BOXRB","type":"radio","calc":false,"value":"BOXA"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOXB"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOXC"},{"id":"L1RB","type":"radio","calc":false,"value":"L1Y"},{"id":"L1RB","type":"radio","calc":false,"value":"L1N"},{"id":"L2ARB","type":"radio","calc":false,"value":"L2AY"},{"id":"L2ARB","type":"radio","calc":false,"value":"L2AN"},{"id":"L2BRB","type":"radio","calc":false,"value":"L2BY"},{"id":"L2BRB","type":"radio","calc":false,"value":"L2BN"},{"id":"L3RB","type":"radio","calc":false,"value":"L3Y"},{"id":"L3RB","type":"radio","calc":false,"value":"L3N"},{"id":"CALY","type":"date","calc":false,"value":""},{"id":"YRB","type":"date","calc":false,"value":""},{"id":"YR1","type":"date","calc":false,"value":""},{"id":"YEND","type":"date","calc":false,"value":""},{"id":"YR","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"DTHD","type":"date","calc":false,"value":""},{"id":"DSSN","type":"ssn","calc":false,"value":""},{"id":"CNAM","type":"alpha","calc":false,"value":""},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APTN","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STAT","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"DATE","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F1310.json b/test/data/fd/form/F1310.json new file mode 100755 index 00000000..3c78ad5e --- /dev/null +++ b/test/data/fd/form/F1310.json @@ -0,0 +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 diff --git a/test/data/fd/form/F1310S.content.txt b/test/data/fd/form/F1310S.content.txt new file mode 100755 index 00000000..fc39e99f --- /dev/null +++ b/test/data/fd/form/F1310S.content.txt @@ -0,0 +1,109 @@ +State +, +3 +I.R.S. SPECIFICATIONS +TO BE REMOVED BEFORE PRINTING +DO NOT PRINT — DO NOT PRINT — DO NOT PRINT — DO NOT PRINT +TLS, have you +transmitted all R +text files for this +cycle update? +Date +Action +Revised proofs +requested +Date Signature +O.K. to print +INSTRUCTIONS TO PRINTERS +FORM 1310, PAGE 1 of 2 +MARGINS: TOP +1 +⁄ +2 +" CENTER SIDES PRINTS: HEAD to HEAD +PAPER: WHITE, WRITING, SUB. 20 INK: BLACK +FLAT SIZE: 216mm (8 +1 +⁄ +2 +") x 279mm (11") +PERFORATE: (NONE) +OMB No. 1545-0074 +Statement of Person Claiming +Refund Due a Deceased Taxpayer +1310 +Form +(Rev. November 2005) +Attachment +Sequence No. +87 +Department of the Treasury +Internal Revenue Service + +See instructions below and on back. +Tax year decedent was due a refund: +Calendar year +, or other tax year beginning +, , and ending +Decedent’s social security number +Name of decedent +Date of death +Name of person claiming refund +Home address (number and street). If you have a P.O. box, see instructions. +City, town or post office, state, and ZIP code. If you have a foreign address, see instructions. +Check the box that applies to you. +Check only one box. +Be sure to complete Part III below. +Surviving spouse requesting reissuance of a refund check (see instructions). +A +B +Court-appointed or certified personal representative (defined below). Attach a court certificate showing your appointment, +unless previously filed (see instructions). +Complete this part only if you checked the box on line C above. +Did the decedent leave a will? +1 +2a +Has a court appointed a personal representative for the estate of the decedent? +3 +As the person claiming the refund for the decedent’s estate, will you pay out the refund according to the laws +of the state where the decedent was a legal resident? +Signature and verification. All filers must complete this part. +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 +the best of my knowledge and belief, it is true, correct, and complete. +Signature of person claiming refund +Date +Form +1310 +(Rev. 11-2005) +Part I +Part II +Cat. No. 11566B +Part III +Please +print +or +type +Person, +other +than A or B, claiming refund for the decedent’s estate (see instructions). Also, complete Part II. +C + +Apt. no. +If you answered +“No” +to 2a, will one be appointed? +If you answered +“No” +to 3, a refund cannot be made until you submit a court certificate showing your appointment +as personal representative or other evidence that you are entitled under state law to receive the refund. + +For Privacy Act and Paperwork Reduction Act Notice, see page 2. +If you answered +“Yes” +to 2a or 2b, the personal representative must file for the refund. +Yes No +b +Your social security number +// +ZIP +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F1310S.fields.json b/test/data/fd/form/F1310S.fields.json new file mode 100755 index 00000000..1c3a3d8f --- /dev/null +++ b/test/data/fd/form/F1310S.fields.json @@ -0,0 +1 @@ +[{"id":"BOXRB","type":"radio","calc":false,"value":"BOXA"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOXB"},{"id":"BOXRB","type":"radio","calc":false,"value":"BOXC"},{"id":"L1RB","type":"radio","calc":false,"value":"L1Y"},{"id":"L1RB","type":"radio","calc":false,"value":"L1N"},{"id":"L2ARB","type":"radio","calc":false,"value":"L2AY"},{"id":"L2ARB","type":"radio","calc":false,"value":"L2AN"},{"id":"L2BRB","type":"radio","calc":false,"value":"L2BY"},{"id":"L2BRB","type":"radio","calc":false,"value":"L2BN"},{"id":"L3RB","type":"radio","calc":false,"value":"L3Y"},{"id":"L3RB","type":"radio","calc":false,"value":"L3N"},{"id":"CALY","type":"date","calc":false,"value":""},{"id":"YRB","type":"date","calc":false,"value":""},{"id":"YR1","type":"date","calc":false,"value":""},{"id":"YEND","type":"date","calc":false,"value":""},{"id":"YR","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"DTHD","type":"date","calc":false,"value":""},{"id":"DSSN","type":"ssn","calc":false,"value":""},{"id":"CNAM","type":"alpha","calc":false,"value":""},{"id":"CSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APTN","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STAT","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"DATE","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F1310S.json b/test/data/fd/form/F1310S.json new file mode 100755 index 00000000..64717f02 --- /dev/null +++ b/test/data/fd/form/F1310S.json @@ -0,0 +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":846,"AM":0,"x":16.898,"y":6.876,"w":7.065,"h":0.833,"TU":"Calendar year.","MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YRB","EN":0},"TI":847,"AM":0,"x":42.364,"y":6.935,"w":15.633,"h":0.833,"TU":"Other tax year beginning month.","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR1","EN":0},"TI":848,"AM":0,"x":59.752,"y":6.918,"w":5.92,"h":0.833,"TU":"Other beginning tax year.","MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEND","EN":0},"TI":849,"AM":0,"x":74.4,"y":6.922,"w":11.726,"h":0.833,"TU":"Other ending tax month.","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR","EN":0},"TI":850,"AM":0,"x":87.955,"y":6.895,"w":7.065,"h":0.833,"TU":"Other ending tax year.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":851,"AM":0,"x":13.117,"y":8.496,"w":49.232,"h":0.833,"TU":"Name of decedent"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DTHD","EN":0},"TI":852,"AM":0,"x":62.42,"y":8.485,"w":14.364,"h":0.833,"TU":"Date of death","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DSSN","EN":0},"TI":853,"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":854,"AM":0,"x":13.117,"y":9.963,"w":64.082,"h":0.853,"TU":"Name of person claiming refund"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":855,"AM":0,"x":77.468,"y":9.955,"w":20.811,"h":0.86,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":856,"AM":0,"x":13.267,"y":11.426,"w":75.752,"h":0.889,"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":857,"AM":0,"x":89.843,"y":11.403,"w":8.436,"h":0.913,"TU":"Apt. no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":858,"AM":0,"x":13.117,"y":12.903,"w":64.68,"h":0.905,"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":859,"AM":0,"x":78.681,"y":12.874,"w":6.188,"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":860,"AM":0,"x":87.345,"y":12.948,"w":10.831,"h":0.843,"TU":"Zip code."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE","EN":0},"TI":872,"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":861,"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":862,"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":863,"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":864,"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":865,"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":866,"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":867,"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":868,"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":869,"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":870,"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":871,"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 diff --git a/test/data/fd/form/F2106.content.txt b/test/data/fd/form/F2106.content.txt new file mode 100755 index 00000000..64641b87 --- /dev/null +++ b/test/data/fd/form/F2106.content.txt @@ -0,0 +1,342 @@ +Form +2106 +Department of the Treasury +Internal Revenue Service (99) +Employee Business Expenses +a + +Attach to Form 1040 or Form 1040NR. +a + +. +OMB No. 1545-0074 +20 +13 + +Attachment +Sequence No +. +129 + +Your name +Occupation in which you incurred + +expenses +Social security number +Part I + Employee Business Expenses and Reimbursements +Step 1 Enter Your Expenses +Column A +Other Than Meals +and Entertainment +Column B +Meals and +Entertainment +1 +Vehicle expense from line 22 or line 29. (Rural mail carriers: See +instructions.) +.................. +1 +2 +Parking fees, tolls, and transportation, including train, bus, etc., that +did not + involve overnight travel or commuting to and from work . +2 +3 +Travel expense while away from home overnight, including lodging, +airplane, car rental, etc. +Do not + include meals and entertainment . +3 +4 +Business expenses not included on lines 1 through 3. +Do not + include +meals and entertainment +.............. +4 +5 +Meals and entertainment expenses (see instructions) +..... +5 +6 Total expenses. +In Column A, add lines 1 through 4 and enter the + +result. In Column B, enter the amount from line 5 +...... +6 + Note: +If you were not reimbursed for any expenses in Step 1, skip line 7 and enter the amount from line 6 on line 8. +Step 2 Enter Reimbursements Received From Your Employer for Expenses Listed in Step 1 + + +7 + + +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) +................... +7 +Step 3 Figure Expenses To Deduct on Schedule A (Form 1040 or Form 1040NR) + + + + + + +8 + +Subtract line 7 from line 6. If zero or less, enter -0-. However, if line 7 +is greater than line 6 in Column A, report the excess as income on +Form 1040, line 7 (or on Form 1040NR, line 8) +....... +8 +Note: + +both columns + + +employee business expenses. Stop here and attach Form 2106 to +your return. +9 + + + +In Column A, enter the amount from line 8. 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.) +.............. +9 +10 + + +Add the amounts on line 9 of both columns and enter the total here. +Also, enter the total on +Schedule A (Form 1040), line 21 + (or on +Schedule A (Form 1040NR), line 7 +). (Armed Forces +reservists, qualified performing artists, fee-basis state or local government officials, and individuals +with disabilities: See the instructions for special rules on where to enter the total.) +..... +a +10 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11700N +Form +2106 + (2013) +Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106 +If +of line 8 are zero, you cannot deduct +----------------Page (0) Break---------------- +Form 2106 (2013) +Page +2 +Part II + Vehicle Expenses +Section A, General Information +(You must complete this section if you + +are claiming vehicle expenses.) +(a) +Vehicle 1 +(b) +Vehicle 2 +11 +Enter the date the vehicle was placed in service +......... +11 +/ +/ +/ +/ +12 +Total miles the vehicle was driven during 2013 +......... +12 +miles +miles +13 +Business miles included on line 12 +............. +13 +miles +miles +14 +Percent of business use. Divide line 13 by line 12 +......... +14 +% +% +15 +Average daily roundtrip commuting distance +.......... +15 +miles +miles +16 +Commuting miles included on line 12 +............ +16 +miles +miles +17 +Other miles. Add lines 13 and 16 and subtract the total from line 12 . . +17 +miles +miles +18 +Was your vehicle available for personal use during off-duty hours? +............. +Yes +No +19 +Do you (or your spouse) have another vehicle available for personal use? +........... +Yes +No +20 +Do you have evidence to support your deduction? +.................. +Yes +No +21 +If “Yes,” is the evidence written? +........................ +Yes +No +Section B„Standard Mileage Rate +(See the instructions for Part II to find out whether to complete this section or Section C.) +22 +Multiply line 13 by 56.5¢ (.565). Enter the result here and on line 1 +.......... +22 +Section C, Actual Expenses + +(a) +Vehicle 1 + + + + + + +(b) +Vehicle 2 + + + + + + +23 +Gasoline, oil, repairs, vehicle +insurance, etc. +...... +23 +24a +Vehicle rentals +...... +24a +b +Inclusion amount (see instructions) . +24b +c +Subtract line 24b from line 24a . +24c +25 +Value of employer-provided vehicle +(applies only if 100% of annual +lease value was included on Form +W-2—see instructions) +.... +25 +26 +Add lines 23, 24c, and 25. . . +26 +27 +Multiply line 26 by the percentage +on line 14 . . . . +.... +27 +28 +Depreciation (see instructions) . +28 +29 +Add lines 27 and 28. Enter total +here and on line 1 +..... +29 +Section D, Depreciation of Vehicles +(Use this section only if you owned the vehicle and are completing Section C for the vehicle.) + + +(a) +Vehicle 1 +(b) +Vehicle 2 + + + + + + +30 +Enter cost or other basis (see +instructions) +....... +30 +31 +Enter section 179 deduction and +special allowance (see instructions) +31 +32 +Multiply line 30 by line 14 (see +instructions if you claimed the +section 179 deduction or special +allowance) +........ +32 +33 +Enter depreciation method and +percentage (see instructions) . +33 +34 +Multiply line 32 by the percentage +on line 33 (see instructions) . . +34 +35 +Add lines 31 and 34 +.... +35 +36 +Enter the applicable limit explained +in the line 36 instructions . . . +36 +37 +Multiply line 36 by the percentage +on line 14 +........ +37 +38 +Enter the +smaller +of line 35 or line +37. If you skipped lines 36 and 37, +enter the amount from line 35. +Also enter this amount on line 28 +above +......... +38 +Form +2106 + +(2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F2106.fields.json b/test/data/fd/form/F2106.fields.json new file mode 100755 index 00000000..bd94992b --- /dev/null +++ b/test/data/fd/form/F2106.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6A","type":"number","calc":true,"value":""},{"id":"L6B","type":"number","calc":true,"value":""},{"id":"L7A","type":"number","calc":false,"value":""},{"id":"L7B","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":true,"value":""},{"id":"L8B","type":"number","calc":true,"value":""},{"id":"L10A","type":"number","calc":true,"value":""},{"id":"L10B","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L20RB","type":"radio","calc":false,"value":"L20Y"},{"id":"L20RB","type":"radio","calc":false,"value":"L20N"},{"id":"L19RB","type":"radio","calc":false,"value":"L19Y"},{"id":"L19RB","type":"radio","calc":false,"value":"L19N"},{"id":"L21ARB","type":"radio","calc":false,"value":"L21AY"},{"id":"L21ARB","type":"radio","calc":false,"value":"L21AN"},{"id":"L21BRB","type":"radio","calc":false,"value":"L21BY"},{"id":"L21BRB","type":"radio","calc":false,"value":"L21BN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A165_L12_1_","type":"date","calc":false,"value":""},{"id":"A165_L12_2_","type":"date","calc":false,"value":""},{"id":"A165_L13_1_","type":"number","calc":false,"value":""},{"id":"A165_L13_2_","type":"number","calc":false,"value":""},{"id":"A165_L14_1_","type":"number","calc":false,"value":""},{"id":"A165_L14_2_","type":"number","calc":false,"value":""},{"id":"A165_L15_1_","type":"number","calc":true,"value":""},{"id":"A165_L15_2_","type":"number","calc":true,"value":""},{"id":"A165_L16_1_","type":"number","calc":false,"value":""},{"id":"A165_L16_2_","type":"number","calc":false,"value":""},{"id":"A165_L17_1_","type":"number","calc":false,"value":""},{"id":"A165_L17_2_","type":"number","calc":false,"value":""},{"id":"A165_L18_1_","type":"number","calc":true,"value":""},{"id":"A165_L18_2_","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"A103_L23_1_","type":"number","calc":false,"value":""},{"id":"A103_L23_2_","type":"number","calc":false,"value":""},{"id":"A103_L24A_1_","type":"number","calc":false,"value":""},{"id":"A103_L24A_2_","type":"number","calc":false,"value":""},{"id":"A103_L24B_1_","type":"number","calc":false,"value":""},{"id":"A103_L24B_2_","type":"number","calc":false,"value":""},{"id":"A103_L24C_1_","type":"number","calc":true,"value":""},{"id":"A103_L24C_2_","type":"number","calc":true,"value":""},{"id":"A103_L25_1_","type":"number","calc":false,"value":""},{"id":"A103_L25_2_","type":"number","calc":false,"value":""},{"id":"A103_L26_1_","type":"number","calc":true,"value":""},{"id":"A103_L26_2_","type":"number","calc":true,"value":""},{"id":"A103_L27_1_","type":"number","calc":true,"value":""},{"id":"A103_L27_2_","type":"number","calc":true,"value":""},{"id":"A103_L28_1_","type":"number","calc":false,"value":""},{"id":"A103_L28_2_","type":"number","calc":false,"value":""},{"id":"A103_L29_1_","type":"number","calc":true,"value":""},{"id":"A103_L29_2_","type":"number","calc":true,"value":""},{"id":"A160_L30_1_","type":"number","calc":false,"value":""},{"id":"A160_L30_2_","type":"number","calc":false,"value":""},{"id":"A160_L31_1_","type":"number","calc":false,"value":""},{"id":"A160_L31_2_","type":"number","calc":false,"value":""},{"id":"A160_L32_1_","type":"number","calc":false,"value":""},{"id":"A160_L32_2_","type":"number","calc":false,"value":""},{"id":"A160_L33T_1_","type":"alpha","calc":false,"value":""},{"id":"A160_L33T_2_","type":"alpha","calc":false,"value":""},{"id":"A160_L33_1_","type":"number","calc":false,"value":""},{"id":"A160_L33_2_","type":"number","calc":false,"value":""},{"id":"A160_L34_1_","type":"number","calc":true,"value":""},{"id":"A160_L34_2_","type":"number","calc":true,"value":""},{"id":"A160_L35_1_","type":"number","calc":true,"value":""},{"id":"A160_L35_2_","type":"number","calc":true,"value":""},{"id":"A160_L36_1_","type":"number","calc":false,"value":""},{"id":"A160_L36_2_","type":"number","calc":false,"value":""},{"id":"A160_L37_1_","type":"number","calc":true,"value":""},{"id":"A160_L37_2_","type":"number","calc":true,"value":""},{"id":"A160_L38_1_","type":"number","calc":true,"value":""},{"id":"A160_L38_2_","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2106.json b/test/data/fd/form/F2106.json new file mode 100755 index 00000000..d71dbc6c --- /dev/null +++ b/test/data/fd/form/F2106.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2106EZ.content.txt b/test/data/fd/form/F2106EZ.content.txt new file mode 100755 index 00000000..df971e33 --- /dev/null +++ b/test/data/fd/form/F2106EZ.content.txt @@ -0,0 +1,129 @@ +Form +2106-EZ +Department of the Treasury +Internal Revenue Service (99) +Unreimbursed Employee Business Expenses +a + +Attach to Form 1040 or Form 1040NR. +a + +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +129A +Your name +Occupation in which you incurred expenses +Social security number +You Can Use This Form Only if All of the Following Apply. +• You are an employee deducting ordinary and necessary expenses attributable to your job. An ordinary expense is one that is +your business. An expense does not have to be required to be considered necessary. +• You +do not + get reimbursed by your employer for any expenses (amounts your employer included in box 1 of your Form W-2 are not +considered reimbursements for this purpose). +• If you are claiming vehicle expense, you are using the standard mileage rate for 2013. +Caution: +You can use the standard mileage rate for 2013 +only if: (a) +you owned the vehicle and used the standard mileage rate for the first year + +you placed the vehicle in service, +or (b) +you leased the vehicle and used the standard mileage rate for the portion of the lease period after 1997. +Part I +Figure Your Expenses +1 +Complete Part II. Multiply line 8a by 56.5¢ (.565). Enter the result here +......... +1 +2 +Parking fees, tolls, and transportation, including train, bus, etc., that +did not + involve overnight +travel or commuting to and from work +................... +2 +3 +Travel expense while away from home overnight, including lodging, airplane, car rental, etc. +Do +not + include meals and entertainment +.................... +3 +4 +Business expenses not included on lines 1 through 3. +Do not + include meals and +entertainment +........................... +4 +5 +Meals and entertainment expenses: $ +× 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.) +5 +6 + + +Total expenses. +Add lines 1 through 5. Enter here and on + Schedule A (Form 1040), line 21 +(or +on +Schedule A (Form 1040NR), line 7 +). (Armed Forces reservists, fee-basis state or local +government officials, qualified performing artists, and individuals with disabilities: See the +instructions for special rules on where to enter this amount.) +............ +6 +Part II +Information on Your Vehicle. +Complete this part + only +if you are claiming vehicle expense on line 1. +7 +When did you place your vehicle in service for business use? (month, day, year) +a +/ +/ +8 +Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for: +a +Business +b +Commuting (see instructions) +c +Other +9 +Was your vehicle available for personal use during off-duty hours? +.............. +Yes +No +10 +Do you (or your spouse) have another vehicle available for personal use? +............ +Yes +No +11a +Do you have evidence to support your deduction? +................... +Yes +No +b +If “Yes,” is the evidence written? +......................... +Yes +No +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 20604Q +Form +2106-EZ + (2013) +Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106 +common and accepted in your field of trade, business, or profession. A necessary expense is one that is helpful and appropriate for +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F2106EZ.fields.json b/test/data/fd/form/F2106EZ.fields.json new file mode 100755 index 00000000..22fc3386 --- /dev/null +++ b/test/data/fd/form/F2106EZ.fields.json @@ -0,0 +1 @@ +[{"id":"BX0RB","type":"radio","calc":false,"value":"BX0Y"},{"id":"BX0RB","type":"radio","calc":false,"value":"BX0N"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9Y"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9N"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAY"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAN"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBY"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"date","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8C","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2106EZ.json b/test/data/fd/form/F2106EZ.json new file mode 100755 index 00000000..33571f05 --- /dev/null +++ b/test/data/fd/form/F2106EZ.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2106EZS.content.txt b/test/data/fd/form/F2106EZS.content.txt new file mode 100755 index 00000000..df971e33 --- /dev/null +++ b/test/data/fd/form/F2106EZS.content.txt @@ -0,0 +1,129 @@ +Form +2106-EZ +Department of the Treasury +Internal Revenue Service (99) +Unreimbursed Employee Business Expenses +a + +Attach to Form 1040 or Form 1040NR. +a + +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +129A +Your name +Occupation in which you incurred expenses +Social security number +You Can Use This Form Only if All of the Following Apply. +• You are an employee deducting ordinary and necessary expenses attributable to your job. An ordinary expense is one that is +your business. An expense does not have to be required to be considered necessary. +• You +do not + get reimbursed by your employer for any expenses (amounts your employer included in box 1 of your Form W-2 are not +considered reimbursements for this purpose). +• If you are claiming vehicle expense, you are using the standard mileage rate for 2013. +Caution: +You can use the standard mileage rate for 2013 +only if: (a) +you owned the vehicle and used the standard mileage rate for the first year + +you placed the vehicle in service, +or (b) +you leased the vehicle and used the standard mileage rate for the portion of the lease period after 1997. +Part I +Figure Your Expenses +1 +Complete Part II. Multiply line 8a by 56.5¢ (.565). Enter the result here +......... +1 +2 +Parking fees, tolls, and transportation, including train, bus, etc., that +did not + involve overnight +travel or commuting to and from work +................... +2 +3 +Travel expense while away from home overnight, including lodging, airplane, car rental, etc. +Do +not + include meals and entertainment +.................... +3 +4 +Business expenses not included on lines 1 through 3. +Do not + include meals and +entertainment +........................... +4 +5 +Meals and entertainment expenses: $ +× 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.) +5 +6 + + +Total expenses. +Add lines 1 through 5. Enter here and on + Schedule A (Form 1040), line 21 +(or +on +Schedule A (Form 1040NR), line 7 +). (Armed Forces reservists, fee-basis state or local +government officials, qualified performing artists, and individuals with disabilities: See the +instructions for special rules on where to enter this amount.) +............ +6 +Part II +Information on Your Vehicle. +Complete this part + only +if you are claiming vehicle expense on line 1. +7 +When did you place your vehicle in service for business use? (month, day, year) +a +/ +/ +8 +Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for: +a +Business +b +Commuting (see instructions) +c +Other +9 +Was your vehicle available for personal use during off-duty hours? +.............. +Yes +No +10 +Do you (or your spouse) have another vehicle available for personal use? +............ +Yes +No +11a +Do you have evidence to support your deduction? +................... +Yes +No +b +If “Yes,” is the evidence written? +......................... +Yes +No +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 20604Q +Form +2106-EZ + (2013) +Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106 +common and accepted in your field of trade, business, or profession. A necessary expense is one that is helpful and appropriate for +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F2106EZS.fields.json b/test/data/fd/form/F2106EZS.fields.json new file mode 100755 index 00000000..22fc3386 --- /dev/null +++ b/test/data/fd/form/F2106EZS.fields.json @@ -0,0 +1 @@ +[{"id":"BX0RB","type":"radio","calc":false,"value":"BX0Y"},{"id":"BX0RB","type":"radio","calc":false,"value":"BX0N"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9Y"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX9N"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAY"},{"id":"BXARB","type":"radio","calc":false,"value":"BXAN"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBY"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXBN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"date","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8C","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2106EZS.json b/test/data/fd/form/F2106EZS.json new file mode 100755 index 00000000..a8d80edf --- /dev/null +++ b/test/data/fd/form/F2106EZS.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2106S.content.txt b/test/data/fd/form/F2106S.content.txt new file mode 100755 index 00000000..64641b87 --- /dev/null +++ b/test/data/fd/form/F2106S.content.txt @@ -0,0 +1,342 @@ +Form +2106 +Department of the Treasury +Internal Revenue Service (99) +Employee Business Expenses +a + +Attach to Form 1040 or Form 1040NR. +a + +. +OMB No. 1545-0074 +20 +13 + +Attachment +Sequence No +. +129 + +Your name +Occupation in which you incurred + +expenses +Social security number +Part I + Employee Business Expenses and Reimbursements +Step 1 Enter Your Expenses +Column A +Other Than Meals +and Entertainment +Column B +Meals and +Entertainment +1 +Vehicle expense from line 22 or line 29. (Rural mail carriers: See +instructions.) +.................. +1 +2 +Parking fees, tolls, and transportation, including train, bus, etc., that +did not + involve overnight travel or commuting to and from work . +2 +3 +Travel expense while away from home overnight, including lodging, +airplane, car rental, etc. +Do not + include meals and entertainment . +3 +4 +Business expenses not included on lines 1 through 3. +Do not + include +meals and entertainment +.............. +4 +5 +Meals and entertainment expenses (see instructions) +..... +5 +6 Total expenses. +In Column A, add lines 1 through 4 and enter the + +result. In Column B, enter the amount from line 5 +...... +6 + Note: +If you were not reimbursed for any expenses in Step 1, skip line 7 and enter the amount from line 6 on line 8. +Step 2 Enter Reimbursements Received From Your Employer for Expenses Listed in Step 1 + + +7 + + +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) +................... +7 +Step 3 Figure Expenses To Deduct on Schedule A (Form 1040 or Form 1040NR) + + + + + + +8 + +Subtract line 7 from line 6. If zero or less, enter -0-. However, if line 7 +is greater than line 6 in Column A, report the excess as income on +Form 1040, line 7 (or on Form 1040NR, line 8) +....... +8 +Note: + +both columns + + +employee business expenses. Stop here and attach Form 2106 to +your return. +9 + + + +In Column A, enter the amount from line 8. 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.) +.............. +9 +10 + + +Add the amounts on line 9 of both columns and enter the total here. +Also, enter the total on +Schedule A (Form 1040), line 21 + (or on +Schedule A (Form 1040NR), line 7 +). (Armed Forces +reservists, qualified performing artists, fee-basis state or local government officials, and individuals +with disabilities: See the instructions for special rules on where to enter the total.) +..... +a +10 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11700N +Form +2106 + (2013) +Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106 +If +of line 8 are zero, you cannot deduct +----------------Page (0) Break---------------- +Form 2106 (2013) +Page +2 +Part II + Vehicle Expenses +Section A, General Information +(You must complete this section if you + +are claiming vehicle expenses.) +(a) +Vehicle 1 +(b) +Vehicle 2 +11 +Enter the date the vehicle was placed in service +......... +11 +/ +/ +/ +/ +12 +Total miles the vehicle was driven during 2013 +......... +12 +miles +miles +13 +Business miles included on line 12 +............. +13 +miles +miles +14 +Percent of business use. Divide line 13 by line 12 +......... +14 +% +% +15 +Average daily roundtrip commuting distance +.......... +15 +miles +miles +16 +Commuting miles included on line 12 +............ +16 +miles +miles +17 +Other miles. Add lines 13 and 16 and subtract the total from line 12 . . +17 +miles +miles +18 +Was your vehicle available for personal use during off-duty hours? +............. +Yes +No +19 +Do you (or your spouse) have another vehicle available for personal use? +........... +Yes +No +20 +Do you have evidence to support your deduction? +.................. +Yes +No +21 +If “Yes,” is the evidence written? +........................ +Yes +No +Section B„Standard Mileage Rate +(See the instructions for Part II to find out whether to complete this section or Section C.) +22 +Multiply line 13 by 56.5¢ (.565). Enter the result here and on line 1 +.......... +22 +Section C, Actual Expenses + +(a) +Vehicle 1 + + + + + + +(b) +Vehicle 2 + + + + + + +23 +Gasoline, oil, repairs, vehicle +insurance, etc. +...... +23 +24a +Vehicle rentals +...... +24a +b +Inclusion amount (see instructions) . +24b +c +Subtract line 24b from line 24a . +24c +25 +Value of employer-provided vehicle +(applies only if 100% of annual +lease value was included on Form +W-2—see instructions) +.... +25 +26 +Add lines 23, 24c, and 25. . . +26 +27 +Multiply line 26 by the percentage +on line 14 . . . . +.... +27 +28 +Depreciation (see instructions) . +28 +29 +Add lines 27 and 28. Enter total +here and on line 1 +..... +29 +Section D, Depreciation of Vehicles +(Use this section only if you owned the vehicle and are completing Section C for the vehicle.) + + +(a) +Vehicle 1 +(b) +Vehicle 2 + + + + + + +30 +Enter cost or other basis (see +instructions) +....... +30 +31 +Enter section 179 deduction and +special allowance (see instructions) +31 +32 +Multiply line 30 by line 14 (see +instructions if you claimed the +section 179 deduction or special +allowance) +........ +32 +33 +Enter depreciation method and +percentage (see instructions) . +33 +34 +Multiply line 32 by the percentage +on line 33 (see instructions) . . +34 +35 +Add lines 31 and 34 +.... +35 +36 +Enter the applicable limit explained +in the line 36 instructions . . . +36 +37 +Multiply line 36 by the percentage +on line 14 +........ +37 +38 +Enter the +smaller +of line 35 or line +37. If you skipped lines 36 and 37, +enter the amount from line 35. +Also enter this amount on line 28 +above +......... +38 +Form +2106 + +(2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F2106S.fields.json b/test/data/fd/form/F2106S.fields.json new file mode 100755 index 00000000..bd94992b --- /dev/null +++ b/test/data/fd/form/F2106S.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"OCC","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6A","type":"number","calc":true,"value":""},{"id":"L6B","type":"number","calc":true,"value":""},{"id":"L7A","type":"number","calc":false,"value":""},{"id":"L7B","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":true,"value":""},{"id":"L8B","type":"number","calc":true,"value":""},{"id":"L10A","type":"number","calc":true,"value":""},{"id":"L10B","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L20RB","type":"radio","calc":false,"value":"L20Y"},{"id":"L20RB","type":"radio","calc":false,"value":"L20N"},{"id":"L19RB","type":"radio","calc":false,"value":"L19Y"},{"id":"L19RB","type":"radio","calc":false,"value":"L19N"},{"id":"L21ARB","type":"radio","calc":false,"value":"L21AY"},{"id":"L21ARB","type":"radio","calc":false,"value":"L21AN"},{"id":"L21BRB","type":"radio","calc":false,"value":"L21BY"},{"id":"L21BRB","type":"radio","calc":false,"value":"L21BN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A165_L12_1_","type":"date","calc":false,"value":""},{"id":"A165_L12_2_","type":"date","calc":false,"value":""},{"id":"A165_L13_1_","type":"number","calc":false,"value":""},{"id":"A165_L13_2_","type":"number","calc":false,"value":""},{"id":"A165_L14_1_","type":"number","calc":false,"value":""},{"id":"A165_L14_2_","type":"number","calc":false,"value":""},{"id":"A165_L15_1_","type":"number","calc":true,"value":""},{"id":"A165_L15_2_","type":"number","calc":true,"value":""},{"id":"A165_L16_1_","type":"number","calc":false,"value":""},{"id":"A165_L16_2_","type":"number","calc":false,"value":""},{"id":"A165_L17_1_","type":"number","calc":false,"value":""},{"id":"A165_L17_2_","type":"number","calc":false,"value":""},{"id":"A165_L18_1_","type":"number","calc":true,"value":""},{"id":"A165_L18_2_","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"A103_L23_1_","type":"number","calc":false,"value":""},{"id":"A103_L23_2_","type":"number","calc":false,"value":""},{"id":"A103_L24A_1_","type":"number","calc":false,"value":""},{"id":"A103_L24A_2_","type":"number","calc":false,"value":""},{"id":"A103_L24B_1_","type":"number","calc":false,"value":""},{"id":"A103_L24B_2_","type":"number","calc":false,"value":""},{"id":"A103_L24C_1_","type":"number","calc":true,"value":""},{"id":"A103_L24C_2_","type":"number","calc":true,"value":""},{"id":"A103_L25_1_","type":"number","calc":false,"value":""},{"id":"A103_L25_2_","type":"number","calc":false,"value":""},{"id":"A103_L26_1_","type":"number","calc":true,"value":""},{"id":"A103_L26_2_","type":"number","calc":true,"value":""},{"id":"A103_L27_1_","type":"number","calc":true,"value":""},{"id":"A103_L27_2_","type":"number","calc":true,"value":""},{"id":"A103_L28_1_","type":"number","calc":false,"value":""},{"id":"A103_L28_2_","type":"number","calc":false,"value":""},{"id":"A103_L29_1_","type":"number","calc":true,"value":""},{"id":"A103_L29_2_","type":"number","calc":true,"value":""},{"id":"A160_L30_1_","type":"number","calc":false,"value":""},{"id":"A160_L30_2_","type":"number","calc":false,"value":""},{"id":"A160_L31_1_","type":"number","calc":false,"value":""},{"id":"A160_L31_2_","type":"number","calc":false,"value":""},{"id":"A160_L32_1_","type":"number","calc":false,"value":""},{"id":"A160_L32_2_","type":"number","calc":false,"value":""},{"id":"A160_L33T_1_","type":"alpha","calc":false,"value":""},{"id":"A160_L33T_2_","type":"alpha","calc":false,"value":""},{"id":"A160_L33_1_","type":"number","calc":false,"value":""},{"id":"A160_L33_2_","type":"number","calc":false,"value":""},{"id":"A160_L34_1_","type":"number","calc":true,"value":""},{"id":"A160_L34_2_","type":"number","calc":true,"value":""},{"id":"A160_L35_1_","type":"number","calc":true,"value":""},{"id":"A160_L35_2_","type":"number","calc":true,"value":""},{"id":"A160_L36_1_","type":"number","calc":false,"value":""},{"id":"A160_L36_2_","type":"number","calc":false,"value":""},{"id":"A160_L37_1_","type":"number","calc":true,"value":""},{"id":"A160_L37_2_","type":"number","calc":true,"value":""},{"id":"A160_L38_1_","type":"number","calc":true,"value":""},{"id":"A160_L38_2_","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2106S.json b/test/data/fd/form/F2106S.json new file mode 100755 index 00000000..8412f8f0 --- /dev/null +++ b/test/data/fd/form/F2106S.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2120.content.txt b/test/data/fd/form/F2120.content.txt new file mode 100755 index 00000000..fdefed39 --- /dev/null +++ b/test/data/fd/form/F2120.content.txt @@ -0,0 +1,37 @@ +OMB No. 1545-0074 +Form +2120 +(Rev. October 2005) +Multiple Support Declaration +Attachment +Sequence No. +114 +Department of the Treasury +Internal Revenue Service + +Attach to Form 1040 or Form 1040A. +Your social security number +Name(s) shown on return +During the calendar year +, the eligible persons listed below each paid over 10% of the support of: +Name of your qualifying relative +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 +ar +that began in the above calendar year. +Social security number +Eligible person’s name +Address (number, street, apt. no., city, state, and ZIP code) +Form +2120 +(Rev. 10-2005) +Cat. No. 11712F +Social security number +Eligible person’s name +Address (number, street, apt. no., city, state, and ZIP code) +Social security number +Eligible person’s name +Address (number, street, apt. no., city, state, and ZIP code) +Social security number +Eligible person’s name +Address (number, street, apt. no., city, state, and ZIP code) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F2120.fields.json b/test/data/fd/form/F2120.fields.json new file mode 100755 index 00000000..1f4a0576 --- /dev/null +++ b/test/data/fd/form/F2120.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"YR","type":"date","calc":false,"value":""},{"id":"FNAM","type":"alpha","calc":false,"value":""},{"id":"LNAM","type":"alpha","calc":false,"value":""},{"id":"A50_FNAM2_1_","type":"alpha","calc":false,"value":""},{"id":"A50_LNAM2_1_","type":"alpha","calc":false,"value":""},{"id":"A50_ESSN_1_","type":"ssn","calc":false,"value":""},{"id":"A50_ADDR_1_","type":"alpha","calc":false,"value":""},{"id":"A50_ECITY_1_","type":"alpha","calc":false,"value":""},{"id":"A50_ESTATE_1_","type":"alpha","calc":false,"value":""},{"id":"A50_EZIP_1_","type":"zip","calc":false,"value":""},{"id":"A50_FNAM2_2_","type":"alpha","calc":false,"value":""},{"id":"A50_LNAM2_2_","type":"alpha","calc":false,"value":""},{"id":"A50_ESSN_2_","type":"ssn","calc":false,"value":""},{"id":"A50_ADDR_2_","type":"alpha","calc":false,"value":""},{"id":"A50_ECITY_2_","type":"alpha","calc":false,"value":""},{"id":"A50_ESTATE_2_","type":"alpha","calc":false,"value":""},{"id":"A50_EZIP_2_","type":"zip","calc":false,"value":""},{"id":"A50_FNAM2_3_","type":"alpha","calc":false,"value":""},{"id":"A50_LNAM2_3_","type":"alpha","calc":false,"value":""},{"id":"A50_ESSN_3_","type":"ssn","calc":false,"value":""},{"id":"A50_ADDR_3_","type":"alpha","calc":false,"value":""},{"id":"A50_ECITY_3_","type":"alpha","calc":false,"value":""},{"id":"A50_ESTATE_3_","type":"alpha","calc":false,"value":""},{"id":"A50_EZIP_3_","type":"zip","calc":false,"value":""},{"id":"A50_FNAM2_4_","type":"alpha","calc":false,"value":""},{"id":"A50_LNAM2_4_","type":"alpha","calc":false,"value":""},{"id":"A50_ESSN_4_","type":"ssn","calc":false,"value":""},{"id":"A50_ADDR_4_","type":"alpha","calc":false,"value":""},{"id":"A50_ECITY_4_","type":"alpha","calc":false,"value":""},{"id":"A50_ESTATE_4_","type":"alpha","calc":false,"value":""},{"id":"A50_EZIP_4_","type":"zip","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2120.json b/test/data/fd/form/F2120.json new file mode 100755 index 00000000..ac1da38c --- /dev/null +++ b/test/data/fd/form/F2120.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2210.content.txt b/test/data/fd/form/F2210.content.txt new file mode 100755 index 00000000..bdfcbf36 --- /dev/null +++ b/test/data/fd/form/F2210.content.txt @@ -0,0 +1,424 @@ +Form +2210 +Department of the Treasury +Internal Revenue Service +Underpayment of Estimated Tax by +Individuals, Estates, and Trusts +a + +Information about Form 2210 and its separate instructions is at +www.irs.gov/form2210 +. + +a + +Attach to Form 1040, 1040A, 1040NR, 1040NR-EZ, or 1041. +OMB No. 1545-0140 +20 +13 +Attachment +Sequence No. +06 + +Name(s) shown on tax return +Identifying number +Do You Have To File Form 2210? +Complete lines 1 through 7 below. Is line 7 less than $1,000? +No +d +Complete lines 8 and 9 below. Is line 6 equal to or more than +line 9? +No +d +You may owe a penalty. Does any box in Part II below apply? +No +d +Do not file Form 2210. +You are not required to figure +your penalty because the IRS will figure it and send + +you a bill for any unpaid amount. If you want to figure +it, you may use Part III or Part IV as a worksheet and +enter your penalty amount on your tax return, but +do +not file Form 2210. +Yes +a +Do not file Form 2210. +You do not owe a penalty. +Yes +a +You do not owe a penalty. +Do not file Form 2210 + +(but if box +E + in Part II applies, you must file page 1 of +Form 2210). +Yes +a +You +must + file Form 2210. Does box +B, C, +or +D +in Part II +apply? +No +d +You are +not + required to figure your penalty because the IRS +will figure it and send you a bill for any unpaid amount. If you +want to figure it, you may use Part III or Part IV as a +worksheet and enter your penalty amount on your tax return, +but +file only page 1 of + +Form 2210. +Yes +a +You must figure your penalty. +Part I +Required Annual Payment +1 +Enter your 2013 tax after credits from Form 1040, line 55 (see instructions if not filing Form 1040) +1 +2 +Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or Net +Investment Income Tax (see instructions) +................... +2 +3 +Refundable credits (see instructions) +................... +3 +( +) +4 + +Current year tax. Combine lines 1, 2, and 3. If less than $1,000, +stop; +you do not owe a penalty. +Do not +file Form 2210 +......................... +4 +5 +Multiply line 4 by 90% (.90) +............. +5 +6 +Withholding taxes. +Do not +include estimated tax payments (see instructions) +....... +6 +7 +Subtract line 6 from line 4. If less than $1,000, +stop +; you do not owe a penalty. +Do not +file Form 2210 +7 +8 +Maximum required annual payment based on prior year’s tax (see instructions) +...... +8 +9 Required annual payment. +Enter the +smaller +of line 5 or line 8 +........... +9 +Next: +Is line 9 more than line 6? +No. + You +do not + owe a penalty. +Do not +file Form 2210 unless box +E + below applies. +Yes. + You may owe a penalty, but +do not +file Form 2210 unless one or more boxes in Part II below applies. +• If box +B, C, + or +D + applies, you must figure your penalty and file Form 2210. +• If box +A +or + E + applies (but not +B, C, +or +D +) file only page 1 of Form 2210. You are +not + required to figure your penalty; the IRS +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 +worksheet and enter your penalty on your tax return, but + file only page 1 of Form 2210. +Part II +Reasons for Filing. +Check applicable boxes. If none apply, + do not +file Form 2210. +A +You request a + waiver +(see instructions) of your entire penalty. You must check this box and file page 1 of Form 2210, but you +are not required to figure your penalty. +B +You request a +waiver + (see instructions) of part of your penalty. You must figure your penalty and waiver amount and file Form +2210. +C +Your income varied during the year and your penalty is reduced or eliminated when figured using the +annualized + +income +installment method. +You must figure the penalty using Schedule Al and file Form 2210. +D +Your penalty is lower when figured by treating the federal income tax withheld from your income as paid on the dates it was +actually withheld, instead of in equal amounts on the payment due dates. You must figure your penalty and file Form 2210. +E +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 +above. You must file page 1 of Form 2210, but you are +not + required to figure your penalty (unless box +B, + +C, + or +D +applies). +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 11744P +Form +2210 + (2013) +----------------Page (0) Break---------------- +Form 2210 (2013) +Page +2 +Part III +Short Method +Can You Use the +Short Method? +You may use the short method if: +• You made no estimated tax payments (or your only payments were withheld +federal income tax), +or +• You paid the same amount of estimated tax on each of the four payment +due dates. +Must You Use the +Regular Method? +You must use the regular method (Part IV) instead of the short method if: +• You made any estimated tax payments late, +• You checked box +C + or +D + in Part II, +or +• You are filing Form 1040NR or 1040NR-EZ and you did not receive wages +as an employee subject to U.S. income tax withholding. +Note: +If any payment was made earlier than the due date, you may use the short method, but using it may cause + +you to pay a +larger penalty than the regular method. If the payment was only a few days early, the difference is + +likely to be small. +10 +Enter the amount from Form 2210, line 9 +................... +10 +11 +Enter the amount, if any, from Form 2210, line 6 +....... +11 +12 +Enter the total amount, if any, of estimated tax payments you made . +12 +13 +Add lines 11 and 12 +.......................... +13 +14 + +Total underpayment for year. +Subtract line 13 from line 10. If zero or less, +stop +; you do + +not owe +a penalty. + Do not file Form 2210 unless you checked box E in Part II +......... +14 +15 +Multiply line 14 by .01995 +........................ +15 +16 +• If the amount on line 14 was paid +on or after + 4/15/14, enter -0-. +• 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 × +Number of days paid +before 4/15/14 × .00008 +.......... +16 +17 + + +Penalty. +Subtract line 16 from line 15. Enter the result here and on Form 1040, line 77; + +Form + +1040A, line 46; Form 1040NR, line 74; Form 1040NR-EZ, line 26; or Form 1041, line 26. +Do not file Form 2210 unless you checked a box in Part II +........... +a +17 +Form +2210 + (2013) +----------------Page (1) Break---------------- +Form 2210 (2013) +Page +3 +Part IV +Regular Method +(See the instructions if you are filing Form 1040NR or 1040NR-EZ.) +Payment Due Dates + +Section A—Figure Your Underpayment +(a) +4/15/13 +(b) +6/15/13 +(c) +9/15/13 +(d) +1/15/14 +18 + + + +Required installments. +If box C in Part II applies, +enter + +the amounts from Schedule AI, line 25. +Otherwise, enter + +25% (.25) of line 9, Form 2210, in +each column +............. +18 +19 + + + + + +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 +.......... +19 +Complete lines 20 through 26 of one column +before going to line 20 of the next column. +20 + +Enter the amount, if any, from line 26 in the previous +column +............... +20 +21 +Add lines 19 and 20 +........... +21 +22 + +Add the amounts on lines 24 and 25 in the previous +column . +.............. +22 +23 + + +Subtract line 22 from line 21. If zero or less, enter +-0-. For column (a) only, enter the amount from line +19................. +23 +24 + +If line 23 is zero, subtract line 21 from line 22. +Otherwise, enter -0- +........... +24 +25 + + +Underpayment. +If line 18 is equal to or more than + +line 23, subtract line 23 from line 18. Then go to line +20 of the next column. Otherwise, go to line 26 . +a +25 +26 + + +Overpayment. If line 23 is more than line 18, +subtract line 18 from line 23. Then go to line 20 of +the next column +............ +26 +Section B—Figure the Penalty +(Use the Worksheet for Form 2210, Part IV, Section B—Figure the Penalty in the +instructions.) +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; Form 1040NR, line +74; Form 1040NR-EZ, line 26; or Form 1041, + +line 26. + Do not file Form 2210 unless you checked a box +in Part II +............................... + +a +27 +Form +2210 + (2013) +----------------Page (2) Break---------------- diff --git a/test/data/fd/form/F2210.fields.json b/test/data/fd/form/F2210.fields.json new file mode 100755 index 00000000..b58116a9 --- /dev/null +++ b/test/data/fd/form/F2210.fields.json @@ -0,0 +1 @@ +[{"id":"PENRB","type":"radio","calc":false,"value":"PENN"},{"id":"PENRB","type":"radio","calc":false,"value":"PENY"},{"id":"L9RB","type":"radio","calc":false,"value":"PTWAIVX"},{"id":"L9RB","type":"radio","calc":false,"value":"L1A"},{"id":"A540RB","type":"radio","calc":false,"value":"L1B"},{"id":"A540RB","type":"radio","calc":false,"value":"L1C"},{"id":"A540RB","type":"radio","calc":false,"value":"L1D"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"TOTCR","type":"mask","calc":false,"value":""},{"id":"CYTAX","type":"number","calc":true,"value":""},{"id":"SAFEAMT","type":"number","calc":true,"value":""},{"id":"WHTAX","type":"number","calc":true,"value":""},{"id":"TAXDUE","type":"number","calc":true,"value":""},{"id":"PYTAX","type":"number","calc":false,"value":""},{"id":"REQPAY","type":"number","calc":true,"value":""},{"id":"Add_F2210AI","type":"link","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"BALFOR","type":"number","calc":false,"value":""},{"id":"WHTAX2","type":"number","calc":true,"value":""},{"id":"ESPAID","type":"number","calc":false,"value":""},{"id":"TAXPAID","type":"number","calc":true,"value":""},{"id":"UNDERPAY","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"PENALTY1","type":"number","calc":true,"value":""},{"id":"NAM3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"A159_L22_1_","type":"number","calc":true,"value":""},{"id":"A159_L22_2_","type":"number","calc":true,"value":""},{"id":"A159_L22_3_","type":"number","calc":true,"value":""},{"id":"A159_L22_4_","type":"number","calc":true,"value":""},{"id":"A160_L23_1_","type":"number","calc":false,"value":""},{"id":"A160_L23_2_","type":"number","calc":false,"value":""},{"id":"A160_L23_3_","type":"number","calc":false,"value":""},{"id":"A160_L23_4_","type":"number","calc":false,"value":""},{"id":"A161_L24_1_","type":"number","calc":true,"value":""},{"id":"A161_L24_2_","type":"number","calc":true,"value":""},{"id":"A161_L24_3_","type":"number","calc":true,"value":""},{"id":"A162_L25_1_","type":"number","calc":true,"value":""},{"id":"A162_L25_2_","type":"number","calc":true,"value":""},{"id":"A162_L25_3_","type":"number","calc":true,"value":""},{"id":"A163_L26_1_","type":"number","calc":true,"value":""},{"id":"A163_L26_2_","type":"number","calc":true,"value":""},{"id":"A163_L26_3_","type":"number","calc":true,"value":""},{"id":"A164_L27_1_","type":"number","calc":true,"value":""},{"id":"A164_L27_2_","type":"number","calc":true,"value":""},{"id":"A164_L27_3_","type":"number","calc":true,"value":""},{"id":"A164_L27_4_","type":"number","calc":true,"value":""},{"id":"A165_L28_1_","type":"number","calc":true,"value":""},{"id":"A165_L28_2_","type":"number","calc":true,"value":""},{"id":"A166_L29_1_","type":"number","calc":true,"value":""},{"id":"A166_L29_2_","type":"number","calc":true,"value":""},{"id":"A166_L29_3_","type":"number","calc":true,"value":""},{"id":"A166_L29_4_","type":"number","calc":true,"value":""},{"id":"A167_L30_1_","type":"number","calc":true,"value":""},{"id":"A167_L30_2_","type":"number","calc":true,"value":""},{"id":"A167_L30_3_","type":"number","calc":true,"value":""},{"id":"PENALTY2","type":"number","calc":false,"value":""},{"id":"Text1","type":"alpha","calc":true,"value":"Schedule AI"},{"id":"Add_F2210AI","type":"link","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2210.json b/test/data/fd/form/F2210.json new file mode 100755 index 00000000..0f79d138 --- /dev/null +++ b/test/data/fd/form/F2210.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2210AI.content.txt b/test/data/fd/form/F2210AI.content.txt new file mode 100755 index 00000000..26c2ccd6 --- /dev/null +++ b/test/data/fd/form/F2210AI.content.txt @@ -0,0 +1,208 @@ +Form 2210 (2013) +Page +4 +Schedule AI—Annualized Income Installment Method +(See the instructions.) +Estates and trusts, +do not + use the period ending dates shown to the +right. Instead, use the following: 2/28/13, 4/30/13, 7/31/13, and 11/30/13. +(a) +1/1/13–3/31/13 +(b) +1/1/13–5/31/13 +(c) +1/1/13–8/31/13 +(d) +1/1/13–12/31/13 +Part I +Annualized Income Installments + + + + +1 + + +Enter your adjusted gross income for each period (see +instructions). (Estates and trusts, enter your taxable +income without your exemption for each period.) . . +1 +2 +Annualization amounts. (Estates and trusts, see instructions) +2 +3 +Annualized income. Multiply line 1 by line 2 . . . +3 +4 + + +If you itemize, enter itemized deductions for the period shown in +each column. All others enter -0-, and skip to line 7. +Exception: + +Estates and trusts, skip to line 9 and enter amount from line 3 +4 +5 +Annualization amounts +.......... +5 +6 +Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000) + +6 +7 + + + +In each column, enter the full amount of your standard +deduction from Form 1040, line 40, or Form 1040A, line 24. +(Form 1040NR or 1040NR-EZ filers, enter -0-. +Exception: + +Indian students and business apprentices, see instructions.) . +7 +8 +Enter the +larger + of line 6 or line 7 +....... +8 +9 +Subtract line 8 from line 3 +......... +9 +10 + + + +In each column, multiply $3,900 by the total number +of exemptions claimed. (see instructions if line 3 is +more than $150,000) (Estates, trusts, and Form +1040NR or 1040NR-EZ filers, see instructions.) . . +10 +11 +Subtract line 10 from line 9. If zero or less, enter -0- +11 +12 +Figure your tax on the amount on line 11 (see instructions) +12 +13 +Self-employment tax from line 34 (complete Part II below) +13 +14 + + +Enter other taxes for each payment period +including, if applicable, Additional Medicare Tax +and/or Net Investment Income Tax (see instructions) +14 +15 +Total tax. Add lines 12, 13, and 14 +...... +15 +16 + +For each period, enter the same type of credits as allowed +on Form 2210, Part I, lines 1 and 3 (see instructions) . . +16 +17 +Subtract line 16 from line 15. If zero or less, enter -0- . +17 +18 +Applicable percentage +.......... +18 +19 +Multiply line 17 by line 18 +......... +19 +Complete lines 20–25 of one column before +going to line 20 of the next column. +20 +Enter the total of the amounts in all previous columns of line 25 +20 +21 +Subtract line 20 from line 19. If zero or less, enter -0- . +21 +22 +Enter 25% (.25) of line 9 on page 1 of Form 2210 in each column +22 +23 + +Subtract line 25 of the previous column from line 24 +of that column +............. +23 +24 +Add lines 22 and 23 +........... +24 +25 + +Enter the +smaller +of line 21 or line 24 here and on +Form 2210, Part IV, line 18 +........ +a +25 +Part II +Annualized Self-Employment Tax +(Form 1040 and Form 1040NR filers only) + + + + +26 + +Net earnings from self-employment for the period +(see instructions) +............ +26 +27 +Prorated social security tax limit +....... +27 +28 + + +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 +28 +29 +Subtract line 28 from line 27. If zero or less, enter -0- . +29 +30 +Annualization amounts +.......... +30 +31 +Multiply line 30 by the +smaller +of line 26 or line 29 . +31 +32 +Annualization amounts +.......... +32 +33 +Multiply line 26 by line 32 +......... +33 +34 +Add lines 31 and 33. Enter here and on line 13 above . +a +34 +Form +2210 + (2013) +4 2.4 1.5 1 +4 2.4 1.5 1 +22.5% 45% 67.5% 90% +$28,425 $47,375 $75,800 $113,700 +0.496 0.2976 0.186 0.124 +0.116 0.0696 0.0435 0.029 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F2210AI.fields.json b/test/data/fd/form/F2210AI.fields.json new file mode 100755 index 00000000..63d84dd5 --- /dev/null +++ b/test/data/fd/form/F2210AI.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A461_L1_1_","type":"number","calc":false,"value":""},{"id":"A461_L1_2_","type":"number","calc":false,"value":""},{"id":"A461_L1_3_","type":"number","calc":false,"value":""},{"id":"A461_L1_4_","type":"number","calc":false,"value":""},{"id":"A462_L3_1_","type":"number","calc":true,"value":""},{"id":"A462_L3_2_","type":"number","calc":true,"value":""},{"id":"A462_L3_3_","type":"number","calc":true,"value":""},{"id":"A462_L3_4_","type":"number","calc":true,"value":""},{"id":"A463_L4_1_","type":"number","calc":false,"value":""},{"id":"A463_L4_2_","type":"number","calc":false,"value":""},{"id":"A463_L4_3_","type":"number","calc":false,"value":""},{"id":"A463_L4_4_","type":"number","calc":false,"value":""},{"id":"A464_L6_1_","type":"number","calc":false,"value":""},{"id":"A464_L6_2_","type":"number","calc":false,"value":""},{"id":"A464_L6_3_","type":"number","calc":false,"value":""},{"id":"A464_L6_4_","type":"number","calc":false,"value":""},{"id":"A465_L7_1_","type":"number","calc":false,"value":""},{"id":"A465_L7_2_","type":"number","calc":false,"value":""},{"id":"A465_L7_3_","type":"number","calc":false,"value":""},{"id":"A465_L7_4_","type":"number","calc":false,"value":""},{"id":"A466_L8_1_","type":"number","calc":true,"value":""},{"id":"A466_L8_2_","type":"number","calc":true,"value":""},{"id":"A466_L8_3_","type":"number","calc":true,"value":""},{"id":"A466_L8_4_","type":"number","calc":true,"value":""},{"id":"A467_L9_1_","type":"number","calc":true,"value":""},{"id":"A467_L9_2_","type":"number","calc":true,"value":""},{"id":"A467_L9_3_","type":"number","calc":true,"value":""},{"id":"A467_L9_4_","type":"number","calc":true,"value":""},{"id":"A468_L10_1_","type":"number","calc":false,"value":""},{"id":"A468_L10_2_","type":"number","calc":false,"value":""},{"id":"A468_L10_3_","type":"number","calc":false,"value":""},{"id":"A468_L10_4_","type":"number","calc":false,"value":""},{"id":"A507_L11_1_","type":"number","calc":true,"value":""},{"id":"A507_L11_2_","type":"number","calc":true,"value":""},{"id":"A507_L11_3_","type":"number","calc":true,"value":""},{"id":"A507_L11_4_","type":"number","calc":true,"value":""},{"id":"A489_L12_1_","type":"number","calc":false,"value":""},{"id":"A489_L12_2_","type":"number","calc":false,"value":""},{"id":"A489_L12_3_","type":"number","calc":false,"value":""},{"id":"A489_L12_4_","type":"number","calc":false,"value":""},{"id":"A470_L13_1_","type":"number","calc":true,"value":""},{"id":"A470_L13_2_","type":"number","calc":true,"value":""},{"id":"A470_L13_3_","type":"number","calc":true,"value":""},{"id":"A470_L13_4_","type":"number","calc":true,"value":""},{"id":"A471_L14_1_","type":"number","calc":false,"value":""},{"id":"A471_L14_2_","type":"number","calc":false,"value":""},{"id":"A471_L14_3_","type":"number","calc":false,"value":""},{"id":"A471_L14_4_","type":"number","calc":false,"value":""},{"id":"A472_L15_1_","type":"number","calc":true,"value":""},{"id":"A472_L15_2_","type":"number","calc":true,"value":""},{"id":"A472_L15_3_","type":"number","calc":true,"value":""},{"id":"A472_L15_4_","type":"number","calc":true,"value":""},{"id":"A473_L16_1_","type":"number","calc":false,"value":""},{"id":"A473_L16_2_","type":"number","calc":false,"value":""},{"id":"A473_L16_3_","type":"number","calc":false,"value":""},{"id":"A473_L16_4_","type":"number","calc":false,"value":""},{"id":"A485_L17_1_","type":"number","calc":true,"value":""},{"id":"A485_L17_2_","type":"number","calc":true,"value":""},{"id":"A485_L17_3_","type":"number","calc":true,"value":""},{"id":"A485_L17_4_","type":"number","calc":true,"value":""},{"id":"A474_L19_1_","type":"number","calc":true,"value":""},{"id":"A474_L19_2_","type":"number","calc":true,"value":""},{"id":"A474_L19_3_","type":"number","calc":true,"value":""},{"id":"A474_L19_4_","type":"number","calc":true,"value":""},{"id":"A490_L20_1_","type":"number","calc":true,"value":""},{"id":"A490_L20_2_","type":"number","calc":true,"value":""},{"id":"A490_L20_3_","type":"number","calc":true,"value":""},{"id":"A475_L21_1_","type":"number","calc":true,"value":""},{"id":"A475_L21_2_","type":"number","calc":true,"value":""},{"id":"A475_L21_3_","type":"number","calc":true,"value":""},{"id":"A475_L21_4_","type":"number","calc":true,"value":""},{"id":"A476_L22_1_","type":"number","calc":true,"value":""},{"id":"A476_L22_2_","type":"number","calc":true,"value":""},{"id":"A476_L22_3_","type":"number","calc":true,"value":""},{"id":"A476_L22_4_","type":"number","calc":true,"value":""},{"id":"A491_L23_1_","type":"number","calc":true,"value":""},{"id":"A491_L23_2_","type":"number","calc":true,"value":""},{"id":"A491_L23_3_","type":"number","calc":true,"value":""},{"id":"A477_L24_1_","type":"number","calc":true,"value":""},{"id":"A477_L24_2_","type":"number","calc":true,"value":""},{"id":"A477_L24_3_","type":"number","calc":true,"value":""},{"id":"A477_L24_4_","type":"number","calc":true,"value":""},{"id":"A479_L26_1_","type":"number","calc":true,"value":""},{"id":"A479_L26_2_","type":"number","calc":true,"value":""},{"id":"A479_L26_3_","type":"number","calc":true,"value":""},{"id":"A479_L26_4_","type":"number","calc":true,"value":""},{"id":"A480_L27A_1_","type":"number","calc":false,"value":""},{"id":"A480_L27A_2_","type":"number","calc":false,"value":""},{"id":"A480_L27A_3_","type":"number","calc":false,"value":""},{"id":"A480_L27A_4_","type":"number","calc":false,"value":""},{"id":"A482_L29_1_","type":"number","calc":false,"value":""},{"id":"A482_L29_2_","type":"number","calc":false,"value":""},{"id":"A482_L29_3_","type":"number","calc":false,"value":""},{"id":"A482_L29_4_","type":"number","calc":false,"value":""},{"id":"A557_L30_1_","type":"number","calc":true,"value":""},{"id":"A557_L30_2_","type":"number","calc":true,"value":""},{"id":"A557_L30_3_","type":"number","calc":true,"value":""},{"id":"A557_L30_4_","type":"number","calc":true,"value":""},{"id":"A483_L31_1_","type":"number","calc":true,"value":""},{"id":"A483_L31_2_","type":"number","calc":true,"value":""},{"id":"A483_L31_3_","type":"number","calc":true,"value":""},{"id":"A483_L31_4_","type":"number","calc":true,"value":""},{"id":"A487_L34_1_","type":"number","calc":true,"value":""},{"id":"A487_L34_2_","type":"number","calc":true,"value":""},{"id":"A487_L34_3_","type":"number","calc":true,"value":""},{"id":"A487_L34_4_","type":"number","calc":true,"value":""},{"id":"A488_L35_1_","type":"number","calc":true,"value":""},{"id":"A488_L35_2_","type":"number","calc":true,"value":""},{"id":"A488_L35_3_","type":"number","calc":true,"value":""},{"id":"A488_L35_4_","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2210AI.json b/test/data/fd/form/F2210AI.json new file mode 100755 index 00000000..0b63c0a9 --- /dev/null +++ b/test/data/fd/form/F2210AI.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2210F.content.txt b/test/data/fd/form/F2210F.content.txt new file mode 100755 index 00000000..0819a8e7 --- /dev/null +++ b/test/data/fd/form/F2210F.content.txt @@ -0,0 +1,192 @@ +Form +2210-F +Department of the Treasury +Internal Revenue Service +Underpayment of Estimated Tax by +Farmers and Fishermen +a + Attach to Form 1040, Form 1040NR, or Form 1041. + +a + +Information about Form 2210-F and its separate instructions is at +www.irs.gov/form2210 +. +OMB No. 1545-0140 +20 +13 +Attachment +Sequence No. +06A +Name(s) shown on tax return +Identifying number +Generally, you do not need to file Form 2210-F. + The IRS will figure any penalty you owe and send you a bill. File Form +2210-F +only + 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 +to figure your penalty. Enter the amount from line 16 on the penalty line of your return, but do not attach Form 2210-F. +Part I +Reasons for Filing. +Check applicable boxes. If neither applies, +do not + +file Form 2210-F. +A + +You request a +waiver +. In certain circumstances, the IRS will waive all or part of the penalty. See +Waiver of Penalty +in the +instructions. +B + +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 +7 +below. +Part II +Figure Your Underpayment +1 + +Enter your 2013 tax after credits from Form 1040, line 55; Form 1040NR, line 52; or Form 1041, +Schedule G, line 3 +.......................... +1 +2 +Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or +Net Investment Income Tax (see instructions) +................. +2 +3 +Add lines 1 and 2. If less than $1,000, you do not owe a penalty; +do not file Form 2210-F +.. +3 +4 +Refundable credits you claimed on your tax return. +a +Earned income credit (EIC) +............. +4a +b +Additional child tax credit +............. +4b +c +American opportunity credit (Form 8863, line 8) +...... +4c +d +Credit for federal tax paid on fuels +........... +4d +e +Health coverage tax credit +............. +4e +f +Credit determined under section 1341(a)(5)(B) (see instructions) . +4f +5 +Add lines 4a through 4f +........................ +5 +6 + +Current year tax. Subtract line 5 from line 3. If less than $1,000, you do not owe a penalty; +do + +not file Form 2210-F +......................... +6 +7 +Multiply line 6 by 66 + +2 +/ +3 +% (.667) +............ +7 +8 +Withholding taxes. +Do not +include any estimated tax payments on this line (see instructions) . +8 +9 +Subtract line 8 from line 6. If less than $1,000, you do not owe a penalty; +do not file Form 2210-F +9 +10 + +Enter the tax shown on your 2012 tax return (see instructions if your 2013 filing status changed to +or from married filing jointly) +....................... +10 +11 Required annual payment. +Enter the + smaller +of line 7 or line 10 +.......... +11 +Note: +If line 8 is equal to or more than line 11, stop here; you do not owe the penalty. +Do not file +Form 2210-F +unless you checked box +B + above. +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 . +..... +12 +13 + +Underpayment. +Subtract line 12 from line 11. If the result is zero or less, stop here; you do not + +owe the penalty. +Do not file Form 2210-F +unless you checked box + B +above + +...... +13 +Part III +Figure the Penalty +14 +Enter the date the amount on line 13 was paid or April 15, 2014, whichever is earlier +.... +14 +/ +/ 14 +15 +Number of days +from +January 15, 2014, +to + the date on line 14 +........... +15 +16 Penalty. +Underpayment +on line 13 +× +Number of days on line 15 +365 +× .03.......... +a +16 +• Form 1040 filers, enter the amount from line 16 on Form 1040, line 77. +• Form 1040NR filers, enter the amount from line 16 on Form 1040NR, line 74. +• Form 1041 filers, enter the amount from line 16 on Form 1041, line 26. +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 11745A +Form +2210-F + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F2210F.fields.json b/test/data/fd/form/F2210F.fields.json new file mode 100755 index 00000000..b39ab620 --- /dev/null +++ b/test/data/fd/form/F2210F.fields.json @@ -0,0 +1 @@ +[{"id":"L1RB","type":"radio","calc":false,"value":"L1A"},{"id":"L1RB","type":"radio","calc":false,"value":"L1B"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"EIC","type":"number","calc":true,"value":""},{"id":"CHILDCR","type":"number","calc":true,"value":""},{"id":"AMEROPCR","type":"number","calc":true,"value":""},{"id":"FUELCR","type":"number","calc":true,"value":""},{"id":"HEALTHCR","type":"number","calc":true,"value":""},{"id":"IRC1341","type":"number","calc":false,"value":""},{"id":"TOTCR","type":"number","calc":true,"value":""},{"id":"CYTAX","type":"number","calc":true,"value":""},{"id":"SAFEAMT","type":"number","calc":true,"value":""},{"id":"WHTAX","type":"number","calc":false,"value":""},{"id":"TAXDUE","type":"number","calc":true,"value":""},{"id":"PYTAX","type":"number","calc":false,"value":""},{"id":"REQPAY","type":"number","calc":true,"value":""},{"id":"TAXPAID","type":"number","calc":false,"value":""},{"id":"UNDERPAY","type":"number","calc":true,"value":""},{"id":"DATEPAID","type":"date","calc":false,"value":""},{"id":"DAYS","type":"percent","calc":false,"value":""},{"id":"PENALTY","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2210F.json b/test/data/fd/form/F2210F.json new file mode 100755 index 00000000..9c51e3f7 --- /dev/null +++ b/test/data/fd/form/F2210F.json @@ -0,0 +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}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F2439.content.txt b/test/data/fd/form/F2439.content.txt new file mode 100755 index 00000000..4ec53b17 --- /dev/null +++ b/test/data/fd/form/F2439.content.txt @@ -0,0 +1,44 @@ +Form +2439 +20 +13 +Notice to Shareholder of Undistributed +Long-Term Capital Gains +Copy B +Attach to the +shareholder's +income tax return +for the tax year +that includes the +last day of the +RIC's or REIT's +tax year. +Department of the Treasury - Internal Revenue Service +OMB No. 1545-0145 +For calendar year 2013, or other tax year +of the regulated investment company (RIC) or the +real estate investment trust (REIT) +beginning +, 2013, and +ending +, 20 +VOID +CORRECTED +Name, address, and ZIP code of RIC or REIT +Identification number of RIC or REIT +Shareholder’s identifying number +Shareholder’s name, address, and ZIP code +1a +Total undistributed long-term capital gains +1b +Unrecaptured section 1250 gain +1c +Section 1202 gain +1d +Collectibles (28%) gain +2 +Tax paid by the RIC or REIT on the box 1a gains +Form +2439 +www.irs.gov/form2439 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F2439.fields.json b/test/data/fd/form/F2439.fields.json new file mode 100755 index 00000000..329c34aa --- /dev/null +++ b/test/data/fd/form/F2439.fields.json @@ -0,0 +1 @@ +[{"id":"A2RB","type":"radio","calc":false,"value":"VOID"},{"id":"A2RB","type":"radio","calc":false,"value":"CORRECT"},{"id":"PAYERNM1","type":"alpha","calc":false,"value":""},{"id":"PAYERNM2","type":"alpha","calc":false,"value":""},{"id":"PAYADD1","type":"alpha","calc":false,"value":""},{"id":"PCTY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"alpha","calc":false,"value":""},{"id":"PZIP","type":"zip","calc":false,"value":""},{"id":"BEGIN","type":"date","calc":false,"value":""},{"id":"END","type":"date","calc":false,"value":""},{"id":"YEAR","type":"date","calc":false,"value":""},{"id":"PAYERID","type":"mask","calc":false,"value":""},{"id":"RECIPSSN","type":"ssn","calc":false,"value":""},{"id":"RECIPNAM","type":"alpha","calc":false,"value":""},{"id":"RECIPADD","type":"alpha","calc":false,"value":""},{"id":"RCTY","type":"alpha","calc":false,"value":""},{"id":"RST","type":"alpha","calc":false,"value":""},{"id":"RZIP","type":"zip","calc":false,"value":""},{"id":"UNDLTCG","type":"number","calc":false,"value":""},{"id":"UNRECAP","type":"number","calc":false,"value":""},{"id":"SEC1202","type":"number","calc":false,"value":""},{"id":"COLLECT","type":"number","calc":false,"value":""},{"id":"TAXPAID","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2439.json b/test/data/fd/form/F2439.json new file mode 100755 index 00000000..7a72ef5e --- /dev/null +++ b/test/data/fd/form/F2439.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2441.content.txt b/test/data/fd/form/F2441.content.txt new file mode 100755 index 00000000..9674a784 --- /dev/null +++ b/test/data/fd/form/F2441.content.txt @@ -0,0 +1,364 @@ +Form + +2441 +Department of the Treasury +Internal Revenue Service (99) + Child and Dependent Care Expenses +a + Attach to Form 1040, Form 1040A, or Form 1040NR. +a + +Information about Form 2441 and its separate instructions is at + +www.irs.gov/form2441 +. +1040A +. . . . . . . . . . +1040 +2441 +` +. . . . . . . . . . +1040NR +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +21 +Name(s) shown on return +Your social security number +Part I +Persons or Organizations Who Provided the Care, +You + must +complete this part. + +(If you have more than two care providers, see the instructions.) +1 +(a) +Care provider’s + +name +(b) +Address + +(number, street, apt. no., city, state, and ZIP code) +(c) +Identifying number + +(SSN or EIN) +(d) +Amount paid + +(see instructions) +Did you receive +dependent care benefits? +No +a +Complete only Part II below. +Yes +a +Complete Part III on the back next. +Caution. +If the care was provided in your home, you may owe employment taxes. If you do, you cannot file Form 1040A. For details, + +see the instructions for Form 1040, line 59a, or Form 1040NR, line 58a. +Part II +Credit for Child and Dependent Care Expenses +2 +Information about your +qualifying person(s). + If you have more than two qualifying persons, see the instructions. +(a) +Qualifying person’s name +First +Last +(b) +Qualifying person’s social + +security number +(c) Qualified expenses +you + + +incurred and paid in 2013 for the + +person listed in column (a) + + +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 III, enter the amount +from line 31 +.......................... +3 +4 +Enter your +earned income. + See instructions +............... +4 +5 +If married filing jointly, enter your spouse’s earned income (if you or your spouse was a +student or was disabled, see the instructions); +all others +, enter the amount from line 4 . +5 +6 +Enter the +smallest + of line 3, 4, or 5 +.................. +6 +7 +Enter the amount from Form 1040, line 38; Form +1040A, line 22; or Form 1040NR, line 37 +..... +7 +8 +Enter on line 8 the decimal amount shown below that applies to the amount on line 7 +If line 7 is: +Over +But not +over +Decimal +amount is +$0—15,000 .35 +15,000—17,000 .34 +17,000—19,000 .33 +19,000—21,000 .32 +21,000—23,000 .31 +23,000—25,000 .30 +25,000—27,000 .29 +27,000—29,000 .28 +If line 7 is: +Over +But not +over +Decimal +amount is +$29,000—31,000 .27 +31,000—33,000 .26 +33,000—35,000 .25 +35,000—37,000 .24 +37,000—39,000 .23 +39,000—41,000 .22 +41,000—43,000 .21 +43,000—No limit .20 +8 + +9 +Multiply line 6 by the decimal amount on line 8. If you paid 2012 expenses in 2013, see +the instructions +......................... +9 +10 +Tax liability limit. Enter the amount from the Credit +Limit Worksheet in the instructions +....... +10 +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 1040A, line 29; or Form 1040NR, line 46 +.... +11 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11862M +Form + +2441 + (2013) +Last or Business +First +Address +City +State +ZIP +Last or Business +First +Address +State +ZIP +To enter additional qualifying persons: +To enter additional providers: +----------------Page (0) Break---------------- +Form 2441 (2013) +Page +2 +Part III + Dependent Care Benefits +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 +.................. +12 +13 +Enter the amount, if any, you carried over from 2012 and used in 2013 during the grace +period. See instructions +....................... +13 +14 +Enter the amount, if any, you forfeited or carried forward to 2014. See instructions . . . +14 +( +) +15 +Combine lines 12 through 14. See instructions +............... +15 +16 +Enter the total amount of +qualified expenses + incurred +in 2013 for the care of the +qualifying person(s) +... + +16 +17 +Enter the +smaller + of line 15 or 16 +........ +17 +18 +Enter your +earned income. + See instructions +.... +18 +19 +Enter the amount shown below that applies +to you. +• If married filing jointly, enter your +spouse’s earned income (if you or 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. +} + ... +19 +20 +Enter the +smallest + of line 17, 18, or 19 +...... +20 +21 + +Enter $5,000 ($2,500 if married filing separately +and + +you were required to enter your spouse’s earned +income on line 19) +............. +21 +22 +Is any amount on line 12 from your sole proprietorship or partnership? (Form 1040A filers +go to line 25.) +No. +Enter -0-. +Yes. +Enter the amount here +.................... +22 +23 +Subtract line 22 from line 15 +......... +23 +Enter the +smallest + of line 20, 21, or 22. Also, include this amount + +on +the appropriate line(s) of your return. See instructions +............. +24 +25 + +Excluded benefits. Form 1040 and 1040NR 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 -0-. +Form 1040A filers: + Enter the + smaller +of line 20 or line 21 . . +25 +26 + + + +Taxable benefits. Form 1040 and 1040NR filers: +Subtract line 25 from line 23. If zero or + +the dotted line next to Form 1040, line 7, or Form 1040NR, line 8, enter “DCB.” +Form 1040A filers: +Subtract line 25 from line 15. Also, include this amount on Form 1040A, +line 7. In the space to the left of line 7, enter “DCB” +.............. +26 +To claim the child and dependent care +credit, complete lines 27 through 31 below. +27 +Enter $3,000 ($6,000 if two or more qualifying persons) +............ +27 +28 Form 1040 and 1040NR filers: +Add lines 24 and 25. + Form 1040A filers: +Enter the amount + +from line 25 +........................... +28 +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 +..... +29 +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 +..... +30 +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 +.................... +31 +Form +2441 + (2013) +24 +Deductible benefits. +less, enter -0-. Also, include this amount on Form 1040, line 7, or Form 1040NR, line 8. On +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F2441.fields.json b/test/data/fd/form/F2441.fields.json new file mode 100755 index 00000000..db43a2e1 --- /dev/null +++ b/test/data/fd/form/F2441.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"PROV_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_1_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1A2_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_1_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_1_","type":"mask","calc":false,"value":""},{"id":"PROV_L1D_1_","type":"number","calc":false,"value":""},{"id":"PROV_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_2_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1A2_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_2_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_2_","type":"mask","calc":false,"value":""},{"id":"PROV_L1D_2_","type":"number","calc":false,"value":""},{"id":"Add_F2441DEP","type":"link","calc":false,"value":""},{"id":"QUAL_L2F_1_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_1_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_1_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_1_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_2_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_2_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_2_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_2_","type":"number","calc":false,"value":""},{"id":"Add_F2441DEP","type":"link","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"mask","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"TAX1040","type":"number","calc":true,"value":""},{"id":"CRDT2441","type":"number","calc":true,"value":""},{"id":"B1040ARB","type":"radio","calc":false,"value":"BOXSOLEN"},{"id":"B1040ARB","type":"radio","calc":false,"value":"BOXSOLEY"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"CRYOVER","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"STD","type":"number","calc":false,"value":""},{"id":"FRPSHIP","type":"number","calc":false,"value":""},{"id":"LSL12","type":"number","calc":true,"value":""},{"id":"DEDBENS","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2441.json b/test/data/fd/form/F2441.json new file mode 100755 index 00000000..fca3deac --- /dev/null +++ b/test/data/fd/form/F2441.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2441DEP.content.txt b/test/data/fd/form/F2441DEP.content.txt new file mode 100755 index 00000000..0363236b --- /dev/null +++ b/test/data/fd/form/F2441DEP.content.txt @@ -0,0 +1,54 @@ +Form 2441 +Additional Form 2441 Information Statement 2013 +Line 1 and 2 +G + Attach to return (after all IRS forms) +Name(s) shown on return +Your social security number +Additional Persons or Organizations Who Provided Care +(a) + Care provider's +(b) +Address +(c) +Identifying +(d) +Amount paid +name (number, street, apt. no., city, state, and ZIP Code) number (see instructions) +(SSN above +or EIN below) +Last or Business +First Address +Last or Business +City State ZIP +First Address +Last or Business +City State ZIP +First Address +Last or Business +City State ZIP +First Address +Last or Business +City State ZIP +First Address +Last or Business +City State ZIP +Total. Enter on an available line on Form 2441 line 1. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Additional Qualifying Persons and Expenses +(c) Qualified expenses + +you +(a) + Qualifying person's name +(b) + Qualifying person's incurred and paid in 2013 for +First Last social security number the person listed in column (a) +Total. Enter on an available line on Form 2441 line 2. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +First +Address +City +State +ZIP +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F2441DEP.fields.json b/test/data/fd/form/F2441DEP.fields.json new file mode 100755 index 00000000..0d376d2d --- /dev/null +++ b/test/data/fd/form/F2441DEP.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"PROV_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_1_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1D_1_","type":"number","calc":false,"value":""},{"id":"PROV_L1A2_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_1_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_1_","type":"mask","calc":false,"value":""},{"id":"PROV_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_2_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1D_2_","type":"number","calc":false,"value":""},{"id":"PROV_L1A2_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_2_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_2_","type":"mask","calc":false,"value":""},{"id":"PROV_L1A_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_3_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1D_3_","type":"number","calc":false,"value":""},{"id":"PROV_L1A2_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_3_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_3_","type":"mask","calc":false,"value":""},{"id":"PROV_L1A_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_4_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1D_4_","type":"number","calc":false,"value":""},{"id":"PROV_L1A2_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_4_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_4_","type":"mask","calc":false,"value":""},{"id":"PROV_L1A_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_5_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1D_5_","type":"number","calc":false,"value":""},{"id":"PROV_L1A2_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_5_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_5_","type":"mask","calc":false,"value":""},{"id":"PROV_L1A_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1C_6_","type":"ssn","calc":false,"value":""},{"id":"PROV_L1D_6_","type":"number","calc":false,"value":""},{"id":"PROV_L1A2_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_L1B2_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_ST_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_ZIP_6_","type":"zip","calc":false,"value":""},{"id":"PROV_L1C2_6_","type":"mask","calc":false,"value":""},{"id":"TOTAL2","type":"number","calc":true,"value":""},{"id":"QUAL_L2F_1_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_1_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_1_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_1_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_2_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_2_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_2_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_2_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_3_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_3_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_3_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_3_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_4_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_4_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_4_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_4_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_5_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_5_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_5_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_5_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_6_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_6_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_6_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_6_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_7_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_7_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_7_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_7_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_8_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_8_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_8_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_8_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_9_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_9_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_9_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_9_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_10_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_10_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_10_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_10_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_11_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_11_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_11_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_11_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_12_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_12_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_12_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_12_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_13_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_13_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_13_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_13_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_14_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_14_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_14_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_14_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_15_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_15_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_15_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_15_","type":"number","calc":false,"value":""},{"id":"QUAL_L2F_16_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2L_16_","type":"alpha","calc":false,"value":""},{"id":"QUAL_L2SSN_16_","type":"ssn","calc":false,"value":""},{"id":"QUAL_L2_16_","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2441DEP.json b/test/data/fd/form/F2441DEP.json new file mode 100755 index 00000000..180aa0d8 --- /dev/null +++ b/test/data/fd/form/F2441DEP.json @@ -0,0 +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 diff --git a/test/data/fd/form/F255512S.content.txt b/test/data/fd/form/F255512S.content.txt new file mode 100755 index 00000000..a60d5359 --- /dev/null +++ b/test/data/fd/form/F255512S.content.txt @@ -0,0 +1,390 @@ +Address +Postal Code +Foreign Code +Foreign Address +Foreign Address +Occupants +City +Form +2555 +Department of the Treasury +Internal Revenue Service +Foreign Earned Income +a + +Attach to Form 1040. + +a + +. + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +34 +For Use by U.S. Citizens and Resident Aliens Only +Name shown on Form 1040 +Your social security number +Part I +General Information +1 + Your foreign address (including country) +2 + Your occupation +3 +Employer’s name +a +4 +a +Employer’s U.S. address +a +b +Employer’s foreign address +a +5 + +Employer is (check +any that apply): +F +a +A foreign entity +b +A U.S. company +c +Self +d +A foreign affiliate of a U.S. company +e +Other (specify) +a +6 +a +If you previously filed Form 2555 or Form 2555-EZ, enter the last year you filed the form. +a +b +If you did not previously file Form 2555 or 2555-EZ to claim either of the exclusions, check here +a +and go to line 7. +c +Have you ever revoked either of the exclusions? +.................... +Yes +No +d +If you answered “Yes,” enter the type of exclusion and the tax year for which the revocation was effective. +a +7 +Of what country are you a citizen/national? +a +8 + +a + +Did you maintain a separate foreign residence for your family because of adverse living conditions at your +............... +Yes +No +b + +If “Yes,” enter city and country of the separate foreign residence. Also, enter the number of days during your tax year that y +ou +maintained a second household at that address. +a +9 +List your tax home(s) during your tax year and date(s) established. +a +Next, complete either Part II or Part III. If an item does not apply, enter 'NA' If you do not give +the information asked for, any exclusion or deduction you claim may be disallowed. +Part II +Taxpayers Qualifying Under Bona Fide Residence Test +(see instructions) +10 +Date bona fide residence began + +a + +, and ended +a +11 +Kind of living quarters in foreign country +a +a +Purchased house +b +Rented house or apartment +c +Rented room +d +Quarters furnished by employer +12a +Did any of your family live with you abroad during any part of the tax year? +........... +Yes +No +b +If “Yes,” who and for what period? +a + +13 + +a + +Have you submitted a statement to the authorities of the foreign country where you claim bona fide +residence that you are not a resident of that country? See instructions +............ +Yes +No +b +Are you required to pay income tax to the country where you claim bona fide residence? See instructions . +Yes +No +If you answered “Yes” to 13a and “No” to 13b, you do not qualify as a bona fide resident. Do not complete the rest of +this part. +14 + +(a) +Date + +arrived in U.S. +(b) +Date left + +U.S. +(c) +Number of +days in U.S. + +on business +(d) +Income earned in + +U.S. on business +(attach computation) + +(a) +Date + +arrived in U.S. +(b) +Date left + +U.S. +(c) +Number of + +days in U.S. on +business +(d) +Income earned in + +U.S. on business +(attach computation) + +15a +List any contractual terms or other conditions relating to the length of your employment abroad. +a +b +Enter the type of visa under which you entered the foreign country. +a + +c +Did your visa limit the length of your stay or employment in a foreign country? If “Yes,” attach explanation . +Yes +No +d +Did you maintain a home in the United States while living abroad? +.............. +Yes +No +e + +If “Yes,” enter address of your home, whether it was rented, the names of the occupants, and their relationship +to you. +a +For Paperwork Reduction Act Notice, see the Form 1040 instructions. +Cat. No. 11900P +Form +2555 +(2013) +** For Rented, only enter the word 'Rented'. If not rented, leave blank. +Address +Relationship +State +ZIP Code +RENTED +Foreign City +Foreign Country +Foreign City +Foreign Country +State/Province +City +State +ZIP Code +Information about Form 2555 and its separate instructions is at www.irs.gov/form2555 +tax home? See Second foreign household in the instructions +include the income from column (d) in Part IV, but report it on Form 1040. +If you were present in the United States or its possessions during the tax year, complete columns (a)...(d) below. Do not +----------------Page (0) Break---------------- +12-month period.” Do not include the income from column (f) below in Part IV, but report it on Form 1040. + Address / City / Province or St / Country / Postal Code Type of Income +Partnership's Name +Form 2555 Page 3 Spouse Copy +Form 2555 (2013) +Page +2 +Part III +Taxpayers Qualifying Under Physical Presence Test +(see instructions) +16 +The physical presence test is based on the 12-month period from +a +through +a + +17 +Enter your principal country of employment during your tax year. +a +18 + + + +foreign countries that did not involve travel on or over international waters, or in or over the United States, for 24 hours or + +(a) +Name of country + +(including U.S.) +(b) +Date arrived +(c) +Date left +(d) +Full days + +present in + +country +(e) +Number of + +days in U.S. + +on business +(f) +Income earned in U.S. + +on business (attach + +computation) + +Part IV +All Taxpayers +Note: +Enter on lines 19 through 23 all income, including noncash income, you earned and actually or constructively received during + + + + + +constructively received the income. +If you are a cash basis taxpayer, report on Form 1040 all income you received in 2013, no matter when you performed +the service. +2013 Foreign Earned Income +Amount +(in U.S. dollars) +19 +Total wages, salaries, bonuses, commissions, etc. +............... +19 +20 +Allowable share of income for personal services performed (see instructions): +a +In a business (including farming) or profession +................. +20a +b +In a partnership. List partnership’s name and address and type of income. +a +20b +21 + +Noncash income (market value of property or facilities furnished by employer—attach statement +showing how it was determined): +a +Home (lodging) +........................... +21a +b +Meals +.............................. +21b +c +Car +............................... +21c +d +Other property or facilities. List type and amount. +a + +21d +22 +Allowances, reimbursements, or expenses paid on your behalf for services you performed: +a +Cost of living and overseas differential +......... +22a +b +Family +.................... +22b +c +Education +................... +22c +d +Home leave +.................. +22d +e +Quarters +................... +22e +f +For any other purpose. List type and amount. +a +22f +g +Add lines 22a through 22f +....................... +22g +23 +Other foreign earned income. List type and amount. +a +23 +24 +Add lines 19 through 21d, line 22g, and line 23 +................ +24 +25 +Total amount of meals and lodging included on line 24 that is excludable (see instructions) . . +25 +26 + +foreign earned income + ....................... +a +26 +Form +2555 +(2013) +Form 2555 Page 3 Taxpayer Copy +If you traveled abroad during the 12-month period entered on line 16, complete columns (a)...(f) below. Exclude travel between +your 2013 tax year for services you performed in a foreign country. If any of the foreign earned income received this tax year was +earned in a prior tax year, or will be earned in a later tax year (such as a bonus), see the instructions. include income from line + +14, columnor line 18, column Report amounts in U.S. dollars, using the exchange rates in effect when you actually or (d),(f). +Subtract line 25 from line 24. Enter the result here and on line 27 on page 3. This is your 2013 +more. If you have no travel to report during the period, enter “Physically present in a foreign country or countries for the entire +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F255512S.fields.json b/test/data/fd/form/F255512S.fields.json new file mode 100755 index 00000000..1c747ddb --- /dev/null +++ b/test/data/fd/form/F255512S.fields.json @@ -0,0 +1 @@ +[{"id":"EMPA","type":"box","calc":false,"value":""},{"id":"EMPB","type":"box","calc":false,"value":""},{"id":"EMPC","type":"box","calc":false,"value":""},{"id":"EMPD","type":"box","calc":false,"value":""},{"id":"EMPE","type":"box","calc":false,"value":""},{"id":"CHBX","type":"box","calc":false,"value":""},{"id":"REVRB","type":"radio","calc":false,"value":"REVY"},{"id":"REVRB","type":"radio","calc":false,"value":"REVN"},{"id":"ADVRB","type":"radio","calc":false,"value":"ADVY"},{"id":"ADVRB","type":"radio","calc":false,"value":"ADVN"},{"id":"KNDRB","type":"radio","calc":false,"value":"0"},{"id":"KNDRB","type":"radio","calc":false,"value":"1"},{"id":"KNDRB","type":"radio","calc":false,"value":"2"},{"id":"KNDRB","type":"radio","calc":false,"value":"3"},{"id":"FAMRB","type":"radio","calc":false,"value":"FAMY"},{"id":"FAMRB","type":"radio","calc":false,"value":"FAMN"},{"id":"HAVRB","type":"radio","calc":false,"value":"HAVY"},{"id":"HAVRB","type":"radio","calc":false,"value":"HAVN"},{"id":"REQRB","type":"radio","calc":false,"value":"REQY"},{"id":"REQRB","type":"radio","calc":false,"value":"REQN"},{"id":"LIMRB","type":"radio","calc":false,"value":"LIMY"},{"id":"LIMRB","type":"radio","calc":false,"value":"LIMN"},{"id":"HOMRB","type":"radio","calc":false,"value":"HOMY"},{"id":"HOMRB","type":"radio","calc":false,"value":"HOMN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TPFADDR","type":"alpha","calc":false,"value":""},{"id":"TPFCITY","type":"alpha","calc":false,"value":""},{"id":"TPFCNTRY","type":"alpha","calc":false,"value":""},{"id":"POD","type":"alpha","calc":false,"value":""},{"id":"YOCC","type":"alpha","calc":false,"value":""},{"id":"ENAM","type":"alpha","calc":false,"value":""},{"id":"ADUS","type":"alpha","calc":false,"value":""},{"id":"ADUSCITY","type":"alpha","calc":false,"value":""},{"id":"ADUST","type":"alpha","calc":false,"value":""},{"id":"ADUSZIP","type":"zip","calc":false,"value":""},{"id":"ADDF","type":"alpha","calc":false,"value":""},{"id":"FCITY","type":"alpha","calc":false,"value":""},{"id":"FPROV","type":"alpha","calc":false,"value":""},{"id":"FPOST","type":"alpha","calc":false,"value":""},{"id":"FCNTRY","type":"alpha","calc":false,"value":""},{"id":"SPEC","type":"alpha","calc":false,"value":""},{"id":"EXCL","type":"date","calc":false,"value":""},{"id":"L7","type":"alpha","calc":false,"value":""},{"id":"REVEXCL_TYPE_1_","type":"alpha","calc":false,"value":""},{"id":"REVEXCL_TXYRFEI_1_","type":"alpha","calc":false,"value":""},{"id":"CIT1","type":"alpha","calc":false,"value":""},{"id":"NUMDAY","type":"percent","calc":false,"value":""},{"id":"HOM1","type":"alpha","calc":false,"value":""},{"id":"HOM2","type":"alpha","calc":false,"value":""},{"id":"DTEST","type":"date","calc":false,"value":""},{"id":"BEGN","type":"date","calc":false,"value":""},{"id":"EDAT","type":"date","calc":false,"value":""},{"id":"WHO","type":"alpha","calc":false,"value":""},{"id":"PERIOD","type":"alpha","calc":false,"value":""},{"id":"L14ONE_ARR1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_1_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_1_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_1_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_1_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_2_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_2_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_2_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_2_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_3_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_3_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_3_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_3_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_4_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_4_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_4_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_4_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_4_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_4_","type":"number","calc":false,"value":""},{"id":"ANY1","type":"alpha","calc":false,"value":""},{"id":"ANY2","type":"alpha","calc":false,"value":""},{"id":"VISA","type":"alpha","calc":false,"value":""},{"id":"A1_ADH2_1_","type":"alpha","calc":false,"value":""},{"id":"A1_RENTED_1_","type":"alpha","calc":false,"value":""},{"id":"A1_CITY_1_","type":"alpha","calc":false,"value":""},{"id":"A1_ST_1_","type":"alpha","calc":false,"value":""},{"id":"A1_ZIP_1_","type":"zip","calc":false,"value":""},{"id":"A1_OCCNM_1_","type":"alpha","calc":false,"value":""},{"id":"A1_REL_1_","type":"alpha","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":false,"value":""},{"id":"SSN2","type":"ssn","calc":false,"value":""},{"id":"FROM","type":"date","calc":false,"value":""},{"id":"THRU","type":"date","calc":false,"value":""},{"id":"L17","type":"alpha","calc":false,"value":""},{"id":"PRT","type":"alpha","calc":false,"value":""},{"id":"FEILN18_CNAM_1_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_1_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_1_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_1_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_1_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_1_","type":"number","calc":false,"value":""},{"id":"FEILN18_CNAM_2_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_2_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_2_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_2_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_2_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_2_","type":"number","calc":false,"value":""},{"id":"FEILN18_CNAM_3_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_3_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_3_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_3_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_3_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_3_","type":"number","calc":false,"value":""},{"id":"FEILN18_CNAM_4_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_4_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_4_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_4_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_4_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_4_","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20A","type":"number","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"ADDR_NAME1_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_ADDRSS_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_CITYNAME_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_STORPROV_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_COUNTRY_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_ZIPCDE_1_","type":"zip","calc":false,"value":""},{"id":"ADDR_TYPEINC_1_","type":"alpha","calc":false,"value":""},{"id":"L21A","type":"number","calc":false,"value":""},{"id":"L21B","type":"number","calc":false,"value":""},{"id":"L21C","type":"number","calc":false,"value":""},{"id":"L21D1","type":"alpha","calc":false,"value":""},{"id":"L21D","type":"number","calc":false,"value":""},{"id":"L21D2","type":"alpha","calc":false,"value":""},{"id":"L22A","type":"number","calc":false,"value":""},{"id":"L22B","type":"number","calc":false,"value":""},{"id":"L22C","type":"number","calc":false,"value":""},{"id":"L22D","type":"number","calc":false,"value":""},{"id":"L22E","type":"number","calc":false,"value":""},{"id":"L22F1","type":"alpha","calc":false,"value":""},{"id":"L22F2","type":"alpha","calc":false,"value":""},{"id":"L22F","type":"number","calc":false,"value":""},{"id":"L22G","type":"number","calc":true,"value":""},{"id":"L23O1","type":"number","calc":false,"value":""},{"id":"L23O2","type":"alpha","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"Add_F2555_Page_3_Spouse","type":"link","calc":false,"value":""},{"id":"Add_F2555_Page_3_Taxpayer","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F255512S.json b/test/data/fd/form/F255512S.json new file mode 100755 index 00000000..189ef991 --- /dev/null +++ b/test/data/fd/form/F255512S.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"F255512T.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.273,"y":3.469,"w":1.5,"l":14.979},{"oc":"#221f1f","x":21.123,"y":3.469,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.193,"y":1.219,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.193,"y":3.469,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.273,"y":4.219,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.273,"y":5.719,"w":1.125,"l":71.861},{"oc":"#221f1f","x":78.049,"y":5.719,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.273,"y":7.218,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.273,"y":9.656,"w":0.75,"l":71.861},{"oc":"#221f1f","x":78.049,"y":9.656,"w":0.75,"l":21.123},{"dsh":1,"oc":"#221f1f","x":26.073,"y":10.406,"w":0.75,"l":73.099},{"dsh":1,"oc":"#221f1f","x":31.023,"y":11.156,"w":0.75,"l":68.149},{"dsh":1,"oc":"#221f1f","x":32.003,"y":13.125,"w":0.75,"l":66.911},{"dsh":1,"oc":"#221f1f","x":79.621,"y":15.797,"w":0.75,"l":18.648},{"dsh":1,"oc":"#221f1f","x":73.434,"y":16.547,"w":0.75,"l":24.836},{"dsh":1,"oc":"#221f1f","x":85.809,"y":18.797,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":42.496,"y":19.547,"w":0.75,"l":55.774},{"dsh":1,"oc":"#221f1f","x":46.209,"y":22.547,"w":0.75,"l":52.061},{"dsh":1,"oc":"#221f1f","x":58.584,"y":23.297,"w":0.75,"l":39.686},{"oc":"#221f1f","x":6.145,"y":23.672,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":25.922,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":27.422,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":35.845,"y":28.172,"w":0.75,"l":23.599},{"dsh":1,"oc":"#221f1f","x":70.495,"y":28.172,"w":0.75,"l":28.548},{"dsh":1,"oc":"#221f1f","x":37.082,"y":31.172,"w":0.75,"l":61.961},{"oc":"#221f1f","x":6.145,"y":36.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.145,"y":37.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":36.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":37.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.42,"y":36.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":28.42,"y":37.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.32,"y":36.422,"w":0.75,"l":14.936},{"oc":"#221f1f","x":38.32,"y":37.922,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.42,"y":38.672,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.32,"y":38.672,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.695,"y":38.672,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.144,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.419,"y":39.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.319,"y":39.422,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.694,"y":39.422,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.144,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.419,"y":40.172,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.319,"y":40.172,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.694,"y":40.172,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.144,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.419,"y":40.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.319,"y":40.922,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.694,"y":40.922,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.04,"y":36.422,"w":0.75,"l":11.352},{"oc":"#221f1f","x":53.04,"y":37.922,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":36.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":64.307,"y":37.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":36.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.445,"y":37.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":36.422,"w":0.75,"l":13.698},{"oc":"#221f1f","x":85.345,"y":37.922,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.041,"y":38.672,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":38.672,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":38.672,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.041,"y":39.422,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":39.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":39.422,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.041,"y":40.172,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":40.172,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":40.172,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.041,"y":40.922,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":40.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":40.922,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":79.157,"y":41.672,"w":0.75,"l":19.902},{"dsh":1,"oc":"#221f1f","x":11.095,"y":42.422,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":59.357,"y":43.172,"w":0.75,"l":39.686},{"dsh":1,"oc":"#221f1f","x":18.52,"y":46.078,"w":0.75,"l":80.524},{"oc":"#221f1f","x":6.145,"y":48.328,"w":1.5,"l":50.824},{"oc":"#221f1f","x":56.882,"y":48.328,"w":1.5,"l":29.786},{"oc":"#221f1f","x":86.582,"y":48.328,"w":1.5,"l":12.461},{"oc":"#221f1f","x":17.301,"y":46.828,"w":1.125,"l":45.319},{"oc":"#221f1f","x":72.841,"y":46.688,"w":1.125,"l":21.123},{"oc":"#221f1f","x":58.967,"y":48.234,"w":1.125,"l":35.206},{"oc":"#221f1f","x":62.753,"y":47.625,"w":1.125,"l":11.65},{"oc":"#221f1f","x":45.016,"y":47.625,"w":1.125,"l":7.937},{"oc":"#221f1f","x":17.958,"y":48.234,"w":1.125,"l":30.085},{"oc":"#221f1f","x":12.995,"y":47.625,"w":1.125,"l":27.636},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.685},{"oc":"#221f1f","x":0.086,"y":48.778,"w":0.75,"l":1.685},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.685},{"oc":"#221f1f","x":0.086,"y":48.967,"w":0.75,"l":1.685}],"VLines":[{"oc":"#221f1f","x":21.166,"y":0.453,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.166,"y":1.953,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.279,"y":0.453,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.279,"y":1.203,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.279,"y":1.953,"w":1.5,"l":1.547},{"oc":"#221f1f","x":78.092,"y":4.203,"w":0.75,"l":1.539},{"oc":"#221f1f","x":78.117,"y":7.29,"w":0.75,"l":2.295},{"oc":"#221f1f","x":17.325,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.462,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":17.325,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.325,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.325,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.324,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":36.406,"w":3,"l":1.531},{"oc":"#221f1f","x":64.35,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":37.906,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":38.656,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":39.406,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":40.156,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":1.771,"y":48.778,"w":0.75,"l":0.691},{"oc":"#221f1f","x":0.086,"y":48.778,"w":0.75,"l":0.691},{"oc":"#221f1f","x":1.771,"y":48.967,"w":0.75,"l":0.502},{"oc":"#221f1f","x":0.086,"y":48.967,"w":0.75,"l":0.502}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.316,"y":6.094,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":26.297,"w":6.188,"h":0.75,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":49.041,"w":1.208,"h":0.397,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":49.041,"w":1.208,"h":0.397,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.809,"w":1.513,"h":0.628,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.809,"w":1.513,"h":0.628,"clr":-1},{"oc":"#bfbfbf","x":0.344,"y":48.926,"w":1.085,"h":0.449,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.926,"w":1.257,"h":0.512,"clr":-1},{"oc":"#bfbfbf","x":0.344,"y":49.01,"w":0.989,"h":0.365,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.948,"w":1.333,"h":0.49,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.998,"w":1.513,"h":0.439,"clr":-1}],"Texts":[{"x":30.859,"y":11,"w":39.46,"clr":0,"A":"left","R":[{"T":"Address%20","S":-1,"TS":[0,13,0,0]}]},{"x":75.019,"y":13.27,"w":54.470000000000006,"clr":0,"A":"left","R":[{"T":"Postal%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":67.483,"y":8.708,"w":60.58000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":31,"y":13.147,"w":76.14000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Address%20","S":-1,"TS":[0,12.034839999999999,0,0]}]},{"x":6.97,"y":8.752,"w":76.14000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Address%20","S":-1,"TS":[0,12.034839999999999,0,0]}]},{"x":8.902,"y":47.416,"w":47.80000000000001,"clr":0,"A":"left","R":[{"T":"Occupants","S":-1,"TS":[0,13,0,0]}]},{"x":9.006,"y":46.673,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.066,"y":0.853,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.543,"y":0.8520000000000001,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":6.066,"y":2.119,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":6.066,"y":2.557,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":40.105,"y":0.944,"w":11.392000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20Earned%20Income%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":44.963,"y":1.682,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.331,"y":1.7759999999999998,"w":9.891000000000004,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.422,"y":2.303,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.141,"y":2.396,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.87,"y":0.19099999999999995,"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.986,"y":1.549,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.866,"y":1.545,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":86.607,"y":2.094,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.607,"y":2.477,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.585,"y":2.478,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":32.167,"y":3.29,"w":24.118000000000002,"clr":-1,"A":"left","R":[{"T":"For%20Use%20by%20U.S.%20Citizens%20and%20Resident%20Aliens%20Only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.066,"y":3.875,"w":12.671000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20on%20Form%201040%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.529,"y":3.875,"w":13.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":6.964,"y":5.915,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.66,"y":5.857,"w":9.780000000000003,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.785,"y":6.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.645,"y":6.933,"w":18.669000000000004,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20foreign%20address%20(including%20country)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.529,"y":6.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.389,"y":6.933,"w":8.224000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20occupation%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.681,"y":9.464,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.016,"y":9.433,"w":8.04,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.453,"y":9.339,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.681,"y":10.214,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.541,"y":10.214,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.016,"y":10.183,"w":11.354000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20U.S.%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.579,"y":10.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.284,"y":12.23,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.759,"y":12.198,"w":12.520000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20foreign%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.125,"y":12.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":14.198,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":14.198,"w":9.002,"clr":-1,"A":"left","R":[{"T":"Employer%20is%20(check%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":14.886,"w":7.1320000000000014,"clr":-1,"A":"left","R":[{"T":"any%20that%20apply)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.693,"y":13.712,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":29.026,"y":14.136,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.389,"y":14.136,"w":7.019,"clr":-1,"A":"left","R":[{"T":"A%20foreign%20entity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.619,"y":14.136,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.039,"y":14.136,"w":7.558,"clr":-1,"A":"left","R":[{"T":"A%20U.S.%20company%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.714,"y":14.136,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.99,"y":14.136,"w":1.981,"clr":-1,"A":"left","R":[{"T":"Self%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.969,"y":14.886,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.389,"y":14.886,"w":16.353,"clr":-1,"A":"left","R":[{"T":"A%20foreign%20affiliate%20of%20a%20U.S.%20company%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.676,"y":14.886,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.039,"y":14.886,"w":6.760000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20(specify)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.496,"y":14.792,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":15.605,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.639,"y":15.605,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":15.573,"w":39.63899999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20previously%20filed%20Form%202555%20or%20Form%202555-EZ%2C%20enter%20the%20last%20year%20you%20filed%20the%20form.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.43,"y":15.48,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.639,"y":16.386,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":16.386,"w":42.84299999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20previously%20file%20Form%202555%20or%202555-EZ%20to%20claim%20either%20of%20the%20exclusions%2C%20check%20here%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":75.059,"y":16.292,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":79.414,"y":16.386,"w":7.484000000000002,"clr":-1,"A":"left","R":[{"T":"and%20go%20to%20line%207.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.639,"y":17.136,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":17.136,"w":21.706000000000007,"clr":-1,"A":"left","R":[{"T":"Have%20you%20ever%20revoked%20either%20of%20the%20exclusions%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.351,"y":17.136,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.664,"y":17.136,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.852,"y":17.136,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.64,"y":17.855,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":17.823,"w":47.50199999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20type%20of%20exclusion%20and%20the%20tax%20year%20for%20which%20the%20revocation%20was%20effective.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.593,"y":17.73,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":18.605,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":18.574,"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":40.108,"y":18.48,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":19.449,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.639,"y":19.449,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":19.449,"w":47.30299999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20maintain%20a%20separate%20foreign%20residence%20for%20your%20family%20because%20of%20adverse%20living%20conditions%20at%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.666,"y":20.136,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.637,"y":20.136,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.852,"y":20.136,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.64,"y":20.949,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.115,"y":20.949,"w":55.19499999999993,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20city%20and%20country%20of%20the%20separate%20foreign%20residence.%20Also%2C%20enter%20the%20number%20of%20days%20during%20your%20tax%20year%20that%20%20y","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":96.242,"y":20.949,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"ou%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.127,"y":21.647,"w":21.82199999999999,"clr":-1,"A":"left","R":[{"T":"maintained%20a%20second%20household%20at%20that%20address.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.87,"y":21.553,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":22.355,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":22.323,"w":29.671999999999993,"clr":-1,"A":"left","R":[{"T":"List%20your%20tax%20home(s)%20during%20your%20tax%20year%20and%20date(s)%20established.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.012,"y":22.23,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.006,"y":23.919,"w":44.09899999999995,"clr":-1,"A":"left","R":[{"T":"Next%2C%20complete%20either%20Part%20II%20or%20Part%20III.%20If%20an%20item%20does%20not%20apply%2C%20enter%20'NA'%20If%20you%20do%20not%20give%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":14.842,"y":24.607,"w":40.06799999999997,"clr":-1,"A":"left","R":[{"T":"the%20information%20asked%20for%2C%20any%20exclusion%20or%20deduction%20you%20claim%20may%20be%20disallowed.%20","S":-1,"TS":[0,15,1,0]}]},{"x":6.582,"y":26.118,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":26.061,"w":26.28600000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Qualifying%20Under%20Bona%20Fide%20Residence%20Test%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":59.501,"y":26.061,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":27.23,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.199,"w":14.262000000000008,"clr":-1,"A":"left","R":[{"T":"Date%20bona%20fide%20residence%20began","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":33.158,"y":27.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.322,"y":27.199,"w":5.613999999999999,"clr":-1,"A":"left","R":[{"T":"%2C%20and%20ended%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.006,"y":27.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":28.011,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.011,"w":18.095000000000002,"clr":-1,"A":"left","R":[{"T":"Kind%20of%20living%20quarters%20in%20foreign%20country%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.878,"y":27.917,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.989,"y":28.011,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.3,"y":28.011,"w":8.076,"clr":-1,"A":"left","R":[{"T":"Purchased%20house%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.494,"y":28.011,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.863,"y":28.011,"w":12.541000000000004,"clr":-1,"A":"left","R":[{"T":"Rented%20house%20or%20apartment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.538,"y":28.011,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.85,"y":28.011,"w":6.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Rented%20room%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.931,"y":28.761,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.3,"y":28.761,"w":14.374000000000004,"clr":-1,"A":"left","R":[{"T":"Quarters%20furnished%20by%20employer%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":29.511,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"12a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.511,"w":33.46799999999999,"clr":-1,"A":"left","R":[{"T":"Did%20any%20of%20your%20family%20live%20with%20you%20abroad%20during%20any%20part%20of%20the%20tax%20year%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.687,"y":29.511,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":29.511,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":29.511,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":30.23,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.198,"w":15.667000000000003,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20who%20and%20for%20what%20period%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.122,"y":30.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":31.074,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.412,"y":31.074,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":31.074,"w":44.473,"clr":-1,"A":"left","R":[{"T":"Have%20you%20submitted%20a%20statement%20to%20the%20authorities%20of%20the%20foreign%20country%20where%20you%20claim%20bona%20fide%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":31.761000000000003,"w":31.72900000000001,"clr":-1,"A":"left","R":[{"T":"residence%20%20that%20you%20are%20not%20a%20resident%20of%20that%20country%3F%20See%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.629,"y":31.761000000000003,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":31.761000000000003,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":31.761000000000003,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":32.511,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.511,"w":47.13799999999998,"clr":-1,"A":"left","R":[{"T":"Are%20you%20required%20to%20pay%20income%20tax%20to%20the%20country%20where%20you%20claim%20bona%20fide%20residence%3F%20See%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.317,"y":32.511,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":32.511,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":32.511,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.324,"w":55.68599999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%E2%80%9D%20to%2013a%20and%20%E2%80%9CNo%E2%80%9D%20to%2013b%2C%20you%20do%20not%20qualify%20as%20a%20bona%20fide%20resident.%20Do%20not%20complete%20the%20rest%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.011,"w":4.5,"clr":-1,"A":"left","R":[{"T":"this%20part.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":34.824,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.379,"y":36.257,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.116,"y":36.257,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.707,"y":36.782,"w":6.593000000000002,"clr":-1,"A":"left","R":[{"T":"arrived%20in%20U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.502,"y":36.257,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.284,"y":36.257,"w":4.019,"clr":-1,"A":"left","R":[{"T":"Date%20left%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.485,"y":36.782,"w":2.204,"clr":-1,"A":"left","R":[{"T":"U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.441,"y":36.122,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.179,"y":36.122,"w":5.020000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.92,"y":36.559,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"days%20in%20U.S.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.931,"y":36.997,"w":5.65,"clr":-1,"A":"left","R":[{"T":"on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.989,"y":36.122,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.771,"y":36.122,"w":7.743,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.98,"y":36.559,"w":7.854000000000001,"clr":-1,"A":"left","R":[{"T":"U.S.%20on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.989,"y":36.997,"w":9.225000000000001,"clr":-1,"A":"left","R":[{"T":"(attach%20computation)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.404,"y":36.257,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.141,"y":36.257,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.733,"y":36.782,"w":6.593000000000002,"clr":-1,"A":"left","R":[{"T":"arrived%20in%20U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.528,"y":36.257,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.309,"y":36.257,"w":3.7409999999999997,"clr":-1,"A":"left","R":[{"T":"Date%20left","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.51,"y":36.782,"w":2.204,"clr":-1,"A":"left","R":[{"T":"U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.299,"y":36.122,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.371,"y":36.122,"w":5.020000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.098,"y":36.559,"w":7.0760000000000005,"clr":-1,"A":"left","R":[{"T":"days%20in%20U.S.%20on%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.803,"y":36.997,"w":4.242,"clr":-1,"A":"left","R":[{"T":"business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.395,"y":36.122,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.177,"y":36.122,"w":8.021,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.387,"y":36.559,"w":7.854000000000001,"clr":-1,"A":"left","R":[{"T":"U.S.%20on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.395,"y":36.997,"w":9.225000000000001,"clr":-1,"A":"left","R":[{"T":"(attach%20computation)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.73,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"15a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.699,"w":42.955,"clr":-1,"A":"left","R":[{"T":"List%20any%20contractual%20terms%20or%20other%20conditions%20relating%20to%20the%20length%20of%20your%20employment%20abroad.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.333,"y":40.605,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.413,"y":42.23,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":42.198,"w":30.061000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20type%20of%20visa%20under%20which%20you%20entered%20the%20foreign%20country.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.388,"y":42.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.413,"y":43.011,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.011,"w":47.60299999999998,"clr":-1,"A":"left","R":[{"T":"Did%20your%20visa%20limit%20the%20length%20of%20your%20stay%20or%20employment%20in%20a%20foreign%20country%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20attach%20explanation%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":43.011,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":43.011,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":43.761,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.761,"w":29.637,"clr":-1,"A":"left","R":[{"T":"Did%20you%20maintain%20a%20home%20in%20the%20United%20States%20while%20living%20abroad%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.5,"y":43.761,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.462,"y":43.761,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":43.761,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":44.574,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.574,"w":49.97299999999994,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20address%20of%20your%20home%2C%20whether%20it%20was%20rented%2C%20the%20names%20of%20the%20occupants%2C%20and%20their%20relationship%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":45.178,"w":3.353,"clr":-1,"A":"left","R":[{"T":"to%20you.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.074,"y":45.178,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":48.185,"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":67.068,"y":48.203,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011900P%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.008,"y":48.149,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":48.149,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.451,"y":48.149,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":18.613,"y":45.219,"w":328.17,"clr":0,"A":"left","R":[{"T":"**%20For%20Rented%2C%20only%20enter%20the%20word%20'Rented'.%20If%20not%20rented%2C%20leave%20blank.","S":10,"TS":[0,14,1,0]}]},{"x":9.074,"y":45.969,"w":36.68,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":47.84,"y":47.506,"w":55.02000000000001,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,13,0,0]}]},{"x":40.279,"y":46.63,"w":23.35,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":54.404,"y":46.865,"w":42.24,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":64.977,"y":45.916,"w":41.11,"clr":0,"A":"left","R":[{"T":"RENTED","S":-1,"TS":[0,13,0,0]}]},{"x":29.989,"y":8.647,"w":53.900000000000006,"clr":0,"A":"left","R":[{"T":"Foreign%20City","S":-1,"TS":[0,13,0,0]}]},{"x":52.602,"y":8.687,"w":71.69000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Country","S":-1,"TS":[0,13,0,0]}]},{"x":48.294,"y":13.147,"w":53.900000000000006,"clr":0,"A":"left","R":[{"T":"Foreign%20City","S":-1,"TS":[0,13,0,0]}]},{"x":86.855,"y":13.146,"w":71.69000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Country","S":-1,"TS":[0,13,0,0]}]},{"x":59.949,"y":13.27,"w":65.03,"clr":0,"A":"left","R":[{"T":"State%2FProvince","S":-1,"TS":[0,13,0,0]}]},{"x":50.442,"y":11.037,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":67.091,"y":11.052,"w":23.35,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":72.966,"y":11.005,"w":42.24,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.791,"y":2.396,"w":40.84499999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202555%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform2555","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.116,"y":20.136,"w":26.95900000000001,"clr":-1,"A":"left","R":[{"T":"tax%20home%3F%20See%20Second%20foreign%20household%20in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":35.499,"w":32.67999999999999,"clr":-1,"A":"left","R":[{"T":"include%20the%20income%20from%20column%20(d)%20in%20Part%20IV%2C%20but%20report%20it%20on%20Form%201040.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.762,"w":53.29999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20present%20in%20the%20United%20States%20or%20its%20possessions%20during%20the%20tax%20year%2C%20complete%20columns%20(a)%E2%80%A6(d)%20below.%20Do%20not%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1519,"AM":1024,"x":5.612,"y":4.915,"w":71.61,"h":0.858,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1520,"AM":1024,"x":78.323,"y":4.832,"w":20.039,"h":0.869,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFADDR","EN":0},"TI":1521,"AM":0,"x":6.02,"y":8.103,"w":18.813,"h":0.869,"TU":"Line 1. Foreign Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCITY","EN":0},"TI":1522,"AM":0,"x":25.763,"y":8.02,"w":20.306,"h":0.883,"TU":"Foreign City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCNTRY","EN":0},"TI":1523,"AM":0,"x":46.632,"y":8.043,"w":18.4,"h":0.858,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"POD","EN":0},"TI":1524,"AM":0,"x":65.861,"y":8.094,"w":10.89,"h":0.84,"TU":"Foreign postal code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOCC","EN":0},"TI":1525,"AM":0,"x":78.998,"y":8.06,"w":17.664,"h":0.852,"TU":"Line 2. Your occupation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ENAM","EN":0},"TI":1526,"AM":0,"x":26.091,"y":9.707,"w":35.468,"h":0.833,"TU":"Line 3. Employer's name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADUS","EN":0},"TI":1527,"AM":0,"x":30.405,"y":10.431,"w":18.481,"h":0.833,"TU":"Line 4a. Employer's U.S. address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADUSCITY","EN":0},"TI":1528,"AM":0,"x":49.366,"y":10.428,"w":17.84,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADUST","EN":0},"TI":1529,"AM":0,"x":68.113,"y":10.452,"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":"ADUSZIP","EN":0},"TI":1530,"AM":0,"x":73.685,"y":10.394,"w":9.033,"h":0.833,"TU":"Zip Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDF","EN":0},"TI":1531,"AM":0,"x":31.602,"y":12.377,"w":18.289,"h":0.833,"TU":"Line 4b. Employer's foreign address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCITY","EN":0},"TI":1532,"AM":0,"x":50.562,"y":12.368,"w":15.575,"h":0.833,"TU":"Foreign City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPROV","EN":0},"TI":1533,"AM":0,"x":66.937,"y":12.361,"w":7.77,"h":0.833,"TU":"State / Province."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPOST","EN":0},"TI":1534,"AM":0,"x":75.146,"y":12.329,"w":8.405,"h":0.833,"TU":"Foreign postal code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNTRY","EN":0},"TI":1535,"AM":0,"x":84.093,"y":12.292,"w":14.578,"h":0.858,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPEC","EN":0},"TI":1541,"AM":0,"x":79.095,"y":15.245,"w":9.356,"h":0.833,"TU":"Other (specify)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EXCL","EN":0},"TI":1542,"AM":0,"x":72.737,"y":15.907,"w":8.858,"h":0.833,"TU":"Line 6a. If you previously filed Form 2555 or Form 2555-EZ, enter the last year you filed the form.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1546,"AM":0,"x":42.064,"y":18.665,"w":18.977,"h":0.858,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REVEXCL_TYPE_1_","EN":0},"TI":1547,"AM":0,"x":85.59,"y":18.131,"w":4.945,"h":0.833,"PL":{"V":["FOREIGN EARNED INCOME EXCLUSION","HOUSING EXCLUSION","FOREIGN EARNED INCOME EXCLUSION AND HOUSING EXCLUSION"],"D":["FOREIGN EARNED INCOME EXCLUSION","HOUSING EXCLUSION","FOREIGN EARNED INCOME EXCLUSION AND HOUSING EXCLUSION"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REVEXCL_TXYRFEI_1_","EN":0},"TI":1548,"AM":0,"x":91.71,"y":18.164,"w":5.035,"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":["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":"CIT1","EN":0},"TI":1551,"AM":0,"x":45.777,"y":21.915,"w":27.357,"h":0.833,"TU":"Line 8b. Enter city and country of the separate foreign residence."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"NUMDAY","EN":0},"TI":1552,"AM":0,"x":73.454,"y":21.942,"w":24.454,"h":0.833,"TU":"Line 8b. Enter the number of days during your tax year that you maintained a second household at that address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HOM1","EN":0},"TI":1553,"AM":0,"x":58.152,"y":22.728,"w":13.775,"h":0.833,"TU":"Line 9. List your tax home(s) during your tax year."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HOM2","EN":0},"TI":1554,"AM":0,"x":72.312,"y":22.694,"w":13.775,"h":0.833,"TU":"Line 9. Tax home(s) continued."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DTEST","EN":0},"TI":1555,"AM":0,"x":86.537,"y":22.664,"w":11.574,"h":0.833,"TU":"Line 9. Date(s) established.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BEGN","EN":0},"TI":1556,"AM":0,"x":35.396,"y":27.511,"w":15.291,"h":0.833,"TU":"Line 10. Date bona fide residence began.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EDAT","EN":0},"TI":1557,"AM":0,"x":70.046,"y":27.511,"w":16.303,"h":0.833,"TU":"Line 10. Date ended.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WHO","EN":0},"TI":1564,"AM":0,"x":36.634,"y":30.511,"w":29.127,"h":0.833,"TU":"Line 12b. Who."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PERIOD","EN":0},"TI":1565,"AM":0,"x":67.331,"y":30.579,"w":27.665,"h":0.833,"TU":"Line 12b. What period?"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_1_","EN":0},"TI":1570,"AM":0,"x":6.033,"y":37.99,"w":10.67,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_1_","EN":0},"TI":1571,"AM":0,"x":17.581,"y":38.011,"w":9.989,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_1_","EN":0},"TI":1572,"AM":0,"x":28.926,"y":38.011,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_1_","EN":0},"TI":1573,"AM":0,"x":38.556,"y":38.011,"w":12.459,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_1_","EN":0},"TI":1574,"AM":0,"x":53.73,"y":37.988,"w":9.727,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_1_","EN":0},"TI":1575,"AM":0,"x":64.723,"y":38.011,"w":9.872,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_1_","EN":0},"TI":1576,"AM":0,"x":75.861,"y":38.011,"w":8.634,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_1_","EN":0},"TI":1577,"AM":0,"x":85.851,"y":38.011,"w":10.142,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_2_","EN":0},"TI":1578,"AM":0,"x":5.85,"y":38.743,"w":10.875,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_2_","EN":0},"TI":1579,"AM":0,"x":17.498,"y":38.828,"w":10.183,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_2_","EN":0},"TI":1580,"AM":0,"x":29.037,"y":38.763,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_2_","EN":0},"TI":1581,"AM":0,"x":38.487,"y":38.763,"w":12.549,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_2_","EN":0},"TI":1582,"AM":0,"x":53.841,"y":38.828,"w":9.548,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_2_","EN":0},"TI":1583,"AM":0,"x":64.744,"y":38.763,"w":9.872,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_2_","EN":0},"TI":1584,"AM":0,"x":75.972,"y":38.763,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_2_","EN":0},"TI":1585,"AM":0,"x":85.782,"y":38.763,"w":10.412,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_3_","EN":0},"TI":1586,"AM":0,"x":5.87,"y":39.501,"w":10.799,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_3_","EN":0},"TI":1587,"AM":0,"x":17.443,"y":39.522,"w":10.181,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_3_","EN":0},"TI":1588,"AM":0,"x":29.07,"y":39.522,"w":8.364,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_3_","EN":0},"TI":1589,"AM":0,"x":38.52,"y":39.522,"w":12.639,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_3_","EN":0},"TI":1590,"AM":0,"x":53.695,"y":39.522,"w":9.638,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_3_","EN":0},"TI":1591,"AM":0,"x":64.688,"y":39.522,"w":9.962,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_3_","EN":0},"TI":1592,"AM":0,"x":75.825,"y":39.522,"w":8.634,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_3_","EN":0},"TI":1593,"AM":0,"x":85.635,"y":39.522,"w":10.592,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_4_","EN":0},"TI":1594,"AM":0,"x":5.927,"y":40.2,"w":10.67,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_4_","EN":0},"TI":1595,"AM":0,"x":17.322,"y":40.22,"w":10.232,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_4_","EN":0},"TI":1596,"AM":0,"x":29.09,"y":40.243,"w":8.274,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_4_","EN":0},"TI":1597,"AM":0,"x":38.72,"y":40.22,"w":12.369,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_4_","EN":0},"TI":1598,"AM":0,"x":53.804,"y":40.22,"w":9.638,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_4_","EN":0},"TI":1599,"AM":0,"x":64.797,"y":40.22,"w":9.692,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_4_","EN":0},"TI":1600,"AM":0,"x":75.845,"y":40.22,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_4_","EN":0},"TI":1601,"AM":0,"x":85.835,"y":40.22,"w":10.502,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ANY1","EN":0},"TI":1602,"AM":0,"x":78.709,"y":41.076,"w":19.924,"h":0.833,"TU":"Line 15a. List any contractual terms or other conditions relating to the length of your employment abroad."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ANY2","EN":0},"TI":1603,"AM":0,"x":10.646,"y":41.761,"w":87.966,"h":0.833,"TU":"Line 15a. Continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VISA","EN":0},"TI":1604,"AM":0,"x":58.909,"y":42.511,"w":39.703,"h":0.833,"TU":"Line 15b. Enter the type of visa under which you entered the foreign country."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_ADH2_1_","EN":0},"TI":1609,"AM":0,"x":15.732,"y":46.103,"w":46.757,"h":0.833,"TU":"Line 15e. Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_RENTED_1_","EN":0},"TI":1610,"AM":0,"x":72.554,"y":46.003,"w":21.617,"h":0.833,"TU":"Line 15e. For Rented, olnly enter the word \"Rented\", If not rented, leave blank."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_CITY_1_","EN":0},"TI":1611,"AM":0,"x":13.252,"y":46.817,"w":27.169,"h":0.87,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_ST_1_","EN":0},"TI":1612,"AM":0,"x":46.255,"y":46.85,"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":"A1_ZIP_1_","EN":0},"TI":1613,"AM":0,"x":62.657,"y":46.835,"w":16.836,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_OCCNM_1_","EN":0},"TI":1614,"AM":0,"x":18.007,"y":47.649,"w":29.791,"h":0.833,"TU":"Occupants."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_REL_1_","EN":0},"TI":1615,"AM":0,"x":58.083,"y":47.695,"w":23.776,"h":0.833,"TU":"Relationship."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPA","EN":0},"TI":1536,"AM":0,"x":30.848,"y":14.284,"w":1.776,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPB","EN":0},"TI":1537,"AM":0,"x":65.008,"y":14.194,"w":1.913,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPC","EN":0},"TI":1538,"AM":0,"x":85.912,"y":14.314,"w":2.128,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPD","EN":0},"TI":1539,"AM":0,"x":30.722,"y":15.02,"w":1.764,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPE","EN":0},"TI":1540,"AM":0,"x":64.796,"y":14.991,"w":2.128,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CHBX","EN":0},"TI":1543,"AM":0,"x":77.022,"y":16.555,"w":2.091,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REVY","EN":0},"TI":1544,"AM":0,"x":85.566,"y":17.31,"w":1.755,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REVN","EN":0},"TI":1545,"AM":0,"x":91.882,"y":17.31,"w":1.552,"h":0.833,"checked":false}],"id":{"Id":"REVRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADVY","EN":0},"TI":1549,"AM":0,"x":85.528,"y":20.206,"w":1.857,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADVN","EN":0},"TI":1550,"AM":0,"x":91.335,"y":20.242,"w":2.151,"h":0.833,"checked":false}],"id":{"Id":"ADVRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"0","EN":0},"TI":1558,"AM":0,"x":42.563,"y":28.187,"w":1.461,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"1","EN":0},"TI":1559,"AM":0,"x":60.892,"y":28.14,"w":1.717,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"2","EN":0},"TI":1560,"AM":0,"x":86.843,"y":28.119,"w":1.74,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"3","EN":0},"TI":1561,"AM":0,"x":42.558,"y":28.907,"w":1.514,"h":0.833,"checked":false}],"id":{"Id":"KNDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FAMY","EN":0},"TI":1562,"AM":0,"x":86.221,"y":29.565,"w":1.766,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FAMN","EN":0},"TI":1563,"AM":0,"x":92.657,"y":29.579,"w":1.6,"h":0.833,"checked":false}],"id":{"Id":"FAMRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HAVY","EN":0},"TI":1566,"AM":0,"x":86.489,"y":31.928,"w":1.691,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HAVN","EN":0},"TI":1567,"AM":0,"x":92.657,"y":31.908,"w":1.553,"h":0.833,"checked":false}],"id":{"Id":"HAVRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQY","EN":0},"TI":1568,"AM":0,"x":86.413,"y":32.688,"w":1.629,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQN","EN":0},"TI":1569,"AM":0,"x":92.602,"y":32.63,"w":1.676,"h":0.833,"checked":false}],"id":{"Id":"REQRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LIMY","EN":0},"TI":1605,"AM":0,"x":86.258,"y":43.15,"w":1.679,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LIMN","EN":0},"TI":1606,"AM":0,"x":92.325,"y":43.13,"w":1.809,"h":0.833,"checked":false}],"id":{"Id":"LIMRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOMY","EN":0},"TI":1607,"AM":0,"x":86.115,"y":43.889,"w":1.932,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOMN","EN":0},"TI":1608,"AM":0,"x":92.425,"y":43.963,"w":1.857,"h":0.833,"checked":false}],"id":{"Id":"HOMRB","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":4.5,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":59.357,"y":5.25,"w":0.75,"l":17.411},{"dsh":1,"oc":"#221f1f","x":84.107,"y":5.25,"w":0.75,"l":14.936},{"dsh":1,"oc":"#221f1f","x":58.12,"y":6,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":35.973},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":42.032,"y":10.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":10.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":9,"w":0.75,"l":8.748},{"oc":"#221f1f","x":66.782,"y":10.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.445,"y":9,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.445,"y":10.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":9,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.107,"y":10.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":11.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.445,"y":11.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":11.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":12,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.444,"y":12,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.244,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12.75,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":12.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.444,"y":12.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":12.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.244,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":13.5,"w":1.125,"l":35.973},{"oc":"#221f1f","x":42.032,"y":13.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":54.407,"y":13.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.782,"y":13.5,"w":1.125,"l":8.748},{"oc":"#221f1f","x":75.445,"y":13.5,"w":1.125,"l":8.748},{"oc":"#221f1f","x":84.107,"y":13.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":13.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":15,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":73.099},{"oc":"#221f1f","x":6.145,"y":21.75,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.157,"y":20.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":21.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":22.5,"w":0.75,"l":3.798},{"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},{"dsh":1,"oc":"#221f1f","x":64.307,"y":24.75,"w":0.75,"l":13.698},{"dsh":1,"oc":"#221f1f","x":11.095,"y":25.5,"w":0.75,"l":66.911},{"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":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":30.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":30.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":30.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":31.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":31.688,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":31.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":33.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":33.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":33.188,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":47.369,"y":33.938,"w":0.75,"l":31.023},{"dsh":1,"oc":"#221f1f","x":11.481,"y":34.688,"w":0.75,"l":66.911},{"oc":"#221f1f","x":79.544,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":34.688,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":36.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":36.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":36.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":36.938,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":36.938,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":36.938,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":37.687,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":37.687,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":37.687,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":38.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":38.438,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":38.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":39.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":39.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":39.188,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":44.894,"y":39.937,"w":0.75,"l":13.698},{"dsh":1,"oc":"#221f1f","x":11.481,"y":40.688,"w":0.75,"l":47.111},{"oc":"#221f1f","x":59.744,"y":40.696,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.456,"y":40.696,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.831,"y":40.696,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.544,"y":42.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":42.187,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":42.187,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":49.844,"y":42.938,"w":0.75,"l":28.548},{"dsh":1,"oc":"#221f1f","x":11.481,"y":43.688,"w":0.75,"l":66.911},{"oc":"#221f1f","x":79.544,"y":43.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":83.256,"y":43.688,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.631,"y":43.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.544,"y":45.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":45.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":45.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":46.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":83.256,"y":46.688,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.631,"y":46.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.544,"y":48.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":48.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":48.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.531,"y":48.188,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":42.075,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"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":75.488,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":42.075,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.075,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.075,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.075,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.45,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.825,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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":82.913,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.145,"y":25.534,"w":0.75,"l":3.963},{"oc":"#221f1f","x":79.535,"y":25.603,"w":0.75,"l":3.918},{"oc":"#221f1f","x":83.299,"y":29.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.587,"y":29.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.391,"y":25.493,"w":0.75,"l":3.108},{"oc":"#221f1f","x":95.52,"y":28.628,"w":0.75,"l":1.432},{"oc":"#221f1f","x":83.299,"y":30.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":30.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":30.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":30.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":31.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":31.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":31.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":32.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":33.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":33.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":33.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":33.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":34.672,"w":0.75,"l":6.031},{"oc":"#221f1f","x":79.587,"y":34.672,"w":0.75,"l":6.031},{"oc":"#221f1f","x":95.674,"y":34.672,"w":0.75,"l":6.781},{"oc":"#221f1f","x":59.787,"y":35.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":35.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":35.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":36.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":36.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":36.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":36.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":36.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":36.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":37.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":37.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":37.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":38.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":38.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":38.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":39.172,"w":0.75,"l":1.547},{"oc":"#221f1f","x":59.787,"y":39.172,"w":0.75,"l":1.547},{"oc":"#221f1f","x":75.874,"y":39.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":39.922,"w":0.75,"l":0.797},{"oc":"#221f1f","x":83.299,"y":40.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":40.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":41.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":42.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.587,"y":42.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.674,"y":42.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":42.922,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.299,"y":43.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":43.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":43.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":44.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":45.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.587,"y":45.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.674,"y":45.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":45.922,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.299,"y":46.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":46.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":46.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":47.422,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.375,"w":6.531,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":13.875,"w":6.531,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.587,"y":27.938,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.587,"y":34.688,"w":3.712,"h":6,"clr":-1}],"Texts":[{"oc":"#221f1f","x":10.918,"y":7.962999999999999,"w":47.36699999999996,"clr":-1,"A":"left","R":[{"T":"12-month%20period.%E2%80%9D%20Do%20not%20include%20the%20income%20from%20column%20(f)%20below%20in%20Part%20IV%2C%20but%20report%20it%20on%20Form%201040.%20","S":3,"TS":[0,12,0,0]}]},{"x":23.884,"y":24.552,"w":314.77599999999967,"clr":0,"A":"left","R":[{"T":"%20Address%20%20%20%2F%20%20City%20%20%2F%20%20Province%20or%20St%20%20%20%2F%20%20%20Country%20%20%20%2F%20%20%20Postal%20Code%20%20%20%20%20%20%20%20%20Type%20of%20Income","S":-1,"TS":[0,11,1,0]}]},{"x":8.172,"y":24.594,"w":83.71200000000002,"clr":0,"A":"left","R":[{"T":"Partnership's%20Name%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"x":52.59,"y":48.689,"w":145.63000000000005,"clr":0,"A":"left","R":[{"T":"Form%202555%20Page%203%20Spouse%20Copy","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202555%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.501,"y":3.196,"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.139,"w":25.233000000000008,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Qualifying%20Under%20Physical%20Presence%20Test%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":57.656,"y":3.139,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":4.308,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":4.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":4.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.647,"y":4.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":4.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.058,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.027,"w":29.043000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20principal%20country%20of%20employment%20during%20your%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.813,"y":4.933,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":6.588,"w":53.94999999999993,"clr":-1,"A":"left","R":[{"T":"foreign%20countries%20that%20did%20not%20involve%20travel%20on%20or%20over%20international%20waters%2C%20or%20in%20or%20over%20the%20United%20States%2C%20for%2024%20hours%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.366,"y":8.835,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.438,"y":8.835,"w":7.446000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20country","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.815,"y":9.36,"w":7.038,"clr":-1,"A":"left","R":[{"T":"(including%20U.S.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.858,"y":9.097,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":45.639,"y":9.097,"w":5.704000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20arrived%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.269,"y":9.097,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.006,"y":9.097,"w":4.019,"clr":-1,"A":"left","R":[{"T":"Date%20left%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.62,"y":8.7,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.402,"y":8.7,"w":4.26,"clr":-1,"A":"left","R":[{"T":"Full%20days%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.243,"y":9.137,"w":4.705,"clr":-1,"A":"left","R":[{"T":"present%20in%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.879,"y":9.575,"w":3.6490000000000005,"clr":-1,"A":"left","R":[{"T":"country%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.848,"y":8.7,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.585,"y":8.7,"w":5.020000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.326,"y":9.137,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"days%20in%20U.S.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.337,"y":9.575,"w":5.65,"clr":-1,"A":"left","R":[{"T":"on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.618,"y":8.7,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.065,"y":8.7,"w":10.225000000000001,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in%20U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.088,"y":9.137,"w":8.984000000000004,"clr":-1,"A":"left","R":[{"T":"on%20business%20(attach%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.782,"y":9.575,"w":5.891000000000001,"clr":-1,"A":"left","R":[{"T":"computation)","S":2,"TS":[0,10,0,0]}]},{"x":6.466,"y":13.696,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":13.634,"w":6.781000000000001,"clr":-1,"A":"left","R":[{"T":"All%20Taxpayers%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":15.177,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.459,"y":15.177,"w":55.75199999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20lines%2019%20through%2023%20all%20income%2C%20including%20noncash%20income%2C%20you%20earned%20and%20actually%20or%20constructively%20received%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.922,"y":17.427,"w":15.839000000000006,"clr":-1,"A":"left","R":[{"T":"constructively%20received%20the%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.938,"y":18.533,"w":56.31399999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20a%20cash%20basis%20taxpayer%2C%20report%20on%20Form%201040%20all%20income%20you%20received%20in%202013%2C%20no%20matter%20when%20you%20performed%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.938,"y":19.208,"w":5.779000000000002,"clr":-1,"A":"left","R":[{"T":"the%20service.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.732,"y":20.384,"w":13.894000000000007,"clr":-1,"A":"left","R":[{"T":"2013%20Foreign%20Earned%20Income%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":86.279,"y":20.057,"w":4.018,"clr":-1,"A":"left","R":[{"T":"Amount%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.913,"y":20.657,"w":7.461,"clr":-1,"A":"left","R":[{"T":"(in%20U.S.%20dollars)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.692,"y":21.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.016,"y":21.683,"w":22.670000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20wages%2C%20salaries%2C%20bonuses%2C%20commissions%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":21.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":21.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":22.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.339,"w":34.630999999999986,"clr":-1,"A":"left","R":[{"T":"Allowable%20share%20of%20income%20for%20personal%20services%20performed%20(see%20instructions)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":23.089,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":20.781000000000002,"clr":-1,"A":"left","R":[{"T":"In%20a%20business%20(including%20farming)%20or%20profession%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":23.089,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.502,"y":23.089,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":23.808,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.777,"w":33.306999999999995,"clr":-1,"A":"left","R":[{"T":"In%20a%20partnership.%20List%20partnership%E2%80%99s%20name%20and%20address%20and%20type%20of%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.409,"y":23.683,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.474,"y":24.589,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"20b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":27.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":27.839,"w":43.11999999999997,"clr":-1,"A":"left","R":[{"T":"Noncash%20income%20(market%20value%20of%20property%20or%20facilities%20furnished%20by%20employer%E2%80%94attach%20statement%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.28,"y":28.526,"w":14.963000000000006,"clr":-1,"A":"left","R":[{"T":"showing%20how%20it%20was%20determined)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":29.277,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":29.277,"w":7.075000000000001,"clr":-1,"A":"left","R":[{"T":"Home%20(lodging)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.825,"y":29.277,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.889,"y":29.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"21a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":30.777,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":30.777,"w":2.945,"clr":-1,"A":"left","R":[{"T":"Meals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.637,"y":30.777,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.861,"y":30.777,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"21b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":32.277,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":32.277,"w":1.8699999999999999,"clr":-1,"A":"left","R":[{"T":"Car%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.574,"y":32.277,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.889,"y":32.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"21c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":32.995,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":32.964,"w":22.191,"clr":-1,"A":"left","R":[{"T":"Other%20property%20or%20facilities.%20List%20type%20and%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.6,"y":32.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.861,"y":33.777,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"21d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":34.527,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":34.527,"w":40.597999999999985,"clr":-1,"A":"left","R":[{"T":"Allowances%2C%20reimbursements%2C%20or%20expenses%20paid%20on%20your%20behalf%20for%20services%20you%20performed%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":35.277,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":35.277,"w":17.315000000000005,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20living%20and%20overseas%20differential%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.324,"y":35.277,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.089,"y":35.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"22a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":36.027,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":36.027,"w":3.1860000000000004,"clr":-1,"A":"left","R":[{"T":"Family%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.637,"y":36.027,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.061,"y":36.027,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"22b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":36.777,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":36.777,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Education%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.699,"y":36.777,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.089,"y":36.777,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"22c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":37.527,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":37.527,"w":5.574999999999999,"clr":-1,"A":"left","R":[{"T":"Home%20leave%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.761,"y":37.527,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.061,"y":37.527,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"22d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":38.277,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":38.277,"w":4.149000000000001,"clr":-1,"A":"left","R":[{"T":"Quarters%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.699,"y":38.277,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.089,"y":38.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"22e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":38.995,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":38.964,"w":20.470000000000006,"clr":-1,"A":"left","R":[{"T":"For%20any%20other%20purpose.%20List%20type%20and%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.938,"y":38.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.276,"y":39.785,"w":1.723,"clr":-1,"A":"left","R":[{"T":"22f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":41.277,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":41.277,"w":11.781999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2022a%20through%2022f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.074,"y":41.277,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.861,"y":41.277,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"22g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":41.995,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":41.964,"w":23.360000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20foreign%20earned%20income.%20List%20type%20and%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.409,"y":41.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.333,"y":42.777,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":44.277,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":44.277,"w":21.046000000000006,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2019%20through%2021d%2C%20line%2022g%2C%20and%20line%2023%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.511,"y":44.277,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.333,"y":44.277,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":45.777,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":45.777,"w":43.25299999999998,"clr":-1,"A":"left","R":[{"T":"Total%20amount%20of%20meals%20and%20lodging%20included%20on%20line%2024%20that%20is%20excludable%20(see%20instructions)%20%20.%20%20%20%20%20.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.333,"y":45.777,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":46.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.279,"y":47.144,"w":9.949000000000002,"clr":-1,"A":"left","R":[{"T":"foreign%20earned%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.955,"y":47.206,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":"%20.......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.896,"y":47.113,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.333,"y":47.277,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.395,"y":48.009,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.538,"y":48.009,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.838,"y":48.009,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":51.731,"y":48.068,"w":153.40000000000003,"clr":0,"A":"left","R":[{"T":"Form%202555%20Page%203%20Taxpayer%20Copy","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.901,"w":56.358999999999945,"clr":-1,"A":"left","R":[{"T":"If%20you%20traveled%20abroad%20during%20the%2012-month%20period%20entered%20on%20line%2016%2C%20complete%20columns%20(a)%E2%80%A6(f)%20below.%20Exclude%20travel%20between%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.936,"y":15.739,"w":57.24399999999994,"clr":-1,"A":"left","R":[{"T":"your%202013%20tax%20year%20for%20services%20you%20performed%20in%20a%20foreign%20country.%20If%20any%20of%20the%20foreign%20earned%20income%20received%20this%20tax%20year%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":16.302,"w":55.74999999999993,"clr":-1,"A":"left","R":[{"T":"earned%20in%20a%20prior%20tax%20year%2C%20or%20will%20be%20earned%20in%20a%20later%20tax%20year%20(such%20as%20a%20bonus)%2C%20see%20the%20instructions.%20include%20income%20from%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.922,"y":16.864,"w":54.57899999999993,"clr":-1,"A":"left","R":[{"T":"14%2C%20columnor%20line%2018%2C%20column%20Report%20amounts%20in%20U.S.%20dollars%2C%20using%20the%20exchange%20rates%20in%20effect%20when%20you%20actually%20or%20(d)%2C(f).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":46.469,"w":41.79999999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20from%20line%2024.%20Enter%20the%20result%20here%20and%20on%20line%2027%20on%20page%203.%20This%20is%20your%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.911,"y":7.276,"w":56.248999999999924,"clr":-1,"A":"left","R":[{"T":"more.%20If%20you%20have%20no%20travel%20to%20report%20during%20the%20period%2C%20enter%20%E2%80%9CPhysically%20present%20in%20a%20foreign%20country%20or%20countries%20for%20the%20entire%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1616,"AM":0,"x":18.248,"y":1.998,"w":54.521,"h":0.833,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1617,"AM":0,"x":73.037,"y":1.998,"w":20.872,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FROM","EN":0},"TI":1618,"AM":0,"x":59.359,"y":4.612,"w":15.403,"h":0.833,"TU":"Line 16. The physical presence test is based on the 12 month period from.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"THRU","EN":0},"TI":1619,"AM":0,"x":84.109,"y":4.612,"w":14.953,"h":0.833,"TU":"Line 17 through.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":1620,"AM":0,"x":58.121,"y":5.362,"w":40.941,"h":0.833,"TU":"Line 17. Enter your principal country of employment during the tax year."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRT","EN":0},"TI":1621,"AM":0,"x":6.052,"y":9.071,"w":11.453,"h":0.89},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_1_","EN":0},"TI":1622,"AM":0,"x":6.188,"y":10.538,"w":35.805,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_1_","EN":0},"TI":1623,"AM":0,"x":42.178,"y":10.538,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_1_","EN":0},"TI":1624,"AM":0,"x":54.553,"y":10.538,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_1_","EN":0},"TI":1625,"AM":0,"x":66.928,"y":10.538,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_1_","EN":0},"TI":1626,"AM":0,"x":75.591,"y":10.538,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_1_","EN":0},"TI":1627,"AM":0,"x":84.253,"y":10.538,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_2_","EN":0},"TI":1628,"AM":0,"x":6.178,"y":11.295,"w":35.805,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_2_","EN":0},"TI":1629,"AM":0,"x":42.168,"y":11.295,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_2_","EN":0},"TI":1630,"AM":0,"x":54.543,"y":11.295,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_2_","EN":0},"TI":1631,"AM":0,"x":66.918,"y":11.295,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_2_","EN":0},"TI":1632,"AM":0,"x":75.581,"y":11.295,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_2_","EN":0},"TI":1633,"AM":0,"x":84.243,"y":11.295,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_3_","EN":0},"TI":1634,"AM":0,"x":6.198,"y":12.054,"w":35.741,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_3_","EN":0},"TI":1635,"AM":0,"x":41.932,"y":12.054,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_3_","EN":0},"TI":1636,"AM":0,"x":54.307,"y":12.054,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_3_","EN":0},"TI":1637,"AM":0,"x":66.682,"y":12.054,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_3_","EN":0},"TI":1638,"AM":0,"x":75.28,"y":12.054,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_3_","EN":0},"TI":1639,"AM":0,"x":84.007,"y":12.054,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_4_","EN":0},"TI":1640,"AM":0,"x":6.203,"y":12.752,"w":35.805,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_4_","EN":0},"TI":1641,"AM":0,"x":42.193,"y":12.752,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_4_","EN":0},"TI":1642,"AM":0,"x":54.568,"y":12.752,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_4_","EN":0},"TI":1643,"AM":0,"x":66.943,"y":12.752,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_4_","EN":0},"TI":1644,"AM":0,"x":75.606,"y":12.752,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_4_","EN":0},"TI":1645,"AM":0,"x":84.268,"y":12.752,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":1646,"AM":0,"x":83.016,"y":21.788,"w":12.189,"h":0.833,"TU":"Line 19. Total wages, salaries, bonuses, commissions, etc. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20A","EN":0},"TI":1647,"AM":0,"x":83.098,"y":23.073,"w":12.024,"h":0.912,"TU":"Line 20a. Allowable share of income for personal services performed (see instructions) in a business (including farming or profession. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":1648,"AM":0,"x":83.098,"y":24.513,"w":12.024,"h":0.972,"TU":"Line 20b. In a partnership. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_NAME1_1_","EN":0},"TI":1649,"AM":0,"x":7.712,"y":25.623,"w":15.206,"h":0.833,"TU":"Line 20b. Partnership's Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_ADDRSS_1_","EN":0},"TI":1650,"AM":0,"x":23.447,"y":25.593,"w":37.814,"h":0.833,"TU":"Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_CITYNAME_1_","EN":0},"TI":1651,"AM":0,"x":23.384,"y":26.307,"w":22.035,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_STORPROV_1_","EN":0},"TI":1652,"AM":0,"x":45.908,"y":26.346,"w":15.206,"h":0.833,"TU":"Province or State"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_COUNTRY_1_","EN":0},"TI":1653,"AM":0,"x":23.337,"y":27.062,"w":26.691,"h":0.833,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ADDR_ZIPCDE_1_","EN":0},"TI":1654,"AM":0,"x":51.25,"y":26.988,"w":9.82,"h":0.833,"TU":"Postal Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_TYPEINC_1_","EN":0},"TI":1655,"AM":0,"x":63.872,"y":26.998,"w":15.206,"h":0.833,"TU":"Type of Income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21A","EN":0},"TI":1656,"AM":0,"x":83.358,"y":29.215,"w":11.983,"h":0.96,"TU":"Line 21a. Noncash income (market value of property or facilities furnished by employer - attach statement showing how it was determined). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21B","EN":0},"TI":1657,"AM":0,"x":83.338,"y":30.807,"w":12.024,"h":0.885,"TU":"Line 21b. Meals. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21C","EN":0},"TI":1658,"AM":0,"x":83.338,"y":32.161,"w":12.024,"h":1.031,"TU":"Line 21c. Car. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21D1","EN":0},"TI":1659,"AM":0,"x":47.223,"y":33.319,"w":31.041,"h":0.833,"TU":"Line 21d. Other property or facilities. List type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21D","EN":0},"TI":1660,"AM":0,"x":83.338,"y":33.591,"w":12.024,"h":1.101,"TU":"Line 21d. Amount. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21D2","EN":0},"TI":1661,"AM":0,"x":11.336,"y":34.069,"w":66.928,"h":0.833,"TU":"Line 21d. Continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22A","EN":0},"TI":1662,"AM":0,"x":63.476,"y":35.464,"w":12.148,"h":0.833,"TU":"Line 22a. Cost of living and overseas differential. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22B","EN":0},"TI":1663,"AM":0,"x":63.455,"y":36.244,"w":12.189,"h":0.833,"TU":"Line 22b. Family. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22C","EN":0},"TI":1664,"AM":0,"x":63.455,"y":36.994,"w":12.189,"h":0.833,"TU":"Line 22c. Education. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22D","EN":0},"TI":1665,"AM":0,"x":63.455,"y":37.744,"w":12.189,"h":0.833,"TU":"Line 22d. Home leave. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22E","EN":0},"TI":1666,"AM":0,"x":63.455,"y":38.518,"w":12.189,"h":0.833,"TU":"Line 22e. Quarters. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L22F1","EN":0},"TI":1667,"AM":0,"x":44.748,"y":39.319,"w":13.716,"h":0.833,"TU":"Line 22f. For any other purpose. List type."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L22F2","EN":0},"TI":1668,"AM":0,"x":11.336,"y":40.069,"w":47.128,"h":0.833,"TU":"Line 22f. Continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22F","EN":0},"TI":1669,"AM":0,"x":63.538,"y":39.72,"w":12.024,"h":0.972,"TU":"Line 22f. Amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22G","EN":0},"TI":1670,"AM":1024,"x":83.4,"y":41.155,"w":11.901,"h":1.037,"TU":"Line 22g. Add lines 22a through 22f. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23O1","EN":0},"TI":1671,"AM":0,"x":49.698,"y":42.319,"w":28.566,"h":0.833,"TU":"Line 23. Other foreign earned income. List type."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23O2","EN":0},"TI":1672,"AM":0,"x":11.336,"y":43.069,"w":66.928,"h":0.833,"TU":"Line 23. Continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":1673,"AM":0,"x":83.338,"y":42.78,"w":12.024,"h":0.904,"TU":"Line 23. Amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":1674,"AM":1024,"x":83.338,"y":43.865,"w":12.024,"h":1.327,"TU":"Line 24. Add lines 19 through 21d, line 22g and line 23. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":1675,"AM":0,"x":83.338,"y":45.358,"w":12.024,"h":1.327,"TU":"Line 25. Total amount of meals and lodging included in line 24 that is excludable (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":1676,"AM":1024,"x":83.338,"y":46.865,"w":12.024,"h":1.312,"TU":"Line 26. Subtract line 25 from line 24. Enter the result here and on line 27 on page 3. This is your 2013 foreign earned income. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F25553S"}},"id":{"Id":"Add_F2555_Page_3_Spouse","EN":0},"TI":1677,"AM":0,"x":79.21,"y":48.648,"w":3.132,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F25553T"}},"id":{"Id":"Add_F2555_Page_3_Taxpayer","EN":0},"TI":1678,"AM":0,"x":79.326,"y":48.088,"w":3.132,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F255512T.content.txt b/test/data/fd/form/F255512T.content.txt new file mode 100755 index 00000000..a60d5359 --- /dev/null +++ b/test/data/fd/form/F255512T.content.txt @@ -0,0 +1,390 @@ +Address +Postal Code +Foreign Code +Foreign Address +Foreign Address +Occupants +City +Form +2555 +Department of the Treasury +Internal Revenue Service +Foreign Earned Income +a + +Attach to Form 1040. + +a + +. + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +34 +For Use by U.S. Citizens and Resident Aliens Only +Name shown on Form 1040 +Your social security number +Part I +General Information +1 + Your foreign address (including country) +2 + Your occupation +3 +Employer’s name +a +4 +a +Employer’s U.S. address +a +b +Employer’s foreign address +a +5 + +Employer is (check +any that apply): +F +a +A foreign entity +b +A U.S. company +c +Self +d +A foreign affiliate of a U.S. company +e +Other (specify) +a +6 +a +If you previously filed Form 2555 or Form 2555-EZ, enter the last year you filed the form. +a +b +If you did not previously file Form 2555 or 2555-EZ to claim either of the exclusions, check here +a +and go to line 7. +c +Have you ever revoked either of the exclusions? +.................... +Yes +No +d +If you answered “Yes,” enter the type of exclusion and the tax year for which the revocation was effective. +a +7 +Of what country are you a citizen/national? +a +8 + +a + +Did you maintain a separate foreign residence for your family because of adverse living conditions at your +............... +Yes +No +b + +If “Yes,” enter city and country of the separate foreign residence. Also, enter the number of days during your tax year that y +ou +maintained a second household at that address. +a +9 +List your tax home(s) during your tax year and date(s) established. +a +Next, complete either Part II or Part III. If an item does not apply, enter 'NA' If you do not give +the information asked for, any exclusion or deduction you claim may be disallowed. +Part II +Taxpayers Qualifying Under Bona Fide Residence Test +(see instructions) +10 +Date bona fide residence began + +a + +, and ended +a +11 +Kind of living quarters in foreign country +a +a +Purchased house +b +Rented house or apartment +c +Rented room +d +Quarters furnished by employer +12a +Did any of your family live with you abroad during any part of the tax year? +........... +Yes +No +b +If “Yes,” who and for what period? +a + +13 + +a + +Have you submitted a statement to the authorities of the foreign country where you claim bona fide +residence that you are not a resident of that country? See instructions +............ +Yes +No +b +Are you required to pay income tax to the country where you claim bona fide residence? See instructions . +Yes +No +If you answered “Yes” to 13a and “No” to 13b, you do not qualify as a bona fide resident. Do not complete the rest of +this part. +14 + +(a) +Date + +arrived in U.S. +(b) +Date left + +U.S. +(c) +Number of +days in U.S. + +on business +(d) +Income earned in + +U.S. on business +(attach computation) + +(a) +Date + +arrived in U.S. +(b) +Date left + +U.S. +(c) +Number of + +days in U.S. on +business +(d) +Income earned in + +U.S. on business +(attach computation) + +15a +List any contractual terms or other conditions relating to the length of your employment abroad. +a +b +Enter the type of visa under which you entered the foreign country. +a + +c +Did your visa limit the length of your stay or employment in a foreign country? If “Yes,” attach explanation . +Yes +No +d +Did you maintain a home in the United States while living abroad? +.............. +Yes +No +e + +If “Yes,” enter address of your home, whether it was rented, the names of the occupants, and their relationship +to you. +a +For Paperwork Reduction Act Notice, see the Form 1040 instructions. +Cat. No. 11900P +Form +2555 +(2013) +** For Rented, only enter the word 'Rented'. If not rented, leave blank. +Address +Relationship +State +ZIP Code +RENTED +Foreign City +Foreign Country +Foreign City +Foreign Country +State/Province +City +State +ZIP Code +Information about Form 2555 and its separate instructions is at www.irs.gov/form2555 +tax home? See Second foreign household in the instructions +include the income from column (d) in Part IV, but report it on Form 1040. +If you were present in the United States or its possessions during the tax year, complete columns (a)...(d) below. Do not +----------------Page (0) Break---------------- +12-month period.” Do not include the income from column (f) below in Part IV, but report it on Form 1040. + Address / City / Province or St / Country / Postal Code Type of Income +Partnership's Name +Form 2555 Page 3 Spouse Copy +Form 2555 (2013) +Page +2 +Part III +Taxpayers Qualifying Under Physical Presence Test +(see instructions) +16 +The physical presence test is based on the 12-month period from +a +through +a + +17 +Enter your principal country of employment during your tax year. +a +18 + + + +foreign countries that did not involve travel on or over international waters, or in or over the United States, for 24 hours or + +(a) +Name of country + +(including U.S.) +(b) +Date arrived +(c) +Date left +(d) +Full days + +present in + +country +(e) +Number of + +days in U.S. + +on business +(f) +Income earned in U.S. + +on business (attach + +computation) + +Part IV +All Taxpayers +Note: +Enter on lines 19 through 23 all income, including noncash income, you earned and actually or constructively received during + + + + + +constructively received the income. +If you are a cash basis taxpayer, report on Form 1040 all income you received in 2013, no matter when you performed +the service. +2013 Foreign Earned Income +Amount +(in U.S. dollars) +19 +Total wages, salaries, bonuses, commissions, etc. +............... +19 +20 +Allowable share of income for personal services performed (see instructions): +a +In a business (including farming) or profession +................. +20a +b +In a partnership. List partnership’s name and address and type of income. +a +20b +21 + +Noncash income (market value of property or facilities furnished by employer—attach statement +showing how it was determined): +a +Home (lodging) +........................... +21a +b +Meals +.............................. +21b +c +Car +............................... +21c +d +Other property or facilities. List type and amount. +a + +21d +22 +Allowances, reimbursements, or expenses paid on your behalf for services you performed: +a +Cost of living and overseas differential +......... +22a +b +Family +.................... +22b +c +Education +................... +22c +d +Home leave +.................. +22d +e +Quarters +................... +22e +f +For any other purpose. List type and amount. +a +22f +g +Add lines 22a through 22f +....................... +22g +23 +Other foreign earned income. List type and amount. +a +23 +24 +Add lines 19 through 21d, line 22g, and line 23 +................ +24 +25 +Total amount of meals and lodging included on line 24 that is excludable (see instructions) . . +25 +26 + +foreign earned income + ....................... +a +26 +Form +2555 +(2013) +Form 2555 Page 3 Taxpayer Copy +If you traveled abroad during the 12-month period entered on line 16, complete columns (a)...(f) below. Exclude travel between +your 2013 tax year for services you performed in a foreign country. If any of the foreign earned income received this tax year was +earned in a prior tax year, or will be earned in a later tax year (such as a bonus), see the instructions. include income from line + +14, columnor line 18, column Report amounts in U.S. dollars, using the exchange rates in effect when you actually or (d),(f). +Subtract line 25 from line 24. Enter the result here and on line 27 on page 3. This is your 2013 +more. If you have no travel to report during the period, enter “Physically present in a foreign country or countries for the entire +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F255512T.fields.json b/test/data/fd/form/F255512T.fields.json new file mode 100755 index 00000000..6f215cc5 --- /dev/null +++ b/test/data/fd/form/F255512T.fields.json @@ -0,0 +1 @@ +[{"id":"EMPA","type":"box","calc":false,"value":""},{"id":"EMPB","type":"box","calc":false,"value":""},{"id":"EMPC","type":"box","calc":false,"value":""},{"id":"EMPD","type":"box","calc":false,"value":""},{"id":"EMPE","type":"box","calc":false,"value":""},{"id":"CHBX","type":"box","calc":false,"value":""},{"id":"REVRB","type":"radio","calc":false,"value":"REVY"},{"id":"REVRB","type":"radio","calc":false,"value":"REVN"},{"id":"ADVRB","type":"radio","calc":false,"value":"ADVY"},{"id":"ADVRB","type":"radio","calc":false,"value":"ADVN"},{"id":"KNDRB","type":"radio","calc":false,"value":"0"},{"id":"KNDRB","type":"radio","calc":false,"value":"1"},{"id":"KNDRB","type":"radio","calc":false,"value":"2"},{"id":"KNDRB","type":"radio","calc":false,"value":"3"},{"id":"FAMRB","type":"radio","calc":false,"value":"FAMY"},{"id":"FAMRB","type":"radio","calc":false,"value":"FAMN"},{"id":"HAVRB","type":"radio","calc":false,"value":"HAVY"},{"id":"HAVRB","type":"radio","calc":false,"value":"HAVN"},{"id":"REQRB","type":"radio","calc":false,"value":"REQY"},{"id":"REQRB","type":"radio","calc":false,"value":"REQN"},{"id":"LIMRB","type":"radio","calc":false,"value":"LIMY"},{"id":"LIMRB","type":"radio","calc":false,"value":"LIMN"},{"id":"HOMRB","type":"radio","calc":false,"value":"HOMY"},{"id":"HOMRB","type":"radio","calc":false,"value":"HOMN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TPFADDR","type":"alpha","calc":false,"value":""},{"id":"TPFCITY","type":"alpha","calc":false,"value":""},{"id":"TPFCNTRY","type":"alpha","calc":false,"value":""},{"id":"POD","type":"alpha","calc":false,"value":""},{"id":"YOCC","type":"alpha","calc":false,"value":""},{"id":"ENAM","type":"alpha","calc":false,"value":""},{"id":"ADUS","type":"alpha","calc":false,"value":""},{"id":"ADUSCITY","type":"alpha","calc":false,"value":""},{"id":"ADUST","type":"alpha","calc":false,"value":""},{"id":"ADUSZIP","type":"zip","calc":false,"value":""},{"id":"ADDF","type":"alpha","calc":false,"value":""},{"id":"FCITY","type":"alpha","calc":false,"value":""},{"id":"FPROV","type":"alpha","calc":false,"value":""},{"id":"FPOST","type":"alpha","calc":false,"value":""},{"id":"FCNTRY","type":"alpha","calc":false,"value":""},{"id":"SPEC","type":"alpha","calc":false,"value":""},{"id":"EXCL","type":"date","calc":false,"value":""},{"id":"L7","type":"alpha","calc":false,"value":""},{"id":"REVEXCL_TYPE_1_","type":"alpha","calc":false,"value":""},{"id":"REVEXCL_TXYRFEI_1_","type":"alpha","calc":false,"value":""},{"id":"CIT1","type":"alpha","calc":false,"value":""},{"id":"NUMDAY","type":"percent","calc":false,"value":""},{"id":"HOM1","type":"alpha","calc":false,"value":""},{"id":"HOM2","type":"alpha","calc":false,"value":""},{"id":"DTEST","type":"date","calc":false,"value":""},{"id":"BEGN","type":"date","calc":false,"value":""},{"id":"EDAT","type":"date","calc":false,"value":""},{"id":"WHO","type":"alpha","calc":false,"value":""},{"id":"PERIOD","type":"alpha","calc":false,"value":""},{"id":"L14ONE_ARR1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_1_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_1_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_1_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_1_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_2_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_2_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_2_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_2_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_3_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_3_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_3_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_3_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_4_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_4_","type":"number","calc":false,"value":""},{"id":"L14TWO_ARR2_4_","type":"date","calc":false,"value":""},{"id":"L14TWO_LFT2_4_","type":"date","calc":false,"value":""},{"id":"L14TWO_NUM2_4_","type":"number","calc":false,"value":""},{"id":"L14TWO_INC2_4_","type":"number","calc":false,"value":""},{"id":"ANY1","type":"alpha","calc":false,"value":""},{"id":"ANY2","type":"alpha","calc":false,"value":""},{"id":"VISA","type":"alpha","calc":false,"value":""},{"id":"A1_ADH2_1_","type":"alpha","calc":false,"value":""},{"id":"A1_RENTED_1_","type":"alpha","calc":false,"value":""},{"id":"A1_CITY_1_","type":"alpha","calc":false,"value":""},{"id":"A1_ST_1_","type":"alpha","calc":false,"value":""},{"id":"A1_ZIP_1_","type":"zip","calc":false,"value":""},{"id":"A1_OCCNM_1_","type":"alpha","calc":false,"value":""},{"id":"A1_REL_1_","type":"alpha","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":false,"value":""},{"id":"SSN2","type":"ssn","calc":false,"value":""},{"id":"FROM","type":"date","calc":false,"value":""},{"id":"THRU","type":"date","calc":false,"value":""},{"id":"L17","type":"alpha","calc":false,"value":""},{"id":"PRT","type":"alpha","calc":false,"value":""},{"id":"FEILN18_CNAM_1_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_1_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_1_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_1_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_1_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_1_","type":"number","calc":false,"value":""},{"id":"FEILN18_CNAM_2_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_2_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_2_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_2_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_2_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_2_","type":"number","calc":false,"value":""},{"id":"FEILN18_CNAM_3_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_3_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_3_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_3_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_3_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_3_","type":"number","calc":false,"value":""},{"id":"FEILN18_CNAM_4_","type":"alpha","calc":false,"value":""},{"id":"FEILN18_ADDI_4_","type":"date","calc":false,"value":""},{"id":"FEILN18_LEF_4_","type":"date","calc":false,"value":""},{"id":"FEILN18_DAYS_4_","type":"percent","calc":false,"value":""},{"id":"FEILN18_NUMB_4_","type":"percent","calc":false,"value":""},{"id":"FEILN18_INC_4_","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20A","type":"number","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"ADDR_NAME1_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_ADDRSS_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_CITYNAME_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_STORPROV_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_COUNTRY_1_","type":"alpha","calc":false,"value":""},{"id":"ADDR_ZIPCDE_1_","type":"zip","calc":false,"value":""},{"id":"ADDR_TYPEINC_1_","type":"alpha","calc":false,"value":""},{"id":"L21A","type":"number","calc":false,"value":""},{"id":"L21B","type":"number","calc":false,"value":""},{"id":"L21C","type":"number","calc":false,"value":""},{"id":"L21D1","type":"alpha","calc":false,"value":""},{"id":"L21D","type":"number","calc":false,"value":""},{"id":"L21D2","type":"alpha","calc":false,"value":""},{"id":"L22A","type":"number","calc":false,"value":""},{"id":"L22B","type":"number","calc":false,"value":""},{"id":"L22C","type":"number","calc":false,"value":""},{"id":"L22D","type":"number","calc":false,"value":""},{"id":"L22E","type":"number","calc":false,"value":""},{"id":"L22F1","type":"alpha","calc":false,"value":""},{"id":"L22F2","type":"alpha","calc":false,"value":""},{"id":"L22F","type":"number","calc":false,"value":""},{"id":"L22G","type":"number","calc":true,"value":""},{"id":"L23O1","type":"number","calc":false,"value":""},{"id":"L23O2","type":"alpha","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"Add_F2555Page_3_Spouse","type":"link","calc":false,"value":""},{"id":"Add_F2555_Page_3_Taxpayer","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F255512T.json b/test/data/fd/form/F255512T.json new file mode 100755 index 00000000..c26b8d7f --- /dev/null +++ b/test/data/fd/form/F255512T.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"F255512T.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.273,"y":3.469,"w":1.5,"l":14.979},{"oc":"#221f1f","x":21.123,"y":3.469,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.193,"y":1.219,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.193,"y":3.469,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.273,"y":4.219,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.273,"y":5.719,"w":1.125,"l":71.861},{"oc":"#221f1f","x":78.049,"y":5.719,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.273,"y":7.218,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.273,"y":9.656,"w":0.75,"l":71.861},{"oc":"#221f1f","x":78.049,"y":9.656,"w":0.75,"l":21.123},{"dsh":1,"oc":"#221f1f","x":26.073,"y":10.406,"w":0.75,"l":73.099},{"dsh":1,"oc":"#221f1f","x":31.023,"y":11.156,"w":0.75,"l":68.149},{"dsh":1,"oc":"#221f1f","x":32.003,"y":13.125,"w":0.75,"l":66.911},{"dsh":1,"oc":"#221f1f","x":79.621,"y":15.797,"w":0.75,"l":18.648},{"dsh":1,"oc":"#221f1f","x":73.434,"y":16.547,"w":0.75,"l":24.836},{"dsh":1,"oc":"#221f1f","x":85.809,"y":18.797,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":42.496,"y":19.547,"w":0.75,"l":55.774},{"dsh":1,"oc":"#221f1f","x":46.209,"y":22.547,"w":0.75,"l":52.061},{"dsh":1,"oc":"#221f1f","x":58.584,"y":23.297,"w":0.75,"l":39.686},{"oc":"#221f1f","x":6.145,"y":23.672,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":25.922,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":27.422,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":35.845,"y":28.172,"w":0.75,"l":23.599},{"dsh":1,"oc":"#221f1f","x":70.495,"y":28.172,"w":0.75,"l":28.548},{"dsh":1,"oc":"#221f1f","x":37.082,"y":31.172,"w":0.75,"l":61.961},{"oc":"#221f1f","x":6.145,"y":36.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.145,"y":37.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":36.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":37.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.42,"y":36.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":28.42,"y":37.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.32,"y":36.422,"w":0.75,"l":14.936},{"oc":"#221f1f","x":38.32,"y":37.922,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.42,"y":38.672,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.32,"y":38.672,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.695,"y":38.672,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.144,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.419,"y":39.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.319,"y":39.422,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.694,"y":39.422,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.144,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.419,"y":40.172,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.319,"y":40.172,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.694,"y":40.172,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.144,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":17.282,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":28.419,"y":40.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.319,"y":40.922,"w":0.75,"l":12.461},{"oc":"#221f1f","x":50.694,"y":40.922,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.04,"y":36.422,"w":0.75,"l":11.352},{"oc":"#221f1f","x":53.04,"y":37.922,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":36.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":64.307,"y":37.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":36.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.445,"y":37.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":36.422,"w":0.75,"l":13.698},{"oc":"#221f1f","x":85.345,"y":37.922,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.041,"y":38.672,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":38.672,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":38.672,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":38.672,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.041,"y":39.422,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":39.422,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":39.422,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":39.422,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.041,"y":40.172,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":40.172,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":40.172,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":40.172,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.041,"y":40.922,"w":0.75,"l":11.352},{"oc":"#221f1f","x":64.307,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":40.922,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":40.922,"w":0.75,"l":11.223},{"oc":"#221f1f","x":96.482,"y":40.922,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":79.157,"y":41.672,"w":0.75,"l":19.902},{"dsh":1,"oc":"#221f1f","x":11.095,"y":42.422,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":59.357,"y":43.172,"w":0.75,"l":39.686},{"dsh":1,"oc":"#221f1f","x":18.52,"y":46.078,"w":0.75,"l":80.524},{"oc":"#221f1f","x":6.145,"y":48.328,"w":1.5,"l":50.824},{"oc":"#221f1f","x":56.882,"y":48.328,"w":1.5,"l":29.786},{"oc":"#221f1f","x":86.582,"y":48.328,"w":1.5,"l":12.461},{"oc":"#221f1f","x":17.301,"y":46.828,"w":1.125,"l":45.319},{"oc":"#221f1f","x":72.841,"y":46.688,"w":1.125,"l":21.123},{"oc":"#221f1f","x":58.967,"y":48.234,"w":1.125,"l":35.206},{"oc":"#221f1f","x":62.753,"y":47.625,"w":1.125,"l":11.65},{"oc":"#221f1f","x":45.016,"y":47.625,"w":1.125,"l":7.937},{"oc":"#221f1f","x":17.958,"y":48.234,"w":1.125,"l":30.085},{"oc":"#221f1f","x":12.995,"y":47.625,"w":1.125,"l":27.636},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.685},{"oc":"#221f1f","x":0.086,"y":48.778,"w":0.75,"l":1.685},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.685},{"oc":"#221f1f","x":0.086,"y":48.967,"w":0.75,"l":1.685}],"VLines":[{"oc":"#221f1f","x":21.166,"y":0.453,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.166,"y":1.953,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.279,"y":0.453,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.279,"y":1.203,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.279,"y":1.953,"w":1.5,"l":1.547},{"oc":"#221f1f","x":78.092,"y":4.203,"w":0.75,"l":1.539},{"oc":"#221f1f","x":78.117,"y":7.29,"w":0.75,"l":2.295},{"oc":"#221f1f","x":17.325,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.462,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":17.325,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.325,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.325,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.324,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.462,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":36.406,"w":3,"l":1.531},{"oc":"#221f1f","x":64.35,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":36.406,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":37.906,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":37.906,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":38.656,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":38.656,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":39.406,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":39.406,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":40.156,"w":3,"l":0.781},{"oc":"#221f1f","x":64.35,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":40.156,"w":0.75,"l":0.781},{"oc":"#221f1f","x":1.771,"y":48.778,"w":0.75,"l":0.691},{"oc":"#221f1f","x":0.086,"y":48.778,"w":0.75,"l":0.691},{"oc":"#221f1f","x":1.771,"y":48.967,"w":0.75,"l":0.502},{"oc":"#221f1f","x":0.086,"y":48.967,"w":0.75,"l":0.502}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.316,"y":6.094,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":26.297,"w":6.188,"h":0.75,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":49.041,"w":1.208,"h":0.397,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":49.041,"w":1.208,"h":0.397,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.809,"w":1.513,"h":0.628,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.809,"w":1.513,"h":0.628,"clr":-1},{"oc":"#bfbfbf","x":0.344,"y":48.926,"w":1.085,"h":0.449,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.926,"w":1.257,"h":0.512,"clr":-1},{"oc":"#bfbfbf","x":0.344,"y":49.01,"w":0.989,"h":0.365,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.948,"w":1.333,"h":0.49,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.998,"w":1.513,"h":0.439,"clr":-1}],"Texts":[{"x":30.859,"y":11,"w":39.46,"clr":0,"A":"left","R":[{"T":"Address%20","S":-1,"TS":[0,13,0,0]}]},{"x":75.019,"y":13.27,"w":54.470000000000006,"clr":0,"A":"left","R":[{"T":"Postal%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":67.483,"y":8.708,"w":60.58000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":31,"y":13.147,"w":76.14000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Address%20","S":-1,"TS":[0,12.034839999999999,0,0]}]},{"x":6.97,"y":8.752,"w":76.14000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Address%20","S":-1,"TS":[0,12.034839999999999,0,0]}]},{"x":8.902,"y":47.416,"w":47.80000000000001,"clr":0,"A":"left","R":[{"T":"Occupants","S":-1,"TS":[0,13,0,0]}]},{"x":9.006,"y":46.673,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.066,"y":0.853,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.543,"y":0.8520000000000001,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":6.066,"y":2.119,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":6.066,"y":2.557,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":40.105,"y":0.944,"w":11.392000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20Earned%20Income%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":44.963,"y":1.682,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.331,"y":1.7759999999999998,"w":9.891000000000004,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.422,"y":2.303,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.141,"y":2.396,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.87,"y":0.19099999999999995,"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.986,"y":1.549,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.866,"y":1.545,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":86.607,"y":2.094,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.607,"y":2.477,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.585,"y":2.478,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":32.167,"y":3.29,"w":24.118000000000002,"clr":-1,"A":"left","R":[{"T":"For%20Use%20by%20U.S.%20Citizens%20and%20Resident%20Aliens%20Only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.066,"y":3.875,"w":12.671000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20on%20Form%201040%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.529,"y":3.875,"w":13.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":6.964,"y":5.915,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.66,"y":5.857,"w":9.780000000000003,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.785,"y":6.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.645,"y":6.933,"w":18.669000000000004,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20foreign%20address%20(including%20country)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.529,"y":6.933,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.389,"y":6.933,"w":8.224000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20occupation%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.681,"y":9.464,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.016,"y":9.433,"w":8.04,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.453,"y":9.339,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.681,"y":10.214,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.541,"y":10.214,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.016,"y":10.183,"w":11.354000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20U.S.%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.579,"y":10.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.284,"y":12.23,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.759,"y":12.198,"w":12.520000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20foreign%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.125,"y":12.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":14.198,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":14.198,"w":9.002,"clr":-1,"A":"left","R":[{"T":"Employer%20is%20(check%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":14.886,"w":7.1320000000000014,"clr":-1,"A":"left","R":[{"T":"any%20that%20apply)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.693,"y":13.712,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":29.026,"y":14.136,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.389,"y":14.136,"w":7.019,"clr":-1,"A":"left","R":[{"T":"A%20foreign%20entity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.619,"y":14.136,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.039,"y":14.136,"w":7.558,"clr":-1,"A":"left","R":[{"T":"A%20U.S.%20company%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.714,"y":14.136,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.99,"y":14.136,"w":1.981,"clr":-1,"A":"left","R":[{"T":"Self%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.969,"y":14.886,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.389,"y":14.886,"w":16.353,"clr":-1,"A":"left","R":[{"T":"A%20foreign%20affiliate%20of%20a%20U.S.%20company%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.676,"y":14.886,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.039,"y":14.886,"w":6.760000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20(specify)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.496,"y":14.792,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":15.605,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.639,"y":15.605,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":15.573,"w":39.63899999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20previously%20filed%20Form%202555%20or%20Form%202555-EZ%2C%20enter%20the%20last%20year%20you%20filed%20the%20form.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.43,"y":15.48,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.639,"y":16.386,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":16.386,"w":42.84299999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20previously%20file%20Form%202555%20or%202555-EZ%20to%20claim%20either%20of%20the%20exclusions%2C%20check%20here%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":75.059,"y":16.292,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":79.414,"y":16.386,"w":7.484000000000002,"clr":-1,"A":"left","R":[{"T":"and%20go%20to%20line%207.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.639,"y":17.136,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":17.136,"w":21.706000000000007,"clr":-1,"A":"left","R":[{"T":"Have%20you%20ever%20revoked%20either%20of%20the%20exclusions%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.351,"y":17.136,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.664,"y":17.136,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.852,"y":17.136,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.64,"y":17.855,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":17.823,"w":47.50199999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20type%20of%20exclusion%20and%20the%20tax%20year%20for%20which%20the%20revocation%20was%20effective.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.593,"y":17.73,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":18.605,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":18.574,"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":40.108,"y":18.48,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":19.449,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.639,"y":19.449,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":19.449,"w":47.30299999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20maintain%20a%20separate%20foreign%20residence%20for%20your%20family%20because%20of%20adverse%20living%20conditions%20at%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.666,"y":20.136,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.637,"y":20.136,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.852,"y":20.136,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.64,"y":20.949,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.115,"y":20.949,"w":55.19499999999993,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20city%20and%20country%20of%20the%20separate%20foreign%20residence.%20Also%2C%20enter%20the%20number%20of%20days%20during%20your%20tax%20year%20that%20%20y","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":96.242,"y":20.949,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"ou%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.127,"y":21.647,"w":21.82199999999999,"clr":-1,"A":"left","R":[{"T":"maintained%20a%20second%20household%20at%20that%20address.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.87,"y":21.553,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.779,"y":22.355,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.114,"y":22.323,"w":29.671999999999993,"clr":-1,"A":"left","R":[{"T":"List%20your%20tax%20home(s)%20during%20your%20tax%20year%20and%20date(s)%20established.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.012,"y":22.23,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.006,"y":23.919,"w":44.09899999999995,"clr":-1,"A":"left","R":[{"T":"Next%2C%20complete%20either%20Part%20II%20or%20Part%20III.%20If%20an%20item%20does%20not%20apply%2C%20enter%20'NA'%20If%20you%20do%20not%20give%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":14.842,"y":24.607,"w":40.06799999999997,"clr":-1,"A":"left","R":[{"T":"the%20information%20asked%20for%2C%20any%20exclusion%20or%20deduction%20you%20claim%20may%20be%20disallowed.%20","S":-1,"TS":[0,15,1,0]}]},{"x":6.582,"y":26.118,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":26.061,"w":26.28600000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Qualifying%20Under%20Bona%20Fide%20Residence%20Test%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":59.501,"y":26.061,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":27.23,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.199,"w":14.262000000000008,"clr":-1,"A":"left","R":[{"T":"Date%20bona%20fide%20residence%20began","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":33.158,"y":27.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.322,"y":27.199,"w":5.613999999999999,"clr":-1,"A":"left","R":[{"T":"%2C%20and%20ended%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.006,"y":27.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":28.011,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.011,"w":18.095000000000002,"clr":-1,"A":"left","R":[{"T":"Kind%20of%20living%20quarters%20in%20foreign%20country%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.878,"y":27.917,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.989,"y":28.011,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.3,"y":28.011,"w":8.076,"clr":-1,"A":"left","R":[{"T":"Purchased%20house%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.494,"y":28.011,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.863,"y":28.011,"w":12.541000000000004,"clr":-1,"A":"left","R":[{"T":"Rented%20house%20or%20apartment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.538,"y":28.011,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.85,"y":28.011,"w":6.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Rented%20room%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.931,"y":28.761,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.3,"y":28.761,"w":14.374000000000004,"clr":-1,"A":"left","R":[{"T":"Quarters%20furnished%20by%20employer%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":29.511,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"12a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.511,"w":33.46799999999999,"clr":-1,"A":"left","R":[{"T":"Did%20any%20of%20your%20family%20live%20with%20you%20abroad%20during%20any%20part%20of%20the%20tax%20year%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.687,"y":29.511,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":29.511,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":29.511,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":30.23,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.198,"w":15.667000000000003,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20who%20and%20for%20what%20period%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.122,"y":30.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":31.074,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.412,"y":31.074,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":31.074,"w":44.473,"clr":-1,"A":"left","R":[{"T":"Have%20you%20submitted%20a%20statement%20to%20the%20authorities%20of%20the%20foreign%20country%20where%20you%20claim%20bona%20fide%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":31.761000000000003,"w":31.72900000000001,"clr":-1,"A":"left","R":[{"T":"residence%20%20that%20you%20are%20not%20a%20resident%20of%20that%20country%3F%20See%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.629,"y":31.761000000000003,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":31.761000000000003,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":31.761000000000003,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":32.511,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.511,"w":47.13799999999998,"clr":-1,"A":"left","R":[{"T":"Are%20you%20required%20to%20pay%20income%20tax%20to%20the%20country%20where%20you%20claim%20bona%20fide%20residence%3F%20See%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.317,"y":32.511,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":32.511,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":32.511,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.324,"w":55.68599999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%E2%80%9D%20to%2013a%20and%20%E2%80%9CNo%E2%80%9D%20to%2013b%2C%20you%20do%20not%20qualify%20as%20a%20bona%20fide%20resident.%20Do%20not%20complete%20the%20rest%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.011,"w":4.5,"clr":-1,"A":"left","R":[{"T":"this%20part.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":34.824,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.379,"y":36.257,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.116,"y":36.257,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.707,"y":36.782,"w":6.593000000000002,"clr":-1,"A":"left","R":[{"T":"arrived%20in%20U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.502,"y":36.257,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.284,"y":36.257,"w":4.019,"clr":-1,"A":"left","R":[{"T":"Date%20left%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.485,"y":36.782,"w":2.204,"clr":-1,"A":"left","R":[{"T":"U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.441,"y":36.122,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.179,"y":36.122,"w":5.020000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.92,"y":36.559,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"days%20in%20U.S.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.931,"y":36.997,"w":5.65,"clr":-1,"A":"left","R":[{"T":"on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.989,"y":36.122,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.771,"y":36.122,"w":7.743,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.98,"y":36.559,"w":7.854000000000001,"clr":-1,"A":"left","R":[{"T":"U.S.%20on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.989,"y":36.997,"w":9.225000000000001,"clr":-1,"A":"left","R":[{"T":"(attach%20computation)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.404,"y":36.257,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.141,"y":36.257,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.733,"y":36.782,"w":6.593000000000002,"clr":-1,"A":"left","R":[{"T":"arrived%20in%20U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.528,"y":36.257,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.309,"y":36.257,"w":3.7409999999999997,"clr":-1,"A":"left","R":[{"T":"Date%20left","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.51,"y":36.782,"w":2.204,"clr":-1,"A":"left","R":[{"T":"U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.299,"y":36.122,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.371,"y":36.122,"w":5.020000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.098,"y":36.559,"w":7.0760000000000005,"clr":-1,"A":"left","R":[{"T":"days%20in%20U.S.%20on%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.803,"y":36.997,"w":4.242,"clr":-1,"A":"left","R":[{"T":"business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.395,"y":36.122,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.177,"y":36.122,"w":8.021,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.387,"y":36.559,"w":7.854000000000001,"clr":-1,"A":"left","R":[{"T":"U.S.%20on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.395,"y":36.997,"w":9.225000000000001,"clr":-1,"A":"left","R":[{"T":"(attach%20computation)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.73,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"15a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.699,"w":42.955,"clr":-1,"A":"left","R":[{"T":"List%20any%20contractual%20terms%20or%20other%20conditions%20relating%20to%20the%20length%20of%20your%20employment%20abroad.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.333,"y":40.605,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.413,"y":42.23,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":42.198,"w":30.061000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20type%20of%20visa%20under%20which%20you%20entered%20the%20foreign%20country.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.388,"y":42.105,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.413,"y":43.011,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.011,"w":47.60299999999998,"clr":-1,"A":"left","R":[{"T":"Did%20your%20visa%20limit%20the%20length%20of%20your%20stay%20or%20employment%20in%20a%20foreign%20country%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20attach%20explanation%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.438,"y":43.011,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":43.011,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":43.761,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.761,"w":29.637,"clr":-1,"A":"left","R":[{"T":"Did%20you%20maintain%20a%20home%20in%20the%20United%20States%20while%20living%20abroad%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.5,"y":43.761,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.462,"y":43.761,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.625,"y":43.761,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":44.574,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.574,"w":49.97299999999994,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20address%20of%20your%20home%2C%20whether%20it%20was%20rented%2C%20the%20names%20of%20the%20occupants%2C%20and%20their%20relationship%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":45.178,"w":3.353,"clr":-1,"A":"left","R":[{"T":"to%20you.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.074,"y":45.178,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":48.185,"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":67.068,"y":48.203,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011900P%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.008,"y":48.149,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":48.149,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.451,"y":48.149,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":18.613,"y":45.219,"w":328.17,"clr":0,"A":"left","R":[{"T":"**%20For%20Rented%2C%20only%20enter%20the%20word%20'Rented'.%20If%20not%20rented%2C%20leave%20blank.","S":10,"TS":[0,14,1,0]}]},{"x":9.074,"y":45.969,"w":36.68,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":47.84,"y":47.506,"w":55.02000000000001,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,13,0,0]}]},{"x":40.279,"y":46.63,"w":23.35,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":54.404,"y":46.865,"w":42.24,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":64.977,"y":45.916,"w":41.11,"clr":0,"A":"left","R":[{"T":"RENTED","S":-1,"TS":[0,13,0,0]}]},{"x":29.989,"y":8.647,"w":53.900000000000006,"clr":0,"A":"left","R":[{"T":"Foreign%20City","S":-1,"TS":[0,13,0,0]}]},{"x":52.602,"y":8.687,"w":71.69000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Country","S":-1,"TS":[0,13,0,0]}]},{"x":48.294,"y":13.147,"w":53.900000000000006,"clr":0,"A":"left","R":[{"T":"Foreign%20City","S":-1,"TS":[0,13,0,0]}]},{"x":86.855,"y":13.146,"w":71.69000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20Country","S":-1,"TS":[0,13,0,0]}]},{"x":59.949,"y":13.27,"w":65.03,"clr":0,"A":"left","R":[{"T":"State%2FProvince","S":-1,"TS":[0,13,0,0]}]},{"x":50.442,"y":11.037,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":67.091,"y":11.052,"w":23.35,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":72.966,"y":11.005,"w":42.24,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.791,"y":2.396,"w":40.84499999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202555%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform2555","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.116,"y":20.136,"w":26.95900000000001,"clr":-1,"A":"left","R":[{"T":"tax%20home%3F%20See%20Second%20foreign%20household%20in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":35.499,"w":32.67999999999999,"clr":-1,"A":"left","R":[{"T":"include%20the%20income%20from%20column%20(d)%20in%20Part%20IV%2C%20but%20report%20it%20on%20Form%201040.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.762,"w":53.29999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20present%20in%20the%20United%20States%20or%20its%20possessions%20during%20the%20tax%20year%2C%20complete%20columns%20(a)%E2%80%A6(d)%20below.%20Do%20not%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1679,"AM":1024,"x":5.612,"y":4.915,"w":71.61,"h":0.858,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1680,"AM":1024,"x":78.323,"y":4.832,"w":20.039,"h":0.869,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFADDR","EN":0},"TI":1681,"AM":0,"x":6.02,"y":8.103,"w":18.813,"h":0.869,"TU":"Line 1. Foreign Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCITY","EN":0},"TI":1682,"AM":0,"x":25.763,"y":8.02,"w":20.306,"h":0.883,"TU":"Foreign City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCNTRY","EN":0},"TI":1683,"AM":0,"x":46.632,"y":8.043,"w":18.4,"h":0.858,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"POD","EN":0},"TI":1684,"AM":0,"x":65.861,"y":8.094,"w":10.89,"h":0.84,"TU":"Foreign postal code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOCC","EN":0},"TI":1685,"AM":0,"x":78.998,"y":8.06,"w":17.664,"h":0.852,"TU":"Line 2. Your occupation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ENAM","EN":0},"TI":1686,"AM":0,"x":26.091,"y":9.707,"w":35.468,"h":0.833,"TU":"Line 3. Employer's name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADUS","EN":0},"TI":1687,"AM":0,"x":30.405,"y":10.431,"w":18.481,"h":0.833,"TU":"Line 4a. Employer's U.S. address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADUSCITY","EN":0},"TI":1688,"AM":0,"x":49.366,"y":10.428,"w":17.84,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADUST","EN":0},"TI":1689,"AM":0,"x":67.754,"y":10.452,"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":"ADUSZIP","EN":0},"TI":1690,"AM":0,"x":73.685,"y":10.394,"w":9.033,"h":0.833,"TU":"Zip Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDF","EN":0},"TI":1691,"AM":0,"x":31.602,"y":12.377,"w":18.289,"h":0.833,"TU":"Line 4b. Employer's foreign address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCITY","EN":0},"TI":1692,"AM":0,"x":50.562,"y":12.368,"w":15.575,"h":0.833,"TU":"Foreign City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPROV","EN":0},"TI":1693,"AM":0,"x":66.937,"y":12.361,"w":7.77,"h":0.833,"TU":"State / Province."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPOST","EN":0},"TI":1694,"AM":0,"x":75.146,"y":12.329,"w":8.405,"h":0.833,"TU":"Foreign postal code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNTRY","EN":0},"TI":1695,"AM":0,"x":84.093,"y":12.292,"w":14.578,"h":0.858,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPEC","EN":0},"TI":1701,"AM":0,"x":79.095,"y":15.245,"w":9.356,"h":0.833,"TU":"Other (specify)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EXCL","EN":0},"TI":1702,"AM":0,"x":72.737,"y":15.907,"w":8.858,"h":0.833,"TU":"Line 6a. If you previously filed Form 2555 or Form 2555-EZ, enter the last year you filed the form.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1706,"AM":0,"x":42.064,"y":18.665,"w":18.977,"h":0.858,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REVEXCL_TYPE_1_","EN":0},"TI":1707,"AM":0,"x":85.59,"y":18.131,"w":4.945,"h":0.833,"PL":{"V":["FOREIGN EARNED INCOME EXCLUSION","HOUSING EXCLUSION","FOREIGN EARNED INCOME EXCLUSION AND HOUSING EXCLUSION"],"D":["FOREIGN EARNED INCOME EXCLUSION","HOUSING EXCLUSION","FOREIGN EARNED INCOME EXCLUSION AND HOUSING EXCLUSION"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REVEXCL_TXYRFEI_1_","EN":0},"TI":1708,"AM":0,"x":91.71,"y":18.164,"w":5.035,"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":["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":"CIT1","EN":0},"TI":1711,"AM":0,"x":45.777,"y":21.915,"w":27.357,"h":0.833,"TU":"Line 8b. Enter city and country of the separate foreign residence."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"NUMDAY","EN":0},"TI":1712,"AM":0,"x":73.454,"y":21.942,"w":24.454,"h":0.833,"TU":"Line 8b. Enter the number of days during your tax year that you maintained a second household at that address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HOM1","EN":0},"TI":1713,"AM":0,"x":58.152,"y":22.728,"w":13.775,"h":0.833,"TU":"Line 9. List your tax home(s) during your tax year."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HOM2","EN":0},"TI":1714,"AM":0,"x":72.312,"y":22.694,"w":13.775,"h":0.833,"TU":"Line 9. Tax home(s) continued."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DTEST","EN":0},"TI":1715,"AM":0,"x":86.537,"y":22.664,"w":11.574,"h":0.833,"TU":"Line 9. Date(s) established.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BEGN","EN":0},"TI":1716,"AM":0,"x":35.396,"y":27.511,"w":15.291,"h":0.833,"TU":"Line 10. Date bona fide residence began.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EDAT","EN":0},"TI":1717,"AM":0,"x":70.046,"y":27.511,"w":16.303,"h":0.833,"TU":"Line 10. Date ended.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WHO","EN":0},"TI":1724,"AM":0,"x":36.634,"y":30.511,"w":29.127,"h":0.833,"TU":"Line 12b. Who."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PERIOD","EN":0},"TI":1725,"AM":0,"x":67.331,"y":30.579,"w":27.665,"h":0.833,"TU":"Line 12b. What period?"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_1_","EN":0},"TI":1730,"AM":0,"x":6.033,"y":37.99,"w":10.67,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_1_","EN":0},"TI":1731,"AM":0,"x":17.581,"y":38.011,"w":9.989,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_1_","EN":0},"TI":1732,"AM":0,"x":28.926,"y":38.011,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_1_","EN":0},"TI":1733,"AM":0,"x":38.556,"y":38.011,"w":12.459,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_1_","EN":0},"TI":1734,"AM":0,"x":53.73,"y":37.988,"w":9.727,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_1_","EN":0},"TI":1735,"AM":0,"x":64.723,"y":38.011,"w":9.872,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_1_","EN":0},"TI":1736,"AM":0,"x":75.861,"y":38.011,"w":8.634,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_1_","EN":0},"TI":1737,"AM":0,"x":85.851,"y":38.011,"w":10.142,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_2_","EN":0},"TI":1738,"AM":0,"x":5.85,"y":38.743,"w":10.875,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_2_","EN":0},"TI":1739,"AM":0,"x":17.498,"y":38.828,"w":10.183,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_2_","EN":0},"TI":1740,"AM":0,"x":29.037,"y":38.763,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_2_","EN":0},"TI":1741,"AM":0,"x":38.487,"y":38.763,"w":12.549,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_2_","EN":0},"TI":1742,"AM":0,"x":53.841,"y":38.828,"w":9.548,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_2_","EN":0},"TI":1743,"AM":0,"x":64.744,"y":38.763,"w":9.872,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_2_","EN":0},"TI":1744,"AM":0,"x":75.972,"y":38.763,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_2_","EN":0},"TI":1745,"AM":0,"x":85.782,"y":38.763,"w":10.412,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_3_","EN":0},"TI":1746,"AM":0,"x":5.87,"y":39.501,"w":10.799,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_3_","EN":0},"TI":1747,"AM":0,"x":17.443,"y":39.522,"w":10.181,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_3_","EN":0},"TI":1748,"AM":0,"x":29.07,"y":39.522,"w":8.364,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_3_","EN":0},"TI":1749,"AM":0,"x":38.52,"y":39.522,"w":12.639,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_3_","EN":0},"TI":1750,"AM":0,"x":53.695,"y":39.522,"w":9.638,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_3_","EN":0},"TI":1751,"AM":0,"x":64.688,"y":39.522,"w":9.962,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_3_","EN":0},"TI":1752,"AM":0,"x":75.825,"y":39.522,"w":8.634,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_3_","EN":0},"TI":1753,"AM":0,"x":85.635,"y":39.522,"w":10.592,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_4_","EN":0},"TI":1754,"AM":0,"x":5.927,"y":40.2,"w":10.67,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_4_","EN":0},"TI":1755,"AM":0,"x":17.322,"y":40.22,"w":10.232,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_4_","EN":0},"TI":1756,"AM":0,"x":29.09,"y":40.243,"w":8.274,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_4_","EN":0},"TI":1757,"AM":0,"x":38.72,"y":40.22,"w":12.369,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_ARR2_4_","EN":0},"TI":1758,"AM":0,"x":53.804,"y":40.22,"w":9.638,"h":0.833,"TU":"Line 14(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14TWO_LFT2_4_","EN":0},"TI":1759,"AM":0,"x":64.797,"y":40.22,"w":9.692,"h":0.833,"TU":"Line 14(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_NUM2_4_","EN":0},"TI":1760,"AM":0,"x":75.845,"y":40.22,"w":8.544,"h":0.833,"TU":"Line 14(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14TWO_INC2_4_","EN":0},"TI":1761,"AM":0,"x":85.835,"y":40.22,"w":10.502,"h":0.833,"TU":"Line 14(d). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ANY1","EN":0},"TI":1762,"AM":0,"x":78.709,"y":41.076,"w":19.924,"h":0.833,"TU":"Line 15a. List any contractual terms or other conditions relating to the length of your employment abroad."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ANY2","EN":0},"TI":1763,"AM":0,"x":10.646,"y":41.761,"w":87.966,"h":0.833,"TU":"Line 15a. Continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VISA","EN":0},"TI":1764,"AM":0,"x":58.909,"y":42.511,"w":39.703,"h":0.833,"TU":"Line 15b. Enter the type of visa under which you entered the foreign country."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_ADH2_1_","EN":0},"TI":1769,"AM":0,"x":15.732,"y":46.103,"w":46.757,"h":0.833,"TU":"Line 15e. Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_RENTED_1_","EN":0},"TI":1770,"AM":0,"x":72.554,"y":46.003,"w":21.617,"h":0.833,"TU":"Line 15e. For Rented, olnly enter the word \"Rented\", If not rented, leave blank."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_CITY_1_","EN":0},"TI":1771,"AM":0,"x":13.252,"y":46.817,"w":27.169,"h":0.87,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_ST_1_","EN":0},"TI":1772,"AM":0,"x":46.48,"y":46.899,"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":"A1_ZIP_1_","EN":0},"TI":1773,"AM":0,"x":62.657,"y":46.835,"w":16.836,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_OCCNM_1_","EN":0},"TI":1774,"AM":0,"x":18.007,"y":47.649,"w":29.791,"h":0.833,"TU":"Occupants."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_REL_1_","EN":0},"TI":1775,"AM":0,"x":58.083,"y":47.695,"w":23.776,"h":0.833,"TU":"Relationship."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPA","EN":0},"TI":1696,"AM":0,"x":30.848,"y":14.284,"w":1.776,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPB","EN":0},"TI":1697,"AM":0,"x":65.008,"y":14.194,"w":1.913,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPC","EN":0},"TI":1698,"AM":0,"x":85.912,"y":14.314,"w":2.128,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPD","EN":0},"TI":1699,"AM":0,"x":30.722,"y":15.02,"w":1.764,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPE","EN":0},"TI":1700,"AM":0,"x":64.796,"y":14.991,"w":2.128,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CHBX","EN":0},"TI":1703,"AM":0,"x":77.022,"y":16.555,"w":2.091,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REVY","EN":0},"TI":1704,"AM":0,"x":85.566,"y":17.31,"w":1.755,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REVN","EN":0},"TI":1705,"AM":0,"x":91.882,"y":17.31,"w":1.552,"h":0.833,"checked":false}],"id":{"Id":"REVRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADVY","EN":0},"TI":1709,"AM":0,"x":85.528,"y":20.206,"w":1.857,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADVN","EN":0},"TI":1710,"AM":0,"x":91.335,"y":20.242,"w":2.151,"h":0.833,"checked":false}],"id":{"Id":"ADVRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"0","EN":0},"TI":1718,"AM":0,"x":42.563,"y":28.187,"w":1.461,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"1","EN":0},"TI":1719,"AM":0,"x":60.892,"y":28.14,"w":1.717,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"2","EN":0},"TI":1720,"AM":0,"x":86.843,"y":28.119,"w":1.74,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"3","EN":0},"TI":1721,"AM":0,"x":42.558,"y":28.907,"w":1.514,"h":0.833,"checked":false}],"id":{"Id":"KNDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FAMY","EN":0},"TI":1722,"AM":0,"x":86.221,"y":29.565,"w":1.766,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FAMN","EN":0},"TI":1723,"AM":0,"x":92.657,"y":29.579,"w":1.6,"h":0.833,"checked":false}],"id":{"Id":"FAMRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HAVY","EN":0},"TI":1726,"AM":0,"x":86.489,"y":31.928,"w":1.691,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HAVN","EN":0},"TI":1727,"AM":0,"x":92.657,"y":31.908,"w":1.553,"h":0.833,"checked":false}],"id":{"Id":"HAVRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQY","EN":0},"TI":1728,"AM":0,"x":86.413,"y":32.688,"w":1.629,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQN","EN":0},"TI":1729,"AM":0,"x":92.602,"y":32.63,"w":1.676,"h":0.833,"checked":false}],"id":{"Id":"REQRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LIMY","EN":0},"TI":1765,"AM":0,"x":86.258,"y":43.15,"w":1.679,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LIMN","EN":0},"TI":1766,"AM":0,"x":92.325,"y":43.13,"w":1.809,"h":0.833,"checked":false}],"id":{"Id":"LIMRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOMY","EN":0},"TI":1767,"AM":0,"x":86.115,"y":43.889,"w":1.932,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOMN","EN":0},"TI":1768,"AM":0,"x":92.425,"y":43.963,"w":1.857,"h":0.833,"checked":false}],"id":{"Id":"HOMRB","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":4.5,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":59.357,"y":5.25,"w":0.75,"l":17.411},{"dsh":1,"oc":"#221f1f","x":84.107,"y":5.25,"w":0.75,"l":14.936},{"dsh":1,"oc":"#221f1f","x":58.12,"y":6,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":35.973},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":42.032,"y":10.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":10.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":9,"w":0.75,"l":8.748},{"oc":"#221f1f","x":66.782,"y":10.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.445,"y":9,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.445,"y":10.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":9,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.107,"y":10.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":11.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.445,"y":11.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":11.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":12,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.444,"y":12,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.244,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12.75,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.032,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.782,"y":12.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.444,"y":12.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":84.107,"y":12.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.244,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":13.5,"w":1.125,"l":35.973},{"oc":"#221f1f","x":42.032,"y":13.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":54.407,"y":13.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.782,"y":13.5,"w":1.125,"l":8.748},{"oc":"#221f1f","x":75.445,"y":13.5,"w":1.125,"l":8.748},{"oc":"#221f1f","x":84.107,"y":13.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":13.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":15,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":73.099},{"oc":"#221f1f","x":6.145,"y":21.75,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.157,"y":20.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":21.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":22.5,"w":0.75,"l":3.798},{"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},{"dsh":1,"oc":"#221f1f","x":64.307,"y":24.75,"w":0.75,"l":13.698},{"dsh":1,"oc":"#221f1f","x":11.095,"y":25.5,"w":0.75,"l":66.911},{"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":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":30.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":30.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":30.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":31.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":31.688,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":31.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":33.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":33.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":33.188,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":47.369,"y":33.938,"w":0.75,"l":31.023},{"dsh":1,"oc":"#221f1f","x":11.481,"y":34.688,"w":0.75,"l":66.911},{"oc":"#221f1f","x":79.544,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":34.688,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":36.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":36.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":36.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":36.938,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":36.938,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":36.938,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":37.687,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":37.687,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":37.687,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":38.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":38.438,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":38.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.744,"y":39.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.456,"y":39.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.831,"y":39.188,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":44.894,"y":39.937,"w":0.75,"l":13.698},{"dsh":1,"oc":"#221f1f","x":11.481,"y":40.688,"w":0.75,"l":47.111},{"oc":"#221f1f","x":59.744,"y":40.696,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.456,"y":40.696,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.831,"y":40.696,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.544,"y":42.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":42.187,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":42.187,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":49.844,"y":42.938,"w":0.75,"l":28.548},{"dsh":1,"oc":"#221f1f","x":11.481,"y":43.688,"w":0.75,"l":66.911},{"oc":"#221f1f","x":79.544,"y":43.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":83.256,"y":43.688,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.631,"y":43.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.544,"y":45.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":45.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":45.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.544,"y":46.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":83.256,"y":46.688,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.631,"y":46.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.544,"y":48.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.256,"y":48.188,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.631,"y":48.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.531,"y":48.188,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":42.075,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"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":75.488,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":42.075,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.075,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.075,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.075,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.45,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.825,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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":82.913,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.145,"y":25.534,"w":0.75,"l":3.963},{"oc":"#221f1f","x":79.535,"y":25.603,"w":0.75,"l":3.918},{"oc":"#221f1f","x":83.299,"y":29.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.587,"y":29.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.391,"y":25.493,"w":0.75,"l":3.108},{"oc":"#221f1f","x":95.52,"y":28.628,"w":0.75,"l":1.432},{"oc":"#221f1f","x":83.299,"y":30.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":30.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":30.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":30.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":31.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":31.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":31.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":32.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":33.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":33.172,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":33.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":33.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":34.672,"w":0.75,"l":6.031},{"oc":"#221f1f","x":79.587,"y":34.672,"w":0.75,"l":6.031},{"oc":"#221f1f","x":95.674,"y":34.672,"w":0.75,"l":6.781},{"oc":"#221f1f","x":59.787,"y":35.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":35.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":35.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":36.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":36.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":36.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":36.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":36.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":36.922,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":37.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":37.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":37.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.787,"y":38.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":38.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":38.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.499,"y":39.172,"w":0.75,"l":1.547},{"oc":"#221f1f","x":59.787,"y":39.172,"w":0.75,"l":1.547},{"oc":"#221f1f","x":75.874,"y":39.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.874,"y":39.922,"w":0.75,"l":0.797},{"oc":"#221f1f","x":83.299,"y":40.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":40.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":41.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":42.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.587,"y":42.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.674,"y":42.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":42.922,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.299,"y":43.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":43.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":43.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":44.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.299,"y":45.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.587,"y":45.172,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.674,"y":45.172,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":45.922,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.299,"y":46.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.587,"y":46.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.674,"y":46.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.674,"y":47.422,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.375,"w":6.531,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":13.875,"w":6.531,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.587,"y":27.938,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.587,"y":34.688,"w":3.712,"h":6,"clr":-1}],"Texts":[{"oc":"#221f1f","x":10.918,"y":7.962999999999999,"w":47.36699999999996,"clr":-1,"A":"left","R":[{"T":"12-month%20period.%E2%80%9D%20Do%20not%20include%20the%20income%20from%20column%20(f)%20below%20in%20Part%20IV%2C%20but%20report%20it%20on%20Form%201040.%20","S":3,"TS":[0,12,0,0]}]},{"x":23.884,"y":24.552,"w":314.77599999999967,"clr":0,"A":"left","R":[{"T":"%20Address%20%20%20%2F%20%20City%20%20%2F%20%20Province%20or%20St%20%20%20%2F%20%20%20Country%20%20%20%2F%20%20%20Postal%20Code%20%20%20%20%20%20%20%20%20Type%20of%20Income","S":-1,"TS":[0,11,1,0]}]},{"x":8.172,"y":24.594,"w":83.71200000000002,"clr":0,"A":"left","R":[{"T":"Partnership's%20Name%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"x":52.59,"y":48.689,"w":145.63000000000005,"clr":0,"A":"left","R":[{"T":"Form%202555%20Page%203%20Spouse%20Copy","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202555%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.501,"y":3.196,"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.139,"w":25.233000000000008,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Qualifying%20Under%20Physical%20Presence%20Test%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":57.656,"y":3.139,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":4.308,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":4.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":4.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.647,"y":4.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":4.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.058,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.027,"w":29.043000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20principal%20country%20of%20employment%20during%20your%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.813,"y":4.933,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":6.588,"w":53.94999999999993,"clr":-1,"A":"left","R":[{"T":"foreign%20countries%20that%20did%20not%20involve%20travel%20on%20or%20over%20international%20waters%2C%20or%20in%20or%20over%20the%20United%20States%2C%20for%2024%20hours%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.366,"y":8.835,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.438,"y":8.835,"w":7.446000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20country","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.815,"y":9.36,"w":7.038,"clr":-1,"A":"left","R":[{"T":"(including%20U.S.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.858,"y":9.097,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":45.639,"y":9.097,"w":5.704000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20arrived%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.269,"y":9.097,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.006,"y":9.097,"w":4.019,"clr":-1,"A":"left","R":[{"T":"Date%20left%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.62,"y":8.7,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.402,"y":8.7,"w":4.26,"clr":-1,"A":"left","R":[{"T":"Full%20days%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.243,"y":9.137,"w":4.705,"clr":-1,"A":"left","R":[{"T":"present%20in%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.879,"y":9.575,"w":3.6490000000000005,"clr":-1,"A":"left","R":[{"T":"country%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.848,"y":8.7,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.585,"y":8.7,"w":5.020000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.326,"y":9.137,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"days%20in%20U.S.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.337,"y":9.575,"w":5.65,"clr":-1,"A":"left","R":[{"T":"on%20business%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.618,"y":8.7,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.065,"y":8.7,"w":10.225000000000001,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in%20U.S.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.088,"y":9.137,"w":8.984000000000004,"clr":-1,"A":"left","R":[{"T":"on%20business%20(attach%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.782,"y":9.575,"w":5.891000000000001,"clr":-1,"A":"left","R":[{"T":"computation)","S":2,"TS":[0,10,0,0]}]},{"x":6.466,"y":13.696,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":13.634,"w":6.781000000000001,"clr":-1,"A":"left","R":[{"T":"All%20Taxpayers%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":15.177,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.459,"y":15.177,"w":55.75199999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20lines%2019%20through%2023%20all%20income%2C%20including%20noncash%20income%2C%20you%20earned%20and%20actually%20or%20constructively%20received%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.922,"y":17.427,"w":15.839000000000006,"clr":-1,"A":"left","R":[{"T":"constructively%20received%20the%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.938,"y":18.533,"w":56.31399999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20a%20cash%20basis%20taxpayer%2C%20report%20on%20Form%201040%20all%20income%20you%20received%20in%202013%2C%20no%20matter%20when%20you%20performed%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.938,"y":19.208,"w":5.779000000000002,"clr":-1,"A":"left","R":[{"T":"the%20service.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.732,"y":20.384,"w":13.894000000000007,"clr":-1,"A":"left","R":[{"T":"2013%20Foreign%20Earned%20Income%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":86.279,"y":20.057,"w":4.018,"clr":-1,"A":"left","R":[{"T":"Amount%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.913,"y":20.657,"w":7.461,"clr":-1,"A":"left","R":[{"T":"(in%20U.S.%20dollars)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.692,"y":21.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.016,"y":21.683,"w":22.670000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20wages%2C%20salaries%2C%20bonuses%2C%20commissions%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":21.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":21.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":22.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.339,"w":34.630999999999986,"clr":-1,"A":"left","R":[{"T":"Allowable%20share%20of%20income%20for%20personal%20services%20performed%20(see%20instructions)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":23.089,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":20.781000000000002,"clr":-1,"A":"left","R":[{"T":"In%20a%20business%20(including%20farming)%20or%20profession%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":23.089,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.502,"y":23.089,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":23.808,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.777,"w":33.306999999999995,"clr":-1,"A":"left","R":[{"T":"In%20a%20partnership.%20List%20partnership%E2%80%99s%20name%20and%20address%20and%20type%20of%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.409,"y":23.683,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.474,"y":24.589,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"20b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":27.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":27.839,"w":43.11999999999997,"clr":-1,"A":"left","R":[{"T":"Noncash%20income%20(market%20value%20of%20property%20or%20facilities%20furnished%20by%20employer%E2%80%94attach%20statement%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.28,"y":28.526,"w":14.963000000000006,"clr":-1,"A":"left","R":[{"T":"showing%20how%20it%20was%20determined)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":29.277,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":29.277,"w":7.075000000000001,"clr":-1,"A":"left","R":[{"T":"Home%20(lodging)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.825,"y":29.277,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.889,"y":29.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"21a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":30.777,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":30.777,"w":2.945,"clr":-1,"A":"left","R":[{"T":"Meals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.637,"y":30.777,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.861,"y":30.777,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"21b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":32.277,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":32.277,"w":1.8699999999999999,"clr":-1,"A":"left","R":[{"T":"Car%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.574,"y":32.277,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.889,"y":32.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"21c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":32.995,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":32.964,"w":22.191,"clr":-1,"A":"left","R":[{"T":"Other%20property%20or%20facilities.%20List%20type%20and%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.6,"y":32.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.861,"y":33.777,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"21d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":34.527,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":34.527,"w":40.597999999999985,"clr":-1,"A":"left","R":[{"T":"Allowances%2C%20reimbursements%2C%20or%20expenses%20paid%20on%20your%20behalf%20for%20services%20you%20performed%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":35.277,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":35.277,"w":17.315000000000005,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20living%20and%20overseas%20differential%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.324,"y":35.277,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.089,"y":35.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"22a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":36.027,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":36.027,"w":3.1860000000000004,"clr":-1,"A":"left","R":[{"T":"Family%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.637,"y":36.027,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.061,"y":36.027,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"22b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":36.777,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":36.777,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Education%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.699,"y":36.777,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.089,"y":36.777,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"22c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":37.527,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":37.527,"w":5.574999999999999,"clr":-1,"A":"left","R":[{"T":"Home%20leave%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.761,"y":37.527,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.061,"y":37.527,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"22d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":38.277,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":38.277,"w":4.149000000000001,"clr":-1,"A":"left","R":[{"T":"Quarters%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.699,"y":38.277,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.089,"y":38.277,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"22e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":38.995,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":38.964,"w":20.470000000000006,"clr":-1,"A":"left","R":[{"T":"For%20any%20other%20purpose.%20List%20type%20and%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.938,"y":38.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.276,"y":39.785,"w":1.723,"clr":-1,"A":"left","R":[{"T":"22f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.799,"y":41.277,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":41.277,"w":11.781999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2022a%20through%2022f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.074,"y":41.277,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.861,"y":41.277,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"22g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":41.995,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":41.964,"w":23.360000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20foreign%20earned%20income.%20List%20type%20and%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.409,"y":41.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.333,"y":42.777,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":44.277,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":44.277,"w":21.046000000000006,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2019%20through%2021d%2C%20line%2022g%2C%20and%20line%2023%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.511,"y":44.277,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.333,"y":44.277,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":45.777,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":45.777,"w":43.25299999999998,"clr":-1,"A":"left","R":[{"T":"Total%20amount%20of%20meals%20and%20lodging%20included%20on%20line%2024%20that%20is%20excludable%20(see%20instructions)%20%20.%20%20%20%20%20.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.333,"y":45.777,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.079,"y":46.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.279,"y":47.144,"w":9.949000000000002,"clr":-1,"A":"left","R":[{"T":"foreign%20earned%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.955,"y":47.206,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":"%20.......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.896,"y":47.113,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.333,"y":47.277,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.395,"y":48.009,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.538,"y":48.009,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.838,"y":48.009,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":51.731,"y":48.068,"w":153.40000000000003,"clr":0,"A":"left","R":[{"T":"Form%202555%20Page%203%20Taxpayer%20Copy","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.901,"w":56.358999999999945,"clr":-1,"A":"left","R":[{"T":"If%20you%20traveled%20abroad%20during%20the%2012-month%20period%20entered%20on%20line%2016%2C%20complete%20columns%20(a)%E2%80%A6(f)%20below.%20Exclude%20travel%20between%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.936,"y":15.739,"w":57.24399999999994,"clr":-1,"A":"left","R":[{"T":"your%202013%20tax%20year%20for%20services%20you%20performed%20in%20a%20foreign%20country.%20If%20any%20of%20the%20foreign%20earned%20income%20received%20this%20tax%20year%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":16.302,"w":55.74999999999993,"clr":-1,"A":"left","R":[{"T":"earned%20in%20a%20prior%20tax%20year%2C%20or%20will%20be%20earned%20in%20a%20later%20tax%20year%20(such%20as%20a%20bonus)%2C%20see%20the%20instructions.%20include%20income%20from%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.922,"y":16.864,"w":54.57899999999993,"clr":-1,"A":"left","R":[{"T":"14%2C%20columnor%20line%2018%2C%20column%20Report%20amounts%20in%20U.S.%20dollars%2C%20using%20the%20exchange%20rates%20in%20effect%20when%20you%20actually%20or%20(d)%2C(f).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.274,"y":46.469,"w":41.79999999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20from%20line%2024.%20Enter%20the%20result%20here%20and%20on%20line%2027%20on%20page%203.%20This%20is%20your%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.911,"y":7.276,"w":56.248999999999924,"clr":-1,"A":"left","R":[{"T":"more.%20If%20you%20have%20no%20travel%20to%20report%20during%20the%20period%2C%20enter%20%E2%80%9CPhysically%20present%20in%20a%20foreign%20country%20or%20countries%20for%20the%20entire%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1776,"AM":0,"x":18.248,"y":1.998,"w":54.521,"h":0.833,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1777,"AM":0,"x":73.037,"y":1.998,"w":20.872,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FROM","EN":0},"TI":1778,"AM":0,"x":59.359,"y":4.612,"w":15.403,"h":0.833,"TU":"Line 16. The physical presence test is based on the 12 month period from.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"THRU","EN":0},"TI":1779,"AM":0,"x":84.109,"y":4.612,"w":14.953,"h":0.833,"TU":"Line 17 through.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":1780,"AM":0,"x":58.121,"y":5.362,"w":40.941,"h":0.833,"TU":"Line 17. Enter your principal country of employment during the tax year."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRT","EN":0},"TI":1781,"AM":0,"x":6.052,"y":9.071,"w":11.453,"h":0.89},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_1_","EN":0},"TI":1782,"AM":0,"x":6.188,"y":10.538,"w":35.805,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_1_","EN":0},"TI":1783,"AM":0,"x":42.178,"y":10.538,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_1_","EN":0},"TI":1784,"AM":0,"x":54.553,"y":10.538,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_1_","EN":0},"TI":1785,"AM":0,"x":66.928,"y":10.538,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_1_","EN":0},"TI":1786,"AM":0,"x":75.591,"y":10.538,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_1_","EN":0},"TI":1787,"AM":0,"x":84.253,"y":10.538,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_2_","EN":0},"TI":1788,"AM":0,"x":6.178,"y":11.295,"w":35.805,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_2_","EN":0},"TI":1789,"AM":0,"x":42.168,"y":11.295,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_2_","EN":0},"TI":1790,"AM":0,"x":54.543,"y":11.295,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_2_","EN":0},"TI":1791,"AM":0,"x":66.918,"y":11.295,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_2_","EN":0},"TI":1792,"AM":0,"x":75.581,"y":11.295,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_2_","EN":0},"TI":1793,"AM":0,"x":84.243,"y":11.295,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_3_","EN":0},"TI":1794,"AM":0,"x":6.198,"y":12.054,"w":35.741,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_3_","EN":0},"TI":1795,"AM":0,"x":41.932,"y":12.054,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_3_","EN":0},"TI":1796,"AM":0,"x":54.307,"y":12.054,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_3_","EN":0},"TI":1797,"AM":0,"x":66.682,"y":12.054,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_3_","EN":0},"TI":1798,"AM":0,"x":75.28,"y":12.054,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_3_","EN":0},"TI":1799,"AM":0,"x":84.007,"y":12.054,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEILN18_CNAM_4_","EN":0},"TI":1800,"AM":0,"x":6.203,"y":12.752,"w":35.805,"h":0.833,"TU":"Line 18(a). Name of country (including U.S.)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_ADDI_4_","EN":0},"TI":1801,"AM":0,"x":42.193,"y":12.752,"w":12.189,"h":0.833,"TU":"Line 18(b). Date arrived.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FEILN18_LEF_4_","EN":0},"TI":1802,"AM":0,"x":54.568,"y":12.752,"w":12.189,"h":0.833,"TU":"Line 18(c). Date left.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_DAYS_4_","EN":0},"TI":1803,"AM":0,"x":66.943,"y":12.752,"w":8.477,"h":0.833,"TU":"Line 18(d). Full days present in country."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"FEILN18_NUMB_4_","EN":0},"TI":1804,"AM":0,"x":75.606,"y":12.752,"w":8.477,"h":0.833,"TU":"Line 18(e). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEILN18_INC_4_","EN":0},"TI":1805,"AM":0,"x":84.268,"y":12.752,"w":10.952,"h":0.833,"TU":"Line 18(f). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":1806,"AM":0,"x":83.016,"y":21.788,"w":12.189,"h":0.833,"TU":"Line 19. Total wages, salaries, bonuses, commissions, etc. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20A","EN":0},"TI":1807,"AM":0,"x":83.098,"y":23.073,"w":12.024,"h":0.912,"TU":"Line 20a. Allowable share of income for personal services performed (see instructions) in a business (including farming or profession. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":1808,"AM":0,"x":83.098,"y":24.513,"w":12.024,"h":0.972,"TU":"Line 20b. In a partnership. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_NAME1_1_","EN":0},"TI":1809,"AM":0,"x":7.712,"y":25.623,"w":15.206,"h":0.833,"TU":"Line 20b. Partnership's Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_ADDRSS_1_","EN":0},"TI":1810,"AM":0,"x":23.447,"y":25.593,"w":37.814,"h":0.833,"TU":"Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_CITYNAME_1_","EN":0},"TI":1811,"AM":0,"x":23.384,"y":26.307,"w":22.035,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_STORPROV_1_","EN":0},"TI":1812,"AM":0,"x":45.908,"y":26.346,"w":15.206,"h":0.833,"TU":"Province or State"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_COUNTRY_1_","EN":0},"TI":1813,"AM":0,"x":23.337,"y":27.062,"w":26.691,"h":0.833,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua & Barbuda","Argentina","Armenia","Aruba","Ashmore & 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)","Cooks 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 & Antarctic Lands","Gabon","The Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island & 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","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 & The S Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts & Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent & Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","Togo","Tokelau ","Tonga","Trinidad & Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis & Futuna","Western Sahara","Yemen ","Zambia","Zimbabwe","Other Countries"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ADDR_ZIPCDE_1_","EN":0},"TI":1814,"AM":0,"x":51.25,"y":26.988,"w":9.82,"h":0.833,"TU":"Postal Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR_TYPEINC_1_","EN":0},"TI":1815,"AM":0,"x":63.872,"y":26.998,"w":15.206,"h":0.833,"TU":"Type of Income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21A","EN":0},"TI":1816,"AM":0,"x":83.358,"y":29.215,"w":11.983,"h":0.96,"TU":"Line 21a. Noncash income (market value of property or facilities furnished by employer - attach statement showing how it was determined). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21B","EN":0},"TI":1817,"AM":0,"x":83.338,"y":30.807,"w":12.024,"h":0.885,"TU":"Line 21b. Meals. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21C","EN":0},"TI":1818,"AM":0,"x":83.338,"y":32.161,"w":12.024,"h":1.031,"TU":"Line 21c. Car. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21D1","EN":0},"TI":1819,"AM":0,"x":47.223,"y":33.319,"w":31.041,"h":0.833,"TU":"Line 21d. Other property or facilities. List type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21D","EN":0},"TI":1820,"AM":0,"x":83.338,"y":33.591,"w":12.024,"h":1.101,"TU":"Line 21d. Amount. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21D2","EN":0},"TI":1821,"AM":0,"x":11.336,"y":34.069,"w":66.928,"h":0.833,"TU":"Line 21d. Continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22A","EN":0},"TI":1822,"AM":0,"x":63.476,"y":35.464,"w":12.148,"h":0.833,"TU":"Line 22a. Cost of living and overseas differential. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22B","EN":0},"TI":1823,"AM":0,"x":63.455,"y":36.244,"w":12.189,"h":0.833,"TU":"Line 22b. Family. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22C","EN":0},"TI":1824,"AM":0,"x":63.455,"y":36.994,"w":12.189,"h":0.833,"TU":"Line 22c. Education. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22D","EN":0},"TI":1825,"AM":0,"x":63.455,"y":37.744,"w":12.189,"h":0.833,"TU":"Line 22d. Home leave. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22E","EN":0},"TI":1826,"AM":0,"x":63.455,"y":38.518,"w":12.189,"h":0.833,"TU":"Line 22e. Quarters. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L22F1","EN":0},"TI":1827,"AM":0,"x":44.748,"y":39.319,"w":13.716,"h":0.833,"TU":"Line 22f. For any other purpose. List type."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L22F2","EN":0},"TI":1828,"AM":0,"x":11.336,"y":40.069,"w":47.128,"h":0.833,"TU":"Line 22f. Continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22F","EN":0},"TI":1829,"AM":0,"x":63.538,"y":39.72,"w":12.024,"h":0.972,"TU":"Line 22f. Amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22G","EN":0},"TI":1830,"AM":1024,"x":83.4,"y":41.155,"w":11.901,"h":1.037,"TU":"Line 22g. Add lines 22a through 22f. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23O1","EN":0},"TI":1831,"AM":0,"x":49.698,"y":42.319,"w":28.566,"h":0.833,"TU":"Line 23. Other foreign earned income. List type."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23O2","EN":0},"TI":1832,"AM":0,"x":11.336,"y":43.069,"w":66.928,"h":0.833,"TU":"Line 23. Continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":1833,"AM":0,"x":83.338,"y":42.78,"w":12.024,"h":0.904,"TU":"Line 23. Amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":1834,"AM":1024,"x":83.338,"y":43.865,"w":12.024,"h":1.327,"TU":"Line 24. Add lines 19 through 21d, line 22g and line 23. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":1835,"AM":0,"x":83.338,"y":45.358,"w":12.024,"h":1.327,"TU":"Line 25. Total amount of meals and lodging included in line 24 that is excludable (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":1836,"AM":1024,"x":83.338,"y":46.865,"w":12.024,"h":1.312,"TU":"Line 26. Subtract line 25 from line 24. Enter the result here and on line 27 on page 3. This is your 2013 foreign earned income. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F25553S"}},"id":{"Id":"Add_F2555Page_3_Spouse","EN":0},"TI":1837,"AM":0,"x":79.21,"y":48.648,"w":3.132,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F25553T"}},"id":{"Id":"Add_F2555_Page_3_Taxpayer","EN":0},"TI":1838,"AM":0,"x":79.326,"y":48.088,"w":3.132,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F25553S.content.txt b/test/data/fd/form/F25553S.content.txt new file mode 100755 index 00000000..6c674f7d --- /dev/null +++ b/test/data/fd/form/F25553S.content.txt @@ -0,0 +1,160 @@ +Form 2555 (2013) +Page +3 +Part V +All Taxpayers +27 +Enter the amount from line 26 +...................... +27 +Are you claiming the housing exclusion or housing deduction? +Part VI +Taxpayers Claiming the Housing Exclusion and/or Deduction +28 +Qualified housing expenses for the tax year (see instructions) +............ +28 +29a +Enter location where housing expenses incurred (see instructions) +a +b +Enter limit on housing expenses (see instructions) +............... +29b +30 +................... +30 +31 + +Number of days in your qualifying period that fall within your 2013 tax +year (see instructions) +................ +31 +days +32 +Multiply $42.78 by the number of days on line 31. If 365 is entered on line 31, enter $15,616.00 here +32 +33 + +Subtract line 32 from line 30. If the result is zero or less, do not complete the rest of this part or +any of Part IX +........................... +33 +34 +Enter employer-provided amounts (see instructions) +...... +34 +35 + +Divide line 34 by line 27. Enter the result as a decimal (rounded to at least three places), but do +not enter more than “1.000” +....................... +35 +× +. +36 + +amount on line 34. Also, complete Part VIII +................. +a +36 +income exclusion, complete Parts VII and VIII before Part IX. +Part VII +Taxpayers Claiming the Foreign Earned Income Exclusion +37 +Maximum foreign earned income exclusion +..................... +37 +38 +• If you completed Part VI, enter the number from line 31. +• All others, enter the number of days in your qualifying period that +fall within your 2013 tax year (see the instructions for line 31). +} +38 +days +39 +• +If line 38 and the number of days in your 2013 tax year (usually 365) are the same, enter “1.000.” +• Otherwise, divide line 38 by the number of days in your 2013 tax year and enter the result as +a decimal (rounded to at least three places). +} +39 +× +. +40 +Multiply line 37 by line 39 +....................... +40 +41 +Subtract line 36 from line 27 +...................... +41 +42 + +a +42 +Part VIII +Taxpayers Claiming the Housing Exclusion, Foreign Earned Income Exclusion, or Both +43 +Add lines 36 and 42 +......................... +43 +44 + +to the excluded income. See instructions and attach computation +.......... +44 +45 + + +Next to the amount enter “Form 2555.” On Form 1040, subtract this amount from your income +to arrive at total income on Form 1040, line 22 +................ +45 +Part IX +Taxpayers Claiming the Housing Deduction +46 +Subtract line 36 from line 33 +...................... +46 +47 +Subtract line 43 from line 27 +...................... +47 +48 +................... +48 +because of the 2012 limit, use the housing deduction carryover worksheet in the instructions to +figure the amount to enter on line 49. Otherwise, go to line 50. +49 + +Housing deduction carryover from 2012 (from housing deduction carryover worksheet in the +instructions) +............................ +49 +50 + + +line 36. Next to the amount on Form 1040, enter “Form 2555.” Add it to the total adjustments +reported on that line + ........................ +a +50 +Form +2555 +(2013) +$97,600 00 +Housing deduction. Add lines 48 and 49. Enter the total here and on Form 1040 to the left of +Note: If line 47 is more than line 48 and you could not deduct all of your 2012 housing deduction +Enter the smaller of line 46 or line 47 +Complete this part only if (a) line 33 is more than line 36 and +(b) line 27 is more than line 43. +Subtract line 44 from line 43. Enter the result here and in parentheses on Form 1040, line 21. +Deductions allowed in figuring your adjusted gross income (Form 1040, line 37) that are allocable +Foreign earned income exclusion. Enter the smaller of line 40 or line 41. Also, complete Part VIII +Note: The housing deduction is figured in Part IX. If you choose to claim the foreign earned +Housing exclusion. Multiply line 33 by line 35. Enter the result but do not enter more than the +Enter the smaller of line 28 or line 29b +Yes. Complete Part VI. +No. Go to Part VII. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F25553S.fields.json b/test/data/fd/form/F25553S.fields.json new file mode 100755 index 00000000..9a415076 --- /dev/null +++ b/test/data/fd/form/F25553S.fields.json @@ -0,0 +1 @@ +[{"id":"CLAIMRB","type":"radio","calc":false,"value":"CLAIMY"},{"id":"CLAIMRB","type":"radio","calc":false,"value":"CLAIMN"},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"LOCN","type":"alpha","calc":false,"value":""},{"id":"HEXPLMT","type":"number","calc":false,"value":""},{"id":"SMALLER","type":"number","calc":true,"value":""},{"id":"L48","type":"number","calc":true,"value":""},{"id":"L29","type":"percent","calc":false,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L33","type":"percent","calc":true,"value":""},{"id":"L34","type":"alpha","calc":true,"value":""},{"id":"L36","type":"percent","calc":false,"value":""},{"id":"L37","type":"mask","calc":false,"value":""},{"id":"L38","type":"number","calc":true,"value":""},{"id":"L39","type":"number","calc":true,"value":""},{"id":"L40","type":"number","calc":true,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"L42","type":"number","calc":false,"value":""},{"id":"L43","type":"number","calc":true,"value":""},{"id":"L44","type":"number","calc":true,"value":""},{"id":"L45","type":"number","calc":true,"value":""},{"id":"L46","type":"number","calc":true,"value":""},{"id":"L47","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F25553S.json b/test/data/fd/form/F25553S.json new file mode 100755 index 00000000..1ca14d62 --- /dev/null +++ b/test/data/fd/form/F25553S.json @@ -0,0 +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":3,"w":1.5,"l":9.986},{"oc":"#221f1f","x":16.045,"y":3,"w":1.5,"l":82.999},{"oc":"#221f1f","x":6.145,"y":4.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":6,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":8.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":9.75,"w":0.75,"l":92.899},{"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},{"dsh":1,"oc":"#221f1f","x":58.12,"y":12,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":15,"w":0.75,"l":14.936},{"oc":"#221f1f","x":79.157,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":15.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":18,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":17.25,"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":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":94.007,"y":19.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.157,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":22.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":24,"w":0.75,"l":92.899},{"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":60.595,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":26.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":79.157,"y":24.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":28.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":94.007,"y":28.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.157,"y":30,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30.75,"w":0.75,"l":12.461},{"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":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":6.145,"y":31.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":33,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":35.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":35.25,"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":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":37.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":39,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":39.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":39.749,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":39.749,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":40.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":45,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":45,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":45,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":47.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":47.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":47.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":82.913,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":4.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"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":95.288,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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":60.638,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":60.638,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":33.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":33.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":35.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":35.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":38.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":38.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":0.788},{"oc":"#221f1f","x":82.913,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":41.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.2,"y":41.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":41.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.913,"y":44.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":44.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":44.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":44.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":44.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":44.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":46.484,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.375,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":8.625,"w":6.531,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":11.25,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":13.5,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":17.25,"w":3.712,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":22.875,"w":6.875,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":24.75,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.188,"y":31.875,"w":7.425,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":37.875,"w":6.875,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":41.25,"w":3.712,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202555%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":"3%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.548,"y":3.196,"w":3.168,"clr":1,"A":"left","R":[{"T":"Part%20V%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#181616","x":14.531,"y":3.227,"w":6.781000000000001,"clr":-1,"A":"left","R":[{"T":"All%20Taxpayers%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.089,"w":13.524000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2026%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":5.089,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":5.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.839,"w":28.025000000000013,"clr":-1,"A":"left","R":[{"T":"Are%20you%20claiming%20the%20housing%20exclusion%20or%20housing%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"x":6.466,"y":8.446,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20VI%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":8.389,"w":29.28500000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Housing%20Exclusion%20and%2For%20Deduction%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":10.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.339,"w":27.429000000000002,"clr":-1,"A":"left","R":[{"T":"Qualified%20housing%20expenses%20for%20the%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":10.339,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":10.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":11.058,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"29a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.027,"w":29.595000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20location%20where%20housing%20expenses%20incurred%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.667,"y":10.933,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.413,"y":11.839,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.839,"w":22.356000000000012,"clr":-1,"A":"left","R":[{"T":"Enter%20limit%20on%20housing%20expenses%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":11.839,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.474,"y":11.839,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"29b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":12.589,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":13.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.402,"w":31.265000000000008,"clr":-1,"A":"left","R":[{"T":"Number%20of%20days%20in%20your%20qualifying%20period%20that%20fall%20within%20your%202013%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":14.089,"w":10.019000000000004,"clr":-1,"A":"left","R":[{"T":"year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.567,"y":14.089,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":14.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.742,"y":14.089,"w":2.519,"clr":-1,"A":"left","R":[{"T":"days%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":44.28000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20%2442.78%20by%20the%20number%20of%20days%20on%20line%2031.%20If%20365%20is%20entered%20on%20line%2031%2C%20enter%20%2415%2C616.00%20here","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":79.946,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":15.652000000000001,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.652000000000001,"w":42.61899999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2032%20from%20line%2030.%20If%20the%20result%20is%20zero%20or%20less%2C%20do%20not%20complete%20the%20rest%20of%20this%20part%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":16.339,"w":6.2780000000000005,"clr":-1,"A":"left","R":[{"T":"any%20of%20Part%20IX%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.441,"y":16.339,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":16.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":23.394000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20employer-provided%20amounts%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":17.089,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":17.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.902,"w":42.52999999999998,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2034%20by%20line%2027.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20three%20places)%2C%20but%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":18.589,"w":12.728000000000005,"clr":-1,"A":"left","R":[{"T":"not%20enter%20more%20than%20%E2%80%9C1.000%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.691,"y":18.589,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":18.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.088,"y":18.535,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":94.576,"y":18.51,"w":0.406,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,16,1,0]}]},{"oc":"#221f1f","x":6.692,"y":19.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":20.099,"w":19.283,"clr":-1,"A":"left","R":[{"T":"amount%20on%20line%2034.%20Also%2C%20complete%20Part%20VIII%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.005,"y":20.099,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":".................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.509,"y":20.006,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.946,"y":20.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":21.466,"w":27.12399999999999,"clr":-1,"A":"left","R":[{"T":"income%20exclusion%2C%20complete%20Parts%20VII%20and%20VIII%20before%20Part%20IX.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.384,"y":22.696,"w":3.758,"clr":1,"A":"left","R":[{"T":"Part%20VII%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":22.639,"w":27.89800000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Foreign%20Earned%20Income%20Exclusion%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":23.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.839,"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":42.719,"y":23.839,"w":23.331000000000007,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":23.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":24.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.589,"w":26.138,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20completed%20Part%20VI%2C%20enter%20the%20number%20from%20line%2031.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.402,"w":30.00700000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20others%2C%20enter%20the%20number%20of%20days%20in%20your%20qualifying%20period%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":26.089,"w":27.52200000000001,"clr":-1,"A":"left","R":[{"T":"fall%20within%20your%202013%20tax%20year%20(see%20the%20instructions%20for%20line%2031).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.156,"y":25.607,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17,0,0]}]},{"oc":"#221f1f","x":61.384,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.742,"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":"39%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.091,"y":26.839,"w":43.236999999999966,"clr":-1,"A":"left","R":[{"T":"If%20line%2038%20and%20the%20number%20of%20days%20in%20your%202013%20tax%20year%20(usually%20365)%20are%20the%20same%2C%20enter%20%E2%80%9C1.000.%E2%80%9D%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.652,"w":42.49299999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Otherwise%2C%20divide%20line%2038%20by%20the%20number%20of%20days%20in%20your%202013%20tax%20year%20and%20enter%20the%20result%20%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":28.339,"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":76.719,"y":27.857,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17,0,0]}]},{"oc":"#221f1f","x":79.946,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.088,"y":27.535,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":94.576,"y":27.51,"w":0.406,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,16,1,0]}]},{"oc":"#221f1f","x":6.692,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":11.560000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2037%20by%20line%2039%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":29.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.839,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2036%20from%20line%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":29.839,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%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":"42%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.512,"y":30.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.946,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":3,"TS":[0,12,0,0]}]},{"x":6.406,"y":31.695999999999998,"w":4.053,"clr":1,"A":"left","R":[{"T":"Part%20VIII%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":31.639000000000003,"w":41.56699999999998,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Housing%20Exclusion%2C%20Foreign%20Earned%20Income%20Exclusion%2C%20or%20Both%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.839,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2036%20and%2042%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":32.839,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":33.652,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.339,"w":29.472000000000012,"clr":-1,"A":"left","R":[{"T":"to%20the%20excluded%20income.%20See%20instructions%20and%20attach%20computation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.5,"y":34.339,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":34.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.214,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":35.901,"w":42.31399999999998,"clr":-1,"A":"left","R":[{"T":"Next%20to%20the%20amount%20enter%20%E2%80%9CForm%202555.%E2%80%9D%20On%20Form%201040%2C%20subtract%20this%20amount%20from%20your%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":36.588,"w":20.840000000000007,"clr":-1,"A":"left","R":[{"T":"to%20arrive%20at%20total%20income%20on%20Form%201040%2C%20line%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.128,"y":36.588,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":3,"TS":[0,12,0,0]}]},{"x":6.606,"y":37.696,"w":3.5000000000000004,"clr":1,"A":"left","R":[{"T":"Part%20IX%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":37.384,"w":20.67100000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Housing%20Deduction","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":38.839,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2036%20from%20line%2033%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":38.839,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.589,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2043%20from%20line%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":39.589,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":40.339,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.902,"w":42.45099999999998,"clr":-1,"A":"left","R":[{"T":"because%20of%20the%202012%20limit%2C%20use%20the%20housing%20deduction%20carryover%20worksheet%20in%20the%20instructions%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":42.589,"w":27.877000000000006,"clr":-1,"A":"left","R":[{"T":"figure%20the%20amount%20to%20enter%20on%20line%2049.%20Otherwise%2C%20go%20to%20line%2050.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":43.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.402,"w":41.04399999999999,"clr":-1,"A":"left","R":[{"T":"Housing%20deduction%20carryover%20from%202012%20(from%20housing%20deduction%20carryover%20worksheet%20in%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.089,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.374,"y":44.089,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":44.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":44.964,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":45.652,"w":41.75799999999998,"clr":-1,"A":"left","R":[{"T":"line%2036.%20Next%20to%20the%20amount%20on%20Form%201040%2C%20enter%20%E2%80%9CForm%202555.%E2%80%9D%20Add%20it%20to%20the%20total%20adjustments%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":46.327,"w":9.039000000000003,"clr":-1,"A":"left","R":[{"T":"reported%20on%20that%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.508,"y":46.389,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"%20........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.509,"y":46.295,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.946,"y":46.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.008,"y":47.071,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":47.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.451,"y":47.071,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":87.872,"y":23.8,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2497%2C600","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":96.578,"y":23.8,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.964,"w":40.968999999999966,"clr":-1,"A":"left","R":[{"T":"Housing%20deduction.%20Add%20lines%2048%20and%2049.%20Enter%20the%20total%20here%20and%20on%20Form%201040%20to%20the%20left%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.214,"w":42.69099999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20If%20line%2047%20is%20more%20than%20line%2048%20and%20you%20could%20not%20deduct%20all%20of%20your%202012%20housing%20deduction%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.339,"w":16.563000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2046%20or%20line%2047%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.262,"y":37.384,"w":26.95600000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20(a)%20line%2033%20is%20more%20than%20line%2036%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":38.009,"w":14.006000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20line%2027%20is%20more%20than%20line%2043.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.214,"w":41.409999999999975,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2044%20from%20line%2043.%20Enter%20the%20result%20here%20and%20in%20parentheses%20on%20Form%201040%2C%20line%2021.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.651,"w":43.50799999999999,"clr":-1,"A":"left","R":[{"T":"Deductions%20allowed%20in%20figuring%20your%20adjusted%20gross%20income%20(Form%201040%2C%20line%2037)%20that%20are%20allocable%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.527,"w":42.57399999999998,"clr":-1,"A":"left","R":[{"T":"Foreign%20earned%20income%20exclusion.%20Enter%20the%20smaller%20of%20line%2040%20or%20line%2041.%20Also%2C%20complete%20Part%20VIII","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.779,"w":40.68799999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20The%20housing%20deduction%20is%20figured%20in%20Part%20IX.%20If%20you%20choose%20to%20claim%20the%20foreign%20earned%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.401,"w":41.46499999999996,"clr":-1,"A":"left","R":[{"T":"Housing%20exclusion.%20%20Multiply%20line%2033%20by%20line%2035.%20Enter%20the%20result%20but%20do%20not%20enter%20more%20than%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.589,"w":17.119000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2028%20or%20line%2029b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.95,"y":6.589,"w":10.171000000000003,"clr":-1,"A":"left","R":[{"T":"Yes.%20Complete%20Part%20VI.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.053,"y":7.339,"w":8.171000000000001,"clr":-1,"A":"left","R":[{"T":"No.%20Go%20to%20Part%20VII.","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1839,"AM":0,"x":16.523,"y":2.066,"w":51.771,"h":0.906,"TU":"Your name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1840,"AM":0,"x":70.488,"y":2.045,"w":19.642,"h":0.911,"TU":"Your social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":1841,"AM":1024,"x":83.098,"y":5.166,"w":12.024,"h":0.833,"TU":"Line 27. Enter the amount from line 26. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":1844,"AM":0,"x":83.101,"y":10.399,"w":12.024,"h":0.838,"TU":"Qualified housing expenses for the tax year (see intstructions). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOCN","EN":0},"TI":1845,"AM":0,"x":58.2,"y":11.189,"w":20.231,"h":0.833,"TU":"Line 29a. Enter location where housing expenses incurred (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HEXPLMT","EN":0},"TI":1846,"AM":0,"x":83.264,"y":11.936,"w":11.896,"h":0.833,"TU":"Line 29b. Enter the limit on housing expenses (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER","EN":0},"TI":1847,"AM":1024,"x":83.319,"y":12.718,"w":11.96,"h":0.833,"TU":"Line 30. Enter the smaller of line 28 or line 29b. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":1848,"AM":1024,"x":83.194,"y":46.427,"w":11.983,"h":0.833,"TU":"Line 50. Housing deduction. Add lines 48 and 49. Enter the total here and on Form 1040 to the left of line 36. Next to the amount on Form 1040, enter, \"Form 2555\". Add it to the total adjustments reported on that line. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":1849,"AM":0,"x":64.95,"y":14.127,"w":9.581,"h":0.869,"TU":"Line 31. Number of days in your qualifying period that fall within your 2013 tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":1850,"AM":1024,"x":83.279,"y":14.909,"w":11.768,"h":0.833,"TU":"Line 32. Multiply $42.78 by the number of days on line 31. If 365 is entered on line 31, enter $15,616.00 here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":1851,"AM":1024,"x":83.034,"y":16.399,"w":12.024,"h":0.885,"TU":"Line 33. Subtract line 32 from line 30. If the result is zero or less, do not complete the rest of this part or any of Part IX. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":1852,"AM":0,"x":64.96,"y":17.211,"w":9.581,"h":0.833,"TU":"Line 34. Enter employer-provided amounts (see instructions). Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":1853,"AM":1024,"x":92.041,"y":18.671,"w":7.319,"h":0.833,"TU":"Line 35. Divide line 34 by line 27. Enter the result as a decimal (rounded to at least three places), but do not enter more than \"1.000\"."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":1854,"AM":1024,"x":83.098,"y":20.166,"w":12.024,"h":0.833,"TU":"Line 36. Housing exclusion. Multiply line 33 by line 35. Enter the result but do not enter more than the amount on line 34. Also, complete Part VIII. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":1855,"AM":0,"x":64.681,"y":25.398,"w":9.581,"h":0.855,"TU":"Line 38. Enter the number of days in your qualifying period that fall within our 2013 tax year (see instructions for line 31)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":1856,"AM":0,"x":91.615,"y":27.686,"w":7.704,"h":0.833,"TU":"Line 39. If line 38 and the number of days in your 2013 tax year (usually 365) are the same, enter \"1.000\". Otherwise, divide line 38 by the number of days in your 2013 tax year and enter the result as a decimal (rounded to at least three places).","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":1857,"AM":1024,"x":83.098,"y":29.221,"w":12.024,"h":0.833,"TU":"Line 40. Multiply line 37 by line 39. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":1858,"AM":1024,"x":83.016,"y":30.045,"w":12.189,"h":0.833,"TU":"Line 41. Subtract line 36 from line 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":1859,"AM":1024,"x":83.016,"y":30.788,"w":12.189,"h":0.833,"TU":"Line 42. Foreign earned income exclusion. Enter the smaller of line 40 or line 41. Also, complete Part VIII. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":1860,"AM":1024,"x":83.016,"y":33.038,"w":12.189,"h":0.833,"TU":"Line 43. Add lines 36 and 42. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":1861,"AM":0,"x":83.098,"y":34.416,"w":12.024,"h":0.833,"TU":"Line 44. Deduction allowed in figuring your adjusted gross income (Form 1040, line 37) that are allocable to the excluded income. See instructions and attach computation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":1862,"AM":1024,"x":83.119,"y":36.739,"w":11.983,"h":0.833,"TU":"Line 45. Subtract line 44 from line 43. Enter the result here and in parentheses on Form 1040, line 21. Next to the amount enter \"Form 2555\". On Form 1040, subtract this amount fro your income to arrive at total income on Form 1040, line 22. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":1863,"AM":1024,"x":83.016,"y":39.038,"w":12.189,"h":0.833,"TU":"Line 46. Subtract line 36 from line 33. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":1864,"AM":1024,"x":83.016,"y":39.795,"w":12.189,"h":0.833,"TU":"Line 47. Subtract line 43 from line 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":1865,"AM":1024,"x":83.016,"y":40.51,"w":12.189,"h":0.833,"TU":"Line 48. Enter the smaller of line 46 or line 47. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":1866,"AM":0,"x":83.16,"y":44.171,"w":11.901,"h":0.833,"TU":"Line 49. Housing deduction carryover from 2012 (from housing deduction carryover worksheet in the instructions). Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLAIMY","EN":0},"TI":1842,"AM":0,"x":11.01,"y":6.648,"w":1.669,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLAIMN","EN":0},"TI":1843,"AM":0,"x":10.953,"y":7.348,"w":1.819,"h":0.833,"checked":false}],"id":{"Id":"CLAIMRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F25553T.content.txt b/test/data/fd/form/F25553T.content.txt new file mode 100755 index 00000000..6c674f7d --- /dev/null +++ b/test/data/fd/form/F25553T.content.txt @@ -0,0 +1,160 @@ +Form 2555 (2013) +Page +3 +Part V +All Taxpayers +27 +Enter the amount from line 26 +...................... +27 +Are you claiming the housing exclusion or housing deduction? +Part VI +Taxpayers Claiming the Housing Exclusion and/or Deduction +28 +Qualified housing expenses for the tax year (see instructions) +............ +28 +29a +Enter location where housing expenses incurred (see instructions) +a +b +Enter limit on housing expenses (see instructions) +............... +29b +30 +................... +30 +31 + +Number of days in your qualifying period that fall within your 2013 tax +year (see instructions) +................ +31 +days +32 +Multiply $42.78 by the number of days on line 31. If 365 is entered on line 31, enter $15,616.00 here +32 +33 + +Subtract line 32 from line 30. If the result is zero or less, do not complete the rest of this part or +any of Part IX +........................... +33 +34 +Enter employer-provided amounts (see instructions) +...... +34 +35 + +Divide line 34 by line 27. Enter the result as a decimal (rounded to at least three places), but do +not enter more than “1.000” +....................... +35 +× +. +36 + +amount on line 34. Also, complete Part VIII +................. +a +36 +income exclusion, complete Parts VII and VIII before Part IX. +Part VII +Taxpayers Claiming the Foreign Earned Income Exclusion +37 +Maximum foreign earned income exclusion +..................... +37 +38 +• If you completed Part VI, enter the number from line 31. +• All others, enter the number of days in your qualifying period that +fall within your 2013 tax year (see the instructions for line 31). +} +38 +days +39 +• +If line 38 and the number of days in your 2013 tax year (usually 365) are the same, enter “1.000.” +• Otherwise, divide line 38 by the number of days in your 2013 tax year and enter the result as +a decimal (rounded to at least three places). +} +39 +× +. +40 +Multiply line 37 by line 39 +....................... +40 +41 +Subtract line 36 from line 27 +...................... +41 +42 + +a +42 +Part VIII +Taxpayers Claiming the Housing Exclusion, Foreign Earned Income Exclusion, or Both +43 +Add lines 36 and 42 +......................... +43 +44 + +to the excluded income. See instructions and attach computation +.......... +44 +45 + + +Next to the amount enter “Form 2555.” On Form 1040, subtract this amount from your income +to arrive at total income on Form 1040, line 22 +................ +45 +Part IX +Taxpayers Claiming the Housing Deduction +46 +Subtract line 36 from line 33 +...................... +46 +47 +Subtract line 43 from line 27 +...................... +47 +48 +................... +48 +because of the 2012 limit, use the housing deduction carryover worksheet in the instructions to +figure the amount to enter on line 49. Otherwise, go to line 50. +49 + +Housing deduction carryover from 2012 (from housing deduction carryover worksheet in the +instructions) +............................ +49 +50 + + +line 36. Next to the amount on Form 1040, enter “Form 2555.” Add it to the total adjustments +reported on that line + ........................ +a +50 +Form +2555 +(2013) +$97,600 00 +Housing deduction. Add lines 48 and 49. Enter the total here and on Form 1040 to the left of +Note: If line 47 is more than line 48 and you could not deduct all of your 2012 housing deduction +Enter the smaller of line 46 or line 47 +Complete this part only if (a) line 33 is more than line 36 and +(b) line 27 is more than line 43. +Subtract line 44 from line 43. Enter the result here and in parentheses on Form 1040, line 21. +Deductions allowed in figuring your adjusted gross income (Form 1040, line 37) that are allocable +Foreign earned income exclusion. Enter the smaller of line 40 or line 41. Also, complete Part VIII +Note: The housing deduction is figured in Part IX. If you choose to claim the foreign earned +Housing exclusion. Multiply line 33 by line 35. Enter the result but do not enter more than the +Enter the smaller of line 28 or line 29b +Yes. Complete Part VI. +No. Go to Part VII. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F25553T.fields.json b/test/data/fd/form/F25553T.fields.json new file mode 100755 index 00000000..9a415076 --- /dev/null +++ b/test/data/fd/form/F25553T.fields.json @@ -0,0 +1 @@ +[{"id":"CLAIMRB","type":"radio","calc":false,"value":"CLAIMY"},{"id":"CLAIMRB","type":"radio","calc":false,"value":"CLAIMN"},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"LOCN","type":"alpha","calc":false,"value":""},{"id":"HEXPLMT","type":"number","calc":false,"value":""},{"id":"SMALLER","type":"number","calc":true,"value":""},{"id":"L48","type":"number","calc":true,"value":""},{"id":"L29","type":"percent","calc":false,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L33","type":"percent","calc":true,"value":""},{"id":"L34","type":"alpha","calc":true,"value":""},{"id":"L36","type":"percent","calc":false,"value":""},{"id":"L37","type":"mask","calc":false,"value":""},{"id":"L38","type":"number","calc":true,"value":""},{"id":"L39","type":"number","calc":true,"value":""},{"id":"L40","type":"number","calc":true,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"L42","type":"number","calc":false,"value":""},{"id":"L43","type":"number","calc":true,"value":""},{"id":"L44","type":"number","calc":true,"value":""},{"id":"L45","type":"number","calc":true,"value":""},{"id":"L46","type":"number","calc":true,"value":""},{"id":"L47","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F25553T.json b/test/data/fd/form/F25553T.json new file mode 100755 index 00000000..1f5377d7 --- /dev/null +++ b/test/data/fd/form/F25553T.json @@ -0,0 +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":3,"w":1.5,"l":9.986},{"oc":"#221f1f","x":16.045,"y":3,"w":1.5,"l":82.999},{"oc":"#221f1f","x":6.145,"y":4.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":6,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":8.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":9.75,"w":0.75,"l":92.899},{"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},{"dsh":1,"oc":"#221f1f","x":58.12,"y":12,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.157,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":15,"w":0.75,"l":14.936},{"oc":"#221f1f","x":79.157,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":15.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":18,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":17.25,"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":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":94.007,"y":19.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.157,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":22.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":24,"w":0.75,"l":92.899},{"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":60.595,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":26.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":79.157,"y":24.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":28.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":94.007,"y":28.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.157,"y":30,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30.75,"w":0.75,"l":12.461},{"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":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":6.145,"y":31.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":33,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":35.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":35.25,"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":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":37.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":39,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":39.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":39.749,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":39.749,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":40.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":45,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":45,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":45,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":47.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":47.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":47.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":82.913,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":4.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"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":95.288,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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":60.638,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":60.638,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":33.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":33.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":35.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":35.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":38.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":38.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":0.788},{"oc":"#221f1f","x":82.913,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":41.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.2,"y":41.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":41.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.913,"y":44.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":44.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":44.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":44.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":44.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":44.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":46.484,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.375,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":8.625,"w":6.531,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":11.25,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":13.5,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":17.25,"w":3.712,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":22.875,"w":6.875,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":24.75,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.188,"y":31.875,"w":7.425,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":37.875,"w":6.875,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":41.25,"w":3.712,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202555%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":"3%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.548,"y":3.196,"w":3.168,"clr":1,"A":"left","R":[{"T":"Part%20V%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#181616","x":14.531,"y":3.227,"w":6.781000000000001,"clr":-1,"A":"left","R":[{"T":"All%20Taxpayers%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.089,"w":13.524000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2026%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":5.089,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":5.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.839,"w":28.025000000000013,"clr":-1,"A":"left","R":[{"T":"Are%20you%20claiming%20the%20housing%20exclusion%20or%20housing%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"x":6.466,"y":8.446,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20VI%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":8.389,"w":29.28500000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Housing%20Exclusion%20and%2For%20Deduction%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":10.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.339,"w":27.429000000000002,"clr":-1,"A":"left","R":[{"T":"Qualified%20housing%20expenses%20for%20the%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":10.339,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":10.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":11.058,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"29a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.027,"w":29.595000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20location%20where%20housing%20expenses%20incurred%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.667,"y":10.933,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.413,"y":11.839,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.839,"w":22.356000000000012,"clr":-1,"A":"left","R":[{"T":"Enter%20limit%20on%20housing%20expenses%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":11.839,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.474,"y":11.839,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"29b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":12.589,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":13.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.402,"w":31.265000000000008,"clr":-1,"A":"left","R":[{"T":"Number%20of%20days%20in%20your%20qualifying%20period%20that%20fall%20within%20your%202013%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":14.089,"w":10.019000000000004,"clr":-1,"A":"left","R":[{"T":"year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.567,"y":14.089,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":14.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.742,"y":14.089,"w":2.519,"clr":-1,"A":"left","R":[{"T":"days%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":44.28000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20%2442.78%20by%20the%20number%20of%20days%20on%20line%2031.%20If%20365%20is%20entered%20on%20line%2031%2C%20enter%20%2415%2C616.00%20here","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":79.946,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":15.652000000000001,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.652000000000001,"w":42.61899999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2032%20from%20line%2030.%20If%20the%20result%20is%20zero%20or%20less%2C%20do%20not%20complete%20the%20rest%20of%20this%20part%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":16.339,"w":6.2780000000000005,"clr":-1,"A":"left","R":[{"T":"any%20of%20Part%20IX%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.441,"y":16.339,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":16.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":23.394000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20employer-provided%20amounts%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":17.089,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":17.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.902,"w":42.52999999999998,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2034%20by%20line%2027.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20three%20places)%2C%20but%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":18.589,"w":12.728000000000005,"clr":-1,"A":"left","R":[{"T":"not%20enter%20more%20than%20%E2%80%9C1.000%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.691,"y":18.589,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":18.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.088,"y":18.535,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":94.576,"y":18.51,"w":0.406,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,16,1,0]}]},{"oc":"#221f1f","x":6.692,"y":19.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":20.099,"w":19.283,"clr":-1,"A":"left","R":[{"T":"amount%20on%20line%2034.%20Also%2C%20complete%20Part%20VIII%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.005,"y":20.099,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":".................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.509,"y":20.006,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.946,"y":20.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":21.466,"w":27.12399999999999,"clr":-1,"A":"left","R":[{"T":"income%20exclusion%2C%20complete%20Parts%20VII%20and%20VIII%20before%20Part%20IX.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.384,"y":22.696,"w":3.758,"clr":1,"A":"left","R":[{"T":"Part%20VII%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":22.639,"w":27.89800000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Foreign%20Earned%20Income%20Exclusion%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":23.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.839,"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":42.719,"y":23.839,"w":23.331000000000007,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":23.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":24.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.589,"w":26.138,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20completed%20Part%20VI%2C%20enter%20the%20number%20from%20line%2031.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.402,"w":30.00700000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20others%2C%20enter%20the%20number%20of%20days%20in%20your%20qualifying%20period%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":26.089,"w":27.52200000000001,"clr":-1,"A":"left","R":[{"T":"fall%20within%20your%202013%20tax%20year%20(see%20the%20instructions%20for%20line%2031).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.156,"y":25.607,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17,0,0]}]},{"oc":"#221f1f","x":61.384,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.742,"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":"39%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.091,"y":26.839,"w":43.236999999999966,"clr":-1,"A":"left","R":[{"T":"If%20line%2038%20and%20the%20number%20of%20days%20in%20your%202013%20tax%20year%20(usually%20365)%20are%20the%20same%2C%20enter%20%E2%80%9C1.000.%E2%80%9D%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.652,"w":42.49299999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Otherwise%2C%20divide%20line%2038%20by%20the%20number%20of%20days%20in%20your%202013%20tax%20year%20and%20enter%20the%20result%20%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":28.339,"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":76.719,"y":27.857,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17,0,0]}]},{"oc":"#221f1f","x":79.946,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.088,"y":27.535,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":94.576,"y":27.51,"w":0.406,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,16,1,0]}]},{"oc":"#221f1f","x":6.692,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":11.560000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2037%20by%20line%2039%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":29.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.839,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2036%20from%20line%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":29.839,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%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":"42%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.512,"y":30.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.946,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":3,"TS":[0,12,0,0]}]},{"x":6.406,"y":31.695999999999998,"w":4.053,"clr":1,"A":"left","R":[{"T":"Part%20VIII%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":31.639000000000003,"w":41.56699999999998,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Housing%20Exclusion%2C%20Foreign%20Earned%20Income%20Exclusion%2C%20or%20Both%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.839,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2036%20and%2042%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":32.839,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":33.652,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.339,"w":29.472000000000012,"clr":-1,"A":"left","R":[{"T":"to%20the%20excluded%20income.%20See%20instructions%20and%20attach%20computation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.5,"y":34.339,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":34.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.214,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":35.901,"w":42.31399999999998,"clr":-1,"A":"left","R":[{"T":"Next%20to%20the%20amount%20enter%20%E2%80%9CForm%202555.%E2%80%9D%20On%20Form%201040%2C%20subtract%20this%20amount%20from%20your%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":36.588,"w":20.840000000000007,"clr":-1,"A":"left","R":[{"T":"to%20arrive%20at%20total%20income%20on%20Form%201040%2C%20line%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.128,"y":36.588,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":3,"TS":[0,12,0,0]}]},{"x":6.606,"y":37.696,"w":3.5000000000000004,"clr":1,"A":"left","R":[{"T":"Part%20IX%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":37.384,"w":20.67100000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20Claiming%20the%20Housing%20Deduction","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":38.839,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2036%20from%20line%2033%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":38.839,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.589,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2043%20from%20line%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":39.589,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":40.339,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.902,"w":42.45099999999998,"clr":-1,"A":"left","R":[{"T":"because%20of%20the%202012%20limit%2C%20use%20the%20housing%20deduction%20carryover%20worksheet%20in%20the%20instructions%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":42.589,"w":27.877000000000006,"clr":-1,"A":"left","R":[{"T":"figure%20the%20amount%20to%20enter%20on%20line%2049.%20Otherwise%2C%20go%20to%20line%2050.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":43.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.402,"w":41.04399999999999,"clr":-1,"A":"left","R":[{"T":"Housing%20deduction%20carryover%20from%202012%20(from%20housing%20deduction%20carryover%20worksheet%20in%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.089,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.374,"y":44.089,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":44.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":44.964,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":45.652,"w":41.75799999999998,"clr":-1,"A":"left","R":[{"T":"line%2036.%20Next%20to%20the%20amount%20on%20Form%201040%2C%20enter%20%E2%80%9CForm%202555.%E2%80%9D%20Add%20it%20to%20the%20total%20adjustments%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":46.327,"w":9.039000000000003,"clr":-1,"A":"left","R":[{"T":"reported%20on%20that%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.508,"y":46.389,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"%20........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.509,"y":46.295,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.946,"y":46.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.008,"y":47.071,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":47.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2555%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.451,"y":47.071,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":87.872,"y":23.8,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2497%2C600","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":96.578,"y":23.8,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.964,"w":40.968999999999966,"clr":-1,"A":"left","R":[{"T":"Housing%20deduction.%20Add%20lines%2048%20and%2049.%20Enter%20the%20total%20here%20and%20on%20Form%201040%20to%20the%20left%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.214,"w":42.69099999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20If%20line%2047%20is%20more%20than%20line%2048%20and%20you%20could%20not%20deduct%20all%20of%20your%202012%20housing%20deduction%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.339,"w":16.563000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2046%20or%20line%2047%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.262,"y":37.384,"w":26.95600000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20(a)%20line%2033%20is%20more%20than%20line%2036%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":38.009,"w":14.006000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20line%2027%20is%20more%20than%20line%2043.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.214,"w":41.409999999999975,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2044%20from%20line%2043.%20Enter%20the%20result%20here%20and%20in%20parentheses%20on%20Form%201040%2C%20line%2021.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.651,"w":43.50799999999999,"clr":-1,"A":"left","R":[{"T":"Deductions%20allowed%20in%20figuring%20your%20adjusted%20gross%20income%20(Form%201040%2C%20line%2037)%20that%20are%20allocable%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.527,"w":42.57399999999998,"clr":-1,"A":"left","R":[{"T":"Foreign%20earned%20income%20exclusion.%20Enter%20the%20smaller%20of%20line%2040%20or%20line%2041.%20Also%2C%20complete%20Part%20VIII","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.779,"w":40.68799999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20The%20housing%20deduction%20is%20figured%20in%20Part%20IX.%20If%20you%20choose%20to%20claim%20the%20foreign%20earned%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.401,"w":41.46499999999996,"clr":-1,"A":"left","R":[{"T":"Housing%20exclusion.%20%20Multiply%20line%2033%20by%20line%2035.%20Enter%20the%20result%20but%20do%20not%20enter%20more%20than%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.589,"w":17.119000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2028%20or%20line%2029b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.95,"y":6.589,"w":10.171000000000003,"clr":-1,"A":"left","R":[{"T":"Yes.%20Complete%20Part%20VI.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.053,"y":7.339,"w":8.171000000000001,"clr":-1,"A":"left","R":[{"T":"No.%20Go%20to%20Part%20VII.","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1867,"AM":0,"x":16.523,"y":2.066,"w":51.771,"h":0.906,"TU":"Your name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1868,"AM":0,"x":70.488,"y":2.045,"w":19.642,"h":0.911,"TU":"Your social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":1869,"AM":1024,"x":83.098,"y":5.166,"w":12.024,"h":0.833,"TU":"Line 27. Enter the amount from line 26. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":1872,"AM":0,"x":83.101,"y":10.399,"w":12.024,"h":0.838,"TU":"Qualified housing expenses for the tax year (see intstructions). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOCN","EN":0},"TI":1873,"AM":0,"x":58.2,"y":11.189,"w":20.231,"h":0.833,"TU":"Line 29a. Enter location where housing expenses incurred (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HEXPLMT","EN":0},"TI":1874,"AM":0,"x":83.264,"y":11.936,"w":11.896,"h":0.833,"TU":"Line 29b. Enter the limit on housing expenses (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER","EN":0},"TI":1875,"AM":1024,"x":83.319,"y":12.718,"w":11.96,"h":0.833,"TU":"Line 30. Enter the smaller of line 28 or line 29b. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":1876,"AM":1024,"x":83.194,"y":46.427,"w":11.983,"h":0.833,"TU":"Line 50. Housing deduction. Add lines 48 and 49. Enter the total here and on Form 1040 to the left of line 36. Next to the amount on Form 1040, enter, \"Form 2555\". Add it to the total adjustments reported on that line. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":1877,"AM":0,"x":64.95,"y":14.127,"w":9.581,"h":0.869,"TU":"Line 31. Number of days in your qualifying period that fall within your 2013 tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":1878,"AM":1024,"x":83.279,"y":14.909,"w":11.768,"h":0.833,"TU":"Line 32. Multiply $42.78 by the number of days on line 31. If 365 is entered on line 31, enter $15,616.00 here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":1879,"AM":1024,"x":83.034,"y":16.399,"w":12.024,"h":0.885,"TU":"Line 33. Subtract line 32 from line 30. If the result is zero or less, do not complete the rest of this part or any of Part IX. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":1880,"AM":0,"x":64.96,"y":17.211,"w":9.581,"h":0.833,"TU":"Line 34. Enter employer-provided amounts (see instructions). Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":1881,"AM":1024,"x":92.041,"y":18.671,"w":7.319,"h":0.833,"TU":"Line 35. Divide line 34 by line 27. Enter the result as a decimal (rounded to at least three places), but do not enter more than \"1.000\"."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":1882,"AM":1024,"x":83.098,"y":20.166,"w":12.024,"h":0.833,"TU":"Line 36. Housing exclusion. Multiply line 33 by line 35. Enter the result but do not enter more than the amount on line 34. Also, complete Part VIII. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":1883,"AM":0,"x":64.681,"y":25.398,"w":9.581,"h":0.855,"TU":"Line 38. Enter the number of days in your qualifying period that fall within our 2013 tax year (see instructions for line 31)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":1884,"AM":0,"x":91.615,"y":27.686,"w":7.704,"h":0.833,"TU":"Line 39. If line 38 and the number of days in your 2013 tax year (usually 365) are the same, enter \"1.000\". Otherwise, divide line 38 by the number of days in your 2013 tax year and enter the result as a decimal (rounded to at least three places).","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":1885,"AM":1024,"x":83.098,"y":29.221,"w":12.024,"h":0.833,"TU":"Line 40. Multiply line 37 by line 39. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":1886,"AM":1024,"x":83.016,"y":30.045,"w":12.189,"h":0.833,"TU":"Line 41. Subtract line 36 from line 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":1887,"AM":1024,"x":83.016,"y":30.788,"w":12.189,"h":0.833,"TU":"Line 42. Foreign earned income exclusion. Enter the smaller of line 40 or line 41. Also, complete Part VIII. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":1888,"AM":1024,"x":83.016,"y":33.038,"w":12.189,"h":0.833,"TU":"Line 43. Add lines 36 and 42. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":1889,"AM":0,"x":83.098,"y":34.416,"w":12.024,"h":0.833,"TU":"Line 44. Deduction allowed in figuring your adjusted gross income (Form 1040, line 37) that are allocable to the excluded income. See instructions and attach computation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":1890,"AM":1024,"x":83.119,"y":36.739,"w":11.983,"h":0.833,"TU":"Line 45. Subtract line 44 from line 43. Enter the result here and in parentheses on Form 1040, line 21. Next to the amount enter \"Form 2555\". On Form 1040, subtract this amount fro your income to arrive at total income on Form 1040, line 22. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":1891,"AM":1024,"x":83.016,"y":39.038,"w":12.189,"h":0.833,"TU":"Line 46. Subtract line 36 from line 33. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":1892,"AM":1024,"x":83.016,"y":39.795,"w":12.189,"h":0.833,"TU":"Line 47. Subtract line 43 from line 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":1893,"AM":1024,"x":83.016,"y":40.51,"w":12.189,"h":0.833,"TU":"Line 48. Enter the smaller of line 46 or line 47. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":1894,"AM":0,"x":83.16,"y":44.171,"w":11.901,"h":0.833,"TU":"Line 49. Housing deduction carryover from 2012 (from housing deduction carryover worksheet in the instructions). Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLAIMY","EN":0},"TI":1870,"AM":0,"x":11.01,"y":6.648,"w":1.669,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLAIMN","EN":0},"TI":1871,"AM":0,"x":10.953,"y":7.348,"w":1.819,"h":0.833,"checked":false}],"id":{"Id":"CLAIMRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F2555EZ.content.txt b/test/data/fd/form/F2555EZ.content.txt new file mode 100755 index 00000000..6cfb3acf --- /dev/null +++ b/test/data/fd/form/F2555EZ.content.txt @@ -0,0 +1,220 @@ +State +Country +Form +2555-EZ +Department of the Treasury +Internal Revenue Service + (99) +Foreign Earned Income Exclusion +a + +Attach to Form 1040. + + +a +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +34A +Name shown on Form 1040 +Your social security number +You May Use +This Form +If You: +• Are a U.S. citizen or a resident alien. +• Earned wages/salaries in a foreign country. +• Had total foreign earned income +of $97,600 or less. +• Are filing a calendar year return that covers +a 12-month period. +And You: +• Do not have self-employment income. +• Do not have business/moving expenses. +• Do not claim the foreign housing +exclusion or deduction. +Part I +Tests To See If You Can Take the Foreign Earned Income Exclusion +1 Bona Fide Residence Test +a +Were you a bona fide resident of a foreign country or countries for a period that includes an entire tax year +(see instructions)? +.............................. +Yes +No +• If you answered “Yes,” you meet this test. Fill in line 1b and then go to line 3. +b +Enter the date your bona fide residence began +a +, and ended (see instructions) +a + +. +2 Physical Presence Test +a +Were you physically present in a foreign country or countries for at least 330 full days during— +{ + +any other period of 12 months in a row starting or ending in 2013? +} +............. +Yes +No +• If you answered “Yes,” you meet this test. Fill in line 2b and then go to line 3. +Bona Fide Residence Test above. +b +The physical presence test is based on the 12-month period from +a +through +a +. +3 Tax Home Test. +Was your tax home in a foreign country or countries throughout your period of bona fide +residence or physical presence, whichever applies? +................... +Yes +No +• If you answered “Yes,” you can take the exclusion. Complete Part II below and then go to page 2. +Part II +General Information +4 + Your foreign address (including country) +5 + Your occupation +6 + Employer’s name +7 + +Employer’s U.S. address (including ZIP code) + +8 + Employer’s foreign address +9 +Employer is (check any that apply): +a +A U.S. business +................................... +b +A foreign business +.................................. +c +Other (specify) +a +10 +a +If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form. +a +b +If you did not previously file Form 2555 or 2555-EZ, check here +a +and go to line 11a now. +c +Have you ever revoked the foreign earned income exclusion? +............... +Yes +No +d +If you answered “Yes,” enter the tax year for which the revocation was effective. +a +11a +List your tax home(s) during 2013 and date(s) established. +a +b +Of what country are you a citizen/national? +a +For Paperwork Reduction Act Notice, see the Form 1040 instructions. +Cat. No. 13272W +Form +2555-EZ + (2013) +City +Country Code +Address +Address +Addr +Addr2 +City +Prov +Postal +Country +Addr +City +ZIP + Information about Form 2555-EZ and its separate instructions is at www.irs.gov/form2555ez +• If you answered “No,” you do not meet this test. Go to line 2 to see if you meet the Physical Presence Test. +2013 or +• If you answered “No,” you do not meet this test. You cannot take the exclusion unless you meet the +• If you answered “No,” you cannot take the exclusion. Do not file this form. +----------------Page (0) Break---------------- +Days Present in the United States +Figure Your Foreign Earned Income Exclusion +Form 2555-EZ (2013) +Page +2 +Part III +Complete this part if you were in the + +United States or its possessions during 2013. +12 +(a) +Date arrived in U.S. +(b) +Date left U.S. +(c) +Number of days + +in U.S. on business +(d) +Income earned in U.S. + +on business (attach computation) + + + + + +Part IV +13 +Maximum foreign earned income exclusion +.................. +13 +14 +Enter the number of days in your qualifying period that fall within 2013 . +14 +days +15 +Did you enter 365 on line 14? +a decimal (rounded to at least three places). +} +............. +15 +× +. +16 +Multiply line 13 by line 15 +........................ +16 +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 +........... +17 +18 + + +from your income to arrive at total income on Form 1040, line 22 . +.......... +a +18 +Form +2555-EZ + (2013) +$97,600 +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 +No. Divide line 14 by 365 and enter the result as +Yes. Enter “1.000.” +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F2555EZ.fields.json b/test/data/fd/form/F2555EZ.fields.json new file mode 100755 index 00000000..c7c5b0fc --- /dev/null +++ b/test/data/fd/form/F2555EZ.fields.json @@ -0,0 +1 @@ +[{"id":"A6RB","type":"radio","calc":false,"value":"BX1AYES"},{"id":"A6RB","type":"radio","calc":false,"value":"BX1ANO"},{"id":"A12RB","type":"radio","calc":false,"value":"BX2AYES"},{"id":"A12RB","type":"radio","calc":false,"value":"BX2ANO"},{"id":"A16RB","type":"radio","calc":false,"value":"BX3YES"},{"id":"A16RB","type":"radio","calc":false,"value":"BX3NO"},{"id":"BX9A","type":"box","calc":false,"value":""},{"id":"BX9B","type":"box","calc":false,"value":""},{"id":"BX9C","type":"box","calc":false,"value":""},{"id":"BX10B","type":"box","calc":false,"value":""},{"id":"A50RB","type":"radio","calc":false,"value":"BX10CYES"},{"id":"A50RB","type":"radio","calc":false,"value":"BX10CNO"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1BBEG","type":"date","calc":false,"value":""},{"id":"L1BEND","type":"date","calc":false,"value":""},{"id":"L2BFROM","type":"date","calc":false,"value":""},{"id":"L2BTHRU","type":"date","calc":false,"value":""},{"id":"H29","type":"alpha","calc":false,"value":""},{"id":"L4ADDR1","type":"alpha","calc":false,"value":""},{"id":"TPFCITY","type":"alpha","calc":false,"value":""},{"id":"TPFCNTRY","type":"alpha","calc":false,"value":""},{"id":"POD","type":"alpha","calc":false,"value":""},{"id":"YOCC","type":"alpha","calc":false,"value":""},{"id":"L6NAME1","type":"alpha","calc":false,"value":""},{"id":"L7ADDR1","type":"alpha","calc":false,"value":""},{"id":"L8ADDR1","type":"alpha","calc":false,"value":""},{"id":"L6NAME2","type":"alpha","calc":false,"value":""},{"id":"L8ADDR2","type":"alpha","calc":false,"value":""},{"id":"L7ADDR3","type":"alpha","calc":false,"value":""},{"id":"LCITY","type":"alpha","calc":false,"value":""},{"id":"L7ST","type":"alpha","calc":false,"value":""},{"id":"LPROV","type":"alpha","calc":false,"value":""},{"id":"L7ZIP","type":"zip","calc":false,"value":""},{"id":"LPOST","type":"alpha","calc":false,"value":""},{"id":"LCOUNTRY","type":"alpha","calc":false,"value":""},{"id":"L9C","type":"alpha","calc":false,"value":""},{"id":"L10A","type":"date","calc":false,"value":""},{"id":"L10DTX","type":"alpha","calc":false,"value":""},{"id":"A115_L11A1_1_","type":"alpha","calc":false,"value":""},{"id":"A115_L11A2_1_","type":"date","calc":false,"value":""},{"id":"L11B","type":"alpha","calc":false,"value":""},{"id":"A111RB","type":"radio","calc":false,"value":"BX15YES"},{"id":"A111RB","type":"radio","calc":false,"value":"BX15NO"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L14ONE_ARR1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_4_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_4_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_5_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_5_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_5_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_5_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_6_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_6_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_6_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_6_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_7_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_7_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_7_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_7_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_8_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_8_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_8_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_8_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_9_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_9_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_9_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_9_","type":"number","calc":false,"value":""},{"id":"L14","type":"percent","calc":false,"value":""},{"id":"L15","type":"alpha","calc":true,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2555EZ.json b/test/data/fd/form/F2555EZ.json new file mode 100755 index 00000000..309fbb56 --- /dev/null +++ b/test/data/fd/form/F2555EZ.json @@ -0,0 +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 diff --git a/test/data/fd/form/F2555EZS.content.txt b/test/data/fd/form/F2555EZS.content.txt new file mode 100755 index 00000000..6cfb3acf --- /dev/null +++ b/test/data/fd/form/F2555EZS.content.txt @@ -0,0 +1,220 @@ +State +Country +Form +2555-EZ +Department of the Treasury +Internal Revenue Service + (99) +Foreign Earned Income Exclusion +a + +Attach to Form 1040. + + +a +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +34A +Name shown on Form 1040 +Your social security number +You May Use +This Form +If You: +• Are a U.S. citizen or a resident alien. +• Earned wages/salaries in a foreign country. +• Had total foreign earned income +of $97,600 or less. +• Are filing a calendar year return that covers +a 12-month period. +And You: +• Do not have self-employment income. +• Do not have business/moving expenses. +• Do not claim the foreign housing +exclusion or deduction. +Part I +Tests To See If You Can Take the Foreign Earned Income Exclusion +1 Bona Fide Residence Test +a +Were you a bona fide resident of a foreign country or countries for a period that includes an entire tax year +(see instructions)? +.............................. +Yes +No +• If you answered “Yes,” you meet this test. Fill in line 1b and then go to line 3. +b +Enter the date your bona fide residence began +a +, and ended (see instructions) +a + +. +2 Physical Presence Test +a +Were you physically present in a foreign country or countries for at least 330 full days during— +{ + +any other period of 12 months in a row starting or ending in 2013? +} +............. +Yes +No +• If you answered “Yes,” you meet this test. Fill in line 2b and then go to line 3. +Bona Fide Residence Test above. +b +The physical presence test is based on the 12-month period from +a +through +a +. +3 Tax Home Test. +Was your tax home in a foreign country or countries throughout your period of bona fide +residence or physical presence, whichever applies? +................... +Yes +No +• If you answered “Yes,” you can take the exclusion. Complete Part II below and then go to page 2. +Part II +General Information +4 + Your foreign address (including country) +5 + Your occupation +6 + Employer’s name +7 + +Employer’s U.S. address (including ZIP code) + +8 + Employer’s foreign address +9 +Employer is (check any that apply): +a +A U.S. business +................................... +b +A foreign business +.................................. +c +Other (specify) +a +10 +a +If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form. +a +b +If you did not previously file Form 2555 or 2555-EZ, check here +a +and go to line 11a now. +c +Have you ever revoked the foreign earned income exclusion? +............... +Yes +No +d +If you answered “Yes,” enter the tax year for which the revocation was effective. +a +11a +List your tax home(s) during 2013 and date(s) established. +a +b +Of what country are you a citizen/national? +a +For Paperwork Reduction Act Notice, see the Form 1040 instructions. +Cat. No. 13272W +Form +2555-EZ + (2013) +City +Country Code +Address +Address +Addr +Addr2 +City +Prov +Postal +Country +Addr +City +ZIP + Information about Form 2555-EZ and its separate instructions is at www.irs.gov/form2555ez +• If you answered “No,” you do not meet this test. Go to line 2 to see if you meet the Physical Presence Test. +2013 or +• If you answered “No,” you do not meet this test. You cannot take the exclusion unless you meet the +• If you answered “No,” you cannot take the exclusion. Do not file this form. +----------------Page (0) Break---------------- +Days Present in the United States +Figure Your Foreign Earned Income Exclusion +Form 2555-EZ (2013) +Page +2 +Part III +Complete this part if you were in the + +United States or its possessions during 2013. +12 +(a) +Date arrived in U.S. +(b) +Date left U.S. +(c) +Number of days + +in U.S. on business +(d) +Income earned in U.S. + +on business (attach computation) + + + + + +Part IV +13 +Maximum foreign earned income exclusion +.................. +13 +14 +Enter the number of days in your qualifying period that fall within 2013 . +14 +days +15 +Did you enter 365 on line 14? +a decimal (rounded to at least three places). +} +............. +15 +× +. +16 +Multiply line 13 by line 15 +........................ +16 +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 +........... +17 +18 + + +from your income to arrive at total income on Form 1040, line 22 . +.......... +a +18 +Form +2555-EZ + (2013) +$97,600 +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 +No. Divide line 14 by 365 and enter the result as +Yes. Enter “1.000.” +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F2555EZS.fields.json b/test/data/fd/form/F2555EZS.fields.json new file mode 100755 index 00000000..c7c5b0fc --- /dev/null +++ b/test/data/fd/form/F2555EZS.fields.json @@ -0,0 +1 @@ +[{"id":"A6RB","type":"radio","calc":false,"value":"BX1AYES"},{"id":"A6RB","type":"radio","calc":false,"value":"BX1ANO"},{"id":"A12RB","type":"radio","calc":false,"value":"BX2AYES"},{"id":"A12RB","type":"radio","calc":false,"value":"BX2ANO"},{"id":"A16RB","type":"radio","calc":false,"value":"BX3YES"},{"id":"A16RB","type":"radio","calc":false,"value":"BX3NO"},{"id":"BX9A","type":"box","calc":false,"value":""},{"id":"BX9B","type":"box","calc":false,"value":""},{"id":"BX9C","type":"box","calc":false,"value":""},{"id":"BX10B","type":"box","calc":false,"value":""},{"id":"A50RB","type":"radio","calc":false,"value":"BX10CYES"},{"id":"A50RB","type":"radio","calc":false,"value":"BX10CNO"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1BBEG","type":"date","calc":false,"value":""},{"id":"L1BEND","type":"date","calc":false,"value":""},{"id":"L2BFROM","type":"date","calc":false,"value":""},{"id":"L2BTHRU","type":"date","calc":false,"value":""},{"id":"H29","type":"alpha","calc":false,"value":""},{"id":"L4ADDR1","type":"alpha","calc":false,"value":""},{"id":"TPFCITY","type":"alpha","calc":false,"value":""},{"id":"TPFCNTRY","type":"alpha","calc":false,"value":""},{"id":"POD","type":"alpha","calc":false,"value":""},{"id":"YOCC","type":"alpha","calc":false,"value":""},{"id":"L6NAME1","type":"alpha","calc":false,"value":""},{"id":"L7ADDR1","type":"alpha","calc":false,"value":""},{"id":"L8ADDR1","type":"alpha","calc":false,"value":""},{"id":"L6NAME2","type":"alpha","calc":false,"value":""},{"id":"L8ADDR2","type":"alpha","calc":false,"value":""},{"id":"L7ADDR3","type":"alpha","calc":false,"value":""},{"id":"LCITY","type":"alpha","calc":false,"value":""},{"id":"L7ST","type":"alpha","calc":false,"value":""},{"id":"LPROV","type":"alpha","calc":false,"value":""},{"id":"L7ZIP","type":"zip","calc":false,"value":""},{"id":"LPOST","type":"alpha","calc":false,"value":""},{"id":"LCOUNTRY","type":"alpha","calc":false,"value":""},{"id":"L9C","type":"alpha","calc":false,"value":""},{"id":"L10A","type":"date","calc":false,"value":""},{"id":"L10DTX","type":"alpha","calc":false,"value":""},{"id":"A115_L11A1_1_","type":"alpha","calc":false,"value":""},{"id":"A115_L11A2_1_","type":"date","calc":false,"value":""},{"id":"L11B","type":"alpha","calc":false,"value":""},{"id":"A111RB","type":"radio","calc":false,"value":"BX15YES"},{"id":"A111RB","type":"radio","calc":false,"value":"BX15NO"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L14ONE_ARR1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_1_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_1_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_2_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_2_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_3_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_3_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_4_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_4_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_4_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_5_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_5_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_5_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_5_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_6_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_6_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_6_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_6_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_7_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_7_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_7_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_7_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_8_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_8_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_8_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_8_","type":"number","calc":false,"value":""},{"id":"L14ONE_ARR1_9_","type":"date","calc":false,"value":""},{"id":"L14ONE_LFT1_9_","type":"date","calc":false,"value":""},{"id":"L14ONE_NUM1_9_","type":"number","calc":false,"value":""},{"id":"L14ONE_INC1_9_","type":"number","calc":false,"value":""},{"id":"L14","type":"percent","calc":false,"value":""},{"id":"L15","type":"alpha","calc":true,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F2555EZS.json b/test/data/fd/form/F2555EZS.json new file mode 100755 index 00000000..5922d049 --- /dev/null +++ b/test/data/fd/form/F2555EZS.json @@ -0,0 +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 diff --git a/test/data/fd/form/F3468.content.txt b/test/data/fd/form/F3468.content.txt new file mode 100755 index 00000000..f1663ce1 --- /dev/null +++ b/test/data/fd/form/F3468.content.txt @@ -0,0 +1,381 @@ +Form +3468 +Department of the Treasury +Internal Revenue Service (99) +Investment Credit +a + +Attach to your tax return. +a + +Information about Form 3468 and its separate instructions is at +www.irs.gov/form3468 +. +OMB No. 1545-0155 +20 +13 +Attachment +Sequence No. +174 +Name(s) shown on return +Identifying number +Part I +Information Regarding the Election To Treat the Lessee as the Purchaser of Investment Credit Property +If you are claiming the investment credit as a lessee based on a section 48(d) (as in effect on November 4, 1990) election, pro +vide the +following information. If you acquired more than one property as a lessee, attach a statement showing the information below. +1 +Name of lessor +2 +Address of lessor +3 +Description of property +4 +Amount for which you were treated as having acquired the property +.......... +a +$ +Part II +Qualifying Advanced Coal Project Credit, Qualifying Gasification Project Credit, and Qualifying +Advanced Energy Project Credit +5 +Qualifying advanced coal project credit (see instructions): +a + +Qualified investment in integrated gasification combined cycle property +placed in service during the tax year for projects described in section +48A(d)(3)(B)(i) +....... +$ +× 20% (.20) +5a +b + +Qualified investment in advanced coal-based generation technology +property placed in service during the tax year for projects described in +section 48A(d)(3)(B)(ii) +..... +$ +× 15% (.15) +5b +c + +Qualified investment in advanced coal-based generation technology +property placed in service during the tax year for projects described in +section 48A(d)(3)(B)(iii) +..... +$ +× 30% (.30) +5c +d +Total. Add lines 5a, 5b, and 5c +....................... +5d +6 +Qualifying gasification project credit (see instructions): +a + + + +Qualified investment in qualified gasification property placed in service +during the tax year for which credits were allocated or reallocated after +October 3, 2008, and that includes equipment that separates and +sequesters at least 75% of the project’s carbon dioxide +emissions +......... +$ +× 30% (.30) +6a +b +Qualified investment in property other than in +a + above placed in service +during the tax year +...... +$ +× 20% (.20) +6b +c +Total. Add lines 6a and 6b +........................ +6c +7 +Qualifying advanced energy project credit (see instructions): +Qualified investment in advanced energy project property placed in +service during the tax year +............ +$ +× 30% (.30) +7 +8 +Reserved +.............................. +8 +9 +Enter the applicable unused investment credit from cooperatives (see instructions) +..... +9 +10 +Add lines 5d, 6c, 7, and 9. Report this amount on Form 3800, line 1a +.......... +10 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 12276E +Form +3468 + (2013) +Addr +City +State +ZIP Code +----------------Page (0) Break---------------- +Form 3468 (2013) +Page +2 +i +Certified historic structures affected by a Midwestern disaster +(only enter amounts paid or incurred before 2012) . . . . +$ +× 26% (.26) +11i +j +Other certified historic structures +......... +$ +× 20% (.20) +11j +For properties identified on lines 11h, 11i, or 11j, complete lines 11k and 11l. +k +Enter the assigned NPS project number or the pass-through entity’s employer identification +number (see instructions) +............... +l +Enter the date that the NPS approved the Request for Certification of Completed Work (see +instructions) +.................... +m +Rehabilitation credit from an electing large partnership (Schedule K-1 (Form 1065-B), box 9) . . +11m +12 +Energy credit: +a + +Basis of property using geothermal energy or solar energy (acquired before January 1, 2006, and +the basis attributable to construction, reconstruction, or erection by the taxpayer before January +1, 2006) placed in service during the tax year (see instructions) +$ +× 10% (.10) +12a +b + +Basis of property using solar illumination or solar energy placed in service during the tax year that was +acquired after December 31, 2005, and the basis attributable to construction, reconstruction, or +erection by the taxpayer after December 31, 2005 (see instructions) + +$ +× 30% (.30) +12b +Qualified fuel cell property (see instructions): +c + +Basis of property placed in service during the tax year that was acquired after December 31, 2005, and +before October 4, 2008, and the basis attributable to construction, reconstruction, or erection by the +taxpayer after December 31, 2005, and before October 4, 2008 +$ +× 30% (.30) +12c +d +Applicable kilowatt capacity of property on line 12c (see instructions) +a +× $1,000 +12d +e +Enter the lesser of line 12c or line 12d +.................... +12e +Form +3468 + (2013) +Enter the amount of qualified rehabilitation expenditures and multiply by the percentage shown: +e +Pre-1936 buildings located in the Gulf Opportunity Zone +(only enter amounts paid or incurred before 2012) . . . +$ +× 13% (.13) +11e +f +Pre-1936 buildings affected by a Midwestern disaster (only +enter amounts paid or incurred before 2012) +..... +$ +× 13% (.13) +11f +g +Other pre-1936 buildings +............ +$ +× 10% (.10) +11g +h +Certified historic structures located in the Gulf Opportunity Zone +(only enter amounts paid or incurred before 2012) . . . . . +$ +× 26% (.26) +11h +Part III +Rehabilitation Credit and Energy Credit +11 +Rehabilitation credit (see instructions for requirements that must be met): +a + + +Check this box if you are electing under section 47(d)(5) to take your qualified rehabilitation +expenditures into account for the tax year in which paid (or, for self-rehabilitated property, when +capitalized). See instructions. +Note. +This election applies to the current tax year and to all later tax +years. You may not revoke this election without IRS consent +........... +a +b +Enter the dates on which the 24- or 60-month measuring period begins +and ends +c +Enter the adjusted basis of the building as of the beginning date above +(or the first day of your holding period, if later) +......... +$ +d +Enter the amount of the qualified rehabilitation expenditures incurred, or +treated as incurred, during the period on line 11b above +..... +$ +f + +Basis of property placed in service during the tax year that was acquired after October 3, 2008, +and the basis attributable to construction, reconstruction, or erection by the taxpayer after +October 3, 2008 +............... +$ +× 30% (.30) +12f +g +Applicable kilowatt capacity of property on line 12f (see instructions) + +a +× $3,000 +12g +h +Enter the lesser of line 12f or line 12g +.................... +12h +Qualified microturbine property (see instructions): +i + +Basis of property placed in service during the tax year that was acquired after December 31, 2005, +and the basis attributable to construction, reconstruction, or erection by the taxpayer after +December 31, 2005 +.............. +$ +× 10% (.10) +12i +j +Kilowatt capacity of property on line 12i +.......... +a +× $200 +12j +k +Enter the lesser of line 12i or line 12j +..................... +12k +----------------Page (1) Break---------------- +Form 3468 (2013) +Page +3 +Part III +Rehabilitation Credit and Energy Credit +(continued) +Combined heat and power system property (see instructions): +Caution. +You cannot claim this credit if the electrical capacity of the property is more than 50 + +megawatts or 67,000 horsepower. +l + +Basis of property placed in service during the tax year that was acquired after October 3, 2008, +and the basis attributable to construction, reconstruction, or erection by the taxpayer after +October 3, 2008 +................ +$ +× 10% (.10) +12l +m +If the electrical capacity of the property is measured in: +• Megawatts, divide 15 by the megawatt capacity. Enter 1.0 if the capacity is 15 megawatts or +less. +• Horsepower, divide 20,000 by the horsepower. Enter 1.0 if the capacity is 20,000 horsepower or +less +................................ +12m +. +n +Multiply line 12l by line 12m +........................ +12n +Qualified small wind energy property (see instructions): +o + + +Basis of property placed in service during the tax year that was acquired after October 3, 2008, +and before January 1, 2009, and the basis attributable to the construction, reconstruction, or +erection by the taxpayer after October 3, 2008, and before January 1, 2009 +........ +..................... +$ +× 30% (.30) +12o +p +Enter the smaller of line 12o or $4,000 +.................... +12p +q + +Basis of property placed in service during the tax year that was acquired after December 31, 2008, +and the basis attributable to construction, reconstruction, or erection by the taxpayer after +December 31, 2008 +.............. +$ +× 30% (.30) +12q +Geothermal heat pump systems (see instructions): +r + +Basis of property placed in service during the tax year that was acquired after October 3, 2008, +and the basis attributable to +construction, reconstruction, or erection by the taxpayer +after +October 3, 2008 +.............. +$ +× 10% (.10) +12r +Qualified investment credit facility property (see instructions): +s +Basis of property placed in service during the tax year . . . +$ +× 30% (.30) +12s +13 +Enter the applicable unused investment credit from cooperatives (see instructions) +..... +13 +14 +Add lines 11e through 11j, 11m, 12a, 12b, 12e, 12h, 12k, 12n, 12p, 12q, 12r, 12s, and 13. Report +this amount on Form 3800, line 4a +..................... +14 +Form +3468 + (2013) +----------------Page (2) Break---------------- diff --git a/test/data/fd/form/F3468.fields.json b/test/data/fd/form/F3468.fields.json new file mode 100755 index 00000000..3b9eba0a --- /dev/null +++ b/test/data/fd/form/F3468.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":false,"value":""},{"id":"LADDR2","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"LPROPDES","type":"alpha","calc":false,"value":""},{"id":"AMT","type":"number","calc":false,"value":""},{"id":"BASIS4AC","type":"number","calc":false,"value":""},{"id":"BASIS4AA","type":"number","calc":true,"value":""},{"id":"BASIS4BC","type":"number","calc":false,"value":""},{"id":"BASIS4BB","type":"number","calc":true,"value":""},{"id":"BASIS6C","type":"number","calc":false,"value":""},{"id":"BASIS6CC","type":"alpha","calc":true,"value":""},{"id":"TOTAL4C","type":"number","calc":true,"value":""},{"id":"BASIS7A","type":"number","calc":false,"value":""},{"id":"BASIS7AA","type":"number","calc":true,"value":""},{"id":"QUALGASP","type":"number","calc":false,"value":""},{"id":"QUALAMT","type":"number","calc":true,"value":""},{"id":"TOTAL7C","type":"number","calc":true,"value":""},{"id":"BASISAE","type":"number","calc":false,"value":""},{"id":"BASISAEC","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L1BX","type":"box","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L1DBDATE","type":"date","calc":false,"value":""},{"id":"L1DEDATE","type":"date","calc":false,"value":""},{"id":"L1D2","type":"number","calc":false,"value":""},{"id":"L1D3","type":"number","calc":false,"value":""},{"id":"GOZO36","type":"number","calc":false,"value":""},{"id":"L1B","type":"number","calc":true,"value":""},{"id":"MIDWDIS","type":"number","calc":false,"value":""},{"id":"MIDW","type":"number","calc":true,"value":""},{"id":"L1B36","type":"number","calc":false,"value":""},{"id":"PRE36B","type":"number","calc":true,"value":""},{"id":"GOZOCHS","type":"number","calc":false,"value":""},{"id":"L1C","type":"number","calc":true,"value":""},{"id":"MIDWDCHS","type":"number","calc":false,"value":""},{"id":"MIDWCHS","type":"number","calc":true,"value":""},{"id":"L1CHS","type":"number","calc":false,"value":""},{"id":"CHSB","type":"number","calc":true,"value":""},{"id":"L1CNP","type":"alpha","calc":false,"value":""},{"id":"PEIN","type":"mask","calc":false,"value":""},{"id":"L1CDATE","type":"date","calc":false,"value":""},{"id":"L1E","type":"number","calc":false,"value":""},{"id":"BASIS3A","type":"number","calc":false,"value":""},{"id":"BASIS3AA","type":"number","calc":true,"value":""},{"id":"BASIS3B","type":"number","calc":false,"value":""},{"id":"BASIS3BB","type":"number","calc":true,"value":""},{"id":"BASISBEF","type":"number","calc":false,"value":""},{"id":"BASBAMT","type":"number","calc":true,"value":""},{"id":"KCAPBEF","type":"number","calc":false,"value":""},{"id":"KCBEFAMT","type":"number","calc":true,"value":""},{"id":"LESSFEF","type":"number","calc":true,"value":""},{"id":"BASIS3C","type":"number","calc":false,"value":""},{"id":"BASIS3CC","type":"number","calc":true,"value":""},{"id":"KILOCAP","type":"number","calc":false,"value":""},{"id":"KILOAMT","type":"number","calc":true,"value":""},{"id":"LESSER","type":"number","calc":true,"value":""},{"id":"BASIS3F","type":"number","calc":false,"value":""},{"id":"BASIS3FF","type":"number","calc":true,"value":""},{"id":"KILOCAP2","type":"number","calc":false,"value":""},{"id":"KILOAMT2","type":"number","calc":true,"value":""},{"id":"LESSER2","type":"number","calc":true,"value":""},{"id":"NAM3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"BASIS5L","type":"number","calc":false,"value":""},{"id":"BASIS5LL","type":"number","calc":true,"value":""},{"id":"ELECMEAS","type":"mask","calc":false,"value":""},{"id":"LESSER3","type":"number","calc":true,"value":""},{"id":"BASIS5O","type":"number","calc":false,"value":""},{"id":"BASIS5OO","type":"number","calc":false,"value":""},{"id":"SMALLER","type":"number","calc":true,"value":""},{"id":"BASISAFT","type":"number","calc":false,"value":""},{"id":"BASAAMT","type":"number","calc":true,"value":""},{"id":"BASISHP8","type":"number","calc":false,"value":""},{"id":"BASISHPA","type":"number","calc":true,"value":""},{"id":"BASISCFP","type":"number","calc":false,"value":""},{"id":"BASISCFA","type":"number","calc":true,"value":""},{"id":"COOPCR","type":"number","calc":false,"value":""},{"id":"STOT1","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F3468.json b/test/data/fd/form/F3468.json new file mode 100755 index 00000000..f3a53e52 --- /dev/null +++ b/test/data/fd/form/F3468.json @@ -0,0 +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.595,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":4.595,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":2.345,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":4.595,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.095,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":6.095,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":6.845,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":6.845,"w":0.75,"l":92.899},{"oc":"#221f1f","x":23.535,"y":9.095,"w":0.75,"l":75.51},{"oc":"#221f1f","x":24.777,"y":9.845,"w":0.75,"l":74.268},{"oc":"#221f1f","x":27.853,"y":11.251,"w":0.75,"l":71.193},{"oc":"#221f1f","x":6.147,"y":12.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":13.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":38.322,"y":16.501,"w":0.75,"l":12.461},{"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":11.223},{"oc":"#221f1f","x":76.684,"y":16.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":38.322,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":18.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":38.322,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":38.322,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":26.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":38.322,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":27.751,"w":1.125,"l":3.798},{"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":80.397,"y":28.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":55.647,"y":30.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.152,"y":32.251,"w":0.75,"l":11.138},{"oc":"#221f1f","x":84.152,"y":30.751,"w":0.75,"l":11.138},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":33.751,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":33.751,"w":1.5,"l":39.686},{"oc":"#221f1f","x":87.822,"y":33.751,"w":1.5,"l":11.223},{"oc":"#221f1f","x":24.535,"y":10.516,"w":0.75,"l":74.268}],"VLines":[{"oc":"#221f1f","x":21.04,"y":1.579,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":1.579,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.329,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":3.579,"w":1.5,"l":1.047},{"oc":"#221f1f","x":79.202,"y":4.579,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":13.485,"w":0.75,"l":7.531},{"oc":"#221f1f","x":80.44,"y":13.485,"w":0.75,"l":7.531},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":7.531},{"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":76.727,"y":15.735,"w":0.75,"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":76.727,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":95.29,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":21.735,"w":0.75,"l":6.031},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":6.031},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":6.031},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":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":95.29,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":84.152,"y":30.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"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":84.152,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":6.095,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":12.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":13.501,"w":3.712,"h":7.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":21.751,"w":3.712,"h":6,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":28.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":30.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":84.152,"y":30.751,"w":11.138,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":95.29,"y":30.751,"w":3.713,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9780000000000002,"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":1.9780000000000002,"w":2.08,"clr":-1,"A":"left","R":[{"T":"3468","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.157,"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":3.657,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":42.673,"y":1.593,"w":8.040000000000001,"clr":-1,"A":"left","R":[{"T":"Investment%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.473,"y":2.643,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.791,"y":2.737,"w":28.627999999999947,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%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":[0,11,0,0]}]},{"oc":"#221f1f","x":23.32,"y":3.2640000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.64,"y":3.3579999999999997,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%203468%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.216,"y":3.3579999999999997,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform3468","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.99,"y":3.3579999999999997,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.282,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0155","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":2.675,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.204,"y":2.675,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.22,"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":3.6660000000000004,"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":3.6660000000000004,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"174","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.282,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":4.282,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":5.916,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":5.916,"w":49.16399999999998,"clr":-1,"A":"left","R":[{"T":"Information%20Regarding%20the%20Election%20To%20Treat%20the%20Lessee%20as%20the%20Purchaser%20of%20Investment%20Credit%20Property","S":-1,"TS":[0,12.8,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.634,"w":55.80899999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20claiming%20the%20investment%20credit%20as%20a%20lessee%20based%20on%20a%20section%2048(d)%20(as%20in%20effect%20on%20November%204%2C%201990)%20election%2C%20pro","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.23,"y":6.634,"w":3.816,"clr":-1,"A":"left","R":[{"T":"vide%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.932,"y":7.321,"w":55.74899999999994,"clr":-1,"A":"left","R":[{"T":"following%20information.%20If%20you%20acquired%20more%20than%20one%20property%20as%20a%20lessee%2C%20attach%20a%20statement%20showing%20the%20information%20below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.547,"y":8.184,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.121,"w":6.7410000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20of%20lessor","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.934,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.871,"w":7.796000000000001,"clr":-1,"A":"left","R":[{"T":"Address%20of%20lessor","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.278,"w":10.297,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.027,"w":30.430000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20for%20which%20you%20were%20treated%20as%20having%20acquired%20the%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":11.027,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.19,"y":10.934,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.853,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":11.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":11.822,"w":45.063999999999965,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Advanced%20Coal%20Project%20Credit%2C%20Qualifying%20Gasification%20Project%20Credit%2C%20and%20Qualifying%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":12.51,"w":15.280000000000001,"clr":-1,"A":"left","R":[{"T":"Advanced%20Energy%20Project%20Credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":25.57700000000001,"clr":-1,"A":"left","R":[{"T":"Qualifying%20advanced%20coal%20project%20credit%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.103,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.103,"w":32.025000000000006,"clr":-1,"A":"left","R":[{"T":"Qualified%20investment%20in%20integrated%20gasification%20combined%20cycle%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.79,"w":31.096,"clr":-1,"A":"left","R":[{"T":"placed%20in%20service%20during%20the%20tax%20year%20for%20projects%20described%20in%20section%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":15.477,"w":6.166,"clr":-1,"A":"left","R":[{"T":"48A(d)(3)(B)(i)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.435,"y":15.477,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.066,"y":15.527999999999999,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.383,"y":15.59,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2020%25%20(.20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":15.59,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"5a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":16.353,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.353,"w":30.65500000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20investment%20in%20advanced%20coal-based%20generation%20technology%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":17.04,"w":31.35499999999999,"clr":-1,"A":"left","R":[{"T":"property%20placed%20in%20service%20during%20the%20tax%20year%20for%20projects%20described%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":17.727,"w":9.907000000000002,"clr":-1,"A":"left","R":[{"T":"section%2048A(d)(3)(B)(ii)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.572,"y":17.727,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.066,"y":17.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.383,"y":17.84,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2015%25%20(.15)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.581,"y":17.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":18.603,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.603,"w":30.65500000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20investment%20in%20advanced%20coal-based%20generation%20technology%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":19.29,"w":31.35499999999999,"clr":-1,"A":"left","R":[{"T":"property%20placed%20in%20service%20during%20the%20tax%20year%20for%20projects%20described%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":19.977,"w":10.129000000000001,"clr":-1,"A":"left","R":[{"T":"section%2048A(d)(3)(B)(iii)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.572,"y":19.977,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.066,"y":20.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.383,"y":20.09,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":20.09,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"5c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"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":13.894000000000005,"clr":-1,"A":"left","R":[{"T":"Total.%20Add%20lines%205a%2C%205b%2C%20and%205c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":20.84,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.143,"y":20.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":21.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.59,"w":24.131000000000007,"clr":-1,"A":"left","R":[{"T":"Qualifying%20gasification%20project%20credit%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":22.478,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.477,"w":31.726999999999993,"clr":-1,"A":"left","R":[{"T":"Qualified%20investment%20in%20qualified%20gasification%20property%20placed%20in%20service%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":23.165,"w":31.83199999999999,"clr":-1,"A":"left","R":[{"T":"during%20the%20tax%20year%20for%20which%20credits%20were%20allocated%20or%20reallocated%20after%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":23.852,"w":29.179000000000006,"clr":-1,"A":"left","R":[{"T":"October%203%2C%202008%2C%20and%20that%20includes%20equipment%20that%20separates%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":24.539,"w":25.041000000000004,"clr":-1,"A":"left","R":[{"T":"sequesters%20at%20least%2075%25%20of%20the%20project%E2%80%99s%20carbon%20dioxide%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":25.227,"w":4.742000000000001,"clr":-1,"A":"left","R":[{"T":"emissions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.322,"y":25.227,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.066,"y":25.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.383,"y":25.34,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":25.34,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"6a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.04,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.04,"w":20.394999999999996,"clr":-1,"A":"left","R":[{"T":"Qualified%20investment%20in%20property%20other%20than%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.653,"y":26.04,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.572,"y":26.04,"w":11.094000000000003,"clr":-1,"A":"left","R":[{"T":"%20above%20placed%20in%20service%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":26.728,"w":8.631,"clr":-1,"A":"left","R":[{"T":"during%20the%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.507,"y":26.728,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.066,"y":26.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.383,"y":26.84,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2020%25%20(.20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.581,"y":26.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":27.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":11.967000000000004,"clr":-1,"A":"left","R":[{"T":"Total.%20Add%20lines%206a%20and%206b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":27.59,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":27.59,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"6c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":28.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":26.744000000000003,"clr":-1,"A":"left","R":[{"T":"Qualifying%20advanced%20energy%20project%20credit%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.04,"w":30.228999999999996,"clr":-1,"A":"left","R":[{"T":"Qualified%20investment%20in%20advanced%20energy%20project%20property%20placed%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.728,"w":12.075000000000005,"clr":-1,"A":"left","R":[{"T":"service%20during%20the%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":29.728,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.391,"y":29.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":29.84,"w":5.454000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":4.5,"clr":-1,"A":"left","R":[{"T":"Reserved%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":18.315,"y":31.340000000000003,"w":41.67000000000001,"clr":-1,"A":"left","R":[{"T":"..............................","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":81.616,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":36.951999999999984,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20unused%20investment%20credit%20from%20cooperatives%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":32.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":32.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":30.81000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%205d%2C%206c%2C%207%2C%20and%209.%20Report%20this%20amount%20on%20Form%203800%2C%20line%201a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":32.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":33.608,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.379,"y":33.626,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012276E","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":33.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":33.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"3468","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":33.572,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":24.274,"y":9.011,"w":19.008000000000003,"clr":0,"A":"left","R":[{"T":"Addr","S":3,"TS":[0,12,0,0]}]},{"x":24.297,"y":9.615,"w":15.498000000000001,"clr":0,"A":"left","R":[{"T":"City","S":3,"TS":[0,12,0,0]}]},{"x":67.293,"y":9.664,"w":21.015,"clr":0,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"x":80.547,"y":9.664,"w":38.016,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2069,"AM":1024,"x":6.661,"y":5.037,"w":60.794,"h":0.852,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2070,"AM":1024,"x":79.627,"y":5.064,"w":16.902,"h":0.877,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":2071,"AM":0,"x":23.802,"y":8.307,"w":49.106,"h":0.833,"TU":"Line 1. Name of lessor."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LADDR2","EN":0},"TI":2072,"AM":0,"x":29.323,"y":9.122,"w":24.59,"h":0.833,"TU":"Line 2. Address of lessor."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":2073,"AM":0,"x":29.39,"y":9.828,"w":35.955,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":2074,"AM":0,"x":71.673,"y":9.895,"w":6.86,"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":2075,"AM":0,"x":88.403,"y":9.826,"w":10.721,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPROPDES","EN":0},"TI":2076,"AM":0,"x":27.701,"y":10.536,"w":53.332,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT","EN":0},"TI":2077,"AM":0,"x":84.273,"y":11.271,"w":11.034,"h":0.833,"TU":"Line 4. Amount for which you were treated as having acquired the property."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS4AC","EN":0},"TI":2078,"AM":0,"x":38.399,"y":15.766,"w":12.254,"h":0.833,"TU":"Line 5a. Qualified investment in integrated gasification combined cycle property place in service during the tax year for projects described in section 48A(d)(3)(B)(i)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS4AA","EN":0},"TI":2079,"AM":1024,"x":65.685,"y":15.806,"w":11.056,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS4BC","EN":0},"TI":2080,"AM":0,"x":38.344,"y":18.033,"w":12.403,"h":0.833,"TU":"Line 5b. Qualified investment in advanced coal-based generation technology property placed in service during the tax year for projects described in section 48A(d)(3)(B)(ii)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS4BB","EN":0},"TI":2081,"AM":1024,"x":65.591,"y":18.004,"w":10.906,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS6C","EN":0},"TI":2082,"AM":0,"x":38.396,"y":20.271,"w":12.403,"h":0.833,"TU":"Line 5c. Qualified investment in advanced coal-based generation technology property placed in service during the tax year for projects described in section 48A(d)(3)(B)(iii)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BASIS6CC","EN":0},"TI":2083,"AM":1024,"x":65.636,"y":20.258,"w":11.061,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL4C","EN":0},"TI":2084,"AM":1024,"x":84.198,"y":20.963,"w":11.182,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS7A","EN":0},"TI":2085,"AM":0,"x":38.368,"y":25.533,"w":12.403,"h":0.833,"TU":"Line 6a. Qualified investment in integrated gasification property place in service during the tax year for which credits were allocated or reallocated after October 3, 2008, and that includes equipment that separates and sequesters at least 75% of the project's carbon dioxide emissions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS7AA","EN":0},"TI":2086,"AM":1024,"x":65.711,"y":25.48,"w":11.135,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALGASP","EN":0},"TI":2087,"AM":0,"x":38.321,"y":27.021,"w":12.478,"h":0.833,"TU":"Line 6b. Qualified investment in property other than in a above placed in service during the tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALAMT","EN":0},"TI":2088,"AM":1024,"x":65.562,"y":27.008,"w":11.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL7C","EN":0},"TI":2089,"AM":1024,"x":84.25,"y":27.721,"w":11.032,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISAE","EN":0},"TI":2090,"AM":0,"x":55.688,"y":30.003,"w":13.601,"h":0.833,"TU":"Line 7. Qualified advanced energy project credit (see instructions): Qualified investment in advanced energy project property placed in service during the tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISAEC","EN":0},"TI":2091,"AM":1024,"x":84.155,"y":29.946,"w":11.107,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":2092,"AM":0,"x":84.253,"y":32.288,"w":10.952,"h":0.833,"TU":"Line 9. Enter the applicable unused investment credit from cooperatives (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":2093,"AM":1024,"x":84.253,"y":33.045,"w":10.952,"h":0.833}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":84.236},{"oc":"#221f1f","x":90.297,"y":3.001,"w":1.5,"l":8.748},{"dsh":1,"oc":"#221f1f","x":55.647,"y":19.501,"w":0.75,"l":13.698},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":55.647,"y":20.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":61.834,"y":22.501,"w":0.75,"l":17.411},{"dsh":1,"oc":"#221f1f","x":61.834,"y":24.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":84.109,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":24.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.109,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":27.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":30.001,"w":0.75,"l":12.461},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":61.834,"y":33.751,"w":0.75,"l":8.748},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":34.501,"w":0.75,"l":3.798},{"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":6.147,"y":42.751,"w":1.5,"l":92.899},{"dsh":1,"oc":"#221f1f","x":55.647,"y":14.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":14.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":55.647,"y":15.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":55.647,"y":16.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":55.647,"y":18.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":60.777,"y":8.251,"w":0.75,"l":18.469},{"dsh":1,"oc":"#221f1f","x":18.526,"y":9.001,"w":0.75,"l":16.169},{"dsh":1,"oc":"#221f1f","x":64.309,"y":10.501,"w":0.75,"l":14.936},{"dsh":1,"oc":"#221f1f","x":64.309,"y":12.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":3.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":36.751,"w":0.75,"l":13.698},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":61.834,"y":37.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":80.397,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":38.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":41.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.747},{"dsh":1,"oc":"#221f1f","x":63.072,"y":42.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":80.397,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.001,"w":0.75,"l":3.773},{"oc":"#221f1f","x":84.109,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.751,"w":0.75,"l":3.798}],"VLines":[{"oc":"#221f1f","x":84.152,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":20.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":20.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.152,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":3.735,"w":0.75,"l":9.781},{"oc":"#221f1f","x":80.44,"y":3.735,"w":0.75,"l":9.781},{"oc":"#221f1f","x":95.29,"y":3.735,"w":0.75,"l":9.781},{"oc":"#221f1f","x":84.152,"y":34.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":34.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":35.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":0.782},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.782},{"oc":"#221f1f","x":95.29,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":41.235,"w":0.75,"l":0.782},{"oc":"#221f1f","x":80.44,"y":41.235,"w":0.75,"l":0.782},{"oc":"#221f1f","x":95.29,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.985,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":80.44,"y":20.251,"w":3.712,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":24.751,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":27.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":30.001,"w":3.712,"h":2.25,"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":9.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":38.251,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%203468%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]}]},{"oc":"#221f1f","x":8.415,"y":17.84,"w":0.258,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.79,"w":27.778999999999993,"clr":-1,"A":"left","R":[{"T":"Certified%20historic%20structures%20affected%20by%20a%20Midwestern%20disaster%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.478,"w":22.375999999999998,"clr":-1,"A":"left","R":[{"T":"(only%20enter%20amounts%20paid%20or%20incurred%20before%202012)%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":45.125,"y":18.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":47.188,"y":18.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":49.25,"y":18.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":51.313,"y":18.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":54.391,"y":18.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":18.59,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2026%25%20(.26)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.986,"y":18.59,"w":1.37,"clr":-1,"A":"left","R":[{"T":"11i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":19.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":14.946000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20certified%20historic%20structures%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":19.34,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.391,"y":19.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":19.34,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2020%25%20(.20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.971,"y":19.278,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":34.103,"clr":-1,"A":"left","R":[{"T":"For%20properties%20identified%20on%20lines%2011h%2C%2011i%2C%20or%2011j%2C%20complete%20lines%2011k%20and%2011l.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.79,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"k%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.79,"w":40.767999999999994,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20assigned%20NPS%20project%20number%20or%20the%20pass-through%20entity%E2%80%99s%20employer%20identification","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":21.478,"w":11.540000000000001,"clr":-1,"A":"left","R":[{"T":"number%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.693,"y":21.478,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":22.29,"w":0.536,"clr":-1,"A":"left","R":[{"T":"l%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.29,"w":41.04399999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20that%20the%20NPS%20approved%20the%20Request%20for%20Certification%20of%20Completed%20Work%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.978,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":22.978,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":23.84,"w":0.906,"clr":-1,"A":"left","R":[{"T":"m","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":41.15599999999998,"clr":-1,"A":"left","R":[{"T":"Rehabilitation%20credit%20from%20an%20electing%20large%20partnership%20(Schedule%20K-1%20(Form%201065-B)%2C%20box%209)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":23.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":23.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.485,"y":23.84,"w":2.0180000000000002,"clr":-1,"A":"left","R":[{"T":"11m","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":24.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":6.204000000000001,"clr":-1,"A":"left","R":[{"T":"Energy%20credit%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":25.353,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.353,"w":43.45199999999995,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20using%20geothermal%20energy%20or%20solar%20energy%20(acquired%20before%20January%201%2C%202006%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.04,"w":43.21099999999997,"clr":-1,"A":"left","R":[{"T":"the%20basis%20attributable%20to%20construction%2C%20reconstruction%2C%20or%20erection%20by%20the%20taxpayer%20before%20January%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":26.728,"w":28.690999999999995,"clr":-1,"A":"left","R":[{"T":"1%2C%202006)%20placed%20in%20service%20during%20the%20tax%20year%20(see%20instructions)%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":26.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":26.84,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2010%25%20(.10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":26.84,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"12a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":27.603,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.603,"w":45.83699999999996,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20using%20solar%20illumination%20or%20solar%20energy%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.894,"y":28.29,"w":42.955999999999975,"clr":-1,"A":"left","R":[{"T":"acquired%20after%20December%2031%2C%202005%2C%20and%20the%20basis%20attributable%20to%20construction%2C%20reconstruction%2C%20or%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.891,"y":28.977,"w":30.02500000000001,"clr":-1,"A":"left","R":[{"T":"erection%20by%20the%20taxpayer%20after%20December%2031%2C%202005%20(see%20instructions)","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":55.628,"y":29.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":29.09,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":29.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":19.79800000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20fuel%20cell%20property%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":30.603,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.603,"w":46.23099999999996,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20acquired%20after%20December%2031%2C%202005%2C%20and%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.881,"y":31.29,"w":45.029999999999966,"clr":-1,"A":"left","R":[{"T":"before%20October%204%2C%202008%2C%20and%20the%20basis%20attributable%20to%20construction%2C%20reconstruction%2C%20or%20erection%20by%20the%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.887,"y":31.976999999999997,"w":28.454000000000004,"clr":-1,"A":"left","R":[{"T":"taxpayer%20after%20December%2031%2C%202005%2C%20and%20before%20October%204%2C%202008%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":55.628,"y":32.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":32.09,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":32.09,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"12c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":31.244000000000003,"clr":-1,"A":"left","R":[{"T":"Applicable%20kilowatt%20capacity%20of%20property%20on%20line%2012c%20(see%20instructions)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.219,"y":32.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.864,"y":32.778,"w":3.9360000000000004,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%241%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":32.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":33.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":17.096000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20lesser%20of%20line%2012c%20or%20line%2012d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":33.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":33.59,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"12e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.154,"y":42.572,"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.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"3468","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":42.572,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":42.62099999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20qualified%20rehabilitation%20expenditures%20and%20multiply%20by%20the%20percentage%20shown%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":12.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.54,"w":25.322000000000013,"clr":-1,"A":"left","R":[{"T":"Pre-1936%20buildings%20located%20in%20the%20Gulf%20Opportunity%20Zone%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.228,"w":22.375999999999998,"clr":-1,"A":"left","R":[{"T":"(only%20enter%20amounts%20paid%20or%20incurred%20before%202012)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.191,"y":13.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.253,"y":13.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.315,"y":13.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.391,"y":13.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":13.34,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2013%25%20(.13)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":13.34,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"11e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.09,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.04,"w":26.541000000000004,"clr":-1,"A":"left","R":[{"T":"Pre-1936%20buildings%20affected%20by%20a%20Midwestern%20disaster%20(only%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":14.727,"w":19.709000000000003,"clr":-1,"A":"left","R":[{"T":"enter%20amounts%20paid%20or%20incurred%20before%202012)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.066,"y":14.727,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.391,"y":14.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":14.84,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2013%25%20(.13)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.928,"y":14.84,"w":1.445,"clr":-1,"A":"left","R":[{"T":"11f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":15.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":11.448999999999998,"clr":-1,"A":"left","R":[{"T":"Other%20pre-1936%20buildings%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":15.59,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.391,"y":15.527999999999999,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":15.59,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2010%25%20(.10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":15.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"11g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":16.34,"w":0.593,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.29,"w":28.949000000000012,"clr":-1,"A":"left","R":[{"T":"Certified%20historic%20structures%20located%20in%20the%20Gulf%20Opportunity%20Zone%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":10.892,"y":16.978,"w":22.653999999999996,"clr":-1,"A":"left","R":[{"T":"(only%20enter%20amounts%20paid%20or%20incurred%20before%202012)%20.","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":44.798,"y":16.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":46.86,"y":16.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":48.922,"y":16.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":50.985,"y":16.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":54.391,"y":17.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":17.09,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2026%25%20(.26)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.727,"y":17.09,"w":1.705,"clr":-1,"A":"left","R":[{"T":"11h","S":3,"TS":[0,12,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":18.662000000000003,"clr":-1,"A":"left","R":[{"T":"Rehabilitation%20Credit%20and%20Energy%20Credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":3.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":3.59,"w":32.545,"clr":-1,"A":"left","R":[{"T":"Rehabilitation%20credit%20(see%20instructions%20for%20requirements%20that%20must%20be%20met)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":4.415,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":4.415,"w":40.76599999999999,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20if%20you%20are%20electing%20under%20section%2047(d)(5)%20to%20take%20your%20qualified%20rehabilitation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":5.102,"w":43.05899999999997,"clr":-1,"A":"left","R":[{"T":"expenditures%20into%20account%20for%20the%20tax%20year%20in%20which%20paid%20(or%2C%20for%20self-rehabilitated%20property%2C%20when%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":5.79,"w":13.352000000000004,"clr":-1,"A":"left","R":[{"T":"capitalized).%20See%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.633,"y":5.79,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.046,"y":5.79,"w":27.780999999999995,"clr":-1,"A":"left","R":[{"T":"This%20election%20applies%20to%20the%20current%20tax%20year%20and%20to%20all%20later%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":6.488,"w":27.13400000000001,"clr":-1,"A":"left","R":[{"T":"years.%20You%20may%20not%20revoke%20this%20election%20without%20IRS%20consent%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.37,"y":6.488,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":6.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":7.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.2780000000000005,"w":31.732000000000017,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20dates%20on%20which%20the%2024-%20or%2060-month%20measuring%20period%20begins","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.028,"w":4.15,"clr":-1,"A":"left","R":[{"T":"and%20ends","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":8.79,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.79,"w":31.823000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20adjusted%20basis%20of%20the%20building%20as%20of%20the%20beginning%20date%20above%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":9.478,"w":20.630999999999993,"clr":-1,"A":"left","R":[{"T":"(or%20the%20first%20day%20of%20your%20holding%20period%2C%20if%20later)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.072,"y":9.478,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":9.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":10.29,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.29,"w":32.37700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20the%20qualified%20rehabilitation%20expenditures%20incurred%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":10.978,"w":25.136000000000003,"clr":-1,"A":"left","R":[{"T":"treated%20as%20incurred%2C%20during%20the%20period%20on%20line%2011b%20above%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":10.978,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":11.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":34.353,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.353,"w":42.72899999999996,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20acquired%20after%20October%203%2C%202008%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":35.04,"w":40.78499999999998,"clr":-1,"A":"left","R":[{"T":"and%20the%20basis%20attributable%20to%20construction%2C%20reconstruction%2C%20or%20erection%20by%20the%20taxpayer%20after%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":35.728,"w":7.541000000000002,"clr":-1,"A":"left","R":[{"T":"October%203%2C%202008%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.507,"y":35.728,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":35.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":35.84,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.928,"y":35.84,"w":1.445,"clr":-1,"A":"left","R":[{"T":"12f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":36.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":31.003000000000004,"clr":-1,"A":"left","R":[{"T":"Applicable%20kilowatt%20capacity%20of%20property%20on%20line%2012f%20(see%20instructions)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.181,"y":36.497,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.864,"y":36.528,"w":3.9360000000000004,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%243%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":36.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":37.34,"w":0.593,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":16.836000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20lesser%20of%20line%2012f%20or%20line%2012g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":37.34,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.727,"y":37.34,"w":1.705,"clr":-1,"A":"left","R":[{"T":"12h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":22.02200000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20microturbine%20property%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":38.853,"w":0.536,"clr":-1,"A":"left","R":[{"T":"i%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.852,"w":44.26699999999997,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20acquired%20after%20December%2031%2C%202005%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":39.54,"w":40.506999999999984,"clr":-1,"A":"left","R":[{"T":"and%20the%20basis%20attributable%20to%20construction%2C%20reconstruction%2C%20or%20erection%20by%20the%20taxpayer%20after%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":40.227,"w":9.079000000000002,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202005%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.567,"y":40.227,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":40.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":40.34,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2010%25%20(.10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.986,"y":40.34,"w":1.37,"clr":-1,"A":"left","R":[{"T":"12i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.09,"w":18.261,"clr":-1,"A":"left","R":[{"T":"Kilowatt%20capacity%20of%20property%20on%20line%2012i%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":41.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.82,"y":40.997,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.154,"y":41.09,"w":3.1020000000000003,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%24200","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.971,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.84,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"k","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":16.410000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20lesser%20of%20line%2012i%20or%20line%2012j%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":41.84,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":41.84,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"12k","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2094,"AM":1024,"x":19.016,"y":2.205,"w":47.418,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2095,"AM":1024,"x":75.99,"y":2.096,"w":17.141,"h":0.858},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1DBDATE","EN":0},"TI":2097,"AM":0,"x":60.792,"y":7.596,"w":18.369,"h":0.833,"TU":"Line 11b. Enter the dates on which the 24 or 60 month measuring period begins.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1DEDATE","EN":0},"TI":2098,"AM":0,"x":18.591,"y":8.256,"w":18.369,"h":0.833,"TU":"and ends.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1D2","EN":0},"TI":2099,"AM":0,"x":64.386,"y":9.746,"w":14.851,"h":0.833,"TU":"Line 11c. Enter the adjusted basis of the building as of the beginning date above (or the first day of your holding period, if later)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1D3","EN":0},"TI":2100,"AM":0,"x":64.297,"y":11.237,"w":14.851,"h":0.833,"TU":"Line 11d. Enter the amount of the qualified rehabilitation expenditures incurred, or treated as incurred, during the period on line 11b above."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GOZO36","EN":0},"TI":2101,"AM":0,"x":55.769,"y":13.546,"w":13.416,"h":0.833,"TU":"Line 11e. Pre-1936 buildings located in the Gulf Opportunity Zone (only enter amounts paid or incurred before 2012)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":2102,"AM":1024,"x":84.14,"y":13.549,"w":11.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MIDWDIS","EN":0},"TI":2103,"AM":0,"x":55.721,"y":15.032,"w":13.641,"h":0.833,"TU":"Line 11f. Pre-1936 buildings affected by a Midwestern disaster (only enter amounts paid or incurred before 2012)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MIDW","EN":0},"TI":2104,"AM":1024,"x":84.215,"y":15.074,"w":11.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B36","EN":0},"TI":2105,"AM":0,"x":55.674,"y":15.853,"w":13.641,"h":0.833,"TU":"Line 11g. Other pre-1936 buildings."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRE36B","EN":0},"TI":2106,"AM":1024,"x":84.215,"y":15.782,"w":11.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GOZOCHS","EN":0},"TI":2107,"AM":0,"x":55.803,"y":17.262,"w":13.491,"h":0.833,"TU":"Line 11h. Certified historic structures located in the Gulf Opportunity Zone (only enter amounts paid or incurred before 2012)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":2108,"AM":1024,"x":84.12,"y":17.299,"w":11.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MIDWDCHS","EN":0},"TI":2109,"AM":0,"x":55.783,"y":18.752,"w":13.641,"h":0.833,"TU":"Line 11i. Certified historic structures affected by a Midwestern disaster (only enter amounts paid or incurred before 2012)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MIDWCHS","EN":0},"TI":2110,"AM":1024,"x":84.175,"y":18.762,"w":11.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1CHS","EN":0},"TI":2111,"AM":0,"x":55.763,"y":19.534,"w":13.641,"h":0.833,"TU":"Line 11j. Other certified historic structures."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHSB","EN":0},"TI":2112,"AM":1024,"x":84.253,"y":19.538,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1CNP","EN":0},"TI":2113,"AM":0,"x":33.384,"y":21.663,"w":20.573,"h":0.833,"TU":"Line 11k. Enter the assigned NPS project number."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PEIN","EN":0},"TI":2114,"AM":0,"x":61.84,"y":21.698,"w":17.246,"h":0.833,"TU":"The pass-through entity's employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1CDATE","EN":0},"TI":2115,"AM":0,"x":61.551,"y":23.175,"w":17.546,"h":0.833,"TU":"Line 11l. Enter the date that the NPS approved the Request for Certification of Completed Work (see instructions).","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1E","EN":0},"TI":2116,"AM":0,"x":84.392,"y":23.83,"w":10.963,"h":0.886,"TU":"Line 11m. Rehabilitation credit from an electing large partnership (Schedule K-1 (Form 1065-B), box 9)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3A","EN":0},"TI":2117,"AM":0,"x":56.884,"y":26.957,"w":12.478,"h":0.833,"TU":"Line 12a. Basis of property using geotherman energy or solar energy (acquired before January 1, 2006, and the basis attributable to construction, reconstruction, or erection by the taxpayer before January 1, 2006) placed in service during the tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3AA","EN":0},"TI":2118,"AM":1024,"x":84.248,"y":26.815,"w":10.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3B","EN":0},"TI":2119,"AM":0,"x":57.093,"y":29.238,"w":12.478,"h":0.833,"TU":"Line 12b. Basis of property using solar illumination or solar energy placed in service during the tax year that was acquired after December 31, 2005 and the basis attributable to construction, reconstruction, or erection by the taxpayer after December 31, 2005 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3BB","EN":0},"TI":2120,"AM":1024,"x":84.392,"y":29.167,"w":10.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISBEF","EN":0},"TI":2121,"AM":0,"x":57.223,"y":32.31,"w":13.377,"h":0.833,"TU":"Line 12c. Basis of property placed in service during the tax year that was acquired after December 31, 2005 and before October 4, 2008, and the basis attributable to construction, reconstruction, or erection by the taxpayer after December 31, 2005 , and before October 4, 2008."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASBAMT","EN":0},"TI":2122,"AM":1024,"x":84.317,"y":32.185,"w":11.112,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"KCAPBEF","EN":0},"TI":2123,"AM":0,"x":61.869,"y":33.067,"w":8.766,"h":0.833,"TU":"Line 12d. Applicable kilowatt capacity of property on line 12c (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"KCBEFAMT","EN":0},"TI":2124,"AM":1024,"x":84.48,"y":32.934,"w":10.937,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESSFEF","EN":0},"TI":2125,"AM":1024,"x":84.33,"y":33.808,"w":11.161,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3C","EN":0},"TI":2126,"AM":0,"x":57.018,"y":35.997,"w":13.526,"h":0.833,"TU":"Line 12f. Basis of property placed in service during the tax year that was acquired after October 3, 2008 and the basis attributable to construction, reconstruction, or erection by the taxpayer after October 3, 2008."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3CC","EN":0},"TI":2127,"AM":1024,"x":84.354,"y":35.852,"w":11.037,"h":0.868},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"KILOCAP","EN":0},"TI":2128,"AM":0,"x":61.834,"y":36.822,"w":8.766,"h":0.833,"TU":"Linf 12g. Applicable kilowatt capacity of property on line 12f (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"KILOAMT","EN":0},"TI":2129,"AM":1024,"x":84.261,"y":36.744,"w":10.937,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESSER","EN":0},"TI":2130,"AM":1024,"x":84.117,"y":37.536,"w":11.086,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3F","EN":0},"TI":2131,"AM":0,"x":57.078,"y":40.452,"w":13.716,"h":0.833,"TU":"Line 12i. Basis of property placed in service during the tax year that was acquired after December 31, 2005, and the basis attributable to construction, reconstruction, or erection by the taxpayer after December 31, 2005."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS3FF","EN":0},"TI":2132,"AM":1024,"x":84.292,"y":40.395,"w":11.112,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"KILOCAP2","EN":0},"TI":2133,"AM":0,"x":62.887,"y":41.385,"w":10.756,"h":0.833,"TU":"Line 12j. Kilowatt capacity of property on line 12i."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"KILOAMT2","EN":0},"TI":2134,"AM":1024,"x":84.404,"y":41.307,"w":10.68,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESSER2","EN":0},"TI":2135,"AM":1024,"x":84.24,"y":42.043,"w":11.112,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1BX","EN":0},"TI":2096,"AM":0,"x":77.712,"y":6.736,"w":1.821,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":84.236},{"oc":"#221f1f","x":90.297,"y":3.001,"w":1.5,"l":8.748},{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":12.334,"y":3.751,"w":0.75,"l":86.711},{"dsh":1,"oc":"#221f1f","x":56.884,"y":8.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":3.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":80.397,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":22.501,"w":0.75,"l":12.461},{"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},{"dsh":1,"oc":"#221f1f","x":56.884,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":80.397,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":80.397,"y":28.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":28.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":28.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":32.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":84.152,"y":3.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":3.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":3.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.152,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":8.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.152,"y":13.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.44,"y":13.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":3.031},{"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":3.031},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":22.485,"w":0.75,"l":3.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":1.531},{"oc":"#221f1f","x":84.152,"y":26.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":28.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":31.485,"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":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%203468%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.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.602,"y":2.822,"w":18.94,"clr":-1,"A":"left","R":[{"T":"Rehabilitation%20Credit%20and%20Energy%20Credit%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":47.155,"y":2.822,"w":4.964,"clr":-1,"A":"left","R":[{"T":"(continued)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":3.59,"w":27.561000000000003,"clr":-1,"A":"left","R":[{"T":"Combined%20heat%20and%20power%20system%20property%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":4.29,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.733,"y":4.29,"w":37.37799999999997,"clr":-1,"A":"left","R":[{"T":"You%20cannot%20claim%20this%20credit%20if%20the%20electrical%20capacity%20of%20the%20property%20is%20more%20than%2050","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":4.978,"w":15.298000000000004,"clr":-1,"A":"left","R":[{"T":"megawatts%20or%2067%2C000%20horsepower.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":5.853,"w":0.536,"clr":-1,"A":"left","R":[{"T":"l%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.127,"y":5.853,"w":42.72899999999996,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20acquired%20after%20October%203%2C%202008%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.132,"y":6.54,"w":42.452999999999975,"clr":-1,"A":"left","R":[{"T":"and%20the%20basis%20attributable%20to%20construction%2C%20%20reconstruction%2C%20%20or%20%20erection%20%20by%20%20the%20%20taxpayer%20%20after%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.133,"y":7.228,"w":7.263000000000002,"clr":-1,"A":"left","R":[{"T":"October%203%2C%202008","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.508,"y":7.228,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":"................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":7.2780000000000005,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":7.34,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2010%25%20(.10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.986,"y":7.34,"w":1.37,"clr":-1,"A":"left","R":[{"T":"12l","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":8.09,"w":0.906,"clr":-1,"A":"left","R":[{"T":"m","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":24.522,"clr":-1,"A":"left","R":[{"T":"If%20the%20electrical%20capacity%20of%20the%20property%20is%20measured%20in%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.79,"w":42.32299999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Megawatts%2C%20divide%2015%20by%20the%20megawatt%20capacity.%20Enter%201.0%20if%20the%20capacity%20is%2015%20megawatts%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.477,"w":2.037,"clr":-1,"A":"left","R":[{"T":"less.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.29,"w":44.191999999999965,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Horsepower%2C%20divide%2020%2C000%20by%20the%20horsepower.%20Enter%201.0%20if%20the%20capacity%20is%20%2020%2C000%20horsepower%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.977,"w":2.037,"clr":-1,"A":"left","R":[{"T":"less%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.189,"y":10.977,"w":42.65599999999997,"clr":-1,"A":"left","R":[{"T":"................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.485,"y":11.09,"w":2.0180000000000002,"clr":-1,"A":"left","R":[{"T":"12m","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.04,"y":11.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":12.59,"w":0.593,"clr":-1,"A":"left","R":[{"T":"n","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":12.357000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2012l%20by%20line%2012m","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":12.59,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.727,"y":12.59,"w":1.705,"clr":-1,"A":"left","R":[{"T":"12n","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.09,"w":24.44700000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20small%20wind%20energy%20property%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.915,"w":0.889,"clr":-1,"A":"left","R":[{"T":"o%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.915,"w":42.72899999999996,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20acquired%20after%20October%203%2C%202008%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":15.602,"w":41.622999999999976,"clr":-1,"A":"left","R":[{"T":"and%20before%20January%201%2C%202009%2C%20and%20the%20basis%20attributable%20to%20the%20construction%2C%20reconstruction%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.29,"w":33.75099999999998,"clr":-1,"A":"left","R":[{"T":"erection%20by%20the%20taxpayer%20after%20October%203%2C%202008%2C%20and%20before%20January%201%2C%202009%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":16.29,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.122,"y":16.977,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":17.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":17.09,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":17.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12o","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":18.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"p","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":16.968000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2012o%20or%20%244%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":18.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":18.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12p","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.102,"w":0.889,"clr":-1,"A":"left","R":[{"T":"q%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.102,"w":44.26699999999997,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20acquired%20after%20December%2031%2C%202008%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":20.79,"w":40.506999999999984,"clr":-1,"A":"left","R":[{"T":"and%20the%20basis%20attributable%20to%20construction%2C%20reconstruction%2C%20or%20erection%20by%20the%20taxpayer%20after%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":21.477,"w":9.079000000000002,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202008%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.567,"y":21.477,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":21.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":21.59,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":21.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12q","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":22.41400000000001,"clr":-1,"A":"left","R":[{"T":"Geothermal%20heat%20pump%20systems%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":23.853,"w":0.667,"clr":-1,"A":"left","R":[{"T":"r%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.853,"w":42.72899999999996,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20that%20was%20acquired%20after%20October%203%2C%202008%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":24.54,"w":12.800000000000004,"clr":-1,"A":"left","R":[{"T":"and%20the%20basis%20attributable%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.753999999999998,"y":24.54,"w":29.25500000000002,"clr":-1,"A":"left","R":[{"T":"construction%2C%20%20reconstruction%2C%20%20or%20%20erection%20%20by%20%20the%20%20taxpayer%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":25.228,"w":2.5,"clr":-1,"A":"left","R":[{"T":"after%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.765,"y":25.228,"w":7.541000000000002,"clr":-1,"A":"left","R":[{"T":"October%203%2C%202008%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.572,"y":25.228,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":25.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":25.34,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2010%25%20(.10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.885,"y":25.34,"w":1.5010000000000001,"clr":-1,"A":"left","R":[{"T":"12r","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":27.226000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified%20investment%20credit%20facility%20property%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":27.59,"w":0.537,"clr":-1,"A":"left","R":[{"T":"s","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":24.354,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20property%20placed%20in%20service%20during%20the%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.254,"y":27.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":27.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":27.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":27.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.946,"y":27.59,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.771,"y":27.59,"w":1.649,"clr":-1,"A":"left","R":[{"T":"12s","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":36.951999999999984,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20unused%20investment%20credit%20from%20cooperatives%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":29.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.54,"w":43.45099999999996,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011e%20through%2011j%2C%2011m%2C%2012a%2C%2012b%2C%2012e%2C%2012h%2C%2012k%2C%2012n%2C%2012p%2C%2012q%2C%2012r%2C%2012s%2C%20and%2013.%20Report%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":31.227,"w":15.526000000000007,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Form%203800%2C%20line%204a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.879,"y":31.227,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.154,"y":32.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":32.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"3468","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":32.072,"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":"NAM3","EN":0},"TI":2136,"AM":1024,"x":19.166,"y":2.205,"w":44.947,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":2137,"AM":1024,"x":75.841,"y":2.178,"w":16.49,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS5L","EN":0},"TI":2138,"AM":0,"x":56.961,"y":7.483,"w":13.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS5LL","EN":0},"TI":2139,"AM":1024,"x":84.314,"y":7.352,"w":11.112,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ELECMEAS","EN":0},"TI":2140,"AM":0,"x":84.512,"y":11.048,"w":11.112,"h":0.908,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESSER3","EN":0},"TI":2141,"AM":1024,"x":84.624,"y":12.578,"w":10.937,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS5O","EN":0},"TI":2142,"AM":0,"x":56.959,"y":17.264,"w":12.403,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS5OO","EN":0},"TI":2143,"AM":0,"x":84.173,"y":17.095,"w":11.037,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER","EN":0},"TI":2144,"AM":1024,"x":84.261,"y":18.632,"w":11.086,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISAFT","EN":0},"TI":2145,"AM":0,"x":56.959,"y":21.764,"w":12.403,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASAAMT","EN":0},"TI":2146,"AM":1024,"x":84.248,"y":21.625,"w":11.037,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISHP8","EN":0},"TI":2147,"AM":0,"x":56.943,"y":25.583,"w":12.478,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISHPA","EN":0},"TI":2148,"AM":1024,"x":84.392,"y":25.387,"w":10.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISCFP","EN":0},"TI":2149,"AM":0,"x":57.028,"y":27.791,"w":12.478,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASISCFA","EN":0},"TI":2150,"AM":1024,"x":84.276,"y":27.639,"w":11.12,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COOPCR","EN":0},"TI":2151,"AM":0,"x":84.405,"y":29.112,"w":11.086,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STOT1","EN":0},"TI":2152,"AM":1024,"x":84.351,"y":31.361,"w":11.045,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F3800.content.txt b/test/data/fd/form/F3800.content.txt new file mode 100755 index 00000000..6ea5ef81 --- /dev/null +++ b/test/data/fd/form/F3800.content.txt @@ -0,0 +1,244 @@ +Form +3800 +Department of the Treasury +Internal Revenue Service (99) +General Business Credit +a + +Information about Form 3800 and its separate instructions is at +www.irs.gov/form3800. + +a + You must attach all pages of Form 3800, pages 1, 2, and 3, to your tax return. +OMB No. 1545-0895 +20 +13 +Attachment +Sequence No. +22 +Name(s) shown on return +Identifying number +Part I +Current Year Credit for Credits Not Allowed Against Tentative Minimum Tax (TMT) +(See instructions and complete Part(s) III before Parts I and II) +1 +General business credit from line 2 of all Parts III with box A checked +......... +1 +2 +Passive activity credits from line 2 of all Parts III with box B checked +2 +3 +Enter the applicable passive activity credits allowed for 2013 (see instructions) +...... +3 +4 +Carryforward of general business credit to 2013. Enter the amount from line 2 of Part III with +box C checked. See instructions for statement to attach +............. +4 +5 +Carryback of general business credit from 2014. Enter the amount from line 2 of Part III with +box D checked (see instructions) +..................... +5 +6 +Add lines 1, 3, 4, and 5 +........................ +6 +Part II +Allowable Credit +7 +Regular tax before credits: +• Individuals. Enter the amount from Form 1040, line 44, or Form 1040NR, line 42 . +• Corporations. Enter the amount from Form 1120, Schedule J, Part I, line 2; or the +applicable line of your return +.................. +• Estates and trusts. Enter the sum of the amounts from Form 1041, Schedule G, +lines 1a and 1b; or the amount from the applicable line of your return +.... +} +.. +7 +8 +Alternative minimum tax: +• Individuals. Enter the amount from Form 6251, line 35 +........ +• Corporations. Enter the amount from Form 4626, line 14 +........ +• Estates and trusts. Enter the amount from Schedule I (Form 1041), line 56 . . +} +... +8 +9 +Add lines 7 and 8 +.......................... +9 +10a +Foreign tax credit +................ +10a +b +Certain allowable credits (see instructions) +........ +10b +c +Add lines 10a and 10b +........................ +10c +11 +Net income tax. +Subtract line 10c from line 9. If zero, skip lines 12 through 15 and enter -0- on line 16 +11 +12 +Net regular tax. +Subtract line 10c from line 7. If zero or less, enter -0- +12 +13 +Enter 25% (.25) of the excess, if any, of line 12 over $25,000 (see +instructions) +.................. +13 +14 +Tentative minimum tax: +• Individuals. Enter the amount from Form 6251, line 33 . . . +• Corporations. Enter the amount from Form 4626, line 12 . . . +• Estates and trusts. Enter the amount from Schedule I +(Form 1041), line 54 +............... +} +14 +15 +Enter the greater of line 13 or line 14 +.................... +15 +16 +Subtract line 15 from line 11. If zero or less, enter -0- +.............. +16 +17 +Enter the +smaller + of line 6 or line 16 +.................... +17 +C corporations: +See the line 17 instructions if there has been an ownership change, acquisition, + +or reorganization. +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 12392F +Form +3800 + (2013) +CAUTION: + Part III of Form 3800 must be completed before beginning Part I or Part II. +----------------Page (0) Break---------------- +Form 3800 (2013) +Page +2 +Part II +Allowable Credit +(Continued) +Note. +If you are not required to report any amounts on lines 22 or 24 below, skip lines 18 through 25 and enter -0- on line 26. +18 +Multiply line 14 by 75% (.75) (see instructions) +................. +18 +19 +Enter the greater of line 13 or line 18 +.................... +19 +20 +Subtract line 19 from line 11. If zero or less, enter -0- +.............. +20 +21 +Subtract line 17 from line 20. If zero or less, enter -0- +.............. +21 +22 +Combine the amounts from line 3 of all Parts III with box A, C, or D checked +....... +22 +23 +Passive activity credit from line 3 of all Parts III with box B checked +23 +24 +Enter the applicable passive activity credit allowed for 2013 (see instructions) +...... +24 +25 +Add lines 22 and 24 +......................... +25 +26 +Empowerment zone and renewal community employment credit allowed. Enter the smaller of +line 21 or line 25 +.......................... +26 +27 +Subtract line 13 from line 11. If zero or less, enter -0- +.............. +27 +28 +Add lines 17 and 26 +......................... +28 +29 +Subtract line 28 from line 27. If zero or less, enter -0- +.............. +29 +30 +Enter the general business credit from line 5 of all Parts III with box A checked +...... +30 +31 +Reserved +............................. +31 +32 +Passive activity credits from line 5 of all Parts III with box B checked +32 +33 +Enter the applicable passive activity credits allowed for 2013 (see instructions) +...... +33 +34 +Carryforward of business credit to 2013. Enter the amount from line 5 of Part III with box C +checked and line 6 of Part III with box G checked. See instructions for statement to attach . . +34 +35 +Carryback of business credit from 2014. Enter the amount from line 5 of Part III with box D +checked (see instructions) +....................... +35 +36 +Add lines 30, 33, 34, and 35 +....................... +36 +37 +Enter the +smaller + of line 29 or line 36 +................... +37 +38 Credit allowed for the current year. +Add lines 28 and 37. +Report the amount from line 38 (if smaller than the sum of Part I, line 6, and Part II, lines 25 and +36, see instructions) as indicated below or on the applicable line of your return: +• Individuals. Form 1040, line 53, or Form 1040NR, line 50 +...... +• Corporations. Form 1120, Schedule J, Part I, line 5c +........ +• Estates and trusts. Form 1041, Schedule G, line 2b +........ +} +.... +38 + +Form +3800 +(2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F3800.fields.json b/test/data/fd/form/F3800.fields.json new file mode 100755 index 00000000..de2d07c2 --- /dev/null +++ b/test/data/fd/form/F3800.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add_F3800MLT","type":"link","calc":false,"value":""},{"id":"G1GBN","type":"number","calc":false,"value":""},{"id":"G1GBP","type":"number","calc":false,"value":""},{"id":"G1GBPA","type":"number","calc":false,"value":""},{"id":"G1GBCF","type":"number","calc":false,"value":""},{"id":"G1GBCB","type":"number","calc":false,"value":""},{"id":"G1GBTOT","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12A","type":"number","calc":false,"value":""},{"id":"VARCR","type":"number","calc":false,"value":""},{"id":"L12L","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18A","type":"number","calc":true,"value":""},{"id":"SMALLER1","type":"number","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"MULT1","type":"number","calc":false,"value":""},{"id":"GREATER1","type":"number","calc":true,"value":""},{"id":"SUBTR1","type":"number","calc":true,"value":""},{"id":"SUBTR2","type":"number","calc":true,"value":""},{"id":"F8844","type":"number","calc":false,"value":""},{"id":"F8844GP","type":"number","calc":false,"value":""},{"id":"F8844GPA","type":"number","calc":false,"value":""},{"id":"F8844G","type":"number","calc":true,"value":""},{"id":"SMALLER3","type":"number","calc":true,"value":""},{"id":"SUBTR3","type":"number","calc":true,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""},{"id":"SUBTR4","type":"number","calc":true,"value":""},{"id":"G2GBN","type":"number","calc":false,"value":""},{"id":"G2GESP","type":"number","calc":false,"value":""},{"id":"G2GESPA","type":"number","calc":false,"value":""},{"id":"G2GESCF","type":"number","calc":false,"value":""},{"id":"G2GESCB","type":"number","calc":false,"value":""},{"id":"SUBTOT3","type":"number","calc":true,"value":""},{"id":"SMALLER4","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F3800.json b/test/data/fd/form/F3800.json new file mode 100755 index 00000000..495da836 --- /dev/null +++ b/test/data/fd/form/F3800.json @@ -0,0 +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.27,"y":4.455,"w":1.5,"l":14.936},{"oc":"#221f1f","x":21.12,"y":4.454,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.19,"y":2.203,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.19,"y":4.454,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.273,"y":5.953,"w":1.125,"l":71.861},{"oc":"#221f1f","x":78.049,"y":5.953,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.252,"y":7.453,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.87,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":9.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":10.493,"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":79.157,"y":11.989,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":13.485,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":13.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":13.5,"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":14.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":15,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21.75,"w":1.125,"l":3.798},{"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":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":59.357,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":27,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":27,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":27,"w":1.125,"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":59.357,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36.75,"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":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":79.157,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":38.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":40.5,"w":1.5,"l":43.398},{"oc":"#221f1f","x":49.457,"y":40.5,"w":1.5,"l":34.736},{"oc":"#221f1f","x":84.107,"y":40.5,"w":1.5,"l":14.936}],"VLines":[{"oc":"#221f1f","x":21.163,"y":1.439,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.276,"y":1.439,"w":1.5,"l":0.78},{"oc":"#221f1f","x":84.276,"y":2.187,"w":1.5,"l":2.281},{"oc":"#221f1f","x":84.276,"y":3.314,"w":1.5,"l":1.172},{"oc":"#221f1f","x":78.092,"y":4.437,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":8.234,"w":0.75,"l":0.779},{"oc":"#221f1f","x":79.2,"y":8.234,"w":0.75,"l":0.779},{"oc":"#221f1f","x":95.288,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":8.984,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.2,"y":8.984,"w":0.75,"l":0.797},{"oc":"#221f1f","x":82.913,"y":9.73,"w":0.75,"l":0.779},{"oc":"#221f1f","x":79.2,"y":9.73,"w":0.75,"l":0.779},{"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":82.913,"y":10.478,"w":0.75,"l":1.527},{"oc":"#221f1f","x":79.2,"y":10.478,"w":0.75,"l":1.527},{"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":82.913,"y":11.973,"w":0.75,"l":1.535},{"oc":"#221f1f","x":79.2,"y":11.973,"w":0.75,"l":1.535},{"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.789},{"oc":"#221f1f","x":82.913,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.984,"w":0.75,"l":2.298},{"oc":"#221f1f","x":79.2,"y":14.984,"w":0.75,"l":2.298},{"oc":"#221f1f","x":82.913,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":2.282},{"oc":"#221f1f","x":95.288,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.984,"w":0.75,"l":3.047},{"oc":"#221f1f","x":79.2,"y":17.984,"w":0.75,"l":3.047},{"oc":"#221f1f","x":82.913,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":21.727,"w":0.75,"l":1.555},{"oc":"#221f1f","x":79.2,"y":21.727,"w":0.75,"l":1.555},{"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":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.985,"w":0.75,"l":2.297},{"oc":"#221f1f","x":79.2,"y":23.985,"w":0.75,"l":2.297},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":26.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":26.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.113,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"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":63.113,"y":29.984,"w":0.75,"l":1.547},{"oc":"#221f1f","x":59.4,"y":29.984,"w":0.75,"l":1.547},{"oc":"#221f1f","x":63.113,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":32.234,"w":0.75,"l":1.547},{"oc":"#221f1f","x":59.4,"y":32.234,"w":0.75,"l":1.547},{"oc":"#221f1f","x":63.113,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":32.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.477,"w":0.75,"l":7.555},{"oc":"#221f1f","x":79.2,"y":28.477,"w":0.75,"l":7.555},{"oc":"#221f1f","x":82.913,"y":35.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":35.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":7.531},{"oc":"#221f1f","x":95.288,"y":35.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"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":95.288,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":38.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":38.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":38.235,"w":0.75,"l":2.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.295,"y":5.953,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":9,"w":3.712,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":14.25,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":15,"w":3.712,"h":2.251,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":18,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":21.75,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":24,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":59.4,"y":30,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":59.4,"y":32.25,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":28.5,"w":3.712,"h":7.5,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":38.25,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":6.063,"y":1.838,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.874,"y":1.838,"w":2.08,"clr":-1,"A":"left","R":[{"T":"3800","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":6.063,"y":2.954,"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":6.063,"y":3.4539999999999997,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":39.5,"y":1.367,"w":10.780000000000001,"clr":-1,"A":"left","R":[{"T":"General%20Business%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":23.395,"y":2.616,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.812,"y":2.71,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%203800%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.387,"y":2.71,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform3800.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.627,"y":3.241,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.658,"y":3.335,"w":36.83899999999999,"clr":-1,"A":"left","R":[{"T":"%20You%20must%20attach%20all%20pages%20of%20Form%203800%2C%20pages%201%2C%202%2C%20and%203%2C%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.866,"y":1.176,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0895","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.982,"y":2.502,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.327,"y":2.502,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":86.088,"y":2.979,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.088,"y":3.444,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.066,"y":3.444,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.066,"y":4.14,"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.529,"y":4.14,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":6.944,"y":5.774,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.708,"y":5.774,"w":39.28799999999999,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Credit%20for%20Credits%20Not%20Allowed%20Against%20Tentative%20Minimum%20Tax%20(TMT)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.708,"y":6.462,"w":27.353999999999996,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20and%20complete%20Part(s)%20III%20before%20Parts%20I%20and%20II)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.565,"y":8.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":30.983999999999995,"clr":-1,"A":"left","R":[{"T":"General%20business%20credit%20from%20line%202%20of%20all%20Parts%20III%20with%20box%20A%20checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.563,"y":8.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":8.087,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.839,"w":30.94599999999999,"clr":-1,"A":"left","R":[{"T":"Passive%20activity%20credits%20from%20line%202%20of%20all%20Parts%20III%20with%20box%20B%20checked%20%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":60.576,"y":8.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":9.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":9.589,"w":34.855,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20passive%20activity%20credits%20allowed%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":9.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":9.582,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":10.289,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.289,"w":41.541999999999994,"clr":-1,"A":"left","R":[{"T":"Carryforward%20of%20general%20business%20credit%20to%202013.%20Enter%20the%20amount%20from%20line%202%20of%20Part%20III%20with%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.977,"w":25.543000000000003,"clr":-1,"A":"left","R":[{"T":"box%20C%20checked.%20See%20instructions%20for%20statement%20to%20attach%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":10.977,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":11.078,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":11.789,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.789,"w":41.47099999999999,"clr":-1,"A":"left","R":[{"T":"Carryback%20of%20general%20business%20credit%20from%202014.%20Enter%20the%20amount%20from%20line%202%20of%20Part%20III%20with%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.477,"w":14.595000000000002,"clr":-1,"A":"left","R":[{"T":"box%20D%20checked%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":12.477,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":12.574,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":13.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.339,"w":10.561000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%2C%203%2C%204%2C%20and%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":13.339,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":13.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":6.582,"y":14.071,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":14.071,"w":8.123999999999999,"clr":-1,"A":"left","R":[{"T":"Allowable%20Credit%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":14.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":11.833000000000004,"clr":-1,"A":"left","R":[{"T":"Regular%20tax%20before%20credits%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.588999999999999,"w":37.311,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Enter%20the%20amount%20from%20Form%201040%2C%20line%2044%2C%20or%20Form%201040NR%2C%20line%2042%20%20%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.289,"w":37.14099999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Corporations.%20Enter%20the%20amount%20from%20Form%201120%2C%20Schedule%20J%2C%20Part%20I%2C%20line%202%3B%20or%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.428,"y":16.977,"w":12.983000000000002,"clr":-1,"A":"left","R":[{"T":"applicable%20line%20of%20your%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.743,"y":16.977,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.872,"y":17.789,"w":36.421,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Estates%20and%20trusts.%20Enter%20the%20sum%20of%20the%20amounts%20from%20Form%201041%2C%20Schedule%20G%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.414,"y":18.477,"w":30.898,"clr":-1,"A":"left","R":[{"T":"lines%201a%20and%201b%3B%20or%20the%20amount%20from%20the%20applicable%20line%20of%20your%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.605,"y":18.477,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.243,"y":17.988,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,15.6,0,0]}]},{"oc":"#221f1f","x":74,"y":17.089,"w":2.666,"clr":-1,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":17.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":19.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.339,"w":11.319000000000003,"clr":-1,"A":"left","R":[{"T":"Alternative%20minimum%20tax%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":20.089,"w":25.01000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Enter%20the%20amount%20from%20Form%206251%2C%20line%2035%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":20.089,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":20.839,"w":26.08300000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Corporations.%20Enter%20the%20amount%20from%20Form%204626%2C%20line%2014%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.307,"y":20.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":21.589,"w":33.845,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Estates%20and%20trusts.%20Enter%20the%20amount%20from%20Schedule%20I%20(Form%201041)%2C%20line%2056%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.68,"y":21.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.742,"y":21.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.71,"y":21.296,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17,0,0]}]},{"oc":"#221f1f","x":71.938,"y":20.839,"w":3.9989999999999997,"clr":-1,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":20.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":23.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":23.089,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":23.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":24.589,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"10a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.589,"w":8.111,"clr":-1,"A":"left","R":[{"T":"Foreign%20tax%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":24.589,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.702,"y":24.589,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"10a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":25.339,"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.339,"w":19.407000000000007,"clr":-1,"A":"left","R":[{"T":"Certain%20allowable%20credits%20(see%20instructions)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":25.339,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.674,"y":25.339,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"10b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":26.089,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.089,"w":10.301,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010a%20and%2010b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":26.089,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.502,"y":26.089,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"10c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":27.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.589,"w":7.757999999999999,"clr":-1,"A":"left","R":[{"T":"Net%20income%20tax.%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":22.048,"y":27.589,"w":38.399999999999984,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010c%20from%20line%209.%20If%20zero%2C%20skip%20lines%2012%20through%2015%20and%20enter%20-0-%20on%20line%2016%20%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":79.946,"y":27.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":7.629999999999999,"clr":-1,"A":"left","R":[{"T":"Net%20regular%20tax.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":22.1,"y":29.089,"w":24.095999999999993,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010c%20from%20line%207.%20If%20zero%20or%20less%2C%20enter%20-0-%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":60.146,"y":29.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.54,"w":29.248000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%2025%25%20(.25)%20of%20the%20excess%2C%20if%20any%2C%20of%20line%2012%20over%20%2425%2C000%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.227,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.374,"y":31.227,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.146,"y":31.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":10.412000000000003,"clr":-1,"A":"left","R":[{"T":"Tentative%20minimum%20tax%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.84,"w":25.01000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Enter%20the%20amount%20from%20Form%206251%2C%20line%2033%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":33.589,"w":26.361000000000008,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Corporations.%20Enter%20the%20amount%20from%20Form%204626%2C%20line%2012%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.295,"y":33.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.357,"y":33.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":34.29,"w":25.008,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Estates%20and%20trusts.%20Enter%20the%20amount%20from%20Schedule%20I%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.431,"y":34.977,"w":9.115000000000004,"clr":-1,"A":"left","R":[{"T":"(Form%201041)%2C%20line%2054%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.559,"y":34.977,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.238,"y":34.26,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17,0,0]}]},{"oc":"#221f1f","x":60.146,"y":33.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.839,"w":16.503000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20greater%20of%20line%2013%20or%20line%2014%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":35.839,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":35.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":36.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.589,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2011.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":36.589,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":36.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":37.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.339,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.564,"y":37.339,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.972,"y":37.339,"w":8.465000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%206%20or%20line%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":37.339,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":37.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.039,"w":7.6850000000000005,"clr":-1,"A":"left","R":[{"T":"C%20corporations%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.819,"y":38.039,"w":35.32199999999999,"clr":-1,"A":"left","R":[{"T":"See%20the%20line%2017%20instructions%20if%20there%20has%20been%20an%20ownership%20change%2C%20acquisition%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":38.727,"w":8.091000000000003,"clr":-1,"A":"left","R":[{"T":"or%20reorganization.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":40.357,"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":62.162,"y":40.375,"w":7.614000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012392F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":40.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":40.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"3800","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":40.321,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":6.279,"y":7.423,"w":57.60000000000001,"clr":24,"A":"left","R":[{"T":"CAUTION%3A","S":-1,"TS":[3,11.498784,1,0]}]},{"x":13.29,"y":7.423,"w":568.7999999999997,"clr":0,"A":"left","R":[{"T":"%20%20Part%20III%20of%20Form%203800%20must%20be%20completed%20before%20beginning%20Part%20I%20or%20Part%20II.%20%20","S":-1,"TS":[3,11.498784,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2153,"AM":1024,"x":6.395,"y":5,"w":59.585,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2154,"AM":1024,"x":78.15,"y":4.973,"w":11.741,"h":0.905,"TU":"Identifying number"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F3800MLT"}},"id":{"Id":"Add_F3800MLT","EN":0},"TI":2155,"AM":0,"x":81.728,"y":7.401,"w":6.311,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G1GBN","EN":0},"TI":2156,"AM":0,"x":82.85,"y":8.303,"w":12.381,"h":0.833,"TU":"Line 1. General business credit from line 2 of all Parts III with box A checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G1GBP","EN":0},"TI":2157,"AM":0,"x":63.113,"y":9.093,"w":12.455,"h":0.833,"TU":"Line 2. Passive activity credits from line 2 of all Parts III with box B checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G1GBPA","EN":0},"TI":2158,"AM":0,"x":82.925,"y":9.665,"w":12.381,"h":0.833,"TU":"Line 3. Enter the applicable passive activity credits allowed for 2013 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G1GBCF","EN":0},"TI":2159,"AM":0,"x":82.925,"y":11.217,"w":12.305,"h":0.833,"TU":"Line 4. Carryforward of general business credit to 2013. Enter the amount from line 2 of Part III with box C checked. See instructions for statement to attach."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G1GBCB","EN":0},"TI":2160,"AM":0,"x":82.925,"y":12.741,"w":12.305,"h":0.833,"TU":"Line 5. Carryback of general business credit from 2014. Enter the amount from line 2 of Part III with box D checked (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G1GBTOT","EN":0},"TI":2161,"AM":1024,"x":83.066,"y":13.509,"w":12.424,"h":0.833,"TU":"Line 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2162,"AM":1024,"x":82.85,"y":17.233,"w":12.38,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2163,"AM":1024,"x":82.85,"y":20.936,"w":12.38,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2164,"AM":1024,"x":82.969,"y":23.099,"w":12.357,"h":0.863},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":2165,"AM":0,"x":63.087,"y":24.758,"w":12.373,"h":0.833,"TU":"Line 10a. Foreign tax credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VARCR","EN":0},"TI":2166,"AM":0,"x":63.141,"y":25.565,"w":12.339,"h":0.833,"TU":"Line 10b. Certain allowable credits (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12L","EN":0},"TI":2167,"AM":1024,"x":82.935,"y":26.105,"w":12.275,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2168,"AM":1024,"x":82.948,"y":27.674,"w":12.249,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2169,"AM":1024,"x":63.087,"y":29.258,"w":12.448,"h":0.833,"TU":"12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2170,"AM":0,"x":63.094,"y":31.361,"w":12.432,"h":0.874,"TU":"Line 13. Enter 25% (.25) of the excess, if any, of line 12 over $25,000 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":2171,"AM":0,"x":63.094,"y":33.611,"w":12.357,"h":0.874,"TU":"Line 14. Tentative minimum tax. Individuals.. Enter the amount from Form 6251, line 33."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2172,"AM":1024,"x":82.861,"y":36.003,"w":12.35,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A","EN":0},"TI":2173,"AM":1024,"x":82.941,"y":36.795,"w":12.264,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER1","EN":0},"TI":2174,"AM":0,"x":82.941,"y":37.538,"w":12.264,"h":0.833,"TU":"Line 17. Enter the smaller of line 6 or line 16."}],"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.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":4.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":6,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":7.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":7.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":7.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":9,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":9,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":9,"w":1.125,"l":3.798},{"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":82.87,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":13.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.07,"y":13.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.445,"y":13.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":15,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":15,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":15,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":16.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":18.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":18.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":20.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":20.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":20.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21.75,"w":1.125,"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":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":59.359,"y":27.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.071,"y":27.75,"w":1.125,"l":12.46},{"oc":"#221f1f","x":75.445,"y":27.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":26.25,"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":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":31.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":33.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":33.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":35.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":42,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":82.913,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":4.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":5.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":5.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":5.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":6.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":7.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":7.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":8.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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":82.913,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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":63.113,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.4,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":11.984,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":11.984,"w":0.75,"l":1.547},{"oc":"#221f1f","x":82.913,"y":13.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":13.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":16.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.2,"y":16.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":18.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":18.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":19.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":20.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":20.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":26.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":26.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":26.984,"w":0.75,"l":0.789},{"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":82.913,"y":27.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":27.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":29.234,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.2,"y":29.234,"w":0.75,"l":2.289},{"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.789},{"oc":"#221f1f","x":82.913,"y":31.484,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.2,"y":31.484,"w":0.75,"l":2.289},{"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.789},{"oc":"#221f1f","x":82.913,"y":33.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":33.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":36.727,"w":0.75,"l":4.555},{"oc":"#221f1f","x":79.2,"y":36.727,"w":0.75,"l":4.555},{"oc":"#221f1f","x":82.913,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":4.532},{"oc":"#221f1f","x":95.288,"y":41.235,"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.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":12,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":25.5,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":95.288,"y":25.5,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":26.25,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":36.75,"w":3.712,"h":4.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%203800%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.582,"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":14.6,"y":2.821,"w":8.123999999999999,"clr":-1,"A":"left","R":[{"T":"Allowable%20Credit%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.563,"y":2.821,"w":5.149000000000001,"clr":-1,"A":"left","R":[{"T":"(Continued)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.5890000000000004,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.321,"y":3.5890000000000004,"w":52.92299999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20not%20required%20to%20report%20any%20amounts%20on%20lines%2022%20or%2024%20below%2C%20skip%20lines%2018%20through%2025%20and%20enter%20-0-%20on%20line%2026.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":5.089,"w":20.487000000000013,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2014%20by%2075%25%20(.75)%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":5.089,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":5.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":6.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":6.589,"w":16.503000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20greater%20of%20line%2013%20or%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":6.589,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":6.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":8.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":8.089,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2019%20from%20line%2011.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":8.089,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":8.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":9.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":9.589,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2017%20from%20line%2020.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":9.589,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":9.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":11.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":11.089,"w":34.080999999999996,"clr":-1,"A":"left","R":[{"T":"Combine%20the%20amounts%20from%20line%203%20of%20all%20Parts%20III%20with%20box%20A%2C%20C%2C%20or%20D%20checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":11.089,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":11.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%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":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":12.589,"w":30.44599999999999,"clr":-1,"A":"left","R":[{"T":"Passive%20activity%20credit%20from%20line%203%20of%20all%20Parts%20III%20with%20box%20B%20checked%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.146,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":14.089,"w":34.355,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20passive%20activity%20credit%20allowed%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":14.089,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":14.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":15.588999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":15.588999999999999,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2022%20and%2024","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":15.588999999999999,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":15.588999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.039,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.039,"w":41.48899999999999,"clr":-1,"A":"left","R":[{"T":"Empowerment%20zone%20and%20renewal%20community%20employment%20credit%20allowed.%20Enter%20the%20smaller%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":17.726,"w":7.595000000000002,"clr":-1,"A":"left","R":[{"T":"line%2021%20or%20line%2025%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.506,"y":17.726,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":17.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":19.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":19.339,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%2011.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":19.339,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":19.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":20.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":20.839,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2017%20and%2026","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.563,"y":20.839,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":20.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":22.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":22.339,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2027.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.251,"y":22.339,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":22.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":23.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":23.839,"w":34.83699999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20general%20business%20credit%20from%20line%205%20of%20all%20Parts%20III%20with%20box%20A%20checked","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.75,"y":23.839,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":23.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":25.339,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.313,"y":25.339,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":26.839,"w":30.667999999999992,"clr":-1,"A":"left","R":[{"T":"Passive%20activity%20credits%20from%20line%205%20of%20all%20Parts%20III%20with%20box%20B%20checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":28.339,"w":35.132999999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20passive%20activity%20credits%20allowed%20for%202013%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.75,"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":"33","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":29.789,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":29.789,"w":40.653,"clr":-1,"A":"left","R":[{"T":"Carryforward%20of%20business%20credit%20to%202013.%20Enter%20the%20amount%20from%20line%205%20of%20Part%20III%20with%20box%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":30.477,"w":40.45199999999997,"clr":-1,"A":"left","R":[{"T":"checked%20and%20line%206%20of%20Part%20III%20with%20box%20G%20checked.%20See%20instructions%20for%20statement%20to%20attach%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":30.477,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":30.477,"w":0.278,"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":"34","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":32.039,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":32.039,"w":40.564,"clr":-1,"A":"left","R":[{"T":"Carryback%20of%20business%20credit%20from%202014.%20Enter%20the%20amount%20from%20line%205%20of%20Part%20III%20with%20box%20D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.727,"w":11.928000000000003,"clr":-1,"A":"left","R":[{"T":"checked%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.684,"y":32.727,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":32.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":34.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":34.339,"w":12.507000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2030%2C%2033%2C%2034%2C%20and%2035","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.687,"y":34.339,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":34.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":35.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"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":17.571,"y":35.839,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.979,"y":35.839,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2029%20or%20line%2036%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":35.839,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":35.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":37.342,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":37.342,"w":16.942999999999998,"clr":-1,"A":"left","R":[{"T":"Credit%20allowed%20for%20the%20current%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.103,"y":37.342,"w":9.449000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2028%20and%2037.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":38.042,"w":42.67999999999997,"clr":-1,"A":"left","R":[{"T":"Report%20the%20amount%20from%20line%2038%20(if%20smaller%20than%20the%20sum%20of%20Part%20I%2C%20line%206%2C%20and%20Part%20II%2C%20lines%2025%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":38.729,"w":35.727999999999994,"clr":-1,"A":"left","R":[{"T":"36%2C%20see%20instructions)%20%20as%20indicated%20below%20or%20on%20the%20applicable%20line%20of%20your%20return%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":39.589,"w":26.158000000000012,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Form%201040%2C%20line%2053%2C%20or%20Form%201040NR%2C%20line%2050%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.382,"y":39.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":40.339,"w":24.209999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Corporations.%20Form%201120%2C%20Schedule%20J%2C%20Part%20I%2C%20line%205c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.255,"y":40.339,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":41.089,"w":23.545000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Estates%20and%20trusts.%20Form%201041%2C%20Schedule%20G%2C%20line%202b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":41.089,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.351,"y":40.554,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,14.2,0,0]}]},{"oc":"#221f1f","x":69.875,"y":40.339,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":41.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.008,"y":41.821,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":41.821,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"3800%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.451,"y":41.821,"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":2175,"AM":1024,"x":18.417,"y":2.178,"w":49.889,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2176,"AM":1024,"x":73.594,"y":2.151,"w":10.434,"h":0.858},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT1","EN":0},"TI":2177,"AM":0,"x":82.873,"y":5.139,"w":12.324,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GREATER1","EN":0},"TI":2178,"AM":1024,"x":82.948,"y":6.666,"w":12.249,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR1","EN":0},"TI":2179,"AM":1024,"x":82.85,"y":8.249,"w":12.381,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR2","EN":0},"TI":2180,"AM":1024,"x":82.85,"y":9.774,"w":12.455,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8844","EN":0},"TI":2181,"AM":0,"x":82.851,"y":11.244,"w":12.455,"h":0.833,"TU":"Line 22. Combine the amounts from line 3 of all Part III with box A, C or D checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8844GP","EN":0},"TI":2182,"AM":0,"x":63.113,"y":12.714,"w":12.455,"h":0.833,"TU":"Line 23. Passive activity credit from line 3 of all Parts III with box B checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8844GPA","EN":0},"TI":2183,"AM":0,"x":82.926,"y":14.129,"w":12.38,"h":0.858,"TU":"Line 24. Enter the applicable passive activity credit allowed for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8844G","EN":0},"TI":2184,"AM":1024,"x":82.926,"y":15.736,"w":12.305,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER3","EN":0},"TI":2185,"AM":1024,"x":82.925,"y":17.941,"w":12.305,"h":0.833,"TU":"Empowerment zone and renewal community employment credit allowed. Enter the smaller of line 21 or line 25."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR3","EN":0},"TI":2186,"AM":1024,"x":82.948,"y":19.533,"w":12.399,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":2187,"AM":1024,"x":83.023,"y":20.924,"w":12.249,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR4","EN":0},"TI":2188,"AM":1024,"x":83.023,"y":22.424,"w":12.174,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G2GBN","EN":0},"TI":2189,"AM":0,"x":82.948,"y":23.916,"w":12.249,"h":0.833,"TU":"Line 30. Enter the general business credit from line 5 of all Parts III with box B checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G2GESP","EN":0},"TI":2190,"AM":0,"x":63.161,"y":26.98,"w":12.448,"h":0.833,"TU":"Line 32. Passive activity credits from line 5 of all Parts III with box B checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G2GESPA","EN":0},"TI":2191,"AM":0,"x":83.01,"y":28.384,"w":12.275,"h":0.851,"TU":"Line 33. Enter the applicable passive activity credits allowed for 2013 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G2GESCF","EN":0},"TI":2192,"AM":0,"x":82.969,"y":30.564,"w":12.283,"h":0.833,"TU":"Line 34. Carryforward of business credit to 2013. Enter the amount from line 5 of Part III with box C checked and line 6 of Part III with box G checked. See instructions for statement to attach."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G2GESCB","EN":0},"TI":2193,"AM":0,"x":82.969,"y":32.868,"w":12.283,"h":0.836,"TU":"Line 35. Carryback of business credit from 2014. Enter the amount from line 5 of Part III with box D checked (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3","EN":0},"TI":2194,"AM":1024,"x":82.948,"y":34.506,"w":12.324,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER4","EN":0},"TI":2195,"AM":1024,"x":83.023,"y":35.951,"w":12.249,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2196,"AM":1024,"x":83.01,"y":41.067,"w":12.2,"h":0.903}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F3800MLT.content.txt b/test/data/fd/form/F3800MLT.content.txt new file mode 100755 index 00000000..03da11a8 --- /dev/null +++ b/test/data/fd/form/F3800MLT.content.txt @@ -0,0 +1,220 @@ +Form 3800 (2013) +Page +3 +Part III +General Business Credits or Eligible Small Business Credits + +(see instructions) +Name(s) shown on return +Identifying number +Complete a separate Part III for each box checked below. (see instructions) +A +General Business Credit From a Non-Passive Activity +B +General Business Credit From a Passive Activity +C +General Business Credit Carryforwards +D +General Business Credit Carrybacks +E +Reserved +F +Reserved +G +Eligible Small Business Credit Carryforwards +H +Reserved +I +If you are filing more than one Part III with box A or B checked, complete and attach first an additional Part III combining am +ounts from all Parts +III with box A or B checked. Check here if this is the consolidated Part III +.................... + +a +(a) +Description of credit +Note. + On any line where the credit is from more than one source, a separate Part III is needed for each +pass-through entity. +(b) +If claiming the credit +from a pass-through +entity, enter the EIN +(c) +Enter the appropriate +amount + + + + +1a +Investment (Form 3468, Part II only) (attach Form 3468) +....... +1a +b +Reserved +...................... +1b +c +Increasing research activities (Form 6765) +........... +1c +d +Low-income housing (Form 8586, Part I only) +.......... +1d +e +Disabled access (Form 8826) (see instructions for limitation) +..... +1e +f +Renewable electricity, refined coal, and Indian coal production (Form 8835) +1f +g +Indian employment (Form 8845) +............... +1g +h +Orphan drug (Form 8820) +................. +1h +i +New markets (Form 8874) +................. +1i +j +Small employer pension plan startup costs (Form 8881) (see instructions for limitation) +1j +k +Employer-provided child care facilities and services (Form 8882) (see +instructions for limitation) +................. +1k +l +Biodiesel and renewable diesel fuels (attach Form 8864) +....... +1l +m +Low sulfur diesel fuel production (Form 8896) +.......... +1m +n +Distilled spirits (Form 8906) +................ +1n +o +Nonconventional source fuel (Form 8907) +........... +1o +p +Energy efficient home (Form 8908) +.............. +1p +q +Energy efficient appliance (Form 8909) +............ +1q +r +Alternative motor vehicle (Form 8910) +............. +1r +s +Alternative fuel vehicle refueling property (Form 8911) +....... +1s +t +Reserved +...................... +1t +u +Mine rescue team training (Form 8923) +............ +1u +v +Agricultural chemicals security (Form 8931) (see instructions for limitation) . +1v +w +Employer differential wage payments (Form 8932) +......... +1w +x +Carbon dioxide sequestration (Form 8933) +........... +1x +y +Qualified plug-in electric drive motor vehicle (Form 8936) +...... +1y +z +Qualified plug-in electric vehicle (carryforward only) +........ +1z +aa +New hire retention (carryforward only) +............. +1aa +bb +General credits from an electing large partnership (Schedule K-1 (Form 1065-B)) +1bb +zz +Other +....................... +1zz +2 +Add lines 1a through 1zz and enter here and on the applicable line of Part I +2 +3 +Enter the amount from Form 8844 here and on the applicable line of Part II . +3 +4a +Investment (Form 3468, Part III) (attach Form 3468) +........ +4a +b +Work opportunity (Form 5884) +............... +4b +c +Biofuel producer (Form 6478) +............... +4c +d +Low-income housing (Form 8586, Part II) +............ +4d +e +Renewable electricity, refined coal, and Indian coal production (Form 8835) +4e +f +Employer social security and Medicare taxes paid on certain employee tips (Form 8846) +4f +g +Qualified railroad track maintenance (Form 8900) +......... +4g +h +Small employer health insurance premiums (Form 8941) +....... +4h +i +Reserved +...................... +4i +j +Reserved +...................... +4j +z +Other +....................... +4z +5 +Add lines 4a through 4z and enter here and on the applicable line of Part II . +5 +6 +Add lines 2, 3, and 5 and enter here and on the applicable line of Part II . . +6 +Form +3800 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F3800MLT.fields.json b/test/data/fd/form/F3800MLT.fields.json new file mode 100755 index 00000000..5461ef64 --- /dev/null +++ b/test/data/fd/form/F3800MLT.fields.json @@ -0,0 +1 @@ +[{"id":"A136RB","type":"radio","calc":false,"value":"GBCNPA"},{"id":"A136RB","type":"radio","calc":false,"value":"GBCPA"},{"id":"A136RB","type":"radio","calc":false,"value":"GBCCF"},{"id":"A136RB","type":"radio","calc":false,"value":"SBCCF"},{"id":"A136RB","type":"radio","calc":false,"value":"GBCCB"},{"id":"MOREPT3","type":"box","calc":false,"value":""},{"id":"NAM3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"COPYNAME","type":"alpha","calc":false,"value":""},{"id":"L1AEIN","type":"mask","calc":false,"value":""},{"id":"L1A","type":"number","calc":false,"value":""},{"id":"L1EEIN","type":"mask","calc":false,"value":""},{"id":"L1E","type":"number","calc":false,"value":""},{"id":"EIN1","type":"mask","calc":false,"value":""},{"id":"L1F","type":"number","calc":false,"value":""},{"id":"L1HEIN","type":"mask","calc":false,"value":""},{"id":"L1H","type":"number","calc":false,"value":""},{"id":"L1IEIN","type":"mask","calc":false,"value":""},{"id":"L1I","type":"number","calc":false,"value":""},{"id":"L1JEIN","type":"mask","calc":false,"value":""},{"id":"L1J","type":"number","calc":false,"value":""},{"id":"L1LEIN","type":"mask","calc":false,"value":""},{"id":"L1L","type":"number","calc":false,"value":""},{"id":"EIN2","type":"mask","calc":false,"value":""},{"id":"L1M","type":"number","calc":false,"value":""},{"id":"STARTE","type":"mask","calc":false,"value":""},{"id":"STARTUP","type":"number","calc":false,"value":""},{"id":"EIN3","type":"mask","calc":false,"value":""},{"id":"CHLDCARE","type":"number","calc":false,"value":""},{"id":"BIODIESE","type":"mask","calc":false,"value":""},{"id":"BIODIESL","type":"number","calc":false,"value":""},{"id":"LOWSULFE","type":"mask","calc":false,"value":""},{"id":"LOWSULFR","type":"number","calc":false,"value":""},{"id":"SPIRITE","type":"mask","calc":false,"value":""},{"id":"SPIRITS","type":"number","calc":false,"value":""},{"id":"NONCONVE","type":"mask","calc":false,"value":""},{"id":"NONCONV","type":"number","calc":false,"value":""},{"id":"ENERGYE","type":"mask","calc":false,"value":""},{"id":"ENERGY","type":"number","calc":false,"value":""},{"id":"APPLCRE","type":"mask","calc":false,"value":""},{"id":"APPLCR","type":"number","calc":false,"value":""},{"id":"EIN4","type":"mask","calc":false,"value":""},{"id":"ALTVEHIC","type":"number","calc":false,"value":""},{"id":"ALTFUELE","type":"mask","calc":false,"value":""},{"id":"ALTFUEL","type":"number","calc":false,"value":""},{"id":"MINERSC","type":"mask","calc":false,"value":""},{"id":"L1O","type":"mask","calc":false,"value":""},{"id":"AGCHEME","type":"mask","calc":false,"value":""},{"id":"AGCHEMCR","type":"number","calc":false,"value":""},{"id":"EMPDIFFE","type":"mask","calc":false,"value":""},{"id":"EMPDIFF","type":"number","calc":false,"value":""},{"id":"CO2SEQE","type":"mask","calc":false,"value":""},{"id":"CO2SEQ","type":"number","calc":false,"value":""},{"id":"F8936E","type":"mask","calc":false,"value":""},{"id":"L8936","type":"number","calc":false,"value":""},{"id":"F8834E","type":"mask","calc":false,"value":""},{"id":"L8834","type":"number","calc":false,"value":""},{"id":"L1NE","type":"mask","calc":false,"value":""},{"id":"L1N","type":"number","calc":false,"value":""},{"id":"L1OE","type":"mask","calc":false,"value":""},{"id":"L1P","type":"number","calc":false,"value":""},{"id":"EINOTHGB","type":"mask","calc":false,"value":""},{"id":"OTHERGBC","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"F8844E","type":"mask","calc":false,"value":""},{"id":"F8844","type":"number","calc":false,"value":""},{"id":"INVCRE","type":"mask","calc":false,"value":""},{"id":"REHABCR","type":"number","calc":false,"value":""},{"id":"WORKOPPE","type":"mask","calc":false,"value":""},{"id":"WORKOPP","type":"number","calc":false,"value":""},{"id":"ABFCE","type":"mask","calc":false,"value":""},{"id":"ABFC","type":"number","calc":false,"value":""},{"id":"LOWINCE","type":"mask","calc":false,"value":""},{"id":"LOWINCCR","type":"number","calc":false,"value":""},{"id":"ELECOALE","type":"mask","calc":false,"value":""},{"id":"ELECCOAL","type":"number","calc":false,"value":""},{"id":"TIPSCRE","type":"mask","calc":false,"value":""},{"id":"TIPSCR","type":"number","calc":false,"value":""},{"id":"RRTME","type":"mask","calc":false,"value":""},{"id":"RRTM","type":"number","calc":false,"value":""},{"id":"SEHIPEIN","type":"mask","calc":false,"value":""},{"id":"SEHIP","type":"number","calc":false,"value":""},{"id":"EINOTHES","type":"mask","calc":false,"value":""},{"id":"OTHERESB","type":"number","calc":false,"value":""},{"id":"SUBTOT3","type":"number","calc":true,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F3800MLT.json b/test/data/fd/form/F3800MLT.json new file mode 100755 index 00000000..131c12ce --- /dev/null +++ b/test/data/fd/form/F3800MLT.json @@ -0,0 +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":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":5.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":3,"w":0.75,"l":71.861},{"oc":"#221f1f","x":6.145,"y":4.5,"w":1.125,"l":71.861},{"oc":"#221f1f","x":77.92,"y":3,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.92,"y":4.5,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.145,"y":10.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.62,"y":10.5,"w":1.125,"l":90.424},{"oc":"#221f1f","x":6.145,"y":12.75,"w":0.75,"l":64.436},{"oc":"#221f1f","x":70.495,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":12.75,"w":0.75,"l":16.173},{"oc":"#221f1f","x":66.782,"y":13.552,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":13.552,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":13.552,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":13.552,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":14.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.538,"y":14.301,"w":0.75,"l":12.375},{"oc":"#221f1f","x":70.538,"y":13.552,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":14.301,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":13.552,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":13.552,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":14.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":15.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":15.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":15.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":15.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":15.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":15.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":15.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":15.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":16.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":16.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":16.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":16.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":17.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":17.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":17.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":17.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":18.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":18.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":18.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":18.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":18.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":18.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":19.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":19.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":19.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":19.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":20.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":20.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":20.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":20.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":21.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":21.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":21.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":22.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":22.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":22.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":22.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":23.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":23.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":23.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":23.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":24.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":24.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":24.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":24.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":24.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":24.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":25.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":25.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":25.551,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":25.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":26.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":26.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":26.301,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":26.301,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":27.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":27.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":27.051,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":27.051,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":27.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":27.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":27.801,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":27.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":28.55,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.538,"y":28.55,"w":0.75,"l":12.375},{"oc":"#221f1f","x":70.538,"y":27.801,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":28.55,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":27.801,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":27.801,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":28.551,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":29.3,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":29.3,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":29.3,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":29.3,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":30.05,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":30.05,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":30.05,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30.05,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":30.8,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":30.8,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":30.8,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30.8,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":31.55,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":31.55,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":31.55,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":31.55,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":32.3,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":32.3,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":32.3,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":32.3,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":33.05,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":33.05,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":33.05,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.05,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":33.8,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":33.8,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":33.8,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.8,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":34.55,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":34.55,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":34.55,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":34.55,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":35.3,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":35.3,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":35.3,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":35.3,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":36.05,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.538,"y":36.05,"w":0.75,"l":12.375},{"oc":"#221f1f","x":70.538,"y":35.3,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.87,"y":36.05,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36.05,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":36.8,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":36.8,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":36.8,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36.8,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":37.549,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":37.549,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":37.549,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":37.549,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":38.299,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":38.299,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":38.299,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":38.299,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":39.049,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":39.049,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":39.049,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":39.049,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":39.799,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":39.799,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":39.799,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":39.799,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":40.549,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":40.549,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":40.549,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":40.549,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":41.299,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":41.299,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":41.299,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":41.299,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":42.049,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":42.049,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":42.049,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":42.049,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":42.799,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.495,"y":42.799,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":42.799,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":42.799,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":43.548,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.538,"y":43.548,"w":0.75,"l":12.375},{"oc":"#221f1f","x":70.538,"y":42.799,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":43.548,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":42.799,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":42.799,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":43.548,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":44.298,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.538,"y":44.298,"w":0.75,"l":12.375},{"oc":"#221f1f","x":70.538,"y":43.548,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":44.298,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":43.548,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":43.548,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":44.298,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":45.048,"w":1.125,"l":3.798},{"oc":"#221f1f","x":70.495,"y":45.048,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":45.048,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":45.048,"w":1.125,"l":3.798},{"oc":"#221f1f","x":66.782,"y":45.798,"w":1.125,"l":3.798},{"oc":"#221f1f","x":70.495,"y":45.048,"w":1.125,"l":12.461},{"oc":"#221f1f","x":70.495,"y":45.798,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":45.798,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":45.798,"w":1.125,"l":3.798},{"oc":"#221f1f","x":70.495,"y":45.798,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.145,"y":46.5,"w":1.5,"l":92.899},{"oc":"#221f1f","x":0.086,"y":49.469,"w":1.5,"l":1.499},{"oc":"#221f1f","x":0.086,"y":48.842,"w":1.5,"l":1.499}],"VLines":[{"oc":"#221f1f","x":77.963,"y":2.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":70.538,"y":10.477,"w":0.75,"l":2.289},{"oc":"#221f1f","x":82.913,"y":10.477,"w":0.75,"l":2.289},{"oc":"#221f1f","x":70.538,"y":12.779,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.825,"y":12.779,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":12.779,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":12.779,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":12.779,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":13.529,"w":0.75,"l":0.788},{"oc":"#221f1f","x":66.825,"y":13.529,"w":0.75,"l":0.788},{"oc":"#221f1f","x":82.913,"y":13.552,"w":0.75,"l":0.749},{"oc":"#221f1f","x":70.538,"y":13.552,"w":0.75,"l":0.749},{"oc":"#221f1f","x":95.288,"y":13.552,"w":0.75,"l":0.749},{"oc":"#221f1f","x":82.913,"y":13.552,"w":0.75,"l":0.749},{"oc":"#221f1f","x":95.288,"y":13.536,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":14.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":14.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":14.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":15.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":15.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":15.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":15.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":15.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":15.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":15.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":15.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":15.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":15.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":16.536,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":16.536,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":16.536,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":16.536,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.536,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":17.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":17.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":17.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.286,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":18.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":18.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":18.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":18.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":18.036,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":18.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":18.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":18.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":18.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":18.786,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":19.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":19.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":19.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":19.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":19.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":20.285,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.825,"y":20.285,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":20.285,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":20.285,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":20.285,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":21.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":21.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":21.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":21.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":22.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":22.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":22.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":22.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":22.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":23.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":23.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":23.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":24.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":24.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":24.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":24.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":24.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":24.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":24.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":24.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":24.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":24.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":25.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":25.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":25.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":25.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":25.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":26.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":26.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":26.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":26.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":26.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":27.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":27.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":27.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":27.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":27.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":27.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":27.801,"w":0.75,"l":0.75},{"oc":"#221f1f","x":70.538,"y":27.801,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":27.801,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":27.801,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":27.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":28.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":28.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":28.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":29.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":29.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":29.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":29.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":30.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":30.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":30.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":30.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":30.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":30.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":30.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":30.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":30.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":30.785,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":31.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":31.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":31.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":31.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":31.535,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":32.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":32.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":32.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.285,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":33.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":33.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":33.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":33.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.035,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":33.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":33.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":33.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":33.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":34.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":34.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":34.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":34.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":35.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":35.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.3,"w":0.75,"l":0.75},{"oc":"#221f1f","x":70.538,"y":35.3,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":35.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":36.034,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":36.034,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":36.034,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":36.034,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":36.034,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":36.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":36.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":36.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":36.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":36.784,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":37.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":37.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":37.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":37.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":37.534,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":38.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":38.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":38.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":38.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":38.284,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":39.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":39.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":39.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":39.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":39.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":39.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":39.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":39.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":39.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":39.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":40.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":40.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":40.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":40.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":40.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":41.283,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":41.283,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":41.283,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":41.283,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":41.283,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":42.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":42.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":42.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":42.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":42.033,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":42.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":42.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":42.799,"w":0.75,"l":0.749},{"oc":"#221f1f","x":70.538,"y":42.799,"w":0.75,"l":0.749},{"oc":"#221f1f","x":95.288,"y":42.799,"w":0.75,"l":0.749},{"oc":"#221f1f","x":82.913,"y":42.799,"w":0.75,"l":0.749},{"oc":"#221f1f","x":95.288,"y":42.783,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":43.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":43.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":43.548,"w":0.75,"l":0.75},{"oc":"#221f1f","x":70.538,"y":43.548,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":43.548,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":43.548,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":43.533,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":44.283,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.825,"y":44.283,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":44.283,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":44.283,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":44.283,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":45.032,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.825,"y":45.032,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":45.025,"w":0.75,"l":0.797},{"oc":"#221f1f","x":70.538,"y":45.025,"w":0.75,"l":0.797},{"oc":"#221f1f","x":82.913,"y":45.032,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":45.032,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":45.782,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":45.782,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":45.775,"w":0.75,"l":0.797},{"oc":"#221f1f","x":70.538,"y":45.775,"w":0.75,"l":0.797},{"oc":"#221f1f","x":82.913,"y":45.782,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":45.782,"w":0.75,"l":0.781},{"oc":"#221f1f","x":1.585,"y":48.842,"w":1.5,"l":0.627},{"oc":"#221f1f","x":0.086,"y":48.842,"w":1.5,"l":0.627}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":4.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":13.552,"w":12.375,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":13.552,"w":12.375,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":95.288,"y":13.552,"w":3.712,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":27.801,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":27.801,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":95.288,"y":27.801,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":35.3,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":42.799,"w":12.375,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":42.799,"w":12.375,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":95.288,"y":42.799,"w":3.712,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":43.548,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":43.548,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":95.288,"y":43.548,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":45.048,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":45.798,"w":12.375,"h":0.75,"clr":-1},{"oc":"#221f1f","x":0.172,"y":48.936,"w":1.328,"h":0.502,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%203800%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.698,"y":1.9769999999999999,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%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":"3%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.329,"y":4.321,"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":4.321,"w":28.377999999999997,"clr":-1,"A":"left","R":[{"T":"General%20Business%20Credits%20or%20Eligible%20Small%20Business%20Credits","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":63.852999999999994,"y":4.321,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":2.687,"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":2.687,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.089,"w":33.558,"clr":-1,"A":"left","R":[{"T":"Complete%20a%20separate%20Part%20III%20for%20each%20box%20checked%20below.%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.839,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.839,"w":23.742000000000004,"clr":-1,"A":"left","R":[{"T":"General%20Business%20Credit%20From%20a%20Non-Passive%20Activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.589,"w":0.704,"clr":-1,"A":"left","R":[{"T":"B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":6.589,"w":21.50100000000001,"clr":-1,"A":"left","R":[{"T":"General%20Business%20Credit%20From%20a%20Passive%20Activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.339,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":7.339,"w":17.442,"clr":-1,"A":"left","R":[{"T":"General%20Business%20Credit%20Carryforwards","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.089,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":16.204000000000004,"clr":-1,"A":"left","R":[{"T":"General%20Business%20Credit%20Carrybacks","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.725,"y":5.839,"w":0.648,"clr":-1,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.675,"y":5.839,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.725,"y":6.589,"w":0.593,"clr":-1,"A":"left","R":[{"T":"F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.675,"y":6.589,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.725,"y":7.339,"w":0.759,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.675,"y":7.339,"w":19.924,"clr":-1,"A":"left","R":[{"T":"Eligible%20Small%20Business%20Credit%20Carryforwards","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.725,"y":8.089,"w":0.741,"clr":-1,"A":"left","R":[{"T":"H","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.675,"y":8.089,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.281,"y":8.789,"w":0.573,"clr":-1,"A":"left","R":[{"T":"I%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":8.82,"w":55.23199999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20filing%20more%20than%20one%20Part%20III%20with%20box%20A%20or%20B%20checked%2C%20complete%20and%20attach%20first%20an%20additional%20Part%20III%20combining%20am","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.598,"y":8.82,"w":8.983,"clr":-1,"A":"left","R":[{"T":"ounts%20from%20all%20Parts%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.488,"w":32.540000000000006,"clr":-1,"A":"left","R":[{"T":"III%20with%20box%20A%20or%20B%20checked.%20Check%20here%20if%20this%20is%20the%20consolidated%20Part%20III%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.378,"y":9.488,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":93.847,"y":9.394,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.878,"y":10.357,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.864,"y":10.357,"w":9.056,"clr":-1,"A":"left","R":[{"T":"Description%20of%20credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.232,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.452,"y":11.232,"w":43.45199999999996,"clr":-1,"A":"left","R":[{"T":"%20On%20any%20line%20where%20the%20credit%20is%20from%20more%20than%20one%20source%2C%20a%20separate%20Part%20III%20is%20needed%20for%20each%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.795,"w":8.984000000000002,"clr":-1,"A":"left","R":[{"T":"pass-through%20entity.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.69,"y":10.357,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":70.56,"y":10.857,"w":9.334999999999999,"clr":-1,"A":"left","R":[{"T":"If%20claiming%20the%20credit%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":70.512,"y":11.357,"w":9.410000000000002,"clr":-1,"A":"left","R":[{"T":"from%20a%20pass-through%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":70.706,"y":11.857,"w":8.834999999999999,"clr":-1,"A":"left","R":[{"T":"entity%2C%20enter%20the%20EIN","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":89.905,"y":10.581,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.188,"y":11.144,"w":9.761000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20appropriate%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.376,"y":11.706,"w":3.3910000000000005,"clr":-1,"A":"left","R":[{"T":"amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.627,"y":12.641,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":12.641,"w":24.86000000000001,"clr":-1,"A":"left","R":[{"T":"Investment%20(Form%203468%2C%20Part%20II%20only)%20(attach%20Form%203468)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":12.641,"w":14.663,"clr":-1,"A":"left","R":[{"T":".......%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.557,"y":12.641,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":13.391,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":13.391,"w":4.5,"clr":-1,"A":"left","R":[{"T":"Reserved%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.375,"y":13.391,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":13.391,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":14.141,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":14.141,"w":18.854000000000003,"clr":-1,"A":"left","R":[{"T":"Increasing%20research%20activities%20(Form%206765)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":14.141,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.557,"y":14.141,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":14.89,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":14.89,"w":20.338,"clr":-1,"A":"left","R":[{"T":"Low-income%20housing%20(Form%208586%2C%20Part%20I%20only)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.125,"y":14.89,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":14.89,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":15.64,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":15.64,"w":26.875000000000018,"clr":-1,"A":"left","R":[{"T":"Disabled%20access%20(Form%208826)%20(see%20instructions%20for%20limitation)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":15.64,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.557,"y":15.64,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":16.39,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":16.39,"w":34.005,"clr":-1,"A":"left","R":[{"T":"Renewable%20electricity%2C%20refined%20coal%2C%20and%20Indian%20coal%20production%20(Form%208835)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.744,"y":16.39,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":17.14,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":17.14,"w":14.451000000000002,"clr":-1,"A":"left","R":[{"T":"Indian%20employment%20(Form%208845)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":17.14,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":17.109,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":17.89,"w":0.871,"clr":-1,"A":"left","R":[{"T":"h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":17.89,"w":11.579000000000002,"clr":-1,"A":"left","R":[{"T":"Orphan%20drug%20(Form%208820)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":17.89,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.543,"y":17.89,"w":1.427,"clr":-1,"A":"left","R":[{"T":"1h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":18.64,"w":0.536,"clr":-1,"A":"left","R":[{"T":"i%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":18.64,"w":11.799000000000005,"clr":-1,"A":"left","R":[{"T":"New%20markets%20(Form%208874)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":18.64,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.802,"y":18.64,"w":1.092,"clr":-1,"A":"left","R":[{"T":"1i%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":19.39,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":19.39,"w":38.861,"clr":-1,"A":"left","R":[{"T":"Small%20employer%20pension%20plan%20startup%20costs%20(Form%208881)%20(see%20instructions%20for%20limitation)%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":67.786,"y":19.359,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1j%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":20.09,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"k%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":20.09,"w":31.003999999999998,"clr":-1,"A":"left","R":[{"T":"Employer-provided%20child%20care%20facilities%20and%20services%20(Form%208882)%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.122,"y":20.778,"w":11.520000000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20limitation)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.684,"y":20.778,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.557,"y":20.89,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1k%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":21.64,"w":0.536,"clr":-1,"A":"left","R":[{"T":"l%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":21.64,"w":25.207000000000004,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20and%20renewable%20diesel%20fuels%20(attach%20Form%208864)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":21.64,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.802,"y":21.64,"w":1.092,"clr":-1,"A":"left","R":[{"T":"1l%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":22.39,"w":1.1840000000000002,"clr":-1,"A":"left","R":[{"T":"m%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":22.39,"w":20.170000000000005,"clr":-1,"A":"left","R":[{"T":"Low%20sulfur%20diesel%20fuel%20production%20(Form%208896)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.125,"y":22.39,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.301,"y":22.39,"w":1.7400000000000002,"clr":-1,"A":"left","R":[{"T":"1m%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":23.14,"w":0.871,"clr":-1,"A":"left","R":[{"T":"n%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":23.14,"w":12.410000000000005,"clr":-1,"A":"left","R":[{"T":"Distilled%20spirits%20(Form%208906)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":23.14,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.543,"y":23.14,"w":1.427,"clr":-1,"A":"left","R":[{"T":"1n%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":23.89,"w":0.889,"clr":-1,"A":"left","R":[{"T":"o%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":23.89,"w":18.930000000000007,"clr":-1,"A":"left","R":[{"T":"Nonconventional%20source%20fuel%20(Form%208907)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":23.89,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":23.89,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1o%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":24.64,"w":0.889,"clr":-1,"A":"left","R":[{"T":"p%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":24.64,"w":15.337000000000007,"clr":-1,"A":"left","R":[{"T":"Energy%20efficient%20home%20(Form%208908)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":24.64,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"..............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":24.64,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1p%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":25.39,"w":0.889,"clr":-1,"A":"left","R":[{"T":"q%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":25.39,"w":17.429000000000006,"clr":-1,"A":"left","R":[{"T":"Energy%20efficient%20appliance%20(Form%208909)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":25.39,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":25.359,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1q%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":26.14,"w":0.667,"clr":-1,"A":"left","R":[{"T":"r%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":26.14,"w":16.948000000000004,"clr":-1,"A":"left","R":[{"T":"Alternative%20motor%20vehicle%20(Form%208910)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":26.14,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.701,"y":26.14,"w":1.223,"clr":-1,"A":"left","R":[{"T":"1r%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":26.89,"w":0.8150000000000001,"clr":-1,"A":"left","R":[{"T":"s%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":26.89,"w":24.077000000000005,"clr":-1,"A":"left","R":[{"T":"Alternative%20fuel%20vehicle%20refueling%20property%20(Form%208911)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":26.89,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.586,"y":26.89,"w":1.371,"clr":-1,"A":"left","R":[{"T":"1s%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":27.64,"w":0.63,"clr":-1,"A":"left","R":[{"T":"t%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":27.64,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.375,"y":27.64,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.729,"y":27.64,"w":1.186,"clr":-1,"A":"left","R":[{"T":"1t%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":28.39,"w":0.871,"clr":-1,"A":"left","R":[{"T":"u%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":28.39,"w":17.487000000000002,"clr":-1,"A":"left","R":[{"T":"Mine%20rescue%20team%20training%20(Form%208923)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":28.39,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.543,"y":28.39,"w":1.427,"clr":-1,"A":"left","R":[{"T":"1u%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":29.139,"w":0.52,"clr":-1,"A":"left","R":[{"T":"v","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":29.139,"w":33.43100000000001,"clr":-1,"A":"left","R":[{"T":"Agricultural%20chemicals%20security%20(Form%208931)%20(see%20instructions%20for%20limitation)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.599,"y":29.139,"w":1.354,"clr":-1,"A":"left","R":[{"T":"1v%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":29.889,"w":1.092,"clr":-1,"A":"left","R":[{"T":"w%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":29.889,"w":22.152000000000008,"clr":-1,"A":"left","R":[{"T":"Employer%20differential%20wage%20payments%20(Form%208932)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":29.889,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.372,"y":29.889,"w":1.6480000000000001,"clr":-1,"A":"left","R":[{"T":"1w%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":30.639,"w":0.8150000000000001,"clr":-1,"A":"left","R":[{"T":"x%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":30.639,"w":19.115000000000006,"clr":-1,"A":"left","R":[{"T":"Carbon%20dioxide%20sequestration%20(Form%208933)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":30.639,"w":17.329,"clr":-1,"A":"left","R":[{"T":"...........%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.586,"y":30.639,"w":1.371,"clr":-1,"A":"left","R":[{"T":"1x%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":31.389000000000003,"w":0.797,"clr":-1,"A":"left","R":[{"T":"y%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":31.389000000000003,"w":25.542000000000005,"clr":-1,"A":"left","R":[{"T":"Qualified%20plug-in%20electric%20drive%20motor%20vehicle%20(Form%208936)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":31.389000000000003,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.6,"y":31.357999999999997,"w":1.3530000000000002,"clr":-1,"A":"left","R":[{"T":"1y%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":32.139,"w":0.797,"clr":-1,"A":"left","R":[{"T":"z%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":32.139,"w":23.110000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified%20plug-in%20electric%20vehicle%20(carryforward%20only)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":32.139,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.6,"y":32.139,"w":1.3530000000000002,"clr":-1,"A":"left","R":[{"T":"1z%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":32.889,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"aa","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":32.889,"w":17.034000000000006,"clr":-1,"A":"left","R":[{"T":"New%20hire%20retention%20(carryforward%20only)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":32.889,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.113,"y":32.858,"w":1.9820000000000002,"clr":-1,"A":"left","R":[{"T":"1aa%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":33.639,"w":1.222,"clr":-1,"A":"left","R":[{"T":"bb","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":33.639,"w":36.247,"clr":-1,"A":"left","R":[{"T":"General%20credits%20from%20an%20electing%20large%20partnership%20(Schedule%20K-1%20(Form%201065-B))%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":67.056,"y":33.639,"w":2.056,"clr":-1,"A":"left","R":[{"T":"1bb%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":34.389,"w":1.038,"clr":-1,"A":"left","R":[{"T":"zz","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":34.389,"w":2.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.313,"y":34.389,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.199,"y":34.389,"w":1.8720000000000003,"clr":-1,"A":"left","R":[{"T":"1zz%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":35.139,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":35.139,"w":33.635,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201a%20through%201zz%20and%20enter%20here%20and%20on%20the%20applicable%20line%20of%20Part%20I%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.001,"y":35.139,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":35.889,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":35.889,"w":33.47299999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%208844%20here%20and%20on%20the%20applicable%20line%20of%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.001,"y":35.889,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.627,"y":36.638,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"4a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":36.638,"w":22.71100000000001,"clr":-1,"A":"left","R":[{"T":"Investment%20(Form%203468%2C%20Part%20III)%20(attach%20Form%203468)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":36.638,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.557,"y":36.638,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"4a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":37.388,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":37.388,"w":13.393000000000004,"clr":-1,"A":"left","R":[{"T":"Work%20opportunity%20(Form%205884)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":37.388,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":37.388,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":38.138,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":38.138,"w":13.336000000000004,"clr":-1,"A":"left","R":[{"T":"Biofuel%20producer%20(Form%206478)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":38.138,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.557,"y":38.138,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"4c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":38.888,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":38.888,"w":18.467,"clr":-1,"A":"left","R":[{"T":"Low-income%20housing%20(Form%208586%2C%20Part%20II)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":38.888,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":38.888,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":39.638,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":39.638,"w":34.005,"clr":-1,"A":"left","R":[{"T":"Renewable%20electricity%2C%20refined%20coal%2C%20and%20Indian%20coal%20production%20(Form%208835)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.557,"y":39.638,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"4e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":40.388,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":40.388,"w":39.637999999999984,"clr":-1,"A":"left","R":[{"T":"Employer%20social%20security%20and%20Medicare%20taxes%20paid%20on%20certain%20employee%20tips%20(Form%208846)%20%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":67.744,"y":40.388,"w":0.889,"clr":-1,"A":"left","R":[{"T":"4f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":41.138,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":41.138,"w":21.74600000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20railroad%20track%20maintenance%20(Form%208900)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":41.138,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.529,"y":41.138,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":41.888,"w":0.593,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":41.888,"w":24.879000000000016,"clr":-1,"A":"left","R":[{"T":"Small%20employer%20health%20insurance%20premiums%20(Form%208941)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":41.888,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.543,"y":41.888,"w":1.149,"clr":-1,"A":"left","R":[{"T":"4h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":42.637,"w":0.258,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":42.637,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.375,"y":42.637,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.802,"y":42.637,"w":0.8140000000000001,"clr":-1,"A":"left","R":[{"T":"4i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":43.387,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":43.387,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.375,"y":43.387,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.786,"y":43.387,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":44.137,"w":0.519,"clr":-1,"A":"left","R":[{"T":"z","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":44.137,"w":2.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.313,"y":44.137,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.6,"y":44.137,"w":1.0750000000000002,"clr":-1,"A":"left","R":[{"T":"4z","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":44.887,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":44.887,"w":33.413999999999994,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204a%20through%204z%20and%20enter%20here%20and%20on%20the%20applicable%20line%20of%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.001,"y":44.887,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":45.637,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":45.637,"w":32.00900000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%2C%203%2C%20and%205%20and%20enter%20here%20and%20on%20the%20applicable%20line%20of%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.271,"y":45.637,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.001,"y":45.637,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.152,"y":46.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":46.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"3800","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":46.321,"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":"NAM3","EN":0},"TI":2197,"AM":1024,"x":6.393,"y":3.736,"w":64.966,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":2198,"AM":1024,"x":77.988,"y":3.709,"w":18.055,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COPYNAME","EN":0},"TI":2200,"AM":0,"x":78.196,"y":5.548,"w":17.294,"h":0.988},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1AEIN","EN":0},"TI":2206,"AM":0,"x":70.6,"y":12.823,"w":12.38,"h":0.833,"TU":"Line 1a (b). Investment (Form 3468, Part II only) (attach Form 3468).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":2207,"AM":0,"x":83.035,"y":12.814,"w":12.264,"h":0.833,"TU":"Line 1a (c). Investment (Form 3468, Part II only) (attach Form 3468)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1EEIN","EN":0},"TI":2208,"AM":0,"x":70.549,"y":14.3,"w":12.38,"h":0.833,"TU":"Line 1c (b). Increase research activities (Form 6765).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1E","EN":0},"TI":2209,"AM":0,"x":83.015,"y":14.304,"w":12.264,"h":0.833,"TU":"Line 1c (c). Increase research activities (Form 6765)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN1","EN":0},"TI":2210,"AM":0,"x":70.604,"y":15.082,"w":12.23,"h":0.833,"TU":"Line 1d (b). Low-income housing (Form 8586, Part I only).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1F","EN":0},"TI":2211,"AM":0,"x":83.016,"y":15.063,"w":12.264,"h":0.833,"TU":"Line 1d (c). Low-income housing (Form 8586, Part I only)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1HEIN","EN":0},"TI":2212,"AM":0,"x":70.584,"y":15.837,"w":12.38,"h":0.833,"TU":"Line 1e (b). Disabled access (Form 8826) (see instructions for limitation).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1H","EN":0},"TI":2213,"AM":0,"x":82.995,"y":15.767,"w":12.264,"h":0.833,"TU":"Line 1e (c). Disabled access (Form 8826) (see instructions for limitation)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1IEIN","EN":0},"TI":2214,"AM":0,"x":70.489,"y":16.537,"w":12.53,"h":0.833,"TU":"Line 1f (b). Renewable electricity, refined coal, and Indian coal production (Form 8835).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1I","EN":0},"TI":2215,"AM":0,"x":83.049,"y":16.526,"w":12.264,"h":0.833,"TU":"Line 1f (c). Renewable electricity, refined coal, and Indian coal production (Form 8835)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1JEIN","EN":0},"TI":2216,"AM":0,"x":70.757,"y":17.374,"w":12.155,"h":0.833,"TU":"Line 1g (b). Indian employment (Form 8845).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1J","EN":0},"TI":2217,"AM":0,"x":82.954,"y":17.359,"w":12.264,"h":0.833,"TU":"Line 1g (c). Indian employment (Form 8845)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1LEIN","EN":0},"TI":2218,"AM":0,"x":70.523,"y":18.074,"w":12.305,"h":0.833,"TU":"Line 1h (b). Orphan drug (Form 8820).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1L","EN":0},"TI":2219,"AM":0,"x":83.009,"y":18.114,"w":12.264,"h":0.833,"TU":"Line 1h (c). Orphan drug (Form 8820)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN2","EN":0},"TI":2220,"AM":0,"x":70.566,"y":18.84,"w":12.339,"h":0.833,"TU":"Line 1i (b). New markets (Form 8874).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1M","EN":0},"TI":2221,"AM":0,"x":83.064,"y":18.869,"w":12.189,"h":0.833,"TU":"Line 1i (c). New markets (Form 8874)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"STARTE","EN":0},"TI":2222,"AM":0,"x":70.569,"y":19.62,"w":12.339,"h":0.833,"TU":"Line 1j (b). Small employer pension plan startup costs (Form 8881) (see instructions for limitation).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STARTUP","EN":0},"TI":2223,"AM":0,"x":83.119,"y":19.624,"w":12.189,"h":0.833,"TU":"Line 1j (c). Small employer pension plan startup costs (Form 8881) (see instructions for limitation)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN3","EN":0},"TI":2224,"AM":0,"x":70.624,"y":21.056,"w":12.339,"h":0.833,"TU":"Line 1k (b). Employer-provided child care facilities and services (Form 8882) (see instructions for limitation).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHLDCARE","EN":0},"TI":2225,"AM":0,"x":82.949,"y":21.059,"w":12.264,"h":0.833,"TU":"Line 1k (c). Employer-provided child care facilities and services (Form 8882) (see instructions for limitation)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"BIODIESE","EN":0},"TI":2226,"AM":0,"x":70.529,"y":21.865,"w":12.339,"h":0.833,"TU":"Line 1l (b). Biodiesel and renewable diesel fuels (attach Forn 8864).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIODIESL","EN":0},"TI":2227,"AM":0,"x":83.004,"y":21.869,"w":12.264,"h":0.833,"TU":"Line 1l (c). Biodiesel and renewable diesel fuels (attach Forn 8864)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LOWSULFE","EN":0},"TI":2228,"AM":0,"x":70.509,"y":22.62,"w":12.264,"h":0.833,"TU":"Line 1m (b). Low sulfur diesel fuel production (Form 8896).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOWSULFR","EN":0},"TI":2229,"AM":0,"x":82.984,"y":22.624,"w":12.264,"h":0.833,"TU":"Line 1m (c). Low sulfur diesel fuel production (Form 8896)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIRITE","EN":0},"TI":2230,"AM":0,"x":70.564,"y":23.348,"w":12.339,"h":0.833,"TU":"Line 1n (b). Distilled spirits (Form 8906).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPIRITS","EN":0},"TI":2231,"AM":0,"x":82.964,"y":23.351,"w":12.264,"h":0.833,"TU":"Line 1n (c). Distilled spirits (Form 8906)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"NONCONVE","EN":0},"TI":2232,"AM":0,"x":70.619,"y":24.076,"w":12.339,"h":0.833,"TU":"Line 1o (b). Nonconventional source fuel (Form 8907).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NONCONV","EN":0},"TI":2233,"AM":0,"x":82.96,"y":24.085,"w":12.339,"h":0.833,"TU":"Line 1o (c). Nonconventional source fuel (Form 8907)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ENERGYE","EN":0},"TI":2234,"AM":0,"x":70.599,"y":24.831,"w":12.414,"h":0.833,"TU":"Line 1p (b). Energy efficient home (Form 8908).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ENERGY","EN":0},"TI":2235,"AM":0,"x":83.035,"y":24.848,"w":12.264,"h":0.833,"TU":"Line 1p (c). Energy efficient home (Form 8908)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"APPLCRE","EN":0},"TI":2236,"AM":0,"x":70.578,"y":25.613,"w":12.339,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"APPLCR","EN":0},"TI":2237,"AM":0,"x":82.94,"y":25.602,"w":12.264,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN4","EN":0},"TI":2238,"AM":0,"x":70.633,"y":26.314,"w":12.339,"h":0.833,"TU":"Line 1r (b). Alternative motor vehicle (Form 8910).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALTVEHIC","EN":0},"TI":2239,"AM":0,"x":82.92,"y":26.303,"w":12.414,"h":0.833,"TU":"Line 1r (c). Alternative motor vehicle (Form 8910)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ALTFUELE","EN":0},"TI":2240,"AM":0,"x":70.613,"y":27.096,"w":12.339,"h":0.833,"TU":"Line 1s (b). Alternative fuel refueling property (Form 8911).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALTFUEL","EN":0},"TI":2241,"AM":0,"x":82.975,"y":27.031,"w":12.264,"h":0.833,"TU":"Line 1s (c). Alternative fuel refueling property (Form 8911)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MINERSC","EN":0},"TI":2242,"AM":0,"x":70.569,"y":28.577,"w":12.339,"h":0.833,"TU":"Line 1u (b). Mine rescue team training (Form 8923).","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1O","EN":0},"TI":2243,"AM":0,"x":82.943,"y":28.626,"w":12.264,"h":0.833,"TU":"Line 1u (c). Mine rescue team training (Form 8923).","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AGCHEME","EN":0},"TI":2244,"AM":0,"x":70.624,"y":29.332,"w":12.339,"h":0.833,"TU":"Line 1v (b). Agricultural chemicals security (Form 8931) (see instructions for limitation).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGCHEMCR","EN":0},"TI":2245,"AM":0,"x":82.954,"y":29.337,"w":12.264,"h":0.833,"TU":"Line 1v (c). Agricultural chemicals security (Form 8931) (see instructions for limitation)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPDIFFE","EN":0},"TI":2246,"AM":0,"x":70.604,"y":30.087,"w":12.414,"h":0.833,"TU":"Line 1w (b). Employer differential wage payments (Form 8932).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPDIFF","EN":0},"TI":2247,"AM":0,"x":82.934,"y":30.065,"w":12.264,"h":0.833,"TU":"Line 1w (c). Employer differential wage payments (Form 8932)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CO2SEQE","EN":0},"TI":2248,"AM":0,"x":70.584,"y":30.842,"w":12.414,"h":0.833,"TU":"Line 1x (b). Carbon dioxide sequestration (Form 8933).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CO2SEQ","EN":0},"TI":2249,"AM":0,"x":82.989,"y":30.848,"w":12.264,"h":0.833,"TU":"Line 1x (c). Carbon dioxide sequestration (Form 8933)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"F8936E","EN":0},"TI":2250,"AM":0,"x":70.489,"y":31.57,"w":12.489,"h":0.833,"TU":"Line 1y (b). Qualified plug-in electric drive motor vehicle (Form 8936).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8936","EN":0},"TI":2251,"AM":0,"x":82.969,"y":31.602,"w":12.264,"h":0.833,"TU":"Line 1y (c). Qualified plug-in electric drive motor vehicle (Form 8936)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"F8834E","EN":0},"TI":2252,"AM":0,"x":70.619,"y":32.352,"w":12.414,"h":0.833,"TU":"Line 1z (b). Qualified plug-in electric vehicle (carryforward only).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8834","EN":0},"TI":2253,"AM":0,"x":82.949,"y":32.303,"w":12.264,"h":0.833,"TU":"Line 1z (c). Qualified plug-in electric vehicle (carryforward only)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1NE","EN":0},"TI":2254,"AM":0,"x":70.673,"y":33.053,"w":12.339,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1N","EN":0},"TI":2255,"AM":0,"x":83.004,"y":33.085,"w":12.264,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1OE","EN":0},"TI":2256,"AM":0,"x":70.504,"y":33.862,"w":12.339,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1P","EN":0},"TI":2257,"AM":0,"x":83.058,"y":33.867,"w":12.264,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINOTHGB","EN":0},"TI":2258,"AM":0,"x":70.708,"y":34.59,"w":12.339,"h":0.833,"TU":"Line 1s (b). Alternative fuel refueling property (Form 8911).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHERGBC","EN":0},"TI":2259,"AM":0,"x":83.038,"y":34.568,"w":12.264,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":2260,"AM":1024,"x":82.943,"y":35.323,"w":12.264,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"F8844E","EN":0},"TI":2261,"AM":0,"x":70.613,"y":36.08,"w":12.339,"h":0.833,"TU":"Line 3 (b). Enter the amount from Form 8844 here and on the applicable line of Part II.","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8844","EN":0},"TI":2262,"AM":0,"x":83.035,"y":36.118,"w":12.264,"h":0.833,"TU":"Line 3 (c). Enter the amount from Form 8844 here and on the applicable line of Part II."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"INVCRE","EN":0},"TI":2263,"AM":0,"x":70.593,"y":36.835,"w":12.339,"h":0.833,"TU":"Line 4a (b). Investment (Form 3468, Part III) (attach 3468).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REHABCR","EN":0},"TI":2264,"AM":0,"x":82.96,"y":36.772,"w":12.264,"h":0.833,"TU":"Line 4a (c). Investment (Form 3468, Part III) (attach 3468)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WORKOPPE","EN":0},"TI":2265,"AM":0,"x":70.573,"y":37.617,"w":12.339,"h":0.833,"TU":"Line 4b (b). Work opportunity (Form 5884).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WORKOPP","EN":0},"TI":2266,"AM":0,"x":82.94,"y":37.581,"w":12.264,"h":0.833,"TU":"Line 4b (c). Work opportunity (Form 5884)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ABFCE","EN":0},"TI":2267,"AM":0,"x":70.489,"y":38.399,"w":12.339,"h":0.833,"TU":"Line 4c (b). Biofuel producer (Form 6478).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ABFC","EN":0},"TI":2268,"AM":0,"x":82.995,"y":38.363,"w":12.264,"h":0.833,"TU":"Line 4c (c). Biofuel producer (Form 6478)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LOWINCE","EN":0},"TI":2269,"AM":0,"x":70.63,"y":39.152,"w":12.414,"h":0.833,"TU":"Line 4d (b). Low-income housing (Form 8586, Part II).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOWINCCR","EN":0},"TI":2270,"AM":0,"x":83.049,"y":39.064,"w":12.264,"h":0.833,"TU":"Line 4d (c). Low-income housing (Form 8586, Part II)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ELECOALE","EN":0},"TI":2271,"AM":0,"x":70.569,"y":39.848,"w":12.564,"h":0.833,"TU":"Line 4e (b). Renewable electricity, refined coal, and Indian coal production (Form 8835).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ELECCOAL","EN":0},"TI":2272,"AM":0,"x":83.029,"y":39.819,"w":12.264,"h":0.833,"TU":"Line 4e (c). Renewable electricity, refined coal, and Indian coal production (Form 8835)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TIPSCRE","EN":0},"TI":2273,"AM":0,"x":70.624,"y":40.521,"w":12.414,"h":0.833,"TU":"Line 4f (b). Employer social security and Medicare taxes paid on certain employee tips (Form 8846).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TIPSCR","EN":0},"TI":2274,"AM":0,"x":83.009,"y":40.547,"w":12.264,"h":0.833,"TU":"Line 4f (c). Employer social security and Medicare taxes paid on certain employee tips (Form 8846)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RRTME","EN":0},"TI":2275,"AM":0,"x":70.569,"y":41.377,"w":12.414,"h":0.833,"TU":"Line 4g (b). Qualified railroad track maintenance (Form 8900).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RRTM","EN":0},"TI":2276,"AM":0,"x":82.989,"y":41.411,"w":12.264,"h":0.833,"TU":"Line 4g (c). Qualified railroad track maintenance (Form 8900)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEHIPEIN","EN":0},"TI":2277,"AM":0,"x":70.604,"y":42.12,"w":12.414,"h":0.833,"TU":"Line 4h (b). Small employer health insurance premiums (Form 8941).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEHIP","EN":0},"TI":2278,"AM":0,"x":83.044,"y":42.111,"w":12.264,"h":0.833,"TU":"Line 4h (c). Small employer health insurance premiums (Form 8941)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EINOTHES","EN":0},"TI":2279,"AM":0,"x":70.584,"y":44.373,"w":12.339,"h":0.833,"TU":"Line 4z (b). Other. ","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHERESB","EN":0},"TI":2280,"AM":0,"x":82.949,"y":44.391,"w":12.264,"h":0.833,"TU":"Line 4z (c). Other. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3","EN":0},"TI":2281,"AM":1024,"x":82.929,"y":45.064,"w":12.414,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":2282,"AM":1024,"x":82.984,"y":45.764,"w":12.414,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GBCNPA","EN":0},"TI":2199,"AM":0,"x":8.385,"y":5.837,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GBCPA","EN":0},"TI":2201,"AM":0,"x":8.61,"y":6.763,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GBCCF","EN":0},"TI":2202,"AM":0,"x":8.46,"y":7.525,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SBCCF","EN":0},"TI":2203,"AM":0,"x":54.129,"y":7.498,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GBCCB","EN":0},"TI":2204,"AM":0,"x":8.685,"y":8.269,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"A136RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MOREPT3","EN":0},"TI":2205,"AM":0,"x":96.504,"y":9.621,"w":2.27,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F3903.content.txt b/test/data/fd/form/F3903.content.txt new file mode 100755 index 00000000..dcaa7164 --- /dev/null +++ b/test/data/fd/form/F3903.content.txt @@ -0,0 +1,75 @@ +Form +3903 +Department of the Treasury +Internal Revenue Service (99) +Moving Expenses +a +a + Attach to Form 1040 or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +170 +Name(s) shown on return +Your social security number +Before you begin: + +See the +Distance Test +and +Time Test +in the instructions to find out if you can deduct your moving +expenses. + +See +Members of the Armed Forces + in the instructions, if applicable. +1 +Transportation and storage of household goods and personal effects (see instructions) . . . +1 +2 + +Travel (including lodging) from your old home to your new home (see instructions). +Do not + +include the cost of meals +........................ +2 +3 +Add lines 1 and 2 +.......................... +3 +4 + + +Enter the total amount your employer paid you for the expenses listed on lines 1 and 2 that is +not +included in box 1 of your Form W-2 (wages). This amount should be shown in box 12 of your +Form W-2 with code +P +........................ +4 +5 +Is line 3 +more than +line 4? +No. +You +cannot +deduct your moving expenses. If line 3 is less than line 4, subtract line 3 +from line 4 and include the result on Form 1040, line 7, or Form 1040NR, line 8. +Yes. +Subtract line 4 from line 3. Enter the result here and on Form 1040, line 26, or Form +1040NR, line 26. This is your +moving expense deduction +......... +5 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 12490K +Form +3903 + (2013) + Information about Form 3903 and its instructions is available at www.irs.gov/form3903. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F3903.fields.json b/test/data/fd/form/F3903.fields.json new file mode 100755 index 00000000..7f18d948 --- /dev/null +++ b/test/data/fd/form/F3903.fields.json @@ -0,0 +1 @@ +[{"id":"YNXRB","type":"radio","calc":false,"value":"NOBOX"},{"id":"YNXRB","type":"radio","calc":false,"value":"YESBOX"},{"id":"NEWEMPL","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F3903.json b/test/data/fd/form/F3903.json new file mode 100755 index 00000000..56ad9d9d --- /dev/null +++ b/test/data/fd/form/F3903.json @@ -0,0 +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.989},{"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":74.336},{"oc":"#221f1f","x":80.395,"y":6.75,"w":0.75,"l":18.648},{"oc":"#181616","x":6.188,"y":9,"w":0.75,"l":92.813},{"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":79.157,"y":12,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":12,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":12,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":13.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":13.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":13.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":16.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":22.5,"w":1.5,"l":52.061},{"oc":"#221f1f","x":58.12,"y":22.5,"w":1.5,"l":28.548},{"oc":"#221f1f","x":86.582,"y":22.5,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.675},{"oc":"#221f1f","x":21.047,"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.531},{"oc":"#221f1f","x":82.913,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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":82.913,"y":10.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":10.484,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":82.913,"y":11.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":11.984,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":82.913,"y":13.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":13.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":15.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":15.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":15.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":16.484,"w":0.75,"l":5.281},{"oc":"#221f1f","x":79.2,"y":16.484,"w":0.75,"l":5.281},{"oc":"#221f1f","x":82.913,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.484,"w":0.75,"l":5.281},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":79.2,"y":13.5,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":16.5,"w":3.712,"h":5.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"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.415,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"3903","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.7750000000000004,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.213,"w":13.557000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":42.912,"y":2.163,"w":8.725,"clr":-1,"A":"left","R":[{"T":"Moving%20Expenses%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":24.118,"y":3.399,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.298,"y":4.138,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.329,"y":4.232,"w":18.449000000000005,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%20or%20Form%201040NR.%20","S":-1,"TS":[0,11,1,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.827,"y":3.393,"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.9460000000000002,"clr":-1,"A":"left","R":[{"T":"170%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5,"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":80.875,"y":5,"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.938,"y":6.575,"w":8.779,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.916,"y":6.49,"w":0.755,"clr":-1,"A":"left","R":[{"T":"%14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.737,"y":6.538,"w":3.686,"clr":-1,"A":"left","R":[{"T":"See%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.095,"y":6.538,"w":6.779999999999999,"clr":-1,"A":"left","R":[{"T":"Distance%20Test%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.633,"y":6.538,"w":1.964,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.328,"y":6.538,"w":4.946,"clr":-1,"A":"left","R":[{"T":"Time%20Test%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.17,"y":6.538,"w":27.138,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions%20to%20find%20out%20if%20you%20can%20deduct%20your%20moving%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.737,"y":7.213,"w":4.834000000000001,"clr":-1,"A":"left","R":[{"T":"expenses.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.916,"y":7.99,"w":0.755,"clr":-1,"A":"left","R":[{"T":"%14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.737,"y":8,"w":2,"clr":-1,"A":"left","R":[{"T":"See%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.659,"y":8,"w":14.392000000000003,"clr":-1,"A":"left","R":[{"T":"Members%20of%20the%20Armed%20Forces","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.707,"y":8,"w":14.707000000000004,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20instructions%2C%20if%20applicable.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":9.589,"w":38.819999999999986,"clr":-1,"A":"left","R":[{"T":"Transportation%20and%20storage%20of%20household%20goods%20and%20personal%20effects%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":9.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":9.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.064,"y":9.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":10.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":10.402,"w":36.89499999999999,"clr":-1,"A":"left","R":[{"T":"Travel%20(including%20lodging)%20from%20your%20old%20home%20to%20your%20new%20home%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.475,"y":10.402,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.892,"y":11.089,"w":11.466000000000001,"clr":-1,"A":"left","R":[{"T":"include%20the%20cost%20of%20meals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.63,"y":11.089,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":11.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":12.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":12.589,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":12.589,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":12.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":14.214,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.183,"w":41.77099999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20your%20employer%20paid%20you%20for%20the%20expenses%20listed%20on%20lines%201%20and%202%20that%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":14.889,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.562,"y":14.889,"w":41.58299999999998,"clr":-1,"A":"left","R":[{"T":"included%20in%20box%201%20of%20your%20Form%20W-2%20(wages).%20This%20amount%20should%20be%20shown%20in%20box%2012%20of%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":15.576,"w":9.409000000000004,"clr":-1,"A":"left","R":[{"T":"Form%20W-2%20with%20code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.55,"y":15.576,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"P%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":28.624,"y":15.576,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":17.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":3.686,"clr":-1,"A":"left","R":[{"T":"Is%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.902000000000001,"y":17.089,"w":5.112,"clr":-1,"A":"left","R":[{"T":"more%20than%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.006,"y":17.089,"w":3.205,"clr":-1,"A":"left","R":[{"T":"line%204%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.033,"y":18.589,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.313,"y":18.651,"w":2.056,"clr":-1,"A":"left","R":[{"T":"You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.218,"y":18.651,"w":3.5560000000000005,"clr":-1,"A":"left","R":[{"T":"cannot%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.128,"y":18.651,"w":32.342,"clr":-1,"A":"left","R":[{"T":"deduct%20your%20moving%20expenses.%20If%20line%203%20is%20less%20than%20line%204%2C%20subtract%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.311,"y":19.389,"w":35.513000000000005,"clr":-1,"A":"left","R":[{"T":"from%20line%204%20and%20include%20the%20result%20on%20Form%201040%2C%20line%207%2C%20or%20Form%201040NR%2C%20line%208.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.188,"y":20.839,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.313,"y":20.808,"w":37.08599999999999,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203.%20Enter%20the%20result%20here%20and%20on%20Form%201040%2C%20line%2026%2C%20or%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.305,"y":21.546,"w":13.041,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2026.%20This%20is%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.759,"y":21.546,"w":13.170000000000007,"clr":-1,"A":"left","R":[{"T":"moving%20expense%20deduction%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.556,"y":21.546,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":21.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":22.339,"w":33.507999999999996,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.675,"y":22.375,"w":7.707000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012490K%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":22.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":22.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"3903","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":22.321,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.149,"y":3.492,"w":41.79099999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%203903%20and%20its%20instructions%20is%20available%20at%20www.irs.gov%2Fform3903.%20","S":-1,"TS":[0,10.76,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NEWEMPL","EN":0},"TI":2283,"AM":0,"x":20.827,"y":0.754,"w":20.113,"h":1.292},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2284,"AM":1024,"x":6.188,"y":5.875,"w":74.25,"h":0.875,"TU":"Page 1. Name(s) shown on return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2285,"AM":1024,"x":80.438,"y":5.875,"w":18.563,"h":0.875,"TU":"Your social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":2286,"AM":0,"x":82.912,"y":9.75,"w":12.375,"h":0.833,"TU":"Line 1. Transportation and storage of household goods and personal effects (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":2287,"AM":0,"x":82.912,"y":11.25,"w":12.375,"h":0.833,"TU":"Line 2. Travel (including lodging) from your old home to your new home (see instructions). Do not include the cost of meals. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":2288,"AM":1024,"x":82.912,"y":12.772,"w":12.375,"h":0.833,"TU":"Line 3. Add lines 1 and 2. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":2289,"AM":0,"x":82.912,"y":15.75,"w":12.375,"h":0.833,"TU":"Line 4. Enter the total amount your employer paid you for the expenses listed on lines 1 and 2 that is not included in box 1 of your Form W-2 (wages). This amount should be shown in box 12 of your Form W-2 with code P. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":2292,"AM":0,"x":82.912,"y":21.75,"w":12.375,"h":0.833,"TU":"Line 5. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOBOX","EN":0},"TI":2290,"AM":0,"x":10.822,"y":18.496,"w":3.094,"h":1.125,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YESBOX","EN":0},"TI":2291,"AM":0,"x":10.822,"y":20.656,"w":3.094,"h":1.125,"checked":false}],"id":{"Id":"YNXRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4136.content.txt b/test/data/fd/form/F4136.content.txt new file mode 100755 index 00000000..945afa0b --- /dev/null +++ b/test/data/fd/form/F4136.content.txt @@ -0,0 +1,587 @@ +Nontaxable Use of Gasoline Note. +Form +4136 +Department of the Treasury +Internal Revenue Service +(99) +Credit for Federal Tax Paid on Fuels +a +. +OMB No. 1545-0162 +20 +13 +Attachment +Sequence No. +23 +Name (as shown on your income tax return) +Taxpayer identification number +Caution. + + + +credit card issuer. +The alternative fuel mixture credit cannot be claimed on this form or on Schedule 3 (Form 8849). It must be taken as +a credit against your taxable fuel liability (gasoline, diesel fuel, and kerosene) reported on Form 720. +1 +CRN is credit reference number. +(a) Type of use +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + + + +a +Off-highway business use +b +Use on a farm for farming purposes +c +$ +d +Exported +} +2 Nontaxable Use of Aviation Gasoline +(a) Type of use +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + + +a +Use in commercial aviation (other than foreign trade) +$ +b +c +Exported +d +LUST tax on aviation fuels used in foreign trade +3 Nontaxable Use of Undyed Diesel Fuel +Claimant certifies that the diesel fuel did not contain visible evidence of dye. +a +(a) Type of use +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + + + +a +Nontaxable use + +b +Use on a farm for farming purposes +$ +c +Use in trains +d +Use in certain intercity and local buses (see +Caution + +above line 1) +e +Exported +} +4 Nontaxable Use of Undyed Kerosene (Other Than Kerosene Used in Aviation) +Claimant certifies that the kerosene did not contain visible evidence of dye. +a +(a) Type of use +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + + +a +Nontaxable use taxed at $.244 +b +Use on a farm for farming purposes +$ +c +Use in certain intercity and local buses (see +Caution + +above line 1) +d +Exported +e +Nontaxable use taxed at $.044 +f +Nontaxable use taxed at $.219 +} +For Paperwork Reduction Act Notice, see the separate instructions. +Cat. No. 12625R +Form +4136 + (2013) +$ .183 +.183 +362 +.183 +.184 +411 +$ .15 +354 +.193 +324 +.194 +412 +.001 +433 +$ .243 +.243 +360 +.243 +353 +.17 +350 +.244 +413 +$ .243 +.243 +346 +.17 +347 +.244 +414 +.043 +377 +.218 +369 +Exception. If any of the kerosene included in this claim did contain visible evidence of dye, attach an explanation and check here +Exception. If any of the diesel fuel included in this claim did contain visible evidence of dye, attach an explanation and check here +Other nontaxable use (see Caution above line 1) +Other nontaxable use (see Caution above line 1) +For claims on lines 1c and 2b (type of use 13 and 14), claimant certifies that acertificate has not been provided to the +claims on lines 1c and 2b (type of use 13 and 14), 3d, 4c, and 5, claimant has not waived theright to make the claim. +Claimant has the name and address of the person who sold the fuel to the claimant and the dates ofpurchase. For + Information about Form 4136 and its separate instructions is at www.irs.gov/form4136 +----------------Page (0) Break---------------- +Form 4136 (2013) +Page +2 +5 +Kerosene Used in Aviation +(a) Type of use +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + + +a +Kerosene used in commercial aviation (other than foreign +trade) taxed at $.244 +$ +b +Kerosene used in commercial aviation (other than foreign +trade) taxed at $.219 +c +Nontaxable use (other than use by state or local +government) taxed at $.244 +d +Nontaxable use (other than use by state or local +government) taxed at $.219 +e +LUST tax on aviation fuels used in foreign trade +6 Sales by Registered Ultimate Vendors of Undyed Diesel Fuel Registration No. +a +of the buyer to make the claim. Claimant certifies that the diesel fuel did not contain visible evidence of dye. +Exception. +a +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + +a +Use by a state or local government +$ +b +Use in certain intercity and local buses +7 +Sales by Registered Ultimate Vendors of Undyed Kerosene (Other +Than Kerosene For Use in Aviation) +Registration No. + +a +of the buyer to make the claim. Claimant certifies that the kerosene did not contain visible evidence of dye. +Exception. +a +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + +a +Use by a state or local government +b +Sales from a blocked pump +$ +c +Use in certain intercity and local buses +} +8 +Sales by Registered Ultimate Vendors of Kerosene For Use in Aviation +Registration No. + +a +to be submitted. +(a) Type of use +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + + +a +Use in commercial aviation (other than foreign trade) taxed +at $.219 +$ +b +Use in commercial aviation (other than foreign trade) taxed +at $.244 +c +Nonexempt use in noncommercial aviation +d +Other nontaxable uses taxed at $.244 +e +Other nontaxable uses taxed at $.219 +f +LUST tax on aviation fuels used in foreign trade +Form +4136 + (2013) +$ .200 +417 +.175 +355 +.243 +346 +.218 +369 +.001 +433 +$ .243 +360 +.17 +350 +$ .243 +.243 +346 +.17 +347 +$ .175 +355 +.200 +417 +.025 +418 +.243 +346 +.218 +369 +.001 +433 +Claimant sold the kerosene for use in aviation at a tax-excluded price and has not collected the amount of tax from the buyer, repaid the +amount of tax to the buyer, or has obtained the written consent of the buyer to make the claim. See the instructions for additional information +Claimant certifies that it sold the kerosene at a tax-excluded price, repaid the amount of tax to the buyer, or has obtained the written consent +If any of the kerosene included in this claim did contain visible evidence of dye, attach an explanation and check here +If any of the diesel fuel included in this claim did contain visible evidence of dye, attach an explanation and check here +Claimant certifies that it sold the diesel fuel at a tax-excluded price, repaid the amount of tax to the buyer, or has obtained the written consent +(see Caution above line 1) +----------------Page (1) Break---------------- +Form 4136 (2013) +Page +3 +9 Reserved +Registration No. + +a +(b) Rate +(c) Gallons of +alcohol +(d) Amount of credit + +(e) CRN + +a +Reserved +b +Reserved +10 +Biodiesel or Renewable Diesel Mixture Credit +Registration No. + +a + + + + + + +instructions for line 10 for information about renewable diesel used in aviation. +(b) Rate +(c) Gallons of +biodiesel or +renewable +diesel +(d) Amount of credit + +(e) CRN + + + +a +Biodiesel (other than agri-biodiesel) mixtures +$ +b +Agri-biodiesel mixtures +c +Renewable diesel mixtures +11 Nontaxable Use of Alternative Fuel +Caution. +There is a reduced credit rate for use in certain intercity and local buses (type of use 5) (see instructions). +(a) Type of use +(b) Rate +(c) Gallons + or gasoline + gallon +equivalents (GGE) +(d) Amount of credit + +(e) CRN + + + + +a +Liquefied petroleum gas (LPG) +$ +b +“P Series” fuels +c +Compressed natural gas (CNG) (GGE = 126.67 cu. ft.) +d +Liquefied hydrogen +e +Fischer-Tropsch process liquid fuel from coal (including +peat) +f +Liquid fuel derived from biomass +g +Liquefied natural gas (LNG) +h +Liquefied gas derived from biomass +12 +Alternative Fuel Credit +Registration No. + +a +(b) Rate +(c) Gallons + or gasoline + gallon +equivalents (GGE) +(d) Amount of credit + + +(e) CRN + + + +a +Liquefied petroleum gas (LPG) +$ +b +“P Series” fuels +c +Compressed natural gas (CNG) (GGE = 121 cu. ft.) +d +Liquefied hydrogen +e +Fischer-Tropsch process liquid fuel from coal (including peat) +f +Liquid fuel derived from biomass +g +Liquefied natural gas (LNG) +h +Liquefied gas derived from biomass +i +Compressed gas derived from biomass (GGE = 121 cu. ft.) +Form +4136 + (2013) +$1.00 +388 +$1.00 +390 +$1.00 +307 +$ .183 +419 +.183 +420 +.183 +421 +.183 +422 +.243 +423 +.243 +424 +.243 +425 +.183 +435 +$ .50 +426 +.50 +427 +.50 +428 +.50 +429 +.50 +430 +.50 +431 +.50 +432 +.50 +436 +.50 +437 +D6751 and met EPA•s registration requirements for fuels and fuel additives. The mixture was sold by the claimant to any person foruse as a +fuel or was used as a fuel by the claimant. Claimant has attached the Certificate for Biodiesel and, if applicable, the Statement ofBiodiesel +The renewable diesel used to produce the renewable diesel mixture was derived from biomass process, met EPA•s registration requirements +for fuels and fuel additives, and met ASTM D975, D396, or other equivalent standard approved by the IRS. The mixture was sold by the +claimant to any person for use as a fuel or was used as a fuel by the claimant. Claimant hasattached the Certificate for Biodiesel and, if +applicable, the Statement of Biodiesel Reseller, both of which have been edited as discussedin the Instructions for Form 4136. See the +Reseller. Renewable diesel mixtures. Claimant produced a mixture by mixing renewable diesel with liquid fuel (other thanrenewable diesel). +Biodiesel mixtures. Claimant produced a mixture by mixing biodiesel with diesel fuel. The biodiesel used to produce the mixture metASTM +----------------Page (2) Break---------------- +Form 4136 (2013) +Page +4 +13 +Registered Credit Card Issuers +Registration No. + +a +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + +a +Diesel fuel sold for the exclusive use of a state or local government +$ +b +Kerosene sold for the exclusive use of a state or local government +c +Kerosene for use in aviation sold for the exclusive use of a state or local +government taxed at $.219 +14 Nontaxable Use of a Diesel-Water Fuel Emulsion +Caution. +There is a reduced credit rate for use in certain intercity and local buses (type of use 5) (see instructions). +(a) Type of use +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + + +a +Nontaxable use +$ +b +Exported +15 Diesel-Water Fuel Emulsion Blending Registration No. + +a +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + +Blender credit +$ +16 Exported Dyed Fuels and Exported Gasoline Blendstocks +(b) Rate +(c) Gallons +(d) Amount of credit + +(e) CRN + + + +a +Exported dyed diesel fuel and exported gasoline blendstocks taxed at $.001 +$ +b +Exported dyed kerosene +17 + + +the proper line of other returns. +a +17 +$ +Form +4136 + (2013) +$ .243 +360 +.243 +346 +.218 +369 +$ .197 +309 +.198 +306 +$ .046 +310 +$ .001 +415 +.001 +416 +1040, line 70; Form 1120, Schedule J, line 19b; Form 1120S, line 23c; Form 1041, line 24g; or +Total income tax credit claimed. Add lines 1 through 16, column (d). Enter here and onForm +----------------Page (3) Break---------------- diff --git a/test/data/fd/form/F4136.fields.json b/test/data/fd/form/F4136.fields.json new file mode 100755 index 00000000..c4ee5290 --- /dev/null +++ b/test/data/fd/form/F4136.fields.json @@ -0,0 +1 @@ +[{"id":"L3BX","type":"box","calc":false,"value":""},{"id":"L4BX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1AG","type":"number","calc":false,"value":""},{"id":"L1BG","type":"number","calc":false,"value":""},{"id":"L1CT1","type":"number","calc":false,"value":""},{"id":"L1CG1","type":"number","calc":false,"value":""},{"id":"L1TABC","type":"number","calc":true,"value":""},{"id":"NTUGEG","type":"number","calc":false,"value":""},{"id":"NTUGECR","type":"number","calc":false,"value":""},{"id":"L2AG","type":"number","calc":false,"value":""},{"id":"L2TA","type":"number","calc":true,"value":""},{"id":"L2BT1","type":"number","calc":false,"value":""},{"id":"L2BG1","type":"number","calc":false,"value":""},{"id":"L2T","type":"number","calc":true,"value":""},{"id":"NTUAGEG","type":"number","calc":false,"value":""},{"id":"NTUAGCR","type":"number","calc":true,"value":""},{"id":"LUSTAGAL","type":"number","calc":false,"value":""},{"id":"LUSTACR","type":"number","calc":true,"value":""},{"id":"L3AT1","type":"number","calc":false,"value":""},{"id":"L3AG1","type":"number","calc":false,"value":""},{"id":"FARMGAL","type":"number","calc":false,"value":""},{"id":"L3TAB","type":"number","calc":true,"value":""},{"id":"L3BG2B","type":"number","calc":false,"value":""},{"id":"L3BTB","type":"number","calc":true,"value":""},{"id":"L3CG","type":"number","calc":false,"value":""},{"id":"L3CT","type":"number","calc":true,"value":""},{"id":"NTUDFEG","type":"number","calc":false,"value":""},{"id":"NTUDFECR","type":"number","calc":true,"value":""},{"id":"L4AT1","type":"number","calc":false,"value":""},{"id":"L4AG1","type":"number","calc":false,"value":""},{"id":"PURPGAL","type":"number","calc":false,"value":""},{"id":"L4TAB","type":"number","calc":true,"value":""},{"id":"BUSGAL","type":"number","calc":false,"value":""},{"id":"BUSCRED","type":"number","calc":true,"value":""},{"id":"NTUKEG","type":"number","calc":false,"value":""},{"id":"NTUKECR","type":"number","calc":true,"value":""},{"id":"NTTYPE1","type":"number","calc":false,"value":""},{"id":"NTGAL1","type":"number","calc":false,"value":""},{"id":"NTCR1","type":"number","calc":true,"value":""},{"id":"NTTYPE2","type":"number","calc":false,"value":""},{"id":"NTGAL2","type":"number","calc":false,"value":""},{"id":"NTCR2","type":"number","calc":true,"value":""},{"id":"L5BX","type":"box","calc":false,"value":""},{"id":"L6BX","type":"box","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L14A1G","type":"number","calc":false,"value":""},{"id":"L14A1","type":"number","calc":true,"value":""},{"id":"L14A2G","type":"number","calc":false,"value":""},{"id":"L14A2","type":"number","calc":true,"value":""},{"id":"NTNTYPEA","type":"number","calc":false,"value":""},{"id":"NTNGALA","type":"number","calc":false,"value":""},{"id":"NTNCREDA","type":"number","calc":true,"value":""},{"id":"NTNTYPEB","type":"number","calc":false,"value":""},{"id":"NTNGALB","type":"number","calc":false,"value":""},{"id":"NTNCREDB","type":"number","calc":true,"value":""},{"id":"LUSTBG","type":"number","calc":false,"value":""},{"id":"LUSTBC","type":"number","calc":true,"value":""},{"id":"UV5","type":"alpha","calc":false,"value":""},{"id":"L5BG","type":"number","calc":false,"value":""},{"id":"L5T","type":"number","calc":true,"value":""},{"id":"LOCGAL","type":"number","calc":false,"value":""},{"id":"LOCCRED","type":"number","calc":true,"value":""},{"id":"UV6","type":"alpha","calc":false,"value":""},{"id":"L6BG","type":"number","calc":false,"value":""},{"id":"L6CG","type":"number","calc":false,"value":""},{"id":"L6T","type":"number","calc":true,"value":""},{"id":"INGAL","type":"alpha","calc":false,"value":""},{"id":"INCRED","type":"number","calc":true,"value":""},{"id":"SALEREG","type":"alpha","calc":false,"value":""},{"id":"L14B1G","type":"number","calc":false,"value":""},{"id":"L14B1","type":"number","calc":true,"value":""},{"id":"L14B2G","type":"number","calc":false,"value":""},{"id":"L14B2","type":"number","calc":true,"value":""},{"id":"L14B3G","type":"number","calc":false,"value":""},{"id":"L14B3","type":"number","calc":true,"value":""},{"id":"NTATYPE","type":"number","calc":false,"value":""},{"id":"L14B4G","type":"number","calc":false,"value":""},{"id":"L14B4","type":"number","calc":true,"value":""},{"id":"NONUSE","type":"number","calc":false,"value":""},{"id":"L14B5G","type":"number","calc":false,"value":""},{"id":"L14B5","type":"number","calc":true,"value":""},{"id":"UVLUSTG","type":"number","calc":false,"value":""},{"id":"UVLUSTC","type":"number","calc":true,"value":""},{"id":"NAM3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"BIOREG","type":"alpha","calc":false,"value":""},{"id":"BIOGAL","type":"number","calc":false,"value":""},{"id":"BIOCRED","type":"number","calc":true,"value":""},{"id":"AGRIGAL","type":"number","calc":false,"value":""},{"id":"AGRICRED","type":"number","calc":true,"value":""},{"id":"RENEWGAL","type":"number","calc":false,"value":""},{"id":"RENEWCR","type":"number","calc":true,"value":""},{"id":"BUS1","type":"alpha","calc":false,"value":""},{"id":"NTLPTYPE","type":"number","calc":false,"value":""},{"id":"NTLPGGAL","type":"number","calc":false,"value":""},{"id":"NTLPGCR","type":"number","calc":true,"value":""},{"id":"NTPTYPE","type":"number","calc":false,"value":""},{"id":"NTPGAL","type":"number","calc":false,"value":""},{"id":"NTPCR","type":"number","calc":true,"value":""},{"id":"NTCNTYPE","type":"number","calc":false,"value":""},{"id":"NTCNGGAL","type":"number","calc":false,"value":""},{"id":"NTCNGCR","type":"number","calc":false,"value":""},{"id":"NTLHTYPE","type":"number","calc":false,"value":""},{"id":"NTLHGAL","type":"number","calc":false,"value":""},{"id":"NTLHCR","type":"number","calc":true,"value":""},{"id":"NTCOALTY","type":"number","calc":false,"value":""},{"id":"NTCOALGA","type":"number","calc":false,"value":""},{"id":"NTCOALCR","type":"number","calc":true,"value":""},{"id":"NTBIOTYP","type":"number","calc":false,"value":""},{"id":"NTBIOGAL","type":"number","calc":false,"value":""},{"id":"NTBIOCR","type":"number","calc":true,"value":""},{"id":"NTLNTYPE","type":"number","calc":false,"value":""},{"id":"NTLNGGAL","type":"number","calc":false,"value":""},{"id":"NTLNGCR","type":"number","calc":true,"value":""},{"id":"NTLGTYPE","type":"number","calc":false,"value":""},{"id":"NTLGGAL","type":"number","calc":false,"value":""},{"id":"NTLGCR","type":"number","calc":true,"value":""},{"id":"ALTREG","type":"alpha","calc":false,"value":""},{"id":"AFLPGGAL","type":"number","calc":false,"value":""},{"id":"AFLPGCR","type":"number","calc":true,"value":""},{"id":"AFPGAL","type":"number","calc":false,"value":""},{"id":"AFPCR","type":"number","calc":true,"value":""},{"id":"AFCNGGAL","type":"number","calc":false,"value":""},{"id":"AFCNGCR","type":"number","calc":true,"value":""},{"id":"AFLHGAL","type":"number","calc":false,"value":""},{"id":"AFLHCR","type":"number","calc":true,"value":""},{"id":"AFCOALGA","type":"number","calc":false,"value":""},{"id":"AFCOALCR","type":"number","calc":true,"value":""},{"id":"AFBIOGAL","type":"number","calc":false,"value":""},{"id":"AFBIOCR","type":"number","calc":true,"value":""},{"id":"AFLNGGAL","type":"number","calc":false,"value":""},{"id":"AFLNGCR","type":"number","calc":true,"value":""},{"id":"AFLGGAL","type":"number","calc":false,"value":""},{"id":"AFLGCR","type":"number","calc":true,"value":""},{"id":"AFCGGAL","type":"number","calc":false,"value":""},{"id":"AFCGCR","type":"number","calc":true,"value":""},{"id":"NAM4","type":"alpha","calc":true,"value":""},{"id":"SSN4","type":"ssn","calc":true,"value":""},{"id":"RCCREG","type":"alpha","calc":false,"value":""},{"id":"KTAX","type":"alpha","calc":false,"value":""},{"id":"RCCDGAL","type":"number","calc":false,"value":""},{"id":"RCCDCR","type":"number","calc":true,"value":""},{"id":"RCCKGAL","type":"number","calc":false,"value":""},{"id":"RCCKCR","type":"number","calc":true,"value":""},{"id":"RCCRT","type":"number","calc":false,"value":""},{"id":"RCCAGAL","type":"number","calc":false,"value":""},{"id":"RCCACR","type":"number","calc":false,"value":""},{"id":"BUS17","type":"alpha","calc":false,"value":""},{"id":"DWNTTYPE","type":"number","calc":false,"value":""},{"id":"DWNTRT","type":"number","calc":false,"value":""},{"id":"DWNTGAL","type":"number","calc":false,"value":""},{"id":"DWNTCR","type":"number","calc":true,"value":""},{"id":"DWEXGAL","type":"number","calc":false,"value":""},{"id":"DWEXCR","type":"number","calc":true,"value":""},{"id":"DWBREG","type":"alpha","calc":false,"value":""},{"id":"DWBGAL","type":"number","calc":false,"value":""},{"id":"DWBCR","type":"number","calc":true,"value":""},{"id":"EXDGAL","type":"number","calc":false,"value":""},{"id":"EXDCR","type":"number","calc":true,"value":""},{"id":"EXKGAL","type":"number","calc":false,"value":""},{"id":"EXKCR","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4136.json b/test/data/fd/form/F4136.json new file mode 100755 index 00000000..c38f5908 --- /dev/null +++ b/test/data/fd/form/F4136.json @@ -0,0 +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.813,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":59.486},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.2000000000000002,"l":59.486},{"oc":"#221f1f","x":65.547,"y":5.251,"w":1.5,"l":33.498},{"oc":"#221f1f","x":65.547,"y":6.751,"w":1.2000000000000002,"l":33.498},{"oc":"#221f1f","x":6.19,"y":11.251,"w":0.75,"l":92.836},{"oc":"#221f1f","x":6.19,"y":12.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.359,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":13.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":13.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":13.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":14.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":13.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":11.097,"y":15.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.265,"y":15.001,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":14.251,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.359,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":11.097,"y":15.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":59.359,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":77.922,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":15.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":48.265,"y":16.501,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":15.751,"w":0.75,"l":11.137},{"oc":"#221f1f","x":66.784,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.19,"y":16.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":19.49,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.359,"y":20.24,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":20.24,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":20.24,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":20.24,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":21.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.265,"y":21.001,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":20.251,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.359,"y":21.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":21.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":21.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":59.359,"y":21.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":21.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":22.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":22.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":22.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":8.622,"y":23.254,"w":0.75,"l":2.561},{"oc":"#221f1f","x":11.097,"y":23.254,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.265,"y":23.254,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":22.501,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.359,"y":23.254,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":23.254,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":23.254,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":23.254,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":23.254,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":23.251,"w":0.75,"l":2.475},{"oc":"#221f1f","x":6.19,"y":27.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":96.871,"y":28.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":96.871,"y":27.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":11.097,"y":28.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":48.222,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":28.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":59.359,"y":29.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.784,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":28.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":77.922,"y":29.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":28.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":92.772,"y":29.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":30.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":59.359,"y":30.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":30.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":11.097,"y":30.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":30.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":77.922,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":30.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":31.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":31.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.784,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":31.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":33.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":33.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":33.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":48.265,"y":33.751,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":33.001,"w":0.75,"l":11.137},{"oc":"#221f1f","x":6.19,"y":33.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":36.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":96.871,"y":38.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":96.871,"y":37.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":11.14,"y":38.251,"w":0.75,"l":87.863},{"oc":"#221f1f","x":48.222,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":39.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":39.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":39.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":59.359,"y":39.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":39.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":11.097,"y":40.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":40.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":40.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":42.002,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":42.002,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":42.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":42.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":42.002,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":42.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.265,"y":42.751,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":42.002,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.359,"y":42.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":42.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":43.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":43.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":43.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":44.251,"w":1.5,"l":44.636},{"oc":"#221f1f","x":50.697,"y":44.251,"w":1.5,"l":37.211},{"oc":"#221f1f","x":87.822,"y":44.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.662},{"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.594},{"oc":"#221f1f","x":84.152,"y":2.775,"w":1.5,"l":1.742},{"oc":"#221f1f","x":84.152,"y":4.064,"w":1.5,"l":1.203},{"oc":"#221f1f","x":65.59,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":48.265,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":14.251,"w":0.75,"l":0.749},{"oc":"#221f1f","x":48.265,"y":14.251,"w":0.75,"l":0.749},{"oc":"#221f1f","x":59.402,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"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":66.827,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":15.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":15.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":19.475,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":19.475,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":19.475,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":19.475,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":19.475,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":20.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"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":66.827,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"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":66.827,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":22.501,"w":0.75,"l":0.753},{"oc":"#221f1f","x":48.265,"y":22.501,"w":0.75,"l":0.753},{"oc":"#221f1f","x":59.402,"y":22.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":66.827,"y":22.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":77.965,"y":22.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":89.102,"y":22.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":92.815,"y":22.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":98.246,"y":27.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":96.871,"y":27.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":48.265,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"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":59.402,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":33.001,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":33.001,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.246,"y":37.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":96.871,"y":37.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":48.265,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":40.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":42.002,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":42.002,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":43.486,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":48.265,"y":13.501,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":14.251,"w":11.137,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":15.751,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":20.251,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":21.751,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":22.501,"w":11.137,"h":0.753,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":30.001,"w":11.137,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":30.751,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":31.501,"w":11.137,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":33.001,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":39.751,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":40.501,"w":11.137,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":42.002,"w":11.137,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":10.89,"y":11.376,"w":13.504000000000007,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20Use%20of%20Gasoline%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.65,"y":11.376,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"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.224,"clr":-1,"A":"left","R":[{"T":"4136","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.819,"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.314,"w":11.927000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":18.239,"y":4.314,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.291,"y":2.443,"w":17.116000000000007,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Federal%20Tax%20Paid%20on%20Fuels","S":-1,"TS":[0,20,1,0]}]},{"oc":"#221f1f","x":23.273,"y":3.7750000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.037,"y":3.8680000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.88,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0162","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.163,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.163,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":86.48,"y":3.79,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.48,"y":4.361,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.458,"y":4.361,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.035,"w":19.465999999999998,"clr":-1,"A":"left","R":[{"T":"Name%20(as%20shown%20on%20your%20income%20tax%20return)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.371,"y":5.001,"w":14.837000000000003,"clr":-1,"A":"left","R":[{"T":"Taxpayer%20identification%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.665,"w":4.555999999999999,"clr":-1,"A":"left","R":[{"T":"Caution.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.764,"y":8.727,"w":7.962999999999999,"clr":-1,"A":"left","R":[{"T":"credit%20card%20issuer.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.764,"y":9.54,"w":51.93699999999995,"clr":-1,"A":"left","R":[{"T":"The%20alternative%20fuel%20mixture%20credit%20cannot%20be%20claimed%20on%20this%20form%20or%20on%20Schedule%203%20(Form%208849).%20It%20%20must%20be%20taken%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.764,"y":10.227,"w":44.06099999999997,"clr":-1,"A":"left","R":[{"T":"a%20credit%20against%20your%20taxable%20fuel%20liability%20(gasoline%2C%20diesel%20fuel%2C%20and%20kerosene)%20reported%20on%20Form%20720.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.371,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.508,"y":11.376,"w":14.409000000000006,"clr":-1,"A":"left","R":[{"T":"CRN%20is%20credit%20reference%20number.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.796,"y":12.487,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":12.487,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":12.487,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":12.487,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":12.487,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":13.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.296,"w":11.557000000000004,"clr":-1,"A":"left","R":[{"T":"Off-highway%20business%20use","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.027,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.045,"w":15.873000000000003,"clr":-1,"A":"left","R":[{"T":"Use%20on%20a%20farm%20for%20farming%20purposes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":77.846,"y":14.795,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":15.527000000000001,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.545000000000002,"w":4.074,"clr":-1,"A":"left","R":[{"T":"Exported","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.776,"y":14.265,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,20,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":17.449000000000005,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20Use%20of%20Aviation%20Gasoline","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.796,"y":19.226,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":19.226,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":19.226,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":19.249,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":19.226,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":20.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.045,"w":23.355,"clr":-1,"A":"left","R":[{"T":"Use%20in%20commercial%20aviation%20(other%20than%20foreign%20trade)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":20.045,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.778,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":21.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.545,"w":4.074,"clr":-1,"A":"left","R":[{"T":"Exported","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":22.281,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.299,"w":21.168999999999997,"clr":-1,"A":"left","R":[{"T":"LUST%20tax%20on%20aviation%20fuels%20used%20in%20foreign%20trade","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":18.227000000000007,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20Use%20of%20Undyed%20Diesel%20Fuel","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.758,"w":34.451,"clr":-1,"A":"left","R":[{"T":"Claimant%20certifies%20that%20the%20diesel%20fuel%20did%20not%20contain%20visible%20evidence%20of%20dye.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.568,"y":27.352,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":48.796,"y":28.237,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":28.237,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":28.237,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":28.237,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":28.237,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":29.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.046,"w":6.982000000000001,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20use","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":29.777,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.795,"w":15.873000000000003,"clr":-1,"A":"left","R":[{"T":"Use%20on%20a%20farm%20for%20farming%20purposes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":29.795,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":30.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.545,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20in%20trains","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.246,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.258000000000003,"w":19.631999999999998,"clr":-1,"A":"left","R":[{"T":"Use%20in%20certain%20intercity%20and%20local%20buses%20(see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":37.884,"y":31.258000000000003,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"Caution","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.945999999999998,"w":5.649,"clr":-1,"A":"left","R":[{"T":"above%20line%201)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.796,"w":4.074,"clr":-1,"A":"left","R":[{"T":"Exported","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.023,"y":29.534,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,14,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":36.72999999999999,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20Use%20of%20Undyed%20Kerosene%20(Other%20Than%20Kerosene%20Used%20in%20Aviation)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.508,"w":34.044000000000004,"clr":-1,"A":"left","R":[{"T":"Claimant%20certifies%20that%20the%20kerosene%20did%20not%20contain%20visible%20evidence%20of%20dye.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.008,"y":37.102,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":48.796,"y":37.987,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":37.987,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":37.987,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":37.987,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":37.987,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":38.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.796,"w":13.670000000000005,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20use%20taxed%20at%20%24.244","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.528,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.555,"w":15.873000000000003,"clr":-1,"A":"left","R":[{"T":"Use%20on%20a%20farm%20for%20farming%20purposes","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":77.846,"y":39.546,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":40.247,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.258,"w":19.631999999999998,"clr":-1,"A":"left","R":[{"T":"Use%20in%20certain%20intercity%20and%20local%20buses%20(see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":37.884,"y":40.258,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"Caution","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.946,"w":5.649,"clr":-1,"A":"left","R":[{"T":"above%20line%201)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.778,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.796,"w":4.074,"clr":-1,"A":"left","R":[{"T":"Exported","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":42.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.546,"w":13.670000000000005,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20use%20taxed%20at%20%24.044","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":43.278,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.296,"w":13.670000000000005,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20use%20taxed%20at%20%24.219","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.023,"y":39.253,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,14,0,0]}]},{"oc":"#221f1f","x":5.94,"y":44.108,"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":64.572,"y":44.126,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012625R","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.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":44.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4136","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":44.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":61.036,"y":13.394,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":13.394,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":14.144,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":14.019,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"362","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":14.894,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":15.643999999999998,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".184","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":15.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"411","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.336,"y":20.081,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.482,"y":20.081,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".15","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":20.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"354","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.766,"y":20.831,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".193","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#231f20","x":94.512,"y":20.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"324","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.699,"y":21.581,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".194","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":21.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"412","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.699,"y":22.334,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".001","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":22.334,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"433","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.036,"y":29.082,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":29.082,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":29.831,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":29.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"360","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":30.581,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":30.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"353","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.947,"y":32.081,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".17","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":32.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"350","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":32.832,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".244","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":32.832,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"413","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.036,"y":38.832,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":38.832,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":39.582,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":39.582,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"346","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.947,"y":41.082,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".17","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":41.082,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"347","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":41.832,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".244","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":41.832,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"414","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":42.582,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".043","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":42.582,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"377","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":43.332,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".218","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":43.332,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"369","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.196,"w":57.25199999999993,"clr":-1,"A":"left","R":[{"T":"Exception.%20%20If%20any%20of%20the%20kerosene%20included%20in%20this%20claim%20did%20contain%20visible%20evidence%20of%20dye%2C%20attach%20an%20explanation%20and%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.446,"w":57.64099999999992,"clr":-1,"A":"left","R":[{"T":"Exception.%20%20If%20any%20of%20the%20diesel%20fuel%20included%20in%20this%20claim%20did%20contain%20visible%20evidence%20of%20dye%2C%20attach%20an%20explanation%20and%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.795,"w":21.511000000000013,"clr":-1,"A":"left","R":[{"T":"Other%20nontaxable%20use%20(see%20Caution%20above%20line%201)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.795,"w":21.511000000000013,"clr":-1,"A":"left","R":[{"T":"Other%20nontaxable%20use%20(see%20Caution%20above%20line%201)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.764,"y":8.04,"w":52.08699999999995,"clr":-1,"A":"left","R":[{"T":"For%20claims%20on%20lines%201c%20and%202b%20(type%20of%20use%2013%20and%2014)%2C%20claimant%20certifies%20that%20acertificate%20has%20not%20been%20provided%20to%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.764,"y":7.352,"w":51.77699999999994,"clr":-1,"A":"left","R":[{"T":"claims%20on%20lines%201c%20and%202b%20(type%20of%20use%2013%20and%2014)%2C%203d%2C%204c%2C%20and%205%2C%20claimant%20has%20not%20waived%20theright%20to%20make%20the%20claim.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.937,"y":6.665,"w":50.828999999999944,"clr":-1,"A":"left","R":[{"T":"Claimant%20has%20the%20name%20and%20address%20of%20the%20person%20who%20sold%20the%20fuel%20to%20the%20claimant%20and%20the%20dates%20ofpurchase.%20For%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.304,"y":3.8680000000000003,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%204136%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform4136","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2293,"AM":1024,"x":6.623,"y":5.881,"w":58.642,"h":0.912,"TU":"Name (as shown on your income tax return)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2294,"AM":1024,"x":66.526,"y":5.881,"w":22.505,"h":0.912,"TU":"Taxpayer identification number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1AG","EN":0},"TI":2295,"AM":0,"x":66.923,"y":13.574,"w":9.212,"h":0.833,"TU":"Line 1a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1BG","EN":0},"TI":2296,"AM":0,"x":66.927,"y":14.324,"w":9.093,"h":0.833,"TU":"Line 1b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1CT1","EN":0},"TI":2297,"AM":0,"x":48.272,"y":15.004,"w":10.952,"h":0.833,"TU":"Line 1c(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1CG1","EN":0},"TI":2298,"AM":0,"x":66.87,"y":15.029,"w":9.176,"h":0.833,"TU":"Line 1c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1TABC","EN":0},"TI":2299,"AM":1024,"x":79.033,"y":15.024,"w":9.853,"h":0.833,"TU":"Line 1c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUGEG","EN":0},"TI":2300,"AM":0,"x":66.835,"y":15.783,"w":9.991,"h":0.833,"TU":"Line 1d(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUGECR","EN":0},"TI":2301,"AM":0,"x":79.144,"y":15.806,"w":9.716,"h":0.833,"TU":"Line 1d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AG","EN":0},"TI":2302,"AM":0,"x":66.73,"y":20.274,"w":9.853,"h":0.833,"TU":"Line 2a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2TA","EN":0},"TI":2303,"AM":1024,"x":79.232,"y":20.295,"w":9.716,"h":0.833,"TU":"Line 2a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2BT1","EN":0},"TI":2304,"AM":0,"x":48.266,"y":20.989,"w":10.952,"h":0.847,"TU":"Line 2b(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2BG1","EN":0},"TI":2305,"AM":0,"x":66.734,"y":21.024,"w":9.991,"h":0.833,"TU":"Line 2b(b). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2T","EN":0},"TI":2306,"AM":1024,"x":79.273,"y":21.033,"w":9.716,"h":0.833,"TU":"Line 2b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUAGEG","EN":0},"TI":2307,"AM":0,"x":66.869,"y":21.776,"w":9.881,"h":0.833,"TU":"Line 2c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUAGCR","EN":0},"TI":2308,"AM":1024,"x":79.071,"y":21.783,"w":9.853,"h":0.833,"TU":"Line 2c(c). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LUSTAGAL","EN":0},"TI":2309,"AM":0,"x":66.834,"y":22.553,"w":9.863,"h":0.833,"TU":"Line 2d(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LUSTACR","EN":0},"TI":2310,"AM":1024,"x":79.071,"y":22.51,"w":9.853,"h":0.833,"TU":"Line 2d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3AT1","EN":0},"TI":2312,"AM":0,"x":48.208,"y":29.353,"w":10.952,"h":0.833,"TU":"Line 3a(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3AG1","EN":0},"TI":2313,"AM":0,"x":67.164,"y":29.328,"w":9.084,"h":0.833,"TU":"Line 3b(a). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FARMGAL","EN":0},"TI":2314,"AM":0,"x":67.232,"y":30.078,"w":8.901,"h":0.833,"TU":"Line 3b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3TAB","EN":0},"TI":2315,"AM":1024,"x":79.095,"y":30.052,"w":9.972,"h":0.833,"TU":"Line 3b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3BG2B","EN":0},"TI":2316,"AM":0,"x":67.22,"y":30.806,"w":10.183,"h":0.833,"TU":"Line 3c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3BTB","EN":0},"TI":2317,"AM":1024,"x":78.229,"y":30.806,"w":10.824,"h":0.833,"TU":"Line 3c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3CG","EN":0},"TI":2318,"AM":0,"x":66.982,"y":32.016,"w":10.787,"h":0.918,"TU":"Line 3d(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3CT","EN":0},"TI":2319,"AM":1024,"x":78.183,"y":32.089,"w":10.787,"h":0.868,"TU":"Line 3d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUDFEG","EN":0},"TI":2320,"AM":0,"x":67.027,"y":33.033,"w":10.952,"h":0.833,"TU":"Line 3e(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUDFECR","EN":0},"TI":2321,"AM":1024,"x":78.421,"y":33.056,"w":10.631,"h":0.833,"TU":"Line 3e(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4AT1","EN":0},"TI":2323,"AM":0,"x":48.273,"y":39.093,"w":10.952,"h":0.833,"TU":"Line 4a(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4AG1","EN":0},"TI":2324,"AM":0,"x":67.055,"y":39.045,"w":8.956,"h":0.833,"TU":"Line 4a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PURPGAL","EN":0},"TI":2325,"AM":0,"x":67.059,"y":39.865,"w":9.157,"h":0.833,"TU":"Line 4b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4TAB","EN":0},"TI":2326,"AM":1024,"x":79.37,"y":39.84,"w":9.459,"h":0.833,"TU":"Line 4b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSGAL","EN":0},"TI":2327,"AM":0,"x":66.853,"y":41.285,"w":10.787,"h":0.833,"TU":"Line 4c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSCRED","EN":0},"TI":2328,"AM":1024,"x":77.991,"y":41.265,"w":10.787,"h":0.833,"TU":"Line 4c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUKEG","EN":0},"TI":2329,"AM":0,"x":66.707,"y":42.08,"w":10.952,"h":0.833,"TU":"Line 4d(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTUKECR","EN":0},"TI":2330,"AM":1024,"x":78.101,"y":42.033,"w":10.76,"h":0.833,"TU":"Line 4d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTTYPE1","EN":0},"TI":2331,"AM":0,"x":48.128,"y":42.836,"w":10.952,"h":0.833,"TU":"Line 4e(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTGAL1","EN":0},"TI":2332,"AM":0,"x":66.771,"y":42.853,"w":10.952,"h":0.833,"TU":"Line 4e(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCR1","EN":0},"TI":2333,"AM":1024,"x":78.229,"y":42.853,"w":10.631,"h":0.833,"TU":"Line 4e(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTTYPE2","EN":0},"TI":2334,"AM":0,"x":48.132,"y":43.586,"w":10.952,"h":0.833,"TU":"Line 4f(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTGAL2","EN":0},"TI":2335,"AM":0,"x":66.771,"y":43.603,"w":10.952,"h":0.833,"TU":"Line 4f(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCR2","EN":0},"TI":2336,"AM":1024,"x":77.908,"y":43.603,"w":10.952,"h":0.833,"TU":"Line 4f(d). Amount of credit. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3BX","EN":0},"TI":2311,"AM":0,"x":96.493,"y":27.614,"w":2.558,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4BX","EN":0},"TI":2322,"AM":0,"x":96.624,"y":37.479,"w":1.646,"h":0.833}]}]},{"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":4.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.359,"y":5.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":5.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":5.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":5.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":6.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":5.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":6.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":6.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":6.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":6.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":8.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.265,"y":8.251,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":6.751,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.359,"y":8.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":8.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":9.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":9.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":11.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":59.359,"y":11.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":11.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":8.622,"y":12.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":11.097,"y":12.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.265,"y":12.001,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":11.251,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.359,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":12.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":12.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":12.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":12.001,"w":0.75,"l":2.475},{"oc":"#221f1f","x":6.19,"y":16.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":96.871,"y":18.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":96.871,"y":18.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.19,"y":18.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.359,"y":19.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":19.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":19.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":20.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":20.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":20.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":21.001,"w":0.75,"l":92.836},{"oc":"#221f1f","x":6.19,"y":25.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":96.871,"y":27.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":96.871,"y":27.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":11.14,"y":27.751,"w":0.75,"l":87.863},{"oc":"#221f1f","x":59.359,"y":28.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":28.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":28.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":29.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":29.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":29.251,"w":0.75,"l":9.505},{"oc":"#221f1f","x":11.097,"y":30.001,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":30.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":30.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":30.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":35.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":11.097,"y":37.501,"w":0.75,"l":87.949},{"oc":"#221f1f","x":59.359,"y":38.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":38.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":39.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":48.222,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":39.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":39.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":41.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":48.222,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":41.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":41.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":42.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":48.222,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":42.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":42.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":42.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":42.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":42.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":43.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":59.359,"y":43.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":43.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":48.222,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":48.222,"y":44.251,"w":1.5,"l":11.223},{"oc":"#221f1f","x":6.147,"y":44.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":48.265,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":6.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":48.265,"y":6.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":66.827,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":11.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":11.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":66.827,"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":77.965,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.246,"y":18.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":96.871,"y":18.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":59.402,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"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":66.827,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"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":66.827,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.246,"y":27.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":96.871,"y":27.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"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":66.827,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"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":77.965,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"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":59.402,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"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":77.965,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"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":77.965,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":43.485,"w":0.75,"l":0.797},{"oc":"#221f1f","x":66.827,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":43.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":48.265,"y":5.251,"w":11.137,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":6.751,"w":11.137,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":11.251,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":38.251,"w":11.137,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":39.751,"w":11.137,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":41.251,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":43.501,"w":11.137,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204136%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]}]},{"oc":"#221f1f","x":7.555,"y":3.121,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":3.126,"w":13.226000000000003,"clr":-1,"A":"left","R":[{"T":"Kerosene%20Used%20in%20Aviation%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.796,"y":4.237,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":4.237,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":4.237,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":4.26,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":4.237,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":5.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.071,"w":25.727000000000007,"clr":-1,"A":"left","R":[{"T":"Kerosene%20used%20in%20commercial%20aviation%20(other%20than%20foreign%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.696,"w":9.262,"clr":-1,"A":"left","R":[{"T":"trade)%20taxed%20at%20%24.244","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":5.795,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":6.528,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.571,"w":25.727000000000007,"clr":-1,"A":"left","R":[{"T":"Kerosene%20used%20in%20commercial%20aviation%20(other%20than%20foreign%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.196,"w":9.262,"clr":-1,"A":"left","R":[{"T":"trade)%20taxed%20at%20%24.219","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":8.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.071,"w":21.633000000000003,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20use%20(other%20than%20use%20by%20state%20or%20local%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.696,"w":12.282000000000004,"clr":-1,"A":"left","R":[{"T":"government)%20taxed%20at%20%24.244","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.528,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.571,"w":21.633000000000003,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20use%20(other%20than%20use%20by%20state%20or%20local%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.196,"w":12.282000000000004,"clr":-1,"A":"left","R":[{"T":"government)%20taxed%20at%20%24.219","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.046,"w":21.168999999999997,"clr":-1,"A":"left","R":[{"T":"LUST%20tax%20on%20aviation%20fuels%20used%20in%20foreign%20trade","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":28.731000000000005,"clr":-1,"A":"left","R":[{"T":"Sales%20by%20Registered%20Ultimate%20Vendors%20of%20Undyed%20Diesel%20Fuel","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.212,"y":14.84,"w":8.001,"clr":-1,"A":"left","R":[{"T":"Registration%20No.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":14.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.008,"w":48.02999999999997,"clr":-1,"A":"left","R":[{"T":"of%20the%20buyer%20to%20make%20the%20claim.%20Claimant%20certifies%20that%20the%20diesel%20fuel%20did%20not%20contain%20visible%20evidence%20of%20dye.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.796,"w":5.613000000000001,"clr":-1,"A":"left","R":[{"T":"Exception.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":91.568,"y":17.702,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":60.319,"y":18.487,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":18.487,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":18.51,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":18.487,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":19.277,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.233,"w":15.595000000000004,"clr":-1,"A":"left","R":[{"T":"Use%20by%20a%20state%20or%20local%20government","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":19.295,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.027,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.045,"w":17.243000000000002,"clr":-1,"A":"left","R":[{"T":"Use%20in%20certain%20intercity%20and%20local%20buses","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.604,"y":22.996,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.978,"w":31.564000000000004,"clr":-1,"A":"left","R":[{"T":"Sales%20by%20Registered%20Ultimate%20Vendors%20of%20Undyed%20Kerosene%20(Other%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.665,"w":16.948000000000004,"clr":-1,"A":"left","R":[{"T":"Than%20Kerosene%20For%20Use%20in%20Aviation)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":23.84,"w":7.722999999999999,"clr":-1,"A":"left","R":[{"T":"Registration%20No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":23.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.014,"w":47.62299999999996,"clr":-1,"A":"left","R":[{"T":"of%20the%20buyer%20to%20make%20the%20claim.%20Claimant%20certifies%20that%20the%20kerosene%20did%20not%20contain%20visible%20evidence%20of%20dye.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.795,"w":5.613000000000001,"clr":-1,"A":"left","R":[{"T":"Exception.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":91.008,"y":26.702,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":60.319,"y":27.487,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":27.487,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":27.487,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":27.487,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":28.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.296,"w":15.595000000000004,"clr":-1,"A":"left","R":[{"T":"Use%20by%20a%20state%20or%20local%20government","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":29.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.046,"w":12.319,"clr":-1,"A":"left","R":[{"T":"Sales%20from%20a%20blocked%20pump","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":29.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":29.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.796,"w":17.243000000000002,"clr":-1,"A":"left","R":[{"T":"Use%20in%20certain%20intercity%20and%20local%20buses","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.023,"y":28.753,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,14,0,0]}]},{"oc":"#221f1f","x":7.555,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.608,"w":33.454,"clr":-1,"A":"left","R":[{"T":"Sales%20by%20Registered%20Ultimate%20Vendors%20of%20Kerosene%20For%20Use%20in%20Aviation","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":33.59,"w":7.722999999999999,"clr":-1,"A":"left","R":[{"T":"Registration%20No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":33.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.508,"w":7.3370000000000015,"clr":-1,"A":"left","R":[{"T":"to%20be%20submitted.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":48.796,"y":37.237,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":37.237,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":37.237,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":37.26,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":37.237,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":38.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.071,"w":26.410999999999998,"clr":-1,"A":"left","R":[{"T":"Use%20in%20commercial%20aviation%20(other%20than%20foreign%20trade)%20taxed%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.696,"w":3.6320000000000006,"clr":-1,"A":"left","R":[{"T":"at%20%24.219","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":38.796,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.633,"w":26.410999999999998,"clr":-1,"A":"left","R":[{"T":"Use%20in%20commercial%20aviation%20(other%20than%20foreign%20trade)%20taxed%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.258,"w":3.6320000000000006,"clr":-1,"A":"left","R":[{"T":"at%20%24.244","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.046,"w":19.04200000000001,"clr":-1,"A":"left","R":[{"T":"Nonexempt%20use%20in%20noncommercial%20aviation","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.778,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.796,"w":16.783000000000005,"clr":-1,"A":"left","R":[{"T":"Other%20nontaxable%20uses%20taxed%20at%20%24.244","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":42.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.546,"w":16.783000000000005,"clr":-1,"A":"left","R":[{"T":"Other%20nontaxable%20uses%20taxed%20at%20%24.219","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.586,"y":43.278,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.295,"w":21.168999999999997,"clr":-1,"A":"left","R":[{"T":"LUST%20tax%20on%20aviation%20fuels%20used%20in%20foreign%20trade","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.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":44.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4136","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":44.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":60.953,"y":5.831,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.1,"y":5.831,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".200","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":5.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"417","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.871,"y":7.332000000000001,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".175","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":7.332000000000001,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"355","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.871,"y":8.832,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":8.832,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"346","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.871,"y":10.332,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".218","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":10.332,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"369","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.871,"y":11.082,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".001","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":11.082,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"433","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.036,"y":19.331,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":19.331,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":19.331,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"360","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.947,"y":20.081,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".17","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":20.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"350","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.036,"y":28.332,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":28.332,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":29.082,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":29.082,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"346","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.947,"y":29.832,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".17","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":29.832,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"347","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.03,"y":38.832,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#231f20","x":62.131,"y":38.832,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".175","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#231f20","x":94.512,"y":38.832,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"355","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.87,"y":40.332,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".200","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":40.332,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"417","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.87,"y":41.082,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".025","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":41.082,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"418","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.87,"y":41.832,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":41.832,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"346","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.87,"y":42.582,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".218","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":42.582,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"369","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.87,"y":43.331,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".001","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":43.331,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"433","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.258,"w":61.124999999999936,"clr":-1,"A":"left","R":[{"T":"Claimant%20sold%20the%20kerosene%20for%20use%20in%20aviation%20at%20a%20tax-excluded%20price%20and%20has%20not%20collected%20the%20amount%20of%20tax%20from%20the%20buyer%2C%20repaid%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.883,"w":63.23799999999995,"clr":-1,"A":"left","R":[{"T":"amount%20of%20tax%20to%20the%20buyer%2C%20or%20has%20obtained%20the%20written%20consent%20of%20the%20buyer%20to%20make%20the%20claim.%20See%20the%20instructions%20for%20additional%20information%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.421,"w":63.197999999999894,"clr":-1,"A":"left","R":[{"T":"Claimant%20certifies%20that%20it%20sold%20the%20kerosene%20at%20a%20tax-excluded%20price%2C%20repaid%20the%20amount%20of%20tax%20to%20the%20buyer%2C%20or%20has%20obtained%20the%20written%20consent%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.719,"y":26.795,"w":52.02699999999995,"clr":-1,"A":"left","R":[{"T":"If%20any%20of%20the%20kerosene%20included%20in%20this%20claim%20did%20contain%20visible%20evidence%20of%20dye%2C%20attach%20an%20explanation%20and%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.719,"y":17.796,"w":52.41599999999995,"clr":-1,"A":"left","R":[{"T":"If%20any%20of%20the%20diesel%20fuel%20included%20in%20this%20claim%20did%20contain%20visible%20evidence%20of%20dye%2C%20attach%20an%20explanation%20and%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.383,"w":63.60499999999989,"clr":-1,"A":"left","R":[{"T":"Claimant%20certifies%20that%20it%20sold%20the%20diesel%20fuel%20at%20a%20tax-excluded%20price%2C%20repaid%20the%20amount%20of%20tax%20to%20the%20buyer%2C%20or%20has%20obtained%20the%20written%20consent%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.198,"y":3.126,"w":11.672000000000002,"clr":-1,"A":"left","R":[{"T":"(see%20Caution%20above%20line%201)","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2337,"AM":1024,"x":16.026,"y":2.135,"w":49.167,"h":0.912,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2338,"AM":1024,"x":65.217,"y":2.135,"w":22.505,"h":0.912,"TU":"Taxpayer identification number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A1G","EN":0},"TI":2339,"AM":0,"x":67.321,"y":5.944,"w":10.65,"h":0.833,"TU":"Line 5a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A1","EN":0},"TI":2340,"AM":1024,"x":79.571,"y":5.944,"w":9.541,"h":0.868,"TU":"Line 5a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A2G","EN":0},"TI":2341,"AM":0,"x":67.345,"y":7.408,"w":10.65,"h":0.833,"TU":"Line 5b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A2","EN":0},"TI":2342,"AM":1024,"x":79.595,"y":7.408,"w":9.541,"h":0.868,"TU":"Line 5b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTNTYPEA","EN":0},"TI":2343,"AM":0,"x":48.896,"y":9.04,"w":10.402,"h":0.833,"TU":"Line 5c(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTNGALA","EN":0},"TI":2344,"AM":0,"x":67.211,"y":8.908,"w":10.65,"h":0.833,"TU":"Line 5c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTNCREDA","EN":0},"TI":2345,"AM":1024,"x":79.461,"y":8.908,"w":9.541,"h":0.868,"TU":"Line 5c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTNTYPEB","EN":0},"TI":2346,"AM":0,"x":48.971,"y":10.474,"w":10.334,"h":0.833,"TU":"Line 5d(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTNGALB","EN":0},"TI":2347,"AM":0,"x":67.214,"y":10.407,"w":10.65,"h":0.833,"TU":"Line 6d(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTNCREDB","EN":0},"TI":2348,"AM":1024,"x":79.465,"y":10.407,"w":9.413,"h":0.868,"TU":"Line 5d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LUSTBG","EN":0},"TI":2349,"AM":0,"x":67.238,"y":11.315,"w":10.567,"h":0.833,"TU":"Line 5e(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LUSTBC","EN":0},"TI":2350,"AM":1024,"x":79.419,"y":11.315,"w":9.459,"h":0.833,"TU":"Line 5e(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"UV5","EN":0},"TI":2351,"AM":0,"x":78.858,"y":14.759,"w":16.306,"h":0.876,"TU":"Line 6. Registration No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5BG","EN":0},"TI":2353,"AM":0,"x":67.196,"y":19.528,"w":10.695,"h":0.833,"TU":"Line 6a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5T","EN":0},"TI":2354,"AM":1024,"x":79.569,"y":19.528,"w":9.716,"h":0.833,"TU":"Line 6a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCGAL","EN":0},"TI":2355,"AM":0,"x":67.199,"y":20.328,"w":10.631,"h":0.833,"TU":"Line 6b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOCCRED","EN":0},"TI":2356,"AM":1024,"x":79.573,"y":20.328,"w":9.716,"h":0.833,"TU":"Line 6b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"UV6","EN":0},"TI":2357,"AM":0,"x":78.739,"y":23.883,"w":16.306,"h":0.876,"TU":"Line 7. Registration No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6BG","EN":0},"TI":2359,"AM":0,"x":67.201,"y":28.541,"w":9.02,"h":0.833,"TU":"Line 7a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6CG","EN":0},"TI":2360,"AM":0,"x":67.205,"y":29.291,"w":8.901,"h":0.833,"TU":"Line 7b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6T","EN":0},"TI":2361,"AM":1024,"x":79.122,"y":29.266,"w":9.716,"h":0.833,"TU":"Line 7b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INGAL","EN":0},"TI":2362,"AM":0,"x":67.238,"y":30.065,"w":10.439,"h":0.833,"TU":"Line 7c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCRED","EN":0},"TI":2363,"AM":1024,"x":79.172,"y":30.038,"w":9.716,"h":0.833,"TU":"Line 7c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SALEREG","EN":0},"TI":2364,"AM":0,"x":79.154,"y":33.622,"w":16.306,"h":0.876,"TU":"Line 8. Registration No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B1G","EN":0},"TI":2365,"AM":0,"x":67.321,"y":38.944,"w":10.787,"h":0.833,"TU":"Line 8a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B1","EN":0},"TI":2366,"AM":1024,"x":79.045,"y":38.919,"w":10.054,"h":0.833,"TU":"Line 8a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B2G","EN":0},"TI":2367,"AM":0,"x":67.321,"y":40.544,"w":10.466,"h":0.833,"TU":"Line 8b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B2","EN":0},"TI":2368,"AM":1024,"x":78.618,"y":40.497,"w":10.466,"h":0.833,"TU":"Line 8b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B3G","EN":0},"TI":2369,"AM":0,"x":67.238,"y":41.315,"w":10.439,"h":0.833,"TU":"Line 8c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B3","EN":0},"TI":2370,"AM":1024,"x":78.536,"y":41.268,"w":10.631,"h":0.833,"TU":"Line 8c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTATYPE","EN":0},"TI":2371,"AM":0,"x":48.612,"y":42.018,"w":10.631,"h":0.833,"TU":"Line 8d(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B4G","EN":0},"TI":2372,"AM":0,"x":67.174,"y":42.065,"w":10.503,"h":0.833,"TU":"Line 8d(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B4","EN":0},"TI":2373,"AM":1024,"x":78.536,"y":42.018,"w":10.439,"h":0.833,"TU":"Line 8d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NONUSE","EN":0},"TI":2374,"AM":0,"x":48.676,"y":42.815,"w":10.631,"h":0.833,"TU":"Line 8e(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B5G","EN":0},"TI":2375,"AM":0,"x":67.238,"y":42.815,"w":10.439,"h":0.833,"TU":"Line 8e(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B5","EN":0},"TI":2376,"AM":1024,"x":78.536,"y":42.768,"w":10.439,"h":0.833,"TU":"Line 8e(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UVLUSTG","EN":0},"TI":2377,"AM":0,"x":67.238,"y":43.565,"w":10.439,"h":0.833,"TU":"Line 8f(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UVLUSTC","EN":0},"TI":2378,"AM":1024,"x":78.536,"y":43.542,"w":10.439,"h":0.833,"TU":"Line 8f(d). Amount of credit. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5BX","EN":0},"TI":2352,"AM":0,"x":96.811,"y":17.991,"w":1.995,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6BX","EN":0},"TI":2358,"AM":0,"x":96.702,"y":27.008,"w":1.883,"h":0.833}]}]},{"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":4.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":11.097,"y":6.001,"w":0.75,"l":87.949},{"oc":"#221f1f","x":59.359,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":7.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":7.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":7.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":8.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.402,"y":8.251,"w":0.75,"l":7.425},{"oc":"#221f1f","x":59.402,"y":7.501,"w":0.75,"l":7.425},{"oc":"#221f1f","x":66.827,"y":8.251,"w":0.75,"l":11.138},{"oc":"#221f1f","x":66.827,"y":7.501,"w":0.75,"l":11.138},{"oc":"#221f1f","x":77.965,"y":8.251,"w":0.75,"l":11.138},{"oc":"#221f1f","x":77.965,"y":7.501,"w":0.75,"l":11.138},{"oc":"#221f1f","x":89.102,"y":8.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":89.102,"y":7.501,"w":0.75,"l":3.713},{"oc":"#221f1f","x":92.772,"y":7.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":92.772,"y":8.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":59.402,"y":9.001,"w":0.75,"l":7.425},{"oc":"#221f1f","x":59.402,"y":8.251,"w":0.75,"l":7.425},{"oc":"#221f1f","x":66.827,"y":9.001,"w":0.75,"l":11.138},{"oc":"#221f1f","x":66.827,"y":8.251,"w":0.75,"l":11.138},{"oc":"#221f1f","x":77.965,"y":9.001,"w":0.75,"l":11.138},{"oc":"#221f1f","x":77.965,"y":8.251,"w":0.75,"l":11.138},{"oc":"#221f1f","x":89.102,"y":9.001,"w":0.75,"l":3.713},{"oc":"#221f1f","x":89.102,"y":8.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":92.772,"y":8.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":92.772,"y":9.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":9.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":10.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":11.097,"y":16.501,"w":0.75,"l":87.949},{"oc":"#221f1f","x":59.359,"y":19.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":19.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":19.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":20.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":20.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":20.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":21.001,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":21.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":21.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":21.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":23.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":24.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":48.222,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":27.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":27.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":27.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":28.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":28.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":28.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":29.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":29.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":29.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":30.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":30.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":30.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":30.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":30.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":30.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":32.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":32.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":32.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":33.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":33.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":33.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":33.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.222,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":33.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":33.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":34.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":36.001,"w":0.75,"l":92.836},{"oc":"#221f1f","x":6.147,"y":39.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":39.001,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":39.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":39.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":39.751,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":39.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":39.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":40.501,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":40.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":40.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":41.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":41.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":41.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":42,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":42,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":42,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":42,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":42.75,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":42.75,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":42.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":42.75,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":43.5,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":43.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":43.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":43.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":43.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":44.25,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":44.25,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":44.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":44.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":44.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":44.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":45,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":45,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":45,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":45,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":45,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":45.751,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":59.402,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":77.965,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":66.827,"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":77.965,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":92.815,"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":92.815,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":77.965,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":66.827,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":89.102,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":77.965,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":92.815,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":89.102,"y":8.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":92.815,"y":8.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":16.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":66.827,"y":16.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.965,"y":16.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":92.815,"y":16.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":24.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":24.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":66.827,"y":24.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.965,"y":24.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":92.815,"y":24.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":48.265,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"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":66.827,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":35.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":66.827,"y":35.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.965,"y":35.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":92.815,"y":35.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":44.984,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":59.402,"y":7.501,"w":7.425,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":66.827,"y":7.501,"w":11.138,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":7.501,"w":11.138,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":89.102,"y":7.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":92.815,"y":7.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":59.402,"y":8.251,"w":7.425,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":66.827,"y":8.251,"w":11.138,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":8.251,"w":11.138,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":89.102,"y":8.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":92.815,"y":8.251,"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%204136%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":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":3.121,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":3.121,"w":4.502,"clr":-1,"A":"left","R":[{"T":"Reserved","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":3.168,"w":7.722999999999999,"clr":-1,"A":"left","R":[{"T":"Registration%20No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":3.075,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.319,"y":5.921,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":67.845,"y":5.812,"w":6.946,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons%20of%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":69.755,"y":6.412,"w":3.779,"clr":-1,"A":"left","R":[{"T":"alcohol%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":6.01,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":5.921,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":7.2780000000000005,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.295999999999999,"w":4.502,"clr":-1,"A":"left","R":[{"T":"Reserved","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":8.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.046,"w":4.502,"clr":-1,"A":"left","R":[{"T":"Reserved","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.694,"y":9.496,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.501,"w":21.451,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20or%20Renewable%20Diesel%20Mixture%20Credit","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":9.508,"w":7.722999999999999,"clr":-1,"A":"left","R":[{"T":"Registration%20No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":9.414,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.508,"w":34.46000000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20line%2010%20for%20information%20about%20renewable%20diesel%20used%20in%20aviation.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.319,"y":16.483,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":67.845,"y":16.474,"w":6.946,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons%20of%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.317,"y":17.074,"w":6.169000000000002,"clr":-1,"A":"left","R":[{"T":"biodiesel%20or%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.735,"y":17.674,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"renewable%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":70.211,"y":18.274,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"diesel","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":16.572,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":16.483,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":19.277,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.295,"w":19.890000000000004,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20(other%20than%20agri-biodiesel)%20mixtures","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":19.295,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.027,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.045,"w":10.278000000000002,"clr":-1,"A":"left","R":[{"T":"Agri-biodiesel%20mixtures","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.777,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.795,"w":11.963000000000001,"clr":-1,"A":"left","R":[{"T":"Renewable%20diesel%20mixtures","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":22.246,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.246,"w":16.504000000000005,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20Use%20of%20Alternative%20Fuel","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.751,"w":4.555999999999999,"clr":-1,"A":"left","R":[{"T":"Caution.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.937,"y":23.751,"w":46.67299999999997,"clr":-1,"A":"left","R":[{"T":"There%20is%20a%20reduced%20credit%20rate%20for%20use%20in%20certain%20intercity%20and%20local%20buses%20(type%20of%20use%205)%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.796,"y":24.733,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":24.733,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.966,"y":24.762,"w":5.446,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons%20","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":68.626,"y":25.324,"w":6.1690000000000005,"clr":-1,"A":"left","R":[{"T":"%20or%20gasoline%20%20","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":70.136,"y":25.887,"w":3.779,"clr":-1,"A":"left","R":[{"T":"%20gallon%20%20","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":66.791,"y":26.449,"w":8.669000000000002,"clr":-1,"A":"left","R":[{"T":"equivalents%20(GGE)","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":78.623,"y":24.822,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":24.733,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":27.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.545,"w":13.558000000000003,"clr":-1,"A":"left","R":[{"T":"Liquefied%20petroleum%20gas%20(LPG)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.188,"y":27.608,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":28.277,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.295,"w":6.944000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CP%20Series%E2%80%9D%20fuels","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":29.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.045,"w":23.919,"clr":-1,"A":"left","R":[{"T":"Compressed%20natural%20gas%20(CNG)%20(GGE%20%3D%20126.67%20cu.%20ft.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":29.777,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.795,"w":8.613,"clr":-1,"A":"left","R":[{"T":"Liquefied%20hydrogen","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":30.559,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.57,"w":25.077000000000005,"clr":-1,"A":"left","R":[{"T":"Fischer-Tropsch%20process%20liquid%20fuel%20from%20coal%20(including%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.195,"w":2.5189999999999997,"clr":-1,"A":"left","R":[{"T":"peat)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.586,"y":32.027,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.045,"w":14.615,"clr":-1,"A":"left","R":[{"T":"Liquid%20fuel%20derived%20from%20biomass","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.777,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.795,"w":12.168000000000005,"clr":-1,"A":"left","R":[{"T":"Liquefied%20natural%20gas%20(LNG)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":33.527,"w":0.611,"clr":-1,"A":"left","R":[{"T":"h","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.545,"w":15.985000000000001,"clr":-1,"A":"left","R":[{"T":"Liquefied%20gas%20derived%20from%20biomass","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":34.996,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.001,"w":10.947000000000001,"clr":-1,"A":"left","R":[{"T":"Alternative%20Fuel%20Credit%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":35.008,"w":7.722999999999999,"clr":-1,"A":"left","R":[{"T":"Registration%20No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":34.914,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.828,"y":35.983,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,9.4,1,0]}]},{"oc":"#221f1f","x":68.966,"y":36.012,"w":5.446,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons%20","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":68.626,"y":36.574,"w":6.1690000000000005,"clr":-1,"A":"left","R":[{"T":"%20or%20gasoline%20%20","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":70.136,"y":37.137,"w":3.779,"clr":-1,"A":"left","R":[{"T":"%20gallon%20%20","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":66.791,"y":37.699,"w":8.669000000000002,"clr":-1,"A":"left","R":[{"T":"equivalents%20(GGE)","S":-1,"TS":[0,10.35,1,0]}]},{"oc":"#221f1f","x":78.623,"y":36.072,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":35.983,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":38.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.795,"w":13.558000000000003,"clr":-1,"A":"left","R":[{"T":"Liquefied%20petroleum%20gas%20(LPG)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":38.795,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.528,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.545,"w":6.944000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CP%20Series%E2%80%9D%20fuels","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":40.277,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.295,"w":22.529,"clr":-1,"A":"left","R":[{"T":"Compressed%20natural%20gas%20(CNG)%20(GGE%20%3D%20121%20cu.%20ft.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.027,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.045,"w":8.613,"clr":-1,"A":"left","R":[{"T":"Liquefied%20hydrogen","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.808,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.795,"w":27.318000000000005,"clr":-1,"A":"left","R":[{"T":"Fischer-Tropsch%20process%20liquid%20fuel%20from%20coal%20(including%20peat)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":42.527,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.545,"w":14.615,"clr":-1,"A":"left","R":[{"T":"Liquid%20fuel%20derived%20from%20biomass","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":43.276,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.294,"w":12.168000000000005,"clr":-1,"A":"left","R":[{"T":"Liquefied%20natural%20gas%20(LNG)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":44.026,"w":0.611,"clr":-1,"A":"left","R":[{"T":"h","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.044,"w":15.985000000000001,"clr":-1,"A":"left","R":[{"T":"Liquefied%20gas%20derived%20from%20biomass","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":44.776,"w":0.278,"clr":-1,"A":"left","R":[{"T":"i","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.794,"w":26.179999999999996,"clr":-1,"A":"left","R":[{"T":"Compressed%20gas%20derived%20from%20biomass%20(GGE%20%3D%20121%20cu.%20ft.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":45.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":45.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4136","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":"#231f20","x":61.145,"y":19.331,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":19.331,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"388","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.145,"y":20.081,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":20.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"390","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.145,"y":20.831,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":20.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"307","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.036,"y":27.581,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":27.581,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":27.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"419","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":28.331,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":28.331,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"420","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":29.081,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":29.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"421","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":29.831,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":29.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"422","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":31.331000000000003,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":31.331000000000003,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"423","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":32.081,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":32.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"424","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":32.831,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":32.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"425","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.183,"y":33.581,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".183","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":33.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"435","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.336,"y":38.831,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.482,"y":38.831,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":38.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"426","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.339,"y":39.581,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":39.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"427","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.253,"y":40.331,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":40.331,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"428","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.253,"y":41.081,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":41.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"429","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.253,"y":41.831,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":41.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"430","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.253,"y":42.581,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":42.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"431","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.253,"y":43.33,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":43.33,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"432","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.253,"y":44.08,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":44.08,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"436","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.253,"y":44.83,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".50","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":44.83,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"437","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.133,"w":62.04399999999991,"clr":-1,"A":"left","R":[{"T":"D6751%20and%20met%20EPA%E2%80%A2s%20registration%20requirements%20for%20fuels%20and%20fuel%20additives.%20The%20mixture%20was%20sold%20by%20the%20claimant%20to%20any%20person%20foruse%20as%20a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.758,"w":61.08499999999993,"clr":-1,"A":"left","R":[{"T":"fuel%20or%20was%20used%20as%20a%20fuel%20by%20the%20claimant.%20Claimant%20has%20attached%20the%20Certificate%20for%20Biodiesel%20and%2C%20if%20applicable%2C%20the%20Statement%20ofBiodiesel%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.008,"w":62.59599999999993,"clr":-1,"A":"left","R":[{"T":"The%20renewable%20diesel%20used%20to%20produce%20the%20renewable%20diesel%20mixture%20was%20derived%20from%20biomass%20process%2C%20met%20EPA%E2%80%A2s%20registration%20requirements%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.633,"w":60.13999999999992,"clr":-1,"A":"left","R":[{"T":"for%20fuels%20and%20fuel%20additives%2C%20and%20met%20ASTM%20D975%2C%20D396%2C%20or%20other%20equivalent%20standard%20approved%20by%20the%20IRS.%20The%20mixture%20was%20sold%20by%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.258,"w":59.91699999999993,"clr":-1,"A":"left","R":[{"T":"claimant%20to%20any%20person%20for%20use%20as%20a%20fuel%20or%20was%20used%20as%20a%20fuel%20by%20the%20claimant.%20Claimant%20hasattached%20the%20Certificate%20for%20Biodiesel%20and%2C%20if%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.883,"w":59.80799999999992,"clr":-1,"A":"left","R":[{"T":"applicable%2C%20the%20Statement%20of%20Biodiesel%20Reseller%2C%20both%20of%20which%20have%20been%20edited%20as%20discussedin%20the%20Instructions%20for%20Form%204136.%20See%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.383,"w":62.41099999999991,"clr":-1,"A":"left","R":[{"T":"Reseller.%20%20Renewable%20diesel%20mixtures.%20%20Claimant%20produced%20a%20mixture%20by%20mixing%20renewable%20diesel%20with%20liquid%20fuel%20(other%20thanrenewable%20diesel).%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.508,"w":61.46699999999992,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20mixtures.%20%20Claimant%20produced%20a%20mixture%20by%20mixing%20biodiesel%20with%20diesel%20fuel.%20The%20biodiesel%20used%20to%20produce%20the%20mixture%20metASTM%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM3","EN":0},"TI":2379,"AM":1024,"x":16.429,"y":2.092,"w":49.166,"h":0.912,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":2380,"AM":1024,"x":65.62,"y":2.142,"w":22.505,"h":0.912,"TU":"Taxpayer identification number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BIOREG","EN":0},"TI":2381,"AM":0,"x":78.317,"y":9.484,"w":16.306,"h":0.876,"TU":"Line 10. Registration No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOGAL","EN":0},"TI":2382,"AM":0,"x":67.077,"y":19.51,"w":10.375,"h":0.833,"TU":"Line 10a(c). Gallons of biodiesel or renewable diesel."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOCRED","EN":0},"TI":2383,"AM":1024,"x":79.56,"y":19.51,"w":9.029,"h":0.833,"TU":"Line 10a(d) Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGRIGAL","EN":0},"TI":2384,"AM":0,"x":67.016,"y":20.261,"w":10.439,"h":0.833,"TU":"Line 10b(c). Gallons of biodiesel or renewable diese"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGRICRED","EN":0},"TI":2385,"AM":1024,"x":79.564,"y":20.261,"w":9.029,"h":0.833,"TU":"Line 10b(d) Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENEWGAL","EN":0},"TI":2386,"AM":0,"x":66.991,"y":21.022,"w":10.503,"h":0.833,"TU":"Line 10c(c). Gallons of biodiesel or renewable diese"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENEWCR","EN":0},"TI":2387,"AM":1024,"x":79.602,"y":21.022,"w":9.029,"h":0.833,"TU":"Line 10c(d) Amount of credit. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUS1","EN":0},"TI":2388,"AM":0,"x":42.92,"y":24.906,"w":4.754,"h":0.931},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLPTYPE","EN":0},"TI":2389,"AM":0,"x":47.98,"y":27.772,"w":10.952,"h":0.833,"TU":"Line 11a(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLPGGAL","EN":0},"TI":2390,"AM":0,"x":66.68,"y":27.722,"w":10.952,"h":0.833,"TU":"Line 11a(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLPGCR","EN":0},"TI":2391,"AM":1024,"x":79.64,"y":27.746,"w":8.892,"h":0.833,"TU":"Line 11a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTPTYPE","EN":0},"TI":2392,"AM":0,"x":47.98,"y":28.522,"w":10.952,"h":0.833,"TU":"Line 11b(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTPGAL","EN":0},"TI":2393,"AM":0,"x":66.542,"y":28.522,"w":10.952,"h":0.833,"TU":"Line 11b(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTPCR","EN":0},"TI":2394,"AM":1024,"x":78.641,"y":28.522,"w":9.991,"h":0.833,"TU":"Line 11b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCNTYPE","EN":0},"TI":2395,"AM":0,"x":47.98,"y":29.272,"w":10.952,"h":0.833,"TU":"Line 11c(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCNGGAL","EN":0},"TI":2396,"AM":0,"x":66.542,"y":29.272,"w":10.952,"h":0.833,"TU":"Line 11c(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCNGCR","EN":0},"TI":2397,"AM":0,"x":78.504,"y":29.262,"w":10.238,"h":0.833,"TU":"Line 11c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLHTYPE","EN":0},"TI":2398,"AM":0,"x":47.916,"y":30.022,"w":10.952,"h":0.833,"TU":"Line 11d(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLHGAL","EN":0},"TI":2399,"AM":0,"x":66.542,"y":30.046,"w":10.952,"h":0.833,"TU":"Line 11d(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLHCR","EN":0},"TI":2400,"AM":1024,"x":78.641,"y":29.922,"w":9.991,"h":0.833,"TU":"Line 11d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOALTY","EN":0},"TI":2401,"AM":0,"x":48.062,"y":31.235,"w":10.787,"h":0.985,"TU":"Line 11e(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOALGA","EN":0},"TI":2402,"AM":0,"x":66.625,"y":31.385,"w":10.787,"h":0.835,"TU":"Line 11e(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOALCR","EN":0},"TI":2403,"AM":1024,"x":78.724,"y":31.401,"w":9.826,"h":0.833,"TU":"Line 11e(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTBIOTYP","EN":0},"TI":2404,"AM":0,"x":47.98,"y":32.272,"w":10.952,"h":0.833,"TU":"Line 11f(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTBIOGAL","EN":0},"TI":2405,"AM":0,"x":66.542,"y":32.272,"w":10.952,"h":0.833,"TU":"Line 11f(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTBIOCR","EN":0},"TI":2406,"AM":1024,"x":78.916,"y":32.172,"w":9.716,"h":0.833,"TU":"Line 11f(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLNTYPE","EN":0},"TI":2407,"AM":0,"x":47.98,"y":33.022,"w":10.952,"h":0.833,"TU":"Line 11g(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLNGGAL","EN":0},"TI":2408,"AM":0,"x":66.542,"y":33.022,"w":10.952,"h":0.833,"TU":"Line 11g(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLNGCR","EN":0},"TI":2409,"AM":1024,"x":78.916,"y":32.922,"w":9.716,"h":0.833,"TU":"Line 11g(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLGTYPE","EN":0},"TI":2410,"AM":0,"x":47.98,"y":33.772,"w":10.952,"h":0.833,"TU":"Line 11h(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLGGAL","EN":0},"TI":2411,"AM":0,"x":66.542,"y":33.772,"w":10.952,"h":0.833,"TU":"Line 11h(c). Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTLGCR","EN":0},"TI":2412,"AM":1024,"x":79.19,"y":33.772,"w":9.441,"h":0.833,"TU":"Line 11h(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ALTREG","EN":0},"TI":2413,"AM":0,"x":78.18,"y":35.003,"w":16.306,"h":0.876,"TU":"Line 12. Registration No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLPGGAL","EN":0},"TI":2414,"AM":0,"x":66.542,"y":39.022,"w":10.952,"h":0.833,"TU":"Line 12a(c). Gallons or gasoline gallon equivalents (GGE)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLPGCR","EN":0},"TI":2415,"AM":1024,"x":78.99,"y":39.035,"w":9.661,"h":0.833,"TU":"Line 12a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFPGAL","EN":0},"TI":2416,"AM":0,"x":66.542,"y":39.772,"w":10.952,"h":0.833,"TU":"Line 12b(c). Gallons or gasoline gallon equivalents (GGE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFPCR","EN":0},"TI":2417,"AM":1024,"x":78.938,"y":39.785,"w":9.853,"h":0.833,"TU":"Line 12b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFCNGGAL","EN":0},"TI":2418,"AM":0,"x":66.542,"y":40.522,"w":10.952,"h":0.833,"TU":"Line 12c(c). Gallons or gasoline gallon equivalents (GGE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFCNGCR","EN":0},"TI":2419,"AM":1024,"x":78.805,"y":40.536,"w":9.853,"h":0.833,"TU":"Line 12c(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLHGAL","EN":0},"TI":2420,"AM":0,"x":66.542,"y":41.272,"w":10.952,"h":0.833,"TU":"Line 12d(c). Gallons or gasoline gallon equivalents (GGE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLHCR","EN":0},"TI":2421,"AM":1024,"x":78.808,"y":41.286,"w":9.853,"h":0.833,"TU":"Line 12d(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFCOALGA","EN":0},"TI":2422,"AM":0,"x":66.542,"y":42.022,"w":10.952,"h":0.833,"TU":"Line 12e(c). Gallons or gasoline gallon equivalents (GGE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFCOALCR","EN":0},"TI":2423,"AM":1024,"x":78.812,"y":42.036,"w":9.853,"h":0.833,"TU":"Line 12e(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFBIOGAL","EN":0},"TI":2424,"AM":0,"x":66.542,"y":42.772,"w":10.952,"h":0.833,"TU":"Line 12f(c). Gallons or gasoline gallon equivalents (GGE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFBIOCR","EN":0},"TI":2425,"AM":1024,"x":78.815,"y":42.787,"w":9.853,"h":0.833,"TU":"Line 12f(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLNGGAL","EN":0},"TI":2426,"AM":0,"x":66.542,"y":43.522,"w":10.952,"h":0.833,"TU":"Line 12g(c). Gallons or gasoline gallon equivalents (GGE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLNGCR","EN":0},"TI":2427,"AM":1024,"x":78.819,"y":43.537,"w":9.853,"h":0.833,"TU":"Line 12g(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLGGAL","EN":0},"TI":2428,"AM":0,"x":66.542,"y":44.272,"w":10.952,"h":0.833,"TU":"Line 12h(c). Gallons or gasoline gallon equivalents (GGE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFLGCR","EN":0},"TI":2429,"AM":1024,"x":78.822,"y":44.287,"w":9.853,"h":0.833,"TU":"Line 12h(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFCGGAL","EN":0},"TI":2430,"AM":0,"x":66.542,"y":45.022,"w":10.952,"h":0.833,"TU":"Line 12i(c) Gallons or gasoline gallon equivalents (GGE)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFCGCR","EN":0},"TI":2431,"AM":1024,"x":78.826,"y":45.038,"w":9.853,"h":0.833,"TU":"Line 12i(d). Amount of credit. Dollars."}],"Boxsets":[]},{"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":4.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.359,"y":5.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":5.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":5.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":5.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":6.001,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":6.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":6.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":6.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":6.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":6.751,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":6.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":6.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":6.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":6.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":8.622,"y":8.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":11.097,"y":8.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":8.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":8.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":8.251,"w":0.75,"l":2.475},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":48.222,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":15.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":15.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":15.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":59.359,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":15.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":48.265,"y":16.501,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":15.751,"w":0.75,"l":11.137},{"oc":"#221f1f","x":6.19,"y":16.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":21.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.359,"y":21.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":21.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":21.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":22.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":27.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.359,"y":27.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":27.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":92.772,"y":27.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":11.097,"y":28.5,"w":0.75,"l":48.349},{"oc":"#221f1f","x":59.359,"y":28.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":66.784,"y":28.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":28.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.059,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":92.772,"y":28.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.19,"y":29.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":33.751,"w":0.75,"l":86.625},{"oc":"#221f1f","x":92.772,"y":33.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":92.772,"y":36.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":36.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":59.402,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":4.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":92.815,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"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":66.827,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"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":66.827,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":15.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":15.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":89.102,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":92.815,"y":33.735,"w":0.75,"l":2.297}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":48.265,"y":15.751,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":92.815,"y":33.751,"w":6.188,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204136%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":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":3.121,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":3.126,"w":14.671000000000003,"clr":-1,"A":"left","R":[{"T":"Registered%20Credit%20Card%20Issuers","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":3.134,"w":7.722999999999999,"clr":-1,"A":"left","R":[{"T":"Registration%20No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":3.04,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.319,"y":4.237,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":4.237,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":4.26,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":4.237,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":5.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.045,"w":29.836000000000002,"clr":-1,"A":"left","R":[{"T":"Diesel%20fuel%20sold%20for%20the%20exclusive%20use%20of%20a%20state%20or%20local%20government","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":5.045,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":5.777,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.795,"w":29.466000000000005,"clr":-1,"A":"left","R":[{"T":"Kerosene%20sold%20for%20the%20exclusive%20use%20of%20a%20state%20or%20local%20government","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":6.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.57,"w":32.279999999999994,"clr":-1,"A":"left","R":[{"T":"Kerosene%20for%20use%20in%20aviation%20sold%20for%20the%20exclusive%20use%20of%20a%20state%20or%20local%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.195,"w":12.023000000000003,"clr":-1,"A":"left","R":[{"T":"government%20taxed%20at%20%24.219","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":11.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":23.006,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20Use%20of%20a%20Diesel-Water%20Fuel%20Emulsion","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.251,"w":4.555999999999999,"clr":-1,"A":"left","R":[{"T":"Caution.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.937,"y":13.251,"w":46.95099999999997,"clr":-1,"A":"left","R":[{"T":"There%20is%20a%20reduced%20credit%20rate%20for%20use%20in%20certain%20intercity%20and%20local%20buses%20(type%20of%20use%205)%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.796,"y":13.987,"w":7.0569999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Type%20of%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.319,"y":13.987,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":13.987,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":14.01,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":13.987,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":14.777,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.795,"w":6.982000000000001,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20use","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":14.795,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":15.527000000000001,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.545000000000002,"w":4.074,"clr":-1,"A":"left","R":[{"T":"Exported","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":17.726000000000006,"clr":-1,"A":"left","R":[{"T":"Diesel-Water%20Fuel%20Emulsion%20Blending","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.236,"y":19.34,"w":7.722999999999999,"clr":-1,"A":"left","R":[{"T":"Registration%20No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.503,"y":19.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.319,"y":20.737,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":20.737,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":20.76,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":20.737,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.545,"w":6.278000000000001,"clr":-1,"A":"left","R":[{"T":"Blender%20credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.846,"y":21.545,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":27.341000000000005,"clr":-1,"A":"left","R":[{"T":"Exported%20Dyed%20Fuels%20and%20Exported%20Gasoline%20Blendstocks","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.319,"y":26.737,"w":3.7220000000000004,"clr":-1,"A":"left","R":[{"T":"(b)%20Rate","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.685,"y":26.737,"w":5.168,"clr":-1,"A":"left","R":[{"T":"(c)%20Gallons","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.623,"y":26.76,"w":9.833,"clr":-1,"A":"left","R":[{"T":"(d)%20Amount%20of%20credit%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":93.15,"y":26.737,"w":3.666,"clr":-1,"A":"left","R":[{"T":"(e)%20CRN","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":27.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.548,"w":34.007,"clr":-1,"A":"left","R":[{"T":"Exported%20dyed%20diesel%20fuel%20and%20exported%20gasoline%20blendstocks%20taxed%20at%20%24.001","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":77.846,"y":27.544,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":28.277,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.294,"w":10.946,"clr":-1,"A":"left","R":[{"T":"Exported%20dyed%20kerosene","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.684,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.996,"w":14.007000000000001,"clr":-1,"A":"left","R":[{"T":"the%20proper%20line%20of%20other%20returns.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":31.589,"y":34.902,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":74.998,"y":35.028,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":77.846,"y":35.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":35.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":35.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4136","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":35.822,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":60.953,"y":5.081,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.1,"y":5.081,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":5.081,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"360","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.957,"y":5.831,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".243","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":5.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"346","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.957,"y":7.3309999999999995,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".218","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":7.3309999999999995,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"369","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.953,"y":14.831,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.1,"y":14.831,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".197","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":14.831,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"309","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.957,"y":15.581,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".198","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":15.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"306","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.953,"y":21.581,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.1,"y":21.581,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".046","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":21.581,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"310","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.953,"y":27.58,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.1,"y":27.58,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".001","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":27.58,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"415","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.957,"y":28.33,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":".001","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.512,"y":28.33,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"416","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.337,"w":41.90999999999997,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2070%3B%20Form%201120%2C%20Schedule%20J%2C%20line%2019b%3B%20Form%201120S%2C%20line%2023c%3B%20Form%201041%2C%20line%2024g%3B%20or%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.68,"w":41.072999999999965,"clr":-1,"A":"left","R":[{"T":"Total%20income%20tax%20credit%20claimed.%20%20Add%20lines%201%20through%2016%2C%20column%20(d).%20Enter%20here%20and%20onForm%20","S":-1,"TS":[0,11.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM4","EN":0},"TI":2432,"AM":1024,"x":16.223,"y":2.06,"w":49.167,"h":0.912,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN4","EN":0},"TI":2433,"AM":1024,"x":65.414,"y":2.11,"w":22.505,"h":0.912,"TU":"Taxpayer identification number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCCREG","EN":0},"TI":2434,"AM":0,"x":78.523,"y":3.26,"w":16.306,"h":0.876,"TU":"Line 13. Registration No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"KTAX","EN":0},"TI":2435,"AM":0,"x":52.853,"y":4.589,"w":5.852,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCDGAL","EN":0},"TI":2436,"AM":0,"x":66.763,"y":5.289,"w":10.952,"h":0.833,"TU":"Line 13a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCDCR","EN":0},"TI":2437,"AM":1024,"x":79.019,"y":5.302,"w":9.853,"h":0.833,"TU":"Line 13a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCKGAL","EN":0},"TI":2438,"AM":0,"x":66.763,"y":6.039,"w":10.952,"h":0.833,"TU":"Line 13b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCKCR","EN":0},"TI":2439,"AM":1024,"x":79.159,"y":6.052,"w":9.853,"h":0.833,"TU":"Line 13b(d). Amount of credit. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCRT","EN":0},"TI":2440,"AM":0,"x":59.979,"y":7.486,"w":6.58,"h":0.833,"TU":"Line 13c(b). Rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCAGAL","EN":0},"TI":2441,"AM":0,"x":66.901,"y":7.515,"w":10.952,"h":0.833,"TU":"Line 13c(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCACR","EN":0},"TI":2442,"AM":0,"x":79.297,"y":7.551,"w":9.853,"h":0.833,"TU":"Line 13c(d). Amount of credit. Dollars"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUS17","EN":0},"TI":2443,"AM":0,"x":43.244,"y":14.436,"w":4.753,"h":0.931},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWNTTYPE","EN":0},"TI":2444,"AM":0,"x":48.381,"y":15.059,"w":10.952,"h":0.833,"TU":"Line 14a(a). Type of use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWNTRT","EN":0},"TI":2445,"AM":0,"x":61.235,"y":15.059,"w":4.911,"h":0.833,"TU":"Line 14a(b). Rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWNTGAL","EN":0},"TI":2446,"AM":0,"x":66.767,"y":15.078,"w":10.952,"h":0.833,"TU":"Line 14a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWNTCR","EN":0},"TI":2447,"AM":1024,"x":79.022,"y":15.091,"w":9.853,"h":0.833,"TU":"Line 14a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWEXGAL","EN":0},"TI":2448,"AM":0,"x":66.767,"y":15.804,"w":10.952,"h":0.833,"TU":"Line 14b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWEXCR","EN":0},"TI":2449,"AM":1024,"x":79.163,"y":15.841,"w":9.853,"h":0.833,"TU":"Line 14b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DWBREG","EN":0},"TI":2450,"AM":0,"x":78.249,"y":19.464,"w":16.306,"h":0.876,"TU":"Line 15. Registration No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWBGAL","EN":0},"TI":2451,"AM":0,"x":66.696,"y":21.793,"w":10.952,"h":0.833,"TU":"Line 15a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DWBCR","EN":0},"TI":2452,"AM":1024,"x":78.952,"y":21.806,"w":9.853,"h":0.833,"TU":"Line 15a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXDGAL","EN":0},"TI":2453,"AM":0,"x":66.763,"y":27.81,"w":10.952,"h":0.833,"TU":"Line 16a(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXDCR","EN":0},"TI":2454,"AM":1024,"x":79.019,"y":27.823,"w":9.853,"h":0.833,"TU":"Line 16a(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXKGAL","EN":0},"TI":2455,"AM":0,"x":66.763,"y":28.56,"w":10.952,"h":0.833,"TU":"Line 16b(c). Gallons."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXKCR","EN":0},"TI":2456,"AM":1024,"x":79.159,"y":28.573,"w":9.853,"h":0.833,"TU":"Line 16b(d). Amount of credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2457,"AM":1024,"x":79.209,"y":35.232,"w":9.716,"h":0.833,"TU":"Line 17. Total income tax credit claimed. Add lines 1 through 16, column (d). Enter here and on Form 1040, line 70. Dollars."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4137S.content.txt b/test/data/fd/form/F4137S.content.txt new file mode 100755 index 00000000..a6da0653 --- /dev/null +++ b/test/data/fd/form/F4137S.content.txt @@ -0,0 +1,140 @@ +Form +4137 +Department of the Treasury +Internal Revenue Service (99) +Social Security and Medicare Tax +on Unreported Tip Income +a +. +a + Attach to Form 1040, Form 1040NR, Form 1040NR-EZ, Form 1040-SS, or Form 1040-PR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +24 +Name of person who received tips. If married, complete a separate Form 4137 for each spouse with unreported tips. +Social security number +1 +(a) +Name of employer to whom + + + +you were required to, but did not +report all your tips (see instructions) +(b) +Employer + + +identification number + +(see instructions) +(c) +Total cash and charge + +tips you received (including +unreported tips) (see instructions) +(d) +Total cash and charge + +tips you reported to your +employer + + + + + + + + + +A +B +C +D +E +2 + +Total cash and charge tips you +received +in 2013. Add the +amounts from line 1, column (c) +........... +2 +3 + +Total cash and charge tips you +reported +to your employer(s) in 2013. Add the amounts from +line 1, column (d) +.......................... +3 +4 + +Subtract line 3 from line 2. This amount is income you +must +include in the total on Form 1040, +line 7; Form 1040NR, line 8; or Form 1040NR-EZ, line 3 +............. +4 +5 + +Cash and charge tips you received but did not report to your employer because the total was +less than $20 in a calendar month (see instructions) +............... +5 +6 +Unreported tips subject to Medicare tax. Subtract line 5 from line 4 +......... +6 +7 + +Maximum amount of wages (including tips) subject to +social security tax +................ +7 +8 + + + +Total social security wages and social security tips (total of boxes +3 and 7 shown on your Form(s) W-2) and railroad retirement +(RRTA) compensation (subject to 6.2 percent rate), see +instructions +.................. +8 +9 +Subtract line 8 from line 7. If line 8 is more than line 7, enter -0- +.......... +9 +10 + +Unreported tips subject to social security tax. Enter the +smaller + of line 6 or line 9. If you +received tips as a federal, state, or local government employee, see instructions +..... +10 +11 +Multiply line 10 by .062 (social security tax rate) +................ +11 +12 +Multiply line 6 by .0145 (Medicare tax rate) +.................. +12 +13 +Add lines 11 and 12. Enter the result here and on Form 1040, line 57; Form 1040NR, line 55; or +Form 1040NR-EZ, line 16 (Form 1040-SS and 1040-PR filers, see instructions.) +..... +13 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 12626C +Form +4137 + (2013) +113,700 00 + Information about Form 4137 and its instructions is at www.irs.gov/form4137 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4137S.fields.json b/test/data/fd/form/F4137S.fields.json new file mode 100755 index 00000000..a49df4e1 --- /dev/null +++ b/test/data/fd/form/F4137S.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"EMPLYRS_EMP_1_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_1_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_1_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_1_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_2_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_2_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_2_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_2_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_3_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_3_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_3_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_3_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_4_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_4_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_4_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_4_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_5_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_5_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_5_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_5_","type":"number","calc":false,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L9A","type":"alpha","calc":false,"value":""},{"id":"L9B","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4137S.json b/test/data/fd/form/F4137S.json new file mode 100755 index 00000000..47ad61ff --- /dev/null +++ b/test/data/fd/form/F4137S.json @@ -0,0 +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":74.336},{"oc":"#221f1f","x":80.395,"y":6.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":9,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":9,"w":0.75,"l":19.886},{"oc":"#221f1f","x":76.682,"y":9,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":9,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":9,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":10.5,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":10.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":10.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":10.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":12,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":12,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":12,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":12,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":13.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":13.5,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":13.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":13.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":13.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":15,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":15,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":15,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":15,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":15,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":16.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.62,"y":16.501,"w":1.125,"l":29.786},{"oc":"#221f1f","x":38.32,"y":16.501,"w":1.125,"l":18.648},{"oc":"#221f1f","x":56.882,"y":16.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":72.97,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":56.882,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":18,"w":1.125,"l":12.461},{"oc":"#221f1f","x":72.97,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":16.5,"w":1.125,"l":14.936},{"oc":"#221f1f","x":80.395,"y":18,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":19.5,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.245,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":22.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":24,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":28.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":72.97,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":29.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":30.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":32.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":33,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":33,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.245,"y":33,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":34.5,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.932,"y":34.5,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.82,"y":34.5,"w":1.5,"l":11.223}],"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":80.438,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.925,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.725,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.925,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.662,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":38.363,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":16.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":16.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.013,"y":17.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":17.984,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":80.438,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":20.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":20.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"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":60.638,"y":23.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":23.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":23.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":23.984,"w":0.75,"l":4.531},{"oc":"#221f1f","x":76.725,"y":23.984,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":60.638,"y":25.484,"w":0.75,"l":3.039},{"oc":"#221f1f","x":56.925,"y":25.484,"w":0.75,"l":3.039},{"oc":"#221f1f","x":73.013,"y":25.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"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":80.438,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":76.725,"y":16.5,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":16.5,"w":14.85,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":95.288,"y":16.5,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":76.725,"y":24,"w":3.713,"h":4.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"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.415,"y":2.634,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"4137%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.606,"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.106,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":34.249,"y":2.1,"w":16.118000000000006,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20and%20Medicare%20Tax%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":38.436,"y":2.975,"w":12.446000000000002,"clr":-1,"A":"left","R":[{"T":"on%20Unreported%20Tip%20Income","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":26.339,"y":3.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.967,"y":3.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.062,"y":4.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.093,"y":4.357,"w":41.56699999999999,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20Form%201040NR-EZ%2C%20Form%201040-SS%2C%20or%20Form%201040-PR.","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.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":3.393,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":3.875,"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.321,"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.321,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.025,"w":52.194999999999936,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20who%20received%20tips.%20If%20married%2C%20complete%20a%20separate%20Form%204137%20for%20each%20spouse%20with%20unreported%20tips.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.875,"y":5.025,"w":11.281999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.552,"y":6.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.547,"y":6.782,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.915,"y":6.782,"w":12.41,"clr":-1,"A":"left","R":[{"T":"Name%20of%20employer%20to%20whom","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":13.573,"y":7.282,"w":14.929000000000004,"clr":-1,"A":"left","R":[{"T":"you%20were%20required%20to%2C%20but%20did%20not%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.314,"y":7.782,"w":16.205000000000002,"clr":-1,"A":"left","R":[{"T":"report%20all%20your%20tips%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.281,"y":6.782,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":45.7,"y":6.782,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Employer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.116,"y":7.282,"w":9.410000000000002,"clr":-1,"A":"left","R":[{"T":"identification%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.199,"y":7.782,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.035,"y":6.794,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":-1,"TS":[0,10.52,1,0]}]},{"oc":"#221f1f","x":61.261,"y":6.794,"w":10.224000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":58.7,"y":7.2940000000000005,"w":12.743,"clr":-1,"A":"left","R":[{"T":"tips%20you%20received%20(including%20%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":56.929,"y":7.884,"w":15.206000000000005,"clr":-1,"A":"left","R":[{"T":"unreported%20tips)%20(see%20instructions)%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":79.566,"y":6.794,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":81.984,"y":6.794,"w":10.224000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.023,"y":7.2940000000000005,"w":11.595,"clr":-1,"A":"left","R":[{"T":"tips%20you%20reported%20to%20your%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.76,"y":7.884,"w":4.427,"clr":-1,"A":"left","R":[{"T":"employer%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.645,"y":9.589,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.631,"y":11.089,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.602,"y":12.59,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.602,"y":14.09,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.674,"y":15.59,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":16.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":16.402,"w":14.040000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20tips%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.098,"y":16.402,"w":4.336,"clr":-1,"A":"left","R":[{"T":"received%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.222,"y":16.402,"w":7.634,"clr":-1,"A":"left","R":[{"T":"in%202013.%20Add%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":17.089,"w":14.061000000000003,"clr":-1,"A":"left","R":[{"T":"amounts%20from%20line%201%2C%20column%20(c)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.746,"y":17.089,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.101,"y":17.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":17.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.902,"w":14.040000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20tips%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.054,"y":17.902,"w":4.334,"clr":-1,"A":"left","R":[{"T":"reported%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.286,"y":17.902,"w":22.712000000000007,"clr":-1,"A":"left","R":[{"T":"to%20your%20employer(s)%20in%202013.%20Add%20the%20amounts%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":18.589,"w":7.614000000000001,"clr":-1,"A":"left","R":[{"T":"line%201%2C%20column%20(d)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":18.589,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":18.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":19.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.306,"y":19.402,"w":24.286000000000012,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20This%20amount%20is%20income%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.658,"y":19.402,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.305,"y":19.402,"w":15.284000000000006,"clr":-1,"A":"left","R":[{"T":"include%20in%20the%20total%20on%20Form%201040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.662,"y":20.089,"w":24.619000000000007,"clr":-1,"A":"left","R":[{"T":"line%207%3B%20Form%201040NR%2C%20line%208%3B%20or%20Form%201040NR-EZ%2C%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.262,"y":20.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":20.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":20.902,"w":41.822999999999986,"clr":-1,"A":"left","R":[{"T":"Cash%20and%20charge%20tips%20you%20received%20but%20did%20not%20report%20to%20your%20employer%20because%20the%20total%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.639,"y":21.589,"w":22.91400000000001,"clr":-1,"A":"left","R":[{"T":"less%20than%20%2420%20in%20a%20calendar%20month%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.114,"y":21.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":21.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.089,"w":29.821,"clr":-1,"A":"left","R":[{"T":"Unreported%20tips%20subject%20to%20Medicare%20tax.%20Subtract%20line%205%20from%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":23.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":23.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.902,"w":24.136000000000006,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20of%20wages%20(including%20tips)%20subject%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.589,"w":8.018000000000002,"clr":-1,"A":"left","R":[{"T":"social%20security%20tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":24.589,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":58.101,"y":24.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":25.527,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":25.526,"w":29.500000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%20wages%20and%20social%20security%20tips%20(total%20of%20boxes%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":26.214,"w":26.949999999999996,"clr":-1,"A":"left","R":[{"T":"3%20and%207%20shown%20on%20your%20Form(s)%20W-2)%20and%20railroad%20retirement%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.656,"y":26.901,"w":25.00499999999999,"clr":-1,"A":"left","R":[{"T":"(RRTA)%20%20compensation%20(subject%20to%206.2%20percent%20rate)%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":27.588,"w":5.186,"clr":-1,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.317,"y":27.588,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":58.101,"y":27.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":28.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":28.339,"w":28.416,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207.%20If%20line%208%20is%20more%20than%20line%207%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":28.339,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":28.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":29.152,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":29.152,"w":24.874000000000002,"clr":-1,"A":"left","R":[{"T":"Unreported%20tips%20subject%20to%20social%20security%20tax.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.507,"y":29.152,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.535,"y":29.152,"w":10.650000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%206%20or%20line%209.%20If%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":29.839,"w":35.59799999999999,"clr":-1,"A":"left","R":[{"T":"received%20tips%20as%20a%20federal%2C%20state%2C%20or%20local%20government%20employee%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.755,"y":29.839,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.471,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":31.339,"w":21.115000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2010%20by%20.062%20(social%20security%20tax%20rate)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":31.339,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":"................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":77.471,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":32.089,"w":18.912000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20.0145%20(Medicare%20tax%20rate)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":32.089,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.471,"y":32.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":32.902,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":32.839,"w":42.46099999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012.%20Enter%20the%20result%20here%20and%20on%20Form%201040%2C%20line%2057%3B%20Form%201040NR%2C%20line%2055%3B%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.638,"y":33.527,"w":35.102,"clr":-1,"A":"left","R":[{"T":"Form%201040NR-EZ%2C%20line%2016%20(Form%201040-SS%20and%201040-PR%20filers%2C%20see%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.738,"y":33.527,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.471,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":34.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":65.167,"y":34.375,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012626C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":34.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":34.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4137","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":34.321,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#181618","x":65.597,"y":24.55,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"113%2C700","S":-1,"TS":[2,13,0,0]}]},{"oc":"#181618","x":73.636,"y":24.55,"w":1.64,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":27.371,"y":3.607,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%204137%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform4137","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2458,"AM":1024,"x":6.229,"y":5.868,"w":74.085,"h":0.867,"TU":"Name of person who received tips. If married, complete a separate Form 4137 for each spouse with unreported tips."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2459,"AM":1024,"x":81.031,"y":5.868,"w":18.013,"h":0.89,"TU":"Social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_1_","EN":0},"TI":2460,"AM":0,"x":8.848,"y":9.477,"w":29.093,"h":1.008,"TU":"Line 1A(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_1_","EN":0},"TI":2461,"AM":0,"x":38.548,"y":9.454,"w":18.212,"h":1.031,"TU":"Line 1A(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_1_","EN":0},"TI":2462,"AM":0,"x":57.303,"y":9.477,"w":15.545,"h":1.008,"TU":"Line 1A(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_1_","EN":0},"TI":2463,"AM":0,"x":76.911,"y":9.314,"w":18.212,"h":1.171,"TU":"Line 1A(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_2_","EN":0},"TI":2464,"AM":0,"x":8.848,"y":10.954,"w":28.965,"h":1.031,"TU":"Line 1B(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_2_","EN":0},"TI":2465,"AM":0,"x":38.548,"y":10.861,"w":18.212,"h":1.054,"TU":"Line 1B(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_2_","EN":0},"TI":2466,"AM":0,"x":57.111,"y":10.884,"w":15.737,"h":1.101,"TU":"Line 1B(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_2_","EN":0},"TI":2467,"AM":0,"x":76.911,"y":10.884,"w":18.212,"h":1.054,"TU":"Line 1B(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_3_","EN":0},"TI":2468,"AM":0,"x":8.848,"y":12.431,"w":28.901,"h":1.054,"TU":"Line 1C(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_3_","EN":0},"TI":2469,"AM":0,"x":38.548,"y":12.454,"w":18.212,"h":1.031,"TU":"Line 1C(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_3_","EN":0},"TI":2470,"AM":0,"x":57.111,"y":12.454,"w":15.737,"h":1.031,"TU":"Line 1C(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_3_","EN":0},"TI":2471,"AM":0,"x":76.911,"y":12.361,"w":18.212,"h":1.124,"TU":"Line 1C(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_4_","EN":0},"TI":2472,"AM":0,"x":8.848,"y":13.931,"w":28.965,"h":1.054,"TU":"Line 1D(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_4_","EN":0},"TI":2473,"AM":0,"x":38.548,"y":13.931,"w":18.212,"h":1.054,"TU":"Line 1D(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_4_","EN":0},"TI":2474,"AM":0,"x":57.303,"y":13.954,"w":15.737,"h":1.031,"TU":"Line 1D(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_4_","EN":0},"TI":2475,"AM":0,"x":76.911,"y":13.907,"w":18.212,"h":1.078,"TU":"Line 1D(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_5_","EN":0},"TI":2476,"AM":0,"x":8.848,"y":15.314,"w":28.837,"h":1.163,"TU":"Line 1E(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_5_","EN":0},"TI":2477,"AM":0,"x":38.548,"y":15.454,"w":18.212,"h":1.024,"TU":"Line 1E(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_5_","EN":0},"TI":2478,"AM":0,"x":57.111,"y":15.431,"w":15.737,"h":1.047,"TU":"Line 1E(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_5_","EN":0},"TI":2479,"AM":0,"x":76.911,"y":15.407,"w":18.212,"h":1.07,"TU":"Line 1E(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":2480,"AM":1024,"x":60.823,"y":17.101,"w":12.024,"h":0.876},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":2481,"AM":1024,"x":80.75,"y":18.622,"w":14.307,"h":0.876,"TU":"(d) Total cash and charge tips you reported to your employer_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":2482,"AM":1024,"x":80.75,"y":20.085,"w":14.499,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":2483,"AM":0,"x":80.75,"y":21.609,"w":14.499,"h":0.897,"TU":"Line 5. Cash and charge tips you received but did not report to your employer because the total was less than $20 in a calendar month (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":2484,"AM":1024,"x":80.75,"y":23.161,"w":14.499,"h":0.845},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":2485,"AM":0,"x":60.922,"y":24.568,"w":12.148,"h":0.938,"TU":"Line 7. Maximum amount of wages (including tips) subject to social security tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":2486,"AM":0,"x":60.885,"y":27.583,"w":11.901,"h":0.894,"TU":"Line 8. Total social security wages and social security tips (total of boxes 3 and 7 shown on your Form(s) W-2) and railroad retirement (RRTA) compensation (subject to 6.2 percent rate), see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":2487,"AM":1024,"x":80.685,"y":28.341,"w":14.376,"h":0.894},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2488,"AM":0,"x":80.623,"y":29.797,"w":14.499,"h":0.938,"TU":"Line 10. Unreported tips subject to social security tax, Enter the smaller of line 6 or line 9. If you received tips as a federal, state or local government employee, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":2489,"AM":0,"x":40.801,"y":30.818,"w":15.942,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":2490,"AM":0,"x":57.508,"y":30.84,"w":18.212,"h":0.84},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2491,"AM":1024,"x":80.623,"y":31.297,"w":14.499,"h":0.938},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2492,"AM":1024,"x":80.541,"y":32.288,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2493,"AM":1024,"x":80.623,"y":33.438,"w":14.499,"h":1.032}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4137T.content.txt b/test/data/fd/form/F4137T.content.txt new file mode 100755 index 00000000..a6da0653 --- /dev/null +++ b/test/data/fd/form/F4137T.content.txt @@ -0,0 +1,140 @@ +Form +4137 +Department of the Treasury +Internal Revenue Service (99) +Social Security and Medicare Tax +on Unreported Tip Income +a +. +a + Attach to Form 1040, Form 1040NR, Form 1040NR-EZ, Form 1040-SS, or Form 1040-PR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +24 +Name of person who received tips. If married, complete a separate Form 4137 for each spouse with unreported tips. +Social security number +1 +(a) +Name of employer to whom + + + +you were required to, but did not +report all your tips (see instructions) +(b) +Employer + + +identification number + +(see instructions) +(c) +Total cash and charge + +tips you received (including +unreported tips) (see instructions) +(d) +Total cash and charge + +tips you reported to your +employer + + + + + + + + + +A +B +C +D +E +2 + +Total cash and charge tips you +received +in 2013. Add the +amounts from line 1, column (c) +........... +2 +3 + +Total cash and charge tips you +reported +to your employer(s) in 2013. Add the amounts from +line 1, column (d) +.......................... +3 +4 + +Subtract line 3 from line 2. This amount is income you +must +include in the total on Form 1040, +line 7; Form 1040NR, line 8; or Form 1040NR-EZ, line 3 +............. +4 +5 + +Cash and charge tips you received but did not report to your employer because the total was +less than $20 in a calendar month (see instructions) +............... +5 +6 +Unreported tips subject to Medicare tax. Subtract line 5 from line 4 +......... +6 +7 + +Maximum amount of wages (including tips) subject to +social security tax +................ +7 +8 + + + +Total social security wages and social security tips (total of boxes +3 and 7 shown on your Form(s) W-2) and railroad retirement +(RRTA) compensation (subject to 6.2 percent rate), see +instructions +.................. +8 +9 +Subtract line 8 from line 7. If line 8 is more than line 7, enter -0- +.......... +9 +10 + +Unreported tips subject to social security tax. Enter the +smaller + of line 6 or line 9. If you +received tips as a federal, state, or local government employee, see instructions +..... +10 +11 +Multiply line 10 by .062 (social security tax rate) +................ +11 +12 +Multiply line 6 by .0145 (Medicare tax rate) +.................. +12 +13 +Add lines 11 and 12. Enter the result here and on Form 1040, line 57; Form 1040NR, line 55; or +Form 1040NR-EZ, line 16 (Form 1040-SS and 1040-PR filers, see instructions.) +..... +13 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 12626C +Form +4137 + (2013) +113,700 00 + Information about Form 4137 and its instructions is at www.irs.gov/form4137 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4137T.fields.json b/test/data/fd/form/F4137T.fields.json new file mode 100755 index 00000000..a49df4e1 --- /dev/null +++ b/test/data/fd/form/F4137T.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"EMPLYRS_EMP_1_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_1_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_1_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_1_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_2_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_2_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_2_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_2_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_3_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_3_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_3_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_3_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_4_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_4_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_4_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_4_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_EMP_5_","type":"alpha","calc":false,"value":""},{"id":"EMPLYRS_EIN_5_","type":"mask","calc":false,"value":""},{"id":"EMPLYRS_RECTIPS_5_","type":"number","calc":false,"value":""},{"id":"EMPLYRS_REPTIPS_5_","type":"number","calc":false,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L9A","type":"alpha","calc":false,"value":""},{"id":"L9B","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4137T.json b/test/data/fd/form/F4137T.json new file mode 100755 index 00000000..dcb206cf --- /dev/null +++ b/test/data/fd/form/F4137T.json @@ -0,0 +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":74.336},{"oc":"#221f1f","x":80.395,"y":6.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":9,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":9,"w":0.75,"l":19.886},{"oc":"#221f1f","x":76.682,"y":9,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":9,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":9,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":10.5,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":10.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":10.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":10.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":12,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":12,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":12,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":12,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":13.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":13.5,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":13.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":13.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":13.5,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":15,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":15,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.32,"y":15,"w":0.75,"l":18.648},{"oc":"#221f1f","x":56.882,"y":15,"w":0.75,"l":16.173},{"oc":"#221f1f","x":72.97,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":15,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":16.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.62,"y":16.501,"w":1.125,"l":29.786},{"oc":"#221f1f","x":38.32,"y":16.501,"w":1.125,"l":18.648},{"oc":"#221f1f","x":56.882,"y":16.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":72.97,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":56.882,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":18,"w":1.125,"l":12.461},{"oc":"#221f1f","x":72.97,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":16.5,"w":1.125,"l":14.936},{"oc":"#221f1f","x":80.395,"y":18,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":19.5,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.245,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":22.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":24,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":28.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":72.97,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":29.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":30.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":32.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":33,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":33,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.245,"y":33,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":34.5,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.932,"y":34.5,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.82,"y":34.5,"w":1.5,"l":11.223}],"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":80.438,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.925,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.725,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.925,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.662,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.362,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":38.363,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":16.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":16.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.013,"y":17.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":16.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":17.984,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":80.438,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":20.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":20.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"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":60.638,"y":23.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":23.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":23.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":23.984,"w":0.75,"l":4.531},{"oc":"#221f1f","x":76.725,"y":23.984,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":60.638,"y":25.484,"w":0.75,"l":3.039},{"oc":"#221f1f","x":56.925,"y":25.484,"w":0.75,"l":3.039},{"oc":"#221f1f","x":73.013,"y":25.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"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":80.438,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":76.725,"y":16.5,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":16.5,"w":14.85,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":95.288,"y":16.5,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":76.725,"y":24,"w":3.713,"h":4.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"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.415,"y":2.634,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"4137%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.606,"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.106,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":34.249,"y":2.1,"w":16.118000000000006,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20and%20Medicare%20Tax%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":38.436,"y":2.975,"w":12.446000000000002,"clr":-1,"A":"left","R":[{"T":"on%20Unreported%20Tip%20Income","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":26.339,"y":3.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.967,"y":3.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.062,"y":4.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.093,"y":4.357,"w":41.56699999999999,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20Form%201040NR-EZ%2C%20Form%201040-SS%2C%20or%20Form%201040-PR.","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.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":3.393,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":3.875,"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.321,"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.321,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.025,"w":52.194999999999936,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20who%20received%20tips.%20If%20married%2C%20complete%20a%20separate%20Form%204137%20for%20each%20spouse%20with%20unreported%20tips.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.875,"y":5.025,"w":11.281999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.552,"y":6.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.547,"y":6.782,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.915,"y":6.782,"w":12.41,"clr":-1,"A":"left","R":[{"T":"Name%20of%20employer%20to%20whom","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":13.573,"y":7.282,"w":14.929000000000004,"clr":-1,"A":"left","R":[{"T":"you%20were%20required%20to%2C%20but%20did%20not%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.314,"y":7.782,"w":16.205000000000002,"clr":-1,"A":"left","R":[{"T":"report%20all%20your%20tips%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.281,"y":6.782,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":45.7,"y":6.782,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Employer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.116,"y":7.282,"w":9.410000000000002,"clr":-1,"A":"left","R":[{"T":"identification%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.199,"y":7.782,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.035,"y":6.794,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":-1,"TS":[0,10.52,1,0]}]},{"oc":"#221f1f","x":61.261,"y":6.794,"w":10.224000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":58.7,"y":7.2940000000000005,"w":12.743,"clr":-1,"A":"left","R":[{"T":"tips%20you%20received%20(including%20%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":56.929,"y":7.884,"w":15.206000000000005,"clr":-1,"A":"left","R":[{"T":"unreported%20tips)%20(see%20instructions)%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":79.566,"y":6.794,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":81.984,"y":6.794,"w":10.224000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.023,"y":7.2940000000000005,"w":11.595,"clr":-1,"A":"left","R":[{"T":"tips%20you%20reported%20to%20your%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.76,"y":7.884,"w":4.427,"clr":-1,"A":"left","R":[{"T":"employer%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.645,"y":9.589,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.631,"y":11.089,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.602,"y":12.59,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.602,"y":14.09,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.674,"y":15.59,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":16.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":16.402,"w":14.040000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20tips%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.098,"y":16.402,"w":4.336,"clr":-1,"A":"left","R":[{"T":"received%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.222,"y":16.402,"w":7.634,"clr":-1,"A":"left","R":[{"T":"in%202013.%20Add%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":17.089,"w":14.061000000000003,"clr":-1,"A":"left","R":[{"T":"amounts%20from%20line%201%2C%20column%20(c)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.746,"y":17.089,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.101,"y":17.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":17.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.902,"w":14.040000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20and%20charge%20tips%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.054,"y":17.902,"w":4.334,"clr":-1,"A":"left","R":[{"T":"reported%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.286,"y":17.902,"w":22.712000000000007,"clr":-1,"A":"left","R":[{"T":"to%20your%20employer(s)%20in%202013.%20Add%20the%20amounts%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":18.589,"w":7.614000000000001,"clr":-1,"A":"left","R":[{"T":"line%201%2C%20column%20(d)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":18.589,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":18.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":19.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.306,"y":19.402,"w":24.286000000000012,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20This%20amount%20is%20income%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.658,"y":19.402,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.305,"y":19.402,"w":15.284000000000006,"clr":-1,"A":"left","R":[{"T":"include%20in%20the%20total%20on%20Form%201040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.662,"y":20.089,"w":24.619000000000007,"clr":-1,"A":"left","R":[{"T":"line%207%3B%20Form%201040NR%2C%20line%208%3B%20or%20Form%201040NR-EZ%2C%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.262,"y":20.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":20.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":20.902,"w":41.822999999999986,"clr":-1,"A":"left","R":[{"T":"Cash%20and%20charge%20tips%20you%20received%20but%20did%20not%20report%20to%20your%20employer%20because%20the%20total%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.639,"y":21.589,"w":22.91400000000001,"clr":-1,"A":"left","R":[{"T":"less%20than%20%2420%20in%20a%20calendar%20month%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.114,"y":21.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":21.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.089,"w":29.821,"clr":-1,"A":"left","R":[{"T":"Unreported%20tips%20subject%20to%20Medicare%20tax.%20Subtract%20line%205%20from%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":23.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":23.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.902,"w":24.136000000000006,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20of%20wages%20(including%20tips)%20subject%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.589,"w":8.018000000000002,"clr":-1,"A":"left","R":[{"T":"social%20security%20tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":24.589,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":58.101,"y":24.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":25.527,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":25.526,"w":29.500000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%20wages%20and%20social%20security%20tips%20(total%20of%20boxes%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":26.214,"w":26.949999999999996,"clr":-1,"A":"left","R":[{"T":"3%20and%207%20shown%20on%20your%20Form(s)%20W-2)%20and%20railroad%20retirement%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.656,"y":26.901,"w":25.00499999999999,"clr":-1,"A":"left","R":[{"T":"(RRTA)%20%20compensation%20(subject%20to%206.2%20percent%20rate)%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":27.588,"w":5.186,"clr":-1,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.317,"y":27.588,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":58.101,"y":27.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":28.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":28.339,"w":28.416,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207.%20If%20line%208%20is%20more%20than%20line%207%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":28.339,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.901,"y":28.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":29.152,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":29.152,"w":24.874000000000002,"clr":-1,"A":"left","R":[{"T":"Unreported%20tips%20subject%20to%20social%20security%20tax.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.507,"y":29.152,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.535,"y":29.152,"w":10.650000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%206%20or%20line%209.%20If%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":29.839,"w":35.59799999999999,"clr":-1,"A":"left","R":[{"T":"received%20tips%20as%20a%20federal%2C%20state%2C%20or%20local%20government%20employee%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.755,"y":29.839,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.471,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":31.339,"w":21.115000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2010%20by%20.062%20(social%20security%20tax%20rate)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":31.339,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":"................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":77.471,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":32.089,"w":18.912000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20.0145%20(Medicare%20tax%20rate)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":32.089,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.471,"y":32.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":32.902,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":32.839,"w":42.46099999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012.%20Enter%20the%20result%20here%20and%20on%20Form%201040%2C%20line%2057%3B%20Form%201040NR%2C%20line%2055%3B%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.638,"y":33.527,"w":35.102,"clr":-1,"A":"left","R":[{"T":"Form%201040NR-EZ%2C%20line%2016%20(Form%201040-SS%20and%201040-PR%20filers%2C%20see%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.738,"y":33.527,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.471,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":34.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":65.167,"y":34.375,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012626C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":34.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":34.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4137","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":34.321,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#181618","x":65.597,"y":24.55,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"113%2C700","S":-1,"TS":[2,13,0,0]}]},{"oc":"#181618","x":73.636,"y":24.55,"w":1.64,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":27.371,"y":3.607,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%204137%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform4137","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2494,"AM":1024,"x":6.229,"y":5.868,"w":74.085,"h":0.867,"TU":"Name of person who received tips. If married, complete a separate Form 4137 for each spouse with unreported tips."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2495,"AM":1024,"x":81.031,"y":5.868,"w":18.013,"h":0.89,"TU":"Social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_1_","EN":0},"TI":2496,"AM":0,"x":8.848,"y":9.477,"w":29.093,"h":1.008,"TU":"Line 1A(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_1_","EN":0},"TI":2497,"AM":0,"x":38.548,"y":9.454,"w":18.212,"h":1.031,"TU":"Line 1A(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_1_","EN":0},"TI":2498,"AM":0,"x":57.303,"y":9.477,"w":15.545,"h":1.008,"TU":"Line 1A(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_1_","EN":0},"TI":2499,"AM":0,"x":76.911,"y":9.314,"w":18.212,"h":1.171,"TU":"Line 1A(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_2_","EN":0},"TI":2500,"AM":0,"x":8.848,"y":10.954,"w":28.965,"h":1.031,"TU":"Line 1B(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_2_","EN":0},"TI":2501,"AM":0,"x":38.548,"y":10.861,"w":18.212,"h":1.054,"TU":"Line 1B(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_2_","EN":0},"TI":2502,"AM":0,"x":57.111,"y":10.884,"w":15.737,"h":1.101,"TU":"Line 1B(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_2_","EN":0},"TI":2503,"AM":0,"x":76.911,"y":10.884,"w":18.212,"h":1.054,"TU":"Line 1B(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_3_","EN":0},"TI":2504,"AM":0,"x":8.848,"y":12.431,"w":28.901,"h":1.054,"TU":"Line 1C(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_3_","EN":0},"TI":2505,"AM":0,"x":38.548,"y":12.454,"w":18.212,"h":1.031,"TU":"Line 1C(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_3_","EN":0},"TI":2506,"AM":0,"x":57.111,"y":12.454,"w":15.737,"h":1.031,"TU":"Line 1C(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_3_","EN":0},"TI":2507,"AM":0,"x":76.911,"y":12.361,"w":18.212,"h":1.124,"TU":"Line 1C(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_4_","EN":0},"TI":2508,"AM":0,"x":8.848,"y":13.931,"w":28.965,"h":1.054,"TU":"Line 1D(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_4_","EN":0},"TI":2509,"AM":0,"x":38.548,"y":13.931,"w":18.212,"h":1.054,"TU":"Line 1D(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_4_","EN":0},"TI":2510,"AM":0,"x":57.303,"y":13.954,"w":15.737,"h":1.031,"TU":"Line 1D(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_4_","EN":0},"TI":2511,"AM":0,"x":76.911,"y":13.907,"w":18.212,"h":1.078,"TU":"Line 1D(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPLYRS_EMP_5_","EN":0},"TI":2512,"AM":0,"x":8.848,"y":15.314,"w":28.837,"h":1.163,"TU":"Line 1E(a). Name of employer to whom you were required to, but did not report all your tips (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EMPLYRS_EIN_5_","EN":0},"TI":2513,"AM":0,"x":38.548,"y":15.454,"w":18.212,"h":1.024,"TU":"Line 1E(b). Employer identification number (see instructions).","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_RECTIPS_5_","EN":0},"TI":2514,"AM":0,"x":57.111,"y":15.431,"w":15.737,"h":1.047,"TU":"Line 1E(c). Total cash charge tips you received (including unreported tips) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLYRS_REPTIPS_5_","EN":0},"TI":2515,"AM":0,"x":76.911,"y":15.407,"w":18.212,"h":1.07,"TU":"Line 1E(d). Total cash and charge tips you reported to your employer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":2516,"AM":1024,"x":60.823,"y":17.101,"w":12.024,"h":0.876},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":2517,"AM":1024,"x":80.75,"y":18.622,"w":14.307,"h":0.876,"TU":"(d) Total cash and charge tips you reported to your employer_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":2518,"AM":1024,"x":80.75,"y":20.085,"w":14.499,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":2519,"AM":0,"x":80.75,"y":21.609,"w":14.499,"h":0.897,"TU":"Line 5. Cash and charge tips you received but did not report to your employer because the total was less than $20 in a calendar month (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":2520,"AM":1024,"x":80.75,"y":23.161,"w":14.499,"h":0.845},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":2521,"AM":0,"x":60.922,"y":24.568,"w":12.148,"h":0.938,"TU":"Line 7. Maximum amount of wages (including tips) subject to social security tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":2522,"AM":0,"x":60.885,"y":27.583,"w":11.901,"h":0.894,"TU":"Line 8. Total social security wages and social security tips (total of boxes 3 and 7 shown on your Form(s) W-2) and railroad retirement (RRTA) compensation (subject to 6.2 percent rate), see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":2523,"AM":1024,"x":80.685,"y":28.341,"w":14.376,"h":0.894},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2524,"AM":0,"x":80.623,"y":29.797,"w":14.499,"h":0.938,"TU":"Line 10. Unreported tips subject to social security tax, Enter the smaller of line 6 or line 9. If you received tips as a federal, state or local government employee, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":2525,"AM":0,"x":40.801,"y":30.818,"w":15.942,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":2526,"AM":0,"x":57.508,"y":30.84,"w":18.212,"h":0.84},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2527,"AM":1024,"x":80.623,"y":31.297,"w":14.499,"h":0.938},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2528,"AM":1024,"x":80.541,"y":32.288,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2529,"AM":1024,"x":80.623,"y":33.438,"w":14.499,"h":1.032}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4255.content.txt b/test/data/fd/form/F4255.content.txt new file mode 100755 index 00000000..0a1c84c8 --- /dev/null +++ b/test/data/fd/form/F4255.content.txt @@ -0,0 +1,108 @@ +Form +4255 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +Recapture of Investment Credit +a + Attach to your income tax return. + +a + Information about Form 4255 and its instructions is at +www.irs.gov/form4255 +. +OMB No. 1545-0166 +Attachment +Sequence No. +172 +Name(s) as shown on return +Identifying number +Properties +Type of property—State whether rehabilitation, energy, qualifying advanced coal project, qualifying gasification project, quali +fying advanced energy project, +or qualifying therapeutic discovery project property. (See the Instructions for Form 3468 for the year the investment credit pr +operty was placed in service +for definitions.) If rehabilitation property, also show type of building. If energy property, show type. +A +B +C +D +Original Investment Credit +Computation Steps: +Properties +(see Specific Instructions) +A +B +C +D +1 +Original rate of credit . +....... +1 +2 +Cost or other basis . . +....... +2 +3 +Original credit (see instructions) +..... +3 +4 +Date property was placed in service . . . +4 +5 + +Date property ceased to be qualified +investment credit property +....... +5 +6 + +Number of full years between the date on line +4 and the date on line 5 . +....... +6 +Recapture Tax +7 +Recapture percentage (see instructions) . . +7 +8 + +Tentative recapture tax. Multiply line 3 by +the percentage on line 7 +....... +8 +9 +Add all the amounts on line 8 +....................... +9 +10 +Enter the tentative recapture tax from property for which there was an increase in nonqualified +nonrecourse financing. Attach a separate statement (see instructions) . +......... +10 +11 +Add lines 9 and 10 . . +......................... +11 +12 +Unused credits (see instructions) +....................... +12 +13 +Subtract line 12 from line 11. See section 45K(b)(4) if you claim the nonconventional source fuel +credit. Electing large partnerships, see instructions +................. +13 +14 +Recapture of qualifying therapeutic discovery project grant. Attach statement (see instructions) . . +14 +15 +Total increase in tax. Add lines 13 and 14. Enter here and on the appropriate line of your tax return . +15 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 41488C +Form +4255 + (Rev. 12-2012) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4255.fields.json b/test/data/fd/form/F4255.fields.json new file mode 100755 index 00000000..ae928900 --- /dev/null +++ b/test/data/fd/form/F4255.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A56_PRPA_1_","type":"alpha","calc":false,"value":""},{"id":"A56_PRPA_2_","type":"alpha","calc":false,"value":""},{"id":"A56_PRPA_3_","type":"alpha","calc":false,"value":""},{"id":"A56_PRPA_4_","type":"alpha","calc":false,"value":""},{"id":"A57_L1_1_","type":"number","calc":false,"value":""},{"id":"A57_L1_2_","type":"number","calc":false,"value":""},{"id":"A57_L1_3_","type":"number","calc":false,"value":""},{"id":"A57_L1_4_","type":"number","calc":false,"value":""},{"id":"A58_L2_1_","type":"number","calc":false,"value":""},{"id":"A58_L2_2_","type":"number","calc":false,"value":""},{"id":"A58_L2_3_","type":"number","calc":false,"value":""},{"id":"A58_L2_4_","type":"number","calc":false,"value":""},{"id":"A59_L3_1_","type":"number","calc":true,"value":""},{"id":"A59_L3_2_","type":"number","calc":true,"value":""},{"id":"A59_L3_3_","type":"number","calc":true,"value":""},{"id":"A59_L3_4_","type":"number","calc":true,"value":""},{"id":"A62_L4_1_","type":"date","calc":false,"value":""},{"id":"A62_L4_2_","type":"date","calc":false,"value":""},{"id":"A62_L4_3_","type":"date","calc":false,"value":""},{"id":"A62_L4_4_","type":"date","calc":false,"value":""},{"id":"A63_L5_1_","type":"date","calc":false,"value":""},{"id":"A63_L5_2_","type":"date","calc":false,"value":""},{"id":"A63_L5_3_","type":"date","calc":false,"value":""},{"id":"A63_L5_4_","type":"date","calc":false,"value":""},{"id":"A64_L6_1_","type":"number","calc":false,"value":""},{"id":"A64_L6_2_","type":"number","calc":false,"value":""},{"id":"A64_L6_3_","type":"number","calc":false,"value":""},{"id":"A64_L6_4_","type":"number","calc":false,"value":""},{"id":"A65_L7_1_","type":"number","calc":true,"value":""},{"id":"A65_L7_2_","type":"number","calc":true,"value":""},{"id":"A65_L7_3_","type":"number","calc":true,"value":""},{"id":"A65_L7_4_","type":"number","calc":true,"value":""},{"id":"A66_L8_1_","type":"number","calc":true,"value":""},{"id":"A66_L8_2_","type":"number","calc":true,"value":""},{"id":"A66_L8_3_","type":"number","calc":true,"value":""},{"id":"A66_L8_4_","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"FUELCR","type":"number","calc":false,"value":""},{"id":"RECAP","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4255.json b/test/data/fd/form/F4255.json new file mode 100755 index 00000000..0e2caa5c --- /dev/null +++ b/test/data/fd/form/F4255.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 4255 (Rev. December 2012)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.064,"y":3.75,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":65.716},{"oc":"#221f1f","x":6.145,"y":6.75,"w":0.75,"l":65.716},{"oc":"#221f1f","x":71.732,"y":5.25,"w":1.5,"l":27.311},{"oc":"#221f1f","x":71.732,"y":6.75,"w":0.75,"l":27.311},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.807,"y":9,"w":0.75,"l":84.235},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.807,"y":10.5,"w":0.75,"l":84.235},{"oc":"#221f1f","x":6.145,"y":12,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.807,"y":12,"w":0.75,"l":84.235},{"oc":"#221f1f","x":6.145,"y":13.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.807,"y":13.5,"w":0.75,"l":84.235},{"oc":"#221f1f","x":6.145,"y":15,"w":1.5,"l":8.748},{"oc":"#221f1f","x":14.807,"y":15,"w":1.5,"l":84.235},{"oc":"#221f1f","x":6.145,"y":15.75,"w":0.75,"l":92.898},{"oc":"#221f1f","x":43.27,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":16.5,"w":0.75,"l":52.061},{"oc":"#221f1f","x":43.27,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":71.732,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":17.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":43.27,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":71.732,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":18,"w":0.75,"l":14.936},{"oc":"#221f1f","x":43.27,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":71.732,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":18.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":43.27,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":71.732,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":19.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":43.27,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":71.732,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":20.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":43.27,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":71.732,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":21.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":23.25,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":24,"w":0.75,"l":92.898},{"oc":"#221f1f","x":43.27,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":71.732,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":24.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":43.27,"y":26.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":46.982,"y":26.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":59.357,"y":26.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":71.732,"y":26.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":84.107,"y":26.25,"w":1.125,"l":14.936},{"oc":"#221f1f","x":80.394,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":27,"w":0.75,"l":14.962},{"oc":"#221f1f","x":80.394,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":28.5,"w":1.125,"l":14.936},{"oc":"#221f1f","x":80.394,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":29.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.394,"y":30,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":30,"w":1.125,"l":14.936},{"oc":"#221f1f","x":80.394,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":31.492,"w":0.75,"l":14.962},{"oc":"#221f1f","x":80.371,"y":32.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.084,"y":32.242,"w":1.125,"l":14.962},{"dsh":1,"oc":"#221f1f","x":84.084,"y":32.992,"w":0.75,"l":14.962},{"oc":"#221f1f","x":6.145,"y":33,"w":1.5,"l":37.211},{"oc":"#221f1f","x":43.27,"y":33,"w":1.5,"l":39.685},{"oc":"#221f1f","x":82.869,"y":33,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.626},{"oc":"#221f1f","x":21.038,"y":3.609,"w":1.5,"l":0.631},{"oc":"#221f1f","x":21.038,"y":4.234,"w":1.5,"l":1.031},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.531},{"oc":"#221f1f","x":71.775,"y":5.219,"w":0.75,"l":1.547},{"oc":"#221f1f","x":14.85,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":14.85,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.85,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.85,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.85,"y":13.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":47.025,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.775,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.775,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.775,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.775,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.775,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":43.313,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":71.775,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.025,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":43.313,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":71.775,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.025,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.775,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":24.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":43.313,"y":24.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.4,"y":24.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":71.775,"y":24.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.15,"y":24.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.15,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.437,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":26.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.437,"y":26.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.15,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.437,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":29.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.437,"y":29.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.437,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.127,"y":31.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.414,"y":31.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.127,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.414,"y":32.234,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":43.313,"y":15.75,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":43.313,"y":16.5,"w":3.712,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.633,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.749,"y":2.633,"w":2.08,"clr":-1,"A":"left","R":[{"T":"4255","S":-1,"TS":[0,26.9998,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.3120000000000003,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.9189999999999996,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.649899999999999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.356,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.649899999999999,0,0]}]},{"oc":"#221f1f","x":35.38,"y":2.563,"w":14.400000000000002,"clr":-1,"A":"left","R":[{"T":"Recapture%20of%20Investment%20Credit%20","S":-1,"TS":[2,16.9999,0,0]}]},{"oc":"#221f1f","x":40.815,"y":3.521,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":41.846,"y":3.615,"w":16.02,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20income%20tax%20return.","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":26.34,"y":4.084,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.371,"y":4.178,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%204255%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":63.192,"y":4.178,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform4255","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":77.966,"y":4.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":85.741,"y":2.356,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0166%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":86.134,"y":3.6870000000000003,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":86.134,"y":4.259,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":94.446,"y":4.259,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"172%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5,"w":12.798000000000004,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20return%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":72.556,"y":5,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":6.431,"y":6.589,"w":5.24,"clr":-1,"A":"left","R":[{"T":"Properties%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":15.116,"y":6.5,"w":55.55999999999997,"clr":-1,"A":"left","R":[{"T":"Type%20of%20property%E2%80%94State%20whether%20rehabilitation%2C%20energy%2C%20qualifying%20advanced%20coal%20project%2C%20qualifying%20gasification%20project%2C%20quali","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":81.961,"y":6.5,"w":14.076000000000002,"clr":-1,"A":"left","R":[{"T":"fying%20advanced%20energy%20project%2C%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":15.116,"y":7,"w":55.34299999999993,"clr":-1,"A":"left","R":[{"T":"or%20qualifying%20therapeutic%20discovery%20project%20property.%20(See%20the%20Instructions%20for%20Form%203468%20for%20the%20year%20the%20investment%20credit%20pr","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":81.7,"y":7,"w":13.000000000000005,"clr":-1,"A":"left","R":[{"T":"operty%20was%20placed%20in%20service%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":15.116,"y":7.5,"w":43.96599999999997,"clr":-1,"A":"left","R":[{"T":"for%20definitions.)%20If%20rehabilitation%20property%2C%20also%20show%20type%20of%20building.%20If%20energy%20property%2C%20show%20type.%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.739,"y":9.12,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.725,"y":10.677,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.696,"y":12.177,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.696,"y":13.708,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":41.605,"y":14.821,"w":12.774000000000003,"clr":-1,"A":"left","R":[{"T":"Original%20Investment%20Credit%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":15.655000000000001,"w":9.759000000000004,"clr":-1,"A":"left","R":[{"T":"Computation%20Steps%3A%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":68.925,"y":15.655000000000001,"w":5.24,"clr":-1,"A":"left","R":[{"T":"Properties%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.651,"y":16.405,"w":11.741000000000005,"clr":-1,"A":"left","R":[{"T":"(see%20Specific%20Instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":52.433,"y":16.278,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":64.793,"y":16.405,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":77.139,"y":16.405,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":90.752,"y":16.405,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":17.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":17.089,"w":9.667,"clr":-1,"A":"left","R":[{"T":"Original%20rate%20of%20credit%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.562,"y":17.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":28.624,"y":17.089,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":17.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":17.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":17.839,"w":8.797000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":24.501,"y":17.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.563,"y":17.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":28.624,"y":17.839,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":17.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":18.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":18.589,"w":14.075000000000003,"clr":-1,"A":"left","R":[{"T":"Original%20credit%20(see%20instructions)","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":32.75,"y":18.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":18.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":19.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.339,"w":16.297000000000004,"clr":-1,"A":"left","R":[{"T":"Date%20property%20was%20placed%20in%20service%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":36.876,"y":19.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":38.938,"y":19.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":41,"y":19.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":19.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":20.151,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":20.151,"w":16.855000000000004,"clr":-1,"A":"left","R":[{"T":"Date%20property%20ceased%20to%20be%20qualified%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.649,"y":20.839,"w":11.762000000000002,"clr":-1,"A":"left","R":[{"T":"investment%20credit%20property","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":28.624,"y":20.839,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":20.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":21.651,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":21.651,"w":20.837000000000007,"clr":-1,"A":"left","R":[{"T":"Number%20of%20full%20years%20between%20the%20date%20on%20line%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.652,"y":22.339,"w":10.523,"clr":-1,"A":"left","R":[{"T":"4%20and%20the%20date%20on%20line%205","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.564,"y":22.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":28.626,"y":22.339,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":22.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":46.36,"y":23.134,"w":7.241,"clr":-1,"A":"left","R":[{"T":"Recapture%20Tax%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.839,"w":18.076000000000004,"clr":-1,"A":"left","R":[{"T":"Recapture%20percentage%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":38.938,"y":23.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":41,"y":23.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":24.651,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.651,"w":18.651999999999997,"clr":-1,"A":"left","R":[{"T":"Tentative%20recapture%20tax.%20Multiply%20line%203%20by%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":25.339,"w":11.077,"clr":-1,"A":"left","R":[{"T":"the%20percentage%20on%20line%207%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":28.626,"y":25.339,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.489,"y":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":26.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.089,"w":13.283,"clr":-1,"A":"left","R":[{"T":"Add%20all%20the%20amounts%20on%20line%208%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":30.688,"y":26.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":81.614,"y":26.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":26.901,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.901,"w":41.966999999999985,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tentative%20recapture%20tax%20from%20property%20for%20which%20there%20was%20an%20increase%20in%20nonqualified","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.643,"y":27.589,"w":30.950000000000006,"clr":-1,"A":"left","R":[{"T":"nonrecourse%20financing.%20Attach%20a%20separate%20statement%20(see%20instructions)","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":59.557,"y":27.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":61.617,"y":27.589,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":81.183,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":28.339,"w":8.615,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209%20and%2010%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":24.501,"y":28.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.563,"y":28.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":28.624,"y":28.339,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":".........................%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":81.183,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.716,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.089,"w":14.891000000000004,"clr":-1,"A":"left","R":[{"T":"Unused%20credits%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":32.749,"y":29.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":81.183,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.716,"y":29.901,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.901,"w":42.788,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2012%20from%20line%2011.%20See%20section%2045K(b)(4)%20if%20you%20claim%20the%20nonconventional%20source%20fuel%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.658,"y":30.589,"w":22.595000000000006,"clr":-1,"A":"left","R":[{"T":"credit.%20Electing%20large%20partnerships%2C%20see%20instructions","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":45.132,"y":30.589,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":81.183,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.627,"y":31.339,"w":42.24699999999998,"clr":-1,"A":"left","R":[{"T":"Recapture%20of%20qualifying%20therapeutic%20discovery%20project%20grant.%20Attach%20statement%20(see%20instructions)","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":76.064,"y":31.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":78.126,"y":31.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":81.161,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":32.057,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.627,"y":32.057,"w":43.82399999999996,"clr":-1,"A":"left","R":[{"T":"Total%20increase%20in%20tax.%20Add%20lines%2013%20and%2014.%20Enter%20here%20and%20on%20the%20appropriate%20line%20of%20your%20tax%20return","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":78.126,"y":32.057,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":81.161,"y":32.057,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":32.732,"w":26.239,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":58.361,"y":32.762,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2041488C%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":83.605,"y":32.821,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":86.747,"y":32.821,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4255","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":90.57,"y":32.821,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2012)%20","S":-1,"TS":[0,9.9999,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2530,"AM":1024,"x":6.229,"y":5.916,"w":65.422,"h":0.833,"TU":"Name(s) as shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2531,"AM":1024,"x":71.919,"y":5.97,"w":27.06,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A56_PRPA_1_","EN":0},"TI":2532,"AM":0,"x":15.036,"y":9.694,"w":83.903,"h":0.833,"TU":"A. Type of property—State whether rehabilitation, energy, qualifying advanced coal project, qualifying gasification project, qualifying advanced energy project, or qualifying therapeutic discovery project property. (See the Instructions for Form 3468 for the year the investment credit property was placed in service for definitions.) If rehabilitation property, also show type of building. If energy property, show type.."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A56_PRPA_2_","EN":0},"TI":2533,"AM":0,"x":14.948,"y":11.188,"w":83.902,"h":0.833,"TU":"B. Type of property—State whether rehabilitation, energy, qualifying advanced coal project, qualifying gasification project, qualifying advanced energy project, or qualifying therapeutic discovery project property. (See the Instructions for Form 3468 for the year the investment credit property was placed in service for definitions.) If rehabilitation property, also show type of building. If energy property, show type."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A56_PRPA_3_","EN":0},"TI":2534,"AM":0,"x":15.077,"y":12.706,"w":83.903,"h":0.833,"TU":"C. Type of property—State whether rehabilitation, energy, qualifying advanced coal project, qualifying gasification project, qualifying advanced energy project, or qualifying therapeutic discovery project property. (See the Instructions for Form 3468 for the year the investment credit property was placed in service for definitions.) If rehabilitation property, also show type of building. If energy property, show type."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A56_PRPA_4_","EN":0},"TI":2535,"AM":0,"x":14.983,"y":14.114,"w":83.902,"h":0.833,"TU":"D. Type of property—State whether rehabilitation, energy, qualifying advanced coal project, qualifying gasification project, qualifying advanced energy project, or qualifying therapeutic discovery project property. (See the Instructions for Form 3468 for the year the investment credit property was placed in service for definitions.) If rehabilitation property, also show type of building. If energy property, show type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A57_L1_1_","EN":0},"TI":2536,"AM":0,"x":47.128,"y":17.288,"w":12.189,"h":0.833,"TU":"Line 1A. Original rate of credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A57_L1_2_","EN":0},"TI":2537,"AM":0,"x":59.564,"y":17.306,"w":12.189,"h":0.833,"TU":"Line 1B. Original rate of credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A57_L1_3_","EN":0},"TI":2538,"AM":0,"x":71.897,"y":17.326,"w":12.189,"h":0.833,"TU":"Line 1C. Original rate of credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A57_L1_4_","EN":0},"TI":2539,"AM":0,"x":84.23,"y":17.292,"w":14.66,"h":0.833,"TU":"Line 1D. Original rate of credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A58_L2_1_","EN":0},"TI":2540,"AM":0,"x":47.04,"y":18.076,"w":12.189,"h":0.833,"TU":"Line 2A. Cost or other basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A58_L2_2_","EN":0},"TI":2541,"AM":0,"x":59.476,"y":18.095,"w":12.189,"h":0.833,"TU":"Line 2B. Cost or other basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A58_L2_3_","EN":0},"TI":2542,"AM":0,"x":71.809,"y":18.115,"w":12.189,"h":0.833,"TU":"Line 2C. Cost or other basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A58_L2_4_","EN":0},"TI":2543,"AM":0,"x":84.142,"y":18.081,"w":14.66,"h":0.833,"TU":"Line 2D. Cost or other basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A59_L3_1_","EN":0},"TI":2544,"AM":1024,"x":47.02,"y":18.804,"w":12.189,"h":0.833,"TU":"Line 3A. Original credit (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A59_L3_2_","EN":0},"TI":2545,"AM":1024,"x":59.456,"y":18.823,"w":12.189,"h":0.833,"TU":"Line 3B. Original credit (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A59_L3_3_","EN":0},"TI":2546,"AM":1024,"x":71.788,"y":18.87,"w":12.189,"h":0.833,"TU":"Line 3C. Original credit (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A59_L3_4_","EN":0},"TI":2547,"AM":1024,"x":84.121,"y":18.808,"w":14.66,"h":0.833,"TU":"Line 3D. Original credit (see instructions)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A62_L4_1_","EN":0},"TI":2548,"AM":0,"x":47.075,"y":19.532,"w":12.189,"h":0.833,"TU":"Line 4A. Date property was placed in service.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A62_L4_2_","EN":0},"TI":2549,"AM":0,"x":59.51,"y":19.551,"w":12.189,"h":0.833,"TU":"Line 4B. Date property was placed in service.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A62_L4_3_","EN":0},"TI":2550,"AM":0,"x":71.843,"y":19.571,"w":12.189,"h":0.833,"TU":"Line 4C. Date property was placed in service.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A62_L4_4_","EN":0},"TI":2551,"AM":0,"x":84.369,"y":19.434,"w":14.66,"h":0.833,"TU":"Line 4D. Date property was placed in service.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A63_L5_1_","EN":0},"TI":2552,"AM":0,"x":47.054,"y":20.968,"w":12.189,"h":0.833,"TU":"Line 5A. Date property ceased to be qualified investment credit property.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A63_L5_2_","EN":0},"TI":2553,"AM":0,"x":59.49,"y":20.986,"w":12.189,"h":0.833,"TU":"Line 5B. Date property ceased to be qualified investment credit property.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A63_L5_3_","EN":0},"TI":2554,"AM":0,"x":71.823,"y":21.006,"w":12.189,"h":0.833,"TU":"Line 5C. Date property ceased to be qualified investment credit property.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A63_L5_4_","EN":0},"TI":2555,"AM":0,"x":84.156,"y":20.972,"w":14.66,"h":0.833,"TU":"Line 5D. Date property ceased to be qualified investment credit property.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_L6_1_","EN":0},"TI":2556,"AM":0,"x":47.109,"y":22.512,"w":12.189,"h":0.833,"TU":"Line 6A. Number of full years between the date on line 3 and the date on line 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_L6_2_","EN":0},"TI":2557,"AM":0,"x":59.545,"y":22.531,"w":12.189,"h":0.833,"TU":"Line 6B. Number of full years between the date on line 3 and the date on line 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_L6_3_","EN":0},"TI":2558,"AM":0,"x":71.878,"y":22.551,"w":12.189,"h":0.833,"TU":"Line 6C. Number of full years between the date on line 3 and the date on line 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_L6_4_","EN":0},"TI":2559,"AM":0,"x":84.211,"y":22.516,"w":14.66,"h":0.833,"TU":"Line 6D. Number of full years between the date on line 3 and the date on line 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_L7_1_","EN":0},"TI":2560,"AM":1024,"x":47.115,"y":24.011,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_L7_2_","EN":0},"TI":2561,"AM":1024,"x":59.55,"y":24.03,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_L7_3_","EN":0},"TI":2562,"AM":1024,"x":71.883,"y":24.05,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_L7_4_","EN":0},"TI":2563,"AM":1024,"x":84.217,"y":24.016,"w":14.66,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_L8_1_","EN":0},"TI":2564,"AM":1024,"x":47.189,"y":25.509,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_L8_2_","EN":0},"TI":2565,"AM":1024,"x":59.625,"y":25.528,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_L8_3_","EN":0},"TI":2566,"AM":1024,"x":71.958,"y":25.547,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_L8_4_","EN":0},"TI":2567,"AM":1024,"x":84.291,"y":25.486,"w":14.66,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2568,"AM":0,"x":84.253,"y":26.295,"w":14.788,"h":0.833,"TU":"Line 9. Add all the amounts on lines 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2569,"AM":0,"x":84.336,"y":27.694,"w":14.623,"h":0.833,"TU":"Line 10. Enter the tentative recapture tax from property for which there was an increase in nonqualified nonrecourse financing. Attach a separate statement (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2570,"AM":1024,"x":84.253,"y":28.545,"w":14.768,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2571,"AM":0,"x":84.253,"y":29.288,"w":14.768,"h":0.833,"TU":"Line 12. Unused credits (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUELCR","EN":0},"TI":2572,"AM":0,"x":84.336,"y":30.701,"w":14.623,"h":0.833,"TU":"Line 13. Subtract line 12 from line 11. See section 45K(b)(4) if you clain the nonconventional source fuel credit. Electing large partnerships, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RECAP","EN":0},"TI":2573,"AM":0,"x":84.253,"y":31.538,"w":14.788,"h":0.833,"TU":"Line 14. Recapture of qualifying therapeutic discovery project grant. Attach statement (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2574,"AM":1024,"x":84.253,"y":32.295,"w":14.768,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4562C.content.txt b/test/data/fd/form/F4562C.content.txt new file mode 100755 index 00000000..2e0f5f06 --- /dev/null +++ b/test/data/fd/form/F4562C.content.txt @@ -0,0 +1,434 @@ +Section B - Assets Placed in Service During 2013 Tax Year Using the General Depreciation System +Form +4562 +Department of the Treasury +Internal Revenue Service +(99) +Depreciation and Amortization +(Including Information on Listed Property) +a + +See separate instructions. + +a + +Attach to your tax return. +OMB No. 1545-0172 +20 +13 +Attachment +Sequence No. +179 +Name(s) shown on return +Business or activity to which this form relates +Identifying number +Part I +Election To Expense Certain Property Under Section 179 +Note: +If you have any listed property, complete Part V before you complete Part I. +1 +Maximum amount (see instructions) +....................... +1 +2 +Total cost of section 179 property placed in service (see instructions) +........... +2 +3 +Threshold cost of section 179 property before reduction in limitation (see instructions) +...... +3 +4 +Reduction in limitation. Subtract line 3 from line 2. If zero or less, enter -0- +.......... +4 +5 +Dollar limitation for tax year. Subtract line 4 from line 1. If zero or less, enter -0-. If married filing +separately, see instructions +......................... +5 +6 +(a) +Description of property +(b) +Cost (business use only) +(c) +Elected cost +7 +Listed property. Enter the amount from line 29 +......... +7 +8 +Total elected cost of section 179 property. Add amounts in column (c), lines 6 and 7 +...... +8 +9 +Tentative deduction. Enter the +smaller + of line 5 or line 8 +................ +9 +10 +Carryover of disallowed deduction from line 13 of your 2012 Form 4562 +........... +10 +11 +Business income limitation. Enter the smaller of business income (not less than zero) or line 5 (see instructions) +11 +12 +Section 179 expense deduction. Add lines 9 and 10, but do not enter more than line 11 +..... +12 +13 +Carryover of disallowed deduction to 2014. Add lines 9 and 10, less line 12 +a +13 +Note: +Do not use Part II or Part III below for listed property. Instead, use Part V. +Part II +Special Depreciation Allowance and Other Depreciation (Do not +14 +Special depreciation allowance for qualified property (other than listed property) placed in service +during the tax year (see instructions) +...................... +14 +15 +Property subject to section 168(f)(1) election +.................... +15 +16 +Other depreciation (including ACRS) +...................... +16 +Part III +MACRS Depreciation (Do not +Section A +17 +MACRS deductions for assets placed in service in tax years beginning before 2013 +....... +17 +18 +If you are electing to group any assets placed in service during the tax year into one or more general +asset accounts, check here +...................... +a + +(a) +Classification of property +(b) + Month and + +year + + placed in + + +service +(c) + Basis for depreciation + + +(business/investment use + +only—see instructions) +(d) + Recovery + +period +(e) + Convention +(f) + Method +(g) + Depreciation deduction +19a +3-year property +b +5-year property +c +7-year property +d +10-year property +e +15-year property +f +20-year property +g +25-year property +h +Residential rental +property + + +i +Nonresidential real +property + + +Section C - Assets Placed in Service During 2013 Tax Year Using the Alternative Depreciation System + + +20a +Class life +b +12-year +c +40-year +Part IV +Summary +(See instructions.) +21 +Listed property. Enter amount from line 28 +.................... +21 +Add amounts from line 12, lines 14 through 17, lines 19 and 20 in column (g), and line 21. + +Enter +here and on the appropriate lines of your return. Partnerships and S corporations—see instructions . +22 +23 +For assets shown above and placed in service during the current year, enter the +portion of the basis attributable to section 263A costs +....... +23 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 12906N + Form +4562 + (2013) +25 yrs. S/L +27.5 yrs. MM S/L +27.5 yrs. MM S/L +39 yrs. MM S/L +MM S/L +S/L +12 yrs. S/L +40 yrs. MM S/L +include listed property.) (See instructions.) +include listed property.) (See instructions.) +22 + +Total. +----------------Page (0) Break---------------- +Form 4562 (2013) +Page +2 +Part V +Listed Property + +entertainment, recreation, or amusement.) +Note: +For any vehicle for which you are using the standard mileage rate or deducting lease expense, complete + +only + +24a, +24b, columns (a) through (c) of Section A, all of Section B, and Section C if applicable. +Section A - Depreciation and Other Information (Caution: +See the instructions for limits for passenger automobiles. +) +24a +Do you have evidence to support the business/investment use claimed? +Yes +No +24b +If “Yes,” is the evidence written? +Yes +No +(a) +Type of property (list + +vehicles first) +(b) +Date placed +in + +service +(c) +Business/ + +investment + +use + +percentage +(d) +Cost or other + +basis +(e) +Basis for depreciation + +(business/investment + +use only) +(f) + +Recovery + +period +(g) +Method/ + +Convention +(h) +Depreciation + +deduction +(i) +Elected + +section 179 + +cost +25 +Special depreciation allowance for qualified listed property placed in service during +the tax year and used more than 50% in a qualified business use (see instructions) . +25 +26 +Property used more than 50% in a qualified business use: +% +% +% +27 +Property used 50% or less in a qualified business use: +% +S/L – +% +S/L – +% +S/L – +28 +Add amounts in column (h), lines 25 through 27. Enter here and on line 21, page 1 . +28 +29 +Add amounts in column (i), line 26. Enter here and on line 7, page 1 +............ +29 +Section B - Information on Use of Vehicles +Complete this section for vehicles used by a sole proprietor, partner, or other “more than 5% owner,” or related person. If you + provided vehicles +to your employees, first answer the questions in Section C to see if you meet an exception to completing this section for those + vehicles. + + + +30 +Total business/investment miles driven during +the year ( +do not + include commuting miles) . +(a) +Vehicle 1 +(b) +Vehicle 2 +(c) +Vehicle 3 +(d) +Vehicle 4 +(e) +Vehicle 5 +(f) +Vehicle 6 +31 +Total commuting miles driven during the year +32 +Total other personal (noncommuting) +miles driven +......... +33 +Total miles driven during the year. Add +lines 30 through 32 +....... + + +Yes +No +Yes +No +Yes +No +Yes +No +Yes +No +Yes +No +34 +Was the vehicle available for personal +use during off-duty hours? +..... +35 +Was the vehicle used primarily by a more +than 5% owner or related person? . . +36 +Is another vehicle available for personal use? +Section C - Questions for Employers Who Provide Vehicles for Use by Their Employees +Answer these questions to determine if you meet an exception to completing Section B for vehicles used by employees who + + +more than 5% owners or related persons (see instructions). +37 +Do you maintain a written policy statement that prohibits all personal use of vehicles, including commuting, by +your employees? +................................ +Yes +No +38 +Do you maintain a written policy statement that prohibits personal use of vehicles, except commuting, by your +employees? See the instructions for vehicles used by corporate officers, directors, or 1% or more owners . . +39 +Do you treat all use of vehicles by employees as personal use? +................ +40 +Do you provide more than five vehicles to your employees, obtain information from your employees about the +use of the vehicles, and retain the information received? +................... +41 +Do you meet the requirements concerning qualified automobile demonstration use? (See instructions.) . . . +Note: +If your answer to 37, 38, 39, 40, or 41 is “Yes,” do not complete Section B for the covered vehicles. +Part VI +Amortization +(a) +Description of costs +(b) +Date amortization + +begins +(c) +Amortizable + +amount +(d) +Code + +section +(e) +Amortization + +period or + +percentage +(f) +Amortization for + +this year +42 +Amortization of costs that begins during your 2013 tax year (see instructions): +43 +Amortization of costs that began before your 2013 tax year +............. +43 +Add amounts in column (f). See the instructions for where to report +........ +44 +Form +4562 + (2013) +(Include automobiles, certain other vehicles, certain computers, and property used for +44 + +Total. +not are +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F4562C.fields.json b/test/data/fd/form/F4562C.fields.json new file mode 100755 index 00000000..8284d3aa --- /dev/null +++ b/test/data/fd/form/F4562C.fields.json @@ -0,0 +1 @@ +[{"id":"GAAX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"BUS","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6_L6A_1_","type":"alpha","calc":false,"value":""},{"id":"L6_L6B_1_","type":"number","calc":false,"value":""},{"id":"L6_L6C_1_","type":"number","calc":false,"value":""},{"id":"L6_L6A_2_","type":"alpha","calc":false,"value":""},{"id":"L6_L6B_2_","type":"number","calc":false,"value":""},{"id":"L6_L6C_2_","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"BONUS14","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L14C_1_","type":"number","calc":false,"value":""},{"id":"L14D_1_","type":"mask","calc":false,"value":""},{"id":"L14E_1_","type":"alpha","calc":false,"value":""},{"id":"L14F_1_","type":"alpha","calc":false,"value":""},{"id":"L14G_1_","type":"number","calc":false,"value":""},{"id":"L14C_2_","type":"number","calc":false,"value":""},{"id":"L14D_2_","type":"mask","calc":false,"value":""},{"id":"L14E_2_","type":"alpha","calc":false,"value":""},{"id":"L14F_2_","type":"alpha","calc":false,"value":""},{"id":"L14G_2_","type":"number","calc":false,"value":""},{"id":"L14C_3_","type":"number","calc":false,"value":""},{"id":"L14D_3_","type":"mask","calc":false,"value":""},{"id":"L14E_3_","type":"alpha","calc":false,"value":""},{"id":"L14F_3_","type":"alpha","calc":false,"value":""},{"id":"L14G_3_","type":"number","calc":false,"value":""},{"id":"L14C_4_","type":"number","calc":false,"value":""},{"id":"L14D_4_","type":"mask","calc":false,"value":""},{"id":"L14E_4_","type":"alpha","calc":false,"value":""},{"id":"L14F_4_","type":"alpha","calc":false,"value":""},{"id":"L14G_4_","type":"number","calc":false,"value":""},{"id":"L14C_5_","type":"number","calc":false,"value":""},{"id":"L14D_5_","type":"mask","calc":false,"value":""},{"id":"L14E_5_","type":"alpha","calc":false,"value":""},{"id":"L14F_5_","type":"alpha","calc":false,"value":""},{"id":"L14G_5_","type":"number","calc":false,"value":""},{"id":"L14C_6_","type":"number","calc":false,"value":""},{"id":"L14D_6_","type":"mask","calc":false,"value":""},{"id":"L14E_6_","type":"alpha","calc":false,"value":""},{"id":"L14F_6_","type":"alpha","calc":false,"value":""},{"id":"L14G_6_","type":"number","calc":false,"value":""},{"id":"L14C_7_","type":"number","calc":false,"value":""},{"id":"L14E_7_","type":"alpha","calc":false,"value":""},{"id":"L14G_7_","type":"number","calc":false,"value":""},{"id":"L14B7_1_","type":"date","calc":false,"value":""},{"id":"L14C7_1_","type":"number","calc":false,"value":""},{"id":"L14G7_1_","type":"number","calc":false,"value":""},{"id":"L14B7_2_","type":"date","calc":false,"value":""},{"id":"L14C7_2_","type":"number","calc":false,"value":""},{"id":"L14G7_2_","type":"number","calc":false,"value":""},{"id":"L14B8_1_","type":"date","calc":false,"value":""},{"id":"L14C8_1_","type":"number","calc":false,"value":""},{"id":"L14G8_1_","type":"number","calc":false,"value":""},{"id":"L14B8_2_","type":"date","calc":false,"value":""},{"id":"L14C8_2_","type":"number","calc":false,"value":""},{"id":"L14D8","type":"mask","calc":false,"value":""},{"id":"L14G8_2_","type":"number","calc":false,"value":""},{"id":"L15C_1_","type":"number","calc":false,"value":""},{"id":"L15D1","type":"mask","calc":false,"value":""},{"id":"L15E_1_","type":"alpha","calc":false,"value":""},{"id":"L15G_1_","type":"number","calc":false,"value":""},{"id":"L15C_2_","type":"number","calc":false,"value":""},{"id":"L15E_2_","type":"alpha","calc":false,"value":""},{"id":"L15G_2_","type":"number","calc":false,"value":""},{"id":"L15B3","type":"date","calc":false,"value":""},{"id":"L15C_3_","type":"number","calc":false,"value":""},{"id":"L15G_3_","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22ARB","type":"radio","calc":false,"value":"L22AY"},{"id":"L22ARB","type":"radio","calc":false,"value":"L22AN"},{"id":"L22BRB","type":"radio","calc":false,"value":"L22BY"},{"id":"L22BRB","type":"radio","calc":false,"value":"L22BN"},{"id":"A251RB_1_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_1_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_2_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_2_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_3_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_3_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_4_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_4_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_5_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_5_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_6_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_6_","type":"radio","calc":false,"value":"L31N"},{"id":"A253RB_1_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_1_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_2_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_2_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_3_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_3_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_4_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_4_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_5_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_5_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_6_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_6_","type":"radio","calc":false,"value":"L32N"},{"id":"A254RB_1_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_1_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_2_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_2_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_3_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_3_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_4_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_4_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_5_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_5_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_6_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_6_","type":"radio","calc":false,"value":"L33N"},{"id":"L34RB","type":"radio","calc":false,"value":"L34Y"},{"id":"L34RB","type":"radio","calc":false,"value":"L34N"},{"id":"L35RB","type":"radio","calc":false,"value":"L35Y"},{"id":"L35RB","type":"radio","calc":false,"value":"L35N"},{"id":"L36RB","type":"radio","calc":false,"value":"L36Y"},{"id":"L36RB","type":"radio","calc":false,"value":"L36N"},{"id":"L37RB","type":"radio","calc":false,"value":"L37Y"},{"id":"L37RB","type":"radio","calc":false,"value":"L37N"},{"id":"L38RB","type":"radio","calc":false,"value":"L38Y"},{"id":"L38RB","type":"radio","calc":false,"value":"L38N"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"BONUS25","type":"number","calc":false,"value":""},{"id":"L23_L23A_1_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_1_","type":"date","calc":false,"value":""},{"id":"L23_L23C_1_","type":"number","calc":false,"value":""},{"id":"L23_L23D_1_","type":"number","calc":false,"value":""},{"id":"L23_L23E_1_","type":"number","calc":false,"value":""},{"id":"L23_L23F_1_","type":"number","calc":false,"value":""},{"id":"L23_L23G_1_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_1_","type":"number","calc":false,"value":""},{"id":"L23_L23I_1_","type":"number","calc":false,"value":""},{"id":"L23_L23A_2_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_2_","type":"date","calc":false,"value":""},{"id":"L23_L23C_2_","type":"number","calc":false,"value":""},{"id":"L23_L23D_2_","type":"number","calc":false,"value":""},{"id":"L23_L23E_2_","type":"number","calc":false,"value":""},{"id":"L23_L23F_2_","type":"number","calc":false,"value":""},{"id":"L23_L23G_2_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_2_","type":"number","calc":false,"value":""},{"id":"L23_L23I_2_","type":"number","calc":false,"value":""},{"id":"L23_L23A_3_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_3_","type":"date","calc":false,"value":""},{"id":"L23_L23C_3_","type":"number","calc":false,"value":""},{"id":"L23_L23D_3_","type":"number","calc":false,"value":""},{"id":"L23_L23E_3_","type":"number","calc":false,"value":""},{"id":"L23_L23F_3_","type":"number","calc":false,"value":""},{"id":"L23_L23G_3_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_3_","type":"number","calc":false,"value":""},{"id":"L23_L23I_3_","type":"number","calc":false,"value":""},{"id":"L24_L24A_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_1_","type":"date","calc":false,"value":""},{"id":"L24_L24C_1_","type":"number","calc":false,"value":""},{"id":"L24_L24D_1_","type":"number","calc":false,"value":""},{"id":"L24_L24E_1_","type":"number","calc":false,"value":""},{"id":"L24_L24F_1_","type":"number","calc":false,"value":""},{"id":"L24_L24G_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24A_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_2_","type":"date","calc":false,"value":""},{"id":"L24_L24C_2_","type":"number","calc":false,"value":""},{"id":"L24_L24D_2_","type":"number","calc":false,"value":""},{"id":"L24_L24E_2_","type":"number","calc":false,"value":""},{"id":"L24_L24F_2_","type":"number","calc":false,"value":""},{"id":"L24_L24G_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24A_3_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_3_","type":"date","calc":false,"value":""},{"id":"L24_L24C_3_","type":"number","calc":false,"value":""},{"id":"L24_L24D_3_","type":"number","calc":false,"value":""},{"id":"L24_L24E_3_","type":"number","calc":false,"value":""},{"id":"L24_L24F_3_","type":"number","calc":false,"value":""},{"id":"L24_L24G_3_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_3_","type":"alpha","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"MILES_L27_1_","type":"number","calc":false,"value":""},{"id":"MILES_L27_2_","type":"number","calc":false,"value":""},{"id":"MILES_L27_3_","type":"number","calc":false,"value":""},{"id":"MILES_L27_4_","type":"number","calc":false,"value":""},{"id":"MILES_L27_5_","type":"number","calc":false,"value":""},{"id":"MILES_L27_6_","type":"number","calc":false,"value":""},{"id":"MILES_L28_1_","type":"number","calc":false,"value":""},{"id":"MILES_L28_2_","type":"number","calc":false,"value":""},{"id":"MILES_L28_3_","type":"number","calc":false,"value":""},{"id":"MILES_L28_4_","type":"number","calc":false,"value":""},{"id":"MILES_L28_5_","type":"number","calc":false,"value":""},{"id":"MILES_L28_6_","type":"number","calc":false,"value":""},{"id":"MILES_L29_1_","type":"number","calc":false,"value":""},{"id":"MILES_L29_2_","type":"number","calc":false,"value":""},{"id":"MILES_L29_3_","type":"number","calc":false,"value":""},{"id":"MILES_L29_4_","type":"number","calc":false,"value":""},{"id":"MILES_L29_5_","type":"number","calc":false,"value":""},{"id":"MILES_L29_6_","type":"number","calc":false,"value":""},{"id":"MILES_L30_1_","type":"number","calc":false,"value":""},{"id":"MILES_L30_2_","type":"number","calc":false,"value":""},{"id":"MILES_L30_3_","type":"number","calc":false,"value":""},{"id":"MILES_L30_4_","type":"number","calc":false,"value":""},{"id":"MILES_L30_5_","type":"number","calc":false,"value":""},{"id":"MILES_L30_6_","type":"number","calc":false,"value":""},{"id":"L39_L39A_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39B_1_","type":"date","calc":false,"value":""},{"id":"L39_L39C_1_","type":"number","calc":false,"value":""},{"id":"L39_L39D_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39E_1_","type":"number","calc":false,"value":""},{"id":"L39_L39E2_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39F_1_","type":"number","calc":false,"value":""},{"id":"L39_L39A_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39B_2_","type":"date","calc":false,"value":""},{"id":"L39_L39C_2_","type":"number","calc":false,"value":""},{"id":"L39_L39D_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39E_2_","type":"number","calc":false,"value":""},{"id":"L39_L39E2_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39F_2_","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4562C.json b/test/data/fd/form/F4562C.json new file mode 100755 index 00000000..807686c0 --- /dev/null +++ b/test/data/fd/form/F4562C.json @@ -0,0 +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.133,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.266,"w":1.5,"l":63.178},{"oc":"#221f1f","x":84.066,"y":3.006,"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.2000000000000002,"l":37.211},{"oc":"#221f1f","x":43.272,"y":6.751,"w":1.2000000000000002,"l":39.686},{"oc":"#221f1f","x":82.872,"y":6.751,"w":1.2000000000000002,"l":16.173},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":10.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":11.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":42.161},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":12.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":48.222,"y":13.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":14.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":14.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":15.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":15.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":15.751,"w":1.125,"l":21.123},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":16.51,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.77,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":66.784,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.497,"y":19.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.196,"y":20.251,"w":0.75,"l":92.849},{"oc":"#221f1f","x":6.196,"y":21.001,"w":1.2000000000000002,"l":92.849},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.585,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.585,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":24.752,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":25.502,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.146,"y":26.252,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":27.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":7.384,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":23.471,"y":30.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":30.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":30.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":30.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":31.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":30.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":31.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":31.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":31.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":31.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":32.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":32.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":32.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":32.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":32.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":33.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":33.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":33.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":33.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":33.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":33.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":33.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":33.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":33.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":34.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":34.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":34.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":34.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":34.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":35.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":35.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":35.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":35.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":35.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":36.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":36.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":36.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":36.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":36.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":9.859,"y":37.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":36.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":36.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":36.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":36.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":36.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":36.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.471,"y":37.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":37.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":37.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":37.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":37.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":9.859,"y":39.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":38.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":38.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":38.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.471,"y":39.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":39.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":39.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":39.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":40.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":39.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":40.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":41.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":41.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":41.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":42.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":42.001,"w":1.2000000000000002,"l":9.986},{"oc":"#221f1f","x":33.372,"y":42.001,"w":1.2000000000000002,"l":14.936},{"oc":"#221f1f","x":48.222,"y":42.001,"w":1.2000000000000002,"l":8.748},{"oc":"#221f1f","x":56.884,"y":42.001,"w":1.2000000000000002,"l":11.223},{"oc":"#221f1f","x":68.022,"y":42.001,"w":1.2000000000000002,"l":14.936},{"oc":"#221f1f","x":82.872,"y":42.001,"w":1.2000000000000002,"l":16.173},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.784,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.497,"y":45.001,"w":0.75,"l":12.468},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.196,"y":46.501,"w":1.5,"l":43.349},{"oc":"#221f1f","x":49.459,"y":46.501,"w":1.5,"l":37.211},{"oc":"#221f1f","x":86.584,"y":46.501,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.643},{"oc":"#221f1f","x":21.026,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.152,"y":2.241,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":1.47},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":43.315,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":82.915,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":86.627,"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":86.627,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":86.627,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":65.59,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":86.627,"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":86.627,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":19.478,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":26.237,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.237,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.514,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":33.414,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.264,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.927,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.064,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.914,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":33.414,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.514,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"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":23.515,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":33.415,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":48.265,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":56.927,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":68.065,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":82.915,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.627,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"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":6.751,"w":5.792,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":12.751,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":19.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":21.001,"w":6.2,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.752,"w":6.707,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":27.001,"w":16.088,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":30.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":31.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":32.251,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":33.001,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":33.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":34.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":35.251,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.515,"y":39.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.515,"y":40.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":42.001,"w":6.868,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":45.001,"w":16.088,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":16.181,"y":28.251,"w":46.73999999999997,"clr":-1,"A":"left","R":[{"T":"Section%20B%20-%20Assets%20Placed%20in%20Service%20During%202013%20Tax%20Year%20Using%20the%20General%20Depreciation%20System","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.926,"y":3.8810000000000002,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.926,"y":4.376,"w":12.205000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":18.513,"y":4.376,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.032,"y":2.335,"w":15.058000000000003,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20Amortization%20%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":33.041,"y":3.2990000000000004,"w":20.002000000000002,"clr":-1,"A":"left","R":[{"T":"(Including%20Information%20on%20Listed%20Property)","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":29.935,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":31.253,"y":4.258,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.99,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":58.308,"y":4.258,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.979,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0172","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":86.308,"y":3.8760000000000003,"w":8.505000000000006,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.308,"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":94.286,"y":4.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"179","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.58,"y":5.001,"w":20.205000000000002,"clr":-1,"A":"left","R":[{"T":"Business%20or%20activity%20to%20which%20this%20form%20relates","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.18,"y":5.001,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.64,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":6.572,"w":27.453000000000003,"clr":-1,"A":"left","R":[{"T":"Election%20To%20Expense%20Certain%20Property%20Under%20Section%20179%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.674,"y":7.26,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":18.545,"y":7.26,"w":33.428999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20any%20listed%20property%2C%20complete%20Part%20V%20before%20you%20complete%20Part%20I.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":8.09,"w":16.191000000000003,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":8.09,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":8.84,"w":31.003999999999998,"clr":-1,"A":"left","R":[{"T":"Total%20cost%20of%20section%20179%20property%20placed%20in%20service%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":8.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":9.59,"w":38.45099999999999,"clr":-1,"A":"left","R":[{"T":"Threshold%20cost%20of%20section%20179%20property%20before%20reduction%20in%20limitation%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":9.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":10.34,"w":33.227999999999994,"clr":-1,"A":"left","R":[{"T":"Reduction%20in%20limitation.%20Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":10.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":11.04,"w":42.66999999999999,"clr":-1,"A":"left","R":[{"T":"Dollar%20limitation%20for%20tax%20year.%20Subtract%20line%204%20from%20line%201.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20married%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.714,"y":11.728,"w":12.483000000000002,"clr":-1,"A":"left","R":[{"T":"separately%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.677,"y":11.728,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.747,"y":12.473,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":21.819,"y":12.473,"w":10.297,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.079,"y":12.473,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.195,"y":12.473,"w":10.872000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20(business%20use%20only)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.48,"y":12.473,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.552,"y":12.473,"w":5.556,"clr":-1,"A":"left","R":[{"T":"Elected%20cost","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":14.84,"w":20.859000000000005,"clr":-1,"A":"left","R":[{"T":"Listed%20property.%20Enter%20the%20amount%20from%20line%2029%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":14.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":15.59,"w":37.67799999999998,"clr":-1,"A":"left","R":[{"T":"Total%20elected%20cost%20of%20section%20179%20property.%20Add%20amounts%20in%20column%20(c)%2C%20lines%206%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":15.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":16.34,"w":13.726000000000006,"clr":-1,"A":"left","R":[{"T":"Tentative%20deduction.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.65,"y":16.34,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.714,"y":16.34,"w":7.909000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%205%20or%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":16.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.09,"w":31.858000000000015,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20disallowed%20deduction%20from%20line%2013%20of%20your%202012%20Form%204562","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":17.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.84,"w":49.89799999999995,"clr":-1,"A":"left","R":[{"T":"Business%20income%20limitation.%20Enter%20the%20smaller%20of%20business%20income%20(not%20less%20than%20zero)%20or%20line%205%20(see%20instructions)%20%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":18.59,"w":39.088999999999984,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense%20deduction.%20Add%20lines%209%20and%2010%2C%20but%20do%20not%20enter%20more%20than%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":18.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":19.34,"w":34.23,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20disallowed%20deduction%20to%202014.%20Add%20lines%209%20and%2010%2C%20less%20line%2012%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.602,"y":19.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.573,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.989,"y":20.09,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.803,"y":20.09,"w":32.41,"clr":-1,"A":"left","R":[{"T":"Do%20not%20use%20Part%20II%20or%20Part%20III%20below%20for%20listed%20property.%20Instead%2C%20use%20Part%20V.","S":3,"TS":[0,12,0,0]}]},{"x":6.59,"y":20.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":20.831,"w":30.73,"clr":-1,"A":"left","R":[{"T":"Special%20Depreciation%20Allowance%20and%20Other%20Depreciation%20(Do%20not%20%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":6.707,"y":21.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":21.54,"w":43.63199999999999,"clr":-1,"A":"left","R":[{"T":"Special%20depreciation%20allowance%20for%20qualified%20property%20(other%20than%20listed%20property)%20placed%20in%20service%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.73,"y":22.228,"w":16.465000000000003,"clr":-1,"A":"left","R":[{"T":"during%20the%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.881,"y":22.228,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":23.09,"w":19.947000000000006,"clr":-1,"A":"left","R":[{"T":"Property%20subject%20to%20section%20168(f)(1)%20election%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":23.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":23.84,"w":16.428,"clr":-1,"A":"left","R":[{"T":"Other%20depreciation%20(including%20ACRS)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":23.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"x":6.59,"y":24.573,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":24.573,"w":14.056000000000004,"clr":-1,"A":"left","R":[{"T":"MACRS%20Depreciation%20(Do%20not%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.808,"y":25.341,"w":4.612,"clr":-1,"A":"left","R":[{"T":"Section%20A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":26.092,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.092,"w":37.26499999999998,"clr":-1,"A":"left","R":[{"T":"MACRS%20deductions%20for%20assets%20placed%20in%20service%20in%20tax%20years%20beginning%20before%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.814,"y":26.092,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":26.091,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.732,"y":26.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.79,"w":44.968999999999966,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20electing%20to%20group%20any%20assets%20placed%20in%20service%20during%20the%20tax%20year%20into%20one%20or%20more%20general%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":27.488,"w":12.540000000000006,"clr":-1,"A":"left","R":[{"T":"asset%20accounts%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.691,"y":27.488,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":"......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.672,"y":27.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.177,"y":29.348,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":8.914,"y":29.348,"w":11.166,"clr":-1,"A":"left","R":[{"T":"Classification%20of%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.725,"y":28.823,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,8.95,1,0]}]},{"oc":"#221f1f","x":25.239,"y":28.823,"w":5.114,"clr":-1,"A":"left","R":[{"T":"%20Month%20and","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":30.753,"y":28.823,"w":1.9069999999999998,"clr":-1,"A":"left","R":[{"T":"year","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":25.988,"y":29.348,"w":4.353,"clr":-1,"A":"left","R":[{"T":"%20placed%20in","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":26.594,"y":29.873,"w":3.166,"clr":-1,"A":"left","R":[{"T":"service","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":34.719,"y":28.823,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,8.95,1,0]}]},{"oc":"#221f1f","x":36.195,"y":28.823,"w":10.036999999999999,"clr":-1,"A":"left","R":[{"T":"%20Basis%20for%20depreciation","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":34.944,"y":29.348,"w":11.318000000000003,"clr":-1,"A":"left","R":[{"T":"(business%2Finvestment%20use","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":35.4,"y":29.873,"w":10.149000000000001,"clr":-1,"A":"left","R":[{"T":"only%E2%80%94see%20instructions)","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":48.759,"y":29.086,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":50.541,"y":29.086,"w":4.481,"clr":-1,"A":"left","R":[{"T":"%20Recovery","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.63,"y":29.611,"w":2.852,"clr":-1,"A":"left","R":[{"T":"period","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.134,"y":29.348,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":59.872,"y":29.348,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"%20Convention","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.275,"y":29.348,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.723,"y":29.348,"w":3.724,"clr":-1,"A":"left","R":[{"T":"%20Method","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.377,"y":29.348,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.159,"y":29.348,"w":10.706,"clr":-1,"A":"left","R":[{"T":"%20Depreciation%20deduction","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.7,"y":30.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":30.59,"w":6.908,"clr":-1,"A":"left","R":[{"T":"3-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":31.340000000000003,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":31.340000000000003,"w":6.908,"clr":-1,"A":"left","R":[{"T":"5-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":32.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":32.09,"w":6.908,"clr":-1,"A":"left","R":[{"T":"7-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":32.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":32.84,"w":7.464,"clr":-1,"A":"left","R":[{"T":"10-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":33.59,"w":7.464,"clr":-1,"A":"left","R":[{"T":"15-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.793,"y":34.34,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":34.34,"w":7.464,"clr":-1,"A":"left","R":[{"T":"20-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":35.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":35.09,"w":7.464,"clr":-1,"A":"left","R":[{"T":"25-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.391,"y":35.79,"w":0.889,"clr":-1,"A":"left","R":[{"T":"h%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":35.79,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"Residential%20rental%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.996,"y":36.478,"w":3.778,"clr":-1,"A":"left","R":[{"T":"property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.909,"y":37.29,"w":0.556,"clr":-1,"A":"left","R":[{"T":"i%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":37.29,"w":8.611,"clr":-1,"A":"left","R":[{"T":"Nonresidential%20real%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.996,"y":37.978,"w":3.778,"clr":-1,"A":"left","R":[{"T":"property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.064,"y":38.84,"w":48.18399999999996,"clr":-1,"A":"left","R":[{"T":"Section%20C%20-%20Assets%20Placed%20in%20Service%20During%202013%20Tax%20Year%20Using%20the%20Alternative%20Depreciation%20System","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.7,"y":39.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"20a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":39.59,"w":4.036,"clr":-1,"A":"left","R":[{"T":"Class%20life","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":40.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":40.34,"w":3.4080000000000004,"clr":-1,"A":"left","R":[{"T":"12-year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":41.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":41.09,"w":3.4080000000000004,"clr":-1,"A":"left","R":[{"T":"40-year","S":3,"TS":[0,12,0,0]}]},{"x":6.637,"y":41.822,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":41.822,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"Summary%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":22.426,"y":41.822,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":42.59,"w":19.173000000000005,"clr":-1,"A":"left","R":[{"T":"Listed%20property.%20Enter%20amount%20from%20line%2028%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":42.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.99,"y":43.29,"w":39.72099999999999,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20from%20line%2012%2C%20lines%2014%20through%2017%2C%20lines%2019%20and%2020%20in%20column%20(g)%2C%20and%20line%2021.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.781,"y":43.29,"w":2.6300000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.719,"y":43.978,"w":44.395999999999965,"clr":-1,"A":"left","R":[{"T":"here%20and%20on%20the%20appropriate%20lines%20of%20your%20return.%20Partnerships%20and%20S%20corporations%E2%80%94see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.185,"y":43.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":44.791,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":44.791,"w":35.59799999999998,"clr":-1,"A":"left","R":[{"T":"For%20assets%20shown%20above%20and%20placed%20in%20service%20during%20the%20current%20year%2C%20enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.722,"y":45.478,"w":24.246000000000006,"clr":-1,"A":"left","R":[{"T":"portion%20of%20the%20basis%20attributable%20to%20section%20263A%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.248,"y":45.478,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.573,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.989,"y":46.358,"w":30.286000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.313,"y":46.376,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012906N","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.15,"y":46.322,"w":3.446,"clr":-1,"A":"left","R":[{"T":"%20%20%20Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":49.817,"y":35.051,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"25%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":35.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.115,"y":35.801,"w":3.7590000000000003,"clr":-1,"A":"left","R":[{"T":"27.5%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":35.801,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":35.801,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.115,"y":36.551,"w":3.7590000000000003,"clr":-1,"A":"left","R":[{"T":"27.5%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":36.551,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":36.551,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.817,"y":37.301,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"39%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":37.301,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":37.301,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":38.051,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":38.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":39.551,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.818,"y":40.301,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"12%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":40.301,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.818,"y":41.051,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"40%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.923,"y":41.051,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":41.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":64.009,"y":20.831,"w":18.74300000000001,"clr":-1,"A":"left","R":[{"T":"include%20listed%20property.)%20(See%20instructions.)","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":37.271,"y":24.573,"w":18.74300000000001,"clr":-1,"A":"left","R":[{"T":"include%20listed%20property.)%20(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":43.29,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":43.29,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Total.%20%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2575,"AM":1024,"x":6.188,"y":5.875,"w":37.125,"h":0.875,"TU":"Page 1. Name (or names) shown on return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUS","EN":0},"TI":2576,"AM":0,"x":43.313,"y":5.875,"w":39.6,"h":0.875,"TU":"Business or activity to which this form relates."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2577,"AM":1024,"x":82.912,"y":5.875,"w":16.088,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":2578,"AM":0,"x":86.625,"y":8.25,"w":12.375,"h":0.833,"TU":"Part 1. Election To Expense Certain Property Under Section 179. Note: If you have any listed property, complete Part 5 before you complete Part 1. Line 1. Maximum amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":2579,"AM":0,"x":86.625,"y":9,"w":12.375,"h":0.833,"TU":"Line 2. Total cost of section 179 property placed in service (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":2580,"AM":0,"x":86.625,"y":9.75,"w":12.375,"h":0.833,"TU":"Line 3. Threshold cost of section 179 property before reduction in limitation (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":2581,"AM":1024,"x":86.625,"y":10.5,"w":12.375,"h":0.833,"TU":"Line 4. Reduction in limitation. Subtract line 3 from line 2. If zero or less, enter zero. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":2582,"AM":0,"x":86.55,"y":12,"w":12.375,"h":0.833,"TU":"Line 5. Dollar limitation for tax year. Subtract line 4 from line 1. If zero or less, enter zero. If married filing separately, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6_L6A_1_","EN":0},"TI":2583,"AM":0,"x":6.208,"y":13.514,"w":41.869,"h":0.833,"TU":"Line 6. Item 1. (a) Description of property."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6B_1_","EN":0},"TI":2584,"AM":0,"x":48.283,"y":13.514,"w":17.119,"h":0.833,"TU":"Line 6. Item 1. (b) Cost (business use only). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6C_1_","EN":0},"TI":2585,"AM":0,"x":65.608,"y":13.514,"w":20.831,"h":0.833,"TU":"Line 6. Item 1. (c) Elected cost. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6_L6A_2_","EN":0},"TI":2586,"AM":0,"x":6.208,"y":14.264,"w":41.869,"h":0.833,"TU":"Line 6. Item 2. (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6B_2_","EN":0},"TI":2587,"AM":0,"x":48.283,"y":14.264,"w":17.119,"h":0.833,"TU":"Line 6. Item 2. (b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6C_2_","EN":0},"TI":2588,"AM":0,"x":65.608,"y":14.264,"w":20.831,"h":0.833,"TU":"Line 6. Item 2. (c). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":2589,"AM":1024,"x":65.588,"y":15,"w":20.831,"h":0.833,"TU":"Line 7. Listed property. Enter the amount from line 29."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":2590,"AM":1024,"x":86.625,"y":15.759,"w":12.375,"h":0.833,"TU":"Line 8. Total elected cost of section 179 property. Add amounts in column (c), lines 6 and 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2591,"AM":1024,"x":86.625,"y":16.5,"w":12.375,"h":0.833,"TU":"Line 9. Tentative deduction. Enter the smaller of line 5 or line 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2592,"AM":0,"x":86.625,"y":17.266,"w":12.375,"h":0.833,"TU":"Line 10. Carryover of disallowed deduction from line 13 of your 2012 Form 4562."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2593,"AM":0,"x":86.625,"y":18.019,"w":12.375,"h":0.833,"TU":"Line 11. Business income limitation. Enter the smaller of business income (not less than zero) or line 5 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2594,"AM":1024,"x":86.625,"y":18.75,"w":12.375,"h":0.833,"TU":"Line 12. Section 179 expense deduction. Add lines 9 and 10, but do not enter more than line 11."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2595,"AM":1024,"x":70.537,"y":19.5,"w":15.881,"h":0.833,"TU":"Line 13. Carryover of disallowed deduction to 2014. Add lines 9 and 10, less line 12. Note: Do not use Part 2 or Part 3 below for listed property. Instead, use Part 5. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BONUS14","EN":0},"TI":2596,"AM":0,"x":86.626,"y":22.5,"w":12.375,"h":0.833,"TU":"Part 2. Special Depreciation Allowance and Other Depreciation. (Do not include listed property.) (See instructions.) Line 14. Special depreciation allowance for qualified property (other than listed property) placed in service during the tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2597,"AM":0,"x":86.626,"y":23.25,"w":12.375,"h":0.833,"TU":"Line 15. Property subject to section 168(f)(1) election."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2598,"AM":0,"x":86.626,"y":24,"w":12.375,"h":0.833,"TU":"Line 16. Other depreciation (including A C R S)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2599,"AM":0,"x":86.625,"y":26.251,"w":12.375,"h":0.833,"TU":"Line 17. MACRS deductions for assets placed in service in tax years beginning before 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_1_","EN":0},"TI":2601,"AM":0,"x":33.34,"y":30.7,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_1_","EN":0},"TI":2602,"AM":0,"x":48.156,"y":30.705,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_1_","EN":0},"TI":2603,"AM":0,"x":56.973,"y":30.731,"w":10.575,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_1_","EN":0},"TI":2604,"AM":0,"x":68.389,"y":30.802,"w":13.879,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_1_","EN":0},"TI":2605,"AM":0,"x":82.84,"y":30.7,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_2_","EN":0},"TI":2606,"AM":0,"x":33.408,"y":31.495,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_2_","EN":0},"TI":2607,"AM":0,"x":48.193,"y":31.468,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_2_","EN":0},"TI":2608,"AM":0,"x":56.777,"y":31.45,"w":10.665,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_2_","EN":0},"TI":2609,"AM":0,"x":68.389,"y":31.502,"w":13.969,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_2_","EN":0},"TI":2610,"AM":0,"x":82.845,"y":31.495,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_3_","EN":0},"TI":2611,"AM":0,"x":33.374,"y":32.2,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_3_","EN":0},"TI":2612,"AM":0,"x":48.1,"y":32.203,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_3_","EN":0},"TI":2613,"AM":0,"x":56.875,"y":32.258,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_3_","EN":0},"TI":2614,"AM":0,"x":68.276,"y":32.227,"w":13.969,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_3_","EN":0},"TI":2615,"AM":0,"x":82.843,"y":32.159,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_4_","EN":0},"TI":2616,"AM":0,"x":33.441,"y":32.967,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_4_","EN":0},"TI":2617,"AM":0,"x":48.212,"y":32.938,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_4_","EN":0},"TI":2618,"AM":0,"x":56.855,"y":32.983,"w":10.846,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_4_","EN":0},"TI":2619,"AM":0,"x":68.361,"y":32.99,"w":13.879,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_4_","EN":0},"TI":2620,"AM":0,"x":82.847,"y":32.954,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_5_","EN":0},"TI":2621,"AM":0,"x":33.408,"y":33.671,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_5_","EN":0},"TI":2622,"AM":0,"x":48.229,"y":33.66,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_5_","EN":0},"TI":2623,"AM":0,"x":56.869,"y":33.72,"w":10.846,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_5_","EN":0},"TI":2624,"AM":0,"x":68.481,"y":33.805,"w":13.788,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_5_","EN":0},"TI":2625,"AM":0,"x":82.77,"y":33.768,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_6_","EN":0},"TI":2626,"AM":0,"x":33.374,"y":34.377,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_6_","EN":0},"TI":2627,"AM":0,"x":48.192,"y":34.422,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_6_","EN":0},"TI":2628,"AM":0,"x":56.968,"y":34.489,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_6_","EN":0},"TI":2629,"AM":0,"x":68.474,"y":34.497,"w":13.788,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_6_","EN":0},"TI":2630,"AM":0,"x":82.768,"y":34.432,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_7_","EN":0},"TI":2631,"AM":0,"x":33.441,"y":35.144,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_7_","EN":0},"TI":2632,"AM":0,"x":56.836,"y":35.242,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_7_","EN":0},"TI":2633,"AM":0,"x":82.772,"y":35.227,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B7_1_","EN":0},"TI":2634,"AM":0,"x":23.44,"y":35.95,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C7_1_","EN":0},"TI":2635,"AM":0,"x":33.31,"y":35.94,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G7_1_","EN":0},"TI":2636,"AM":0,"x":82.845,"y":35.932,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B7_2_","EN":0},"TI":2637,"AM":0,"x":23.455,"y":36.667,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C7_2_","EN":0},"TI":2638,"AM":0,"x":33.333,"y":36.667,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G7_2_","EN":0},"TI":2639,"AM":0,"x":82.77,"y":36.722,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B8_1_","EN":0},"TI":2640,"AM":0,"x":23.585,"y":37.441,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C8_1_","EN":0},"TI":2641,"AM":0,"x":33.313,"y":37.477,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G8_1_","EN":0},"TI":2642,"AM":0,"x":82.845,"y":37.484,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B8_2_","EN":0},"TI":2643,"AM":0,"x":23.53,"y":38.273,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C8_2_","EN":0},"TI":2644,"AM":0,"x":33.408,"y":38.246,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D8","EN":0},"TI":2645,"AM":0,"x":48.343,"y":38.219,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G8_2_","EN":0},"TI":2646,"AM":0,"x":82.845,"y":38.219,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_1_","EN":0},"TI":2647,"AM":0,"x":33.341,"y":39.7,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L15D1","EN":0},"TI":2648,"AM":0,"x":48.191,"y":39.7,"w":8.456,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15E_1_","EN":0},"TI":2649,"AM":0,"x":56.926,"y":39.798,"w":10.755,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_1_","EN":0},"TI":2650,"AM":0,"x":82.841,"y":39.7,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_2_","EN":0},"TI":2651,"AM":0,"x":33.408,"y":40.451,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15E_2_","EN":0},"TI":2652,"AM":0,"x":56.836,"y":40.487,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_2_","EN":0},"TI":2653,"AM":0,"x":82.994,"y":40.519,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L15B3","EN":0},"TI":2654,"AM":0,"x":23.66,"y":41.233,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_3_","EN":0},"TI":2655,"AM":0,"x":33.462,"y":41.206,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_3_","EN":0},"TI":2656,"AM":0,"x":82.974,"y":41.247,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2657,"AM":1024,"x":86.625,"y":42.75,"w":12.375,"h":0.833,"TU":"Part 4. Summary (see instructions). Line 21. Listed property. Enter amount from line 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2658,"AM":1024,"x":86.625,"y":44.25,"w":12.375,"h":0.833,"TU":"Line 22. Total. Add amounts from line 12, lines 14 through 17, lines 19 and 20 in column (g), and line 21. Enter here and on the appropriate lines of your return. Partnerships and S corporations - see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2659,"AM":0,"x":70.463,"y":45.75,"w":12.169,"h":0.833,"TU":"Line 23. For assets shown above and placed in service during the current year, enter the portion of the basis attributable to section 263 A costs."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GAAX","EN":0},"TI":2600,"AM":0,"x":79.2,"y":27.751,"w":1.375,"h":0.833}]}]},{"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.147,"y":6.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":92.882},{"oc":"#221f1f","x":58.165,"y":7.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":58.165,"y":6.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":7.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":9.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.19,"y":11.251,"w":0.75,"l":92.836},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":12.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.521,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.946,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":8.748},{"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":6.146,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.521,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.946,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":17.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.497,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":39.559,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.559,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.559,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":49.459,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":59.359,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":69.259,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":79.159,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":89.059,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":39.559,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.546,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.446,"y":27.755,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.396,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.346,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.296,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.246,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.196,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.096,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.046,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":93.996,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.159,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.296,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.146,"y":30.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":33.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":89.059,"y":33.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":33.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":34.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":34.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":36.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":36.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":36.754,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":36.754,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":38.254,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":38.254,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":39.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":39.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":39.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.147,"y":39.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.897,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":30.897,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.272,"y":40.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":43.272,"y":42.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.597,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.972,"y":40.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":72.972,"y":42.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":42.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":43.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":44.251,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.897,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":30.897,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.272,"y":43.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":43.272,"y":44.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.597,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.972,"y":43.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":72.972,"y":44.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":44.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":45.001,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.896,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.271,"y":45.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.596,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.971,"y":45.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.871,"y":45.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":92.899},{"oc":"#221f1f","x":-0.675,"y":49.5,"w":0.75,"l":1.35}],"VLines":[{"oc":"#221f1f","x":63.115,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.54,"y":6.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":58.165,"y":6.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":18.565,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":25.99,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":33.415,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":45.79,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":65.59,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":18.565,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":18.564,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.989,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":18.564,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.989,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":74.252,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":74.252,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":14.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":39.602,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.302,"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":89.102,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":39.602,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"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":79.202,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":69.302,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.102,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"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":89.102,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.589,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.489,"y":26.99,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.439,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.389,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.339,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.289,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.239,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.189,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.139,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.089,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.039,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":84.152,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"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":59.402,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.189,"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":89.102,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.052,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"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":64.339,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.189,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":34.486,"w":0.75,"l":1.534},{"oc":"#221f1f","x":94.052,"y":34.486,"w":0.75,"l":1.534},{"oc":"#221f1f","x":89.102,"y":35.985,"w":0.75,"l":0.784},{"oc":"#221f1f","x":94.052,"y":35.985,"w":0.75,"l":0.784},{"oc":"#221f1f","x":89.102,"y":36.736,"w":0.75,"l":1.534},{"oc":"#221f1f","x":94.052,"y":36.736,"w":0.75,"l":1.534},{"oc":"#221f1f","x":89.102,"y":38.235,"w":0.75,"l":0.784},{"oc":"#221f1f","x":94.052,"y":38.235,"w":0.75,"l":0.784},{"oc":"#221f1f","x":89.102,"y":38.986,"w":0.75,"l":0.784},{"oc":"#221f1f","x":30.94,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":43.315,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.64,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.015,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":30.94,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.939,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.314,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.639,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.014,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":45.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":45.736,"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.385,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":9.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":15.001,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":89.102,"y":39.001,"w":9.9,"h":0.753,"clr":-1},{"oc":"#221f1f","x":6.19,"y":39.751,"w":6.831,"h":0.75,"clr":-1},{"oc":"#221f1f","x":-0.761,"y":49.223,"w":1.522,"h":0.553,"clr":-1},{"oc":"#221f1f","x":0,"y":48.691,"w":8.504,"h":0.809,"clr":-1},{"x":0,"y":48.933,"w":1.447,"h":0.526,"clr":31},{"x":-0.723,"y":49.5,"w":1.447,"h":0.263,"clr":31},{"x":0,"y":48.933,"w":1.522,"h":0.553,"clr":31}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.126,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204562%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.802,"y":2.072,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.234,"y":2.072,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"x":6.649,"y":2.822,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.673,"y":2.822,"w":7.891000000000002,"clr":-1,"A":"left","R":[{"T":"Listed%20Property%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.682,"y":3.51,"w":18.728000000000005,"clr":-1,"A":"left","R":[{"T":"entertainment%2C%20recreation%2C%20or%20amusement.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":4.29,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.83,"y":4.29,"w":46.13599999999996,"clr":-1,"A":"left","R":[{"T":"For%20any%20vehicle%20for%20which%20you%20are%20using%20the%20standard%20mileage%20rate%20or%20deducting%20lease%20expense%2C%20complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.257,"y":4.29,"w":2.056,"clr":-1,"A":"left","R":[{"T":"only","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":86.682,"y":4.29,"w":2.1870000000000003,"clr":-1,"A":"left","R":[{"T":"24a%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.666,"y":4.978,"w":38.28600000000001,"clr":-1,"A":"left","R":[{"T":"24b%2C%20columns%20(a)%20through%20(c)%20of%20Section%20A%2C%20all%20of%20Section%20B%2C%20and%20Section%20C%20if%20applicable.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.192,"y":5.84,"w":27.558999999999994,"clr":-1,"A":"left","R":[{"T":"Section%20A%20-%20Depreciation%20and%20Other%20Information%20(Caution%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.082,"y":5.84,"w":25.278000000000006,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20for%20limits%20for%20passenger%20automobiles.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.528,"y":5.84,"w":0.296,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.732,"y":6.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"24a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":6.59,"w":32.158,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20the%20business%2Finvestment%20use%20claimed%3F","S":-1,"TS":[0,10.379999999999999,0,0]}]},{"oc":"#221f1f","x":55.027,"y":6.608,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.874,"y":6.608,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":6.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"24b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.815,"y":6.59,"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.1,0,0]}]},{"oc":"#221f1f","x":90.915,"y":6.608,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":95.864,"y":6.608,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":11.426,"y":7.448,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.59,"y":7.973000000000001,"w":9.203999999999999,"clr":-1,"A":"left","R":[{"T":"Type%20of%20property%20(list","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.63,"y":8.498,"w":5.814000000000001,"clr":-1,"A":"left","R":[{"T":"vehicles%20first)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.304,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":18.784,"y":7.973000000000001,"w":5.667999999999999,"clr":-1,"A":"left","R":[{"T":"Date%20placed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.487,"y":8.498,"w":0.778,"clr":-1,"A":"left","R":[{"T":"in","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.757,"y":8.498,"w":3.166,"clr":-1,"A":"left","R":[{"T":"service","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.821,"y":7.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":27.076,"y":7.711,"w":4.389,"clr":-1,"A":"left","R":[{"T":"Business%2F","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":25.791,"y":8.236,"w":4.891,"clr":-1,"A":"left","R":[{"T":"investment","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":31.388,"y":8.236,"w":1.593,"clr":-1,"A":"left","R":[{"T":"use","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":26.715,"y":8.761,"w":5.056,"clr":-1,"A":"left","R":[{"T":"percentage","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":38.629,"y":7.711,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":34.227,"y":8.236,"w":5.889000000000001,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.647,"y":8.236,"w":2.352,"clr":-1,"A":"left","R":[{"T":"basis","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.026,"y":7.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":45.857,"y":7.711,"w":9.759,"clr":-1,"A":"left","R":[{"T":"Basis%20for%20depreciation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.045,"y":8.236,"w":9.447000000000001,"clr":-1,"A":"left","R":[{"T":"(business%2Finvestment","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.332,"y":8.761,"w":3.982,"clr":-1,"A":"left","R":[{"T":"use%20only)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.071,"y":7.448,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":59.266,"y":7.973000000000001,"w":4.203,"clr":-1,"A":"left","R":[{"T":"Recovery","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.911,"y":8.498,"w":2.852,"clr":-1,"A":"left","R":[{"T":"period","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.947,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(g)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":67.398,"y":7.973000000000001,"w":3.779,"clr":-1,"A":"left","R":[{"T":"Method%2F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.595,"y":8.498,"w":5.112,"clr":-1,"A":"left","R":[{"T":"Convention","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.477,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(h)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":76.781,"y":7.973000000000001,"w":5.667000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.493,"y":8.498,"w":4.483,"clr":-1,"A":"left","R":[{"T":"deduction","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.053,"y":7.448,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(i)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":87.261,"y":7.973000000000001,"w":3.352,"clr":-1,"A":"left","R":[{"T":"Elected","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.629,"y":7.973000000000001,"w":5.186999999999999,"clr":-1,"A":"left","R":[{"T":"section%20179","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.406,"y":8.498,"w":1.9260000000000002,"clr":-1,"A":"left","R":[{"T":"cost","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.731,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":9.54,"w":37.334999999999994,"clr":-1,"A":"left","R":[{"T":"Special%20depreciation%20allowance%20for%20qualified%20listed%20property%20placed%20in%20service%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.743,"y":10.227,"w":37.58399999999998,"clr":-1,"A":"left","R":[{"T":"the%20tax%20%20year%20and%20used%20more%20than%2050%25%20in%20a%20qualified%20business%20use%20(see%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.286,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":11.09,"w":25.822000000000003,"clr":-1,"A":"left","R":[{"T":"Property%20used%20more%20than%2050%25%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":11.84,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":12.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":13.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":14.09,"w":24.227000000000004,"clr":-1,"A":"left","R":[{"T":"Property%20used%2050%25%20or%20less%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":14.84,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":14.801,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":31.618,"y":15.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":15.550999999999998,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":31.618,"y":16.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":16.301,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":6.731,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":17.09,"w":36.736999999999995,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(h)%2C%20lines%2025%20through%2027.%20Enter%20here%20and%20on%20line%2021%2C%20page%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.817,"y":17.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.286,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":17.84,"w":30.215,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(i)%2C%20line%2026.%20Enter%20here%20and%20on%20line%207%2C%20page%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.501,"y":17.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.709,"y":18.59,"w":20.17100000000001,"clr":-1,"A":"left","R":[{"T":"Section%20B%20-%20Information%20on%20Use%20of%20Vehicles","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":19.226,"w":56.11899999999992,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20section%20for%20vehicles%20used%20by%20a%20sole%20proprietor%2C%20partner%2C%20or%20other%20%E2%80%9Cmore%20than%205%25%20owner%2C%E2%80%9D%20or%20related%20person.%20If%20you","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":86.672,"y":19.226,"w":8.39,"clr":-1,"A":"left","R":[{"T":"%20provided%20vehicles%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.914,"w":56.361999999999945,"clr":-1,"A":"left","R":[{"T":"to%20your%20employees%2C%20first%20answer%20the%20questions%20in%20Section%20C%20to%20see%20if%20you%20meet%20an%20exception%20to%20completing%20this%20section%20for%20those","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":87.022,"y":19.914,"w":4.167,"clr":-1,"A":"left","R":[{"T":"%20vehicles.","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.54,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"30%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":21.54,"w":20.709,"clr":-1,"A":"left","R":[{"T":"Total%20business%2Finvestment%20miles%20driven%20during%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":9.649,"y":22.228,"w":4.13,"clr":-1,"A":"left","R":[{"T":"the%20year%20(","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":15.055,"y":22.228,"w":3.0549999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":19.31,"y":22.228,"w":11.968000000000002,"clr":-1,"A":"left","R":[{"T":"%20include%20commuting%20miles)%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":36.532,"y":22.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":43.601,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":41.862,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%201","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.479,"y":20.836,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.762,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%202","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.401,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":61.662,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%203","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.279,"y":20.836,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":71.562,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%204","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.201,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":81.462,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%205","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.246,"y":20.836,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":91.362,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%206","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.09,"w":20.153999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20commuting%20miles%20driven%20during%20the%20year","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.79,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"32%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.79,"w":16.745,"clr":-1,"A":"left","R":[{"T":"Total%20other%20personal%20(noncommuting)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":24.478,"w":5.631,"clr":-1,"A":"left","R":[{"T":"miles%20driven%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.378,"y":24.478,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"33%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":25.29,"w":17.504000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20miles%20driven%20during%20the%20year.%20Add%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":25.978,"w":8.837000000000002,"clr":-1,"A":"left","R":[{"T":"lines%2030%20through%2032%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":25.978,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.439,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.731,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.339,"y":26.75,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.618,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.239,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":65.518,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":70.139,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.418,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.039,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":85.318,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":89.939,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.218,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":26.79,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"34%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":26.79,"w":17.112000000000002,"clr":-1,"A":"left","R":[{"T":"Was%20the%20vehicle%20available%20for%20personal%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":27.478,"w":12.133000000000001,"clr":-1,"A":"left","R":[{"T":"use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.63,"y":27.478,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.681,"y":28.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"35%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.639,"y":28.29,"w":18.634,"clr":-1,"A":"left","R":[{"T":"Was%20the%20vehicle%20used%20primarily%20by%20a%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.636,"y":28.978,"w":15.576000000000006,"clr":-1,"A":"left","R":[{"T":"than%205%25%20owner%20or%20related%20person%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.812,"y":28.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.874,"y":28.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.681,"y":29.844,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.639,"y":29.844,"w":20.613000000000003,"clr":-1,"A":"left","R":[{"T":"Is%20another%20vehicle%20available%20for%20personal%20use%3F%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":20.339,"y":30.59,"w":41.567999999999984,"clr":-1,"A":"left","R":[{"T":"Section%20C%20-%20Questions%20for%20Employers%20Who%20Provide%20Vehicles%20for%20Use%20by%20Their%20Employees","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":31.29,"w":55.713999999999956,"clr":-1,"A":"left","R":[{"T":"Answer%20these%20questions%20to%20determine%20if%20you%20meet%20an%20exception%20to%20completing%20Section%20B%20for%20vehicles%20used%20by%20employees%20who%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.978,"w":26.42900000000001,"clr":-1,"A":"left","R":[{"T":"more%20than%205%25%20owners%20or%20related%20persons%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.732,"y":32.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":32.79,"w":49.38299999999998,"clr":-1,"A":"left","R":[{"T":"Do%20you%20maintain%20a%20written%20policy%20statement%20that%20prohibits%20all%20personal%20use%20of%20vehicles%2C%20including%20commuting%2C%20%20by","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.743,"y":33.478,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"your%20employees%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.445,"y":33.478,"w":42.65599999999997,"clr":-1,"A":"left","R":[{"T":"................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.952,"y":32.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.232,"y":32.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":34.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":34.29,"w":49.363999999999976,"clr":-1,"A":"left","R":[{"T":"Do%20you%20maintain%20a%20written%20policy%20statement%20that%20prohibits%20personal%20use%20of%20vehicles%2C%20except%20commuting%2C%20by%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.735,"y":34.978,"w":47.59699999999995,"clr":-1,"A":"left","R":[{"T":"employees%3F%20%20See%20the%20instructions%20for%20vehicles%20used%20by%20corporate%20officers%2C%20directors%2C%20or%201%25%20or%20more%20owners%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.315,"y":34.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.377,"y":34.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":35.84,"w":28.32,"clr":-1,"A":"left","R":[{"T":"Do%20you%20treat%20all%20use%20of%20vehicles%20by%20employees%20as%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.439,"y":35.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":36.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":36.54,"w":49.08599999999996,"clr":-1,"A":"left","R":[{"T":"Do%20you%20provide%20more%20than%20five%20vehicles%20to%20your%20employees%2C%20obtain%20information%20from%20your%20employees%20about%20%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.731,"y":37.228,"w":25.246000000000006,"clr":-1,"A":"left","R":[{"T":"use%20of%20the%20vehicles%2C%20and%20retain%20the%20information%20received%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.244,"y":37.228,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":38.09,"w":45.82699999999998,"clr":-1,"A":"left","R":[{"T":"Do%20you%20meet%20the%20requirements%20concerning%20qualified%20automobile%20demonstration%20use%3F%20(See%20instructions.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.254,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.316,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.378,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.739,"y":38.84,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.865,"y":38.84,"w":44.080999999999996,"clr":-1,"A":"left","R":[{"T":"If%20your%20answer%20to%2037%2C%2038%2C%2039%2C%2040%2C%20or%2041%20is%20%E2%80%9CYes%2C%E2%80%9D%20do%20not%20complete%20Section%20B%20for%20the%20covered%20vehicles.","S":3,"TS":[0,12,0,0]}]},{"x":6.618,"y":39.572,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20VI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":39.572,"w":6.111000000000001,"clr":-1,"A":"left","R":[{"T":"Amortization","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":17.613,"y":40.711,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":12.934,"y":41.236,"w":8.944999999999999,"clr":-1,"A":"left","R":[{"T":"Description%20of%20costs","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.154,"y":40.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":32.132,"y":40.973,"w":7.889000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20amortization","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.083,"y":41.498,"w":2.982,"clr":-1,"A":"left","R":[{"T":"begins","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.026,"y":40.711,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":46.324,"y":41.236,"w":5.314,"clr":-1,"A":"left","R":[{"T":"Amortizable","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.052,"y":41.236,"w":3.3910000000000005,"clr":-1,"A":"left","R":[{"T":"amount","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.854,"y":40.711,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":63.001,"y":41.236,"w":2.426,"clr":-1,"A":"left","R":[{"T":"Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.254,"y":41.236,"w":3.2409999999999997,"clr":-1,"A":"left","R":[{"T":"section","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.013,"y":40.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":74.329,"y":40.711,"w":5.6290000000000004,"clr":-1,"A":"left","R":[{"T":"Amortization","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.287,"y":41.236,"w":4.037,"clr":-1,"A":"left","R":[{"T":"period%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.673,"y":41.761,"w":5.056,"clr":-1,"A":"left","R":[{"T":"percentage","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.152,"y":40.711,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.992,"y":41.236,"w":7.11,"clr":-1,"A":"left","R":[{"T":"Amortization%20for","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.881,"y":41.236,"w":3.778,"clr":-1,"A":"left","R":[{"T":"this%20year","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.731,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":42.59,"w":34.541999999999994,"clr":-1,"A":"left","R":[{"T":"Amortization%20of%20costs%20that%20begins%20during%20your%202013%20tax%20year%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":44.84,"w":26.558999999999997,"clr":-1,"A":"left","R":[{"T":"Amortization%20of%20costs%20that%20began%20before%20your%202013%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":44.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.891,"y":45.59,"w":30.043000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(f).%20See%20the%20instructions%20for%20where%20to%20report%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":45.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.818,"y":2.822,"w":38.54499999999998,"clr":-1,"A":"left","R":[{"T":"(Include%20automobiles%2C%20certain%20other%20vehicles%2C%20certain%20computers%2C%20and%20property%20used%20for%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.731,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":45.59,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Total.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":83.241,"y":31.29,"w":3.3340000000000005,"clr":-1,"A":"left","R":[{"T":"not%20are","S":9,"TS":[0,12,1,0]}]},{"x":0.09399999999999997,"y":48.624,"w":46.68,"clr":0,"A":"left","R":[{"T":"S%2FL-PRE","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":86.335,"y":30.255,"w":2.056,"clr":-1,"A":"left","R":[{"T":"PRE","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2660,"AM":1024,"x":19.69,"y":2.125,"w":39.501,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2661,"AM":1024,"x":62.501,"y":2.079,"w":24.892,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BONUS25","EN":0},"TI":2666,"AM":0,"x":74.25,"y":10.5,"w":12.375,"h":0.833,"TU":"Line 25. Special depreciation allowance for qualified listed property placed in service during the tax year and used more than 50 percent in a qualified business use (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_1_","EN":0},"TI":2667,"AM":0,"x":6.089,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_1_","EN":0},"TI":2668,"AM":0,"x":18.464,"y":12.018,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_1_","EN":0},"TI":2669,"AM":0,"x":25.889,"y":12.018,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_1_","EN":0},"TI":2670,"AM":0,"x":33.314,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_1_","EN":0},"TI":2671,"AM":0,"x":45.689,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_1_","EN":0},"TI":2672,"AM":0,"x":58.064,"y":12.018,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_1_","EN":0},"TI":2673,"AM":0,"x":65.677,"y":11.989,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_1_","EN":0},"TI":2674,"AM":0,"x":74.151,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_1_","EN":0},"TI":2675,"AM":0,"x":86.526,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_2_","EN":0},"TI":2676,"AM":0,"x":6.089,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_2_","EN":0},"TI":2677,"AM":0,"x":18.349,"y":12.752,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_2_","EN":0},"TI":2678,"AM":0,"x":26.053,"y":12.779,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_2_","EN":0},"TI":2679,"AM":0,"x":33.265,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_2_","EN":0},"TI":2680,"AM":0,"x":45.64,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_2_","EN":0},"TI":2681,"AM":0,"x":58.015,"y":12.779,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_2_","EN":0},"TI":2682,"AM":0,"x":65.546,"y":12.798,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_2_","EN":0},"TI":2683,"AM":0,"x":74.103,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_2_","EN":0},"TI":2684,"AM":0,"x":86.478,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_3_","EN":0},"TI":2685,"AM":0,"x":6.121,"y":13.534,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_3_","EN":0},"TI":2686,"AM":0,"x":18.254,"y":13.534,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_3_","EN":0},"TI":2687,"AM":0,"x":26.108,"y":13.506,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_3_","EN":0},"TI":2688,"AM":0,"x":33.268,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_3_","EN":0},"TI":2689,"AM":0,"x":45.643,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_3_","EN":0},"TI":2690,"AM":0,"x":58.018,"y":13.506,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_3_","EN":0},"TI":2691,"AM":0,"x":65.549,"y":13.512,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_3_","EN":0},"TI":2692,"AM":0,"x":74.105,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_3_","EN":0},"TI":2693,"AM":0,"x":86.48,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_1_","EN":0},"TI":2694,"AM":0,"x":6.089,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_1_","EN":0},"TI":2695,"AM":0,"x":18.464,"y":15.018,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_1_","EN":0},"TI":2696,"AM":0,"x":25.889,"y":15.018,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_1_","EN":0},"TI":2697,"AM":0,"x":33.314,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_1_","EN":0},"TI":2698,"AM":0,"x":45.689,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_1_","EN":0},"TI":2699,"AM":0,"x":58.064,"y":15.018,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_1_","EN":0},"TI":2700,"AM":0,"x":69.674,"y":14.979,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_1_","EN":0},"TI":2701,"AM":0,"x":74.151,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_2_","EN":0},"TI":2702,"AM":0,"x":6.098,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_2_","EN":0},"TI":2703,"AM":0,"x":18.473,"y":15.773,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_2_","EN":0},"TI":2704,"AM":0,"x":25.898,"y":15.773,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_2_","EN":0},"TI":2705,"AM":0,"x":33.323,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_2_","EN":0},"TI":2706,"AM":0,"x":45.698,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_2_","EN":0},"TI":2707,"AM":0,"x":58.073,"y":15.773,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_2_","EN":0},"TI":2708,"AM":0,"x":69.674,"y":15.716,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_2_","EN":0},"TI":2709,"AM":0,"x":74.161,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_3_","EN":0},"TI":2710,"AM":0,"x":6.058,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_3_","EN":0},"TI":2711,"AM":0,"x":18.433,"y":16.513,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_3_","EN":0},"TI":2712,"AM":0,"x":25.858,"y":16.513,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_3_","EN":0},"TI":2713,"AM":0,"x":33.283,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_3_","EN":0},"TI":2714,"AM":0,"x":45.658,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_3_","EN":0},"TI":2715,"AM":0,"x":58.033,"y":16.513,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_3_","EN":0},"TI":2716,"AM":0,"x":69.63,"y":16.487,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_3_","EN":0},"TI":2717,"AM":0,"x":74.121,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":2718,"AM":1024,"x":74.25,"y":17.25,"w":12.375,"h":0.833,"TU":"Line 28. Add amounts in column (h), lines 25 through 27. Enter here and on line 21, page 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":2719,"AM":1024,"x":86.625,"y":18,"w":12.375,"h":0.833,"TU":"Line 29. Add amounts in column (i), line 26. Enter here and on line 7, page 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_1_","EN":0},"TI":2720,"AM":0,"x":39.499,"y":22.5,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_2_","EN":0},"TI":2721,"AM":0,"x":49.427,"y":22.553,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_3_","EN":0},"TI":2722,"AM":0,"x":59.214,"y":22.511,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_4_","EN":0},"TI":2723,"AM":0,"x":69.151,"y":22.468,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_5_","EN":0},"TI":2724,"AM":0,"x":79.013,"y":22.434,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_6_","EN":0},"TI":2725,"AM":0,"x":89.1,"y":22.454,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_1_","EN":0},"TI":2726,"AM":0,"x":39.499,"y":23.25,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_2_","EN":0},"TI":2727,"AM":0,"x":49.427,"y":23.303,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_3_","EN":0},"TI":2728,"AM":0,"x":59.214,"y":23.261,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_4_","EN":0},"TI":2729,"AM":0,"x":69.151,"y":23.218,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_5_","EN":0},"TI":2730,"AM":0,"x":79.013,"y":23.183,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_6_","EN":0},"TI":2731,"AM":0,"x":89.1,"y":23.203,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_1_","EN":0},"TI":2732,"AM":0,"x":39.568,"y":24.074,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_2_","EN":0},"TI":2733,"AM":0,"x":49.496,"y":24.064,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_3_","EN":0},"TI":2734,"AM":0,"x":59.283,"y":24.084,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_4_","EN":0},"TI":2735,"AM":0,"x":69.048,"y":24.042,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_5_","EN":0},"TI":2736,"AM":0,"x":78.91,"y":24.007,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_6_","EN":0},"TI":2737,"AM":0,"x":88.997,"y":24.027,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_1_","EN":0},"TI":2738,"AM":0,"x":39.499,"y":25.583,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_2_","EN":0},"TI":2739,"AM":0,"x":49.427,"y":25.574,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_3_","EN":0},"TI":2740,"AM":0,"x":59.214,"y":25.531,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_4_","EN":0},"TI":2741,"AM":0,"x":69.151,"y":25.551,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_5_","EN":0},"TI":2742,"AM":0,"x":79.013,"y":25.517,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_6_","EN":0},"TI":2743,"AM":0,"x":89.1,"y":25.537,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39A_1_","EN":0},"TI":2790,"AM":0,"x":6.06,"y":43.472,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L39_L39B_1_","EN":0},"TI":2791,"AM":0,"x":30.81,"y":43.472,"w":12.375,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39C_1_","EN":0},"TI":2792,"AM":0,"x":43.185,"y":43.472,"w":17.325,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39D_1_","EN":0},"TI":2793,"AM":0,"x":60.51,"y":43.472,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39E_1_","EN":0},"TI":2794,"AM":0,"x":72.885,"y":43.472,"w":5.333,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39E2_1_","EN":0},"TI":2795,"AM":0,"x":78.458,"y":43.467,"w":4.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39F_1_","EN":0},"TI":2796,"AM":0,"x":82.785,"y":43.472,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39A_2_","EN":0},"TI":2797,"AM":0,"x":6.193,"y":44.232,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L39_L39B_2_","EN":0},"TI":2798,"AM":0,"x":30.943,"y":44.232,"w":12.375,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39C_2_","EN":0},"TI":2799,"AM":0,"x":43.318,"y":44.232,"w":17.325,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39D_2_","EN":0},"TI":2800,"AM":0,"x":60.643,"y":44.232,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39E_2_","EN":0},"TI":2801,"AM":0,"x":73.018,"y":44.232,"w":5.333,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39E2_2_","EN":0},"TI":2802,"AM":0,"x":78.59,"y":44.227,"w":4.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39F_2_","EN":0},"TI":2803,"AM":0,"x":82.918,"y":44.232,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":2804,"AM":0,"x":82.912,"y":45,"w":16.088,"h":0.833,"TU":"Line 43. Amortization of costs that began before your 2013 tax year. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":2805,"AM":1024,"x":82.912,"y":45.75,"w":16.088,"h":0.833,"TU":"Line 44. Total. Add amounts in column (f). See the instructions for where to report. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22AY","EN":0},"TI":2662,"AM":0,"x":53.154,"y":6.681,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22AN","EN":0},"TI":2663,"AM":0,"x":58.083,"y":6.704,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L22ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22BY","EN":0},"TI":2664,"AM":0,"x":89.131,"y":6.669,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22BN","EN":0},"TI":2665,"AM":0,"x":94.017,"y":6.676,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L22BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2744,"AM":0,"x":41.59,"y":27.675,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2745,"AM":0,"x":46.482,"y":27.684,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2746,"AM":0,"x":51.445,"y":27.643,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2747,"AM":0,"x":56.336,"y":27.652,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2748,"AM":0,"x":61.415,"y":27.659,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2749,"AM":0,"x":66.307,"y":27.668,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2750,"AM":0,"x":71.27,"y":27.626,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2751,"AM":0,"x":76.161,"y":27.635,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2752,"AM":0,"x":80.86,"y":27.679,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2753,"AM":0,"x":85.752,"y":27.688,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2754,"AM":0,"x":90.715,"y":27.646,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2755,"AM":0,"x":95.606,"y":27.655,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2756,"AM":0,"x":41.54,"y":28.991,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2757,"AM":0,"x":46.482,"y":28.991,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2758,"AM":0,"x":51.395,"y":28.959,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2759,"AM":0,"x":56.336,"y":28.959,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2760,"AM":0,"x":61.366,"y":28.975,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2761,"AM":0,"x":66.307,"y":28.975,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2762,"AM":0,"x":71.221,"y":28.942,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2763,"AM":0,"x":76.161,"y":28.942,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2764,"AM":0,"x":80.81,"y":28.995,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2765,"AM":0,"x":85.752,"y":28.995,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2766,"AM":0,"x":90.665,"y":28.962,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2767,"AM":0,"x":95.606,"y":28.962,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":2768,"AM":0,"x":41.521,"y":29.937,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":2769,"AM":0,"x":46.556,"y":29.917,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":2770,"AM":0,"x":51.375,"y":29.904,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":2771,"AM":0,"x":56.411,"y":29.884,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":2772,"AM":0,"x":61.346,"y":29.92,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":2773,"AM":0,"x":66.382,"y":29.9,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":2774,"AM":0,"x":71.2,"y":29.888,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":2775,"AM":0,"x":76.236,"y":29.868,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":2776,"AM":0,"x":80.791,"y":29.94,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":2777,"AM":0,"x":85.826,"y":29.92,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":2778,"AM":0,"x":90.645,"y":29.908,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":2779,"AM":0,"x":95.681,"y":29.95,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34Y","EN":0},"TI":2780,"AM":0,"x":90.873,"y":33.764,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34N","EN":0},"TI":2781,"AM":0,"x":95.589,"y":33.736,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L34RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35Y","EN":0},"TI":2782,"AM":0,"x":91.153,"y":35.226,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35N","EN":0},"TI":2783,"AM":0,"x":95.664,"y":35.261,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L35RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L36Y","EN":0},"TI":2784,"AM":0,"x":91.247,"y":36.05,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L36N","EN":0},"TI":2785,"AM":0,"x":95.739,"y":36.023,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L36RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L37Y","EN":0},"TI":2786,"AM":0,"x":91.15,"y":37.52,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L37N","EN":0},"TI":2787,"AM":0,"x":95.57,"y":37.486,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L37RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L38Y","EN":0},"TI":2788,"AM":0,"x":91.3,"y":38.326,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L38N","EN":0},"TI":2789,"AM":0,"x":95.739,"y":38.31,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L38RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4562E.content.txt b/test/data/fd/form/F4562E.content.txt new file mode 100755 index 00000000..2e0f5f06 --- /dev/null +++ b/test/data/fd/form/F4562E.content.txt @@ -0,0 +1,434 @@ +Section B - Assets Placed in Service During 2013 Tax Year Using the General Depreciation System +Form +4562 +Department of the Treasury +Internal Revenue Service +(99) +Depreciation and Amortization +(Including Information on Listed Property) +a + +See separate instructions. + +a + +Attach to your tax return. +OMB No. 1545-0172 +20 +13 +Attachment +Sequence No. +179 +Name(s) shown on return +Business or activity to which this form relates +Identifying number +Part I +Election To Expense Certain Property Under Section 179 +Note: +If you have any listed property, complete Part V before you complete Part I. +1 +Maximum amount (see instructions) +....................... +1 +2 +Total cost of section 179 property placed in service (see instructions) +........... +2 +3 +Threshold cost of section 179 property before reduction in limitation (see instructions) +...... +3 +4 +Reduction in limitation. Subtract line 3 from line 2. If zero or less, enter -0- +.......... +4 +5 +Dollar limitation for tax year. Subtract line 4 from line 1. If zero or less, enter -0-. If married filing +separately, see instructions +......................... +5 +6 +(a) +Description of property +(b) +Cost (business use only) +(c) +Elected cost +7 +Listed property. Enter the amount from line 29 +......... +7 +8 +Total elected cost of section 179 property. Add amounts in column (c), lines 6 and 7 +...... +8 +9 +Tentative deduction. Enter the +smaller + of line 5 or line 8 +................ +9 +10 +Carryover of disallowed deduction from line 13 of your 2012 Form 4562 +........... +10 +11 +Business income limitation. Enter the smaller of business income (not less than zero) or line 5 (see instructions) +11 +12 +Section 179 expense deduction. Add lines 9 and 10, but do not enter more than line 11 +..... +12 +13 +Carryover of disallowed deduction to 2014. Add lines 9 and 10, less line 12 +a +13 +Note: +Do not use Part II or Part III below for listed property. Instead, use Part V. +Part II +Special Depreciation Allowance and Other Depreciation (Do not +14 +Special depreciation allowance for qualified property (other than listed property) placed in service +during the tax year (see instructions) +...................... +14 +15 +Property subject to section 168(f)(1) election +.................... +15 +16 +Other depreciation (including ACRS) +...................... +16 +Part III +MACRS Depreciation (Do not +Section A +17 +MACRS deductions for assets placed in service in tax years beginning before 2013 +....... +17 +18 +If you are electing to group any assets placed in service during the tax year into one or more general +asset accounts, check here +...................... +a + +(a) +Classification of property +(b) + Month and + +year + + placed in + + +service +(c) + Basis for depreciation + + +(business/investment use + +only—see instructions) +(d) + Recovery + +period +(e) + Convention +(f) + Method +(g) + Depreciation deduction +19a +3-year property +b +5-year property +c +7-year property +d +10-year property +e +15-year property +f +20-year property +g +25-year property +h +Residential rental +property + + +i +Nonresidential real +property + + +Section C - Assets Placed in Service During 2013 Tax Year Using the Alternative Depreciation System + + +20a +Class life +b +12-year +c +40-year +Part IV +Summary +(See instructions.) +21 +Listed property. Enter amount from line 28 +.................... +21 +Add amounts from line 12, lines 14 through 17, lines 19 and 20 in column (g), and line 21. + +Enter +here and on the appropriate lines of your return. Partnerships and S corporations—see instructions . +22 +23 +For assets shown above and placed in service during the current year, enter the +portion of the basis attributable to section 263A costs +....... +23 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 12906N + Form +4562 + (2013) +25 yrs. S/L +27.5 yrs. MM S/L +27.5 yrs. MM S/L +39 yrs. MM S/L +MM S/L +S/L +12 yrs. S/L +40 yrs. MM S/L +include listed property.) (See instructions.) +include listed property.) (See instructions.) +22 + +Total. +----------------Page (0) Break---------------- +Form 4562 (2013) +Page +2 +Part V +Listed Property + +entertainment, recreation, or amusement.) +Note: +For any vehicle for which you are using the standard mileage rate or deducting lease expense, complete + +only + +24a, +24b, columns (a) through (c) of Section A, all of Section B, and Section C if applicable. +Section A - Depreciation and Other Information (Caution: +See the instructions for limits for passenger automobiles. +) +24a +Do you have evidence to support the business/investment use claimed? +Yes +No +24b +If “Yes,” is the evidence written? +Yes +No +(a) +Type of property (list + +vehicles first) +(b) +Date placed +in + +service +(c) +Business/ + +investment + +use + +percentage +(d) +Cost or other + +basis +(e) +Basis for depreciation + +(business/investment + +use only) +(f) + +Recovery + +period +(g) +Method/ + +Convention +(h) +Depreciation + +deduction +(i) +Elected + +section 179 + +cost +25 +Special depreciation allowance for qualified listed property placed in service during +the tax year and used more than 50% in a qualified business use (see instructions) . +25 +26 +Property used more than 50% in a qualified business use: +% +% +% +27 +Property used 50% or less in a qualified business use: +% +S/L – +% +S/L – +% +S/L – +28 +Add amounts in column (h), lines 25 through 27. Enter here and on line 21, page 1 . +28 +29 +Add amounts in column (i), line 26. Enter here and on line 7, page 1 +............ +29 +Section B - Information on Use of Vehicles +Complete this section for vehicles used by a sole proprietor, partner, or other “more than 5% owner,” or related person. If you + provided vehicles +to your employees, first answer the questions in Section C to see if you meet an exception to completing this section for those + vehicles. + + + +30 +Total business/investment miles driven during +the year ( +do not + include commuting miles) . +(a) +Vehicle 1 +(b) +Vehicle 2 +(c) +Vehicle 3 +(d) +Vehicle 4 +(e) +Vehicle 5 +(f) +Vehicle 6 +31 +Total commuting miles driven during the year +32 +Total other personal (noncommuting) +miles driven +......... +33 +Total miles driven during the year. Add +lines 30 through 32 +....... + + +Yes +No +Yes +No +Yes +No +Yes +No +Yes +No +Yes +No +34 +Was the vehicle available for personal +use during off-duty hours? +..... +35 +Was the vehicle used primarily by a more +than 5% owner or related person? . . +36 +Is another vehicle available for personal use? +Section C - Questions for Employers Who Provide Vehicles for Use by Their Employees +Answer these questions to determine if you meet an exception to completing Section B for vehicles used by employees who + + +more than 5% owners or related persons (see instructions). +37 +Do you maintain a written policy statement that prohibits all personal use of vehicles, including commuting, by +your employees? +................................ +Yes +No +38 +Do you maintain a written policy statement that prohibits personal use of vehicles, except commuting, by your +employees? See the instructions for vehicles used by corporate officers, directors, or 1% or more owners . . +39 +Do you treat all use of vehicles by employees as personal use? +................ +40 +Do you provide more than five vehicles to your employees, obtain information from your employees about the +use of the vehicles, and retain the information received? +................... +41 +Do you meet the requirements concerning qualified automobile demonstration use? (See instructions.) . . . +Note: +If your answer to 37, 38, 39, 40, or 41 is “Yes,” do not complete Section B for the covered vehicles. +Part VI +Amortization +(a) +Description of costs +(b) +Date amortization + +begins +(c) +Amortizable + +amount +(d) +Code + +section +(e) +Amortization + +period or + +percentage +(f) +Amortization for + +this year +42 +Amortization of costs that begins during your 2013 tax year (see instructions): +43 +Amortization of costs that began before your 2013 tax year +............. +43 +Add amounts in column (f). See the instructions for where to report +........ +44 +Form +4562 + (2013) +(Include automobiles, certain other vehicles, certain computers, and property used for +44 + +Total. +not are +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F4562E.fields.json b/test/data/fd/form/F4562E.fields.json new file mode 100755 index 00000000..8284d3aa --- /dev/null +++ b/test/data/fd/form/F4562E.fields.json @@ -0,0 +1 @@ +[{"id":"GAAX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"BUS","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6_L6A_1_","type":"alpha","calc":false,"value":""},{"id":"L6_L6B_1_","type":"number","calc":false,"value":""},{"id":"L6_L6C_1_","type":"number","calc":false,"value":""},{"id":"L6_L6A_2_","type":"alpha","calc":false,"value":""},{"id":"L6_L6B_2_","type":"number","calc":false,"value":""},{"id":"L6_L6C_2_","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"BONUS14","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L14C_1_","type":"number","calc":false,"value":""},{"id":"L14D_1_","type":"mask","calc":false,"value":""},{"id":"L14E_1_","type":"alpha","calc":false,"value":""},{"id":"L14F_1_","type":"alpha","calc":false,"value":""},{"id":"L14G_1_","type":"number","calc":false,"value":""},{"id":"L14C_2_","type":"number","calc":false,"value":""},{"id":"L14D_2_","type":"mask","calc":false,"value":""},{"id":"L14E_2_","type":"alpha","calc":false,"value":""},{"id":"L14F_2_","type":"alpha","calc":false,"value":""},{"id":"L14G_2_","type":"number","calc":false,"value":""},{"id":"L14C_3_","type":"number","calc":false,"value":""},{"id":"L14D_3_","type":"mask","calc":false,"value":""},{"id":"L14E_3_","type":"alpha","calc":false,"value":""},{"id":"L14F_3_","type":"alpha","calc":false,"value":""},{"id":"L14G_3_","type":"number","calc":false,"value":""},{"id":"L14C_4_","type":"number","calc":false,"value":""},{"id":"L14D_4_","type":"mask","calc":false,"value":""},{"id":"L14E_4_","type":"alpha","calc":false,"value":""},{"id":"L14F_4_","type":"alpha","calc":false,"value":""},{"id":"L14G_4_","type":"number","calc":false,"value":""},{"id":"L14C_5_","type":"number","calc":false,"value":""},{"id":"L14D_5_","type":"mask","calc":false,"value":""},{"id":"L14E_5_","type":"alpha","calc":false,"value":""},{"id":"L14F_5_","type":"alpha","calc":false,"value":""},{"id":"L14G_5_","type":"number","calc":false,"value":""},{"id":"L14C_6_","type":"number","calc":false,"value":""},{"id":"L14D_6_","type":"mask","calc":false,"value":""},{"id":"L14E_6_","type":"alpha","calc":false,"value":""},{"id":"L14F_6_","type":"alpha","calc":false,"value":""},{"id":"L14G_6_","type":"number","calc":false,"value":""},{"id":"L14C_7_","type":"number","calc":false,"value":""},{"id":"L14E_7_","type":"alpha","calc":false,"value":""},{"id":"L14G_7_","type":"number","calc":false,"value":""},{"id":"L14B7_1_","type":"date","calc":false,"value":""},{"id":"L14C7_1_","type":"number","calc":false,"value":""},{"id":"L14G7_1_","type":"number","calc":false,"value":""},{"id":"L14B7_2_","type":"date","calc":false,"value":""},{"id":"L14C7_2_","type":"number","calc":false,"value":""},{"id":"L14G7_2_","type":"number","calc":false,"value":""},{"id":"L14B8_1_","type":"date","calc":false,"value":""},{"id":"L14C8_1_","type":"number","calc":false,"value":""},{"id":"L14G8_1_","type":"number","calc":false,"value":""},{"id":"L14B8_2_","type":"date","calc":false,"value":""},{"id":"L14C8_2_","type":"number","calc":false,"value":""},{"id":"L14D8","type":"mask","calc":false,"value":""},{"id":"L14G8_2_","type":"number","calc":false,"value":""},{"id":"L15C_1_","type":"number","calc":false,"value":""},{"id":"L15D1","type":"mask","calc":false,"value":""},{"id":"L15E_1_","type":"alpha","calc":false,"value":""},{"id":"L15G_1_","type":"number","calc":false,"value":""},{"id":"L15C_2_","type":"number","calc":false,"value":""},{"id":"L15E_2_","type":"alpha","calc":false,"value":""},{"id":"L15G_2_","type":"number","calc":false,"value":""},{"id":"L15B3","type":"date","calc":false,"value":""},{"id":"L15C_3_","type":"number","calc":false,"value":""},{"id":"L15G_3_","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22ARB","type":"radio","calc":false,"value":"L22AY"},{"id":"L22ARB","type":"radio","calc":false,"value":"L22AN"},{"id":"L22BRB","type":"radio","calc":false,"value":"L22BY"},{"id":"L22BRB","type":"radio","calc":false,"value":"L22BN"},{"id":"A251RB_1_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_1_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_2_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_2_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_3_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_3_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_4_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_4_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_5_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_5_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_6_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_6_","type":"radio","calc":false,"value":"L31N"},{"id":"A253RB_1_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_1_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_2_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_2_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_3_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_3_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_4_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_4_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_5_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_5_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_6_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_6_","type":"radio","calc":false,"value":"L32N"},{"id":"A254RB_1_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_1_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_2_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_2_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_3_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_3_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_4_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_4_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_5_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_5_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_6_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_6_","type":"radio","calc":false,"value":"L33N"},{"id":"L34RB","type":"radio","calc":false,"value":"L34Y"},{"id":"L34RB","type":"radio","calc":false,"value":"L34N"},{"id":"L35RB","type":"radio","calc":false,"value":"L35Y"},{"id":"L35RB","type":"radio","calc":false,"value":"L35N"},{"id":"L36RB","type":"radio","calc":false,"value":"L36Y"},{"id":"L36RB","type":"radio","calc":false,"value":"L36N"},{"id":"L37RB","type":"radio","calc":false,"value":"L37Y"},{"id":"L37RB","type":"radio","calc":false,"value":"L37N"},{"id":"L38RB","type":"radio","calc":false,"value":"L38Y"},{"id":"L38RB","type":"radio","calc":false,"value":"L38N"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"BONUS25","type":"number","calc":false,"value":""},{"id":"L23_L23A_1_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_1_","type":"date","calc":false,"value":""},{"id":"L23_L23C_1_","type":"number","calc":false,"value":""},{"id":"L23_L23D_1_","type":"number","calc":false,"value":""},{"id":"L23_L23E_1_","type":"number","calc":false,"value":""},{"id":"L23_L23F_1_","type":"number","calc":false,"value":""},{"id":"L23_L23G_1_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_1_","type":"number","calc":false,"value":""},{"id":"L23_L23I_1_","type":"number","calc":false,"value":""},{"id":"L23_L23A_2_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_2_","type":"date","calc":false,"value":""},{"id":"L23_L23C_2_","type":"number","calc":false,"value":""},{"id":"L23_L23D_2_","type":"number","calc":false,"value":""},{"id":"L23_L23E_2_","type":"number","calc":false,"value":""},{"id":"L23_L23F_2_","type":"number","calc":false,"value":""},{"id":"L23_L23G_2_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_2_","type":"number","calc":false,"value":""},{"id":"L23_L23I_2_","type":"number","calc":false,"value":""},{"id":"L23_L23A_3_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_3_","type":"date","calc":false,"value":""},{"id":"L23_L23C_3_","type":"number","calc":false,"value":""},{"id":"L23_L23D_3_","type":"number","calc":false,"value":""},{"id":"L23_L23E_3_","type":"number","calc":false,"value":""},{"id":"L23_L23F_3_","type":"number","calc":false,"value":""},{"id":"L23_L23G_3_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_3_","type":"number","calc":false,"value":""},{"id":"L23_L23I_3_","type":"number","calc":false,"value":""},{"id":"L24_L24A_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_1_","type":"date","calc":false,"value":""},{"id":"L24_L24C_1_","type":"number","calc":false,"value":""},{"id":"L24_L24D_1_","type":"number","calc":false,"value":""},{"id":"L24_L24E_1_","type":"number","calc":false,"value":""},{"id":"L24_L24F_1_","type":"number","calc":false,"value":""},{"id":"L24_L24G_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24A_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_2_","type":"date","calc":false,"value":""},{"id":"L24_L24C_2_","type":"number","calc":false,"value":""},{"id":"L24_L24D_2_","type":"number","calc":false,"value":""},{"id":"L24_L24E_2_","type":"number","calc":false,"value":""},{"id":"L24_L24F_2_","type":"number","calc":false,"value":""},{"id":"L24_L24G_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24A_3_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_3_","type":"date","calc":false,"value":""},{"id":"L24_L24C_3_","type":"number","calc":false,"value":""},{"id":"L24_L24D_3_","type":"number","calc":false,"value":""},{"id":"L24_L24E_3_","type":"number","calc":false,"value":""},{"id":"L24_L24F_3_","type":"number","calc":false,"value":""},{"id":"L24_L24G_3_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_3_","type":"alpha","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"MILES_L27_1_","type":"number","calc":false,"value":""},{"id":"MILES_L27_2_","type":"number","calc":false,"value":""},{"id":"MILES_L27_3_","type":"number","calc":false,"value":""},{"id":"MILES_L27_4_","type":"number","calc":false,"value":""},{"id":"MILES_L27_5_","type":"number","calc":false,"value":""},{"id":"MILES_L27_6_","type":"number","calc":false,"value":""},{"id":"MILES_L28_1_","type":"number","calc":false,"value":""},{"id":"MILES_L28_2_","type":"number","calc":false,"value":""},{"id":"MILES_L28_3_","type":"number","calc":false,"value":""},{"id":"MILES_L28_4_","type":"number","calc":false,"value":""},{"id":"MILES_L28_5_","type":"number","calc":false,"value":""},{"id":"MILES_L28_6_","type":"number","calc":false,"value":""},{"id":"MILES_L29_1_","type":"number","calc":false,"value":""},{"id":"MILES_L29_2_","type":"number","calc":false,"value":""},{"id":"MILES_L29_3_","type":"number","calc":false,"value":""},{"id":"MILES_L29_4_","type":"number","calc":false,"value":""},{"id":"MILES_L29_5_","type":"number","calc":false,"value":""},{"id":"MILES_L29_6_","type":"number","calc":false,"value":""},{"id":"MILES_L30_1_","type":"number","calc":false,"value":""},{"id":"MILES_L30_2_","type":"number","calc":false,"value":""},{"id":"MILES_L30_3_","type":"number","calc":false,"value":""},{"id":"MILES_L30_4_","type":"number","calc":false,"value":""},{"id":"MILES_L30_5_","type":"number","calc":false,"value":""},{"id":"MILES_L30_6_","type":"number","calc":false,"value":""},{"id":"L39_L39A_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39B_1_","type":"date","calc":false,"value":""},{"id":"L39_L39C_1_","type":"number","calc":false,"value":""},{"id":"L39_L39D_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39E_1_","type":"number","calc":false,"value":""},{"id":"L39_L39E2_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39F_1_","type":"number","calc":false,"value":""},{"id":"L39_L39A_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39B_2_","type":"date","calc":false,"value":""},{"id":"L39_L39C_2_","type":"number","calc":false,"value":""},{"id":"L39_L39D_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39E_2_","type":"number","calc":false,"value":""},{"id":"L39_L39E2_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39F_2_","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4562E.json b/test/data/fd/form/F4562E.json new file mode 100755 index 00000000..a3836792 --- /dev/null +++ b/test/data/fd/form/F4562E.json @@ -0,0 +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.133,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.266,"w":1.5,"l":63.178},{"oc":"#221f1f","x":84.066,"y":3.006,"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.2000000000000002,"l":37.211},{"oc":"#221f1f","x":43.272,"y":6.751,"w":1.2000000000000002,"l":39.686},{"oc":"#221f1f","x":82.872,"y":6.751,"w":1.2000000000000002,"l":16.173},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":10.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":11.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":42.161},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":12.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":48.222,"y":13.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":14.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":14.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":15.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":15.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":15.751,"w":1.125,"l":21.123},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":16.51,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.77,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":66.784,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.497,"y":19.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.196,"y":20.251,"w":0.75,"l":92.849},{"oc":"#221f1f","x":6.196,"y":21.001,"w":1.2000000000000002,"l":92.849},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.585,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.585,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":24.752,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":25.502,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.146,"y":26.252,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":27.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":7.384,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":23.471,"y":30.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":30.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":30.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":30.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":31.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":30.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":31.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":31.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":31.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":31.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":32.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":32.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":32.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":32.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":32.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":33.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":33.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":33.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":33.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":33.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":33.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":33.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":33.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":33.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":34.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":34.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":34.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":34.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":34.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":35.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":35.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":35.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":35.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":35.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":36.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":36.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":36.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":36.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":36.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":9.859,"y":37.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":36.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":36.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":36.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":36.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":36.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":36.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.471,"y":37.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":37.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":37.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":37.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":37.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":9.859,"y":39.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":38.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":38.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":38.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.471,"y":39.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":39.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":39.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":39.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":40.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":39.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":40.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":41.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":41.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":41.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":42.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":42.001,"w":1.2000000000000002,"l":9.986},{"oc":"#221f1f","x":33.372,"y":42.001,"w":1.2000000000000002,"l":14.936},{"oc":"#221f1f","x":48.222,"y":42.001,"w":1.2000000000000002,"l":8.748},{"oc":"#221f1f","x":56.884,"y":42.001,"w":1.2000000000000002,"l":11.223},{"oc":"#221f1f","x":68.022,"y":42.001,"w":1.2000000000000002,"l":14.936},{"oc":"#221f1f","x":82.872,"y":42.001,"w":1.2000000000000002,"l":16.173},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.784,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.497,"y":45.001,"w":0.75,"l":12.468},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.196,"y":46.501,"w":1.5,"l":43.349},{"oc":"#221f1f","x":49.459,"y":46.501,"w":1.5,"l":37.211},{"oc":"#221f1f","x":86.584,"y":46.501,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.643},{"oc":"#221f1f","x":21.026,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.152,"y":2.241,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":1.47},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":43.315,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":82.915,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":86.627,"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":86.627,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":86.627,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":65.59,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":86.627,"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":86.627,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":19.478,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":26.237,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.237,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.514,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":33.414,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.264,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.927,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.064,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.914,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":33.414,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.514,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"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":23.515,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":33.415,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":48.265,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":56.927,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":68.065,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":82.915,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.627,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"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":6.751,"w":5.792,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":12.751,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":19.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":21.001,"w":6.2,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.752,"w":6.707,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":27.001,"w":16.088,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":30.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":31.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":32.251,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":33.001,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":33.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":34.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":35.251,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.515,"y":39.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.515,"y":40.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":42.001,"w":6.868,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":45.001,"w":16.088,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":16.181,"y":28.251,"w":46.73999999999997,"clr":-1,"A":"left","R":[{"T":"Section%20B%20-%20Assets%20Placed%20in%20Service%20During%202013%20Tax%20Year%20Using%20the%20General%20Depreciation%20System","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.926,"y":3.8810000000000002,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.926,"y":4.376,"w":12.205000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":18.513,"y":4.376,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.032,"y":2.335,"w":15.058000000000003,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20Amortization%20%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":33.041,"y":3.2990000000000004,"w":20.002000000000002,"clr":-1,"A":"left","R":[{"T":"(Including%20Information%20on%20Listed%20Property)","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":29.935,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":31.253,"y":4.258,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.99,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":58.308,"y":4.258,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.979,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0172","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":86.308,"y":3.8760000000000003,"w":8.505000000000006,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.308,"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":94.286,"y":4.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"179","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.58,"y":5.001,"w":20.205000000000002,"clr":-1,"A":"left","R":[{"T":"Business%20or%20activity%20to%20which%20this%20form%20relates","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.18,"y":5.001,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.64,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":6.572,"w":27.453000000000003,"clr":-1,"A":"left","R":[{"T":"Election%20To%20Expense%20Certain%20Property%20Under%20Section%20179%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.674,"y":7.26,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":18.545,"y":7.26,"w":33.428999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20any%20listed%20property%2C%20complete%20Part%20V%20before%20you%20complete%20Part%20I.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":8.09,"w":16.191000000000003,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":8.09,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":8.84,"w":31.003999999999998,"clr":-1,"A":"left","R":[{"T":"Total%20cost%20of%20section%20179%20property%20placed%20in%20service%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":8.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":9.59,"w":38.45099999999999,"clr":-1,"A":"left","R":[{"T":"Threshold%20cost%20of%20section%20179%20property%20before%20reduction%20in%20limitation%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":9.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":10.34,"w":33.227999999999994,"clr":-1,"A":"left","R":[{"T":"Reduction%20in%20limitation.%20Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":10.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":11.04,"w":42.66999999999999,"clr":-1,"A":"left","R":[{"T":"Dollar%20limitation%20for%20tax%20year.%20Subtract%20line%204%20from%20line%201.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20married%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.714,"y":11.728,"w":12.483000000000002,"clr":-1,"A":"left","R":[{"T":"separately%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.677,"y":11.728,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.747,"y":12.473,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":21.819,"y":12.473,"w":10.297,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.079,"y":12.473,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.195,"y":12.473,"w":10.872000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20(business%20use%20only)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.48,"y":12.473,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.552,"y":12.473,"w":5.556,"clr":-1,"A":"left","R":[{"T":"Elected%20cost","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":14.84,"w":20.859000000000005,"clr":-1,"A":"left","R":[{"T":"Listed%20property.%20Enter%20the%20amount%20from%20line%2029%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":14.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":15.59,"w":37.67799999999998,"clr":-1,"A":"left","R":[{"T":"Total%20elected%20cost%20of%20section%20179%20property.%20Add%20amounts%20in%20column%20(c)%2C%20lines%206%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":15.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":16.34,"w":13.726000000000006,"clr":-1,"A":"left","R":[{"T":"Tentative%20deduction.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.65,"y":16.34,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.714,"y":16.34,"w":7.909000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%205%20or%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":16.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.09,"w":31.858000000000015,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20disallowed%20deduction%20from%20line%2013%20of%20your%202012%20Form%204562","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":17.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.84,"w":49.89799999999995,"clr":-1,"A":"left","R":[{"T":"Business%20income%20limitation.%20Enter%20the%20smaller%20of%20business%20income%20(not%20less%20than%20zero)%20or%20line%205%20(see%20instructions)%20%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":18.59,"w":39.088999999999984,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense%20deduction.%20Add%20lines%209%20and%2010%2C%20but%20do%20not%20enter%20more%20than%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":18.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":19.34,"w":34.23,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20disallowed%20deduction%20to%202014.%20Add%20lines%209%20and%2010%2C%20less%20line%2012%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.602,"y":19.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.573,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.989,"y":20.09,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.803,"y":20.09,"w":32.41,"clr":-1,"A":"left","R":[{"T":"Do%20not%20use%20Part%20II%20or%20Part%20III%20below%20for%20listed%20property.%20Instead%2C%20use%20Part%20V.","S":3,"TS":[0,12,0,0]}]},{"x":6.59,"y":20.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":20.831,"w":30.73,"clr":-1,"A":"left","R":[{"T":"Special%20Depreciation%20Allowance%20and%20Other%20Depreciation%20(Do%20not%20%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":6.707,"y":21.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":21.54,"w":43.63199999999999,"clr":-1,"A":"left","R":[{"T":"Special%20depreciation%20allowance%20for%20qualified%20property%20(other%20than%20listed%20property)%20placed%20in%20service%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.73,"y":22.228,"w":16.465000000000003,"clr":-1,"A":"left","R":[{"T":"during%20the%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.881,"y":22.228,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":23.09,"w":19.947000000000006,"clr":-1,"A":"left","R":[{"T":"Property%20subject%20to%20section%20168(f)(1)%20election%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":23.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":23.84,"w":16.428,"clr":-1,"A":"left","R":[{"T":"Other%20depreciation%20(including%20ACRS)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":23.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"x":6.59,"y":24.573,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":24.573,"w":14.056000000000004,"clr":-1,"A":"left","R":[{"T":"MACRS%20Depreciation%20(Do%20not%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.808,"y":25.341,"w":4.612,"clr":-1,"A":"left","R":[{"T":"Section%20A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":26.092,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.092,"w":37.26499999999998,"clr":-1,"A":"left","R":[{"T":"MACRS%20deductions%20for%20assets%20placed%20in%20service%20in%20tax%20years%20beginning%20before%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.814,"y":26.092,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":26.091,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.732,"y":26.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.79,"w":44.968999999999966,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20electing%20to%20group%20any%20assets%20placed%20in%20service%20during%20the%20tax%20year%20into%20one%20or%20more%20general%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":27.488,"w":12.540000000000006,"clr":-1,"A":"left","R":[{"T":"asset%20accounts%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.691,"y":27.488,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":"......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.672,"y":27.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.177,"y":29.348,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":8.914,"y":29.348,"w":11.166,"clr":-1,"A":"left","R":[{"T":"Classification%20of%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.725,"y":28.823,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,8.95,1,0]}]},{"oc":"#221f1f","x":25.239,"y":28.823,"w":5.114,"clr":-1,"A":"left","R":[{"T":"%20Month%20and","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":30.753,"y":28.823,"w":1.9069999999999998,"clr":-1,"A":"left","R":[{"T":"year","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":25.988,"y":29.348,"w":4.353,"clr":-1,"A":"left","R":[{"T":"%20placed%20in","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":26.594,"y":29.873,"w":3.166,"clr":-1,"A":"left","R":[{"T":"service","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":34.719,"y":28.823,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,8.95,1,0]}]},{"oc":"#221f1f","x":36.195,"y":28.823,"w":10.036999999999999,"clr":-1,"A":"left","R":[{"T":"%20Basis%20for%20depreciation","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":34.944,"y":29.348,"w":11.318000000000003,"clr":-1,"A":"left","R":[{"T":"(business%2Finvestment%20use","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":35.4,"y":29.873,"w":10.149000000000001,"clr":-1,"A":"left","R":[{"T":"only%E2%80%94see%20instructions)","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":48.759,"y":29.086,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":50.541,"y":29.086,"w":4.481,"clr":-1,"A":"left","R":[{"T":"%20Recovery","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.63,"y":29.611,"w":2.852,"clr":-1,"A":"left","R":[{"T":"period","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.134,"y":29.348,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":59.872,"y":29.348,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"%20Convention","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.275,"y":29.348,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.723,"y":29.348,"w":3.724,"clr":-1,"A":"left","R":[{"T":"%20Method","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.377,"y":29.348,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.159,"y":29.348,"w":10.706,"clr":-1,"A":"left","R":[{"T":"%20Depreciation%20deduction","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.7,"y":30.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":30.59,"w":6.908,"clr":-1,"A":"left","R":[{"T":"3-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":31.340000000000003,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":31.340000000000003,"w":6.908,"clr":-1,"A":"left","R":[{"T":"5-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":32.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":32.09,"w":6.908,"clr":-1,"A":"left","R":[{"T":"7-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":32.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":32.84,"w":7.464,"clr":-1,"A":"left","R":[{"T":"10-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":33.59,"w":7.464,"clr":-1,"A":"left","R":[{"T":"15-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.793,"y":34.34,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":34.34,"w":7.464,"clr":-1,"A":"left","R":[{"T":"20-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":35.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":35.09,"w":7.464,"clr":-1,"A":"left","R":[{"T":"25-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.391,"y":35.79,"w":0.889,"clr":-1,"A":"left","R":[{"T":"h%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":35.79,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"Residential%20rental%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.996,"y":36.478,"w":3.778,"clr":-1,"A":"left","R":[{"T":"property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.909,"y":37.29,"w":0.556,"clr":-1,"A":"left","R":[{"T":"i%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":37.29,"w":8.611,"clr":-1,"A":"left","R":[{"T":"Nonresidential%20real%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.996,"y":37.978,"w":3.778,"clr":-1,"A":"left","R":[{"T":"property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.064,"y":38.84,"w":48.18399999999996,"clr":-1,"A":"left","R":[{"T":"Section%20C%20-%20Assets%20Placed%20in%20Service%20During%202013%20Tax%20Year%20Using%20the%20Alternative%20Depreciation%20System","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.7,"y":39.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"20a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":39.59,"w":4.036,"clr":-1,"A":"left","R":[{"T":"Class%20life","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":40.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":40.34,"w":3.4080000000000004,"clr":-1,"A":"left","R":[{"T":"12-year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":41.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":41.09,"w":3.4080000000000004,"clr":-1,"A":"left","R":[{"T":"40-year","S":3,"TS":[0,12,0,0]}]},{"x":6.637,"y":41.822,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":41.822,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"Summary%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":22.426,"y":41.822,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":42.59,"w":19.173000000000005,"clr":-1,"A":"left","R":[{"T":"Listed%20property.%20Enter%20amount%20from%20line%2028%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":42.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.99,"y":43.29,"w":39.72099999999999,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20from%20line%2012%2C%20lines%2014%20through%2017%2C%20lines%2019%20and%2020%20in%20column%20(g)%2C%20and%20line%2021.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.781,"y":43.29,"w":2.6300000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.719,"y":43.978,"w":44.395999999999965,"clr":-1,"A":"left","R":[{"T":"here%20and%20on%20the%20appropriate%20lines%20of%20your%20return.%20Partnerships%20and%20S%20corporations%E2%80%94see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.185,"y":43.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":44.791,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":44.791,"w":35.59799999999998,"clr":-1,"A":"left","R":[{"T":"For%20assets%20shown%20above%20and%20placed%20in%20service%20during%20the%20current%20year%2C%20enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.722,"y":45.478,"w":24.246000000000006,"clr":-1,"A":"left","R":[{"T":"portion%20of%20the%20basis%20attributable%20to%20section%20263A%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.248,"y":45.478,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.573,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.989,"y":46.358,"w":30.286000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.313,"y":46.376,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012906N","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.15,"y":46.322,"w":3.446,"clr":-1,"A":"left","R":[{"T":"%20%20%20Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":49.817,"y":35.051,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"25%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":35.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.115,"y":35.801,"w":3.7590000000000003,"clr":-1,"A":"left","R":[{"T":"27.5%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":35.801,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":35.801,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.115,"y":36.551,"w":3.7590000000000003,"clr":-1,"A":"left","R":[{"T":"27.5%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":36.551,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":36.551,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.817,"y":37.301,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"39%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":37.301,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":37.301,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":38.051,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":38.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":39.551,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.818,"y":40.301,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"12%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":40.301,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.818,"y":41.051,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"40%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.923,"y":41.051,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":41.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":64.009,"y":20.831,"w":18.74300000000001,"clr":-1,"A":"left","R":[{"T":"include%20listed%20property.)%20(See%20instructions.)","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":37.271,"y":24.573,"w":18.74300000000001,"clr":-1,"A":"left","R":[{"T":"include%20listed%20property.)%20(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":43.29,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":43.29,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Total.%20%20","S":9,"TS":[0,12,1,0]}]},{"x":12.82,"y":42.498,"w":36.008,"clr":0,"A":"left","R":[{"T":"VARIOUS","S":-1,"TS":[0,76,1,0]}]},{"x":68.52,"y":42.498,"w":36.008,"clr":0,"A":"left","R":[{"T":"VARIOUS","S":-1,"TS":[0,76,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2806,"AM":1024,"x":6.188,"y":5.875,"w":37.125,"h":0.875,"TU":"Page 1. Name (or names) shown on return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUS","EN":0},"TI":2807,"AM":0,"x":43.313,"y":5.875,"w":39.6,"h":0.875,"TU":"Business or activity to which this form relates."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2808,"AM":1024,"x":82.912,"y":5.875,"w":16.088,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":2809,"AM":0,"x":86.625,"y":8.25,"w":12.375,"h":0.833,"TU":"Part 1. Election To Expense Certain Property Under Section 179. Note: If you have any listed property, complete Part 5 before you complete Part 1. Line 1. Maximum amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":2810,"AM":0,"x":86.625,"y":9,"w":12.375,"h":0.833,"TU":"Line 2. Total cost of section 179 property placed in service (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":2811,"AM":0,"x":86.625,"y":9.75,"w":12.375,"h":0.833,"TU":"Line 3. Threshold cost of section 179 property before reduction in limitation (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":2812,"AM":1024,"x":86.625,"y":10.5,"w":12.375,"h":0.833,"TU":"Line 4. Reduction in limitation. Subtract line 3 from line 2. If zero or less, enter zero. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":2813,"AM":0,"x":86.55,"y":12,"w":12.375,"h":0.833,"TU":"Line 5. Dollar limitation for tax year. Subtract line 4 from line 1. If zero or less, enter zero. If married filing separately, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6_L6A_1_","EN":0},"TI":2814,"AM":0,"x":6.208,"y":13.514,"w":41.869,"h":0.833,"TU":"Line 6. Item 1. (a) Description of property."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6B_1_","EN":0},"TI":2815,"AM":0,"x":48.283,"y":13.514,"w":17.119,"h":0.833,"TU":"Line 6. Item 1. (b) Cost (business use only). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6C_1_","EN":0},"TI":2816,"AM":0,"x":65.608,"y":13.514,"w":20.831,"h":0.833,"TU":"Line 6. Item 1. (c) Elected cost. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6_L6A_2_","EN":0},"TI":2817,"AM":0,"x":6.208,"y":14.264,"w":41.869,"h":0.833,"TU":"Line 6. Item 2. (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6B_2_","EN":0},"TI":2818,"AM":0,"x":48.283,"y":14.264,"w":17.119,"h":0.833,"TU":"Line 6. Item 2. (b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6C_2_","EN":0},"TI":2819,"AM":0,"x":65.608,"y":14.264,"w":20.831,"h":0.833,"TU":"Line 6. Item 2. (c). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":2820,"AM":1024,"x":65.588,"y":15,"w":20.831,"h":0.833,"TU":"Line 7. Listed property. Enter the amount from line 29."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":2821,"AM":1024,"x":86.625,"y":15.759,"w":12.375,"h":0.833,"TU":"Line 8. Total elected cost of section 179 property. Add amounts in column (c), lines 6 and 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2822,"AM":1024,"x":86.625,"y":16.5,"w":12.375,"h":0.833,"TU":"Line 9. Tentative deduction. Enter the smaller of line 5 or line 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2823,"AM":0,"x":86.625,"y":17.266,"w":12.375,"h":0.833,"TU":"Line 10. Carryover of disallowed deduction from line 13 of your 2012 Form 4562."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2824,"AM":0,"x":86.625,"y":18.019,"w":12.375,"h":0.833,"TU":"Line 11. Business income limitation. Enter the smaller of business income (not less than zero) or line 5 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2825,"AM":1024,"x":86.625,"y":18.75,"w":12.375,"h":0.833,"TU":"Line 12. Section 179 expense deduction. Add lines 9 and 10, but do not enter more than line 11."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2826,"AM":1024,"x":70.537,"y":19.5,"w":15.881,"h":0.833,"TU":"Line 13. Carryover of disallowed deduction to 2014. Add lines 9 and 10, less line 12. Note: Do not use Part 2 or Part 3 below for listed property. Instead, use Part 5. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BONUS14","EN":0},"TI":2827,"AM":0,"x":86.626,"y":22.5,"w":12.375,"h":0.833,"TU":"Part 2. Special Depreciation Allowance and Other Depreciation. (Do not include listed property.) (See instructions.) Line 14. Special depreciation allowance for qualified property (other than listed property) placed in service during the tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2828,"AM":0,"x":86.626,"y":23.25,"w":12.375,"h":0.833,"TU":"Line 15. Property subject to section 168(f)(1) election."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2829,"AM":0,"x":86.626,"y":24,"w":12.375,"h":0.833,"TU":"Line 16. Other depreciation (including A C R S)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2830,"AM":0,"x":86.625,"y":26.251,"w":12.375,"h":0.833,"TU":"Line 17. MACRS deductions for assets placed in service in tax years beginning before 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_1_","EN":0},"TI":2832,"AM":0,"x":33.34,"y":30.7,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_1_","EN":0},"TI":2833,"AM":0,"x":48.156,"y":30.705,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_1_","EN":0},"TI":2834,"AM":0,"x":56.973,"y":30.731,"w":10.575,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_1_","EN":0},"TI":2835,"AM":0,"x":68.389,"y":30.802,"w":13.879,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_1_","EN":0},"TI":2836,"AM":0,"x":82.84,"y":30.7,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_2_","EN":0},"TI":2837,"AM":0,"x":33.408,"y":31.495,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_2_","EN":0},"TI":2838,"AM":0,"x":48.193,"y":31.468,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_2_","EN":0},"TI":2839,"AM":0,"x":56.777,"y":31.45,"w":10.665,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_2_","EN":0},"TI":2840,"AM":0,"x":68.389,"y":31.502,"w":13.969,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_2_","EN":0},"TI":2841,"AM":0,"x":82.845,"y":31.495,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_3_","EN":0},"TI":2842,"AM":0,"x":33.374,"y":32.2,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_3_","EN":0},"TI":2843,"AM":0,"x":48.1,"y":32.203,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_3_","EN":0},"TI":2844,"AM":0,"x":56.875,"y":32.258,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_3_","EN":0},"TI":2845,"AM":0,"x":68.276,"y":32.227,"w":13.969,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_3_","EN":0},"TI":2846,"AM":0,"x":82.843,"y":32.159,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_4_","EN":0},"TI":2847,"AM":0,"x":33.441,"y":32.967,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_4_","EN":0},"TI":2848,"AM":0,"x":48.212,"y":32.938,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_4_","EN":0},"TI":2849,"AM":0,"x":56.855,"y":32.983,"w":10.846,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_4_","EN":0},"TI":2850,"AM":0,"x":68.361,"y":32.99,"w":13.879,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_4_","EN":0},"TI":2851,"AM":0,"x":82.847,"y":32.954,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_5_","EN":0},"TI":2852,"AM":0,"x":33.408,"y":33.671,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_5_","EN":0},"TI":2853,"AM":0,"x":48.229,"y":33.66,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_5_","EN":0},"TI":2854,"AM":0,"x":56.869,"y":33.72,"w":10.846,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_5_","EN":0},"TI":2855,"AM":0,"x":68.481,"y":33.805,"w":13.788,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_5_","EN":0},"TI":2856,"AM":0,"x":82.77,"y":33.768,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_6_","EN":0},"TI":2857,"AM":0,"x":33.374,"y":34.377,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_6_","EN":0},"TI":2858,"AM":0,"x":48.192,"y":34.422,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_6_","EN":0},"TI":2859,"AM":0,"x":56.968,"y":34.489,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_6_","EN":0},"TI":2860,"AM":0,"x":68.474,"y":34.497,"w":13.788,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_6_","EN":0},"TI":2861,"AM":0,"x":82.768,"y":34.432,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_7_","EN":0},"TI":2862,"AM":0,"x":33.441,"y":35.144,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_7_","EN":0},"TI":2863,"AM":0,"x":56.836,"y":35.242,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_7_","EN":0},"TI":2864,"AM":0,"x":82.772,"y":35.227,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B7_1_","EN":0},"TI":2865,"AM":0,"x":23.44,"y":35.95,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C7_1_","EN":0},"TI":2866,"AM":0,"x":33.31,"y":35.94,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G7_1_","EN":0},"TI":2867,"AM":0,"x":82.845,"y":35.932,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B7_2_","EN":0},"TI":2868,"AM":0,"x":23.455,"y":36.667,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C7_2_","EN":0},"TI":2869,"AM":0,"x":33.333,"y":36.667,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G7_2_","EN":0},"TI":2870,"AM":0,"x":82.77,"y":36.722,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B8_1_","EN":0},"TI":2871,"AM":0,"x":23.585,"y":37.441,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C8_1_","EN":0},"TI":2872,"AM":0,"x":33.313,"y":37.477,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G8_1_","EN":0},"TI":2873,"AM":0,"x":82.845,"y":37.484,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B8_2_","EN":0},"TI":2874,"AM":0,"x":23.53,"y":38.273,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C8_2_","EN":0},"TI":2875,"AM":0,"x":33.408,"y":38.246,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D8","EN":0},"TI":2876,"AM":0,"x":48.343,"y":38.219,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G8_2_","EN":0},"TI":2877,"AM":0,"x":82.845,"y":38.219,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_1_","EN":0},"TI":2878,"AM":0,"x":33.341,"y":39.7,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L15D1","EN":0},"TI":2879,"AM":0,"x":48.191,"y":39.7,"w":8.456,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15E_1_","EN":0},"TI":2880,"AM":0,"x":56.926,"y":39.798,"w":10.755,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_1_","EN":0},"TI":2881,"AM":0,"x":82.841,"y":39.7,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_2_","EN":0},"TI":2882,"AM":0,"x":33.408,"y":40.451,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15E_2_","EN":0},"TI":2883,"AM":0,"x":56.836,"y":40.487,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_2_","EN":0},"TI":2884,"AM":0,"x":82.994,"y":40.519,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L15B3","EN":0},"TI":2885,"AM":0,"x":23.66,"y":41.233,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_3_","EN":0},"TI":2886,"AM":0,"x":33.462,"y":41.206,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_3_","EN":0},"TI":2887,"AM":0,"x":82.974,"y":41.247,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2888,"AM":1024,"x":86.625,"y":42.75,"w":12.375,"h":0.833,"TU":"Part 4. Summary (see instructions). Line 21. Listed property. Enter amount from line 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2889,"AM":1024,"x":86.625,"y":44.25,"w":12.375,"h":0.833,"TU":"Line 22. Total. Add amounts from line 12, lines 14 through 17, lines 19 and 20 in column (g), and line 21. Enter here and on the appropriate lines of your return. Partnerships and S corporations - see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2890,"AM":0,"x":70.463,"y":45.75,"w":12.169,"h":0.833,"TU":"Line 23. For assets shown above and placed in service during the current year, enter the portion of the basis attributable to section 263 A costs."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GAAX","EN":0},"TI":2831,"AM":0,"x":79.2,"y":27.751,"w":1.375,"h":0.833}]}]},{"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.147,"y":6.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":92.882},{"oc":"#221f1f","x":58.165,"y":7.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":58.165,"y":6.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":7.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":9.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.19,"y":11.251,"w":0.75,"l":92.836},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":12.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.521,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.946,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":8.748},{"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":6.146,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.521,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.946,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":17.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.497,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":39.559,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.559,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.559,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":49.459,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":59.359,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":69.259,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":79.159,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":89.059,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":39.559,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.546,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.446,"y":27.755,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.396,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.346,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.296,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.246,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.196,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.096,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.046,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":93.996,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.159,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.296,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.146,"y":30.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":33.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":89.059,"y":33.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":33.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":34.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":34.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":36.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":36.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":36.754,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":36.754,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":38.254,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":38.254,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":39.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":39.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":39.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.147,"y":39.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.897,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":30.897,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.272,"y":40.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":43.272,"y":42.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.597,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.972,"y":40.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":72.972,"y":42.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":42.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":43.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":44.251,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.897,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":30.897,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.272,"y":43.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":43.272,"y":44.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.597,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.972,"y":43.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":72.972,"y":44.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":44.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":45.001,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.896,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.271,"y":45.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.596,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.971,"y":45.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.871,"y":45.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":92.899},{"oc":"#221f1f","x":-0.675,"y":49.5,"w":0.75,"l":1.35}],"VLines":[{"oc":"#221f1f","x":63.115,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.54,"y":6.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":58.165,"y":6.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":18.565,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":25.99,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":33.415,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":45.79,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":65.59,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":18.565,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":18.564,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.989,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":18.564,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.989,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":74.252,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":74.252,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":14.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":39.602,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.302,"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":89.102,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":39.602,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"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":79.202,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":69.302,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.102,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"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":89.102,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.589,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.489,"y":26.99,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.439,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.389,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.339,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.289,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.239,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.189,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.139,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.089,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.039,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":84.152,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"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":59.402,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.189,"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":89.102,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.052,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"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":64.339,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.189,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":34.486,"w":0.75,"l":1.534},{"oc":"#221f1f","x":94.052,"y":34.486,"w":0.75,"l":1.534},{"oc":"#221f1f","x":89.102,"y":35.985,"w":0.75,"l":0.784},{"oc":"#221f1f","x":94.052,"y":35.985,"w":0.75,"l":0.784},{"oc":"#221f1f","x":89.102,"y":36.736,"w":0.75,"l":1.534},{"oc":"#221f1f","x":94.052,"y":36.736,"w":0.75,"l":1.534},{"oc":"#221f1f","x":89.102,"y":38.235,"w":0.75,"l":0.784},{"oc":"#221f1f","x":94.052,"y":38.235,"w":0.75,"l":0.784},{"oc":"#221f1f","x":89.102,"y":38.986,"w":0.75,"l":0.784},{"oc":"#221f1f","x":30.94,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":43.315,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.64,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.015,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":30.94,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.939,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.314,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.639,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.014,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":45.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":45.736,"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.385,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":9.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":15.001,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":89.102,"y":39.001,"w":9.9,"h":0.753,"clr":-1},{"oc":"#221f1f","x":6.19,"y":39.751,"w":6.831,"h":0.75,"clr":-1},{"oc":"#221f1f","x":-0.761,"y":49.223,"w":1.522,"h":0.553,"clr":-1},{"oc":"#221f1f","x":0,"y":48.691,"w":8.504,"h":0.809,"clr":-1},{"x":0,"y":48.933,"w":1.447,"h":0.526,"clr":31},{"x":-0.723,"y":49.5,"w":1.447,"h":0.263,"clr":31},{"x":0,"y":48.933,"w":1.522,"h":0.553,"clr":31}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.126,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204562%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.802,"y":2.072,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.234,"y":2.072,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"x":6.649,"y":2.822,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.673,"y":2.822,"w":7.891000000000002,"clr":-1,"A":"left","R":[{"T":"Listed%20Property%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.682,"y":3.51,"w":18.728000000000005,"clr":-1,"A":"left","R":[{"T":"entertainment%2C%20recreation%2C%20or%20amusement.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":4.29,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.83,"y":4.29,"w":46.13599999999996,"clr":-1,"A":"left","R":[{"T":"For%20any%20vehicle%20for%20which%20you%20are%20using%20the%20standard%20mileage%20rate%20or%20deducting%20lease%20expense%2C%20complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.257,"y":4.29,"w":2.056,"clr":-1,"A":"left","R":[{"T":"only","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":86.682,"y":4.29,"w":2.1870000000000003,"clr":-1,"A":"left","R":[{"T":"24a%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.666,"y":4.978,"w":38.28600000000001,"clr":-1,"A":"left","R":[{"T":"24b%2C%20columns%20(a)%20through%20(c)%20of%20Section%20A%2C%20all%20of%20Section%20B%2C%20and%20Section%20C%20if%20applicable.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.192,"y":5.84,"w":27.558999999999994,"clr":-1,"A":"left","R":[{"T":"Section%20A%20-%20Depreciation%20and%20Other%20Information%20(Caution%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.082,"y":5.84,"w":25.278000000000006,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20for%20limits%20for%20passenger%20automobiles.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.528,"y":5.84,"w":0.296,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.732,"y":6.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"24a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":6.59,"w":32.158,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20the%20business%2Finvestment%20use%20claimed%3F","S":-1,"TS":[0,10.379999999999999,0,0]}]},{"oc":"#221f1f","x":55.027,"y":6.608,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.874,"y":6.608,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":6.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"24b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.815,"y":6.59,"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.1,0,0]}]},{"oc":"#221f1f","x":90.915,"y":6.608,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":95.864,"y":6.608,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":11.426,"y":7.448,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.59,"y":7.973000000000001,"w":9.203999999999999,"clr":-1,"A":"left","R":[{"T":"Type%20of%20property%20(list","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.63,"y":8.498,"w":5.814000000000001,"clr":-1,"A":"left","R":[{"T":"vehicles%20first)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.304,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":18.784,"y":7.973000000000001,"w":5.667999999999999,"clr":-1,"A":"left","R":[{"T":"Date%20placed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.487,"y":8.498,"w":0.778,"clr":-1,"A":"left","R":[{"T":"in","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.757,"y":8.498,"w":3.166,"clr":-1,"A":"left","R":[{"T":"service","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.821,"y":7.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":27.076,"y":7.711,"w":4.389,"clr":-1,"A":"left","R":[{"T":"Business%2F","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":25.791,"y":8.236,"w":4.891,"clr":-1,"A":"left","R":[{"T":"investment","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":31.388,"y":8.236,"w":1.593,"clr":-1,"A":"left","R":[{"T":"use","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":26.715,"y":8.761,"w":5.056,"clr":-1,"A":"left","R":[{"T":"percentage","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":38.629,"y":7.711,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":34.227,"y":8.236,"w":5.889000000000001,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.647,"y":8.236,"w":2.352,"clr":-1,"A":"left","R":[{"T":"basis","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.026,"y":7.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":45.857,"y":7.711,"w":9.759,"clr":-1,"A":"left","R":[{"T":"Basis%20for%20depreciation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.045,"y":8.236,"w":9.447000000000001,"clr":-1,"A":"left","R":[{"T":"(business%2Finvestment","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.332,"y":8.761,"w":3.982,"clr":-1,"A":"left","R":[{"T":"use%20only)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.071,"y":7.448,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":59.266,"y":7.973000000000001,"w":4.203,"clr":-1,"A":"left","R":[{"T":"Recovery","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.911,"y":8.498,"w":2.852,"clr":-1,"A":"left","R":[{"T":"period","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.947,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(g)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":67.398,"y":7.973000000000001,"w":3.779,"clr":-1,"A":"left","R":[{"T":"Method%2F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.595,"y":8.498,"w":5.112,"clr":-1,"A":"left","R":[{"T":"Convention","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.477,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(h)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":76.781,"y":7.973000000000001,"w":5.667000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.493,"y":8.498,"w":4.483,"clr":-1,"A":"left","R":[{"T":"deduction","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.053,"y":7.448,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(i)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":87.261,"y":7.973000000000001,"w":3.352,"clr":-1,"A":"left","R":[{"T":"Elected","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.629,"y":7.973000000000001,"w":5.186999999999999,"clr":-1,"A":"left","R":[{"T":"section%20179","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.406,"y":8.498,"w":1.9260000000000002,"clr":-1,"A":"left","R":[{"T":"cost","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.731,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":9.54,"w":37.334999999999994,"clr":-1,"A":"left","R":[{"T":"Special%20depreciation%20allowance%20for%20qualified%20listed%20property%20placed%20in%20service%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.743,"y":10.227,"w":37.58399999999998,"clr":-1,"A":"left","R":[{"T":"the%20tax%20%20year%20and%20used%20more%20than%2050%25%20in%20a%20qualified%20business%20use%20(see%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.286,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":11.09,"w":25.822000000000003,"clr":-1,"A":"left","R":[{"T":"Property%20used%20more%20than%2050%25%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":11.84,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":12.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":13.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":14.09,"w":24.227000000000004,"clr":-1,"A":"left","R":[{"T":"Property%20used%2050%25%20or%20less%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":14.84,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":14.801,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":31.618,"y":15.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":15.550999999999998,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":31.618,"y":16.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":16.301,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":6.731,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":17.09,"w":36.736999999999995,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(h)%2C%20lines%2025%20through%2027.%20Enter%20here%20and%20on%20line%2021%2C%20page%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.817,"y":17.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.286,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":17.84,"w":30.215,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(i)%2C%20line%2026.%20Enter%20here%20and%20on%20line%207%2C%20page%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.501,"y":17.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.709,"y":18.59,"w":20.17100000000001,"clr":-1,"A":"left","R":[{"T":"Section%20B%20-%20Information%20on%20Use%20of%20Vehicles","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":19.226,"w":56.11899999999992,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20section%20for%20vehicles%20used%20by%20a%20sole%20proprietor%2C%20partner%2C%20or%20other%20%E2%80%9Cmore%20than%205%25%20owner%2C%E2%80%9D%20or%20related%20person.%20If%20you","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":86.672,"y":19.226,"w":8.39,"clr":-1,"A":"left","R":[{"T":"%20provided%20vehicles%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.914,"w":56.361999999999945,"clr":-1,"A":"left","R":[{"T":"to%20your%20employees%2C%20first%20answer%20the%20questions%20in%20Section%20C%20to%20see%20if%20you%20meet%20an%20exception%20to%20completing%20this%20section%20for%20those","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":87.022,"y":19.914,"w":4.167,"clr":-1,"A":"left","R":[{"T":"%20vehicles.","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.54,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"30%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":21.54,"w":20.709,"clr":-1,"A":"left","R":[{"T":"Total%20business%2Finvestment%20miles%20driven%20during%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":9.649,"y":22.228,"w":4.13,"clr":-1,"A":"left","R":[{"T":"the%20year%20(","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":15.055,"y":22.228,"w":3.0549999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":19.31,"y":22.228,"w":11.968000000000002,"clr":-1,"A":"left","R":[{"T":"%20include%20commuting%20miles)%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":36.532,"y":22.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":43.601,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":41.862,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%201","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.479,"y":20.836,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.762,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%202","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.401,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":61.662,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%203","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.279,"y":20.836,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":71.562,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%204","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.201,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":81.462,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%205","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.246,"y":20.836,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":91.362,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%206","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.09,"w":20.153999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20commuting%20miles%20driven%20during%20the%20year","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.79,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"32%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.79,"w":16.745,"clr":-1,"A":"left","R":[{"T":"Total%20other%20personal%20(noncommuting)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":24.478,"w":5.631,"clr":-1,"A":"left","R":[{"T":"miles%20driven%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.378,"y":24.478,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"33%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":25.29,"w":17.504000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20miles%20driven%20during%20the%20year.%20Add%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":25.978,"w":8.837000000000002,"clr":-1,"A":"left","R":[{"T":"lines%2030%20through%2032%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":25.978,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.439,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.731,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.339,"y":26.75,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.618,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.239,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":65.518,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":70.139,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.418,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.039,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":85.318,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":89.939,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.218,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":26.79,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"34%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":26.79,"w":17.112000000000002,"clr":-1,"A":"left","R":[{"T":"Was%20the%20vehicle%20available%20for%20personal%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":27.478,"w":12.133000000000001,"clr":-1,"A":"left","R":[{"T":"use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.63,"y":27.478,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.681,"y":28.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"35%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.639,"y":28.29,"w":18.634,"clr":-1,"A":"left","R":[{"T":"Was%20the%20vehicle%20used%20primarily%20by%20a%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.636,"y":28.978,"w":15.576000000000006,"clr":-1,"A":"left","R":[{"T":"than%205%25%20owner%20or%20related%20person%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.812,"y":28.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.874,"y":28.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.681,"y":29.844,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.639,"y":29.844,"w":20.613000000000003,"clr":-1,"A":"left","R":[{"T":"Is%20another%20vehicle%20available%20for%20personal%20use%3F%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":20.339,"y":30.59,"w":41.567999999999984,"clr":-1,"A":"left","R":[{"T":"Section%20C%20-%20Questions%20for%20Employers%20Who%20Provide%20Vehicles%20for%20Use%20by%20Their%20Employees","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":31.29,"w":55.713999999999956,"clr":-1,"A":"left","R":[{"T":"Answer%20these%20questions%20to%20determine%20if%20you%20meet%20an%20exception%20to%20completing%20Section%20B%20for%20vehicles%20used%20by%20employees%20who%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.978,"w":26.42900000000001,"clr":-1,"A":"left","R":[{"T":"more%20than%205%25%20owners%20or%20related%20persons%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.732,"y":32.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":32.79,"w":49.38299999999998,"clr":-1,"A":"left","R":[{"T":"Do%20you%20maintain%20a%20written%20policy%20statement%20that%20prohibits%20all%20personal%20use%20of%20vehicles%2C%20including%20commuting%2C%20%20by","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.743,"y":33.478,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"your%20employees%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.445,"y":33.478,"w":42.65599999999997,"clr":-1,"A":"left","R":[{"T":"................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.952,"y":32.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.232,"y":32.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":34.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":34.29,"w":49.363999999999976,"clr":-1,"A":"left","R":[{"T":"Do%20you%20maintain%20a%20written%20policy%20statement%20that%20prohibits%20personal%20use%20of%20vehicles%2C%20except%20commuting%2C%20by%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.735,"y":34.978,"w":47.59699999999995,"clr":-1,"A":"left","R":[{"T":"employees%3F%20%20See%20the%20instructions%20for%20vehicles%20used%20by%20corporate%20officers%2C%20directors%2C%20or%201%25%20or%20more%20owners%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.315,"y":34.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.377,"y":34.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":35.84,"w":28.32,"clr":-1,"A":"left","R":[{"T":"Do%20you%20treat%20all%20use%20of%20vehicles%20by%20employees%20as%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.439,"y":35.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":36.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":36.54,"w":49.08599999999996,"clr":-1,"A":"left","R":[{"T":"Do%20you%20provide%20more%20than%20five%20vehicles%20to%20your%20employees%2C%20obtain%20information%20from%20your%20employees%20about%20%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.731,"y":37.228,"w":25.246000000000006,"clr":-1,"A":"left","R":[{"T":"use%20of%20the%20vehicles%2C%20and%20retain%20the%20information%20received%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.244,"y":37.228,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":38.09,"w":45.82699999999998,"clr":-1,"A":"left","R":[{"T":"Do%20you%20meet%20the%20requirements%20concerning%20qualified%20automobile%20demonstration%20use%3F%20(See%20instructions.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.254,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.316,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.378,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.739,"y":38.84,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.865,"y":38.84,"w":44.080999999999996,"clr":-1,"A":"left","R":[{"T":"If%20your%20answer%20to%2037%2C%2038%2C%2039%2C%2040%2C%20or%2041%20is%20%E2%80%9CYes%2C%E2%80%9D%20do%20not%20complete%20Section%20B%20for%20the%20covered%20vehicles.","S":3,"TS":[0,12,0,0]}]},{"x":6.618,"y":39.572,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20VI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":39.572,"w":6.111000000000001,"clr":-1,"A":"left","R":[{"T":"Amortization","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":17.613,"y":40.711,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":12.934,"y":41.236,"w":8.944999999999999,"clr":-1,"A":"left","R":[{"T":"Description%20of%20costs","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.154,"y":40.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":32.132,"y":40.973,"w":7.889000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20amortization","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.083,"y":41.498,"w":2.982,"clr":-1,"A":"left","R":[{"T":"begins","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.026,"y":40.711,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":46.324,"y":41.236,"w":5.314,"clr":-1,"A":"left","R":[{"T":"Amortizable","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.052,"y":41.236,"w":3.3910000000000005,"clr":-1,"A":"left","R":[{"T":"amount","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.854,"y":40.711,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":63.001,"y":41.236,"w":2.426,"clr":-1,"A":"left","R":[{"T":"Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.254,"y":41.236,"w":3.2409999999999997,"clr":-1,"A":"left","R":[{"T":"section","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.013,"y":40.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":74.329,"y":40.711,"w":5.6290000000000004,"clr":-1,"A":"left","R":[{"T":"Amortization","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.287,"y":41.236,"w":4.037,"clr":-1,"A":"left","R":[{"T":"period%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.673,"y":41.761,"w":5.056,"clr":-1,"A":"left","R":[{"T":"percentage","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.152,"y":40.711,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.992,"y":41.236,"w":7.11,"clr":-1,"A":"left","R":[{"T":"Amortization%20for","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.881,"y":41.236,"w":3.778,"clr":-1,"A":"left","R":[{"T":"this%20year","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.731,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":42.59,"w":34.541999999999994,"clr":-1,"A":"left","R":[{"T":"Amortization%20of%20costs%20that%20begins%20during%20your%202013%20tax%20year%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":44.84,"w":26.558999999999997,"clr":-1,"A":"left","R":[{"T":"Amortization%20of%20costs%20that%20began%20before%20your%202013%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":44.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.891,"y":45.59,"w":30.043000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(f).%20See%20the%20instructions%20for%20where%20to%20report%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":45.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.818,"y":2.822,"w":38.54499999999998,"clr":-1,"A":"left","R":[{"T":"(Include%20automobiles%2C%20certain%20other%20vehicles%2C%20certain%20computers%2C%20and%20property%20used%20for%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.731,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":45.59,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Total.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":83.241,"y":31.29,"w":3.3340000000000005,"clr":-1,"A":"left","R":[{"T":"not%20are","S":9,"TS":[0,12,1,0]}]},{"x":0.09399999999999997,"y":48.624,"w":46.68,"clr":0,"A":"left","R":[{"T":"S%2FL-PRE","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":86.335,"y":30.255,"w":2.056,"clr":-1,"A":"left","R":[{"T":"PRE","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2891,"AM":1024,"x":19.69,"y":2.125,"w":39.501,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2892,"AM":1024,"x":62.501,"y":2.079,"w":24.892,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BONUS25","EN":0},"TI":2897,"AM":0,"x":74.25,"y":10.5,"w":12.375,"h":0.833,"TU":"Line 25. Special depreciation allowance for qualified listed property placed in service during the tax year and used more than 50 percent in a qualified business use (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_1_","EN":0},"TI":2898,"AM":0,"x":6.089,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_1_","EN":0},"TI":2899,"AM":0,"x":18.464,"y":12.018,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_1_","EN":0},"TI":2900,"AM":0,"x":25.889,"y":12.018,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_1_","EN":0},"TI":2901,"AM":0,"x":33.314,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_1_","EN":0},"TI":2902,"AM":0,"x":45.689,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_1_","EN":0},"TI":2903,"AM":0,"x":58.064,"y":12.018,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_1_","EN":0},"TI":2904,"AM":0,"x":65.677,"y":11.989,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_1_","EN":0},"TI":2905,"AM":0,"x":74.151,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_1_","EN":0},"TI":2906,"AM":0,"x":86.526,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_2_","EN":0},"TI":2907,"AM":0,"x":6.089,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_2_","EN":0},"TI":2908,"AM":0,"x":18.349,"y":12.752,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_2_","EN":0},"TI":2909,"AM":0,"x":26.053,"y":12.779,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_2_","EN":0},"TI":2910,"AM":0,"x":33.265,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_2_","EN":0},"TI":2911,"AM":0,"x":45.64,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_2_","EN":0},"TI":2912,"AM":0,"x":58.015,"y":12.779,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_2_","EN":0},"TI":2913,"AM":0,"x":65.546,"y":12.798,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_2_","EN":0},"TI":2914,"AM":0,"x":74.103,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_2_","EN":0},"TI":2915,"AM":0,"x":86.478,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_3_","EN":0},"TI":2916,"AM":0,"x":6.121,"y":13.534,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_3_","EN":0},"TI":2917,"AM":0,"x":18.254,"y":13.534,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_3_","EN":0},"TI":2918,"AM":0,"x":26.108,"y":13.506,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_3_","EN":0},"TI":2919,"AM":0,"x":33.268,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_3_","EN":0},"TI":2920,"AM":0,"x":45.643,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_3_","EN":0},"TI":2921,"AM":0,"x":58.018,"y":13.506,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_3_","EN":0},"TI":2922,"AM":0,"x":65.549,"y":13.512,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_3_","EN":0},"TI":2923,"AM":0,"x":74.105,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_3_","EN":0},"TI":2924,"AM":0,"x":86.48,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_1_","EN":0},"TI":2925,"AM":0,"x":6.089,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_1_","EN":0},"TI":2926,"AM":0,"x":18.464,"y":15.018,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_1_","EN":0},"TI":2927,"AM":0,"x":25.889,"y":15.018,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_1_","EN":0},"TI":2928,"AM":0,"x":33.314,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_1_","EN":0},"TI":2929,"AM":0,"x":45.689,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_1_","EN":0},"TI":2930,"AM":0,"x":58.064,"y":15.018,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_1_","EN":0},"TI":2931,"AM":0,"x":69.674,"y":14.979,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_1_","EN":0},"TI":2932,"AM":0,"x":74.151,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_2_","EN":0},"TI":2933,"AM":0,"x":6.098,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_2_","EN":0},"TI":2934,"AM":0,"x":18.473,"y":15.773,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_2_","EN":0},"TI":2935,"AM":0,"x":25.898,"y":15.773,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_2_","EN":0},"TI":2936,"AM":0,"x":33.323,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_2_","EN":0},"TI":2937,"AM":0,"x":45.698,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_2_","EN":0},"TI":2938,"AM":0,"x":58.073,"y":15.773,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_2_","EN":0},"TI":2939,"AM":0,"x":69.674,"y":15.716,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_2_","EN":0},"TI":2940,"AM":0,"x":74.161,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_3_","EN":0},"TI":2941,"AM":0,"x":6.058,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_3_","EN":0},"TI":2942,"AM":0,"x":18.433,"y":16.513,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_3_","EN":0},"TI":2943,"AM":0,"x":25.858,"y":16.513,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_3_","EN":0},"TI":2944,"AM":0,"x":33.283,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_3_","EN":0},"TI":2945,"AM":0,"x":45.658,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_3_","EN":0},"TI":2946,"AM":0,"x":58.033,"y":16.513,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_3_","EN":0},"TI":2947,"AM":0,"x":69.63,"y":16.487,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_3_","EN":0},"TI":2948,"AM":0,"x":74.121,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":2949,"AM":1024,"x":74.25,"y":17.25,"w":12.375,"h":0.833,"TU":"Line 28. Add amounts in column (h), lines 25 through 27. Enter here and on line 21, page 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":2950,"AM":1024,"x":86.625,"y":18,"w":12.375,"h":0.833,"TU":"Line 29. Add amounts in column (i), line 26. Enter here and on line 7, page 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_1_","EN":0},"TI":2951,"AM":0,"x":39.499,"y":22.5,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_2_","EN":0},"TI":2952,"AM":0,"x":49.427,"y":22.553,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_3_","EN":0},"TI":2953,"AM":0,"x":59.214,"y":22.511,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_4_","EN":0},"TI":2954,"AM":0,"x":69.151,"y":22.468,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_5_","EN":0},"TI":2955,"AM":0,"x":79.013,"y":22.434,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_6_","EN":0},"TI":2956,"AM":0,"x":89.1,"y":22.454,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_1_","EN":0},"TI":2957,"AM":0,"x":39.499,"y":23.25,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_2_","EN":0},"TI":2958,"AM":0,"x":49.427,"y":23.303,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_3_","EN":0},"TI":2959,"AM":0,"x":59.214,"y":23.261,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_4_","EN":0},"TI":2960,"AM":0,"x":69.151,"y":23.218,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_5_","EN":0},"TI":2961,"AM":0,"x":79.013,"y":23.183,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_6_","EN":0},"TI":2962,"AM":0,"x":89.1,"y":23.203,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_1_","EN":0},"TI":2963,"AM":0,"x":39.568,"y":24.074,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_2_","EN":0},"TI":2964,"AM":0,"x":49.496,"y":24.064,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_3_","EN":0},"TI":2965,"AM":0,"x":59.283,"y":24.084,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_4_","EN":0},"TI":2966,"AM":0,"x":69.048,"y":24.042,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_5_","EN":0},"TI":2967,"AM":0,"x":78.91,"y":24.007,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_6_","EN":0},"TI":2968,"AM":0,"x":88.997,"y":24.027,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_1_","EN":0},"TI":2969,"AM":0,"x":39.499,"y":25.583,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_2_","EN":0},"TI":2970,"AM":0,"x":49.427,"y":25.574,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_3_","EN":0},"TI":2971,"AM":0,"x":59.214,"y":25.531,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_4_","EN":0},"TI":2972,"AM":0,"x":69.151,"y":25.551,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_5_","EN":0},"TI":2973,"AM":0,"x":79.013,"y":25.517,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_6_","EN":0},"TI":2974,"AM":0,"x":89.1,"y":25.537,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39A_1_","EN":0},"TI":3021,"AM":0,"x":6.06,"y":43.472,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L39_L39B_1_","EN":0},"TI":3022,"AM":0,"x":30.81,"y":43.472,"w":12.375,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39C_1_","EN":0},"TI":3023,"AM":0,"x":43.185,"y":43.472,"w":17.325,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39D_1_","EN":0},"TI":3024,"AM":0,"x":60.51,"y":43.472,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39E_1_","EN":0},"TI":3025,"AM":0,"x":72.885,"y":43.472,"w":5.333,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39E2_1_","EN":0},"TI":3026,"AM":0,"x":78.458,"y":43.467,"w":4.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39F_1_","EN":0},"TI":3027,"AM":0,"x":82.785,"y":43.472,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39A_2_","EN":0},"TI":3028,"AM":0,"x":6.193,"y":44.232,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L39_L39B_2_","EN":0},"TI":3029,"AM":0,"x":30.943,"y":44.232,"w":12.375,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39C_2_","EN":0},"TI":3030,"AM":0,"x":43.318,"y":44.232,"w":17.325,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39D_2_","EN":0},"TI":3031,"AM":0,"x":60.643,"y":44.232,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39E_2_","EN":0},"TI":3032,"AM":0,"x":73.018,"y":44.232,"w":5.333,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39E2_2_","EN":0},"TI":3033,"AM":0,"x":78.59,"y":44.227,"w":4.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39F_2_","EN":0},"TI":3034,"AM":0,"x":82.918,"y":44.232,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":3035,"AM":0,"x":82.912,"y":45,"w":16.088,"h":0.833,"TU":"Line 43. Amortization of costs that began before your 2013 tax year. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":3036,"AM":1024,"x":82.912,"y":45.75,"w":16.088,"h":0.833,"TU":"Line 44. Total. Add amounts in column (f). See the instructions for where to report. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22AY","EN":0},"TI":2893,"AM":0,"x":53.154,"y":6.681,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22AN","EN":0},"TI":2894,"AM":0,"x":58.083,"y":6.704,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L22ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22BY","EN":0},"TI":2895,"AM":0,"x":89.131,"y":6.669,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22BN","EN":0},"TI":2896,"AM":0,"x":94.017,"y":6.676,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L22BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2975,"AM":0,"x":41.59,"y":27.675,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2976,"AM":0,"x":46.482,"y":27.684,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2977,"AM":0,"x":51.445,"y":27.643,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2978,"AM":0,"x":56.336,"y":27.652,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2979,"AM":0,"x":61.415,"y":27.659,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2980,"AM":0,"x":66.307,"y":27.668,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2981,"AM":0,"x":71.27,"y":27.626,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2982,"AM":0,"x":76.161,"y":27.635,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2983,"AM":0,"x":80.86,"y":27.679,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2984,"AM":0,"x":85.752,"y":27.688,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":2985,"AM":0,"x":90.715,"y":27.646,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":2986,"AM":0,"x":95.606,"y":27.655,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2987,"AM":0,"x":41.54,"y":28.991,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2988,"AM":0,"x":46.482,"y":28.991,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2989,"AM":0,"x":51.395,"y":28.959,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2990,"AM":0,"x":56.336,"y":28.959,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2991,"AM":0,"x":61.366,"y":28.975,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2992,"AM":0,"x":66.307,"y":28.975,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2993,"AM":0,"x":71.221,"y":28.942,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2994,"AM":0,"x":76.161,"y":28.942,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2995,"AM":0,"x":80.81,"y":28.995,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2996,"AM":0,"x":85.752,"y":28.995,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":2997,"AM":0,"x":90.665,"y":28.962,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":2998,"AM":0,"x":95.606,"y":28.962,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":2999,"AM":0,"x":41.521,"y":29.937,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3000,"AM":0,"x":46.556,"y":29.917,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3001,"AM":0,"x":51.375,"y":29.904,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3002,"AM":0,"x":56.411,"y":29.884,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3003,"AM":0,"x":61.346,"y":29.92,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3004,"AM":0,"x":66.382,"y":29.9,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3005,"AM":0,"x":71.2,"y":29.888,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3006,"AM":0,"x":76.236,"y":29.868,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3007,"AM":0,"x":80.791,"y":29.94,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3008,"AM":0,"x":85.826,"y":29.92,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3009,"AM":0,"x":90.645,"y":29.908,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3010,"AM":0,"x":95.681,"y":29.95,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34Y","EN":0},"TI":3011,"AM":0,"x":90.873,"y":33.764,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34N","EN":0},"TI":3012,"AM":0,"x":95.589,"y":33.736,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L34RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35Y","EN":0},"TI":3013,"AM":0,"x":91.153,"y":35.226,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35N","EN":0},"TI":3014,"AM":0,"x":95.664,"y":35.261,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L35RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L36Y","EN":0},"TI":3015,"AM":0,"x":91.247,"y":36.05,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L36N","EN":0},"TI":3016,"AM":0,"x":95.739,"y":36.023,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L36RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L37Y","EN":0},"TI":3017,"AM":0,"x":91.15,"y":37.52,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L37N","EN":0},"TI":3018,"AM":0,"x":95.57,"y":37.486,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L37RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L38Y","EN":0},"TI":3019,"AM":0,"x":91.3,"y":38.326,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L38N","EN":0},"TI":3020,"AM":0,"x":95.739,"y":38.31,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L38RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4562F.content.txt b/test/data/fd/form/F4562F.content.txt new file mode 100755 index 00000000..2e0f5f06 --- /dev/null +++ b/test/data/fd/form/F4562F.content.txt @@ -0,0 +1,434 @@ +Section B - Assets Placed in Service During 2013 Tax Year Using the General Depreciation System +Form +4562 +Department of the Treasury +Internal Revenue Service +(99) +Depreciation and Amortization +(Including Information on Listed Property) +a + +See separate instructions. + +a + +Attach to your tax return. +OMB No. 1545-0172 +20 +13 +Attachment +Sequence No. +179 +Name(s) shown on return +Business or activity to which this form relates +Identifying number +Part I +Election To Expense Certain Property Under Section 179 +Note: +If you have any listed property, complete Part V before you complete Part I. +1 +Maximum amount (see instructions) +....................... +1 +2 +Total cost of section 179 property placed in service (see instructions) +........... +2 +3 +Threshold cost of section 179 property before reduction in limitation (see instructions) +...... +3 +4 +Reduction in limitation. Subtract line 3 from line 2. If zero or less, enter -0- +.......... +4 +5 +Dollar limitation for tax year. Subtract line 4 from line 1. If zero or less, enter -0-. If married filing +separately, see instructions +......................... +5 +6 +(a) +Description of property +(b) +Cost (business use only) +(c) +Elected cost +7 +Listed property. Enter the amount from line 29 +......... +7 +8 +Total elected cost of section 179 property. Add amounts in column (c), lines 6 and 7 +...... +8 +9 +Tentative deduction. Enter the +smaller + of line 5 or line 8 +................ +9 +10 +Carryover of disallowed deduction from line 13 of your 2012 Form 4562 +........... +10 +11 +Business income limitation. Enter the smaller of business income (not less than zero) or line 5 (see instructions) +11 +12 +Section 179 expense deduction. Add lines 9 and 10, but do not enter more than line 11 +..... +12 +13 +Carryover of disallowed deduction to 2014. Add lines 9 and 10, less line 12 +a +13 +Note: +Do not use Part II or Part III below for listed property. Instead, use Part V. +Part II +Special Depreciation Allowance and Other Depreciation (Do not +14 +Special depreciation allowance for qualified property (other than listed property) placed in service +during the tax year (see instructions) +...................... +14 +15 +Property subject to section 168(f)(1) election +.................... +15 +16 +Other depreciation (including ACRS) +...................... +16 +Part III +MACRS Depreciation (Do not +Section A +17 +MACRS deductions for assets placed in service in tax years beginning before 2013 +....... +17 +18 +If you are electing to group any assets placed in service during the tax year into one or more general +asset accounts, check here +...................... +a + +(a) +Classification of property +(b) + Month and + +year + + placed in + + +service +(c) + Basis for depreciation + + +(business/investment use + +only—see instructions) +(d) + Recovery + +period +(e) + Convention +(f) + Method +(g) + Depreciation deduction +19a +3-year property +b +5-year property +c +7-year property +d +10-year property +e +15-year property +f +20-year property +g +25-year property +h +Residential rental +property + + +i +Nonresidential real +property + + +Section C - Assets Placed in Service During 2013 Tax Year Using the Alternative Depreciation System + + +20a +Class life +b +12-year +c +40-year +Part IV +Summary +(See instructions.) +21 +Listed property. Enter amount from line 28 +.................... +21 +Add amounts from line 12, lines 14 through 17, lines 19 and 20 in column (g), and line 21. + +Enter +here and on the appropriate lines of your return. Partnerships and S corporations—see instructions . +22 +23 +For assets shown above and placed in service during the current year, enter the +portion of the basis attributable to section 263A costs +....... +23 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 12906N + Form +4562 + (2013) +25 yrs. S/L +27.5 yrs. MM S/L +27.5 yrs. MM S/L +39 yrs. MM S/L +MM S/L +S/L +12 yrs. S/L +40 yrs. MM S/L +include listed property.) (See instructions.) +include listed property.) (See instructions.) +22 + +Total. +----------------Page (0) Break---------------- +Form 4562 (2013) +Page +2 +Part V +Listed Property + +entertainment, recreation, or amusement.) +Note: +For any vehicle for which you are using the standard mileage rate or deducting lease expense, complete + +only + +24a, +24b, columns (a) through (c) of Section A, all of Section B, and Section C if applicable. +Section A - Depreciation and Other Information (Caution: +See the instructions for limits for passenger automobiles. +) +24a +Do you have evidence to support the business/investment use claimed? +Yes +No +24b +If “Yes,” is the evidence written? +Yes +No +(a) +Type of property (list + +vehicles first) +(b) +Date placed +in + +service +(c) +Business/ + +investment + +use + +percentage +(d) +Cost or other + +basis +(e) +Basis for depreciation + +(business/investment + +use only) +(f) + +Recovery + +period +(g) +Method/ + +Convention +(h) +Depreciation + +deduction +(i) +Elected + +section 179 + +cost +25 +Special depreciation allowance for qualified listed property placed in service during +the tax year and used more than 50% in a qualified business use (see instructions) . +25 +26 +Property used more than 50% in a qualified business use: +% +% +% +27 +Property used 50% or less in a qualified business use: +% +S/L – +% +S/L – +% +S/L – +28 +Add amounts in column (h), lines 25 through 27. Enter here and on line 21, page 1 . +28 +29 +Add amounts in column (i), line 26. Enter here and on line 7, page 1 +............ +29 +Section B - Information on Use of Vehicles +Complete this section for vehicles used by a sole proprietor, partner, or other “more than 5% owner,” or related person. If you + provided vehicles +to your employees, first answer the questions in Section C to see if you meet an exception to completing this section for those + vehicles. + + + +30 +Total business/investment miles driven during +the year ( +do not + include commuting miles) . +(a) +Vehicle 1 +(b) +Vehicle 2 +(c) +Vehicle 3 +(d) +Vehicle 4 +(e) +Vehicle 5 +(f) +Vehicle 6 +31 +Total commuting miles driven during the year +32 +Total other personal (noncommuting) +miles driven +......... +33 +Total miles driven during the year. Add +lines 30 through 32 +....... + + +Yes +No +Yes +No +Yes +No +Yes +No +Yes +No +Yes +No +34 +Was the vehicle available for personal +use during off-duty hours? +..... +35 +Was the vehicle used primarily by a more +than 5% owner or related person? . . +36 +Is another vehicle available for personal use? +Section C - Questions for Employers Who Provide Vehicles for Use by Their Employees +Answer these questions to determine if you meet an exception to completing Section B for vehicles used by employees who + + +more than 5% owners or related persons (see instructions). +37 +Do you maintain a written policy statement that prohibits all personal use of vehicles, including commuting, by +your employees? +................................ +Yes +No +38 +Do you maintain a written policy statement that prohibits personal use of vehicles, except commuting, by your +employees? See the instructions for vehicles used by corporate officers, directors, or 1% or more owners . . +39 +Do you treat all use of vehicles by employees as personal use? +................ +40 +Do you provide more than five vehicles to your employees, obtain information from your employees about the +use of the vehicles, and retain the information received? +................... +41 +Do you meet the requirements concerning qualified automobile demonstration use? (See instructions.) . . . +Note: +If your answer to 37, 38, 39, 40, or 41 is “Yes,” do not complete Section B for the covered vehicles. +Part VI +Amortization +(a) +Description of costs +(b) +Date amortization + +begins +(c) +Amortizable + +amount +(d) +Code + +section +(e) +Amortization + +period or + +percentage +(f) +Amortization for + +this year +42 +Amortization of costs that begins during your 2013 tax year (see instructions): +43 +Amortization of costs that began before your 2013 tax year +............. +43 +Add amounts in column (f). See the instructions for where to report +........ +44 +Form +4562 + (2013) +(Include automobiles, certain other vehicles, certain computers, and property used for +44 + +Total. +not are +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F4562F.fields.json b/test/data/fd/form/F4562F.fields.json new file mode 100755 index 00000000..8284d3aa --- /dev/null +++ b/test/data/fd/form/F4562F.fields.json @@ -0,0 +1 @@ +[{"id":"GAAX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"BUS","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6_L6A_1_","type":"alpha","calc":false,"value":""},{"id":"L6_L6B_1_","type":"number","calc":false,"value":""},{"id":"L6_L6C_1_","type":"number","calc":false,"value":""},{"id":"L6_L6A_2_","type":"alpha","calc":false,"value":""},{"id":"L6_L6B_2_","type":"number","calc":false,"value":""},{"id":"L6_L6C_2_","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"BONUS14","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L14C_1_","type":"number","calc":false,"value":""},{"id":"L14D_1_","type":"mask","calc":false,"value":""},{"id":"L14E_1_","type":"alpha","calc":false,"value":""},{"id":"L14F_1_","type":"alpha","calc":false,"value":""},{"id":"L14G_1_","type":"number","calc":false,"value":""},{"id":"L14C_2_","type":"number","calc":false,"value":""},{"id":"L14D_2_","type":"mask","calc":false,"value":""},{"id":"L14E_2_","type":"alpha","calc":false,"value":""},{"id":"L14F_2_","type":"alpha","calc":false,"value":""},{"id":"L14G_2_","type":"number","calc":false,"value":""},{"id":"L14C_3_","type":"number","calc":false,"value":""},{"id":"L14D_3_","type":"mask","calc":false,"value":""},{"id":"L14E_3_","type":"alpha","calc":false,"value":""},{"id":"L14F_3_","type":"alpha","calc":false,"value":""},{"id":"L14G_3_","type":"number","calc":false,"value":""},{"id":"L14C_4_","type":"number","calc":false,"value":""},{"id":"L14D_4_","type":"mask","calc":false,"value":""},{"id":"L14E_4_","type":"alpha","calc":false,"value":""},{"id":"L14F_4_","type":"alpha","calc":false,"value":""},{"id":"L14G_4_","type":"number","calc":false,"value":""},{"id":"L14C_5_","type":"number","calc":false,"value":""},{"id":"L14D_5_","type":"mask","calc":false,"value":""},{"id":"L14E_5_","type":"alpha","calc":false,"value":""},{"id":"L14F_5_","type":"alpha","calc":false,"value":""},{"id":"L14G_5_","type":"number","calc":false,"value":""},{"id":"L14C_6_","type":"number","calc":false,"value":""},{"id":"L14D_6_","type":"mask","calc":false,"value":""},{"id":"L14E_6_","type":"alpha","calc":false,"value":""},{"id":"L14F_6_","type":"alpha","calc":false,"value":""},{"id":"L14G_6_","type":"number","calc":false,"value":""},{"id":"L14C_7_","type":"number","calc":false,"value":""},{"id":"L14E_7_","type":"alpha","calc":false,"value":""},{"id":"L14G_7_","type":"number","calc":false,"value":""},{"id":"L14B7_1_","type":"date","calc":false,"value":""},{"id":"L14C7_1_","type":"number","calc":false,"value":""},{"id":"L14G7_1_","type":"number","calc":false,"value":""},{"id":"L14B7_2_","type":"date","calc":false,"value":""},{"id":"L14C7_2_","type":"number","calc":false,"value":""},{"id":"L14G7_2_","type":"number","calc":false,"value":""},{"id":"L14B8_1_","type":"date","calc":false,"value":""},{"id":"L14C8_1_","type":"number","calc":false,"value":""},{"id":"L14G8_1_","type":"number","calc":false,"value":""},{"id":"L14B8_2_","type":"date","calc":false,"value":""},{"id":"L14C8_2_","type":"number","calc":false,"value":""},{"id":"L14D8","type":"mask","calc":false,"value":""},{"id":"L14G8_2_","type":"number","calc":false,"value":""},{"id":"L15C_1_","type":"number","calc":false,"value":""},{"id":"L15D1","type":"mask","calc":false,"value":""},{"id":"L15E_1_","type":"alpha","calc":false,"value":""},{"id":"L15G_1_","type":"number","calc":false,"value":""},{"id":"L15C_2_","type":"number","calc":false,"value":""},{"id":"L15E_2_","type":"alpha","calc":false,"value":""},{"id":"L15G_2_","type":"number","calc":false,"value":""},{"id":"L15B3","type":"date","calc":false,"value":""},{"id":"L15C_3_","type":"number","calc":false,"value":""},{"id":"L15G_3_","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22ARB","type":"radio","calc":false,"value":"L22AY"},{"id":"L22ARB","type":"radio","calc":false,"value":"L22AN"},{"id":"L22BRB","type":"radio","calc":false,"value":"L22BY"},{"id":"L22BRB","type":"radio","calc":false,"value":"L22BN"},{"id":"A251RB_1_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_1_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_2_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_2_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_3_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_3_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_4_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_4_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_5_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_5_","type":"radio","calc":false,"value":"L31N"},{"id":"A251RB_6_","type":"radio","calc":false,"value":"L31Y"},{"id":"A251RB_6_","type":"radio","calc":false,"value":"L31N"},{"id":"A253RB_1_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_1_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_2_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_2_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_3_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_3_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_4_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_4_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_5_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_5_","type":"radio","calc":false,"value":"L32N"},{"id":"A253RB_6_","type":"radio","calc":false,"value":"L32Y"},{"id":"A253RB_6_","type":"radio","calc":false,"value":"L32N"},{"id":"A254RB_1_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_1_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_2_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_2_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_3_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_3_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_4_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_4_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_5_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_5_","type":"radio","calc":false,"value":"L33N"},{"id":"A254RB_6_","type":"radio","calc":false,"value":"L33Y"},{"id":"A254RB_6_","type":"radio","calc":false,"value":"L33N"},{"id":"L34RB","type":"radio","calc":false,"value":"L34Y"},{"id":"L34RB","type":"radio","calc":false,"value":"L34N"},{"id":"L35RB","type":"radio","calc":false,"value":"L35Y"},{"id":"L35RB","type":"radio","calc":false,"value":"L35N"},{"id":"L36RB","type":"radio","calc":false,"value":"L36Y"},{"id":"L36RB","type":"radio","calc":false,"value":"L36N"},{"id":"L37RB","type":"radio","calc":false,"value":"L37Y"},{"id":"L37RB","type":"radio","calc":false,"value":"L37N"},{"id":"L38RB","type":"radio","calc":false,"value":"L38Y"},{"id":"L38RB","type":"radio","calc":false,"value":"L38N"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"BONUS25","type":"number","calc":false,"value":""},{"id":"L23_L23A_1_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_1_","type":"date","calc":false,"value":""},{"id":"L23_L23C_1_","type":"number","calc":false,"value":""},{"id":"L23_L23D_1_","type":"number","calc":false,"value":""},{"id":"L23_L23E_1_","type":"number","calc":false,"value":""},{"id":"L23_L23F_1_","type":"number","calc":false,"value":""},{"id":"L23_L23G_1_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_1_","type":"number","calc":false,"value":""},{"id":"L23_L23I_1_","type":"number","calc":false,"value":""},{"id":"L23_L23A_2_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_2_","type":"date","calc":false,"value":""},{"id":"L23_L23C_2_","type":"number","calc":false,"value":""},{"id":"L23_L23D_2_","type":"number","calc":false,"value":""},{"id":"L23_L23E_2_","type":"number","calc":false,"value":""},{"id":"L23_L23F_2_","type":"number","calc":false,"value":""},{"id":"L23_L23G_2_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_2_","type":"number","calc":false,"value":""},{"id":"L23_L23I_2_","type":"number","calc":false,"value":""},{"id":"L23_L23A_3_","type":"alpha","calc":false,"value":""},{"id":"L23_L23B_3_","type":"date","calc":false,"value":""},{"id":"L23_L23C_3_","type":"number","calc":false,"value":""},{"id":"L23_L23D_3_","type":"number","calc":false,"value":""},{"id":"L23_L23E_3_","type":"number","calc":false,"value":""},{"id":"L23_L23F_3_","type":"number","calc":false,"value":""},{"id":"L23_L23G_3_","type":"alpha","calc":false,"value":""},{"id":"L23_L23H_3_","type":"number","calc":false,"value":""},{"id":"L23_L23I_3_","type":"number","calc":false,"value":""},{"id":"L24_L24A_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_1_","type":"date","calc":false,"value":""},{"id":"L24_L24C_1_","type":"number","calc":false,"value":""},{"id":"L24_L24D_1_","type":"number","calc":false,"value":""},{"id":"L24_L24E_1_","type":"number","calc":false,"value":""},{"id":"L24_L24F_1_","type":"number","calc":false,"value":""},{"id":"L24_L24G_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_1_","type":"alpha","calc":false,"value":""},{"id":"L24_L24A_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_2_","type":"date","calc":false,"value":""},{"id":"L24_L24C_2_","type":"number","calc":false,"value":""},{"id":"L24_L24D_2_","type":"number","calc":false,"value":""},{"id":"L24_L24E_2_","type":"number","calc":false,"value":""},{"id":"L24_L24F_2_","type":"number","calc":false,"value":""},{"id":"L24_L24G_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_2_","type":"alpha","calc":false,"value":""},{"id":"L24_L24A_3_","type":"alpha","calc":false,"value":""},{"id":"L24_L24B_3_","type":"date","calc":false,"value":""},{"id":"L24_L24C_3_","type":"number","calc":false,"value":""},{"id":"L24_L24D_3_","type":"number","calc":false,"value":""},{"id":"L24_L24E_3_","type":"number","calc":false,"value":""},{"id":"L24_L24F_3_","type":"number","calc":false,"value":""},{"id":"L24_L24G_3_","type":"alpha","calc":false,"value":""},{"id":"L24_L24H_3_","type":"alpha","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"MILES_L27_1_","type":"number","calc":false,"value":""},{"id":"MILES_L27_2_","type":"number","calc":false,"value":""},{"id":"MILES_L27_3_","type":"number","calc":false,"value":""},{"id":"MILES_L27_4_","type":"number","calc":false,"value":""},{"id":"MILES_L27_5_","type":"number","calc":false,"value":""},{"id":"MILES_L27_6_","type":"number","calc":false,"value":""},{"id":"MILES_L28_1_","type":"number","calc":false,"value":""},{"id":"MILES_L28_2_","type":"number","calc":false,"value":""},{"id":"MILES_L28_3_","type":"number","calc":false,"value":""},{"id":"MILES_L28_4_","type":"number","calc":false,"value":""},{"id":"MILES_L28_5_","type":"number","calc":false,"value":""},{"id":"MILES_L28_6_","type":"number","calc":false,"value":""},{"id":"MILES_L29_1_","type":"number","calc":false,"value":""},{"id":"MILES_L29_2_","type":"number","calc":false,"value":""},{"id":"MILES_L29_3_","type":"number","calc":false,"value":""},{"id":"MILES_L29_4_","type":"number","calc":false,"value":""},{"id":"MILES_L29_5_","type":"number","calc":false,"value":""},{"id":"MILES_L29_6_","type":"number","calc":false,"value":""},{"id":"MILES_L30_1_","type":"number","calc":false,"value":""},{"id":"MILES_L30_2_","type":"number","calc":false,"value":""},{"id":"MILES_L30_3_","type":"number","calc":false,"value":""},{"id":"MILES_L30_4_","type":"number","calc":false,"value":""},{"id":"MILES_L30_5_","type":"number","calc":false,"value":""},{"id":"MILES_L30_6_","type":"number","calc":false,"value":""},{"id":"L39_L39A_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39B_1_","type":"date","calc":false,"value":""},{"id":"L39_L39C_1_","type":"number","calc":false,"value":""},{"id":"L39_L39D_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39E_1_","type":"number","calc":false,"value":""},{"id":"L39_L39E2_1_","type":"alpha","calc":false,"value":""},{"id":"L39_L39F_1_","type":"number","calc":false,"value":""},{"id":"L39_L39A_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39B_2_","type":"date","calc":false,"value":""},{"id":"L39_L39C_2_","type":"number","calc":false,"value":""},{"id":"L39_L39D_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39E_2_","type":"number","calc":false,"value":""},{"id":"L39_L39E2_2_","type":"alpha","calc":false,"value":""},{"id":"L39_L39F_2_","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4562F.json b/test/data/fd/form/F4562F.json new file mode 100755 index 00000000..c73a0a40 --- /dev/null +++ b/test/data/fd/form/F4562F.json @@ -0,0 +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.133,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.266,"w":1.5,"l":63.178},{"oc":"#221f1f","x":84.066,"y":3.006,"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.2000000000000002,"l":37.211},{"oc":"#221f1f","x":43.272,"y":6.751,"w":1.2000000000000002,"l":39.686},{"oc":"#221f1f","x":82.872,"y":6.751,"w":1.2000000000000002,"l":16.173},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":10.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":11.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":42.161},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":12.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":48.222,"y":13.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":14.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":14.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.222,"y":15.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":65.547,"y":15.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":15.751,"w":1.125,"l":21.123},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":16.51,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.77,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":66.784,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.497,"y":19.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.196,"y":20.251,"w":0.75,"l":92.849},{"oc":"#221f1f","x":6.196,"y":21.001,"w":1.2000000000000002,"l":92.849},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.585,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.585,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":24.752,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":25.502,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.146,"y":26.252,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":27.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":7.384,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":23.471,"y":30.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":30.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":30.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":30.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":31.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":30.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":31.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":31.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":31.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":31.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":32.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":32.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":32.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":32.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":32.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":33.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":33.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":33.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":33.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":33.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":33.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":33.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":33.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":33.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":34.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":34.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":34.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":34.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":34.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":35.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":33.371,"y":35.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":35.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":35.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":35.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":36.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":36.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":36.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":36.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":36.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":9.859,"y":37.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":36.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":36.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":36.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":36.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":36.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":36.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.471,"y":37.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":37.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":37.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":37.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":37.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":9.859,"y":39.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.471,"y":38.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.371,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":38.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":38.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.471,"y":39.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.221,"y":39.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.021,"y":39.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":39.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":39.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":40.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":39.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":40.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":41.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":41.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":33.372,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":41.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":56.884,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.022,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":42.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":42.001,"w":1.2000000000000002,"l":9.986},{"oc":"#221f1f","x":33.372,"y":42.001,"w":1.2000000000000002,"l":14.936},{"oc":"#221f1f","x":48.222,"y":42.001,"w":1.2000000000000002,"l":8.748},{"oc":"#221f1f","x":56.884,"y":42.001,"w":1.2000000000000002,"l":11.223},{"oc":"#221f1f","x":68.022,"y":42.001,"w":1.2000000000000002,"l":14.936},{"oc":"#221f1f","x":82.872,"y":42.001,"w":1.2000000000000002,"l":16.173},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.784,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.497,"y":45.001,"w":0.75,"l":12.468},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.196,"y":46.501,"w":1.5,"l":43.349},{"oc":"#221f1f","x":49.459,"y":46.501,"w":1.5,"l":37.211},{"oc":"#221f1f","x":86.584,"y":46.501,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.643},{"oc":"#221f1f","x":21.026,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.152,"y":2.241,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":1.47},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":43.315,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":82.915,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":86.627,"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":86.627,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":86.627,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":65.59,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":86.627,"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":86.627,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":19.478,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":26.237,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.237,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.514,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":33.414,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.264,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.927,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.064,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.914,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":33.414,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.514,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.414,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.514,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.264,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.927,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"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":23.515,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":33.415,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":48.265,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":56.927,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":68.065,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":82.915,"y":41.235,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.627,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"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":6.751,"w":5.792,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":12.751,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":19.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":21.001,"w":6.2,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.752,"w":6.707,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":27.001,"w":16.088,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":30.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":31.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":32.251,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":33.001,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":33.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":34.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.514,"y":35.251,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.515,"y":39.751,"w":9.9,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":23.515,"y":40.501,"w":9.9,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":42.001,"w":6.868,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":45.001,"w":16.088,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":16.181,"y":28.251,"w":46.73999999999997,"clr":-1,"A":"left","R":[{"T":"Section%20B%20-%20Assets%20Placed%20in%20Service%20During%202013%20Tax%20Year%20Using%20the%20General%20Depreciation%20System","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.926,"y":3.8810000000000002,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.926,"y":4.376,"w":12.205000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":18.513,"y":4.376,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.032,"y":2.335,"w":15.058000000000003,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20Amortization%20%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":33.041,"y":3.2990000000000004,"w":20.002000000000002,"clr":-1,"A":"left","R":[{"T":"(Including%20Information%20on%20Listed%20Property)","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":29.935,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":31.253,"y":4.258,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.99,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":58.308,"y":4.258,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.979,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0172","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":86.308,"y":3.8760000000000003,"w":8.505000000000006,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.308,"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":94.286,"y":4.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"179","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.58,"y":5.001,"w":20.205000000000002,"clr":-1,"A":"left","R":[{"T":"Business%20or%20activity%20to%20which%20this%20form%20relates","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.18,"y":5.001,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.64,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":6.572,"w":27.453000000000003,"clr":-1,"A":"left","R":[{"T":"Election%20To%20Expense%20Certain%20Property%20Under%20Section%20179%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.674,"y":7.26,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":18.545,"y":7.26,"w":33.428999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20any%20listed%20property%2C%20complete%20Part%20V%20before%20you%20complete%20Part%20I.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":8.09,"w":16.191000000000003,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":8.09,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":8.84,"w":31.003999999999998,"clr":-1,"A":"left","R":[{"T":"Total%20cost%20of%20section%20179%20property%20placed%20in%20service%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":8.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":9.59,"w":38.45099999999999,"clr":-1,"A":"left","R":[{"T":"Threshold%20cost%20of%20section%20179%20property%20before%20reduction%20in%20limitation%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":9.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":10.34,"w":33.227999999999994,"clr":-1,"A":"left","R":[{"T":"Reduction%20in%20limitation.%20Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":10.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":11.04,"w":42.66999999999999,"clr":-1,"A":"left","R":[{"T":"Dollar%20limitation%20for%20tax%20year.%20Subtract%20line%204%20from%20line%201.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20married%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.714,"y":11.728,"w":12.483000000000002,"clr":-1,"A":"left","R":[{"T":"separately%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.677,"y":11.728,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.747,"y":12.473,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":21.819,"y":12.473,"w":10.297,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.079,"y":12.473,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.195,"y":12.473,"w":10.872000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20(business%20use%20only)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.48,"y":12.473,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.552,"y":12.473,"w":5.556,"clr":-1,"A":"left","R":[{"T":"Elected%20cost","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":14.84,"w":20.859000000000005,"clr":-1,"A":"left","R":[{"T":"Listed%20property.%20Enter%20the%20amount%20from%20line%2029%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":14.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":15.59,"w":37.67799999999998,"clr":-1,"A":"left","R":[{"T":"Total%20elected%20cost%20of%20section%20179%20property.%20Add%20amounts%20in%20column%20(c)%2C%20lines%206%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":15.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":16.34,"w":13.726000000000006,"clr":-1,"A":"left","R":[{"T":"Tentative%20deduction.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.65,"y":16.34,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.714,"y":16.34,"w":7.909000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%205%20or%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":16.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.09,"w":31.858000000000015,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20disallowed%20deduction%20from%20line%2013%20of%20your%202012%20Form%204562","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":17.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.84,"w":49.89799999999995,"clr":-1,"A":"left","R":[{"T":"Business%20income%20limitation.%20Enter%20the%20smaller%20of%20business%20income%20(not%20less%20than%20zero)%20or%20line%205%20(see%20instructions)%20%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":18.59,"w":39.088999999999984,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense%20deduction.%20Add%20lines%209%20and%2010%2C%20but%20do%20not%20enter%20more%20than%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":18.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":19.34,"w":34.23,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20disallowed%20deduction%20to%202014.%20Add%20lines%209%20and%2010%2C%20less%20line%2012%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.602,"y":19.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.573,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.989,"y":20.09,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.803,"y":20.09,"w":32.41,"clr":-1,"A":"left","R":[{"T":"Do%20not%20use%20Part%20II%20or%20Part%20III%20below%20for%20listed%20property.%20Instead%2C%20use%20Part%20V.","S":3,"TS":[0,12,0,0]}]},{"x":6.59,"y":20.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":20.831,"w":30.73,"clr":-1,"A":"left","R":[{"T":"Special%20Depreciation%20Allowance%20and%20Other%20Depreciation%20(Do%20not%20%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":6.707,"y":21.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":21.54,"w":43.63199999999999,"clr":-1,"A":"left","R":[{"T":"Special%20depreciation%20allowance%20for%20qualified%20property%20(other%20than%20listed%20property)%20placed%20in%20service%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.73,"y":22.228,"w":16.465000000000003,"clr":-1,"A":"left","R":[{"T":"during%20the%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.881,"y":22.228,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":23.09,"w":19.947000000000006,"clr":-1,"A":"left","R":[{"T":"Property%20subject%20to%20section%20168(f)(1)%20election%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":23.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.707,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.727,"y":23.84,"w":16.428,"clr":-1,"A":"left","R":[{"T":"Other%20depreciation%20(including%20ACRS)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":23.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"x":6.59,"y":24.573,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":24.573,"w":14.056000000000004,"clr":-1,"A":"left","R":[{"T":"MACRS%20Depreciation%20(Do%20not%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.808,"y":25.341,"w":4.612,"clr":-1,"A":"left","R":[{"T":"Section%20A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":26.092,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.092,"w":37.26499999999998,"clr":-1,"A":"left","R":[{"T":"MACRS%20deductions%20for%20assets%20placed%20in%20service%20in%20tax%20years%20beginning%20before%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.814,"y":26.092,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":26.091,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.732,"y":26.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.79,"w":44.968999999999966,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20electing%20to%20group%20any%20assets%20placed%20in%20service%20during%20the%20tax%20year%20into%20one%20or%20more%20general%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":27.488,"w":12.540000000000006,"clr":-1,"A":"left","R":[{"T":"asset%20accounts%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.691,"y":27.488,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":"......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.672,"y":27.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.177,"y":29.348,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":8.914,"y":29.348,"w":11.166,"clr":-1,"A":"left","R":[{"T":"Classification%20of%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.725,"y":28.823,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,8.95,1,0]}]},{"oc":"#221f1f","x":25.239,"y":28.823,"w":5.114,"clr":-1,"A":"left","R":[{"T":"%20Month%20and","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":30.753,"y":28.823,"w":1.9069999999999998,"clr":-1,"A":"left","R":[{"T":"year","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":25.988,"y":29.348,"w":4.353,"clr":-1,"A":"left","R":[{"T":"%20placed%20in","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":26.594,"y":29.873,"w":3.166,"clr":-1,"A":"left","R":[{"T":"service","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":34.719,"y":28.823,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,8.95,1,0]}]},{"oc":"#221f1f","x":36.195,"y":28.823,"w":10.036999999999999,"clr":-1,"A":"left","R":[{"T":"%20Basis%20for%20depreciation","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":34.944,"y":29.348,"w":11.318000000000003,"clr":-1,"A":"left","R":[{"T":"(business%2Finvestment%20use","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":35.4,"y":29.873,"w":10.149000000000001,"clr":-1,"A":"left","R":[{"T":"only%E2%80%94see%20instructions)","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":48.759,"y":29.086,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":50.541,"y":29.086,"w":4.481,"clr":-1,"A":"left","R":[{"T":"%20Recovery","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.63,"y":29.611,"w":2.852,"clr":-1,"A":"left","R":[{"T":"period","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.134,"y":29.348,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":59.872,"y":29.348,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"%20Convention","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.275,"y":29.348,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.723,"y":29.348,"w":3.724,"clr":-1,"A":"left","R":[{"T":"%20Method","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.377,"y":29.348,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.159,"y":29.348,"w":10.706,"clr":-1,"A":"left","R":[{"T":"%20Depreciation%20deduction","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.7,"y":30.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":30.59,"w":6.908,"clr":-1,"A":"left","R":[{"T":"3-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":31.340000000000003,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":31.340000000000003,"w":6.908,"clr":-1,"A":"left","R":[{"T":"5-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":32.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.027,"y":32.09,"w":6.908,"clr":-1,"A":"left","R":[{"T":"7-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":32.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":32.84,"w":7.464,"clr":-1,"A":"left","R":[{"T":"10-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":33.59,"w":7.464,"clr":-1,"A":"left","R":[{"T":"15-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.793,"y":34.34,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":34.34,"w":7.464,"clr":-1,"A":"left","R":[{"T":"20-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":35.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":35.09,"w":7.464,"clr":-1,"A":"left","R":[{"T":"25-year%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.391,"y":35.79,"w":0.889,"clr":-1,"A":"left","R":[{"T":"h%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":35.79,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"Residential%20rental%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.996,"y":36.478,"w":3.778,"clr":-1,"A":"left","R":[{"T":"property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.909,"y":37.29,"w":0.556,"clr":-1,"A":"left","R":[{"T":"i%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":37.29,"w":8.611,"clr":-1,"A":"left","R":[{"T":"Nonresidential%20real%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.996,"y":37.978,"w":3.778,"clr":-1,"A":"left","R":[{"T":"property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.064,"y":38.84,"w":48.18399999999996,"clr":-1,"A":"left","R":[{"T":"Section%20C%20-%20Assets%20Placed%20in%20Service%20During%202013%20Tax%20Year%20Using%20the%20Alternative%20Depreciation%20System","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.7,"y":39.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"20a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":39.59,"w":4.036,"clr":-1,"A":"left","R":[{"T":"Class%20life","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.363,"y":40.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":40.34,"w":3.4080000000000004,"clr":-1,"A":"left","R":[{"T":"12-year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.42,"y":41.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.996,"y":41.09,"w":3.4080000000000004,"clr":-1,"A":"left","R":[{"T":"40-year","S":3,"TS":[0,12,0,0]}]},{"x":6.637,"y":41.822,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":41.822,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"Summary%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":22.426,"y":41.822,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":42.59,"w":19.173000000000005,"clr":-1,"A":"left","R":[{"T":"Listed%20property.%20Enter%20amount%20from%20line%2028%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":42.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.99,"y":43.29,"w":39.72099999999999,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20from%20line%2012%2C%20lines%2014%20through%2017%2C%20lines%2019%20and%2020%20in%20column%20(g)%2C%20and%20line%2021.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.781,"y":43.29,"w":2.6300000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.719,"y":43.978,"w":44.395999999999965,"clr":-1,"A":"left","R":[{"T":"here%20and%20on%20the%20appropriate%20lines%20of%20your%20return.%20Partnerships%20and%20S%20corporations%E2%80%94see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.185,"y":43.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":44.791,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":44.791,"w":35.59799999999998,"clr":-1,"A":"left","R":[{"T":"For%20assets%20shown%20above%20and%20placed%20in%20service%20during%20the%20current%20year%2C%20enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.722,"y":45.478,"w":24.246000000000006,"clr":-1,"A":"left","R":[{"T":"portion%20of%20the%20basis%20attributable%20to%20section%20263A%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.248,"y":45.478,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.573,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.989,"y":46.358,"w":30.286000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.313,"y":46.376,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012906N","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.15,"y":46.322,"w":3.446,"clr":-1,"A":"left","R":[{"T":"%20%20%20Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":49.817,"y":35.051,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"25%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":35.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.115,"y":35.801,"w":3.7590000000000003,"clr":-1,"A":"left","R":[{"T":"27.5%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":35.801,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":35.801,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.115,"y":36.551,"w":3.7590000000000003,"clr":-1,"A":"left","R":[{"T":"27.5%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":36.551,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":36.551,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.817,"y":37.301,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"39%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":37.301,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":37.301,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.922,"y":38.051,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.042,"y":38.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":39.551,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.818,"y":40.301,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"12%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":40.301,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":49.818,"y":41.051,"w":2.9419999999999997,"clr":-1,"A":"left","R":[{"T":"40%20yrs.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":60.923,"y":41.051,"w":1.54,"clr":-1,"A":"left","R":[{"T":"MM","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":74.043,"y":41.051,"w":1.393,"clr":-1,"A":"left","R":[{"T":"S%2FL","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":64.009,"y":20.831,"w":18.74300000000001,"clr":-1,"A":"left","R":[{"T":"include%20listed%20property.)%20(See%20instructions.)","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":37.271,"y":24.573,"w":18.74300000000001,"clr":-1,"A":"left","R":[{"T":"include%20listed%20property.)%20(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":43.29,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.726,"y":43.29,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Total.%20%20","S":9,"TS":[0,12,1,0]}]},{"x":12.82,"y":42.498,"w":36.008,"clr":0,"A":"left","R":[{"T":"VARIOUS","S":-1,"TS":[0,76,1,0]}]},{"x":68.52,"y":42.498,"w":36.008,"clr":0,"A":"left","R":[{"T":"VARIOUS","S":-1,"TS":[0,76,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3037,"AM":1024,"x":6.188,"y":5.875,"w":37.125,"h":0.875,"TU":"Page 1. Name (or names) shown on return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUS","EN":0},"TI":3038,"AM":0,"x":43.313,"y":5.875,"w":39.6,"h":0.875,"TU":"Business or activity to which this form relates."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3039,"AM":1024,"x":82.912,"y":5.875,"w":16.088,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":3040,"AM":0,"x":86.625,"y":8.25,"w":12.375,"h":0.833,"TU":"Part 1. Election To Expense Certain Property Under Section 179. Note: If you have any listed property, complete Part 5 before you complete Part 1. Line 1. Maximum amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":3041,"AM":0,"x":86.625,"y":9,"w":12.375,"h":0.833,"TU":"Line 2. Total cost of section 179 property placed in service (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":3042,"AM":0,"x":86.625,"y":9.75,"w":12.375,"h":0.833,"TU":"Line 3. Threshold cost of section 179 property before reduction in limitation (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":3043,"AM":1024,"x":86.625,"y":10.5,"w":12.375,"h":0.833,"TU":"Line 4. Reduction in limitation. Subtract line 3 from line 2. If zero or less, enter zero. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":3044,"AM":0,"x":86.55,"y":12,"w":12.375,"h":0.833,"TU":"Line 5. Dollar limitation for tax year. Subtract line 4 from line 1. If zero or less, enter zero. If married filing separately, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6_L6A_1_","EN":0},"TI":3045,"AM":0,"x":6.208,"y":13.514,"w":41.869,"h":0.833,"TU":"Line 6. Item 1. (a) Description of property."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6B_1_","EN":0},"TI":3046,"AM":0,"x":48.283,"y":13.514,"w":17.119,"h":0.833,"TU":"Line 6. Item 1. (b) Cost (business use only). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6C_1_","EN":0},"TI":3047,"AM":0,"x":65.608,"y":13.514,"w":20.831,"h":0.833,"TU":"Line 6. Item 1. (c) Elected cost. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6_L6A_2_","EN":0},"TI":3048,"AM":0,"x":6.208,"y":14.264,"w":41.869,"h":0.833,"TU":"Line 6. Item 2. (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6B_2_","EN":0},"TI":3049,"AM":0,"x":48.283,"y":14.264,"w":17.119,"h":0.833,"TU":"Line 6. Item 2. (b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_L6C_2_","EN":0},"TI":3050,"AM":0,"x":65.608,"y":14.264,"w":20.831,"h":0.833,"TU":"Line 6. Item 2. (c). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":3051,"AM":1024,"x":65.588,"y":15,"w":20.831,"h":0.833,"TU":"Line 7. Listed property. Enter the amount from line 29."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":3052,"AM":1024,"x":86.625,"y":15.759,"w":12.375,"h":0.833,"TU":"Line 8. Total elected cost of section 179 property. Add amounts in column (c), lines 6 and 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":3053,"AM":1024,"x":86.625,"y":16.5,"w":12.375,"h":0.833,"TU":"Line 9. Tentative deduction. Enter the smaller of line 5 or line 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":3054,"AM":0,"x":86.625,"y":17.266,"w":12.375,"h":0.833,"TU":"Line 10. Carryover of disallowed deduction from line 13 of your 2012 Form 4562."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":3055,"AM":0,"x":86.625,"y":18.019,"w":12.375,"h":0.833,"TU":"Line 11. Business income limitation. Enter the smaller of business income (not less than zero) or line 5 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":3056,"AM":1024,"x":86.625,"y":18.75,"w":12.375,"h":0.833,"TU":"Line 12. Section 179 expense deduction. Add lines 9 and 10, but do not enter more than line 11."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":3057,"AM":1024,"x":70.537,"y":19.5,"w":15.881,"h":0.833,"TU":"Line 13. Carryover of disallowed deduction to 2014. Add lines 9 and 10, less line 12. Note: Do not use Part 2 or Part 3 below for listed property. Instead, use Part 5. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BONUS14","EN":0},"TI":3058,"AM":0,"x":86.626,"y":22.5,"w":12.375,"h":0.833,"TU":"Part 2. Special Depreciation Allowance and Other Depreciation. (Do not include listed property.) (See instructions.) Line 14. Special depreciation allowance for qualified property (other than listed property) placed in service during the tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":3059,"AM":0,"x":86.626,"y":23.25,"w":12.375,"h":0.833,"TU":"Line 15. Property subject to section 168(f)(1) election."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":3060,"AM":0,"x":86.626,"y":24,"w":12.375,"h":0.833,"TU":"Line 16. Other depreciation (including A C R S)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":3061,"AM":0,"x":86.625,"y":26.251,"w":12.375,"h":0.833,"TU":"Line 17. MACRS deductions for assets placed in service in tax years beginning before 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_1_","EN":0},"TI":3063,"AM":0,"x":33.34,"y":30.7,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_1_","EN":0},"TI":3064,"AM":0,"x":48.156,"y":30.705,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_1_","EN":0},"TI":3065,"AM":0,"x":56.973,"y":30.731,"w":10.575,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_1_","EN":0},"TI":3066,"AM":0,"x":68.389,"y":30.802,"w":13.879,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_1_","EN":0},"TI":3067,"AM":0,"x":82.84,"y":30.7,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_2_","EN":0},"TI":3068,"AM":0,"x":33.408,"y":31.495,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_2_","EN":0},"TI":3069,"AM":0,"x":48.193,"y":31.468,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_2_","EN":0},"TI":3070,"AM":0,"x":56.777,"y":31.45,"w":10.665,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_2_","EN":0},"TI":3071,"AM":0,"x":68.389,"y":31.502,"w":13.969,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_2_","EN":0},"TI":3072,"AM":0,"x":82.845,"y":31.495,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_3_","EN":0},"TI":3073,"AM":0,"x":33.374,"y":32.2,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_3_","EN":0},"TI":3074,"AM":0,"x":48.1,"y":32.203,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_3_","EN":0},"TI":3075,"AM":0,"x":56.875,"y":32.258,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_3_","EN":0},"TI":3076,"AM":0,"x":68.276,"y":32.227,"w":13.969,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_3_","EN":0},"TI":3077,"AM":0,"x":82.843,"y":32.159,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_4_","EN":0},"TI":3078,"AM":0,"x":33.441,"y":32.967,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_4_","EN":0},"TI":3079,"AM":0,"x":48.212,"y":32.938,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_4_","EN":0},"TI":3080,"AM":0,"x":56.855,"y":32.983,"w":10.846,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_4_","EN":0},"TI":3081,"AM":0,"x":68.361,"y":32.99,"w":13.879,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_4_","EN":0},"TI":3082,"AM":0,"x":82.847,"y":32.954,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_5_","EN":0},"TI":3083,"AM":0,"x":33.408,"y":33.671,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_5_","EN":0},"TI":3084,"AM":0,"x":48.229,"y":33.66,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_5_","EN":0},"TI":3085,"AM":0,"x":56.869,"y":33.72,"w":10.846,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_5_","EN":0},"TI":3086,"AM":0,"x":68.481,"y":33.805,"w":13.788,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_5_","EN":0},"TI":3087,"AM":0,"x":82.77,"y":33.768,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_6_","EN":0},"TI":3088,"AM":0,"x":33.374,"y":34.377,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D_6_","EN":0},"TI":3089,"AM":0,"x":48.192,"y":34.422,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_6_","EN":0},"TI":3090,"AM":0,"x":56.968,"y":34.489,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14F_6_","EN":0},"TI":3091,"AM":0,"x":68.474,"y":34.497,"w":13.788,"h":0.833,"PL":{"V":[null,"200 DB","150 DB","DB","S/L","VARIOUS"],"D":[" ","200 DB","150 DB","DB","S/L","VARIOUS"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_6_","EN":0},"TI":3092,"AM":0,"x":82.768,"y":34.432,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C_7_","EN":0},"TI":3093,"AM":0,"x":33.441,"y":35.144,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14E_7_","EN":0},"TI":3094,"AM":0,"x":56.836,"y":35.242,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G_7_","EN":0},"TI":3095,"AM":0,"x":82.772,"y":35.227,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B7_1_","EN":0},"TI":3096,"AM":0,"x":23.44,"y":35.95,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C7_1_","EN":0},"TI":3097,"AM":0,"x":33.31,"y":35.94,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G7_1_","EN":0},"TI":3098,"AM":0,"x":82.845,"y":35.932,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B7_2_","EN":0},"TI":3099,"AM":0,"x":23.455,"y":36.667,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C7_2_","EN":0},"TI":3100,"AM":0,"x":33.333,"y":36.667,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G7_2_","EN":0},"TI":3101,"AM":0,"x":82.77,"y":36.722,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B8_1_","EN":0},"TI":3102,"AM":0,"x":23.585,"y":37.441,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C8_1_","EN":0},"TI":3103,"AM":0,"x":33.313,"y":37.477,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G8_1_","EN":0},"TI":3104,"AM":0,"x":82.845,"y":37.484,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14B8_2_","EN":0},"TI":3105,"AM":0,"x":23.53,"y":38.273,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C8_2_","EN":0},"TI":3106,"AM":0,"x":33.408,"y":38.246,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D8","EN":0},"TI":3107,"AM":0,"x":48.343,"y":38.219,"w":8.58,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G8_2_","EN":0},"TI":3108,"AM":0,"x":82.845,"y":38.219,"w":16.088,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_1_","EN":0},"TI":3109,"AM":0,"x":33.341,"y":39.7,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L15D1","EN":0},"TI":3110,"AM":0,"x":48.191,"y":39.7,"w":8.456,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15E_1_","EN":0},"TI":3111,"AM":0,"x":56.926,"y":39.798,"w":10.755,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_1_","EN":0},"TI":3112,"AM":0,"x":82.841,"y":39.7,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_2_","EN":0},"TI":3113,"AM":0,"x":33.408,"y":40.451,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15E_2_","EN":0},"TI":3114,"AM":0,"x":56.836,"y":40.487,"w":10.756,"h":0.833,"PL":{"V":[null,"HY","MQ","MM","S/L"],"D":[" ","HY","MQ","MM","S/L"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_2_","EN":0},"TI":3115,"AM":0,"x":82.994,"y":40.519,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L15B3","EN":0},"TI":3116,"AM":0,"x":23.66,"y":41.233,"w":9.694,"h":0.833,"MV":"mm/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C_3_","EN":0},"TI":3117,"AM":0,"x":33.462,"y":41.206,"w":14.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G_3_","EN":0},"TI":3118,"AM":0,"x":82.974,"y":41.247,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":3119,"AM":1024,"x":86.625,"y":42.75,"w":12.375,"h":0.833,"TU":"Part 4. Summary (see instructions). Line 21. Listed property. Enter amount from line 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":3120,"AM":1024,"x":86.625,"y":44.25,"w":12.375,"h":0.833,"TU":"Line 22. Total. Add amounts from line 12, lines 14 through 17, lines 19 and 20 in column (g), and line 21. Enter here and on the appropriate lines of your return. Partnerships and S corporations - see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":3121,"AM":0,"x":70.463,"y":45.75,"w":12.169,"h":0.833,"TU":"Line 23. For assets shown above and placed in service during the current year, enter the portion of the basis attributable to section 263 A costs."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GAAX","EN":0},"TI":3062,"AM":0,"x":79.2,"y":27.751,"w":1.375,"h":0.833}]}]},{"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.147,"y":6.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":92.882},{"oc":"#221f1f","x":58.165,"y":7.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":58.165,"y":6.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":7.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":9.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.19,"y":11.251,"w":0.75,"l":92.836},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":12.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.521,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.946,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":13.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":8.748},{"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":6.146,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.521,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.946,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":18.522,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":33.372,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":15.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":58.122,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":16.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":18.522,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":25.947,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":33.372,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.747,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":65.547,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":65.547,"y":17.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.497,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":39.559,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.559,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.559,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":49.459,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":59.359,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":69.259,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":79.159,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":89.059,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":39.559,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":49.459,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":59.359,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":69.259,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.159,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.059,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":39.546,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.446,"y":27.755,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.396,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.346,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.296,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.246,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.196,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.096,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.046,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":93.996,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.159,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":30.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":39.559,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":44.509,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.459,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":54.409,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.359,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.296,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":69.259,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.209,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":79.146,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":30.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.146,"y":30.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":33.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":89.059,"y":33.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":33.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":34.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":34.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":36.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":36.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":36.754,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":36.754,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":38.254,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":38.254,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":39.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":39.004,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":39.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.147,"y":39.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.897,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":30.897,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.272,"y":40.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":43.272,"y":42.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.597,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.972,"y":40.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":72.972,"y":42.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":42.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":43.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":44.251,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.897,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":30.897,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.272,"y":43.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":43.272,"y":44.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.597,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.972,"y":43.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":72.972,"y":44.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":44.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":45.001,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.896,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":43.271,"y":45.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":60.596,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.971,"y":45.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":82.871,"y":45.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":63.115,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.54,"y":6.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":58.165,"y":6.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":18.565,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":25.99,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":33.415,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":45.79,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":65.59,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":18.565,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":18.564,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.989,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":18.564,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.989,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":74.252,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":18.565,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":74.252,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":14.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":39.602,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.302,"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":89.102,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":39.602,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"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":79.202,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":69.302,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.102,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"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":89.102,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.589,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.489,"y":26.99,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.439,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.389,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.339,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.289,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.239,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.189,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.139,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.089,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.039,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":84.152,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"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":59.402,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.189,"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":89.102,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.052,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"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":64.339,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.189,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.052,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.102,"y":34.486,"w":0.75,"l":1.534},{"oc":"#221f1f","x":94.052,"y":34.486,"w":0.75,"l":1.534},{"oc":"#221f1f","x":89.102,"y":35.985,"w":0.75,"l":0.784},{"oc":"#221f1f","x":94.052,"y":35.985,"w":0.75,"l":0.784},{"oc":"#221f1f","x":89.102,"y":36.736,"w":0.75,"l":1.534},{"oc":"#221f1f","x":94.052,"y":36.736,"w":0.75,"l":1.534},{"oc":"#221f1f","x":89.102,"y":38.235,"w":0.75,"l":0.784},{"oc":"#221f1f","x":94.052,"y":38.235,"w":0.75,"l":0.784},{"oc":"#221f1f","x":89.102,"y":38.986,"w":0.75,"l":0.784},{"oc":"#221f1f","x":30.94,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":43.315,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.64,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.015,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":30.94,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":43.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.939,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.314,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.639,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.014,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":45.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":45.736,"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.385,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":9.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":15.001,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":89.102,"y":39.001,"w":9.9,"h":0.753,"clr":-1},{"oc":"#221f1f","x":6.19,"y":39.751,"w":6.831,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.126,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204562%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.802,"y":2.072,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.234,"y":2.072,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"x":6.649,"y":2.822,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.673,"y":2.822,"w":7.891000000000002,"clr":-1,"A":"left","R":[{"T":"Listed%20Property%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.682,"y":3.51,"w":18.728000000000005,"clr":-1,"A":"left","R":[{"T":"entertainment%2C%20recreation%2C%20or%20amusement.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":4.29,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.83,"y":4.29,"w":46.13599999999996,"clr":-1,"A":"left","R":[{"T":"For%20any%20vehicle%20for%20which%20you%20are%20using%20the%20standard%20mileage%20rate%20or%20deducting%20lease%20expense%2C%20complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.257,"y":4.29,"w":2.056,"clr":-1,"A":"left","R":[{"T":"only","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":86.682,"y":4.29,"w":2.1870000000000003,"clr":-1,"A":"left","R":[{"T":"24a%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.666,"y":4.978,"w":38.28600000000001,"clr":-1,"A":"left","R":[{"T":"24b%2C%20columns%20(a)%20through%20(c)%20of%20Section%20A%2C%20all%20of%20Section%20B%2C%20and%20Section%20C%20if%20applicable.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.192,"y":5.84,"w":27.558999999999994,"clr":-1,"A":"left","R":[{"T":"Section%20A%20-%20Depreciation%20and%20Other%20Information%20(Caution%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.082,"y":5.84,"w":25.278000000000006,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20for%20limits%20for%20passenger%20automobiles.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.528,"y":5.84,"w":0.296,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.732,"y":6.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"24a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":6.59,"w":32.158,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20the%20business%2Finvestment%20use%20claimed%3F","S":-1,"TS":[0,10.379999999999999,0,0]}]},{"oc":"#221f1f","x":55.027,"y":6.608,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.874,"y":6.608,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":6.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"24b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.815,"y":6.59,"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.1,0,0]}]},{"oc":"#221f1f","x":90.915,"y":6.608,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":95.864,"y":6.608,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":11.426,"y":7.448,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.59,"y":7.973000000000001,"w":9.203999999999999,"clr":-1,"A":"left","R":[{"T":"Type%20of%20property%20(list","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.63,"y":8.498,"w":5.814000000000001,"clr":-1,"A":"left","R":[{"T":"vehicles%20first)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.304,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":18.784,"y":7.973000000000001,"w":5.667999999999999,"clr":-1,"A":"left","R":[{"T":"Date%20placed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.487,"y":8.498,"w":0.778,"clr":-1,"A":"left","R":[{"T":"in","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.757,"y":8.498,"w":3.166,"clr":-1,"A":"left","R":[{"T":"service","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.821,"y":7.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":27.076,"y":7.711,"w":4.389,"clr":-1,"A":"left","R":[{"T":"Business%2F","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":25.791,"y":8.236,"w":4.891,"clr":-1,"A":"left","R":[{"T":"investment","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":31.388,"y":8.236,"w":1.593,"clr":-1,"A":"left","R":[{"T":"use","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":26.715,"y":8.761,"w":5.056,"clr":-1,"A":"left","R":[{"T":"percentage","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":38.629,"y":7.711,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":34.227,"y":8.236,"w":5.889000000000001,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.647,"y":8.236,"w":2.352,"clr":-1,"A":"left","R":[{"T":"basis","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.026,"y":7.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":45.857,"y":7.711,"w":9.759,"clr":-1,"A":"left","R":[{"T":"Basis%20for%20depreciation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.045,"y":8.236,"w":9.447000000000001,"clr":-1,"A":"left","R":[{"T":"(business%2Finvestment","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.332,"y":8.761,"w":3.982,"clr":-1,"A":"left","R":[{"T":"use%20only)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.071,"y":7.448,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":59.266,"y":7.973000000000001,"w":4.203,"clr":-1,"A":"left","R":[{"T":"Recovery","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.911,"y":8.498,"w":2.852,"clr":-1,"A":"left","R":[{"T":"period","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.947,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(g)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":67.398,"y":7.973000000000001,"w":3.779,"clr":-1,"A":"left","R":[{"T":"Method%2F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.595,"y":8.498,"w":5.112,"clr":-1,"A":"left","R":[{"T":"Convention","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.477,"y":7.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(h)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":76.781,"y":7.973000000000001,"w":5.667000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.493,"y":8.498,"w":4.483,"clr":-1,"A":"left","R":[{"T":"deduction","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.053,"y":7.448,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(i)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":87.261,"y":7.973000000000001,"w":3.352,"clr":-1,"A":"left","R":[{"T":"Elected","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.629,"y":7.973000000000001,"w":5.186999999999999,"clr":-1,"A":"left","R":[{"T":"section%20179","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.406,"y":8.498,"w":1.9260000000000002,"clr":-1,"A":"left","R":[{"T":"cost","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.731,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":9.54,"w":37.334999999999994,"clr":-1,"A":"left","R":[{"T":"Special%20depreciation%20allowance%20for%20qualified%20listed%20property%20placed%20in%20service%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.743,"y":10.227,"w":37.58399999999998,"clr":-1,"A":"left","R":[{"T":"the%20tax%20%20year%20and%20used%20more%20than%2050%25%20in%20a%20qualified%20business%20use%20(see%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.286,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":11.09,"w":25.822000000000003,"clr":-1,"A":"left","R":[{"T":"Property%20used%20more%20than%2050%25%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":11.84,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":12.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":13.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":14.09,"w":24.227000000000004,"clr":-1,"A":"left","R":[{"T":"Property%20used%2050%25%20or%20less%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.618,"y":14.84,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":14.801,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":31.618,"y":15.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":15.550999999999998,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":31.618,"y":16.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.476,"y":16.301,"w":2.081,"clr":-1,"A":"left","R":[{"T":"S%2FL%20%E2%80%93","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":6.731,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":17.09,"w":36.736999999999995,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(h)%2C%20lines%2025%20through%2027.%20Enter%20here%20and%20on%20line%2021%2C%20page%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.817,"y":17.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.286,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":17.84,"w":30.215,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(i)%2C%20line%2026.%20Enter%20here%20and%20on%20line%207%2C%20page%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.501,"y":17.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.709,"y":18.59,"w":20.17100000000001,"clr":-1,"A":"left","R":[{"T":"Section%20B%20-%20Information%20on%20Use%20of%20Vehicles","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":19.226,"w":56.11899999999992,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20section%20for%20vehicles%20used%20by%20a%20sole%20proprietor%2C%20partner%2C%20or%20other%20%E2%80%9Cmore%20than%205%25%20owner%2C%E2%80%9D%20or%20related%20person.%20If%20you","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":86.672,"y":19.226,"w":8.39,"clr":-1,"A":"left","R":[{"T":"%20provided%20vehicles%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.914,"w":56.361999999999945,"clr":-1,"A":"left","R":[{"T":"to%20your%20employees%2C%20first%20answer%20the%20questions%20in%20Section%20C%20to%20see%20if%20you%20meet%20an%20exception%20to%20completing%20this%20section%20for%20those","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":87.022,"y":19.914,"w":4.167,"clr":-1,"A":"left","R":[{"T":"%20vehicles.","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.54,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"30%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":21.54,"w":20.709,"clr":-1,"A":"left","R":[{"T":"Total%20business%2Finvestment%20miles%20driven%20during%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":9.649,"y":22.228,"w":4.13,"clr":-1,"A":"left","R":[{"T":"the%20year%20(","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":15.055,"y":22.228,"w":3.0549999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":19.31,"y":22.228,"w":11.968000000000002,"clr":-1,"A":"left","R":[{"T":"%20include%20commuting%20miles)%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":36.532,"y":22.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":43.601,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":41.862,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%201","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.479,"y":20.836,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.762,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%202","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.401,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":61.662,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%203","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.279,"y":20.836,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":71.562,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%204","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.201,"y":20.836,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":81.462,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%205","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.246,"y":20.836,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":91.362,"y":21.361,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%206","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.09,"w":20.153999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20commuting%20miles%20driven%20during%20the%20year","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.79,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"32%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.79,"w":16.745,"clr":-1,"A":"left","R":[{"T":"Total%20other%20personal%20(noncommuting)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":24.478,"w":5.631,"clr":-1,"A":"left","R":[{"T":"miles%20driven%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.378,"y":24.478,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"33%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":25.29,"w":17.504000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20miles%20driven%20during%20the%20year.%20Add%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":25.978,"w":8.837000000000002,"clr":-1,"A":"left","R":[{"T":"lines%2030%20through%2032%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":25.978,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.439,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.731,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.339,"y":26.75,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.618,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.239,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":65.518,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":70.139,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.418,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.039,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":85.318,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":89.939,"y":26.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.218,"y":26.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":26.79,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"34%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":26.79,"w":17.112000000000002,"clr":-1,"A":"left","R":[{"T":"Was%20the%20vehicle%20available%20for%20personal%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":27.478,"w":12.133000000000001,"clr":-1,"A":"left","R":[{"T":"use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.63,"y":27.478,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.681,"y":28.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"35%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.639,"y":28.29,"w":18.634,"clr":-1,"A":"left","R":[{"T":"Was%20the%20vehicle%20used%20primarily%20by%20a%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.636,"y":28.978,"w":15.576000000000006,"clr":-1,"A":"left","R":[{"T":"than%205%25%20owner%20or%20related%20person%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.812,"y":28.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.874,"y":28.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.681,"y":29.844,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.639,"y":29.844,"w":20.613000000000003,"clr":-1,"A":"left","R":[{"T":"Is%20another%20vehicle%20available%20for%20personal%20use%3F%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":20.339,"y":30.59,"w":41.567999999999984,"clr":-1,"A":"left","R":[{"T":"Section%20C%20-%20Questions%20for%20Employers%20Who%20Provide%20Vehicles%20for%20Use%20by%20Their%20Employees","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":31.29,"w":55.713999999999956,"clr":-1,"A":"left","R":[{"T":"Answer%20these%20questions%20to%20determine%20if%20you%20meet%20an%20exception%20to%20completing%20Section%20B%20for%20vehicles%20used%20by%20employees%20who%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.978,"w":26.42900000000001,"clr":-1,"A":"left","R":[{"T":"more%20than%205%25%20owners%20or%20related%20persons%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.732,"y":32.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":32.79,"w":49.38299999999998,"clr":-1,"A":"left","R":[{"T":"Do%20you%20maintain%20a%20written%20policy%20statement%20that%20prohibits%20all%20personal%20use%20of%20vehicles%2C%20including%20commuting%2C%20%20by","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.743,"y":33.478,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"your%20employees%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.445,"y":33.478,"w":42.65599999999997,"clr":-1,"A":"left","R":[{"T":"................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.952,"y":32.746,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.232,"y":32.746,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.731,"y":34.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":34.29,"w":49.363999999999976,"clr":-1,"A":"left","R":[{"T":"Do%20you%20maintain%20a%20written%20policy%20statement%20that%20prohibits%20personal%20use%20of%20vehicles%2C%20except%20commuting%2C%20by%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.735,"y":34.978,"w":47.59699999999995,"clr":-1,"A":"left","R":[{"T":"employees%3F%20%20See%20the%20instructions%20for%20vehicles%20used%20by%20corporate%20officers%2C%20directors%2C%20or%201%25%20or%20more%20owners%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.315,"y":34.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.377,"y":34.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":35.84,"w":28.32,"clr":-1,"A":"left","R":[{"T":"Do%20you%20treat%20all%20use%20of%20vehicles%20by%20employees%20as%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.439,"y":35.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":36.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":36.54,"w":49.08599999999996,"clr":-1,"A":"left","R":[{"T":"Do%20you%20provide%20more%20than%20five%20vehicles%20to%20your%20employees%2C%20obtain%20information%20from%20your%20employees%20about%20%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.731,"y":37.228,"w":25.246000000000006,"clr":-1,"A":"left","R":[{"T":"use%20of%20the%20vehicles%2C%20and%20retain%20the%20information%20received%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.244,"y":37.228,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":38.09,"w":45.82699999999998,"clr":-1,"A":"left","R":[{"T":"Do%20you%20meet%20the%20requirements%20concerning%20qualified%20automobile%20demonstration%20use%3F%20(See%20instructions.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.254,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.316,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.378,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.739,"y":38.84,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.865,"y":38.84,"w":44.080999999999996,"clr":-1,"A":"left","R":[{"T":"If%20your%20answer%20to%2037%2C%2038%2C%2039%2C%2040%2C%20or%2041%20is%20%E2%80%9CYes%2C%E2%80%9D%20do%20not%20complete%20Section%20B%20for%20the%20covered%20vehicles.","S":3,"TS":[0,12,0,0]}]},{"x":6.618,"y":39.572,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20VI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":39.572,"w":6.111000000000001,"clr":-1,"A":"left","R":[{"T":"Amortization","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":17.613,"y":40.711,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":12.934,"y":41.236,"w":8.944999999999999,"clr":-1,"A":"left","R":[{"T":"Description%20of%20costs","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.154,"y":40.448,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":32.132,"y":40.973,"w":7.889000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20amortization","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.083,"y":41.498,"w":2.982,"clr":-1,"A":"left","R":[{"T":"begins","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.026,"y":40.711,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":46.324,"y":41.236,"w":5.314,"clr":-1,"A":"left","R":[{"T":"Amortizable","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.052,"y":41.236,"w":3.3910000000000005,"clr":-1,"A":"left","R":[{"T":"amount","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.854,"y":40.711,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":63.001,"y":41.236,"w":2.426,"clr":-1,"A":"left","R":[{"T":"Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.254,"y":41.236,"w":3.2409999999999997,"clr":-1,"A":"left","R":[{"T":"section","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.013,"y":40.186,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":74.329,"y":40.711,"w":5.6290000000000004,"clr":-1,"A":"left","R":[{"T":"Amortization","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.287,"y":41.236,"w":4.037,"clr":-1,"A":"left","R":[{"T":"period%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.673,"y":41.761,"w":5.056,"clr":-1,"A":"left","R":[{"T":"percentage","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.152,"y":40.711,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.992,"y":41.236,"w":7.11,"clr":-1,"A":"left","R":[{"T":"Amortization%20for","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.881,"y":41.236,"w":3.778,"clr":-1,"A":"left","R":[{"T":"this%20year","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.731,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":42.59,"w":34.541999999999994,"clr":-1,"A":"left","R":[{"T":"Amortization%20of%20costs%20that%20begins%20during%20your%202013%20tax%20year%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.731,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":44.84,"w":26.558999999999997,"clr":-1,"A":"left","R":[{"T":"Amortization%20of%20costs%20that%20began%20before%20your%202013%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":44.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.891,"y":45.59,"w":30.043000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20column%20(f).%20See%20the%20instructions%20for%20where%20to%20report%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":45.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4562","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.818,"y":2.822,"w":38.54499999999998,"clr":-1,"A":"left","R":[{"T":"(Include%20automobiles%2C%20certain%20other%20vehicles%2C%20certain%20computers%2C%20and%20property%20used%20for%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.731,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.739,"y":45.59,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Total.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":83.241,"y":31.29,"w":3.3340000000000005,"clr":-1,"A":"left","R":[{"T":"not%20are","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":3122,"AM":1024,"x":19.69,"y":2.125,"w":39.501,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":3123,"AM":1024,"x":62.501,"y":2.079,"w":24.892,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BONUS25","EN":0},"TI":3128,"AM":0,"x":74.25,"y":10.5,"w":12.375,"h":0.833,"TU":"Line 25. Special depreciation allowance for qualified listed property placed in service during the tax year and used more than 50 percent in a qualified business use (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_1_","EN":0},"TI":3129,"AM":0,"x":6.089,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_1_","EN":0},"TI":3130,"AM":0,"x":18.464,"y":12.018,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_1_","EN":0},"TI":3131,"AM":0,"x":25.889,"y":12.018,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_1_","EN":0},"TI":3132,"AM":0,"x":33.314,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_1_","EN":0},"TI":3133,"AM":0,"x":45.689,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_1_","EN":0},"TI":3134,"AM":0,"x":58.064,"y":12.018,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_1_","EN":0},"TI":3135,"AM":0,"x":65.677,"y":11.989,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_1_","EN":0},"TI":3136,"AM":0,"x":74.151,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_1_","EN":0},"TI":3137,"AM":0,"x":86.526,"y":12.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_2_","EN":0},"TI":3138,"AM":0,"x":6.089,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_2_","EN":0},"TI":3139,"AM":0,"x":18.349,"y":12.752,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_2_","EN":0},"TI":3140,"AM":0,"x":26.053,"y":12.779,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_2_","EN":0},"TI":3141,"AM":0,"x":33.265,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_2_","EN":0},"TI":3142,"AM":0,"x":45.64,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_2_","EN":0},"TI":3143,"AM":0,"x":58.015,"y":12.779,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_2_","EN":0},"TI":3144,"AM":0,"x":65.546,"y":12.798,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_2_","EN":0},"TI":3145,"AM":0,"x":74.103,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_2_","EN":0},"TI":3146,"AM":0,"x":86.478,"y":12.779,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23A_3_","EN":0},"TI":3147,"AM":0,"x":6.121,"y":13.534,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L23_L23B_3_","EN":0},"TI":3148,"AM":0,"x":18.254,"y":13.534,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23C_3_","EN":0},"TI":3149,"AM":0,"x":26.108,"y":13.506,"w":5.791,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23D_3_","EN":0},"TI":3150,"AM":0,"x":33.268,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23E_3_","EN":0},"TI":3151,"AM":0,"x":45.643,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23F_3_","EN":0},"TI":3152,"AM":0,"x":58.018,"y":13.506,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L23_L23G_3_","EN":0},"TI":3153,"AM":0,"x":65.549,"y":13.512,"w":8.004,"h":0.833,"PL":{"V":[null,"200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"],"D":[" ","200 DB-HY","200 DB-MM","200 DB-MQ","200 DB-S/L","200 DB-PRE","150 DB-HY","150 DB-MM","150 DB-MQ","150 DB-S/L","150 DB-PRE","DB-HY","DB-MM","DB-MQ","DB-S/L","DB-PRE","S/L-HY","S/L-MM","S/L-MQ","S/L-S/L","S/L-PRE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23H_3_","EN":0},"TI":3154,"AM":0,"x":74.105,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23_L23I_3_","EN":0},"TI":3155,"AM":0,"x":86.48,"y":13.506,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_1_","EN":0},"TI":3156,"AM":0,"x":6.089,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_1_","EN":0},"TI":3157,"AM":0,"x":18.464,"y":15.018,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_1_","EN":0},"TI":3158,"AM":0,"x":25.889,"y":15.018,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_1_","EN":0},"TI":3159,"AM":0,"x":33.314,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_1_","EN":0},"TI":3160,"AM":0,"x":45.689,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_1_","EN":0},"TI":3161,"AM":0,"x":58.064,"y":15.018,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_1_","EN":0},"TI":3162,"AM":0,"x":69.674,"y":14.979,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_1_","EN":0},"TI":3163,"AM":0,"x":74.151,"y":15.018,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_2_","EN":0},"TI":3164,"AM":0,"x":6.098,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_2_","EN":0},"TI":3165,"AM":0,"x":18.473,"y":15.773,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_2_","EN":0},"TI":3166,"AM":0,"x":25.898,"y":15.773,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_2_","EN":0},"TI":3167,"AM":0,"x":33.323,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_2_","EN":0},"TI":3168,"AM":0,"x":45.698,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_2_","EN":0},"TI":3169,"AM":0,"x":58.073,"y":15.773,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_2_","EN":0},"TI":3170,"AM":0,"x":69.674,"y":15.716,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_2_","EN":0},"TI":3171,"AM":0,"x":74.161,"y":15.773,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24A_3_","EN":0},"TI":3172,"AM":0,"x":6.058,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L24_L24B_3_","EN":0},"TI":3173,"AM":0,"x":18.433,"y":16.513,"w":7.425,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24C_3_","EN":0},"TI":3174,"AM":0,"x":25.858,"y":16.513,"w":5.799,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24D_3_","EN":0},"TI":3175,"AM":0,"x":33.283,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24E_3_","EN":0},"TI":3176,"AM":0,"x":45.658,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24_L24F_3_","EN":0},"TI":3177,"AM":0,"x":58.033,"y":16.513,"w":7.425,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24G_3_","EN":0},"TI":3178,"AM":0,"x":69.63,"y":16.487,"w":4.007,"h":0.833,"PL":{"V":[null,"HY","MM","MQ","S/L","PRE"],"D":[" ","HY","MM","MQ","S/L","PRE"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24_L24H_3_","EN":0},"TI":3179,"AM":0,"x":74.121,"y":16.513,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":3180,"AM":1024,"x":74.25,"y":17.25,"w":12.375,"h":0.833,"TU":"Line 28. Add amounts in column (h), lines 25 through 27. Enter here and on line 21, page 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":3181,"AM":1024,"x":86.625,"y":18,"w":12.375,"h":0.833,"TU":"Line 29. Add amounts in column (i), line 26. Enter here and on line 7, page 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_1_","EN":0},"TI":3182,"AM":0,"x":39.499,"y":22.5,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_2_","EN":0},"TI":3183,"AM":0,"x":49.427,"y":22.553,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_3_","EN":0},"TI":3184,"AM":0,"x":59.214,"y":22.511,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_4_","EN":0},"TI":3185,"AM":0,"x":69.151,"y":22.468,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_5_","EN":0},"TI":3186,"AM":0,"x":79.013,"y":22.434,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L27_6_","EN":0},"TI":3187,"AM":0,"x":89.1,"y":22.454,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_1_","EN":0},"TI":3188,"AM":0,"x":39.499,"y":23.25,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_2_","EN":0},"TI":3189,"AM":0,"x":49.427,"y":23.303,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_3_","EN":0},"TI":3190,"AM":0,"x":59.214,"y":23.261,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_4_","EN":0},"TI":3191,"AM":0,"x":69.151,"y":23.218,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_5_","EN":0},"TI":3192,"AM":0,"x":79.013,"y":23.183,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L28_6_","EN":0},"TI":3193,"AM":0,"x":89.1,"y":23.203,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_1_","EN":0},"TI":3194,"AM":0,"x":39.568,"y":24.074,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_2_","EN":0},"TI":3195,"AM":0,"x":49.496,"y":24.064,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_3_","EN":0},"TI":3196,"AM":0,"x":59.283,"y":24.084,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_4_","EN":0},"TI":3197,"AM":0,"x":69.048,"y":24.042,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_5_","EN":0},"TI":3198,"AM":0,"x":78.91,"y":24.007,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L29_6_","EN":0},"TI":3199,"AM":0,"x":88.997,"y":24.027,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_1_","EN":0},"TI":3200,"AM":0,"x":39.499,"y":25.583,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_2_","EN":0},"TI":3201,"AM":0,"x":49.427,"y":25.574,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_3_","EN":0},"TI":3202,"AM":0,"x":59.214,"y":25.531,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_4_","EN":0},"TI":3203,"AM":0,"x":69.151,"y":25.551,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_5_","EN":0},"TI":3204,"AM":0,"x":79.013,"y":25.517,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILES_L30_6_","EN":0},"TI":3205,"AM":0,"x":89.1,"y":25.537,"w":9.9,"h":1.417},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39A_1_","EN":0},"TI":3252,"AM":0,"x":6.06,"y":43.472,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L39_L39B_1_","EN":0},"TI":3253,"AM":0,"x":30.81,"y":43.472,"w":12.375,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39C_1_","EN":0},"TI":3254,"AM":0,"x":43.185,"y":43.472,"w":17.325,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39D_1_","EN":0},"TI":3255,"AM":0,"x":60.51,"y":43.472,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39E_1_","EN":0},"TI":3256,"AM":0,"x":72.885,"y":43.472,"w":5.333,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39E2_1_","EN":0},"TI":3257,"AM":0,"x":78.458,"y":43.467,"w":4.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39F_1_","EN":0},"TI":3258,"AM":0,"x":82.785,"y":43.472,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39A_2_","EN":0},"TI":3259,"AM":0,"x":6.193,"y":44.232,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L39_L39B_2_","EN":0},"TI":3260,"AM":0,"x":30.943,"y":44.232,"w":12.375,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39C_2_","EN":0},"TI":3261,"AM":0,"x":43.318,"y":44.232,"w":17.325,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39D_2_","EN":0},"TI":3262,"AM":0,"x":60.643,"y":44.232,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39E_2_","EN":0},"TI":3263,"AM":0,"x":73.018,"y":44.232,"w":5.333,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39_L39E2_2_","EN":0},"TI":3264,"AM":0,"x":78.59,"y":44.227,"w":4.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39_L39F_2_","EN":0},"TI":3265,"AM":0,"x":82.918,"y":44.232,"w":16.087,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":3266,"AM":0,"x":82.912,"y":45,"w":16.088,"h":0.833,"TU":"Line 43. Amortization of costs that began before your 2013 tax year. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":3267,"AM":1024,"x":82.912,"y":45.75,"w":16.088,"h":0.833,"TU":"Line 44. Total. Add amounts in column (f). See the instructions for where to report. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22AY","EN":0},"TI":3124,"AM":0,"x":53.154,"y":6.681,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22AN","EN":0},"TI":3125,"AM":0,"x":58.083,"y":6.704,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L22ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22BY","EN":0},"TI":3126,"AM":0,"x":89.131,"y":6.669,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22BN","EN":0},"TI":3127,"AM":0,"x":94.017,"y":6.676,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L22BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":3206,"AM":0,"x":41.59,"y":27.675,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":3207,"AM":0,"x":46.482,"y":27.684,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":3208,"AM":0,"x":51.445,"y":27.643,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":3209,"AM":0,"x":56.336,"y":27.652,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":3210,"AM":0,"x":61.415,"y":27.659,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":3211,"AM":0,"x":66.307,"y":27.668,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":3212,"AM":0,"x":71.27,"y":27.626,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":3213,"AM":0,"x":76.161,"y":27.635,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":3214,"AM":0,"x":80.86,"y":27.679,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":3215,"AM":0,"x":85.752,"y":27.688,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31Y","EN":0},"TI":3216,"AM":0,"x":90.715,"y":27.646,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31N","EN":0},"TI":3217,"AM":0,"x":95.606,"y":27.655,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A251RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":3218,"AM":0,"x":41.54,"y":28.991,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":3219,"AM":0,"x":46.482,"y":28.991,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":3220,"AM":0,"x":51.395,"y":28.959,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":3221,"AM":0,"x":56.336,"y":28.959,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":3222,"AM":0,"x":61.366,"y":28.975,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":3223,"AM":0,"x":66.307,"y":28.975,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":3224,"AM":0,"x":71.221,"y":28.942,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":3225,"AM":0,"x":76.161,"y":28.942,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":3226,"AM":0,"x":80.81,"y":28.995,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":3227,"AM":0,"x":85.752,"y":28.995,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32Y","EN":0},"TI":3228,"AM":0,"x":90.665,"y":28.962,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32N","EN":0},"TI":3229,"AM":0,"x":95.606,"y":28.962,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A253RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3230,"AM":0,"x":41.521,"y":29.937,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3231,"AM":0,"x":46.556,"y":29.917,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3232,"AM":0,"x":51.375,"y":29.904,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3233,"AM":0,"x":56.411,"y":29.884,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3234,"AM":0,"x":61.346,"y":29.92,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3235,"AM":0,"x":66.382,"y":29.9,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3236,"AM":0,"x":71.2,"y":29.888,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3237,"AM":0,"x":76.236,"y":29.868,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_4_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3238,"AM":0,"x":80.791,"y":29.94,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3239,"AM":0,"x":85.826,"y":29.92,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_5_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33Y","EN":0},"TI":3240,"AM":0,"x":90.645,"y":29.908,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33N","EN":0},"TI":3241,"AM":0,"x":95.681,"y":29.95,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"A254RB_6_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34Y","EN":0},"TI":3242,"AM":0,"x":90.873,"y":33.764,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34N","EN":0},"TI":3243,"AM":0,"x":95.589,"y":33.736,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L34RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35Y","EN":0},"TI":3244,"AM":0,"x":91.153,"y":35.226,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35N","EN":0},"TI":3245,"AM":0,"x":95.664,"y":35.261,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L35RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L36Y","EN":0},"TI":3246,"AM":0,"x":91.247,"y":36.05,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L36N","EN":0},"TI":3247,"AM":0,"x":95.739,"y":36.023,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L36RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L37Y","EN":0},"TI":3248,"AM":0,"x":91.15,"y":37.52,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L37N","EN":0},"TI":3249,"AM":0,"x":95.57,"y":37.486,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L37RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L38Y","EN":0},"TI":3250,"AM":0,"x":91.3,"y":38.326,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L38N","EN":0},"TI":3251,"AM":0,"x":95.739,"y":38.31,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L38RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4684.content.txt b/test/data/fd/form/F4684.content.txt new file mode 100755 index 00000000..2a69bcc7 --- /dev/null +++ b/test/data/fd/form/F4684.content.txt @@ -0,0 +1,160 @@ +Form +4684 +Department of the Treasury +Internal Revenue Service +Casualties and Thefts +a + +a + +Attach to your tax return. +a + +Use a separate Form 4684 for each casualty or theft. +OMB No. 1545-0177 +20 +13 +Attachment +Sequence No. +26 +Name(s) shown on tax return +Identifying number +SECTION A, Personal Use Property +(Use this section to report casualties and thefts of property + not +used in a trade + +or business or for income-producing purposes.) +1 +Description of properties (show type, location, and date acquired for each property). Use a separate line for each property los +t or damaged from +the same casualty or theft. +Property + A +Property + B +Property + C +Property + D +Properties +A +B +C +D +2 +Cost or other basis of each property +...... +2 +3 +Insurance or other reimbursement (whether or not you +filed a claim) (see instructions) +........ +3 +Note: +If line 2 is + +more + +than line 3, skip line 4. +4 +Gain from casualty or theft. If line 3 is +more + than line 2, +enter the difference here and skip lines 5 through 9 for +that column. See instructions if line 3 includes insurance +or other reimbursement you did not claim, or you +received payment for your loss in a later tax year . . +4 +5 +Fair market value +before + casualty or theft +.... +5 +6 +Fair market value +after + casualty or theft +..... +6 +7 +Subtract line 6 from line 5 +......... +7 +8 +Enter the +smaller + of line 2 or line 7 +...... +8 +9 +Subtract line 3 from line 8. If zero or less, enter -0- . . +9 +10 +Casualty or theft loss. Add the amounts on line 9 in columns A through D +............. +10 +11 +Enter the +smaller + of line 10 or $100 +........................ +11 +12 +Subtract line 11 from line 10 +.......................... +12 +Caution: +Use only one Form 4684 for lines 13 through 18. +13 +Add the amounts on line 12 of all Forms 4684 +..................... +13 +14 +Add the amounts on line 4 of all Forms 4684 +...................... +14 +15 +• If line 14 is +more + than line 13, enter the difference here and on Schedule D. +Do not + + +complete the rest of this section (see instructions). +• If line 14 is +less + than line 13, enter -0- here and go to line 16. +• If line 14 is +equal + to line 13, enter -0- here. +Do not + complete the rest of this section. +} +....... +15 +16 +If line 14 is +less + than line 13, enter the difference +.................... +16 +17 +Enter 10% of your adjusted gross income from Form 1040, line 38, or Form 1040NR, line 37. Estates and trusts, see +instructions +............................... +17 +18 +Subtract line 17 from line 16. If zero or less, enter -0-. Also enter the result on Schedule A (Form 1040), line 20, or +Form 1040NR, Schedule A, line 6. Estates and trusts, enter the result on the “Other deductions” line of your tax +return +................................. +18 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 12997O +Form +4684 + (2013) +Information about Form 4684 and its separate instructions is at www.irs.gov/form4684. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4684.fields.json b/test/data/fd/form/F4684.fields.json new file mode 100755 index 00000000..1e254ab3 --- /dev/null +++ b/test/data/fd/form/F4684.fields.json @@ -0,0 +1 @@ +[{"id":"DESCRIP","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1_1_","type":"alpha","calc":false,"value":""},{"id":"A215_DATE_1_","type":"date","calc":false,"value":""},{"id":"L1_2_","type":"alpha","calc":false,"value":""},{"id":"A215_DATE_2_","type":"date","calc":false,"value":""},{"id":"L1_3_","type":"alpha","calc":false,"value":""},{"id":"A215_DATE_3_","type":"date","calc":false,"value":""},{"id":"L1_4_","type":"alpha","calc":false,"value":""},{"id":"A215_DATE_4_","type":"date","calc":false,"value":""},{"id":"A94_L2_1_","type":"number","calc":false,"value":""},{"id":"A94_L2_2_","type":"number","calc":false,"value":""},{"id":"A94_L2_3_","type":"number","calc":false,"value":""},{"id":"A94_L2_4_","type":"number","calc":false,"value":""},{"id":"A95_L3_1_","type":"number","calc":false,"value":""},{"id":"A95_L3_2_","type":"number","calc":false,"value":""},{"id":"A95_L3_3_","type":"number","calc":false,"value":""},{"id":"A95_L3_4_","type":"number","calc":false,"value":""},{"id":"A96_L4_1_","type":"number","calc":true,"value":""},{"id":"A96_L4_2_","type":"number","calc":true,"value":""},{"id":"A96_L4_3_","type":"number","calc":true,"value":""},{"id":"A96_L4_4_","type":"number","calc":true,"value":""},{"id":"A97_L5_1_","type":"number","calc":false,"value":""},{"id":"A97_L5_2_","type":"number","calc":false,"value":""},{"id":"A97_L5_3_","type":"number","calc":false,"value":""},{"id":"A97_L5_4_","type":"number","calc":false,"value":""},{"id":"A98_L6_1_","type":"number","calc":false,"value":""},{"id":"A98_L6_2_","type":"number","calc":false,"value":""},{"id":"A98_L6_3_","type":"number","calc":false,"value":""},{"id":"A98_L6_4_","type":"number","calc":false,"value":""},{"id":"A99_L7_1_","type":"number","calc":true,"value":""},{"id":"A99_L7_2_","type":"number","calc":true,"value":""},{"id":"A99_L7_3_","type":"number","calc":true,"value":""},{"id":"A99_L7_4_","type":"number","calc":true,"value":""},{"id":"A100_L8_1_","type":"number","calc":true,"value":""},{"id":"A100_L8_2_","type":"number","calc":true,"value":""},{"id":"A100_L8_3_","type":"number","calc":true,"value":""},{"id":"A100_L8_4_","type":"number","calc":true,"value":""},{"id":"A101_L9_1_","type":"number","calc":true,"value":""},{"id":"A101_L9_2_","type":"number","calc":true,"value":""},{"id":"A101_L9_3_","type":"number","calc":true,"value":""},{"id":"A101_L9_4_","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""},{"id":"Text1","type":"alpha","calc":true,"value":"Form 4684 page 2"},{"id":"Add_F4684P2","type":"link","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4684.json b/test/data/fd/form/F4684.json new file mode 100755 index 00000000..6e607a8c --- /dev/null +++ b/test/data/fd/form/F4684.json @@ -0,0 +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":20.954,"y":5.251,"w":1.5,"l":63.242},{"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":71.861},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":71.861},{"oc":"#221f1f","x":77.922,"y":5.251,"w":1.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":6.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":17.284,"y":10.501,"w":0.75,"l":81.761},{"oc":"#221f1f","x":17.284,"y":11.251,"w":0.75,"l":81.761},{"oc":"#221f1f","x":17.284,"y":12.001,"w":0.75,"l":81.761},{"oc":"#221f1f","x":17.284,"y":12.751,"w":0.75,"l":81.761},{"oc":"#221f1f","x":49.459,"y":12.751,"w":0.75,"l":49.586},{"oc":"#221f1f","x":49.459,"y":13.486,"w":0.75,"l":49.586},{"oc":"#221f1f","x":49.459,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.79,"y":15.001,"w":0.75,"l":3.713},{"oc":"#221f1f","x":45.79,"y":14.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":49.459,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":16.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":20.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":20.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":20.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":20.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":21.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":21.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":21.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":21.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":49.459,"y":21.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":58.122,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":21.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":70.497,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":74.209,"y":21.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":21.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":45.747,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":49.459,"y":23.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":58.122,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":23.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":70.497,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":74.209,"y":23.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":23.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":45.747,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":24.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":24.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":24.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":25.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":26.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":27.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":28.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":30.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":32.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":33.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":36.001,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":36.001,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":36.001,"w":1.5,"l":44.636},{"oc":"#221f1f","x":86.584,"y":36.001,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.066},{"oc":"#221f1f","x":21.04,"y":3.193,"w":1.5,"l":0.781},{"oc":"#221f1f","x":21.04,"y":3.735,"w":1.5,"l":0.781},{"oc":"#221f1f","x":21.04,"y":4.485,"w":1.5,"l":0.797},{"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.531},{"oc":"#221f1f","x":77.965,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":49.502,"y":12.735,"w":0.75,"l":0.766},{"oc":"#221f1f","x":49.502,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":45.79,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":14.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":45.79,"y":14.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":58.165,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":86.627,"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":49.502,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.79,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":49.502,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":45.79,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":58.165,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":70.54,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.915,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.627,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.502,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":86.627,"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":49.502,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":45.79,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":58.165,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":49.502,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":49.502,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":45.79,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":58.165,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":49.502,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":70.54,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":86.627,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":86.627,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":26.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":26.235,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":86.627,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":86.627,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":28.485,"w":0.75,"l":1.531},{"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":86.627,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":33.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":82.915,"y":33.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":45.79,"y":17.251,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":45.79,"y":16.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":30.001,"w":3.713,"h":1.5,"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.224,"clr":-1,"A":"left","R":[{"T":"4684","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.776,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.301,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.628,"y":2.186,"w":10.336000000000002,"clr":-1,"A":"left","R":[{"T":"Casualties%20and%20Thefts","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":23.178,"y":2.9,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.5140000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.839,"y":3.6079999999999997,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":34.488,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":35.902,"y":4.243,"w":24.787,"clr":-1,"A":"left","R":[{"T":"Use%20a%20separate%20Form%204684%20for%20each%20casualty%20or%20theft.","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-0177","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.8129999999999997,"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.322,"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.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":13.780000000000003,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20tax%20return","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":78.402,"y":4.938,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.635,"w":17.283,"clr":-1,"A":"left","R":[{"T":"SECTION%20A%2C%20Personal%20Use%20Property%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":33.104,"y":6.635,"w":26.522,"clr":-1,"A":"left","R":[{"T":"(Use%20this%20section%20to%20report%20casualties%20and%20thefts%20of%20property%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":71.984,"y":6.635,"w":2.389,"clr":-1,"A":"left","R":[{"T":"%20not%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":75.405,"y":6.635,"w":6.650000000000001,"clr":-1,"A":"left","R":[{"T":"used%20in%20a%20trade","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.26,"w":21.3,"clr":-1,"A":"left","R":[{"T":"or%20business%20or%20for%20income-producing%20purposes.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.65,"y":8.114,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":8.133,"w":55.89399999999994,"clr":-1,"A":"left","R":[{"T":"Description%20of%20properties%20(show%20type%2C%20location%2C%20and%20date%20acquired%20for%20each%20property).%20Use%20a%20separate%20line%20for%20each%20property%20los","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.506,"y":8.133,"w":8.614,"clr":-1,"A":"left","R":[{"T":"t%20or%20damaged%20from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":8.733,"w":11.855000000000002,"clr":-1,"A":"left","R":[{"T":"the%20same%20casualty%20or%20theft.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":9.545,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":9.545,"w":1,"clr":-1,"A":"left","R":[{"T":"%20A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":10.295,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":10.295,"w":1,"clr":-1,"A":"left","R":[{"T":"%20B","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":11.045,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":11.045,"w":1,"clr":-1,"A":"left","R":[{"T":"%20C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":11.795,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":11.795,"w":1,"clr":-1,"A":"left","R":[{"T":"%20D","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":70.164,"y":12.489,"w":4.946000000000001,"clr":-1,"A":"left","R":[{"T":"Properties","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.91,"y":13.34,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.27,"y":13.34,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.617,"y":13.34,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":91.992,"y":13.34,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.65,"y":14.108,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":14.108,"w":16.168000000000006,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis%20of%20each%20property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.752,"y":14.108,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":14.108,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":14.933,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":14.92,"w":24.375000000000004,"clr":-1,"A":"left","R":[{"T":"Insurance%20or%20other%20reimbursement%20(whether%20or%20not%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":15.608,"w":13.427000000000003,"clr":-1,"A":"left","R":[{"T":"filed%20a%20claim)%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":15.608,"w":12,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":15.608,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":16.358,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":13.549,"y":16.358,"w":4.1850000000000005,"clr":-1,"A":"left","R":[{"T":"If%20line%202%20is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.998,"y":16.358,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.423,"y":16.358,"w":9.855000000000002,"clr":-1,"A":"left","R":[{"T":"than%20line%203%2C%20skip%20line%204.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":17.108,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.145,"w":16.91,"clr":-1,"A":"left","R":[{"T":"Gain%20from%20casualty%20or%20theft.%20If%20line%203%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.798,"y":17.145,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":33.955,"y":17.145,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"%20than%20line%202%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.653,"y":17.708,"w":24.487000000000005,"clr":-1,"A":"left","R":[{"T":"enter%20the%20difference%20here%20and%20skip%20lines%205%20through%209%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":18.27,"w":25.377,"clr":-1,"A":"left","R":[{"T":"that%20column.%20See%20instructions%20if%20line%203%20includes%20insurance%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.649,"y":18.833,"w":22.118,"clr":-1,"A":"left","R":[{"T":"or%20other%20reimbursement%20you%20did%20not%20claim%2C%20or%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":19.395,"w":21.686999999999994,"clr":-1,"A":"left","R":[{"T":"received%20payment%20for%20your%20loss%20in%20a%20later%20tax%20year","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.003,"y":19.395,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.065,"y":19.395,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":19.358,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":20.108,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":20.108,"w":7.9460000000000015,"clr":-1,"A":"left","R":[{"T":"Fair%20market%20value%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.547,"y":20.108,"w":3.056,"clr":-1,"A":"left","R":[{"T":"before","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.626,"y":20.108,"w":7.464000000000001,"clr":-1,"A":"left","R":[{"T":"%20casualty%20or%20theft","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.877,"y":20.108,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":20.108,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":20.858,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":20.858,"w":7.9460000000000015,"clr":-1,"A":"left","R":[{"T":"Fair%20market%20value%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.547,"y":20.858,"w":2.167,"clr":-1,"A":"left","R":[{"T":"after","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.258,"y":20.858,"w":7.464000000000001,"clr":-1,"A":"left","R":[{"T":"%20casualty%20or%20theft","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.815,"y":20.858,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":20.858,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":21.608,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":21.608,"w":11.466000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206%20from%20line%205","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.565,"y":21.608,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":21.608,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":22.358,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":22.358,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.071,"y":22.358,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.706,"y":22.358,"w":7.631000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%202%20or%20line%207","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.752,"y":22.358,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":22.358,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":23.108,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.108,"w":22.447000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%208.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.003,"y":23.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.065,"y":23.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.014,"y":23.108,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":23.858,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.858,"w":32.52900000000001,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20theft%20loss.%20Add%20the%20amounts%20on%20line%209%20in%20columns%20A%20through%20D","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.44,"y":23.858,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":23.858,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":24.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":24.608,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.071,"y":24.608,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.534,"y":24.608,"w":8.318000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2010%20or%20%24100%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.752,"y":24.608,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":24.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":25.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":25.358,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2011%20from%20line%2010","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":25.358,"w":39,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":25.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.108,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.191,"y":26.108,"w":21.486000000000008,"clr":-1,"A":"left","R":[{"T":"Use%20only%20one%20Form%204684%20for%20lines%2013%20through%2018.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":26.858,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.858,"w":20.323000000000008,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%2012%20of%20all%20Forms%204684","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.94,"y":26.858,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":26.858,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":27.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":27.608,"w":19.767000000000007,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%204%20of%20all%20Forms%204684","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.877,"y":27.608,"w":34.5,"clr":-1,"A":"left","R":[{"T":"......................%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":27.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":28.483,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":28.483,"w":5.816000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2014%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.618,"y":28.483,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.684,"y":28.483,"w":26.304,"clr":-1,"A":"left","R":[{"T":"%20than%20line%2013%2C%20enter%20the%20difference%20here%20and%20on%20Schedule%20D.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":52.243,"y":28.483,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.799,"y":29.108,"w":22.467000000000006,"clr":-1,"A":"left","R":[{"T":"complete%20the%20rest%20of%20this%20section%20(see%20instructions).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.858,"w":5.816000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2014%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.274,"y":29.858,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"less","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.895,"y":29.858,"w":20.174000000000007,"clr":-1,"A":"left","R":[{"T":"%20than%20line%2013%2C%20enter%20-0-%20here%20and%20go%20to%20line%2016.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":30.608,"w":5.816000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2014%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.618,"y":30.608,"w":2.612,"clr":-1,"A":"left","R":[{"T":"equal","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.207,"y":30.608,"w":11.615000000000004,"clr":-1,"A":"left","R":[{"T":"%20to%20line%2013%2C%20enter%20-0-%20here.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.802,"y":30.608,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":39.183,"y":30.608,"w":14.911,"clr":-1,"A":"left","R":[{"T":"%20complete%20the%20rest%20of%20this%20section.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.34,"y":30.136,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,18,0,0]}]},{"oc":"#221f1f","x":67.815,"y":29.351,"w":11.998000000000001,"clr":-1,"A":"left","R":[{"T":".......","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.756,"y":29.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":31.357999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":31.357999999999997,"w":5.316000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2014%20is%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.93,"y":31.357999999999997,"w":2.224,"clr":-1,"A":"left","R":[{"T":"less%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.59,"y":31.357999999999997,"w":14.689000000000007,"clr":-1,"A":"left","R":[{"T":"%20than%20line%2013%2C%20enter%20the%20difference","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.002,"y":31.357999999999997,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":31.357999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":32.295,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":32.233,"w":52.01599999999995,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20of%20your%20adjusted%20gross%20income%20from%20Form%201040%2C%20line%2038%2C%20or%20Form%201040NR%2C%20line%2037.%20Estates%20and%20trusts%2C%20see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":32.858,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.315,"y":32.858,"w":46.5,"clr":-1,"A":"left","R":[{"T":"...............................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":32.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":33.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":33.858,"w":50.695999999999955,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2017%20from%20line%2016.%20If%20zero%20or%20less%2C%20enter%20-0-.%20Also%20enter%20the%20result%20on%20Schedule%20A%20(Form%201040)%2C%20line%2020%2C%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":34.483,"w":49.84699999999995,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20Schedule%20A%2C%20line%206.%20Estates%20and%20trusts%2C%20enter%20the%20result%20on%20the%20%E2%80%9COther%20deductions%E2%80%9D%20line%20of%20your%20tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":35.108,"w":2.9080000000000004,"clr":-1,"A":"left","R":[{"T":"return%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.19,"y":35.108,"w":49.5,"clr":-1,"A":"left","R":[{"T":".................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":35.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":35.858,"w":25.895000000000003,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.577,"y":35.876,"w":7.522,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012997O","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":35.885,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":35.885,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4684","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":35.885,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.782,"y":2.994,"w":41.40099999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%204684%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform4684.%20","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESCRIP","EN":0},"TI":3268,"AM":0,"x":40.702,"y":1.235,"w":10.975,"h":0.909},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3269,"AM":1024,"x":6.188,"y":5.875,"w":71.775,"h":0.875,"TU":"Page 1. Name(s) shown on tax return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3270,"AM":1024,"x":77.963,"y":5.875,"w":21.037,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1_1_","EN":0},"TI":3271,"AM":0,"x":17.325,"y":9.703,"w":50.908,"h":0.833,"TU":"Line 1. Property A. Description of properties (show type and location for each property). Use a separate line for each property lost or damaged from the same casualty or theft."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A215_DATE_1_","EN":0},"TI":3272,"AM":0,"x":69.546,"y":9.743,"w":24.948,"h":0.833,"TU":"Property A. Date acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1_2_","EN":0},"TI":3273,"AM":0,"x":17.261,"y":10.5,"w":51.036,"h":0.833,"TU":"Line 1. Property B. Description of properties (show type and location for each property). Use a separate line for each property lost or damaged from the same casualty or theft."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A215_DATE_2_","EN":0},"TI":3274,"AM":0,"x":69.61,"y":10.512,"w":24.884,"h":0.833,"TU":"Property B. Date acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1_3_","EN":0},"TI":3275,"AM":0,"x":17.389,"y":11.25,"w":50.972,"h":0.833,"TU":"Line 1. Property C. Description of properties (show type and location for each property). Use a separate line for each property lost or damaged from the same casualty or theft."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A215_DATE_3_","EN":0},"TI":3276,"AM":0,"x":69.61,"y":11.188,"w":24.884,"h":0.909,"TU":"Property C. Date acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1_4_","EN":0},"TI":3277,"AM":0,"x":17.325,"y":12,"w":50.972,"h":0.833,"TU":"Line 1. Property D. Description of properties (show type and location for each property). Use a separate line for each property lost or damaged from the same casualty or theft."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A215_DATE_4_","EN":0},"TI":3278,"AM":0,"x":69.61,"y":12.004,"w":24.948,"h":0.833,"TU":"Property D. Date acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A94_L2_1_","EN":0},"TI":3279,"AM":0,"x":49.5,"y":14.227,"w":8.662,"h":0.833,"TU":"Line 2. Cost or other basis of each property. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A94_L2_2_","EN":0},"TI":3280,"AM":0,"x":61.875,"y":14.25,"w":8.662,"h":0.833,"TU":"Line 2. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A94_L2_3_","EN":0},"TI":3281,"AM":0,"x":74.25,"y":14.25,"w":8.662,"h":0.833,"TU":"Line 2. Property C. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A94_L2_4_","EN":0},"TI":3282,"AM":0,"x":86.625,"y":14.25,"w":8.662,"h":0.833,"TU":"Line 2. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A95_L3_1_","EN":0},"TI":3283,"AM":0,"x":49.5,"y":15.75,"w":8.662,"h":0.833,"TU":"Line 3. Insurance or other reimbursement (whether or not you filed a claim) (see instructions). Property A. Note: If line 2 is more than line 3, skip line 4. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A95_L3_2_","EN":0},"TI":3284,"AM":0,"x":61.875,"y":15.75,"w":8.662,"h":0.833,"TU":"Line 3. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A95_L3_3_","EN":0},"TI":3285,"AM":0,"x":74.25,"y":15.75,"w":8.662,"h":0.833,"TU":"Line 3. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A95_L3_4_","EN":0},"TI":3286,"AM":0,"x":86.625,"y":15.75,"w":8.662,"h":0.833,"TU":"Line 3. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A96_L4_1_","EN":0},"TI":3287,"AM":1024,"x":49.5,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 4. Gain from casualty or theft. If line 3 is more than line 2, enter the difference here and skip lines 5 through 9 for that column. See instructions if line 3 includes insurance or other reimbursement you did not claim, or you received payment for your loss in a later tax year. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A96_L4_2_","EN":0},"TI":3288,"AM":1024,"x":61.875,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 4. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A96_L4_3_","EN":0},"TI":3289,"AM":1024,"x":74.25,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 4. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A96_L4_4_","EN":0},"TI":3290,"AM":1024,"x":86.625,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 4. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A97_L5_1_","EN":0},"TI":3291,"AM":0,"x":49.5,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 5. Fair market value before casualty or theft. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A97_L5_2_","EN":0},"TI":3292,"AM":0,"x":61.875,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 5. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A97_L5_3_","EN":0},"TI":3293,"AM":0,"x":74.25,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 5. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A97_L5_4_","EN":0},"TI":3294,"AM":0,"x":86.625,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 5. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A98_L6_1_","EN":0},"TI":3295,"AM":0,"x":49.5,"y":21,"w":8.662,"h":0.833,"TU":"Line 6. Fair market value after casualty or theft. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A98_L6_2_","EN":0},"TI":3296,"AM":0,"x":61.875,"y":21,"w":8.662,"h":0.833,"TU":"Line 6. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A98_L6_3_","EN":0},"TI":3297,"AM":0,"x":74.25,"y":21,"w":8.662,"h":0.833,"TU":"Line 6. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A98_L6_4_","EN":0},"TI":3298,"AM":0,"x":86.625,"y":21,"w":8.662,"h":0.833,"TU":"Line 6. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A99_L7_1_","EN":0},"TI":3299,"AM":1024,"x":49.5,"y":21.75,"w":8.662,"h":0.833,"TU":"Line 7. Subtract line 6 from line 5. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A99_L7_2_","EN":0},"TI":3300,"AM":1024,"x":61.875,"y":21.75,"w":8.662,"h":0.833,"TU":"Line 7. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A99_L7_3_","EN":0},"TI":3301,"AM":1024,"x":74.25,"y":21.75,"w":8.662,"h":0.833,"TU":"Line 7. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A99_L7_4_","EN":0},"TI":3302,"AM":1024,"x":86.625,"y":21.75,"w":8.662,"h":0.833,"TU":"Line 7. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A100_L8_1_","EN":0},"TI":3303,"AM":1024,"x":49.5,"y":22.5,"w":8.662,"h":0.833,"TU":"Line 8. Enter the smaller of line 2 or line 7. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A100_L8_2_","EN":0},"TI":3304,"AM":1024,"x":61.875,"y":22.5,"w":8.662,"h":0.833,"TU":"Line 8. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A100_L8_3_","EN":0},"TI":3305,"AM":1024,"x":74.25,"y":22.5,"w":8.662,"h":0.833,"TU":"Line 8. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A100_L8_4_","EN":0},"TI":3306,"AM":1024,"x":86.625,"y":22.5,"w":8.662,"h":0.833,"TU":"Line 8. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A101_L9_1_","EN":0},"TI":3307,"AM":1024,"x":49.5,"y":23.226,"w":8.662,"h":0.833,"TU":"Line 9. Subtract line 3 from line 8. If zero or less, enter zero. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A101_L9_2_","EN":0},"TI":3308,"AM":1024,"x":61.875,"y":23.25,"w":8.662,"h":0.833,"TU":"Line 9. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A101_L9_3_","EN":0},"TI":3309,"AM":1024,"x":74.25,"y":23.25,"w":8.662,"h":0.833,"TU":"Line 9. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A101_L9_4_","EN":0},"TI":3310,"AM":1024,"x":86.625,"y":23.25,"w":8.662,"h":0.833,"TU":"Line 9. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":3311,"AM":0,"x":86.625,"y":24,"w":8.662,"h":0.833,"TU":"Line 10. Casualty or theft loss. Add the amounts on line 9 in columns A through D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":3312,"AM":0,"x":86.625,"y":24.75,"w":8.662,"h":0.833,"TU":"Line 11. Enter the smaller of line 10 or $100."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":3313,"AM":1024,"x":86.625,"y":25.5,"w":8.662,"h":0.833,"TU":"Line 12. Subtract line 11 from line 10."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":3314,"AM":1024,"x":86.625,"y":27,"w":8.662,"h":0.833,"TU":"Line 13. Add the amounts on line 12 of all Forms 4684. Caution: Use only one Form 4684 for lines 13 through 18. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":3315,"AM":1024,"x":86.625,"y":27.75,"w":8.662,"h":0.833,"TU":"Line 14. Add the amounts on line 4 of all Forms 4684. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":3316,"AM":1024,"x":86.625,"y":29.25,"w":8.662,"h":0.833,"TU":"Line 15. If line 14 is more than line 13, enter the difference here and on Schedule D. Do not complete the rest of this section (see instructions). If line 14 is less than line 13, enter zero here and go to line 16. If line 14 is equal to line 13, enter zero here. Do not complete the rest of this section. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":3317,"AM":1024,"x":86.625,"y":31.5,"w":8.662,"h":0.833,"TU":"Line 16. If line 14 is less than line 13, enter the difference. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":3318,"AM":1024,"x":86.625,"y":33,"w":8.662,"h":0.833,"TU":"Line 17. Enter 10 percent of your adjusted gross income from Form 1040, line 38, or Form 1040 N R, line 37. Estates and trusts, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":3319,"AM":1024,"x":86.625,"y":35.25,"w":8.662,"h":0.833,"TU":"Line 18. Subtract line 17 from line 16. If zero or less, enter zero. Also enter the result on Schedule A (Form 1040), line 20, or Form 1040N R, Schedule A, line 6. Estates and trusts, enter the result on the “Other deductions” line of your tax return. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text1","EN":0},"TI":3320,"AM":1024,"x":63.527,"y":36.79,"w":18.584,"h":0.872,"V":"Form 4684 page 2"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F46842"}},"id":{"Id":"Add_F4684P2","EN":0},"TI":3321,"AM":1024,"x":82.655,"y":36.729,"w":6.311,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F46842.content.txt b/test/data/fd/form/F46842.content.txt new file mode 100755 index 00000000..1c159cfb --- /dev/null +++ b/test/data/fd/form/F46842.content.txt @@ -0,0 +1,218 @@ +Form 4684 (2013) +Attachment Sequence No. +26 +Page +2 +Name(s) shown on tax return. Do not enter name and identifying number if shown on other side. +Identifying number +SECTION B„Business and Income-Producing Property +Part I +Casualty or Theft Gain or Loss +(Use a separate Part l for each casualty or theft.) +19 +from the same casualty or theft. +See instructions if claiming a loss due to a Ponzi-type investment scheme and Section C is not completed. +Property + A +Property + B +Property + C +Property + D +Properties +A +B +C +D +20 +Cost or adjusted basis of each property +..... +20 +21 +Insurance or other reimbursement (whether or not you +filed a claim). See the instructions for line 3 +.... +21 +Note: +If line 20 is + +more + +than line 21, skip line 22. +22 +Gain from casualty or theft. If line 21 is +more + than line 20, enter +the difference here and on line 29 or line 34, column (c), except +as provided in the instructions for line 33. Also, skip lines 23 +through 27 for that column. See the instructions for line 4 if line +21 includes insurance or other reimbursement you did not +claim, or you received payment for your loss in a later tax year +22 +23 +Fair market value +before + casualty or theft +.... +23 +24 +Fair market value +after + casualty or theft +..... +24 +25 +Subtract line 24 from line 23 +........ +25 +26 +Enter the +smaller + of line 20 or line 25 +..... +26 +Note: + + +27 +Subtract line 21 from line 26. If zero or less, enter -0- +27 +28 +or +28 +Part II +Summary of Gains and Losses +(from separate Parts l) +(b) +Losses from casualties or thefts +(a) +Identify casualty or theft +(i) +Trade, business, + +rental or royalty + +property +(ii) +Income- + + +producing and + +employee property +(c) +Gains from + +casualties or thefts + +includible in income +Casualty or Theft of Property Held One Year or Less + + +29 +( +) +( +) +( +) +( +) +30 +Totals. Add the amounts on line 29 +............ +30 +( +) +( +) +31 +Combine line 30, columns (b)(i) and (c). Enter the net gain or (loss) here and on Form 4797, line 14. If Form 4797 is +not otherwise required, see instructions +....................... +31 +32 +Enter the amount from line 30, column (b)(ii) here. Individuals, enter the amount from income-producing property on Schedule A +(Form 1040), line 28, or Form 1040NR, Schedule A, line 14, and enter the amount from property used as an employee on Schedule +A (Form 1040), line 23, or Form 1040NR, Schedule A, line 9. Estates and trusts, partnerships, and S corporations, see instructi +ons +32 +Casualty or Theft of Property Held More Than One Year +33 +Casualty or theft gains from Form 4797, line 32 +......................... +33 + + +34 +( +) +( +) +( +) +( +) +35 +Total losses. Add amounts on line 34, columns (b)(i) and (b)(ii) +..... +35 +( +) +( +) +36 +Total gains. Add lines 33 and 34, column (c) +...................... +36 +37 +Add amounts on line 35, columns (b)(i) and (b)(ii) +.................... +37 +38 +If the loss on line 37 is +more + than the gain on line 36: +a + + +Combine line 35, column (b)(i) and line 36, and enter the net gain or (loss) here. Partnerships (except electing large +partnerships) and S corporations, see the note below. All others, enter this amount on Form 4797, line 14. If Form +4797 is not otherwise required, see instructions +..................... +38a +b + + + + +Enter the amount from line 35, column (b)(ii) here. Individuals, enter the amount from income-producing property on +Schedule A (Form 1040), line 28, or Form 1040NR, Schedule A, line 14, and enter the amount from property used as +an employee on Schedule A (Form 1040), line 23, or Form 1040NR, Schedule A, line 9. Estates and trusts, enter on +the “Other deductions” line of your tax return. Partnerships (except electing large partnerships) and S corporations, +see the note below. Electing large partnerships, enter on Form 1065-B, Part II, line 11 +......... +38b +39 +If the loss on line 37 is +less + than or +equal + to the gain on line 36, combine lines 36 and 37 and enter here. Partnerships +(except electing large partnerships), see the note below. All others, enter this amount on Form 4797, line 3 +.... +39 +Note: +Partnerships, enter the amount from line 38a, 38b, or line 39 on Form 1065, Schedule K, line 11. +S corporations, enter the amount from line 38a or 38b on Form 1120S, Schedule K, line 10. +Form +4684 + (2013) +Description of properties (show type, location, and date acquired for each property). Use a separate line for each property lost or damaged +If the property was totally destroyed by casualty or +lost from theft, enter on line 26 the amount from line 20. +Casualty or theft loss. Add the amounts on line 27. Enter the total here and on line 29 + +line 34 (see instructions) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F46842.fields.json b/test/data/fd/form/F46842.fields.json new file mode 100755 index 00000000..fc01dd0e --- /dev/null +++ b/test/data/fd/form/F46842.fields.json @@ -0,0 +1 @@ +[{"id":"DESCRIP","type":"alpha","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A102_L19_1_","type":"alpha","calc":false,"value":""},{"id":"A102_L19_2_","type":"alpha","calc":false,"value":""},{"id":"A102_L19_3_","type":"alpha","calc":false,"value":""},{"id":"A102_L19_4_","type":"alpha","calc":false,"value":""},{"id":"A105_L20_1_","type":"number","calc":false,"value":""},{"id":"A105_L20_2_","type":"number","calc":false,"value":""},{"id":"A105_L20_3_","type":"number","calc":false,"value":""},{"id":"A105_L20_4_","type":"number","calc":false,"value":""},{"id":"A106_L21_2_","type":"number","calc":false,"value":""},{"id":"A106_L21_1_","type":"number","calc":false,"value":""},{"id":"A106_L21_3_","type":"number","calc":false,"value":""},{"id":"A106_L21_4_","type":"number","calc":false,"value":""},{"id":"A107_L22_1_","type":"number","calc":true,"value":""},{"id":"A107_L22_2_","type":"number","calc":true,"value":""},{"id":"A107_L22_3_","type":"number","calc":true,"value":""},{"id":"A107_L22_4_","type":"number","calc":true,"value":""},{"id":"A108_L23_1_","type":"number","calc":false,"value":""},{"id":"A108_L23_2_","type":"number","calc":false,"value":""},{"id":"A108_L23_3_","type":"number","calc":false,"value":""},{"id":"A108_L23_4_","type":"number","calc":false,"value":""},{"id":"A109_L24_1_","type":"number","calc":false,"value":""},{"id":"A109_L24_2_","type":"number","calc":false,"value":""},{"id":"A109_L24_3_","type":"number","calc":false,"value":""},{"id":"A109_L24_4_","type":"number","calc":false,"value":""},{"id":"A110_L25_1_","type":"number","calc":true,"value":""},{"id":"A110_L25_2_","type":"number","calc":true,"value":""},{"id":"A110_L25_3_","type":"number","calc":true,"value":""},{"id":"A110_L25_4_","type":"number","calc":true,"value":""},{"id":"A111_L26_1_","type":"number","calc":false,"value":""},{"id":"A111_L26_2_","type":"number","calc":false,"value":""},{"id":"A111_L26_3_","type":"number","calc":false,"value":""},{"id":"A111_L26_4_","type":"number","calc":false,"value":""},{"id":"A113_L27TEXT_1_","type":"alpha","calc":false,"value":""},{"id":"A113_L27TEXT_2_","type":"alpha","calc":false,"value":""},{"id":"A113_L27TEXT_3_","type":"alpha","calc":false,"value":""},{"id":"A113_L27TEXT_4_","type":"alpha","calc":false,"value":""},{"id":"A112_L27_1_","type":"number","calc":false,"value":""},{"id":"A112_L27_2_","type":"number","calc":false,"value":""},{"id":"A112_L27_3_","type":"number","calc":false,"value":""},{"id":"A112_L27_4_","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"LINE29_L29A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE29_L29B1_1_","type":"number","calc":false,"value":""},{"id":"LINE29_L29B2_1_","type":"number","calc":false,"value":""},{"id":"LINE29_L29C_1_","type":"number","calc":false,"value":""},{"id":"LINE29_L29A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE29_L29B1_2_","type":"number","calc":false,"value":""},{"id":"LINE29_L29B2_2_","type":"number","calc":false,"value":""},{"id":"LINE29_L29C_2_","type":"number","calc":false,"value":""},{"id":"L30B1","type":"number","calc":true,"value":""},{"id":"L30B2","type":"number","calc":true,"value":""},{"id":"L30C","type":"number","calc":true,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"LINE34_L34A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE34_L34B1_1_","type":"number","calc":false,"value":""},{"id":"LINE34_L34B2_1_","type":"number","calc":false,"value":""},{"id":"LINE34_L34C_1_","type":"number","calc":false,"value":""},{"id":"LINE34_L34A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE34_L34B1_2_","type":"number","calc":false,"value":""},{"id":"LINE34_L34B2_2_","type":"number","calc":false,"value":""},{"id":"LINE34_L34C_2_","type":"number","calc":false,"value":""},{"id":"L35B1","type":"number","calc":true,"value":""},{"id":"L35B2","type":"number","calc":true,"value":""},{"id":"L36","type":"number","calc":true,"value":""},{"id":"L37","type":"number","calc":true,"value":""},{"id":"L38A","type":"number","calc":true,"value":""},{"id":"L38B","type":"number","calc":true,"value":""},{"id":"L39","type":"number","calc":true,"value":""},{"id":"Text1","type":"alpha","calc":true,"value":"Form 4684 page 3"},{"id":"Add_F4684_Page_3","type":"link","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F46842.json b/test/data/fd/form/F46842.json new file mode 100755 index 00000000..5d20a572 --- /dev/null +++ b/test/data/fd/form/F46842.json @@ -0,0 +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":9.986},{"oc":"#221f1f","x":16.047,"y":3.001,"w":1.5,"l":76.811},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.155,"y":4.501,"w":0.75,"l":71.853},{"oc":"#221f1f","x":77.922,"y":4.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.2000000000000002,"l":5.036},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":17.284,"y":8.251,"w":0.75,"l":81.761},{"oc":"#221f1f","x":17.284,"y":9.001,"w":0.75,"l":81.761},{"oc":"#221f1f","x":17.284,"y":9.751,"w":0.75,"l":81.761},{"oc":"#221f1f","x":17.284,"y":10.501,"w":0.75,"l":81.761},{"oc":"#221f1f","x":49.459,"y":11.251,"w":0.75,"l":49.586},{"oc":"#221f1f","x":49.459,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.79,"y":12.751,"w":0.75,"l":3.713},{"oc":"#221f1f","x":45.79,"y":12.001,"w":0.75,"l":3.713},{"oc":"#221f1f","x":49.459,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":18.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":18.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":18.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":19.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":19.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":19.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":19.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":49.459,"y":20.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":58.122,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":20.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":70.497,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":74.209,"y":20.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":20.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":45.747,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":21,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":21,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":21,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":21,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":49.459,"y":21.75,"w":1.125,"l":8.748},{"oc":"#221f1f","x":58.122,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":21.75,"w":1.125,"l":8.748},{"oc":"#221f1f","x":70.497,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":74.209,"y":21.75,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":21.75,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":21.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":45.747,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.459,"y":24,"w":0.75,"l":8.748},{"oc":"#221f1f","x":58.122,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":24,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":24,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":24.751,"w":1.2000000000000002,"l":6.273},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":24.751,"w":1.2000000000000002,"l":55.774},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":55.774},{"oc":"#221f1f","x":61.834,"y":24.751,"w":1.2000000000000002,"l":24.836},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":27.001,"w":0.75,"l":55.774},{"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":1.2000000000000002,"l":12.461},{"oc":"#221f1f","x":86.584,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":26.996,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":27.746,"w":0.75,"l":92.899},{"oc":"#221f1f","x":9.859,"y":28.501,"w":0.75,"l":52.061},{"oc":"#221f1f","x":61.834,"y":28.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":28.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":28.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":29.251,"w":1.125,"l":52.061},{"oc":"#221f1f","x":61.834,"y":29.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":70.497,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":74.209,"y":29.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":29.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":58.122,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":30.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":30.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":30.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":31.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":33.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":34.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":35.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":35.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":35.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":35.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":36.001,"w":0.75,"l":52.061},{"oc":"#221f1f","x":9.859,"y":36.751,"w":1.125,"l":52.061},{"oc":"#221f1f","x":61.834,"y":36.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":61.834,"y":36.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":70.497,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.497,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":74.209,"y":36.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":36.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":36.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":37.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.497,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":37.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":36.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":38.251,"w":1.125,"l":8.748},{"oc":"#221f1f","x":95.247,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":39.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":41.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":44.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":45.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":95.247,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":77.965,"y":2.97,"w":0.75,"l":1.547},{"oc":"#221f1f","x":6.19,"y":5.226,"w":0.75,"l":0.791},{"oc":"#221f1f","x":49.502,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":14.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":45.79,"y":14.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.502,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":49.502,"y":12.001,"w":0.75,"l":0.749},{"oc":"#221f1f","x":45.79,"y":12.001,"w":0.75,"l":0.749},{"oc":"#221f1f","x":58.165,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.79,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"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":86.627,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":86.627,"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":49.502,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":45.79,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":58.165,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.877,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":70.54,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":74.252,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":86.627,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":49.502,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":86.627,"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":49.502,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":45.79,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":58.165,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":49.502,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"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":86.627,"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":49.502,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":45.79,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":58.165,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":61.877,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":70.54,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":74.252,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":82.915,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":86.627,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":0.788},{"oc":"#221f1f","x":49.502,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.79,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":6.19,"y":24.726,"w":0.75,"l":0.791},{"oc":"#221f1f","x":61.877,"y":24.726,"w":0.75,"l":0.791},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":24.726,"w":0.75,"l":2.291},{"oc":"#221f1f","x":61.877,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":61.877,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":58.165,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"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":86.627,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":29.985,"w":0.75,"l":1.531},{"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":86.627,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"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":86.627,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":61.877,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":58.165,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":36.728,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"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":86.627,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"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":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":41.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":41.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":44.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":44.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":45.735,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":5.251,"w":4.95,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":45.79,"y":15.001,"w":3.713,"h":3,"clr":-1},{"oc":"#bebfc1","x":45.79,"y":14.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":45.79,"y":21.75,"w":3.713,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":31.501,"w":3.713,"h":1.5,"clr":-1},{"x":6.19,"y":35.251,"w":92.813,"h":0.75,"clr":1},{"x":6.19,"y":36.001,"w":92.813,"h":0.75,"clr":1},{"oc":"#bebfc1","x":86.627,"y":36.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":39.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":41.251,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":45.751,"w":16.088,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204684%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.101,"y":1.9729999999999999,"w":12.356000000000005,"clr":-1,"A":"left","R":[{"T":"Attachment%20Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.966,"y":1.9729999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":94.7,"y":2.041,"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.041,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.948,"y":2.688,"w":42.69499999999998,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20tax%20return.%20Do%20not%20enter%20name%20and%20identifying%20number%20if%20shown%20on%20other%20side.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.746,"y":2.688,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.291,"w":25.89400000000001,"clr":-1,"A":"left","R":[{"T":"SECTION%20B%E2%80%9EBusiness%20and%20Income-Producing%20Property","S":10,"TS":[0,14,1,0]}]},{"x":5.94,"y":5.135,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":5.072,"w":15.115000000000006,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20Theft%20Gain%20or%20Loss%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":39.488,"y":5.072,"w":21.538000000000004,"clr":-1,"A":"left","R":[{"T":"(Use%20a%20separate%20Part%20l%20for%20each%20casualty%20or%20theft.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.469,"y":5.895,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":6.552,"w":14.467000000000002,"clr":-1,"A":"left","R":[{"T":"from%20the%20same%20casualty%20or%20theft.%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":27.455,"y":6.552,"w":50.569999999999936,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20if%20claiming%20a%20loss%20due%20to%20a%20Ponzi-type%20investment%20scheme%20and%20Section%20C%20is%20not%20completed.","S":-1,"TS":[0,10.92,1,0]}]},{"oc":"#221f1f","x":9.652,"y":7.295,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":7.295,"w":1,"clr":-1,"A":"left","R":[{"T":"%20A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":8.045,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":8.045,"w":1,"clr":-1,"A":"left","R":[{"T":"%20B","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":8.795,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":8.795,"w":1,"clr":-1,"A":"left","R":[{"T":"%20C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":9.545,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.922,"y":9.545,"w":1,"clr":-1,"A":"left","R":[{"T":"%20D","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":70.164,"y":10.246,"w":4.946000000000001,"clr":-1,"A":"left","R":[{"T":"Properties","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.91,"y":11.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.27,"y":11.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.617,"y":11.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":91.992,"y":11.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.886,"y":11.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":11.858,"w":17.706000000000007,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20adjusted%20basis%20of%20each%20property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.815,"y":11.858,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.536,"y":11.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.886,"y":12.733,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":12.733,"w":24.375000000000004,"clr":-1,"A":"left","R":[{"T":"Insurance%20or%20other%20reimbursement%20(whether%20or%20not%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":13.358,"w":19.151,"clr":-1,"A":"left","R":[{"T":"filed%20a%20claim).%20See%20the%20instructions%20for%20line%203","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.877,"y":13.358,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.536,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":14.108,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":13.549,"y":14.108,"w":4.7410000000000005,"clr":-1,"A":"left","R":[{"T":"If%20line%2020%20is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.762,"y":14.108,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.359,"y":14.108,"w":10.967000000000004,"clr":-1,"A":"left","R":[{"T":"than%20line%2021%2C%20skip%20line%2022.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":14.795,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":14.733,"w":17.466,"clr":-1,"A":"left","R":[{"T":"Gain%20from%20casualty%20or%20theft.%20If%20line%2021%20is%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":30.387,"y":14.733,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,10.120000000000001,1,0]}]},{"oc":"#221f1f","x":33.274,"y":14.733,"w":8.559000000000003,"clr":-1,"A":"left","R":[{"T":"%20than%20line%2020%2C%20enter%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":9.657,"y":15.358,"w":28.396,"clr":-1,"A":"left","R":[{"T":"the%20difference%20here%20and%20on%20line%2029%20or%20line%2034%2C%20column%20(c)%2C%20except%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":9.653,"y":15.983,"w":27.025000000000002,"clr":-1,"A":"left","R":[{"T":"as%20provided%20in%20the%20instructions%20for%20line%2033.%20Also%2C%20skip%20lines%2023%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":9.656,"y":16.608,"w":28.35900000000001,"clr":-1,"A":"left","R":[{"T":"through%2027%20for%20that%20column.%20See%20the%20instructions%20for%20line%204%20if%20line%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":9.657,"y":17.233,"w":26.101000000000006,"clr":-1,"A":"left","R":[{"T":"21%20includes%20insurance%20or%20other%20reimbursement%20you%20did%20not%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":9.659,"y":17.858,"w":27.984999999999992,"clr":-1,"A":"left","R":[{"T":"claim%2C%20or%20you%20received%20payment%20for%20your%20loss%20in%20a%20later%20tax%20year%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":46.631,"y":17.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":18.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":18.608,"w":7.9460000000000015,"clr":-1,"A":"left","R":[{"T":"Fair%20market%20value%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.718,"y":18.608,"w":3.056,"clr":-1,"A":"left","R":[{"T":"before","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.454,"y":18.608,"w":7.464000000000001,"clr":-1,"A":"left","R":[{"T":"%20casualty%20or%20theft","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.877,"y":18.608,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.631,"y":18.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":19.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":19.358,"w":7.9460000000000015,"clr":-1,"A":"left","R":[{"T":"Fair%20market%20value%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.718,"y":19.358,"w":2.167,"clr":-1,"A":"left","R":[{"T":"after","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.43,"y":19.358,"w":7.464000000000001,"clr":-1,"A":"left","R":[{"T":"%20casualty%20or%20theft","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.815,"y":19.358,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.631,"y":19.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":20.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":20.107,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2024%20from%20line%2023","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":20.107,"w":12,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.631,"y":20.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":20.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":20.857,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.071,"y":20.857,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.534,"y":20.857,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2020%20or%20line%2025%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.815,"y":20.857,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.631,"y":20.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":21.732,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":23.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.107,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021%20from%20line%2026.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.631,"y":23.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":23.827,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":58.443,"y":23.796,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":83.756,"y":23.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"x":5.94,"y":24.635,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":24.572,"w":15.172000000000008,"clr":-1,"A":"left","R":[{"T":"Summary%20of%20Gains%20and%20Losses%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":39.517,"y":24.572,"w":9.851999999999999,"clr":-1,"A":"left","R":[{"T":"(from%20separate%20Parts%20l)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.388,"y":24.473,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":66.504,"y":24.473,"w":14.224,"clr":-1,"A":"left","R":[{"T":"Losses%20from%20casualties%20or%20thefts","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.286,"y":25.598,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":28.357,"y":25.598,"w":10.742,"clr":-1,"A":"left","R":[{"T":"Identify%20casualty%20or%20theft","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.6,"y":25.201,"w":1.296,"clr":-1,"A":"left","R":[{"T":"(i)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.16,"y":25.201,"w":7.372,"clr":-1,"A":"left","R":[{"T":"Trade%2C%20business%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.637,"y":25.638,"w":6.944000000000001,"clr":-1,"A":"left","R":[{"T":"rental%20or%20royalty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.542,"y":26.076,"w":3.778,"clr":-1,"A":"left","R":[{"T":"property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.048,"y":25.17,"w":1.518,"clr":-1,"A":"left","R":[{"T":"(ii)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.874,"y":25.17,"w":3.705,"clr":-1,"A":"left","R":[{"T":"Income-","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.445,"y":25.607,"w":6.502000000000001,"clr":-1,"A":"left","R":[{"T":"producing%20and","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.131,"y":26.045,"w":8.409,"clr":-1,"A":"left","R":[{"T":"employee%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.576,"y":24.698,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":90.648,"y":24.698,"w":4.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Gains%20from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.485,"y":25.223,"w":8.445,"clr":-1,"A":"left","R":[{"T":"casualties%20or%20thefts","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.228,"y":25.748,"w":8.873000000000003,"clr":-1,"A":"left","R":[{"T":"includible%20in%20income","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.083,"y":26.817,"w":24.729000000000003,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20Theft%20of%20Property%20Held%20One%20Year%20or%20Less","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.886,"y":27.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":62.068,"y":27.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.137,"y":27.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.443,"y":27.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.58,"y":27.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.068,"y":28.237,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.137,"y":28.237,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.443,"y":28.237,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.58,"y":28.237,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":29.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.629,"y":29.102,"w":15.580000000000002,"clr":-1,"A":"left","R":[{"T":"Totals.%20Add%20the%20amounts%20on%20line%2029","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.752,"y":29.102,"w":18,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.006,"y":29.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":62.068,"y":28.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.205,"y":28.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.443,"y":28.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.58,"y":28.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":29.983,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.629,"y":29.983,"w":51.25699999999995,"clr":-1,"A":"left","R":[{"T":"Combine%20line%2030%2C%20columns%20(b)(i)%20and%20(c).%20Enter%20the%20net%20gain%20or%20(loss)%20here%20and%20on%20Form%204797%2C%20line%2014.%20If%20Form%204797%20%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.629,"y":30.608,"w":17.631000000000007,"clr":-1,"A":"left","R":[{"T":"not%20otherwise%20required%2C%20see%20instructions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.815,"y":30.608,"w":34.5,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":30.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":31.482999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.628,"y":31.482999999999997,"w":57.14699999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2030%2C%20column%20(b)(ii)%20here.%20Individuals%2C%20enter%20the%20amount%20from%20income-producing%20property%20on%20Schedule%20A%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":9.628,"y":32.108,"w":58.44599999999995,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%2C%20line%2028%2C%20or%20Form%201040NR%2C%20Schedule%20A%2C%20line%2014%2C%20and%20enter%20the%20amount%20from%20property%20used%20as%20an%20employee%20on%20Schedule%20","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":9.628,"y":32.733,"w":56.16299999999994,"clr":-1,"A":"left","R":[{"T":"A%20(Form%201040)%2C%20line%2023%2C%20or%20Form%201040NR%2C%20Schedule%20A%2C%20line%209.%20Estates%20and%20trusts%2C%20partnerships%2C%20and%20S%20corporations%2C%20see%20instructi","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":78.358,"y":32.733,"w":1.6300000000000001,"clr":-1,"A":"left","R":[{"T":"ons","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#221f1f","x":83.756,"y":32.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":29.698,"y":33.572,"w":26.228,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20Theft%20of%20Property%20Held%20More%20Than%20One%20Year","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.886,"y":34.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":34.358,"w":20.969000000000005,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20theft%20gains%20from%20Form%204797%2C%20line%2032","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":39.283,"y":34.358,"w":31.25,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":34.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":35.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":62.068,"y":34.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.137,"y":34.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.443,"y":34.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.58,"y":34.987,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.068,"y":35.737,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.205,"y":35.737,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.443,"y":35.737,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.58,"y":35.737,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":36.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":36.608,"w":27.303000000000008,"clr":-1,"A":"left","R":[{"T":"Total%20losses.%20Add%20amounts%20on%20line%2034%2C%20columns%20(b)(i)%20and%20(b)(ii)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.877,"y":36.608,"w":6.25,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.006,"y":36.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":62.068,"y":36.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.205,"y":36.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.443,"y":36.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.58,"y":36.487,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":37.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":37.358,"w":19.525000000000013,"clr":-1,"A":"left","R":[{"T":"Total%20gains.%20Add%20lines%2033%20and%2034%2C%20column%20(c)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.877,"y":37.358,"w":33,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":37.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":38.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":38.108,"w":21.414000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20on%20line%2035%2C%20columns%20(b)(i)%20and%20(b)(ii)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.002,"y":38.108,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.756,"y":38.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":38.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":38.858,"w":10.206000000000001,"clr":-1,"A":"left","R":[{"T":"If%20the%20loss%20on%20line%2037%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":22.138,"y":38.858,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":25.377,"y":38.858,"w":10.986000000000002,"clr":-1,"A":"left","R":[{"T":"%20than%20the%20gain%20on%20line%2036%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.458,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":39.458,"w":51.06599999999997,"clr":-1,"A":"left","R":[{"T":"Combine%20line%2035%2C%20column%20(b)(i)%20and%20line%2036%2C%20and%20enter%20the%20net%20gain%20or%20(loss)%20here.%20Partnerships%20(except%20electing%20large%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":39.958,"w":51.08699999999994,"clr":-1,"A":"left","R":[{"T":"partnerships)%20%20and%20S%20corporations%2C%20see%20the%20note%20below.%20All%20others%2C%20enter%20this%20amount%20on%20Form%204797%2C%20line%2014.%20If%20Form%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":40.458,"w":21.133000000000013,"clr":-1,"A":"left","R":[{"T":"4797%20is%20not%20otherwise%20required%2C%20see%20instructions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.94,"y":40.458,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.362,"y":40.358,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":41.145,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":41.145,"w":51.75699999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2035%2C%20column%20(b)(ii)%20here.%20Individuals%2C%20enter%20the%20amount%20from%20income-producing%20property%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.651,"y":41.708,"w":52.23999999999996,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040)%2C%20line%2028%2C%20or%20Form%201040NR%2C%20Schedule%20A%2C%20line%2014%2C%20and%20enter%20the%20amount%20from%20property%20%20used%20as%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.641,"y":42.27,"w":51.367999999999945,"clr":-1,"A":"left","R":[{"T":"an%20employee%20on%20Schedule%20A%20(Form%201040)%2C%20line%2023%2C%20or%20Form%201040NR%2C%20Schedule%20A%2C%20line%209.%20Estates%20and%20trusts%2C%20enter%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.644,"y":42.833,"w":51.84099999999994,"clr":-1,"A":"left","R":[{"T":"the%20%E2%80%9COther%20deductions%E2%80%9D%20line%20of%20your%20tax%20return.%20Partnerships%20(except%20electing%20large%20partnerships)%20%20and%20S%20corporations%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.648,"y":43.395,"w":38.04399999999998,"clr":-1,"A":"left","R":[{"T":"see%20the%20note%20below.%20Electing%20large%20partnerships%2C%20enter%20on%20Form%201065-B%2C%20Part%20II%2C%20line%2011","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.685,"y":43.395,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.336,"y":43.358,"w":1.723,"clr":-1,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":44.327,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.308,"y":44.333,"w":10.206000000000001,"clr":-1,"A":"left","R":[{"T":"If%20the%20loss%20on%20line%2037%20is%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":22.03,"y":44.333,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"less","S":-1,"TS":[0,10.84,1,0]}]},{"oc":"#221f1f","x":24.598,"y":44.333,"w":3.7050000000000005,"clr":-1,"A":"left","R":[{"T":"%20than%20or%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":29.247,"y":44.333,"w":2.612,"clr":-1,"A":"left","R":[{"T":"equal","S":-1,"TS":[0,10.84,1,0]}]},{"oc":"#221f1f","x":32.764,"y":44.333,"w":34.62299999999999,"clr":-1,"A":"left","R":[{"T":"%20to%20the%20gain%20on%20line%2036%2C%20combine%20lines%2036%20and%2037%20and%20enter%20here.%20Partnerships%20%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":9.652,"y":44.896,"w":47.546999999999954,"clr":-1,"A":"left","R":[{"T":"(except%20electing%20large%20partnerships)%2C%20see%20the%20note%20below.%20All%20others%2C%20enter%20this%20amount%20on%20Form%204797%2C%20line%203%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":74.002,"y":44.896,"w":6.124,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":83.756,"y":44.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":45.771,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":13.377,"y":45.771,"w":49.37099999999995,"clr":-1,"A":"left","R":[{"T":"Partnerships%2C%20enter%20the%20amount%20from%20line%2038a%2C%2038b%2C%20or%20line%2039%20on%20Form%201065%2C%20Schedule%20K%2C%20line%2011.%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,0,0]}]},{"oc":"#221f1f","x":9.652,"y":46.333,"w":40.54899999999999,"clr":-1,"A":"left","R":[{"T":"S%20corporations%2C%20enter%20the%20amount%20from%20line%2038a%20or%2038b%20on%20Form%201120S%2C%20Schedule%20K%2C%20line%2010.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":47.041,"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.041,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4684","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":47.041,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.652,"y":5.896,"w":62.45199999999993,"clr":-1,"A":"left","R":[{"T":"Description%20of%20properties%20(show%20type%2C%20location%2C%20and%20date%20acquired%20for%20each%20property).%20Use%20a%20separate%20line%20for%20each%20property%20lost%20or%20damaged%20%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":13.565,"y":21.732,"w":22.686,"clr":-1,"A":"left","R":[{"T":"If%20the%20property%20was%20totally%20destroyed%20by%20casualty%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":22.357,"w":24.82100000000001,"clr":-1,"A":"left","R":[{"T":"lost%20from%20theft%2C%20enter%20on%20line%2026%20the%20amount%20from%20line%2020.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":23.796,"w":37.95599999999999,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20theft%20loss.%20Add%20the%20amounts%20on%20line%2027.%20Enter%20the%20total%20here%20and%20on%20line%2029","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.2,"y":23.796,"w":10.761000000000003,"clr":-1,"A":"left","R":[{"T":"line%2034%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESCRIP","EN":0},"TI":3322,"AM":0,"x":15.896,"y":2.144,"w":29.948,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":3323,"AM":1024,"x":6.196,"y":3.625,"w":71.767,"h":0.875,"TU":"Page 2. Name(s) shown on tax return. Do not enter name and identifying number if shown on other side."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":3324,"AM":1024,"x":77.963,"y":3.625,"w":21.037,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A102_L19_1_","EN":0},"TI":3325,"AM":0,"x":17.325,"y":7.5,"w":81.675,"h":0.833,"TU":"SECTION B, Business and Income-Producing Property. Part 1. Casualty or Theft Gain or Loss (Use a separate Part 1 for each casualty or theft.) Line 19. Description of properties (show type, location, and date acquired for each property). Use a separate line for each property lost or damaged from the same casualty or theft. See instructions if claiming a loss due to a Ponzi-type investment scheme.Property A."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A102_L19_2_","EN":0},"TI":3326,"AM":0,"x":17.325,"y":8.25,"w":81.675,"h":0.833,"TU":"Line 19. Property B."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A102_L19_3_","EN":0},"TI":3327,"AM":0,"x":17.325,"y":9,"w":81.675,"h":0.833,"TU":"Line 19. Property C."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A102_L19_4_","EN":0},"TI":3328,"AM":0,"x":17.325,"y":9.75,"w":81.675,"h":0.833,"TU":"Line 19. Property D."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A105_L20_1_","EN":0},"TI":3329,"AM":0,"x":49.5,"y":12,"w":8.662,"h":0.833,"TU":"Line 20. Cost or adjusted basis of each property. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A105_L20_2_","EN":0},"TI":3330,"AM":0,"x":61.875,"y":12,"w":8.662,"h":0.833,"TU":"Line 20. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A105_L20_3_","EN":0},"TI":3331,"AM":0,"x":74.25,"y":12,"w":8.662,"h":0.833,"TU":"Line 20. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A105_L20_4_","EN":0},"TI":3332,"AM":0,"x":86.561,"y":12,"w":8.663,"h":0.833,"TU":"Line 20. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A106_L21_2_","EN":0},"TI":3333,"AM":0,"x":49.5,"y":13.5,"w":8.662,"h":0.833,"TU":"Line 21. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A106_L21_1_","EN":0},"TI":3334,"AM":0,"x":61.875,"y":13.5,"w":8.662,"h":0.833,"TU":"Line 21. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A106_L21_3_","EN":0},"TI":3335,"AM":0,"x":74.25,"y":13.5,"w":8.662,"h":0.833,"TU":"Line 21. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A106_L21_4_","EN":0},"TI":3336,"AM":0,"x":86.625,"y":13.5,"w":8.662,"h":0.833,"TU":"Line 21. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A107_L22_1_","EN":0},"TI":3337,"AM":1024,"x":49.5,"y":18,"w":8.662,"h":0.833,"TU":"Line 22. Gain from casualty or theft. If line 21 is more than line 20, enter the difference here and on line 29 or line 34, column (c), except as provided in the instructions for line 33. Also, skip lines 23 through 27 for that column. See the instructions for line 4 if line 21 includes insurance or other reimbursement you did not claim, or you received payment for your loss in a later tax year. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A107_L22_2_","EN":0},"TI":3338,"AM":1024,"x":61.875,"y":18,"w":8.662,"h":0.833,"TU":"Line 22. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A107_L22_3_","EN":0},"TI":3339,"AM":1024,"x":74.25,"y":18,"w":8.662,"h":0.833,"TU":"Line 22. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A107_L22_4_","EN":0},"TI":3340,"AM":1024,"x":86.625,"y":18,"w":8.662,"h":0.833,"TU":"Line 22. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A108_L23_1_","EN":0},"TI":3341,"AM":0,"x":49.5,"y":18.75,"w":8.662,"h":0.833,"TU":"Line 23. Fair market value before casualty or theft. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A108_L23_2_","EN":0},"TI":3342,"AM":0,"x":61.875,"y":18.75,"w":8.662,"h":0.833,"TU":"Line 23. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A108_L23_3_","EN":0},"TI":3343,"AM":0,"x":74.25,"y":18.75,"w":8.662,"h":0.833,"TU":"Line 23. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A108_L23_4_","EN":0},"TI":3344,"AM":0,"x":86.625,"y":18.75,"w":8.662,"h":0.833,"TU":"Line 23. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A109_L24_1_","EN":0},"TI":3345,"AM":0,"x":49.5,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 24. Fair market value after casualty or theft. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A109_L24_2_","EN":0},"TI":3346,"AM":0,"x":61.875,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 24. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A109_L24_3_","EN":0},"TI":3347,"AM":0,"x":74.25,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 24. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A109_L24_4_","EN":0},"TI":3348,"AM":0,"x":86.625,"y":19.5,"w":8.662,"h":0.833,"TU":"Line 24. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A110_L25_1_","EN":0},"TI":3349,"AM":1024,"x":49.5,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 25. Subtract line 24 from line 23. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A110_L25_2_","EN":0},"TI":3350,"AM":1024,"x":61.875,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 25. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A110_L25_3_","EN":0},"TI":3351,"AM":1024,"x":74.25,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 25. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A110_L25_4_","EN":0},"TI":3352,"AM":1024,"x":86.625,"y":20.25,"w":8.662,"h":0.833,"TU":"Line 25. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A111_L26_1_","EN":0},"TI":3353,"AM":0,"x":49.5,"y":20.999,"w":8.662,"h":0.833,"TU":"Line 26. Enter the smaller of line 20 or line 25. Note: If the property was totally destroyed by casualty or lost from theft, enter on line 26 the amount from line 20. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A111_L26_2_","EN":0},"TI":3354,"AM":0,"x":61.939,"y":20.999,"w":8.663,"h":0.833,"TU":"Line 26. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A111_L26_3_","EN":0},"TI":3355,"AM":0,"x":74.25,"y":20.999,"w":8.662,"h":0.833,"TU":"Line 26. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A111_L26_4_","EN":0},"TI":3356,"AM":0,"x":86.625,"y":21.022,"w":8.662,"h":0.833,"TU":"Line 26. Property D. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A113_L27TEXT_1_","EN":0},"TI":3357,"AM":0,"x":49.42,"y":22.366,"w":8.795,"h":0.895},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A113_L27TEXT_2_","EN":0},"TI":3358,"AM":0,"x":61.855,"y":22.32,"w":8.731,"h":0.965},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A113_L27TEXT_3_","EN":0},"TI":3359,"AM":0,"x":74.225,"y":22.32,"w":8.731,"h":0.965},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A113_L27TEXT_4_","EN":0},"TI":3360,"AM":0,"x":86.517,"y":22.366,"w":8.859,"h":0.895},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A112_L27_1_","EN":0},"TI":3361,"AM":0,"x":49.5,"y":23.249,"w":8.662,"h":0.833,"TU":"Line 27. Subtract line 21 from line 26. If zero or less, enter zero. Property A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A112_L27_2_","EN":0},"TI":3362,"AM":0,"x":61.875,"y":23.249,"w":8.662,"h":0.833,"TU":"Line 27. Property B. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A112_L27_3_","EN":0},"TI":3363,"AM":0,"x":74.25,"y":23.249,"w":8.662,"h":0.833,"TU":"Line 27. Property C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A112_L27_4_","EN":0},"TI":3364,"AM":0,"x":86.625,"y":23.249,"w":8.662,"h":0.833,"TU":"Line 27. Property D. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":3365,"AM":1024,"x":86.625,"y":24,"w":8.662,"h":0.833,"TU":"Line 28. Casualty or theft loss. Add the amounts on line 27. Enter the total here and on line 29 or line 34 (see instructions). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE29_L29A_1_","EN":0},"TI":3366,"AM":0,"x":9.9,"y":27.75,"w":51.975,"h":0.833,"TU":"Part 2. Summary of Gains and Losses (from separate Parts 1). Casualty or Theft of Property Held One Year or Less. Line 29. Item 1. (a) Identify casualty or theft."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE29_L29B1_1_","EN":0},"TI":3367,"AM":0,"x":63.112,"y":27.75,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 29. Item 1. (b) Losses from casualties or thefts. (1) Trade, business, rental or royalty property. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE29_L29B2_1_","EN":0},"TI":3368,"AM":0,"x":75.423,"y":27.727,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 29. Item 1. (b). (2) Income-producing and employee property. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE29_L29C_1_","EN":0},"TI":3369,"AM":0,"x":86.689,"y":27.75,"w":8.534,"h":0.833,"TU":"Line 29. Item 1. (c) Gains from casualties or thefts includible in income. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE29_L29A_2_","EN":0},"TI":3370,"AM":0,"x":9.9,"y":28.5,"w":51.975,"h":0.833,"TU":"Line 29. Item 2. (a). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE29_L29B1_2_","EN":0},"TI":3371,"AM":0,"x":63.112,"y":28.523,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 29. Item 2. (b). (1). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE29_L29B2_2_","EN":0},"TI":3372,"AM":0,"x":75.487,"y":28.5,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 29. Item 2. (b). (2). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE29_L29C_2_","EN":0},"TI":3373,"AM":0,"x":86.625,"y":28.5,"w":8.662,"h":0.833,"TU":"Line 29. Item 2. (c). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30B1","EN":0},"TI":3374,"AM":1024,"x":63.112,"y":29.25,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 30. Totals. Add the amounts on line 29. (b) Losses from casualties or thefts. (1) Trade, business, rental or royalty property. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30B2","EN":0},"TI":3375,"AM":1024,"x":75.487,"y":29.25,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 30. (b). (2) Income-producing and employee property. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30C","EN":0},"TI":3376,"AM":1024,"x":86.625,"y":29.25,"w":8.662,"h":0.833,"TU":"Line 30. (c) Gains from casualties or thefts includible in income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":3377,"AM":1024,"x":86.625,"y":30.75,"w":8.662,"h":0.833,"TU":"Line 31. Combine line 30, columns (b)(1) and (c). Enter the net gain or (loss) here and on Form 4797, line 14. If Form 4797 is not otherwise required, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":3378,"AM":0,"x":86.625,"y":33,"w":8.662,"h":0.833,"TU":"Line 32. Enter the amount from line 30, column (b)(2) here. Individuals, enter the amount from income-producing property on Schedule A (Form 1040), line 28, or Form 1040N R, Schedule A, line 14, and enter the amount from property used as an employee on Schedule A (Form 1040), line 23, or Form 1040N R, Schedule A, line 9. Estates and trusts, partnerships, and S corporations, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":3379,"AM":0,"x":86.625,"y":34.5,"w":8.662,"h":0.833,"TU":"Part 2. Summary of Gains and Losses (from separate Parts 1). Casualty or Theft of Property Held More Than One Year. Line 33. Casualty or theft gains from Form 4797, line 32. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE34_L34A_1_","EN":0},"TI":3380,"AM":0,"x":9.9,"y":35.25,"w":51.975,"h":0.833,"TU":"Line 34. Item 1. (a) Identify casualty or theft. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE34_L34B1_1_","EN":0},"TI":3381,"AM":0,"x":63.112,"y":35.25,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 34. Item 1. (b) Losses from casualties or thefts. (1) Trade, business, rental or royalty property. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE34_L34B2_1_","EN":0},"TI":3382,"AM":0,"x":75.552,"y":35.227,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 34. Item 1. (b). (2) Income-producing and employee property. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE34_L34C_1_","EN":0},"TI":3383,"AM":0,"x":86.625,"y":35.25,"w":8.662,"h":0.833,"TU":"Line 34. Item 1. (c) Gains from casualties or thefts includible in income. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE34_L34A_2_","EN":0},"TI":3384,"AM":0,"x":9.9,"y":36,"w":51.975,"h":0.833,"TU":"Line 34. Item 2. (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE34_L34B1_2_","EN":0},"TI":3385,"AM":0,"x":63.112,"y":36,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 34. Item 2. (b). (1). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE34_L34B2_2_","EN":0},"TI":3386,"AM":0,"x":75.487,"y":36,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 34. Item 1. (b). (2) Income-producing and employee property. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE34_L34C_2_","EN":0},"TI":3387,"AM":0,"x":86.625,"y":36,"w":8.662,"h":0.833,"TU":"Line 34. Item 2. (c). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35B1","EN":0},"TI":3388,"AM":1024,"x":63.112,"y":36.75,"w":7.425,"h":0.833,"TU":"Open parenthesis. Line 35. Total losses. Add amounts on line 34, columns (b) (1) and (b) (2). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35B2","EN":0},"TI":3389,"AM":1024,"x":75.423,"y":36.75,"w":7.425,"h":0.833,"TU":"Line 35. (b) (2) Income-producing and employee property. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":3390,"AM":1024,"x":86.625,"y":37.5,"w":8.662,"h":0.833,"TU":"Line 36. Total gains. Add lines 33 and 34, column (c). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":3391,"AM":1024,"x":86.625,"y":38.25,"w":8.662,"h":0.833,"TU":"Line 37. Add amounts on line 35, columns (b) (1) and (b) (2). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38A","EN":0},"TI":3392,"AM":1024,"x":86.625,"y":40.5,"w":8.662,"h":0.833,"TU":"Line 38. If the loss on line 37 is more than the gain on line 36: a. Combine line 35, column (b) (1) and line 36, and enter the net gain or (loss) here. Partnerships (except electing large partnerships) and S corporations, see the note below. All others, enter this amount on Form 4797, line 14. If Form 4797 is not otherwise required, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38B","EN":0},"TI":3393,"AM":1024,"x":86.625,"y":43.5,"w":8.662,"h":0.833,"TU":"Line 38b. Enter the amount from line 35, column (b)(2) here. Individuals, enter the amount from income-producing property on Schedule A (Form 1040), line 28, or Form 1040N R, Schedule A, line 14, and enter the amount from property used as an employee on Schedule A (Form 1040), line 23, or Form 1040N R, Schedule A, line 9. Estates and trusts, enter on the “Other deductions” line of your tax return. Partnerships (except electing large partnerships) and S corporations, see the note below. Electing large partnerships, enter on Form 1065-B, Part 2, line 11. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":3394,"AM":1024,"x":86.625,"y":45,"w":8.662,"h":0.833,"TU":"Line 39. If the loss on line 37 is less than or equal to the gain on line 36, combine lines 36 and 37 and enter here. Partnerships (except electing large partnerships), see the note below. All others, enter this amount on Form 4797, line 3. Dollars. Note: Partnerships, enter the amount from line 38 a, 38 b, or line 39 on Form 1065, Schedule K, line 11.\rS corporations, enter the amount from line 38 a or 38 b on Form 1120 S, Schedule K, line 10."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text1","EN":0},"TI":3395,"AM":1024,"x":62.001,"y":47.401,"w":18.584,"h":0.872,"V":"Form 4684 page 3"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F46843"}},"id":{"Id":"Add_F4684_Page_3","EN":0},"TI":3396,"AM":1024,"x":81.963,"y":47.55,"w":6.311,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F46843.content.txt b/test/data/fd/form/F46843.content.txt new file mode 100755 index 00000000..28a822b0 --- /dev/null +++ b/test/data/fd/form/F46843.content.txt @@ -0,0 +1,80 @@ + . +46 +Enter .95 (95%) if you have no potential third-party recovery. Enter .75 (75%) if you +have potential third-party recovery +............... +46 +Form 4684 (2013) +Page +3 +Name(s) shown on tax return +Identifying number +SECTION C„Theft Loss Deduction for Ponzi-Type Investment Scheme Using the Procedures in Revenue +Procedure 2009-20 +(Complete this section in lieu of Appendix A in Revenue Procedure 2009-20. See instructions.) +Part I +Computation of Deduction +40 +Initial investment +..................... +40 +41 +Subsequent investments (see instructions) +............. +41 +42 +Income reported on your tax returns for tax years prior to the discovery year +(see instructions) +..................... +42 +43 +Add lines 40, 41, and 42 +.................. +43 +44 +Withdrawals for all years (see instructions) +............. +44 +45 +Subtract line 44 from line 43. This is your total qualified investment +...... +45 +47 +Multiply line 46 by line 45 +.................. +47 +48 +Actual recovery +..................... +48 +49 +Potential insurance/Securities Investor Protection Corporation (SIPC) recovery . . +49 +50 +Add lines 48 and 49. This is your total recovery +............ +50 +51 +Subtract line 50 from line 47. This is your deductible theft loss. Include this amount on +line 28. Do not complete lines 19-27 for this loss. Then complete Section B, Part II . +51 +Part II +Required Statements and Declarations + (See instructions.) +individual or entity. +Name of individual or entity +Taxpayer identification number (if known) +Address +• I have written documentation to support the amounts reported in Part I of this Section C. +• I am a qualified investor as defined in section 4.03 of Revenue Procedure 2009-20. +any potential third-party recovery, as that term is defined in section 4.10 of Revenue Procedure 2009-20. +date(s) on which they were filed are as follows: +Form +4684 + (2013) +• I agree to comply with the conditions and agreements set forth in Revenue Procedure 2009-20 and this Section C. +• I am claiming a theft loss deduction pursuant to Revenue Procedure 2009-20 from a specified fraudulent arrangement conducted by the following +• If I have determined the amount of my theft loss deduction using .95 on line 46 above, I declare that I have not pursued and do not intend to pursue +• If I have already filed a return or amended return that does not satisfy the conditions in section 6.02 of Revenue Procedure 2009-20, I agree to all +adjustments or actions that are necessary to comply with those conditions. The tax year(s) for which I filed the return(s) or amended return(s) and the +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F46843.fields.json b/test/data/fd/form/F46843.fields.json new file mode 100755 index 00000000..f3950a57 --- /dev/null +++ b/test/data/fd/form/F46843.fields.json @@ -0,0 +1 @@ +[{"id":"DESC1","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"INITINV","type":"number","calc":false,"value":""},{"id":"SUBSQINV","type":"number","calc":false,"value":""},{"id":"PRIORINC","type":"number","calc":false,"value":""},{"id":"SUMLINES","type":"number","calc":true,"value":""},{"id":"WDRWLS","type":"number","calc":false,"value":""},{"id":"TOTQINV","type":"number","calc":true,"value":""},{"id":"QINVPCT","type":"alpha","calc":false,"value":""},{"id":"PRODUCT","type":"number","calc":true,"value":""},{"id":"ACTRCVRY","type":"number","calc":false,"value":""},{"id":"INSSIPC","type":"number","calc":false,"value":""},{"id":"TOTRECOV","type":"number","calc":true,"value":""},{"id":"DEDTHEFT","type":"number","calc":true,"value":""},{"id":"ENTITY","type":"alpha","calc":false,"value":""},{"id":"IDNUM","type":"alpha","calc":false,"value":""},{"id":"ADDRESS","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_1_","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_2_","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_3_","type":"alpha","calc":false,"value":""},{"id":"A20_FILED_4_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F46843.json b/test/data/fd/form/F46843.json new file mode 100755 index 00000000..5001cb37 --- /dev/null +++ b/test/data/fd/form/F46843.json @@ -0,0 +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":64.309,"y":13.5,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.022,"y":13.501,"w":0.75,"l":15.486},{"oc":"#221f1f","x":68.065,"y":13.501,"w":0.75,"l":15.4},{"oc":"#221f1f","x":68.065,"y":12.001,"w":0.75,"l":15.4},{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":9.986},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.155,"y":3.001,"w":1.5,"l":71.853},{"oc":"#221f1f","x":6.155,"y":4.501,"w":1.5,"l":71.853},{"oc":"#221f1f","x":77.922,"y":3.001,"w":1.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":4.501,"w":1.5,"l":21.123},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":6.001,"w":1.2000000000000002,"l":5.036},{"oc":"#221f1f","x":6.147,"y":6.744,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.147,"y":6.001,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":83.433,"y":6.751,"w":0.75,"l":15.555},{"oc":"#221f1f","x":64.309,"y":7.5,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":7.501,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":6.751,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":7.501,"w":0.75,"l":3.695},{"oc":"#221f1f","x":64.309,"y":8.25,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":8.25,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":7.5,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":8.251,"w":0.75,"l":3.695},{"oc":"#221f1f","x":64.309,"y":9.75,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":9.75,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":8.25,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":9.751,"w":0.75,"l":3.695},{"oc":"#221f1f","x":64.309,"y":10.5,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":10.5,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":9.75,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":10.501,"w":0.75,"l":3.695},{"oc":"#221f1f","x":64.309,"y":11.25,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":11.25,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":10.5,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":11.251,"w":0.75,"l":3.695},{"oc":"#221f1f","x":64.309,"y":12,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":12,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":11.25,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":12.001,"w":0.75,"l":3.695},{"oc":"#221f1f","x":64.309,"y":14.251,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.022,"y":13.501,"w":0.75,"l":15.555},{"oc":"#221f1f","x":83.476,"y":14.251,"w":0.75,"l":11.756},{"oc":"#221f1f","x":83.476,"y":13.501,"w":0.75,"l":11.756},{"oc":"#221f1f","x":95.247,"y":13.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":14.252,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.433,"y":14.251,"w":0.75,"l":15.555},{"oc":"#221f1f","x":64.309,"y":15.001,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":15.001,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":14.251,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":14.252,"w":0.75,"l":3.695},{"oc":"#221f1f","x":79.835,"y":15.002,"w":0.75,"l":3.695},{"oc":"#221f1f","x":83.433,"y":15.751,"w":0.75,"l":15.555},{"oc":"#221f1f","x":64.309,"y":15.751,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.065,"y":15.751,"w":0.75,"l":11.756},{"oc":"#221f1f","x":68.065,"y":15.001,"w":0.75,"l":11.756},{"oc":"#221f1f","x":79.835,"y":15.752,"w":0.75,"l":3.695},{"oc":"#221f1f","x":64.309,"y":16.501,"w":0.75,"l":3.8},{"oc":"#221f1f","x":68.022,"y":15.751,"w":0.75,"l":15.555},{"oc":"#221f1f","x":83.476,"y":16.501,"w":0.75,"l":11.756},{"oc":"#221f1f","x":83.476,"y":15.751,"w":0.75,"l":11.756},{"oc":"#221f1f","x":95.247,"y":16.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":17.97,"w":0.75,"l":15.555},{"oc":"#221f1f","x":83.476,"y":17.97,"w":0.75,"l":11.756},{"oc":"#221f1f","x":83.476,"y":16.501,"w":0.75,"l":11.756},{"oc":"#221f1f","x":95.247,"y":18.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.183,"y":18.002,"w":1.2000000000000002,"l":6.273},{"oc":"#221f1f","x":6.183,"y":18.752,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.183,"y":18.002,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.183,"y":18.752,"w":0.75,"l":92.899},{"oc":"#221f1f","x":25.327,"y":21.007,"w":0.75,"l":73.718},{"oc":"#221f1f","x":33.27,"y":21.763,"w":0.75,"l":65.775},{"oc":"#221f1f","x":12.952,"y":22.502,"w":0.75,"l":86.093},{"oc":"#221f1f","x":6.147,"y":29.252,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.002,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.752,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":31.502,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":98.945,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":83.465,"y":12.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":68.065,"y":12.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":77.965,"y":2.97,"w":0.75,"l":1.563},{"oc":"#221f1f","x":6.19,"y":5.976,"w":0.75,"l":0.783},{"oc":"#221f1f","x":98.945,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.476,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.821,"y":6.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":68.065,"y":6.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.878,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.945,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.476,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.821,"y":7.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":68.065,"y":7.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.878,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.945,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":83.476,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.821,"y":8.25,"w":0.75,"l":1.5},{"oc":"#221f1f","x":68.065,"y":8.25,"w":0.75,"l":1.5},{"oc":"#221f1f","x":79.878,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":98.945,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.476,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.821,"y":9.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":68.065,"y":9.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.878,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.821,"y":10.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":68.065,"y":10.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.878,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.945,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.476,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.821,"y":11.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":68.065,"y":11.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.878,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.945,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.476,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.232,"y":13.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":83.476,"y":13.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.29,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.945,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.476,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.821,"y":14.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":68.065,"y":14.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.878,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":98.945,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.476,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.821,"y":15.001,"w":0.75,"l":0.75},{"oc":"#221f1f","x":68.065,"y":15.001,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.878,"y":14.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.533,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.232,"y":15.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":83.476,"y":15.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.29,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":16.485,"w":0.75,"l":1.5},{"oc":"#221f1f","x":83.533,"y":16.485,"w":0.75,"l":1.5},{"oc":"#221f1f","x":68.065,"y":16.485,"w":0.75,"l":1.5},{"oc":"#221f1f","x":95.232,"y":16.501,"w":0.75,"l":1.469},{"oc":"#221f1f","x":83.476,"y":16.501,"w":0.75,"l":1.469},{"oc":"#221f1f","x":95.29,"y":16.486,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":83.476,"y":12,"w":15.469,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":6.001,"w":4.95,"h":0.742,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":6.751,"w":15.469,"h":0.749,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":7.5,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":8.25,"w":15.469,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":9.75,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":10.5,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":11.25,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":68.065,"y":13.501,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":14.251,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":83.476,"y":15.001,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":68.065,"y":15.751,"w":15.469,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":68.065,"y":16.501,"w":15.469,"h":1.469,"clr":-1},{"oc":"#221f1f","x":6.226,"y":18.002,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":76.177,"y":12.545,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.861,"y":11.982,"w":1.112,"clr":-1,"A":"left","R":[{"T":"46","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":11.982,"w":37.155999999999985,"clr":-1,"A":"left","R":[{"T":"Enter%20.95%20(95%25)%20if%20you%20have%20no%20potential%20third-party%20recovery.%20Enter%20.75%20(75%25)%20if%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.769,"y":12.607,"w":15.372000000000007,"clr":-1,"A":"left","R":[{"T":"have%20potential%20third-party%20recovery","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.756,"y":12.607,"w":22.5,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":12.645,"w":1.112,"clr":-1,"A":"left","R":[{"T":"46","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204684%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":2.041,"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.041,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.948,"y":2.688,"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":78.746,"y":2.688,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.385,"w":49.56599999999995,"clr":-1,"A":"left","R":[{"T":"SECTION%20C%E2%80%9ETheft%20Loss%20Deduction%20for%20Ponzi-Type%20Investment%20Scheme%20Using%20the%20Procedures%20in%20Revenue%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.01,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Procedure%202009-20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.032,"y":5.01,"w":41.934999999999974,"clr":-1,"A":"left","R":[{"T":"(Complete%20this%20section%20in%20lieu%20of%20Appendix%20A%20in%20Revenue%20Procedure%202009-20.%20See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"x":5.94,"y":5.877,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":5.822,"w":12.555000000000003,"clr":-1,"A":"left","R":[{"T":"Computation%20of%20Deduction","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.861,"y":6.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":6.609,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Initial%20investment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.377,"y":6.609,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":6.645,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":7.356999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":7.356999999999999,"w":18.89400000000001,"clr":-1,"A":"left","R":[{"T":"Subsequent%20investments%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.877,"y":7.356999999999999,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":7.395,"w":1.112,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":8.201,"w":1.112,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":8.17,"w":34.42899999999999,"clr":-1,"A":"left","R":[{"T":"Income%20reported%20on%20your%20tax%20returns%20for%20tax%20years%20prior%20to%20the%20discovery%20year%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.765,"y":8.858,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.377,"y":8.858,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":8.895,"w":1.112,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":9.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":9.607,"w":10.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2040%2C%2041%2C%20and%2042","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.565,"y":9.607,"w":27,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":9.645,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":10.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":10.357,"w":19.314000000000007,"clr":-1,"A":"left","R":[{"T":"Withdrawals%20for%20all%20years%20(see%20instructions)%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.877,"y":10.357,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":10.395,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":11.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"45","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":11.107,"w":29.693000000000016,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2044%20from%20line%2043.%20This%20is%20your%20total%20qualified%20investment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.315,"y":11.107,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":11.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"45","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":13.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":13.358,"w":11.282000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2046%20by%20line%2045","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.565,"y":13.358,"w":27,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":13.395,"w":1.112,"clr":-1,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":14.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"48","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":14.108,"w":6.944,"clr":-1,"A":"left","R":[{"T":"Actual%20recovery","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.377,"y":14.108,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":14.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"48","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":14.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":14.858,"w":34.83200000000001,"clr":-1,"A":"left","R":[{"T":"Potential%20insurance%2FSecurities%20Investor%20Protection%20Corporation%20(SIPC)%20recovery","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.566,"y":14.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.628,"y":14.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":14.895,"w":1.112,"clr":-1,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":15.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"50","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":15.608,"w":20.911999999999995,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2048%20and%2049.%20This%20is%20your%20total%20recovery","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.94,"y":15.608,"w":18,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":15.645,"w":1.112,"clr":-1,"A":"left","R":[{"T":"50","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.861,"y":16.452,"w":1.112,"clr":-1,"A":"left","R":[{"T":"51","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.765,"y":16.452,"w":38.62299999999999,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2050%20from%20line%2047.%20This%20is%20your%20deductible%20theft%20loss.%20Include%20this%20amount%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.764,"y":17.077,"w":36.602000000000004,"clr":-1,"A":"left","R":[{"T":"line%2028.%20Do%20not%20complete%20lines%2019-27%20for%20this%20loss.%20Then%20complete%20Section%20B%2C%20Part%20II","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.627,"y":17.077,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.195,"y":17.115,"w":1.112,"clr":-1,"A":"left","R":[{"T":"51","S":-1,"TS":[0,11,1,0]}]},{"x":5.976,"y":17.886,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.71,"y":17.823,"w":18.338000000000005,"clr":-1,"A":"left","R":[{"T":"Required%20Statements%20and%20Declarations","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":45.407,"y":17.823,"w":8.260000000000002,"clr":-1,"A":"left","R":[{"T":"%20(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.87,"y":19.346,"w":8.409000000000004,"clr":-1,"A":"left","R":[{"T":"individual%20or%20entity.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.971,"y":20.114,"w":12.206000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20individual%20or%20entity","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.971,"y":20.87,"w":18.928,"clr":-1,"A":"left","R":[{"T":"Taxpayer%20identification%20number%20(if%20known)%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.971,"y":21.609,"w":3.704,"clr":-1,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":22.359,"w":40.286999999999985,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20I%20have%20written%20documentation%20to%20support%20the%20amounts%20reported%20in%20Part%20I%20of%20this%20Section%20C.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":23.109,"w":37.65799999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20I%20am%20a%20qualified%20investor%20as%20defined%20in%20section%204.03%20of%20Revenue%20Procedure%202009-20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.971,"y":24.609,"w":46.696999999999974,"clr":-1,"A":"left","R":[{"T":"any%20potential%20third-party%20recovery%2C%20as%20that%20term%20is%20defined%20in%20section%204.10%20of%20Revenue%20Procedure%202009-20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.971,"y":27.609,"w":20.794000000000008,"clr":-1,"A":"left","R":[{"T":"date(s)%20on%20which%20they%20were%20filed%20are%20as%20follows%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":31.292,"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.292,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4684","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":31.292,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":25.359,"w":51.75299999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20I%20agree%20to%20comply%20with%20the%20conditions%20and%20agreements%20set%20forth%20in%20Revenue%20Procedure%202009-20%20and%20this%20Section%20C.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":18.759,"w":66.03499999999991,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20I%20am%20claiming%20a%20theft%20loss%20deduction%20pursuant%20to%20Revenue%20Procedure%202009-20%20from%20a%20specified%20fraudulent%20arrangement%20conducted%20by%20the%20following%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":23.984,"w":66.87499999999993,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20I%20have%20determined%20the%20amount%20of%20my%20theft%20loss%20deduction%20using%20.95%20on%20line%2046%20above%2C%20I%20declare%20that%20I%20have%20not%20pursued%20and%20do%20not%20intend%20to%20pursue%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.359,"w":65.60699999999993,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20I%20have%20already%20filed%20a%20return%20or%20amended%20return%20that%20does%20not%20satisfy%20the%20conditions%20in%20section%206.02%20of%20Revenue%20Procedure%202009-20%2C%20I%20agree%20to%20all%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.971,"y":26.984,"w":66.51099999999994,"clr":-1,"A":"left","R":[{"T":"adjustments%20or%20actions%20that%20are%20necessary%20to%20comply%20with%20those%20conditions.%20The%20tax%20year(s)%20for%20which%20I%20filed%20the%20return(s)%20or%20amended%20return(s)%20and%20the%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC1","EN":0},"TI":3397,"AM":0,"x":16.024,"y":2.004,"w":19.115,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3398,"AM":1024,"x":6.196,"y":3.625,"w":71.767,"h":0.875,"TU":"Page 1. Name(s) shown on tax return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3399,"AM":1024,"x":77.963,"y":3.625,"w":21.037,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INITINV","EN":0},"TI":3400,"AM":0,"x":68.063,"y":6.75,"w":11.756,"h":0.833,"TU":"SECTION C—Theft Loss Deduction for Ponzi-Type Investment Scheme Using the Procedures in Revenue Procedure 2009-20 (Complete this section in lieu of Appendix A in Revenue Procedure 2009-20. See instructions.) Part 1. Computation of Deduction. Line 40. Initial investment. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBSQINV","EN":0},"TI":3401,"AM":0,"x":68.063,"y":7.499,"w":11.756,"h":0.833,"TU":"Line 41. Subsequent investments (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRIORINC","EN":0},"TI":3402,"AM":0,"x":68.063,"y":8.333,"w":11.756,"h":1.417,"TU":"Line 42. Income reported on your tax returns for 2012 and prior years. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUMLINES","EN":0},"TI":3403,"AM":1024,"x":68.063,"y":9.749,"w":11.756,"h":0.833,"TU":"Line 43. Add lines 40, 41, and 42. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WDRWLS","EN":0},"TI":3404,"AM":0,"x":68.063,"y":10.499,"w":11.756,"h":0.833,"TU":"Line 44. Withdrawals for all years (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTQINV","EN":0},"TI":3405,"AM":1024,"x":68.063,"y":11.249,"w":11.756,"h":0.833,"TU":"Line 45. Subtract line 44 from line 43. This is your total qualified investment. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QINVPCT","EN":0},"TI":3406,"AM":0,"x":68.127,"y":12.349,"w":13.556,"h":1.127,"TU":"Line 46. Enter .95 (95%) if you have no potential third-party recovery. Enter .75 (75%) if you have potential third-party recovery. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRODUCT","EN":0},"TI":3407,"AM":1024,"x":83.474,"y":13.5,"w":11.756,"h":0.833,"TU":"Line 47. Multiply line 46 by line 45. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ACTRCVRY","EN":0},"TI":3408,"AM":0,"x":68.063,"y":14.25,"w":11.756,"h":0.833,"TU":"Line 48. Actual recovery. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INSSIPC","EN":0},"TI":3409,"AM":0,"x":68.127,"y":15,"w":11.756,"h":0.833,"TU":"Line 49. Potential insurance/Securities Investor Protection Corporation (SIPC) recovery. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTRECOV","EN":0},"TI":3410,"AM":1024,"x":83.474,"y":15.75,"w":11.756,"h":0.833,"TU":"Line 50. Add lines 48 and 49. This is your total recovery. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDTHEFT","EN":0},"TI":3411,"AM":1024,"x":83.474,"y":16.583,"w":11.756,"h":1.386,"TU":"Line 51. Subtract line 50 from line 47. This is your deductible theft loss. Include this amount on line 28. Do not complete lines 19-27 for this loss. Then complete Section B, Part 2. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ENTITY","EN":0},"TI":3412,"AM":0,"x":25.368,"y":20.376,"w":73.632,"h":0.833,"TU":"Name of individual or entity"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"IDNUM","EN":0},"TI":3413,"AM":0,"x":33.311,"y":21.126,"w":65.689,"h":0.833,"TU":"Taxpayer identification number (if known) "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDRESS","EN":0},"TI":3414,"AM":0,"x":13.057,"y":21.899,"w":86.007,"h":0.833,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A20_FILED_1_","EN":0},"TI":3415,"AM":0,"x":6.188,"y":28.501,"w":92.813,"h":0.833,"TU":"TextField17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A20_FILED_2_","EN":0},"TI":3416,"AM":0,"x":6.252,"y":29.274,"w":92.813,"h":0.833,"TU":"f3_100"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A20_FILED_3_","EN":0},"TI":3417,"AM":0,"x":6.188,"y":30.001,"w":92.813,"h":0.833,"TU":"f3_101"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A20_FILED_4_","EN":0},"TI":3418,"AM":0,"x":6.218,"y":30.744,"w":92.699,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4797.content.txt b/test/data/fd/form/F4797.content.txt new file mode 100755 index 00000000..ee855213 --- /dev/null +++ b/test/data/fd/form/F4797.content.txt @@ -0,0 +1,186 @@ +Form +4797 +Department of the Treasury +Internal Revenue Service +Sales of Business Property +(Also Involuntary Conversions and Recapture Amounts + + +Under Sections 179 and 280F(b)(2)) +a + +Attach to your tax return. + +a + +Information about Form 4797 and its separate instructions is at +www.irs.gov/form4797. +OMB No. 1545-0184 +20 +13 +Attachment +Sequence No. +27 +Name(s) shown on return +Identifying number +1 +Enter the gross proceeds from sales or exchanges reported to you for 2013 on Form(s) 1099-B or 1099-S (or +substitute statement) that you are including on line 2, 10, or 20 (see instructions) +........ +1 +Part I +Sales or Exchanges of Property Used in a Trade or Business and Involuntary Conversions From Other +Than Casualty or Theft—Most Property Held More Than 1 Year +(see instructions) +2 +(a) +Description + + +of property +(b) +Date acquired + +(mo., day, yr.) +(c) +Date sold + + +(mo., day, yr.) +(d) +Gross + + +sales price +(e) +Depreciation + +allowed or + +allowable since + +acquisition +(f) +Cost or other + + +basis, plus + +improvements and + +expense of sale +(g) Gain or (loss) +Subtract (f) from the + +sum of (d) and (e) +3 +Gain, if any, from Form 4684, line 39 +........................ + 3 +4 +Section 1231 gain from installment sales from Form 6252, line 26 or 37 +.............. + 4 +5 +Section 1231 gain or (loss) from like-kind exchanges from Form 8824 +.............. + 5 +6 +Gain, if any, from line 32, from other than casualty or theft +.................. + 6 +7 +Combine lines 2 through 6. Enter the gain or (loss) here and on the appropriate line as follows: +....... + 7 +Partnerships (except electing large partnerships) and S corporations. +Report the gain or (loss) following + +the + +instructions for Form 1065, Schedule K, line 10, or Form 1120S, Schedule K, line 9. Skip lines 8, 9, 11, and 12 be +low. + +I +ndividuals, partners, S corporation shareholders, and all others. + If line 7 is zero or a loss, enter the amount + +from +line 7 on line 11 below and skip lines 8 and 9. If line 7 is a gain and you did not have any prior year section + +1231 +losses, or they were recaptured in an earlier year, enter the gain from line 7 as a long-term capital gain + +on the +Schedule D filed with your return and skip lines 8, 9, 11, and 12 below. +8 +Nonrecaptured net section 1231 losses from prior years (see instructions) +............. +8 +9 +Subtract line 8 from line 7. If zero or less, enter -0-. If line 9 is zero, enter the gain from line 7 on line 12 below. If li +ne +9 is more than zero, enter the amount from line 8 on line 12 below and enter the gain from line 9 as a long-term +capital gain on the Schedule D filed with your return (see instructions) +.............. +9 +Part II +Ordinary Gains and Losses +(see instructions) +10 +Ordinary gains and losses not included on lines 11 through 16 (include property held 1 year or less): + + + + + + + +11 +Loss, if any, from line 7 +............................ + 11 +( ) +12 +Gain, if any, from line 7 or amount from line 8, if applicable +................. + 12 +13 +Gain, if any, from line 31 +........................... + 13 +14 +Net gain or (loss) from Form 4684, lines 31 and 38a +................... + 14 +15 +Ordinary gain from installment sales from Form 6252, line 25 or 36 +............... + 15 +16 +Ordinary gain or (loss) from like-kind exchanges from Form 8824 +................ + 16 +17 +Combine lines 10 through 16 +.......................... + 17 +18 +For all except individual returns, enter the amount from line 17 on the appropriate line of your return and skip lines a +and b below. For individual returns, complete lines a and b below: +a +If the loss on line 11 includes a loss from Form 4684, line 35, column (b)(ii), enter that part of the loss here. Enter the pa +rt +of the loss from income-producing property on Schedule A (Form 1040), line 28, and the part of the loss from property +used as an employee on Schedule A (Form 1040), line 23. Identify as from “Form 4797, line 18a.” See instructions . . +18a +b +Redetermine the gain or (loss) on line 17 excluding the loss, if any, on line 18a. Enter here and on Form 1040, line 14 +18b +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 13086I +Form +4797 + (2013) +Form 4797 page 2 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4797.fields.json b/test/data/fd/form/F4797.fields.json new file mode 100755 index 00000000..95b9fd75 --- /dev/null +++ b/test/data/fd/form/F4797.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"LINE2_L2A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2B_1_","type":"date","calc":false,"value":""},{"id":"LINE2_L2C_1_","type":"date","calc":false,"value":""},{"id":"LINE2_L2D_1_","type":"number","calc":false,"value":""},{"id":"LINE2_L2E_1_","type":"number","calc":false,"value":""},{"id":"LINE2_L2F_1_","type":"number","calc":false,"value":""},{"id":"LINE2_L2G_1_","type":"number","calc":true,"value":""},{"id":"LINE2_L2A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2B_2_","type":"date","calc":false,"value":""},{"id":"LINE2_L2C_2_","type":"date","calc":false,"value":""},{"id":"LINE2_L2D_2_","type":"number","calc":false,"value":""},{"id":"LINE2_L2E_2_","type":"number","calc":false,"value":""},{"id":"LINE2_L2F_2_","type":"number","calc":false,"value":""},{"id":"LINE2_L2G_2_","type":"number","calc":true,"value":""},{"id":"LINE2_L2A_3_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2B_3_","type":"date","calc":false,"value":""},{"id":"LINE2_L2C_3_","type":"date","calc":false,"value":""},{"id":"LINE2_L2D_3_","type":"number","calc":false,"value":""},{"id":"LINE2_L2E_3_","type":"number","calc":false,"value":""},{"id":"LINE2_L2F_3_","type":"number","calc":false,"value":""},{"id":"LINE2_L2G_3_","type":"number","calc":true,"value":""},{"id":"LINE2_L2A_4_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2B_4_","type":"date","calc":false,"value":""},{"id":"LINE2_L2C_4_","type":"date","calc":false,"value":""},{"id":"LINE2_L2D_4_","type":"number","calc":false,"value":""},{"id":"LINE2_L2E_4_","type":"number","calc":false,"value":""},{"id":"LINE2_L2F_4_","type":"number","calc":false,"value":""},{"id":"LINE2_L2G_4_","type":"number","calc":true,"value":""},{"id":"Add_F4684","type":"link","calc":true,"value":""},{"id":"L3G","type":"number","calc":true,"value":""},{"id":"Add_F6252","type":"link","calc":true,"value":""},{"id":"L4G","type":"number","calc":false,"value":""},{"id":"Add_F8824","type":"link","calc":true,"value":""},{"id":"L5G","type":"number","calc":false,"value":""},{"id":"L6G","type":"number","calc":false,"value":""},{"id":"L7G","type":"number","calc":true,"value":""},{"id":"L9G","type":"number","calc":false,"value":""},{"id":"L10G","type":"number","calc":true,"value":""},{"id":"LINE11_L11A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11B_1_","type":"date","calc":false,"value":""},{"id":"LINE11_L11C_1_","type":"date","calc":false,"value":""},{"id":"LINE11_L11D_1_","type":"number","calc":false,"value":""},{"id":"LINE11_L11E_1_","type":"number","calc":false,"value":""},{"id":"LINE11_L11F_1_","type":"number","calc":false,"value":""},{"id":"LINE11_L11G_1_","type":"number","calc":true,"value":""},{"id":"LINE11_L11A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11B_2_","type":"date","calc":false,"value":""},{"id":"LINE11_L11C_2_","type":"date","calc":false,"value":""},{"id":"LINE11_L11D_2_","type":"number","calc":false,"value":""},{"id":"LINE11_L11E_2_","type":"number","calc":false,"value":""},{"id":"LINE11_L11F_2_","type":"number","calc":false,"value":""},{"id":"LINE11_L11G_2_","type":"number","calc":true,"value":""},{"id":"LINE11_L11A_3_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11B_3_","type":"date","calc":false,"value":""},{"id":"LINE11_L11C_3_","type":"date","calc":false,"value":""},{"id":"LINE11_L11D_3_","type":"number","calc":false,"value":""},{"id":"LINE11_L11E_3_","type":"number","calc":false,"value":""},{"id":"LINE11_L11F_3_","type":"number","calc":false,"value":""},{"id":"LINE11_L11G_3_","type":"number","calc":true,"value":""},{"id":"LINE11_L11A_4_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11B_4_","type":"date","calc":false,"value":""},{"id":"LINE11_L11C_4_","type":"date","calc":false,"value":""},{"id":"LINE11_L11D_4_","type":"number","calc":false,"value":""},{"id":"LINE11_L11E_4_","type":"number","calc":false,"value":""},{"id":"LINE11_L11F_4_","type":"number","calc":false,"value":""},{"id":"LINE11_L11G_4_","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13G","type":"number","calc":false,"value":""},{"id":"Add_F4792P2","type":"link","calc":true,"value":""},{"id":"L14G","type":"number","calc":true,"value":""},{"id":"Add_F4684","type":"link","calc":true,"value":""},{"id":"L15G","type":"number","calc":true,"value":""},{"id":"Add_F6252","type":"link","calc":true,"value":""},{"id":"L16G","type":"number","calc":false,"value":""},{"id":"Add_F8824","type":"link","calc":true,"value":""},{"id":"L17G","type":"number","calc":false,"value":""},{"id":"L19G","type":"number","calc":true,"value":""},{"id":"L20B1","type":"number","calc":false,"value":""},{"id":"L20B2","type":"number","calc":true,"value":""},{"id":"Add_F4797P2","type":"link","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4797.json b/test/data/fd/form/F4797.json new file mode 100755 index 00000000..e5613592 --- /dev/null +++ b/test/data/fd/form/F4797.json @@ -0,0 +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":81.589,"y":3,"w":0.75,"l":17.454},{"oc":"#221f1f","x":6.195,"y":6,"w":1.5,"l":68.149},{"oc":"#221f1f","x":6.195,"y":7.5,"w":0.75,"l":68.149},{"oc":"#221f1f","x":74.257,"y":6,"w":1.5,"l":24.786},{"oc":"#221f1f","x":74.257,"y":7.5,"w":0.75,"l":24.786},{"oc":"#221f1f","x":6.145,"y":9.032,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.513,"w":0.75,"l":21.118},{"oc":"#221f1f","x":6.145,"y":12.763,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":10.513,"w":0.75,"l":11.22},{"oc":"#221f1f","x":27.176,"y":12.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":10.513,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":12.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":10.513,"w":0.75,"l":12.457},{"oc":"#221f1f","x":49.444,"y":12.763,"w":0.75,"l":12.457},{"oc":"#221f1f","x":61.816,"y":10.513,"w":0.75,"l":12.484},{"oc":"#221f1f","x":61.816,"y":12.763,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":10.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":74.214,"y":12.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.586,"y":10.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.586,"y":12.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.145,"y":13.513,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":13.513,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":13.513,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":13.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.816,"y":13.513,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":13.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.586,"y":13.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.144,"y":14.263,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":14.263,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":14.263,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":14.263,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.816,"y":14.263,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":14.263,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.586,"y":14.263,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.144,"y":15.013,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":15.013,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":15.013,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":15.013,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.816,"y":15.013,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":15.013,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.585,"y":15.013,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.144,"y":15.763,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":15.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":15.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":15.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.815,"y":15.763,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":15.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.585,"y":15.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":82.87,"y":16.513,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":16.513,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":17.263,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":17.263,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":18.013,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":18.013,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":18.763,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.582,"y":18.763,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":19.513,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":19.513,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":19.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.87,"y":24.013,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.582,"y":24.013,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.145,"y":26.263,"w":1.125,"l":92.914},{"oc":"#221f1f","x":6.145,"y":27.013,"w":0.75,"l":92.914},{"oc":"#221f1f","x":6.145,"y":27.763,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":27.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":27.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":27.763,"w":0.75,"l":12.457},{"oc":"#221f1f","x":61.816,"y":27.763,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":27.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.586,"y":27.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.145,"y":28.513,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":28.513,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":28.513,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":28.513,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":28.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.816,"y":28.513,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":28.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.586,"y":28.513,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.144,"y":29.263,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.144,"y":29.263,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":29.263,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":29.263,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":29.263,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.816,"y":29.263,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":29.263,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.586,"y":29.263,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.144,"y":30.013,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.144,"y":30.013,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":30.013,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":30.013,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":30.013,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.816,"y":30.013,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":30.013,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.585,"y":30.013,"w":0.75,"l":12.458},{"oc":"#221f1f","x":6.144,"y":30.763,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.144,"y":30.763,"w":0.75,"l":21.118},{"oc":"#221f1f","x":27.176,"y":30.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":38.31,"y":30.763,"w":0.75,"l":11.22},{"oc":"#221f1f","x":49.444,"y":30.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":61.815,"y":30.763,"w":0.75,"l":12.484},{"oc":"#221f1f","x":74.214,"y":30.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":86.585,"y":30.763,"w":0.75,"l":12.458},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.582,"y":35.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":36,"w":0.75,"l":16.209},{"oc":"#221f1f","x":82.87,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":39.751,"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":6.145,"y":40.5,"w":1.5,"l":42.111},{"oc":"#221f1f","x":48.22,"y":40.5,"w":1.5,"l":39.686},{"oc":"#221f1f","x":87.82,"y":40.5,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":22.325,"y":2.234,"w":1.5,"l":3.781},{"oc":"#221f1f","x":81.675,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":81.675,"y":2.984,"w":1.5,"l":1.531},{"oc":"#221f1f","x":81.675,"y":4.484,"w":1.5,"l":1.531},{"oc":"#221f1f","x":74.3,"y":5.969,"w":0.75,"l":1.547},{"oc":"#221f1f","x":86.675,"y":7.484,"w":0.75,"l":1.522},{"oc":"#221f1f","x":82.963,"y":7.484,"w":0.75,"l":1.522},{"oc":"#221f1f","x":27.219,"y":10.497,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.353,"y":10.497,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.487,"y":10.497,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.859,"y":10.497,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.257,"y":10.497,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.629,"y":10.497,"w":0.75,"l":2.281},{"oc":"#221f1f","x":27.219,"y":12.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":12.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":12.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.859,"y":12.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":12.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.629,"y":12.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.219,"y":13.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":13.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":13.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.859,"y":13.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":13.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.629,"y":13.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.219,"y":14.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":14.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":14.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.859,"y":14.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":14.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.628,"y":14.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.219,"y":14.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":14.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":14.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.858,"y":14.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":14.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.628,"y":14.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":15.748,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":15.748,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":16.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":16.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":17.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":17.998,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":17.998,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":18.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":18.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":19.485,"w":0.75,"l":3.794},{"oc":"#221f1f","x":86.625,"y":23.247,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":23.247,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":23.997,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":23.997,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.625,"y":25.497,"w":0.75,"l":0.795},{"oc":"#221f1f","x":27.219,"y":27.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":27.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":27.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.859,"y":27.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":27.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.629,"y":27.747,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.219,"y":28.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":28.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":28.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.859,"y":28.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":28.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.629,"y":28.497,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.219,"y":29.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":29.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":29.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.859,"y":29.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":29.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.628,"y":29.247,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.219,"y":29.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.353,"y":29.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.487,"y":29.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.858,"y":29.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.257,"y":29.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.628,"y":29.997,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.625,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":39.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.238,"y":9,"w":5.801,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":19.5,"w":16.087,"h":3.763,"clr":-1},{"oc":"#221f1f","x":6.203,"y":26.263,"w":5.711,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":36,"w":16.123,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.571,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.749,"y":2.571,"w":2.08,"clr":-1,"A":"left","R":[{"T":"4797","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.483,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.933,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":37.288,"y":2.163,"w":12.299999999999999,"clr":-1,"A":"left","R":[{"T":"Sales%20of%20Business%20Property%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":30.757,"y":2.913,"w":24.399999999999988,"clr":-1,"A":"left","R":[{"T":"(Also%20Involuntary%20Conversions%20and%20Recapture%20Amounts","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":37.528,"y":3.492,"w":16.520000000000003,"clr":-1,"A":"left","R":[{"T":"Under%20Sections%20179%20and%20280F(b)(2))","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":42.804,"y":4.214,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.218,"y":4.307,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":22.653,"y":4.834,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.066,"y":4.928,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%204797%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.642,"y":4.928,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform4797.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.503,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0184","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.627,"y":3.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.972,"y":3.393,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":84.863,"y":4.375,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.863,"y":4.884,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.175,"y":4.884,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.988,"y":5.732,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.738,"y":5.732,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.235,"y":7.356999999999999,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.7,"y":7.348000000000001,"w":48.71299999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20gross%20proceeds%20from%20sales%20or%20exchanges%20reported%20to%20you%20for%202013%20on%20Form(s)%201099-B%20or%201099-S%20(or%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.712,"y":8.036,"w":36.010999999999996,"clr":-1,"A":"left","R":[{"T":"substitute%20%20statement)%20that%20you%20are%20including%20on%20line%202%2C%2010%2C%20or%2020%20(see%20instructions)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":63.699,"y":8.036,"w":11.296,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":84.187,"y":8.098,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"x":6.692,"y":8.821,"w":3.111,"clr":1,"A":"left","R":[{"T":"Part%20I%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":8.9,"w":48.818999999999996,"clr":-1,"A":"left","R":[{"T":"Sales%20or%20Exchanges%20of%20Property%20Used%20in%20a%20Trade%20or%20Business%20and%20Involuntary%20Conversions%20From%20Other%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":9.587,"w":30.355000000000004,"clr":-1,"A":"left","R":[{"T":"Than%20Casualty%20or%20Theft%E2%80%94Most%20Property%20Held%20More%20Than%201%20Year%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":65.845,"y":9.587,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.235,"y":10.808,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.354,"y":10.744,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.426,"y":10.744,"w":5.093,"clr":-1,"A":"left","R":[{"T":"Description","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":13.657,"y":11.244,"w":4.926000000000001,"clr":-1,"A":"left","R":[{"T":"of%20property","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.701,"y":10.744,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.817,"y":10.744,"w":6.279000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20acquired","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.881,"y":11.244,"w":6.076000000000002,"clr":-1,"A":"left","R":[{"T":"(mo.%2C%20day%2C%20yr.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.072,"y":10.723,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.144,"y":10.723,"w":4.26,"clr":-1,"A":"left","R":[{"T":"Date%20sold","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.182,"y":11.248,"w":6.076000000000002,"clr":-1,"A":"left","R":[{"T":"(mo.%2C%20day%2C%20yr.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.761,"y":10.723,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.878,"y":10.723,"w":2.6660000000000004,"clr":-1,"A":"left","R":[{"T":"Gross","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.705,"y":11.248,"w":4.796,"clr":-1,"A":"left","R":[{"T":"sales%20price","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.363,"y":10.307,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.435,"y":10.307,"w":5.667000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.024,"y":10.775,"w":4.628,"clr":-1,"A":"left","R":[{"T":"allowed%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.698,"y":11.244,"w":6.832000000000001,"clr":-1,"A":"left","R":[{"T":"allowable%20since","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.9,"y":11.712,"w":4.834,"clr":-1,"A":"left","R":[{"T":"acquisition","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.76,"y":10.307,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.542,"y":10.307,"w":5.889000000000001,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.486,"y":10.775,"w":4.779,"clr":-1,"A":"left","R":[{"T":"basis%2C%20plus","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.179,"y":11.244,"w":8.337,"clr":-1,"A":"left","R":[{"T":"improvements%20and","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.982,"y":11.712,"w":7.000000000000001,"clr":-1,"A":"left","R":[{"T":"expense%20of%20sale","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.232,"y":10.516,"w":8.034,"clr":-1,"A":"left","R":[{"T":"(g)%20Gain%20or%20(loss)%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":87.568,"y":10.984,"w":8.946000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20(f)%20from%20the","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":88.24,"y":11.453,"w":7.743000000000001,"clr":-1,"A":"left","R":[{"T":"sum%20of%20(d)%20and%20(e)","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":7.235,"y":15.620000000000001,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":15.620000000000001,"w":16.22800000000001,"clr":-1,"A":"left","R":[{"T":"Gain%2C%20if%20any%2C%20from%20Form%204684%2C%20line%2039","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":15.620000000000001,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.946,"y":15.620000000000001,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%203","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.235,"y":16.37,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":16.37,"w":31.585000000000004,"clr":-1,"A":"left","R":[{"T":"Section%201231%20gain%20from%20installment%20sales%20from%20Form%206252%2C%20line%2026%20or%2037","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.375,"y":16.37,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.946,"y":16.37,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%204","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.235,"y":17.12,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":17.12,"w":30.804000000000006,"clr":-1,"A":"left","R":[{"T":"Section%201231%20gain%20or%20(loss)%20from%20like-kind%20exchanges%20from%20Form%208824","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.375,"y":17.12,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.946,"y":17.12,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%205","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.235,"y":17.87,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":17.87,"w":25.747000000000003,"clr":-1,"A":"left","R":[{"T":"Gain%2C%20if%20any%2C%20from%20line%2032%2C%20from%20other%20than%20casualty%20or%20theft","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.125,"y":17.87,"w":27,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.946,"y":17.87,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%206","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.235,"y":18.62,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":18.62,"w":41.89599999999998,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%202%20through%206.%20Enter%20the%20gain%20or%20(loss)%20here%20and%20on%20the%20appropriate%20line%20as%20follows%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":67.814,"y":18.62,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.946,"y":18.62,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%207","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.7,"y":19.358,"w":33.423,"clr":-1,"A":"left","R":[{"T":"Partnerships%20(except%20electing%20large%20partnerships)%20and%20S%20corporations.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.426,"y":19.358,"w":14.942999999999996,"clr":-1,"A":"left","R":[{"T":"Report%20the%20gain%20or%20(loss)%20following","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.535,"y":19.358,"w":1.408,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.696,"y":19.92,"w":50.29699999999996,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20Form%201065%2C%20Schedule%20K%2C%20line%2010%2C%20or%20Form%201120S%2C%20Schedule%20K%2C%20line%209.%20Skip%20lines%208%2C%209%2C%2011%2C%20and%2012%20be","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.858,"y":19.92,"w":1.832,"clr":-1,"A":"left","R":[{"T":"low.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":9.7,"y":20.652,"w":0.295,"clr":-1,"A":"left","R":[{"T":"I","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.157,"y":20.652,"w":30.554,"clr":-1,"A":"left","R":[{"T":"ndividuals%2C%20partners%2C%20S%20corporation%20shareholders%2C%20and%20all%20others.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":52.193,"y":20.652,"w":18.94700000000001,"clr":-1,"A":"left","R":[{"T":"%20If%20line%207%20is%20zero%20or%20a%20loss%2C%20enter%20the%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.658,"y":20.652,"w":2.334,"clr":-1,"A":"left","R":[{"T":"from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.71,"y":21.17,"w":47.30799999999995,"clr":-1,"A":"left","R":[{"T":"line%207%20on%20line%2011%20below%20and%20skip%20lines%208%20and%209.%20If%20line%207%20is%20a%20gain%20and%20you%20did%20not%20have%20any%20prior%20year%20section","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.431,"y":21.17,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1231%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.714,"y":21.733,"w":45.52399999999997,"clr":-1,"A":"left","R":[{"T":"losses%2C%20or%20they%20were%20recaptured%20in%20an%20earlier%20year%2C%20enter%20the%20gain%20from%20line%207%20as%20a%20long-term%20capital%20gain","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.389,"y":21.733,"w":3.094,"clr":-1,"A":"left","R":[{"T":"on%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.721,"y":22.295,"w":31.470999999999997,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20filed%20with%20your%20return%20and%20skip%20lines%208%2C%209%2C%2011%2C%20and%2012%20below.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.235,"y":23.12,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":23.12,"w":32.727000000000004,"clr":-1,"A":"left","R":[{"T":"Nonrecaptured%20net%20section%201231%20losses%20from%20prior%20years%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.439,"y":23.12,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.137,"y":23.12,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.235,"y":23.995,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.698,"y":23.995,"w":50.76499999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20line%209%20is%20zero%2C%20enter%20the%20gain%20from%20line%207%20on%20line%2012%20below.%20%20If%20li","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.978,"y":23.995,"w":1.371,"clr":-1,"A":"left","R":[{"T":"ne%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.706,"y":24.683,"w":49.71699999999996,"clr":-1,"A":"left","R":[{"T":"9%20is%20more%20than%20zero%2C%20enter%20the%20amount%20from%20line%208%20on%20line%2012%20below%20and%20enter%20the%20gain%20from%20line%209%20as%20a%20long-term%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.705,"y":25.37,"w":30.930000000000007,"clr":-1,"A":"left","R":[{"T":"capital%20gain%20on%20the%20Schedule%20D%20filed%20with%20your%20return%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.382,"y":25.37,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.137,"y":25.37,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,0,0]}]},{"x":6.359,"y":26.084,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":26.084,"w":13.389000000000006,"clr":-1,"A":"left","R":[{"T":"Ordinary%20Gains%20and%20Losses%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":36.684,"y":26.084,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.471,"y":26.745,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.622,"y":26.75,"w":44.417999999999985,"clr":-1,"A":"left","R":[{"T":"Ordinary%20gains%20and%20losses%20not%20included%20on%20lines%2011%20through%2016%20(include%20property%20held%201%20year%20or%20less)%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.471,"y":30.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":30.607,"w":10.336000000000002,"clr":-1,"A":"left","R":[{"T":"Loss%2C%20if%20any%2C%20from%20line%207","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.501,"y":30.607,"w":42,"clr":-1,"A":"left","R":[{"T":"............................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.563,"y":30.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2011","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.375,"y":30.5,"w":8.024000000000006,"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)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.471,"y":31.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":31.357,"w":26.062,"clr":-1,"A":"left","R":[{"T":"Gain%2C%20if%20any%2C%20from%20line%207%20or%20amount%20from%20line%208%2C%20if%20applicable","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.187,"y":31.357,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.563,"y":31.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2012","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.471,"y":32.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":32.107,"w":10.836000000000002,"clr":-1,"A":"left","R":[{"T":"Gain%2C%20if%20any%2C%20from%20line%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.564,"y":32.107,"w":40.5,"clr":-1,"A":"left","R":[{"T":"...........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.563,"y":32.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.471,"y":32.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":32.857,"w":22.840000000000003,"clr":-1,"A":"left","R":[{"T":"Net%20gain%20or%20(loss)%20from%20Form%204684%2C%20lines%2031%20and%2038a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.062,"y":32.857,"w":28.5,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.563,"y":32.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.471,"y":33.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":33.607,"w":29.52800000000001,"clr":-1,"A":"left","R":[{"T":"Ordinary%20gain%20from%20installment%20sales%20from%20Form%206252%2C%20line%2025%20or%2036","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.312,"y":33.607,"w":22.5,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.563,"y":33.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2015","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.471,"y":34.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":34.357,"w":28.747000000000003,"clr":-1,"A":"left","R":[{"T":"Ordinary%20gain%20or%20(loss)%20from%20like-kind%20exchanges%20from%20Form%208824","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":34.357,"w":24,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.563,"y":34.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2016","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.471,"y":35.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":35.107,"w":12.894000000000002,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2010%20through%2016","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.626,"y":35.107,"w":39,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.563,"y":35.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2017","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.471,"y":35.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":35.92,"w":51.82699999999996,"clr":-1,"A":"left","R":[{"T":"For%20all%20except%20individual%20returns%2C%20enter%20the%20amount%20from%20line%2017%20on%20the%20appropriate%20line%20of%20your%20return%20and%20skip%20lines%20a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.691,"y":36.607,"w":29.394000000000002,"clr":-1,"A":"left","R":[{"T":"and%20b%20below.%20For%20individual%20returns%2C%20complete%20lines%20a%20and%20b%20below%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8,"y":37.42,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.7,"y":37.482,"w":53.27399999999995,"clr":-1,"A":"left","R":[{"T":"If%20the%20loss%20on%20line%2011%20includes%20a%20loss%20from%20Form%204684%2C%20line%2035%2C%20column%20(b)(ii)%2C%20enter%20that%20part%20of%20the%20loss%20here.%20Enter%20%20the%20pa","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":80.58,"y":37.482,"w":0.926,"clr":-1,"A":"left","R":[{"T":"rt%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":9.699,"y":38.17,"w":52.97699999999995,"clr":-1,"A":"left","R":[{"T":"of%20the%20loss%20from%20income-producing%20property%20on%20Schedule%20A%20(Form%201040)%2C%20line%2028%2C%20and%20the%20part%20of%20the%20loss%20from%20property%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":9.707,"y":38.857,"w":50.904999999999966,"clr":-1,"A":"left","R":[{"T":"used%20as%20an%20employee%20on%20Schedule%20A%20(Form%201040)%2C%20line%2023.%20Identify%20as%20from%20%E2%80%9CForm%204797%2C%20line%20%2018a.%E2%80%9D%20See%20instructions","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":78.134,"y":38.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":80.196,"y":38.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":83.36,"y":38.858,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"18a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8,"y":39.513,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.701,"y":39.513,"w":51.79199999999993,"clr":-1,"A":"left","R":[{"T":"Redetermine%20the%20gain%20or%20(loss)%20on%20line%2017%20excluding%20the%20loss%2C%20if%20any%2C%20on%20line%2018a.%20Enter%20here%20and%20on%20Form%201040%2C%20line%2014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.334,"y":39.607,"w":1.723,"clr":-1,"A":"left","R":[{"T":"18b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":40.357,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.589,"y":40.375,"w":7.021000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013086I","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":40.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":40.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4797","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":40.321,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"x":68.457,"y":41.031,"w":81.71000000000002,"clr":0,"A":"left","R":[{"T":"Form%204797%20page%202","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3419,"AM":1024,"x":6.216,"y":6.627,"w":67.763,"h":0.862,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3420,"AM":1024,"x":74.703,"y":6.604,"w":22.11,"h":0.907,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":3421,"AM":0,"x":86.845,"y":8.063,"w":12.107,"h":0.901,"TU":"Line 1. Enter the gross proceeds from sales or exchanges reported to you for 2013 on Form(s) 1099-B or 1099-S (or substitute statement) than you are including on line 2, 10 or 20 (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2A_1_","EN":0},"TI":3422,"AM":0,"x":6.187,"y":12.812,"w":20.996,"h":0.833,"TU":"Line 2(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2B_1_","EN":0},"TI":3423,"AM":0,"x":27.392,"y":12.812,"w":10.993,"h":0.833,"TU":"Line 2(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2C_1_","EN":0},"TI":3424,"AM":0,"x":38.526,"y":12.812,"w":10.972,"h":0.833,"TU":"Line 2(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2D_1_","EN":0},"TI":3425,"AM":0,"x":49.706,"y":12.812,"w":12.231,"h":0.833,"TU":"Line 2(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2E_1_","EN":0},"TI":3426,"AM":0,"x":61.918,"y":12.812,"w":12.251,"h":0.833,"TU":"Line 2(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2F_1_","EN":0},"TI":3427,"AM":0,"x":74.287,"y":12.812,"w":12.231,"h":0.833,"TU":"Line 2(f). Cost or other basis, plus improvements and expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2G_1_","EN":0},"TI":3428,"AM":1024,"x":86.657,"y":12.766,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2A_2_","EN":0},"TI":3429,"AM":0,"x":6.19,"y":13.562,"w":20.996,"h":0.833,"TU":"Line 2(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2B_2_","EN":0},"TI":3430,"AM":0,"x":27.258,"y":13.562,"w":10.993,"h":0.833,"TU":"Line 2(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2C_2_","EN":0},"TI":3431,"AM":0,"x":38.392,"y":13.562,"w":10.972,"h":0.833,"TU":"Line 2(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2D_2_","EN":0},"TI":3432,"AM":0,"x":49.71,"y":13.562,"w":12.231,"h":0.833,"TU":"Line 2(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2E_2_","EN":0},"TI":3433,"AM":0,"x":62.058,"y":13.562,"w":12.251,"h":0.833,"TU":"Line 2(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2F_2_","EN":0},"TI":3434,"AM":0,"x":74.29,"y":13.562,"w":12.231,"h":0.833,"TU":"Line 2(f). Cost or other basis, plus improvements and expense of sale"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2G_2_","EN":0},"TI":3435,"AM":1024,"x":86.797,"y":13.516,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2A_3_","EN":0},"TI":3436,"AM":0,"x":6.331,"y":14.313,"w":20.996,"h":0.833,"TU":"Line 2(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2B_3_","EN":0},"TI":3437,"AM":0,"x":27.262,"y":14.313,"w":10.993,"h":0.833,"TU":"Line 2(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2C_3_","EN":0},"TI":3438,"AM":0,"x":38.395,"y":14.313,"w":10.973,"h":0.833,"TU":"Line 2(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2D_3_","EN":0},"TI":3439,"AM":0,"x":49.576,"y":14.313,"w":12.231,"h":0.833,"TU":"Line 2(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2E_3_","EN":0},"TI":3440,"AM":0,"x":61.925,"y":14.313,"w":12.251,"h":0.833,"TU":"Line 2(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2F_3_","EN":0},"TI":3441,"AM":0,"x":74.157,"y":14.313,"w":12.231,"h":0.833,"TU":"Line 2(f). Cost or other basis, plus improvements and expense of sale"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2G_3_","EN":0},"TI":3442,"AM":1024,"x":86.801,"y":14.266,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2A_4_","EN":0},"TI":3443,"AM":0,"x":6.167,"y":15.058,"w":20.996,"h":0.833,"TU":"Line 2(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2B_4_","EN":0},"TI":3444,"AM":0,"x":27.308,"y":15.058,"w":10.993,"h":0.833,"TU":"Line 2(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE2_L2C_4_","EN":0},"TI":3445,"AM":0,"x":38.445,"y":15.058,"w":10.973,"h":0.833,"TU":"Line 2(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2D_4_","EN":0},"TI":3446,"AM":0,"x":49.562,"y":15.058,"w":12.231,"h":0.833,"TU":"Line 2(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2E_4_","EN":0},"TI":3447,"AM":0,"x":61.937,"y":15.058,"w":12.251,"h":0.833,"TU":"Line 2(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2F_4_","EN":0},"TI":3448,"AM":0,"x":74.333,"y":15.058,"w":12.231,"h":0.833,"TU":"Line 2(f). Cost or other basis, plus improvements and expense of sale"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2G_4_","EN":0},"TI":3449,"AM":1024,"x":86.808,"y":14.968,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4684"}},"id":{"Id":"Add_F4684","EN":0},"TI":3450,"AM":1024,"x":32.486,"y":15.713,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3G","EN":0},"TI":3451,"AM":1024,"x":86.728,"y":15.803,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F6252","EN":0},"TI":3452,"AM":1024,"x":53.98,"y":16.343,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4G","EN":0},"TI":3453,"AM":0,"x":86.728,"y":16.552,"w":12.292,"h":0.833,"TU":"Line 4. Section 1231 gain from installment sales from Form 6252, line 26 or 37."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8824"}},"id":{"Id":"Add_F8824","EN":0},"TI":3454,"AM":1024,"x":52.905,"y":17.231,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5G","EN":0},"TI":3455,"AM":0,"x":86.752,"y":17.303,"w":12.292,"h":0.833,"TU":"Line 5. Section 1231 gain or (loss) from like-kind exchanges from Form 8824."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6G","EN":0},"TI":3456,"AM":0,"x":86.618,"y":18.004,"w":12.292,"h":0.833,"TU":"Line 6. Gain, if any, from line 32, from other than casualty or theft."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7G","EN":0},"TI":3457,"AM":1024,"x":86.622,"y":18.754,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9G","EN":0},"TI":3458,"AM":0,"x":86.763,"y":23.25,"w":12.292,"h":0.833,"TU":"Line 8. Nonrecaptured net section 1231 losses from prior years (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10G","EN":0},"TI":3459,"AM":1024,"x":86.831,"y":25.341,"w":12.107,"h":0.901},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11A_1_","EN":0},"TI":3460,"AM":0,"x":6.247,"y":27.791,"w":20.996,"h":0.833,"TU":"Line 10(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11B_1_","EN":0},"TI":3461,"AM":0,"x":27.452,"y":27.791,"w":10.993,"h":0.833,"TU":"Line 10(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11C_1_","EN":0},"TI":3462,"AM":0,"x":38.586,"y":27.768,"w":10.973,"h":0.833,"TU":"Line 10(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11D_1_","EN":0},"TI":3463,"AM":0,"x":49.767,"y":27.791,"w":12.231,"h":0.833,"TU":"Line 10(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11E_1_","EN":0},"TI":3464,"AM":0,"x":61.978,"y":27.791,"w":12.251,"h":0.833,"TU":"Line 10(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11F_1_","EN":0},"TI":3465,"AM":0,"x":74.347,"y":27.791,"w":12.231,"h":0.833,"TU":"Line 10(f). Cost or other basis, plus improvements and expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11G_1_","EN":0},"TI":3466,"AM":1024,"x":86.717,"y":27.745,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11A_2_","EN":0},"TI":3467,"AM":0,"x":6.25,"y":28.541,"w":20.996,"h":0.833,"TU":"Line 10(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11B_2_","EN":0},"TI":3468,"AM":0,"x":27.319,"y":28.541,"w":10.993,"h":0.833,"TU":"Line 10(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11C_2_","EN":0},"TI":3469,"AM":0,"x":38.452,"y":28.541,"w":10.973,"h":0.833,"TU":"Line 10(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11D_2_","EN":0},"TI":3470,"AM":0,"x":49.77,"y":28.541,"w":12.231,"h":0.833,"TU":"Line 10(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11E_2_","EN":0},"TI":3471,"AM":0,"x":62.119,"y":28.541,"w":12.251,"h":0.833,"TU":"Line 10(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11F_2_","EN":0},"TI":3472,"AM":0,"x":74.351,"y":28.541,"w":12.231,"h":0.833,"TU":"Line 10(f). Cost or other basis, plus improvements and expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11G_2_","EN":0},"TI":3473,"AM":1024,"x":86.858,"y":28.495,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11A_3_","EN":0},"TI":3474,"AM":0,"x":6.391,"y":29.292,"w":20.996,"h":0.833,"TU":"Line 10(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11B_3_","EN":0},"TI":3475,"AM":0,"x":27.322,"y":29.292,"w":10.993,"h":0.833,"TU":"Line 10(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11C_3_","EN":0},"TI":3476,"AM":0,"x":38.456,"y":29.292,"w":10.973,"h":0.833,"TU":"Line 10(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11D_3_","EN":0},"TI":3477,"AM":0,"x":49.636,"y":29.292,"w":12.231,"h":0.833,"TU":"Line 10(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11E_3_","EN":0},"TI":3478,"AM":0,"x":61.985,"y":29.292,"w":12.251,"h":0.833,"TU":"Line 10(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11F_3_","EN":0},"TI":3479,"AM":0,"x":74.217,"y":29.292,"w":12.231,"h":0.833,"TU":"Line 10(f). Cost or other basis, plus improvements and expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11G_3_","EN":0},"TI":3480,"AM":1024,"x":86.861,"y":29.246,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11A_4_","EN":0},"TI":3481,"AM":0,"x":6.227,"y":30.037,"w":20.996,"h":0.833,"TU":"Line 10(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11B_4_","EN":0},"TI":3482,"AM":0,"x":27.368,"y":30.037,"w":10.993,"h":0.833,"TU":"Line 10(b). Date acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE11_L11C_4_","EN":0},"TI":3483,"AM":0,"x":38.505,"y":30.037,"w":10.972,"h":0.833,"TU":"Line 10(c). Date sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11D_4_","EN":0},"TI":3484,"AM":0,"x":49.622,"y":30.037,"w":12.231,"h":0.833,"TU":"Line 10(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11E_4_","EN":0},"TI":3485,"AM":0,"x":61.997,"y":30.037,"w":12.251,"h":0.833,"TU":"Line 10(e). Depreciation allowed or allowable since acquisition."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11F_4_","EN":0},"TI":3486,"AM":0,"x":74.393,"y":30.037,"w":12.231,"h":0.833,"TU":"Line 10(f). Cost or other basis, plus improvements and expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11G_4_","EN":0},"TI":3487,"AM":1024,"x":86.868,"y":29.947,"w":12.231,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":3488,"AM":1024,"x":86.752,"y":30.793,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13G","EN":0},"TI":3489,"AM":0,"x":86.728,"y":31.538,"w":12.292,"h":0.833,"TU":"Line 12. Gain, if any, from line 7 or amount from line 8, if applicable."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F47972"}},"id":{"Id":"Add_F4792P2","EN":0},"TI":3490,"AM":1024,"x":25.144,"y":32.16,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G","EN":0},"TI":3491,"AM":1024,"x":86.728,"y":32.288,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4684"}},"id":{"Id":"Add_F4684","EN":0},"TI":3492,"AM":1024,"x":41.812,"y":32.921,"w":2.467,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15G","EN":0},"TI":3493,"AM":1024,"x":86.728,"y":33.038,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F6252","EN":0},"TI":3494,"AM":1024,"x":50.81,"y":33.623,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16G","EN":0},"TI":3495,"AM":0,"x":86.728,"y":33.788,"w":12.292,"h":0.833,"TU":"Line 15. Ordinary gain from installment sales from Form 6252, line 25 or 36."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8824"}},"id":{"Id":"Add_F8824","EN":0},"TI":3496,"AM":1024,"x":50.387,"y":34.442,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17G","EN":0},"TI":3497,"AM":0,"x":86.728,"y":34.538,"w":12.292,"h":0.833,"TU":"Line 16. Ordinary gain or (loss) from like-kind exchanges from Form 8824."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19G","EN":0},"TI":3498,"AM":1024,"x":86.728,"y":35.295,"w":12.334,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B1","EN":0},"TI":3499,"AM":0,"x":86.756,"y":39.034,"w":12.292,"h":0.833,"TU":"Line 18a. If the loss on line 11 includes a loss from For 4684, line 35, column (b)(ii), enter that part of the loss here. Enter the part of the loss from income-producing property on Schedule A (Form 1040), line 28, and the part of the loss from property used as an employee on Schedule A (Form 1040), line 23. Identify as from \"Form 4797, line 18a.\" See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B2","EN":0},"TI":3500,"AM":1024,"x":86.728,"y":39.788,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F47972"}},"id":{"Id":"Add_F4797P2","EN":0},"TI":3501,"AM":1024,"x":83.439,"y":41.036,"w":2.21,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F47972.content.txt b/test/data/fd/form/F47972.content.txt new file mode 100755 index 00000000..c50cbb66 --- /dev/null +++ b/test/data/fd/form/F47972.content.txt @@ -0,0 +1,183 @@ +Form 4797 (2013) +Page +2 +Part III +Gain From Disposition of Property Under Sections 1245, 1250, 1252, 1254, and 1255 +(see instructions) +19 +(a) + Description of section 1245, 1250, 1252, 1254, or 1255 property: +(b) + Date acquired + +(mo., day, yr.) +(c) + Date sold + +(mo., +day, yr.) +A +B +C +D +These columns relate to the properties on lines 19A through 19D +. +a +Property A +Property B +Property C +Property D +20 +Gross sales price ( +Note: + +See line 1 before completing. +) +. +20 +21 +Cost or other basis plus expense of sale +..... +21 +22 +Depreciation (or depletion) allowed or allowable . . . +22 +23 +Adjusted basis. Subtract line 22 from line 21 +.... +23 +24 +Total gain. Subtract line 23 from line 20 +..... +24 +25 If section 1245 property: +a +Depreciation allowed or allowable from line 22 . . . +25a +b +Enter the +smaller + of line 24 or 25a +...... +25b +26 +If section 1250 property: +If straight line depreciation was used, +enter + +-0- on line 26g, except for a corporation subject to section 291. +a +Additional depreciation after 1975 (see instructions) . +26a +b +Applicable percentage multiplied by the +smaller + of line +24 or line 26a (see instructions) +....... +26b +c +Subtract line 26a from line 24. If residential rental property +or + line 24 is not more than line 26a, skip lines 26d and 26e +26c +d +Additional depreciation after 1969 and before 1976. . +26d +e +Enter the +smaller + of line 26c or 26d +...... +26e +f +Section 291 amount (corporations only) +..... +26f +g +Add lines 26b, 26e, and 26f +......... +26g +27 +If section 1252 property: +Skip this section if you did not + +dispose of farmland or if this form is being completed for a + +partnership (other than an electing large partnership). +a +Soil, water, and land clearing expenses +..... +27a +b +Line 27a multiplied by applicable percentage (see instructions) + +27b +c +Enter the +smaller + of line 24 or 27b +...... +27c +28 If section 1254 property: +a +Intangible drilling and development costs, expenditures +for development of mines and other natural deposits, +mining exploration costs, and depletion (see +instructions) +............. +28a +b +Enter the +smaller + of line 24 or 28a +...... +28b +29 If section 1255 property: +a +Applicable percentage of payments excluded from +income under section 126 (see instructions) +.... +29a +b +Enter the +smaller + of line 24 or 29a (see instructions) . +29b +Summary of Part III Gains. +Complete property columns A through D through line 29b before going to line 30. +30 +Total gains for all properties. Add property columns A through D, line 24 +............. +30 +31 +Add property columns A through D, lines 25b, 26g, 27c, 28b, and 29b. Enter here and on line 13 +...... +31 +32 +Subtract line 31 from line 30. Enter the portion from casualty or theft on Form 4684, line 33. Enter the portion from +other than casualty or theft on Form 4797, line 6 +.................... +32 +Part IV +Recapture Amounts Under Sections 179 and 280F(b)(2) When Business Use Drops to 50% or Less +(see instructions) +(a) Section +179 +(b) Section +280F(b)(2) +33 +Section 179 expense deduction or depreciation allowable in prior years +........ +33 +34 +Recomputed depreciation (see instructions) +................ +34 +35 +Recapture amount. Subtract line 34 from line 33. See the instructions for where to report . . +35 +Form +4797 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F47972.fields.json b/test/data/fd/form/F47972.fields.json new file mode 100755 index 00000000..a196170e --- /dev/null +++ b/test/data/fd/form/F47972.fields.json @@ -0,0 +1 @@ +[{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"DESCRIP","type":"alpha","calc":false,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L21_L21A_1_","type":"alpha","calc":false,"value":""},{"id":"L21_L21DA_1_","type":"date","calc":false,"value":""},{"id":"L21_L21DS_1_","type":"date","calc":false,"value":""},{"id":"L21_L21A_2_","type":"alpha","calc":false,"value":""},{"id":"L21_L21DA_2_","type":"date","calc":false,"value":""},{"id":"L21_L21DS_2_","type":"date","calc":false,"value":""},{"id":"L21_L21A_3_","type":"alpha","calc":false,"value":""},{"id":"L21_L21DA_3_","type":"date","calc":false,"value":""},{"id":"L21_L21DS_3_","type":"date","calc":false,"value":""},{"id":"L21_L21A_4_","type":"alpha","calc":false,"value":""},{"id":"L21_L21DA_4_","type":"date","calc":false,"value":""},{"id":"L21_L21DS_4_","type":"date","calc":false,"value":""},{"id":"A207_L22_1_","type":"number","calc":false,"value":""},{"id":"A207_L22_2_","type":"number","calc":false,"value":""},{"id":"A207_L22_3_","type":"number","calc":false,"value":""},{"id":"A207_L22_4_","type":"number","calc":false,"value":""},{"id":"A207_L23_1_","type":"number","calc":false,"value":""},{"id":"A207_L23_2_","type":"number","calc":false,"value":""},{"id":"A207_L23_3_","type":"number","calc":false,"value":""},{"id":"A207_L23_4_","type":"number","calc":false,"value":""},{"id":"A207_L24_1_","type":"number","calc":false,"value":""},{"id":"A207_L24_2_","type":"number","calc":false,"value":""},{"id":"A207_L24_3_","type":"number","calc":false,"value":""},{"id":"A207_L24_4_","type":"number","calc":false,"value":""},{"id":"A207_L25_1_","type":"number","calc":true,"value":""},{"id":"A207_L25_2_","type":"number","calc":true,"value":""},{"id":"A207_L25_3_","type":"number","calc":true,"value":""},{"id":"A207_L25_4_","type":"number","calc":true,"value":""},{"id":"A207_L26_1_","type":"number","calc":true,"value":""},{"id":"A207_L26_2_","type":"number","calc":true,"value":""},{"id":"A207_L26_3_","type":"number","calc":true,"value":""},{"id":"A207_L26_4_","type":"number","calc":true,"value":""},{"id":"A207_L27A_1_","type":"number","calc":false,"value":""},{"id":"A207_L27A_2_","type":"number","calc":false,"value":""},{"id":"A207_L27A_3_","type":"number","calc":false,"value":""},{"id":"A207_L27A_4_","type":"number","calc":false,"value":""},{"id":"A207_L27B_1_","type":"number","calc":true,"value":""},{"id":"A207_L27B_2_","type":"number","calc":true,"value":""},{"id":"A207_L27B_3_","type":"number","calc":true,"value":""},{"id":"A207_L27B_4_","type":"number","calc":true,"value":""},{"id":"A207_L28A_1_","type":"number","calc":false,"value":""},{"id":"A207_L28A_2_","type":"number","calc":false,"value":""},{"id":"A207_L28A_3_","type":"number","calc":false,"value":""},{"id":"A207_L28A_4_","type":"number","calc":false,"value":""},{"id":"A207_L28B_1_","type":"number","calc":false,"value":""},{"id":"A207_L28B_2_","type":"number","calc":false,"value":""},{"id":"A207_L28B_3_","type":"number","calc":false,"value":""},{"id":"A207_L28B_4_","type":"number","calc":false,"value":""},{"id":"A207_L28C_1_","type":"number","calc":true,"value":""},{"id":"A207_L28C_2_","type":"number","calc":true,"value":""},{"id":"A207_L28C_3_","type":"number","calc":true,"value":""},{"id":"A207_L28C_4_","type":"number","calc":true,"value":""},{"id":"A207_L28D_1_","type":"number","calc":false,"value":""},{"id":"A207_L28D_2_","type":"number","calc":false,"value":""},{"id":"A207_L28D_3_","type":"number","calc":false,"value":""},{"id":"A207_L28D_4_","type":"number","calc":false,"value":""},{"id":"A207_L28E_1_","type":"number","calc":true,"value":""},{"id":"A207_L28E_2_","type":"number","calc":true,"value":""},{"id":"A207_L28E_3_","type":"number","calc":true,"value":""},{"id":"A207_L28E_4_","type":"number","calc":true,"value":""},{"id":"A207_L28F_1_","type":"number","calc":true,"value":""},{"id":"A207_L28F_2_","type":"number","calc":true,"value":""},{"id":"A207_L28F_3_","type":"number","calc":true,"value":""},{"id":"A207_L28F_4_","type":"number","calc":true,"value":""},{"id":"A207_L28G_1_","type":"number","calc":false,"value":""},{"id":"A207_L28G_2_","type":"number","calc":false,"value":""},{"id":"A207_L28G_3_","type":"number","calc":false,"value":""},{"id":"A207_L28G_4_","type":"number","calc":false,"value":""},{"id":"A207_L29A_1_","type":"number","calc":false,"value":""},{"id":"A207_L29A_2_","type":"number","calc":false,"value":""},{"id":"A207_L29A_3_","type":"number","calc":false,"value":""},{"id":"A207_L29A_4_","type":"number","calc":false,"value":""},{"id":"A207_L29B_1_","type":"number","calc":false,"value":""},{"id":"A207_L29B_2_","type":"number","calc":false,"value":""},{"id":"A207_L29B_3_","type":"number","calc":false,"value":""},{"id":"A207_L29B_4_","type":"number","calc":false,"value":""},{"id":"A207_L29C_1_","type":"number","calc":true,"value":""},{"id":"A207_L29C_2_","type":"number","calc":true,"value":""},{"id":"A207_L29C_3_","type":"number","calc":true,"value":""},{"id":"A207_L29C_4_","type":"number","calc":true,"value":""},{"id":"A207_L30A_1_","type":"number","calc":false,"value":""},{"id":"A207_L30A_2_","type":"number","calc":false,"value":""},{"id":"A207_L30A_3_","type":"number","calc":false,"value":""},{"id":"A207_L30A_4_","type":"number","calc":false,"value":""},{"id":"A207_L30B_1_","type":"number","calc":true,"value":""},{"id":"A207_L30B_2_","type":"number","calc":true,"value":""},{"id":"A207_L30B_3_","type":"number","calc":true,"value":""},{"id":"A207_L30B_4_","type":"number","calc":true,"value":""},{"id":"A207_L31A_1_","type":"number","calc":false,"value":""},{"id":"A207_L31A_2_","type":"number","calc":false,"value":""},{"id":"A207_L31A_3_","type":"number","calc":false,"value":""},{"id":"A207_L31A_4_","type":"number","calc":false,"value":""},{"id":"A207_L31B_1_","type":"number","calc":true,"value":""},{"id":"A207_L31B_2_","type":"number","calc":true,"value":""},{"id":"A207_L31B_3_","type":"number","calc":true,"value":""},{"id":"A207_L31B_4_","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":true,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"L33A","type":"number","calc":false,"value":""},{"id":"L33B","type":"number","calc":false,"value":""},{"id":"L34A","type":"number","calc":false,"value":""},{"id":"L34B","type":"number","calc":false,"value":""},{"id":"L35A","type":"number","calc":true,"value":""},{"id":"L35B","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F47972.json b/test/data/fd/form/F47972.json new file mode 100755 index 00000000..3dd6b5ad --- /dev/null +++ b/test/data/fd/form/F47972.json @@ -0,0 +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":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":4.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":5.992,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":6.742,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":5.992,"w":0.75,"l":64.436},{"oc":"#221f1f","x":9.857,"y":6.742,"w":0.75,"l":64.436},{"oc":"#221f1f","x":74.207,"y":5.992,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":6.742,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":5.992,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":6.742,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":7.492,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":7.492,"w":0.75,"l":64.436},{"oc":"#221f1f","x":74.207,"y":7.492,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":7.492,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":8.242,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":8.242,"w":0.75,"l":64.436},{"oc":"#221f1f","x":74.207,"y":8.242,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":8.242,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":8.992,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":8.992,"w":0.75,"l":64.436},{"oc":"#221f1f","x":74.207,"y":8.992,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":8.992,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.084,"y":10.5,"w":0.75,"l":3.858},{"oc":"#221f1f","x":9.857,"y":10.5,"w":0.75,"l":35.98},{"oc":"#221f1f","x":45.751,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":10.5,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":10.5,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":10.5,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":10.5,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.794,"y":11.276,"w":0.75,"l":3.712},{"oc":"#221f1f","x":45.794,"y":10.5,"w":0.75,"l":3.712},{"oc":"#221f1f","x":49.463,"y":11.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":11.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":11.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":11.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":12.026,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":12.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":12.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":12.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":12.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":12.776,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":12.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":12.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":12.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":12.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":13.526,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":13.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":13.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":13.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":13.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":6.084,"y":15.026,"w":0.75,"l":3.858},{"oc":"#221f1f","x":9.857,"y":15.026,"w":0.75,"l":35.98},{"oc":"#221f1f","x":45.751,"y":15.026,"w":1.2000000000000002,"l":3.798},{"oc":"#221f1f","x":49.463,"y":15.026,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":61.836,"y":15.026,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":74.21,"y":15.026,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":86.583,"y":15.026,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":45.751,"y":16.526,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":16.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":16.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":16.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":16.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":6.084,"y":17.276,"w":0.75,"l":3.858},{"oc":"#221f1f","x":9.857,"y":17.276,"w":0.75,"l":35.98},{"oc":"#221f1f","x":45.751,"y":17.276,"w":1.2000000000000002,"l":3.798},{"oc":"#221f1f","x":49.463,"y":17.276,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":61.836,"y":17.276,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":74.21,"y":17.276,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":86.583,"y":17.276,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":45.751,"y":19.526,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":19.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":19.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":19.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":19.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":21.026,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":21.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":21.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":21.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":21.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":22.526,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":22.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":22.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":22.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":22.526,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":23.276,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":23.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":23.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":23.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":23.276,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":24.026,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":24.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":24.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":24.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":24.026,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":24.776,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":24.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":24.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":24.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":24.776,"w":0.75,"l":12.459},{"oc":"#221f1f","x":6.084,"y":25.525,"w":0.75,"l":3.858},{"oc":"#221f1f","x":9.857,"y":25.526,"w":0.75,"l":35.98},{"oc":"#221f1f","x":45.751,"y":25.526,"w":1.2000000000000002,"l":3.798},{"oc":"#221f1f","x":49.463,"y":25.526,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":61.836,"y":25.526,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":74.21,"y":25.526,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":86.583,"y":25.526,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":45.751,"y":28.525,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":28.525,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":28.525,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":28.525,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":28.525,"w":0.75,"l":12.459},{"oc":"#221f1f","x":45.751,"y":29.275,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":29.275,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":29.275,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":29.275,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":29.275,"w":0.75,"l":12.459},{"oc":"#221f1f","x":6.084,"y":30.025,"w":0.75,"l":3.858},{"oc":"#221f1f","x":9.857,"y":30.025,"w":0.75,"l":35.98},{"oc":"#221f1f","x":45.751,"y":30.025,"w":1.2000000000000002,"l":3.798},{"oc":"#221f1f","x":49.463,"y":30.025,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":61.836,"y":30.025,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":74.21,"y":30.025,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":86.583,"y":30.025,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":45.751,"y":33.775,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":33.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":33.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":33.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":33.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":6.084,"y":34.525,"w":0.75,"l":3.858},{"oc":"#221f1f","x":9.857,"y":34.525,"w":0.75,"l":35.98},{"oc":"#221f1f","x":45.751,"y":34.525,"w":1.2000000000000002,"l":3.798},{"oc":"#221f1f","x":49.463,"y":34.525,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":61.836,"y":34.525,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":74.21,"y":34.525,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":86.583,"y":34.525,"w":1.2000000000000002,"l":12.459},{"oc":"#221f1f","x":45.751,"y":36.775,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.463,"y":36.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":61.836,"y":36.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":74.21,"y":36.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":86.583,"y":36.775,"w":0.75,"l":12.459},{"oc":"#221f1f","x":6.192,"y":37.52,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.192,"y":38.27,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.87,"y":39.77,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":39.77,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":40.512,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":40.512,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":42.012,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":42.012,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":41.999,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":43.499,"w":0.75,"l":92.899},{"oc":"#221f1f","x":74.207,"y":45,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":45,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.494,"y":45,"w":0.75,"l":3.799},{"oc":"#221f1f","x":70.494,"y":45.75,"w":0.75,"l":3.799},{"oc":"#221f1f","x":74.207,"y":45.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":45.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.494,"y":46.5,"w":0.75,"l":3.799},{"oc":"#221f1f","x":74.207,"y":46.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":46.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.494,"y":47.25,"w":0.75,"l":3.799},{"oc":"#221f1f","x":74.207,"y":47.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":47.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":92.949}],"VLines":[{"oc":"#221f1f","x":86.625,"y":4.484,"w":0.75,"l":1.523},{"oc":"#221f1f","x":74.25,"y":4.484,"w":0.75,"l":1.523},{"oc":"#221f1f","x":74.25,"y":5.976,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":5.976,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":6.726,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":6.726,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":7.476,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":7.476,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":8.226,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":8.226,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.879,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.253,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.626,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.506,"y":10.5,"w":0.75,"l":0.776},{"oc":"#221f1f","x":45.794,"y":10.5,"w":0.75,"l":0.776},{"oc":"#221f1f","x":61.879,"y":10.484,"w":0.75,"l":0.807},{"oc":"#221f1f","x":74.253,"y":10.484,"w":0.75,"l":0.807},{"oc":"#221f1f","x":86.626,"y":10.484,"w":0.75,"l":0.807},{"oc":"#221f1f","x":49.506,"y":11.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":11.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":11.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":11.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":11.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":12.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":12.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":12.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":12.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":12.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":12.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":12.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":12.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":12.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":12.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":13.51,"w":0.75,"l":1.541},{"oc":"#221f1f","x":45.794,"y":13.51,"w":0.75,"l":1.541},{"oc":"#221f1f","x":61.879,"y":13.51,"w":0.75,"l":1.541},{"oc":"#221f1f","x":74.253,"y":13.51,"w":0.75,"l":1.541},{"oc":"#221f1f","x":86.626,"y":13.51,"w":0.75,"l":1.541},{"oc":"#221f1f","x":45.794,"y":15.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":15.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":15.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":15.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":15.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":15.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":15.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":15.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":15.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":15.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":16.51,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":16.51,"w":0.75,"l":0.791},{"oc":"#221f1f","x":61.879,"y":16.51,"w":0.75,"l":0.791},{"oc":"#221f1f","x":74.253,"y":16.51,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.626,"y":16.51,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":17.26,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.506,"y":17.26,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.879,"y":17.26,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.253,"y":17.26,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.626,"y":17.26,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.506,"y":18.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":18.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":18.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":18.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":18.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":19.51,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.794,"y":19.51,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.879,"y":19.51,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.253,"y":19.51,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.626,"y":19.51,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.506,"y":21.01,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.794,"y":21.01,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.879,"y":21.01,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.253,"y":21.01,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.626,"y":21.01,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.506,"y":22.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":22.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":22.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":22.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":22.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":23.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":23.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":23.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":23.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":23.26,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":24.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":24.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":24.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":24.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":24.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":24.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":24.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":61.879,"y":24.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":74.253,"y":24.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.626,"y":24.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":25.51,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.506,"y":25.51,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.879,"y":25.51,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.253,"y":25.51,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.626,"y":25.51,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.506,"y":27.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":27.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":27.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":27.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":27.76,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":28.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.794,"y":28.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":28.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":28.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":28.51,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":29.26,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":29.26,"w":0.75,"l":0.791},{"oc":"#221f1f","x":61.879,"y":29.26,"w":0.75,"l":0.791},{"oc":"#221f1f","x":74.253,"y":29.26,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.626,"y":29.26,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":30.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":30.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":30.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":30.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":30.01,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":30.76,"w":0.75,"l":3.031},{"oc":"#221f1f","x":45.794,"y":30.76,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.879,"y":30.76,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.253,"y":30.76,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.626,"y":30.76,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.506,"y":33.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":33.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":61.879,"y":33.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":74.253,"y":33.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.626,"y":33.76,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":34.509,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":34.509,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.879,"y":34.509,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.253,"y":34.509,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.626,"y":34.509,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.506,"y":35.259,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.794,"y":35.259,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.879,"y":35.259,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.253,"y":35.259,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.626,"y":35.259,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.506,"y":36.759,"w":0.75,"l":0.791},{"oc":"#221f1f","x":45.794,"y":36.759,"w":0.75,"l":0.791},{"oc":"#221f1f","x":61.879,"y":36.759,"w":0.75,"l":0.791},{"oc":"#221f1f","x":74.253,"y":36.759,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.626,"y":36.759,"w":0.75,"l":0.791},{"oc":"#221f1f","x":86.625,"y":38.254,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":38.254,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":39.738,"w":0.75,"l":0.79},{"oc":"#221f1f","x":82.913,"y":39.738,"w":0.75,"l":0.79},{"oc":"#221f1f","x":86.625,"y":40.497,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":40.497,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":43.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":43.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.537,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.537,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.537,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":46.484,"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.619,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.273,"y":41.999,"w":6.187,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%204797%20(2013)","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.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":6.544,"y":2.821,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":2.884,"w":39.78599999999998,"clr":-1,"A":"left","R":[{"T":"Gain%20From%20Disposition%20of%20Property%20Under%20Sections%201245%2C%201250%2C%201252%2C%201254%2C%20and%201255%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":3.5090000000000003,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.281,"y":4.603,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":4.607,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":11.636,"y":4.607,"w":29.17900000000001,"clr":-1,"A":"left","R":[{"T":"%20Description%20of%20section%201245%2C%201250%2C%201252%2C%201254%2C%20or%201255%20property%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.352,"y":4.352,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.134,"y":4.352,"w":6.557,"clr":-1,"A":"left","R":[{"T":"%20Date%20acquired","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.533,"y":4.852,"w":6.076000000000002,"clr":-1,"A":"left","R":[{"T":"(mo.%2C%20day%2C%20yr.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.449,"y":4.352,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.186,"y":4.352,"w":4.538,"clr":-1,"A":"left","R":[{"T":"%20Date%20sold","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.98,"y":4.352,"w":2.52,"clr":-1,"A":"left","R":[{"T":"(mo.%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.424,"y":4.852,"w":3.556,"clr":-1,"A":"left","R":[{"T":"day%2C%20yr.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8,"y":5.849,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8,"y":6.599,"w":0.704,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8,"y":7.349,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8,"y":8.099,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":9.616,"w":30.666,"clr":-1,"A":"left","R":[{"T":"These%20columns%20relate%20to%20the%20properties%20on%20lines%2019A%20through%2019D","S":-1,"TS":[0,9.75,0,0]}]},{"oc":"#221f1f","x":45.226,"y":9.616,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":45.887,"y":9.565,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":51.517,"y":9.183,"w":5.075000000000001,"clr":-1,"A":"left","R":[{"T":"Property%20A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.876000000000005,"y":9.183,"w":5.094,"clr":-1,"A":"left","R":[{"T":"Property%20B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.221,"y":9.183,"w":5.131,"clr":-1,"A":"left","R":[{"T":"Property%20C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.594,"y":9.183,"w":5.131,"clr":-1,"A":"left","R":[{"T":"Property%20D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.221,"y":10.383,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":10.383,"w":8.277000000000001,"clr":-1,"A":"left","R":[{"T":"Gross%20sales%20price%20(","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":20.462,"y":10.383,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":24.527,"y":10.383,"w":13.057000000000002,"clr":-1,"A":"left","R":[{"T":"See%20line%201%20before%20completing.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":41.582,"y":10.383,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":43.063,"y":10.383,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.635,"y":10.383,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":11.133,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":11.133,"w":17.946000000000005,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis%20plus%20expense%20of%20sale","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.813,"y":11.133,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.635,"y":11.133,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":11.883,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":11.883,"w":21.461000000000002,"clr":-1,"A":"left","R":[{"T":"Depreciation%20(or%20depletion)%20allowed%20or%20allowable.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.839,"y":11.883,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.902,"y":11.883,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.635,"y":11.883,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":12.633,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":12.633,"w":19.728000000000005,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis.%20Subtract%20line%2022%20from%20line%2021","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.875,"y":12.633,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.635,"y":12.633,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":14.07,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.07,"w":17.523,"clr":-1,"A":"left","R":[{"T":"Total%20gain.%20Subtract%20line%2023%20from%20line%2020","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.812,"y":14.07,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.635,"y":14.133,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":14.883,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.883,"w":11.519000000000002,"clr":-1,"A":"left","R":[{"T":"If%20section%201245%20property%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":15.633,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":15.633,"w":20.592000000000006,"clr":-1,"A":"left","R":[{"T":"Depreciation%20allowed%20or%20allowable%20from%20line%2022","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.938,"y":15.633,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.001,"y":15.633,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":15.633,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.241,"y":15.633,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"25a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":16.383,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":16.383,"w":4.594000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.966000000000001,"y":16.383,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.156,"y":16.383,"w":7.465000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2024%20or%2025a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":16.383,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.215,"y":16.383,"w":1.723,"clr":-1,"A":"left","R":[{"T":"25b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":17.195,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":17.195,"w":12.075000000000003,"clr":-1,"A":"left","R":[{"T":"If%20section%201250%20property%3A%20%20","S":-1,"TS":[0,9.559999999999999,0,0]}]},{"oc":"#221f1f","x":24.504,"y":17.195,"w":16.927000000000007,"clr":-1,"A":"left","R":[{"T":"If%20straight%20line%20depreciation%20was%20used%2C%20","S":-1,"TS":[0,9.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.654,"y":17.883,"w":2.278,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,9.559999999999999,0,0]}]},{"oc":"#221f1f","x":12.536,"y":17.883,"w":28.284000000000013,"clr":-1,"A":"left","R":[{"T":"-0-%20on%20line%2026g%2C%20except%20for%20a%20corporation%20subject%20to%20section%20291.","S":-1,"TS":[0,9.559999999999999,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":18.633,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":18.633,"w":22.948000000000008,"clr":-1,"A":"left","R":[{"T":"Additional%20depreciation%20after%201975%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":18.633,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.241,"y":18.633,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"26a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":19.445,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.445,"w":18.263999999999996,"clr":-1,"A":"left","R":[{"T":"Applicable%20percentage%20multiplied%20by%20the%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.085,"y":19.445,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.381,"y":19.445,"w":3.241,"clr":-1,"A":"left","R":[{"T":"%20of%20line%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.646,"y":20.133,"w":14.151000000000003,"clr":-1,"A":"left","R":[{"T":"24%20or%20%20line%2026a%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.684,"y":20.133,"w":12,"clr":-1,"A":"left","R":[{"T":".......%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.215,"y":20.133,"w":1.723,"clr":-1,"A":"left","R":[{"T":"26b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":20.945,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":20.945,"w":26.468,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2026a%20from%20line%2024.%20If%20residential%20rental%20property%20%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":9.646,"y":21.633,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":11.315,"y":21.633,"w":25.066000000000006,"clr":-1,"A":"left","R":[{"T":"%20line%2024%20is%20not%20more%20than%20line%2026a%2C%20skip%20lines%2026d%20and%2026e","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":46.241,"y":21.633,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"26c","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":22.383,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":22.383,"w":23.006000000000004,"clr":-1,"A":"left","R":[{"T":"Additional%20depreciation%20after%201969%20and%20before%201976.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.964,"y":22.383,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.215,"y":22.383,"w":1.723,"clr":-1,"A":"left","R":[{"T":"26d","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":23.133,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.133,"w":4.594000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.966999999999999,"y":23.133,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.156,"y":23.133,"w":8.058,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2026c%20or%2026d","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":23.133,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.241,"y":23.133,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"26e","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":23.883,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.883,"w":17.578000000000003,"clr":-1,"A":"left","R":[{"T":"Section%20291%20amount%20(corporations%20only)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.813,"y":23.883,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.406,"y":23.883,"w":1.445,"clr":-1,"A":"left","R":[{"T":"26f","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":24.57,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.57,"w":12.265000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2026b%2C%2026e%2C%20and%2026f","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.562,"y":24.57,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.215,"y":24.632,"w":1.723,"clr":-1,"A":"left","R":[{"T":"26g","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":25.445,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":25.507,"w":12.075000000000003,"clr":-1,"A":"left","R":[{"T":"If%20section%201252%20property%3A%20%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":26.095,"y":25.507,"w":13.485,"clr":-1,"A":"left","R":[{"T":"Skip%20this%20section%20if%20you%20did%20not","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":9.655,"y":26.195,"w":26.153,"clr":-1,"A":"left","R":[{"T":"dispose%20of%20farmland%20or%20if%20this%20form%20is%20being%20completed%20for%20a","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":9.659,"y":26.882,"w":23.689,"clr":-1,"A":"left","R":[{"T":"partnership%20(other%20than%20an%20electing%20large%20partnership).","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":27.632,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":27.632,"w":17.482000000000006,"clr":-1,"A":"left","R":[{"T":"Soil%2C%20water%2C%20and%20land%20clearing%20expenses","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.813,"y":27.632,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.241,"y":27.632,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"27a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":28.382,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":28.382,"w":27.821000000000005,"clr":-1,"A":"left","R":[{"T":"Line%2027a%20multiplied%20by%20applicable%20percentage%20(see%20instructions)","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":46.215,"y":28.382,"w":1.723,"clr":-1,"A":"left","R":[{"T":"27b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":29.07,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.07,"w":4.594000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.966000000000001,"y":29.07,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.156,"y":29.07,"w":7.521000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2024%20or%2027b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":29.07,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.241,"y":29.132,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"27c","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":29.882,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.882,"w":11.519000000000002,"clr":-1,"A":"left","R":[{"T":"If%20section%201254%20property%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":30.82,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":30.82,"w":24.987000000000002,"clr":-1,"A":"left","R":[{"T":"Intangible%20drilling%20and%20development%20costs%2C%20expenditures%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.649,"y":31.506999999999998,"w":24.229,"clr":-1,"A":"left","R":[{"T":"for%20development%20of%20mines%20and%20other%20natural%20deposits%2C%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.646,"y":32.195,"w":20.004000000000005,"clr":-1,"A":"left","R":[{"T":"mining%20exploration%20costs%2C%20and%20depletion%20(see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.647,"y":32.882,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.31,"y":32.882,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.241,"y":32.882,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"28a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":33.57,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":33.57,"w":4.594000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.966000000000001,"y":33.57,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.156,"y":33.57,"w":7.465000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2024%20or%2028a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":33.57,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.215,"y":33.632,"w":1.723,"clr":-1,"A":"left","R":[{"T":"28b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.221,"y":34.382,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":34.382,"w":11.519000000000002,"clr":-1,"A":"left","R":[{"T":"If%20section%201255%20property%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":35.195,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":35.195,"w":22.838,"clr":-1,"A":"left","R":[{"T":"Applicable%20percentage%20of%20payments%20excluded%20from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":35.882,"w":19.431000000000008,"clr":-1,"A":"left","R":[{"T":"income%20under%20section%20126%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.875,"y":35.882,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.241,"y":35.882,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"29a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.9399999999999995,"y":36.57,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":36.57,"w":4.594000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.966999999999999,"y":36.57,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.156,"y":36.57,"w":15.299000000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2024%20or%2029a%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":36.57,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.215,"y":36.632,"w":1.723,"clr":-1,"A":"left","R":[{"T":"29b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.985,"y":37.335,"w":13.014000000000003,"clr":-1,"A":"left","R":[{"T":"Summary%20of%20Part%20III%20Gains.%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":27.234,"y":37.335,"w":36.251,"clr":-1,"A":"left","R":[{"T":"Complete%20property%20columns%20A%20through%20D%20through%20line%2029b%20before%20going%20to%20line%2030.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":6.281,"y":38.877,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":38.877,"w":32.099000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20gains%20for%20all%20properties.%20Add%20property%20columns%20A%20through%20D%2C%20line%2024","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":38.877,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.754,"y":38.877,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.281,"y":39.61,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":39.61,"w":42.85099999999996,"clr":-1,"A":"left","R":[{"T":"Add%20property%20columns%20A%20through%20D%2C%20lines%2025b%2C%2026g%2C%2027c%2C%2028b%2C%20and%2029b.%20Enter%20here%20and%20on%20line%2013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.875,"y":39.61,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.754,"y":39.62,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.281,"y":40.369,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":40.369,"w":51.07099999999995,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2031%20from%20line%2030.%20Enter%20the%20portion%20from%20casualty%20or%20theft%20on%20Form%204684%2C%20line%2033.%20Enter%20the%20portion%20from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.642,"y":41.057,"w":21.470000000000006,"clr":-1,"A":"left","R":[{"T":"other%20than%20casualty%20or%20theft%20on%20Form%204797%2C%20line%206","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.992,"y":41.057,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.754,"y":41.119,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,0,0]}]},{"x":6.023,"y":41.82,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":41.882,"w":46.89599999999996,"clr":-1,"A":"left","R":[{"T":"Recapture%20Amounts%20Under%20Sections%20179%20and%20280F(b)(2)%20When%20Business%20Use%20Drops%20to%2050%25%20or%20Less%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":42.507,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":76.712,"y":43.311,"w":5.333,"clr":-1,"A":"left","R":[{"T":"(a)%20Section%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.04,"y":43.911,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"179","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.062,"y":43.311,"w":5.369999999999999,"clr":-1,"A":"left","R":[{"T":"(b)%20Section%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.392,"y":43.911,"w":4.612,"clr":-1,"A":"left","R":[{"T":"280F(b)(2)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.281,"y":44.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":44.857,"w":31.725,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense%20deduction%20or%20depreciation%20allowable%20in%20prior%20years","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.375,"y":44.857,"w":13.5,"clr":-1,"A":"left","R":[{"T":"........%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.379,"y":44.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.281,"y":45.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":45.607,"w":19.448000000000008,"clr":-1,"A":"left","R":[{"T":"Recomputed%20depreciation%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.875,"y":45.607,"w":24,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.379,"y":45.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.281,"y":46.294,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":46.294,"w":39.47099999999999,"clr":-1,"A":"left","R":[{"T":"Recapture%20amount.%20Subtract%20line%2034%20from%20line%2033.%20See%20the%20instructions%20for%20where%20to%20report","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.751,"y":46.294,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":67.813,"y":46.294,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.379,"y":46.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.202,"y":47.071,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.344,"y":47.071,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4797","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.167,"y":47.071,"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":"NAM2","EN":0},"TI":3502,"AM":1024,"x":16.035,"y":2.083,"w":31.922,"h":0.862,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESCRIP","EN":0},"TI":3503,"AM":0,"x":48.1,"y":2.083,"w":23.957,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":3504,"AM":1024,"x":72.643,"y":2.06,"w":22.11,"h":0.907,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21_L21A_1_","EN":0},"TI":3505,"AM":0,"x":9.757,"y":6.021,"w":53.404,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DA_1_","EN":0},"TI":3506,"AM":0,"x":74.353,"y":6.03,"w":12.189,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DS_1_","EN":0},"TI":3507,"AM":0,"x":86.728,"y":6.03,"w":12.292,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21_L21A_2_","EN":0},"TI":3508,"AM":0,"x":9.954,"y":6.762,"w":53.404,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DA_2_","EN":0},"TI":3509,"AM":0,"x":74.275,"y":6.722,"w":12.189,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DS_2_","EN":0},"TI":3510,"AM":0,"x":86.788,"y":6.722,"w":12.292,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21_L21A_3_","EN":0},"TI":3511,"AM":0,"x":9.957,"y":7.563,"w":53.404,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DA_3_","EN":0},"TI":3512,"AM":0,"x":74.279,"y":7.522,"w":12.189,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DS_3_","EN":0},"TI":3513,"AM":0,"x":86.791,"y":7.522,"w":12.292,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21_L21A_4_","EN":0},"TI":3514,"AM":0,"x":9.824,"y":8.313,"w":53.404,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DA_4_","EN":0},"TI":3515,"AM":0,"x":74.282,"y":8.222,"w":12.189,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21_L21DS_4_","EN":0},"TI":3516,"AM":0,"x":86.932,"y":8.272,"w":12.293,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L22_1_","EN":0},"TI":3517,"AM":0,"x":49.651,"y":10.562,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L22_2_","EN":0},"TI":3518,"AM":0,"x":62.026,"y":10.562,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L22_3_","EN":0},"TI":3519,"AM":0,"x":74.401,"y":10.562,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L22_4_","EN":0},"TI":3520,"AM":0,"x":86.776,"y":10.562,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L23_1_","EN":0},"TI":3521,"AM":0,"x":49.603,"y":11.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L23_2_","EN":0},"TI":3522,"AM":0,"x":61.978,"y":11.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L23_3_","EN":0},"TI":3523,"AM":0,"x":74.353,"y":11.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L23_4_","EN":0},"TI":3524,"AM":0,"x":86.728,"y":11.31,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L24_1_","EN":0},"TI":3525,"AM":0,"x":49.518,"y":12.012,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L24_2_","EN":0},"TI":3526,"AM":0,"x":61.893,"y":12.012,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L24_3_","EN":0},"TI":3527,"AM":0,"x":74.268,"y":12.012,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L24_4_","EN":0},"TI":3528,"AM":0,"x":86.643,"y":12.012,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L25_1_","EN":0},"TI":3529,"AM":1024,"x":49.521,"y":12.762,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L25_2_","EN":0},"TI":3530,"AM":1024,"x":61.896,"y":12.762,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L25_3_","EN":0},"TI":3531,"AM":1024,"x":74.271,"y":12.762,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L25_4_","EN":0},"TI":3532,"AM":1024,"x":86.646,"y":12.762,"w":12.293,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L26_1_","EN":0},"TI":3533,"AM":1024,"x":49.662,"y":14.261,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L26_2_","EN":0},"TI":3534,"AM":1024,"x":62.037,"y":14.261,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L26_3_","EN":0},"TI":3535,"AM":1024,"x":74.412,"y":14.261,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L26_4_","EN":0},"TI":3536,"AM":1024,"x":86.787,"y":14.261,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27A_1_","EN":0},"TI":3537,"AM":0,"x":49.528,"y":15.761,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27A_2_","EN":0},"TI":3538,"AM":0,"x":61.903,"y":15.761,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27A_3_","EN":0},"TI":3539,"AM":0,"x":74.278,"y":15.761,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27A_4_","EN":0},"TI":3540,"AM":0,"x":86.653,"y":15.761,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27B_1_","EN":0},"TI":3541,"AM":1024,"x":49.603,"y":16.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27B_2_","EN":0},"TI":3542,"AM":1024,"x":61.978,"y":16.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27B_3_","EN":0},"TI":3543,"AM":1024,"x":74.353,"y":16.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L27B_4_","EN":0},"TI":3544,"AM":1024,"x":86.728,"y":16.56,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28A_1_","EN":0},"TI":3545,"AM":0,"x":49.596,"y":18.175,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28A_2_","EN":0},"TI":3546,"AM":0,"x":61.971,"y":18.175,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28A_3_","EN":0},"TI":3547,"AM":0,"x":74.346,"y":18.175,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28A_4_","EN":0},"TI":3548,"AM":0,"x":86.721,"y":18.225,"w":12.127,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28B_1_","EN":0},"TI":3549,"AM":0,"x":49.737,"y":20.174,"w":12.024,"h":0.885},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28B_2_","EN":0},"TI":3550,"AM":0,"x":62.25,"y":20.224,"w":12.024,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28B_3_","EN":0},"TI":3551,"AM":0,"x":74.487,"y":20.224,"w":12.024,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28B_4_","EN":0},"TI":3552,"AM":0,"x":86.862,"y":20.24,"w":12.128,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28C_1_","EN":0},"TI":3553,"AM":1024,"x":49.566,"y":21.716,"w":12.024,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28C_2_","EN":0},"TI":3554,"AM":1024,"x":62.061,"y":21.673,"w":12.024,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28C_3_","EN":0},"TI":3555,"AM":1024,"x":74.436,"y":21.639,"w":12.024,"h":0.868},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28C_4_","EN":0},"TI":3556,"AM":1024,"x":86.811,"y":21.689,"w":12.128,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28D_1_","EN":0},"TI":3557,"AM":0,"x":49.603,"y":22.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28D_2_","EN":0},"TI":3558,"AM":0,"x":61.978,"y":22.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28D_3_","EN":0},"TI":3559,"AM":0,"x":74.353,"y":22.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28D_4_","EN":0},"TI":3560,"AM":0,"x":86.728,"y":22.56,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28E_1_","EN":0},"TI":3561,"AM":1024,"x":49.603,"y":23.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28E_2_","EN":0},"TI":3562,"AM":1024,"x":61.978,"y":23.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28E_3_","EN":0},"TI":3563,"AM":1024,"x":74.353,"y":23.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28E_4_","EN":0},"TI":3564,"AM":1024,"x":86.728,"y":23.353,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28F_1_","EN":0},"TI":3565,"AM":1024,"x":49.603,"y":24.06,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28F_2_","EN":0},"TI":3566,"AM":1024,"x":61.978,"y":24.06,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28F_3_","EN":0},"TI":3567,"AM":1024,"x":74.353,"y":24.06,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28F_4_","EN":0},"TI":3568,"AM":1024,"x":86.728,"y":24.06,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28G_1_","EN":0},"TI":3569,"AM":0,"x":49.603,"y":24.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28G_2_","EN":0},"TI":3570,"AM":0,"x":61.978,"y":24.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28G_3_","EN":0},"TI":3571,"AM":0,"x":74.353,"y":24.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L28G_4_","EN":0},"TI":3572,"AM":0,"x":86.728,"y":24.81,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29A_1_","EN":0},"TI":3573,"AM":0,"x":49.748,"y":27.209,"w":11.901,"h":1.299},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29A_2_","EN":0},"TI":3574,"AM":0,"x":62.123,"y":27.259,"w":11.901,"h":1.249},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29A_3_","EN":0},"TI":3575,"AM":0,"x":74.498,"y":27.259,"w":11.901,"h":1.249},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29A_4_","EN":0},"TI":3576,"AM":0,"x":86.873,"y":27.359,"w":12.004,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29B_1_","EN":0},"TI":3577,"AM":0,"x":49.603,"y":28.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29B_2_","EN":0},"TI":3578,"AM":0,"x":61.978,"y":28.56,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29B_3_","EN":0},"TI":3579,"AM":0,"x":74.353,"y":28.603,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29B_4_","EN":0},"TI":3580,"AM":0,"x":86.728,"y":28.56,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29C_1_","EN":0},"TI":3581,"AM":1024,"x":49.603,"y":29.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29C_2_","EN":0},"TI":3582,"AM":1024,"x":61.978,"y":29.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29C_3_","EN":0},"TI":3583,"AM":1024,"x":74.353,"y":29.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L29C_4_","EN":0},"TI":3584,"AM":1024,"x":86.728,"y":29.31,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30A_1_","EN":0},"TI":3585,"AM":0,"x":49.734,"y":32.599,"w":11.901,"h":1.1},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30A_2_","EN":0},"TI":3586,"AM":0,"x":62.096,"y":32.6,"w":11.901,"h":1.1},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30A_3_","EN":0},"TI":3587,"AM":0,"x":74.498,"y":32.658,"w":11.901,"h":1.1},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30A_4_","EN":0},"TI":3588,"AM":0,"x":86.873,"y":32.658,"w":12.004,"h":1.1},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30B_1_","EN":0},"TI":3589,"AM":1024,"x":49.603,"y":33.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30B_2_","EN":0},"TI":3590,"AM":1024,"x":61.978,"y":33.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30B_3_","EN":0},"TI":3591,"AM":1024,"x":74.353,"y":33.767,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L30B_4_","EN":0},"TI":3592,"AM":1024,"x":86.728,"y":33.81,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31A_1_","EN":0},"TI":3593,"AM":0,"x":49.706,"y":35.687,"w":11.983,"h":0.965},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31A_2_","EN":0},"TI":3594,"AM":0,"x":62.081,"y":35.737,"w":11.983,"h":0.915},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31A_3_","EN":0},"TI":3595,"AM":0,"x":74.456,"y":35.637,"w":11.983,"h":1.015},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31A_4_","EN":0},"TI":3596,"AM":0,"x":86.831,"y":35.687,"w":12.086,"h":0.965},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31B_1_","EN":0},"TI":3597,"AM":1024,"x":49.603,"y":36.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31B_2_","EN":0},"TI":3598,"AM":1024,"x":61.978,"y":36.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31B_3_","EN":0},"TI":3599,"AM":1024,"x":74.353,"y":36.81,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A207_L31B_4_","EN":0},"TI":3600,"AM":1024,"x":86.728,"y":36.81,"w":12.334,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":3601,"AM":1024,"x":86.811,"y":38.873,"w":12.169,"h":0.885},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":3602,"AM":1024,"x":86.728,"y":39.81,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":3603,"AM":1024,"x":86.811,"y":41.065,"w":12.128,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33A","EN":0},"TI":3604,"AM":0,"x":74.353,"y":45.038,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33B","EN":0},"TI":3605,"AM":0,"x":86.728,"y":45.038,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34A","EN":0},"TI":3606,"AM":0,"x":74.353,"y":45.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34B","EN":0},"TI":3607,"AM":0,"x":86.728,"y":45.788,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35A","EN":0},"TI":3608,"AM":1024,"x":74.353,"y":46.538,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35B","EN":0},"TI":3609,"AM":1024,"x":86.728,"y":46.538,"w":12.354,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4835.content.txt b/test/data/fd/form/F4835.content.txt new file mode 100755 index 00000000..15239203 --- /dev/null +++ b/test/data/fd/form/F4835.content.txt @@ -0,0 +1,259 @@ +Net farm rental income or (loss). +Form +4835 +Department of the Treasury +Internal Revenue Service (99) +Farm Rental Income and Expenses + +(Crop and Livestock Shares (Not Cash) Received by Landowner (or Sub-Lessor)) + (Income not subject to self-employment tax) +a + +Attach to Form 1040 or Form 1040NR. +a + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +37 + +Name(s) shown on tax return +Your social security number +Employer ID number (EIN), if any +A +Did you actively participate in the operation of this farm during 2013 (see instructions)? +....... +Yes +No +Part I +Gross Farm Rental Income Based on Production. +Include amounts converted to cash or the equivalent. +1 +Income from production of livestock, produce, grains, and other crops +........ +1 +2 +a +Cooperative distributions (Form(s) 1099-PATR) +2a +2b +Taxable amount +2b +3 +a +Agricultural program payments (see instructions) +3a +3b +Taxable amount +3b +4 +Commodity Credit Corporation (CCC) loans (see instructions): +a +CCC loans reported under election +................... +4a +b +CCC loans forfeited +........ +4b +4c +Taxable amount +4c +5 +Crop insurance proceeds and federal crop disaster payments (see instructions): +a +Amount received in 2013 +....... +5a +5b +Taxable amount +5b +c +If election to defer to 2014 is attached, check here +a +5d +Amount deferred from 2012 +5d +6 +Other income, including federal and state gasoline or fuel tax credit or refund (see instructions) +6 +7 Gross farm rental income. +Add amounts in the right column for lines 1 through 6. Enter the +total here and on Schedule E (Form 1040), line 42 +............... +a +7 +Part II +Expenses Farm Rental Property. +Do not include personal or living expenses. +8 + +Car and truck expenses (see +Schedule F (Form 1040) + +8 +9 +Chemicals +....... +9 +10 +Conservation expenses (see +instructions) +...... +10 +11 +Custom hire (machine work) . +11 +12 + +Depreciation and section 179 +expense deduction not +claimed elsewhere +.... +12 +13 + +Employee benefit programs other +than on line 21 (see Schedule F +(Form 1040) instructions). . . +13 +14 +Feed +........ +14 +15 +Fertilizers and lime +.... +15 +16 +Freight and trucking . . . +16 +17 +Gasoline, fuel, and oil . . . +17 +18 +Insurance (other than health). +18 +19 +Interest: +a +Mortgage (paid to banks, etc.) +19a +b +Other +........ +19b +20 + +Labor hired (less employment +credits) (see Schedule F (Form +1040) instructions) +.... +20 +21 +Pension and profit- +sharing plans . . . +21 +22 +Rent or lease: +a + +Vehicles, machinery, and +equipment (see +instructions) +.... +22a +b +Other (land, animals, etc.) +22b +23 +Repairs and maintenance +23 +24 +Seeds and plants . . +24 +25 +Storage and warehousing +25 +26 +Supplies +..... +26 +27 +Taxes +...... +27 +28 +Utilities +..... +28 +29 +Veterinary, breeding, +and medicine . . . +29 +30 +Other expenses +(specify): +a +30a +b +30b +c +30c +d +30d +e +30e +f +30f +g +30g +Add lines 8 through 30g (see instructions) +........... +a +31 +32 + +32 +33 +Did you receive an applicable subsidy in 2013? (see instructions) +......... +33 +Yes +No +34 +If line 32 is a loss, check the box that describes your investment in this activity +(see instructions) +......................... +} +34a +All investment is at risk. +34b +Some investment is not at risk. +c + + +(Form 1040), line 40 +........................ +34c +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 13117W +Form +4835 + (2013) +Information about Form 4835 and its instructions is at www.irs.gov/form4835. +Subtract line 31 from line 7. If the result is income, enter it here +before going to Form 8582. In either case, enter the here and on Schedule Edeductible loss + + +box you checked (see instructions). If you checked box 34b, you must complete Form 6198 +You may have to complete to determine your deductible loss, regardless of which Form 8582 + +and on Schedule E (Form 1040), line 40. If the result is a loss, you must go to lines 33 and 34. +instructions). Also attach Form 4562 +31 + +Total expenses. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4835.fields.json b/test/data/fd/form/F4835.fields.json new file mode 100755 index 00000000..0a2460da --- /dev/null +++ b/test/data/fd/form/F4835.fields.json @@ -0,0 +1 @@ +[{"id":"ARB","type":"radio","calc":false,"value":"AN"},{"id":"ARB","type":"radio","calc":false,"value":"AY"},{"id":"L5CX","type":"box","calc":false,"value":""},{"id":"L33RB","type":"radio","calc":false,"value":"L33A"},{"id":"L33RB","type":"radio","calc":false,"value":"L33B"},{"id":"SUBBXRB","type":"radio","calc":false,"value":"SUBBXY"},{"id":"SUBBXRB","type":"radio","calc":false,"value":"SUBBXN"},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"number","calc":false,"value":""},{"id":"L2B","type":"number","calc":false,"value":""},{"id":"L3A","type":"number","calc":false,"value":""},{"id":"L3B","type":"number","calc":false,"value":""},{"id":"L4A","type":"number","calc":false,"value":""},{"id":"L4B","type":"number","calc":false,"value":""},{"id":"L4C","type":"number","calc":false,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5B","type":"number","calc":false,"value":""},{"id":"L5D","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"Add_F4562","type":"link","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22A3","type":"number","calc":false,"value":""},{"id":"L22B","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"OTHEXP_L30T_1_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L30A_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L30T_2_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L30A_2_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L30T_3_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L30A_3_","type":"number","calc":false,"value":""},{"id":"L19B","type":"number","calc":false,"value":""},{"id":"OTHEXP_L30T_4_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L30A_4_","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"OTHEXP_L30T_5_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L30A_5_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L30T_6_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L30A_6_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L30T_7_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L30A_7_","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"Add_F8582","type":"link","calc":true,"value":""},{"id":"Add_F6198R","type":"link","calc":true,"value":""},{"id":"L33C","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4835.json b/test/data/fd/form/F4835.json new file mode 100755 index 00000000..67e3af2e --- /dev/null +++ b/test/data/fd/form/F4835.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 4835","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":8.251,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.684,"y":6.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.684,"y":8.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":11.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":12.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":12.001,"w":0.75,"l":3.798},{"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":44.509,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":12.751,"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":44.509,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"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":44.509,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":15.001,"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":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":82.872,"y":18.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.001,"w":1.125,"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":6.147,"y":19.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":33.372,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":30.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.372,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":37.084,"y":36.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":36.751,"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":22.501,"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.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":59.359,"y":34.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"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},{"dsh":1,"oc":"#221f1f","x":59.359,"y":35.251,"w":0.75,"l":17.411},{"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":59.359,"y":36.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":79.159,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":59.359,"y":36.751,"w":0.75,"l":17.411},{"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":12.461},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":59.359,"y":37.501,"w":0.75,"l":17.411},{"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},{"dsh":1,"oc":"#221f1f","x":59.359,"y":38.251,"w":0.75,"l":17.411},{"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.19,"y":39.001,"w":1.125,"l":92.813},{"oc":"#221f1f","x":79.159,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.915,"y":43.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":82.915,"y":42.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":79.159,"y":43.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":34.736},{"oc":"#221f1f","x":87.822,"y":46.501,"w":1.5,"l":11.223},{"oc":"#221f1f","x":0.086,"y":49.469,"w":1.125,"l":1.576},{"oc":"#221f1f","x":0.086,"y":48.977,"w":1.125,"l":1.576}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.66},{"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":76.727,"y":6.735,"w":0.75,"l":1.531},{"oc":"#201e1f","x":79.202,"y":7.501,"w":0.75,"l":0.731},{"dsh":1,"oc":"#201e1f","x":81.688,"y":7.576,"w":0.75,"l":0.563},{"oc":"#201e1f","x":84.173,"y":7.501,"w":0.75,"l":0.731},{"oc":"#201e1f","x":86.658,"y":7.501,"w":0.75,"l":0.731},{"oc":"#201e1f","x":89.143,"y":7.501,"w":0.75,"l":0.731},{"oc":"#201e1f","x":91.629,"y":7.501,"w":0.75,"l":0.731},{"oc":"#201e1f","x":93.987,"y":7.501,"w":0.75,"l":0.731},{"oc":"#201e1f","x":96.498,"y":7.501,"w":0.75,"l":0.731},{"oc":"#201e1f","x":98.958,"y":7.501,"w":0.75,"l":0.731},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"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":59.402,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":11.985,"w":0.75,"l":0.781},{"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":82.915,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.985,"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":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":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"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":48.265,"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":63.115,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":15.735,"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":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":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":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.789},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":17.978,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":17.978,"w":0.75,"l":0.789},{"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":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":33.415,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":53.215,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":33.415,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":33.415,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":53.215,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":33.415,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":53.215,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.415,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":36.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":33.415,"y":36.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":53.215,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":38.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":22.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":22.485,"w":0.75,"l":2.281},{"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":22.485,"w":0.75,"l":2.281},{"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.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":82.915,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":33.735,"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.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"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.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"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},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"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":82.915,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"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":95.29,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.29,"y":42.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.915,"y":42.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.915,"y":43.376,"w":0.75,"l":0.125},{"oc":"#221f1f","x":82.915,"y":43.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":43.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":1.662,"y":48.977,"w":1.125,"l":0.492},{"oc":"#221f1f","x":0.086,"y":48.977,"w":1.125,"l":0.492}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":9.376,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":12.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":15.001,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":18.001,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":19.876,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":33.415,"y":34.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":22.501,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":32.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":43.501,"w":3.713,"h":2.25,"clr":-1},{"x":0.172,"y":49.071,"w":1.404,"h":0.367,"clr":0}],"Texts":[{"oc":"#221f1f","x":10.89,"y":39.54,"w":15.615000000000007,"clr":-1,"A":"left","R":[{"T":"Net%20farm%20rental%20income%20or%20(loss).%20","S":-1,"TS":[0,11.73,1,0]}]},{"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":"4835%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.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.251,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":38.991,"y":2.101,"w":16.839000000000006,"clr":-1,"A":"left","R":[{"T":"Farm%20Rental%20Income%20and%20Expenses%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":26.129,"y":2.633,"w":38.618999999999986,"clr":-1,"A":"left","R":[{"T":"(Crop%20and%20Livestock%20Shares%20(Not%20Cash)%20Received%20by%20Landowner%20(or%20Sub-Lessor))%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":37.683,"y":3.09,"w":21.226000000000003,"clr":-1,"A":"left","R":[{"T":"%20(Income%20not%20subject%20to%20self-employment%20tax)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":39.3,"y":3.5730000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.714,"y":3.667,"w":22.618999999999986,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.342,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,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":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.8760000000000003,"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.942,"y":4.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":10,"TS":[0,14,1,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":77.508,"y":5.001,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":77.165,"y":6.501,"w":15.837000000000005,"clr":-1,"A":"left","R":[{"T":"Employer%20ID%20number%20(EIN)%2C%20if%20any%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.647,"y":8.059,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":8.059,"w":38.67499999999999,"clr":-1,"A":"left","R":[{"T":"Did%20you%20actively%20participate%20in%20the%20operation%20of%20this%20farm%20during%202013%20(see%20instructions)%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.939,"y":8.059,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.865,"y":8.108,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":95.879,"y":8.108,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":6.838,"y":9.197,"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":9.197,"w":23.895000000000003,"clr":-1,"A":"left","R":[{"T":"Gross%20Farm%20Rental%20Income%20Based%20on%20Production.%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":53.288,"y":9.197,"w":23.766000000000005,"clr":-1,"A":"left","R":[{"T":"Include%20amounts%20converted%20to%20cash%20or%20the%20equivalent.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":31.33999999999999,"clr":-1,"A":"left","R":[{"T":"Income%20from%20production%20of%20livestock%2C%20produce%2C%20grains%2C%20and%20other%20crops","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":10.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":20.817000000000007,"clr":-1,"A":"left","R":[{"T":"Cooperative%20distributions%20(Form(s)%201099-PATR)","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":45.284,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":10.996,"w":1.445,"clr":-1,"A":"left","R":[{"T":"2b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.337,"y":10.996,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":79.906,"y":11.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":11.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":11.84,"w":21.63300000000001,"clr":-1,"A":"left","R":[{"T":"Agricultural%20program%20payments%20(see%20instructions)","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":45.284,"y":11.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"3a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":11.746,"w":1.445,"clr":-1,"A":"left","R":[{"T":"3b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.337,"y":11.746,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":79.906,"y":11.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"3b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":27.558000000000003,"clr":-1,"A":"left","R":[{"T":"Commodity%20Credit%20Corporation%20(CCC)%20loans%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":15.557000000000006,"clr":-1,"A":"left","R":[{"T":"CCC%20loans%20reported%20under%20election","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":13.34,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":14.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.09,"w":8.814000000000002,"clr":-1,"A":"left","R":[{"T":"CCC%20loans%20forfeited","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":14.09,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.256,"y":14.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":13.996,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.28,"y":13.996,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":79.934,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":35.523999999999994,"clr":-1,"A":"left","R":[{"T":"Crop%20insurance%20proceeds%20and%20federal%20crop%20disaster%20payments%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":11.134000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20received%20in%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":15.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.284,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"5a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.102,"y":15.495999999999999,"w":1.445,"clr":-1,"A":"left","R":[{"T":"5b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.337,"y":15.495999999999999,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":79.906,"y":15.59,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":22.708999999999993,"clr":-1,"A":"left","R":[{"T":"If%20election%20to%20defer%20to%202014%20is%20attached%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.017,"y":16.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.965,"y":16.34,"w":1.445,"clr":-1,"A":"left","R":[{"T":"5d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.2,"y":16.34,"w":12.653000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20deferred%20from%202012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.906,"y":16.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":42.41399999999997,"clr":-1,"A":"left","R":[{"T":"Other%20income%2C%20including%20federal%20and%20state%20gasoline%20or%20fuel%20tax%20credit%20or%20refund%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.79,"w":12.671000000000006,"clr":-1,"A":"left","R":[{"T":"Gross%20farm%20rental%20income.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":28.438,"y":17.79,"w":28.677,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20the%20right%20column%20for%20lines%201%20through%206.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.488,"w":22.044000000000008,"clr":-1,"A":"left","R":[{"T":"total%20here%20and%20on%20Schedule%20E%20(Form%201040)%2C%20line%2042","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":18.488,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":18.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.378,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":19.697,"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":19.697,"w":15.950000000000001,"clr":-1,"A":"left","R":[{"T":"Expenses%20Farm%20Rental%20Property.%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":40.466,"y":19.697,"w":19.224999999999998,"clr":-1,"A":"left","R":[{"T":"Do%20not%20include%20personal%20or%20living%20expenses.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.853,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.853,"w":13.039000000000003,"clr":-1,"A":"left","R":[{"T":"Car%20and%20truck%20expenses%20(see%20","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.54,"w":10.948000000000006,"clr":-1,"A":"left","R":[{"T":"Schedule%20F%20(Form%201040)%20","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#221f1f","x":34.591,"y":22.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%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":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":4.686,"clr":-1,"A":"left","R":[{"T":"Chemicals","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":23.09,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.591,"y":23.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":23.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.79,"w":12.871000000000004,"clr":-1,"A":"left","R":[{"T":"Conservation%20expenses%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.478,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":24.478,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":12.502,"clr":-1,"A":"left","R":[{"T":"Custom%20hire%20(machine%20work)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":25.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":25.34,"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.103,"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.103,"w":13.374000000000004,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20section%20179%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.79,"w":10.540000000000001,"clr":-1,"A":"left","R":[{"T":"expense%20deduction%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.477,"w":8.296000000000001,"clr":-1,"A":"left","R":[{"T":"claimed%20elsewhere","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":27.477,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.353,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.353,"w":15.207000000000003,"clr":-1,"A":"left","R":[{"T":"Employee%20benefit%20programs%20other%20","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.04,"w":14.282000000000005,"clr":-1,"A":"left","R":[{"T":"than%20on%20line%2021%20(see%20Schedule%20F%20","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.727,"w":11.355000000000002,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20instructions).","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":28.544,"y":29.727,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":30.607,"y":29.727,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":34.161,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":2.241,"clr":-1,"A":"left","R":[{"T":"Feed","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":30.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":8.351000000000003,"clr":-1,"A":"left","R":[{"T":"Fertilizers%20and%20lime","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":31.340000000000003,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":8.965000000000002,"clr":-1,"A":"left","R":[{"T":"Freight%20and%20trucking","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.565,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.627,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.689,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%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":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":9.612000000000002,"clr":-1,"A":"left","R":[{"T":"Gasoline%2C%20fuel%2C%20and%20oil","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.565,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.627,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.689,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":13.003000000000005,"clr":-1,"A":"left","R":[{"T":"Insurance%20(other%20than%20health).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%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":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":3.6300000000000003,"clr":-1,"A":"left","R":[{"T":"Interest%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":35.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":13.707000000000004,"clr":-1,"A":"left","R":[{"T":"Mortgage%20(paid%20to%20banks%2C%20etc.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.717,"y":35.09,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":35.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":35.84,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":35.84,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.688,"y":35.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.603,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.603,"w":13.504000000000001,"clr":-1,"A":"left","R":[{"T":"Labor%20hired%20(less%20employment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.29,"w":13.872000000000003,"clr":-1,"A":"left","R":[{"T":"credits)%20(see%20Schedule%20F%20(Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.977,"w":8.206000000000001,"clr":-1,"A":"left","R":[{"T":"1040)%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":37.977,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.161,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":20.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":20.79,"w":8.557,"clr":-1,"A":"left","R":[{"T":"Pension%20and%20profit-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.152,"y":21.478,"w":5.964000000000001,"clr":-1,"A":"left","R":[{"T":"sharing%20plans","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":21.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.939,"y":21.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.001,"y":21.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":22.34,"w":6.167,"clr":-1,"A":"left","R":[{"T":"Rent%20or%20lease%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.677,"y":23.103,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":23.103,"w":11.429000000000004,"clr":-1,"A":"left","R":[{"T":"Vehicles%2C%20machinery%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.152,"y":23.79,"w":7.151000000000002,"clr":-1,"A":"left","R":[{"T":"equipment%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.152,"y":24.478,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":24.478,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":24.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"22a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.677,"y":25.34,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":25.34,"w":11.411000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20(land%2C%20animals%2C%20etc.)","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":79.476,"y":25.34,"w":1.723,"clr":-1,"A":"left","R":[{"T":"22b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":26.09,"w":11.670000000000003,"clr":-1,"A":"left","R":[{"T":"Repairs%20and%20maintenance%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":26.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":26.84,"w":7.780000000000001,"clr":-1,"A":"left","R":[{"T":"Seeds%20and%20plants","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":26.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":26.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":27.59,"w":11.463,"clr":-1,"A":"left","R":[{"T":"Storage%20and%20warehousing","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":79.948,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":28.34,"w":3.871,"clr":-1,"A":"left","R":[{"T":"Supplies","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":28.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":29.09,"w":2.6660000000000004,"clr":-1,"A":"left","R":[{"T":"Taxes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":29.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":29.84,"w":3.2769999999999997,"clr":-1,"A":"left","R":[{"T":"Utilities","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":29.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":30.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":30.54,"w":9.538000000000002,"clr":-1,"A":"left","R":[{"T":"Veterinary%2C%20breeding%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.152,"y":31.228,"w":6.021000000000001,"clr":-1,"A":"left","R":[{"T":"and%20medicine","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":31.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.939,"y":31.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.001,"y":31.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.957,"y":32.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.152,"y":32.04,"w":7.613000000000001,"clr":-1,"A":"left","R":[{"T":"Other%20expenses%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.152,"y":32.728,"w":3.9809999999999994,"clr":-1,"A":"left","R":[{"T":"(specify)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.677,"y":33.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.504,"y":33.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"30a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.824,"y":34.34,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.476,"y":34.34,"w":1.723,"clr":-1,"A":"left","R":[{"T":"30b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.852,"y":35.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.504,"y":35.09,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"30c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.824,"y":35.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.476,"y":35.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"30d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.852,"y":36.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.504,"y":36.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"30e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.039,"y":37.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.691,"y":37.34,"w":1.445,"clr":-1,"A":"left","R":[{"T":"30f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.824,"y":38.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.476,"y":38.028,"w":1.723,"clr":-1,"A":"left","R":[{"T":"30g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.717,"y":38.84,"w":18.52300000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%208%20through%2030g%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":38.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":38.746,"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.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.948,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.059,"w":29.11800000000001,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20an%20applicable%20subsidy%20in%202013%3F%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":41.059,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.944,"y":41.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":84.915,"y":41.108,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":90.929,"y":41.108,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.79,"w":35.212,"clr":-1,"A":"left","R":[{"T":"If%20line%2032%20is%20a%20loss%2C%20check%20the%20box%20that%20describes%20your%20investment%20in%20this%20activity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.478,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":42.478,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.337,"y":42.378,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,14,0,0]}]},{"oc":"#221f1f","x":79.504,"y":41.84,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"34a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":84.623,"y":41.858,"w":10.521,"clr":-1,"A":"left","R":[{"T":"All%20investment%20is%20at%20risk.","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":79.476,"y":42.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"34b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":84.623,"y":42.546,"w":13.764000000000003,"clr":-1,"A":"left","R":[{"T":"Some%20investment%20is%20not%20at%20risk.","S":-1,"TS":[0,8.92,0,0]}]},{"oc":"#221f1f","x":8.415,"y":43.415,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":45.477,"w":8.837000000000003,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%2C%20line%2040","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.563,"y":45.477,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":45.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"34c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"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":65.665,"y":46.376,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013117W","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4835","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.755,"y":4.243,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%204835%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform4835.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":32.632,"y":39.54,"w":28.285000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2031%20from%20line%207.%20If%20the%20result%20is%20income%2C%20enter%20it%20here%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":10.894,"y":44.789,"w":41.009999999999984,"clr":-1,"A":"left","R":[{"T":"before%20going%20to%20Form%208582.%20In%20either%20case%2C%20enter%20the%20here%20and%20on%20Schedule%20Edeductible%20loss%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.102,"w":41.10599999999999,"clr":-1,"A":"left","R":[{"T":"box%20you%20checked%20(see%20instructions).%20If%20you%20checked%20box%2034b%2C%20you%20must%20complete%20Form%206198%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":43.415,"w":41.583999999999975,"clr":-1,"A":"left","R":[{"T":"You%20may%20have%20to%20complete%20to%20determine%20your%20deductible%20loss%2C%20regardless%20of%20which%20Form%208582","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":40.228,"w":41.60699999999997,"clr":-1,"A":"left","R":[{"T":"and%20on%20Schedule%20E%20(Form%201040)%2C%20line%2040.%20If%20the%20result%20is%20a%20loss%2C%20you%20must%20go%20to%20lines%2033%20and%2034.","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.227,"w":16.134000000000007,"clr":-1,"A":"left","R":[{"T":"instructions).%20Also%20attach%20Form%204562","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":7.781000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20expenses.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3610,"AM":1024,"x":76.869,"y":5.836,"w":22.11,"h":0.899,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3611,"AM":1024,"x":6.332,"y":6.413,"w":70.166,"h":1.822,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":3612,"AM":0,"x":77.239,"y":7.373,"w":21.72,"h":0.862,"TU":"Employer ID number (EIN), if any","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":3615,"AM":0,"x":83.016,"y":10.538,"w":12.189,"h":0.833,"TU":"Line 1. Income from production of livestock, produce, grains, and other crops."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":3616,"AM":0,"x":48.386,"y":11.258,"w":10.911,"h":0.833,"TU":"Line 2a. Cooperative distributions (Form(s) 1099-PATR)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":3617,"AM":0,"x":83.016,"y":11.288,"w":12.189,"h":0.833,"TU":"Line 2b. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3A","EN":0},"TI":3618,"AM":0,"x":48.366,"y":12.038,"w":10.952,"h":0.833,"TU":"Line 3a. Agricultural program payments (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3B","EN":0},"TI":3619,"AM":0,"x":83.016,"y":12.038,"w":12.189,"h":0.833,"TU":"Line 3b. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4A","EN":0},"TI":3620,"AM":0,"x":83.098,"y":13.274,"w":12.024,"h":0.961,"TU":"Line 4a. CCC loans reported under election."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4B","EN":0},"TI":3621,"AM":0,"x":48.386,"y":14.258,"w":10.911,"h":0.833,"TU":"Line 4b. CCC loans forfeited."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C","EN":0},"TI":3622,"AM":0,"x":83.016,"y":14.288,"w":12.189,"h":0.833,"TU":"Line 4c. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":3623,"AM":0,"x":48.386,"y":15.758,"w":10.911,"h":0.833,"TU":"Line 5a. Crop insurance proceeds and federal crop disaster payments (see instructions). Amount received in 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5B","EN":0},"TI":3624,"AM":0,"x":83.098,"y":15.594,"w":12.024,"h":0.891,"TU":"Line 5b. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5D","EN":0},"TI":3626,"AM":0,"x":83.016,"y":16.538,"w":12.189,"h":0.833,"TU":"Line 5d. Amount deferred from 2012."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":3627,"AM":0,"x":83.016,"y":17.288,"w":12.189,"h":0.833,"TU":"Line 6. Other income, including federal and state gasoline or fuel tax credit or refund (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":3628,"AM":1024,"x":83.098,"y":18.578,"w":12.024,"h":0.9},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":3629,"AM":0,"x":37.331,"y":22.202,"w":11.983,"h":1.033,"TU":"Line 8. Car and truck expenses (see Schedule F (Form 1040) instructions). Also attach Form 4562. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4562R"}},"id":{"Id":"Add_F4562","EN":0},"TI":3630,"AM":1024,"x":27.475,"y":22.669,"w":3.584,"h":0.914},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":3631,"AM":0,"x":37.228,"y":23.288,"w":12.189,"h":0.833,"TU":"Line 9. Chemicals."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":3632,"AM":0,"x":37.311,"y":24.608,"w":12.024,"h":0.877,"TU":"Line 10. Conservation expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":3633,"AM":0,"x":37.228,"y":25.538,"w":12.189,"h":0.833,"TU":"Line 11. Custom hire (machine work)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":3634,"AM":0,"x":37.331,"y":27.351,"w":11.983,"h":1.134,"TU":"Line 12. Depreciation and section 179 expense deduction not claimed elsewhere."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":3635,"AM":0,"x":37.331,"y":29.764,"w":11.983,"h":0.971,"TU":"Line 13. Employee benefit programs other than on line 21 (see Schedule F (Form 1040) instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":3636,"AM":0,"x":37.228,"y":30.788,"w":12.189,"h":0.833,"TU":"Line 14. Feed."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":3637,"AM":0,"x":37.228,"y":31.538,"w":12.189,"h":0.833,"TU":"Line 15. Fertilizers and lime."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":3638,"AM":0,"x":37.228,"y":32.288,"w":12.189,"h":0.833,"TU":"Line 16. Freight and trucking."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":3639,"AM":0,"x":37.228,"y":33.038,"w":12.189,"h":0.833,"TU":"Line 17. Gasoline, fuel and oil."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":3640,"AM":0,"x":37.228,"y":33.788,"w":12.189,"h":0.833,"TU":"Line 18. Insurance (other than health)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":3641,"AM":0,"x":37.311,"y":35.114,"w":12.024,"h":0.871,"TU":"Line 19a. Mortgage interest (paid to banks, etc.)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":3642,"AM":0,"x":83.098,"y":21.536,"w":12.024,"h":0.949,"TU":"21"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22A3","EN":0},"TI":3643,"AM":0,"x":83.16,"y":24.293,"w":11.901,"h":1.192,"TU":"22a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22B","EN":0},"TI":3644,"AM":0,"x":83.016,"y":25.538,"w":12.189,"h":0.833,"TU":"22b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":3645,"AM":0,"x":83.016,"y":26.288,"w":12.189,"h":0.833,"TU":"23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":3646,"AM":0,"x":83.016,"y":27.038,"w":12.189,"h":0.833,"TU":"24"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":3647,"AM":0,"x":83.016,"y":27.788,"w":12.189,"h":0.833,"TU":"25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":3648,"AM":0,"x":83.016,"y":28.538,"w":12.189,"h":0.833,"TU":"26"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":3649,"AM":0,"x":83.016,"y":29.288,"w":12.189,"h":0.833,"TU":"27"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":3650,"AM":0,"x":83.016,"y":30.038,"w":12.189,"h":0.833,"TU":"28"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":3651,"AM":0,"x":83.098,"y":31.344,"w":12.024,"h":0.891,"TU":"29"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L30T_1_","EN":0},"TI":3652,"AM":0,"x":59.359,"y":33.863,"w":17.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L30A_1_","EN":0},"TI":3653,"AM":0,"x":83.119,"y":33.62,"w":11.983,"h":0.865},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L30T_2_","EN":0},"TI":3654,"AM":0,"x":59.359,"y":34.613,"w":17.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L30A_2_","EN":0},"TI":3655,"AM":0,"x":82.941,"y":34.538,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L30T_3_","EN":0},"TI":3656,"AM":0,"x":59.359,"y":35.363,"w":17.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L30A_3_","EN":0},"TI":3657,"AM":0,"x":83.016,"y":35.288,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":3658,"AM":0,"x":37.228,"y":36.038,"w":12.189,"h":0.833,"TU":"Line 19b. Other interest."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L30T_4_","EN":0},"TI":3659,"AM":0,"x":59.359,"y":36.113,"w":17.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L30A_4_","EN":0},"TI":3660,"AM":0,"x":83.016,"y":36.038,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":3661,"AM":0,"x":37.331,"y":37.98,"w":11.983,"h":0.998,"TU":"Line 20. Labor hired (less employment credits) (see Schedule F (Form 1040) instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L30T_5_","EN":0},"TI":3662,"AM":0,"x":59.359,"y":36.863,"w":17.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L30A_5_","EN":0},"TI":3663,"AM":0,"x":83.016,"y":36.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L30T_6_","EN":0},"TI":3664,"AM":0,"x":59.359,"y":37.613,"w":17.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L30A_6_","EN":0},"TI":3665,"AM":0,"x":82.941,"y":37.538,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L30T_7_","EN":0},"TI":3666,"AM":0,"x":59.504,"y":38.346,"w":17.728,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L30A_7_","EN":0},"TI":3667,"AM":0,"x":83.003,"y":38.288,"w":12.414,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":3668,"AM":1024,"x":83.016,"y":39.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":3669,"AM":1024,"x":83.098,"y":40.371,"w":12.024,"h":0.864,"TU":"32"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8582"}},"id":{"Id":"Add_F8582","EN":0},"TI":3674,"AM":1024,"x":76.541,"y":43.475,"w":3.372,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6198R"}},"id":{"Id":"Add_F6198R","EN":0},"TI":3675,"AM":1024,"x":76.364,"y":44.271,"w":3.584,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33C","EN":0},"TI":3676,"AM":0,"x":83.16,"y":45.139,"w":11.901,"h":1.331,"TU":"34c"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AN","EN":0},"TI":3613,"AM":0,"x":93.66,"y":8.039,"w":2.421,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AY","EN":0},"TI":3614,"AM":0,"x":87.245,"y":8.124,"w":1.972,"h":0.833,"checked":false}],"id":{"Id":"ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5CX","EN":0},"TI":3625,"AM":0,"x":48.221,"y":16.487,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33A","EN":0},"TI":3670,"AM":0,"x":82.688,"y":41.95,"w":1.687,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33B","EN":0},"TI":3673,"AM":0,"x":82.631,"y":42.748,"w":1.8,"h":0.833,"checked":false}],"id":{"Id":"L33RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SUBBXY","EN":0},"TI":3671,"AM":0,"x":82.685,"y":41.264,"w":1.748,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SUBBXN","EN":0},"TI":3672,"AM":0,"x":88.815,"y":41.142,"w":1.748,"h":0.833,"checked":false}],"id":{"Id":"SUBBXRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4868.content.txt b/test/data/fd/form/F4868.content.txt new file mode 100755 index 00000000..ca6b1155 --- /dev/null +++ b/test/data/fd/form/F4868.content.txt @@ -0,0 +1,135 @@ +rejected. If you don't have a prior year Adjusted Gross Income you can obtain an +Amount you are paying (see instructions) +Checking Savings N/A (no direct debit) +Form + +4868 +Application for Automatic Extension of Time +OMB NO. 1545-0074 +Department of the Treasury +to File U.S. Individual Income Tax Return +2013 +Internal Revenue Service (99) +For calendar year 2013, or other tax year beginning +,2013 ending +, 20 +. +Part I +Identification +Part II +Individual Income Tax +1 +Your name(s) (see instructions) +4 +Estimate of total tax liability for 2013 +. . . . . . . . . . +$ +5 +Total 2013 payments +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Address (see instructions) +6 Balance due. +Subtract line 5 from line 4 +(see instructions) +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +City, town or post office +State ZIP Code +7 +. . . . . +G +8 +Check here if you are "out of the country" and a U.S. +Foreign country name +Province Postal Code citizen or resident (see instructions) +. . . . . . . . . . . . . . . . . +G +9 +Check here if you file Form 1040NR or 1040NR-EZ and +2 +Your social security number +3 +Spouse's social security number +did not receive wages as an employee subject to U.S. +income tax withholding +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +G +For Privacy Act and Paperwork Reduction Act Notice, see page 4. +Cat. No. 13141W +Form + +4868 + (2013) +Information for Paper Filing of Extension Required Information for Electronic Filing of Extension +Paying Tax Due by Check +. . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . +in the instructions. +Disclosure Statement +I agree +I consent to allow my Intermediate Service Provider, transmitter, or Electronic Return Originator (ERO) to +send this form to the IRS and to receive the following information from the IRS: (a) Acknowledgement of +receipt or reason for rejection of transmission , and (b) if delayed, reason for any delay in processing the +form. +Paying Tax Due by Check + +Print Form 4868 and attach check for balance due. Mail to the address in the instructions +Electronic Withdrawal of Tax Due +To use direct debit, enter the required information below and agree to the disclosure statement. +G +Routing number +. . . . . . . . . . . +G +Account number +. . . . . . . . . . . +G +Type: +. . . . . . . . . . . . . . . . . . . . . . +Date to make withdrawal +. . . . . . . . . . . . +G +Day time phone number +. . . . . . . . . . . . . . . . . . . . . +IMPORTANT: Identifying Information From Last Year (2012 taxes) +The IRS uses this information to verify your identity. They will match this information against what +they have in their records, so don't guess. If the information does not match, your return will be +Electronic Filing PIN from the IRS web site. Go to +http://www.irs.gov/Individuals/Electronic-Filing-PIN-Request + or call 1-866-704-7388. +Enter the Electronic Filing PIN in the space indicated "Electronic Filing PIN". +Note: +If you are married filing joint, and you filed together in 2012, enter the same +amount in the taxpayer and spouse columns for adjusted gross income. +Taxpayer +Spouse +(1) Prior Year Adjusted Gross Income: +. . . . . . . . +OR +(2) Electronic Filing PIN: +. . . . . . . . . . . . . . . . . . . . . . . +- Print Form 4868 and +attach check for balance due. Mail to the address +Re-enter e-mail address (must match) + +E-Mail address (for confirmation e-mail +----------------Page (0) Break---------------- +(Your PIN(s) cannot be 12345 or 00000) +. . . . . . +Date of Birth (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . +Today's Date (mm/dd/yyyy) +. . . . . . . . . . . . . . . . . . . . +Electronic withdrawal disclosure statement +I agree +I authorize the U.S. Treasury and its designated Financial Agent to intitiate an ACH Electronic Funds +Withdrawal (Direct Debit) entry to the financial institution account indicated for payment of my federal taxes +owed on this return and the financial institution to debit the entry to this account. This authorization is to +remain in full force and effect until I notify the U.S. Treasure Financial Agent to terminate the authorization. +To revoke a payment, I must contact the U.S. Treasury Financial Agent at 1-888-353-4537 no later than 2 +business days prior to the payment (settlement) date. I also authorize the financial institutions involved in the +processing of the electronic payment of taxes to receive confidential information necessary to answer +inquiries and resolve issues related to the payment. +Signature information +Taxpayer +Spouse +Select any 5-digit PIN +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F4868.fields.json b/test/data/fd/form/F4868.fields.json new file mode 100755 index 00000000..53b4392a --- /dev/null +++ b/test/data/fd/form/F4868.fields.json @@ -0,0 +1 @@ +[{"id":"OUTCB","type":"box","calc":false,"value":""},{"id":"NRNOWGX","type":"box","calc":false,"value":""},{"id":"DISCLOSE","type":"box","calc":false,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"TACK"},{"id":"TARB","type":"radio","calc":false,"value":"TASV"},{"id":"TARB","type":"radio","calc":false,"value":"TANA"},{"id":"FYB","type":"date","calc":false,"value":""},{"id":"FYEMO","type":"date","calc":false,"value":""},{"id":"FYEYR","type":"date","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"DUE","type":"number","calc":true,"value":""},{"id":"PAY","type":"number","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"FCNAME","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"YSSN","type":"ssn","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"EMAIL2","type":"alpha","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"DEBITDT","type":"date","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""},{"id":"TLYAGI","type":"number","calc":false,"value":""},{"id":"SLYAGI","type":"number","calc":false,"value":""},{"id":"TEFPIN","type":"mask","calc":false,"value":""},{"id":"SEFPIN","type":"mask","calc":false,"value":""},{"id":"EFWYES","type":"box","calc":false,"value":""},{"id":"TPIN","type":"mask","calc":false,"value":""},{"id":"SPIN","type":"mask","calc":false,"value":""},{"id":"TDOB","type":"date","calc":false,"value":""},{"id":"SDOB","type":"date","calc":false,"value":""},{"id":"TCURDATE","type":"date","calc":false,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4868.json b/test/data/fd/form/F4868.json new file mode 100755 index 00000000..b43cb984 --- /dev/null +++ b/test/data/fd/form/F4868.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdia4601.pfm : default (Read Only)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":0.086,"y":49.469,"w":0.2985,"l":2.543},{"x":0.086,"y":48.819,"w":0.2985,"l":2.543}],"VLines":[{"x":2.629,"y":48.819,"w":0.2985,"l":0.649},{"x":0.086,"y":48.819,"w":0.2985,"l":0.649}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":0,"y":3,"w":6.188,"h":0.75,"clr":0},{"x":0,"y":3,"w":6.188,"h":0.75,"clr":1},{"x":0,"y":3,"w":6.188,"h":0.75,"clr":0},{"oc":"#e4e4e4","x":6.188,"y":3,"w":41.25,"h":0.75,"clr":-1},{"x":47.438,"y":3,"w":6.188,"h":0.75,"clr":0},{"x":47.438,"y":3,"w":6.188,"h":0.75,"clr":1},{"x":47.438,"y":3,"w":6.188,"h":0.75,"clr":0},{"oc":"#e4e4e4","x":53.625,"y":3,"w":46.406,"h":0.75,"clr":-1},{"x":86.625,"y":1.5,"w":13.489,"h":0.03,"clr":0},{"x":0,"y":3,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":3.75,"w":100.114,"h":0.03,"clr":0},{"x":87.656,"y":4.5,"w":12.458,"h":0.03,"clr":0},{"x":0,"y":5.25,"w":47.52,"h":0.03,"clr":0},{"x":87.656,"y":5.25,"w":12.458,"h":0.03,"clr":0},{"x":3.094,"y":6.75,"w":44.426,"h":0.03,"clr":0},{"x":87.656,"y":6.75,"w":12.458,"h":0.03,"clr":0},{"x":47.438,"y":7.5,"w":52.676,"h":0.03,"clr":0},{"x":0,"y":8.25,"w":47.52,"h":0.03,"clr":0},{"x":3.094,"y":9.75,"w":44.426,"h":0.03,"clr":0},{"x":0,"y":11.25,"w":100.372,"h":0.124,"clr":0},{"x":77.215,"y":15.75,"w":22.77,"h":0.03,"clr":0},{"x":77.215,"y":16.5,"w":22.77,"h":0.03,"clr":0},{"x":59.297,"y":29.859,"w":10.395,"h":0.03,"clr":0},{"x":64.453,"y":31.359,"w":12.458,"h":0.03,"clr":0},{"x":71.414,"y":32.391,"w":16.583,"h":0.03,"clr":0},{"x":71.414,"y":45.469,"w":12.458,"h":0.03,"clr":0},{"x":85.852,"y":45.469,"w":12.458,"h":0.03,"clr":0},{"x":71.414,"y":47.094,"w":12.458,"h":0.03,"clr":0},{"x":85.852,"y":47.094,"w":12.458,"h":0.03,"clr":0},{"x":19.422,"y":0.625,"w":0.34,"h":2.374,"clr":0},{"x":86.625,"y":0.75,"w":0.34,"h":2.374,"clr":0},{"x":0,"y":3,"w":0.083,"h":0.78,"clr":0},{"x":6.188,"y":3,"w":0.082,"h":0.78,"clr":0},{"x":47.438,"y":3,"w":0.083,"h":8.28,"clr":0},{"x":53.625,"y":3,"w":0.083,"h":0.78,"clr":0},{"x":28.875,"y":6.75,"w":0.082,"h":3.03,"clr":0},{"x":36.094,"y":6.75,"w":0.082,"h":3.03,"clr":0},{"x":23.719,"y":9.75,"w":0.082,"h":1.53,"clr":0},{"x":36.74,"y":12.224,"w":0.082,"h":37.051,"clr":0},{"x":92.813,"y":11.25,"w":3.176,"h":0.03,"clr":0},{"x":59.297,"y":29.859,"w":2.145,"h":0.03,"clr":0},{"x":0,"y":48.788,"w":2.715,"h":0.712,"clr":1}],"Texts":[{"x":37.473,"y":37.47,"w":37.83400000000002,"clr":0,"A":"left","R":[{"T":"rejected.%20If%20you%20don't%20have%20a%20prior%20year%20Adjusted%20Gross%20Income%20you%20can%20obtain%20an%20","S":-1,"TS":[2,10.9648,0,0]}]},{"x":51.654,"y":6.626,"w":19.726000000000003,"clr":0,"A":"left","R":[{"T":"Amount%20you%20are%20paying%20(see%20instructions)","S":-1,"TS":[2,11.9829,1,0]}]},{"x":61.45,"y":29.736,"w":4.245,"clr":0,"A":"left","R":[{"T":"Checking","S":-1,"TS":[2,11.9829,0,0]}]},{"x":72.793,"y":29.736,"w":3.678,"clr":0,"A":"left","R":[{"T":"Savings","S":-1,"TS":[2,11.9829,0,0]}]},{"x":83.106,"y":29.736,"w":9.419999999999998,"clr":0,"A":"left","R":[{"T":"N%2FA%20(no%20direct%20debit)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":0.6259999999999999,"w":2.385,"clr":0,"A":"left","R":[{"T":"Form","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.36,"y":0.6259999999999999,"w":2.224,"clr":0,"A":"left","R":[{"T":"4868","S":-1,"TS":[0,17.9535,1,0]}]},{"x":29.997,"y":0.6259999999999999,"w":21.114,"clr":0,"A":"left","R":[{"T":"Application%20for%20Automatic%20Extension%20of%20Time","S":-1,"TS":[0,15.9773,1,0]}]},{"x":86.715,"y":0.6259999999999999,"w":9.554000000000002,"clr":0,"A":"left","R":[{"T":"OMB%20NO.%201545-0074","S":-1,"TS":[2,10.9648,0,0]}]},{"x":0.08900000000000002,"y":1.376,"w":12.74,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury","S":-1,"TS":[2,10.9648,0,0]}]},{"x":32.059,"y":1.376,"w":19.394000000000005,"clr":0,"A":"left","R":[{"T":"to%20File%20U.S.%20Individual%20Income%20Tax%20Return","S":-1,"TS":[0,15.9773,1,0]}]},{"x":90.84,"y":1.751,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,17.9535,1,0]}]},{"x":0.09000000000000002,"y":2.126,"w":13.868999999999998,"clr":0,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[2,10.9648,0,0]}]},{"x":20.028,"y":2.126,"w":24.287000000000013,"clr":0,"A":"left","R":[{"T":"For%20calendar%20year%202013%2C%20or%20other%20tax%20year%20beginning","S":-1,"TS":[0,10.9648,1,0]}]},{"x":61.254,"y":2.126,"w":6.058,"clr":0,"A":"left","R":[{"T":"%2C2013%20ending","S":-1,"TS":[0,10.9648,1,0]}]},{"x":77.662,"y":2.126,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"%2C%2020","S":-1,"TS":[0,10.9648,1,0]}]},{"x":85.808,"y":2.126,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.9829,1,0]}]},{"x":0.09000000000000002,"y":2.876,"w":2.501,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[2,13.941,1,0]}]},{"x":8.339,"y":2.876,"w":6.223000000000001,"clr":0,"A":"left","R":[{"T":"Identification","S":-1,"TS":[0,13.941,1,0]}]},{"x":47.526,"y":2.876,"w":2.779,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[2,13.941,1,0]}]},{"x":55.776,"y":2.876,"w":10.448,"clr":0,"A":"left","R":[{"T":"Individual%20Income%20Tax","S":-1,"TS":[0,13.941,1,0]}]},{"x":0.9570000000000001,"y":3.6260000000000003,"w":0.556,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.9829,1,0]}]},{"x":3.184,"y":3.6260000000000003,"w":14.718,"clr":0,"A":"left","R":[{"T":"Your%20name(s)%20(see%20instructions)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":48.559,"y":3.6260000000000003,"w":0.556,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.9829,1,0]}]},{"x":51.653,"y":3.6260000000000003,"w":17.080999999999996,"clr":0,"A":"left","R":[{"T":"Estimate%20of%20total%20tax%20liability%20for%202013","S":-1,"TS":[2,11.9829,0,0]}]},{"x":78.537,"y":3.6260000000000003,"w":6.589999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":86.024,"y":3.6260000000000003,"w":0.6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.941,0,0]}]},{"x":48.559,"y":4.376,"w":0.556,"clr":0,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11.9829,1,0]}]},{"x":51.653,"y":4.376,"w":9.694,"clr":0,"A":"left","R":[{"T":"Total%202013%20payments","S":-1,"TS":[2,11.9829,0,0]}]},{"x":67.668,"y":4.376,"w":19.111,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":3.184,"y":5.126,"w":12.113,"clr":0,"A":"left","R":[{"T":"Address%20(see%20instructions)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":48.559,"y":5.126,"w":0.556,"clr":0,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.9829,1,0]}]},{"x":51.653,"y":5.126,"w":6.725,"clr":0,"A":"left","R":[{"T":"Balance%20due.%20%20","S":-1,"TS":[0,11.9829,1,0]}]},{"x":60.856,"y":5.126,"w":12.097999999999999,"clr":0,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204","S":-1,"TS":[2,11.9829,0,0]}]},{"x":51.654,"y":5.876,"w":8.024999999999999,"clr":0,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":64.946,"y":5.876,"w":21.746999999999996,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":3.184,"y":6.626,"w":11.011999999999997,"clr":0,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office","S":-1,"TS":[2,11.9829,0,0]}]},{"x":29.999,"y":6.626,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":37.217,"y":6.626,"w":4.29,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":48.56,"y":6.626,"w":0.556,"clr":0,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11.9829,1,0]}]},{"x":81.941,"y":6.626,"w":3.295,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":85.684,"y":6.626,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,14.9773,0,0]}]},{"x":48.559,"y":7.3759999999999994,"w":0.556,"clr":0,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.9829,1,0]}]},{"x":51.653,"y":7.3759999999999994,"w":24.535,"clr":0,"A":"left","R":[{"T":"Check%20here%20if%20you%20are%20%22out%20of%20the%20country%22%20and%20a%20U.S.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.184,"y":8.126,"w":10.132999999999997,"clr":0,"A":"left","R":[{"T":"Foreign%20country%20name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":28.968,"y":8.126,"w":4.026,"clr":0,"A":"left","R":[{"T":"Province","S":-1,"TS":[2,11.9829,0,0]}]},{"x":37.219,"y":8.126,"w":5.61,"clr":0,"A":"left","R":[{"T":"Postal%20Code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":51.658,"y":8.126,"w":16.647,"clr":0,"A":"left","R":[{"T":"citizen%20or%20resident%20(see%20instructions)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":77.898,"y":8.126,"w":11.203000000000001,"clr":0,"A":"left","R":[{"T":".%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":89.809,"y":8.126,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,14.9773,0,0]}]},{"x":48.559,"y":8.876,"w":0.556,"clr":0,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.9829,1,0]}]},{"x":51.653,"y":8.876,"w":25.44,"clr":0,"A":"left","R":[{"T":"Check%20here%20if%20you%20file%20Form%201040NR%20or%201040NR-EZ%20and","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.956,"y":9.626,"w":0.556,"clr":0,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11.9829,1,0]}]},{"x":3.184,"y":9.626,"w":10.157000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,12.941,0,0]}]},{"x":24.675,"y":9.626,"w":0.556,"clr":0,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.9829,1,0]}]},{"x":25.872,"y":9.626,"w":11.709000000000001,"clr":0,"A":"left","R":[{"T":"Spouse's%20social%20security%20number","S":-1,"TS":[0,12.941,0,0]}]},{"x":51.653,"y":9.626,"w":25.002000000000002,"clr":0,"A":"left","R":[{"T":"did%20not%20receive%20wages%20as%20an%20employee%20subject%20to%20U.S.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":51.653,"y":10.376,"w":10.619,"clr":0,"A":"left","R":[{"T":"income%20tax%20withholding","S":-1,"TS":[2,11.9829,0,0]}]},{"x":69.05,"y":10.376,"w":19.77,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":89.809,"y":10.376,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,14.9773,0,0]}]},{"x":0.09000000000000002,"y":11.126,"w":31.121000000000006,"clr":0,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%204.","S":-1,"TS":[0,10.9648,1,0]}]},{"x":59.904,"y":11.126,"w":7.831000000000002,"clr":0,"A":"left","R":[{"T":"Cat.%20No.%2013141W","S":-1,"TS":[2,10.9648,0,0]}]},{"x":87.747,"y":11.126,"w":2.385,"clr":0,"A":"left","R":[{"T":"Form","S":-1,"TS":[2,10.9648,0,0]}]},{"x":91.552,"y":11.126,"w":2.224,"clr":0,"A":"left","R":[{"T":"4868","S":-1,"TS":[0,13.941,1,0]}]},{"x":95.347,"y":11.126,"w":3.314,"clr":0,"A":"left","R":[{"T":"%20(2013)","S":-1,"TS":[2,10.9648,0,0]}]},{"x":0.09000000000000002,"y":13.048,"w":19.39200000000001,"clr":0,"A":"left","R":[{"T":"Information%20for%20Paper%20Filing%20of%20Extension","S":-1,"TS":[0,13.941,1,0]}]},{"x":38.25,"y":13.048,"w":26.06,"clr":0,"A":"left","R":[{"T":"Required%20Information%20for%20Electronic%20Filing%20of%20Extension","S":-1,"TS":[0,13.941,1,0]}]},{"x":-0.03900000000000001,"y":14.876,"w":12.171000000000003,"clr":0,"A":"left","R":[{"T":"Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[0,11.9829,1,0]}]},{"x":67.436,"y":14.876,"w":9.225999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":66.075,"y":15.626000000000001,"w":10.544,"clr":0,"A":"left","R":[{"T":".%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.03900000000000001,"y":16.376,"w":8.575,"clr":0,"A":"left","R":[{"T":"in%20the%20instructions.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":37.603,"y":17.595,"w":10.225,"clr":0,"A":"left","R":[{"T":"Disclosure%20Statement","S":-1,"TS":[0,11.9829,1,0]}]},{"x":61.321,"y":17.595,"w":3.246,"clr":0,"A":"left","R":[{"T":"I%20agree","S":-1,"TS":[2,11.9829,0,0]}]},{"x":37.731,"y":18.766,"w":38.509,"clr":0,"A":"left","R":[{"T":"I%20consent%20to%20allow%20my%20Intermediate%20Service%20Provider%2C%20transmitter%2C%20or%20Electronic%20Return%20Originator%20(ERO)%20to%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.731,"y":19.516,"w":38.282000000000004,"clr":0,"A":"left","R":[{"T":"send%20this%20form%20to%20the%20IRS%20and%20to%20receive%20the%20following%20information%20from%20the%20IRS%3A%20(a)%20Acknowledgement%20of%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.731,"y":20.266,"w":38.565,"clr":0,"A":"left","R":[{"T":"receipt%20or%20reason%20for%20rejection%20of%20transmission%20%2C%20and%20(b)%20if%20delayed%2C%20reason%20for%20any%20delay%20in%20processing%20the%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.731,"y":21.016,"w":1.9180000000000001,"clr":0,"A":"left","R":[{"T":"form.","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.86,"y":22.704,"w":12.171000000000003,"clr":0,"A":"left","R":[{"T":"Paying%20Tax%20Due%20by%20Check","S":-1,"TS":[0,11.9829,1,0]}]},{"x":37.602,"y":23.782,"w":41.354000000000006,"clr":0,"A":"left","R":[{"T":"Print%20Form%204868%20and%20attach%20check%20for%20balance%20due.%20Mail%20to%20the%20address%20in%20the%20instructions","S":-1,"TS":[2,10.9648,0,0]}]},{"x":37.344,"y":25.892,"w":15.837000000000003,"clr":0,"A":"left","R":[{"T":"Electronic%20Withdrawal%20of%20Tax%20Due","S":-1,"TS":[0,11.9829,1,0]}]},{"x":37.731,"y":27.486,"w":44.321000000000005,"clr":0,"A":"left","R":[{"T":"To%20use%20direct%20debit%2C%20enter%20the%20required%20information%20below%20and%20agree%20to%20the%20disclosure%20statement.","S":-1,"TS":[2,10.9648,0,0]}]},{"x":57.593,"y":28.236,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":37.731,"y":28.236,"w":7.367999999999999,"clr":0,"A":"left","R":[{"T":"Routing%20number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":50.106,"y":28.236,"w":7.248999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":57.593,"y":28.986,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":37.731,"y":28.986,"w":7.564,"clr":0,"A":"left","R":[{"T":"Account%20number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":50.106,"y":28.986,"w":7.248999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":57.593,"y":29.736,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":37.731,"y":29.736,"w":2.571,"clr":0,"A":"left","R":[{"T":"Type%3A","S":-1,"TS":[2,11.9829,0,0]}]},{"x":42.619,"y":29.736,"w":14.498000000000005,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":37.73,"y":30.485,"w":11.450999999999999,"clr":0,"A":"left","R":[{"T":"Date%20to%20make%20withdrawal","S":-1,"TS":[2,11.9829,0,0]}]},{"x":56.036,"y":30.486,"w":7.907999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":69.71,"y":31.517000000000003,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,12.941,0,0]}]},{"x":37.473,"y":31.517000000000003,"w":11.141,"clr":0,"A":"left","R":[{"T":"Day%20time%20phone%20number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.417,"y":31.517000000000003,"w":13.839000000000004,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":37.473,"y":34.658,"w":30.950000000000006,"clr":0,"A":"left","R":[{"T":"IMPORTANT%3A%20Identifying%20Information%20From%20Last%20Year%20(2012%20taxes)","S":-1,"TS":[0,11.9829,1,0]}]},{"x":37.473,"y":35.97,"w":45.790000000000006,"clr":0,"A":"left","R":[{"T":"The%20IRS%20uses%20this%20information%20to%20verify%20your%20identity.%20They%20will%20match%20this%20information%20against%20what%20","S":-1,"TS":[2,10.9648,0,0]}]},{"x":37.473,"y":36.72,"w":44.95300000000001,"clr":0,"A":"left","R":[{"T":"they%20have%20in%20their%20records%2C%20so%20don't%20guess.%20%20If%20the%20information%20does%20not%20match%2C%20your%20return%20will%20be%20","S":-1,"TS":[2,10.9648,0,0]}]},{"x":37.473,"y":38.22,"w":23.025,"clr":0,"A":"left","R":[{"T":"Electronic%20Filing%20PIN%20from%20the%20IRS%20web%20site.%20Go%20to","S":-1,"TS":[2,10.9648,0,0]}]},{"x":37.473,"y":38.97,"w":28.561000000000003,"clr":0,"A":"left","R":[{"T":"http%3A%2F%2Fwww.irs.gov%2FIndividuals%2FElectronic-Filing-PIN-Request","S":-1,"TS":[0,11.9829,1,0]}]},{"x":76.214,"y":38.97,"w":11.439000000000004,"clr":0,"A":"left","R":[{"T":"%20or%20call%201-866-704-7388.%20","S":-1,"TS":[2,10.9648,0,0]}]},{"x":37.473,"y":40.189,"w":35.84100000000002,"clr":0,"A":"left","R":[{"T":"Enter%20the%20Electronic%20Filing%20PIN%20%20in%20the%20space%20indicated%20%22Electronic%20Filing%20PIN%22.","S":-1,"TS":[2,10.9648,0,0]}]},{"x":37.473,"y":41.689,"w":2.555,"clr":0,"A":"left","R":[{"T":"Note%3A","S":-1,"TS":[0,11.9829,1,0]}]},{"x":42.63,"y":41.689,"w":35.645,"clr":0,"A":"left","R":[{"T":"If%20you%20are%20married%20filing%20joint%2C%20and%20you%20filed%20together%20in%202012%2C%20enter%20the%20same%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":42.63,"y":42.439,"w":33.24900000000002,"clr":0,"A":"left","R":[{"T":"amount%20in%20the%20taxpayer%20and%20spouse%20columns%20for%20adjusted%20gross%20income.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":73.567,"y":43.845,"w":4.391000000000001,"clr":0,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,11.9829,1,0]}]},{"x":89.034,"y":43.845,"w":3.612,"clr":0,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11.9829,1,0]}]},{"x":37.473,"y":44.595,"w":17.799000000000003,"clr":0,"A":"left","R":[{"T":"(1)%20Prior%20Year%20Adjusted%20Gross%20Income%3A","S":-1,"TS":[2,11.9829,0,0]}]},{"x":65.719,"y":44.595,"w":5.271999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":37.473,"y":45.408,"w":1.461,"clr":0,"A":"left","R":[{"T":"OR","S":-1,"TS":[2,11.9829,0,0]}]},{"x":37.473,"y":46.22,"w":11.426999999999998,"clr":0,"A":"left","R":[{"T":"(2)%20Electronic%20Filing%20PIN%3A","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.51,"y":46.22,"w":15.157000000000005,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":17.407,"y":14.876,"w":10.252,"clr":0,"A":"left","R":[{"T":"-%20Print%20Form%204868%20and","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.03900000000000001,"y":15.626000000000001,"w":23.219000000000005,"clr":0,"A":"left","R":[{"T":"attach%20check%20for%20balance%20due.%20Mail%20to%20the%20address%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":38.124,"y":15.626000000000001,"w":17.705,"clr":0,"A":"left","R":[{"T":"Re-enter%20e-mail%20address%20(must%20match)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":38.12,"y":14.876,"w":18.161000000000005,"clr":0,"A":"left","R":[{"T":"E-Mail%20address%20(for%20confirmation%20e-mail","S":-1,"TS":[2,11.9829,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYB","EN":0},"TI":3677,"AM":0,"x":53.967,"y":2.315,"w":7.121,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYEMO","EN":0},"TI":3678,"AM":0,"x":70.002,"y":2.31,"w":7.349,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYEYR","EN":0},"TI":3679,"AM":0,"x":80.4,"y":2.284,"w":5.013,"h":0.833,"MV":"yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":3680,"AM":0,"x":87.589,"y":3.812,"w":12.445,"h":0.833,"TU":"Line 4. Estimate of total tax liability for 2013."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3681,"AM":1024,"x":0.353,"y":4.587,"w":46.253,"h":0.833,"TU":"1 Your name(s) (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":3682,"AM":0,"x":87.589,"y":4.583,"w":12.509,"h":0.833,"TU":"Line 5. Total 2013 payments."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":3683,"AM":1024,"x":0.441,"y":6.01,"w":46.102,"h":0.833,"TU":"Address (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DUE","EN":0},"TI":3684,"AM":1024,"x":87.613,"y":6.079,"w":12.468,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY","EN":0},"TI":3685,"AM":0,"x":87.636,"y":6.831,"w":12.363,"h":0.833,"TU":"Line 7. Amount you are paying (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":3686,"AM":1024,"x":0.668,"y":7.475,"w":28.145,"h":0.833,"TU":"City, town or post office"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":3687,"AM":1024,"x":29.267,"y":7.503,"w":6.689,"h":0.833,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":3688,"AM":1024,"x":36.486,"y":7.475,"w":10.284,"h":0.833,"TU":"ZIP Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":3690,"AM":1024,"x":0.656,"y":8.971,"w":27.691,"h":0.833,"TU":"Foreign country name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":3691,"AM":1024,"x":29.191,"y":8.948,"w":6.689,"h":0.833,"TU":"Province"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":3692,"AM":1024,"x":36.626,"y":8.994,"w":10.511,"h":0.833,"TU":"Postal Code"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"YSSN","EN":0},"TI":3693,"AM":1024,"x":0.895,"y":10.592,"w":22.459,"h":0.833,"TU":"2 Your social security number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":3694,"AM":1024,"x":24.35,"y":10.521,"w":22.735,"h":0.833,"TU":"Spouse's social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":3696,"AM":0,"x":76.497,"y":15.014,"w":23.459,"h":0.833,"TU":"E-Mail address (for confirmation e-mail)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL2","EN":0},"TI":3697,"AM":0,"x":76.539,"y":15.822,"w":23.307,"h":0.833,"TU":"Re-enter e-mail address (must match)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":3699,"AM":0,"x":58.825,"y":28.328,"w":22.428,"h":0.833,"TU":"Routing number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":3700,"AM":0,"x":58.8,"y":29.14,"w":22.626,"h":0.833,"TU":"Account number.","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBITDT","EN":0},"TI":3704,"AM":0,"x":64.187,"y":30.72,"w":12.857,"h":0.833,"TU":"Date to make withdrawal.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":3705,"AM":0,"x":71.623,"y":31.664,"w":17.058,"h":0.833,"TU":"Daytime phone number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLYAGI","EN":0},"TI":3706,"AM":0,"x":71.587,"y":44.712,"w":12.478,"h":0.833,"TU":"(1) Taxpayer. Prior Year Adjusted Gross Income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SLYAGI","EN":0},"TI":3707,"AM":0,"x":86.025,"y":44.712,"w":12.478,"h":0.833,"TU":"(1) Spouse Prior Year Adjusted Gross Income."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TEFPIN","EN":0},"TI":3708,"AM":0,"x":71.512,"y":46.303,"w":12.478,"h":0.833,"TU":"(3) Taxpayer Electronic Filing PIN.","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEFPIN","EN":0},"TI":3709,"AM":0,"x":86.025,"y":46.275,"w":12.478,"h":0.833,"TU":"(3) Spouse Electronic Filing PIN.","MV":"99999"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OUTCB","EN":0},"TI":3689,"AM":0,"x":93.072,"y":8.164,"w":2.715,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NRNOWGX","EN":0},"TI":3695,"AM":0,"x":93.077,"y":10.383,"w":2.715,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISCLOSE","EN":0},"TI":3698,"AM":0,"x":59.561,"y":17.68,"w":2.448,"h":0.89}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TACK","EN":0},"TI":3701,"AM":0,"x":59.942,"y":29.832,"w":1.934,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TASV","EN":0},"TI":3702,"AM":0,"x":70.573,"y":29.793,"w":1.655,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TANA","EN":0},"TI":3703,"AM":0,"x":80.895,"y":29.801,"w":1.655,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}}]},{"Height":49.5,"HLines":[],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":71.231,"y":4.584,"w":12.458,"h":0.03,"clr":0},{"x":85.668,"y":4.584,"w":12.458,"h":0.03,"clr":0},{"x":71.231,"y":6.084,"w":12.458,"h":0.03,"clr":0},{"x":85.668,"y":6.084,"w":12.458,"h":0.03,"clr":0},{"x":71.231,"y":6.834,"w":12.458,"h":0.03,"clr":0},{"x":36.672,"y":0.763,"w":0.082,"h":13.559,"clr":0}],"Texts":[{"x":37.29,"y":3.71,"w":18.619999999999997,"clr":0,"A":"left","R":[{"T":"(Your%20PIN(s)%20cannot%20be%2012345%20or%2000000)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":66.897,"y":3.71,"w":3.9539999999999997,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":37.29,"y":5.21,"w":12.485,"clr":0,"A":"left","R":[{"T":"Date%20of%20Birth%20(mm%2Fdd%2Fyyyy)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":57.368,"y":5.21,"w":13.180000000000003,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":37.29,"y":5.96,"w":12.645,"clr":0,"A":"left","R":[{"T":"Today's%20Date%20(mm%2Fdd%2Fyyyy)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":57.368,"y":5.96,"w":13.180000000000003,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":37.29,"y":7.460000000000001,"w":20.562,"clr":0,"A":"left","R":[{"T":"Electronic%20withdrawal%20disclosure%20statement","S":-1,"TS":[0,11.9829,1,0]}]},{"x":74.415,"y":7.460000000000001,"w":3.246,"clr":0,"A":"left","R":[{"T":"I%20agree","S":-1,"TS":[2,11.9829,0,0]}]},{"x":37.29,"y":8.21,"w":36.69400000000002,"clr":0,"A":"left","R":[{"T":"I%20authorize%20the%20U.S.%20Treasury%20and%20its%20designated%20Financial%20Agent%20to%20intitiate%20an%20ACH%20Electronic%20Funds%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.29,"y":8.96,"w":39.61100000000002,"clr":0,"A":"left","R":[{"T":"Withdrawal%20(Direct%20Debit)%20entry%20to%20the%20financial%20institution%20account%20indicated%20for%20payment%20of%20my%20federal%20taxes%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.29,"y":9.71,"w":38.87000000000001,"clr":0,"A":"left","R":[{"T":"owed%20on%20this%20return%20and%20the%20financial%20institution%20to%20debit%20the%20entry%20to%20this%20account.%20%20This%20authorization%20is%20to%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.29,"y":10.46,"w":39.559,"clr":0,"A":"left","R":[{"T":"remain%20in%20full%20force%20and%20effect%20until%20I%20notify%20the%20U.S.%20Treasure%20Financial%20Agent%20to%20terminate%20the%20authorization.%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.29,"y":11.209,"w":38.38700000000002,"clr":0,"A":"left","R":[{"T":"To%20revoke%20a%20payment%2C%20I%20must%20contact%20the%20U.S.%20Treasury%20Financial%20Agent%20at%201-888-353-4537%20no%20later%20than%202%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.29,"y":11.959,"w":40.247,"clr":0,"A":"left","R":[{"T":"business%20days%20prior%20to%20the%20payment%20(settlement)%20date.%20%20I%20also%20authorize%20the%20financial%20institutions%20involved%20in%20the","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.29,"y":12.709,"w":36.95700000000001,"clr":0,"A":"left","R":[{"T":"processing%20of%20the%20electronic%20payment%20of%20taxes%20to%20receive%20confidential%20information%20necessary%20to%20answer%20","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.29,"y":13.459,"w":18.791000000000007,"clr":0,"A":"left","R":[{"T":"inquiries%20and%20resolve%20issues%20related%20to%20the%20payment.","S":-1,"TS":[0,11.9829,0,0]}]},{"x":37.557,"y":1.221,"w":10.390000000000004,"clr":0,"A":"left","R":[{"T":"Signature%20information","S":-1,"TS":[0,11.9829,1,0]}]},{"x":73.652,"y":1.971,"w":4.391000000000001,"clr":0,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,11.9829,1,0]}]},{"x":89.119,"y":1.971,"w":3.612,"clr":0,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11.9829,1,0]}]},{"x":37.557,"y":2.72,"w":10.121,"clr":0,"A":"left","R":[{"T":"Select%20any%205-digit%20PIN","S":-1,"TS":[2,11.9829,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPIN","EN":0},"TI":3710,"AM":0,"x":71.228,"y":3.972,"w":12.709,"h":0.833,"TU":"Taxpayer 5 digit PIN.","MV":"99999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPIN","EN":0},"TI":3711,"AM":0,"x":85.602,"y":4.003,"w":12.633,"h":0.833,"TU":"Spouse 5 digit PIN.","MV":"99999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TDOB","EN":0},"TI":3712,"AM":0,"x":71.259,"y":5.295,"w":12.705,"h":0.833,"TU":"Taxpayer Date of Birth (mm/dd/yyyy)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SDOB","EN":0},"TI":3713,"AM":0,"x":85.774,"y":5.358,"w":12.332,"h":0.833,"TU":"Spouse Date of Birth (mm/dd/yyyy)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TCURDATE","EN":0},"TI":3714,"AM":0,"x":71.422,"y":6.14,"w":12.577,"h":0.833,"TU":"Today's Date (mm/dd/yyyy)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCANLINE","EN":0},"TI":3716,"AM":1024,"x":5.097,"y":13.572,"w":25.407,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFWYES","EN":0},"TI":3715,"AM":0,"x":72.74,"y":7.668,"w":1.484,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4952.content.txt b/test/data/fd/form/F4952.content.txt new file mode 100755 index 00000000..029a8985 --- /dev/null +++ b/test/data/fd/form/F4952.content.txt @@ -0,0 +1,102 @@ +Form +4952 +Department of the Treasury +Internal Revenue Service + (99) +Investment Interest Expense Deduction +a +a + Attach to your tax return. +OMB No. 1545-0191 +20 +13 +Attachment +Sequence No. +51 +Name(s) shown on return +Identifying number +Part I +Total Investment Interest Expense +1 +Investment interest expense paid or accrued in 2013 (see instructions) +........ +1 +2 +Disallowed investment interest expense from 2012 Form 4952, line 7 +......... +2 +3 Total investment interest expense. +Add lines 1 and 2 +.............. +3 +Part II +Net Investment Income +4 + +a + +Gross income from property held for investment (excluding any net +gain from the disposition of property held for investment) . . . +4a +b +Qualified dividends included on line 4a +......... +4b +c +Subtract line 4b from line 4a +...................... +4c +d +Net gain from the disposition of property held for investment . . +4d +e + +Enter the +smaller + of line 4d or your net capital gain from the + +disposition of property held for investment (see instructions) . +4e +f +Subtract line 4e from line 4d +...................... +4f +g + +Enter the amount from lines 4b and 4e that you elect to include in investment income (see +instructions) +............................ +4g +h +Investment income. Add lines 4c, 4f, and 4g +................. +4h +5 +Investment expenses (see instructions) +................... +5 +6 +Net investment income. +Subtract line 5 from line 4h. If zero or less, enter -0- +...... +6 +Part III +Investment Interest Expense Deduction +7 + +Disallowed investment interest expense to be carried forward to 2014. Subtract line 6 from +line 3. If zero or less, enter -0- +...................... +7 +8 Investment interest expense deduction. +Enter the +smaller +of line 3 or 6. See instructions . . +8 +For Paperwork Reduction Act Notice, see page 4. +Cat. No. 13177Y +Form +4952 +(2013) + Information about Form 4952 and its instructions is at www.irs.gov/form4952. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4952.fields.json b/test/data/fd/form/F4952.fields.json new file mode 100755 index 00000000..02ebda9f --- /dev/null +++ b/test/data/fd/form/F4952.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4A","type":"number","calc":false,"value":""},{"id":"QDIVS","type":"number","calc":false,"value":""},{"id":"L4CTOT","type":"number","calc":true,"value":""},{"id":"L4B","type":"number","calc":false,"value":""},{"id":"L4C","type":"number","calc":false,"value":""},{"id":"L4D","type":"number","calc":true,"value":""},{"id":"L4E","type":"number","calc":false,"value":""},{"id":"L4F","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4952.json b/test/data/fd/form/F4952.json new file mode 100755 index 00000000..fd07eb1d --- /dev/null +++ b/test/data/fd/form/F4952.json @@ -0,0 +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":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":10.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":59.359,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":13.501,"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.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":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":79.159,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":17.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"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":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":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.751,"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":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":6.147,"y":25.501,"w":1.5,"l":37.211},{"oc":"#221f1f","x":43.272,"y":25.501,"w":1.5,"l":43.399},{"oc":"#221f1f","x":86.584,"y":25.501,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"oc":"#221f1f","x":21.04,"y":4.109,"w":1.5,"l":1.173},{"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":79.202,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":11.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":12.735,"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.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":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":75.49,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":14.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":15.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":15.735,"w":0.75,"l":1.539},{"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.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":1.531},{"oc":"#221f1f","x":79.202,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.985,"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.789},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"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":82.915,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":1.531},{"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":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}],"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":10.869,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":12.001,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":15.001,"w":3.713,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":22.119,"w":6.188,"h":0.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":"4952%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#181616","x":5.94,"y":3.7640000000000002,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#181616","x":5.94,"y":4.258,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#181616","x":18.085,"y":4.258,"w":2.186,"clr":-1,"A":"left","R":[{"T":"%20(99)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.979,"y":2.418,"w":19.005000000000006,"clr":-1,"A":"left","R":[{"T":"Investment%20Interest%20Expense%20Deduction%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":26.342,"y":3.285,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":43.425,"y":4.035,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":4.129,"w":12.224,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0191%20","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":86.308,"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.308,"y":4.26,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.286,"y":4.26,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"51%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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":79.64,"y":4.938,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.908,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.221,"y":6.947,"w":16.505000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20Investment%20Interest%20Expense%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":31.563000000000006,"clr":-1,"A":"left","R":[{"T":"Investment%20interest%20expense%20paid%20or%20accrued%20in%202013%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":8.09,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":30.84200000000001,"clr":-1,"A":"left","R":[{"T":"Disallowed%20investment%20interest%20expense%20from%202012%20Form%204952%2C%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":8.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":16.672000000000008,"clr":-1,"A":"left","R":[{"T":"Total%20investment%20interest%20expense.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.776,"y":9.59,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":9.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":10.691,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.221,"y":10.697,"w":11.225000000000003,"clr":-1,"A":"left","R":[{"T":"Net%20Investment%20Income%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":11.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.903,"w":30.136000000000006,"clr":-1,"A":"left","R":[{"T":"Gross%20income%20from%20property%20held%20for%20investment%20(excluding%20any%20net%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":12.59,"w":25.634999999999998,"clr":-1,"A":"left","R":[{"T":"gain%20from%20the%20disposition%20of%20property%20held%20for%20investment)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.313,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.375,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.437,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":13.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":13.34,"w":17.505000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified%20dividends%20included%20on%20line%204a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":13.34,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":13.34,"w":1.445,"clr":-1,"A":"left","R":[{"T":"4b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":14.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.09,"w":12.874000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204b%20from%20line%204a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":14.09,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":14.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":27.505999999999993,"clr":-1,"A":"left","R":[{"T":"Net%20gain%20from%20the%20disposition%20of%20property%20held%20for%20investment%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.07,"y":14.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":14.84,"w":1.445,"clr":-1,"A":"left","R":[{"T":"4d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":15.652999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.652999999999999,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.963,"y":15.652999999999999,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.811,"y":15.652999999999999,"w":18.930000000000007,"clr":-1,"A":"left","R":[{"T":"%20of%20line%204d%20or%20your%20net%20capital%20gain%20from%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":16.34,"w":27.579000000000004,"clr":-1,"A":"left","R":[{"T":"disposition%20of%20property%20held%20for%20investment%20(see%20instructions)%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.445,"y":16.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4e%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":17.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":12.874000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204e%20from%20line%204d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":17.09,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.121,"y":17.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4f%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":17.903,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.903,"w":40.291999999999994,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20lines%204b%20and%204e%20that%20you%20elect%20to%20include%20in%20investment%20income%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":18.59,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":18.59,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.906,"y":18.59,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":19.34,"w":0.889,"clr":-1,"A":"left","R":[{"T":"h%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":19.897,"clr":-1,"A":"left","R":[{"T":"Investment%20income.%20Add%20lines%204c%2C%204f%2C%20and%204g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":19.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.92,"y":19.34,"w":1.445,"clr":-1,"A":"left","R":[{"T":"4h%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":17.596000000000004,"clr":-1,"A":"left","R":[{"T":"Investment%20expenses%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":20.09,"w":25.32699999999999,"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":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.746,"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.778,"w":11.554,"clr":-1,"A":"left","R":[{"T":"Net%20investment%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.497,"y":20.778,"w":23.281,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204h.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":20.778,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":20.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":21.941,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.221,"y":21.947,"w":19.005000000000006,"clr":-1,"A":"left","R":[{"T":"Investment%20Interest%20Expense%20Deduction%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.153,"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.153,"w":43.38399999999999,"clr":-1,"A":"left","R":[{"T":"Disallowed%20investment%20interest%20expense%20to%20be%20carried%20forward%20to%202014.%20Subtract%20line%206%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":23.84,"w":13.630000000000004,"clr":-1,"A":"left","R":[{"T":"line%203.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.753,"y":23.84,"w":29.325999999999986,"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":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":24.528,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.528,"w":19.061000000000007,"clr":-1,"A":"left","R":[{"T":"Investment%20interest%20expense%20deduction.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":37.329,"y":24.528,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.318,"y":24.528,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.64,"y":24.528,"w":13.836000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%203%20or%206.%20See%20instructions%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.675,"y":24.528,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":24.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":25.358,"w":23.618000000000006,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%204.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.263,"y":25.376,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013177Y%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.01,"y":25.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":25.322,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"4952%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.453,"y":25.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.373,"y":3.3789999999999996,"w":37.00999999999998,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%204952%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform4952.","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3717,"AM":1024,"x":6.229,"y":5.768,"w":72.848,"h":0.959,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3718,"AM":1024,"x":79.344,"y":5.768,"w":19.635,"h":0.959,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":3719,"AM":0,"x":83.08,"y":8.288,"w":12.189,"h":0.833,"TU":"Line 1. Investment interest expense paid or accrued in 2013 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":3720,"AM":0,"x":83.016,"y":9.038,"w":12.189,"h":0.833,"TU":"Line 2. Disallowed investment interest expense from 2012 Form 4952, line 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":3721,"AM":1024,"x":83.016,"y":9.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4A","EN":0},"TI":3722,"AM":0,"x":63.298,"y":12.733,"w":12.024,"h":0.833,"TU":"Line 4a. Gross income from property held for investment (excluding any net gain from disposition of property held for investment)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QDIVS","EN":0},"TI":3723,"AM":0,"x":63.216,"y":13.538,"w":12.189,"h":0.833,"TU":"Line 4b. Qualified dividends included on line 4a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4CTOT","EN":0},"TI":3724,"AM":1024,"x":83.16,"y":14.213,"w":11.901,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4B","EN":0},"TI":3725,"AM":0,"x":63.236,"y":15.008,"w":12.148,"h":0.833,"TU":"Line 4d. Net gain from the disposition of property held for investment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C","EN":0},"TI":3726,"AM":0,"x":63.298,"y":16.442,"w":12.024,"h":0.833,"TU":"Line 4e. Enter the smaller of line 4d or your net capital gain from the dispostion of property held for investment (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4D","EN":0},"TI":3727,"AM":1024,"x":83.16,"y":17.129,"w":11.901,"h":0.856},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4E","EN":0},"TI":3728,"AM":0,"x":83.098,"y":18.817,"w":12.024,"h":0.833,"TU":"Line 4g. Enter the amount from lines 4b and 4e that you elect to include in investment income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4F","EN":0},"TI":3729,"AM":1024,"x":83.016,"y":19.538,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":3730,"AM":0,"x":83.016,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 5. Investment expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":3731,"AM":1024,"x":83.016,"y":21.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":3732,"AM":1024,"x":83.098,"y":23.942,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":3733,"AM":1024,"x":83.016,"y":24.788,"w":12.189,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4972S.content.txt b/test/data/fd/form/F4972S.content.txt new file mode 100755 index 00000000..fa065090 --- /dev/null +++ b/test/data/fd/form/F4972S.content.txt @@ -0,0 +1,220 @@ +Form +4972 +Department of the Treasury +Internal Revenue Service (99) +Tax on Lump-Sum Distributions +(From Qualified Plans of Participants Born Before January 2, 1936) +a + +Information about Form 4972 and its instructions is available at +www.irs.gov/form4972. +a + +Attach to Form 1040, Form 1040NR, or Form 1041. +OMB No. 1545-0193 +20 +13 +Attachment +Sequence No. +28 +Name of recipient of distribution +Identifying number +Part I +Complete this part to see if you can use Form 4972 +1 + + +Was this a distribution of a plan participant’s entire balance (excluding deductible voluntary employee +contributions and certain forfeited amounts) from all of an employer’s qualified plans of one kind (pension, +profit-sharing, or stock bonus)? If “No,” +do not + use this form +................ +Yes +No +1 +2 +Did you roll over any part of the distribution? If “Yes,” +do not +use this form +........... +2 +3 +Was this distribution paid to you as a beneficiary of a plan participant who was born before January 2, 1936? +3 +4 + +Were you +(a) + a plan participant who received this distribution, +(b) + born before January 2, 1936, +and (c) + a +participant in the plan for at least 5 years before the year of the distribution? +.......... +4 +If you answered “No” to both questions 3 +and +4, +do not + use this form. +5 + +a + +Did you use Form 4972 after 1986 for a previous distribution from your own plan? If “Yes,” +do not + use this +form for a 2013 distribution from your own plan +.................... +5a +b + + +If you are receiving this distribution as a beneficiary of a plan participant who died, did you use Form 4972 +for a previous distribution received for that participant after 1986? If “Yes,” +do not + use the form for this +distribution +................................ +5b +Part II +Complete this part to choose the 20% capital gain election +(see instructions) +6 +Capital gain part from Form 1099-R, box 3 +................... +6 +7 +Multiply line 6 by 20% (.20) +....................... +a +7 +If you also choose to use Part III, go to line 8. Otherwise, include the amount from line 7 in the total on +Form 1040, line 44, Form 1040NR, line 42, or Form 1041, Schedule G, line 1b, whichever applies. +Part III +Complete this part to choose the 10-year tax option +(see instructions) +8 + +Enter the amount from Form 1099-R, box 2a minus box 3. If you did not complete Part II, enter the +amount from box 2a. Multiple recipients (and recipients who elect to include NUA in taxable +income) see instructions +......................... +8 +9 +Death benefit exclusion for a beneficiary of a plan participant who died before August 21, 1996 . +9 +10 +Total taxable amount. Subtract line 9 from line 8 +................. +10 +11 +Current actuarial value of annuity from Form 1099-R, box 8. If none, enter -0- +....... +11 +12 + +Adjusted total taxable amount. Add lines 10 and 11. If this amount is $70,000 or more, +skip + lines +13 through 16, enter this amount on line 17, and go to line 18 +............ +12 +13 +Multiply line 12 by 50% (.50), but +do not +enter more than $10,000 . . +13 +14 + +Subtract $20,000 from line 12. If line 12 is +$20,000 or less, enter -0- +...... +14 +15 +Multiply line 14 by 20% (.20) +.............. +15 +16 +Minimum distribution allowance. Subtract line 15 from line 13 +............ +16 +17 +Subtract line 16 from line 12 +....................... +17 +18 +Federal estate tax attributable to lump-sum distribution +.............. +18 +19 +Subtract line 18 from line 17. If line 11 is zero, +skip + lines 20 through 22 and go to line 23 . . . +19 +20 + +Divide line 11 by line 12 and enter the result as a decimal (rounded to at +least three places) +.................. +20 +. +21 +Multiply line 16 by the decimal on line 20 +.......... +21 +22 +Subtract line 21 from line 11 +.............. +22 +23 +Multiply line 19 by 10% (.10) +....................... +23 +24 +Tax on amount on line 23. Use the Tax Rate Schedule in the instructions +......... +24 +25 + +Multiply line 24 by ten (10). If line 11 is zero, +skip + lines 26 through 28, enter this amount on +line 29, and go to line 30 +........................ +25 +26 +Multiply line 22 by 10% (.10) +.............. +26 +27 + +Tax on amount on line 26. Use the Tax Rate Schedule in the +instructions +.................... +27 +28 +Multiply line 27 by ten (10) +........................ +28 +29 +Subtract line 28 from line 25. Multiple recipients see instructions +.......... +a +29 +30 + +Tax on lump-sum distribution. +Add lines 7 and 29. Also include this amount in the total on Form + +1040, line 44, Form 1040NR, line 42, or Form 1041, Schedule G, line 1b, whichever applies . . +a +30 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 13187U +Form +4972 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4972S.fields.json b/test/data/fd/form/F4972S.fields.json new file mode 100755 index 00000000..9a9fda30 --- /dev/null +++ b/test/data/fd/form/F4972S.fields.json @@ -0,0 +1 @@ +[{"id":"L1RB","type":"radio","calc":false,"value":"L1Y"},{"id":"L1RB","type":"radio","calc":false,"value":"L1N"},{"id":"A9RB","type":"radio","calc":false,"value":"L2Y"},{"id":"A9RB","type":"radio","calc":false,"value":"L2N"},{"id":"A7RB","type":"radio","calc":false,"value":"L3Y"},{"id":"A7RB","type":"radio","calc":false,"value":"L3N"},{"id":"A5RB","type":"radio","calc":false,"value":"L4Y"},{"id":"A5RB","type":"radio","calc":false,"value":"L4N"},{"id":"A3RB","type":"radio","calc":false,"value":"L5AY"},{"id":"A3RB","type":"radio","calc":false,"value":"L5AN"},{"id":"A1RB","type":"radio","calc":false,"value":"L5BY"},{"id":"A1RB","type":"radio","calc":false,"value":"L5BN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"mask","calc":true,"value":""},{"id":"L21","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"TEXT","type":"alpha","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4972S.json b/test/data/fd/form/F4972S.json new file mode 100755 index 00000000..c9b4ae55 --- /dev/null +++ b/test/data/fd/form/F4972S.json @@ -0,0 +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":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":87.822,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":17.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":18.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":19.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":21.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":21.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.751,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"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":80.397,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":30.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":40.501,"w":0.75,"l":3.798},{"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":80.397,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":42.001,"w":0.75,"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":80.397,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":43.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":43.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":43.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":45.001,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":45.001,"w":1.5,"l":11.223},{"oc":"#bfbfbf","x":-1.236,"y":49.5,"w":1.5,"l":2.473}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"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":2.281},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":87.865,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"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":87.865,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"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":91.577,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":91.577,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":21.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":1.531},{"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":61.877,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":3.031},{"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":58.165,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":80.44,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":35.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":35.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":35.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":39.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":39.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":39.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":65.59,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":40.485,"w":0.75,"l":1.531},{"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":80.44,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":42.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":42.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.235,"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":87.865,"y":12.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":91.577,"y":12.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":95.29,"y":12.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":17.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":19.501,"w":18.562,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":21.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":27.751,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":28.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":33.751,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":39.751,"w":3.712,"h":2.25,"clr":-1},{"oc":"#221f1f","x":-1.247,"y":49.046,"w":2.495,"h":0.907,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"4972","S":-1,"TS":[0,27,0,0]}]},{"oc":"#181616","x":5.94,"y":3.713,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#181616","x":5.94,"y":4.244,"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.623,"y":2.101,"w":14.2,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20Lump-Sum%20Distributions%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":29.128,"y":2.837,"w":30.020000000000003,"clr":-1,"A":"left","R":[{"T":"(From%20Qualified%20Plans%20of%20Participants%20Born%20Before%20January%202%2C%201936)","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":25.258,"y":3.436,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":26.629,"y":3.5300000000000002,"w":29.60300000000001,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%204972%20and%20its%20instructions%20is%20available%20at%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":65.298,"y":3.5300000000000002,"w":10.812999999999999,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform4972.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":35.288,"y":4.108,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.702,"y":4.202,"w":23.783,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20or%20Form%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-0193","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":86.48,"y":3.814,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.48,"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":94.458,"y":4.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.978,"w":14.354,"clr":-1,"A":"left","R":[{"T":"Name%20of%20recipient%20of%20distribution","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.393,"y":6.572,"w":24.203000000000003,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20to%20see%20if%20you%20can%20use%20Form%204972","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":7.465,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.465,"w":45.582999999999984,"clr":-1,"A":"left","R":[{"T":"Was%20this%20a%20distribution%20of%20a%20plan%20participant%E2%80%99s%20entire%20balance%20(excluding%20deductible%20voluntary%20employee%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":8.152,"w":47.49199999999996,"clr":-1,"A":"left","R":[{"T":"contributions%20and%20certain%20forfeited%20amounts)%20from%20all%20of%20an%20employer%E2%80%99s%20qualified%20plans%20of%20one%20kind%20(pension%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":8.84,"w":17.873,"clr":-1,"A":"left","R":[{"T":"profit-sharing%2C%20or%20stock%20bonus)%3F%20If%20%E2%80%9CNo%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.546,"y":8.84,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.273,"y":8.84,"w":6.353999999999999,"clr":-1,"A":"left","R":[{"T":"%20use%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.387,"y":8.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.808,"y":7.34,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.85,"y":7.34,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":24.078,"clr":-1,"A":"left","R":[{"T":"Did%20you%20roll%20over%20any%20part%20of%20the%20distribution%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.135,"y":9.59,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.293,"y":9.59,"w":6.0760000000000005,"clr":-1,"A":"left","R":[{"T":"use%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":9.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":48.86099999999994,"clr":-1,"A":"left","R":[{"T":"Was%20this%20distribution%20paid%20to%20you%20as%20a%20beneficiary%20of%20a%20plan%20participant%20who%20was%20born%20before%20January%202%2C%201936%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":4.519,"clr":-1,"A":"left","R":[{"T":"Were%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.298,"y":11.153,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.31,"y":11.153,"w":21.98500000000001,"clr":-1,"A":"left","R":[{"T":"%20a%20plan%20participant%20who%20received%20this%20distribution%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.777,"y":11.153,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.847,"y":11.153,"w":13.468000000000007,"clr":-1,"A":"left","R":[{"T":"%20born%20before%20January%202%2C%201936%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.724,"y":11.153,"w":3.222,"clr":-1,"A":"left","R":[{"T":"and%20(c)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.126,"y":11.153,"w":1.093,"clr":-1,"A":"left","R":[{"T":"%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":11.84,"w":34.450999999999986,"clr":-1,"A":"left","R":[{"T":"participant%20in%20the%20plan%20for%20at%20least%205%20years%20before%20the%20year%20of%20the%20distribution%3F%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.762,"y":11.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":18.744,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CNo%E2%80%9D%20to%20both%20questions%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.884,"y":12.59,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":12.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.785,"y":12.59,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.512,"y":12.59,"w":6.353999999999999,"clr":-1,"A":"left","R":[{"T":"%20use%20this%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":13.403,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.403,"w":40.565000000000005,"clr":-1,"A":"left","R":[{"T":"Did%20you%20use%20Form%204972%20after%201986%20for%20a%20previous%20distribution%20from%20your%20own%20plan%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.532,"y":13.403,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.482,"y":13.403,"w":4.02,"clr":-1,"A":"left","R":[{"T":"%20use%20this%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":14.09,"w":21.337999999999997,"clr":-1,"A":"left","R":[{"T":"form%20for%20a%202013%20distribution%20from%20your%20own%20plan%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.131,"y":14.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.597,"y":14.09,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"5a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.965,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.902,"w":47.58299999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20receiving%20this%20distribution%20as%20a%20beneficiary%20of%20a%20plan%20participant%20who%20died%2C%20did%20you%20use%20Form%204972%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":15.64,"w":33.82,"clr":-1,"A":"left","R":[{"T":"for%20a%20previous%20distribution%20received%20for%20that%20participant%20after%201986%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.627,"y":15.64,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.341,"y":15.64,"w":9.243,"clr":-1,"A":"left","R":[{"T":"%20use%20the%20form%20for%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":16.327,"w":5.279,"clr":-1,"A":"left","R":[{"T":"distribution%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":16.327,"w":42.65599999999997,"clr":-1,"A":"left","R":[{"T":"................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.568,"y":16.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5b","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":17.072,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.221,"y":17.072,"w":28.47600000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20to%20choose%20the%2020%25%20capital%20gain%20election%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.163,"y":17.072,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":17.84,"w":19.246000000000002,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20part%20from%20Form%201099-R%2C%20box%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.002,"y":17.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.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":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%2020%25%20(.20)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":18.59,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.749,"y":18.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.616,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.349,"w":45.713999999999956,"clr":-1,"A":"left","R":[{"T":"If%20you%20also%20choose%20to%20use%20Part%20III%2C%20go%20to%20line%208.%20Otherwise%2C%20include%20the%20amount%20from%20line%207%20in%20the%20total%20on%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.878,"y":20.049,"w":43.32899999999999,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2044%2C%20Form%201040NR%2C%20line%2042%2C%20or%20Form%201041%2C%20Schedule%20G%2C%20line%201b%2C%20whichever%20applies.","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.331,"y":20.822,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.221,"y":20.822,"w":24.851000000000006,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20to%20choose%20the%2010-year%20tax%20option%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":57.933,"y":20.822,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":21.734,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":21.716,"w":43.903999999999975,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201099-R%2C%20box%202a%20minus%20box%203.%20If%20you%20did%20not%20complete%20Part%20II%2C%20enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.403,"w":40.858999999999995,"clr":-1,"A":"left","R":[{"T":"amount%20from%20box%202a.%20Multiple%20recipients%20(and%20recipients%20who%20elect%20to%20include%20NUA%20in%20taxable","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":23.09,"w":10.854,"clr":-1,"A":"left","R":[{"T":"income)%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.618,"y":23.09,"w":33.32499999999998,"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":"8%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":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":42.52599999999996,"clr":-1,"A":"left","R":[{"T":"Death%20benefit%20exclusion%20for%20a%20beneficiary%20of%20a%20plan%20participant%20who%20died%20before%20August%2021%2C%201996%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.13,"y":23.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":23.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":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":21.728000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20taxable%20amount.%20Subtract%20line%209%20from%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":24.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.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":25.34,"w":34.657000000000004,"clr":-1,"A":"left","R":[{"T":"Current%20actuarial%20value%20of%20annuity%20from%20Form%201099-R%2C%20box%208.%20If%20none%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":25.34,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":25.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":26.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.153,"w":38.71899999999999,"clr":-1,"A":"left","R":[{"T":"Adjusted%20total%20taxable%20amount.%20Add%20lines%2010%20and%2011.%20If%20this%20amount%20is%20%2470%2C000%20or%20more%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.219,"y":26.153,"w":1.9800000000000002,"clr":-1,"A":"left","R":[{"T":"skip","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.371,"y":26.153,"w":2.315,"clr":-1,"A":"left","R":[{"T":"%20lines","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":27.549000000000003,"clr":-1,"A":"left","R":[{"T":"13%20through%2016%2C%20enter%20this%20amount%20on%20line%2017%2C%20and%20go%20to%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":26.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":26.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":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":14.951000000000008,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2012%20by%2050%25%20(.50)%2C%20but%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.017,"y":27.59,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.174,"y":27.59,"w":11.265000000000002,"clr":-1,"A":"left","R":[{"T":"enter%20more%20than%20%2410%2C000%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":27.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.564,"y":27.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":27.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":28.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.403,"w":18.858999999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20%2420%2C000%20from%20line%2012.%20If%20line%2012%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":29.09,"w":11.56,"clr":-1,"A":"left","R":[{"T":"%2420%2C000%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.685,"y":29.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.061,"y":29.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":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2014%20by%2020%25%20(.20)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":29.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":27.582000000000004,"clr":-1,"A":"left","R":[{"T":"Minimum%20distribution%20allowance.%20Subtract%20line%2015%20from%20line%2013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":30.59,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2016%20from%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":31.340000000000003,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%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":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":24.87700000000001,"clr":-1,"A":"left","R":[{"T":"Federal%20estate%20tax%20attributable%20to%20lump-sum%20distribution%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":32.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%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":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":20.652000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017.%20If%20line%2011%20is%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.836,"y":32.84,"w":1.9800000000000002,"clr":-1,"A":"left","R":[{"T":"skip","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.898,"y":32.84,"w":16.877000000000002,"clr":-1,"A":"left","R":[{"T":"%20lines%2020%20through%2022%20and%20go%20to%20line%2023%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.127,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.653,"w":32.269000000000005,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2011%20by%20line%2012%20and%20enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":34.34,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"least%20three%20places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.511,"y":34.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.212,"y":34.287,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":18.433000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2016%20by%20the%20decimal%20on%20line%2020%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":35.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%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":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021%20from%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":35.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2019%20by%2010%25%20(.10)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":36.59,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":32.52700000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20amount%20on%20line%2023.%20Use%20the%20Tax%20Rate%20Schedule%20in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":37.34,"w":11.997,"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":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.153,"w":21.595000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2024%20by%20ten%20(10).%20If%20line%2011%20is%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.294,"y":38.153,"w":2.128,"clr":-1,"A":"left","R":[{"T":"skip","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.586,"y":38.153,"w":20.488000000000003,"clr":-1,"A":"left","R":[{"T":"%20lines%2026%20through%2028%2C%20enter%20this%20amount%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.84,"w":11.523000000000005,"clr":-1,"A":"left","R":[{"T":"line%20%2029%2C%20and%20go%20to%20line%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.691,"y":38.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2022%20by%2010%25%20(.10)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":39.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":40.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.403,"w":27.063000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20amount%20on%20line%2026.%20Use%20the%20Tax%20Rate%20Schedule%20in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":41.09,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.384,"y":41.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":11.949000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2027%20by%20ten%20(10)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":41.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%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":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":28.896000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2025.%20Multiple%20recipients%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":42.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.749,"y":42.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","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":10.89,"y":43.34,"w":14.828000000000005,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20lump-sum%20distribution.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.95,"y":43.34,"w":28.881000000000014,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%2029.%20Also%20include%20this%20amount%20in%20the%20total%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":44.038,"w":40.995,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2044%2C%20Form%201040NR%2C%20line%2042%2C%20or%20Form%201041%2C%20Schedule%20G%2C%20line%201b%2C%20whichever%20applies%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.931,"y":44.038,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.749,"y":43.945,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":44.858,"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":60.219,"y":44.876,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013187U","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":44.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4972","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":44.822,"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":3734,"AM":1024,"x":6.105,"y":5.87,"w":72.847,"h":0.858,"TU":"Name of recipient of distribution"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3735,"AM":1024,"x":79.344,"y":5.869,"w":19.635,"h":0.858,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":3748,"AM":0,"x":84.253,"y":18.038,"w":10.952,"h":0.833,"TU":"Line 6. Capital gain part from Form 1099-R, box 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":3749,"AM":1024,"x":84.253,"y":18.788,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":3750,"AM":0,"x":84.281,"y":23.247,"w":10.896,"h":0.833,"TU":"Line 8. Enter the amount from Form 1099-R, box 2a minus box 3. If you did not complete Part II, enter the amount from box 2a. Multiple recipients (and recipients who elect to include NUA in taxable income) see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":3751,"AM":0,"x":84.253,"y":24.038,"w":10.952,"h":0.833,"TU":"Line 9. Death benefit exclusion for a beneficiary of a plan participant who died before August 21, 1996."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":3752,"AM":1024,"x":84.253,"y":24.795,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":3753,"AM":0,"x":84.253,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 11. Current actuarial value of annuity from Form 1099-R, box 8. If none, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":3754,"AM":1024,"x":84.336,"y":26.951,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":3755,"AM":1024,"x":65.711,"y":27.758,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":3756,"AM":1024,"x":46.911,"y":29.183,"w":11.311,"h":0.833,"TU":"Multiply line 12 by 50% (.50), but do not enter more than $10,000"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":3757,"AM":1024,"x":65.644,"y":29.853,"w":11.12,"h":0.874},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":3758,"AM":1024,"x":84.248,"y":30.726,"w":10.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":3759,"AM":1024,"x":84.253,"y":31.545,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":3760,"AM":0,"x":84.253,"y":32.288,"w":10.952,"h":0.833,"TU":"Line 28. Federal estate tax attributable to lump-sum distribution."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":3761,"AM":1024,"x":84.253,"y":33.045,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":3762,"AM":1024,"x":65.658,"y":34.466,"w":11.182,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":3763,"AM":1024,"x":65.691,"y":35.288,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":3764,"AM":1024,"x":65.691,"y":36.045,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":3765,"AM":1024,"x":84.248,"y":36.617,"w":11.037,"h":0.895},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":3766,"AM":0,"x":84.253,"y":37.538,"w":10.952,"h":0.833,"TU":"Line 24. Tax on amount on line 23. Use the Tax Rate Schedule in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":3767,"AM":1024,"x":84.336,"y":38.998,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":3768,"AM":1024,"x":65.711,"y":39.758,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":3769,"AM":0,"x":65.623,"y":41.221,"w":10.937,"h":0.833,"TU":"Line 27. Tax on amount on line 26. Use the Tax Rate Schedule in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":3770,"AM":1024,"x":84.248,"y":41.936,"w":10.888,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT","EN":0},"TI":3771,"AM":0,"x":61.833,"y":42.577,"w":15.503,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":3772,"AM":0,"x":84.253,"y":42.795,"w":10.877,"h":0.833,"TU":"Line 29. Subtract line 28 from line 25. Multiple recipients see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":3773,"AM":1024,"x":84.336,"y":44.174,"w":10.787,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1Y","EN":0},"TI":3736,"AM":0,"x":92.162,"y":8.641,"w":2.794,"h":0.934,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1N","EN":0},"TI":3737,"AM":0,"x":95.755,"y":8.641,"w":2.869,"h":0.907,"checked":false}],"id":{"Id":"L1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2Y","EN":0},"TI":3738,"AM":0,"x":92.162,"y":9.621,"w":2.869,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2N","EN":0},"TI":3739,"AM":0,"x":95.755,"y":9.621,"w":2.944,"h":0.833,"checked":false}],"id":{"Id":"A9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3Y","EN":0},"TI":3740,"AM":0,"x":92.012,"y":10.465,"w":3.094,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3N","EN":0},"TI":3741,"AM":0,"x":95.68,"y":10.411,"w":3.244,"h":0.833,"checked":false}],"id":{"Id":"A7RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4Y","EN":0},"TI":3742,"AM":0,"x":92.012,"y":11.554,"w":3.094,"h":0.934,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4N","EN":0},"TI":3743,"AM":0,"x":95.755,"y":11.527,"w":3.094,"h":0.907,"checked":false}],"id":{"Id":"A5RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5AY","EN":0},"TI":3744,"AM":0,"x":92.012,"y":13.841,"w":3.094,"h":0.962,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5AN","EN":0},"TI":3745,"AM":0,"x":95.68,"y":13.841,"w":3.094,"h":0.934,"checked":false}],"id":{"Id":"A3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5BY","EN":0},"TI":3746,"AM":0,"x":92.087,"y":16.101,"w":3.094,"h":0.88,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5BN","EN":0},"TI":3747,"AM":0,"x":95.605,"y":16.074,"w":3.094,"h":0.907,"checked":false}],"id":{"Id":"A1RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F4972T.content.txt b/test/data/fd/form/F4972T.content.txt new file mode 100755 index 00000000..fa065090 --- /dev/null +++ b/test/data/fd/form/F4972T.content.txt @@ -0,0 +1,220 @@ +Form +4972 +Department of the Treasury +Internal Revenue Service (99) +Tax on Lump-Sum Distributions +(From Qualified Plans of Participants Born Before January 2, 1936) +a + +Information about Form 4972 and its instructions is available at +www.irs.gov/form4972. +a + +Attach to Form 1040, Form 1040NR, or Form 1041. +OMB No. 1545-0193 +20 +13 +Attachment +Sequence No. +28 +Name of recipient of distribution +Identifying number +Part I +Complete this part to see if you can use Form 4972 +1 + + +Was this a distribution of a plan participant’s entire balance (excluding deductible voluntary employee +contributions and certain forfeited amounts) from all of an employer’s qualified plans of one kind (pension, +profit-sharing, or stock bonus)? If “No,” +do not + use this form +................ +Yes +No +1 +2 +Did you roll over any part of the distribution? If “Yes,” +do not +use this form +........... +2 +3 +Was this distribution paid to you as a beneficiary of a plan participant who was born before January 2, 1936? +3 +4 + +Were you +(a) + a plan participant who received this distribution, +(b) + born before January 2, 1936, +and (c) + a +participant in the plan for at least 5 years before the year of the distribution? +.......... +4 +If you answered “No” to both questions 3 +and +4, +do not + use this form. +5 + +a + +Did you use Form 4972 after 1986 for a previous distribution from your own plan? If “Yes,” +do not + use this +form for a 2013 distribution from your own plan +.................... +5a +b + + +If you are receiving this distribution as a beneficiary of a plan participant who died, did you use Form 4972 +for a previous distribution received for that participant after 1986? If “Yes,” +do not + use the form for this +distribution +................................ +5b +Part II +Complete this part to choose the 20% capital gain election +(see instructions) +6 +Capital gain part from Form 1099-R, box 3 +................... +6 +7 +Multiply line 6 by 20% (.20) +....................... +a +7 +If you also choose to use Part III, go to line 8. Otherwise, include the amount from line 7 in the total on +Form 1040, line 44, Form 1040NR, line 42, or Form 1041, Schedule G, line 1b, whichever applies. +Part III +Complete this part to choose the 10-year tax option +(see instructions) +8 + +Enter the amount from Form 1099-R, box 2a minus box 3. If you did not complete Part II, enter the +amount from box 2a. Multiple recipients (and recipients who elect to include NUA in taxable +income) see instructions +......................... +8 +9 +Death benefit exclusion for a beneficiary of a plan participant who died before August 21, 1996 . +9 +10 +Total taxable amount. Subtract line 9 from line 8 +................. +10 +11 +Current actuarial value of annuity from Form 1099-R, box 8. If none, enter -0- +....... +11 +12 + +Adjusted total taxable amount. Add lines 10 and 11. If this amount is $70,000 or more, +skip + lines +13 through 16, enter this amount on line 17, and go to line 18 +............ +12 +13 +Multiply line 12 by 50% (.50), but +do not +enter more than $10,000 . . +13 +14 + +Subtract $20,000 from line 12. If line 12 is +$20,000 or less, enter -0- +...... +14 +15 +Multiply line 14 by 20% (.20) +.............. +15 +16 +Minimum distribution allowance. Subtract line 15 from line 13 +............ +16 +17 +Subtract line 16 from line 12 +....................... +17 +18 +Federal estate tax attributable to lump-sum distribution +.............. +18 +19 +Subtract line 18 from line 17. If line 11 is zero, +skip + lines 20 through 22 and go to line 23 . . . +19 +20 + +Divide line 11 by line 12 and enter the result as a decimal (rounded to at +least three places) +.................. +20 +. +21 +Multiply line 16 by the decimal on line 20 +.......... +21 +22 +Subtract line 21 from line 11 +.............. +22 +23 +Multiply line 19 by 10% (.10) +....................... +23 +24 +Tax on amount on line 23. Use the Tax Rate Schedule in the instructions +......... +24 +25 + +Multiply line 24 by ten (10). If line 11 is zero, +skip + lines 26 through 28, enter this amount on +line 29, and go to line 30 +........................ +25 +26 +Multiply line 22 by 10% (.10) +.............. +26 +27 + +Tax on amount on line 26. Use the Tax Rate Schedule in the +instructions +.................... +27 +28 +Multiply line 27 by ten (10) +........................ +28 +29 +Subtract line 28 from line 25. Multiple recipients see instructions +.......... +a +29 +30 + +Tax on lump-sum distribution. +Add lines 7 and 29. Also include this amount in the total on Form + +1040, line 44, Form 1040NR, line 42, or Form 1041, Schedule G, line 1b, whichever applies . . +a +30 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 13187U +Form +4972 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F4972T.fields.json b/test/data/fd/form/F4972T.fields.json new file mode 100755 index 00000000..9a9fda30 --- /dev/null +++ b/test/data/fd/form/F4972T.fields.json @@ -0,0 +1 @@ +[{"id":"L1RB","type":"radio","calc":false,"value":"L1Y"},{"id":"L1RB","type":"radio","calc":false,"value":"L1N"},{"id":"A9RB","type":"radio","calc":false,"value":"L2Y"},{"id":"A9RB","type":"radio","calc":false,"value":"L2N"},{"id":"A7RB","type":"radio","calc":false,"value":"L3Y"},{"id":"A7RB","type":"radio","calc":false,"value":"L3N"},{"id":"A5RB","type":"radio","calc":false,"value":"L4Y"},{"id":"A5RB","type":"radio","calc":false,"value":"L4N"},{"id":"A3RB","type":"radio","calc":false,"value":"L5AY"},{"id":"A3RB","type":"radio","calc":false,"value":"L5AN"},{"id":"A1RB","type":"radio","calc":false,"value":"L5BY"},{"id":"A1RB","type":"radio","calc":false,"value":"L5BN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"mask","calc":true,"value":""},{"id":"L21","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"TEXT","type":"alpha","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F4972T.json b/test/data/fd/form/F4972T.json new file mode 100755 index 00000000..8f459b97 --- /dev/null +++ b/test/data/fd/form/F4972T.json @@ -0,0 +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":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":87.822,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.822,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":17.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":18.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":19.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":21.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":21.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.751,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"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":80.397,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":30.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":40.501,"w":0.75,"l":3.798},{"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":80.397,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":42.001,"w":0.75,"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":80.397,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":43.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":43.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":43.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":45.001,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":45.001,"w":1.5,"l":11.223},{"oc":"#bfbfbf","x":-1.236,"y":49.5,"w":1.5,"l":2.473}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"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":2.281},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":87.865,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"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":87.865,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"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":91.577,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.865,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":91.577,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":21.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":1.531},{"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":61.877,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":3.031},{"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":58.165,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":80.44,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":35.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":35.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":35.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":39.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":39.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":39.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":65.59,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":40.485,"w":0.75,"l":1.531},{"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":80.44,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":42.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":42.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.235,"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":87.865,"y":12.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":91.577,"y":12.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":95.29,"y":12.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":17.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":19.501,"w":18.562,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":21.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":27.751,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":28.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":33.751,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":39.751,"w":3.712,"h":2.25,"clr":-1},{"oc":"#221f1f","x":-1.247,"y":49.046,"w":2.495,"h":0.907,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"4972","S":-1,"TS":[0,27,0,0]}]},{"oc":"#181616","x":5.94,"y":3.713,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#181616","x":5.94,"y":4.244,"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.623,"y":2.101,"w":14.2,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20Lump-Sum%20Distributions%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":29.128,"y":2.837,"w":30.020000000000003,"clr":-1,"A":"left","R":[{"T":"(From%20Qualified%20Plans%20of%20Participants%20Born%20Before%20January%202%2C%201936)","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":25.258,"y":3.436,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":26.629,"y":3.5300000000000002,"w":29.60300000000001,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%204972%20and%20its%20instructions%20is%20available%20at%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":65.298,"y":3.5300000000000002,"w":10.812999999999999,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform4972.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":35.288,"y":4.108,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.702,"y":4.202,"w":23.783,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20or%20Form%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-0193","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":86.48,"y":3.814,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.48,"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":94.458,"y":4.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.978,"w":14.354,"clr":-1,"A":"left","R":[{"T":"Name%20of%20recipient%20of%20distribution","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.393,"y":6.572,"w":24.203000000000003,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20to%20see%20if%20you%20can%20use%20Form%204972","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":7.465,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.465,"w":45.582999999999984,"clr":-1,"A":"left","R":[{"T":"Was%20this%20a%20distribution%20of%20a%20plan%20participant%E2%80%99s%20entire%20balance%20(excluding%20deductible%20voluntary%20employee%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":8.152,"w":47.49199999999996,"clr":-1,"A":"left","R":[{"T":"contributions%20and%20certain%20forfeited%20amounts)%20from%20all%20of%20an%20employer%E2%80%99s%20qualified%20plans%20of%20one%20kind%20(pension%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":8.84,"w":17.873,"clr":-1,"A":"left","R":[{"T":"profit-sharing%2C%20or%20stock%20bonus)%3F%20If%20%E2%80%9CNo%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.546,"y":8.84,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.273,"y":8.84,"w":6.353999999999999,"clr":-1,"A":"left","R":[{"T":"%20use%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.387,"y":8.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.808,"y":7.34,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.85,"y":7.34,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":24.078,"clr":-1,"A":"left","R":[{"T":"Did%20you%20roll%20over%20any%20part%20of%20the%20distribution%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.135,"y":9.59,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.293,"y":9.59,"w":6.0760000000000005,"clr":-1,"A":"left","R":[{"T":"use%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":9.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":48.86099999999994,"clr":-1,"A":"left","R":[{"T":"Was%20this%20distribution%20paid%20to%20you%20as%20a%20beneficiary%20of%20a%20plan%20participant%20who%20was%20born%20before%20January%202%2C%201936%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":4.519,"clr":-1,"A":"left","R":[{"T":"Were%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.298,"y":11.153,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.31,"y":11.153,"w":21.98500000000001,"clr":-1,"A":"left","R":[{"T":"%20a%20plan%20participant%20who%20received%20this%20distribution%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.777,"y":11.153,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.847,"y":11.153,"w":13.468000000000007,"clr":-1,"A":"left","R":[{"T":"%20born%20before%20January%202%2C%201936%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.724,"y":11.153,"w":3.222,"clr":-1,"A":"left","R":[{"T":"and%20(c)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.126,"y":11.153,"w":1.093,"clr":-1,"A":"left","R":[{"T":"%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":11.84,"w":34.450999999999986,"clr":-1,"A":"left","R":[{"T":"participant%20in%20the%20plan%20for%20at%20least%205%20years%20before%20the%20year%20of%20the%20distribution%3F%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.762,"y":11.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.041,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":18.744,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CNo%E2%80%9D%20to%20both%20questions%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.884,"y":12.59,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":12.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.785,"y":12.59,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.512,"y":12.59,"w":6.353999999999999,"clr":-1,"A":"left","R":[{"T":"%20use%20this%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":13.403,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.403,"w":40.565000000000005,"clr":-1,"A":"left","R":[{"T":"Did%20you%20use%20Form%204972%20after%201986%20for%20a%20previous%20distribution%20from%20your%20own%20plan%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.532,"y":13.403,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.482,"y":13.403,"w":4.02,"clr":-1,"A":"left","R":[{"T":"%20use%20this%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":14.09,"w":21.337999999999997,"clr":-1,"A":"left","R":[{"T":"form%20for%20a%202013%20distribution%20from%20your%20own%20plan%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.131,"y":14.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.597,"y":14.09,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"5a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.965,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.902,"w":47.58299999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20receiving%20this%20distribution%20as%20a%20beneficiary%20of%20a%20plan%20participant%20who%20died%2C%20did%20you%20use%20Form%204972%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":15.64,"w":33.82,"clr":-1,"A":"left","R":[{"T":"for%20a%20previous%20distribution%20received%20for%20that%20participant%20after%201986%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.627,"y":15.64,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.341,"y":15.64,"w":9.243,"clr":-1,"A":"left","R":[{"T":"%20use%20the%20form%20for%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":16.327,"w":5.279,"clr":-1,"A":"left","R":[{"T":"distribution%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":16.327,"w":42.65599999999997,"clr":-1,"A":"left","R":[{"T":"................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.568,"y":16.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5b","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":17.072,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.221,"y":17.072,"w":28.47600000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20to%20choose%20the%2020%25%20capital%20gain%20election%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.163,"y":17.072,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":17.84,"w":19.246000000000002,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20part%20from%20Form%201099-R%2C%20box%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.002,"y":17.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.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":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%2020%25%20(.20)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":18.59,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.749,"y":18.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.616,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.349,"w":45.713999999999956,"clr":-1,"A":"left","R":[{"T":"If%20you%20also%20choose%20to%20use%20Part%20III%2C%20go%20to%20line%208.%20Otherwise%2C%20include%20the%20amount%20from%20line%207%20in%20the%20total%20on%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.878,"y":20.049,"w":43.32899999999999,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2044%2C%20Form%201040NR%2C%20line%2042%2C%20or%20Form%201041%2C%20Schedule%20G%2C%20line%201b%2C%20whichever%20applies.","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.331,"y":20.822,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.221,"y":20.822,"w":24.851000000000006,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20to%20choose%20the%2010-year%20tax%20option%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":57.933,"y":20.822,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":21.734,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":21.716,"w":43.903999999999975,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201099-R%2C%20box%202a%20minus%20box%203.%20If%20you%20did%20not%20complete%20Part%20II%2C%20enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.403,"w":40.858999999999995,"clr":-1,"A":"left","R":[{"T":"amount%20from%20box%202a.%20Multiple%20recipients%20(and%20recipients%20who%20elect%20to%20include%20NUA%20in%20taxable","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":23.09,"w":10.854,"clr":-1,"A":"left","R":[{"T":"income)%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.618,"y":23.09,"w":33.32499999999998,"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":"8%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":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":42.52599999999996,"clr":-1,"A":"left","R":[{"T":"Death%20benefit%20exclusion%20for%20a%20beneficiary%20of%20a%20plan%20participant%20who%20died%20before%20August%2021%2C%201996%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.13,"y":23.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":23.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":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":21.728000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20taxable%20amount.%20Subtract%20line%209%20from%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":24.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.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":25.34,"w":34.657000000000004,"clr":-1,"A":"left","R":[{"T":"Current%20actuarial%20value%20of%20annuity%20from%20Form%201099-R%2C%20box%208.%20If%20none%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":25.34,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":25.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":26.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.153,"w":38.71899999999999,"clr":-1,"A":"left","R":[{"T":"Adjusted%20total%20taxable%20amount.%20Add%20lines%2010%20and%2011.%20If%20this%20amount%20is%20%2470%2C000%20or%20more%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.219,"y":26.153,"w":1.9800000000000002,"clr":-1,"A":"left","R":[{"T":"skip","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.371,"y":26.153,"w":2.315,"clr":-1,"A":"left","R":[{"T":"%20lines","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":27.549000000000003,"clr":-1,"A":"left","R":[{"T":"13%20through%2016%2C%20enter%20this%20amount%20on%20line%2017%2C%20and%20go%20to%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":26.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":26.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":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":14.951000000000008,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2012%20by%2050%25%20(.50)%2C%20but%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.017,"y":27.59,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.174,"y":27.59,"w":11.265000000000002,"clr":-1,"A":"left","R":[{"T":"enter%20more%20than%20%2410%2C000%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":27.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.564,"y":27.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":27.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":28.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.403,"w":18.858999999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20%2420%2C000%20from%20line%2012.%20If%20line%2012%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":29.09,"w":11.56,"clr":-1,"A":"left","R":[{"T":"%2420%2C000%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.685,"y":29.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.061,"y":29.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":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2014%20by%2020%25%20(.20)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":29.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":27.582000000000004,"clr":-1,"A":"left","R":[{"T":"Minimum%20distribution%20allowance.%20Subtract%20line%2015%20from%20line%2013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":30.59,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2016%20from%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":31.340000000000003,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%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":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":24.87700000000001,"clr":-1,"A":"left","R":[{"T":"Federal%20estate%20tax%20attributable%20to%20lump-sum%20distribution%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":32.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%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":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":20.652000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017.%20If%20line%2011%20is%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.836,"y":32.84,"w":1.9800000000000002,"clr":-1,"A":"left","R":[{"T":"skip","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.898,"y":32.84,"w":16.877000000000002,"clr":-1,"A":"left","R":[{"T":"%20lines%2020%20through%2022%20and%20go%20to%20line%2023%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.127,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.653,"w":32.269000000000005,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2011%20by%20line%2012%20and%20enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":34.34,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"least%20three%20places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.511,"y":34.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.212,"y":34.287,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":18.433000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2016%20by%20the%20decimal%20on%20line%2020%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":35.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%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":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021%20from%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":35.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2019%20by%2010%25%20(.10)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":36.59,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":32.52700000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20amount%20on%20line%2023.%20Use%20the%20Tax%20Rate%20Schedule%20in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":37.34,"w":11.997,"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":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.153,"w":21.595000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2024%20by%20ten%20(10).%20If%20line%2011%20is%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.294,"y":38.153,"w":2.128,"clr":-1,"A":"left","R":[{"T":"skip","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.586,"y":38.153,"w":20.488000000000003,"clr":-1,"A":"left","R":[{"T":"%20lines%2026%20through%2028%2C%20enter%20this%20amount%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.84,"w":11.523000000000005,"clr":-1,"A":"left","R":[{"T":"line%20%2029%2C%20and%20go%20to%20line%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.691,"y":38.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2022%20by%2010%25%20(.10)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":39.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":40.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.403,"w":27.063000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20amount%20on%20line%2026.%20Use%20the%20Tax%20Rate%20Schedule%20in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":41.09,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.384,"y":41.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":11.949000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2027%20by%20ten%20(10)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":41.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%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":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":28.896000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2025.%20Multiple%20recipients%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":42.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.749,"y":42.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","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":10.89,"y":43.34,"w":14.828000000000005,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20lump-sum%20distribution.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.95,"y":43.34,"w":28.881000000000014,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%2029.%20Also%20include%20this%20amount%20in%20the%20total%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":44.038,"w":40.995,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2044%2C%20Form%201040NR%2C%20line%2042%2C%20or%20Form%201041%2C%20Schedule%20G%2C%20line%201b%2C%20whichever%20applies%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.931,"y":44.038,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.749,"y":43.945,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":44.858,"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":60.219,"y":44.876,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013187U","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":44.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4972","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":44.822,"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":3774,"AM":1024,"x":6.105,"y":5.87,"w":72.847,"h":0.858,"TU":"Name of recipient of distribution"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3775,"AM":1024,"x":79.344,"y":5.869,"w":19.635,"h":0.858,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":3788,"AM":0,"x":84.253,"y":18.038,"w":10.952,"h":0.833,"TU":"Line 6. Capital gain part from Form 1099-R, box 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":3789,"AM":1024,"x":84.253,"y":18.788,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":3790,"AM":0,"x":84.281,"y":23.247,"w":10.896,"h":0.833,"TU":"Line 8. Enter the amount from Form 1099-R, box 2a minus box 3. If you did not complete Part II, enter the amount from box 2a. Multiple recipients (and recipients who elect to include NUA in taxable income) see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":3791,"AM":0,"x":84.253,"y":24.038,"w":10.952,"h":0.833,"TU":"Line 9. Death benefit exclusion for a beneficiary of a plan participant who died before August 21, 1996."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":3792,"AM":1024,"x":84.253,"y":24.795,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":3793,"AM":0,"x":84.253,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 11. Current actuarial value of annuity from Form 1099-R, box 8. If none, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":3794,"AM":1024,"x":84.336,"y":26.951,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":3795,"AM":1024,"x":65.711,"y":27.758,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":3796,"AM":1024,"x":46.911,"y":29.183,"w":11.311,"h":0.833,"TU":"Multiply line 12 by 50% (.50), but do not enter more than $10,000"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":3797,"AM":1024,"x":65.644,"y":29.853,"w":11.12,"h":0.874},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":3798,"AM":1024,"x":84.248,"y":30.726,"w":10.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":3799,"AM":1024,"x":84.253,"y":31.545,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":3800,"AM":0,"x":84.253,"y":32.288,"w":10.952,"h":0.833,"TU":"Line 28. Federal estate tax attributable to lump-sum distribution."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":3801,"AM":1024,"x":84.253,"y":33.045,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":3802,"AM":1024,"x":65.658,"y":34.466,"w":11.182,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":3803,"AM":1024,"x":65.691,"y":35.288,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":3804,"AM":1024,"x":65.691,"y":36.045,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":3805,"AM":1024,"x":84.248,"y":36.617,"w":11.037,"h":0.895},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":3806,"AM":0,"x":84.253,"y":37.538,"w":10.952,"h":0.833,"TU":"Line 24. Tax on amount on line 23. Use the Tax Rate Schedule in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":3807,"AM":1024,"x":84.336,"y":38.998,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":3808,"AM":1024,"x":65.711,"y":39.758,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":3809,"AM":0,"x":65.623,"y":41.221,"w":10.937,"h":0.833,"TU":"Line 27. Tax on amount on line 26. Use the Tax Rate Schedule in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":3810,"AM":1024,"x":84.248,"y":41.936,"w":10.888,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT","EN":0},"TI":3811,"AM":0,"x":61.652,"y":42.544,"w":15.503,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":3812,"AM":0,"x":84.253,"y":42.795,"w":10.877,"h":0.833,"TU":"Line 29. Subtract line 28 from line 25. Multiple recipients see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":3813,"AM":1024,"x":84.336,"y":44.174,"w":10.787,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1Y","EN":0},"TI":3776,"AM":0,"x":92.162,"y":8.641,"w":2.794,"h":0.934,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1N","EN":0},"TI":3777,"AM":0,"x":95.755,"y":8.641,"w":2.869,"h":0.907,"checked":false}],"id":{"Id":"L1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2Y","EN":0},"TI":3778,"AM":0,"x":92.162,"y":9.621,"w":2.869,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2N","EN":0},"TI":3779,"AM":0,"x":95.755,"y":9.621,"w":2.944,"h":0.833,"checked":false}],"id":{"Id":"A9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3Y","EN":0},"TI":3780,"AM":0,"x":92.012,"y":10.465,"w":3.094,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3N","EN":0},"TI":3781,"AM":0,"x":95.68,"y":10.411,"w":3.244,"h":0.833,"checked":false}],"id":{"Id":"A7RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4Y","EN":0},"TI":3782,"AM":0,"x":92.012,"y":11.554,"w":3.094,"h":0.934,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4N","EN":0},"TI":3783,"AM":0,"x":95.755,"y":11.527,"w":3.094,"h":0.907,"checked":false}],"id":{"Id":"A5RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5AY","EN":0},"TI":3784,"AM":0,"x":92.012,"y":13.841,"w":3.094,"h":0.962,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5AN","EN":0},"TI":3785,"AM":0,"x":95.68,"y":13.841,"w":3.094,"h":0.934,"checked":false}],"id":{"Id":"A3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5BY","EN":0},"TI":3786,"AM":0,"x":92.087,"y":16.101,"w":3.094,"h":0.88,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5BN","EN":0},"TI":3787,"AM":0,"x":95.605,"y":16.074,"w":3.094,"h":0.907,"checked":false}],"id":{"Id":"A1RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F5329S.content.txt b/test/data/fd/form/F5329S.content.txt new file mode 100755 index 00000000..b11f88d9 --- /dev/null +++ b/test/data/fd/form/F5329S.content.txt @@ -0,0 +1,371 @@ +Form +5329 +Department of the Treasury +Internal Revenue Service (99) +Additional Taxes on Qualified Plans +(Including IRAs) and Other Tax-Favored Accounts +a + +Attach to Form 1040 or Form 1040NR. +a +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +29 +Name of individual subject to additional tax. If married filing jointly, see instructions. +Your social security number +Fill in Your Address Only +If You Are Filing This +Form by Itself and Not +With Your Tax Return +F +Home address (number and street), or P.O. box if mail is not delivered to your home +Apt. no. +City, town or post office, state, and ZIP code. If you have a foreign address, also complete +the spaces below (see instructions). +If this is an amended +return, check here +a +Foreign country name +Foreign province/state/county +Foreign postal code +If you +only +owe the additional 10% tax on early distributions, you may be able to report this tax directly on Form 1040, line 58, or +Form 1040NR, line 56, without filing Form 5329. See the instructions for Form 1040, line 58, or for Form 1040NR, line 56. +Part I +Additional Tax on Early Distributions +Complete this part if you took a taxable distribution before you reached age 59½ from a qualified retirement plan (including an + +IRA) or modified endowment contract (unless you are reporting this tax directly on Form 1040 or Form 1040NR—see above). You +certain Roth IRA distributions (see instructions). +1 +Early distributions included in income. For Roth IRA distributions, see instructions +...... +1 +2 +Early distributions included on line 1 that are not subject to the additional tax (see instructions). +Enter the appropriate exception number from the instructions: +......... +2 +3 +Amount subject to additional tax. Subtract line 2 from line 1 +............. +3 +4 +Additional tax. + +4 +Caution: +If any part of the amount on line 3 was a distribution from a SIMPLE IRA, you may have +to include 25% of that amount on line 4 instead of 10% (see instructions). +Part II +Additional Tax on Certain Distributions From Education Accounts +Complete this part if you included an amount in income, on Form 1040 or Form 1040NR, line 21, from a Coverdell +education savings account (ESA) or a qualified tuition program (QTP). +5 +Distributions included in income from Coverdell ESAs and QTPs +............ +5 +6 +Distributions included on line 5 that are not subject to the additional tax (see instructions) . . . +6 +7 +Amount subject to additional tax. Subtract line 6 from line 5 +............. +7 +8 +Additional tax. +Enter 10% (.10) of line 7. Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +8 +Part III +Additional Tax on Excess Contributions to Traditional IRAs +Complete this part if you contributed more to your traditional IRAs for 2013 than is allowable or you had an amount on line +17 of your 2012 Form 5329. +9 +Enter your excess contributions from line 16 of your 2012 Form 5329 (see instructions). If zero, go to line 15 +9 +10 + +If your traditional IRA contributions for 2013 are less than your +maximum allowable contribution, see instructions. Otherwise, enter -0- +10 +11 +2013 traditional IRA distributions included in income (see instructions) . +11 +12 +2013 distributions of prior year excess contributions (see instructions) . +12 +13 +Add lines 10, 11, and 12 +......................... +13 +14 +Prior year excess contributions. Subtract line 13 from line 9. If zero or less, enter -0- +..... +14 +15 +Excess contributions for 2013 (see instructions) +................. +15 +16 +Total excess contributions. Add lines 14 and 15 +................. +16 +17 + +Additional tax. +Enter 6% (.06) of the +smaller +of line 16 +or +the value of your traditional IRAs on December 31, 2013 +(including 2013 contributions made in 2014). Include this amount on Form 1040, line 58, or Form 1040NR, line 56 . +17 +Part IV +Additional Tax on Excess Contributions to Roth IRAs +Complete this part if you contributed more to your Roth IRAs for 2013 than is allowable or you had an amount on line 25 of your + 2012 Form 5329. +18 +Enter your excess contributions from line 24 of your 2012 Form 5329 (see instructions). If zero, go to line 23 +18 +19 + +If your Roth IRA contributions for 2013 are less than your maximum +allowable contribution, see instructions. Otherwise, enter -0- +.... +19 +20 +2013 distributions from your Roth IRAs (see instructions) +..... +20 +21 +Add lines 19 and 20 +.......................... +21 +22 +Prior year excess contributions. Subtract line 21 from line 18. If zero or less, enter -0- +..... +22 +23 +Excess contributions for 2013 (see instructions) +................. +23 +24 +Total excess contributions. Add lines 22 and 23 +................. +24 +25 + +Additional tax. +Enter 6% (.06) of the +smaller +of line 24 +or +the value of your Roth IRAs on December 31, 2013 + +(including 2013 contributions made in 2014). Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +25 +For Privacy Act and Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 13329Q +Form +5329 + (2013) +City, town or post office +State +ZIP Code + Information about Form 5329 and its separate instructions is at www.irs.gov/form5329 +Enter 10% (.10) of line 3. Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +may also have to complete this part to indicate that you qualify for an exception to the additional tax on early distributions or for +----------------Page (0) Break---------------- +Form 5329 (2013) +Page +2 +Part V +Additional Tax on Excess Contributions to Coverdell ESAs +Complete this part if the contributions to your Coverdell ESAs for 2013 were more than is allowable or you had an amount +on line 33 of your 2012 Form 5329. +26 +Enter the excess contributions from line 32 of your 2012 Form 5329 (see instructions). If zero, go to line 31 +26 +27 + +If the contributions to your Coverdell ESAs for 2013 were less than the +maximum allowable contribution, see instructions. Otherwise, enter -0- +27 +28 +2013 distributions from your Coverdell ESAs (see instructions) . . . +28 +29 +Add lines 27 and 28 +.......................... +29 +30 +Prior year excess contributions. Subtract line 29 from line 26. If zero or less, enter -0- +..... +30 +31 +Excess contributions for 2013 (see instructions) +................. +31 +32 +Total excess contributions. Add lines 30 and 31 +................. +32 +33 + + +Additional tax. +Enter 6% (.06) of the + smaller +of line 32 + or +the value of your Coverdell ESAs on +December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form +1040, line 58, or Form 1040NR, line 56 +.................... +33 +Part VI +Additional Tax on Excess Contributions to Archer MSAs +Complete this part if you or your employer contributed more to your Archer MSAs for 2013 than is allowable or you had an +amount on line 41 of your 2012 Form 5329. +34 +Enter the excess contributions from line 40 of your 2012 Form 5329 (see instructions). If zero, go to line 39 +34 +35 + +If the contributions to your Archer MSAs for 2013 are less than the +maximum allowable contribution, see instructions. Otherwise, enter -0- +35 +36 +2013 distributions from your Archer MSAs from Form 8853, line 8 . . +36 +37 +Add lines 35 and 36 +.......................... +37 +38 +Prior year excess contributions. Subtract line 37 from line 34. If zero or less, enter -0- +..... +38 +39 +Excess contributions for 2013 (see instructions) +................. +39 +40 +Total excess contributions. Add lines 38 and 39 +................. +40 +41 + + +Additional tax. +Enter 6% (.06) of the +smaller +of line 40 +or +the value of your Archer MSAs on +December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form +1040, line 58, or Form 1040NR, line 56 +.................... +41 +Part VII +Additional Tax on Excess Contributions to Health Savings Accounts (HSAs) +Complete this part if you, someone on your behalf, or your employer contributed more to your HSAs for 2013 than is +allowable or you had an amount on line 49 of your 2012 Form 5329. +42 +Enter the excess contributions from line 48 of your 2012 Form 5329. If zero, go to line 47 . . . +42 +43 + +If the contributions to your HSAs for 2013 are less than the maximum +allowable contribution, see instructions. Otherwise, enter -0- +.... +43 +44 +2013 distributions from your HSAs from Form 8889, line 16 +.... +44 +45 +Add lines 43 and 44 +.......................... +45 +46 +Prior year excess contributions. Subtract line 45 from line 42. If zero or less, enter -0- +..... +46 +47 +Excess contributions for 2013 (see instructions) +................. +47 +48 +Total excess contributions. Add lines 46 and 47 +................. +48 +49 + +Additional tax. +Enter 6% (.06) of the +smaller +of line 48 +or +the value of your HSAs on December 31, 2013 +(including + +2013 contributions made in 2014). Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +49 +Part VIII +Additional Tax on Excess Accumulation in Qualified Retirement Plans (Including IRAs) +Complete this part if you did not receive the minimum required distribution from your qualified retirement plan. +50 +Minimum required distribution for 2013 (see instructions) +.............. +50 +51 +Amount actually distributed to you in 2013 +................... +51 +52 +Subtract line 51 from line 50. If zero or less, enter -0- +............... +52 +53 +Additional tax. +Enter 50% (.50) of line 52. Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +53 +Sign Here Only If You +Are Filing This Form by +Itself and Not With Your +Tax Return +Under penalties of perjury, I declare that I have examined this form, including accompanying attachments, and to the best of my + +knowledge and belief, it is true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all informat +ion of which +preparer has any knowledge. +F +Your signature +F +Date +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer's signature +Date +Check if +self-employed +PTIN +Firm’s name +a +Firm's EIN +a +Firm's address +a +Phone no. +Form +5329 + (2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F5329S.fields.json b/test/data/fd/form/F5329S.fields.json new file mode 100755 index 00000000..b9264f01 --- /dev/null +++ b/test/data/fd/form/F5329S.fields.json @@ -0,0 +1 @@ +[{"id":"ARX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"mask","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"EDTA","type":"number","calc":false,"value":""},{"id":"EDEXCEPT","type":"number","calc":false,"value":""},{"id":"EDADDL","type":"number","calc":true,"value":""},{"id":"EDTAX","type":"number","calc":true,"value":""},{"id":"EYXSC","type":"number","calc":false,"value":""},{"id":"CCRED","type":"number","calc":false,"value":""},{"id":"INCDIST","type":"number","calc":false,"value":""},{"id":"XSCW","type":"number","calc":false,"value":""},{"id":"XSCADJ","type":"number","calc":true,"value":""},{"id":"ADJEYC","type":"number","calc":true,"value":""},{"id":"XSCONT","type":"number","calc":false,"value":""},{"id":"TOTXSC","type":"number","calc":true,"value":""},{"id":"XSCTAX","type":"number","calc":false,"value":""},{"id":"REYXSC","type":"number","calc":false,"value":""},{"id":"RCCRED","type":"number","calc":false,"value":""},{"id":"RINCDIST","type":"number","calc":false,"value":""},{"id":"RXSCADJ","type":"number","calc":true,"value":""},{"id":"RADJEYC","type":"number","calc":true,"value":""},{"id":"RXSCONT","type":"number","calc":false,"value":""},{"id":"RTOTXSC","type":"number","calc":true,"value":""},{"id":"RXSCTAX","type":"number","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"EEYXSC","type":"number","calc":false,"value":""},{"id":"ECCRED","type":"number","calc":false,"value":""},{"id":"EINCDIST","type":"number","calc":false,"value":""},{"id":"EXSCADJ","type":"number","calc":true,"value":""},{"id":"EADJEYC","type":"number","calc":true,"value":""},{"id":"EXSCONT","type":"number","calc":false,"value":""},{"id":"ETOTXSC","type":"number","calc":true,"value":""},{"id":"EXSCTAX","type":"number","calc":false,"value":""},{"id":"MEYXSC","type":"number","calc":false,"value":""},{"id":"MCCRED","type":"number","calc":false,"value":""},{"id":"MINCDIST","type":"number","calc":false,"value":""},{"id":"MXSCADJ","type":"number","calc":true,"value":""},{"id":"MADJEYC","type":"number","calc":true,"value":""},{"id":"MXSCONT","type":"number","calc":false,"value":""},{"id":"MTOTXSC","type":"number","calc":true,"value":""},{"id":"MXSCTAX","type":"number","calc":false,"value":""},{"id":"HEYXSC","type":"number","calc":false,"value":""},{"id":"HCCRED","type":"number","calc":false,"value":""},{"id":"HINCDIST","type":"number","calc":false,"value":""},{"id":"HXSCADJ","type":"number","calc":true,"value":""},{"id":"HADJEYC","type":"number","calc":true,"value":""},{"id":"HXSCONT","type":"number","calc":false,"value":""},{"id":"HTOTXSC","type":"number","calc":true,"value":""},{"id":"HXSCTAX","type":"number","calc":false,"value":""},{"id":"MINREQ","type":"number","calc":false,"value":""},{"id":"ACTDIST","type":"number","calc":false,"value":""},{"id":"XSACC","type":"number","calc":true,"value":""},{"id":"XSACTAX","type":"number","calc":true,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"FIRM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F5329S.json b/test/data/fd/form/F5329S.json new file mode 100755 index 00000000..cbc1ba9e --- /dev/null +++ b/test/data/fd/form/F5329S.json @@ -0,0 +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.018,"y":5.081,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.868,"y":5.081,"w":1.5,"l":63.199},{"oc":"#221f1f","x":83.937,"y":2.063,"w":0.75,"l":14.979},{"oc":"#221f1f","x":83.937,"y":5.081,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.018,"y":6.564,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.03,"y":6.564,"w":0.75,"l":19.886},{"oc":"#221f1f","x":28.293,"y":8.063,"w":0.75,"l":60.724},{"oc":"#221f1f","x":88.93,"y":8.063,"w":0.75,"l":9.986},{"oc":"#221f1f","x":28.422,"y":11.251,"w":0.75,"l":50.824},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":97.112,"y":11.001,"w":0.75,"l":1.375},{"oc":"#221f1f","x":97.112,"y":10.501,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":12.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":14.251,"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":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.325,"y":19.501,"w":0.75,"l":6.358},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":22.501,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":22.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.251,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":33.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":11.223},{"oc":"#221f1f","x":76.684,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":34.501,"w":0.75,"l":3.798},{"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":80.397,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":38.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":39.001,"w":0.75,"l":6.273},{"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},{"oc":"#221f1f","x":84.109,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":40.501,"w":0.75,"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":61.834,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":42.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":44.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":57.011},{"oc":"#221f1f","x":63.072,"y":47.251,"w":1.5,"l":24.836},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":20.911,"y":1.298,"w":1.5,"l":2.297},{"oc":"#221f1f","x":20.911,"y":3.565,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.023,"y":1.298,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.023,"y":2.048,"w":1.5,"l":1.827},{"oc":"#221f1f","x":84.023,"y":3.861,"w":1.5,"l":1.251},{"oc":"#221f1f","x":79.073,"y":5.048,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.488,"y":6.482,"w":0.75,"l":6.254},{"oc":"#221f1f","x":88.973,"y":6.548,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.148,"y":8.059,"w":0.75,"l":3.194},{"oc":"#221f1f","x":98.487,"y":10.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":97.112,"y":10.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":54.452,"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":80.44,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":80.44,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":65.59,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":45.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":45.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":46.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":14.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":21.001,"w":18.562,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":22.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":27.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":30.751,"w":3.712,"h":3,"clr":-1},{"oc":"#221f1f","x":6.19,"y":38.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":40.501,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.811,"y":1.697,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.288,"y":1.697,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5329","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.811,"y":3.5439999999999996,"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.811,"y":4.044,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":33.208,"y":1.227,"w":17.283000000000005,"clr":-1,"A":"left","R":[{"T":"Additional%20Taxes%20on%20Qualified%20Plans%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":25.604,"y":2.102,"w":23.726000000000006,"clr":-1,"A":"left","R":[{"T":"(Including%20IRAs)%20and%20Other%20Tax-Favored%20Accounts","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":39.194,"y":3.212,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.562,"y":3.306,"w":18.171000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.144,"y":3.971,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.908,"y":4.065,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.614,"y":1.036,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.73,"y":2.582,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.7,"y":2.582,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.836,"y":3.604,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.836,"y":4.05,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.814,"y":4.05,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.811,"y":4.732,"w":37.22799999999999,"clr":-1,"A":"left","R":[{"T":"Name%20of%20individual%20subject%20to%20additional%20tax.%20If%20married%20filing%20jointly%2C%20see%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.511,"y":4.732,"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.811,"y":7.646000000000001,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20Your%20Address%20Only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.811,"y":8.271,"w":10.280000000000003,"clr":-1,"A":"left","R":[{"T":"If%20You%20Are%20Filing%20This%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.811,"y":8.896,"w":10.835000000000004,"clr":-1,"A":"left","R":[{"T":"Form%20by%20Itself%20and%20Not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.811,"y":9.521,"w":10.223,"clr":-1,"A":"left","R":[{"T":"With%20Your%20Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.74,"y":8.038,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,50.9994,0,0],"RA":90}]},{"oc":"#221f1f","x":28.773,"y":6.232,"w":37.41699999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street)%2C%20or%20P.O.%20box%20if%20mail%20is%20not%20delivered%20to%20your%20home","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.411,"y":6.232,"w":3.52,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.773,"y":7.7509999999999994,"w":40.615999999999985,"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%20also%20complete%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.773,"y":8.251,"w":15.964000000000004,"clr":-1,"A":"left","R":[{"T":"the%20spaces%20below%20(see%20instructions).","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":9.514,"w":9.559000000000001,"clr":-1,"A":"left","R":[{"T":"If%20this%20is%20an%20amended%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.64,"y":10.202,"w":8.391000000000002,"clr":-1,"A":"left","R":[{"T":"return%2C%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.177,"y":10.108,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.902,"y":10.92,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.89,"y":10.92,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":10.92,"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":12.703,"w":2.741,"clr":-1,"A":"left","R":[{"T":"If%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.779,"y":12.703,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.746,"y":12.703,"w":52.69699999999994,"clr":-1,"A":"left","R":[{"T":"owe%20the%20additional%2010%25%20tax%20on%20early%20distributions%2C%20you%20may%20be%20able%20to%20report%20this%20tax%20directly%20on%20Form%201040%2C%20line%2058%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.93,"y":13.328,"w":53.79399999999994,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2056%2C%20without%20filing%20Form%205329.%20See%20the%20instructions%20for%20Form%201040%2C%20line%2058%2C%20or%20for%20Form%201040NR%2C%20line%2056.","S":3,"TS":[0,12,0,0]}]},{"x":6.838,"y":14.072,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":14.072,"w":17.559,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Early%20Distributions","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":14.678,"w":56.14199999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20took%20a%20taxable%20distribution%20before%20you%20reached%20age%2059%C2%BD%20from%20a%20qualified%20retirement%20plan%20(including%20an","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":13.36,"y":15.24,"w":57.80699999999995,"clr":-1,"A":"left","R":[{"T":"IRA)%20or%20modified%20endowment%20contract%20(unless%20you%20are%20reporting%20this%20tax%20directly%20on%20Form%201040%20or%20Form%201040NR%E2%80%94see%20above).%20You%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":13.351,"y":16.365,"w":21.206000000000003,"clr":-1,"A":"left","R":[{"T":"certain%20Roth%20IRA%20distributions%20(see%20instructions).","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.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":17.09,"w":36.376999999999995,"clr":-1,"A":"left","R":[{"T":"Early%20distributions%20included%20in%20income.%20For%20Roth%20IRA%20distributions%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":17.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%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":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":42.341999999999985,"clr":-1,"A":"left","R":[{"T":"Early%20distributions%20included%20on%20line%201%20that%20are%20not%20subject%20to%20the%20additional%20tax%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.577,"w":27.896000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20appropriate%20exception%20number%20from%20the%20instructions%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":18.59,"w":11.997,"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":"2%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":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":26.526000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20subject%20to%20additional%20tax.%20Subtract%20line%202%20from%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":19.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.09,"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":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":81.616,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.737,"y":20.84,"w":38.896999999999984,"clr":-1,"A":"left","R":[{"T":"If%20any%20part%20of%20the%20amount%20on%20line%203%20was%20a%20distribution%20from%20a%20SIMPLE%20IRA%2C%20you%20may%20have%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":21.527,"w":32.564,"clr":-1,"A":"left","R":[{"T":"to%20include%2025%25%20of%20that%20amount%20on%20line%204%20instead%20of%2010%25%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":22.322,"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.322,"w":31.282000000000004,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Certain%20Distributions%20From%20Education%20Accounts","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":23.203,"w":50.942999999999984,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20included%20an%20amount%20in%20income%2C%20on%20Form%201040%20or%20Form%201040NR%2C%20line%2021%2C%20from%20a%20Coverdell%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.372,"y":23.828,"w":30.912000000000013,"clr":-1,"A":"left","R":[{"T":"education%20savings%20account%20(ESA)%20or%20a%20qualified%20tuition%20program%20(QTP).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.562,"y":24.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.897,"y":24.59,"w":28.580000000000002,"clr":-1,"A":"left","R":[{"T":"Distributions%20included%20in%20income%20from%20Coverdell%20ESAs%20and%20QTPs","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.447,"y":24.59,"w":15.996,"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":"5%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":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":39.69399999999999,"clr":-1,"A":"left","R":[{"T":"Distributions%20included%20on%20line%205%20that%20are%20not%20subject%20to%20the%20additional%20tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":25.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":25.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":25.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.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":26.09,"w":26.526000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20subject%20to%20additional%20tax.%20Subtract%20line%206%20from%20line%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":26.09,"w":17.329,"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":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.777,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.777,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":20.098,"y":26.777,"w":41.55299999999999,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20(.10)%20of%20line%207.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":81.616,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":27.572,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":27.572,"w":28.116,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Traditional%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":28.365,"w":54.75299999999995,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20contributed%20more%20to%20your%20traditional%20IRAs%20for%202013%20than%20is%20allowable%20or%20you%20had%20an%20amount%20on%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.366,"y":28.928,"w":12.395000000000005,"clr":-1,"A":"left","R":[{"T":"17%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.556,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":47.89799999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20excess%20contributions%20from%20line%2016%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2015","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.652,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.652,"w":27.967,"clr":-1,"A":"left","R":[{"T":"If%20your%20traditional%20IRA%20contributions%20for%202013%20are%20less%20than%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.340000000000003,"w":31.616999999999994,"clr":-1,"A":"left","R":[{"T":"maximum%20allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":31.118000000000006,"clr":-1,"A":"left","R":[{"T":"2013%20traditional%20IRA%20distributions%20included%20in%20income%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.567,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%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":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":31.041000000000018,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20of%20prior%20year%20excess%20contributions%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.567,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.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":33.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":33.59,"w":10.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%2C%2011%2C%20and%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":33.59,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%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":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":37.39199999999999,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2013%20from%20line%209.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":34.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.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":35.09,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":35.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%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":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2014%20and%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":35.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.527,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":20.368,"y":36.59,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":32.525,"y":36.59,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":37.384,"y":36.59,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2016%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":42.693,"y":36.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":44.232,"y":36.59,"w":25.266,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20traditional%20IRAs%20on%20December%2031%2C%202013%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":10.884,"y":37.277,"w":50.65099999999996,"clr":-1,"A":"left","R":[{"T":"(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056.","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":81.186,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":38.072,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":38.072,"w":25.281000000000002,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Roth%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":38.89,"w":56.95799999999994,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20contributed%20more%20to%20your%20Roth%20IRAs%20for%202013%20than%20is%20allowable%20or%20you%20had%20an%20amount%20on%20line%2025%20of%20your","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":88.255,"y":38.89,"w":7.894,"clr":-1,"A":"left","R":[{"T":"%202012%20Form%205329.","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":47.89799999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20excess%20contributions%20from%20line%2024%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2023","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":81.186,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":40.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.403,"w":30.341,"clr":-1,"A":"left","R":[{"T":"If%20your%20Roth%20IRA%20contributions%20for%202013%20are%20less%20than%20your%20maximum%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.09,"w":26.946999999999996,"clr":-1,"A":"left","R":[{"T":"allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":41.09,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.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":41.84,"w":25.190000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20Roth%20IRAs%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":41.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2019%20and%2020","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":42.59,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.34,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2021%20from%20line%2018.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":43.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.09,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":44.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.84,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2022%20and%2023","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":44.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":45.59,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":20.01,"y":45.59,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":32.176,"y":45.59,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":37.032,"y":45.59,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2024%20","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":42.566,"y":45.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":44.236,"y":45.59,"w":22.692000000000007,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20Roth%20IRAs%20on%20December%2031%2C%202013","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":10.895,"y":46.277,"w":50.37299999999996,"clr":-1,"A":"left","R":[{"T":"(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":81.186,"y":46.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"w":41.010999999999974,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":70.715,"y":47.126,"w":7.522,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013329Q","S":2,"TS":[0,10,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":"5329","S":10,"TS":[0,14,1,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]}]},{"x":28.58,"y":9.022,"w":83.144,"clr":0,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office","S":-1,"TS":[0,11,0,0]}]},{"x":62.837,"y":9.121,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":70.777,"y":9.121,"w":33.792,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.176,"y":4.065,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%205329%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform5329","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.27,"y":20.09,"w":41.83099999999999,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20(.10)%20of%20line%203.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":13.351,"y":15.803,"w":57.232999999999954,"clr":-1,"A":"left","R":[{"T":"may%20also%20have%20to%20complete%20this%20part%20to%20indicate%20that%20you%20qualify%20for%20an%20exception%20to%20the%20additional%20tax%20on%20early%20distributions%20or%20for%20","S":-1,"TS":[0,11.55,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3814,"AM":1024,"x":6.09,"y":5.645,"w":72.847,"h":0.879,"TU":"Name of individual subject to additional tax. If married filing jointly, see instructions."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3815,"AM":1024,"x":79.205,"y":5.645,"w":19.635,"h":0.879,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":3816,"AM":0,"x":28.8,"y":7.163,"w":59.342,"h":0.833,"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":3817,"AM":0,"x":89.204,"y":7.117,"w":8.663,"h":0.875,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":3818,"AM":0,"x":28.692,"y":10.278,"w":34.73,"h":0.959,"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":3819,"AM":0,"x":64.351,"y":10.33,"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":3820,"AM":0,"x":70.119,"y":10.328,"w":7.881,"h":0.856,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":3822,"AM":0,"x":28.71,"y":11.841,"w":24.729,"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":3823,"AM":0,"x":54.816,"y":11.915,"w":23.396,"h":0.885,"TU":"Foreign province or state or county. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":3824,"AM":0,"x":79.906,"y":11.959,"w":13.244,"h":0.833,"TU":"Foreign postal code. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":3825,"AM":0,"x":84.363,"y":17.272,"w":10.952,"h":0.833,"TU":"Line 1. Early distributions included in income. For Roth IRA distributions, see instructions."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":3826,"AM":0,"x":54.349,"y":18.779,"w":5.986,"h":0.833,"TU":"Line 2. Enter the appropriate exception number from the instructions.","MV":"99"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":3827,"AM":0,"x":84.254,"y":18.709,"w":10.952,"h":0.833,"TU":"Line 2. Early distributions included on line1 that are not subject to the additional tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":3828,"AM":1024,"x":84.253,"y":19.538,"w":10.952,"h":0.833,"TU":"Line 3. Amount subject to additional tax. Subtract line 2 from line 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":3829,"AM":0,"x":84.253,"y":20.288,"w":10.952,"h":0.833,"TU":"Line 4. Additional tax. Enter 10% (.10) of line 3. Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDTA","EN":0},"TI":3830,"AM":0,"x":84.253,"y":24.764,"w":10.952,"h":0.833,"TU":"Line 5. Distributions included in income from Coverdell ESAs and QTPs."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDEXCEPT","EN":0},"TI":3831,"AM":0,"x":84.253,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 6. Distributions included on line 5 that are not subject to the additional tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDADDL","EN":0},"TI":3832,"AM":1024,"x":84.253,"y":26.295,"w":10.952,"h":0.833,"TU":"Line 7. Amount subject to additional tax. Subtract line 6 from line 5. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDTAX","EN":0},"TI":3833,"AM":1024,"x":84.253,"y":27.038,"w":10.952,"h":0.833,"TU":"Line 8. Additional tax. Enter 10% (.10) of line 7. Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EYXSC","EN":0},"TI":3834,"AM":0,"x":84.253,"y":30.038,"w":10.952,"h":0.833,"TU":"Line 9. Enter your excess contributions from line 16 of your 2012 Form 5329 (see instructions). If zero, go to line 15."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CCRED","EN":0},"TI":3835,"AM":0,"x":65.773,"y":31.382,"w":10.787,"h":0.853,"TU":"Line 10. If your traditional IRA contributions for 2013 are less than your maximum allowable contribution, see instructions. Otherwise, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCDIST","EN":0},"TI":3836,"AM":0,"x":65.691,"y":32.288,"w":10.952,"h":0.833,"TU":"Line 11. 2013 traditional IRA distributions included in income (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCW","EN":0},"TI":3837,"AM":0,"x":65.691,"y":33.038,"w":10.952,"h":0.833,"TU":"Line 12. 2013 distributions of prior year excess contributions (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCADJ","EN":0},"TI":3838,"AM":1024,"x":84.398,"y":33.74,"w":10.663,"h":0.833,"TU":"Line 13. Add lines 10, 11 and 12."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJEYC","EN":0},"TI":3839,"AM":1024,"x":84.478,"y":34.538,"w":10.952,"h":0.833,"TU":"Line 14. Prior year excess contributions. Subtract line 13 from line 9. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCONT","EN":0},"TI":3840,"AM":0,"x":84.253,"y":35.315,"w":10.952,"h":0.833,"TU":"Line 15. Excess contributions for 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTXSC","EN":0},"TI":3841,"AM":1024,"x":84.253,"y":36.045,"w":10.952,"h":0.833,"TU":"Line 16. Total excess contributions. Add lines 14 and 15."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCTAX","EN":0},"TI":3842,"AM":0,"x":84.336,"y":37.229,"w":10.787,"h":0.998,"TU":"Line 17. Additional tax. Enter 6% (.06) of the smaller of line 16 or the value of your traditional IRAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REYXSC","EN":0},"TI":3843,"AM":0,"x":84.253,"y":39.788,"w":10.952,"h":0.833,"TU":"Line 18. Enter your excess contributions from line 24 of your 2012 Form 5329 (see instructions). If zero, go to line 23."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCRED","EN":0},"TI":3844,"AM":0,"x":65.773,"y":41.187,"w":10.787,"h":0.833,"TU":"Line 19. If your Roth IRA contributions for 2013 are less than your maximum allowable contribution, see instructions. Otherwise, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RINCDIST","EN":0},"TI":3845,"AM":0,"x":65.691,"y":42.038,"w":10.952,"h":0.833,"TU":"Line 20. 2013 distributions from your Roth IRAs (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RXSCADJ","EN":0},"TI":3846,"AM":1024,"x":84.344,"y":42.668,"w":10.92,"h":0.871,"TU":"Line 21. Add lines 19 and 20."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RADJEYC","EN":0},"TI":3847,"AM":1024,"x":84.253,"y":43.538,"w":10.952,"h":0.833,"TU":"Line 22. Prior year excess contributions. Subtract line 21 from line 18. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RXSCONT","EN":0},"TI":3848,"AM":0,"x":84.253,"y":44.26,"w":10.952,"h":0.833,"TU":"Line 23. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RTOTXSC","EN":0},"TI":3849,"AM":1024,"x":84.253,"y":45.045,"w":10.952,"h":0.833,"TU":"Line 24. Total excess contributions. Add lines 22 and 23. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RXSCTAX","EN":0},"TI":3850,"AM":0,"x":84.336,"y":46.365,"w":10.787,"h":0.855,"TU":"Line 25. Additional tax. Enter 6% (.06) of the smaller of line 24 or the value of your Roth IRAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ARX","EN":0},"TI":3821,"AM":0,"x":96.911,"y":10.217,"w":1.89,"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.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":6.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":7.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":8.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":8.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":8.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":10.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":18.751,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":24.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":24.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":26.251,"w":0.75,"l":92.899},{"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":61.834,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":27.001,"w":0.75,"l":3.798},{"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":61.834,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":29.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":33.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":33.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":35.251,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":38.251,"w":1.125,"l":18.648},{"oc":"#221f1f","x":24.709,"y":38.251,"w":1.125,"l":74.336},{"oc":"#221f1f","x":28.422,"y":41.251,"w":0.75,"l":44.636},{"oc":"#221f1f","x":76.684,"y":41.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":42.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.809,"y":42.001,"w":0.75,"l":26.073},{"oc":"#221f1f","x":14.809,"y":43.501,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.797,"y":42.001,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.797,"y":43.501,"w":0.75,"l":26.073},{"oc":"#221f1f","x":66.784,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.784,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":77.922,"y":43.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.816,"y":42.814,"w":0.75,"l":1.375},{"oc":"#221f1f","x":82.816,"y":42.314,"w":0.75,"l":1.375},{"oc":"#221f1f","x":86.584,"y":42.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":14.809,"y":44.251,"w":0.75,"l":59.486},{"oc":"#221f1f","x":74.209,"y":44.251,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":80.44,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":7.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":7.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":7.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":65.59,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":80.44,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"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":84.152,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"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":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":65.59,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":24.752,"y":38.228,"w":0.75,"l":3.789},{"oc":"#221f1f","x":14.852,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":40.84,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.191,"y":42.314,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.816,"y":42.314,"w":0.75,"l":0.5},{"oc":"#221f1f","x":86.627,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.852,"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":14.852,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":44.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.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":6.001,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":11.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":13.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":16.501,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":21.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":27.001,"w":3.712,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":33.751,"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%205329%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]}]},{"x":6.55,"y":2.822,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":2.822,"w":27.895000000000007,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Coverdell%20ESAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":3.532,"w":54.60199999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20the%20contributions%20to%20your%20Coverdell%20ESAs%20for%202013%20were%20more%20than%20is%20allowable%20or%20you%20had%20an%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.374,"y":4.22,"w":15.618000000000007,"clr":-1,"A":"left","R":[{"T":"on%20line%2033%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.704,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.09,"w":47.342999999999954,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20excess%20contributions%20from%20line%2032%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2031","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":81.186,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":5.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.903,"w":31.651999999999997,"clr":-1,"A":"left","R":[{"T":"If%20the%20contributions%20to%20your%20Coverdell%20ESAs%20for%202013%20were%20less%20than%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":6.59,"w":31.616999999999994,"clr":-1,"A":"left","R":[{"T":"maximum%20allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":27.615000000000006,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20Coverdell%20ESAs%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":7.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.503,"y":7.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":7.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2027%20and%2028","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":8.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2029%20from%20line%2026.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":8.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":9.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":9.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":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2030%20and%2031","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":10.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":11.121,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.675,"y":11.153,"w":9.206000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.524,"y":11.153,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.273,"y":11.153,"w":4.075,"clr":-1,"A":"left","R":[{"T":"of%20line%2032","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.223,"y":11.153,"w":1.556,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.455,"y":11.153,"w":16.316,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20Coverdell%20ESAs%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":11.84,"w":41.99999999999999,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202013%20(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.528,"w":17.17400000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":12.528,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":13.322,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20VI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":13.322,"w":26.727000000000004,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Archer%20MSAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":14.032,"w":54.80699999999997,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20or%20your%20employer%20contributed%20more%20to%20your%20Archer%20MSAs%20for%202013%20than%20is%20allowable%20or%20you%20had%20an%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":14.72,"w":19.28700000000001,"clr":-1,"A":"left","R":[{"T":"amount%20on%20line%2041%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":47.62099999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20excess%20contributions%20from%20line%2040%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2039%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":81.186,"y":15.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":16.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.403,"w":29.858,"clr":-1,"A":"left","R":[{"T":"If%20the%20contributions%20to%20your%20Archer%20MSAs%20for%202013%20are%20less%20than%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":17.09,"w":31.894999999999992,"clr":-1,"A":"left","R":[{"T":"maximum%20allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":17.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":17.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":17.84,"w":29.120000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20Archer%20MSAs%20from%20Form%208853%2C%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.503,"y":17.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":17.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":17.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":18.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":18.59,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2035%20and%2036","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":18.59,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":18.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2037%20from%20line%2034.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":19.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.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":20.09,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":20.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%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":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2038%20and%2039","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":20.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":21.621,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.653,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.683,"y":21.653,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.239,"y":21.653,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.647,"y":21.653,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2040%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.953,"y":21.653,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.672,"y":21.653,"w":15.002000000000002,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20Archer%20MSAs%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":22.34,"w":41.99999999999999,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202013%20(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":23.028,"w":17.17400000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.95,"y":23.028,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"x":6.043,"y":23.822,"w":3.48,"clr":1,"A":"left","R":[{"T":"Part%20VII","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":23.822,"w":36.062000000000005,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Health%20Savings%20Accounts%20(HSAs)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":24.532,"w":52.16099999999995,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%2C%20someone%20on%20your%20behalf%2C%20or%20your%20employer%20contributed%20more%20to%20your%20HSAs%20for%202013%20than%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.369,"y":25.22,"w":30.19500000000001,"clr":-1,"A":"left","R":[{"T":"allowable%20or%20you%20had%20an%20amount%20on%20line%2049%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.894,"y":26.09,"w":39.50899999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20excess%20contributions%20from%20line%2048%20of%20your%202012%20Form%205329.%20If%20zero%2C%20go%20to%20line%2047","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.009,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.071,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.133,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.903,"w":31.157000000000004,"clr":-1,"A":"left","R":[{"T":"If%20the%20contributions%20to%20your%20HSAs%20for%202013%20are%20less%20than%20the%20maximum%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":27.59,"w":26.946999999999996,"clr":-1,"A":"left","R":[{"T":"allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.37,"y":27.59,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":26.305000000000007,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20HSAs%20from%20Form%208889%2C%20line%2016","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":28.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2043%20and%2044","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":29.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%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":"46%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2045%20from%20line%2042.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":29.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":30.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2046%20and%2047","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":31.340000000000003,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":20.079,"y":32.09,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":32.289,"y":32.09,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":37.262,"y":32.09,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2048%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":42.568,"y":32.09,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":44.393,"y":32.09,"w":20.988000000000003,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20HSAs%20on%20December%2031%2C%202013%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":10.895,"y":32.778,"w":4.574999999999999,"clr":-1,"A":"left","R":[{"T":"(including%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":17.351,"y":32.778,"w":45.79799999999998,"clr":-1,"A":"left","R":[{"T":"2013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":9,"TS":[0,12,1,0]}]},{"x":5.94,"y":33.572,"w":3.775,"clr":1,"A":"left","R":[{"T":"Part%20VIII","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#221f1f","x":13.674,"y":33.572,"w":41.12099999999996,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Accumulation%20in%20Qualified%20Retirement%20Plans%20(Including%20IRAs)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":34.251,"w":49.12499999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20did%20not%20receive%20the%20minimum%20required%20distribution%20from%20your%20qualified%20retirement%20plan.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":25.489000000000004,"clr":-1,"A":"left","R":[{"T":"Minimum%20required%20distribution%20for%202013%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":35.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%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":"51%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":18.896000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20actually%20distributed%20to%20you%20in%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":35.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"51%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"52%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2051%20from%20line%2050.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":36.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"52%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.278,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"53%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.278,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,11.01,1,0]}]},{"oc":"#221f1f","x":20.16,"y":37.278,"w":42.108999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20(.50)%20of%20line%2052.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":81.186,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"53%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":38.489,"w":10.503000000000002,"clr":-1,"A":"left","R":[{"T":"Sign%20Here%20Only%20If%20You%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":39.164,"w":11.447000000000001,"clr":-1,"A":"left","R":[{"T":"Are%20Filing%20This%20Form%20by%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":39.839,"w":11.612000000000002,"clr":-1,"A":"left","R":[{"T":"Itself%20and%20Not%20With%20Your%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":40.514,"w":5.223000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.19,"y":37.951,"w":57.089999999999954,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20form%2C%20including%20accompanying%20attachments%2C%20and%20to%20the%20best%20of%20my","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.198,"y":38.388,"w":55.06299999999996,"clr":-1,"A":"left","R":[{"T":"knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.%20Declaration%20of%20preparer%20(other%20than%20taxpayer)%20is%20based%20on%20all%20informat","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.857,"y":38.388,"w":5.963000000000001,"clr":-1,"A":"left","R":[{"T":"ion%20of%20%20which%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.199,"y":38.826,"w":12.964000000000004,"clr":-1,"A":"left","R":[{"T":"preparer%20has%20any%20knowledge.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.105,"y":39.869,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":28.902,"y":40.97,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.261,"y":39.869,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":76.477,"y":40.97,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.186,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":42.936,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":43.686,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":15.29,"y":41.689,"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.933,"y":41.689,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer's%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.265,"y":41.689,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.402,"y":42.089,"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.402,"y":42.589,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.721,"y":41.689,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.29,"y":43.376,"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.939,"y":43.313,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.69,"y":43.376,"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.929,"y":43.313,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":15.29,"y":44.126,"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.936,"y":44.063,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.69,"y":44.126,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":44.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5329","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":44.822,"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":3851,"AM":1024,"x":16.677,"y":1.959,"w":57.95,"h":0.982,"TU":"Name of individual subject to additional tax. If married filing jointly, see instructions."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":3852,"AM":1024,"x":74.895,"y":1.959,"w":19.635,"h":0.982,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EEYXSC","EN":0},"TI":3853,"AM":0,"x":84.253,"y":5.288,"w":10.952,"h":0.833,"TU":"Line 26. Enter the excess contributions from line 32 of your 2012 Form 5329 (see instructions). If zero, go to line 31."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ECCRED","EN":0},"TI":3854,"AM":0,"x":65.773,"y":6.632,"w":10.787,"h":0.853,"TU":"Line 27. If the contributions to your Coverdell ESAs for 2013 were less than the maximum allowable contribution, see instructions. Otherwise, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EINCDIST","EN":0},"TI":3855,"AM":0,"x":65.853,"y":7.535,"w":10.695,"h":0.833,"TU":"Line 28. 2013 distributions from your Coverdell ESAs (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXSCADJ","EN":0},"TI":3856,"AM":1024,"x":84.34,"y":8.207,"w":10.695,"h":0.833,"TU":"Line 29. Add lines 27 and 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EADJEYC","EN":0},"TI":3857,"AM":1024,"x":84.295,"y":9.042,"w":10.952,"h":0.833,"TU":"Line 30. Prior year excess contributions. Subtract line 29 from line 26. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXSCONT","EN":0},"TI":3858,"AM":0,"x":84.336,"y":9.769,"w":10.952,"h":0.833,"TU":"Line 31. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ETOTXSC","EN":0},"TI":3859,"AM":1024,"x":84.377,"y":10.55,"w":10.952,"h":0.833,"TU":"Line 32. Total excess contributions. Add lines 30 and 31.Line 34. Enter the excess contributions from line 40 of your 2012 Form 5329 (see instructions). If zero, go to line 39."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXSCTAX","EN":0},"TI":3860,"AM":0,"x":84.42,"y":12.55,"w":10.746,"h":0.939,"TU":"Line 33. Additional tax. Enter 6% (.06) of the smaller of line 32 or the value of your Coverdell ESAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MEYXSC","EN":0},"TI":3861,"AM":0,"x":84.419,"y":15.845,"w":10.952,"h":0.833,"TU":"Line 32. Total excess contributions. Add lines 30 and 31.Line 34. Enter the excess contributions from line 40 of your 2012 Form 5329 (see instructions). If zero, go to line 39."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MCCRED","EN":0},"TI":3862,"AM":0,"x":65.575,"y":17.256,"w":10.952,"h":0.833,"TU":"Line 35. If the contributions to your Archer MSAs for 2013 are less than the maximum allowable contribution, see instructions. Otherwise enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MINCDIST","EN":0},"TI":3863,"AM":0,"x":65.605,"y":18.076,"w":10.952,"h":0.833,"TU":"Line 36. 2013 distributions from your Archer MSAs from Form 8853, line 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MXSCADJ","EN":0},"TI":3864,"AM":1024,"x":84.392,"y":18.709,"w":10.952,"h":0.833,"TU":"Line 37. Add lines 35 and 36."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MADJEYC","EN":0},"TI":3865,"AM":1024,"x":84.253,"y":19.538,"w":10.952,"h":0.833,"TU":"Line 38. Prior year excess contributions. Subtract line 37 from line 34. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MXSCONT","EN":0},"TI":3866,"AM":0,"x":84.253,"y":20.288,"w":10.952,"h":0.833,"TU":"Line 39. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MTOTXSC","EN":0},"TI":3867,"AM":1024,"x":84.253,"y":21.045,"w":10.952,"h":0.833,"TU":"Line 40. Total excess contributions. Add lines 38 and 39."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MXSCTAX","EN":0},"TI":3868,"AM":0,"x":84.281,"y":23.042,"w":10.746,"h":0.993,"TU":"Line 41. Additional tax. Enter 6% (.06) of the smaller of line 40 or the value of your Archer MSAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HEYXSC","EN":0},"TI":3869,"AM":0,"x":84.253,"y":26.288,"w":10.952,"h":0.833,"TU":"Line 42. Enter the excess contributions from line 48 of your 2012 Form 5329. If zero, go to line 47."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HCCRED","EN":0},"TI":3870,"AM":0,"x":65.773,"y":27.632,"w":10.787,"h":0.853,"TU":"Line 43. If the contributions to your HSAs for 2013 are less than the maximum allowable contribution, see instructions. Otherwise enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HINCDIST","EN":0},"TI":3871,"AM":0,"x":65.691,"y":28.538,"w":10.952,"h":0.833,"TU":"Line 44. 2013 distributions from your HSAs from Form 8889. line 16."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HXSCADJ","EN":0},"TI":3872,"AM":1024,"x":84.398,"y":29.089,"w":10.663,"h":0.866,"TU":"Line 45. Add lines 43 and 44."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HADJEYC","EN":0},"TI":3873,"AM":1024,"x":84.253,"y":30.045,"w":10.952,"h":0.833,"TU":"Line 46. Prior year excess contributions. Subtract line 45 from line 42. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HXSCONT","EN":0},"TI":3874,"AM":0,"x":84.253,"y":30.788,"w":10.952,"h":0.833,"TU":"Line 47. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HTOTXSC","EN":0},"TI":3875,"AM":1024,"x":84.253,"y":31.545,"w":10.952,"h":0.833,"TU":"Line 48. Total excess contributions. Add lines 46 and 47."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HXSCTAX","EN":0},"TI":3876,"AM":0,"x":84.336,"y":32.784,"w":10.787,"h":0.889,"TU":"Line 49. Additional tax. Enter 6% (.06) of the smaller of line 48 or the value of your HSAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MINREQ","EN":0},"TI":3877,"AM":0,"x":84.253,"y":35.288,"w":10.952,"h":0.833,"TU":"Line 50. Minimum required distribution for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ACTDIST","EN":0},"TI":3878,"AM":0,"x":84.253,"y":36.038,"w":10.952,"h":0.833,"TU":"Line 51. Amount acutally distributed to you in 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSACC","EN":0},"TI":3879,"AM":1024,"x":84.253,"y":36.795,"w":10.952,"h":0.833,"TU":"Line 52. Subtract line 51 from line 50. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSACTAX","EN":0},"TI":3880,"AM":1024,"x":84.253,"y":37.538,"w":10.952,"h":0.833,"TU":"Line 53. Additonal tax. Enter 50% (.50) of line 52. Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":3881,"AM":1024,"x":41.135,"y":42.657,"w":25.446,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRM","EN":0},"TI":3882,"AM":1024,"x":25.582,"y":43.615,"w":27.152,"h":0.833,"V":"Self-prepared"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F5329T.content.txt b/test/data/fd/form/F5329T.content.txt new file mode 100755 index 00000000..b11f88d9 --- /dev/null +++ b/test/data/fd/form/F5329T.content.txt @@ -0,0 +1,371 @@ +Form +5329 +Department of the Treasury +Internal Revenue Service (99) +Additional Taxes on Qualified Plans +(Including IRAs) and Other Tax-Favored Accounts +a + +Attach to Form 1040 or Form 1040NR. +a +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +29 +Name of individual subject to additional tax. If married filing jointly, see instructions. +Your social security number +Fill in Your Address Only +If You Are Filing This +Form by Itself and Not +With Your Tax Return +F +Home address (number and street), or P.O. box if mail is not delivered to your home +Apt. no. +City, town or post office, state, and ZIP code. If you have a foreign address, also complete +the spaces below (see instructions). +If this is an amended +return, check here +a +Foreign country name +Foreign province/state/county +Foreign postal code +If you +only +owe the additional 10% tax on early distributions, you may be able to report this tax directly on Form 1040, line 58, or +Form 1040NR, line 56, without filing Form 5329. See the instructions for Form 1040, line 58, or for Form 1040NR, line 56. +Part I +Additional Tax on Early Distributions +Complete this part if you took a taxable distribution before you reached age 59½ from a qualified retirement plan (including an + +IRA) or modified endowment contract (unless you are reporting this tax directly on Form 1040 or Form 1040NR—see above). You +certain Roth IRA distributions (see instructions). +1 +Early distributions included in income. For Roth IRA distributions, see instructions +...... +1 +2 +Early distributions included on line 1 that are not subject to the additional tax (see instructions). +Enter the appropriate exception number from the instructions: +......... +2 +3 +Amount subject to additional tax. Subtract line 2 from line 1 +............. +3 +4 +Additional tax. + +4 +Caution: +If any part of the amount on line 3 was a distribution from a SIMPLE IRA, you may have +to include 25% of that amount on line 4 instead of 10% (see instructions). +Part II +Additional Tax on Certain Distributions From Education Accounts +Complete this part if you included an amount in income, on Form 1040 or Form 1040NR, line 21, from a Coverdell +education savings account (ESA) or a qualified tuition program (QTP). +5 +Distributions included in income from Coverdell ESAs and QTPs +............ +5 +6 +Distributions included on line 5 that are not subject to the additional tax (see instructions) . . . +6 +7 +Amount subject to additional tax. Subtract line 6 from line 5 +............. +7 +8 +Additional tax. +Enter 10% (.10) of line 7. Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +8 +Part III +Additional Tax on Excess Contributions to Traditional IRAs +Complete this part if you contributed more to your traditional IRAs for 2013 than is allowable or you had an amount on line +17 of your 2012 Form 5329. +9 +Enter your excess contributions from line 16 of your 2012 Form 5329 (see instructions). If zero, go to line 15 +9 +10 + +If your traditional IRA contributions for 2013 are less than your +maximum allowable contribution, see instructions. Otherwise, enter -0- +10 +11 +2013 traditional IRA distributions included in income (see instructions) . +11 +12 +2013 distributions of prior year excess contributions (see instructions) . +12 +13 +Add lines 10, 11, and 12 +......................... +13 +14 +Prior year excess contributions. Subtract line 13 from line 9. If zero or less, enter -0- +..... +14 +15 +Excess contributions for 2013 (see instructions) +................. +15 +16 +Total excess contributions. Add lines 14 and 15 +................. +16 +17 + +Additional tax. +Enter 6% (.06) of the +smaller +of line 16 +or +the value of your traditional IRAs on December 31, 2013 +(including 2013 contributions made in 2014). Include this amount on Form 1040, line 58, or Form 1040NR, line 56 . +17 +Part IV +Additional Tax on Excess Contributions to Roth IRAs +Complete this part if you contributed more to your Roth IRAs for 2013 than is allowable or you had an amount on line 25 of your + 2012 Form 5329. +18 +Enter your excess contributions from line 24 of your 2012 Form 5329 (see instructions). If zero, go to line 23 +18 +19 + +If your Roth IRA contributions for 2013 are less than your maximum +allowable contribution, see instructions. Otherwise, enter -0- +.... +19 +20 +2013 distributions from your Roth IRAs (see instructions) +..... +20 +21 +Add lines 19 and 20 +.......................... +21 +22 +Prior year excess contributions. Subtract line 21 from line 18. If zero or less, enter -0- +..... +22 +23 +Excess contributions for 2013 (see instructions) +................. +23 +24 +Total excess contributions. Add lines 22 and 23 +................. +24 +25 + +Additional tax. +Enter 6% (.06) of the +smaller +of line 24 +or +the value of your Roth IRAs on December 31, 2013 + +(including 2013 contributions made in 2014). Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +25 +For Privacy Act and Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 13329Q +Form +5329 + (2013) +City, town or post office +State +ZIP Code + Information about Form 5329 and its separate instructions is at www.irs.gov/form5329 +Enter 10% (.10) of line 3. Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +may also have to complete this part to indicate that you qualify for an exception to the additional tax on early distributions or for +----------------Page (0) Break---------------- +Form 5329 (2013) +Page +2 +Part V +Additional Tax on Excess Contributions to Coverdell ESAs +Complete this part if the contributions to your Coverdell ESAs for 2013 were more than is allowable or you had an amount +on line 33 of your 2012 Form 5329. +26 +Enter the excess contributions from line 32 of your 2012 Form 5329 (see instructions). If zero, go to line 31 +26 +27 + +If the contributions to your Coverdell ESAs for 2013 were less than the +maximum allowable contribution, see instructions. Otherwise, enter -0- +27 +28 +2013 distributions from your Coverdell ESAs (see instructions) . . . +28 +29 +Add lines 27 and 28 +.......................... +29 +30 +Prior year excess contributions. Subtract line 29 from line 26. If zero or less, enter -0- +..... +30 +31 +Excess contributions for 2013 (see instructions) +................. +31 +32 +Total excess contributions. Add lines 30 and 31 +................. +32 +33 + + +Additional tax. +Enter 6% (.06) of the + smaller +of line 32 + or +the value of your Coverdell ESAs on +December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form +1040, line 58, or Form 1040NR, line 56 +.................... +33 +Part VI +Additional Tax on Excess Contributions to Archer MSAs +Complete this part if you or your employer contributed more to your Archer MSAs for 2013 than is allowable or you had an +amount on line 41 of your 2012 Form 5329. +34 +Enter the excess contributions from line 40 of your 2012 Form 5329 (see instructions). If zero, go to line 39 +34 +35 + +If the contributions to your Archer MSAs for 2013 are less than the +maximum allowable contribution, see instructions. Otherwise, enter -0- +35 +36 +2013 distributions from your Archer MSAs from Form 8853, line 8 . . +36 +37 +Add lines 35 and 36 +.......................... +37 +38 +Prior year excess contributions. Subtract line 37 from line 34. If zero or less, enter -0- +..... +38 +39 +Excess contributions for 2013 (see instructions) +................. +39 +40 +Total excess contributions. Add lines 38 and 39 +................. +40 +41 + + +Additional tax. +Enter 6% (.06) of the +smaller +of line 40 +or +the value of your Archer MSAs on +December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form +1040, line 58, or Form 1040NR, line 56 +.................... +41 +Part VII +Additional Tax on Excess Contributions to Health Savings Accounts (HSAs) +Complete this part if you, someone on your behalf, or your employer contributed more to your HSAs for 2013 than is +allowable or you had an amount on line 49 of your 2012 Form 5329. +42 +Enter the excess contributions from line 48 of your 2012 Form 5329. If zero, go to line 47 . . . +42 +43 + +If the contributions to your HSAs for 2013 are less than the maximum +allowable contribution, see instructions. Otherwise, enter -0- +.... +43 +44 +2013 distributions from your HSAs from Form 8889, line 16 +.... +44 +45 +Add lines 43 and 44 +.......................... +45 +46 +Prior year excess contributions. Subtract line 45 from line 42. If zero or less, enter -0- +..... +46 +47 +Excess contributions for 2013 (see instructions) +................. +47 +48 +Total excess contributions. Add lines 46 and 47 +................. +48 +49 + +Additional tax. +Enter 6% (.06) of the +smaller +of line 48 +or +the value of your HSAs on December 31, 2013 +(including + +2013 contributions made in 2014). Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +49 +Part VIII +Additional Tax on Excess Accumulation in Qualified Retirement Plans (Including IRAs) +Complete this part if you did not receive the minimum required distribution from your qualified retirement plan. +50 +Minimum required distribution for 2013 (see instructions) +.............. +50 +51 +Amount actually distributed to you in 2013 +................... +51 +52 +Subtract line 51 from line 50. If zero or less, enter -0- +............... +52 +53 +Additional tax. +Enter 50% (.50) of line 52. Include this amount on Form 1040, line 58, or Form 1040NR, line 56 +53 +Sign Here Only If You +Are Filing This Form by +Itself and Not With Your +Tax Return +Under penalties of perjury, I declare that I have examined this form, including accompanying attachments, and to the best of my + +knowledge and belief, it is true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all informat +ion of which +preparer has any knowledge. +F +Your signature +F +Date +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer's signature +Date +Check if +self-employed +PTIN +Firm’s name +a +Firm's EIN +a +Firm's address +a +Phone no. +Form +5329 + (2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F5329T.fields.json b/test/data/fd/form/F5329T.fields.json new file mode 100755 index 00000000..b9264f01 --- /dev/null +++ b/test/data/fd/form/F5329T.fields.json @@ -0,0 +1 @@ +[{"id":"ARX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"mask","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"EDTA","type":"number","calc":false,"value":""},{"id":"EDEXCEPT","type":"number","calc":false,"value":""},{"id":"EDADDL","type":"number","calc":true,"value":""},{"id":"EDTAX","type":"number","calc":true,"value":""},{"id":"EYXSC","type":"number","calc":false,"value":""},{"id":"CCRED","type":"number","calc":false,"value":""},{"id":"INCDIST","type":"number","calc":false,"value":""},{"id":"XSCW","type":"number","calc":false,"value":""},{"id":"XSCADJ","type":"number","calc":true,"value":""},{"id":"ADJEYC","type":"number","calc":true,"value":""},{"id":"XSCONT","type":"number","calc":false,"value":""},{"id":"TOTXSC","type":"number","calc":true,"value":""},{"id":"XSCTAX","type":"number","calc":false,"value":""},{"id":"REYXSC","type":"number","calc":false,"value":""},{"id":"RCCRED","type":"number","calc":false,"value":""},{"id":"RINCDIST","type":"number","calc":false,"value":""},{"id":"RXSCADJ","type":"number","calc":true,"value":""},{"id":"RADJEYC","type":"number","calc":true,"value":""},{"id":"RXSCONT","type":"number","calc":false,"value":""},{"id":"RTOTXSC","type":"number","calc":true,"value":""},{"id":"RXSCTAX","type":"number","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"EEYXSC","type":"number","calc":false,"value":""},{"id":"ECCRED","type":"number","calc":false,"value":""},{"id":"EINCDIST","type":"number","calc":false,"value":""},{"id":"EXSCADJ","type":"number","calc":true,"value":""},{"id":"EADJEYC","type":"number","calc":true,"value":""},{"id":"EXSCONT","type":"number","calc":false,"value":""},{"id":"ETOTXSC","type":"number","calc":true,"value":""},{"id":"EXSCTAX","type":"number","calc":false,"value":""},{"id":"MEYXSC","type":"number","calc":false,"value":""},{"id":"MCCRED","type":"number","calc":false,"value":""},{"id":"MINCDIST","type":"number","calc":false,"value":""},{"id":"MXSCADJ","type":"number","calc":true,"value":""},{"id":"MADJEYC","type":"number","calc":true,"value":""},{"id":"MXSCONT","type":"number","calc":false,"value":""},{"id":"MTOTXSC","type":"number","calc":true,"value":""},{"id":"MXSCTAX","type":"number","calc":false,"value":""},{"id":"HEYXSC","type":"number","calc":false,"value":""},{"id":"HCCRED","type":"number","calc":false,"value":""},{"id":"HINCDIST","type":"number","calc":false,"value":""},{"id":"HXSCADJ","type":"number","calc":true,"value":""},{"id":"HADJEYC","type":"number","calc":true,"value":""},{"id":"HXSCONT","type":"number","calc":false,"value":""},{"id":"HTOTXSC","type":"number","calc":true,"value":""},{"id":"HXSCTAX","type":"number","calc":false,"value":""},{"id":"MINREQ","type":"number","calc":false,"value":""},{"id":"ACTDIST","type":"number","calc":false,"value":""},{"id":"XSACC","type":"number","calc":true,"value":""},{"id":"XSACTAX","type":"number","calc":true,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"FIRM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F5329T.json b/test/data/fd/form/F5329T.json new file mode 100755 index 00000000..490fa0a3 --- /dev/null +++ b/test/data/fd/form/F5329T.json @@ -0,0 +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.018,"y":5.081,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.868,"y":5.081,"w":1.5,"l":63.199},{"oc":"#221f1f","x":83.937,"y":2.063,"w":0.75,"l":14.979},{"oc":"#221f1f","x":83.937,"y":5.081,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.018,"y":6.564,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.03,"y":6.564,"w":0.75,"l":19.886},{"oc":"#221f1f","x":28.293,"y":8.063,"w":0.75,"l":60.724},{"oc":"#221f1f","x":88.93,"y":8.063,"w":0.75,"l":9.986},{"oc":"#221f1f","x":28.422,"y":11.251,"w":0.75,"l":50.824},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":97.112,"y":11.001,"w":0.75,"l":1.375},{"oc":"#221f1f","x":97.112,"y":10.501,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":12.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":14.251,"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":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.325,"y":19.501,"w":0.75,"l":6.358},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":22.501,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":22.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.251,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":33.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":11.223},{"oc":"#221f1f","x":76.684,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":34.501,"w":0.75,"l":3.798},{"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":80.397,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":38.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":39.001,"w":0.75,"l":6.273},{"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},{"oc":"#221f1f","x":84.109,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":40.501,"w":0.75,"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":61.834,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":42.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":44.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":57.011},{"oc":"#221f1f","x":63.072,"y":47.251,"w":1.5,"l":24.836},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":20.911,"y":1.298,"w":1.5,"l":2.297},{"oc":"#221f1f","x":20.911,"y":3.565,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.023,"y":1.298,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.023,"y":2.048,"w":1.5,"l":1.827},{"oc":"#221f1f","x":84.023,"y":3.861,"w":1.5,"l":1.251},{"oc":"#221f1f","x":79.073,"y":5.048,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.488,"y":6.482,"w":0.75,"l":6.254},{"oc":"#221f1f","x":88.973,"y":6.548,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.148,"y":8.059,"w":0.75,"l":3.194},{"oc":"#221f1f","x":98.487,"y":10.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":97.112,"y":10.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":54.452,"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":80.44,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":80.44,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":65.59,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":41.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":45.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":45.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":46.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":14.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":21.001,"w":18.562,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":22.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":27.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":30.751,"w":3.712,"h":3,"clr":-1},{"oc":"#221f1f","x":6.19,"y":38.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":40.501,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.811,"y":1.697,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.288,"y":1.697,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5329","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.811,"y":3.5439999999999996,"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.811,"y":4.044,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":33.208,"y":1.227,"w":17.283000000000005,"clr":-1,"A":"left","R":[{"T":"Additional%20Taxes%20on%20Qualified%20Plans%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":25.604,"y":2.102,"w":23.726000000000006,"clr":-1,"A":"left","R":[{"T":"(Including%20IRAs)%20and%20Other%20Tax-Favored%20Accounts","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":39.194,"y":3.212,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.562,"y":3.306,"w":18.171000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.144,"y":3.971,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.908,"y":4.065,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.614,"y":1.036,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.73,"y":2.582,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.7,"y":2.582,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.836,"y":3.604,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.836,"y":4.05,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.814,"y":4.05,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.811,"y":4.732,"w":37.22799999999999,"clr":-1,"A":"left","R":[{"T":"Name%20of%20individual%20subject%20to%20additional%20tax.%20If%20married%20filing%20jointly%2C%20see%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.511,"y":4.732,"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.811,"y":7.646000000000001,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20Your%20Address%20Only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.811,"y":8.271,"w":10.280000000000003,"clr":-1,"A":"left","R":[{"T":"If%20You%20Are%20Filing%20This%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.811,"y":8.896,"w":10.835000000000004,"clr":-1,"A":"left","R":[{"T":"Form%20by%20Itself%20and%20Not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.811,"y":9.521,"w":10.223,"clr":-1,"A":"left","R":[{"T":"With%20Your%20Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.74,"y":8.038,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,50.9994,0,0],"RA":90}]},{"oc":"#221f1f","x":28.773,"y":6.232,"w":37.41699999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street)%2C%20or%20P.O.%20box%20if%20mail%20is%20not%20delivered%20to%20your%20home","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.411,"y":6.232,"w":3.52,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.773,"y":7.7509999999999994,"w":40.615999999999985,"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%20also%20complete%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.773,"y":8.251,"w":15.964000000000004,"clr":-1,"A":"left","R":[{"T":"the%20spaces%20below%20(see%20instructions).","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":9.514,"w":9.559000000000001,"clr":-1,"A":"left","R":[{"T":"If%20this%20is%20an%20amended%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.64,"y":10.202,"w":8.391000000000002,"clr":-1,"A":"left","R":[{"T":"return%2C%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.177,"y":10.108,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.902,"y":10.92,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.89,"y":10.92,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":10.92,"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":12.703,"w":2.741,"clr":-1,"A":"left","R":[{"T":"If%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.779,"y":12.703,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.746,"y":12.703,"w":52.69699999999994,"clr":-1,"A":"left","R":[{"T":"owe%20the%20additional%2010%25%20tax%20on%20early%20distributions%2C%20you%20may%20be%20able%20to%20report%20this%20tax%20directly%20on%20Form%201040%2C%20line%2058%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.93,"y":13.328,"w":53.79399999999994,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2056%2C%20without%20filing%20Form%205329.%20See%20the%20instructions%20for%20Form%201040%2C%20line%2058%2C%20or%20for%20Form%201040NR%2C%20line%2056.","S":3,"TS":[0,12,0,0]}]},{"x":6.838,"y":14.072,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":14.072,"w":17.559,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Early%20Distributions","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":14.678,"w":56.14199999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20took%20a%20taxable%20distribution%20before%20you%20reached%20age%2059%C2%BD%20from%20a%20qualified%20retirement%20plan%20(including%20an","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":13.36,"y":15.24,"w":57.80699999999995,"clr":-1,"A":"left","R":[{"T":"IRA)%20or%20modified%20endowment%20contract%20(unless%20you%20are%20reporting%20this%20tax%20directly%20on%20Form%201040%20or%20Form%201040NR%E2%80%94see%20above).%20You%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":13.351,"y":16.365,"w":21.206000000000003,"clr":-1,"A":"left","R":[{"T":"certain%20Roth%20IRA%20distributions%20(see%20instructions).","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.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":17.09,"w":36.376999999999995,"clr":-1,"A":"left","R":[{"T":"Early%20distributions%20included%20in%20income.%20For%20Roth%20IRA%20distributions%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":17.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%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":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":42.341999999999985,"clr":-1,"A":"left","R":[{"T":"Early%20distributions%20included%20on%20line%201%20that%20are%20not%20subject%20to%20the%20additional%20tax%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.577,"w":27.896000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20appropriate%20exception%20number%20from%20the%20instructions%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":18.59,"w":11.997,"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":"2%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":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":26.526000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20subject%20to%20additional%20tax.%20Subtract%20line%202%20from%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":19.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.09,"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":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":81.616,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.737,"y":20.84,"w":38.896999999999984,"clr":-1,"A":"left","R":[{"T":"If%20any%20part%20of%20the%20amount%20on%20line%203%20was%20a%20distribution%20from%20a%20SIMPLE%20IRA%2C%20you%20may%20have%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":21.527,"w":32.564,"clr":-1,"A":"left","R":[{"T":"to%20include%2025%25%20of%20that%20amount%20on%20line%204%20instead%20of%2010%25%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":22.322,"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.322,"w":31.282000000000004,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Certain%20Distributions%20From%20Education%20Accounts","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":23.203,"w":50.942999999999984,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20included%20an%20amount%20in%20income%2C%20on%20Form%201040%20or%20Form%201040NR%2C%20line%2021%2C%20from%20a%20Coverdell%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.372,"y":23.828,"w":30.912000000000013,"clr":-1,"A":"left","R":[{"T":"education%20savings%20account%20(ESA)%20or%20a%20qualified%20tuition%20program%20(QTP).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.562,"y":24.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.897,"y":24.59,"w":28.580000000000002,"clr":-1,"A":"left","R":[{"T":"Distributions%20included%20in%20income%20from%20Coverdell%20ESAs%20and%20QTPs","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.447,"y":24.59,"w":15.996,"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":"5%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":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":39.69399999999999,"clr":-1,"A":"left","R":[{"T":"Distributions%20included%20on%20line%205%20that%20are%20not%20subject%20to%20the%20additional%20tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":25.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":25.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":25.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.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":26.09,"w":26.526000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20subject%20to%20additional%20tax.%20Subtract%20line%206%20from%20line%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":26.09,"w":17.329,"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":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.777,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.777,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":20.098,"y":26.777,"w":41.55299999999999,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20(.10)%20of%20line%207.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":81.616,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":27.572,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":27.572,"w":28.116,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Traditional%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":28.365,"w":54.75299999999995,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20contributed%20more%20to%20your%20traditional%20IRAs%20for%202013%20than%20is%20allowable%20or%20you%20had%20an%20amount%20on%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.366,"y":28.928,"w":12.395000000000005,"clr":-1,"A":"left","R":[{"T":"17%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.556,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":47.89799999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20excess%20contributions%20from%20line%2016%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2015","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.652,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.652,"w":27.967,"clr":-1,"A":"left","R":[{"T":"If%20your%20traditional%20IRA%20contributions%20for%202013%20are%20less%20than%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.340000000000003,"w":31.616999999999994,"clr":-1,"A":"left","R":[{"T":"maximum%20allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":31.118000000000006,"clr":-1,"A":"left","R":[{"T":"2013%20traditional%20IRA%20distributions%20included%20in%20income%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.567,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%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":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":31.041000000000018,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20of%20prior%20year%20excess%20contributions%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.567,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.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":33.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":33.59,"w":10.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%2C%2011%2C%20and%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":33.59,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%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":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":37.39199999999999,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2013%20from%20line%209.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":34.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.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":35.09,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":35.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%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":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2014%20and%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":35.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.527,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":20.368,"y":36.59,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":32.525,"y":36.59,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":37.384,"y":36.59,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2016%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":42.693,"y":36.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":44.232,"y":36.59,"w":25.266,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20traditional%20IRAs%20on%20December%2031%2C%202013%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":10.884,"y":37.277,"w":50.65099999999996,"clr":-1,"A":"left","R":[{"T":"(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056.","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":81.186,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":38.072,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":38.072,"w":25.281000000000002,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Roth%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":38.89,"w":56.95799999999994,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20contributed%20more%20to%20your%20Roth%20IRAs%20for%202013%20than%20is%20allowable%20or%20you%20had%20an%20amount%20on%20line%2025%20of%20your","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":88.255,"y":38.89,"w":7.894,"clr":-1,"A":"left","R":[{"T":"%202012%20Form%205329.","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":47.89799999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20excess%20contributions%20from%20line%2024%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2023","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":81.186,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":40.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.403,"w":30.341,"clr":-1,"A":"left","R":[{"T":"If%20your%20Roth%20IRA%20contributions%20for%202013%20are%20less%20than%20your%20maximum%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.09,"w":26.946999999999996,"clr":-1,"A":"left","R":[{"T":"allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":41.09,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.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":41.84,"w":25.190000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20Roth%20IRAs%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":41.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2019%20and%2020","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":42.59,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.34,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2021%20from%20line%2018.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":43.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.09,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":44.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.84,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2022%20and%2023","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":44.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":45.59,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":20.01,"y":45.59,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":32.176,"y":45.59,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":37.032,"y":45.59,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2024%20","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":42.566,"y":45.59,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":44.236,"y":45.59,"w":22.692000000000007,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20Roth%20IRAs%20on%20December%2031%2C%202013","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":10.895,"y":46.277,"w":50.37299999999996,"clr":-1,"A":"left","R":[{"T":"(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":81.186,"y":46.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"w":41.010999999999974,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":70.715,"y":47.126,"w":7.522,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013329Q","S":2,"TS":[0,10,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":"5329","S":10,"TS":[0,14,1,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]}]},{"x":28.58,"y":9.022,"w":83.144,"clr":0,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office","S":-1,"TS":[0,11,0,0]}]},{"x":62.837,"y":9.121,"w":18.68,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11,0,0]}]},{"x":70.777,"y":9.121,"w":33.792,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.176,"y":4.065,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%205329%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform5329","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.27,"y":20.09,"w":41.83099999999999,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20(.10)%20of%20line%203.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":13.351,"y":15.803,"w":57.232999999999954,"clr":-1,"A":"left","R":[{"T":"may%20also%20have%20to%20complete%20this%20part%20to%20indicate%20that%20you%20qualify%20for%20an%20exception%20to%20the%20additional%20tax%20on%20early%20distributions%20or%20for%20","S":-1,"TS":[0,11.55,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3883,"AM":1024,"x":6.09,"y":5.645,"w":72.847,"h":0.879,"TU":"Name of individual subject to additional tax. If married filing jointly, see instructions."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3884,"AM":1024,"x":79.205,"y":5.645,"w":19.635,"h":0.879,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":3885,"AM":0,"x":28.8,"y":7.163,"w":59.342,"h":0.833,"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":3886,"AM":0,"x":89.204,"y":7.117,"w":8.663,"h":0.875,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":3887,"AM":0,"x":28.692,"y":10.278,"w":34.73,"h":0.959,"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":3888,"AM":0,"x":64.351,"y":10.33,"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":3889,"AM":0,"x":70.119,"y":10.328,"w":7.881,"h":0.856,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":3891,"AM":0,"x":28.71,"y":11.841,"w":24.729,"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":3892,"AM":0,"x":54.816,"y":11.915,"w":23.396,"h":0.885,"TU":"Foreign province or state or county. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":3893,"AM":0,"x":79.906,"y":11.959,"w":13.244,"h":0.833,"TU":"Foreign postal code. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":3894,"AM":0,"x":84.363,"y":17.272,"w":10.952,"h":0.833,"TU":"Line 1. Early distributions included in income. For Roth IRA distributions, see instructions."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":3895,"AM":0,"x":54.349,"y":18.779,"w":5.986,"h":0.833,"TU":"Line 2. Enter the appropriate exception number from the instructions.","MV":"99"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":3896,"AM":0,"x":84.254,"y":18.709,"w":10.952,"h":0.833,"TU":"Line 2. Early distributions included on line1 that are not subject to the additional tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":3897,"AM":1024,"x":84.253,"y":19.538,"w":10.952,"h":0.833,"TU":"Line 3. Amount subject to additional tax. Subtract line 2 from line 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":3898,"AM":0,"x":84.253,"y":20.288,"w":10.952,"h":0.833,"TU":"Line 4. Additional tax. Enter 10% (.10) of line 3. Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDTA","EN":0},"TI":3899,"AM":0,"x":84.253,"y":24.764,"w":10.952,"h":0.833,"TU":"Line 5. Distributions included in income from Coverdell ESAs and QTPs."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDEXCEPT","EN":0},"TI":3900,"AM":0,"x":84.253,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 6. Distributions included on line 5 that are not subject to the additional tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDADDL","EN":0},"TI":3901,"AM":1024,"x":84.253,"y":26.295,"w":10.952,"h":0.833,"TU":"Line 7. Amount subject to additional tax. Subtract line 6 from line 5. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDTAX","EN":0},"TI":3902,"AM":1024,"x":84.253,"y":27.038,"w":10.952,"h":0.833,"TU":"Line 8. Additional tax. Enter 10% (.10) of line 7. Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EYXSC","EN":0},"TI":3903,"AM":0,"x":84.253,"y":30.038,"w":10.952,"h":0.833,"TU":"Line 9. Enter your excess contributions from line 16 of your 2012 Form 5329 (see instructions). If zero, go to line 15."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CCRED","EN":0},"TI":3904,"AM":0,"x":65.773,"y":31.382,"w":10.787,"h":0.853,"TU":"Line 10. If your traditional IRA contributions for 2013 are less than your maximum allowable contribution, see instructions. Otherwise, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCDIST","EN":0},"TI":3905,"AM":0,"x":65.691,"y":32.288,"w":10.952,"h":0.833,"TU":"Line 11. 2013 traditional IRA distributions included in income (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCW","EN":0},"TI":3906,"AM":0,"x":65.691,"y":33.038,"w":10.952,"h":0.833,"TU":"Line 12. 2013 distributions of prior year excess contributions (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCADJ","EN":0},"TI":3907,"AM":1024,"x":84.398,"y":33.74,"w":10.663,"h":0.833,"TU":"Line 13. Add lines 10, 11 and 12."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJEYC","EN":0},"TI":3908,"AM":1024,"x":84.478,"y":34.538,"w":10.952,"h":0.833,"TU":"Line 14. Prior year excess contributions. Subtract line 13 from line 9. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCONT","EN":0},"TI":3909,"AM":0,"x":84.253,"y":35.315,"w":10.952,"h":0.833,"TU":"Line 15. Excess contributions for 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTXSC","EN":0},"TI":3910,"AM":1024,"x":84.253,"y":36.045,"w":10.952,"h":0.833,"TU":"Line 16. Total excess contributions. Add lines 14 and 15."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSCTAX","EN":0},"TI":3911,"AM":0,"x":84.336,"y":37.229,"w":10.787,"h":0.998,"TU":"Line 17. Additional tax. Enter 6% (.06) of the smaller of line 16 or the value of your traditional IRAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REYXSC","EN":0},"TI":3912,"AM":0,"x":84.253,"y":39.788,"w":10.952,"h":0.833,"TU":"Line 18. Enter your excess contributions from line 24 of your 2012 Form 5329 (see instructions). If zero, go to line 23."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCCRED","EN":0},"TI":3913,"AM":0,"x":65.773,"y":41.187,"w":10.787,"h":0.833,"TU":"Line 19. If your Roth IRA contributions for 2013 are less than your maximum allowable contribution, see instructions. Otherwise, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RINCDIST","EN":0},"TI":3914,"AM":0,"x":65.691,"y":42.038,"w":10.952,"h":0.833,"TU":"Line 20. 2013 distributions from your Roth IRAs (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RXSCADJ","EN":0},"TI":3915,"AM":1024,"x":84.344,"y":42.668,"w":10.92,"h":0.871,"TU":"Line 21. Add lines 19 and 20."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RADJEYC","EN":0},"TI":3916,"AM":1024,"x":84.253,"y":43.538,"w":10.952,"h":0.833,"TU":"Line 22. Prior year excess contributions. Subtract line 21 from line 18. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RXSCONT","EN":0},"TI":3917,"AM":0,"x":84.253,"y":44.26,"w":10.952,"h":0.833,"TU":"Line 23. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RTOTXSC","EN":0},"TI":3918,"AM":1024,"x":84.253,"y":45.045,"w":10.952,"h":0.833,"TU":"Line 24. Total excess contributions. Add lines 22 and 23. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RXSCTAX","EN":0},"TI":3919,"AM":0,"x":84.336,"y":46.365,"w":10.787,"h":0.855,"TU":"Line 25. Additional tax. Enter 6% (.06) of the smaller of line 24 or the value of your Roth IRAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ARX","EN":0},"TI":3890,"AM":0,"x":96.911,"y":10.217,"w":1.89,"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.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":6.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":7.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":8.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":8.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":8.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":10.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":18.751,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":24.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":24.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":26.251,"w":0.75,"l":92.899},{"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":61.834,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":27.001,"w":0.75,"l":3.798},{"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":61.834,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":29.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":33.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":33.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":35.251,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":38.251,"w":1.125,"l":18.648},{"oc":"#221f1f","x":24.709,"y":38.251,"w":1.125,"l":74.336},{"oc":"#221f1f","x":28.422,"y":41.251,"w":0.75,"l":44.636},{"oc":"#221f1f","x":76.684,"y":41.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":42.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.809,"y":42.001,"w":0.75,"l":26.073},{"oc":"#221f1f","x":14.809,"y":43.501,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.797,"y":42.001,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.797,"y":43.501,"w":0.75,"l":26.073},{"oc":"#221f1f","x":66.784,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.784,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":42.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":77.922,"y":43.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.816,"y":42.814,"w":0.75,"l":1.375},{"oc":"#221f1f","x":82.816,"y":42.314,"w":0.75,"l":1.375},{"oc":"#221f1f","x":86.584,"y":42.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":14.809,"y":44.251,"w":0.75,"l":59.486},{"oc":"#221f1f","x":74.209,"y":44.251,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":80.44,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":7.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":7.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":7.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":65.59,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":80.44,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"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":84.152,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"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":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":65.59,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":24.752,"y":38.228,"w":0.75,"l":3.789},{"oc":"#221f1f","x":14.852,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":40.84,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.191,"y":42.314,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.816,"y":42.314,"w":0.75,"l":0.5},{"oc":"#221f1f","x":86.627,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.852,"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":14.852,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":44.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.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":6.001,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":11.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":13.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":16.501,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":21.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":27.001,"w":3.712,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":33.751,"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%205329%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]}]},{"x":6.55,"y":2.822,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":2.822,"w":27.895000000000007,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Coverdell%20ESAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":3.532,"w":54.60199999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20the%20contributions%20to%20your%20Coverdell%20ESAs%20for%202013%20were%20more%20than%20is%20allowable%20or%20you%20had%20an%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.374,"y":4.22,"w":15.618000000000007,"clr":-1,"A":"left","R":[{"T":"on%20line%2033%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.704,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.09,"w":47.342999999999954,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20excess%20contributions%20from%20line%2032%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2031","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":81.186,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":5.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.903,"w":31.651999999999997,"clr":-1,"A":"left","R":[{"T":"If%20the%20contributions%20to%20your%20Coverdell%20ESAs%20for%202013%20were%20less%20than%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":6.59,"w":31.616999999999994,"clr":-1,"A":"left","R":[{"T":"maximum%20allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":27.615000000000006,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20Coverdell%20ESAs%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":7.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.503,"y":7.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":7.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2027%20and%2028","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":8.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2029%20from%20line%2026.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":8.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":9.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":9.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":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2030%20and%2031","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":10.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":11.121,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.675,"y":11.153,"w":9.206000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.524,"y":11.153,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.273,"y":11.153,"w":4.075,"clr":-1,"A":"left","R":[{"T":"of%20line%2032","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.223,"y":11.153,"w":1.556,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.455,"y":11.153,"w":16.316,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20Coverdell%20ESAs%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":11.84,"w":41.99999999999999,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202013%20(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.528,"w":17.17400000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":12.528,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":13.322,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20VI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":13.322,"w":26.727000000000004,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Archer%20MSAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":14.032,"w":54.80699999999997,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20or%20your%20employer%20contributed%20more%20to%20your%20Archer%20MSAs%20for%202013%20than%20is%20allowable%20or%20you%20had%20an%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":14.72,"w":19.28700000000001,"clr":-1,"A":"left","R":[{"T":"amount%20on%20line%2041%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":47.62099999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20excess%20contributions%20from%20line%2040%20of%20your%202012%20Form%205329%20(see%20instructions).%20If%20zero%2C%20go%20to%20line%2039%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":81.186,"y":15.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":16.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.403,"w":29.858,"clr":-1,"A":"left","R":[{"T":"If%20the%20contributions%20to%20your%20Archer%20MSAs%20for%202013%20are%20less%20than%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":17.09,"w":31.894999999999992,"clr":-1,"A":"left","R":[{"T":"maximum%20allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":17.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":17.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":17.84,"w":29.120000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20Archer%20MSAs%20from%20Form%208853%2C%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.503,"y":17.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":17.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":17.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":18.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":18.59,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2035%20and%2036","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":18.59,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":18.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2037%20from%20line%2034.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":19.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.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":20.09,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":20.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%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":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2038%20and%2039","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":20.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":21.621,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.653,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.683,"y":21.653,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.239,"y":21.653,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.647,"y":21.653,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2040%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.953,"y":21.653,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.672,"y":21.653,"w":15.002000000000002,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20Archer%20MSAs%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":22.34,"w":41.99999999999999,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202013%20(including%202013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":23.028,"w":17.17400000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.95,"y":23.028,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"x":6.043,"y":23.822,"w":3.48,"clr":1,"A":"left","R":[{"T":"Part%20VII","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":23.822,"w":36.062000000000005,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Contributions%20to%20Health%20Savings%20Accounts%20(HSAs)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.365,"y":24.532,"w":52.16099999999995,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%2C%20someone%20on%20your%20behalf%2C%20or%20your%20employer%20contributed%20more%20to%20your%20HSAs%20for%202013%20than%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.369,"y":25.22,"w":30.19500000000001,"clr":-1,"A":"left","R":[{"T":"allowable%20or%20you%20had%20an%20amount%20on%20line%2049%20of%20your%202012%20Form%205329.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.699,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.894,"y":26.09,"w":39.50899999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20excess%20contributions%20from%20line%2048%20of%20your%202012%20Form%205329.%20If%20zero%2C%20go%20to%20line%2047","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.009,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.071,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.133,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.903,"w":31.157000000000004,"clr":-1,"A":"left","R":[{"T":"If%20the%20contributions%20to%20your%20HSAs%20for%202013%20are%20less%20than%20the%20maximum%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":27.59,"w":26.946999999999996,"clr":-1,"A":"left","R":[{"T":"allowable%20contribution%2C%20see%20instructions.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.37,"y":27.59,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":26.305000000000007,"clr":-1,"A":"left","R":[{"T":"2013%20distributions%20from%20your%20HSAs%20from%20Form%208889%2C%20line%2016","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":28.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2043%20and%2044","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":29.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%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":"46%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":37.947999999999986,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20excess%20contributions.%20Subtract%20line%2045%20from%20line%2042.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":29.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":21.151000000000014,"clr":-1,"A":"left","R":[{"T":"Excess%20contributions%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":30.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":21.208999999999996,"clr":-1,"A":"left","R":[{"T":"Total%20excess%20contributions.%20Add%20lines%2046%20and%2047","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":31.340000000000003,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":20.079,"y":32.09,"w":9.484000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%206%25%20(.06)%20of%20the%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":32.289,"y":32.09,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":37.262,"y":32.09,"w":4.353,"clr":-1,"A":"left","R":[{"T":"of%20line%2048%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":42.568,"y":32.09,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":44.393,"y":32.09,"w":20.988000000000003,"clr":-1,"A":"left","R":[{"T":"the%20value%20of%20your%20HSAs%20on%20December%2031%2C%202013%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":10.895,"y":32.778,"w":4.574999999999999,"clr":-1,"A":"left","R":[{"T":"(including%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":17.351,"y":32.778,"w":45.79799999999998,"clr":-1,"A":"left","R":[{"T":"2013%20contributions%20made%20in%202014).%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":9,"TS":[0,12,1,0]}]},{"x":5.94,"y":33.572,"w":3.775,"clr":1,"A":"left","R":[{"T":"Part%20VIII","S":-1,"TS":[0,12.6,0,0]}]},{"oc":"#221f1f","x":13.674,"y":33.572,"w":41.12099999999996,"clr":-1,"A":"left","R":[{"T":"Additional%20Tax%20on%20Excess%20Accumulation%20in%20Qualified%20Retirement%20Plans%20(Including%20IRAs)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":34.251,"w":49.12499999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20did%20not%20receive%20the%20minimum%20required%20distribution%20from%20your%20qualified%20retirement%20plan.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":25.489000000000004,"clr":-1,"A":"left","R":[{"T":"Minimum%20required%20distribution%20for%202013%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":35.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%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":"51%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":18.896000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20actually%20distributed%20to%20you%20in%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":35.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"51%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"52%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2051%20from%20line%2050.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":36.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"52%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.278,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"53%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.278,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":-1,"TS":[0,11.01,1,0]}]},{"oc":"#221f1f","x":20.16,"y":37.278,"w":42.108999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20(.50)%20of%20line%2052.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2058%2C%20or%20Form%201040NR%2C%20line%2056","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":81.186,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"53%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":38.489,"w":10.503000000000002,"clr":-1,"A":"left","R":[{"T":"Sign%20Here%20Only%20If%20You%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":39.164,"w":11.447000000000001,"clr":-1,"A":"left","R":[{"T":"Are%20Filing%20This%20Form%20by%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":39.839,"w":11.612000000000002,"clr":-1,"A":"left","R":[{"T":"Itself%20and%20Not%20With%20Your%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":40.514,"w":5.223000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.19,"y":37.951,"w":57.089999999999954,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20form%2C%20including%20accompanying%20attachments%2C%20and%20to%20the%20best%20of%20my","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.198,"y":38.388,"w":55.06299999999996,"clr":-1,"A":"left","R":[{"T":"knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.%20Declaration%20of%20preparer%20(other%20than%20taxpayer)%20is%20based%20on%20all%20informat","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.857,"y":38.388,"w":5.963000000000001,"clr":-1,"A":"left","R":[{"T":"ion%20of%20%20which%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.199,"y":38.826,"w":12.964000000000004,"clr":-1,"A":"left","R":[{"T":"preparer%20has%20any%20knowledge.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.105,"y":39.869,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":28.902,"y":40.97,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.261,"y":39.869,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":76.477,"y":40.97,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.186,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":42.936,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":43.686,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":15.29,"y":41.689,"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.933,"y":41.689,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer's%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.265,"y":41.689,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.402,"y":42.089,"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.402,"y":42.589,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.721,"y":41.689,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.29,"y":43.376,"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.939,"y":43.313,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.69,"y":43.376,"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.929,"y":43.313,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":15.29,"y":44.126,"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.936,"y":44.063,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.69,"y":44.126,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":44.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5329","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":44.822,"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":3920,"AM":1024,"x":16.677,"y":1.959,"w":57.95,"h":0.982,"TU":"Name of individual subject to additional tax. If married filing jointly, see instructions."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":3921,"AM":1024,"x":74.895,"y":1.959,"w":19.635,"h":0.982,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EEYXSC","EN":0},"TI":3922,"AM":0,"x":84.253,"y":5.288,"w":10.952,"h":0.833,"TU":"Line 26. Enter the excess contributions from line 32 of your 2012 Form 5329 (see instructions). If zero, go to line 31."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ECCRED","EN":0},"TI":3923,"AM":0,"x":65.773,"y":6.632,"w":10.787,"h":0.853,"TU":"Line 27. If the contributions to your Coverdell ESAs for 2013 were less than the maximum allowable contribution, see instructions. Otherwise, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EINCDIST","EN":0},"TI":3924,"AM":0,"x":65.853,"y":7.535,"w":10.695,"h":0.833,"TU":"Line 28. 2013 distributions from your Coverdell ESAs (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXSCADJ","EN":0},"TI":3925,"AM":1024,"x":84.34,"y":8.207,"w":10.695,"h":0.833,"TU":"Line 29. Add lines 27 and 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EADJEYC","EN":0},"TI":3926,"AM":1024,"x":84.295,"y":9.042,"w":10.952,"h":0.833,"TU":"Line 30. Prior year excess contributions. Subtract line 29 from line 26. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXSCONT","EN":0},"TI":3927,"AM":0,"x":84.336,"y":9.769,"w":10.952,"h":0.833,"TU":"Line 31. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ETOTXSC","EN":0},"TI":3928,"AM":1024,"x":84.377,"y":10.55,"w":10.952,"h":0.833,"TU":"Line 32. Total excess contributions. Add lines 30 and 31.Line 34. Enter the excess contributions from line 40 of your 2012 Form 5329 (see instructions). If zero, go to line 39."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXSCTAX","EN":0},"TI":3929,"AM":0,"x":84.42,"y":12.55,"w":10.746,"h":0.939,"TU":"Line 33. Additional tax. Enter 6% (.06) of the smaller of line 32 or the value of your Coverdell ESAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MEYXSC","EN":0},"TI":3930,"AM":0,"x":84.419,"y":15.845,"w":10.952,"h":0.833,"TU":"Line 32. Total excess contributions. Add lines 30 and 31.Line 34. Enter the excess contributions from line 40 of your 2012 Form 5329 (see instructions). If zero, go to line 39."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MCCRED","EN":0},"TI":3931,"AM":0,"x":65.575,"y":17.256,"w":10.952,"h":0.833,"TU":"Line 35. If the contributions to your Archer MSAs for 2013 are less than the maximum allowable contribution, see instructions. Otherwise enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MINCDIST","EN":0},"TI":3932,"AM":0,"x":65.605,"y":18.076,"w":10.952,"h":0.833,"TU":"Line 36. 2013 distributions from your Archer MSAs from Form 8853, line 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MXSCADJ","EN":0},"TI":3933,"AM":1024,"x":84.392,"y":18.709,"w":10.952,"h":0.833,"TU":"Line 37. Add lines 35 and 36."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MADJEYC","EN":0},"TI":3934,"AM":1024,"x":84.253,"y":19.538,"w":10.952,"h":0.833,"TU":"Line 38. Prior year excess contributions. Subtract line 37 from line 34. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MXSCONT","EN":0},"TI":3935,"AM":0,"x":84.253,"y":20.288,"w":10.952,"h":0.833,"TU":"Line 39. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MTOTXSC","EN":0},"TI":3936,"AM":1024,"x":84.253,"y":21.045,"w":10.952,"h":0.833,"TU":"Line 40. Total excess contributions. Add lines 38 and 39."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MXSCTAX","EN":0},"TI":3937,"AM":0,"x":84.281,"y":23.042,"w":10.746,"h":0.993,"TU":"Line 41. Additional tax. Enter 6% (.06) of the smaller of line 40 or the value of your Archer MSAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HEYXSC","EN":0},"TI":3938,"AM":0,"x":84.253,"y":26.288,"w":10.952,"h":0.833,"TU":"Line 42. Enter the excess contributions from line 48 of your 2012 Form 5329. If zero, go to line 47."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HCCRED","EN":0},"TI":3939,"AM":0,"x":65.773,"y":27.632,"w":10.787,"h":0.853,"TU":"Line 43. If the contributions to your HSAs for 2013 are less than the maximum allowable contribution, see instructions. Otherwise enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HINCDIST","EN":0},"TI":3940,"AM":0,"x":65.691,"y":28.538,"w":10.952,"h":0.833,"TU":"Line 44. 2013 distributions from your HSAs from Form 8889. line 16."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HXSCADJ","EN":0},"TI":3941,"AM":1024,"x":84.398,"y":29.089,"w":10.663,"h":0.866,"TU":"Line 45. Add lines 43 and 44."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HADJEYC","EN":0},"TI":3942,"AM":1024,"x":84.253,"y":30.045,"w":10.952,"h":0.833,"TU":"Line 46. Prior year excess contributions. Subtract line 45 from line 42. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HXSCONT","EN":0},"TI":3943,"AM":0,"x":84.253,"y":30.788,"w":10.952,"h":0.833,"TU":"Line 47. Excess contributions for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HTOTXSC","EN":0},"TI":3944,"AM":1024,"x":84.253,"y":31.545,"w":10.952,"h":0.833,"TU":"Line 48. Total excess contributions. Add lines 46 and 47."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HXSCTAX","EN":0},"TI":3945,"AM":0,"x":84.336,"y":32.784,"w":10.787,"h":0.889,"TU":"Line 49. Additional tax. Enter 6% (.06) of the smaller of line 48 or the value of your HSAs on December 31, 2013 (including 2013 contributions made in 2014). Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MINREQ","EN":0},"TI":3946,"AM":0,"x":84.253,"y":35.288,"w":10.952,"h":0.833,"TU":"Line 50. Minimum required distribution for 2013 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ACTDIST","EN":0},"TI":3947,"AM":0,"x":84.253,"y":36.038,"w":10.952,"h":0.833,"TU":"Line 51. Amount acutally distributed to you in 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSACC","EN":0},"TI":3948,"AM":1024,"x":84.253,"y":36.795,"w":10.952,"h":0.833,"TU":"Line 52. Subtract line 51 from line 50. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XSACTAX","EN":0},"TI":3949,"AM":1024,"x":84.253,"y":37.538,"w":10.952,"h":0.833,"TU":"Line 53. Additonal tax. Enter 50% (.50) of line 52. Include this amount on Form 1040, line 58."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":3950,"AM":1024,"x":41.135,"y":42.657,"w":25.446,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRM","EN":0},"TI":3951,"AM":1024,"x":25.582,"y":43.615,"w":27.152,"h":0.833,"V":"Self-prepared"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F5405.content.txt b/test/data/fd/form/F5405.content.txt new file mode 100755 index 00000000..f1ccccf6 --- /dev/null +++ b/test/data/fd/form/F5405.content.txt @@ -0,0 +1,142 @@ +Form +5405 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Repayment of the First-Time + Homebuyer Credit +a + +Attach to Form 1040, Form 1040NR, or Form 1040X. + + +a + +. +OMB No. 1545-0074 +Attachment +Sequence No. +58 +Name(s) shown on return +Your social security number +Part I +Disposition or Change in Use of Main Home for Which the Credit Was Claimed +1 +Enter the date you disposed of, or ceased using as your main home, the home for which you claimed the +credit (MM/DD/YYYY) (see instructions) +....................... +2 +If you meet the following conditions, check here +......................... +a +community. I sold the home, or it ceased to be my main home, in connection with Government orders for qualified official +extended duty service. No repayment of the credit is required (see instructions). Stop here. +3 +Check the box below that applies to you. See the instructions for the definition of “related person.” +a +III below). Go to Part II below. +b +in Part III below). No repayment of the credit is required. Stop here. +c +I sold the home to a related person OR I gave the home to someone other than my spouse (or ex-spouse as part of my divorce +settlement). Go to Part II below. +d +below. +e +I transferred the home to my spouse (or ex-spouse as part of my divorce settlement). The full name of my ex-spouse is +a +The responsibility for repayment of the credit is transferred to your spouse or ex-spouse. Stop here. +f +My home was destroyed, condemned, or sold under threat of condemnation and I had a gain (see instructions). +g +My home was destroyed, condemned, or sold under threat of condemnation and I did not have a gain (see instructions). +h +a joint return for 2013 with the deceased taxpayer, see instructions. Otherwise, stop here. +Part II +Repayment of the Credit +4 +Enter the amount of the credit you claimed on Form 5405 for a prior year. See instructions if you filed a joint +return for the year you claimed the credit or you checked the box on line 3f or 3g . . . . . . . . . +4 +5 +If you purchased the home in 2008, enter the amount of the credit you repaid with your 2010, 2011, and +2012 returns. Otherwise, enter -0- +...................... +5 +6 +Subtract line 5 from line 4. If you checked the box on line 3f or 3g, see instructions. If you checked the +box on line 3a, go to line 7. Otherwise, skip line 7 and go to line 8 +............ +6 +7 +Enter the gain on the disposition of your main home (from line 15 below) +.......... +7 +8 Amount of the credit to be repaid. + See instructions . +............... +8 +Next: +Enter the amount from line 8 on your 2013 Form 1040, line 59b, or Form 1040NR, line 58b. +Part III +Form 5405 Gain or (Loss) Worksheet +Note: +Complete this part only if your home was destroyed or you sold your home to someone who is not related to you (including a +lines 9, 10, and 12. But if you sold your home through condemnation, see chapter 1 in Pub. 544, Sales and Other Dispositions of + +Assets, for information on what to enter on lines 9 and 10. +9 +Selling price of home, insurance proceeds, or gross condemnation award +.......... +9 +10 +Selling expenses (including commissions, advertising and legal fees, and seller-paid loan charges) or +expenses in getting the condemnation award +................... +10 +11 +Subtract line 10 from line 9. This is the amount realized on the sale of the home . +....... +11 +12 +Adjusted basis of home sold (from line 13 of Worksheet 1 in Pub. 523) +........... +12 +13 +Enter the first-time homebuyer credit claimed on Form 5405 +minus + the amount of the credit you repaid +with your 2010, 2011, and 2012 tax returns +................... +13 +14 +Subtract line 13 from line 12. This is the adjusted basis for purposes of repaying the credit +.... +14 +15 +Subtract line 14 from line 11 +....................... +15 +• If line 15 is more than -0-, you have a gain. Check the box on line 3a and complete Part II. +However, +check the box on line 3f (instead of the box on line 3a) if your home was destroyed or you sold the home +through condemnation or under threat of condemnation. Then complete Part II if you purchased the +home in 2008 or you purchased the home after 2008 and the event occurred in 2011. + +• If line 15 is -0- or less, check the box on line 3b of Form 5405. However, if your home was destroyed +or you sold the home through condemnation or under threat of condemnation, check the box on line 3g +instead. You do not have to repay the credit. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11880I +Form +5405 + (Rev. 12-2013) +a +Information about Form 5405 and its separate instructions is at www.irs.gov/form5405 +I sold (including through foreclosure) the home to a person who is not related to me and did not have a gain on the sale (as figured +I sold (including through foreclosure) the home to a person who is not related to me and had a gain on the sale (as figured in Part +I (or my spouse if married) am, or was, a member of the uniformed services or Foreign Service, or an employee of the intelligence +I converted the entire home to a rental or business use OR I still own the home but no longer use it as my main home. Go to Part II +The taxpayer who claimed the credit died in 2013. No repayment of the credit is required of the deceased taxpayer. If you are filing +sale through condemnation or under threat of condemnation). See Pub. 523, Selling Your Home, for information on what to enter on +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F5405.fields.json b/test/data/fd/form/F5405.fields.json new file mode 100755 index 00000000..5868c438 --- /dev/null +++ b/test/data/fd/form/F5405.fields.json @@ -0,0 +1 @@ +[{"id":"A4RB","type":"radio","calc":false,"value":"MILX"},{"id":"A4RB","type":"radio","calc":false,"value":"HADGAIN"},{"id":"A4RB","type":"radio","calc":false,"value":"NOGAIN"},{"id":"A4RB","type":"radio","calc":false,"value":"RELATED"},{"id":"A4RB","type":"radio","calc":false,"value":"CONVERT"},{"id":"A4RB","type":"radio","calc":false,"value":"TRANSFER"},{"id":"A4RB","type":"radio","calc":false,"value":"REPURCH"},{"id":"A4RB","type":"radio","calc":false,"value":"NOREPURC"},{"id":"A4RB","type":"radio","calc":false,"value":"DECEASED"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"CEASEDAT","type":"date","calc":false,"value":""},{"id":"EXSPOUSE","type":"alpha","calc":false,"value":""},{"id":"PY5405","type":"number","calc":false,"value":""},{"id":"CRRPD","type":"number","calc":false,"value":""},{"id":"CRDSUB","type":"number","calc":true,"value":""},{"id":"GAIN","type":"number","calc":false,"value":""},{"id":"LESSER","type":"number","calc":false,"value":""},{"id":"SALESPR","type":"number","calc":false,"value":""},{"id":"SALESEXP","type":"number","calc":false,"value":""},{"id":"AMTREAL","type":"number","calc":true,"value":""},{"id":"ADJBAS","type":"number","calc":false,"value":""},{"id":"CRMINUS","type":"number","calc":false,"value":""},{"id":"ADJBASIS","type":"number","calc":true,"value":""},{"id":"WKSGAIN","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F5405.json b/test/data/fd/form/F5405.json new file mode 100755 index 00000000..0bba4ca5 --- /dev/null +++ b/test/data/fd/form/F5405.json @@ -0,0 +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.751,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":86.584,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":13.572,"y":20.251,"w":0.75,"l":85.474},{"oc":"#221f1f","x":6.147,"y":24.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":31.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":32.25,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"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":37.502,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.502,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":39.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":41.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":41.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":41.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":47.251,"w":1.5,"l":31.023},{"oc":"#221f1f","x":82.872,"y":47.251,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"oc":"#221f1f","x":21.04,"y":4.132,"w":1.5,"l":1.151},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":3.757,"w":1.5,"l":1.524},{"oc":"#221f1f","x":77.965,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":1.531},{"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":84.152,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":1.531},{"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":84.152,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":35.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"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":"#221f1f","x":6.19,"y":24.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":31.5,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5405","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.2720000000000002,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8760000000000003,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.313,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":37.114,"y":2.101,"w":13.780000000000003,"clr":-1,"A":"left","R":[{"T":"Repayment%20of%20the%20First-Time%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":42.336,"y":2.976,"w":9.224000000000002,"clr":-1,"A":"left","R":[{"T":"%20Homebuyer%20Credit%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":34.734,"y":3.66,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.339,"y":3.7539999999999996,"w":24.396000000000004,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20or%20Form%201040X.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.178,"y":4.223,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.133,"y":4.316,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.348,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.7510000000000003,"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.259,"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.259,"w":1.112,"clr":-1,"A":"left","R":[{"T":"58","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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.402,"y":4.938,"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.588,"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.572,"w":37.11699999999999,"clr":-1,"A":"left","R":[{"T":"Disposition%20or%20Change%20in%20Use%20of%20Main%20Home%20for%20Which%20the%20Credit%20Was%20Claimed","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.602,"y":7.305,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":7.305,"w":47.01299999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20you%20disposed%20of%2C%20or%20ceased%20using%20as%20your%20main%20home%2C%20the%20home%20for%20which%20you%20claimed%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.9,"y":7.993,"w":17.575000000000003,"clr":-1,"A":"left","R":[{"T":"credit%20(MM%2FDD%2FYYYY)%20(see%20instructions)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":36.887,"y":7.993,"w":32.475999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":8.849,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":8.849,"w":21.63299999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20meet%20the%20following%20conditions%2C%20check%20here%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":43.065,"y":8.849,"w":36.71199999999998,"clr":-1,"A":"left","R":[{"T":".........................%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":94.699,"y":8.756,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":10.305,"w":54.32899999999997,"clr":-1,"A":"left","R":[{"T":"community.%20I%20sold%20the%20home%2C%20or%20it%20ceased%20to%20be%20my%20main%20home%2C%20in%20connection%20with%20Government%20orders%20for%20qualified%20official%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":10.993,"w":40.43299999999998,"clr":-1,"A":"left","R":[{"T":"extended%20duty%20service.%20No%20repayment%20of%20the%20credit%20is%20required%20(see%20instructions).%20Stop%20here.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.603,"y":11.849,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.849,"w":44.00699999999998,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20below%20that%20applies%20to%20you.%20See%20the%20instructions%20for%20the%20definition%20of%20%E2%80%9Crelated%20person.%E2%80%9D","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.415,"y":12.599,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.362,"y":13.243,"w":13.201000000000002,"clr":-1,"A":"left","R":[{"T":"III%20below).%20Go%20to%20Part%20II%20below.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.412,"y":14.099,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.369,"y":14.743,"w":29.89199999999999,"clr":-1,"A":"left","R":[{"T":"in%20Part%20III%20below).%20No%20repayment%20of%20the%20credit%20is%20required.%20Stop%20here.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.419,"y":15.599,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.365,"y":15.555,"w":56.792999999999964,"clr":-1,"A":"left","R":[{"T":"I%20sold%20the%20home%20to%20a%20related%20person%20OR%20I%20gave%20the%20home%20to%20someone%20other%20than%20my%20spouse%20(or%20ex-spouse%20as%20part%20of%20my%20divorce%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.354,"y":16.243,"w":14.149000000000006,"clr":-1,"A":"left","R":[{"T":"settlement).%20Go%20to%20Part%20II%20below.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.405,"y":17.099,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.353,"y":17.743,"w":2.962,"clr":-1,"A":"left","R":[{"T":"below.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.403,"y":18.599,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.365,"y":18.599,"w":53.197999999999965,"clr":-1,"A":"left","R":[{"T":"I%20transferred%20the%20home%20to%20my%20spouse%20(or%20ex-spouse%20as%20part%20of%20my%20divorce%20settlement).%20The%20full%20name%20of%20my%20ex-spouse%20is%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":91.082,"y":18.505,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":20.099,"w":44.46899999999998,"clr":-1,"A":"left","R":[{"T":"The%20responsibility%20for%20repayment%20of%20the%20credit%20is%20transferred%20to%20your%20spouse%20or%20ex-spouse.%20Stop%20here.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.849,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.365,"y":20.849,"w":49.64299999999995,"clr":-1,"A":"left","R":[{"T":"My%20home%20was%20destroyed%2C%20condemned%2C%20or%20sold%20under%20threat%20of%20condemnation%20and%20I%20had%20a%20gain%20(see%20instructions).","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.415,"y":21.599,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.365,"y":21.599,"w":53.495999999999945,"clr":-1,"A":"left","R":[{"T":"My%20home%20was%20destroyed%2C%20condemned%2C%20or%20sold%20under%20threat%20of%20condemnation%20and%20I%20did%20not%20have%20a%20gain%20(see%20instructions).","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":8.415,"y":22.349,"w":0.889,"clr":-1,"A":"left","R":[{"T":"h%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":13.373,"y":22.993,"w":39.93199999999999,"clr":-1,"A":"left","R":[{"T":"a%20joint%20return%20for%202013%20with%20the%20deceased%20taxpayer%2C%20see%20instructions.%20Otherwise%2C%20stop%20here.","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.584,"y":23.823,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":23.823,"w":11.835000000000003,"clr":-1,"A":"left","R":[{"T":"Repayment%20of%20the%20Credit%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.602,"y":24.555,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.555,"w":48.51099999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20the%20credit%20you%20claimed%20on%20Form%205405%20for%20a%20prior%20year.%20%20See%20instructions%20if%20you%20filed%20a%20joint%20","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":10.899,"y":25.243,"w":36.22999999999999,"clr":-1,"A":"left","R":[{"T":"return%20for%20the%20year%20you%20claimed%20the%20%20credit%20or%20you%20checked%20the%20box%20on%20line%203f%20or%203g","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":61.637,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":63.699,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":65.762,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":67.824,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":69.886,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":71.949,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":74.011,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":76.074,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":78.136,"y":25.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":81.64,"y":25.349,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.602,"y":26.055,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":26.055,"w":46.535999999999966,"clr":-1,"A":"left","R":[{"T":"If%20you%20purchased%20the%20home%20in%202008%2C%20enter%20the%20amount%20of%20the%20credit%20you%20repaid%20with%20your%202010%2C%202011%2C%20and%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.879,"y":26.743,"w":15.152000000000005,"clr":-1,"A":"left","R":[{"T":"2012%20returns.%20Otherwise%2C%20enter%20-0-","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":34.804,"y":26.743,"w":31.063999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.64,"y":26.849,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.602,"y":27.555,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":27.555,"w":45.84499999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204.%20If%20you%20checked%20the%20box%20on%20line%203f%20or%203g%2C%20see%20instructions.%20If%20you%20checked%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.901,"y":28.243,"w":29.396000000000004,"clr":-1,"A":"left","R":[{"T":"box%20%20on%20line%203a%2C%20go%20to%20line%207.%20Otherwise%2C%20skip%20line%207%20and%20go%20to%20line%208","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":55.451,"y":28.243,"w":16.943999999999996,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.64,"y":28.349,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.602,"y":29.099,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":29.099,"w":32.37800000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20gain%20on%20the%20disposition%20of%20your%20main%20home%20(from%20line%2015%20below)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.565,"y":29.099,"w":14.119999999999997,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.64,"y":29.099,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.602,"y":29.849,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":29.849,"w":16.002000000000006,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20the%20credit%20to%20be%20repaid.","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":32.823,"y":29.849,"w":7.464,"clr":-1,"A":"left","R":[{"T":"%20See%20instructions","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":45.643,"y":29.849,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":49.252,"y":29.849,"w":21.179999999999993,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.64,"y":29.849,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.599,"w":2.7780000000000005,"clr":-1,"A":"left","R":[{"T":"Next%3A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":14.922,"y":30.599,"w":40.36899999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%208%20on%20your%202013%20Form%201040%2C%20line%2059b%2C%20or%20Form%201040NR%2C%20line%2058b.","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.331,"y":31.322000000000003,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":31.322000000000003,"w":17.449000000000005,"clr":-1,"A":"left","R":[{"T":"Form%205405%20Gain%20or%20(Loss)%20Worksheet","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.193,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.131,"y":32.193,"w":55.93699999999994,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20your%20home%20was%20destroyed%20or%20you%20sold%20your%20home%20to%20someone%20who%20is%20not%20related%20to%20you%20(including%20a%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.892,"y":33.442,"w":57.27899999999997,"clr":-1,"A":"left","R":[{"T":"lines%209%2C%2010%2C%20and%2012.%20But%20if%20you%20sold%20your%20home%20through%20condemnation%2C%20see%20chapter%201%20in%20Pub.%20544%2C%20Sales%20and%20Other%20Dispositions%20of","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.878,"y":34.067,"w":26.117,"clr":-1,"A":"left","R":[{"T":"Assets%2C%20for%20information%20on%20what%20to%20enter%20on%20lines%209%20and%2010.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.591,"y":35.098,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.878,"y":35.098,"w":33.023,"clr":-1,"A":"left","R":[{"T":"Selling%20price%20of%20home%2C%20insurance%20proceeds%2C%20or%20gross%20condemnation%20award%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.553,"y":35.098,"w":14.119999999999997,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.64,"y":35.099,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.79,"y":35.805,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":35.805,"w":45.15399999999999,"clr":-1,"A":"left","R":[{"T":"Selling%20expenses%20(including%20commissions%2C%20advertising%20and%20legal%20fees%2C%20and%20seller-paid%20loan%20charges)%20or%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.895,"y":36.493,"w":20.393,"clr":-1,"A":"left","R":[{"T":"expenses%20in%20getting%20the%20condemnation%20award%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":41.008,"y":36.493,"w":26.82799999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.234,"y":36.599,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.79,"y":37.349,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":37.349,"w":36.157999999999994,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20%20line%209.%20This%20is%20the%20amount%20realized%20on%20the%20sale%20of%20the%20home%20.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":65.752,"y":37.349,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.234,"y":37.349,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.79,"y":38.099,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":38.099,"w":31.453999999999997,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20of%20home%20sold%20(from%20line%2013%20of%20Worksheet%201%20in%20Pub.%20523)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.502,"y":38.099,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.234,"y":38.099,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.79,"y":38.805,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":38.805,"w":27.009000000000015,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20first-time%20homebuyer%20credit%20claimed%20on%20Form%205405%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":48.335,"y":38.805,"w":2.9450000000000003,"clr":-1,"A":"left","R":[{"T":"minus","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":52.616,"y":38.805,"w":16.283,"clr":-1,"A":"left","R":[{"T":"%20the%20amount%20of%20the%20credit%20you%20repaid%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.891,"y":39.493,"w":19.452000000000005,"clr":-1,"A":"left","R":[{"T":"with%20your%202010%2C%202011%2C%20and%202012%20tax%20returns%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":41.004,"y":39.493,"w":26.82799999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.234,"y":39.599,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.79,"y":40.349,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":40.349,"w":40.71299999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20%20from%20line%2012.%20This%20is%20the%20adjusted%20basis%20for%20purposes%20of%20repaying%20the%20credit%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":71.939,"y":40.349,"w":5.648,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.234,"y":40.349,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.79,"y":41.099,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.889,"y":41.099,"w":14.246000000000008,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014%20%20from%20line%2011%20%20%20%20%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":32.752,"y":41.099,"w":32.475999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.234,"y":41.099,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.93,"w":41.08599999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2015%20is%20more%20than%20-0-%2C%20you%20have%20a%20gain.%20Check%20the%20box%20on%20line%203a%20and%20complete%20Part%20II.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":67.568,"y":41.93,"w":4.724,"clr":-1,"A":"left","R":[{"T":"However%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.894,"y":42.618,"w":46.824999999999974,"clr":-1,"A":"left","R":[{"T":"check%20the%20box%20on%20line%203f%20(instead%20of%20the%20box%20on%20line%203a)%20if%20your%20home%20was%20destroyed%20or%20you%20sold%20the%20home%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.898,"y":43.305,"w":44.71699999999998,"clr":-1,"A":"left","R":[{"T":"through%20condemnation%20or%20under%20threat%20of%20condemnation.%20Then%20complete%20Part%20II%20if%20you%20purchased%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.903,"y":43.993,"w":38.51599999999998,"clr":-1,"A":"left","R":[{"T":"home%20in%202008%20or%20you%20purchased%20the%20home%20after%202008%20and%20the%20event%20occurred%20in%202011.%20%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.903,"y":44.868,"w":45.91599999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2015%20is%20-0-%20or%20less%2C%20check%20the%20box%20on%20line%203b%20of%20Form%205405.%20However%2C%20if%20your%20home%20was%20destroyed%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.897,"y":45.555,"w":46.44099999999997,"clr":-1,"A":"left","R":[{"T":"or%20you%20sold%20the%20home%20through%20condemnation%20or%20under%20threat%20of%20condemnation%2C%20check%20the%20box%20on%20line%203g%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.897,"y":46.242,"w":19.894,"clr":-1,"A":"left","R":[{"T":"instead.%20You%20do%20not%20have%20to%20repay%20the%20credit.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"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":62.972,"y":47.126,"w":7.021000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011880I","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":47.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":47.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5405","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.572,"y":47.072,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.572,"y":8.028,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":24.782,"y":4.316,"w":40.84499999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%205405%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform5405","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":13.365,"y":14.055,"w":58.36399999999994,"clr":-1,"A":"left","R":[{"T":"I%20sold%20(including%20through%20foreclosure)%20the%20home%20to%20a%20person%20who%20is%20not%20related%20to%20me%20and%20did%20not%20have%20a%20gain%20on%20the%20sale%20(as%20figured%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":12.555,"w":57.95599999999995,"clr":-1,"A":"left","R":[{"T":"I%20sold%20(including%20through%20foreclosure)%20the%20home%20to%20a%20person%20who%20is%20not%20related%20to%20me%20and%20had%20a%20gain%20on%20the%20sale%20(as%20figured%20%20in%20Part%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":9.618,"w":57.78699999999994,"clr":-1,"A":"left","R":[{"T":"I%20(or%20my%20spouse%20if%20married)%20am%2C%20or%20was%2C%20a%20member%20of%20the%20uniformed%20services%20or%20Foreign%20Service%2C%20or%20an%20employee%20of%20the%20intelligence%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":17.055,"w":58.62699999999995,"clr":-1,"A":"left","R":[{"T":"I%20converted%20the%20entire%20home%20to%20a%20rental%20or%20business%20use%20OR%20I%20still%20own%20the%20home%20but%20no%20longer%20use%20it%20as%20my%20main%20home.%20Go%20%20to%20Part%20II%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":22.305,"w":58.54699999999995,"clr":-1,"A":"left","R":[{"T":"The%20taxpayer%20who%20claimed%20the%20credit%20died%20in%202013.%20No%20repayment%20of%20the%20credit%20is%20required%20of%20the%20deceased%20taxpayer.%20If%20you%20are%20filing%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.901,"y":32.817,"w":59.03299999999994,"clr":-1,"A":"left","R":[{"T":"sale%20through%20condemnation%20or%20under%20threat%20of%20condemnation).%20See%20Pub.%20523%2C%20Selling%20Your%20Home%2C%20for%20information%20on%20what%20to%20enter%20on%20","S":-1,"TS":[0,11.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":3952,"AM":1024,"x":6.188,"y":5.875,"w":71.775,"h":0.875,"TU":"Page 1. Name (or Names) shown on return. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3953,"AM":1024,"x":77.963,"y":5.875,"w":21.037,"h":0.875,"TU":"Your social security number."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CEASEDAT","EN":0},"TI":3954,"AM":0,"x":86.625,"y":8.25,"w":12.375,"h":0.833,"TU":"Line 1. Enter the date you disposed of, or ceased using as your main home, the home for which you claimed the credit (M M/D D/Y Y Y Y) (see instructions).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXSPOUSE","EN":0},"TI":3961,"AM":0,"x":13.613,"y":19.5,"w":85.388,"h":0.833,"TU":"Line 3e. The full name of my ex-spouse is: The responsibility for repayment of the credit is transferred to your spouse or ex-spouse. Stop here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PY5405","EN":0},"TI":3965,"AM":0,"x":84.15,"y":25.5,"w":11.137,"h":0.833,"TU":"Line 4. Enter the amount of the credit you claimed on Form 5405 for a prior year. See instructions if you filed a joint return for the year you claimed the credit or you checked the box on line 3f or 3g. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRRPD","EN":0},"TI":3966,"AM":0,"x":84.15,"y":27,"w":11.137,"h":0.833,"TU":"Line 5. If you purchased the home in 2008, enter the amount of the credit you repaid with your 2010, 2011, and 2012 returns. Otherwise, enter zero. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDSUB","EN":0},"TI":3967,"AM":1024,"x":84.15,"y":28.5,"w":11.137,"h":0.833,"TU":"Line 6. Subtract line 5 from line 4. If you checked the box on line 3f or 3g, see instructions. If you checked the box on line 3a, go to line 7. Otherwise, skip line 7 and go to line 8. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GAIN","EN":0},"TI":3968,"AM":0,"x":84.15,"y":29.25,"w":11.137,"h":0.833,"TU":"Line 7. Enter the gain on the disposition of your main home (from line 15 below). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESSER","EN":0},"TI":3969,"AM":0,"x":84.15,"y":30,"w":11.137,"h":0.833,"TU":"Line 8. Amount of the credit to be repaid. See instructions. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALESPR","EN":0},"TI":3970,"AM":0,"x":84.15,"y":35.25,"w":11.137,"h":0.833,"TU":"Line 9. Selling price of home, insurance proceeds, or gross condemnation award. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALESEXP","EN":0},"TI":3971,"AM":0,"x":84.15,"y":36.75,"w":11.137,"h":0.833,"TU":"Line 10. Selling expenses (including commissions, advertising and legal fees, and seller-paid loan charges) or expenses in getting the condemnation award. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTREAL","EN":0},"TI":3972,"AM":1024,"x":84.15,"y":37.5,"w":11.137,"h":0.833,"TU":"Line 11. Subtract line 10 from line 9. This is the amount realized on the sale of the home. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJBAS","EN":0},"TI":3973,"AM":0,"x":84.15,"y":38.25,"w":11.137,"h":0.833,"TU":"Line 12. Adjusted basis of home sold (from line 13 of Worksheet 1 in Publication 523). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRMINUS","EN":0},"TI":3974,"AM":0,"x":84.15,"y":39.75,"w":11.137,"h":0.833,"TU":"Line 13. Enter the first-time homebuyer credit claimed on Form 5405 minus the amount of the credit you repaid with your 2010, 2011, and 2012 tax returns. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJBASIS","EN":0},"TI":3975,"AM":1024,"x":84.15,"y":40.5,"w":11.137,"h":0.833,"TU":"Line 14. Subtract line 13 from line 12. This is the adjusted basis for purposes of repaying the credit. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKSGAIN","EN":0},"TI":3976,"AM":1024,"x":84.15,"y":41.25,"w":11.137,"h":0.833,"TU":"Line 15. Subtract line 14 from line 11. Dollars. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MILX","EN":0},"TI":3955,"AM":0,"x":96.802,"y":8.945,"w":3.094,"h":0.981,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HADGAIN","EN":0},"TI":3956,"AM":0,"x":10.109,"y":12.549,"w":2.966,"h":0.888,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOGAIN","EN":0},"TI":3957,"AM":0,"x":10.287,"y":14.08,"w":2.841,"h":0.867,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RELATED","EN":0},"TI":3958,"AM":0,"x":10.098,"y":15.593,"w":3.094,"h":0.845,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CONVERT","EN":0},"TI":3959,"AM":0,"x":10.094,"y":17.105,"w":2.901,"h":0.892,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TRANSFER","EN":0},"TI":3960,"AM":0,"x":10.29,"y":18.52,"w":2.758,"h":0.902,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REPURCH","EN":0},"TI":3962,"AM":0,"x":10.486,"y":20.866,"w":2.709,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOREPURC","EN":0},"TI":3963,"AM":0,"x":10.354,"y":21.632,"w":3.015,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DECEASED","EN":0},"TI":3964,"AM":0,"x":10.366,"y":22.414,"w":2.762,"h":0.833,"checked":false}],"id":{"Id":"A4RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F5695.content.txt b/test/data/fd/form/F5695.content.txt new file mode 100755 index 00000000..28abf665 --- /dev/null +++ b/test/data/fd/form/F5695.content.txt @@ -0,0 +1,267 @@ +Form +5695 +Department of the Treasury +Internal Revenue Service +Residential Energy Credits +a + +. + +a + +Attach to Form 1040 or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +158 +Name(s) shown on return +Your social security number +Part I +Residential Energy Efficient Property Credit +(See instructions before completing this part.) +Note. +Skip lines 1 through 11 if you only have a +credit carryforward from 2012. +1 +Qualified solar electric property costs +.................... +1 +2 +Qualified solar water heating property costs +.................. +2 +3 +Qualified small wind energy property costs +................... +3 +4 +Qualified geothermal heat pump property costs +................. +4 +5 +Add lines 1 through 4 +.......................... +5 +6 +Multiply line 5 by 30% (.30) +........................ +6 +7 +a +Qualified fuel cell property. Was qualified fuel cell property installed on or in connection with your +main home located in the United States? (See instructions) +............ +a +7a +Yes +No +Caution: +If you checked the “No” box, you cannot take a credit for qualified fuel cell property. Skip +lines 7b through 11. +b +Print the complete address of the main home where you installed the fuel cell property. +Number and street +Unit No. +City, State, and ZIP code +8 +Qualified fuel cell property costs +............. +8 +9 +Multiply line 8 by 30% (.30) +............... +9 +10 +Kilowatt capacity of property on line 8 above +a +. x $1,000 +10 +11 +Enter the smaller of line 9 or line 10 +..................... +11 +12 +Credit carryforward from 2012. Enter the amount, if any, from your 2012 Form 5695, line 18 . . +12 +13 +Add lines 6, 11, and 12 +......................... +13 +14 +Limitation based on tax liability. Enter the amount from the Residential Energy Efficient Property +Credit Limit Worksheet (see instructions) +................... +14 +15 +Residential energy efficient property credit. +Enter the smaller of line 13 or line 14. Also include +this amount on Form 1040, line 52, or Form 1040NR, line 49 +............. +15 +16 +Credit carryforward to 2014. If line 15 is less than line 13, subtract +line 15 from line 13 . . . . . . . . . . . . . . . . . +16 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 13540P +Form +5695 + (2013) +Information about Form 5695 and its instructions is at www.irs.gov/form5695 +----------------Page (0) Break---------------- +Form 5695 (2013) +Page +2 +Part II +Nonbusiness Energy Property Credit +17 +a +Were the qualified energy efficiency improvements or residential energy property costs for your +main home located in the United States? (see instructions) +............ +a +17a +Yes +No +Caution: + +Do not complete Part II. +b +Print the complete address of the main home where you made the qualifying improvements. +Caution: +You can only have one main home at a time. +Number and street +Unit No. +City, State, and ZIP code +c +Were any of these improvements related to the construction of this main home? +..... +a +17c +Yes +No +Caution: +If you checked the “Yes” box, you can only claim the nonbusiness energy property credit +for qualifying improvements that were not related to the construction of the home. Do not include +expenses related to the construction of your main home, even if the improvements were made +after you moved into the home. +18 +Lifetime limitation. Enter the amount from the Lifetime Limitation Worksheet (see instructions) . . +18 +19 +Qualified energy efficiency improvements (original use must begin with you and the component must +reasonably be expected to last for at least 5 years; do not include labor costs) (see instructions). +a +Insulation material or system specifically and primarily designed to reduce heat loss or gain of +your home that meets the prescriptive criteria established by the 2009 IECC +........ +19a +b +Exterior doors that meet or exceed the Energy Star program requirements +........ +19b +c + +Metal or asphalt roof that meets or exceeds the Energy Star program requirements and has +appropriate pigmented coatings or cooling granules which are specifically and primarily designed +to reduce the heat gain of your home +.................... +19c +d +Exterior windows and skylights that meet or exceed the Energy Star +program requirements +................. +19d +e +Maximum amount of cost on which the credit can be figured +.... +19e +f + +If you claimed window expenses on your Form 5695 for 2006, 2007, +2009, 2010, 2011, or 2012, enter the amount from the Window Expense +Worksheet (see instructions); otherwise enter -0- +........ +19f +g +Subtract line 19f from line 19e. If zero or less, enter -0- +...... +19g +h +Enter the smaller of line 19d or line 19g +.................... +19h +20 +Add lines 19a, 19b, 19c, and 19h +...................... +20 +21 +Multiply line 20 by 10% (.10) +....................... +21 +22 +Residential energy property costs (must be placed in service by you; include labor costs for onsite +preparation, assembly, and original installation) (see instructions). +a +Energy-efficient building property. Do not enter more than +$300 +............ +22a +b +Qualified natural gas, propane, or oil furnace or hot water boiler. Do not enter more than +$150 +.. +22b +c +Advanced main air circulating fan used in a natural gas, propane, or oil furnace. Do not enter more +than +$50 +.............................. +22c +23 +Add lines 22a through 22c +........................ +23 +24 +Add lines 21 and 23 +.......................... +24 +25 +Maximum credit amount. (If you jointly occupied the home, see instructions) +........ +25 +26 +Enter the amount, if any, from line 18 +..................... +26 +27 +Subtract line 26 from line 25. If zero or less, +stop; + you cannot take the nonbusiness energy +property credit +............................ +27 +28 +Enter the smaller of line 24 or line 27 +..................... +28 +29 +Limitation based on tax liability. Enter the amount from the Nonbusiness Energy Property Credit +Limit Worksheet (see instructions) +...................... +29 +30 +Nonbusiness energy property credit. + Enter the smaller of line 28 or line 29. Also include this +amount on Form 1040, line 52, or Form 1040NR, line 49 +.............. +30 +Form +5695 + (2013) +$2,000 +$500 +If you checked the “No” box, you cannot claim the nonbusiness energy property credit. +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F5695.fields.json b/test/data/fd/form/F5695.fields.json new file mode 100755 index 00000000..dae44b8c --- /dev/null +++ b/test/data/fd/form/F5695.fields.json @@ -0,0 +1 @@ +[{"id":"QFCPRB","type":"radio","calc":false,"value":"QFCPY"},{"id":"QFCPRB","type":"radio","calc":false,"value":"QFCPN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"PHVOLCR","type":"number","calc":false,"value":""},{"id":"SOLCOST","type":"number","calc":false,"value":""},{"id":"QSWCOST","type":"number","calc":false,"value":""},{"id":"QGHPCOST","type":"number","calc":false,"value":""},{"id":"STOT","type":"number","calc":true,"value":""},{"id":"SUBTOT7","type":"number","calc":true,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"UNIT2","type":"alpha","calc":false,"value":""},{"id":"CITY2","type":"alpha","calc":false,"value":""},{"id":"STATE2","type":"alpha","calc":false,"value":""},{"id":"ZIP2","type":"zip","calc":false,"value":""},{"id":"FUELCELL","type":"number","calc":false,"value":""},{"id":"SUBTOT11","type":"number","calc":true,"value":""},{"id":"KILOCAP","type":"percent","calc":false,"value":""},{"id":"PROPCAP","type":"number","calc":true,"value":""},{"id":"SUBTOT12","type":"number","calc":true,"value":""},{"id":"CARYFWD","type":"number","calc":false,"value":""},{"id":"SUBTOT13","type":"number","calc":true,"value":""},{"id":"LIMIT14","type":"number","calc":true,"value":""},{"id":"REEPCR","type":"number","calc":true,"value":""},{"id":"CRCRYFWD","type":"number","calc":true,"value":""},{"id":"BX3RB","type":"radio","calc":false,"value":"MAINY"},{"id":"BX3RB","type":"radio","calc":false,"value":"MAINN"},{"id":"MAIN2RB","type":"radio","calc":false,"value":"MAIN2Y"},{"id":"MAIN2RB","type":"radio","calc":false,"value":"MAIN2N"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"UNIT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"LIFELIM","type":"number","calc":false,"value":""},{"id":"INSULN","type":"number","calc":false,"value":""},{"id":"EXTDOORS","type":"number","calc":false,"value":""},{"id":"METLROOF","type":"number","calc":false,"value":""},{"id":"WINDOWS","type":"number","calc":false,"value":""},{"id":"WNDOWEXP","type":"number","calc":false,"value":""},{"id":"SUBTOT3G","type":"number","calc":true,"value":""},{"id":"SUBTOT3H","type":"number","calc":true,"value":""},{"id":"SUBTOT4","type":"number","calc":true,"value":""},{"id":"SUBT5","type":"number","calc":true,"value":""},{"id":"PROPERTY","type":"number","calc":false,"value":""},{"id":"NATGAS","type":"number","calc":false,"value":""},{"id":"FAN","type":"number","calc":false,"value":""},{"id":"SUBTOT3","type":"number","calc":true,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""},{"id":"TWOHMS1","type":"alpha","calc":true,"value":""},{"id":"MAXCRAMT","type":"number","calc":false,"value":""},{"id":"FRMAIN1","type":"number","calc":true,"value":""},{"id":"DIFF","type":"number","calc":true,"value":""},{"id":"SUBTOT5","type":"number","calc":true,"value":""},{"id":"TAXLIAB","type":"number","calc":true,"value":""},{"id":"NBECR","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F5695.json b/test/data/fd/form/F5695.json new file mode 100755 index 00000000..94f01119 --- /dev/null +++ b/test/data/fd/form/F5695.json @@ -0,0 +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.936},{"oc":"#221f1f","x":20.997,"y":5.258,"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.258,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":74.336},{"oc":"#221f1f","x":80.397,"y":5.251,"w":1.5,"l":18.648},{"oc":"#221f1f","x":80.397,"y":6.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":14.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":85.39,"y":18.657,"w":0.75,"l":1.547},{"oc":"#221f1f","x":85.39,"y":18.095,"w":0.75,"l":1.547},{"oc":"#221f1f","x":91.534,"y":18.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":92.815,"y":18.657,"w":0.75,"l":1.547},{"oc":"#221f1f","x":92.815,"y":18.095,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":30.897,"y":21.751,"w":0.75,"l":38.448},{"oc":"#221f1f","x":69.259,"y":21.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":30.897,"y":23.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":45.747,"y":28.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":48.222,"y":28.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":61.834,"y":28.501,"w":0.75,"l":3.798},{"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":80.397,"y":30.001,"w":0.75,"l":3.798},{"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":80.397,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":34.501,"w":0.75,"l":3.798},{"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":80.397,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":37.501,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":37.501,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.822,"y":37.501,"w":1.5,"l":11.223}],"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":80.44,"y":5.22,"w":0.75,"l":1.547},{"dsh":1,"oc":"#221f1f","x":86.627,"y":6.001,"w":0.75,"l":0.75},{"dsh":1,"oc":"#221f1f","x":90.34,"y":6.002,"w":0.75,"l":0.748},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.937,"y":18.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":85.39,"y":18.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":94.362,"y":18.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":92.815,"y":18.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":84.152,"y":18.735,"w":0.75,"l":9.781},{"oc":"#221f1f","x":80.44,"y":18.735,"w":0.75,"l":9.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":10.531},{"oc":"#221f1f","x":65.59,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":27.735,"w":0.75,"l":0.781},{"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":95.29,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"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":84.152,"y":34.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":84.152,"y":35.978,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.44,"y":35.978,"w":0.75,"l":1.547},{"oc":"#221f1f","x":65.59,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":36.736,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":80.44,"y":5.251,"w":18.562,"h":1.5,"clr":1},{"oc":"#221f1f","x":6.19,"y":6.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":18.751,"w":3.712,"h":9.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":36.001,"w":3.712,"h":1.5,"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.224,"clr":-1,"A":"left","R":[{"T":"5695","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.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.188,"w":11.649000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":38.053,"y":2.383,"w":12.726000000000003,"clr":-1,"A":"left","R":[{"T":"Residential%20Energy%20Credits","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":26.294,"y":3.292,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":78.016,"y":3.385,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":39.252,"y":3.979,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.761,"y":4.073,"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":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.864,"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.31,"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.31,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"158","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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.877,"y":4.968,"w":13.368000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.572,"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.572,"w":21.060999999999996,"clr":-1,"A":"left","R":[{"T":"Residential%20Energy%20Efficient%20Property%20Credit%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.9,"y":6.572,"w":20.318,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20before%20completing%20this%20part.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.353,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.811,"y":7.353,"w":18.447999999999997,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%201%20through%2011%20if%20you%20only%20have%20a%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":38.909,"y":7.353,"w":14.394000000000004,"clr":-1,"A":"left","R":[{"T":"credit%20carryforward%20from%202012.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"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.84,"w":16.945,"clr":-1,"A":"left","R":[{"T":"Qualified%20solar%20electric%20property%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":8.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":19.760000000000005,"clr":-1,"A":"left","R":[{"T":"Qualified%20solar%20water%20heating%20property%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":10.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":19.317000000000007,"clr":-1,"A":"left","R":[{"T":"Qualified%20small%20wind%20energy%20property%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":11.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":21.395000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified%20geothermal%20heat%20pump%20property%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":13.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":9.837000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20through%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":14.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205%20by%2030%25%20(.30)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":16.34,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":17.04,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.04,"w":43.522999999999975,"clr":-1,"A":"left","R":[{"T":"Qualified%20fuel%20cell%20property.%20Was%20qualified%20fuel%20cell%20property%20installed%20on%20or%20in%20connection%20with%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":17.738,"w":26.470000000000006,"clr":-1,"A":"left","R":[{"T":"main%20home%20located%20in%20the%20United%20States%3F%20(See%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.37,"y":17.738,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.526,"y":17.645,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.172,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"7a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":87.615,"y":17.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.04,"y":17.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.54,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.838,"y":18.54,"w":39.800999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20%E2%80%9CNo%E2%80%9D%20box%2C%20you%20cannot%20take%20a%20credit%20for%20qualified%20fuel%20cell%20property.%20Skip%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":19.228,"w":8.855000000000002,"clr":-1,"A":"left","R":[{"T":"lines%207b%20through%2011.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":38.748999999999995,"clr":-1,"A":"left","R":[{"T":"Print%20the%20complete%20address%20of%20the%20main%20home%20where%20you%20installed%20the%20fuel%20cell%20property.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":21.469,"w":8.651000000000002,"clr":-1,"A":"left","R":[{"T":"Number%20and%20street%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.052,"y":21.469,"w":3.945,"clr":-1,"A":"left","R":[{"T":"Unit%20%20No.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.69,"y":22.973,"w":11.224000000000002,"clr":-1,"A":"left","R":[{"T":"City%2C%20State%2C%20and%20ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":14.668000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified%20fuel%20cell%20property%20costs%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":24.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%208%20by%2030%25%20(.30)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":26.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":26.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":20.223999999999997,"clr":-1,"A":"left","R":[{"T":"Kilowatt%20capacity%20of%20property%20on%20line%208%20above%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.173,"y":27.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":48.015,"y":27.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.965,"y":27.59,"w":4.132,"clr":-1,"A":"left","R":[{"T":"x%20%20%241%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":27.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"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.09,"w":15.707000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%209%20or%20line%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":29.09,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":40.937999999999974,"clr":-1,"A":"left","R":[{"T":"Credit%20carryforward%20from%202012.%20Enter%20the%20amount%2C%20if%20any%2C%20from%20your%202012%20Form%205695%2C%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":30.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":30.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":30.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":10.283000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%2C%2011%2C%20and%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":32.09,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.778,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.79,"w":42.93399999999998,"clr":-1,"A":"left","R":[{"T":"Limitation%20based%20on%20tax%20liability.%20Enter%20the%20amount%20from%20the%20Residential%20Energy%20Efficient%20Property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":33.478,"w":18.35500000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20Limit%20Worksheet%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.995,"y":33.478,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":33.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":34.278,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.29,"w":20.894999999999996,"clr":-1,"A":"left","R":[{"T":"Residential%20energy%20efficient%20property%20credit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.874,"y":34.29,"w":22.26400000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2013%20or%20line%2014.%20Also%20include","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":34.977,"w":27.01200000000001,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Form%201040%2C%20line%2052%2C%20or%20Form%201040NR%2C%20line%2049%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.387,"y":34.977,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.79,"w":29.653000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20carryforward%20to%202014.%20If%20line%2015%20is%20less%20than%20line%2013%2C%20subtract%20","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.478,"w":8.744000000000002,"clr":-1,"A":"left","R":[{"T":"line%2015%20from%20line%2013%20","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":26.563,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":28.625,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":30.687,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":32.748,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":34.81,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":36.872,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":38.934,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":40.996,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":43.057,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":45.119,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":47.181,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":49.243,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":51.304,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":53.366,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":55.428,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":57.49,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":59.551,"y":36.478,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":62.623,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":37.358,"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.213,"y":37.376,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013540P","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":37.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":37.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5695","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":37.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.803,"y":3.385,"w":36.45399999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%205695%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform5695","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3977,"AM":1024,"x":6.188,"y":5.875,"w":74.25,"h":0.875,"TU":"Page 1. Name(s) shown on return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":3978,"AM":1024,"x":80.438,"y":5.842,"w":18.563,"h":0.908,"TU":"Your social security number. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PHVOLCR","EN":0},"TI":3979,"AM":0,"x":84.15,"y":9,"w":11.137,"h":0.833,"TU":"Part 1.Residential Energy Efficient Property Credit (See instructions before completing this part.) Note. Skip lines 1 through 11 if you only have a credit carryforward from 2012. Line 1. Qualified solar electric property costs. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SOLCOST","EN":0},"TI":3980,"AM":0,"x":84.15,"y":10.5,"w":11.137,"h":0.833,"TU":"Line 2. Qualified solar water heating property costs. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QSWCOST","EN":0},"TI":3981,"AM":0,"x":84.15,"y":12,"w":11.137,"h":0.833,"TU":"Line 3. Qualified small wind energy property costs. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QGHPCOST","EN":0},"TI":3982,"AM":0,"x":84.15,"y":13.5,"w":11.137,"h":0.833,"TU":"Line 4. Qualified geothermal heat pump property costs. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STOT","EN":0},"TI":3983,"AM":1024,"x":84.15,"y":15,"w":11.137,"h":0.833,"TU":"Line 5. Add lines 1 through 4. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT7","EN":0},"TI":3984,"AM":1024,"x":84.15,"y":16.5,"w":11.137,"h":0.833,"TU":"Line 6. Multiply line 5 by 30 percent (.30). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":3987,"AM":0,"x":31.002,"y":20.976,"w":32.337,"h":0.833,"TU":"Line 7b. Print the complete address of the main home where you installed the fuel cell property. Number and street. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"UNIT2","EN":0},"TI":3988,"AM":0,"x":69.3,"y":21,"w":9.9,"h":0.833,"TU":"Line 7b. Unit number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY2","EN":0},"TI":3989,"AM":0,"x":31.322,"y":22.5,"w":27.943,"h":0.833,"TU":"Line 7b. City, State, and ZIP code. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE2","EN":0},"TI":3990,"AM":0,"x":60.448,"y":22.514,"w":6.691,"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":"ZIP2","EN":0},"TI":3991,"AM":0,"x":69.61,"y":22.493,"w":9.693,"h":0.833,"TU":"Zip code"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUELCELL","EN":0},"TI":3992,"AM":0,"x":65.588,"y":24.75,"w":11.137,"h":0.833,"TU":"Line 8. Qualified fuel cell property costs. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT11","EN":0},"TI":3993,"AM":1024,"x":65.588,"y":26.25,"w":11.137,"h":0.833,"TU":"Line 9. Multiply line 8 by 30 percent (.30). Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"KILOCAP","EN":0},"TI":3994,"AM":0,"x":45.531,"y":27.68,"w":7.154,"h":0.833,"TU":"Line 24. Kilowatt capacity of property on line 22 above. Numbers before the decimal."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROPCAP","EN":0},"TI":3995,"AM":1024,"x":65.588,"y":27.75,"w":11.137,"h":0.833,"TU":"Line10. Kilowatt capacity of property on line 8 above multiplied by $1,000. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT12","EN":0},"TI":3996,"AM":1024,"x":84.15,"y":29.25,"w":11.137,"h":0.833,"TU":"Line 11. Enter the smaller of line 9 or line 10. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARYFWD","EN":0},"TI":3997,"AM":0,"x":84.282,"y":30.702,"w":11.138,"h":0.833,"TU":"Line 12. Credit carryforward from 2012. Enter the amount, if any, from your 2012 Form 5695, line 18. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT13","EN":0},"TI":3998,"AM":1024,"x":84.15,"y":32.25,"w":11.137,"h":0.833,"TU":"Line 13. Add lines 6, 11, and 12. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LIMIT14","EN":0},"TI":3999,"AM":1024,"x":84.15,"y":33.75,"w":11.137,"h":0.833,"TU":"Line 14. Limitation based on tax liability. Enter the amount from the Residential Energy Efficient Property Credit Limit Worksheet (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REEPCR","EN":0},"TI":4000,"AM":1024,"x":84.15,"y":35.25,"w":11.137,"h":0.833,"TU":"Line 15. Residential energy efficient property credit. Enter the smaller of line 13 or line 14. Also include this amount on Form 1040, line 52, or Form 1040 N R, line 49. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRCRYFWD","EN":0},"TI":4001,"AM":1024,"x":65.588,"y":36.75,"w":11.137,"h":0.833,"TU":"Line 16. Credit carryforward to 2014. If line 15 is less than line 13, subtract line 15 from line 13. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"QFCPY","EN":0},"TI":3985,"AM":0,"x":84.737,"y":17.706,"w":2.966,"h":0.962,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"QFCPN","EN":0},"TI":3986,"AM":0,"x":92.109,"y":17.659,"w":2.645,"h":1.009,"checked":false}],"id":{"Id":"QFCPRB","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.11,"y":2.999,"w":1.125,"l":7.511},{"oc":"#221f1f","x":6.11,"y":3.749,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.11,"y":2.999,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.11,"y":3.749,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":6.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":85.39,"y":5.907,"w":0.75,"l":1.547},{"oc":"#221f1f","x":85.39,"y":5.345,"w":0.75,"l":1.547},{"oc":"#221f1f","x":91.534,"y":6.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":92.815,"y":5.907,"w":0.75,"l":1.547},{"oc":"#221f1f","x":92.815,"y":5.345,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.397,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":30.897,"y":9.751,"w":0.75,"l":38.448},{"oc":"#221f1f","x":69.259,"y":9.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":30.897,"y":11.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":85.39,"y":12.657,"w":0.75,"l":1.547},{"oc":"#221f1f","x":85.39,"y":12.095,"w":0.75,"l":1.547},{"oc":"#221f1f","x":91.534,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":92.815,"y":12.657,"w":0.75,"l":1.547},{"oc":"#221f1f","x":92.815,"y":12.095,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"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":80.397,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":27.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":27.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":28.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":28.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":28.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.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":11.223},{"oc":"#221f1f","x":95.247,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":35.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":35.251,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":39.001,"w":0.75,"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":11.223},{"oc":"#221f1f","x":95.247,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":42.751,"w":1.5,"l":92.899},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":2.537},{"oc":"#221f1f","x":0.086,"y":48.593,"w":0.75,"l":2.537}],"VLines":[{"oc":"#221f1f","x":84.152,"y":3.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":3.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.937,"y":5.345,"w":0.75,"l":0.563},{"oc":"#221f1f","x":85.39,"y":5.345,"w":0.75,"l":0.563},{"oc":"#221f1f","x":94.362,"y":5.345,"w":0.75,"l":0.563},{"oc":"#221f1f","x":92.815,"y":5.345,"w":0.75,"l":0.563},{"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":86.937,"y":12.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":85.39,"y":12.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":94.362,"y":12.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":92.815,"y":12.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":16.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":17.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":20.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":20.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":5.281},{"oc":"#221f1f","x":80.44,"y":22.485,"w":0.75,"l":5.281},{"oc":"#221f1f","x":95.29,"y":22.486,"w":0.75,"l":5.281},{"oc":"#221f1f","x":65.59,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":23.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":23.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":24.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":61.877,"y":24.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":76.727,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":27.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":27.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":27.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":41.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":41.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":2.623,"y":48.593,"w":0.75,"l":0.876},{"oc":"#221f1f","x":0.086,"y":48.593,"w":0.75,"l":0.876}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.153,"y":2.999,"w":7.425,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":6.001,"w":3.712,"h":6,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":12.751,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":16.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":22.501,"w":3.712,"h":5.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":30.001,"w":3.712,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%205695%20(2013)","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":7.106,"y":2.82,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.184,"y":2.82,"w":17.503999999999998,"clr":-1,"A":"left","R":[{"T":"Nonbusiness%20Energy%20Property%20Credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":4.246,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":4.29,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":4.29,"w":42.670999999999985,"clr":-1,"A":"left","R":[{"T":"Were%20the%20qualified%20energy%20efficiency%20improvements%20or%20residential%20energy%20property%20costs%20for%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":4.988,"w":26.322000000000006,"clr":-1,"A":"left","R":[{"T":"main%20home%20located%20in%20the%20United%20States%3F%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":4.988,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.715,"y":4.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.742,"y":5.09,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"17a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":87.791,"y":5.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.04,"y":5.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.79,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.882,"y":6.478,"w":10.613000000000001,"clr":-1,"A":"left","R":[{"T":"Do%20not%20complete%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":7.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":7.34,"w":41.03099999999999,"clr":-1,"A":"left","R":[{"T":"Print%20the%20complete%20address%20of%20the%20main%20home%20where%20you%20made%20the%20qualifying%20improvements.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.82,"y":8.09,"w":19.673000000000002,"clr":-1,"A":"left","R":[{"T":"You%20can%20only%20have%20one%20main%20home%20at%20a%20time.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":9.47,"w":9.207000000000003,"clr":-1,"A":"left","R":[{"T":"Number%20and%20street%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.052,"y":9.47,"w":3.6670000000000003,"clr":-1,"A":"left","R":[{"T":"Unit%20No.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.69,"y":10.974,"w":11.224000000000002,"clr":-1,"A":"left","R":[{"T":"City%2C%20State%2C%20and%20ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.863,"w":35.881,"clr":-1,"A":"left","R":[{"T":"Were%20any%20of%20these%20improvements%20related%20to%20the%20construction%20of%20this%20main%20home%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":11.863,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.526,"y":11.77,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.742,"y":11.84,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"17c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":87.757,"y":11.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.04,"y":11.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.778,"w":4.611000000000001,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.09,"y":12.778,"w":39.652,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20%E2%80%9CYes%E2%80%9D%20box%2C%20you%20can%20only%20claim%20the%20nonbusiness%20energy%20property%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":13.434,"w":43.19299999999998,"clr":-1,"A":"left","R":[{"T":"for%20qualifying%20improvements%20that%20were%20not%20related%20to%20the%20construction%20of%20the%20home.%20Do%20not%20include","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":14.091,"w":41.80099999999998,"clr":-1,"A":"left","R":[{"T":"expenses%20related%20to%20the%20construction%20of%20your%20main%20home%2C%20even%20if%20the%20improvements%20were%20made","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":14.747,"w":13.910000000000002,"clr":-1,"A":"left","R":[{"T":"after%20you%20moved%20into%20the%20home.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":41.789999999999985,"clr":-1,"A":"left","R":[{"T":"Lifetime%20limitation.%20Enter%20the%20amount%20from%20the%20Lifetime%20Limitation%20Worksheet%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":16.278,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.29,"w":45.178999999999974,"clr":-1,"A":"left","R":[{"T":"Qualified%20energy%20efficiency%20improvements%20(original%20use%20must%20begin%20with%20you%20and%20the%20component%20must%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":10.882,"y":16.978,"w":42.83899999999998,"clr":-1,"A":"left","R":[{"T":"reasonably%20be%20expected%20to%20last%20for%20at%20least%205%20years%3B%20do%20not%20include%20labor%20costs)%20(see%20instructions).","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.79,"w":42.061999999999976,"clr":-1,"A":"left","R":[{"T":"Insulation%20material%20or%20system%20specifically%20and%20primarily%20designed%20to%20reduce%20heat%20loss%20or%20gain%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.478,"w":34.101,"clr":-1,"A":"left","R":[{"T":"your%20home%20that%20meets%20the%20prescriptive%20criteria%20established%20by%20the%202009%20IECC%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":18.478,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":18.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,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":32.949,"clr":-1,"A":"left","R":[{"T":"Exterior%20doors%20that%20meet%20or%20exceed%20the%20Energy%20Star%20program%20requirements","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":19.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":19.34,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":20.103,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.103,"w":40.74899999999998,"clr":-1,"A":"left","R":[{"T":"Metal%20or%20asphalt%20roof%20that%20meets%20or%20exceeds%20the%20Energy%20Star%20program%20requirements%20and%20has","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":20.79,"w":43.652999999999984,"clr":-1,"A":"left","R":[{"T":"appropriate%20pigmented%20coatings%20or%20cooling%20granules%20which%20are%20specifically%20and%20primarily%20designed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":21.478,"w":17.079,"clr":-1,"A":"left","R":[{"T":"to%20reduce%20the%20%20heat%20gain%20of%20your%20home%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":21.478,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":21.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":22.29,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.29,"w":30.538999999999987,"clr":-1,"A":"left","R":[{"T":"Exterior%20windows%20and%20skylights%20that%20meet%20or%20exceed%20the%20Energy%20Star%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":22.978,"w":9.947000000000001,"clr":-1,"A":"left","R":[{"T":"program%20requirements","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.566,"y":22.978,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.151,"y":23.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":23.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":26.951999999999998,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20of%20cost%20on%20which%20the%20credit%20can%20be%20figured","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":23.84,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.179,"y":23.84,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":24.603,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.603,"w":30.619000000000007,"clr":-1,"A":"left","R":[{"T":"If%20you%20claimed%20window%20expenses%20on%20your%20Form%205695%20for%202006%2C%202007%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":25.29,"w":32.27300000000001,"clr":-1,"A":"left","R":[{"T":"2009%2C%202010%2C%202011%2C%20or%202012%2C%20enter%20the%20amount%20from%20the%20Window%20Expense%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":25.977,"w":21.687,"clr":-1,"A":"left","R":[{"T":"Worksheet%20(see%20instructions)%3B%20otherwise%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.13,"y":25.977,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.366,"y":26.09,"w":1.445,"clr":-1,"A":"left","R":[{"T":"19f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":26.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":24.392,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2019f%20from%20line%2019e.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":26.84,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.151,"y":26.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":27.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"h","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":17.43000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2019d%20or%20line%2019g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":27.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.727,"y":27.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19h","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":15.008000000000008,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2019a%2C%2019b%2C%2019c%2C%20and%2019h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":28.34,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%2010%25%20(.10)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":29.09,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.778,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.79,"w":44.00699999999998,"clr":-1,"A":"left","R":[{"T":"Residential%20energy%20property%20costs%20(must%20be%20placed%20in%20service%20by%20you%3B%20include%20labor%20costs%20for%20onsite%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.478,"w":29.115000000000013,"clr":-1,"A":"left","R":[{"T":"preparation%2C%20assembly%2C%20and%20original%20installation)%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.340000000000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":26.098000000000003,"clr":-1,"A":"left","R":[{"T":"Energy-efficient%20building%20property.%20Do%20not%20enter%20more%20than%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.963,"y":31.340000000000003,"w":2.224,"clr":-1,"A":"left","R":[{"T":"%24300","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.44,"y":31.340000000000003,"w":15.996,"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":"22a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":32.09,"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.09,"w":39.46899999999998,"clr":-1,"A":"left","R":[{"T":"Qualified%20natural%20gas%2C%20propane%2C%20or%20oil%20furnace%20or%20hot%20water%20boiler.%20Do%20not%20enter%20more%20than%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.582,"y":32.09,"w":2.224,"clr":-1,"A":"left","R":[{"T":"%24150","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.064,"y":32.09,"w":2.666,"clr":-1,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":32.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"22b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":32.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.79,"w":44.064999999999955,"clr":-1,"A":"left","R":[{"T":"Advanced%20main%20air%20circulating%20fan%20used%20in%20a%20natural%20gas%2C%20propane%2C%20or%20oil%20furnace.%20Do%20not%20enter%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":33.478,"w":2.242,"clr":-1,"A":"left","R":[{"T":"than%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.848,"y":33.478,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"%2450%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.321,"y":33.478,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":33.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"22c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":12.023,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2022a%20through%2022c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":34.34,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2021%20and%2023","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":35.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":33.825,"clr":-1,"A":"left","R":[{"T":"Maximum%20credit%20amount.%20(If%20you%20jointly%20occupied%20the%20home%2C%20see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":35.84,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":16.747000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":36.59,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.278,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.29,"w":19.669000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2026%20from%20line%2025.%20If%20zero%20or%20less%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.89,"y":37.29,"w":2.444,"clr":-1,"A":"left","R":[{"T":"stop%3B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.758,"y":37.29,"w":18.654,"clr":-1,"A":"left","R":[{"T":"%20you%20cannot%20take%20the%20nonbusiness%20energy%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":37.978,"w":6.593000000000001,"clr":-1,"A":"left","R":[{"T":"property%20credit","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.443,"y":37.978,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":38.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":16.26300000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2024%20or%20line%2027","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":38.84,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.528,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.54,"w":42.95399999999999,"clr":-1,"A":"left","R":[{"T":"Limitation%20based%20on%20tax%20liability.%20Enter%20the%20amount%20from%20the%20Nonbusiness%20Energy%20Property%20Credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":40.228,"w":15.077000000000005,"clr":-1,"A":"left","R":[{"T":"Limit%20Worksheet%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.818,"y":40.228,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.028,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.04,"w":17.448999999999998,"clr":-1,"A":"left","R":[{"T":"Nonbusiness%20energy%20property%20credit.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":34.895,"y":41.04,"w":24.41300000000001,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20smaller%20of%20line%2028%20or%20line%2029.%20Also%20include%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":41.728,"w":24.863000000000014,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Form%201040%2C%20line%2052%2C%20or%20Form%201040NR%2C%20line%2049","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.32,"y":41.728,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.154,"y":42.572,"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.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5695","S":10,"TS":[0,14,1,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]}]},{"oc":"#231f20","x":70.284,"y":23.884,"w":3.337,"clr":-1,"A":"left","R":[{"T":"%242%2C000","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":90.098,"y":35.883,"w":2.528,"clr":-1,"A":"left","R":[{"T":"%24500","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":16.937,"y":5.79,"w":38.93099999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20%E2%80%9CNo%E2%80%9D%20box%2C%20you%20cannot%20claim%20the%20nonbusiness%20energy%20property%20credit.%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":4002,"AM":1024,"x":15.96,"y":2.051,"w":43.669,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":4003,"AM":1024,"x":70.531,"y":2.041,"w":21.271,"h":0.864},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":4006,"AM":0,"x":30.938,"y":9,"w":37.593,"h":0.833,"TU":"Line 17b. Print the complete address of the main home where you made the qualifying improvements. Caution: You can only have one main home at a time. Number and street. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"UNIT","EN":0},"TI":4007,"AM":0,"x":69.3,"y":9,"w":9.9,"h":0.833,"TU":"Line 17b. Unit number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":4008,"AM":0,"x":30.938,"y":10.5,"w":27.11,"h":0.833,"TU":"Line 17b. Print the complete address of the main home where you made the qualifying improvements. Caution: You can only have one main home at a time. Number and street. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":4009,"AM":0,"x":59.644,"y":10.588,"w":7.949999999999999,"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":4010,"AM":0,"x":70.892,"y":10.535,"w":8.475,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LIFELIM","EN":0},"TI":4013,"AM":0,"x":84.15,"y":15.75,"w":11.137,"h":0.833,"TU":"Line 18. Lifetime limitation. Enter the amount from the Lifetime Limitation Worksheet (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INSULN","EN":0},"TI":4014,"AM":0,"x":84.15,"y":18.75,"w":11.137,"h":0.833,"TU":"Line 19. Qualified energy efficiency improvements (original use must begin with you and the component must reasonably be expected to last for at least 5 years; do not include labor costs) (see instructions). a. Insulation material or system specifically and primarily designed to reduce heat loss or gain of your home that meets the prescriptive criteria established by the 2009 I E C C. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXTDOORS","EN":0},"TI":4015,"AM":0,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 19b. Exterior doors that meet or exceed the Energy Star program requirements. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"METLROOF","EN":0},"TI":4016,"AM":0,"x":84.15,"y":21.75,"w":11.137,"h":0.833,"TU":"Line 19c. Metal or asphalt roof that meets or exceeds the Energy Star program requirements and has appropriate pigmented coatings or cooling granules which are specifically and primarily designed to reduce the heat gain of your home. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WINDOWS","EN":0},"TI":4017,"AM":0,"x":65.588,"y":23.25,"w":11.137,"h":0.833,"TU":"Line 19d. Exterior windows and skylights that meet or exceed the Energy Star program requirements. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WNDOWEXP","EN":0},"TI":4018,"AM":0,"x":65.588,"y":26.25,"w":11.137,"h":0.833,"TU":"Line 19f. If you claimed window expenses on your Form 5695 for 2006, 2007, 2009, 2010, 2011, or 2012, enter the amount from the Window Expense Worksheet (see instructions); otherwise enter zero. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3G","EN":0},"TI":4019,"AM":1024,"x":65.588,"y":27,"w":11.137,"h":0.833,"TU":"Line 19g. Subtract line 19f from line 19e. If zero or less, enter zero. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3H","EN":0},"TI":4020,"AM":1024,"x":84.15,"y":27.75,"w":11.137,"h":0.833,"TU":"Line 19h. Enter the smaller of line 19d or line 19g. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT4","EN":0},"TI":4021,"AM":1024,"x":84.15,"y":28.5,"w":11.137,"h":0.833,"TU":"Line 20. Add lines 19a, 19b, 19c, and 19h. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBT5","EN":0},"TI":4022,"AM":1024,"x":84.018,"y":29.298,"w":11.138,"h":0.833,"TU":"Line 21. Multiply line 20 by 10 percent (.10). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROPERTY","EN":0},"TI":4023,"AM":0,"x":84.15,"y":31.5,"w":11.137,"h":0.833,"TU":"Line 22. Residential energy property costs (must be placed in service by you; include labor costs for onsite preparation, assembly, and original installation) (see instructions). a. Energy-efficient building property. Do not enter more than $300. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NATGAS","EN":0},"TI":4024,"AM":0,"x":84.15,"y":32.25,"w":11.137,"h":0.833,"TU":"Line 22b. Qualified natural gas, propane, or oil furnace or hot water boiler. Do not enter more than $150. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FAN","EN":0},"TI":4025,"AM":0,"x":84.15,"y":33.75,"w":11.137,"h":0.833,"TU":"Line 22c. Advanced main air circulating fan used in a natural gas, propane, or oil furnace. Do not enter more than $50. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3","EN":0},"TI":4026,"AM":1024,"x":84.15,"y":34.5,"w":11.137,"h":0.833,"TU":"Line 23. Add lines 22a through 22c. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":4027,"AM":1024,"x":84.15,"y":35.227,"w":11.137,"h":0.833,"TU":"Line 24. Add lines 21 and 23. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TWOHMS1","EN":0},"TI":4028,"AM":1024,"x":64.931,"y":35.941,"w":14.885,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXCRAMT","EN":0},"TI":4029,"AM":0,"x":84.15,"y":36,"w":11.137,"h":0.833,"TU":"Line 25. Maximum credit amount. (If you jointly occupied the home, see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRMAIN1","EN":0},"TI":4030,"AM":1024,"x":84.15,"y":36.75,"w":11.137,"h":0.833,"TU":"Line 26. Enter the amount, if any, from line 18. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIFF","EN":0},"TI":4031,"AM":1024,"x":84.15,"y":38.25,"w":11.137,"h":0.833,"TU":"Line 27. Subtract line 26 from line 25. If zero or less, stop; you cannot take the nonbusiness energy property credit. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT5","EN":0},"TI":4032,"AM":1024,"x":84.15,"y":38.977,"w":11.137,"h":0.833,"TU":"Line 28. Enter the smaller of line 24 or line 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXLIAB","EN":0},"TI":4033,"AM":1024,"x":84.214,"y":40.5,"w":11.137,"h":0.833,"TU":"Line 29. Limitation based on tax liability. Enter the amount from the Nonbusiness Energy Property Credit Limit Worksheet (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NBECR","EN":0},"TI":4034,"AM":1024,"x":84.15,"y":42,"w":11.137,"h":0.833,"TU":"Line 30. Nonbusiness energy property credit. Enter the smaller of line 28 or line 29. Also include this amount on Form 1040, line 52, or Form 1040 N R, line 49. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAINY","EN":0},"TI":4004,"AM":0,"x":84.737,"y":4.933,"w":2.901,"h":0.985,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAINN","EN":0},"TI":4005,"AM":0,"x":92.045,"y":4.933,"w":2.709,"h":0.938,"checked":false}],"id":{"Id":"BX3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAIN2Y","EN":0},"TI":4011,"AM":0,"x":84.673,"y":11.692,"w":2.966,"h":0.985,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAIN2N","EN":0},"TI":4012,"AM":0,"x":92.109,"y":11.692,"w":2.966,"h":1.008,"checked":false}],"id":{"Id":"MAIN2RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F5884.content.txt b/test/data/fd/form/F5884.content.txt new file mode 100755 index 00000000..639ea1f7 --- /dev/null +++ b/test/data/fd/form/F5884.content.txt @@ -0,0 +1,79 @@ +Form +5884 +Department of the Treasury +Internal Revenue Service +Work Opportunity Credit +a + +Attach to your tax return. + +a + +Information about Form 5884 and its instructions is at +www.irs.gov/form5884. +OMB No. 1545-0219 +20 +13 +Attachment +Sequence No. +77 +Name(s) shown on return +Identifying number +1 + +Enter on the applicable line below the total qualified first- or second-year wages paid +or incurred during the tax year, and multiply by the percentage shown, for services of +employees who are certified as members of a targeted group. +a +Qualified first-year wages of employees who worked +for you at least 120 hours but fewer than 400 hours . +$ +× 25% (.25) +1a +b +Qualified first-year wages of employees who worked +for you at least 400 hours +.......... +$ +× 40% (.40) +1b +c +Qualified second-year wages of employees certified as +long-term family assistance recipients +...... +$ +× 50% (.50) +1c +2 +Add lines 1a, 1b, and 1c. See instructions for the adjustment you must make to +salaries and wages +......................... +2 +3 +Work opportunity credit from partnerships, S corporations, cooperatives, estates, and +trusts +.............................. +3 +4 + +Add lines 2 and 3. Cooperatives, estates, and trusts, go to line 5. Partnerships and S +corporations, stop here and report this amount on Schedule K. All others, stop here +and report this amount on Form 3800, line 4b +............... +4 +5 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust +(see instructions) +.......................... +5 +6 +Cooperatives, estates, and trusts, subtract line 5 from line 4. Report this amount on +Form 3800, line 4b +......................... +6 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 13570D +Form +5884 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F5884.fields.json b/test/data/fd/form/F5884.fields.json new file mode 100755 index 00000000..d19c1a9a --- /dev/null +++ b/test/data/fd/form/F5884.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1BB","type":"number","calc":false,"value":""},{"id":"L1B","type":"number","calc":true,"value":""},{"id":"L1CC","type":"number","calc":false,"value":""},{"id":"L1C","type":"number","calc":true,"value":""},{"id":"QSYWA","type":"number","calc":false,"value":""},{"id":"QSYW","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"CET","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F5884.json b/test/data/fd/form/F5884.json new file mode 100755 index 00000000..302964e4 --- /dev/null +++ b/test/data/fd/form/F5884.json @@ -0,0 +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":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":71.861},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":71.861},{"oc":"#221f1f","x":77.922,"y":5.251,"w":1.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":6.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":6.751,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":54.375,"y":11.251,"w":0.75,"l":13.733},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":11.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":54.375,"y":13.501,"w":0.75,"l":13.733},{"oc":"#221f1f","x":79.159,"y":13.501,"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},{"dsh":1,"oc":"#221f1f","x":54.375,"y":15.751,"w":0.75,"l":13.733},{"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":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":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":20.251,"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":79.159,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.19,"y":27.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":47.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":22.277,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":22.277,"y":3.735,"w":1.5,"l":1.533},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.797},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":2.281},{"oc":"#221f1f","x":84.152,"y":4.048,"w":1.5,"l":1.218},{"oc":"#221f1f","x":77.965,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":6.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"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":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":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":1.531},{"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":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":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":1.531},{"oc":"#221f1f","x":95.29,"y":17.235,"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":82.915,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":1.531},{"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":2.281},{"oc":"#221f1f","x":82.915,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"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":82.915,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":1.531},{"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.789},{"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":1.531},{"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}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":79.202,"y":6.751,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":20.251,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.572,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.086,"y":2.572,"w":2.08,"clr":-1,"A":"left","R":[{"T":"5884","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7279999999999998,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.253,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.899,"y":2.418,"w":10.86,"clr":-1,"A":"left","R":[{"T":"Work%20Opportunity%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":44.092,"y":3.402,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":45.409,"y":3.4960000000000004,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":27.008,"y":4.022,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.326,"y":4.116,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%205884%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.765,"y":4.116,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform5884.","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-0219","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":91.204,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":86.652,"y":3.782,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.652,"y":4.353,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.63,"y":4.353,"w":1.112,"clr":-1,"A":"left","R":[{"T":"77","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"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.746,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.459,"y":6.729,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.76,"w":38.151,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20the%20applicable%20line%20below%20the%20total%20qualified%20first-%20or%20second-year%20wages%20paid%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":7.446999999999999,"w":38.227999999999994,"clr":-1,"A":"left","R":[{"T":"or%20incurred%20during%20the%20tax%20year%2C%20and%20multiply%20by%20the%20percentage%20shown%2C%20for%20services%20of%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.881,"y":8.135,"w":27.540999999999997,"clr":-1,"A":"left","R":[{"T":"employees%20who%20are%20certified%20as%20members%20of%20a%20targeted%20group.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.635,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.697,"w":23.683999999999994,"clr":-1,"A":"left","R":[{"T":"Qualified%20first-year%20wages%20of%20employees%20who%20worked%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.385,"w":23.117000000000004,"clr":-1,"A":"left","R":[{"T":"for%20you%20at%20least%20120%20hours%20but%20fewer%20than%20400%20hours%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.313,"y":10.385,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.965,"y":10.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.33,"y":10.34,"w":5.454000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%2025%25%20(.25)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.837,"y":10.322,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.885,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.947,"w":23.683999999999994,"clr":-1,"A":"left","R":[{"T":"Qualified%20first-year%20wages%20of%20employees%20who%20worked%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.635,"w":11.651,"clr":-1,"A":"left","R":[{"T":"for%20you%20at%20least%20400%20hours%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":32.752,"y":12.635,"w":12,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.965,"y":12.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.33,"y":12.59,"w":5.454000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%2040%25%20(.40)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.806,"y":12.572,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.415,"y":14.135,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.197,"w":24.741999999999997,"clr":-1,"A":"left","R":[{"T":"Qualified%20second-year%20wages%20of%20employees%20certified%20as%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.885,"w":17.188000000000006,"clr":-1,"A":"left","R":[{"T":"long-term%20family%20assistance%20recipients%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":41.002,"y":14.885,"w":7.200000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.965,"y":14.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.33,"y":14.84,"w":5.454000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%2050%25%20(.50)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.837,"y":14.822,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1c","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":16.385,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.447,"w":35.588,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201a%2C%201b%2C%20and%201c.%20See%20instructions%20for%20the%20adjustment%20you%20must%20make%20to%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.135,"w":8.536000000000001,"clr":-1,"A":"left","R":[{"T":"salaries%20and%20wages","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":26.565,"y":17.135,"w":29.99999999999999,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":17.072,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":18.635,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.697,"w":38.524999999999984,"clr":-1,"A":"left","R":[{"T":"Work%20opportunity%20credit%20from%20partnerships%2C%20S%20corporations%2C%20cooperatives%2C%20estates%2C%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.884,"y":19.385,"w":2.797,"clr":-1,"A":"left","R":[{"T":"trusts%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.247,"y":19.385,"w":36,"clr":-1,"A":"left","R":[{"T":"..............................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":19.322,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":20.979,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.01,"w":37.99099999999999,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%20and%203.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%205.%20Partnerships%20and%20S%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":21.697,"w":37.509,"clr":-1,"A":"left","R":[{"T":"corporations%2C%20stop%20here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.898,"y":22.385,"w":20.509000000000004,"clr":-1,"A":"left","R":[{"T":"and%20report%20this%20amount%20on%20Form%203800%2C%20line%204b%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":47.198,"y":22.385,"w":17.999999999999996,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":22.322,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":23.947,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.947,"w":37.78299999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":24.635,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.507,"y":24.635,"w":31.19999999999999,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":24.572,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":26.072,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.072,"w":37.472999999999985,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C%20subtract%20line%205%20from%20line%204.%20Report%20this%20amount%20on%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.896,"y":26.76,"w":8.634000000000002,"clr":-1,"A":"left","R":[{"T":"Form%203800%2C%20line%204b%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":26.571,"y":26.76,"w":29.99999999999999,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":26.822,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"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":60.23,"y":47.126,"w":7.466,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013570D","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":47.065,"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.065,"w":2.224,"clr":-1,"A":"left","R":[{"T":"5884","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":47.065,"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":4035,"AM":1024,"x":6.437,"y":5.891,"w":71.36,"h":0.844,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4036,"AM":1024,"x":78.481,"y":5.855,"w":20.457,"h":0.88,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1BB","EN":0},"TI":4037,"AM":0,"x":55.423,"y":9.992,"w":11.983,"h":1.244,"TU":"Line 1a. Qualified first-year wages of employees who worked for you at least 120 hours but fewer than 400 hours."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":4038,"AM":1024,"x":83.375,"y":9.854,"w":11.983,"h":1.244},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1CC","EN":0},"TI":4039,"AM":0,"x":55.554,"y":12.225,"w":11.983,"h":1.244,"TU":"Line 1b. Qualified first-year wages of employees who worked for you at least 400 hours."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":4040,"AM":1024,"x":82.995,"y":12.178,"w":11.983,"h":1.244},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QSYWA","EN":0},"TI":4041,"AM":0,"x":55.299,"y":14.413,"w":11.983,"h":1.244,"TU":"Line 1c. Qualified second-year wages of employees certified as long-term family assistance recipients."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QSYW","EN":0},"TI":4042,"AM":1024,"x":83.131,"y":14.366,"w":11.983,"h":1.244},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":4043,"AM":1024,"x":82.995,"y":16.074,"w":11.983,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4044,"AM":0,"x":83.262,"y":18.357,"w":11.983,"h":1.814,"TU":"Line 3. Work opportunity credit from partnerships, S corporations, cooperatives, estates and trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4045,"AM":1024,"x":83.03,"y":21.219,"w":11.983,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENALLOC","EN":0},"TI":4046,"AM":1024,"x":83.119,"y":23.558,"w":11.983,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CET","EN":0},"TI":4047,"AM":1024,"x":83.119,"y":25.816,"w":11.983,"h":1.814}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6198C.content.txt b/test/data/fd/form/F6198C.content.txt new file mode 100755 index 00000000..91b7c7c8 --- /dev/null +++ b/test/data/fd/form/F6198C.content.txt @@ -0,0 +1,201 @@ +......................... +Form +6198 +(Rev. November 2009) +Department of the Treasury +Internal Revenue Service +At-Risk Limitations + +Attach to your tax return. + +See separate instructions. +OMB No. 1545-0712 +Attachment +Sequence No. +31 +Name(s) shown on return +Identifying number +Description of activity (see page 2 of the instructions) +Part I +Current Year Profit (Loss) From the Activity, Including Prior Year Nondeductible Amounts. +See page 2 of the instructions. +1 +Ordinary income (loss) from the activity (see page 2 of the instructions) +........ +1 +2 +Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in +the activity) that you are reporting on: +................... +a +Schedule D +............................ +2a +b +Form 4797 +............................ +2b +c +Other form or schedule +........................ +2c +3 +Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B, or +Form 1120S, that were not included on lines 1 through 2c +............. +3 +4 +Other deductions and losses from the activity, including investment interest expense allowed +from Form 4952, that were not included on lines 1 through 2c +........... +4 +5 +Current year profit (loss) from the activity. Combine lines 1 through 4. See page 3 of the +instructions before completing the rest of this form +............... +5 +Part II +Simplified Computation of Amount At Risk. +See page 3 of the instructions before completing this part. +6 +Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the +first day of the tax year. +Do not + enter less than zero +............... +6 +7 +Increases for the tax year (see page 3 of the instructions) +............. +7 +8 +Add lines 6 and 7 +.......................... +8 +9 +Decreases for the tax year (see page 4 of the instructions) +............. +9 +10a +Subtract line 9 from line 8 +............ + +10a +b +If line 10a is +more + than zero, enter that amount here and go to line 20 (or complete Part III). +Otherwise, enter -0- and see +Pub. 925 + for information on the recapture rules +...... +10b +Part III +Detailed Computation of Amount At Risk. +If you completed Part III of Form 6198 for the prior year, see + + +11 +Investment in the activity (or in your interest in the activity) at the effective date. +Do not + enter +less than zero +........................... +11 +12 +Increases at effective date +....................... +12 +13 +Add lines 11 and 12 +13 +14 +Decreases at effective date +....................... +14 +15 +Amount at risk (check box that applies): +a +At effective date. Subtract line 14 from line 13. +Do not + enter less than zero. +b +From your prior year Form 6198, line 19b. +Do not + enter the amount from line 10b of +your prior year form. + +15 +16 +Increases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +16 +17 +Add lines 15 and 16 +......................... +17 +18 +Decreases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +18 +19a +Subtract line 18 from line 17 +........... + +19a +b +If line 19a is +more + than zero, enter that amount here and go to line 20. Otherwise, enter -0- and +see +Pub. 925 + for information on the recapture rules +............... +19b +Part IV +Deductible Loss +Enter the + larger +of line 10b or line 19b +............. +20 +21 +Deductible loss. +Enter the + smaller +of the line 5 loss (treated as a positive number) or line 20. + +See page 8 of the instructions to find out how to report any deductible loss and any carryover . +21 +( ) +Note: +If the loss is from a passive activity, see the Instructions for + +Form 8582, + +Passive Activity Loss Limitations, or the Instructions for + +Form 8810, + +Corporate Passive Activity Loss and Credit Limitations, to find out if the loss is allowed under the passive activity + + +For Paperwork Reduction Act Notice, see page 8 of the instructions. +Form +6198 + (Rev. 11-2009) +page 4of the instructions. +rules. If only part of the loss is subject to the passive activity loss rules, report only that part on Form 8582 or Form 8810, +whichever applies. +Cat. No. 50012Y +20 +Amount at risk. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6198C.fields.json b/test/data/fd/form/F6198C.fields.json new file mode 100755 index 00000000..68f0660e --- /dev/null +++ b/test/data/fd/form/F6198C.fields.json @@ -0,0 +1 @@ +[{"id":"L15XRB","type":"radio","calc":false,"value":"L15XA"},{"id":"L15XRB","type":"radio","calc":false,"value":"L15XB"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XA"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XB"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XA"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XB"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DESC","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"number","calc":false,"value":""},{"id":"L2B","type":"number","calc":false,"value":""},{"id":"L2C","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"mask","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10A","type":"number","calc":true,"value":""},{"id":"L10B","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":false,"value":""},{"id":"L19B","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"mask","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6198C.json b/test/data/fd/form/F6198C.json new file mode 100755 index 00000000..ad750848 --- /dev/null +++ b/test/data/fd/form/F6198C.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 6198 (Rev. November 2009)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.12,"y":3.769,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.201,"y":5.251,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.201,"y":6.751,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.213,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.213,"y":6.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.201,"y":8.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.926,"y":10.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":12.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":13.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":14.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":15.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":17.251,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":18.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":19.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":79.213,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":22.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":23.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.213,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":28.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":29.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":33.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":35.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":36.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":37.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":39.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":40.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":82.926,"y":41.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":42.751,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":45.751,"w":1.5,"l":45.873},{"oc":"#221f1f","x":51.988,"y":45.751,"w":1.5,"l":31.023},{"oc":"#221f1f","x":82.926,"y":45.751,"w":1.5,"l":16.128}],"VLines":[{"oc":"#221f1f","x":21.094,"y":2.235,"w":1.5,"l":1.609},{"oc":"#221f1f","x":21.094,"y":3.826,"w":1.5,"l":0.594},{"oc":"#221f1f","x":21.094,"y":4.351,"w":1.5,"l":0.915},{"oc":"#221f1f","x":84.206,"y":2.235,"w":1.5,"l":1.549},{"oc":"#221f1f","x":84.206,"y":3.769,"w":1.5,"l":1.498},{"oc":"#221f1f","x":79.256,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":82.969,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"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":82.969,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":17.236,"w":0.75,"l":1.531},{"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":0.781},{"oc":"#221f1f","x":82.969,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":59.456,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":26.985,"w":0.75,"l":1.531},{"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":82.969,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":34.485,"w":0.75,"l":0.781},{"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":82.969,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.456,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.244,"y":8.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":10.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":18.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":23.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":25.501,"w":6.188,"h":0.743,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":30.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":33.001,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":36.001,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":37.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":39.751,"w":6.188,"h":0.742,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":41.251,"w":3.712,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":26.564,"y":29.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.994,"y":2.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.136,"y":2.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.4349999999999996,"w":9.947000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20November%202009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.994,"y":3.941,"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.994,"y":4.391,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.15,"y":2.317,"w":9.111999999999998,"clr":-1,"A":"left","R":[{"T":"At-Risk%20Limitations","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.526,"y":3.423,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.846,"y":3.5170000000000003,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":43.172,"y":4.173,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.492,"y":4.267,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.797,"y":2.425,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0712","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":3.628,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":4.211,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":96.404,"y":4.211,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.994,"y":5.033,"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.038,"y":5.031,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.994,"y":6.438,"w":23.68800000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20activity%20(see%20page%202%20of%20the%20instructions)","S":2,"TS":[0,10,0,0]}]},{"x":6.892,"y":8.052,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.052,"w":43.67499999999996,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Profit%20(Loss)%20From%20the%20Activity%2C%20Including%20Prior%20Year%20Nondeductible%20Amounts.%20%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.805,"w":13.651000000000002,"clr":-1,"A":"left","R":[{"T":"See%20page%202%20of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":9.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":9.631,"w":31.728000000000005,"clr":-1,"A":"left","R":[{"T":"Ordinary%20income%20(loss)%20from%20the%20activity%20(see%20page%202%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":9.631,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":9.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":10.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":10.443,"w":42.11599999999998,"clr":-1,"A":"left","R":[{"T":"Gain%20(loss)%20from%20the%20sale%20or%20other%20disposition%20of%20assets%20used%20in%20the%20activity%20(or%20of%20your%20interest%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":11.13,"w":16.966,"clr":-1,"A":"left","R":[{"T":"the%20activity)%20that%20you%20are%20reporting%20on%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.933,"y":11.13,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":11.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":11.881,"w":5.446,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":11.881,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":11.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":12.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":12.631,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%204797%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":12.631,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.96,"y":12.628,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":13.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":13.381,"w":10.614000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20form%20or%20schedule%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":13.381,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":13.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":14.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":14.193,"w":41.56999999999998,"clr":-1,"A":"left","R":[{"T":"Other%20income%20and%20gains%20from%20the%20activity%2C%20from%20Schedule%20K-1%20of%20Form%201065%2C%20Form%201065-B%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":14.88,"w":25.971000000000014,"clr":-1,"A":"left","R":[{"T":"Form%201120S%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.309,"y":14.88,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":14.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":15.678,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":15.693000000000001,"w":41.41600000000001,"clr":-1,"A":"left","R":[{"T":"Other%20deductions%20and%20losses%20from%20the%20activity%2C%20including%20investment%20interest%20expense%20allowed","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.941,"y":16.38,"w":27.65700000000001,"clr":-1,"A":"left","R":[{"T":"from%20Form%204952%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.437,"y":16.38,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":16.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":17.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":17.193,"w":38.989,"clr":-1,"A":"left","R":[{"T":"Current%20year%20profit%20(loss)%20from%20the%20activity.%20Combine%20lines%201%20through%204.%20See%20page%203%20of%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":17.88,"w":22.875000000000004,"clr":-1,"A":"left","R":[{"T":"instructions%20before%20completing%20the%20rest%20of%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.186,"y":17.88,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":17.879,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"x":6.638,"y":18.552,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":18.553,"w":20.779,"clr":-1,"A":"left","R":[{"T":"Simplified%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.062,"y":18.553,"w":25.987000000000005,"clr":-1,"A":"left","R":[{"T":"See%20page%203%20of%20the%20instructions%20before%20completing%20this%20part.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":19.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":19.443,"w":43.138999999999974,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20(as%20defined%20in%20section%201011)%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20on%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":20.128,"w":10.797000000000004,"clr":-1,"A":"left","R":[{"T":"first%20day%20of%20the%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.744,"y":20.128,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.329,"y":20.128,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":20.128,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.129,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":20.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":20.881,"w":25.595000000000013,"clr":-1,"A":"left","R":[{"T":"Increases%20for%20the%20tax%20year%20(see%20page%203%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.881,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":21.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":21.631,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":21.631,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":21.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":22.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":22.381,"w":26.02100000000001,"clr":-1,"A":"left","R":[{"T":"Decreases%20for%20the%20tax%20year%20(see%20page%204%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":22.381,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":22.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.131,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%209%20from%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.131,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":23.037,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":23.878,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.941,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2010a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.212,"y":23.941,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.917,"y":23.941,"w":32.822,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020%20(or%20complete%20Part%20III).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.947,"y":24.628,"w":13.058000000000007,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-%20and%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.427,"y":24.628,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.246,"y":24.628,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.756,"y":24.628,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":24.628,"w":1.723,"clr":-1,"A":"left","R":[{"T":"10b","S":9,"TS":[0,12,1,0]}]},{"x":6.385,"y":25.299,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":25.302,"w":19.89,"clr":-1,"A":"left","R":[{"T":"Detailed%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":46.56,"y":25.302,"w":27.022999999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20III%20of%20Form%206198%20for%20the%20prior%20year%2C%20see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.749,"y":26.928,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":26.941,"w":35.821999999999996,"clr":-1,"A":"left","R":[{"T":"Investment%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20at%20the%20effective%20date.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.869,"y":26.941,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.528,"y":26.941,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":27.63,"w":6.481,"clr":-1,"A":"left","R":[{"T":"less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.434,"y":27.63,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":27.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":28.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":28.381,"w":12.019000000000004,"clr":-1,"A":"left","R":[{"T":"Increases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":28.381,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":28.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.879,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.881,"w":12.445000000000004,"clr":-1,"A":"left","R":[{"T":"Decreases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":29.881,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":30.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":30.631,"w":17.69,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":31.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":31.378,"w":20.968000000000007,"clr":-1,"A":"left","R":[{"T":"At%20effective%20date.%20Subtract%20line%2014%20from%20line%2013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.416,"y":31.378,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.001,"y":31.378,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":32.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":32.203,"w":19.117,"clr":-1,"A":"left","R":[{"T":"From%20your%20prior%20year%20Form%206198%2C%20line%2019b.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.896,"y":32.203,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":44.653,"y":32.203,"w":15.469000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20the%20amount%20from%20line%2010b%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.419,"y":32.881,"w":9.093000000000002,"clr":-1,"A":"left","R":[{"T":"your%20prior%20year%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.779,"y":32.55,"w":0.613,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,21,0,0]}]},{"oc":"#221f1f","x":80.002,"y":32.129,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":33.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":33.631,"w":18.132000000000005,"clr":-1,"A":"left","R":[{"T":"Increases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":34.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":34.381,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":34.378,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":34.381,"w":11.816000000000003,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":34.381,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":34.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2015%20and%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":35.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":35.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.878,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.881,"w":18.558000000000007,"clr":-1,"A":"left","R":[{"T":"Decreases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":36.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":36.631,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":36.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":36.631,"w":11.538000000000002,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":36.631,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":36.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":37.381,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":37.381,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":37.287,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":38.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":38.191,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2019a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.281,"y":38.191,"w":2.48,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.174,"y":38.191,"w":34.713,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020.%20Otherwise%2C%20enter%20-0-%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":38.878,"w":1.8519999999999999,"clr":-1,"A":"left","R":[{"T":"see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.798,"y":38.878,"w":4.095000000000001,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.96,"y":38.878,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":38.878,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":38.878,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19b","S":9,"TS":[0,12,1,0]}]},{"x":6.35,"y":39.548,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":39.552,"w":7.701999999999999,"clr":-1,"A":"left","R":[{"T":"Deductible%20Loss","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.57,"y":40.378,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.472,"y":40.378,"w":3.3350000000000004,"clr":-1,"A":"left","R":[{"T":"%20larger%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.484,"y":40.378,"w":9.929000000000004,"clr":-1,"A":"left","R":[{"T":"of%20line%2010b%20or%20line%2019b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":40.378,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":40.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":41.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":41.191,"w":7.947000000000001,"clr":-1,"A":"left","R":[{"T":"Deductible%20loss.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.168,"y":41.191,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.071,"y":41.191,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.995,"y":41.191,"w":25.487000000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20line%205%20loss%20(treated%20as%20a%20positive%20number)%20or%20line%2020.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.944,"y":41.88,"w":42.28499999999998,"clr":-1,"A":"left","R":[{"T":"See%20page%208%20of%20the%20instructions%20to%20find%20out%20how%20to%20report%20any%20deductible%20loss%20and%20any%20carryover%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":41.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.891,"y":41.769,"w":11.638000000000012,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.944,"y":42.916,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":15.105,"y":42.916,"w":26.369000000000003,"clr":-1,"A":"left","R":[{"T":"If%20the%20loss%20is%20from%20a%20passive%20activity%2C%20see%20the%20Instructions%20for%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.722,"y":42.916,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208582%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":59.596,"y":42.916,"w":24.462000000000007,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Loss%20Limitations%2C%20or%20the%20Instructions%20for","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.714,"y":43.572,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208810%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":22.383,"y":43.572,"w":50.18799999999999,"clr":-1,"A":"left","R":[{"T":"Corporate%20Passive%20Activity%20Loss%20and%20Credit%20Limitations%2C%20to%20find%20out%20if%20the%20loss%20is%20allowed%20under%20the%20passive%20activity%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.994,"y":45.742,"w":32.341,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%208%20of%20the%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":83.616,"y":45.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.758,"y":45.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.581,"y":45.74,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2011-2009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":13.728,"y":26.055,"w":11.373000000000003,"clr":-1,"A":"left","R":[{"T":"page%204of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.71,"y":44.229,"w":53.76499999999994,"clr":-1,"A":"left","R":[{"T":"rules.%20If%20only%20part%20of%20the%20loss%20is%20subject%20to%20the%20passive%20activity%20loss%20rules%2C%20report%20only%20that%20part%20on%20Form%208582%20or%20Form%208810%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.709,"y":44.885,"w":8.241,"clr":-1,"A":"left","R":[{"T":"whichever%20applies.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.793,"y":45.745,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2050012Y","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.749,"y":40.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":40.378,"w":7.557,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4048,"AM":1024,"x":6.2,"y":5.931,"w":59.421,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4049,"AM":1024,"x":80.291,"y":5.959,"w":15.848,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":4050,"AM":0,"x":6.151,"y":7.316,"w":73.121,"h":0.842,"TU":"Description of activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4051,"AM":0,"x":83.078,"y":9.788,"w":12.127,"h":0.833,"TU":"Line 1. Ordinary income (loss) from the activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":4052,"AM":0,"x":83.181,"y":11.97,"w":11.921,"h":0.833,"TU":"Line 2a. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Schedule D."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":4053,"AM":0,"x":83.078,"y":12.788,"w":12.127,"h":0.833,"TU":"Line 2b.Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Form 4797."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2C","EN":0},"TI":4054,"AM":0,"x":83.078,"y":13.538,"w":12.127,"h":0.833,"TU":"Line 2c. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Other form or schedule."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4055,"AM":0,"x":83.16,"y":15.053,"w":11.963,"h":0.833,"TU":"Line 3. Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B. or Form 1120S, that were not included on lines 1 through 2c."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4056,"AM":0,"x":83.869,"y":16.501,"w":11.176,"h":0.833,"TU":"Line 4. Other deductions and losses from the activity, including investment interest expense allowed from Form 4952, that were not included on lines 1 through 2c.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4057,"AM":1024,"x":83.16,"y":18.053,"w":11.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4058,"AM":0,"x":83.385,"y":20.275,"w":11.738,"h":0.833,"TU":"Line 6. Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the first day of the tax year. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4059,"AM":0,"x":83.302,"y":21.038,"w":11.753,"h":0.833,"TU":"Line 7. Increases for the tax year (see page 3 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4060,"AM":1024,"x":83.377,"y":21.788,"w":11.678,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4061,"AM":0,"x":83.452,"y":22.538,"w":11.529,"h":0.833,"TU":"Line 9. Decreases for the tax year (see page 4 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":4062,"AM":1024,"x":63.448,"y":23.253,"w":11.774,"h":0.833,"TU":"10a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":4063,"AM":1024,"x":83.33,"y":24.568,"w":11.697,"h":0.833,"TU":"10b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4064,"AM":0,"x":83.235,"y":27.748,"w":11.888,"h":0.833,"TU":"Line 11. Investment in the activity (or in your interest in the activity) at the effective date. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4065,"AM":0,"x":83.302,"y":28.538,"w":11.753,"h":0.833,"TU":"Line 12. Increases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4066,"AM":1024,"x":83.227,"y":29.288,"w":11.828,"h":0.833,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4067,"AM":0,"x":83.302,"y":30.029,"w":11.753,"h":0.833,"TU":"Line 14. Decreases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4070,"AM":0,"x":83.181,"y":32.192,"w":11.921,"h":0.833,"TU":"Line 15. Amount at risk."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4073,"AM":0,"x":83.405,"y":34.415,"w":11.697,"h":0.833,"TU":"Line 16. Increases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4074,"AM":1024,"x":83.377,"y":35.323,"w":11.603,"h":0.833,"TU":"17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":4077,"AM":0,"x":83.16,"y":36.686,"w":11.888,"h":0.833,"TU":"Line 18. Decreases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":4078,"AM":0,"x":63.448,"y":37.468,"w":11.998,"h":0.833,"TU":"19a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":4079,"AM":1024,"x":83.255,"y":38.989,"w":11.772,"h":0.833,"TU":"19b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":4080,"AM":1024,"x":83.302,"y":40.538,"w":11.603,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":4081,"AM":1024,"x":83.823,"y":41.99,"w":11.299,"h":0.833,"MV":"-"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XA","EN":0},"TI":4068,"AM":0,"x":11.449,"y":31.48,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XB","EN":0},"TI":4069,"AM":0,"x":11.586,"y":32.238,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L15XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XA","EN":0},"TI":4071,"AM":0,"x":11.53,"y":34.505,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XB","EN":0},"TI":4072,"AM":0,"x":27.539,"y":34.5,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L16XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XA","EN":0},"TI":4075,"AM":0,"x":11.598,"y":36.735,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XB","EN":0},"TI":4076,"AM":0,"x":27.608,"y":36.73,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"L18XRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6198E.content.txt b/test/data/fd/form/F6198E.content.txt new file mode 100755 index 00000000..91b7c7c8 --- /dev/null +++ b/test/data/fd/form/F6198E.content.txt @@ -0,0 +1,201 @@ +......................... +Form +6198 +(Rev. November 2009) +Department of the Treasury +Internal Revenue Service +At-Risk Limitations + +Attach to your tax return. + +See separate instructions. +OMB No. 1545-0712 +Attachment +Sequence No. +31 +Name(s) shown on return +Identifying number +Description of activity (see page 2 of the instructions) +Part I +Current Year Profit (Loss) From the Activity, Including Prior Year Nondeductible Amounts. +See page 2 of the instructions. +1 +Ordinary income (loss) from the activity (see page 2 of the instructions) +........ +1 +2 +Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in +the activity) that you are reporting on: +................... +a +Schedule D +............................ +2a +b +Form 4797 +............................ +2b +c +Other form or schedule +........................ +2c +3 +Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B, or +Form 1120S, that were not included on lines 1 through 2c +............. +3 +4 +Other deductions and losses from the activity, including investment interest expense allowed +from Form 4952, that were not included on lines 1 through 2c +........... +4 +5 +Current year profit (loss) from the activity. Combine lines 1 through 4. See page 3 of the +instructions before completing the rest of this form +............... +5 +Part II +Simplified Computation of Amount At Risk. +See page 3 of the instructions before completing this part. +6 +Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the +first day of the tax year. +Do not + enter less than zero +............... +6 +7 +Increases for the tax year (see page 3 of the instructions) +............. +7 +8 +Add lines 6 and 7 +.......................... +8 +9 +Decreases for the tax year (see page 4 of the instructions) +............. +9 +10a +Subtract line 9 from line 8 +............ + +10a +b +If line 10a is +more + than zero, enter that amount here and go to line 20 (or complete Part III). +Otherwise, enter -0- and see +Pub. 925 + for information on the recapture rules +...... +10b +Part III +Detailed Computation of Amount At Risk. +If you completed Part III of Form 6198 for the prior year, see + + +11 +Investment in the activity (or in your interest in the activity) at the effective date. +Do not + enter +less than zero +........................... +11 +12 +Increases at effective date +....................... +12 +13 +Add lines 11 and 12 +13 +14 +Decreases at effective date +....................... +14 +15 +Amount at risk (check box that applies): +a +At effective date. Subtract line 14 from line 13. +Do not + enter less than zero. +b +From your prior year Form 6198, line 19b. +Do not + enter the amount from line 10b of +your prior year form. + +15 +16 +Increases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +16 +17 +Add lines 15 and 16 +......................... +17 +18 +Decreases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +18 +19a +Subtract line 18 from line 17 +........... + +19a +b +If line 19a is +more + than zero, enter that amount here and go to line 20. Otherwise, enter -0- and +see +Pub. 925 + for information on the recapture rules +............... +19b +Part IV +Deductible Loss +Enter the + larger +of line 10b or line 19b +............. +20 +21 +Deductible loss. +Enter the + smaller +of the line 5 loss (treated as a positive number) or line 20. + +See page 8 of the instructions to find out how to report any deductible loss and any carryover . +21 +( ) +Note: +If the loss is from a passive activity, see the Instructions for + +Form 8582, + +Passive Activity Loss Limitations, or the Instructions for + +Form 8810, + +Corporate Passive Activity Loss and Credit Limitations, to find out if the loss is allowed under the passive activity + + +For Paperwork Reduction Act Notice, see page 8 of the instructions. +Form +6198 + (Rev. 11-2009) +page 4of the instructions. +rules. If only part of the loss is subject to the passive activity loss rules, report only that part on Form 8582 or Form 8810, +whichever applies. +Cat. No. 50012Y +20 +Amount at risk. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6198E.fields.json b/test/data/fd/form/F6198E.fields.json new file mode 100755 index 00000000..68f0660e --- /dev/null +++ b/test/data/fd/form/F6198E.fields.json @@ -0,0 +1 @@ +[{"id":"L15XRB","type":"radio","calc":false,"value":"L15XA"},{"id":"L15XRB","type":"radio","calc":false,"value":"L15XB"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XA"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XB"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XA"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XB"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DESC","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"number","calc":false,"value":""},{"id":"L2B","type":"number","calc":false,"value":""},{"id":"L2C","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"mask","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10A","type":"number","calc":true,"value":""},{"id":"L10B","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":false,"value":""},{"id":"L19B","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"mask","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6198E.json b/test/data/fd/form/F6198E.json new file mode 100755 index 00000000..7186ac21 --- /dev/null +++ b/test/data/fd/form/F6198E.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 6198 (Rev. November 2009)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.12,"y":3.769,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.201,"y":5.251,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.201,"y":6.751,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.213,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.213,"y":6.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.201,"y":8.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.926,"y":10.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":12.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":13.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":14.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":15.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":17.251,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":18.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":19.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":79.213,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":22.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":23.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.213,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":28.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":29.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":33.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":35.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":36.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":37.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":39.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":40.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":82.926,"y":41.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":42.751,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":45.751,"w":1.5,"l":45.873},{"oc":"#221f1f","x":51.988,"y":45.751,"w":1.5,"l":31.023},{"oc":"#221f1f","x":82.926,"y":45.751,"w":1.5,"l":16.128}],"VLines":[{"oc":"#221f1f","x":21.094,"y":2.235,"w":1.5,"l":1.609},{"oc":"#221f1f","x":21.094,"y":3.826,"w":1.5,"l":0.594},{"oc":"#221f1f","x":21.094,"y":4.351,"w":1.5,"l":0.915},{"oc":"#221f1f","x":84.206,"y":2.235,"w":1.5,"l":1.549},{"oc":"#221f1f","x":84.206,"y":3.769,"w":1.5,"l":1.498},{"oc":"#221f1f","x":79.256,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":82.969,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"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":82.969,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":17.236,"w":0.75,"l":1.531},{"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":0.781},{"oc":"#221f1f","x":82.969,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":59.456,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":26.985,"w":0.75,"l":1.531},{"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":82.969,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":34.485,"w":0.75,"l":0.781},{"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":82.969,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.456,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.244,"y":8.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":10.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":18.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":23.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":25.501,"w":6.188,"h":0.743,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":30.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":33.001,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":36.001,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":37.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":39.751,"w":6.188,"h":0.742,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":41.251,"w":3.712,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":26.564,"y":29.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.994,"y":2.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.136,"y":2.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.4349999999999996,"w":9.947000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20November%202009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.994,"y":3.941,"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.994,"y":4.391,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.15,"y":2.317,"w":9.111999999999998,"clr":-1,"A":"left","R":[{"T":"At-Risk%20Limitations","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.526,"y":3.423,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.846,"y":3.5170000000000003,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":43.172,"y":4.173,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.492,"y":4.267,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.797,"y":2.425,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0712","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":3.628,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":4.211,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":96.404,"y":4.211,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.994,"y":5.033,"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.038,"y":5.031,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.994,"y":6.438,"w":23.68800000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20activity%20(see%20page%202%20of%20the%20instructions)","S":2,"TS":[0,10,0,0]}]},{"x":6.892,"y":8.052,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.052,"w":43.67499999999996,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Profit%20(Loss)%20From%20the%20Activity%2C%20Including%20Prior%20Year%20Nondeductible%20Amounts.%20%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.805,"w":13.651000000000002,"clr":-1,"A":"left","R":[{"T":"See%20page%202%20of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":9.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":9.631,"w":31.728000000000005,"clr":-1,"A":"left","R":[{"T":"Ordinary%20income%20(loss)%20from%20the%20activity%20(see%20page%202%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":9.631,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":9.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":10.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":10.443,"w":42.11599999999998,"clr":-1,"A":"left","R":[{"T":"Gain%20(loss)%20from%20the%20sale%20or%20other%20disposition%20of%20assets%20used%20in%20the%20activity%20(or%20of%20your%20interest%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":11.13,"w":16.966,"clr":-1,"A":"left","R":[{"T":"the%20activity)%20that%20you%20are%20reporting%20on%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.933,"y":11.13,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":11.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":11.881,"w":5.446,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":11.881,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":11.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":12.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":12.631,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%204797%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":12.631,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.96,"y":12.628,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":13.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":13.381,"w":10.614000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20form%20or%20schedule%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":13.381,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":13.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":14.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":14.193,"w":41.56999999999998,"clr":-1,"A":"left","R":[{"T":"Other%20income%20and%20gains%20from%20the%20activity%2C%20from%20Schedule%20K-1%20of%20Form%201065%2C%20Form%201065-B%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":14.88,"w":25.971000000000014,"clr":-1,"A":"left","R":[{"T":"Form%201120S%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.309,"y":14.88,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":14.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":15.678,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":15.693000000000001,"w":41.41600000000001,"clr":-1,"A":"left","R":[{"T":"Other%20deductions%20and%20losses%20from%20the%20activity%2C%20including%20investment%20interest%20expense%20allowed","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.941,"y":16.38,"w":27.65700000000001,"clr":-1,"A":"left","R":[{"T":"from%20Form%204952%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.437,"y":16.38,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":16.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":17.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":17.193,"w":38.989,"clr":-1,"A":"left","R":[{"T":"Current%20year%20profit%20(loss)%20from%20the%20activity.%20Combine%20lines%201%20through%204.%20See%20page%203%20of%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":17.88,"w":22.875000000000004,"clr":-1,"A":"left","R":[{"T":"instructions%20before%20completing%20the%20rest%20of%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.186,"y":17.88,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":17.879,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"x":6.638,"y":18.552,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":18.553,"w":20.779,"clr":-1,"A":"left","R":[{"T":"Simplified%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.062,"y":18.553,"w":25.987000000000005,"clr":-1,"A":"left","R":[{"T":"See%20page%203%20of%20the%20instructions%20before%20completing%20this%20part.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":19.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":19.443,"w":43.138999999999974,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20(as%20defined%20in%20section%201011)%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20on%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":20.128,"w":10.797000000000004,"clr":-1,"A":"left","R":[{"T":"first%20day%20of%20the%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.744,"y":20.128,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.329,"y":20.128,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":20.128,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.129,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":20.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":20.881,"w":25.595000000000013,"clr":-1,"A":"left","R":[{"T":"Increases%20for%20the%20tax%20year%20(see%20page%203%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.881,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":21.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":21.631,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":21.631,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":21.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":22.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":22.381,"w":26.02100000000001,"clr":-1,"A":"left","R":[{"T":"Decreases%20for%20the%20tax%20year%20(see%20page%204%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":22.381,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":22.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.131,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%209%20from%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.131,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":23.037,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":23.878,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.941,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2010a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.212,"y":23.941,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.917,"y":23.941,"w":32.822,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020%20(or%20complete%20Part%20III).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.947,"y":24.628,"w":13.058000000000007,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-%20and%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.427,"y":24.628,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.246,"y":24.628,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.756,"y":24.628,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":24.628,"w":1.723,"clr":-1,"A":"left","R":[{"T":"10b","S":9,"TS":[0,12,1,0]}]},{"x":6.385,"y":25.299,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":25.302,"w":19.89,"clr":-1,"A":"left","R":[{"T":"Detailed%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":46.56,"y":25.302,"w":27.022999999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20III%20of%20Form%206198%20for%20the%20prior%20year%2C%20see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.749,"y":26.928,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":26.941,"w":35.821999999999996,"clr":-1,"A":"left","R":[{"T":"Investment%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20at%20the%20effective%20date.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.869,"y":26.941,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.528,"y":26.941,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":27.63,"w":6.481,"clr":-1,"A":"left","R":[{"T":"less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.434,"y":27.63,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":27.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":28.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":28.381,"w":12.019000000000004,"clr":-1,"A":"left","R":[{"T":"Increases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":28.381,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":28.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.879,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.881,"w":12.445000000000004,"clr":-1,"A":"left","R":[{"T":"Decreases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":29.881,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":30.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":30.631,"w":17.69,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":31.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":31.378,"w":20.968000000000007,"clr":-1,"A":"left","R":[{"T":"At%20effective%20date.%20Subtract%20line%2014%20from%20line%2013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.416,"y":31.378,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.001,"y":31.378,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":32.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":32.203,"w":19.117,"clr":-1,"A":"left","R":[{"T":"From%20your%20prior%20year%20Form%206198%2C%20line%2019b.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.896,"y":32.203,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":44.653,"y":32.203,"w":15.469000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20the%20amount%20from%20line%2010b%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.419,"y":32.881,"w":9.093000000000002,"clr":-1,"A":"left","R":[{"T":"your%20prior%20year%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.779,"y":32.55,"w":0.613,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,21,0,0]}]},{"oc":"#221f1f","x":80.002,"y":32.129,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":33.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":33.631,"w":18.132000000000005,"clr":-1,"A":"left","R":[{"T":"Increases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":34.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":34.381,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":34.378,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":34.381,"w":11.816000000000003,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":34.381,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":34.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2015%20and%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":35.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":35.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.878,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.881,"w":18.558000000000007,"clr":-1,"A":"left","R":[{"T":"Decreases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":36.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":36.631,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":36.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":36.631,"w":11.538000000000002,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":36.631,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":36.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":37.381,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":37.381,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":37.287,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":38.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":38.191,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2019a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.281,"y":38.191,"w":2.48,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.174,"y":38.191,"w":34.713,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020.%20Otherwise%2C%20enter%20-0-%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":38.878,"w":1.8519999999999999,"clr":-1,"A":"left","R":[{"T":"see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.798,"y":38.878,"w":4.095000000000001,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.96,"y":38.878,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":38.878,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":38.878,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19b","S":9,"TS":[0,12,1,0]}]},{"x":6.35,"y":39.548,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":39.552,"w":7.701999999999999,"clr":-1,"A":"left","R":[{"T":"Deductible%20Loss","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.57,"y":40.378,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.472,"y":40.378,"w":3.3350000000000004,"clr":-1,"A":"left","R":[{"T":"%20larger%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.484,"y":40.378,"w":9.929000000000004,"clr":-1,"A":"left","R":[{"T":"of%20line%2010b%20or%20line%2019b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":40.378,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":40.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":41.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":41.191,"w":7.947000000000001,"clr":-1,"A":"left","R":[{"T":"Deductible%20loss.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.168,"y":41.191,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.071,"y":41.191,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.995,"y":41.191,"w":25.487000000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20line%205%20loss%20(treated%20as%20a%20positive%20number)%20or%20line%2020.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.944,"y":41.88,"w":42.28499999999998,"clr":-1,"A":"left","R":[{"T":"See%20page%208%20of%20the%20instructions%20to%20find%20out%20how%20to%20report%20any%20deductible%20loss%20and%20any%20carryover%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":41.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.891,"y":41.769,"w":11.638000000000012,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.944,"y":42.916,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":15.105,"y":42.916,"w":26.369000000000003,"clr":-1,"A":"left","R":[{"T":"If%20the%20loss%20is%20from%20a%20passive%20activity%2C%20see%20the%20Instructions%20for%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.722,"y":42.916,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208582%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":59.596,"y":42.916,"w":24.462000000000007,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Loss%20Limitations%2C%20or%20the%20Instructions%20for","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.714,"y":43.572,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208810%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":22.383,"y":43.572,"w":50.18799999999999,"clr":-1,"A":"left","R":[{"T":"Corporate%20Passive%20Activity%20Loss%20and%20Credit%20Limitations%2C%20to%20find%20out%20if%20the%20loss%20is%20allowed%20under%20the%20passive%20activity%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.994,"y":45.742,"w":32.341,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%208%20of%20the%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":83.616,"y":45.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.758,"y":45.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.581,"y":45.74,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2011-2009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":13.728,"y":26.055,"w":11.373000000000003,"clr":-1,"A":"left","R":[{"T":"page%204of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.71,"y":44.229,"w":53.76499999999994,"clr":-1,"A":"left","R":[{"T":"rules.%20If%20only%20part%20of%20the%20loss%20is%20subject%20to%20the%20passive%20activity%20loss%20rules%2C%20report%20only%20that%20part%20on%20Form%208582%20or%20Form%208810%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.709,"y":44.885,"w":8.241,"clr":-1,"A":"left","R":[{"T":"whichever%20applies.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.793,"y":45.745,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2050012Y","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.749,"y":40.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":40.378,"w":7.557,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4082,"AM":1024,"x":6.2,"y":5.931,"w":59.421,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4083,"AM":1024,"x":80.291,"y":5.959,"w":15.848,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":4084,"AM":0,"x":6.151,"y":7.316,"w":73.121,"h":0.842,"TU":"Description of activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4085,"AM":0,"x":83.078,"y":9.788,"w":12.127,"h":0.833,"TU":"Line 1. Ordinary income (loss) from the activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":4086,"AM":0,"x":83.181,"y":11.97,"w":11.921,"h":0.833,"TU":"Line 2a. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Schedule D."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":4087,"AM":0,"x":83.078,"y":12.788,"w":12.127,"h":0.833,"TU":"Line 2b.Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Form 4797."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2C","EN":0},"TI":4088,"AM":0,"x":83.078,"y":13.538,"w":12.127,"h":0.833,"TU":"Line 2c. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Other form or schedule."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4089,"AM":0,"x":83.16,"y":15.053,"w":11.963,"h":0.833,"TU":"Line 3. Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B. or Form 1120S, that were not included on lines 1 through 2c."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4090,"AM":0,"x":83.869,"y":16.501,"w":11.176,"h":0.833,"TU":"Line 4. Other deductions and losses from the activity, including investment interest expense allowed from Form 4952, that were not included on lines 1 through 2c.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4091,"AM":1024,"x":83.16,"y":18.053,"w":11.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4092,"AM":0,"x":83.385,"y":20.275,"w":11.738,"h":0.833,"TU":"Line 6. Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the first day of the tax year. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4093,"AM":0,"x":83.302,"y":21.038,"w":11.753,"h":0.833,"TU":"Line 7. Increases for the tax year (see page 3 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4094,"AM":1024,"x":83.377,"y":21.788,"w":11.678,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4095,"AM":0,"x":83.452,"y":22.538,"w":11.529,"h":0.833,"TU":"Line 9. Decreases for the tax year (see page 4 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":4096,"AM":1024,"x":63.448,"y":23.253,"w":11.774,"h":0.833,"TU":"10a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":4097,"AM":1024,"x":83.33,"y":24.568,"w":11.697,"h":0.833,"TU":"10b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4098,"AM":0,"x":83.235,"y":27.748,"w":11.888,"h":0.833,"TU":"Line 11. Investment in the activity (or in your interest in the activity) at the effective date. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4099,"AM":0,"x":83.302,"y":28.538,"w":11.753,"h":0.833,"TU":"Line 12. Increases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4100,"AM":1024,"x":83.227,"y":29.288,"w":11.828,"h":0.833,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4101,"AM":0,"x":83.302,"y":30.029,"w":11.753,"h":0.833,"TU":"Line 14. Decreases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4104,"AM":0,"x":83.181,"y":32.192,"w":11.921,"h":0.833,"TU":"Line 15. Amount at risk."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4107,"AM":0,"x":83.405,"y":34.415,"w":11.697,"h":0.833,"TU":"Line 16. Increases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4108,"AM":1024,"x":83.377,"y":35.323,"w":11.603,"h":0.833,"TU":"17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":4111,"AM":0,"x":83.16,"y":36.686,"w":11.888,"h":0.833,"TU":"Line 18. Decreases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":4112,"AM":0,"x":63.448,"y":37.468,"w":11.998,"h":0.833,"TU":"19a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":4113,"AM":1024,"x":83.255,"y":38.989,"w":11.772,"h":0.833,"TU":"19b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":4114,"AM":1024,"x":83.302,"y":40.538,"w":11.603,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":4115,"AM":1024,"x":83.823,"y":41.99,"w":11.299,"h":0.833,"MV":"-"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XA","EN":0},"TI":4102,"AM":0,"x":11.449,"y":31.48,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XB","EN":0},"TI":4103,"AM":0,"x":11.586,"y":32.238,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L15XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XA","EN":0},"TI":4105,"AM":0,"x":11.53,"y":34.505,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XB","EN":0},"TI":4106,"AM":0,"x":27.539,"y":34.5,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L16XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XA","EN":0},"TI":4109,"AM":0,"x":11.598,"y":36.735,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XB","EN":0},"TI":4110,"AM":0,"x":27.608,"y":36.73,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"L18XRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6198F.content.txt b/test/data/fd/form/F6198F.content.txt new file mode 100755 index 00000000..91b7c7c8 --- /dev/null +++ b/test/data/fd/form/F6198F.content.txt @@ -0,0 +1,201 @@ +......................... +Form +6198 +(Rev. November 2009) +Department of the Treasury +Internal Revenue Service +At-Risk Limitations + +Attach to your tax return. + +See separate instructions. +OMB No. 1545-0712 +Attachment +Sequence No. +31 +Name(s) shown on return +Identifying number +Description of activity (see page 2 of the instructions) +Part I +Current Year Profit (Loss) From the Activity, Including Prior Year Nondeductible Amounts. +See page 2 of the instructions. +1 +Ordinary income (loss) from the activity (see page 2 of the instructions) +........ +1 +2 +Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in +the activity) that you are reporting on: +................... +a +Schedule D +............................ +2a +b +Form 4797 +............................ +2b +c +Other form or schedule +........................ +2c +3 +Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B, or +Form 1120S, that were not included on lines 1 through 2c +............. +3 +4 +Other deductions and losses from the activity, including investment interest expense allowed +from Form 4952, that were not included on lines 1 through 2c +........... +4 +5 +Current year profit (loss) from the activity. Combine lines 1 through 4. See page 3 of the +instructions before completing the rest of this form +............... +5 +Part II +Simplified Computation of Amount At Risk. +See page 3 of the instructions before completing this part. +6 +Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the +first day of the tax year. +Do not + enter less than zero +............... +6 +7 +Increases for the tax year (see page 3 of the instructions) +............. +7 +8 +Add lines 6 and 7 +.......................... +8 +9 +Decreases for the tax year (see page 4 of the instructions) +............. +9 +10a +Subtract line 9 from line 8 +............ + +10a +b +If line 10a is +more + than zero, enter that amount here and go to line 20 (or complete Part III). +Otherwise, enter -0- and see +Pub. 925 + for information on the recapture rules +...... +10b +Part III +Detailed Computation of Amount At Risk. +If you completed Part III of Form 6198 for the prior year, see + + +11 +Investment in the activity (or in your interest in the activity) at the effective date. +Do not + enter +less than zero +........................... +11 +12 +Increases at effective date +....................... +12 +13 +Add lines 11 and 12 +13 +14 +Decreases at effective date +....................... +14 +15 +Amount at risk (check box that applies): +a +At effective date. Subtract line 14 from line 13. +Do not + enter less than zero. +b +From your prior year Form 6198, line 19b. +Do not + enter the amount from line 10b of +your prior year form. + +15 +16 +Increases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +16 +17 +Add lines 15 and 16 +......................... +17 +18 +Decreases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +18 +19a +Subtract line 18 from line 17 +........... + +19a +b +If line 19a is +more + than zero, enter that amount here and go to line 20. Otherwise, enter -0- and +see +Pub. 925 + for information on the recapture rules +............... +19b +Part IV +Deductible Loss +Enter the + larger +of line 10b or line 19b +............. +20 +21 +Deductible loss. +Enter the + smaller +of the line 5 loss (treated as a positive number) or line 20. + +See page 8 of the instructions to find out how to report any deductible loss and any carryover . +21 +( ) +Note: +If the loss is from a passive activity, see the Instructions for + +Form 8582, + +Passive Activity Loss Limitations, or the Instructions for + +Form 8810, + +Corporate Passive Activity Loss and Credit Limitations, to find out if the loss is allowed under the passive activity + + +For Paperwork Reduction Act Notice, see page 8 of the instructions. +Form +6198 + (Rev. 11-2009) +page 4of the instructions. +rules. If only part of the loss is subject to the passive activity loss rules, report only that part on Form 8582 or Form 8810, +whichever applies. +Cat. No. 50012Y +20 +Amount at risk. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6198F.fields.json b/test/data/fd/form/F6198F.fields.json new file mode 100755 index 00000000..68f0660e --- /dev/null +++ b/test/data/fd/form/F6198F.fields.json @@ -0,0 +1 @@ +[{"id":"L15XRB","type":"radio","calc":false,"value":"L15XA"},{"id":"L15XRB","type":"radio","calc":false,"value":"L15XB"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XA"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XB"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XA"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XB"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DESC","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"number","calc":false,"value":""},{"id":"L2B","type":"number","calc":false,"value":""},{"id":"L2C","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"mask","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10A","type":"number","calc":true,"value":""},{"id":"L10B","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":false,"value":""},{"id":"L19B","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"mask","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6198F.json b/test/data/fd/form/F6198F.json new file mode 100755 index 00000000..7521109a --- /dev/null +++ b/test/data/fd/form/F6198F.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 6198 (Rev. November 2009)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.12,"y":3.769,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.201,"y":5.251,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.201,"y":6.751,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.213,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.213,"y":6.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.201,"y":8.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.926,"y":10.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":12.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":13.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":14.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":15.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":17.251,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":18.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":19.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":79.213,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":22.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":23.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.213,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":28.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":29.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":33.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":35.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":36.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":37.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":39.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":40.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":82.926,"y":41.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":42.751,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":45.751,"w":1.5,"l":45.873},{"oc":"#221f1f","x":51.988,"y":45.751,"w":1.5,"l":31.023},{"oc":"#221f1f","x":82.926,"y":45.751,"w":1.5,"l":16.128}],"VLines":[{"oc":"#221f1f","x":21.094,"y":2.235,"w":1.5,"l":1.609},{"oc":"#221f1f","x":21.094,"y":3.826,"w":1.5,"l":0.594},{"oc":"#221f1f","x":21.094,"y":4.351,"w":1.5,"l":0.915},{"oc":"#221f1f","x":84.206,"y":2.235,"w":1.5,"l":1.549},{"oc":"#221f1f","x":84.206,"y":3.769,"w":1.5,"l":1.498},{"oc":"#221f1f","x":79.256,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":82.969,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"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":82.969,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":17.236,"w":0.75,"l":1.531},{"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":0.781},{"oc":"#221f1f","x":82.969,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":59.456,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":26.985,"w":0.75,"l":1.531},{"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":82.969,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":34.485,"w":0.75,"l":0.781},{"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":82.969,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.456,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.244,"y":8.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":10.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":18.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":23.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":25.501,"w":6.188,"h":0.743,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":30.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":33.001,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":36.001,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":37.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":39.751,"w":6.188,"h":0.742,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":41.251,"w":3.712,"h":0.75,"clr":-1},{"oc":"#221f1f","x":0.037,"y":48.974,"w":1.447,"h":0.526,"clr":-1}],"Texts":[{"oc":"#221f1f","x":26.564,"y":29.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.994,"y":2.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.136,"y":2.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.4349999999999996,"w":9.947000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20November%202009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.994,"y":3.941,"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.994,"y":4.391,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.15,"y":2.317,"w":9.111999999999998,"clr":-1,"A":"left","R":[{"T":"At-Risk%20Limitations","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.526,"y":3.423,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.846,"y":3.5170000000000003,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":43.172,"y":4.173,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.492,"y":4.267,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.797,"y":2.425,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0712","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":3.628,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":4.211,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":96.404,"y":4.211,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.994,"y":5.033,"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.038,"y":5.031,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.994,"y":6.438,"w":23.68800000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20activity%20(see%20page%202%20of%20the%20instructions)","S":2,"TS":[0,10,0,0]}]},{"x":6.892,"y":8.052,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.052,"w":43.67499999999996,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Profit%20(Loss)%20From%20the%20Activity%2C%20Including%20Prior%20Year%20Nondeductible%20Amounts.%20%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.805,"w":13.651000000000002,"clr":-1,"A":"left","R":[{"T":"See%20page%202%20of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":9.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":9.631,"w":31.728000000000005,"clr":-1,"A":"left","R":[{"T":"Ordinary%20income%20(loss)%20from%20the%20activity%20(see%20page%202%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":9.631,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":9.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":10.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":10.443,"w":42.11599999999998,"clr":-1,"A":"left","R":[{"T":"Gain%20(loss)%20from%20the%20sale%20or%20other%20disposition%20of%20assets%20used%20in%20the%20activity%20(or%20of%20your%20interest%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":11.13,"w":16.966,"clr":-1,"A":"left","R":[{"T":"the%20activity)%20that%20you%20are%20reporting%20on%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.933,"y":11.13,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":11.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":11.881,"w":5.446,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":11.881,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":11.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":12.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":12.631,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%204797%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":12.631,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.96,"y":12.628,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":13.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":13.381,"w":10.614000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20form%20or%20schedule%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":13.381,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":13.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":14.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":14.193,"w":41.56999999999998,"clr":-1,"A":"left","R":[{"T":"Other%20income%20and%20gains%20from%20the%20activity%2C%20from%20Schedule%20K-1%20of%20Form%201065%2C%20Form%201065-B%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":14.88,"w":25.971000000000014,"clr":-1,"A":"left","R":[{"T":"Form%201120S%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.309,"y":14.88,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":14.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":15.678,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":15.693000000000001,"w":41.41600000000001,"clr":-1,"A":"left","R":[{"T":"Other%20deductions%20and%20losses%20from%20the%20activity%2C%20including%20investment%20interest%20expense%20allowed","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.941,"y":16.38,"w":27.65700000000001,"clr":-1,"A":"left","R":[{"T":"from%20Form%204952%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.437,"y":16.38,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":16.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":17.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":17.193,"w":38.989,"clr":-1,"A":"left","R":[{"T":"Current%20year%20profit%20(loss)%20from%20the%20activity.%20Combine%20lines%201%20through%204.%20See%20page%203%20of%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":17.88,"w":22.875000000000004,"clr":-1,"A":"left","R":[{"T":"instructions%20before%20completing%20the%20rest%20of%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.186,"y":17.88,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":17.879,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"x":6.638,"y":18.552,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":18.553,"w":20.779,"clr":-1,"A":"left","R":[{"T":"Simplified%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.062,"y":18.553,"w":25.987000000000005,"clr":-1,"A":"left","R":[{"T":"See%20page%203%20of%20the%20instructions%20before%20completing%20this%20part.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":19.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":19.443,"w":43.138999999999974,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20(as%20defined%20in%20section%201011)%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20on%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":20.128,"w":10.797000000000004,"clr":-1,"A":"left","R":[{"T":"first%20day%20of%20the%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.744,"y":20.128,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.329,"y":20.128,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":20.128,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.129,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":20.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":20.881,"w":25.595000000000013,"clr":-1,"A":"left","R":[{"T":"Increases%20for%20the%20tax%20year%20(see%20page%203%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.881,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":21.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":21.631,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":21.631,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":21.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":22.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":22.381,"w":26.02100000000001,"clr":-1,"A":"left","R":[{"T":"Decreases%20for%20the%20tax%20year%20(see%20page%204%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":22.381,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":22.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.131,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%209%20from%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.131,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":23.037,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":23.878,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.941,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2010a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.212,"y":23.941,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.917,"y":23.941,"w":32.822,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020%20(or%20complete%20Part%20III).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.947,"y":24.628,"w":13.058000000000007,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-%20and%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.427,"y":24.628,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.246,"y":24.628,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.756,"y":24.628,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":24.628,"w":1.723,"clr":-1,"A":"left","R":[{"T":"10b","S":9,"TS":[0,12,1,0]}]},{"x":6.385,"y":25.299,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":25.302,"w":19.89,"clr":-1,"A":"left","R":[{"T":"Detailed%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":46.56,"y":25.302,"w":27.022999999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20III%20of%20Form%206198%20for%20the%20prior%20year%2C%20see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.749,"y":26.928,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":26.941,"w":35.821999999999996,"clr":-1,"A":"left","R":[{"T":"Investment%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20at%20the%20effective%20date.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.869,"y":26.941,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.528,"y":26.941,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":27.63,"w":6.481,"clr":-1,"A":"left","R":[{"T":"less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.434,"y":27.63,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":27.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":28.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":28.381,"w":12.019000000000004,"clr":-1,"A":"left","R":[{"T":"Increases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":28.381,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":28.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.879,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.881,"w":12.445000000000004,"clr":-1,"A":"left","R":[{"T":"Decreases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":29.881,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":30.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":30.631,"w":17.69,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":31.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":31.378,"w":20.968000000000007,"clr":-1,"A":"left","R":[{"T":"At%20effective%20date.%20Subtract%20line%2014%20from%20line%2013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.416,"y":31.378,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.001,"y":31.378,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":32.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":32.203,"w":19.117,"clr":-1,"A":"left","R":[{"T":"From%20your%20prior%20year%20Form%206198%2C%20line%2019b.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.896,"y":32.203,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":44.653,"y":32.203,"w":15.469000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20the%20amount%20from%20line%2010b%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.419,"y":32.881,"w":9.093000000000002,"clr":-1,"A":"left","R":[{"T":"your%20prior%20year%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.779,"y":32.55,"w":0.613,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,21,0,0]}]},{"oc":"#221f1f","x":80.002,"y":32.129,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":33.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":33.631,"w":18.132000000000005,"clr":-1,"A":"left","R":[{"T":"Increases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":34.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":34.381,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":34.378,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":34.381,"w":11.816000000000003,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":34.381,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":34.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2015%20and%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":35.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":35.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.878,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.881,"w":18.558000000000007,"clr":-1,"A":"left","R":[{"T":"Decreases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":36.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":36.631,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":36.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":36.631,"w":11.538000000000002,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":36.631,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":36.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":37.381,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":37.381,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":37.287,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":38.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":38.191,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2019a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.281,"y":38.191,"w":2.48,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.174,"y":38.191,"w":34.713,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020.%20Otherwise%2C%20enter%20-0-%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":38.878,"w":1.8519999999999999,"clr":-1,"A":"left","R":[{"T":"see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.798,"y":38.878,"w":4.095000000000001,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.96,"y":38.878,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":38.878,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":38.878,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19b","S":9,"TS":[0,12,1,0]}]},{"x":6.35,"y":39.548,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":39.552,"w":7.701999999999999,"clr":-1,"A":"left","R":[{"T":"Deductible%20Loss","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.57,"y":40.378,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.472,"y":40.378,"w":3.3350000000000004,"clr":-1,"A":"left","R":[{"T":"%20larger%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.484,"y":40.378,"w":9.929000000000004,"clr":-1,"A":"left","R":[{"T":"of%20line%2010b%20or%20line%2019b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":40.378,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":40.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":41.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":41.191,"w":7.947000000000001,"clr":-1,"A":"left","R":[{"T":"Deductible%20loss.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.168,"y":41.191,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.071,"y":41.191,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.995,"y":41.191,"w":25.487000000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20line%205%20loss%20(treated%20as%20a%20positive%20number)%20or%20line%2020.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.944,"y":41.88,"w":42.28499999999998,"clr":-1,"A":"left","R":[{"T":"See%20page%208%20of%20the%20instructions%20to%20find%20out%20how%20to%20report%20any%20deductible%20loss%20and%20any%20carryover%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":41.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.891,"y":41.769,"w":11.638000000000012,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.944,"y":42.916,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":15.105,"y":42.916,"w":26.369000000000003,"clr":-1,"A":"left","R":[{"T":"If%20the%20loss%20is%20from%20a%20passive%20activity%2C%20see%20the%20Instructions%20for%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.722,"y":42.916,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208582%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":59.596,"y":42.916,"w":24.462000000000007,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Loss%20Limitations%2C%20or%20the%20Instructions%20for","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.714,"y":43.572,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208810%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":22.383,"y":43.572,"w":50.18799999999999,"clr":-1,"A":"left","R":[{"T":"Corporate%20Passive%20Activity%20Loss%20and%20Credit%20Limitations%2C%20to%20find%20out%20if%20the%20loss%20is%20allowed%20under%20the%20passive%20activity%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.994,"y":45.742,"w":32.341,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%208%20of%20the%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":83.616,"y":45.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.758,"y":45.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.581,"y":45.74,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2011-2009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":13.728,"y":26.055,"w":11.373000000000003,"clr":-1,"A":"left","R":[{"T":"page%204of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.71,"y":44.229,"w":53.76499999999994,"clr":-1,"A":"left","R":[{"T":"rules.%20If%20only%20part%20of%20the%20loss%20is%20subject%20to%20the%20passive%20activity%20loss%20rules%2C%20report%20only%20that%20part%20on%20Form%208582%20or%20Form%208810%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.709,"y":44.885,"w":8.241,"clr":-1,"A":"left","R":[{"T":"whichever%20applies.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.793,"y":45.745,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2050012Y","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.749,"y":40.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":40.378,"w":7.557,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4116,"AM":1024,"x":6.2,"y":5.931,"w":59.421,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4117,"AM":1024,"x":80.291,"y":5.959,"w":15.848,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":4118,"AM":0,"x":6.151,"y":7.316,"w":73.121,"h":0.842,"TU":"Description of activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4119,"AM":0,"x":83.078,"y":9.788,"w":12.127,"h":0.833,"TU":"Line 1. Ordinary income (loss) from the activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":4120,"AM":0,"x":83.181,"y":11.97,"w":11.921,"h":0.833,"TU":"Line 2a. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Schedule D."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":4121,"AM":0,"x":83.078,"y":12.788,"w":12.127,"h":0.833,"TU":"Line 2b.Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Form 4797."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2C","EN":0},"TI":4122,"AM":0,"x":83.078,"y":13.538,"w":12.127,"h":0.833,"TU":"Line 2c. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Other form or schedule."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4123,"AM":0,"x":83.16,"y":15.053,"w":11.963,"h":0.833,"TU":"Line 3. Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B. or Form 1120S, that were not included on lines 1 through 2c."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4124,"AM":0,"x":83.869,"y":16.501,"w":11.176,"h":0.833,"TU":"Line 4. Other deductions and losses from the activity, including investment interest expense allowed from Form 4952, that were not included on lines 1 through 2c.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4125,"AM":1024,"x":83.16,"y":18.053,"w":11.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4126,"AM":0,"x":83.385,"y":20.275,"w":11.738,"h":0.833,"TU":"Line 6. Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the first day of the tax year. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4127,"AM":0,"x":83.302,"y":21.038,"w":11.753,"h":0.833,"TU":"Line 7. Increases for the tax year (see page 3 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4128,"AM":1024,"x":83.377,"y":21.788,"w":11.678,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4129,"AM":0,"x":83.452,"y":22.538,"w":11.529,"h":0.833,"TU":"Line 9. Decreases for the tax year (see page 4 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":4130,"AM":1024,"x":63.448,"y":23.253,"w":11.774,"h":0.833,"TU":"10a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":4131,"AM":1024,"x":83.33,"y":24.568,"w":11.697,"h":0.833,"TU":"10b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4132,"AM":0,"x":83.235,"y":27.748,"w":11.888,"h":0.833,"TU":"Line 11. Investment in the activity (or in your interest in the activity) at the effective date. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4133,"AM":0,"x":83.302,"y":28.538,"w":11.753,"h":0.833,"TU":"Line 12. Increases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4134,"AM":1024,"x":83.227,"y":29.288,"w":11.828,"h":0.833,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4135,"AM":0,"x":83.302,"y":30.029,"w":11.753,"h":0.833,"TU":"Line 14. Decreases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4138,"AM":0,"x":83.181,"y":32.192,"w":11.921,"h":0.833,"TU":"Line 15. Amount at risk."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4141,"AM":0,"x":83.405,"y":34.415,"w":11.697,"h":0.833,"TU":"Line 16. Increases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4142,"AM":1024,"x":83.377,"y":35.323,"w":11.603,"h":0.833,"TU":"17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":4145,"AM":0,"x":83.16,"y":36.686,"w":11.888,"h":0.833,"TU":"Line 18. Decreases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":4146,"AM":0,"x":63.448,"y":37.468,"w":11.998,"h":0.833,"TU":"19a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":4147,"AM":1024,"x":83.255,"y":38.989,"w":11.772,"h":0.833,"TU":"19b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":4148,"AM":1024,"x":83.302,"y":40.538,"w":11.603,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":4149,"AM":1024,"x":83.823,"y":41.99,"w":11.299,"h":0.833,"MV":"-"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XA","EN":0},"TI":4136,"AM":0,"x":11.449,"y":31.48,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XB","EN":0},"TI":4137,"AM":0,"x":11.586,"y":32.238,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L15XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XA","EN":0},"TI":4139,"AM":0,"x":11.53,"y":34.505,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XB","EN":0},"TI":4140,"AM":0,"x":27.539,"y":34.5,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L16XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XA","EN":0},"TI":4143,"AM":0,"x":11.598,"y":36.735,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XB","EN":0},"TI":4144,"AM":0,"x":27.608,"y":36.73,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"L18XRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6198R.content.txt b/test/data/fd/form/F6198R.content.txt new file mode 100755 index 00000000..91b7c7c8 --- /dev/null +++ b/test/data/fd/form/F6198R.content.txt @@ -0,0 +1,201 @@ +......................... +Form +6198 +(Rev. November 2009) +Department of the Treasury +Internal Revenue Service +At-Risk Limitations + +Attach to your tax return. + +See separate instructions. +OMB No. 1545-0712 +Attachment +Sequence No. +31 +Name(s) shown on return +Identifying number +Description of activity (see page 2 of the instructions) +Part I +Current Year Profit (Loss) From the Activity, Including Prior Year Nondeductible Amounts. +See page 2 of the instructions. +1 +Ordinary income (loss) from the activity (see page 2 of the instructions) +........ +1 +2 +Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in +the activity) that you are reporting on: +................... +a +Schedule D +............................ +2a +b +Form 4797 +............................ +2b +c +Other form or schedule +........................ +2c +3 +Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B, or +Form 1120S, that were not included on lines 1 through 2c +............. +3 +4 +Other deductions and losses from the activity, including investment interest expense allowed +from Form 4952, that were not included on lines 1 through 2c +........... +4 +5 +Current year profit (loss) from the activity. Combine lines 1 through 4. See page 3 of the +instructions before completing the rest of this form +............... +5 +Part II +Simplified Computation of Amount At Risk. +See page 3 of the instructions before completing this part. +6 +Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the +first day of the tax year. +Do not + enter less than zero +............... +6 +7 +Increases for the tax year (see page 3 of the instructions) +............. +7 +8 +Add lines 6 and 7 +.......................... +8 +9 +Decreases for the tax year (see page 4 of the instructions) +............. +9 +10a +Subtract line 9 from line 8 +............ + +10a +b +If line 10a is +more + than zero, enter that amount here and go to line 20 (or complete Part III). +Otherwise, enter -0- and see +Pub. 925 + for information on the recapture rules +...... +10b +Part III +Detailed Computation of Amount At Risk. +If you completed Part III of Form 6198 for the prior year, see + + +11 +Investment in the activity (or in your interest in the activity) at the effective date. +Do not + enter +less than zero +........................... +11 +12 +Increases at effective date +....................... +12 +13 +Add lines 11 and 12 +13 +14 +Decreases at effective date +....................... +14 +15 +Amount at risk (check box that applies): +a +At effective date. Subtract line 14 from line 13. +Do not + enter less than zero. +b +From your prior year Form 6198, line 19b. +Do not + enter the amount from line 10b of +your prior year form. + +15 +16 +Increases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +16 +17 +Add lines 15 and 16 +......................... +17 +18 +Decreases since (check box that applies): +a +Effective date +b +The end of your prior year +.............. +18 +19a +Subtract line 18 from line 17 +........... + +19a +b +If line 19a is +more + than zero, enter that amount here and go to line 20. Otherwise, enter -0- and +see +Pub. 925 + for information on the recapture rules +............... +19b +Part IV +Deductible Loss +Enter the + larger +of line 10b or line 19b +............. +20 +21 +Deductible loss. +Enter the + smaller +of the line 5 loss (treated as a positive number) or line 20. + +See page 8 of the instructions to find out how to report any deductible loss and any carryover . +21 +( ) +Note: +If the loss is from a passive activity, see the Instructions for + +Form 8582, + +Passive Activity Loss Limitations, or the Instructions for + +Form 8810, + +Corporate Passive Activity Loss and Credit Limitations, to find out if the loss is allowed under the passive activity + + +For Paperwork Reduction Act Notice, see page 8 of the instructions. +Form +6198 + (Rev. 11-2009) +page 4of the instructions. +rules. If only part of the loss is subject to the passive activity loss rules, report only that part on Form 8582 or Form 8810, +whichever applies. +Cat. No. 50012Y +20 +Amount at risk. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6198R.fields.json b/test/data/fd/form/F6198R.fields.json new file mode 100755 index 00000000..68f0660e --- /dev/null +++ b/test/data/fd/form/F6198R.fields.json @@ -0,0 +1 @@ +[{"id":"L15XRB","type":"radio","calc":false,"value":"L15XA"},{"id":"L15XRB","type":"radio","calc":false,"value":"L15XB"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XA"},{"id":"L16XRB","type":"radio","calc":false,"value":"L16XB"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XA"},{"id":"L18XRB","type":"radio","calc":false,"value":"L18XB"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DESC","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2A","type":"number","calc":false,"value":""},{"id":"L2B","type":"number","calc":false,"value":""},{"id":"L2C","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"mask","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10A","type":"number","calc":true,"value":""},{"id":"L10B","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":false,"value":""},{"id":"L19B","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"mask","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6198R.json b/test/data/fd/form/F6198R.json new file mode 100755 index 00000000..72f71c8b --- /dev/null +++ b/test/data/fd/form/F6198R.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 6198 (Rev. November 2009)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.12,"y":3.769,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.201,"y":5.251,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.201,"y":6.751,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.213,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.213,"y":6.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.201,"y":8.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.926,"y":10.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":12.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":13.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":14.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":15.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":17.251,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":18.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":19.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":79.213,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":21.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":22.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":23.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.201,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.213,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":28.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":29.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":30.751,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":33.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":35.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":36.001,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":37.501,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.413,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.126,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.501,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.201,"y":39.751,"w":1.125,"l":92.844},{"oc":"#221f1f","x":6.201,"y":40.501,"w":0.75,"l":92.844},{"oc":"#221f1f","x":82.926,"y":41.251,"w":0.75,"l":12.407},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.213,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.926,"y":42.751,"w":0.75,"l":16.119},{"oc":"#221f1f","x":6.201,"y":45.751,"w":1.5,"l":45.873},{"oc":"#221f1f","x":51.988,"y":45.751,"w":1.5,"l":31.023},{"oc":"#221f1f","x":82.926,"y":45.751,"w":1.5,"l":16.128}],"VLines":[{"oc":"#221f1f","x":21.094,"y":2.235,"w":1.5,"l":1.609},{"oc":"#221f1f","x":21.094,"y":3.826,"w":1.5,"l":0.594},{"oc":"#221f1f","x":21.094,"y":4.351,"w":1.5,"l":0.915},{"oc":"#221f1f","x":84.206,"y":2.235,"w":1.5,"l":1.549},{"oc":"#221f1f","x":84.206,"y":3.769,"w":1.5,"l":1.498},{"oc":"#221f1f","x":79.256,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":82.969,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"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":82.969,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"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":82.969,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":17.236,"w":0.75,"l":1.531},{"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":0.781},{"oc":"#221f1f","x":82.969,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":59.456,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":26.985,"w":0.75,"l":1.531},{"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":82.969,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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.969,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":34.485,"w":0.75,"l":0.781},{"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":82.969,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.456,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.169,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.544,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.256,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.969,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"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":82.969,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.969,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.256,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.244,"y":8.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":10.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":18.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":23.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":25.501,"w":6.188,"h":0.743,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":30.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":33.001,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":36.001,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":37.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.244,"y":39.751,"w":6.188,"h":0.742,"clr":-1},{"oc":"#bfc0c4","x":79.256,"y":41.251,"w":3.712,"h":0.75,"clr":-1},{"oc":"#221f1f","x":0.037,"y":48.974,"w":1.447,"h":0.526,"clr":-1}],"Texts":[{"oc":"#221f1f","x":26.564,"y":29.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.994,"y":2.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.136,"y":2.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.4349999999999996,"w":9.947000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20November%202009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.994,"y":3.941,"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.994,"y":4.391,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.15,"y":2.317,"w":9.111999999999998,"clr":-1,"A":"left","R":[{"T":"At-Risk%20Limitations","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.526,"y":3.423,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.846,"y":3.5170000000000003,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":43.172,"y":4.173,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,9,0,0]}]},{"oc":"#221f1f","x":44.492,"y":4.267,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.797,"y":2.425,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0712","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":3.628,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.675,"y":4.211,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":96.404,"y":4.211,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.994,"y":5.033,"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.038,"y":5.031,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.994,"y":6.438,"w":23.68800000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20activity%20(see%20page%202%20of%20the%20instructions)","S":2,"TS":[0,10,0,0]}]},{"x":6.892,"y":8.052,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.052,"w":43.67499999999996,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Profit%20(Loss)%20From%20the%20Activity%2C%20Including%20Prior%20Year%20Nondeductible%20Amounts.%20%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":8.805,"w":13.651000000000002,"clr":-1,"A":"left","R":[{"T":"See%20page%202%20of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":9.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":9.631,"w":31.728000000000005,"clr":-1,"A":"left","R":[{"T":"Ordinary%20income%20(loss)%20from%20the%20activity%20(see%20page%202%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":9.631,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":9.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":10.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":10.443,"w":42.11599999999998,"clr":-1,"A":"left","R":[{"T":"Gain%20(loss)%20from%20the%20sale%20or%20other%20disposition%20of%20assets%20used%20in%20the%20activity%20(or%20of%20your%20interest%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":11.13,"w":16.966,"clr":-1,"A":"left","R":[{"T":"the%20activity)%20that%20you%20are%20reporting%20on%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.933,"y":11.13,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":11.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":11.881,"w":5.446,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":11.881,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":11.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":12.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":12.631,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%204797%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":12.631,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.96,"y":12.628,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":13.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":13.381,"w":10.614000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20form%20or%20schedule%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":13.381,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.989,"y":13.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":14.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":14.193,"w":41.56999999999998,"clr":-1,"A":"left","R":[{"T":"Other%20income%20and%20gains%20from%20the%20activity%2C%20from%20Schedule%20K-1%20of%20Form%201065%2C%20Form%201065-B%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":14.88,"w":25.971000000000014,"clr":-1,"A":"left","R":[{"T":"Form%201120S%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.309,"y":14.88,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":14.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":15.678,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":15.693000000000001,"w":41.41600000000001,"clr":-1,"A":"left","R":[{"T":"Other%20deductions%20and%20losses%20from%20the%20activity%2C%20including%20investment%20interest%20expense%20allowed","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.941,"y":16.38,"w":27.65700000000001,"clr":-1,"A":"left","R":[{"T":"from%20Form%204952%2C%20that%20were%20not%20included%20on%20lines%201%20through%202c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.437,"y":16.38,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":16.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":17.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":17.193,"w":38.989,"clr":-1,"A":"left","R":[{"T":"Current%20year%20profit%20(loss)%20from%20the%20activity.%20Combine%20lines%201%20through%204.%20See%20page%203%20of%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":17.88,"w":22.875000000000004,"clr":-1,"A":"left","R":[{"T":"instructions%20before%20completing%20the%20rest%20of%20this%20form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.186,"y":17.88,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":17.879,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"x":6.638,"y":18.552,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":18.553,"w":20.779,"clr":-1,"A":"left","R":[{"T":"Simplified%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.062,"y":18.553,"w":25.987000000000005,"clr":-1,"A":"left","R":[{"T":"See%20page%203%20of%20the%20instructions%20before%20completing%20this%20part.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.609,"y":19.428,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":19.443,"w":43.138999999999974,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20(as%20defined%20in%20section%201011)%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20on%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":20.128,"w":10.797000000000004,"clr":-1,"A":"left","R":[{"T":"first%20day%20of%20the%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.744,"y":20.128,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.329,"y":20.128,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":20.128,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.129,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":20.878,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":20.881,"w":25.595000000000013,"clr":-1,"A":"left","R":[{"T":"Increases%20for%20the%20tax%20year%20(see%20page%203%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.881,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":20.878,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":21.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":21.631,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":21.631,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":21.628,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.609,"y":22.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":22.381,"w":26.02100000000001,"clr":-1,"A":"left","R":[{"T":"Decreases%20for%20the%20tax%20year%20(see%20page%204%20of%20the%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":22.381,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.433,"y":22.378,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.131,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%209%20from%20line%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.131,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":23.037,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":23.128,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":23.878,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":23.941,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2010a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.212,"y":23.941,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.917,"y":23.941,"w":32.822,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020%20(or%20complete%20Part%20III).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.947,"y":24.628,"w":13.058000000000007,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-%20and%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.427,"y":24.628,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.246,"y":24.628,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.756,"y":24.628,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":24.628,"w":1.723,"clr":-1,"A":"left","R":[{"T":"10b","S":9,"TS":[0,12,1,0]}]},{"x":6.385,"y":25.299,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":25.302,"w":19.89,"clr":-1,"A":"left","R":[{"T":"Detailed%20Computation%20of%20Amount%20At%20Risk.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":46.56,"y":25.302,"w":27.022999999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20III%20of%20Form%206198%20for%20the%20prior%20year%2C%20see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.749,"y":26.928,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":26.941,"w":35.821999999999996,"clr":-1,"A":"left","R":[{"T":"Investment%20in%20the%20activity%20(or%20in%20your%20interest%20in%20the%20activity)%20at%20the%20effective%20date.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.869,"y":26.941,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":64.528,"y":26.941,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.938,"y":27.63,"w":6.481,"clr":-1,"A":"left","R":[{"T":"less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.434,"y":27.63,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":27.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":28.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":28.381,"w":12.019000000000004,"clr":-1,"A":"left","R":[{"T":"Increases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":28.381,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":28.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":29.879,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":29.881,"w":12.445000000000004,"clr":-1,"A":"left","R":[{"T":"Decreases%20at%20effective%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":29.881,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":29.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":30.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":30.631,"w":17.69,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":31.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":31.378,"w":20.968000000000007,"clr":-1,"A":"left","R":[{"T":"At%20effective%20date.%20Subtract%20line%2014%20from%20line%2013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.416,"y":31.378,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.001,"y":31.378,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20less%20than%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":32.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":32.203,"w":19.117,"clr":-1,"A":"left","R":[{"T":"From%20your%20prior%20year%20Form%206198%2C%20line%2019b.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.896,"y":32.203,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":44.653,"y":32.203,"w":15.469000000000003,"clr":-1,"A":"left","R":[{"T":"%20enter%20the%20amount%20from%20line%2010b%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.419,"y":32.881,"w":9.093000000000002,"clr":-1,"A":"left","R":[{"T":"your%20prior%20year%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.779,"y":32.55,"w":0.613,"clr":-1,"A":"left","R":[{"T":"%02%20","S":-1,"TS":[2,21,0,0]}]},{"oc":"#221f1f","x":80.002,"y":32.129,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":33.628,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":33.631,"w":18.132000000000005,"clr":-1,"A":"left","R":[{"T":"Increases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":34.378,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":34.381,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":34.378,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":34.381,"w":11.816000000000003,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":34.381,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":34.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.131,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2015%20and%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":35.131,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":35.128,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":35.878,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":35.881,"w":18.558000000000007,"clr":-1,"A":"left","R":[{"T":"Decreases%20since%20(check%20box%20that%20applies)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.469,"y":36.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.419,"y":36.631,"w":6.111,"clr":-1,"A":"left","R":[{"T":"Effective%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.794,"y":36.628,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.506,"y":36.631,"w":11.538000000000002,"clr":-1,"A":"left","R":[{"T":"The%20end%20of%20your%20prior%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":36.631,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":36.628,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":37.381,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":37.381,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.924,"y":37.287,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":43,"TS":[2,10,0,0]}]},{"oc":"#221f1f","x":59.759,"y":37.378,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.469,"y":38.128,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":38.191,"w":5.575000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2019a%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.281,"y":38.191,"w":2.48,"clr":-1,"A":"left","R":[{"T":"more","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.174,"y":38.191,"w":34.713,"clr":-1,"A":"left","R":[{"T":"%20than%20zero%2C%20enter%20that%20amount%20here%20and%20go%20to%20line%2020.%20Otherwise%2C%20enter%20-0-%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.933,"y":38.878,"w":1.8519999999999999,"clr":-1,"A":"left","R":[{"T":"see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.798,"y":38.878,"w":4.095000000000001,"clr":-1,"A":"left","R":[{"T":"Pub.%20925","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.96,"y":38.878,"w":17.151000000000007,"clr":-1,"A":"left","R":[{"T":"%20for%20information%20on%20the%20recapture%20rules%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.179,"y":38.878,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.53,"y":38.878,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19b","S":9,"TS":[0,12,1,0]}]},{"x":6.35,"y":39.548,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.728,"y":39.552,"w":7.701999999999999,"clr":-1,"A":"left","R":[{"T":"Deductible%20Loss","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.57,"y":40.378,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.472,"y":40.378,"w":3.3350000000000004,"clr":-1,"A":"left","R":[{"T":"%20larger%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.484,"y":40.378,"w":9.929000000000004,"clr":-1,"A":"left","R":[{"T":"of%20line%2010b%20or%20line%2019b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":40.378,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":40.378,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.749,"y":41.128,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":41.191,"w":7.947000000000001,"clr":-1,"A":"left","R":[{"T":"Deductible%20loss.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.168,"y":41.191,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.071,"y":41.191,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.995,"y":41.191,"w":25.487000000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20line%205%20loss%20(treated%20as%20a%20positive%20number)%20or%20line%2020.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.944,"y":41.88,"w":42.28499999999998,"clr":-1,"A":"left","R":[{"T":"See%20page%208%20of%20the%20instructions%20to%20find%20out%20how%20to%20report%20any%20deductible%20loss%20and%20any%20carryover%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.002,"y":41.878,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.891,"y":41.769,"w":11.638000000000012,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.944,"y":42.916,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":15.105,"y":42.916,"w":26.369000000000003,"clr":-1,"A":"left","R":[{"T":"If%20the%20loss%20is%20from%20a%20passive%20activity%2C%20see%20the%20Instructions%20for%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.722,"y":42.916,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208582%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":59.596,"y":42.916,"w":24.462000000000007,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Loss%20Limitations%2C%20or%20the%20Instructions%20for","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.714,"y":43.572,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208810%2C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":22.383,"y":43.572,"w":50.18799999999999,"clr":-1,"A":"left","R":[{"T":"Corporate%20Passive%20Activity%20Loss%20and%20Credit%20Limitations%2C%20to%20find%20out%20if%20the%20loss%20is%20allowed%20under%20the%20passive%20activity%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.994,"y":45.742,"w":32.341,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%208%20of%20the%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":83.616,"y":45.74,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.758,"y":45.74,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6198","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.581,"y":45.74,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2011-2009)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":13.728,"y":26.055,"w":11.373000000000003,"clr":-1,"A":"left","R":[{"T":"page%204of%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.71,"y":44.229,"w":53.76499999999994,"clr":-1,"A":"left","R":[{"T":"rules.%20If%20only%20part%20of%20the%20loss%20is%20subject%20to%20the%20passive%20activity%20loss%20rules%2C%20report%20only%20that%20part%20on%20Form%208582%20or%20Form%208810%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.709,"y":44.885,"w":8.241,"clr":-1,"A":"left","R":[{"T":"whichever%20applies.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.793,"y":45.745,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2050012Y","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.749,"y":40.378,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.944,"y":40.378,"w":7.557,"clr":-1,"A":"left","R":[{"T":"Amount%20at%20risk.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4150,"AM":1024,"x":6.2,"y":5.931,"w":59.421,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4151,"AM":1024,"x":80.291,"y":5.959,"w":15.848,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":4152,"AM":0,"x":6.151,"y":7.316,"w":73.121,"h":0.842,"TU":"Description of activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4153,"AM":0,"x":83.078,"y":9.788,"w":12.127,"h":0.833,"TU":"Line 1. Ordinary income (loss) from the activity (see page 2 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":4154,"AM":0,"x":83.181,"y":11.97,"w":11.921,"h":0.833,"TU":"Line 2a. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Schedule D."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":4155,"AM":0,"x":83.078,"y":12.788,"w":12.127,"h":0.833,"TU":"Line 2b.Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Form 4797."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2C","EN":0},"TI":4156,"AM":0,"x":83.078,"y":13.538,"w":12.127,"h":0.833,"TU":"Line 2c. Gain (loss) from the sale or other disposition of assets used in the activity (or of your interest in the activity) that you are reporting on Other form or schedule."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4157,"AM":0,"x":83.16,"y":15.053,"w":11.963,"h":0.833,"TU":"Line 3. Other income and gains from the activity, from Schedule K-1 of Form 1065, Form 1065-B. or Form 1120S, that were not included on lines 1 through 2c."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4158,"AM":0,"x":83.869,"y":16.501,"w":11.176,"h":0.833,"TU":"Line 4. Other deductions and losses from the activity, including investment interest expense allowed from Form 4952, that were not included on lines 1 through 2c.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4159,"AM":1024,"x":83.16,"y":18.053,"w":11.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4160,"AM":0,"x":83.385,"y":20.275,"w":11.738,"h":0.833,"TU":"Line 6. Adjusted basis (as defined in section 1011) in the activity (or in your interest in the activity) on the first day of the tax year. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4161,"AM":0,"x":83.302,"y":21.038,"w":11.753,"h":0.833,"TU":"Line 7. Increases for the tax year (see page 3 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4162,"AM":1024,"x":83.377,"y":21.788,"w":11.678,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4163,"AM":0,"x":83.452,"y":22.538,"w":11.529,"h":0.833,"TU":"Line 9. Decreases for the tax year (see page 4 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":4164,"AM":1024,"x":63.448,"y":23.253,"w":11.774,"h":0.833,"TU":"10a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":4165,"AM":1024,"x":83.33,"y":24.568,"w":11.697,"h":0.833,"TU":"10b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4166,"AM":0,"x":83.235,"y":27.748,"w":11.888,"h":0.833,"TU":"Line 11. Investment in the activity (or in your interest in the activity) at the effective date. Do not enter less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4167,"AM":0,"x":83.302,"y":28.538,"w":11.753,"h":0.833,"TU":"Line 12. Increases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4168,"AM":1024,"x":83.227,"y":29.288,"w":11.828,"h":0.833,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4169,"AM":0,"x":83.302,"y":30.029,"w":11.753,"h":0.833,"TU":"Line 14. Decreases at effective date."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4172,"AM":0,"x":83.181,"y":32.192,"w":11.921,"h":0.833,"TU":"Line 15. Amount at risk."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4175,"AM":0,"x":83.405,"y":34.415,"w":11.697,"h":0.833,"TU":"Line 16. Increases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4176,"AM":1024,"x":83.377,"y":35.323,"w":11.603,"h":0.833,"TU":"17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":4179,"AM":0,"x":83.16,"y":36.686,"w":11.888,"h":0.833,"TU":"Line 18. Decreases since."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":4180,"AM":0,"x":63.448,"y":37.468,"w":11.998,"h":0.833,"TU":"19a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":4181,"AM":1024,"x":83.255,"y":38.989,"w":11.772,"h":0.833,"TU":"19b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":4182,"AM":1024,"x":83.302,"y":40.538,"w":11.603,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":4183,"AM":1024,"x":83.823,"y":41.99,"w":11.299,"h":0.833,"MV":"-"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XA","EN":0},"TI":4170,"AM":0,"x":11.449,"y":31.48,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15XB","EN":0},"TI":4171,"AM":0,"x":11.586,"y":32.238,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L15XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XA","EN":0},"TI":4173,"AM":0,"x":11.53,"y":34.505,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16XB","EN":0},"TI":4174,"AM":0,"x":27.539,"y":34.5,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L16XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XA","EN":0},"TI":4177,"AM":0,"x":11.598,"y":36.735,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18XB","EN":0},"TI":4178,"AM":0,"x":27.608,"y":36.73,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"L18XRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6251.content.txt b/test/data/fd/form/F6251.content.txt new file mode 100755 index 00000000..589c7be4 --- /dev/null +++ b/test/data/fd/form/F6251.content.txt @@ -0,0 +1,393 @@ +Form +6251 +Department of the Treasury +Internal Revenue Service (99) +a + +a + +Attach to Form 1040 or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +32 +Name(s) shown on Form 1040 or Form 1040NR +Your social security number +Part I +Alternative Minimum Taxable Income +(See instructions for how to complete each line.) +1 +If filing Schedule A (Form 1040), enter the amount from Form 1040, line 41, and go to line 2. Otherwise, +enter the amount from Form 1040, line 38, and go to line 7. (If less than zero, enter as a negative amount.) +1 +2 + +Medical and dental. If you or your spouse was 65 or older, enter the +smaller + of Schedule A (Form 1040), +line 4, +or + 2.5% (.025) of Form 1040, line 38. If zero or less, enter -0- . +........... +2 +3 +Taxes from Schedule A (Form 1040), line 9 +.................... +3 +4 +Enter the home mortgage interest adjustment, if any, from line 6 of the worksheet in the instructions for this line +4 +5 +Miscellaneous deductions from Schedule A (Form 1040), line 27 +.............. +5 +6 +If Form 1040, line 38, is $150,000 or less, enter -0-. Otherwise, see instructions +......... +6 +( +) +7 +Tax refund from Form 1040, line 10 or line 21 +................... +7 +( +) +8 +Investment interest expense (difference between regular tax and AMT) +............ +8 +9 +Depletion (difference between regular tax and AMT) . +................ +9 +10 +Net operating loss deduction from Form 1040, line 21. Enter as a positive amount . +....... +10 +11 +Alternative tax net operating loss deduction +.................... +11 +( +) +12 +Interest from specified private activity bonds exempt from the regular tax +.......... +12 +13 +Qualified small business stock (7% of gain excluded under section 1202) +........... +13 +14 +Exercise of incentive stock options (excess of AMT income over regular tax income) . +....... +14 +15 +Estates and trusts (amount from Schedule K-1 (Form 1041), box 12, code A) +......... +15 +16 +Electing large partnerships (amount from Schedule K-1 (Form 1065-B), box 6) +......... +16 +17 +Disposition of property (difference between AMT and regular tax gain or loss) +......... +17 +18 +Depreciation on assets placed in service after 1986 (difference between regular tax and AMT) +.... +18 +19 +Passive activities (difference between AMT and regular tax income or loss) +.......... +19 +20 +Loss limitations (difference between AMT and regular tax income or loss) +........... +20 +21 +Circulation costs (difference between regular tax and AMT) +............... +21 +22 +Long-term contracts (difference between AMT and regular tax income) +........... +22 +23 +Mining costs (difference between regular tax and AMT) +................ +23 +24 +Research and experimental costs (difference between regular tax and AMT) +.......... +24 +25 +Income from certain installment sales before January 1, 1987 +.............. +25 +( +) +26 +Intangible drilling costs preference +....................... +26 +27 +Other adjustments, including income-based related adjustments +............. +27 +28 + +Alternative minimum taxable income. +Combine lines 1 through 27. (If married filing separately and line +28 is more than $238,550, see instructions.) +.................... +28 +Part II +Alternative Minimum Tax (AMT) +29 +Exemption. (If you were under age 24 at the end of 2013, see instructions.) +IF your filing status is . . . AND line 28 is not over . . . THEN enter on line 29 . . . +Single or head of household +.... +$115,400 +..... +$51,900 +Married filing jointly or qualifying widow(er) + 153,900 +..... +80,800 +Married filing separately +...... +76,950 +..... +40,400 +} + .. +29 +30 + +Subtract line 29 from line 28. If more than zero, go to line 31. If zero or less, enter -0- here and on lines 31, 33, +and 35, and go to line 34 +.......................... +30 +31 +• If you are filing Form 2555 or 2555-EZ, see instructions for the amount to enter. +• If you reported capital gain distributions directly on Form 1040, line 13; you reported qualified dividends on Form +1040, line 9b; +or + you had a gain on both lines 15 and 16 of Schedule D (Form 1040) (as refigured for the AMT, if +necessary), complete Part III on the back and enter the amount from line 60 here. +• +All others: +If line 30 is $179,500 or less ($89,750 or less if married filing separately), multiply line +30 by 26% (.26). + +Otherwise, multiply line 30 by 28% (.28) and subtract $3,590 ($1,795 if married +filing separately) from the result. +} +... +31 +32 +Alternative minimum tax foreign tax credit (see instructions) +................ +32 +33 +Tentative minimum tax. Subtract line 32 from line 31 +.................. +33 +34 + + +Tax from Form 1040, line 44 (minus any tax from Form 4972 and any foreign tax credit from Form 1040, +line 47). If you used Schedule J to figure your tax, the amount from line 44 of Form 1040 must be refigured +without using Schedule J (see instructions) +..................... +34 +35 +AMT. + Subtract line 34 from line 33. If zero or less, enter -0-. Enter here and on Form 1040, line 45 +..... +35 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 13600G +Form +6251 + (2013) +If line 28 is +over +the amount shown above for your filing status, see instructions. +Information about Form 6251 and its separate instructions is at www.irs.gov/form6251. +Alternative Minimum Tax Individuals +----------------Page (0) Break---------------- +Tax Computation Using Maximum Capital Gains Rates +Form 6251 (2013) +Page +2 +Part III + +Complete Part III only if you are required to do so by line 31 or by the Foreign Earned Income Tax Worksheet in the instruction +s. +36 + +Enter the amount from Form 6251, line 30. If you are filing Form 2555 or 2555-EZ, enter the amount from +line 3 of the worksheet in the instructions for line 31 +................. +36 +37 +Enter the amount from line 6 of the Qualified Dividends and Capital Gain Tax +Worksheet in the instructions for Form 1040, line 44, or the amount from line +13 of the Schedule D Tax Worksheet in the instructions for Schedule D (Form +1040), whichever applies (as refigured for the AMT, if necessary) (see +instructions). If you are filing Form 2555 or 2555-EZ, see instructions for the +amount to enter +................... +37 +38 + + +Enter the amount from Schedule D (Form 1040), line 19 (as refigured for the +AMT, if necessary) (see instructions). If you are filing Form 2555 or 2555-EZ, +see instructions for the amount to enter . . . . . . . . . . . . +38 +39 + + + + +If you did not complete a Schedule D Tax Worksheet for the regular tax or the +AMT, enter the amount from line 37. Otherwise, add lines 37 and 38, and +enter the +smaller + of that result or the amount from line 10 of the Schedule D +Tax Worksheet (as refigured for the AMT, if necessary). If you are filing Form +2555 or 2555-EZ, see instructions for the amount to enter +...... +39 +40 +Enter the +smaller + of line 36 or line 39 +...................... +40 +41 +Subtract line 40 from line 36 +......................... +41 +42 + +If line 41 is $179,500 or less ($89,750 or less if married filing separately), multiply line 41 by 26% (.26). Otherwise, +multiply line 41 by 28% (.28) and subtract $3,590 ($1,795 if married filing separately) from the result . . . + +a +42 +43 +Enter: +• + $72,500 if married filing jointly or qualifying widow(er), +• $36,250 if single or married filing separately, or +• $48,600 if head of household. +} +....... +43 +44 + + + + +Enter the amount from line 7 of the Qualified Dividends and Capital Gain Tax +Worksheet in the instructions for Form 1040, line 44, or the amount from line +14 of the Schedule D Tax Worksheet in the instructions for Schedule D (Form +1040), whichever applies (as figured for the regular tax). If you did not +complete either worksheet for the regular tax, enter the amount from Form +1040, line 43; but do not enter less than -0- +........... +44 +45 +Subtract line 44 from line 43. If zero or less, enter -0- . +....... +45 +46 +Enter the +smaller + of line 36 or line 37 +............. +46 +47 +Enter the +smaller + of line 45 or line 46. This amount is taxed at 0% +.... +47 +48 +Subtract line 47 from line 46 +................ +48 +49 +Enter the amount from the Line 49 Worksheet in the instructions +..... +49 +50 +Enter the smaller of line 48 or line 49 +............. +50 +51 +Multiply line 50 by 15% (.15) +........................ +a +51 +52 +Add lines 47 and 50 +.................. +52 +If lines 52 and 36 are the same, skip lines 53 through 57 and go to line 58. Otherwise, go to line 53. +53 +Subtract line 52 from line 46 +................ +53 +54 +Multiply line 53 by 20% (.20) + ....................... +a +54 +If line 38 is zero or blank, skip lines 55 through 57 and go to line 58. Otherwise, go to line 55. +55 +Add lines 41, 52, and 53 +................ +55 +56 +Subtract line 55 from line 36 +............... +56 +57 +Multiply line 56 by 25% (.25) +....................... + +a +57 +58 +Add lines 42, 51, 54, and 57 +........................ +58 +59 + + +If line 36 is $179,500 or less ($89,750 or less if married filing separately), multiply line 36 by 26% (.26). +Otherwise, multiply line 36 by 28% (.28) and subtract $3,590 ($1,795 if married filing separately) from the +result . . +.............................. +59 +60 + +Enter the +smaller + of line 58 or line 59 here and on line 31. If you are filing Form 2555 or 2555-EZ, do not +enter this amount on line 31. Instead, enter it on line 4 of the worksheet in the instructions for line 31 . . +60 +Form +6251 + (2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F6251.fields.json b/test/data/fd/form/F6251.fields.json new file mode 100755 index 00000000..465a07b9 --- /dev/null +++ b/test/data/fd/form/F6251.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"F4684L18","type":"mask","calc":false,"value":""},{"id":"L6","type":"mask","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L14B","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L20","type":"mask","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14M","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L14F","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L14H","type":"number","calc":false,"value":""},{"id":"L14A","type":"number","calc":false,"value":""},{"id":"L14G","type":"number","calc":false,"value":""},{"id":"L14I","type":"number","calc":false,"value":""},{"id":"L14L","type":"number","calc":false,"value":""},{"id":"L14D","type":"mask","calc":false,"value":""},{"id":"L14E","type":"number","calc":false,"value":""},{"id":"L14O","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"LIMITS","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":false,"value":""},{"id":"DIFFER","type":"number","calc":true,"value":""},{"id":"L38","type":"number","calc":true,"value":""},{"id":"L45","type":"number","calc":true,"value":""},{"id":"L47A","type":"number","calc":true,"value":""},{"id":"SUB396","type":"number","calc":false,"value":""},{"id":"TIATRT2","type":"number","calc":true,"value":""},{"id":"TAXATRT2","type":"number","calc":true,"value":""},{"id":"TAXED2","type":"number","calc":true,"value":""},{"id":"TIATRT3","type":"number","calc":true,"value":""},{"id":"TAXATRT3","type":"number","calc":true,"value":""},{"id":"TAXED3","type":"number","calc":true,"value":""},{"id":"TIATRT4","type":"number","calc":true,"value":""},{"id":"TAXATRT4","type":"number","calc":true,"value":""},{"id":"CGRTTAX","type":"number","calc":true,"value":""},{"id":"AMTRTTAX","type":"number","calc":false,"value":""},{"id":"AMTMCGRT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6251.json b/test/data/fd/form/F6251.json new file mode 100755 index 00000000..2b787749 --- /dev/null +++ b/test/data/fd/form/F6251.json @@ -0,0 +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":70.624},{"oc":"#221f1f","x":76.682,"y":6.75,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.117,"y":7.501,"w":0.75,"l":92.926},{"oc":"#221f1f","x":80.395,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":7.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":9,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":10.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":11.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":12.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":84.107,"y":14.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":17.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":17.25,"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":11.223},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":18.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":20.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":21,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":21.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":22.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":22.5,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.245,"y":23.25,"w":0.75,"l":3.798},{"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":80.395,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":25.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":27.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":28.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":29.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":30.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":31.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":35.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.349,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":35.241,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":37.349,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":37.349,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.353,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":37.353,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":39.888,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":39.888,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":39.888,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":39.872,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":39.9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":42.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":42.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":42.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":43.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":45.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":45.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":45.75,"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":33.498},{"oc":"#221f1f","x":86.582,"y":46.5,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.547},{"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":2.281},{"oc":"#221f1f","x":76.725,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.15,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":7.484,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":8.984,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":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":95.288,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":0.781},{"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":95.288,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":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":95.288,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":29.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":29.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":31.485,"w":0.75,"l":3.047},{"oc":"#221f1f","x":80.438,"y":31.485,"w":0.75,"l":3.047},{"oc":"#221f1f","x":95.288,"y":31.485,"w":0.75,"l":3.047},{"oc":"#221f1f","x":84.15,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"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":84.15,"y":35.225,"w":0.75,"l":2.147},{"oc":"#221f1f","x":80.438,"y":35.225,"w":0.75,"l":2.147},{"oc":"#221f1f","x":95.288,"y":35.225,"w":0.75,"l":1.405},{"oc":"#221f1f","x":95.288,"y":36.583,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":37.338,"w":0.75,"l":1.84},{"oc":"#221f1f","x":80.438,"y":37.338,"w":0.75,"l":1.84},{"oc":"#221f1f","x":95.288,"y":37.338,"w":0.75,"l":1.834},{"oc":"#221f1f","x":84.15,"y":39.123,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":39.123,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":39.123,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":39.856,"w":0.75,"l":2.175},{"oc":"#221f1f","x":80.438,"y":39.856,"w":0.75,"l":2.175},{"oc":"#221f1f","x":95.288,"y":39.885,"w":0.75,"l":2.147},{"oc":"#221f1f","x":84.15,"y":41.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":41.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":41.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":43.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.438,"y":43.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":43.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":84.15,"y":44.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":44.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":44.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":45.734,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":6.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":30.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":31.5,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":37.353,"w":3.712,"h":1.793,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":39.872,"w":3.712,"h":2.128,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":43.5,"w":3.712,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"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.415,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6251","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.7750000000000004,"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.275,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":24.768,"y":3.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.993,"y":4.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":41.251,"y":4.357,"w":17.893000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.","S":-1,"TS":[0,10.6,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.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":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":"32","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.025,"w":21.117000000000008,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040%20or%20Form%201040NR","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":5.025,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"x":6.836,"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":13.129,"y":6.572,"w":17.894000000000005,"clr":-1,"A":"left","R":[{"T":"Alternative%20Minimum%20Taxable%20Income%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":42.612,"y":6.572,"w":21.779999999999998,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20for%20how%20to%20complete%20each%20line.)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.6,"y":7.442,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":7.442,"w":46.18099999999997,"clr":-1,"A":"left","R":[{"T":"If%20filing%20Schedule%20A%20(Form%201040)%2C%20enter%20the%20amount%20from%20Form%201040%2C%20line%2041%2C%20and%20go%20to%20line%202.%20Otherwise%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.66,"y":8.098,"w":47.680999999999955,"clr":-1,"A":"left","R":[{"T":"enter%20the%20amount%20from%20Form%201040%2C%20line%2038%2C%20and%20go%20to%20line%207.%20(If%20less%20than%20zero%2C%20enter%20as%20a%20negative%20amount.)%20%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":8.098,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.6,"y":8.942,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":8.942,"w":30.48699999999999,"clr":-1,"A":"left","R":[{"T":"Medical%20and%20dental.%20If%20you%20or%20your%20spouse%20was%2065%20or%20older%2C%20enter%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":52.008,"y":8.942,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":57.021,"y":8.942,"w":12.726000000000006,"clr":-1,"A":"left","R":[{"T":"%20of%20Schedule%20A%20(Form%201040)%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.654,"y":9.598,"w":2.927,"clr":-1,"A":"left","R":[{"T":"line%204%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.93,"y":9.598,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":15.391,"y":9.598,"w":26.136,"clr":-1,"A":"left","R":[{"T":"%202.5%25%20(.025)%20of%20Form%201040%2C%20line%2038.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":55.443,"y":9.598,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.504,"y":9.598,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":9.598,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.6,"y":10.348,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":10.348,"w":18.949000000000005,"clr":-1,"A":"left","R":[{"T":"Taxes%20from%20Schedule%20A%20(Form%201040)%2C%20line%209","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.937,"y":10.348,"w":28.239999999999988,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":10.348,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.6,"y":11.098,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":11.098,"w":49.863999999999955,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20home%20mortgage%20interest%20adjustment%2C%20if%20any%2C%20from%20line%206%20of%20the%20worksheet%20in%20the%20instructions%20for%20this%20line%20","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":81.638,"y":11.098,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.6,"y":11.848,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":11.848,"w":28.471000000000007,"clr":-1,"A":"left","R":[{"T":"Miscellaneous%20deductions%20from%20Schedule%20A%20(Form%201040)%2C%20line%2027","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.313,"y":11.848,"w":21.179999999999993,"clr":-1,"A":"left","R":[{"T":"..............%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":11.848,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.6,"y":12.598,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":12.598,"w":35.213999999999984,"clr":-1,"A":"left","R":[{"T":"If%20Form%201040%2C%20line%2038%2C%20is%20%24150%2C000%20or%20less%2C%20enter%20-0-.%20Otherwise%2C%20see%20instructions","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":61.624,"y":12.598,"w":12.707999999999998,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":12.598,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":84.141,"y":12.493,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":98.131,"y":12.493,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":13.348,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":13.348,"w":20.377000000000006,"clr":-1,"A":"left","R":[{"T":"Tax%20refund%20from%20Form%201040%2C%20line%2010%20or%20line%2021%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":41,"y":13.348,"w":26.82799999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":13.348,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":84.141,"y":13.223,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":98.131,"y":13.223,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":14.098,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":14.098,"w":31.280999999999995,"clr":-1,"A":"left","R":[{"T":"Investment%20interest%20expense%20(difference%20between%20regular%20tax%20and%20AMT)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":55.437,"y":14.098,"w":16.943999999999996,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":14.098,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.6,"y":14.848,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":14.848,"w":22.964000000000006,"clr":-1,"A":"left","R":[{"T":"Depletion%20(difference%20between%20regular%20tax%20and%20AMT)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":45.125,"y":14.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":47.187,"y":14.848,"w":22.59199999999999,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.638,"y":14.848,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":15.597999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":15.597999999999999,"w":36.306999999999995,"clr":-1,"A":"left","R":[{"T":"Net%20operating%20loss%20deduction%20from%20Form%201040%2C%20line%2021.%20Enter%20as%20a%20positive%20amount","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":63.689,"y":15.597999999999999,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":65.75,"y":15.597999999999999,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":15.597999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":16.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":16.348,"w":19.410000000000007,"clr":-1,"A":"left","R":[{"T":"Alternative%20tax%20net%20operating%20loss%20deduction","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.937,"y":16.348,"w":28.239999999999988,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":16.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":84.141,"y":16.223,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":98.131,"y":16.223,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":17.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.098,"w":32.782999999999994,"clr":-1,"A":"left","R":[{"T":"Interest%20from%20specified%20private%20activity%20bonds%20exempt%20from%20the%20regular%20tax%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.563,"y":17.098,"w":14.119999999999997,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":17.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":17.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.848,"w":32.434000000000005,"clr":-1,"A":"left","R":[{"T":"Qualified%20small%20business%20stock%20(7%25%20of%20gain%20excluded%20under%20section%201202)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.5,"y":17.848,"w":16.943999999999996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":17.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":18.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":18.598,"w":37.89199999999998,"clr":-1,"A":"left","R":[{"T":"Exercise%20of%20incentive%20stock%20options%20(excess%20of%20AMT%20income%20over%20regular%20tax%20income)%20.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":65.75,"y":18.598,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":18.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":19.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":19.348,"w":34.215,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%20(amount%20from%20Schedule%20K-1%20(Form%201041)%2C%20box%2012%2C%20code%20A)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":61.624,"y":19.348,"w":12.707999999999998,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":19.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":20.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":20.098,"w":34.564,"clr":-1,"A":"left","R":[{"T":"Electing%20large%20partnerships%20(amount%20from%20Schedule%20K-1%20(Form%201065-B)%2C%20box%206)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":61.624,"y":20.098,"w":12.707999999999998,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":20.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":20.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":20.848,"w":34.593999999999994,"clr":-1,"A":"left","R":[{"T":"Disposition%20of%20property%20(difference%20between%20AMT%20and%20regular%20tax%20gain%20or%20loss)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":61.624,"y":20.848,"w":12.707999999999998,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":20.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":21.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":21.598,"w":41.540999999999976,"clr":-1,"A":"left","R":[{"T":"Depreciation%20on%20assets%20placed%20in%20service%20after%201986%20(difference%20between%20regular%20tax%20and%20AMT)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":71.937,"y":21.598,"w":7.06,"clr":-1,"A":"left","R":[{"T":"....%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":21.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":22.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":22.348,"w":33.427,"clr":-1,"A":"left","R":[{"T":"Passive%20activities%20(difference%20between%20AMT%20and%20regular%20tax%20income%20or%20loss)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.563,"y":22.348,"w":14.119999999999997,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":22.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":23.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.098,"w":32.46600000000001,"clr":-1,"A":"left","R":[{"T":"Loss%20limitations%20(difference%20between%20AMT%20and%20regular%20tax%20income%20or%20loss)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.5,"y":23.098,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":23.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":23.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.848,"w":26.204,"clr":-1,"A":"left","R":[{"T":"Circulation%20costs%20(difference%20between%20regular%20tax%20and%20AMT)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":49.25,"y":23.848,"w":21.179999999999993,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":23.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":24.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":24.598,"w":31.708,"clr":-1,"A":"left","R":[{"T":"Long-term%20contracts%20(difference%20between%20AMT%20and%20regular%20tax%20income)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.5,"y":24.598,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":24.598,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":25.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":25.348,"w":24.687000000000005,"clr":-1,"A":"left","R":[{"T":"Mining%20costs%20(difference%20between%20regular%20tax%20and%20AMT)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":47.187,"y":25.348,"w":22.59199999999999,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":25.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":26.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":26.098,"w":33.90999999999999,"clr":-1,"A":"left","R":[{"T":"Research%20and%20experimental%20costs%20(difference%20between%20regular%20tax%20and%20AMT)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.563,"y":26.098,"w":14.119999999999997,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":26.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":26.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":26.848,"w":27.229999999999993,"clr":-1,"A":"left","R":[{"T":"Income%20from%20certain%20installment%20sales%20before%20January%201%2C%201987","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.313,"y":26.848,"w":21.179999999999993,"clr":-1,"A":"left","R":[{"T":"..............%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":26.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":84.141,"y":26.723,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":98.131,"y":26.723,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":27.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":27.598,"w":15.371000000000006,"clr":-1,"A":"left","R":[{"T":"Intangible%20drilling%20costs%20preference","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":32.75,"y":27.598,"w":33.887999999999984,"clr":-1,"A":"left","R":[{"T":".......................%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":27.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":28.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":28.348,"w":28.955,"clr":-1,"A":"left","R":[{"T":"Other%20adjustments%2C%20including%20income-based%20related%20adjustments%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":53.374,"y":28.348,"w":18.355999999999995,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":28.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":29.192,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":29.192,"w":17.950000000000003,"clr":-1,"A":"left","R":[{"T":"Alternative%20minimum%20taxable%20income.%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":34.577,"y":29.192,"w":28.71,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201%20through%2027.%20(If%20married%20filing%20separately%20and%20line%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.644,"y":29.848,"w":19.78600000000001,"clr":-1,"A":"left","R":[{"T":"28%20is%20more%20than%20%24238%2C550%2C%20see%20instructions.)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.931,"y":29.848,"w":28.239999999999988,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":29.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11.5,1,0]}]},{"x":6.582,"y":30.603,"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":30.603,"w":15.224000000000004,"clr":-1,"A":"left","R":[{"T":"Alternative%20Minimum%20Tax%20(AMT)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.884,"y":31.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.65,"y":31.357,"w":33.50800000000001,"clr":-1,"A":"left","R":[{"T":"Exemption.%20(If%20you%20were%20under%20age%2024%20at%20the%20end%20of%202013%2C%20see%20instructions.)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":32.107,"w":12.282000000000009,"clr":-1,"A":"left","R":[{"T":"IF%20your%20filing%20status%20is%20.%20.%20.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":37.388,"y":32.107,"w":12.838000000000006,"clr":-1,"A":"left","R":[{"T":"AND%20line%2028%20is%20not%20over%20.%20.%20.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.082,"y":32.107,"w":12.560000000000006,"clr":-1,"A":"left","R":[{"T":"THEN%20enter%20on%20line%2029%20.%20.%20.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.65,"y":32.857,"w":12.816999999999998,"clr":-1,"A":"left","R":[{"T":"Single%20or%20head%20of%20household%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.625,"y":32.857,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":37.15,"y":32.857,"w":4.448,"clr":-1,"A":"left","R":[{"T":"%24115%2C400%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.125,"y":32.857,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":56.759,"y":32.857,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2451%2C900","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":33.607,"w":19.275,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly%20or%20qualifying%20widow(er)%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":37.15,"y":33.607,"w":4.726000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20153%2C900%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.125,"y":33.607,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.524,"y":33.607,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"80%2C800","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":34.357,"w":10.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.5,"y":34.357,"w":15,"clr":-1,"A":"left","R":[{"T":"......%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.679,"y":34.357,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"76%2C950%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.125,"y":34.357,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.524,"y":34.357,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"40%2C400%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.012,"y":34.043,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,24,0,0]}]},{"oc":"#221f1f","x":74,"y":33.528,"w":4.5,"clr":-1,"A":"left","R":[{"T":"%20..","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.279,"y":34.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.788,"y":35.837,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":35.846,"w":49.30699999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2029%20from%20line%2028.%20If%20more%20than%20zero%2C%20go%20to%20line%2031.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20lines%2031%2C%2033%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.656,"y":36.502,"w":11.116000000000003,"clr":-1,"A":"left","R":[{"T":"and%2035%2C%20and%20go%20to%20line%2034","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.568,"y":36.502,"w":39,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.232,"y":36.447,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":37.243,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":37.252,"w":36.416999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20are%20filing%20Form%202555%20or%202555-EZ%2C%20see%20instructions%20for%20the%20amount%20to%20enter.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.65,"y":37.783,"w":51.289999999999964,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20reported%20capital%20gain%20distributions%20directly%20on%20Form%201040%2C%20line%2013%3B%20you%20reported%20qualified%20dividends%20on%20Form%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":10.676,"y":38.439,"w":6.300000000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%209b%3B%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":18.246,"y":38.439,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":19.484,"y":38.439,"w":42.585999999999984,"clr":-1,"A":"left","R":[{"T":"%20you%20had%20a%20gain%20on%20both%20lines%2015%20and%2016%20of%20Schedule%20D%20(Form%201040)%20(as%20refigured%20for%20the%20AMT%2C%20if%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":10.667,"y":39.095,"w":36.73299999999999,"clr":-1,"A":"left","R":[{"T":"necessary)%2C%20complete%20Part%20III%20on%20the%20back%20and%20enter%20the%20amount%20from%20line%2060%20here.%20%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":9.65,"y":39.743,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.764,"y":39.743,"w":5.223000000000001,"clr":-1,"A":"left","R":[{"T":"All%20others%3A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":17.508,"y":39.743,"w":37.935,"clr":-1,"A":"left","R":[{"T":"If%20line%2030%20is%20%24179%2C500%20or%20less%20(%2489%2C750%20or%20less%20if%20married%20filing%20separately)%2C%20multiply%20line%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.684,"y":40.399,"w":7.3370000000000015,"clr":-1,"A":"left","R":[{"T":"30%20by%2026%25%20(.26).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.391,"y":40.399,"w":35.327999999999996,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20multiply%20line%2030%20by%2028%25%20(.28)%20and%20subtract%20%243%2C590%20(%241%2C795%20if%20married%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.688,"y":41.055,"w":14.557000000000002,"clr":-1,"A":"left","R":[{"T":"filing%20separately)%20from%20the%20result.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.288,"y":40.337,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,27,0,0]}]},{"oc":"#221f1f","x":74,"y":39.162,"w":3.9989999999999997,"clr":-1,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.232,"y":38.986,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":41.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":41.857,"w":26.430000000000007,"clr":-1,"A":"left","R":[{"T":"Alternative%20minimum%20tax%20foreign%20tax%20credit%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.188,"y":41.857,"w":25.5,"clr":-1,"A":"left","R":[{"T":"................%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.232,"y":41.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":42.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":42.607,"w":23.546000000000003,"clr":-1,"A":"left","R":[{"T":"Tentative%20minimum%20tax.%20Subtract%20line%2032%20from%20line%2031%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":42.607,"w":27,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.232,"y":42.598,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":43.536,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":43.544,"w":48.924999999999955,"clr":-1,"A":"left","R":[{"T":"Tax%20from%20Form%201040%2C%20line%2044%20%20(minus%20any%20tax%20from%20Form%20%204972%20%20and%20%20any%20%20foreign%20tax%20%20credit%20%20from%20%20Form%20%201040%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.664,"y":44.2,"w":47.66299999999996,"clr":-1,"A":"left","R":[{"T":"line%2047).%20If%20you%20used%20Schedule%20J%20to%20figure%20your%20tax%2C%20the%20amount%20from%20line%2044%20of%20Form%201040%20must%20be%20refigured%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.671,"y":44.857,"w":19.355000000000008,"clr":-1,"A":"left","R":[{"T":"without%20using%20Schedule%20J%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.896,"y":44.857,"w":33,"clr":-1,"A":"left","R":[{"T":".....................%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.232,"y":44.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":45.567,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":45.576,"w":2.444,"clr":-1,"A":"left","R":[{"T":"AMT.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":12.718,"y":45.576,"w":41.23299999999996,"clr":-1,"A":"left","R":[{"T":"%20Subtract%20line%2034%20from%20line%2033.%20If%20zero%20or%20less%2C%20enter%20-0-.%20Enter%20here%20and%20on%20Form%201040%2C%20line%2045%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.875,"y":45.576,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.232,"y":45.598,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":5.938,"y":46.357,"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":65.145,"y":46.375,"w":7.799000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013600G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.817,"y":46.384,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.294,"y":46.384,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6251","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":46.384,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.86,"y":35.069,"w":5.038,"clr":-1,"A":"left","R":[{"T":"If%20line%2028%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.272,"y":35.069,"w":2.39,"clr":-1,"A":"left","R":[{"T":"over%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.534,"y":35.069,"w":28.561000000000003,"clr":-1,"A":"left","R":[{"T":"the%20amount%20shown%20above%20for%20your%20filing%20status%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.026,"y":3.607,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%206251%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform6251.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":31.891,"y":2.163,"w":17.338000000000005,"clr":-1,"A":"left","R":[{"T":"Alternative%20Minimum%20Tax%20Individuals","S":11,"TS":[0,18,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4184,"AM":1024,"x":6.229,"y":5.858,"w":70.373,"h":0.869,"TU":"Name(s) shown on Form 1040 or Form 1040NR"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4185,"AM":1024,"x":76.869,"y":5.858,"w":22.11,"h":0.869,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4186,"AM":0,"x":84.183,"y":8.364,"w":10.952,"h":0.833,"TU":"Line 1. If filing Schedule A (Form 1040), enter the amount from Form 1040, line 41, and go to line 2. Otherwise enter the amount from Form 1040, line 38, and go to line 7. (If less than zero, enter as a negative amount)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":4187,"AM":0,"x":84.365,"y":9.737,"w":10.952,"h":0.833,"TU":"Line 2. Medical and dental. If you or your spouse was 65 or older, enter the smaller of Schedule A (Form 1040), line 4, or 2.5% (.025) of Form 1040, line 38. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4188,"AM":1024,"x":84.253,"y":10.538,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4189,"AM":0,"x":84.325,"y":11.278,"w":10.952,"h":0.833,"TU":"Line 4. Enter the home mortgage interest adjustment, if any, from line 6 of the worksheet in the instructions for this line."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4190,"AM":1024,"x":84.315,"y":11.994,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"F4684L18","EN":0},"TI":4191,"AM":0,"x":84.996,"y":12.76,"w":10.375,"h":0.833,"TU":"Line 6. If Form 1040, line 38, is $150,000 or less, enter zero. Otherwise, see instructions.","MV":"-"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4192,"AM":0,"x":85.125,"y":13.545,"w":10.183,"h":0.833,"TU":"Line 7. Tax refund from Form 1040, line 10 or line 21.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4193,"AM":0,"x":84.256,"y":14.321,"w":10.952,"h":0.833,"TU":"Line 8. Investment interest expense (difference between regular tax and AMT)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":4194,"AM":0,"x":84.253,"y":15.038,"w":10.952,"h":0.833,"TU":"Line 9. Depletion (difference between regular tax and AMT)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4195,"AM":0,"x":84.154,"y":15.76,"w":10.952,"h":0.833,"TU":"Line 10. Net operating loss deduction from Form 1040, line 21. Enter as a positive amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":4196,"AM":0,"x":84.975,"y":16.538,"w":10.23,"h":0.833,"TU":"Line 11. Alternative tax net operating loss deduction.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4197,"AM":0,"x":84.399,"y":17.255,"w":10.952,"h":0.833,"TU":"Line 12. Interest from specified private activity bonds exempt from the regular tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14M","EN":0},"TI":4198,"AM":0,"x":84.478,"y":18.026,"w":10.952,"h":0.833,"TU":"Line 13. Qualified small business stock (7% of gain excluded under Section 1202)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":4199,"AM":0,"x":84.253,"y":18.788,"w":10.952,"h":0.833,"TU":"Line 14. Exercise of incentive stock options (excess of AMT income over regular tax income)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4200,"AM":0,"x":84.253,"y":19.538,"w":10.952,"h":0.833,"TU":"Line 15. Estates and trusts (amount from Schedule K-1) (Form 1041), box 12, code A."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14F","EN":0},"TI":4201,"AM":0,"x":84.253,"y":20.288,"w":10.952,"h":0.833,"TU":"Line 16. Electing large partnerships (amount from Schedule K-1 (Form 1065-B), box 6)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4202,"AM":0,"x":84.253,"y":21.038,"w":10.952,"h":0.833,"TU":"Line 17. Disposition of property (difference between AMT and regular tax gain or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4203,"AM":0,"x":84.253,"y":21.788,"w":10.952,"h":0.833,"TU":"Line 18. Depreciation on assets placed in service after 1986 (difference between regular tax and AMT)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4204,"AM":0,"x":84.253,"y":22.538,"w":10.952,"h":0.833,"TU":"Line 19. Passive activities (difference between AMT and regular tax income or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14H","EN":0},"TI":4205,"AM":0,"x":84.253,"y":23.288,"w":10.952,"h":0.833,"TU":"Line 20. Loss limitations (difference between AMT and regular tax income or loss)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A","EN":0},"TI":4206,"AM":0,"x":84.253,"y":24.038,"w":10.952,"h":0.833,"TU":"Line 21. Circulation costs (difference between regular tax and AMT)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14G","EN":0},"TI":4207,"AM":0,"x":84.253,"y":24.788,"w":10.952,"h":0.833,"TU":"Line 22. Long-term contracts (difference between AMT and regular tax income)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14I","EN":0},"TI":4208,"AM":0,"x":84.253,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 23. Mining costs (difference between regular tax and AMT)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14L","EN":0},"TI":4209,"AM":0,"x":84.253,"y":26.288,"w":10.952,"h":0.833,"TU":"Line 24. Research and experimental costs (difference between regular tax and AMT)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14D","EN":0},"TI":4210,"AM":0,"x":85.07,"y":26.994,"w":10.439,"h":0.833,"TU":"Line 25. Income from certain installment sales before January 1, 1987.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14E","EN":0},"TI":4211,"AM":0,"x":84.253,"y":27.788,"w":10.952,"h":0.833,"TU":"Line 26. Intangible drilling costs preference."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14O","EN":0},"TI":4212,"AM":0,"x":84.253,"y":28.538,"w":10.952,"h":0.833,"TU":"Line 27. Other adjustments, including income-based related adjustments."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":4213,"AM":0,"x":84.336,"y":29.688,"w":10.787,"h":1.039,"TU":"Line 28. Alternative minimum taxable income. Combine lines 1 through 27. (If married filing separately and line 28 is more $238,550, see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":4214,"AM":0,"x":84.398,"y":34.284,"w":10.663,"h":0.943,"TU":"Line 29. Exemption."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":4215,"AM":1024,"x":84.336,"y":36.285,"w":10.787,"h":0.955},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":4216,"AM":0,"x":84.333,"y":39.014,"w":10.663,"h":0.861,"TU":"Line 31. If you are filing Form 2555 or 2555-EZ, see instructions for the amount to enter. If you reported capital gain distributions directly on Form 1040, line 13; you reported qualified dividends on Form 1040, line 9b; or you had a gain on both lines 15 and 16 of Schedule D (Form 1040) (as refigured for the AMT, if necessary), complete Part III on the back and enter the amount from line 60 here. All others: If line 30 is $179,500 or less ($89,750 or less if married filing separately). multiply line 30 by 26% (.26). Otherwise, multiply line 30 by 28% (.28) and subtract $3,590 ($1,795 if married filing separately) from the result."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":4217,"AM":0,"x":84.398,"y":41.904,"w":10.663,"h":0.833,"TU":"Line 32. Alternative minimum tax foreign tax credit (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":4218,"AM":1024,"x":84.253,"y":42.795,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":4219,"AM":0,"x":84.356,"y":44.838,"w":10.746,"h":0.89,"TU":"Line 34. Tax from Form 1040, line 44 (minus any tax from Form 4972 and any foreign tax credit from Form 1040, line 47). If you used Schedule J to figure your tax , the amount from line 44 of Form 1040 must be refigured without using Schedule J."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":4220,"AM":1024,"x":84.253,"y":45.795,"w":10.952,"h":0.833}],"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":4.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":4.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":6,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":10.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":12.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":17.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":17.25,"w":1.125,"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":11.223},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":21.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":26.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":26.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":26.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":27.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":29.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":30.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":32.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":33,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":33.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":34.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":34.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":34.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":35.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":36.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":37.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":37.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":39,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.45,"y":39.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":40.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":41.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":43.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":45,"w":1.5,"l":92.899}],"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":95.288,"y":4.484,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":6.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.875,"y":6.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.438,"y":6.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":76.725,"y":6.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":84.15,"y":5.984,"w":0.75,"l":10.547},{"oc":"#221f1f","x":80.438,"y":5.984,"w":0.75,"l":10.547},{"oc":"#221f1f","x":95.288,"y":5.984,"w":0.75,"l":10.547},{"oc":"#221f1f","x":76.725,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":10.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.875,"y":10.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":10.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":76.725,"y":10.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":76.725,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":12.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.875,"y":12.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.438,"y":12.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":76.725,"y":12.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":76.725,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":0.789},{"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":95.288,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.875,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":19.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":76.725,"y":19.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":84.15,"y":19.485,"w":0.75,"l":14.297},{"oc":"#221f1f","x":80.438,"y":19.485,"w":0.75,"l":14.297},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":14.297},{"oc":"#221f1f","x":76.725,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":21.735,"w":0.75,"l":4.539},{"oc":"#221f1f","x":61.875,"y":21.735,"w":0.75,"l":4.539},{"oc":"#221f1f","x":80.438,"y":21.735,"w":0.75,"l":3.797},{"oc":"#221f1f","x":76.725,"y":21.735,"w":0.75,"l":3.797},{"oc":"#221f1f","x":76.725,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":26.235,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":26.235,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":27.735,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":27.735,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":29.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.875,"y":29.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":29.234,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":29.234,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":30.735,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":30.735,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.725,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":34.484,"w":0.75,"l":2.297},{"oc":"#221f1f","x":80.438,"y":34.484,"w":0.75,"l":2.297},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":2.297},{"oc":"#221f1f","x":61.875,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":37.485,"w":0.75,"l":2.297},{"oc":"#221f1f","x":80.438,"y":37.485,"w":0.75,"l":2.297},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":2.297},{"oc":"#221f1f","x":65.588,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":39.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":39.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":39.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":41.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":41.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":41.234,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":43.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":43.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":43.484,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":44.234,"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.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":6,"w":3.712,"h":10.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":19.5,"w":3.712,"h":14.25,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":34.5,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":37.5,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":13.156,"y":2.811,"w":45.79899999999991,"clr":-1,"A":"left","R":[{"T":"Tax%20Computation%20Using%20Maximum%20Capital%20Gains%20Rates%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%20%20%20%20%20%20%20%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%206251%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":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":13.156,"y":3.4939999999999998,"w":56.176999999999936,"clr":-1,"A":"left","R":[{"T":"Complete%20Part%20III%20only%20if%20you%20are%20required%20to%20do%20so%20by%20line%2031%20or%20by%20the%20Foreign%20Earned%20Income%20Tax%20Worksheet%20in%20the%20instruction","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":95.227,"y":3.4939999999999998,"w":0.778,"clr":-1,"A":"left","R":[{"T":"s.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":4.442,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":4.442,"w":46.92499999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%206251%2C%20line%2030.%20If%20you%20are%20filing%20Form%202555%20or%202555-EZ%2C%20enter%20the%20amount%20from%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":5.098,"w":23.282000000000007,"clr":-1,"A":"left","R":[{"T":"line%203%20of%20the%20worksheet%20in%20the%20instructions%20for%20line%2031%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":45.124,"y":5.098,"w":24.00399999999999,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":5.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":6.317,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":6.317,"w":34.379000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%206%20of%20the%20Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.644,"y":6.973,"w":34.326,"clr":-1,"A":"left","R":[{"T":"Worksheet%20in%20the%20instructions%20for%20Form%201040%2C%20line%2044%2C%20or%20the%20amount%20from%20line%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.638,"y":7.629,"w":34.656,"clr":-1,"A":"left","R":[{"T":"13%20of%20the%20Schedule%20D%20Tax%20Worksheet%20in%20the%20instructions%20for%20Schedule%20D%20(Form%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.638,"y":8.285,"w":30.96499999999999,"clr":-1,"A":"left","R":[{"T":"1040)%2C%20whichever%20applies%20(as%20refigured%20for%20the%20AMT%2C%20if%20necessary)%20(see%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.635,"y":8.941,"w":34.248,"clr":-1,"A":"left","R":[{"T":"instructions).%20If%20you%20are%20filing%20Form%202555%20or%20%202555-EZ%2C%20see%20instructions%20for%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.629,"y":9.597,"w":7.392000000000001,"clr":-1,"A":"left","R":[{"T":"amount%20to%20enter%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":22.417,"y":9.597,"w":26.82799999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":9.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":10.536,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":10.536,"w":33.879999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Schedule%20D%20(Form%201040)%2C%20line%2019%20(as%20refigured%20for%20the%20","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":9.646,"y":11.192,"w":34.394999999999996,"clr":-1,"A":"left","R":[{"T":"AMT%2C%20if%20necessary)%20(see%20instructions).%20If%20you%20are%20filing%20Form%20%202555%20or%202555-EZ%2C%20","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":9.653,"y":11.848,"w":17.875000000000004,"clr":-1,"A":"left","R":[{"T":"see%20%20instructions%20for%20the%20amount%20to%20enter","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":36.877,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":38.94,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":41.004,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":43.067,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":45.13,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":47.193,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":49.256,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":51.319,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":53.382,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":55.445,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":57.508,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":59.572,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":62.669,"y":11.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":12.973,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":12.973,"w":34.89499999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20complete%20a%20Schedule%20D%20Tax%20Worksheet%20for%20the%20regular%20tax%20or%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.629,"w":32.75299999999999,"clr":-1,"A":"left","R":[{"T":"AMT%2C%20enter%20the%20amount%20from%20line%2037.%20Otherwise%2C%20add%20lines%2037%20and%2038%2C%20and%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.646,"y":14.285,"w":4.242,"clr":-1,"A":"left","R":[{"T":"enter%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.986999999999998,"y":14.285,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":21.167,"y":14.285,"w":26.527,"clr":-1,"A":"left","R":[{"T":"%20of%20that%20result%20or%20the%20amount%20from%20line%2010%20of%20the%20Schedule%20D%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.647,"y":14.941,"w":34.18699999999999,"clr":-1,"A":"left","R":[{"T":"Tax%20Worksheet%20(as%20refigured%20for%20the%20AMT%2C%20if%20necessary).%20If%20you%20are%20filing%20Form%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.646,"y":15.597000000000001,"w":25.953000000000003,"clr":-1,"A":"left","R":[{"T":"2555%20or%202555-EZ%2C%20see%20instructions%20for%20the%20amount%20to%20enter%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":49.246,"y":15.597000000000001,"w":8.472,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":15.597999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":16.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":16.348,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.954999999999998,"y":16.348,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":21.063,"y":16.348,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2036%20or%20line%2039","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":34.813,"y":16.348,"w":31.063999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":16.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":17.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.098,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2040%20from%20line%2036","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":28.624,"y":17.098,"w":36.71199999999998,"clr":-1,"A":"left","R":[{"T":".........................%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":17.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":17.942,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.942,"w":50.62399999999997,"clr":-1,"A":"left","R":[{"T":"If%20line%2041%20is%20%24179%2C500%20or%20less%20(%2489%2C750%20or%20less%20if%20married%20filing%20separately)%2C%20multiply%20line%2041%20by%2026%25%20(.26).%20Otherwise%2C%20","S":-1,"TS":[0,10.99,0,0]}]},{"oc":"#221f1f","x":9.654,"y":18.601,"w":44.53299999999998,"clr":-1,"A":"left","R":[{"T":"multiply%20line%2041%20by%2028%25%20(.28)%20and%20subtract%20%243%2C590%20(%241%2C795%20if%20married%20filing%20separately)%20from%20the%20result%20","S":-1,"TS":[0,10.99,0,0]}]},{"oc":"#221f1f","x":71.944,"y":18.601,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.99,0,0]}]},{"oc":"#221f1f","x":74.006,"y":18.601,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.99,0,0]}]},{"oc":"#221f1f","x":76.069,"y":18.601,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.99,0,0]}]},{"oc":"#221f1f","x":77.538,"y":18.508,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":18.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":19.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":19.348,"w":2.9080000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":20.098,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.38,"y":20.098,"w":24.223000000000003,"clr":-1,"A":"left","R":[{"T":"%20%2472%2C500%20if%20married%20filing%20jointly%20or%20qualifying%20widow(er)%2C","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":9.65,"y":20.848,"w":21.947999999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%2436%2C250%20if%20single%20or%20married%20filing%20separately%2C%20or%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":21.598,"w":14.338999999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%2448%2C600%20if%20head%20of%20household.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":44.3,"y":21.037,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21,0,0]}]},{"oc":"#221f1f","x":47.188,"y":20.848,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":20.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":22.129,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":22.138,"w":34.379000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%207%20of%20the%20Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":22.794,"w":34.326,"clr":-1,"A":"left","R":[{"T":"Worksheet%20in%20the%20instructions%20for%20Form%201040%2C%20line%2044%2C%20or%20the%20amount%20from%20line%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.45,"w":34.656,"clr":-1,"A":"left","R":[{"T":"14%20of%20the%20Schedule%20D%20Tax%20Worksheet%20in%20the%20instructions%20for%20Schedule%20D%20(Form%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.106,"w":31.169999999999998,"clr":-1,"A":"left","R":[{"T":"1040)%2C%20whichever%20applies%20(as%20figured%20for%20the%20regular%20tax).%20If%20you%20did%20not%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.762,"w":33.45100000000001,"clr":-1,"A":"left","R":[{"T":"complete%20either%20worksheet%20for%20the%20regular%20tax%2C%20enter%20the%20amount%20from%20Form%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.65,"y":25.418,"w":19.342000000000006,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2043%3B%20but%20do%20not%20enter%20less%20than%20-0-","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.937,"y":25.418,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":25.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":26.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":26.848,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2044%20from%20line%2043.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":45.125,"y":26.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":47.187,"y":26.848,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":26.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":28.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":28.348,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.783000000000001,"y":28.348,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":20.719,"y":28.348,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2036%20or%20line%2037%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":34.813,"y":28.348,"w":18.355999999999995,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":28.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":29.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":29.848,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.783000000000001,"y":29.848,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":20.719,"y":29.848,"w":21.84,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2045%20or%20line%2046.%20This%20amount%20is%20taxed%20at%200%25%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":53.374,"y":29.848,"w":5.648,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":29.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":31.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":31.348,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2047%20from%20line%2046%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":28.624,"y":31.348,"w":22.59199999999999,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":31.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":32.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":32.098,"w":28.82500000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20the%20Line%2049%20Worksheet%20in%20the%20instructions%20","S":-1,"TS":[0,11.245,0,0]}]},{"oc":"#221f1f","x":51.313,"y":32.098,"w":7.73,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":62.669,"y":32.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":32.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":32.848,"w":16.541000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2048%20or%20line%2049%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":34.813,"y":32.848,"w":18.355999999999995,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":32.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":33.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"51%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":33.598,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2050%20by%2015%25%20(.15)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":28.624,"y":33.598,"w":35.29999999999998,"clr":-1,"A":"left","R":[{"T":"........................%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.599,"y":33.504,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":33.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"51%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":34.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"52%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":34.348,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2047%20and%2050%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":24.5,"y":34.348,"w":25.41599999999999,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":34.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"52","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":35.098,"w":46.85199999999994,"clr":-1,"A":"left","R":[{"T":"If%20lines%2052%20and%2036%20are%20the%20same%2C%20skip%20lines%2053%20through%2057%20and%20go%20to%20line%2058.%20Otherwise%2C%20go%20to%20line%2053.%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":35.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"53%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":35.848,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2052%20from%20line%2046%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":28.625,"y":35.848,"w":22.59199999999999,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":62.669,"y":35.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"53%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":36.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"54%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":36.608,"w":12.653000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2053%20by%2020%25%20(.20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.625,"y":36.608,"w":35.29999999999998,"clr":-1,"A":"left","R":[{"T":"%20.......................%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.599,"y":36.514,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":36.598,"w":1.112,"clr":-1,"A":"left","R":[{"T":"54","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":37.348,"w":44.07199999999996,"clr":-1,"A":"left","R":[{"T":"If%20line%2038%20is%20zero%20or%20blank%2C%20skip%20lines%2055%20through%2057%20and%20go%20to%20line%2058.%20Otherwise%2C%20go%20to%20line%2055.%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":38.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"55%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":38.107,"w":11.117000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2041%2C%2052%2C%20and%2053%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":38.107,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.669,"y":38.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"55","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":38.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"56%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":38.858,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2055%20from%20line%2036%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":38.858,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.669,"y":38.849,"w":1.112,"clr":-1,"A":"left","R":[{"T":"56","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":39.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"57%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":39.608,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2056%20by%2025%25%20(.25)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":39.608,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.599,"y":39.514,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":39.598,"w":1.112,"clr":-1,"A":"left","R":[{"T":"57","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":40.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"58%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":40.358,"w":12.507000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2042%2C%2051%2C%2054%2C%20and%2057","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":40.358,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.232,"y":40.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"58","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":41.285,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"59%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":41.285,"w":45.549999999999976,"clr":-1,"A":"left","R":[{"T":"If%20line%2036%20is%20%24179%2C500%20or%20less%20(%2489%2C750%20or%20less%20if%20married%20filing%20separately)%2C%20multiply%20line%2036%20by%2026%25%20(.26).%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.654,"y":41.941,"w":46.86599999999997,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20multiply%20line%2036%20by%2028%25%20(.28)%20and%20subtract%20%243%2C590%20(%241%2C795%20if%20married%20filing%20separately)%20from%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.656,"y":42.597,"w":3.019,"clr":-1,"A":"left","R":[{"T":"result%20.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":16.256,"y":42.597,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":18.319,"y":42.597,"w":42.35999999999998,"clr":-1,"A":"left","R":[{"T":"..............................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":42.598,"w":1.112,"clr":-1,"A":"left","R":[{"T":"59","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.788,"y":43.442,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"60%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":9.65,"y":43.41,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.927,"y":43.41,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":20.934,"y":43.41,"w":38.77099999999999,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2058%20or%20line%2059%20here%20and%20on%20line%2031.%20If%20you%20are%20filing%20Form%202555%20or%202555-EZ%2C%20do%20not%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.646,"y":44.066,"w":44.62299999999996,"clr":-1,"A":"left","R":[{"T":"enter%20this%20amount%20on%20line%2031.%20Instead%2C%20enter%20it%20on%20line%204%20of%20the%20worksheet%20in%20the%20instructions%20for%20line%2031","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":76.06,"y":44.066,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.123,"y":44.066,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.232,"y":44.098,"w":1.112,"clr":-1,"A":"left","R":[{"T":"60","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":88.152,"y":44.884,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.294,"y":44.884,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6251","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":44.884,"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":4221,"AM":1024,"x":17.936,"y":2.228,"w":55.819,"h":0.833,"TU":"Name(s) shown on Form 1040 or Form 1040NR"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":4222,"AM":1024,"x":80.23,"y":2.034,"w":15.904,"h":0.875,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":4223,"AM":0,"x":84.336,"y":5.131,"w":10.787,"h":0.854},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":4224,"AM":0,"x":65.754,"y":9.323,"w":10.746,"h":1.049},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":4225,"AM":0,"x":65.498,"y":11.598,"w":10.746,"h":1.049},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":4226,"AM":0,"x":65.744,"y":15.269,"w":10.746,"h":1.049},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":4227,"AM":1024,"x":84.468,"y":16.542,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":4228,"AM":1024,"x":84.547,"y":17.299,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":4229,"AM":0,"x":84.35,"y":18.539,"w":10.952,"h":0.905},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LIMITS","EN":0},"TI":4230,"AM":0,"x":65.794,"y":20.686,"w":10.746,"h":1.049},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":4231,"AM":0,"x":65.835,"y":24.959,"w":10.663,"h":1.268},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIFFER","EN":0},"TI":4232,"AM":1024,"x":65.773,"y":26.408,"w":10.787,"h":1.327},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":4233,"AM":1024,"x":65.773,"y":27.901,"w":10.787,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":4234,"AM":1024,"x":65.773,"y":29.401,"w":10.787,"h":1.327},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47A","EN":0},"TI":4235,"AM":1024,"x":65.666,"y":30.908,"w":10.787,"h":1.327},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUB396","EN":0},"TI":4236,"AM":0,"x":65.835,"y":32.297,"w":10.663,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TIATRT2","EN":0},"TI":4237,"AM":1024,"x":65.55,"y":33.031,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXATRT2","EN":0},"TI":4238,"AM":1024,"x":84.398,"y":33.522,"w":10.663,"h":0.899},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXED2","EN":0},"TI":4239,"AM":1024,"x":65.711,"y":34.45,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TIATRT3","EN":0},"TI":4240,"AM":1024,"x":65.604,"y":35.95,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXATRT3","EN":0},"TI":4241,"AM":1024,"x":84.398,"y":36.445,"w":10.663,"h":0.975},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXED3","EN":0},"TI":4242,"AM":1024,"x":65.711,"y":38.2,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TIATRT4","EN":0},"TI":4243,"AM":1024,"x":65.691,"y":38.98,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXATRT4","EN":0},"TI":4244,"AM":1024,"x":84.398,"y":39.53,"w":10.663,"h":0.898},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CGRTTAX","EN":0},"TI":4245,"AM":1024,"x":84.253,"y":40.48,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTRTTAX","EN":0},"TI":4246,"AM":0,"x":84.356,"y":42.169,"w":10.746,"h":1.154},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTMCGRT","EN":0},"TI":4247,"AM":1024,"x":84.336,"y":43.776,"w":10.787,"h":1.137}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6252.content.txt b/test/data/fd/form/F6252.content.txt new file mode 100755 index 00000000..bae84bd4 --- /dev/null +++ b/test/data/fd/form/F6252.content.txt @@ -0,0 +1,216 @@ +Selling price including mortgages and other debts. Do not include interest, whether stated or unstated +Form +6252 +Department of the Treasury +Internal Revenue Service +Installment Sale Income +a + +Attach to your tax return. +a + +Use a separate form for each sale or other disposition of property on the installment method. + +a + +OMB No. 1545-0228 +20 +13 +Attachment +Sequence No. +79 +Name(s) shown on return +Identifying number +1 +Description of property +a + +2 +a +Date acquired (mm/dd/yyyy) + +a +a +3 +Was the property sold to a related party (see instructions) after May 14, 1980? If “No,” skip line 4 +.... +Yes +No +4 +Was the property you sold to a related party a marketable security? If “Yes,” complete Part III. If “No,” +complete Part III for the year of sale and the 2 years after the year of sale +............ +Yes +No +Part I +Gross Profit and Contract Price. +Complete this part for the year of sale only. +5 +5 +6 +Mortgages, debts, and other liabilities the buyer assumed or took the +property subject to (see instructions) +........... +6 +7 +Subtract line 6 from line 5 . +.............. +7 +8 +Cost or other basis of property sold +........... +8 +9 +Depreciation allowed or allowable +............ +9 +10 +Adjusted basis. Subtract line 9 from line 8 +......... +10 +11 +Commissions and other expenses of sale +......... +11 +12 +Income recapture from Form 4797, Part III (see instructions) . . . +12 +13 +Add lines 10, 11, and 12 +......................... +13 +14 +14 +15 +If the property described on line 1 above was your main home, enter the amount of your excluded +gain (see instructions). Otherwise, enter -0- +................... +15 +Subtract line 15 from line 14 +................... +16 +17 +Subtract line 13 from line 6. If zero or less, enter -0- +................ +17 +Add line 7 and line 17 +.................... +18 +Part II +Installment Sale Income. +Complete this part for the year of sale + and + +certain debts you must treat as a payment on installment obligations. +19 +Gross profit percentage (expressed as a decimal amount). Divide line 16 by line 18. For years after +the year of sale, see instructions +...................... +19 +20 +If this is the year of sale, enter the amount from line 17. Otherwise, enter -0- +........ +20 +21 +Payments received during year (see instructions). +Do not + include interest, whether stated or unstated +21 +22 +Add lines 20 and 21 +.......................... +22 +23 +Payments received in prior years (see instructions). +Do not + include +interest, whether stated or unstated +........... +23 +24 Installment sale income. +Multiply line 22 by line 19 +................ +24 +25 +Enter the part of line 24 that is ordinary income under the recapture rules (see instructions) . . . +25 +26 +Subtract line 25 from line 24. Enter here and on Schedule D or Form 4797 (see instructions) . . . +26 +Part III +Related Party Installment Sale Income. Do not +complete if you received the final payment this tax year. +27 +Name, address, and taxpayer identifying number of related party +28 +Did the related party resell or dispose of the property (“second disposition”) during this tax year? +..... +Yes +No +29 +I +a +The second disposition was more than 2 years after the first disposition (other than dispositions of +marketable securities). If this box is checked, enter the date of disposition (mm/dd/yyyy) +..... +a +b +The first disposition was a sale or exchange of stock to the issuing corporation. +c +The second disposition was an involuntary conversion and the threat of conversion occurred after the first disposition. +d +The second disposition occurred after the death of the original seller or buyer. +e +It can be established to the satisfaction of the IRS that tax avoidance was not a principal purpose for either of the +dispositions. If this box is checked, attach an explanation (see instructions). +30 +Selling price of property sold by related party (see instructions) +............ +30 +31 +Enter contract price from line 18 for year of first sale +................ +31 + 32 +Enter the +smaller + of line 30 or line 31 +..................... +32 + 33 +Total payments received by the end of your 2013 tax year (see instructions) +........ +33 + 34 +Subtract line 33 from line 32. If zero or less, enter -0- +............... +34 + 35 +Multiply line 34 by the gross profit percentage on line 19 for year of first sale +........ +35 + 36 +Enter the part of line 35 that is ordinary income under the recapture rules (see instructions) . . . +36 + 37 +Subtract line 36 from line 35. Enter here and on Schedule D or Form 4797 (see instructions) . . . +37 +For Paperwork Reduction Act Notice, see page 4. +Cat. No. 13601R +Form +6252 + (2013) +f the answer to question 28 is 'Yes', complete lines 30 through 37 below unless one of the following conditions is met. Check the box that applies. +Information about Form 6252 and its instructions is at www.irs.gov/form6252. +Subtract line 13 from line 5. If zero or less, do not complete the rest of this form (see instructions) +any year you receive a payment or have +18 + +Contract price. +16 + +Gross profit. +b + +Date sold (mm/dd/yyyy) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6252.fields.json b/test/data/fd/form/F6252.fields.json new file mode 100755 index 00000000..cf74f4e3 --- /dev/null +++ b/test/data/fd/form/F6252.fields.json @@ -0,0 +1 @@ +[{"id":"L3RB","type":"radio","calc":false,"value":"L3Y"},{"id":"L3RB","type":"radio","calc":false,"value":"L3N"},{"id":"L4RB","type":"radio","calc":false,"value":"L4Y"},{"id":"L4RB","type":"radio","calc":false,"value":"L4N"},{"id":"L28RB","type":"radio","calc":false,"value":"L28Y"},{"id":"L28RB","type":"radio","calc":false,"value":"L28N"},{"id":"L29RB","type":"radio","calc":false,"value":"L29A"},{"id":"L29RB","type":"radio","calc":false,"value":"L29B"},{"id":"L29RB","type":"radio","calc":false,"value":"L29C"},{"id":"L29RB","type":"radio","calc":false,"value":"L29D"},{"id":"L29RB","type":"radio","calc":false,"value":"L29E"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"alpha","calc":false,"value":""},{"id":"L2A","type":"date","calc":false,"value":""},{"id":"L2B","type":"date","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"alpha","calc":false,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"alpha","calc":false,"value":""},{"id":"L27X","type":"alpha","calc":false,"value":""},{"id":"L27X2","type":"alpha","calc":false,"value":""},{"id":"L27X3","type":"alpha","calc":false,"value":""},{"id":"L27X4","type":"zip","calc":false,"value":""},{"id":"L27X5","type":"ssn","calc":false,"value":""},{"id":"L29DT","type":"date","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6252.json b/test/data/fd/form/F6252.json new file mode 100755 index 00000000..deeea2eb --- /dev/null +++ b/test/data/fd/form/F6252.json @@ -0,0 +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.936},{"oc":"#221f1f","x":20.954,"y":5.251,"w":1.5,"l":63.242},{"oc":"#221f1f","x":84.066,"y":2.956,"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":71.861},{"oc":"#221f1f","x":77.922,"y":6.751,"w":0.75,"l":21.123},{"dsh":1,"oc":"#221f1f","x":30.897,"y":7.501,"w":0.75,"l":68.149},{"oc":"#221f1f","x":33.372,"y":8.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":8.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":10.501,"w":1.2000000000000002,"l":5.036},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.147,"y":10.501,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":12.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":13.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":76.684,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.597,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.684,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.684,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":15.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":76.684,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.597,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.684,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.684,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":18.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":76.684,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":22.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":22.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":22.501,"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.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"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":11.223},{"oc":"#221f1f","x":95.247,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":27.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.751,"w":1.125,"l":3.798},{"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":60.597,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.342,"y":30.001,"w":0.75,"l":12.428},{"oc":"#221f1f","x":76.684,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.44,"y":30.001,"w":0.75,"l":3.712},{"oc":"#221f1f","x":80.44,"y":28.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":80.397,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":32.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":33.001,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":58.213,"y":33.751,"w":0.75,"l":40.832},{"dsh":1,"oc":"#221f1f","x":11.097,"y":34.501,"w":0.75,"l":87.949},{"oc":"#221f1f","x":85.347,"y":37.504,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.397,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":43.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":44.251,"w":1.125,"l":3.798},{"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":80.397,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":46.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":46.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":46.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.247,"y":47.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":34.736},{"oc":"#221f1f","x":40.797,"y":47.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.647},{"oc":"#221f1f","x":0.086,"y":48.793,"w":0.75,"l":1.647}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.058},{"oc":"#221f1f","x":21.04,"y":3.241,"w":1.5,"l":0.781},{"oc":"#221f1f","x":21.04,"y":3.97,"w":1.5,"l":1.312},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.736},{"oc":"#221f1f","x":84.152,"y":2.95,"w":1.5,"l":1.406},{"oc":"#221f1f","x":84.152,"y":4.278,"w":1.5,"l":1.004},{"oc":"#221f1f","x":77.965,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":11.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":60.64,"y":11.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":60.64,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":60.64,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":11.985,"w":0.75,"l":6.056},{"oc":"#221f1f","x":80.44,"y":11.985,"w":0.75,"l":6.056},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":84.152,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":80.44,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.789},{"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":84.152,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":80.44,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":64.352,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.64,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":28.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":28.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"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":80.44,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":43.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":43.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":45.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":45.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":45.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":46.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":46.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":46.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":1.733,"y":48.793,"w":0.75,"l":0.676},{"oc":"#221f1f","x":0.086,"y":48.793,"w":0.75,"l":0.676}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":10.501,"w":4.95,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":12.001,"w":3.712,"h":6.025,"clr":-1},{"oc":"[object Object]","x":null,"y":null,"w":null,"h":null,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":28.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":32.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":0.172,"y":48.886,"w":1.303,"h":0.551,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.994,"w":1.231,"h":0.443,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.994,"w":1.231,"h":0.443,"clr":-1}],"Texts":[{"oc":"#221f1f","x":10.89,"y":11.09,"w":44.79999999999996,"clr":-1,"A":"left","R":[{"T":"Selling%20price%20including%20mortgages%20and%20other%20debts.%20Do%20not%20include%20interest%2C%20whether%20stated%20or%20unstated","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6252","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.726,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.314,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":39.256,"y":2.182,"w":11.393,"clr":-1,"A":"left","R":[{"T":"Installment%20Sale%20Income","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.497,"y":3.02,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.767,"y":3.113,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.93,"y":3.59,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.185,"y":3.683,"w":44.45499999999995,"clr":-1,"A":"left","R":[{"T":"Use%20a%20separate%20form%20for%20each%20sale%20or%20other%20disposition%20of%20%20property%20on%20the%20installment%20method.","S":-1,"TS":[0,10.52,1,0]}]},{"oc":"#221f1f","x":26.413,"y":4.152,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.951,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0228","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.3579999999999997,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":90.001,"y":3.3579999999999997,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":86.308,"y":3.8659999999999997,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.308,"y":4.312,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.286,"y":4.312,"w":1.112,"clr":-1,"A":"left","R":[{"T":"79","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"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.746,"y":5.001,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.555,"y":6.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.528,"w":10.575000000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.247,"y":6.434,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.554,"y":7.308999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.414,"y":7.308999999999999,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.276999999999999,"w":12.633000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20acquired%20(mm%2Fdd%2Fyyyy)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.861,"y":7.184,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.873,"y":7.184,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":43.10199999999998,"clr":-1,"A":"left","R":[{"T":"Was%20the%20property%20sold%20to%20a%20related%20party%20(see%20instructions)%20after%20May%2014%2C%201980%3F%20If%20%E2%80%9CNo%2C%E2%80%9D%20skip%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.128,"y":8.09,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.915,"y":8.108,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":95.752,"y":8.108,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.79,"w":45.71099999999997,"clr":-1,"A":"left","R":[{"T":"Was%20the%20property%20you%20sold%20to%20a%20related%20party%20a%20marketable%20security%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20complete%20Part%20III.%20If%20%E2%80%9CNo%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.477,"w":32.465999999999994,"clr":-1,"A":"left","R":[{"T":"complete%20Part%20III%20for%20the%20year%20of%20sale%20and%20the%202%20years%20after%20the%20year%20of%20sale","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":9.477,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.052,"y":9.608,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":95.865,"y":9.608,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":6.219,"y":10.322,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":10.322,"w":15.504000000000005,"clr":-1,"A":"left","R":[{"T":"Gross%20Profit%20and%20Contract%20Price.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":39.863,"y":10.322,"w":19.262000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20for%20the%20year%20of%20sale%20only.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.616,"y":11.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":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.79,"w":30.804,"clr":-1,"A":"left","R":[{"T":"Mortgages%2C%20debts%2C%20and%20other%20liabilities%20the%20buyer%20assumed%20or%20took%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":12.477,"w":16.317000000000007,"clr":-1,"A":"left","R":[{"T":"property%20subject%20to%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.882,"y":12.477,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.816,"y":12.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":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":12.022000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206%20from%20line%205%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":13.34,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.816,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.09,"w":15.890000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis%20of%20property%20sold","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":14.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.816,"y":14.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":15.053000000000003,"clr":-1,"A":"left","R":[{"T":"Depreciation%20allowed%20or%20allowable","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":14.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.816,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":18.616000000000003,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis.%20Subtract%20line%209%20from%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":15.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.386,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":18.411000000000005,"clr":-1,"A":"left","R":[{"T":"Commissions%20and%20other%20expenses%20of%20sale","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":16.34,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.386,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":26.598000000000006,"clr":-1,"A":"left","R":[{"T":"Income%20recapture%20from%20Form%204797%2C%20Part%20III%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":17.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":17.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.503,"y":17.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.386,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":10.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%2C%2011%2C%20and%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":17.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":18.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.186,"y":18.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":43.88099999999998,"clr":-1,"A":"left","R":[{"T":"If%20the%20property%20described%20on%20line%201%20above%20was%20your%20main%20home%2C%20enter%20the%20amount%20of%20your%20excluded%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":19.977,"w":19.243000000000002,"clr":-1,"A":"left","R":[{"T":"gain%20(see%20instructions).%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.993,"y":19.977,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.481,"y":20.84,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":20.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":21.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":21.59,"w":23.003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%206.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":21.59,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.174,"y":22.34,"w":9.652000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20line%207%20and%20line%2017","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":22.34,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":23.065,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":23.072,"w":11.949000000000002,"clr":-1,"A":"left","R":[{"T":"Installment%20Sale%20Income.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":34.148,"y":23.072,"w":16.854000000000003,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20for%20the%20year%20of%20sale","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":59.334,"y":23.072,"w":2.334,"clr":-1,"A":"left","R":[{"T":"%20and%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.533,"y":23.822,"w":30.84300000000002,"clr":-1,"A":"left","R":[{"T":"certain%20debts%20you%20must%20treat%20as%20a%20payment%20on%20installment%20obligations.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.54,"w":44.043999999999976,"clr":-1,"A":"left","R":[{"T":"Gross%20profit%20percentage%20(expressed%20as%20a%20decimal%20amount).%20Divide%20line%2016%20by%20line%2018.%20For%20years%20after%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":25.227,"w":14.409000000000002,"clr":-1,"A":"left","R":[{"T":"the%20year%20of%20sale%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.824,"y":25.227,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":25.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":33.76700000000001,"clr":-1,"A":"left","R":[{"T":"If%20this%20is%20the%20year%20of%20sale%2C%20enter%20the%20amount%20from%20line%2017.%20Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":26.09,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":22.207000000000008,"clr":-1,"A":"left","R":[{"T":"Payments%20received%20during%20year%20(see%20instructions).%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":42.148,"y":26.84,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":-1,"TS":[0,11.73,1,0]}]},{"oc":"#221f1f","x":46.585,"y":26.84,"w":19.967000000000006,"clr":-1,"A":"left","R":[{"T":"%20include%20interest%2C%20whether%20stated%20or%20unstated%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":81.186,"y":26.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2020%20and%2021","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":27.59,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.29,"w":22.984000000000005,"clr":-1,"A":"left","R":[{"T":"Payments%20received%20in%20prior%20years%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.471,"y":28.29,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.066,"y":28.29,"w":3.779,"clr":-1,"A":"left","R":[{"T":"%20include%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":28.978,"w":15.910000000000004,"clr":-1,"A":"left","R":[{"T":"interest%2C%20whether%20stated%20or%20unstated","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.879,"y":28.978,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.386,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%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":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":11.838000000000005,"clr":-1,"A":"left","R":[{"T":"Installment%20sale%20income.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.178,"y":29.84,"w":11.282000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2022%20by%20line%2019","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":29.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":40.28599999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20part%20of%20line%2024%20that%20is%20ordinary%20income%20under%20the%20recapture%20rules%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":30.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":30.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":30.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":30.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":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":40.95599999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20from%20line%2024.%20Enter%20here%20and%20on%20Schedule%20D%20or%20Form%204797%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.875,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.937,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":32.072,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":32.072,"w":22.062,"clr":-1,"A":"left","R":[{"T":"Related%20Party%20Installment%20Sale%20Income.%20Do%20not%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":51.311,"y":32.072,"w":24.894000000000002,"clr":-1,"A":"left","R":[{"T":"complete%20if%20you%20received%20the%20final%20payment%20this%20tax%20year.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.778,"w":28.821,"clr":-1,"A":"left","R":[{"T":"Name%2C%20address%2C%20and%20taxpayer%20identifying%20number%20of%20related%20party","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":43.35799999999997,"clr":-1,"A":"left","R":[{"T":"Did%20the%20related%20party%20resell%20or%20dispose%20of%20the%20property%20(%E2%80%9Csecond%20disposition%E2%80%9D)%20during%20this%20tax%20year%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.128,"y":34.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.552,"y":34.358,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":95.865,"y":34.358,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":0.258,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,10.29,0,0]}]},{"oc":"#221f1f","x":8.415,"y":35.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.365,"y":35.805,"w":44.04399999999996,"clr":-1,"A":"left","R":[{"T":"The%20second%20disposition%20was%20more%20than%202%20years%20after%20the%20first%20disposition%20(other%20than%20dispositions%20of%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.363,"y":36.493,"w":39.248999999999995,"clr":-1,"A":"left","R":[{"T":"marketable%20securities).%20If%20this%20box%20is%20checked%2C%20enter%20the%20date%20of%20disposition%20(mm%2Fdd%2Fyyyy)","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":71.938,"y":36.493,"w":7.06,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":82.553,"y":36.399,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":37.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.365,"y":37.34,"w":35.373000000000005,"clr":-1,"A":"left","R":[{"T":"The%20first%20disposition%20was%20a%20sale%20or%20exchange%20of%20stock%20to%20the%20issuing%20corporation.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":38.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.365,"y":38.09,"w":52.617999999999945,"clr":-1,"A":"left","R":[{"T":"The%20second%20disposition%20was%20an%20involuntary%20conversion%20and%20the%20threat%20of%20conversion%20occurred%20after%20the%20first%20disposition.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":38.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.365,"y":38.84,"w":34.70799999999999,"clr":-1,"A":"left","R":[{"T":"The%20second%20disposition%20occurred%20after%20the%20death%20of%20the%20original%20seller%20or%20buyer.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.365,"y":39.54,"w":50.506999999999955,"clr":-1,"A":"left","R":[{"T":"It%20can%20be%20established%20to%20the%20satisfaction%20of%20the%20IRS%20that%20tax%20avoidance%20was%20not%20a%20principal%20purpose%20for%20either%20of%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.358,"y":40.228,"w":33.69100000000001,"clr":-1,"A":"left","R":[{"T":"dispositions.%20If%20this%20box%20is%20checked%2C%20attach%20an%20explanation%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.688,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.883,"y":41.09,"w":27.965000000000003,"clr":-1,"A":"left","R":[{"T":"Selling%20price%20of%20property%20sold%20by%20related%20party%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.433,"y":41.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":41.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":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":23.205,"clr":-1,"A":"left","R":[{"T":"Enter%20contract%20price%20from%20line%2018%20for%20year%20of%20first%20sale","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":41.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.264,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2032","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.05,"y":42.59,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.943,"y":42.59,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2030%20or%20line%2031","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":42.59,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.264,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2033","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.34,"w":33.544,"clr":-1,"A":"left","R":[{"T":"Total%20payments%20received%20by%20the%20end%20of%20your%202013%20tax%20year%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":43.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":43.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.264,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2034","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.09,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2033%20from%20line%2032.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":44.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.264,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2035","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.84,"w":33.912,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2034%20by%20the%20gross%20profit%20percentage%20on%20line%2019%20for%20year%20of%20first%20sale","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":44.84,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.264,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2036","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":45.59,"w":40.28599999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20part%20of%20line%2035%20that%20is%20ordinary%20income%20under%20the%20recapture%20rules%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.264,"y":46.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2037","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":46.34,"w":40.95599999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2036%20from%20line%2035.%20Enter%20here%20and%20on%20Schedule%20D%20or%20Form%204797%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.875,"y":46.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.937,"y":46.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":46.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"w":23.340000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%204.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.622,"y":47.126,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013601R","S":2,"TS":[0,10,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":"6252","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":47.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.213,"y":35.09,"w":69.16199999999989,"clr":-1,"A":"left","R":[{"T":"f%20the%20answer%20to%20question%2028%20is%20'Yes'%2C%20complete%20lines%2030%20through%2037%20below%20unless%20one%20of%20the%20following%20conditions%20is%20met.%20Check%20the%20box%20that%20applies.","S":-1,"TS":[0,10.29,1,0]}]},{"oc":"#221f1f","x":27.683,"y":4.246,"w":37.00999999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%206252%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform6252.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":42.850999999999964,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%205.%20If%20zero%20or%20less%2C%20do%20not%20complete%20the%20rest%20of%20this%20form%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.346,"y":23.072,"w":18.022000000000002,"clr":-1,"A":"left","R":[{"T":"any%20year%20you%20receive%20a%20payment%20or%20have%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":7.335000000000003,"clr":-1,"A":"left","R":[{"T":"Contract%20price.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":6.279000000000002,"clr":-1,"A":"left","R":[{"T":"Gross%20profit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.677,"y":7.276999999999999,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":58.025,"y":7.276999999999999,"w":10.892000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20sold%20(mm%2Fdd%2Fyyyy)%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4248,"AM":1024,"x":6.229,"y":5.822,"w":71.267,"h":0.871,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4249,"AM":1024,"x":78.565,"y":5.836,"w":20.415,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4250,"AM":0,"x":30.896,"y":6.907,"w":68.166,"h":0.833,"TU":"Line 1. Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":4251,"AM":0,"x":33.371,"y":7.657,"w":19.903,"h":0.833,"TU":"Line 2a. Date acquired (mm/dd/yyyy).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":4252,"AM":0,"x":79.159,"y":7.657,"w":19.903,"h":0.833,"TU":"Line 2b. Date sold (mm/dd/yyyy)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4257,"AM":0,"x":84.253,"y":11.288,"w":10.952,"h":0.833,"TU":"Line 5. Selling price including mortgages and other debts. Do nt include interest, whether stated or unstated."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4258,"AM":0,"x":64.536,"y":12.654,"w":12.024,"h":0.833,"TU":"Line 6. Mortgages, debts, and other liabilities the buyer assumed or took the property subject to (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4259,"AM":1024,"x":64.389,"y":13.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4260,"AM":0,"x":64.453,"y":14.288,"w":12.189,"h":0.833,"TU":"Line 8. Cost or other basis of property sold."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4261,"AM":0,"x":64.453,"y":15.038,"w":12.189,"h":0.833,"TU":"Line 9. Depreciation allowed or allowable."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":4262,"AM":1024,"x":64.453,"y":15.795,"w":12.189,"h":0.833,"TU":"10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4263,"AM":0,"x":64.453,"y":16.538,"w":12.189,"h":0.833,"TU":"Line 11. Commissions and other expenses of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4264,"AM":0,"x":64.453,"y":17.288,"w":12.189,"h":0.833,"TU":"Line 12. Income recapture from Form 4797, Part III (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4265,"AM":1024,"x":84.398,"y":17.886,"w":10.663,"h":0.842,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4266,"AM":1024,"x":84.253,"y":18.795,"w":10.952,"h":0.833,"TU":"14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4267,"AM":0,"x":84.336,"y":20.233,"w":10.787,"h":0.833,"TU":"Line 15. If the property described on line 1 above was your main home, enter the amount of your excluded gain (see instructions). Otherwise, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4268,"AM":1024,"x":84.253,"y":21.045,"w":10.952,"h":0.833,"TU":"16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4269,"AM":1024,"x":84.253,"y":21.795,"w":10.952,"h":0.833,"TU":"17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":4270,"AM":1024,"x":84.253,"y":22.545,"w":10.952,"h":0.833,"TU":"18"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":4271,"AM":0,"x":84.336,"y":25.525,"w":11.415,"h":0.833,"TU":"19"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":4272,"AM":1024,"x":84.253,"y":26.288,"w":10.952,"h":0.833,"TU":"20"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":4273,"AM":0,"x":84.253,"y":27.038,"w":10.952,"h":0.833,"TU":"Line 21. Payments received during year (see instructions). Do not include interest, whether stated or unstated."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":4274,"AM":1024,"x":84.253,"y":27.795,"w":10.952,"h":0.833,"TU":"22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":4275,"AM":0,"x":64.536,"y":29.362,"w":12.024,"h":0.833,"TU":"Line 23. Payments received in prior years (see instructions). Do not include interest, whether stated or unstated."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":4276,"AM":1024,"x":84.425,"y":29.945,"w":10.93,"h":0.833,"TU":"22_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":4277,"AM":0,"x":84.189,"y":30.788,"w":10.952,"h":0.833,"TU":"Line 25. Enter the part of line 24 that is ordinary income under the recapture rules (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":4278,"AM":1024,"x":84.253,"y":31.545,"w":10.952,"h":0.833,"TU":"26"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":4279,"AM":0,"x":57.622,"y":33.133,"w":40.858,"h":0.833,"TU":"Line 27. Name of related party."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L27X","EN":0},"TI":4280,"AM":0,"x":11.16,"y":33.776,"w":34.202,"h":0.833,"TU":"Address of related party."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L27X2","EN":0},"TI":4281,"AM":0,"x":46.271,"y":33.774,"w":15.714,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L27X3","EN":0},"TI":4282,"AM":0,"x":63.375,"y":33.776,"w":4.106,"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":"L27X4","EN":0},"TI":4283,"AM":0,"x":72.041,"y":33.872,"w":9.129,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"L27X5","EN":0},"TI":4284,"AM":0,"x":82.384,"y":33.853,"w":14.942,"h":0.833,"TU":"Taxpayer identifying number."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L29DT","EN":0},"TI":4288,"AM":0,"x":85.331,"y":36.618,"w":11.18,"h":0.875,"TU":"Line 29a. Enter the date of disposition (mm/dd/yyyy).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":4293,"AM":0,"x":84.274,"y":41.258,"w":10.911,"h":0.833,"TU":"Line 30. Selling price of property sold by related party (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":4294,"AM":0,"x":84.253,"y":42.038,"w":10.952,"h":0.833,"TU":"Line 31. Enter contract price from line 18 for year of first sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":4295,"AM":1024,"x":84.253,"y":42.788,"w":10.952,"h":0.833,"TU":"32"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":4296,"AM":0,"x":84.253,"y":43.538,"w":10.952,"h":0.833,"TU":"Line 33. Total payments received by the end of your 2013 tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":4297,"AM":1024,"x":84.369,"y":44.285,"w":10.952,"h":0.833,"TU":"35"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":4298,"AM":1024,"x":84.253,"y":45.038,"w":10.952,"h":0.833,"TU":"35"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":4299,"AM":0,"x":84.253,"y":45.788,"w":10.952,"h":0.833,"TU":"Line 36. Enter the part of line 35 that is ordinary income under the recapture rules (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":4300,"AM":1024,"x":84.253,"y":46.545,"w":10.952,"h":0.833,"TU":"37"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3Y","EN":0},"TI":4253,"AM":0,"x":89.039,"y":8.221,"w":1.819,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3N","EN":0},"TI":4254,"AM":0,"x":93.682,"y":8.237,"w":1.944,"h":0.833,"checked":false}],"id":{"Id":"L3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4Y","EN":0},"TI":4255,"AM":0,"x":88.827,"y":9.549,"w":2.031,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4N","EN":0},"TI":4256,"AM":0,"x":93.858,"y":9.616,"w":1.775,"h":0.833,"checked":false}],"id":{"Id":"L4RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28Y","EN":0},"TI":4285,"AM":0,"x":88.614,"y":34.514,"w":2.2,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28N","EN":0},"TI":4286,"AM":0,"x":93.714,"y":34.494,"w":2.031,"h":0.833,"checked":false}],"id":{"Id":"L28RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L29A","EN":0},"TI":4287,"AM":0,"x":11.475,"y":35.928,"w":1.575,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L29B","EN":0},"TI":4289,"AM":0,"x":11.353,"y":37.436,"w":1.775,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L29C","EN":0},"TI":4290,"AM":0,"x":11.497,"y":38.213,"w":1.575,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L29D","EN":0},"TI":4291,"AM":0,"x":11.285,"y":38.934,"w":1.606,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L29E","EN":0},"TI":4292,"AM":0,"x":11.197,"y":39.759,"w":1.65,"h":0.833,"checked":false}],"id":{"Id":"L29RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6478.content.txt b/test/data/fd/form/F6478.content.txt new file mode 100755 index 00000000..028393cd --- /dev/null +++ b/test/data/fd/form/F6478.content.txt @@ -0,0 +1,72 @@ +Form +6478 +Department of the Treasury +Internal Revenue Service +Biofuel Producer Credit +a + +Attach to your tax return. + +a + +Information about Form 6478 and its instructions is at +www.irs.gov/form6478 +. +OMB No. 1545-0231 +20 +13 +Attachment +Sequence No. +83 +Name(s) shown on return +Identifying number +Type of Fuel +(a) +Number of Gallons +Sold or Used +(b) +Rate +(c) +Column (a) x Column (b) +1a +Qualified cellulosic biofuel production for fuel sold or used +before January 3, 2013 (see instructions for election) . . . +1a +b +Qualified second generation biofuel production for fuel sold or +used after January 2, 2013 (see instructions for election) . . +1b +2 +Add the amounts in column (c) on lines 1a and 1b. Include this amount in your income for 2013, +and enter your IRS registration number (see instructions) . . . +2 +3 +Biofuel producer credit from partnerships, S corporations, cooperatives, estates, and trusts (see +instructions) +............................. +3 +4 +Add lines 2 and 3. Cooperatives, estates, and trusts, go to line 5. Partnerships and S corporations, +stop here and report this amount on Schedule K. All others, stop here and report this amount on +Form 3800, line 4c +.......................... +4 +5 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust (see +instructions) +............................. +5 +6 +Cooperatives, estates, and trusts, subtract line 5 from line 4. Report this amount on Form 3800, +line 4c +............................... +6 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 13605J +Form +6478 + (2013) + +$1.01 +$1.01 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6478.fields.json b/test/data/fd/form/F6478.fields.json new file mode 100755 index 00000000..843d2c4c --- /dev/null +++ b/test/data/fd/form/F6478.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"ssn","calc":true,"value":""},{"id":"CBIONOAL","type":"number","calc":false,"value":""},{"id":"NOALC","type":"number","calc":true,"value":""},{"id":"QCBPGAL","type":"number","calc":false,"value":""},{"id":"QCBPAMT","type":"number","calc":true,"value":""},{"id":"REGNUM","type":"alpha","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6478.json b/test/data/fd/form/F6478.json new file mode 100755 index 00000000..ce3c1772 --- /dev/null +++ b/test/data/fd/form/F6478.json @@ -0,0 +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.751,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":68.149},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.2000000000000002,"l":68.149},{"oc":"#221f1f","x":74.209,"y":5.251,"w":1.5,"l":24.836},{"oc":"#221f1f","x":74.209,"y":6.751,"w":1.2000000000000002,"l":24.836},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":8.251,"w":0.75,"l":44.636},{"oc":"#221f1f","x":55.647,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":8.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":55.647,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":9.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":55.647,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.402,"y":11.251,"w":0.75,"l":14.85},{"oc":"#221f1f","x":59.402,"y":9.751,"w":0.75,"l":14.85},{"oc":"#221f1f","x":74.209,"y":9.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":74.209,"y":11.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":50.697,"y":13.501,"w":0.75,"l":21.123},{"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":80.397,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.001,"w":1.125,"l":14.936},{"oc":"#221f1f","x":80.397,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":1.125,"l":14.936},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":47.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223},{"oc":"#221f1f","x":6.191,"y":20.251,"w":1.5,"l":92.812}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.04,"y":4.11,"w":1.5,"l":1.157},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.531},{"oc":"#221f1f","x":84.152,"y":2.735,"w":1.5,"l":2.531},{"oc":"#221f1f","x":84.152,"y":4.017,"w":1.5,"l":1.25},{"oc":"#221f1f","x":74.252,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":59.402,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.69,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.69,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":9.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":59.402,"y":9.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":74.252,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":13.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":13.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":14.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":18.735,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.758,"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.758,"w":2.08,"clr":-1,"A":"left","R":[{"T":"6478","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.819,"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.269,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.809,"y":2.164,"w":11.02,"clr":-1,"A":"left","R":[{"T":"Biofuel%20Producer%20Credit%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.473,"y":3.4640000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.791,"y":3.558,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.39,"y":4.085,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.707,"y":4.179,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%206478%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.146,"y":4.179,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform6478","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.921,"y":4.179,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.541,"y":1.862,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0231","S":51,"TS":[0,9,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":91.204,"y":3.143,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8289999999999997,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.275,"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.275,"w":1.112,"clr":-1,"A":"left","R":[{"T":"83","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.034,"y":5,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.37,"y":6.86,"w":5.519,"clr":-1,"A":"left","R":[{"T":"Type%20of%20Fuel","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.876,"y":6.407,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.53,"y":6.845,"w":8.668000000000003,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Gallons%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.057,"y":7.282,"w":5.852,"clr":-1,"A":"left","R":[{"T":"Sold%20or%20Used","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.229,"y":6.492,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.704,"y":7.017,"w":2.074,"clr":-1,"A":"left","R":[{"T":"Rate","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.626,"y":6.477,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.853,"y":7.002,"w":10.761999999999999,"clr":-1,"A":"left","R":[{"T":"Column%20(a)%20x%20Column%20(b)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.595,"y":8.028,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.04,"w":26.224999999999998,"clr":-1,"A":"left","R":[{"T":"Qualified%20cellulosic%20biofuel%20production%20for%20fuel%20sold%20or%20used%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.778,"w":23.67100000000001,"clr":-1,"A":"left","R":[{"T":"before%20January%203%2C%202013%20(see%20instructions%20for%20election)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.254,"y":8.778,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":8.778,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":8.778,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.422,"y":8.84,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.398,"y":9.528,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.54,"w":27.948,"clr":-1,"A":"left","R":[{"T":"Qualified%20second%20generation%20biofuel%20production%20for%20fuel%20sold%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":25.283000000000012,"clr":-1,"A":"left","R":[{"T":"used%20after%20January%202%2C%202013%20(see%20instructions%20for%20election)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":10.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":10.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.393,"y":10.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.79,"w":42.88799999999997,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20in%20column%20(c)%20on%20lines%201a%20and%201b.%20Include%20this%20amount%20in%20your%20income%20for%202013%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":12.59,"w":40.20099999999993,"clr":-1,"A":"left","R":[{"T":"and%20enter%20your%20IRS%20registration%20number%20(see%20instructions)%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":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.999,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.06,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.122,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.29,"w":43.37599999999997,"clr":-1,"A":"left","R":[{"T":"Biofuel%20producer%20credit%20from%20partnerships%2C%20S%20corporations%2C%20cooperatives%2C%20estates%2C%20%20and%20trusts%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":14.09,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":14.09,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.853,"w":44.19499999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%20and%203.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%205.%20Partnerships%20and%20S%20corporations%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":15.652000000000001,"w":42.90199999999996,"clr":-1,"A":"left","R":[{"T":"stop%20here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":16.34,"w":8.856000000000005,"clr":-1,"A":"left","R":[{"T":"Form%203800%2C%20%20line%204c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.57,"y":16.34,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.04,"w":39.89399999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.84,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":17.84,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.54,"w":42.86499999999997,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C%20subtract%20line%205%20from%20line%204.%20Report%20this%20amount%20on%20Form%203800%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":19.34,"w":3.186,"clr":-1,"A":"left","R":[{"T":"line%204c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.248,"y":19.34,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"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":60.341,"y":47.126,"w":7.281000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013605J","S":2,"TS":[0,10,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":"6478","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":47.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":76.752,"y":8.887,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.01","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#231f20","x":76.752,"y":10.394,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.01","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4301,"AM":1024,"x":6.229,"y":5.889,"w":67.897,"h":0.839,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":4302,"AM":1024,"x":74.394,"y":5.889,"w":24.585,"h":0.839,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CBIONOAL","EN":0},"TI":4303,"AM":0,"x":59.465,"y":9.027,"w":14.499,"h":0.833,"TU":"Line 1a. Qualfied cellulosic biofuel production for fuel sold or used before January 3, 2013 (see instructions for election)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NOALC","EN":0},"TI":4304,"AM":1024,"x":84.215,"y":8.999,"w":14.603,"h":0.833,"TU":"(c) Column (a) x Column (b)_$1.01"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCBPGAL","EN":0},"TI":4305,"AM":0,"x":59.465,"y":10.499,"w":14.499,"h":0.833,"TU":"Line 1b. Qualified second generation biofuel production for fuel sold or used after January 2, 2013 (see instructions for election)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCBPAMT","EN":0},"TI":4306,"AM":1024,"x":84.29,"y":10.445,"w":14.603,"h":0.833,"TU":"(c) Column (a) x Column (b)_$1.01"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REGNUM","EN":0},"TI":4307,"AM":0,"x":50.667,"y":12.772,"w":21.439,"h":0.833,"TU":"Line 2. IRS registration number (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4308,"AM":1024,"x":84.235,"y":12.567,"w":14.561,"h":0.842,"TU":"(c) Column (a) x Column (b)_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4309,"AM":0,"x":84.279,"y":14.273,"w":14.602,"h":0.833,"TU":"Line 3. Biofuel producer credit from partnerships, S corporations, cooperatives, estates, and trusts (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4310,"AM":1024,"x":84.235,"y":16.261,"w":14.561,"h":0.898,"TU":"(c) Column (a) x Column (b)_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4311,"AM":1024,"x":84.215,"y":17.945,"w":14.603,"h":0.833,"TU":"(c) Column (a) x Column (b)_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4312,"AM":1024,"x":84.215,"y":19.39,"w":14.603,"h":0.873,"TU":"(c) Column (a) x Column (b)_11"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6765.content.txt b/test/data/fd/form/F6765.content.txt new file mode 100755 index 00000000..395230f8 --- /dev/null +++ b/test/data/fd/form/F6765.content.txt @@ -0,0 +1,173 @@ +Form +6765 +Department of the Treasury +Internal Revenue Service +Credit for Increasing Research Activities +a + Attach to your tax return. + +a + Information about Form 6765 and its instructions is at +www.irs.gov/form6765 +. +OMB No. 1545-0619 +20 +13 +Attachment +Sequence No. +81 +Name(s) shown on return +Identifying number +Section A—Regular Credit. +Skip this section and go to Section B if you are electing or previously elected (and are not revoking) the + +alternative simplified credit. +1 +Certain amounts paid or incurred to energy consortia (see instructions) +......... +1 +2 +Basic research payments to qualified organizations (see instructions) . +2 +3 +Qualified organization base period amount +.......... +3 +4 +Subtract line 3 from line 2. If zero or less, enter -0- +................ +4 +5 +Wages for qualified services (do not include wages used in figuring the +work opportunity credit) +................ +5 +6 +Cost of supplies +.................. +6 +7 +Rental or lease costs of computers (see instructions) +...... +7 +8 +Enter the applicable percentage of contract research expenses (see +instructions) +.................... +8 +9 +Total qualified research expenses. Add lines 5 through 8 +..... +9 +10 +Enter fixed-base percentage, but not more than 16% (see instructions) . +10 +% +11 +Enter average annual gross receipts (see instructions) +...... +11 +12 +Multiply line 11 by the percentage on line 10 +......... +12 +13 +Subtract line 12 from line 9. If zero or less, enter -0- +....... +13 +14 +Multiply line 9 by 50% (.50) +............... +14 +15 +Enter the +smaller + of line 13 or line 14 +.................... +15 +16 +Add lines 1, 4, and 15 +.......................... +16 +17 +Are you electing the reduced credit under section 280C? +a +Yes +No +If “Yes,” multiply line 16 by 13% (.13). If “No,” multiply line 16 by 20% (.20) and see the +instructions for the statement that must be attached. Members of controlled groups or businesses +under common control: see instructions for the statement that must be attached +...... +17 +Section B—Alternative Simplified Credit. +Skip this section if you are completing Section A. +18 +Certain amounts paid or incurred to energy consortia (see the line 1 instructions) +...... +18 +19 +Basic research payments to qualified organizations (see the line 2 +instructions) +.................... +19 +20 +Qualified organization base period amount (see the line 3 instructions) . +20 +21 +Subtract line 20 from line 19. If zero or less, enter -0- +............... +21 +22 +Add lines 18 and 21 +.......................... +22 +23 +Multiply line 22 by 20% (.20) +....................... +23 +24 +Wages for qualified services (do not include wages used in figuring the +work opportunity credit) +................ +24 +25 +Cost of supplies +.................. +25 +26 +Rental or lease costs of computers (see the line 7 instructions) . . . +26 +27 +Enter the applicable percentage of contract research expenses (see the +line 8 instructions) +.................. +27 +28 +Total qualified research expenses. Add lines 24 through 27 +.... +28 +29 + +Enter your total qualified research expenses for the prior 3 tax years. If +you had no qualified research expenses in any one of those years, skip +lines 30 and 31 +................... +29 +30 +Divide line 29 by 6.0 +................. +30 +31 +Subtract line 30 from line 28. If zero or less, enter -0- +...... +31 +32 +Multiply line 31 by 14% (.14). If you skipped lines 30 and 31, multiply line 28 by 6% (.06) +.... +32 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 13700H +Form +6765 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6765.fields.json b/test/data/fd/form/F6765.fields.json new file mode 100755 index 00000000..a9eb07a9 --- /dev/null +++ b/test/data/fd/form/F6765.fields.json @@ -0,0 +1 @@ +[{"id":"A10RB","type":"radio","calc":false,"value":"REDCRXY"},{"id":"A10RB","type":"radio","calc":false,"value":"REDCRXN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"ssn","calc":true,"value":""},{"id":"ENERGY","type":"number","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"ENERCONS","type":"number","calc":false,"value":""},{"id":"RESPMTS","type":"number","calc":false,"value":""},{"id":"QUALORG","type":"number","calc":false,"value":""},{"id":"SUBTOT1","type":"number","calc":true,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""},{"id":"SUBTOT3","type":"number","calc":true,"value":""},{"id":"QUALWGS","type":"number","calc":false,"value":""},{"id":"SUPPCOST","type":"number","calc":false,"value":""},{"id":"COMPCOST","type":"number","calc":false,"value":""},{"id":"CONTRRES","type":"number","calc":false,"value":""},{"id":"QRESEXP","type":"number","calc":true,"value":""},{"id":"PRQREXP","type":"number","calc":false,"value":""},{"id":"SUBTOT4","type":"number","calc":true,"value":""},{"id":"SUBTOT5","type":"number","calc":true,"value":""},{"id":"SUBTOT6","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6765.json b/test/data/fd/form/F6765.json new file mode 100755 index 00000000..909e72b4 --- /dev/null +++ b/test/data/fd/form/F6765.json @@ -0,0 +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.182,"y":5.251,"w":1.5,"l":14.936},{"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":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":10.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":14.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":15.751,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":76.684,"y":16.501,"w":0.75,"l":3.798},{"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":14.936},{"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":11.223},{"oc":"#221f1f","x":76.684,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":19.501,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":76.684,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":24.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":26.251,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":27.001,"w":0.75,"l":3.798},{"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.695},{"oc":"#221f1f","x":61.834,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":29.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":33.001,"w":0.75,"l":3.695},{"oc":"#221f1f","x":61.834,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":39.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":39.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":40.501,"w":0.75,"l":3.798},{"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":80.397,"y":41.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":41.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":41.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":41.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":41.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":41.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.001},{"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":79.202,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":76.727,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":9.047},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":9.047},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":9.047},{"oc":"#221f1f","x":76.727,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":76.727,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":14.235,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.727,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":76.727,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"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":84.152,"y":21.735,"w":0.75,"l":2.297},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":2.297},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":2.297},{"oc":"#221f1f","x":80.44,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":65.59,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":2.297},{"oc":"#221f1f","x":80.44,"y":26.985,"w":0.75,"l":2.297},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":2.297},{"oc":"#221f1f","x":76.727,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":65.59,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":9.047},{"oc":"#221f1f","x":80.44,"y":31.485,"w":0.75,"l":9.047},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":9.047},{"oc":"#221f1f","x":76.727,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":34.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":34.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":35.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":36.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":36.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"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":76.727,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":80.44,"y":9.001,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":11.251,"w":3.712,"h":9,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":21.751,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":27.001,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":31.501,"w":3.712,"h":9,"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.08,"clr":-1,"A":"left","R":[{"T":"6765","S":-1,"TS":[3,27,0,0]}]},{"oc":"#221f1f","x":5.975,"y":3.75,"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.975,"y":4.188,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":30.449,"y":2.414,"w":18.2,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Increasing%20Research%20Activities","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.4720000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.566,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.341,"y":4.035,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.129,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%206765%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.129,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform6765","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.969,"y":4.129,"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-0619","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":86.652,"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":86.652,"y":4.26,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.63,"y":4.26,"w":1.112,"clr":-1,"A":"left","R":[{"T":"81","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"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.94,"y":6.54,"w":13.053999999999998,"clr":-1,"A":"left","R":[{"T":"Section%20A%E2%80%94Regular%20Credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.132,"y":6.54,"w":45.950999999999965,"clr":-1,"A":"left","R":[{"T":"Skip%20this%20section%20and%20go%20to%20Section%20B%20if%20you%20are%20electing%20or%20previously%20elected%20(and%20are%20not%20revoking)%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.228,"w":12.242000000000003,"clr":-1,"A":"left","R":[{"T":"alternative%20simplified%20credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":31.764000000000003,"clr":-1,"A":"left","R":[{"T":"Certain%20amounts%20paid%20or%20incurred%20to%20energy%20consortia%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":8.09,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":8.09,"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.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":31.725000000000005,"clr":-1,"A":"left","R":[{"T":"Basic%20research%20payments%20to%20qualified%20organizations%20(see%20instructions)%20%20%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":8.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":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":19.22500000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20organization%20base%20period%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":9.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.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":10.34,"w":22.725,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":10.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":10.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":11.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.04,"w":31.48400000000001,"clr":-1,"A":"left","R":[{"T":"Wages%20for%20qualified%20services%20(do%20not%20include%20wages%20used%20in%20figuring%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":11.728,"w":10.945000000000004,"clr":-1,"A":"left","R":[{"T":"work%20opportunity%20credit)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.629,"y":11.728,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":7.538,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20supplies%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":12.59,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.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":13.34,"w":23.688000000000006,"clr":-1,"A":"left","R":[{"T":"Rental%20or%20lease%20costs%20of%20computers%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":13.34,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":13.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":14.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.04,"w":30.465999999999994,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20percentage%20of%20contract%20research%20expenses%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.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":14.728,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":14.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":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":25.37500000000001,"clr":-1,"A":"left","R":[{"T":"Total%20qualified%20research%20expenses.%20Add%20lines%205%20through%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":15.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%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":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":31.74800000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20fixed-base%20percentage%2C%20but%20not%20more%20than%2016%25%20(see%20instructions)%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":59.564,"y":16.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":62.623,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.299,"y":16.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":17.09,"w":24.150000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20average%20annual%20gross%20receipts%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":17.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","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":10.89,"y":17.84,"w":19.98800000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2011%20by%20the%20percentage%20on%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":17.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":17.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":18.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":23.281,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2012%20from%20line%209.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":18.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":18.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":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%209%20by%2050%25%20(.50)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":19.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%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":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.566,"y":20.09,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.974,"y":20.09,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2013%20or%20line%2014%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":20.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":10.005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%2C%204%2C%20and%2015%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":20.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.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":21.59,"w":25.54300000000001,"clr":-1,"A":"left","R":[{"T":"Are%20you%20electing%20the%20reduced%20credit%20under%20section%20280C%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.401,"y":21.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.965,"y":21.59,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.39,"y":21.59,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.353,"w":38.79099999999999,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20multiply%20line%2016%20by%2013%25%20(.13).%20If%20%E2%80%9CNo%2C%E2%80%9D%20multiply%20line%2016%20by%2020%25%20(.20)%20and%20see%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":23.04,"w":43.75299999999998,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20the%20statement%20that%20must%20be%20attached.%20Members%20of%20controlled%20groups%20or%20businesses","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":23.727,"w":36.086999999999996,"clr":-1,"A":"left","R":[{"T":"under%20common%20control%3A%20see%20instructions%20for%20the%20statement%20that%20must%20be%20attached%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.804,"y":23.727,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":24.876,"w":19.475,"clr":-1,"A":"left","R":[{"T":"Section%20B%E2%80%94Alternative%20Simplified%20Credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.065,"y":24.876,"w":21.893000000000004,"clr":-1,"A":"left","R":[{"T":"Skip%20this%20section%20if%20you%20are%20completing%20Section%20A.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":36.09899999999999,"clr":-1,"A":"left","R":[{"T":"Certain%20amounts%20paid%20or%20incurred%20to%20energy%20consortia%20(see%20the%20line%201%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":26.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.79,"w":29.503000000000004,"clr":-1,"A":"left","R":[{"T":"Basic%20research%20payments%20to%20qualified%20organizations%20(see%20the%20line%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":27.478,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.372,"y":27.478,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%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":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":31.67200000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20organization%20base%20period%20amount%20(see%20the%20line%203%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2020%20from%20line%2019.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":29.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2018%20and%2021%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":29.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2022%20by%2020%25%20(.20)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":30.59,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":30.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":31.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.29,"w":31.762000000000008,"clr":-1,"A":"left","R":[{"T":"Wages%20for%20qualified%20services%20(do%20not%20include%20wages%20used%20in%20figuring%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":31.978,"w":10.945000000000004,"clr":-1,"A":"left","R":[{"T":"work%20opportunity%20credit)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.629,"y":31.978,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%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":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":7.538,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20supplies%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":32.84,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":28.023000000000007,"clr":-1,"A":"left","R":[{"T":"Rental%20or%20lease%20costs%20of%20computers%20(see%20the%20line%207%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":33.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.503,"y":33.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":33.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":34.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.29,"w":31.873999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20percentage%20of%20contract%20research%20expenses%20(see%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.978,"w":8.372000000000002,"clr":-1,"A":"left","R":[{"T":"line%208%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":34.978,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%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":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":26.487000000000013,"clr":-1,"A":"left","R":[{"T":"Total%20qualified%20research%20expenses.%20Add%20lines%2024%20through%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":35.84,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.603,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.603,"w":31.649999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20qualified%20research%20expenses%20for%20the%20prior%203%20tax%20years.%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":37.29,"w":31.895,"clr":-1,"A":"left","R":[{"T":"you%20had%20no%20qualified%20research%20expenses%20in%20any%20one%20of%20those%20years%2C%20skip%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":37.977,"w":7.059000000000001,"clr":-1,"A":"left","R":[{"T":"lines%2030%20and%2031%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.435,"y":37.977,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":9.299999999999999,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2029%20by%206.0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":38.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2030%20from%20line%2028.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":39.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":39.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":39.201,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2031%20by%2014%25%20(.14).%20If%20you%20skipped%20lines%2030%20and%2031%2C%20multiply%20line%2028%20by%206%25%20(.06)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":40.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.108,"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":60.219,"y":41.126,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013700H","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.135,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":41.135,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6765","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":41.135,"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":4313,"AM":1024,"x":5.966,"y":5.984,"w":48.665,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":4314,"AM":1024,"x":79.531,"y":6.074,"w":17.988,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ENERGY","EN":0},"TI":4315,"AM":0,"x":84.075,"y":8.325,"w":10.428,"h":0.833,"TU":"Line 1. Certain amounts paid or incurred to energy consortia (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4316,"AM":0,"x":65.685,"y":9.033,"w":10.428,"h":0.833,"TU":"Line 2. Basic research payments to qualified organizations (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":4317,"AM":0,"x":65.722,"y":9.822,"w":10.428,"h":0.833,"TU":"Line 3. Qualified organization base period amount. (Dollars)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4318,"AM":1024,"x":84.344,"y":10.523,"w":10.428,"h":0.833,"TU":"Line 4. Subtract line 3 from line 2. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4319,"AM":0,"x":65.81,"y":11.986,"w":10.428,"h":0.833,"TU":"Line 5. Wages for qualified services (do not include wages used in figuring the work opportunity credit) Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4320,"AM":0,"x":65.587,"y":12.795,"w":10.428,"h":0.833,"TU":"Line 6. Cost of supplies. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4321,"AM":0,"x":65.642,"y":13.55,"w":10.428,"h":0.833,"TU":"Line 7. Rental or lease costs of computers (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4322,"AM":0,"x":65.622,"y":14.986,"w":10.428,"h":0.833,"TU":"Line 8. Enter the applicable percentage of contract research expenses (see instructions). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4323,"AM":1024,"x":65.428,"y":15.818,"w":10.428,"h":0.833,"TU":"Line 9. Total qualified research expenses. Add lines 5 through 8. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4324,"AM":0,"x":65.602,"y":16.557,"w":10.428,"h":0.833,"TU":"Line 10. Enter fixed base percentage, but not more than 16%."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":4325,"AM":0,"x":65.62,"y":17.289,"w":10.428,"h":0.833,"TU":"Line 11. Enter average annual gross receipts (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4326,"AM":1024,"x":65.525,"y":18.099,"w":10.428,"h":0.833,"TU":"Line 12. Multiply line 11 by the percentage on line 10. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4327,"AM":1024,"x":65.58,"y":18.854,"w":10.428,"h":0.833,"TU":"Line 13. Subtract line 12 from line 9. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4328,"AM":1024,"x":65.722,"y":19.596,"w":10.428,"h":0.833,"TU":"Line 14. Multiple line 9 by 50% (.50)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4329,"AM":1024,"x":84.364,"y":20.249,"w":10.428,"h":0.833,"TU":"Line 15. Enter the smaller of line 13 or line 14. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4330,"AM":1024,"x":84.365,"y":21.075,"w":10.353,"h":0.833,"TU":"Line 16. Add lines 1, 4 and 15. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4333,"AM":1024,"x":84.269,"y":24.007,"w":10.428,"h":0.833,"TU":"Line 17. Are you electing the reduced credit under section 280C? If yes multiply line 16 by 13%. If \"No\", multiply line 16 by 20% (.20) and see the instructions for the statement that must be attached. Members of controlled groups or businesses under common control: see instructions for the statement that must be attached."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ENERCONS","EN":0},"TI":4334,"AM":0,"x":83.991,"y":26.345,"w":10.952,"h":0.833,"TU":"Line 18. Certain amounts paid or incurred to energy consortia (see the line 1 instructions) Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESPMTS","EN":0},"TI":4335,"AM":0,"x":65.51,"y":27.822,"w":10.787,"h":0.833,"TU":"Line 19. Basic research payments to qualified organizations (see the line 2 instructions) Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALORG","EN":0},"TI":4336,"AM":0,"x":65.428,"y":28.595,"w":10.952,"h":0.833,"TU":"Line 20. Qualified organization base period amount (see the line 3 instructions) Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT1","EN":0},"TI":4337,"AM":1024,"x":84.027,"y":29.292,"w":10.952,"h":0.833,"TU":"Line 21. Subtract line 20 from line 19, If zero or less enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":4338,"AM":1024,"x":83.991,"y":30.102,"w":10.952,"h":0.833,"TU":"Line 22. Add lines 18 and 21. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3","EN":0},"TI":4339,"AM":1024,"x":84.055,"y":30.868,"w":10.952,"h":0.833,"TU":"Line 23. Multiply line 22 by 20%. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALWGS","EN":0},"TI":4340,"AM":0,"x":65.51,"y":32.377,"w":10.787,"h":0.833,"TU":"Line 24. Wages for qualified services (do not include wages used in figuring the work opportunity credit) Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUPPCOST","EN":0},"TI":4341,"AM":0,"x":65.428,"y":33.095,"w":10.952,"h":0.833,"TU":"Line 25. Cost of supplies. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMPCOST","EN":0},"TI":4342,"AM":0,"x":65.428,"y":33.818,"w":10.952,"h":0.833,"TU":"Line 26. Rental or lease costs of computers (see the line 7 instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRRES","EN":0},"TI":4343,"AM":0,"x":65.51,"y":35.36,"w":10.787,"h":0.833,"TU":"Line 27. Enter the applicable percentage of contract research expenses (see the line 8 instructions) Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QRESEXP","EN":0},"TI":4344,"AM":1024,"x":65.428,"y":36.048,"w":10.952,"h":0.833,"TU":"Line 28. Total qualified research expenses. Add lines 24 through 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRQREXP","EN":0},"TI":4345,"AM":0,"x":65.531,"y":38.277,"w":10.746,"h":0.833,"TU":"Line 29. Enter your total qualified research expenses for the prior 3 tax years. If you had no qualified research expenses in any of those years, skip lines 30 and 31. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT4","EN":0},"TI":4346,"AM":1024,"x":65.428,"y":39.068,"w":10.952,"h":0.833,"TU":"Line 30. Divide line 29 by 6.0."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT5","EN":0},"TI":4347,"AM":1024,"x":65.428,"y":39.825,"w":10.952,"h":0.833,"TU":"Line 31. Subtract line 30 from line 28. If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT6","EN":0},"TI":4348,"AM":1024,"x":84.055,"y":40.402,"w":10.746,"h":0.833,"TU":"Line 32. Multiply line 31 by 14% (.14). If you skipped lines 30 and 31, multiply line 28 by 6% (.06)"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REDCRXY","EN":0},"TI":4331,"AM":0,"x":55.888,"y":21.712,"w":1.896,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REDCRXN","EN":0},"TI":4332,"AM":0,"x":63.1,"y":21.721,"w":1.896,"h":0.833,"checked":false}],"id":{"Id":"A10RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6765P2.content.txt b/test/data/fd/form/F6765P2.content.txt new file mode 100755 index 00000000..93c2b526 --- /dev/null +++ b/test/data/fd/form/F6765P2.content.txt @@ -0,0 +1,51 @@ +Form 6765 (2013) +Page +2 +Section B—Alternative Simplified Credit. +(continued) +33 +Add lines 23 and 32 +.......................... +33 +34 +Are you electing the reduced credit under section 280C? +a +Yes +No +If “Yes,” multiply line 33 by 65% (.65). If “No,” enter the amount from line 33 and see the line 17 +instructions for the statement that must be attached. Members of controlled groups or businesses +under common control: see instructions for the statement that must be attached +...... +34 +Section C—Summary +35 +Enter the portion of the credit from Form 8932, line 2, that is attributable to wages that were also +used to figure the credit on line 17 or line 34 (whichever applies) +............ +35 +36 +Subtract line 35 from line 17 or line 34 (whichever applies). If zero or less, enter -0- +..... +36 +37 +Credit for increasing research activities from partnerships, S corporations, estates, and trusts . . +37 +38 +Add lines 36 and 37. Estates and trusts, go to line 39. Partnerships and S corporations, stop here +and report this amount on Schedule K. All others, stop here and report this amount on Form 3800, +line 1c +............................... +38 +39 +Amount allocated to beneficiaries of the estate or trust (see instructions) +......... +39 +40 +Estates and trusts, subtract line 39 from line 38. Report the amount on Form 3800, line 1c . . . +40 + + + + + +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6765P2.fields.json b/test/data/fd/form/F6765P2.fields.json new file mode 100755 index 00000000..eb8fe27f --- /dev/null +++ b/test/data/fd/form/F6765P2.fields.json @@ -0,0 +1 @@ +[{"id":"REDCR2RB","type":"radio","calc":false,"value":"REDCR2XY"},{"id":"REDCR2RB","type":"radio","calc":false,"value":"REDCR2XN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"EIN2","type":"ssn","calc":true,"value":""},{"id":"SUBTOT7","type":"number","calc":true,"value":""},{"id":"REDCR2","type":"number","calc":true,"value":""},{"id":"EWAGES","type":"number","calc":false,"value":""},{"id":"SUBTOT","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"ESTTRTOT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6765P2.json b/test/data/fd/form/F6765P2.json new file mode 100755 index 00000000..a2d55b12 --- /dev/null +++ b/test/data/fd/form/F6765P2.json @@ -0,0 +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":87.949},{"oc":"#221f1f","x":94.009,"y":3.001,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":4.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":6.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":12.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":13.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.19,"y":17.251,"w":0.75,"l":92.813}],"VLines":[{"oc":"#221f1f","x":84.152,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":13.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":13.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%206765%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":1.979,"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.9780000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.126,"w":19.475,"clr":-1,"A":"left","R":[{"T":"Section%20B%E2%80%94Alternative%20Simplified%20Credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.065,"y":3.126,"w":4.964,"clr":-1,"A":"left","R":[{"T":"(continued)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.09,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2023%20and%2032%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":5.09,"w":34.65799999999998,"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":"33","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.84,"w":25.54300000000001,"clr":-1,"A":"left","R":[{"T":"Are%20you%20electing%20the%20reduced%20credit%20under%20section%20280C%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.401,"y":5.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.202,"y":5.84,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":5.84,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.603,"w":42.81099999999997,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20multiply%20line%2033%20by%2065%25%20(.65).%20If%20%E2%80%9CNo%2C%E2%80%9D%20enter%20the%20amount%20from%20line%2033%20and%20see%20the%20line%2017%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":7.289999999999999,"w":44.03099999999998,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20the%20statement%20that%20must%20be%20attached.%20Members%20of%20controlled%20groups%20or%20businesses%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":7.978,"w":36.086999999999996,"clr":-1,"A":"left","R":[{"T":"under%20common%20control%3A%20see%20instructions%20for%20the%20statement%20that%20must%20be%20attached%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.804,"y":7.978,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":9.126,"w":10.165999999999999,"clr":-1,"A":"left","R":[{"T":"Section%20C%E2%80%94Summary","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":10.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.29,"w":43.322999999999986,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20portion%20of%20the%20credit%20from%20Form%208932%2C%20line%202%2C%20that%20is%20attributable%20to%20wages%20that%20were%20also%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.977,"w":28.744999999999997,"clr":-1,"A":"left","R":[{"T":"used%20to%20figure%20the%20credit%20on%20line%2017%20or%20line%2034%20(whichever%20applies)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":10.977,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":11.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":37.04099999999999,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2035%20from%20line%2017%20or%20line%2034%20(whichever%20applies).%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":11.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":11.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":41.540999999999976,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20increasing%20research%20activities%20from%20partnerships%2C%20S%20corporations%2C%20estates%2C%20and%20trusts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.353,"w":43.65999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2036%20and%2037.%20Estates%20and%20trusts%2C%20go%20to%20line%2039.%20Partnerships%20and%20S%20corporations%2C%20stop%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":14.04,"w":44.070999999999955,"clr":-1,"A":"left","R":[{"T":"and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on%20Form%203800%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.876,"y":14.728,"w":3.186,"clr":-1,"A":"left","R":[{"T":"line%201c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.239,"y":14.728,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":14.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":32.375,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":15.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":16.278,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.278,"w":39.99599999999999,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20subtract%20line%2039%20from%20line%2038.%20Report%20the%20amount%20on%20Form%203800%2C%20line%201c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":16.278,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":16.278,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":16.278,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":4349,"AM":1024,"x":16.441,"y":2.184,"w":48.665,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"EIN2","EN":0},"TI":4350,"AM":1024,"x":76.455,"y":2.22,"w":17.988,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT7","EN":0},"TI":4351,"AM":1024,"x":84.371,"y":5.256,"w":10.787,"h":0.833,"TU":"Line 33. Add lines 23 and 32. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REDCR2","EN":0},"TI":4354,"AM":1024,"x":84.512,"y":8.18,"w":10.428,"h":0.833,"TU":"Line 34. Are you electing the reduced credit under section 280C? If \"yes\" multiply line 33 by 65% (.65). If \"no\", enter the amount from line 33 and see the line 17 instructions for the statement that must be attached. Members of controlled groups or businesses under common control: see instructions for the statement that must be attached."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EWAGES","EN":0},"TI":4355,"AM":0,"x":84.344,"y":11.216,"w":10.428,"h":0.833,"TU":"Line 35. Enter the portion of the credit from Form 8932, line 2, that is attributable to wages that were also used to figure the credit on line 17 or line 34 (whichever applies). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT","EN":0},"TI":4356,"AM":0,"x":84.381,"y":12.005,"w":10.428,"h":0.833,"TU":"Line 36. Subtract line 35 from line 17 or line 34 (whichever applies). If zero or less, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":4357,"AM":0,"x":84.474,"y":12.788,"w":10.428,"h":0.833,"TU":"Line 37. Credit for increasing research activities from partnerships, S corporations, estates and trusts. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":4358,"AM":1024,"x":84.511,"y":14.884,"w":10.428,"h":0.833,"TU":"Line 38. Add lines 36 and 37. Estates and trusts, go to line 39. Partnerships and S corporations, stop here and report this amount on Schedule K. All others, stop here and report this amount on Form 3800, line 1c. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENALLOC","EN":0},"TI":4359,"AM":1024,"x":84.353,"y":15.745,"w":10.952,"h":0.833,"TU":"Line 39. Amount allocated to beneficiaries of the estate or trust (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTRTOT","EN":0},"TI":4360,"AM":1024,"x":84.289,"y":16.518,"w":10.952,"h":0.833,"TU":"Line 40. Estates and trusts, subtract line 39 from line 38. Report the amount on Form 3800, line 1c. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REDCR2XY","EN":0},"TI":4352,"AM":0,"x":57.396,"y":5.945,"w":1.896,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REDCR2XN","EN":0},"TI":4353,"AM":0,"x":64.609,"y":5.954,"w":1.896,"h":0.833,"checked":false}],"id":{"Id":"REDCR2RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F6781.content.txt b/test/data/fd/form/F6781.content.txt new file mode 100755 index 00000000..e954a673 --- /dev/null +++ b/test/data/fd/form/F6781.content.txt @@ -0,0 +1,244 @@ +Form + + +6781 +Department of the Treasury +Internal Revenue Service +Gains and Losses From Section 1256 +Contracts and Straddles +a + +Information about Form 6781 and its instructions is at +www.irs.gov/form6781. + +a + +Attach to your tax return. +OMB No. 1545-0644 +20 +13 +Attachment +Sequence No. +82 +Name(s) shown on tax return +Identifying number +Check all applicable boxes (see instructions). +A +Mixed straddle election +B +Straddle-by-straddle identification election +C +Mixed straddle account election +D +Net section 1256 contracts loss election +Part I +Section 1256 Contracts Marked to Market +(a) +Identification of account +(b) (Loss) + +(c) Gain + +1 +2 +Add the amounts on line 1 in columns (b) and (c) +.... +2 +( +) +3 +Net gain or (loss). Combine line 2, columns (b) and (c) +................. +3 +4 +Form 1099-B adjustments. See instructions and attach statement +.............. +4 +5 +Combine lines 3 and 4 +.......................... +5 +Note: +If line 5 shows a net gain, skip line 6 and enter the gain on line 7. Partnerships and S corporations, see +instructions. +6 +If you have a net section 1256 contracts loss and checked box D above, enter the amount of loss to be +carried back. Enter the loss as a positive number +.................. +6 +7 +Combine lines 5 and 6 +.......................... +7 +8 +Short-term capital gain or (loss). +Multiply line 7 by 40% (.40). Enter here and include on the appropriate + +line +of Schedule D (see instructions) +....................... +8 +9 +Long-term capital gain or (loss). +Multiply line 7 by 60% (.60). Enter here and include on the appropriate + +line +of Schedule D (see instructions) +....................... +9 +Part II +Gains and Losses From Straddles. +Attach a separate statement listing each straddle and its components. +Section A—Losses From Straddles +(a) +Description of property +(b) +Date + +entered + +into or + +acquired +(c) +Date + +closed out + +or sold +(d) +Gross + +sales price +(e) +Cost or + +other basis + +plus + +expense of + +sale +(f) Loss. +If column (e) +is more than + +(d), enter + +difference. + +Otherwise, + +enter -0- +(g) +Unrecognized +gain on +offsetting +positions +(h) Recognized loss. +If column (f) is more +than (g), enter +difference. +Otherwise, enter -0- + + +10 +11a +Enter the short-term portion of losses from line 10, column (h), here and include on the appropriate line of +Schedule D or Form 8949 (see instructions) +.................... +11a +( +) +b +Enter the long-term portion of losses from line 10, column (h), here and include on the appropriate line of +Schedule D or Form 8949 (see instructions) +.................... +11b +( +) +Section B—Gains From Straddles +(a) +Description of property +(b) +Date + +entered + +into or + +acquired +(c) +Date + +closed out + +or sold +(d) +Gross + +sales price + + +(e) +Cost or other + +basis plus +expense of sale + + +(f) Gain. + If column + +(d) is more than (e), +enter difference. +Otherwise, enter -0- + + +12 +13a +Enter the short-term portion of gains from line 12, column (f), here and include on the appropriate line of +Schedule D or Form 8949 (see instructions) +.................... +13a +b +Enter the long-term portion of gains from line 12, column (f), here and include on the appropriate line of +Schedule D or Form 8949 (see instructions) +.................... +13b +Part III +Unrecognized Gains From Positions Held on Last Day of Tax Year. +Memo Entry Only (see instructions) +(a) +Description of property +(b) +Date + +acquired +(c) +Fair market value on last + +business day of tax year + + +(d) +Cost or other basis + +as adjusted + + +(e) Unrecognized gain. +If column (c) is more +than (d), enter difference. + +Otherwise, enter -0- + + +14 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 13715G +Form +6781 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F6781.fields.json b/test/data/fd/form/F6781.fields.json new file mode 100755 index 00000000..7fc490d4 --- /dev/null +++ b/test/data/fd/form/F6781.fields.json @@ -0,0 +1 @@ +[{"id":"BXA","type":"box","calc":false,"value":""},{"id":"BXC","type":"box","calc":false,"value":""},{"id":"BXB","type":"box","calc":false,"value":""},{"id":"BXD","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SEC1256_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"SEC1256_L1B_1_","type":"mask","calc":false,"value":""},{"id":"SEC1256_L1C_1_","type":"number","calc":false,"value":""},{"id":"SEC1256_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"SEC1256_L1B_2_","type":"mask","calc":false,"value":""},{"id":"SEC1256_L1C_2_","type":"number","calc":false,"value":""},{"id":"SEC1256_L1A_3_","type":"alpha","calc":false,"value":""},{"id":"SEC1256_L1B_3_","type":"mask","calc":false,"value":""},{"id":"SEC1256_L1C_3_","type":"number","calc":false,"value":""},{"id":"L3C","type":"number","calc":true,"value":""},{"id":"ADD1BC","type":"number","calc":true,"value":""},{"id":"L5C","type":"number","calc":true,"value":""},{"id":"L4C","type":"number","calc":false,"value":""},{"id":"COMB23BC","type":"number","calc":true,"value":""},{"id":"L6C","type":"number","calc":false,"value":""},{"id":"L7C","type":"number","calc":true,"value":""},{"id":"L8C","type":"number","calc":true,"value":""},{"id":"L9C","type":"number","calc":true,"value":""},{"id":"LINE10_L10A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE10_L10B_1_","type":"date","calc":false,"value":""},{"id":"LINE10_L10C_1_","type":"date","calc":false,"value":""},{"id":"LINE10_L10D_1_","type":"number","calc":false,"value":""},{"id":"LINE10_L10E_1_","type":"number","calc":false,"value":""},{"id":"LINE10_L10F_1_","type":"number","calc":true,"value":""},{"id":"LINE10_L10G_1_","type":"number","calc":false,"value":""},{"id":"LINE10_L10H_1_","type":"number","calc":true,"value":""},{"id":"LINE10_L10A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE10_L10B_2_","type":"date","calc":false,"value":""},{"id":"LINE10_L10C_2_","type":"date","calc":false,"value":""},{"id":"LINE10_L10D_2_","type":"number","calc":false,"value":""},{"id":"LINE10_L10E_2_","type":"number","calc":false,"value":""},{"id":"LINE10_L10F_2_","type":"number","calc":true,"value":""},{"id":"LINE10_L10G_2_","type":"number","calc":false,"value":""},{"id":"LINE10_L10H_2_","type":"number","calc":true,"value":""},{"id":"L11A","type":"mask","calc":false,"value":""},{"id":"L11B","type":"mask","calc":false,"value":""},{"id":"LINE12_L12A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE12_L12B_1_","type":"date","calc":false,"value":""},{"id":"LINE12_L12C_1_","type":"date","calc":false,"value":""},{"id":"LINE12_L12D_1_","type":"number","calc":false,"value":""},{"id":"LINE12_L12E_1_","type":"number","calc":false,"value":""},{"id":"LINE12_L12F_1_","type":"number","calc":true,"value":""},{"id":"LINE12_L12A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE12_L12B_2_","type":"date","calc":false,"value":""},{"id":"LINE12_L12C_2_","type":"date","calc":false,"value":""},{"id":"LINE12_L12D_2_","type":"number","calc":false,"value":""},{"id":"LINE12_L12E_2_","type":"number","calc":false,"value":""},{"id":"LINE12_L12F_2_","type":"number","calc":true,"value":""},{"id":"L13A","type":"number","calc":false,"value":""},{"id":"L13B","type":"number","calc":false,"value":""},{"id":"LINE14_L14A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE14_L14B_1_","type":"date","calc":false,"value":""},{"id":"LINE14_L14C_1_","type":"number","calc":false,"value":""},{"id":"LINE14_L14D_1_","type":"number","calc":false,"value":""},{"id":"LINE14_L14E_1_","type":"number","calc":true,"value":""},{"id":"LINE14_L14A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE14_L14B_2_","type":"date","calc":false,"value":""},{"id":"LINE14_L14C_2_","type":"number","calc":false,"value":""},{"id":"LINE14_L14D_2_","type":"number","calc":false,"value":""},{"id":"LINE14_L14E_2_","type":"number","calc":true,"value":""},{"id":"LINE14_L14A_3_","type":"alpha","calc":false,"value":""},{"id":"LINE14_L14B_3_","type":"date","calc":false,"value":""},{"id":"LINE14_L14C_3_","type":"number","calc":false,"value":""},{"id":"LINE14_L14D_3_","type":"number","calc":false,"value":""},{"id":"LINE14_L14E_3_","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F6781.json b/test/data/fd/form/F6781.json new file mode 100755 index 00000000..b399c3b3 --- /dev/null +++ b/test/data/fd/form/F6781.json @@ -0,0 +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":2.775,"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":75.574},{"oc":"#221f1f","x":81.632,"y":6.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":8.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.107,"y":9,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":48.371},{"oc":"#221f1f","x":54.43,"y":10.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.28,"y":10.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":48.371},{"oc":"#221f1f","x":54.43,"y":11.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.567,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.28,"y":11.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.417,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":12,"w":0.75,"l":48.371},{"oc":"#221f1f","x":54.43,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.567,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.28,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.417,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":12.75,"w":1.125,"l":48.371},{"oc":"#221f1f","x":54.43,"y":12.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":65.567,"y":12.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":69.28,"y":12.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":80.417,"y":12.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":50.695,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.545,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.257,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.395,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":14.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":18.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":20.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":21.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":23.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":24,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":24.743,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":28.5,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.895,"y":28.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":28.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":44.507,"y":28.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":54.407,"y":28.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":61.832,"y":28.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.495,"y":28.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":84.107,"y":28.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.145,"y":29.256,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.895,"y":29.256,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":29.256,"w":0.75,"l":7.511},{"oc":"#221f1f","x":44.507,"y":29.256,"w":0.75,"l":9.986},{"oc":"#221f1f","x":54.407,"y":29.256,"w":0.75,"l":7.511},{"oc":"#221f1f","x":61.832,"y":29.256,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.495,"y":29.256,"w":0.75,"l":13.698},{"oc":"#221f1f","x":84.107,"y":29.256,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":29.256,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":30.006,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.895,"y":30.006,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":30.006,"w":0.75,"l":7.511},{"oc":"#221f1f","x":44.507,"y":30.006,"w":0.75,"l":9.986},{"oc":"#221f1f","x":54.407,"y":30.006,"w":0.75,"l":7.511},{"oc":"#221f1f","x":61.832,"y":30.006,"w":0.75,"l":8.748},{"oc":"#221f1f","x":70.495,"y":30.006,"w":0.75,"l":13.698},{"oc":"#221f1f","x":84.107,"y":30.006,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":30.006,"w":0.75,"l":3.798},{"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":6.145,"y":33,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":33.743,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":36.75,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.895,"y":36.75,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":36.75,"w":0.75,"l":7.511},{"oc":"#221f1f","x":44.507,"y":36.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":63.07,"y":36.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":80.395,"y":36.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.145,"y":37.5,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.895,"y":37.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":37.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":44.507,"y":37.5,"w":0.75,"l":14.936},{"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":13.698},{"oc":"#221f1f","x":76.682,"y":37.5,"w":0.75,"l":3.798},{"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},{"oc":"#221f1f","x":6.145,"y":38.25,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.895,"y":38.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":38.25,"w":0.75,"l":7.511},{"oc":"#221f1f","x":44.507,"y":38.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.357,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":38.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":76.682,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":38.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":39.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":41.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":42,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":44.25,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":44.25,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.22,"y":44.25,"w":0.75,"l":18.648},{"oc":"#221f1f","x":66.782,"y":44.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.87,"y":44.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.145,"y":45,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":45,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.22,"y":45,"w":0.75,"l":14.936},{"oc":"#221f1f","x":63.07,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":45,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":45,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":45.75,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":45.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.22,"y":45.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":63.07,"y":45.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":45.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":45.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":45.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":45.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":46.5,"w":1.5,"l":32.261},{"oc":"#221f1f","x":38.32,"y":46.5,"w":1.5,"l":9.986},{"oc":"#221f1f","x":48.22,"y":46.5,"w":1.5,"l":14.936},{"oc":"#221f1f","x":63.07,"y":46.5,"w":1.5,"l":3.798},{"oc":"#221f1f","x":66.782,"y":46.5,"w":1.5,"l":12.461},{"oc":"#221f1f","x":79.157,"y":46.5,"w":1.5,"l":3.798},{"oc":"#221f1f","x":82.87,"y":46.5,"w":1.5,"l":12.461},{"oc":"#221f1f","x":95.245,"y":46.5,"w":1.5,"l":3.798}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.038,"y":4.109,"w":1.5,"l":1.172},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.556},{"oc":"#221f1f","x":84.15,"y":2.754,"w":1.5,"l":1.499},{"oc":"#221f1f","x":84.15,"y":4.222,"w":1.5,"l":1.059},{"oc":"#221f1f","x":81.675,"y":5.219,"w":0.75,"l":1.547},{"oc":"#221f1f","x":84.15,"y":8.984,"w":0.75,"l":4.531},{"oc":"#221f1f","x":54.473,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.323,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.473,"y":10.484,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":65.61,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.323,"y":10.484,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":80.46,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.473,"y":11.234,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":65.61,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.323,"y":11.234,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":80.46,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.473,"y":11.984,"w":0.75,"l":0.789},{"dsh":1,"oc":"#221f1f","x":65.61,"y":11.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":69.323,"y":11.984,"w":0.75,"l":0.789},{"dsh":1,"oc":"#221f1f","x":80.46,"y":11.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.45,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":12.734,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":65.588,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":12.734,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":80.438,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":13.484,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":14.234,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.781},{"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},{"dsh":1,"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":15.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":15.734,"w":0.75,"l":2.281},{"dsh":1,"oc":"#221f1f","x":95.288,"y":15.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.15,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":18.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":18.734,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":95.288,"y":18.734,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"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},{"dsh":1,"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.781},{"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},{"dsh":1,"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.938,"y":24.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":37.125,"y":24.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":44.55,"y":24.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":54.45,"y":24.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.875,"y":24.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":70.538,"y":24.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.15,"y":24.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":30.938,"y":28.485,"w":0.75,"l":0.787},{"oc":"#221f1f","x":37.125,"y":28.485,"w":0.75,"l":0.787},{"oc":"#221f1f","x":44.55,"y":28.485,"w":0.75,"l":0.787},{"oc":"#221f1f","x":54.45,"y":28.485,"w":0.75,"l":0.787},{"oc":"#221f1f","x":61.875,"y":28.485,"w":0.75,"l":0.787},{"oc":"#221f1f","x":70.538,"y":28.485,"w":0.75,"l":0.787},{"oc":"#221f1f","x":84.15,"y":28.485,"w":0.75,"l":0.787},{"dsh":1,"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.787},{"oc":"#221f1f","x":30.938,"y":29.24,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.125,"y":29.24,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.55,"y":29.24,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":29.24,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":29.24,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":29.24,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":29.24,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":29.24,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":29.984,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":0.781},{"dsh":1,"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":1.531},{"oc":"#221f1f","x":80.438,"y":31.484,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.938,"y":33.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":37.125,"y":33.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":44.55,"y":33.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":63.113,"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":30.938,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.125,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.55,"y":36.734,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":59.4,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":36.734,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":76.725,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":36.734,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.938,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.125,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.55,"y":37.484,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":59.4,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":37.484,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":76.725,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":37.484,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":38.234,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":95.288,"y":38.234,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":39.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":39.735,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":41.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":48.263,"y":41.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":66.825,"y":41.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":41.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.362,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.262,"y":44.235,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":63.113,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":44.235,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":79.2,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":44.235,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.262,"y":44.984,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":63.113,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":44.984,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":79.2,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":44.984,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":95.288,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":45.734,"w":0.75,"l":0.797},{"oc":"#221f1f","x":48.263,"y":45.734,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":63.113,"y":45.734,"w":0.75,"l":0.797},{"oc":"#221f1f","x":66.825,"y":45.734,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":79.2,"y":45.734,"w":0.75,"l":0.797},{"oc":"#221f1f","x":82.913,"y":45.734,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":95.288,"y":45.734,"w":0.75,"l":0.797}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":8.25,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":84.15,"y":9,"w":14.85,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":15.75,"w":3.712,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.188,"y":23.25,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":41.25,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.571,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.415,"y":2.571,"w":2.08,"clr":-1,"A":"left","R":[{"T":"6781","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.7699999999999996,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.295,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":32.204,"y":2.1,"w":17.040000000000003,"clr":-1,"A":"left","R":[{"T":"Gains%20and%20Losses%20From%20Section%201256%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":39.254,"y":3.037,"w":11.18,"clr":-1,"A":"left","R":[{"T":"Contracts%20and%20Straddles%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":26.386,"y":3.659,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.706,"y":3.753,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%206781%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.145,"y":3.753,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform6781.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.47,"y":4.221,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.79,"y":4.315,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.8599999999999999,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0644%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.856,"y":3.193,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.201,"y":3.193,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.619,"y":3.8120000000000003,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.619,"y":4.321,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.931,"y":4.321,"w":1.112,"clr":-1,"A":"left","R":[{"T":"82","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5,"w":13.409000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20tax%20return%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.456,"y":5,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.607,"w":20.39100000000001,"clr":-1,"A":"left","R":[{"T":"Check%20all%20applicable%20boxes%20(see%20instructions).%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.345,"y":6.589,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.175,"y":6.607,"w":10.705,"clr":-1,"A":"left","R":[{"T":"Mixed%20straddle%20election%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.331,"y":7.339,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.175,"y":7.356999999999999,"w":19.317000000000004,"clr":-1,"A":"left","R":[{"T":"Straddle-by-straddle%20identification%20election%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.477,"y":6.589,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.35,"y":6.607,"w":14.595,"clr":-1,"A":"left","R":[{"T":"Mixed%20straddle%20account%20election%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.477,"y":7.339,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.35,"y":7.356999999999999,"w":18.207000000000008,"clr":-1,"A":"left","R":[{"T":"Net%20section%201256%20contracts%20loss%20election%20","S":-1,"TS":[0,11,0,0]}]},{"x":6.836,"y":8.071,"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":8.071,"w":20.188000000000002,"clr":-1,"A":"left","R":[{"T":"Section%201256%20Contracts%20Marked%20to%20Market%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.411,"y":9.125,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.075,"y":9.125,"w":11.057000000000002,"clr":-1,"A":"left","R":[{"T":"Identification%20of%20account%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.282,"y":9.125,"w":4.907,"clr":-1,"A":"left","R":[{"T":"(b)%20(Loss)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.691,"y":9.125,"w":4.184,"clr":-1,"A":"left","R":[{"T":"(c)%20Gain%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.648,"y":10.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":12.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.607,"w":21.842,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%201%20in%20columns%20(b)%20and%20(c)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41,"y":12.607,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.962,"y":12.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.659,"y":12.5,"w":0.537,"clr":-1,"A":"left","R":[{"T":"(%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.329,"y":12.5,"w":0.537,"clr":-1,"A":"left","R":[{"T":")%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.648,"y":13.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.357,"w":24.098000000000006,"clr":-1,"A":"left","R":[{"T":"Net%20gain%20or%20(loss).%20Combine%20line%202%2C%20columns%20(b)%20and%20(c)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.125,"y":13.357,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.662,"y":13.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":14.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.107,"w":29.196000000000005,"clr":-1,"A":"left","R":[{"T":"Form%201099-B%20adjustments.%20See%20instructions%20and%20attach%20statement","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.313,"y":14.107,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.662,"y":14.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":14.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.857,"w":10.282000000000002,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%203%20and%204%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.563,"y":14.857,"w":39,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.662,"y":14.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.632000000000001,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.292,"y":15.632000000000001,"w":45.620999999999974,"clr":-1,"A":"left","R":[{"T":"If%20line%205%20shows%20a%20net%20gain%2C%20skip%20line%206%20and%20enter%20the%20gain%20on%20line%207.%20Partnerships%20and%20S%20corporations%2C%20see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.878,"y":16.257,"w":5.704000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":17.17,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.132,"w":46.23499999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20a%20net%20section%201256%20contracts%20loss%20and%20checked%20box%20D%20above%2C%20enter%20the%20amount%20of%20loss%20to%20be%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.883,"y":17.757,"w":22.079000000000004,"clr":-1,"A":"left","R":[{"T":"carried%20back.%20Enter%20the%20loss%20as%20a%20positive%20number%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.058,"y":17.757,"w":27,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.662,"y":17.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%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":"7%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.357,"w":10.282000000000002,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%205%20and%206%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.563,"y":19.357,"w":39,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.662,"y":19.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":20.17,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.132,"w":15.940000000000003,"clr":-1,"A":"left","R":[{"T":"Short-term%20capital%20gain%20or%20(loss).%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.02,"y":20.132,"w":31.250000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20by%2040%25%20(.40).%20Enter%20here%20and%20include%20on%20the%20appropriate","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.835,"y":20.132,"w":1.815,"clr":-1,"A":"left","R":[{"T":"line%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.886,"y":20.757,"w":14.428000000000003,"clr":-1,"A":"left","R":[{"T":"of%20Schedule%20D%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.749,"y":20.757,"w":34.5,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.662,"y":20.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":21.67,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":21.632,"w":15.754000000000003,"clr":-1,"A":"left","R":[{"T":"Long-term%20capital%20gain%20or%20(loss).%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.846,"y":21.632,"w":31.250000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20by%2060%25%20(.60).%20Enter%20here%20and%20include%20on%20the%20appropriate","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.841,"y":21.632,"w":1.815,"clr":-1,"A":"left","R":[{"T":"line%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":22.257,"w":14.428000000000003,"clr":-1,"A":"left","R":[{"T":"of%20Schedule%20D%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.754,"y":22.257,"w":34.5,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.662,"y":22.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,0,0]}]},{"x":6.582,"y":23.071,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":23.071,"w":16.887999999999998,"clr":-1,"A":"left","R":[{"T":"Gains%20and%20Losses%20From%20Straddles.%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":43.557,"y":23.071,"w":31.583,"clr":-1,"A":"left","R":[{"T":"Attach%20a%20separate%20statement%20listing%20each%20straddle%20and%20its%20components.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":23.814,"w":16.851000000000003,"clr":-1,"A":"left","R":[{"T":"Section%20A%E2%80%94Losses%20From%20Straddles%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":11.25,"y":25.972,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":12.987,"y":25.972,"w":10.575000000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.631,"y":25.185,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":33.413,"y":25.185,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.731,"y":25.71,"w":3.686,"clr":-1,"A":"left","R":[{"T":"entered%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":32.066,"y":26.235,"w":3.1300000000000003,"clr":-1,"A":"left","R":[{"T":"into%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.43,"y":26.76,"w":4.186,"clr":-1,"A":"left","R":[{"T":"acquired%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":38.46,"y":25.447,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.197,"y":25.447,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.768,"y":25.972,"w":4.686000000000001,"clr":-1,"A":"left","R":[{"T":"closed%20out","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":38.738,"y":26.497,"w":3.3520000000000003,"clr":-1,"A":"left","R":[{"T":"or%20sold%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.755,"y":25.71,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":48.537,"y":25.71,"w":2.6660000000000004,"clr":-1,"A":"left","R":[{"T":"Gross","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.364,"y":26.235,"w":5.074,"clr":-1,"A":"left","R":[{"T":"sales%20price%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.061,"y":24.922,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.799,"y":24.922,"w":3.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.938,"y":25.447,"w":5.223000000000001,"clr":-1,"A":"left","R":[{"T":"other%20basis%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.788,"y":25.972,"w":2.149,"clr":-1,"A":"left","R":[{"T":"plus%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.949,"y":26.497,"w":5.204000000000001,"clr":-1,"A":"left","R":[{"T":"expense%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.832,"y":27.022,"w":2.074,"clr":-1,"A":"left","R":[{"T":"sale%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.695,"y":24.397,"w":4.037,"clr":-1,"A":"left","R":[{"T":"(f)%20Loss.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.669,"y":24.922,"w":5.742000000000001,"clr":-1,"A":"left","R":[{"T":"If%20column%20(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.624,"y":25.447,"w":5.817,"clr":-1,"A":"left","R":[{"T":"is%20more%20than%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.583,"y":25.972,"w":4.223000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%2C%20enter%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.115,"y":26.497,"w":5,"clr":-1,"A":"left","R":[{"T":"difference.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.071,"y":27.022,"w":5.074000000000002,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.616,"y":27.547,"w":3.8900000000000006,"clr":-1,"A":"left","R":[{"T":"enter%20-0-","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.37,"y":24.922,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.352,"y":25.447,"w":6.4990000000000006,"clr":-1,"A":"left","R":[{"T":"Unrecognized%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.111,"y":25.972,"w":3.5750000000000006,"clr":-1,"A":"left","R":[{"T":"gain%20on%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.576,"y":26.497,"w":4.463000000000001,"clr":-1,"A":"left","R":[{"T":"offsetting%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.653,"y":27.022,"w":4.334,"clr":-1,"A":"left","R":[{"T":"positions%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.545,"y":24.922,"w":9.887000000000002,"clr":-1,"A":"left","R":[{"T":"(h)%20Recognized%20loss.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.033,"y":25.447,"w":9.076000000000002,"clr":-1,"A":"left","R":[{"T":"If%20column%20(f)%20is%20more%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.615,"y":25.972,"w":6.4460000000000015,"clr":-1,"A":"left","R":[{"T":"than%20(g)%2C%20enter%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.485,"y":26.497,"w":5,"clr":-1,"A":"left","R":[{"T":"difference.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.933,"y":27.022,"w":8.964000000000002,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.884,"y":28.363,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.865,"y":29.919,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"11a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.887,"y":29.882,"w":47.23399999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20short-term%20portion%20of%20losses%20from%20line%2010%2C%20column%20(h)%2C%20here%20and%20include%20on%20the%20appropriate%20line%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.879,"y":30.507,"w":19.579000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20or%20Form%208949%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.929,"y":30.507,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.885,"y":30.607,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"11a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.359,"y":30.527,"w":0.537,"clr":-1,"A":"left","R":[{"T":"(%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.891,"y":30.527,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":31.42,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.381999999999998,"w":46.88199999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20long-term%20portion%20of%20losses%20from%20line%2010%2C%20column%20(h)%2C%20here%20and%20include%20on%20the%20appropriate%20line%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.007,"w":19.85700000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20or%20Form%208949%20%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.94,"y":32.007,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.859,"y":32.107,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"11b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.359,"y":32.027,"w":0.537,"clr":-1,"A":"left","R":[{"T":"(%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.891,"y":32.027,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":32.814,"w":16.202,"clr":-1,"A":"left","R":[{"T":"Section%20B%E2%80%94Gains%20From%20Straddles%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":11.25,"y":34.597,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":12.987,"y":34.597,"w":10.575000000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.631,"y":33.81,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":33.413,"y":33.81,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.731,"y":34.335,"w":3.686,"clr":-1,"A":"left","R":[{"T":"entered%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":32.066,"y":34.86,"w":3.1300000000000003,"clr":-1,"A":"left","R":[{"T":"into%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.43,"y":35.385,"w":4.186,"clr":-1,"A":"left","R":[{"T":"acquired%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":38.46,"y":34.072,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.197,"y":34.072,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.768,"y":34.597,"w":4.686000000000001,"clr":-1,"A":"left","R":[{"T":"closed%20out","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":38.738,"y":35.122,"w":3.3520000000000003,"clr":-1,"A":"left","R":[{"T":"or%20sold%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.087,"y":34.241,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.869,"y":34.241,"w":2.6660000000000004,"clr":-1,"A":"left","R":[{"T":"Gross","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.696,"y":34.9,"w":5.074,"clr":-1,"A":"left","R":[{"T":"sales%20price%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.114,"y":33.979,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.851,"y":33.979,"w":5.889000000000001,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.818,"y":34.504,"w":4.779,"clr":-1,"A":"left","R":[{"T":"basis%20plus%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.314,"y":35.163,"w":7.2780000000000005,"clr":-1,"A":"left","R":[{"T":"expense%20of%20sale%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.612,"y":33.716,"w":3.6650000000000005,"clr":-1,"A":"left","R":[{"T":"(f)%20Gain.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.021,"y":33.716,"w":4.409000000000001,"clr":-1,"A":"left","R":[{"T":"%20If%20column","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.333,"y":34.241,"w":8.817000000000004,"clr":-1,"A":"left","R":[{"T":"(d)%20is%20more%20than%20(e)%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.092,"y":34.766,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"enter%20difference.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.078,"y":35.425,"w":8.964000000000002,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.884,"y":36.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":38.17,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"13a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.132,"w":46.52999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20short-term%20portion%20of%20gains%20from%20line%2012%2C%20column%20(f)%2C%20here%20and%20include%20on%20the%20appropriate%20line%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.882,"y":38.757,"w":19.85700000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20or%20Form%208949%20%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.932,"y":38.757,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.885,"y":38.857,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"13a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.413,"y":39.67,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.632,"w":46.17799999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20long-term%20portion%20of%20gains%20from%20line%2012%2C%20column%20(f)%2C%20here%20and%20include%20on%20the%20appropriate%20line%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.257,"w":19.85700000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20or%20Form%208949%20%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.938,"y":40.257,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.859,"y":40.326,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"13b%20","S":-1,"TS":[0,11,0,0]}]},{"x":6.329,"y":41.071,"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":41.071,"w":32.053999999999995,"clr":-1,"A":"left","R":[{"T":"Unrecognized%20Gains%20From%20Positions%20Held%20on%20Last%20Day%20of%20Tax%20Year.%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":69.623,"y":41.071,"w":15.856000000000007,"clr":-1,"A":"left","R":[{"T":"Memo%20Entry%20Only%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.962,"y":42.472,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.699,"y":42.472,"w":10.575000000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.913,"y":42.21,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.694,"y":42.21,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.712,"y":42.735,"w":4.186,"clr":-1,"A":"left","R":[{"T":"acquired%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.851,"y":42.21,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.589,"y":42.21,"w":11.206000000000001,"clr":-1,"A":"left","R":[{"T":"Fair%20market%20value%20on%20last%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.765,"y":42.735,"w":11.131000000000004,"clr":-1,"A":"left","R":[{"T":"business%20day%20of%20tax%20year%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.603,"y":42.21,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.385,"y":42.21,"w":8.519000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.51,"y":42.735,"w":5.446,"clr":-1,"A":"left","R":[{"T":"as%20adjusted%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.279,"y":41.685,"w":10.962,"clr":-1,"A":"left","R":[{"T":"(e)%20Unrecognized%20gain.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.268,"y":42.21,"w":9.317000000000002,"clr":-1,"A":"left","R":[{"T":"If%20column%20(c)%20is%20more%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.976,"y":42.735,"w":11.465000000000003,"clr":-1,"A":"left","R":[{"T":"than%20(d)%2C%20enter%20difference.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.313,"y":43.26,"w":8.964000000000002,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.884,"y":44.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":46.357,"w":26.239,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.195,"y":46.375,"w":7.799000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013715G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":46.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":46.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"6781","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":46.321,"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":4361,"AM":1024,"x":6.342,"y":5.915,"w":72.859,"h":0.833,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4362,"AM":1024,"x":81.819,"y":5.881,"w":17.16,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SEC1256_L1A_1_","EN":0},"TI":4367,"AM":0,"x":9.334,"y":10.5,"w":45.036,"h":0.833,"TU":"Line 1(a). Identification of account."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEC1256_L1B_1_","EN":0},"TI":4368,"AM":0,"x":54.576,"y":10.5,"w":10.931,"h":0.833,"TU":"Line 1(b). (Loss).","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC1256_L1C_1_","EN":0},"TI":4369,"AM":0,"x":69.426,"y":10.5,"w":10.931,"h":0.833,"TU":"Line 1(c). Gain."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SEC1256_L1A_2_","EN":0},"TI":4370,"AM":0,"x":9.332,"y":11.288,"w":45.036,"h":0.833,"TU":"Line 1(a). Identification of account."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEC1256_L1B_2_","EN":0},"TI":4371,"AM":0,"x":54.574,"y":11.288,"w":10.931,"h":0.833,"TU":"Line 1(b). (Loss).","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC1256_L1C_2_","EN":0},"TI":4372,"AM":0,"x":69.424,"y":11.288,"w":10.931,"h":0.833,"TU":"Line 1(c). Gain."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SEC1256_L1A_3_","EN":0},"TI":4373,"AM":0,"x":9.389,"y":12.017,"w":44.961,"h":0.833,"TU":"Line 1(a). Identification of account."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SEC1256_L1B_3_","EN":0},"TI":4374,"AM":0,"x":54.556,"y":12.017,"w":10.931,"h":0.833,"TU":"Line 1(b). (Loss).","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC1256_L1C_3_","EN":0},"TI":4375,"AM":0,"x":69.406,"y":12.017,"w":10.931,"h":0.833,"TU":"Line 1(c). Gain."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3C","EN":0},"TI":4376,"AM":1024,"x":55.626,"y":12.787,"w":9.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD1BC","EN":0},"TI":4377,"AM":1024,"x":69.589,"y":12.787,"w":10.482,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5C","EN":0},"TI":4378,"AM":1024,"x":84.223,"y":13.506,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C","EN":0},"TI":4379,"AM":0,"x":84.497,"y":14.316,"w":10.787,"h":0.833,"TU":"Line 4. Form 1099-B adjustments. See instructions and attach statement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMB23BC","EN":0},"TI":4380,"AM":1024,"x":84.332,"y":14.989,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6C","EN":0},"TI":4381,"AM":0,"x":84.237,"y":17.867,"w":10.787,"h":0.833,"TU":"Line 6. If you have a net section 1256 contracts loss and checked box D above, enter the amount of loss to be carried back. Enter the loss as a positive number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7C","EN":0},"TI":4382,"AM":1024,"x":84.367,"y":19.357,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":4383,"AM":1024,"x":84.347,"y":20.848,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":4384,"AM":1024,"x":84.336,"y":22.381,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE10_L10A_1_","EN":0},"TI":4385,"AM":0,"x":8.854,"y":28.523,"w":21.897,"h":0.833,"TU":"Line 10(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE10_L10B_1_","EN":0},"TI":4386,"AM":0,"x":31.061,"y":28.545,"w":5.961,"h":0.833,"TU":"Line 10(b) Date entered into or acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE10_L10C_1_","EN":0},"TI":4387,"AM":0,"x":37.249,"y":28.545,"w":7.198,"h":0.833,"TU":"Line 10(c). Date closed out or sold.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10D_1_","EN":0},"TI":4388,"AM":0,"x":44.674,"y":28.545,"w":9.673,"h":0.833,"TU":"Line 10(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10E_1_","EN":0},"TI":4389,"AM":0,"x":54.574,"y":28.572,"w":7.198,"h":0.833,"TU":"Line 10(e). Cost or other basis plus expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10F_1_","EN":0},"TI":4390,"AM":1024,"x":61.999,"y":28.572,"w":8.436,"h":0.833,"TU":"(f) Loss. If column (e) is more than (d), enter difference. Otherwise, enter -0-_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10G_1_","EN":0},"TI":4391,"AM":0,"x":70.661,"y":28.572,"w":13.386,"h":0.833,"TU":"Line 10(g). Unrecognized gain on offsetting positions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10H_1_","EN":0},"TI":4392,"AM":1024,"x":84.274,"y":28.572,"w":10.911,"h":0.833,"TU":"(h) Recognized loss. If column (f) is more than (g), enter difference. Otherwise, enter -0-_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE10_L10A_2_","EN":0},"TI":4393,"AM":0,"x":8.808,"y":29.295,"w":22.047,"h":0.833,"TU":"Line 10(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE10_L10B_2_","EN":0},"TI":4394,"AM":0,"x":31.041,"y":29.295,"w":6.002,"h":0.833,"TU":"Line 10(b) Date entered into or acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE10_L10C_2_","EN":0},"TI":4395,"AM":0,"x":37.228,"y":29.295,"w":7.239,"h":0.833,"TU":"Line 10(c). Date closed out or sold.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10D_2_","EN":0},"TI":4396,"AM":0,"x":44.653,"y":29.322,"w":9.714,"h":0.833,"TU":"Line 10(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10E_2_","EN":0},"TI":4397,"AM":0,"x":54.553,"y":29.322,"w":7.239,"h":0.833,"TU":"Line 10(e). Cost or other basis plus expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10F_2_","EN":0},"TI":4398,"AM":1024,"x":61.978,"y":29.322,"w":8.477,"h":0.833,"TU":"(f) Loss. If column (e) is more than (d), enter difference. Otherwise, enter -0-_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10G_2_","EN":0},"TI":4399,"AM":0,"x":70.577,"y":29.299,"w":13.427,"h":0.833,"TU":"Line 10(g). Unrecognized gain on offsetting positions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10H_2_","EN":0},"TI":4400,"AM":1024,"x":84.253,"y":29.322,"w":10.952,"h":0.833,"TU":"(h) Recognized loss. If column (f) is more than (g), enter difference. Otherwise, enter -0-_Row_2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":4401,"AM":0,"x":84.975,"y":30.728,"w":10.148,"h":0.833,"TU":"Line 11a. Enter the short-term portion of losses from line 10, colmun (h), here and include on the appropriate line of Schedule D or Form 8949 (see instructions).","MV":"-"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":4402,"AM":0,"x":84.975,"y":32.139,"w":10.148,"h":0.838,"TU":"Line 11b. Enter the long-term portion of losses from line 10, column (h), here and include on the appropriate line of Schedule D or Form 8949 (see instructions).","MV":"-"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE12_L12A_1_","EN":0},"TI":4403,"AM":0,"x":8.983,"y":36.764,"w":21.897,"h":0.833,"TU":"Line 12(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE12_L12B_1_","EN":0},"TI":4404,"AM":0,"x":31.041,"y":36.788,"w":6.002,"h":0.833,"TU":"Line 12(b.) Date entered into or acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE12_L12C_1_","EN":0},"TI":4405,"AM":0,"x":37.228,"y":36.788,"w":7.239,"h":0.833,"TU":"Line 12(c). Date closed out or sold.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12D_1_","EN":0},"TI":4406,"AM":0,"x":44.728,"y":36.815,"w":14.664,"h":0.833,"TU":"Line 12(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12E_1_","EN":0},"TI":4407,"AM":0,"x":63.216,"y":36.815,"w":13.427,"h":0.833,"TU":"Line 12(e). Cost or other basis plus expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12F_1_","EN":0},"TI":4408,"AM":1024,"x":80.541,"y":36.815,"w":14.664,"h":0.833,"TU":"(f) Gain. If column (d) is more than (e), enter difference. Otherwise, enter -0-_12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE12_L12A_2_","EN":0},"TI":4409,"AM":0,"x":8.958,"y":37.538,"w":21.897,"h":0.833,"TU":"Line 12(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE12_L12B_2_","EN":0},"TI":4410,"AM":0,"x":31.041,"y":37.538,"w":6.002,"h":0.833,"TU":"Line 12(b). Date entered into or acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE12_L12C_2_","EN":0},"TI":4411,"AM":0,"x":37.378,"y":37.565,"w":7.239,"h":0.833,"TU":"Line 12(c). Date closed out or sold.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12D_2_","EN":0},"TI":4412,"AM":0,"x":44.653,"y":37.565,"w":14.664,"h":0.833,"TU":"Line 12(d). Gross sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12E_2_","EN":0},"TI":4413,"AM":0,"x":63.216,"y":37.565,"w":13.427,"h":0.833,"TU":"Line 12(e). Cost or other basis plus expense of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12F_2_","EN":0},"TI":4414,"AM":1024,"x":80.541,"y":37.565,"w":14.664,"h":0.833,"TU":"(f) Gain. If column (d) is more than (e), enter difference. Otherwise, enter -0-_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":4415,"AM":0,"x":84.336,"y":38.944,"w":10.787,"h":0.833,"TU":"Line 13a. Enter the short-term portion of gains from line 12, column (f), here and include on the appropriate line of Schedule D or Form 8949 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":4416,"AM":0,"x":84.336,"y":40.444,"w":10.787,"h":0.833,"TU":"Line 13b. Enter the long-term portion of gains from line 12, column (f), here and include on the appropriate line of Schedule D or Form 8949 (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE14_L14A_1_","EN":0},"TI":4417,"AM":0,"x":9.034,"y":44.259,"w":29.173,"h":0.833,"TU":"Line 14(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE14_L14B_1_","EN":0},"TI":4418,"AM":0,"x":38.466,"y":44.288,"w":9.714,"h":0.833,"TU":"Line 14(b). Date acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14C_1_","EN":0},"TI":4419,"AM":0,"x":48.366,"y":44.288,"w":14.664,"h":0.833,"TU":"Line 14(c). Fair market value on last business day of tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14D_1_","EN":0},"TI":4420,"AM":0,"x":66.928,"y":44.288,"w":12.189,"h":0.833,"TU":"Line 14(d). Cost or other basis as adjusted."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14E_1_","EN":0},"TI":4421,"AM":1024,"x":83.016,"y":44.288,"w":12.189,"h":0.833,"TU":"(e) Unrecognized gain. If column (c) is more than (d), enter difference. Otherwise, enter -0-_14"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE14_L14A_2_","EN":0},"TI":4422,"AM":0,"x":9.032,"y":45.038,"w":29.248,"h":0.833,"TU":"Line 14(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE14_L14B_2_","EN":0},"TI":4423,"AM":0,"x":38.466,"y":45.038,"w":9.714,"h":0.833,"TU":"Line 14(b). Date acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14C_2_","EN":0},"TI":4424,"AM":0,"x":48.366,"y":45.038,"w":14.664,"h":0.833,"TU":"Line 14(c). Fair market value on last business day of tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14D_2_","EN":0},"TI":4425,"AM":0,"x":66.928,"y":45.038,"w":12.189,"h":0.833,"TU":"Line 14(d). Cost or other basis as adjusted."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14E_2_","EN":0},"TI":4426,"AM":1024,"x":83.016,"y":45.038,"w":12.189,"h":0.833,"TU":"(e) Unrecognized gain. If column (c) is more than (d), enter difference. Otherwise, enter -0-_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE14_L14A_3_","EN":0},"TI":4427,"AM":0,"x":8.958,"y":45.788,"w":29.322,"h":0.833,"TU":"Line 14(a). Description of property."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE14_L14B_3_","EN":0},"TI":4428,"AM":0,"x":38.466,"y":45.788,"w":9.714,"h":0.833,"TU":"Line 14(b). Date acquired.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14C_3_","EN":0},"TI":4429,"AM":0,"x":48.366,"y":45.788,"w":14.664,"h":0.833,"TU":"Line 14(c). Fair market value on last business day of tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14D_3_","EN":0},"TI":4430,"AM":0,"x":66.928,"y":45.788,"w":12.189,"h":0.833,"TU":"Line 14(d). Cost or other basis as adjusted."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14E_3_","EN":0},"TI":4431,"AM":1024,"x":83.016,"y":45.788,"w":12.189,"h":0.833,"TU":"(e) Unrecognized gain. If column (c) is more than (d), enter difference. Otherwise, enter -0-_Row_3"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA","EN":0},"TI":4363,"AM":0,"x":38.141,"y":6.711,"w":1.856,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC","EN":0},"TI":4364,"AM":0,"x":70.348,"y":6.724,"w":1.8,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB","EN":0},"TI":4365,"AM":0,"x":38.288,"y":7.505,"w":1.856,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXD","EN":0},"TI":4366,"AM":0,"x":70.142,"y":7.518,"w":1.912,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8082.content.txt b/test/data/fd/form/F8082.content.txt new file mode 100755 index 00000000..6ca268dc --- /dev/null +++ b/test/data/fd/form/F8082.content.txt @@ -0,0 +1,112 @@ +Form +8082 +(Rev. December 2011) +Department of the Treasury +Internal Revenue Service +Notice of Inconsistent Treatment or Administrative +Adjustment Request (AAR) +(For use by partners, S corporation shareholders, estate and domestic trust beneficiaries, foreign +trust owners and beneficiaries, REMIC residual interest holders, and TMPs.) +a + +See separate instructions. +OMB No. 1545-0790 +Attachment +Sequence No. +84 +Name(s) shown on return +Identifying number +Part I +General Information +1 +Check boxes that apply: +(a) +Notice of inconsistent treatment +(b) +Administrative adjustment request (AAR) +2 +Identify type of pass-through entity: +(a) +Partnership +(b) +S corporation +(c) +Estate +(d) +Trust +(e) +REMIC +3 +Employer identification number of pass-through entity +4 +Name, address, and ZIP code of pass-through entity +5 +Internal Revenue Service Center where pass-through entity filed its return +6 +Tax year of pass-through entity +/ / to / / +7 +Your tax year +/ / to / / +Part II +Inconsistent or Administrative Adjustment Request (AAR) Items +(a) +Description of inconsistent or + +administrative adjustment request (AAR) items + + +(see instructions) +(b) +Inconsistency is in, + + +or AAR is to correct + +(check boxes that apply) +Amount of +item +Treatment +of item +(c) +Amount as shown on + +Schedule K-1, Schedule Q, or + +similar statement, a foreign + +trust statement, or your return, + +whichever applies + +(see +instructions) +(d) +Amount you are reporting +(e) +Difference between + +(c) and (d) + + + + + + +8 +9 +10 +11 +Part III +Explanations—Enter the Part II item number before each explanation. If more space is needed, +continue your explanations on the back. +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 49975G +Form +8082 + (Rev. 12-2011) +Line 8 +Line 9 +Line 10 +Line 11 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8082.fields.json b/test/data/fd/form/F8082.fields.json new file mode 100755 index 00000000..a40d9c4a --- /dev/null +++ b/test/data/fd/form/F8082.fields.json @@ -0,0 +1 @@ +[{"id":"BX1A","type":"box","calc":false,"value":""},{"id":"BX1B","type":"box","calc":false,"value":""},{"id":"A20RB","type":"radio","calc":false,"value":"BX3A"},{"id":"A20RB","type":"radio","calc":false,"value":"BX3C"},{"id":"A20RB","type":"radio","calc":false,"value":"BX3D"},{"id":"A20RB","type":"radio","calc":false,"value":"BX3E"},{"id":"A20RB","type":"radio","calc":false,"value":"BX3F"},{"id":"A25_ITEMAMT_1_","type":"box","calc":false,"value":""},{"id":"A25_TREATAMT_1_","type":"box","calc":false,"value":""},{"id":"A25_ITEMAMT_2_","type":"box","calc":false,"value":""},{"id":"A25_TREATAMT_2_","type":"box","calc":false,"value":""},{"id":"A25_ITEMAMT_3_","type":"box","calc":false,"value":""},{"id":"A25_TREATAMT_3_","type":"box","calc":false,"value":""},{"id":"A25_ITEMAMT_4_","type":"box","calc":false,"value":""},{"id":"A25_TREATAMT_4_","type":"box","calc":false,"value":""},{"id":"NAMEA","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L4","type":"alpha","calc":false,"value":""},{"id":"L5NAME","type":"alpha","calc":false,"value":""},{"id":"L5ADDR","type":"alpha","calc":false,"value":""},{"id":"L5CITY","type":"alpha","calc":false,"value":""},{"id":"L5ST","type":"alpha","calc":false,"value":""},{"id":"L5ZIP","type":"zip","calc":false,"value":""},{"id":"L7","type":"alpha","calc":false,"value":""},{"id":"L8FROM","type":"date","calc":false,"value":""},{"id":"L8TO","type":"date","calc":false,"value":""},{"id":"L9FROM","type":"date","calc":false,"value":""},{"id":"L9TO","type":"date","calc":false,"value":""},{"id":"A25_DESC_1_","type":"alpha","calc":false,"value":""},{"id":"A25_AMOUNT_1_","type":"number","calc":false,"value":""},{"id":"A25_AMTREP_1_","type":"number","calc":false,"value":""},{"id":"A25_DIFFAMT_1_","type":"number","calc":true,"value":""},{"id":"A25_DESC_2_","type":"alpha","calc":false,"value":""},{"id":"A25_AMOUNT_2_","type":"number","calc":false,"value":""},{"id":"A25_AMTREP_2_","type":"number","calc":false,"value":""},{"id":"A25_DIFFAMT_2_","type":"number","calc":true,"value":""},{"id":"A25_DESC_3_","type":"alpha","calc":false,"value":""},{"id":"A25_AMOUNT_3_","type":"number","calc":false,"value":""},{"id":"A25_AMTREP_3_","type":"number","calc":false,"value":""},{"id":"A25_DIFFAMT_3_","type":"number","calc":true,"value":""},{"id":"A25_DESC_4_","type":"alpha","calc":false,"value":""},{"id":"A25_AMOUNT_4_","type":"number","calc":false,"value":""},{"id":"A25_AMTREP_4_","type":"number","calc":false,"value":""},{"id":"A25_DIFFAMT_4_","type":"number","calc":true,"value":""},{"id":"A28_PATXT1_1_","type":"alpha","calc":false,"value":""},{"id":"A28_PBTXT1_1_","type":"alpha","calc":false,"value":""},{"id":"A28_PCTXT1_1_","type":"alpha","calc":false,"value":""},{"id":"A28_PATXT1_2_","type":"alpha","calc":false,"value":""},{"id":"A28_PBTXT1_2_","type":"alpha","calc":false,"value":""},{"id":"A28_PCTXT1_2_","type":"alpha","calc":false,"value":""},{"id":"A28_PATXT1_3_","type":"alpha","calc":false,"value":""},{"id":"A28_PBTXT1_3_","type":"alpha","calc":false,"value":""},{"id":"A28_PCTXT1_3_","type":"alpha","calc":false,"value":""},{"id":"A28_PATXT1_4_","type":"alpha","calc":false,"value":""},{"id":"A28_PBTXT1_4_","type":"alpha","calc":false,"value":""},{"id":"A28_PCTXT1_4_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8082.json b/test/data/fd/form/F8082.json new file mode 100755 index 00000000..66f64a31 --- /dev/null +++ b/test/data/fd/form/F8082.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8082 (Rev. December 2011)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.995,"y":6,"w":1.5,"l":63.198},{"oc":"#221f1f","x":84.064,"y":3.75,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":7.5,"w":1.125,"l":92.898},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.188,"y":9.75,"w":0.75,"l":92.812},{"oc":"#221f1f","x":6.145,"y":12,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":12,"w":0.75,"l":39.686},{"oc":"#221f1f","x":6.145,"y":13.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":13.5,"w":0.75,"l":39.686},{"oc":"#221f1f","x":48.22,"y":12,"w":0.75,"l":2.561},{"oc":"#221f1f","x":50.695,"y":12,"w":0.75,"l":48.348},{"oc":"#221f1f","x":50.695,"y":13.5,"w":0.75,"l":48.348},{"oc":"#221f1f","x":48.22,"y":13.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":48.22,"y":15,"w":0.75,"l":2.561},{"oc":"#221f1f","x":50.695,"y":15,"w":0.75,"l":48.348},{"oc":"#221f1f","x":6.145,"y":16.5,"w":1.125,"l":92.898},{"oc":"#221f1f","x":6.145,"y":17.25,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":17.25,"w":0.75,"l":32.261},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":38.32,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":38.258,"y":20.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":44.445,"y":20.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":50.583,"y":17.25,"w":0.75,"l":16.285},{"oc":"#221f1f","x":50.583,"y":20.25,"w":0.75,"l":16.285},{"oc":"#221f1f","x":66.807,"y":17.25,"w":0.75,"l":16.148},{"oc":"#221f1f","x":66.807,"y":20.25,"w":0.75,"l":16.148},{"oc":"#221f1f","x":82.869,"y":17.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.869,"y":20.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":20.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":44.507,"y":20.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":50.695,"y":20.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":66.782,"y":20.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.869,"y":20.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.145,"y":22.5,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":22.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":44.507,"y":22.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":50.695,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.069,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.244,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":24.75,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":24.75,"w":0.75,"l":6.273},{"oc":"#221f1f","x":44.507,"y":24.75,"w":0.75,"l":6.273},{"oc":"#221f1f","x":50.695,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.069,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.244,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":27,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":27,"w":0.75,"l":6.273},{"oc":"#221f1f","x":44.507,"y":27,"w":0.75,"l":6.273},{"oc":"#221f1f","x":50.695,"y":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.069,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.244,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":29.25,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.32,"y":29.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":44.507,"y":29.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":50.695,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.069,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.244,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":29.25,"w":1.125,"l":92.898},{"oc":"#221f1f","x":6.145,"y":30.75,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":32.25,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":33.75,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":35.25,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":36.75,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":38.25,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":39.75,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":41.25,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":42.75,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":6.145,"y":44.25,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":5.881,"y":47.231,"w":0.75,"l":93.224},{"oc":"#221f1f","x":6.145,"y":48.687,"w":1.5,"l":92.898}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.981},{"oc":"#221f1f","x":21.038,"y":4.208,"w":1.5,"l":0.924},{"oc":"#221f1f","x":21.038,"y":4.484,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":2.297},{"oc":"#221f1f","x":73.013,"y":5.969,"w":0.75,"l":1.556},{"oc":"#221f1f","x":48.263,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":13.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":38.363,"y":17.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":50.737,"y":17.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.488,"y":18.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.676,"y":18.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.825,"y":17.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.912,"y":17.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":38.363,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.55,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.912,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.363,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.363,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":44.55,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.112,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.737,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":66.825,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.912,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.287,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.363,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.363,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":44.55,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.112,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.737,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":66.825,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.912,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.287,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.363,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.363,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":44.55,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.112,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.737,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":66.825,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.912,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.287,"y":24.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.363,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":38.363,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":44.55,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.112,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.737,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":66.825,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.912,"y":26.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.287,"y":26.984,"w":0.75,"l":2.281}],"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":16.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":29.25,"w":6.188,"h":0.75,"clr":-1},{"x":0,"y":49.5,"w":0.686,"h":0.249,"clr":0}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.796,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.415,"y":2.796,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8082","S":-1,"TS":[0,26.9998,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.018,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202011)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.568,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.018,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.913,"y":2.1,"w":23.400000000000006,"clr":-1,"A":"left","R":[{"T":"Notice%20of%20Inconsistent%20Treatment%20or%20Administrative%20%20","S":-1,"TS":[2,16.9999,0,0]}]},{"oc":"#221f1f","x":37.739,"y":2.975,"w":12.440000000000007,"clr":-1,"A":"left","R":[{"T":"Adjustment%20Request%20(AAR)%20","S":-1,"TS":[2,16.9999,0,0]}]},{"oc":"#221f1f","x":21.749,"y":3.7190000000000003,"w":46.51499999999998,"clr":-1,"A":"left","R":[{"T":"(For%20use%20by%20partners%2C%20S%20corporation%20shareholders%2C%20estate%20and%20domestic%20trust%20beneficiaries%2C%20foreign%20","S":-1,"TS":[0,10.6999,0,0]}]},{"oc":"#221f1f","x":28.478,"y":4.296,"w":36.345,"clr":-1,"A":"left","R":[{"T":"trust%20owners%20and%20beneficiaries%2C%20REMIC%20residual%20interest%20holders%2C%20and%20TMPs.)%20","S":-1,"TS":[0,10.6999,0,0]}]},{"oc":"#221f1f","x":43.117,"y":4.951,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.435,"y":5.044,"w":12.741000000000001,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":85.741,"y":2.347,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0790%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":85.619,"y":3.862,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":85.619,"y":4.521,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":93.931,"y":4.521,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"84%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.75,"w":11.483000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":73.794,"y":5.75,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":-1,"TS":[0,9.9999,0,0]}]},{"x":6.836,"y":7.321,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":14.532,"y":7.321,"w":9.792,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":11.151000000000002,"clr":-1,"A":"left","R":[{"T":"Check%20boxes%20that%20apply%3A%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":30.688,"y":8.089,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":35.225,"y":8.089,"w":14.577000000000002,"clr":-1,"A":"left","R":[{"T":"Notice%20of%20inconsistent%20treatment%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":61.625,"y":8.089,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":66.162,"y":8.089,"w":18.319000000000003,"clr":-1,"A":"left","R":[{"T":"Administrative%20adjustment%20request%20(AAR)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.563,"y":9.591,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11.8999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":9.589,"w":16.189,"clr":-1,"A":"left","R":[{"T":"Identify%20type%20of%20pass-through%20entity%3A%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.058,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":15.425,"y":11.089,"w":5.408000000000001,"clr":-1,"A":"left","R":[{"T":"Partnership%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.975,"y":11.057,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":31.513,"y":11.089,"w":6.352,"clr":-1,"A":"left","R":[{"T":"S%20corporation%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.3,"y":11.057,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":48.837,"y":11.089,"w":3.093,"clr":-1,"A":"left","R":[{"T":"Estate%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":56.675,"y":11.057,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":61.212,"y":11.089,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Trust%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":67.813,"y":11.057,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":72.35,"y":11.089,"w":3.4259999999999997,"clr":-1,"A":"left","R":[{"T":"REMIC%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":11.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.475,"y":11.839,"w":24.32100000000001,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number%20of%20pass-through%20entity%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":13.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.475,"y":13.339,"w":23.76500000000001,"clr":-1,"A":"left","R":[{"T":"Name%2C%20address%2C%20and%20ZIP%20code%20of%20pass-through%20entity%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":48.82,"y":11.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":51.175,"y":11.839,"w":33.003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20Center%20where%20pass-through%20entity%20filed%20its%20return%20","S":-1,"TS":[0,11.2799,0,0]}]},{"oc":"#221f1f","x":48.82,"y":13.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":51.174,"y":13.339,"w":14.224,"clr":-1,"A":"left","R":[{"T":"Tax%20year%20of%20pass-through%20entity%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":67.933,"y":14.089,"w":1.222,"clr":-1,"A":"left","R":[{"T":"%2F%20%2F%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":80.738,"y":14.089,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"to%20%2F%20%2F%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":48.82,"y":14.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":51.175,"y":14.839,"w":6.222000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20tax%20year%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":67.934,"y":15.588999999999999,"w":1.222,"clr":-1,"A":"left","R":[{"T":"%2F%20%2F%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":80.739,"y":15.588999999999999,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"to%20%2F%20%2F%20","S":-1,"TS":[0,11.9999,0,0]}]},{"x":6.583,"y":16.321,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":14.532,"y":16.321,"w":30.474,"clr":-1,"A":"left","R":[{"T":"Inconsistent%20or%20Administrative%20Adjustment%20Request%20(AAR)%20Items%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":13.113,"y":17.572,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":15.185,"y":17.572,"w":13.372000000000002,"clr":-1,"A":"left","R":[{"T":"Description%20of%20inconsistent%20or%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.613,"y":18.097,"w":20.913000000000004,"clr":-1,"A":"left","R":[{"T":"administrative%20adjustment%20request%20(AAR)%20items%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":17.48,"y":18.622,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":38.843,"y":16.871,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":-1,"TS":[0,9.2,0,0]}]},{"oc":"#221f1f","x":40.718,"y":16.871,"w":8.761000000000001,"clr":-1,"A":"left","R":[{"T":"Inconsistency%20is%20in%2C%20","S":-1,"TS":[0,9.2,0,0]}]},{"oc":"#221f1f","x":39.772,"y":17.336,"w":9.055000000000001,"clr":-1,"A":"left","R":[{"T":"or%20AAR%20is%20to%20correct%20","S":-1,"TS":[0,9.2,0,0]}]},{"oc":"#221f1f","x":38.479,"y":17.801,"w":11.206000000000003,"clr":-1,"A":"left","R":[{"T":"(check%20boxes%20that%20apply)%20","S":-1,"TS":[0,9.2,0,0]}]},{"oc":"#221f1f","x":38.667,"y":18.602,"w":5.206000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20%20","S":-1,"TS":[0,9.2,0,0]}]},{"oc":"#221f1f","x":40.117,"y":19.067,"w":2.205,"clr":-1,"A":"left","R":[{"T":"item%20","S":-1,"TS":[0,9.2,0,0]}]},{"oc":"#221f1f","x":44.826,"y":18.595,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"Treatment%20%20","S":-1,"TS":[0,9.4,0,0]}]},{"oc":"#221f1f","x":45.641,"y":19.075,"w":3.353,"clr":-1,"A":"left","R":[{"T":"of%20item%20","S":-1,"TS":[0,9.4,0,0]}]},{"oc":"#221f1f","x":52.429,"y":16.906,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":54.293,"y":16.906,"w":9.725000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20as%20shown%20on%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":51.265,"y":17.379,"w":13.597000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20K-1%2C%20Schedule%20Q%2C%20or%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":51.927,"y":17.851,"w":12.095000000000002,"clr":-1,"A":"left","R":[{"T":"similar%20statement%2C%20a%20foreign","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":51.084,"y":18.324,"w":13.930000000000003,"clr":-1,"A":"left","R":[{"T":"trust%20statement%2C%20or%20your%20return%2C%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":52.841,"y":18.796,"w":8.296000000000001,"clr":-1,"A":"left","R":[{"T":"whichever%20applies%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":62.125,"y":18.796,"w":2.111,"clr":-1,"A":"left","R":[{"T":"(see%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":55.527,"y":19.269,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":67.162,"y":18.091,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":-1,"TS":[0,9.5999,0,0]}]},{"oc":"#221f1f","x":69.157,"y":18.091,"w":11.688000000000002,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20are%20reporting%20","S":-1,"TS":[0,9.5999,0,0]}]},{"oc":"#221f1f","x":84.904,"y":17.846,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":-1,"TS":[0,9.4999,0,0]}]},{"oc":"#221f1f","x":86.827,"y":17.846,"w":8.666,"clr":-1,"A":"left","R":[{"T":"Difference%20between","S":-1,"TS":[0,9.4999,0,0]}]},{"oc":"#221f1f","x":88.244,"y":18.334,"w":4.686,"clr":-1,"A":"left","R":[{"T":"(c)%20and%20(d)%20","S":-1,"TS":[0,9.4999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":21.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":23.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":26.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.9999,0,0]}]},{"x":6.329,"y":29.071,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":14.532,"y":29.071,"w":45.526999999999965,"clr":-1,"A":"left","R":[{"T":"Explanations%E2%80%94Enter%20the%20Part%20II%20item%20number%20before%20each%20explanation.%20If%20more%20space%20is%20needed%2C%20%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":14.532,"y":29.821,"w":19.334000000000003,"clr":-1,"A":"left","R":[{"T":"continue%20your%20explanations%20on%20the%20back.%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":48.553,"w":30.702000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.%20","S":-1,"TS":[0,10.4999,0,0]}]},{"oc":"#221f1f","x":59.576,"y":48.562,"w":7.799000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2049975G%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":82.792,"y":48.508,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":86.269,"y":48.508,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8082%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":90.57,"y":48.508,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2011)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"x":6.021,"y":31.393,"w":27.240000000000002,"clr":0,"A":"left","R":[{"T":"Line%208","S":-1,"TS":[0,13,0,0]}]},{"x":5.892,"y":35.94,"w":27.240000000000002,"clr":0,"A":"left","R":[{"T":"Line%209","S":-1,"TS":[0,13,0,0]}]},{"x":5.763,"y":40.393,"w":32.800000000000004,"clr":0,"A":"left","R":[{"T":"Line%2010","S":-1,"TS":[0,13,0,0]}]},{"x":5.763,"y":44.752,"w":32.800000000000004,"clr":0,"A":"left","R":[{"T":"Line%2011","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEA","EN":0},"TI":4432,"AM":1024,"x":19.793,"y":6.109,"w":52.951,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4433,"AM":1024,"x":6.084,"y":6.709,"w":66.913,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4434,"AM":1024,"x":73.521,"y":6.613,"w":25.549,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4442,"AM":0,"x":7.811,"y":12.748,"w":37.464,"h":0.833,"TU":"Line 3. Employer identification number of pass-through entity. APPLIED-FOR or FOREIGN is also acceptable."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L5NAME","EN":0},"TI":4443,"AM":0,"x":6.332,"y":14.177,"w":41.683,"h":0.833,"TU":"Line 4. Name of pass-through entity."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L5ADDR","EN":0},"TI":4444,"AM":0,"x":6.555,"y":14.937,"w":41.608,"h":0.833,"TU":"Line 5. Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L5CITY","EN":0},"TI":4445,"AM":0,"x":6.362,"y":15.733,"w":27.169,"h":0.833,"TU":"Line 5. City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L5ST","EN":0},"TI":4446,"AM":0,"x":34.266,"y":15.739,"w":4.516,"h":0.888,"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":"L5ZIP","EN":0},"TI":4447,"AM":0,"x":40.278,"y":15.75,"w":7.7,"h":0.833,"TU":"Line 5. Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4448,"AM":0,"x":48.643,"y":12.725,"w":50.357,"h":0.833,"TU":"Line 5. Internal Revenue Service Center where pass-through entity filed its return."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L8FROM","EN":0},"TI":4449,"AM":0,"x":63.064,"y":14.249,"w":16.953,"h":0.833,"TU":"Line 6. Tax year of pass-through entity from","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L8TO","EN":0},"TI":4450,"AM":0,"x":83.265,"y":14.241,"w":15.849,"h":0.833,"TU":"to","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L9FROM","EN":0},"TI":4451,"AM":0,"x":62.834,"y":15.664,"w":17.21,"h":0.833,"TU":"Line 7. Your tax year from","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L9TO","EN":0},"TI":4452,"AM":0,"x":83.274,"y":15.655,"w":15.924,"h":0.833,"TU":"to","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A25_DESC_1_","EN":0},"TI":4453,"AM":0,"x":9.656,"y":21.55,"w":28.529,"h":0.923,"TU":"Line 8(a) Description of inconsistent or administrative adjustment request (AAR) items (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMOUNT_1_","EN":0},"TI":4456,"AM":0,"x":51.025,"y":21.523,"w":11.941,"h":0.95,"TU":"Line 8(c). Amount as shown on Schedule K-1, Schedule Q, or similar statement, a foreign trust statement, or your retur, whichever applies (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMTREP_1_","EN":0},"TI":4457,"AM":0,"x":67.314,"y":21.496,"w":11.748,"h":0.95,"TU":"Line 8(d). Amount you are reporting. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_DIFFAMT_1_","EN":0},"TI":4458,"AM":1024,"x":83.134,"y":21.551,"w":12.005,"h":0.95,"TU":"Line 8(e). Difference between (c) and (d)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A25_DESC_2_","EN":0},"TI":4459,"AM":0,"x":9.655,"y":23.786,"w":28.529,"h":0.923,"TU":"Line 9(a) Description of inconsistent or administrative adjustment request (AAR) items (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMOUNT_2_","EN":0},"TI":4462,"AM":0,"x":51.153,"y":23.782,"w":11.748,"h":0.95,"TU":"Line 9(c). Amount as shown on Schedule K-1, Schedule Q, or similar statement, a foreign trust statement, or your return, whichever applies (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMTREP_2_","EN":0},"TI":4463,"AM":0,"x":67.121,"y":23.755,"w":11.876,"h":0.95,"TU":"Line 9(d). Amount you are reporting. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_DIFFAMT_2_","EN":0},"TI":4464,"AM":1024,"x":83.197,"y":23.81,"w":11.876,"h":0.951,"TU":"Line 9(e). Difference between (c) and (d)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A25_DESC_3_","EN":0},"TI":4465,"AM":0,"x":9.571,"y":26.026,"w":28.529,"h":0.923,"TU":"Line 10(a) Description of inconsistent or administrative adjustment request (AAR) items (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMOUNT_3_","EN":0},"TI":4468,"AM":0,"x":51.197,"y":26.023,"w":11.684,"h":0.95,"TU":"Line 10(c). Amount as shown on Schedule K-1, Schedule Q, or similar statement, a foreign trust statement, or your return, whichever applies (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMTREP_3_","EN":0},"TI":4469,"AM":0,"x":67.357,"y":25.972,"w":11.62,"h":0.95,"TU":"Line 10(d). Amount you are reporting. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_DIFFAMT_3_","EN":0},"TI":4470,"AM":1024,"x":83.049,"y":26.027,"w":12.005,"h":0.95,"TU":"Line 10(e). Difference between (c) and (d)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A25_DESC_4_","EN":0},"TI":4471,"AM":0,"x":9.551,"y":28.232,"w":28.529,"h":0.923,"TU":"Line 11(a) Description of inconsistent or administrative adjustment request (AAR) items (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMOUNT_4_","EN":0},"TI":4474,"AM":0,"x":51.112,"y":28.205,"w":11.748,"h":0.951,"TU":"Line 11(c). Amount as shown on Schedule K-1, Schedule Q, or similar statement, a foreign trust statement, or your return, whichever applies (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_AMTREP_4_","EN":0},"TI":4475,"AM":0,"x":67.593,"y":28.178,"w":11.428,"h":0.95,"TU":"Line 11(d). Amount you are reporting. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A25_DIFFAMT_4_","EN":0},"TI":4476,"AM":1024,"x":83.413,"y":28.233,"w":11.62,"h":0.95,"TU":"Line 11(e). Difference between (c) and (d)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PATXT1_1_","EN":0},"TI":4477,"AM":0,"x":12.285,"y":30.928,"w":86.627,"h":1.364,"TU":"Line 8 Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PBTXT1_1_","EN":0},"TI":4478,"AM":0,"x":12.313,"y":32.396,"w":86.627,"h":1.364,"TU":"Line 8 Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PCTXT1_1_","EN":0},"TI":4479,"AM":0,"x":12.313,"y":33.867,"w":86.627,"h":1.364,"TU":"Line 8 Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PATXT1_2_","EN":0},"TI":4480,"AM":0,"x":12.299,"y":35.392,"w":86.627,"h":1.364,"TU":"Line 9 Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PBTXT1_2_","EN":0},"TI":4481,"AM":0,"x":12.327,"y":36.837,"w":86.627,"h":1.364,"TU":"Line 9 Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PCTXT1_2_","EN":0},"TI":4482,"AM":0,"x":12.327,"y":38.331,"w":86.627,"h":1.364,"TU":"Line 9 Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PATXT1_3_","EN":0},"TI":4483,"AM":0,"x":12.354,"y":39.877,"w":86.627,"h":1.364,"TU":"Line 10 Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PBTXT1_3_","EN":0},"TI":4484,"AM":0,"x":12.382,"y":41.345,"w":86.627,"h":1.364,"TU":"Line 10 Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PCTXT1_3_","EN":0},"TI":4485,"AM":0,"x":12.382,"y":42.815,"w":86.627,"h":1.364,"TU":"Line 10 Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PATXT1_4_","EN":0},"TI":4486,"AM":0,"x":12.259,"y":44.307,"w":86.627,"h":1.364,"TU":"Line 11 Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PBTXT1_4_","EN":0},"TI":4487,"AM":0,"x":12.287,"y":45.775,"w":86.627,"h":1.364,"TU":"Line 11. Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A28_PCTXT1_4_","EN":0},"TI":4488,"AM":0,"x":12.287,"y":47.246,"w":86.627,"h":1.364,"TU":"Line 11. Explanation continued."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1A","EN":0},"TI":4435,"AM":0,"x":33.37,"y":8.208,"w":1.575,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1B","EN":0},"TI":4436,"AM":0,"x":64.24,"y":8.181,"w":1.687,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3A","EN":0},"TI":4437,"AM":0,"x":13.614,"y":11.237,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3C","EN":0},"TI":4438,"AM":0,"x":29.635,"y":11.237,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3D","EN":0},"TI":4439,"AM":0,"x":46.91,"y":11.257,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3E","EN":0},"TI":4440,"AM":0,"x":59.467,"y":11.277,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3F","EN":0},"TI":4441,"AM":0,"x":70.505,"y":11.269,"w":1.372,"h":0.833,"checked":false}],"id":{"Id":"A20RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_ITEMAMT_1_","EN":0},"TI":4454,"AM":0,"x":39.744,"y":21.328,"w":3.094,"h":1.043}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_TREATAMT_1_","EN":0},"TI":4455,"AM":0,"x":45.694,"y":21.31,"w":3.094,"h":1.043}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_ITEMAMT_2_","EN":0},"TI":4460,"AM":0,"x":39.615,"y":23.564,"w":3.094,"h":1.043}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_TREATAMT_2_","EN":0},"TI":4461,"AM":0,"x":45.63,"y":23.569,"w":3.094,"h":1.043}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_ITEMAMT_3_","EN":0},"TI":4466,"AM":0,"x":39.659,"y":25.804,"w":3.094,"h":1.043}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_TREATAMT_3_","EN":0},"TI":4467,"AM":0,"x":45.609,"y":25.786,"w":3.094,"h":1.043}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_ITEMAMT_4_","EN":0},"TI":4472,"AM":0,"x":39.575,"y":28.01,"w":3.094,"h":1.043}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A25_TREATAMT_4_","EN":0},"TI":4473,"AM":0,"x":45.589,"y":27.992,"w":3.094,"h":1.043}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8275.content.txt b/test/data/fd/form/F8275.content.txt new file mode 100755 index 00000000..16f0e361 --- /dev/null +++ b/test/data/fd/form/F8275.content.txt @@ -0,0 +1,95 @@ +Form +8275 +(Rev. August 2013) +Department of the Treasury +Internal Revenue Service +Disclosure Statement +Do not use this form to disclose items or positions that are contrary to Treasury +regulations. Instead, use Form 8275-R, Regulation Disclosure Statement. +a + +Information about Form 8275 and its separate instructions is at +www.irs.gov/form8275 +. +a + +Attach to your tax return. +OMB No. 1545-0889 +Attachment +Sequence No. +92 +Name(s) shown on return +Identifying number shown on return +If Form 8275 relates to an information return for a foreign entity (for example, Form 5471), enter: +Name of foreign entity +a + +Employer identification number, if any +a + +Reference ID number (see instructions) +a + +Part I +General Information +(see instructions) +(a) +Rev. Rul., Rev. Proc., etc. +(b) +Item or Group +of Items +(c) +Detailed Description +of Items +(d) +Form or +Schedule +(e) +Line +No. +(f) +Amount +1 +2 +3 +4 +5 +6 +Part II +Detailed Explanation +(see instructions) +1 +2 +3 +4 +5 +6 +Part III +Information About Pass-Through Entity. +To be completed by partners, shareholders, beneficiaries, or + +residual interest holders. +Complete this part only if you are making adequate disclosure for a pass-through item. +Note: +A pass-through entity is a partnership, S corporation, estate, trust, regulated investment company (RIC), real estate investmen +t + +trust (REIT), or real estate mortgage investment conduit (REMIC). +1 +Name, address, and ZIP code of pass-through entity +2 +Identifying number of pass-through entity +3 +Tax year of pass-through entity +/ / +to +/ / +4 +Internal Revenue Service Center where the pass-through entity filed +its return +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 61935M +Form +8275 + (Rev. 8-2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8275.fields.json b/test/data/fd/form/F8275.fields.json new file mode 100755 index 00000000..71962e34 --- /dev/null +++ b/test/data/fd/form/F8275.fields.json @@ -0,0 +1 @@ +[{"id":"NAMEA","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"FORENT","type":"alpha","calc":false,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"REFER","type":"alpha","calc":false,"value":""},{"id":"A1_L1C1_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L1B_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L1C2_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L1D_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L1E_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L1F_1_","type":"number","calc":false,"value":""},{"id":"A1_L1C1_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L1B_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L1C2_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L1D_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L1E_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L1F_2_","type":"number","calc":false,"value":""},{"id":"A1_L1C1_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L1A_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L1B_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L1C2_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L1D_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L1E_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L1F_3_","type":"number","calc":false,"value":""},{"id":"A1_L1C1_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L1A_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L1B_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L1C2_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L1D_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L1E_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L1F_4_","type":"number","calc":false,"value":""},{"id":"A1_L1C1_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L1A_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L1B_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L1C2_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L1D_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L1E_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L1F_5_","type":"number","calc":false,"value":""},{"id":"A1_L1C1_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L1A_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L1B_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L1C2_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L1D_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L1E_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L1F_6_","type":"number","calc":false,"value":""},{"id":"TXT1","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT1_1_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT2_1_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT3_1_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT1_2_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT2_2_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT3_2_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT1_3_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT2_3_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT3_3_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT1_4_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT2_4_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT3_4_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT1_5_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT2_5_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT3_5_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT1_6_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT2_6_","type":"alpha","calc":false,"value":""},{"id":"A2_L1TXT3_6_","type":"alpha","calc":false,"value":""},{"id":"L2IDNO","type":"mask","calc":false,"value":""},{"id":"L1NAME","type":"alpha","calc":false,"value":""},{"id":"L1ADDR1","type":"alpha","calc":false,"value":""},{"id":"L3FROM","type":"date","calc":false,"value":""},{"id":"L3TO","type":"date","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"L4","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8275.json b/test/data/fd/form/F8275.json new file mode 100755 index 00000000..2caedc9a --- /dev/null +++ b/test/data/fd/form/F8275.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8275 (Rev. August 2013)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.995,"y":6,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.064,"y":3.75,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":7.5,"w":1.2000000000000002,"l":70.624},{"oc":"#221f1f","x":76.53,"y":7.5,"w":1.2000000000000002,"l":22.513},{"oc":"#221f1f","x":23.47,"y":9,"w":0.75,"l":75.574},{"oc":"#221f1f","x":34.607,"y":9.75,"w":0.75,"l":64.436},{"oc":"#221f1f","x":6.145,"y":10.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":13.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.945,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":37.082,"y":13.5,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.207,"y":13.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.87,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":15,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.945,"y":15,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.082,"y":14.25,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.082,"y":15,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.207,"y":15,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.87,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":15,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":16.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.945,"y":16.5,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.082,"y":15.75,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.082,"y":16.5,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.207,"y":16.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.87,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":16.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":18,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.945,"y":18,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.082,"y":17.25,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.082,"y":18,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.207,"y":18,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.87,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.945,"y":19.5,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.082,"y":18.75,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.082,"y":19.5,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.207,"y":19.5,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.87,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":21.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.945,"y":21.001,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.082,"y":20.25,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.082,"y":21,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.207,"y":21.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.87,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":22.501,"w":1.2000000000000002,"l":19.886},{"oc":"#221f1f","x":25.945,"y":22.501,"w":1.2000000000000002,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.082,"y":21.75,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.082,"y":22.501,"w":1.2000000000000002,"l":37.211},{"oc":"#221f1f","x":74.207,"y":22.501,"w":1.2000000000000002,"l":8.748},{"oc":"#221f1f","x":82.87,"y":22.501,"w":1.2000000000000002,"l":3.798},{"oc":"#221f1f","x":86.582,"y":22.501,"w":1.2000000000000002,"l":12.461},{"oc":"#221f1f","x":6.145,"y":22.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":23.25,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":9.857,"y":24,"w":0.75,"l":89.186},{"dsh":1,"oc":"#221f1f","x":9.857,"y":24.75,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.145,"y":25.5,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":9.857,"y":26.25,"w":0.75,"l":89.186},{"dsh":1,"oc":"#221f1f","x":9.857,"y":27,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.145,"y":27.75,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":9.857,"y":28.5,"w":0.75,"l":89.186},{"dsh":1,"oc":"#221f1f","x":9.857,"y":29.25,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.145,"y":30,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":9.857,"y":30.75,"w":0.75,"l":89.186},{"dsh":1,"oc":"#221f1f","x":9.857,"y":31.5,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.145,"y":32.25,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":9.857,"y":33,"w":0.75,"l":89.186},{"dsh":1,"oc":"#221f1f","x":9.857,"y":33.75,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.145,"y":34.5,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":9.857,"y":35.25,"w":0.75,"l":89.186},{"dsh":1,"oc":"#221f1f","x":9.857,"y":36,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.145,"y":36.75,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.145,"y":36.75,"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":38.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":41.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":50.695,"y":42.75,"w":0.75,"l":48.349},{"oc":"#221f1f","x":48.22,"y":42.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":48.22,"y":44.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":50.695,"y":44.25,"w":0.75,"l":48.349},{"oc":"#221f1f","x":6.145,"y":46.5,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.22,"y":46.5,"w":1.5,"l":34.736},{"oc":"#221f1f","x":82.87,"y":46.5,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.643},{"oc":"#221f1f","x":21.038,"y":3.873,"w":1.5,"l":1.237},{"oc":"#221f1f","x":21.038,"y":5.06,"w":1.5,"l":0.971},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":2.297},{"oc":"#221f1f","x":76.573,"y":5.969,"w":0.75,"l":1.556},{"oc":"#221f1f","x":25.988,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":37.125,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.25,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.625,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":25.988,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.125,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.988,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.125,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.988,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.125,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.988,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.125,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.988,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.125,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.988,"y":20.985,"w":0.75,"l":1.541},{"oc":"#221f1f","x":37.125,"y":20.985,"w":0.75,"l":1.541},{"oc":"#221f1f","x":74.25,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":21.735,"w":0.75,"l":0.791},{"oc":"#221f1f","x":82.913,"y":20.985,"w":0.75,"l":1.541},{"oc":"#221f1f","x":86.625,"y":20.985,"w":0.75,"l":1.541},{"oc":"#221f1f","x":48.263,"y":41.235,"w":0.75,"l":5.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":10.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":22.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":36.75,"w":6.188,"h":0.742,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.627,"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.627,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8275","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.8390000000000004,"w":8.725000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%20August%202013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.645,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.095,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.674,"y":2.185,"w":9.999999999999998,"clr":-1,"A":"left","R":[{"T":"Disclosure%20Statement%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":26.247,"y":2.965,"w":38.23699999999999,"clr":-1,"A":"left","R":[{"T":"Do%20not%20use%20this%20form%20to%20disclose%20items%20or%20positions%20that%20are%20contrary%20to%20Treasury%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.526,"y":3.5650000000000004,"w":34.644000000000005,"clr":-1,"A":"left","R":[{"T":"regulations.%20Instead%2C%20use%20Form%208275-R%2C%20Regulation%20Disclosure%20Statement.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.319,"y":4.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.637,"y":4.357,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208275%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.213,"y":4.357,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8275","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.987,"y":4.357,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.471,"y":5.013,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.789,"y":5.107,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":2.347,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0889%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.619,"y":3.862,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.619,"y":4.521,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.931,"y":4.521,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"92%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.75,"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":77.354,"y":5.75,"w":17.295,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20shown%20on%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.339,"w":42.65699999999996,"clr":-1,"A":"left","R":[{"T":"If%20Form%208275%20relates%20to%20an%20information%20return%20for%20a%20foreign%20entity%20(for%20example%2C%20Form%205471)%2C%20enter%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.027,"w":10.168,"clr":-1,"A":"left","R":[{"T":"Name%20of%20foreign%20entity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#201e1f","x":21.666,"y":7.933,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.777,"w":17.134000000000004,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number%2C%20if%20any%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#201e1f","x":32.441,"y":8.683,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":9.589,"w":17.614000000000004,"clr":-1,"A":"left","R":[{"T":"Reference%20ID%20number%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#201e1f","x":33.184,"y":9.495,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":6.836,"y":10.321,"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":10.321,"w":9.792,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.361,"y":10.321,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.136,"y":11.46,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.616,"y":11.985,"w":12.282000000000004,"clr":-1,"A":"left","R":[{"T":"Rev.%20Rul.%2C%20Rev.%20Proc.%2C%20etc.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.583,"y":11.198,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.308,"y":11.723,"w":6.9239999999999995,"clr":-1,"A":"left","R":[{"T":"Item%20or%20Group%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.968,"y":12.248,"w":4.164,"clr":-1,"A":"left","R":[{"T":"of%20Items%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.736,"y":11.198,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.592,"y":11.723,"w":9.996,"clr":-1,"A":"left","R":[{"T":"Detailed%20Description%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.1,"y":12.248,"w":4.164,"clr":-1,"A":"left","R":[{"T":"of%20Items%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.608,"y":11.198,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.059,"y":11.723,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Form%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.668,"y":12.248,"w":4.704000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.817,"y":11.198,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.305,"y":11.723,"w":2.574,"clr":-1,"A":"left","R":[{"T":"Line%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.538,"y":12.248,"w":2.186,"clr":-1,"A":"left","R":[{"T":"No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.006,"y":11.46,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.312,"y":11.985,"w":4.018,"clr":-1,"A":"left","R":[{"T":"Amount%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":13.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":14.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":16.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":17.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":19.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":20.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":6.582,"y":22.321,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":22.321,"w":10.107000000000001,"clr":-1,"A":"left","R":[{"T":"Detailed%20Explanation%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.903,"y":22.321,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":23.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":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%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":"3%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":"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":7.552,"y":34.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":6.329,"y":36.564,"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":36.634,"w":19.202,"clr":-1,"A":"left","R":[{"T":"Information%20About%20Pass-Through%20Entity.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":47.535,"y":36.634,"w":27.208,"clr":-1,"A":"left","R":[{"T":"To%20be%20completed%20by%20partners%2C%20shareholders%2C%20beneficiaries%2C%20or%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":37.259,"w":11.242000000000003,"clr":-1,"A":"left","R":[{"T":"residual%20interest%20holders.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":38.089,"w":41.62099999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20are%20making%20adequate%20disclosure%20for%20a%20pass-through%20item.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":39.532,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.751,"y":39.532,"w":55.78599999999995,"clr":-1,"A":"left","R":[{"T":"A%20pass-through%20entity%20is%20a%20partnership%2C%20S%20corporation%2C%20estate%2C%20trust%2C%20regulated%20investment%20company%20(RIC)%2C%20real%20estate%20investmen","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.045,"y":39.532,"w":0.5932,"clr":-1,"A":"left","R":[{"T":"t%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.75,"y":40.219,"w":29.075000000000014,"clr":-1,"A":"left","R":[{"T":"trust%20(REIT)%2C%20or%20real%20estate%20mortgage%20investment%20conduit%20(REMIC).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#201e1f","x":7.552,"y":41.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.444,"y":41.089,"w":23.76500000000001,"clr":-1,"A":"left","R":[{"T":"Name%2C%20address%2C%20and%20ZIP%20code%20of%20pass-through%20entity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.627,"y":41.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.519,"y":41.089,"w":18.746000000000002,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20of%20pass-through%20entity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.628,"y":42.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.519,"y":42.589,"w":14.224,"clr":-1,"A":"left","R":[{"T":"Tax%20year%20of%20pass-through%20entity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.004,"y":43.339,"w":1.02,"clr":-1,"A":"left","R":[{"T":"%2F%20%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.932,"y":43.339,"w":1.167,"clr":-1,"A":"left","R":[{"T":"to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.108,"y":43.339,"w":1.298,"clr":-1,"A":"left","R":[{"T":"%2F%20%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.628,"y":44.152,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.519,"y":44.152,"w":30.744000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20Center%20where%20the%20pass-through%20entity%20filed%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.519,"y":44.839,"w":4.223000000000001,"clr":-1,"A":"left","R":[{"T":"its%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":46.357,"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":60.746,"y":46.375,"w":7.911000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2061935M%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.462,"y":46.321,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.939,"y":46.321,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8275%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.239,"y":46.321,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%208-2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEA","EN":0},"TI":4489,"AM":1024,"x":20.079,"y":6.094,"w":46.944,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4490,"AM":1024,"x":6.25,"y":6.809,"w":66.296,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4491,"AM":1024,"x":76.725,"y":6.642,"w":22.254,"h":0.835,"TU":"Identifying number shown on return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FORENT","EN":0},"TI":4492,"AM":0,"x":23.471,"y":8.272,"w":40.852,"h":0.833,"TU":"Name of foreign entity."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":4493,"AM":0,"x":34.609,"y":9.022,"w":14.482,"h":0.833,"TU":"Employer identification number, if any.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REFER","EN":0},"TI":4494,"AM":0,"x":34.963,"y":9.883,"w":32.594,"h":0.833,"TU":"Reference ID number (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C1_1_","EN":0},"TI":4495,"AM":0,"x":37.153,"y":13.538,"w":37.014,"h":0.833,"TU":"Line 1(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1A_1_","EN":0},"TI":4496,"AM":0,"x":8.984,"y":14.211,"w":16.616,"h":0.833,"TU":"Line 1(a). Rev. Rul., Rev. Proc., etc."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1B_1_","EN":0},"TI":4497,"AM":0,"x":25.948,"y":14.248,"w":10.937,"h":0.833,"TU":"Line 1(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C2_1_","EN":0},"TI":4498,"AM":0,"x":37.232,"y":14.257,"w":36.864,"h":0.833,"TU":"Line 1(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1D_1_","EN":0},"TI":4499,"AM":0,"x":74.436,"y":14.221,"w":8.333,"h":0.833,"TU":"Line 1(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1E_1_","EN":0},"TI":4500,"AM":0,"x":83.098,"y":14.248,"w":3.437,"h":0.833,"TU":"Line 1(e). Line Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L1F_1_","EN":0},"TI":4501,"AM":0,"x":86.811,"y":14.221,"w":12.128,"h":0.833,"TU":"Line 1(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C1_2_","EN":0},"TI":4502,"AM":0,"x":37.137,"y":15.012,"w":36.939,"h":0.833,"TU":"Line 2(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1A_2_","EN":0},"TI":4503,"AM":0,"x":9.083,"y":15.715,"w":16.487,"h":0.833,"TU":"Line 2(a). Rev. Rul., Rev. Proc., etc."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1B_2_","EN":0},"TI":4504,"AM":0,"x":26.126,"y":15.694,"w":10.744,"h":0.833,"TU":"Line 2(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C2_2_","EN":0},"TI":4505,"AM":0,"x":37.191,"y":15.767,"w":36.939,"h":0.833,"TU":"Line 2(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1D_2_","EN":0},"TI":4506,"AM":0,"x":74.361,"y":15.748,"w":8.462,"h":0.833,"TU":"Line 2(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1E_2_","EN":0},"TI":4507,"AM":0,"x":83.098,"y":15.748,"w":3.437,"h":0.833,"TU":"Line 2(e). Line Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L1F_2_","EN":0},"TI":4508,"AM":0,"x":86.953,"y":15.667,"w":11.871,"h":0.833,"TU":"Line 2(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C1_3_","EN":0},"TI":4509,"AM":0,"x":37.171,"y":16.549,"w":36.939,"h":0.833,"TU":"Line 3(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1A_3_","EN":0},"TI":4510,"AM":0,"x":8.988,"y":17.205,"w":16.551,"h":0.833,"TU":"Line 3(a). Rev. Rul., Rev. Proc., etc."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1B_3_","EN":0},"TI":4511,"AM":0,"x":26.031,"y":17.239,"w":10.809,"h":0.833,"TU":"Line 3(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C2_3_","EN":0},"TI":4512,"AM":0,"x":37.301,"y":17.332,"w":36.939,"h":0.833,"TU":"Line 3(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1D_3_","EN":0},"TI":4513,"AM":0,"x":74.425,"y":17.221,"w":8.205,"h":0.833,"TU":"Line 3(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1E_3_","EN":0},"TI":4514,"AM":0,"x":83.098,"y":17.248,"w":3.587,"h":0.833,"TU":"Line 3(e). Line Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L1F_3_","EN":0},"TI":4515,"AM":0,"x":86.944,"y":17.239,"w":11.935,"h":0.833,"TU":"Line 3(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C1_4_","EN":0},"TI":4516,"AM":0,"x":37.281,"y":18.059,"w":37.089,"h":0.833,"TU":"Line 4(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1A_4_","EN":0},"TI":4517,"AM":0,"x":8.968,"y":18.75,"w":16.616,"h":0.833,"TU":"Line 4(a). Rev. Rul., Rev. Proc., etc."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1B_4_","EN":0},"TI":4518,"AM":0,"x":26.085,"y":18.756,"w":10.808,"h":0.833,"TU":"Line 4(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C2_4_","EN":0},"TI":4519,"AM":0,"x":37.261,"y":18.787,"w":36.939,"h":0.833,"TU":"Line 4(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1D_4_","EN":0},"TI":4520,"AM":0,"x":74.436,"y":18.748,"w":8.216,"h":0.833,"TU":"Line 4(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1E_4_","EN":0},"TI":4521,"AM":0,"x":83.098,"y":18.775,"w":3.437,"h":0.833,"TU":"Line 4(e). Line Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L1F_4_","EN":0},"TI":4522,"AM":0,"x":86.924,"y":18.701,"w":11.935,"h":0.833,"TU":"Line 4(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C1_5_","EN":0},"TI":4523,"AM":0,"x":37.315,"y":19.569,"w":36.939,"h":0.833,"TU":"Line 5(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1A_5_","EN":0},"TI":4524,"AM":0,"x":9.023,"y":20.213,"w":16.616,"h":0.833,"TU":"Line 5(a). Rev. Rul., Rev. Proc., etc."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1B_5_","EN":0},"TI":4525,"AM":0,"x":25.991,"y":20.191,"w":10.937,"h":0.833,"TU":"Line 5(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C2_5_","EN":0},"TI":4526,"AM":0,"x":37.37,"y":20.297,"w":36.939,"h":0.833,"TU":"Line 5(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1D_5_","EN":0},"TI":4527,"AM":0,"x":74.553,"y":20.194,"w":8.13,"h":0.833,"TU":"Line 5(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1E_5_","EN":0},"TI":4528,"AM":0,"x":82.948,"y":20.248,"w":3.587,"h":0.833,"TU":"Line 5(e). Line Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L1F_5_","EN":0},"TI":4529,"AM":0,"x":87.043,"y":20.191,"w":12.021,"h":0.833,"TU":"Line 5(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C1_6_","EN":0},"TI":4530,"AM":0,"x":37.2,"y":21.052,"w":36.939,"h":0.833,"TU":"Line 6(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1A_6_","EN":0},"TI":4531,"AM":0,"x":9.003,"y":21.648,"w":16.616,"h":0.833,"TU":"Line 6(a). Rev. Rul., Rev. Proc., etc."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1B_6_","EN":0},"TI":4532,"AM":0,"x":26.045,"y":21.654,"w":10.873,"h":0.833,"TU":"Line 6(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1C2_6_","EN":0},"TI":4533,"AM":0,"x":37.255,"y":21.725,"w":36.939,"h":0.833,"TU":"Line 6(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1D_6_","EN":0},"TI":4534,"AM":0,"x":74.414,"y":21.721,"w":8.216,"h":0.833,"TU":"Line 6(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L1E_6_","EN":0},"TI":4535,"AM":0,"x":83.098,"y":21.721,"w":3.512,"h":0.833,"TU":"Line 6(e). Line Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L1F_6_","EN":0},"TI":4536,"AM":0,"x":87.033,"y":21.681,"w":11.935,"h":0.833,"TU":"Line 6(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TXT1","EN":0},"TI":4537,"AM":0,"x":52.108,"y":22.585,"w":27.129,"h":0.833,"TU":"DETAILED EXPLANATION"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT1_1_","EN":0},"TI":4538,"AM":0,"x":9.784,"y":23.3,"w":89.203,"h":0.833,"TU":"Line 1. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT2_1_","EN":0},"TI":4539,"AM":0,"x":9.859,"y":24.022,"w":89.203,"h":0.833,"TU":"Line 1. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT3_1_","EN":0},"TI":4540,"AM":0,"x":9.815,"y":24.772,"w":89.247,"h":0.833,"TU":"Line 1. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT1_2_","EN":0},"TI":4541,"AM":0,"x":9.859,"y":25.522,"w":89.203,"h":0.833,"TU":"Line 2. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT2_2_","EN":0},"TI":4542,"AM":0,"x":9.859,"y":26.272,"w":89.203,"h":0.833,"TU":"Line 2. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT3_2_","EN":0},"TI":4543,"AM":0,"x":9.89,"y":27.022,"w":89.172,"h":0.833,"TU":"Line 2. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT1_3_","EN":0},"TI":4544,"AM":0,"x":9.859,"y":27.772,"w":89.203,"h":0.833,"TU":"Line 3. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT2_3_","EN":0},"TI":4545,"AM":0,"x":9.859,"y":28.522,"w":89.203,"h":0.833,"TU":"Line 3. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT3_3_","EN":0},"TI":4546,"AM":0,"x":9.964,"y":29.272,"w":89.097,"h":0.833,"TU":"Line 3. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT1_4_","EN":0},"TI":4547,"AM":0,"x":9.859,"y":30.022,"w":89.203,"h":0.833,"TU":"Line 4. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT2_4_","EN":0},"TI":4548,"AM":0,"x":9.859,"y":30.745,"w":89.203,"h":0.833,"TU":"Line 4. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT3_4_","EN":0},"TI":4549,"AM":0,"x":9.815,"y":31.522,"w":89.247,"h":0.833,"TU":"Line 4. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT1_5_","EN":0},"TI":4550,"AM":0,"x":9.859,"y":32.273,"w":89.203,"h":0.833,"TU":"Line 5. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT2_5_","EN":0},"TI":4551,"AM":0,"x":9.859,"y":33.023,"w":89.203,"h":0.833,"TU":"Line 5. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT3_5_","EN":0},"TI":4552,"AM":0,"x":9.964,"y":33.773,"w":89.097,"h":0.833,"TU":"Line 5. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT1_6_","EN":0},"TI":4553,"AM":0,"x":9.859,"y":34.523,"w":89.203,"h":0.833,"TU":"Line 6. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT2_6_","EN":0},"TI":4554,"AM":0,"x":9.859,"y":35.273,"w":89.203,"h":0.833,"TU":"Line 6. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_L1TXT3_6_","EN":0},"TI":4555,"AM":0,"x":9.838,"y":36.025,"w":89.203,"h":0.833,"TU":"Line 6. Detailed Explanation (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2IDNO","EN":0},"TI":4556,"AM":0,"x":55.886,"y":42.021,"w":29.396,"h":0.833,"TU":"2 Identifying number of pass-through entity","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1NAME","EN":0},"TI":4557,"AM":0,"x":9.733,"y":42.851,"w":37.9,"h":0.858,"TU":"Line 1. Name of pass-through entity."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1ADDR1","EN":0},"TI":4558,"AM":0,"x":9.733,"y":43.831,"w":37.846,"h":0.833,"TU":"Address."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L3FROM","EN":0},"TI":4559,"AM":0,"x":51.056,"y":43.458,"w":20.204,"h":0.833,"TU":"Line 3. Tax year of pass-through entity from","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L3TO","EN":0},"TI":4560,"AM":0,"x":78.961,"y":43.326,"w":19.421,"h":0.912,"TU":"Line 3. Date for end of tax year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":4561,"AM":0,"x":9.808,"y":44.73,"w":18.22,"h":0.858,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":4562,"AM":0,"x":29.009,"y":44.779,"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":4563,"AM":0,"x":35.239,"y":44.703,"w":12.276,"h":0.858,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4564,"AM":0,"x":48.6,"y":45.632,"w":50.464,"h":0.833,"TU":"Line 4. Internal Revenue Service Center where the pass-through entity filed its return."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8275R.content.txt b/test/data/fd/form/F8275R.content.txt new file mode 100755 index 00000000..c567e1af --- /dev/null +++ b/test/data/fd/form/F8275R.content.txt @@ -0,0 +1,98 @@ +Form +8275-R +(Rev. August 2013) +Department of the Treasury +Internal Revenue Service +Regulation Disclosure Statement +Use this form only to disclose items or positions that are contrary to Treasury +regulations. For other disclosures, use Form 8275, Disclosure Statement. +a + +Information about Form 8275-R and its separate instructions is at +www.irs.gov/form8275 +. +a + +Attach to your tax return. +OMB No. 1545-0889 +Attachment +Sequence No. +92A +Name(s) shown on return +Identifying number shown on return +If Form 8275-R relates to an information return for a foreign entity (for example, Form 5471), enter: +Name of foreign entity + +a + +Employer identification number, if any + +a + +Reference ID number (see instructions) + +a + +Part I +General Information +(see instructions) +(a) +Regulation Section +(b) +Item or Group +of Items +(c) +Detailed Description +of Items +(d) +Form or +Schedule +(e) +Line +No. +(f) +Amount +1 +2 +3 +4 +5 +6 +Part II +Detailed Explanation +(see instructions) +1 +2 +3 +4 +5 +6 +Part III +Information About Pass-Through Entity. +To be completed by partners, shareholders, beneficiaries, + +or residual interest holders. +Complete this part only if you are making adequate disclosure for a pass-through item. +Note: +A pass-through entity is a partnership, S corporation, estate, trust, regulated investment company (RIC), real estate investmen +t + +trust (REIT), or real estate mortgage investment conduit (REMIC). +1 +Name, address, and ZIP code of pass-through entity +2 +Identifying number of pass-through entity +3 +Tax year of pass-through entity +/ / +to +/ / +4 +Internal Revenue Service Center where the pass-through entity filed +its return +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 14594X +Form +8275-R + (Rev. 8-2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8275R.fields.json b/test/data/fd/form/F8275R.fields.json new file mode 100755 index 00000000..cbc511a6 --- /dev/null +++ b/test/data/fd/form/F8275R.fields.json @@ -0,0 +1 @@ +[{"id":"NAMEA","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"FORENT","type":"alpha","calc":false,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"REFER","type":"alpha","calc":false,"value":""},{"id":"A5_L1C1_1_","type":"alpha","calc":false,"value":""},{"id":"A5_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"A5_L1B_1_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C2_1_","type":"alpha","calc":false,"value":""},{"id":"A5_L1D_1_","type":"alpha","calc":false,"value":""},{"id":"A5_L1E_1_","type":"alpha","calc":false,"value":""},{"id":"A5_L1F_1_","type":"number","calc":false,"value":""},{"id":"A5_L1C1_2_","type":"alpha","calc":false,"value":""},{"id":"A5_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"A5_L1B_2_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C2_2_","type":"alpha","calc":false,"value":""},{"id":"A5_L1D_2_","type":"alpha","calc":false,"value":""},{"id":"A5_L1E_2_","type":"alpha","calc":false,"value":""},{"id":"A5_L1F_2_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C1_3_","type":"alpha","calc":false,"value":""},{"id":"A5_L1A_3_","type":"alpha","calc":false,"value":""},{"id":"A5_L1B_3_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C2_3_","type":"alpha","calc":false,"value":""},{"id":"A5_L1D_3_","type":"alpha","calc":false,"value":""},{"id":"A5_L1E_3_","type":"alpha","calc":false,"value":""},{"id":"A5_L1F_3_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C1_4_","type":"alpha","calc":false,"value":""},{"id":"A5_L1A_4_","type":"alpha","calc":false,"value":""},{"id":"A5_L1B_4_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C2_4_","type":"alpha","calc":false,"value":""},{"id":"A5_L1D_4_","type":"alpha","calc":false,"value":""},{"id":"A5_L1E_4_","type":"alpha","calc":false,"value":""},{"id":"A5_L1F_4_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C1_5_","type":"alpha","calc":false,"value":""},{"id":"A5_L1A_5_","type":"alpha","calc":false,"value":""},{"id":"A5_L1B_5_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C2_5_","type":"alpha","calc":false,"value":""},{"id":"A5_L1D_5_","type":"alpha","calc":false,"value":""},{"id":"A5_L1E_5_","type":"alpha","calc":false,"value":""},{"id":"A5_L1F_5_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C1_6_","type":"alpha","calc":false,"value":""},{"id":"A5_L1A_6_","type":"alpha","calc":false,"value":""},{"id":"A5_L1B_6_","type":"alpha","calc":false,"value":""},{"id":"A5_L1C2_6_","type":"alpha","calc":false,"value":""},{"id":"A5_L1D_6_","type":"alpha","calc":false,"value":""},{"id":"A5_L1E_6_","type":"alpha","calc":false,"value":""},{"id":"A5_L1F_6_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT1_1_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT2_1_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT3_1_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT1_2_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT2_2_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT3_2_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT1_3_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT2_3_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT3_3_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT1_4_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT2_4_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT3_4_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT1_5_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT2_5_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT3_5_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT1_6_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT2_6_","type":"alpha","calc":false,"value":""},{"id":"A6_L1TXT3_6_","type":"alpha","calc":false,"value":""},{"id":"L2IDNO","type":"mask","calc":false,"value":""},{"id":"L1NAME","type":"alpha","calc":false,"value":""},{"id":"L1ADDR1","type":"alpha","calc":false,"value":""},{"id":"L3FROM","type":"date","calc":false,"value":""},{"id":"L3TO","type":"date","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"L4","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8275R.json b/test/data/fd/form/F8275R.json new file mode 100755 index 00000000..d1251c01 --- /dev/null +++ b/test/data/fd/form/F8275R.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8275-R (Rev. August 2013)","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.979},{"oc":"#221f1f","x":20.997,"y":6.001,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.751,"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":1.2000000000000002,"l":69.386},{"oc":"#221f1f","x":75.447,"y":7.501,"w":1.2000000000000002,"l":23.598},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":24.709,"y":9.001,"w":0.75,"l":74.336},{"oc":"#221f1f","x":35.022,"y":9.751,"w":0.75,"l":64.024},{"oc":"#221f1f","x":35.022,"y":10.501,"w":0.75,"l":64.024},{"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":6.147,"y":11.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.947,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":25.947,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":37.084,"y":11.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.084,"y":12.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.209,"y":11.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":12.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":11.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.947,"y":14.251,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.084,"y":13.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.084,"y":14.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.947,"y":15.751,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.084,"y":15.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.084,"y":15.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.209,"y":15.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.947,"y":17.251,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.084,"y":16.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.084,"y":17.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.209,"y":17.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.947,"y":18.751,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.084,"y":18.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.084,"y":18.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.209,"y":18.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.947,"y":20.251,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.084,"y":19.501,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.084,"y":20.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":74.209,"y":20.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.2000000000000002,"l":19.886},{"oc":"#221f1f","x":25.947,"y":21.751,"w":1.2000000000000002,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.084,"y":21.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":37.084,"y":21.751,"w":1.2000000000000002,"l":37.211},{"oc":"#221f1f","x":74.209,"y":21.751,"w":1.2000000000000002,"l":8.748},{"oc":"#221f1f","x":82.872,"y":21.751,"w":1.2000000000000002,"l":3.798},{"oc":"#221f1f","x":86.584,"y":21.751,"w":1.2000000000000002,"l":12.461},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":26.251,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.001,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":32.251,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":33.001,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":33.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":34.501,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":35.251,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":6.147,"y":36.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":36.751,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":41.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":48.222,"y":42.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":50.695,"y":42.751,"w":0.75,"l":48.35},{"oc":"#221f1f","x":48.222,"y":44.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":50.697,"y":44.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":46.501,"w":1.5,"l":33.498},{"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":1.435},{"oc":"#221f1f","x":21.04,"y":3.622,"w":1.5,"l":0.894},{"oc":"#221f1f","x":21.04,"y":4.485,"w":1.5,"l":1.547},{"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":2.297},{"oc":"#221f1f","x":75.49,"y":5.97,"w":0.75,"l":1.556},{"oc":"#221f1f","x":25.99,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.99,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.99,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.99,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.99,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.99,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.99,"y":20.235,"w":0.75,"l":1.541},{"oc":"#221f1f","x":37.127,"y":20.235,"w":0.75,"l":1.541},{"oc":"#221f1f","x":74.252,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":20.986,"w":0.75,"l":0.791},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":1.541},{"oc":"#221f1f","x":86.627,"y":20.235,"w":0.75,"l":1.541},{"oc":"#221f1f","x":48.265,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":41.986,"w":0.75,"l":4.531}],"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":"#221f1f","x":6.19,"y":21.751,"w":5.717,"h":0.742,"clr":-1},{"oc":"#221f1f","x":6.19,"y":36.751,"w":6.126,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.444,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.444,"w":3.0220000000000002,"clr":-1,"A":"left","R":[{"T":"8275-R","S":-1,"TS":[0,21,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.417,"w":8.447000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%20August%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.569,"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":5.019,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":34.516,"y":2.186,"w":14.819999999999999,"clr":-1,"A":"left","R":[{"T":"Regulation%20Disclosure%20Statement","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":26.976,"y":2.966,"w":37.458,"clr":-1,"A":"left","R":[{"T":"Use%20this%20form%20only%20to%20disclose%20items%20or%20positions%20that%20are%20contrary%20to%20Treasury%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.489,"y":3.566,"w":34.702,"clr":-1,"A":"left","R":[{"T":"regulations.%20For%20other%20disclosures%2C%20use%20Form%208275%2C%20Disclosure%20Statement.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":22.545,"y":4.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":23.863,"y":4.358,"w":31.366000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208275-R%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.991,"y":4.358,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8275","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.766,"y":4.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.425,"y":5.014,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.839,"y":5.108,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.348,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0889","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.8630000000000004,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":4.522,"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.522,"w":1.7970000000000002,"clr":-1,"A":"left","R":[{"T":"92A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.688,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.271,"y":5.688,"w":17.017000000000003,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.34,"w":43.73099999999997,"clr":-1,"A":"left","R":[{"T":"If%20Form%208275-R%20relates%20to%20an%20information%20return%20for%20a%20foreign%20entity%20(for%20example%2C%20Form%205471)%2C%20enter%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.028,"w":9.889999999999999,"clr":-1,"A":"left","R":[{"T":"Name%20of%20foreign%20entity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.575,"y":7.933999999999999,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.778,"w":16.856000000000005,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number%2C%20if%20any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.35,"y":8.684,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":9.528,"w":17.336000000000006,"clr":-1,"A":"left","R":[{"T":"Reference%20ID%20number%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.093,"y":9.434,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,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":14.533,"y":10.322,"w":9.792,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.363,"y":10.322,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.138,"y":11.067,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.405,"y":11.63,"w":9.035,"clr":-1,"A":"left","R":[{"T":"Regulation%20Section","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.585,"y":10.823,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.31,"y":11.348,"w":7.202,"clr":-1,"A":"left","R":[{"T":"Item%20or%20Group%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.97,"y":11.873,"w":3.8859999999999997,"clr":-1,"A":"left","R":[{"T":"of%20Items","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.738,"y":10.823,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.594,"y":11.348,"w":10.274000000000001,"clr":-1,"A":"left","R":[{"T":"Detailed%20Description%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.102,"y":11.873,"w":3.8859999999999997,"clr":-1,"A":"left","R":[{"T":"of%20Items","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.61,"y":10.823,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.061,"y":11.348,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Form%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.67,"y":11.873,"w":4.426,"clr":-1,"A":"left","R":[{"T":"Schedule","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.82,"y":10.823,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.307,"y":11.348,"w":2.296,"clr":-1,"A":"left","R":[{"T":"Line%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.54,"y":11.873,"w":1.63,"clr":-1,"A":"left","R":[{"T":"No.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.008,"y":11.086,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.314,"y":11.611,"w":3.7399999999999998,"clr":-1,"A":"left","R":[{"T":"Amount","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":6.349,"y":21.565,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":21.572,"w":10.107000000000001,"clr":-1,"A":"left","R":[{"T":"Detailed%20Explanation%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.905,"y":21.572,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":27.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":34.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":6.3,"y":36.572,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.532,"y":36.572,"w":19.48,"clr":-1,"A":"left","R":[{"T":"Information%20About%20Pass-Through%20Entity.%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.014,"y":36.572,"w":25.745,"clr":-1,"A":"left","R":[{"T":"To%20be%20completed%20by%20partners%2C%20shareholders%2C%20beneficiaries%2C","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.532,"y":37.26,"w":12.149000000000003,"clr":-1,"A":"left","R":[{"T":"or%20residual%20interest%20holders.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.09,"w":41.34299999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20are%20making%20adequate%20disclosure%20for%20a%20pass-through%20item.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.533,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.753,"y":39.533,"w":55.78599999999995,"clr":-1,"A":"left","R":[{"T":"A%20pass-through%20entity%20is%20a%20partnership%2C%20S%20corporation%2C%20estate%2C%20trust%2C%20regulated%20investment%20company%20(RIC)%2C%20real%20estate%20investmen","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.047,"y":39.533,"w":0.315,"clr":-1,"A":"left","R":[{"T":"t","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":40.22,"w":28.797000000000015,"clr":-1,"A":"left","R":[{"T":"trust%20(REIT)%2C%20or%20real%20estate%20mortgage%20investment%20conduit%20(REMIC).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":41.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.099,"w":23.487000000000013,"clr":-1,"A":"left","R":[{"T":"Name%2C%20address%2C%20and%20ZIP%20code%20of%20pass-through%20entity","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":49.63,"y":41.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.863,"y":41.09,"w":18.468000000000004,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20of%20pass-through%20entity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.63,"y":42.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.865,"y":42.59,"w":13.946,"clr":-1,"A":"left","R":[{"T":"Tax%20year%20of%20pass-through%20entity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.006,"y":43.34,"w":1.02,"clr":-1,"A":"left","R":[{"T":"%2F%20%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.934,"y":43.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.11,"y":43.34,"w":1.298,"clr":-1,"A":"left","R":[{"T":"%2F%20%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.63,"y":44.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.865,"y":44.153,"w":30.466000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20Center%20where%20the%20pass-through%20entity%20filed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.865,"y":44.84,"w":3.9450000000000003,"clr":-1,"A":"left","R":[{"T":"its%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.286,"y":46.376,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2014594X","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.336,"y":46.315,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.478,"y":46.315,"w":3.353,"clr":-1,"A":"left","R":[{"T":"8275-R","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.241,"y":46.315,"w":6.243,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%208-2013)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEA","EN":0},"TI":4565,"AM":1024,"x":20.453,"y":6.19,"w":54.91,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4566,"AM":1024,"x":6.289,"y":6.833,"w":69.204,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4567,"AM":1024,"x":75.782,"y":6.627,"w":23.198,"h":0.85,"TU":"Identifying number shown on return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FORENT","EN":0},"TI":4568,"AM":0,"x":24.709,"y":8.272,"w":39.764,"h":0.833,"TU":"Name of foreign entity "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":4569,"AM":0,"x":35.021,"y":9.022,"w":17.563,"h":0.833,"TU":"Employer identification number, if any ","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REFER","EN":0},"TI":4570,"AM":0,"x":34.995,"y":9.828,"w":42.745,"h":0.833,"TU":"Reference ID number (see instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C1_1_","EN":0},"TI":4571,"AM":0,"x":37.228,"y":12.788,"w":36.939,"h":0.833,"TU":"Line 1(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1A_1_","EN":0},"TI":4572,"AM":0,"x":10.182,"y":13.503,"w":15.674,"h":0.833,"TU":"Line 1(a). Regulation Section."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1B_1_","EN":0},"TI":4573,"AM":0,"x":26.098,"y":13.471,"w":10.862,"h":0.833,"TU":"Line 1(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C2_1_","EN":0},"TI":4574,"AM":0,"x":37.228,"y":13.538,"w":36.939,"h":0.833,"TU":"Line 1(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1D_1_","EN":0},"TI":4575,"AM":0,"x":74.361,"y":13.498,"w":8.387,"h":0.833,"TU":"Line 1(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1E_1_","EN":0},"TI":4576,"AM":0,"x":83.098,"y":13.498,"w":3.437,"h":0.833,"TU":"Line 1(e). Line number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A5_L1F_1_","EN":0},"TI":4577,"AM":0,"x":86.586,"y":13.444,"w":12.277,"h":0.833,"TU":"Line 1(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C1_2_","EN":0},"TI":4578,"AM":0,"x":37.228,"y":14.26,"w":36.939,"h":0.833,"TU":"Line 2(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1A_2_","EN":0},"TI":4579,"AM":0,"x":10.131,"y":14.967,"w":15.546,"h":0.833,"TU":"Line 2(a). Regulation Section."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1B_2_","EN":0},"TI":4580,"AM":0,"x":26.088,"y":14.932,"w":10.862,"h":0.833,"TU":"Line 2(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C2_2_","EN":0},"TI":4581,"AM":0,"x":37.228,"y":15.038,"w":36.939,"h":0.833,"TU":"Line 2(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1D_2_","EN":0},"TI":4582,"AM":0,"x":74.342,"y":14.973,"w":8.387,"h":0.833,"TU":"Line 2(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1E_2_","EN":0},"TI":4583,"AM":0,"x":83.106,"y":14.973,"w":3.437,"h":0.833,"TU":"Line 2(e). Line number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1F_2_","EN":0},"TI":4584,"AM":0,"x":86.772,"y":14.945,"w":12.277,"h":0.833,"TU":"Line 2(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C1_3_","EN":0},"TI":4585,"AM":0,"x":37.228,"y":15.788,"w":36.939,"h":0.833,"TU":"Line 3(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1A_3_","EN":0},"TI":4586,"AM":0,"x":10.261,"y":16.484,"w":15.482,"h":0.833,"TU":"Line 3(a). Regulation Section."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1B_3_","EN":0},"TI":4587,"AM":0,"x":26.088,"y":16.456,"w":10.862,"h":0.833,"TU":"Line 3(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C2_3_","EN":0},"TI":4588,"AM":0,"x":37.228,"y":16.538,"w":36.939,"h":0.833,"TU":"Line 3(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1D_3_","EN":0},"TI":4589,"AM":0,"x":74.397,"y":16.463,"w":8.387,"h":0.833,"TU":"Line 3(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1E_3_","EN":0},"TI":4590,"AM":0,"x":83.086,"y":16.463,"w":3.437,"h":0.833,"TU":"Line 3(e). Line number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1F_3_","EN":0},"TI":4591,"AM":0,"x":86.826,"y":16.381,"w":12.277,"h":0.833,"TU":"Line 3(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C1_4_","EN":0},"TI":4592,"AM":0,"x":37.228,"y":17.288,"w":36.939,"h":0.833,"TU":"Line 4(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1A_4_","EN":0},"TI":4593,"AM":0,"x":10.166,"y":17.919,"w":15.674,"h":0.833,"TU":"Line 4(a). Regulation Section."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1B_4_","EN":0},"TI":4594,"AM":0,"x":26.068,"y":17.974,"w":10.862,"h":0.833,"TU":"Line 4(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C2_4_","EN":0},"TI":4595,"AM":0,"x":37.228,"y":18.038,"w":36.939,"h":0.833,"TU":"Line 4(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1D_4_","EN":0},"TI":4596,"AM":0,"x":74.452,"y":17.953,"w":8.387,"h":0.833,"TU":"Line 4(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1E_4_","EN":0},"TI":4597,"AM":0,"x":83.066,"y":17.98,"w":3.437,"h":0.833,"TU":"Line 4(e). Line number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1F_4_","EN":0},"TI":4598,"AM":0,"x":86.657,"y":17.925,"w":12.277,"h":0.833,"TU":"Line 4(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C1_5_","EN":0},"TI":4599,"AM":0,"x":37.228,"y":18.788,"w":36.939,"h":0.833,"TU":"Line 5(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1A_5_","EN":0},"TI":4600,"AM":0,"x":10.295,"y":19.491,"w":15.354,"h":0.833,"TU":"Line 5(a). Regulation Section."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1B_5_","EN":0},"TI":4601,"AM":0,"x":26.048,"y":19.464,"w":10.862,"h":0.833,"TU":"Line 5(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C2_5_","EN":0},"TI":4602,"AM":0,"x":37.228,"y":19.538,"w":36.939,"h":0.833,"TU":"Line 5(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1D_5_","EN":0},"TI":4603,"AM":0,"x":74.357,"y":19.47,"w":8.387,"h":0.833,"TU":"Line 5(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1E_5_","EN":0},"TI":4604,"AM":0,"x":83.121,"y":19.47,"w":3.437,"h":0.833,"TU":"Line 5(e). Line number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1F_5_","EN":0},"TI":4605,"AM":0,"x":86.786,"y":19.443,"w":12.277,"h":0.833,"TU":"Line 5(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C1_6_","EN":0},"TI":4606,"AM":0,"x":37.228,"y":20.288,"w":36.939,"h":0.833,"TU":"Line 6(c). Detailed Description of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1A_6_","EN":0},"TI":4607,"AM":0,"x":10.2,"y":21.008,"w":15.482,"h":0.833,"TU":"Line 6(a). Regulation Section."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1B_6_","EN":0},"TI":4608,"AM":0,"x":26.103,"y":20.981,"w":10.937,"h":0.833,"TU":"Line 6(b). Item or Group of Items."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1C2_6_","EN":0},"TI":4609,"AM":0,"x":37.228,"y":21.038,"w":36.939,"h":0.833,"TU":"Line 6(c). Detailed Description of Items continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1D_6_","EN":0},"TI":4610,"AM":0,"x":74.337,"y":20.96,"w":8.387,"h":0.833,"TU":"Line 6(d). Form or Schedule."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1E_6_","EN":0},"TI":4611,"AM":0,"x":83.026,"y":20.96,"w":3.437,"h":0.833,"TU":"Line 6(e). Line number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_L1F_6_","EN":0},"TI":4612,"AM":0,"x":86.766,"y":20.96,"w":12.502,"h":0.833,"TU":"Line 6(f). Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT1_1_","EN":0},"TI":4613,"AM":0,"x":12.106,"y":23.272,"w":86.955,"h":0.833,"TU":"Line 1. Detailed Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT2_1_","EN":0},"TI":4614,"AM":0,"x":12.149,"y":24.105,"w":86.956,"h":0.833,"TU":"Line 1. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT3_1_","EN":0},"TI":4615,"AM":0,"x":12.054,"y":24.778,"w":86.955,"h":0.833,"TU":"Line 1. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT1_2_","EN":0},"TI":4616,"AM":0,"x":11.959,"y":25.51,"w":86.956,"h":0.833,"TU":"Line 2. Detailed Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT2_2_","EN":0},"TI":4617,"AM":0,"x":11.939,"y":26.261,"w":86.956,"h":0.833,"TU":"Line 2. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT3_2_","EN":0},"TI":4618,"AM":0,"x":12.074,"y":27.154,"w":86.731,"h":0.833,"TU":"Line 2. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT1_3_","EN":0},"TI":4619,"AM":0,"x":11.924,"y":27.753,"w":86.955,"h":0.833,"TU":"Line 3. Detailed Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT2_3_","EN":0},"TI":4620,"AM":0,"x":11.904,"y":28.508,"w":86.955,"h":0.833,"TU":"Line 3. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT3_3_","EN":0},"TI":4621,"AM":0,"x":11.809,"y":29.399,"w":86.956,"h":0.833,"TU":"Line 3. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT1_4_","EN":0},"TI":4622,"AM":0,"x":11.864,"y":29.963,"w":86.955,"h":0.833,"TU":"Line 4. Detailed Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT2_4_","EN":0},"TI":4623,"AM":0,"x":11.699,"y":30.775,"w":86.955,"h":0.833,"TU":"Line 4. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT3_4_","EN":0},"TI":4624,"AM":0,"x":11.625,"y":31.51,"w":86.956,"h":0.833,"TU":"Line 4. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT1_5_","EN":0},"TI":4625,"AM":0,"x":11.733,"y":32.316,"w":86.956,"h":0.833,"TU":"Line 5. Detailed Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT2_5_","EN":0},"TI":4626,"AM":0,"x":11.659,"y":33.047,"w":86.955,"h":0.833,"TU":"Line 5. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT3_5_","EN":0},"TI":4627,"AM":0,"x":11.714,"y":33.775,"w":86.955,"h":0.833,"TU":"Line 5. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT1_6_","EN":0},"TI":4628,"AM":0,"x":11.699,"y":34.559,"w":86.955,"h":0.833,"TU":"Line 6. Detailed Explanation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT2_6_","EN":0},"TI":4629,"AM":0,"x":11.625,"y":35.24,"w":86.956,"h":0.833,"TU":"Line 6. Detailed Explanation continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_L1TXT3_6_","EN":0},"TI":4630,"AM":0,"x":11.53,"y":36.104,"w":87.105,"h":0.833,"TU":"Line 6. Detailed Explanation continued."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2IDNO","EN":0},"TI":4631,"AM":0,"x":52.425,"y":41.975,"w":31.058,"h":0.833,"TU":"Line 2. Identifying number of pass-through entity","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1NAME","EN":0},"TI":4632,"AM":0,"x":6.513,"y":42.742,"w":39.165,"h":0.833,"TU":"Line 1. Name of pass-through entity."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1ADDR1","EN":0},"TI":4633,"AM":0,"x":6.513,"y":43.641,"w":39.229,"h":0.885,"TU":"Address."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L3FROM","EN":0},"TI":4634,"AM":0,"x":52.274,"y":43.466,"w":17.927,"h":0.833,"TU":"Line 3. Tax year of pass-through entity beginning.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L3TO","EN":0},"TI":4635,"AM":0,"x":79.153,"y":43.396,"w":16.408,"h":0.869,"TU":"Tax year of the pass-through entity ending.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":4636,"AM":0,"x":6.439,"y":44.621,"w":21.696,"h":0.885,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":4637,"AM":0,"x":28.719,"y":44.578,"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":4638,"AM":0,"x":34.085,"y":44.621,"w":11.591,"h":0.885,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4639,"AM":0,"x":52.104,"y":45.702,"w":45.999,"h":0.833,"TU":"Line 4. Internal Revenue Service Center where the pass-through entity filed its return"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8283.content.txt b/test/data/fd/form/F8283.content.txt new file mode 100755 index 00000000..3091854c --- /dev/null +++ b/test/data/fd/form/F8283.content.txt @@ -0,0 +1,319 @@ +Form +8283 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +Noncash Charitable Contributions +a + +Attach to your tax return if you claimed a total deduction + +of over $500 for all contributed property. +a + + +. +OMB No. 1545-0908 +Attachment +Sequence No. +155 +Name(s) shown on your income tax return +Identifying number +Note. +Figure the amount of your contribution deduction before completing this form. See your tax return instructions. +Section A. Donated Property of $5,000 or Less and Certain Publicly Traded Securities, +List in this section +only +items (or groups of similar items) for which you claimed a deduction of $5,000 or less. Also, list certain +publicly traded securities even if the deduction is more than $5,000 (see instructions). +Part I + +Information on Donated Property, +If you need more space, attach a statement. +1 +(a) + Name and address of the + +donee organization +(b) +If donated property is a vehicle (see instructions), +check the box. Also enter the vehicle identification +number (unless Form 1098-C is attached) +(c) +Description of donated property + +(For a donated vehicle, enter the year, make, model, +condition, and mileage, + + +unless Form 1098-C is attached.) +A +B +C +D +E +Note. +If the amount you claimed as a deduction for an item is $500 or less, you do not have to complete columns (e), (f), and (g). + +(d) +Date of the + +contribution +(e) +Date acquired + +by donor (mo., yr.) +(f) +How acquired + +by donor +(g) +Donor’s cost + +or adjusted basis + + +(h) +Fair market value + +(see instructions) + + +(i) +Method used to determine + +the fair market value +A +B +C +D +E +Part II +Partial Interests and Restricted Use Property, +Complete lines 2a through 2e if you gave less than an +entire interest in a property listed in Part I. Complete lines 3a through 3c if conditions were placed on a +contribution listed in Part I; also attach the required statement (see instructions). +2 +a +Enter the letter from Part I that identifies the property for which you gave less than an entire interest +a +If Part II applies to more than one property, attach a separate statement. +b +Total amount claimed as a deduction for the property listed in Part I: +(1) +For this tax year +a +(2) +For any prior tax years +a +c +Name and address of each organization to which any such contribution was made in a prior year (complete only if different +from the donee organization above): +Name of charitable organization (donee) + +Address (number, street, and room or suite no.) +City or town, state, and ZIP code +d +For tangible property, enter the place where the property is located or kept +a +e +Name of any person, other than the donee organization, having actual possession of the property +a +3 +a +Is there a restriction, either temporary or permanent, on the donee’s right to use or dispose of the donated +property? +................................... +Yes +No +b +Did you give to anyone (other than the donee organization or another organization participating with the donee +organization in cooperative fundraising) the right to the income from the donated property or to the possession of +the property, including the right to vote donated securities, to acquire the property by purchase or otherwise, or to +designate the person having such income, possession, or right to acquire? +............. +c +Is there a restriction limiting the donated property for a particular use? +.............. +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 62299J +Form +8283 + (Rev. 12-2012) +Name +Street +City +State +Zip +Name +Street +City +State +Zip +Name +Street +City +State +Zip +Name +Street +City +State +Zip +Name +Street +City +State +Zip +Information about Form 8283 and its separate instructions is at www.irs.gov/form8283 +----------------Page (0) Break---------------- +Form 8283 (Rev. 12-2012) +Page +2 +Name(s) shown on your income tax return +Identifying number +Section B. Donated Property Over $5,000 (Except Certain Publicly Traded Securities), +List in this section only items (or groups of similar +items) for which you claimed a deduction of more than $5,000 per item or group (except contributions of certain publicly traded + +securities reported in Section A). An appraisal is generally required for property listed in Section B (see instructions). +Part I +Information on Donated Property, +To be completed by the taxpayer and/or the appraiser. +4 +Check the box that describes the type of property donated: +a +Art* (contribution of $20,000 or more) +b +Qualified Conservation Contribution +c +Equipment +d +Art* (contribution of less than $20,000) +e +Other Real Estate +f +Securities +g +Collectibles** +h +Intellectual Property +i +Vehicles +j +Other +other similar objects. +**Collectibles include coins, stamps, books, gems, jewelry, sports memorabilia, dolls, etc., but not art as defined above. +Note. +In certain cases, you must attach a qualified appraisal of the property. See instructions. +5 +(a) +Description of donated property (if you need + +more space, attach a separate statement) +(b) +If tangible property was donated, give a brief summary of the overall + +physical condition of the property at the time of the gift +(c) + Appraised fair + +market value + + +A +B +C +D + +(d) + Date acquired + +by donor (mo., yr.) +(e) +How acquired by donor +(f) +Donor’s cost or + +adjusted basis +(g) +For bargain sales, enter +amount received +See instructions + + + + +(h) + Amount claimed as a + +deduction +(i) +Average trading price + +of securities +A +B +C +D +Part II +Taxpayer (Donor) Statement, +List each item included in Part I above that the appraisal identifies as having +a value of $500 or less. See instructions. +(per item). Enter identifying letter from Part I and describe the specific item. See instructions. +a +Signature of taxpayer (donor) +a +Date +a +Part III +Declaration of Appraiser +appraisals during my tax year for other persons. +been barred from presenting evidence or testimony by the Office of Professional Responsibility. +Sign +Here +Signature +a +Title +▶ +Date +a +Business address (including room or suite no.) +Identifying number +City or town, state, and ZIP code +Part IV +Donee Acknowledgment„ +To be completed by the charitable organization. +in Section B, Part I, above on the following date +a +portion thereof) within 3 years after the date of receipt, it will file +Form 8282, + Donee Information Return, with the IRS and give the donor a copy of that +form. This acknowledgment does not represent agreement with the claimed fair market value. +Does the organization intend to use the property for an unrelated use? +............... +a +Yes +No +Name of charitable organization (donee) +Employer identification number +Address (number, street, and room or suite no.) +City or town, state, and ZIP code +Authorized signature +Title +Date +Form +8283 + (Rev. 12-2012) +*Art includes paintings, sculptures, watercolors, prints, drawings, ceramics, antiques, decorative arts, textiles, carpets, silver, rare manuscripts, historical memorabilia, and +appraisal is to be used in connection with a return or claim for refund and a substantial or gross valuation misstatement results from my appraisal. I affirm that I have not +abetting the understatement of tax liability). In addition, I understand that I may be subject to a penalty under section 6695A if I know, or reasonably should know, that my +fraudulent overstatement of the property value as described in the qualified appraisal or this Form 8283 may subject me to the penalty under section 6701(a) (aiding and +of property being valued. I certify that the appraisal fees were not based on a percentage of the appraised property value. Furthermore, I understand that a false or +Also, I declare that I perform appraisals on a regular basis; and that because of my qualifications as described in the appraisal, I am qualified to make appraisals of the type +married to any person who is related to any of the foregoing persons. And, if regularly used by the donor, donee, or party to the transaction, I performed the majority of my +I declare that I am not the donor, the donee, a party to the transaction in which the donor acquired the property, employed by, or related to any of the foregoing persons, or +I declare that the following item(s) included in Part I above has to the best of my knowledge and belief an appraised value of not more than $500 +Furthermore, this organization affirms that in the event it sells, exchanges, or otherwise disposes of the property described in Section B, Part I (or any +This charitable organization acknowledges that it is a qualified organization under section 170(c) and that it received the donated property as described +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8283.fields.json b/test/data/fd/form/F8283.fields.json new file mode 100755 index 00000000..561e3eef --- /dev/null +++ b/test/data/fd/form/F8283.fields.json @@ -0,0 +1 @@ +[{"id":"A128_VINBX_1_","type":"box","calc":false,"value":""},{"id":"A128_VINBX_2_","type":"box","calc":false,"value":""},{"id":"A128_VINBX_3_","type":"box","calc":false,"value":""},{"id":"A128_VINBX_4_","type":"box","calc":false,"value":""},{"id":"A128_VINBX_5_","type":"box","calc":false,"value":""},{"id":"L3ARB","type":"radio","calc":false,"value":"L3AY"},{"id":"L3ARB","type":"radio","calc":false,"value":"L3AN"},{"id":"L3BRB","type":"radio","calc":false,"value":"L3BY"},{"id":"L3BRB","type":"radio","calc":false,"value":"L3BN"},{"id":"L3CRB","type":"radio","calc":false,"value":"L3CY"},{"id":"L3CRB","type":"radio","calc":false,"value":"L3CN"},{"id":"DESC","type":"alpha","calc":false,"value":""},{"id":"NAM1","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A128_NAME_1_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC1_1_","type":"alpha","calc":false,"value":""},{"id":"A128_ADDR_1_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC2_1_","type":"alpha","calc":false,"value":""},{"id":"A128_CITY_1_","type":"alpha","calc":false,"value":""},{"id":"A128_OST_1_","type":"alpha","calc":false,"value":""},{"id":"A128_OZIP_1_","type":"zip","calc":false,"value":""},{"id":"A128_VIN_1_","type":"mask","calc":false,"value":""},{"id":"A128_DESC3_1_","type":"alpha","calc":false,"value":""},{"id":"A128_NAME_2_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC1_2_","type":"alpha","calc":false,"value":""},{"id":"A128_ADDR_2_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC2_2_","type":"alpha","calc":false,"value":""},{"id":"A128_CITY_2_","type":"alpha","calc":false,"value":""},{"id":"A128_OST_2_","type":"alpha","calc":false,"value":""},{"id":"A128_OZIP_2_","type":"zip","calc":false,"value":""},{"id":"A128_VIN_2_","type":"mask","calc":false,"value":""},{"id":"A128_DESC3_2_","type":"alpha","calc":false,"value":""},{"id":"A128_NAME_3_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC1_3_","type":"alpha","calc":false,"value":""},{"id":"A128_ADDR_3_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC2_3_","type":"alpha","calc":false,"value":""},{"id":"A128_CITY_3_","type":"alpha","calc":false,"value":""},{"id":"A128_OST_3_","type":"alpha","calc":false,"value":""},{"id":"A128_OZIP_3_","type":"zip","calc":false,"value":""},{"id":"A128_VIN_3_","type":"mask","calc":false,"value":""},{"id":"A128_DESC3_3_","type":"alpha","calc":false,"value":""},{"id":"A128_NAME_4_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC1_4_","type":"alpha","calc":false,"value":""},{"id":"A128_ADDR_4_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC2_4_","type":"alpha","calc":false,"value":""},{"id":"A128_CITY_4_","type":"alpha","calc":false,"value":""},{"id":"A128_OST_4_","type":"alpha","calc":false,"value":""},{"id":"A128_OZIP_4_","type":"zip","calc":false,"value":""},{"id":"A128_VIN_4_","type":"mask","calc":false,"value":""},{"id":"A128_DESC3_4_","type":"alpha","calc":false,"value":""},{"id":"A128_NAME_5_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC1_5_","type":"alpha","calc":false,"value":""},{"id":"A128_ADDR_5_","type":"alpha","calc":false,"value":""},{"id":"A128_DESC2_5_","type":"alpha","calc":false,"value":""},{"id":"A128_CITY_5_","type":"alpha","calc":false,"value":""},{"id":"A128_OST_5_","type":"alpha","calc":false,"value":""},{"id":"A128_OZIP_5_","type":"zip","calc":false,"value":""},{"id":"A128_VIN_5_","type":"mask","calc":false,"value":""},{"id":"A128_DESC3_5_","type":"alpha","calc":false,"value":""},{"id":"A114_L1C_1_","type":"date","calc":false,"value":""},{"id":"A114_L1D_1_","type":"date","calc":false,"value":""},{"id":"A114_L1E_1_","type":"alpha","calc":false,"value":""},{"id":"A114_L1F_1_","type":"number","calc":false,"value":""},{"id":"A114_L1G_1_","type":"number","calc":false,"value":""},{"id":"A114_L1H_1_","type":"alpha","calc":false,"value":""},{"id":"A114_L1C_2_","type":"date","calc":false,"value":""},{"id":"A114_L1D_2_","type":"date","calc":false,"value":""},{"id":"A114_L1E_2_","type":"alpha","calc":false,"value":""},{"id":"A114_L1F_2_","type":"number","calc":false,"value":""},{"id":"A114_L1G_2_","type":"number","calc":false,"value":""},{"id":"A114_L1H_2_","type":"alpha","calc":false,"value":""},{"id":"A114_L1C_3_","type":"date","calc":false,"value":""},{"id":"A114_L1D_3_","type":"date","calc":false,"value":""},{"id":"A114_L1E_3_","type":"alpha","calc":false,"value":""},{"id":"A114_L1F_3_","type":"number","calc":false,"value":""},{"id":"A114_L1G_3_","type":"number","calc":false,"value":""},{"id":"A114_L1H_3_","type":"alpha","calc":false,"value":""},{"id":"A114_L1C_4_","type":"date","calc":false,"value":""},{"id":"A114_L1D_4_","type":"date","calc":false,"value":""},{"id":"A114_L1E_4_","type":"alpha","calc":false,"value":""},{"id":"A114_L1F_4_","type":"number","calc":false,"value":""},{"id":"A114_L1G_4_","type":"number","calc":false,"value":""},{"id":"A114_L1H_4_","type":"alpha","calc":false,"value":""},{"id":"A114_L1C_5_","type":"date","calc":false,"value":""},{"id":"A114_L1D_5_","type":"date","calc":false,"value":""},{"id":"A114_L1E_5_","type":"alpha","calc":false,"value":""},{"id":"A114_L1F_5_","type":"number","calc":false,"value":""},{"id":"A114_L1G_5_","type":"number","calc":false,"value":""},{"id":"A114_L1H_5_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2A_1_","type":"mask","calc":true,"value":""},{"id":"LINE2_L2B1_1_","type":"number","calc":false,"value":""},{"id":"LINE2_L2B2_1_","type":"number","calc":false,"value":""},{"id":"LINE2_L2C1_1_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2C2_1_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2C3_1_","type":"alpha","calc":false,"value":""},{"id":"LINE2_PRST_1_","type":"alpha","calc":false,"value":""},{"id":"LINE2_PRZIP_1_","type":"zip","calc":false,"value":""},{"id":"LINE2_L2D_1_","type":"alpha","calc":false,"value":""},{"id":"LINE2_L2E_1_","type":"alpha","calc":false,"value":""},{"id":"IN1RB","type":"radio","calc":false,"value":"IN11"},{"id":"IN1RB","type":"radio","calc":false,"value":"QUALFX"},{"id":"IN1RB","type":"radio","calc":false,"value":"EQUIPX"},{"id":"IN1RB","type":"radio","calc":false,"value":"IN15"},{"id":"IN1RB","type":"radio","calc":false,"value":"IN22"},{"id":"IN1RB","type":"radio","calc":false,"value":"SECURX"},{"id":"IN1RB","type":"radio","calc":false,"value":"COLLECTX"},{"id":"IN1RB","type":"radio","calc":false,"value":"INTELLX"},{"id":"IN1RB","type":"radio","calc":false,"value":"VEHX"},{"id":"IN1RB","type":"radio","calc":false,"value":"IN29"},{"id":"UNBXRB","type":"radio","calc":false,"value":"UNBXY"},{"id":"UNBXRB","type":"radio","calc":false,"value":"UNBXN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":false,"value":""},{"id":"A119_L5A_1_","type":"alpha","calc":false,"value":""},{"id":"A120_L5B_1_","type":"alpha","calc":false,"value":""},{"id":"A163_L5C_1_","type":"number","calc":false,"value":""},{"id":"A119_L5A_2_","type":"alpha","calc":false,"value":""},{"id":"A120_L5B_2_","type":"alpha","calc":false,"value":""},{"id":"A163_L5C_2_","type":"number","calc":false,"value":""},{"id":"A119_L5A_3_","type":"alpha","calc":false,"value":""},{"id":"A120_L5B_3_","type":"alpha","calc":false,"value":""},{"id":"A163_L5C_3_","type":"number","calc":false,"value":""},{"id":"A119_L5A_4_","type":"alpha","calc":false,"value":""},{"id":"A120_L5B_4_","type":"alpha","calc":false,"value":""},{"id":"A163_L5C_4_","type":"number","calc":false,"value":""},{"id":"A121_L5D_1_","type":"date","calc":false,"value":""},{"id":"A122_L5E_1_","type":"alpha","calc":false,"value":""},{"id":"A123_L5F_1_","type":"number","calc":false,"value":""},{"id":"A124_L5G_1_","type":"number","calc":false,"value":""},{"id":"A125_L5H_1_","type":"number","calc":false,"value":""},{"id":"A126_L5I_1_","type":"number","calc":false,"value":""},{"id":"A121_L5D_2_","type":"date","calc":false,"value":""},{"id":"A122_L5E_2_","type":"alpha","calc":false,"value":""},{"id":"A123_L5F_2_","type":"number","calc":false,"value":""},{"id":"A124_L5G_2_","type":"number","calc":false,"value":""},{"id":"A125_L5H_2_","type":"number","calc":false,"value":""},{"id":"A126_L5I_2_","type":"number","calc":false,"value":""},{"id":"A121_L5D_3_","type":"date","calc":false,"value":""},{"id":"A122_L5E_3_","type":"alpha","calc":false,"value":""},{"id":"A123_L5F_3_","type":"number","calc":false,"value":""},{"id":"A124_L5G_3_","type":"number","calc":false,"value":""},{"id":"A125_L5H_3_","type":"number","calc":false,"value":""},{"id":"A126_L5I_3_","type":"number","calc":false,"value":""},{"id":"A121_L5D_4_","type":"date","calc":false,"value":""},{"id":"A122_L5E_4_","type":"alpha","calc":false,"value":""},{"id":"A123_L5F_4_","type":"number","calc":false,"value":""},{"id":"A124_L5G_4_","type":"number","calc":false,"value":""},{"id":"A125_L5H_4_","type":"number","calc":false,"value":""},{"id":"A126_L5I_4_","type":"number","calc":false,"value":""},{"id":"UN500_STII_1_","type":"mask","calc":false,"value":""},{"id":"UN500_STAT_1_","type":"alpha","calc":false,"value":""},{"id":"P2DT","type":"date","calc":false,"value":""},{"id":"P3TL","type":"alpha","calc":false,"value":""},{"id":"P3DT","type":"date","calc":false,"value":""},{"id":"BUS","type":"alpha","calc":false,"value":""},{"id":"IDENTNO","type":"alpha","calc":false,"value":""},{"id":"CTY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"P1DT","type":"date","calc":false,"value":""},{"id":"CHO","type":"alpha","calc":false,"value":""},{"id":"CEIN","type":"mask","calc":false,"value":""},{"id":"CADD","type":"alpha","calc":false,"value":""},{"id":"CCIT","type":"alpha","calc":false,"value":""},{"id":"CST","type":"alpha","calc":false,"value":""},{"id":"CZIP","type":"zip","calc":false,"value":""},{"id":"CTIT","type":"alpha","calc":false,"value":""},{"id":"CDAT","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8283.json b/test/data/fd/form/F8283.json new file mode 100755 index 00000000..b65b3125 --- /dev/null +++ b/test/data/fd/form/F8283.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8283 (Rev. December 2012)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.688,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":3.688,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":2.189,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":3.689,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.188,"w":1.125,"l":78.049},{"oc":"#221f1f","x":84.066,"y":5.188,"w":1.125,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.938,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":8.188,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":8.938,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":11.189,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":11.189,"w":0.75,"l":29.786},{"oc":"#221f1f","x":39.559,"y":11.189,"w":0.75,"l":29.786},{"oc":"#221f1f","x":69.259,"y":11.189,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.147,"y":13.813,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":13.813,"w":0.75,"l":29.786},{"oc":"#221f1f","x":69.391,"y":13.722,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.016,"y":19.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":16.501,"w":0.75,"l":29.786},{"oc":"#221f1f","x":39.559,"y":16.501,"w":0.75,"l":29.786},{"oc":"#221f1f","x":69.391,"y":16.467,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.147,"y":16.525,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":19.001,"w":0.75,"l":29.786},{"oc":"#221f1f","x":39.559,"y":19.001,"w":0.75,"l":29.786},{"oc":"#221f1f","x":68.995,"y":18.948,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.08,"y":21.458,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":21.439,"w":0.75,"l":29.786},{"oc":"#221f1f","x":68.995,"y":21.434,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.279,"y":23.511,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":23.501,"w":0.75,"l":29.786},{"oc":"#221f1f","x":69.259,"y":23.439,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.147,"y":24.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":25.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":24.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":9.859,"y":25.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":20.997,"y":24.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":20.997,"y":25.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":32.134,"y":24.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":32.134,"y":25.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":48.222,"y":24.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":25.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":63.072,"y":24.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":63.072,"y":25.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":77.922,"y":24.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":25.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":26.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":26.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":20.997,"y":26.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":32.134,"y":26.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":48.222,"y":26.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":26.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":63.072,"y":26.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":26.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":77.922,"y":26.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.146,"y":27.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":27.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":20.997,"y":27.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":32.134,"y":27.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":48.222,"y":27.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":27.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":63.072,"y":27.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":27.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":77.922,"y":27.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.146,"y":28.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":28.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":20.997,"y":28.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":32.134,"y":28.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":48.222,"y":28.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":28.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":63.072,"y":28.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":28.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":77.922,"y":28.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.146,"y":28.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":28.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":20.997,"y":28.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":32.134,"y":28.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":48.222,"y":28.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":28.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":63.072,"y":28.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":28.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":77.922,"y":28.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":29.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":31.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":32.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":34.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":34.751,"w":0.75,"l":16.033},{"oc":"#221f1f","x":11.097,"y":37.751,"w":0.75,"l":87.949},{"oc":"#221f1f","x":11.097,"y":39.251,"w":0.75,"l":87.949},{"oc":"#221f1f","x":11.097,"y":40.751,"w":0.75,"l":87.949},{"oc":"#221f1f","x":66.784,"y":41.501,"w":0.75,"l":32.261},{"oc":"#221f1f","x":82.872,"y":42.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":11.097,"y":43.001,"w":0.75,"l":87.949},{"oc":"#221f1f","x":91.534,"y":43.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":44.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":45.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":43.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":44.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":45.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":45.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":45.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.534,"y":48.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":48.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":49.001,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":49.001,"w":1.5,"l":33.498},{"oc":"#221f1f","x":81.634,"y":49.001,"w":1.5,"l":17.411},{"oc":"#231f20","x":39.688,"y":13.782,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":13.095,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":16.47,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":15.782,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":18.97,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":18.282,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":21.407,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":20.72,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":23.47,"w":1.5,"l":29.528},{"oc":"#231f20","x":39.688,"y":22.782,"w":1.5,"l":29.528}],"VLines":[{"oc":"#221f1f","x":21.04,"y":0.673,"w":1.5,"l":3.031},{"oc":"#221f1f","x":84.152,"y":0.673,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":2.173,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.152,"y":3.673,"w":1.5,"l":1.539},{"oc":"#221f1f","x":39.602,"y":8.923,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.302,"y":8.923,"w":0.75,"l":2.281},{"oc":"#221f1f","x":39.574,"y":11.173,"w":0.75,"l":2.747},{"oc":"#221f1f","x":9.926,"y":11.171,"w":0.75,"l":2.752},{"oc":"#221f1f","x":69.302,"y":11.173,"w":0.75,"l":2.554},{"oc":"#221f1f","x":39.602,"y":13.798,"w":0.75,"l":1.531},{"oc":"#221f1f","x":9.926,"y":13.828,"w":0.75,"l":3.063},{"oc":"#221f1f","x":39.574,"y":13.821,"w":0.75,"l":2.702},{"oc":"#221f1f","x":69.302,"y":13.798,"w":0.75,"l":2.622},{"oc":"#221f1f","x":39.602,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":9.926,"y":16.526,"w":0.75,"l":2.792},{"oc":"#221f1f","x":39.574,"y":16.518,"w":0.75,"l":2.432},{"oc":"#221f1f","x":69.354,"y":16.444,"w":0.75,"l":2.476},{"oc":"#221f1f","x":39.574,"y":18.512,"w":0.75,"l":2.538},{"oc":"#221f1f","x":9.926,"y":18.806,"w":0.75,"l":3.169},{"oc":"#221f1f","x":69.288,"y":18.944,"w":0.75,"l":2.5},{"oc":"#221f1f","x":39.574,"y":20.972,"w":0.75,"l":2.494},{"oc":"#221f1f","x":9.902,"y":21.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.311,"y":21.441,"w":0.75,"l":2.013},{"oc":"#221f1f","x":9.902,"y":24.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":21.04,"y":24.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":32.177,"y":24.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":24.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":24.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":24.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":9.902,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":25.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":9.902,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":26.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":9.902,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":27.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":9.902,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":27.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":9.902,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":21.04,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":32.177,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":48.265,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":60.64,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":28.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":91.577,"y":43.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":44.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":43.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":45.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":45.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":91.577,"y":47.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":47.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":48.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":48.235,"w":0.75,"l":0.781},{"oc":"#231f20","x":69.216,"y":13.095,"w":1.5,"l":0.687},{"oc":"#231f20","x":39.688,"y":13.095,"w":1.5,"l":0.687},{"oc":"#231f20","x":41.349,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.096,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.843,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.59,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.337,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":50.084,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.831,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.579,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.326,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":57.073,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.82,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.567,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":62.314,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.061,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.808,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":13.063,"w":1.5,"l":0.656},{"oc":"#231f20","x":69.216,"y":15.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":39.688,"y":15.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":41.349,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.096,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.843,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.59,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.337,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":50.084,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.831,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.579,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.326,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":57.073,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.82,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.567,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":62.314,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.061,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.808,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":69.216,"y":18.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":39.688,"y":18.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":41.349,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.096,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.843,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.59,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.337,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":50.084,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.831,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.579,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.326,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":57.073,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.82,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.567,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":62.314,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.061,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.808,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":18.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":69.216,"y":20.72,"w":1.5,"l":0.687},{"oc":"#231f20","x":39.688,"y":20.72,"w":1.5,"l":0.687},{"oc":"#231f20","x":41.349,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.096,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.843,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.59,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.337,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":50.084,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.831,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.579,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.326,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":57.073,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.82,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.567,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":62.314,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.061,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.808,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":20.751,"w":1.5,"l":0.656},{"oc":"#231f20","x":69.216,"y":22.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":39.688,"y":22.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":41.349,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.096,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.843,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.59,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.337,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":50.084,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.831,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.579,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.326,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":57.073,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.82,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.567,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":62.314,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.061,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.808,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":22.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.555,"y":22.814,"w":1.5,"l":0.656}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":8.188,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":6.19,"y":24.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":29.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":91.577,"y":45.251,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":45.251,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.01,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.086,"y":1.009,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8283%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":1.665,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.251,"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":2.751,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":34.203,"y":0.69,"w":16.224000000000004,"clr":-1,"A":"left","R":[{"T":"Noncash%20Charitable%20Contributions","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":32.951,"y":1.3519999999999999,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":34.747,"y":1.4460000000000002,"w":27.171999999999997,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return%20if%20you%20claimed%20a%20total%20deduction%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":39.143,"y":2.045,"w":19.205000000000002,"clr":-1,"A":"left","R":[{"T":"of%20over%20%24500%20for%20all%20contributed%20property.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.082,"y":2.67,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.228,"y":2.764,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":0.786,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0908","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":1.9700000000000002,"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":2.479,"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":2.479,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"155","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3760000000000003,"w":18.929000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20your%20income%20tax%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.59,"y":3.3760000000000003,"w":9.278999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.939,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.98,"y":4.939,"w":49.64099999999996,"clr":-1,"A":"left","R":[{"T":"Figure%20the%20amount%20of%20your%20contribution%20deduction%20before%20completing%20this%20form.%20See%20your%20tax%20return%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.727,"w":40.790999999999976,"clr":-1,"A":"left","R":[{"T":"Section%20A.%20Donated%20Property%20of%20%245%2C000%20or%20Less%20and%20Certain%20Publicly%20Traded%20Securities%2C","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":73.552,"y":5.727,"w":8.317000000000002,"clr":-1,"A":"left","R":[{"T":"List%20in%20this%20section%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":86.41,"y":5.727,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":15.393,"y":6.477,"w":45.822999999999965,"clr":-1,"A":"left","R":[{"T":"items%20(or%20groups%20of%20similar%20items)%20for%20which%20you%20claimed%20a%20deduction%20of%20%245%2C000%20or%20less.%20Also%2C%20list%20certain%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.388,"y":7.227,"w":38.36199999999999,"clr":-1,"A":"left","R":[{"T":"publicly%20traded%20securities%20even%20if%20the%20deduction%20is%20more%20than%20%245%2C000%20(see%20instructions).%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.838,"y":8.01,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.011,"y":8.01,"w":15.946000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20on%20Donated%20Property%2C","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":41.688,"y":8.01,"w":19.988000000000007,"clr":-1,"A":"left","R":[{"T":"If%20you%20need%20more%20space%2C%20attach%20a%20statement.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.366,"y":9.434,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.658,"y":9.148,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":18.395,"y":9.148,"w":11.874000000000002,"clr":-1,"A":"left","R":[{"T":"%20Name%20and%20address%20of%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.355,"y":9.673,"w":8.555000000000001,"clr":-1,"A":"left","R":[{"T":"donee%20organization","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.131,"y":8.886,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":41.913,"y":8.886,"w":22.188000000000013,"clr":-1,"A":"left","R":[{"T":"If%20donated%20property%20is%20a%20vehicle%20(see%20instructions)%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.699,"y":9.411,"w":22.726000000000006,"clr":-1,"A":"left","R":[{"T":"check%20the%20box.%20Also%20enter%20the%20vehicle%20identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.058,"y":9.936,"w":18.525000000000002,"clr":-1,"A":"left","R":[{"T":"number%20(unless%20Form%201098-C%20is%20attached)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.276,"y":8.623,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":76.348,"y":8.623,"w":14.558000000000003,"clr":-1,"A":"left","R":[{"T":"Description%20of%20donated%20property%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.918,"y":9.148,"w":23.525,"clr":-1,"A":"left","R":[{"T":"(For%20a%20donated%20vehicle%2C%20enter%20the%20year%2C%20make%2C%20model%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.629,"y":9.673,"w":10.707000000000004,"clr":-1,"A":"left","R":[{"T":"condition%2C%20and%20mileage%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.978,"y":10.198,"w":15.116000000000001,"clr":-1,"A":"left","R":[{"T":"unless%20Form%201098-C%20is%20attached.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.266,"y":11.309,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.251,"y":13.934,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.223,"y":16.564,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.223,"y":19.059,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.295,"y":21.497,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":23.27,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.323,"y":23.27,"w":54.59099999999996,"clr":-1,"A":"left","R":[{"T":"If%20the%20amount%20you%20claimed%20as%20a%20deduction%20for%20an%20item%20is%20%24500%20or%20less%2C%20you%20do%20not%20have%20to%20complete%20columns%20(e)%2C%20(f)%2C%20and%20(g).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.199,"y":24.086,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":13.315,"y":24.086,"w":5.205,"clr":-1,"A":"left","R":[{"T":"Date%20of%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":12.001,"y":24.611,"w":5.631,"clr":-1,"A":"left","R":[{"T":"contribution%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.545,"y":24.086,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":23.617,"y":24.086,"w":6.557,"clr":-1,"A":"left","R":[{"T":"Date%20acquired%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":21.444,"y":24.611,"w":8.447000000000003,"clr":-1,"A":"left","R":[{"T":"by%20donor%20(mo.%2C%20yr.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.326,"y":24.086,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":37.108,"y":24.086,"w":6.518000000000001,"clr":-1,"A":"left","R":[{"T":"How%20acquired%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.564,"y":24.611,"w":4.279,"clr":-1,"A":"left","R":[{"T":"by%20donor%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.939,"y":24.086,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(g)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":53.055,"y":24.086,"w":6.001000000000001,"clr":-1,"A":"left","R":[{"T":"Donor%E2%80%99s%20cost%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.827,"y":24.611,"w":7.9460000000000015,"clr":-1,"A":"left","R":[{"T":"or%20adjusted%20basis%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.63,"y":24.086,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(h)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":66.724,"y":24.086,"w":7.9460000000000015,"clr":-1,"A":"left","R":[{"T":"Fair%20market%20value%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.744,"y":24.611,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.266,"y":24.086,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(i)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":81.958,"y":24.086,"w":12.116,"clr":-1,"A":"left","R":[{"T":"Method%20used%20to%20determine%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.774,"y":24.611,"w":9.354000000000003,"clr":-1,"A":"left","R":[{"T":"the%20fair%20market%20value%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.266,"y":25.59,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.251,"y":26.34,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.223,"y":27.09,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.223,"y":27.84,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.295,"y":28.59,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":29.322,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":29.354,"w":21.507000000000005,"clr":-1,"A":"left","R":[{"T":"Partial%20Interests%20and%20Restricted%20Use%20Property%2C","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":50.378,"y":29.354,"w":24.209999999999997,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%202a%20through%202e%20if%20you%20gave%20less%20than%20an%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.528,"y":30.041,"w":46.062999999999974,"clr":-1,"A":"left","R":[{"T":"entire%20interest%20in%20a%20property%20listed%20in%20Part%20I.%20Complete%20lines%203a%20through%203c%20if%20conditions%20were%20placed%20on%20a%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.521,"y":30.729,"w":35.98899999999999,"clr":-1,"A":"left","R":[{"T":"contribution%20listed%20in%20Part%20I%3B%20also%20attach%20the%20required%20statement%20(see%20instructions).%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":31.590000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.558999999999997,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.590000000000003,"w":44.59899999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20letter%20from%20Part%20I%20that%20identifies%20the%20property%20for%20which%20you%20gave%20less%20than%20an%20entire%20interest%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.878,"y":31.496000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.278,"w":32.562999999999995,"clr":-1,"A":"left","R":[{"T":"If%20Part%20II%20applies%20to%20more%20than%20one%20property%2C%20attach%20a%20separate%20statement.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":33.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.09,"w":30.433,"clr":-1,"A":"left","R":[{"T":"Total%20amount%20claimed%20as%20a%20deduction%20for%20the%20property%20listed%20in%20Part%20I%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.152,"y":33.09,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(1)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.865,"y":33.09,"w":11.077000000000007,"clr":-1,"A":"left","R":[{"T":"For%20this%20tax%20year%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.999,"y":32.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.152,"y":33.84,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(2)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.865,"y":33.84,"w":11.130000000000004,"clr":-1,"A":"left","R":[{"T":"For%20any%20prior%20tax%20years%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.081,"y":33.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":34.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":34.728,"w":55.24799999999997,"clr":-1,"A":"left","R":[{"T":"Name%20and%20address%20of%20each%20organization%20to%20which%20any%20such%20contribution%20was%20made%20in%20a%20prior%20year%20(complete%20only%20if%20different%20%20","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.403,"w":16.409,"clr":-1,"A":"left","R":[{"T":"from%20the%20donee%20organization%20above)%3A%20","S":-1,"TS":[0,12.27,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.983,"w":17.815,"clr":-1,"A":"left","R":[{"T":"Name%20of%20charitable%20organization%20(donee)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.438,"w":21.432000000000006,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20and%20room%20or%20suite%20no.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.938,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":40.59,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.59,"w":33.91199999999999,"clr":-1,"A":"left","R":[{"T":"For%20tangible%20property%2C%20enter%20the%20place%20where%20the%20property%20is%20located%20or%20kept%20%20","S":-1,"TS":[0,12.09,0,0]}]},{"oc":"#221f1f","x":63.870000000000005,"y":40.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.34,"w":43.65599999999999,"clr":-1,"A":"left","R":[{"T":"Name%20of%20any%20person%2C%20other%20than%20the%20donee%20organization%2C%20having%20actual%20possession%20of%20the%20property%20","S":-1,"TS":[0,12.18,0,0]}]},{"oc":"#221f1f","x":79.768,"y":41.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":43.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":43.543,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.541,"w":47.658999999999956,"clr":-1,"A":"left","R":[{"T":"Is%20there%20a%20restriction%2C%20either%20temporary%20or%20permanent%2C%20on%20the%20donee%E2%80%99s%20right%20to%20use%20or%20dispose%20of%20the%20donated%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":44.228,"w":4.612,"clr":-1,"A":"left","R":[{"T":"property%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.31,"y":44.228,"w":46.654999999999966,"clr":-1,"A":"left","R":[{"T":"...................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.808,"y":43.59,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.85,"y":43.59,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":45.156,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":45.165,"w":49.48699999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20give%20to%20anyone%20(other%20than%20the%20donee%20organization%20or%20another%20organization%20participating%20with%20the%20donee%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":45.853,"w":50.785999999999966,"clr":-1,"A":"left","R":[{"T":"organization%20in%20cooperative%20fundraising)%20the%20right%20to%20the%20income%20from%20the%20donated%20property%20or%20to%20the%20possession%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":46.54,"w":51.47199999999995,"clr":-1,"A":"left","R":[{"T":"the%20property%2C%20including%20the%20right%20to%20vote%20donated%20securities%2C%20to%20acquire%20the%20property%20by%20purchase%20or%20otherwise%2C%20or%20%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":47.227,"w":33.304,"clr":-1,"A":"left","R":[{"T":"designate%20the%20person%20having%20such%20income%2C%20possession%2C%20or%20right%20to%20acquire%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":47.227,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":48.028,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":48.028,"w":31.504999999999985,"clr":-1,"A":"left","R":[{"T":"Is%20there%20a%20restriction%20limiting%20the%20donated%20property%20for%20a%20particular%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":48.028,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":48.858,"w":30.286000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.341,"y":48.876,"w":7.281000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2062299J","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":48.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":48.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8283","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.572,"y":48.822,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2012)%20","S":2,"TS":[0,10,0,0]}]},{"x":10.02,"y":11.094,"w":18.669,"clr":0,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"x":10.105,"y":11.984,"w":18.676000000000002,"clr":0,"A":"left","R":[{"T":"Street","S":2,"TS":[0,10,0,0]}]},{"x":10.033,"y":12.942,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":22.223,"y":12.969,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":29.348,"y":12.926,"w":9.723,"clr":0,"A":"left","R":[{"T":"Zip","S":2,"TS":[0,10,0,0]}]},{"x":10.019,"y":13.625,"w":18.669,"clr":0,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"x":10.105,"y":14.516,"w":18.676000000000002,"clr":0,"A":"left","R":[{"T":"Street","S":2,"TS":[0,10,0,0]}]},{"x":10.033,"y":15.472999999999999,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":22.223,"y":15.5,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":29.348,"y":15.457,"w":9.723,"clr":0,"A":"left","R":[{"T":"Zip","S":2,"TS":[0,10,0,0]}]},{"x":9.89,"y":16.297,"w":18.669,"clr":0,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"x":9.976,"y":17.187,"w":18.676000000000002,"clr":0,"A":"left","R":[{"T":"Street","S":2,"TS":[0,10,0,0]}]},{"x":9.904,"y":18.145,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":22.094,"y":18.172,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":29.219,"y":18.129,"w":9.723,"clr":0,"A":"left","R":[{"T":"Zip","S":2,"TS":[0,10,0,0]}]},{"x":9.89,"y":18.734,"w":18.669,"clr":0,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"x":9.976,"y":19.625,"w":18.676000000000002,"clr":0,"A":"left","R":[{"T":"Street","S":2,"TS":[0,10,0,0]}]},{"x":9.904,"y":20.582,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":22.093,"y":20.609,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":29.219,"y":20.566,"w":9.723,"clr":0,"A":"left","R":[{"T":"Zip","S":2,"TS":[0,10,0,0]}]},{"x":9.632,"y":21.078,"w":18.669,"clr":0,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"x":9.718,"y":21.906,"w":18.676000000000002,"clr":0,"A":"left","R":[{"T":"Street","S":2,"TS":[0,10,0,0]}]},{"x":9.646,"y":22.676,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":21.836,"y":22.703,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":28.961,"y":22.66,"w":9.723,"clr":0,"A":"left","R":[{"T":"Zip","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.878,"y":2.764,"w":40.84499999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208283%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8283","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":4640,"AM":0,"x":34.342,"y":0.128,"w":36.655,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM1","EN":0},"TI":4641,"AM":1024,"x":6.229,"y":4.286,"w":77.831,"h":0.879,"TU":"Name(s) shown on your income tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4642,"AM":1024,"x":84.336,"y":4.313,"w":14.868,"h":0.852,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_NAME_1_","EN":0},"TI":4643,"AM":0,"x":13.776,"y":11.255,"w":25.681,"h":0.833,"TU":"Line 1A(a). Name of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC1_1_","EN":0},"TI":4645,"AM":0,"x":69.361,"y":11.221,"w":29.724,"h":0.833,"TU":"Line 1A(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage, unless Form 1098-C is attached.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_ADDR_1_","EN":0},"TI":4646,"AM":0,"x":13.782,"y":12.142,"w":25.681,"h":0.833,"TU":"Street address of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC2_1_","EN":0},"TI":4647,"AM":0,"x":69.367,"y":12.108,"w":29.724,"h":0.833,"TU":"Line 1A(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_CITY_1_","EN":0},"TI":4648,"AM":0,"x":12.499,"y":13.061,"w":9.809,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_OST_1_","EN":0},"TI":4649,"AM":0,"x":25.524,"y":13.107,"w":3.435,"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":"A128_OZIP_1_","EN":0},"TI":4650,"AM":0,"x":31.305,"y":13.078,"w":8.106,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A128_VIN_1_","EN":0},"TI":4651,"AM":0,"x":39.757,"y":13.104,"w":29.535,"h":0.833,"TU":"Also enter the vehicle identification number (unless Form 1098-C is attached).","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC3_1_","EN":0},"TI":4652,"AM":0,"x":69.439,"y":13.026,"w":29.649,"h":0.833,"TU":"Line 1A(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_NAME_2_","EN":0},"TI":4653,"AM":0,"x":13.832,"y":13.962,"w":25.681,"h":0.833,"TU":"Line 1B(a). Name of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC1_2_","EN":0},"TI":4655,"AM":0,"x":69.417,"y":13.928,"w":29.724,"h":0.833,"TU":"Line 1B(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage, unless Form 1098-C is attached.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_ADDR_2_","EN":0},"TI":4656,"AM":0,"x":13.838,"y":14.848,"w":25.681,"h":0.833,"TU":"Street address of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC2_2_","EN":0},"TI":4657,"AM":0,"x":69.423,"y":14.815,"w":29.724,"h":0.833,"TU":"Line 1B(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_CITY_2_","EN":0},"TI":4658,"AM":0,"x":12.556,"y":15.767,"w":9.809,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_OST_2_","EN":0},"TI":4659,"AM":0,"x":25.614,"y":15.761,"w":3.435,"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":"A128_OZIP_2_","EN":0},"TI":4660,"AM":0,"x":31.361,"y":15.761,"w":8.106,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A128_VIN_2_","EN":0},"TI":4661,"AM":0,"x":39.813,"y":15.811,"w":29.535,"h":0.833,"TU":"Also enter the vehicle identification number (unless Form 1098-C is attached)","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC3_2_","EN":0},"TI":4662,"AM":0,"x":69.495,"y":15.733,"w":29.649,"h":0.833,"TU":"Line 1B(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_NAME_3_","EN":0},"TI":4663,"AM":0,"x":13.729,"y":16.474,"w":25.681,"h":0.833,"TU":"Line 1C(a). Name of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC1_3_","EN":0},"TI":4665,"AM":0,"x":69.314,"y":16.441,"w":29.724,"h":0.833,"TU":"Line 1C(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage, unless Form 1098-C is attached.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_ADDR_3_","EN":0},"TI":4666,"AM":0,"x":13.735,"y":17.361,"w":25.681,"h":0.833,"TU":"Street address of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC2_3_","EN":0},"TI":4667,"AM":0,"x":69.32,"y":17.327,"w":29.724,"h":0.833,"TU":"Line 1C(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_CITY_3_","EN":0},"TI":4668,"AM":0,"x":12.453,"y":18.28,"w":9.809,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_OST_3_","EN":0},"TI":4669,"AM":0,"x":25.39,"y":18.302,"w":3.435,"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":"A128_OZIP_3_","EN":0},"TI":4670,"AM":0,"x":31.258,"y":18.274,"w":8.106,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A128_VIN_3_","EN":0},"TI":4671,"AM":0,"x":39.711,"y":18.323,"w":29.535,"h":0.833,"TU":"Also enter the vehicle identification number (unless Form 1098-C is attached)","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC3_3_","EN":0},"TI":4672,"AM":0,"x":69.392,"y":18.245,"w":29.649,"h":0.833,"TU":"Line 1C(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_NAME_4_","EN":0},"TI":4673,"AM":0,"x":13.786,"y":19.056,"w":25.681,"h":0.833,"TU":"Line 1D(a). Name of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC1_4_","EN":0},"TI":4675,"AM":0,"x":69.37,"y":19.147,"w":29.724,"h":0.833,"TU":"Line 1D(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage, unless Form 1098-C is attached.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_ADDR_4_","EN":0},"TI":4676,"AM":0,"x":13.791,"y":19.942,"w":25.681,"h":0.833,"TU":"Street address of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC2_4_","EN":0},"TI":4677,"AM":0,"x":69.376,"y":19.971,"w":29.724,"h":0.833,"TU":"Line 1D(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_CITY_4_","EN":0},"TI":4678,"AM":0,"x":12.509,"y":20.737,"w":9.809,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_OST_4_","EN":0},"TI":4679,"AM":0,"x":25.255,"y":20.679,"w":3.435,"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":"A128_OZIP_4_","EN":0},"TI":4680,"AM":0,"x":31.314,"y":20.73,"w":8.106,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A128_VIN_4_","EN":0},"TI":4681,"AM":0,"x":39.767,"y":20.78,"w":29.535,"h":0.833,"TU":"Also enter the vehicle identification number (unless Form 1098-C is attached)","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC3_4_","EN":0},"TI":4682,"AM":0,"x":69.276,"y":20.764,"w":29.649,"h":0.833,"TU":"Line 1D(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_NAME_5_","EN":0},"TI":4683,"AM":0,"x":13.683,"y":21.414,"w":25.681,"h":0.833,"TU":"Line 1E(a). Name of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC1_5_","EN":0},"TI":4685,"AM":0,"x":69.203,"y":21.513,"w":29.724,"h":0.833,"TU":"Line 1E(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage, unless Form 1098-C is attached.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_ADDR_5_","EN":0},"TI":4686,"AM":0,"x":13.688,"y":22.113,"w":25.681,"h":0.833,"TU":"Street address of the donee organization."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC2_5_","EN":0},"TI":4687,"AM":0,"x":69.273,"y":22.204,"w":29.724,"h":0.833,"TU":"Line 1E(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_CITY_5_","EN":0},"TI":4688,"AM":0,"x":12.406,"y":22.782,"w":9.809,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_OST_5_","EN":0},"TI":4689,"AM":0,"x":25.211,"y":22.793,"w":3.435,"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":"A128_OZIP_5_","EN":0},"TI":4690,"AM":0,"x":31.211,"y":22.776,"w":8.106,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A128_VIN_5_","EN":0},"TI":4691,"AM":0,"x":39.664,"y":22.825,"w":29.535,"h":0.833,"TU":"Also enter the vehicle identification number (unless Form 1098-C is attached)","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A128_DESC3_5_","EN":0},"TI":4692,"AM":0,"x":69.345,"y":22.896,"w":29.574,"h":0.833,"TU":"Line 1E(c). Description of donated property (For a donated vehicle, enter the year, make, model, condition, and mileage continued"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1C_1_","EN":0},"TI":4693,"AM":0,"x":10.003,"y":25.788,"w":10.952,"h":0.833,"TU":"Line A(d). Date of the contribution.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1D_1_","EN":0},"TI":4694,"AM":0,"x":21.141,"y":25.788,"w":10.952,"h":0.833,"TU":"Line A(e). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1E_1_","EN":0},"TI":4695,"AM":0,"x":32.278,"y":25.788,"w":15.902,"h":0.833,"TU":"Line A(f). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1F_1_","EN":0},"TI":4696,"AM":0,"x":48.366,"y":25.788,"w":12.189,"h":0.833,"TU":"Line A(g). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1G_1_","EN":0},"TI":4697,"AM":0,"x":63.216,"y":25.788,"w":12.189,"h":0.833,"TU":"Line A(h). Fair market value (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1H_1_","EN":0},"TI":4698,"AM":0,"x":78.066,"y":25.788,"w":20.955,"h":0.833,"TU":"Line A(i). Method used to determine the fair market value."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1C_2_","EN":0},"TI":4699,"AM":0,"x":9.995,"y":26.535,"w":10.952,"h":0.833,"TU":"Line B(d). Date of the contribution.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1D_2_","EN":0},"TI":4700,"AM":0,"x":21.132,"y":26.535,"w":10.952,"h":0.833,"TU":"Line B(e). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1E_2_","EN":0},"TI":4701,"AM":0,"x":32.27,"y":26.535,"w":15.902,"h":0.833,"TU":"Line B(f). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1F_2_","EN":0},"TI":4702,"AM":0,"x":48.357,"y":26.535,"w":12.189,"h":0.833,"TU":"Line B(g). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1G_2_","EN":0},"TI":4703,"AM":0,"x":63.207,"y":26.535,"w":12.189,"h":0.833,"TU":"Line B(h). Fair market value (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1H_2_","EN":0},"TI":4704,"AM":0,"x":78.057,"y":26.535,"w":20.955,"h":0.833,"TU":"Line B(i). Method used to determine the fair market value."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1C_3_","EN":0},"TI":4705,"AM":0,"x":10.074,"y":27.305,"w":10.952,"h":0.833,"TU":"Line C(d). Date of the contribution.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1D_3_","EN":0},"TI":4706,"AM":0,"x":21.211,"y":27.305,"w":10.952,"h":0.833,"TU":"Line C(e). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1E_3_","EN":0},"TI":4707,"AM":0,"x":32.349,"y":27.305,"w":15.902,"h":0.833,"TU":"Line C(f). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1F_3_","EN":0},"TI":4708,"AM":0,"x":48.436,"y":27.305,"w":12.189,"h":0.833,"TU":"Line C(g). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1G_3_","EN":0},"TI":4709,"AM":0,"x":63.286,"y":27.305,"w":12.189,"h":0.833,"TU":"Line C(h). Fair market value (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1H_3_","EN":0},"TI":4710,"AM":0,"x":78.136,"y":27.305,"w":20.955,"h":0.833,"TU":"Line C(i). Method used to determine the fair market value."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1C_4_","EN":0},"TI":4711,"AM":0,"x":10.065,"y":28.053,"w":10.952,"h":0.833,"TU":"Line D(d). Date of the contribution.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1D_4_","EN":0},"TI":4712,"AM":0,"x":21.203,"y":28.053,"w":10.952,"h":0.833,"TU":"Line D(e). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1E_4_","EN":0},"TI":4713,"AM":0,"x":32.265,"y":28.053,"w":15.902,"h":0.833,"TU":"Line D(f). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1F_4_","EN":0},"TI":4714,"AM":0,"x":48.428,"y":28.053,"w":12.189,"h":0.833,"TU":"Line D(g). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1G_4_","EN":0},"TI":4715,"AM":0,"x":63.278,"y":28.053,"w":12.189,"h":0.833,"TU":"Line D(h). Fair market value (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1H_4_","EN":0},"TI":4716,"AM":0,"x":78.128,"y":28.053,"w":20.955,"h":0.833,"TU":"Line D(i). Method used to determine the fair market value."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1C_5_","EN":0},"TI":4717,"AM":0,"x":10.069,"y":28.822,"w":10.952,"h":0.833,"TU":"Line E(d). Date of the contribution.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A114_L1D_5_","EN":0},"TI":4718,"AM":0,"x":21.207,"y":28.822,"w":10.952,"h":0.833,"TU":"Line E(e). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1E_5_","EN":0},"TI":4719,"AM":0,"x":32.344,"y":28.822,"w":15.902,"h":0.833,"TU":"Line E(f). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1F_5_","EN":0},"TI":4720,"AM":0,"x":48.432,"y":28.822,"w":12.189,"h":0.833,"TU":"Line E(g). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A114_L1G_5_","EN":0},"TI":4721,"AM":0,"x":63.282,"y":28.822,"w":12.189,"h":0.833,"TU":"Line E(h). Fair market value (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A114_L1H_5_","EN":0},"TI":4722,"AM":0,"x":78.132,"y":28.822,"w":20.955,"h":0.833,"TU":"Line E(i). Method used to determine the fair market value."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE2_L2A_1_","EN":0},"TI":4723,"AM":1024,"x":82.871,"y":31.817,"w":16.191,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2B1_1_","EN":0},"TI":4724,"AM":0,"x":82.871,"y":33.318,"w":16.191,"h":0.833,"TU":"Line 2a(1). Total amount claimed as a deduction for the property listed in Part I for this tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE2_L2B2_1_","EN":0},"TI":4725,"AM":0,"x":82.871,"y":34.068,"w":16.046,"h":0.833,"TU":"Line 2a(2). Total amount claimed as a deduction for the property listed in Part I for any prior tax years."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2C1_1_","EN":0},"TI":4726,"AM":0,"x":11.096,"y":37.068,"w":87.966,"h":0.833,"TU":"Line 2c. Name of each organization to which any such contribution was made in a prior year (complete only if different from the donee organization above):"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2C2_1_","EN":0},"TI":4727,"AM":0,"x":11.096,"y":38.568,"w":87.966,"h":0.833,"TU":"Address (number, street, and room or suite number.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2C3_1_","EN":0},"TI":4728,"AM":0,"x":10.82,"y":40.026,"w":62.661,"h":0.833,"TU":"City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_PRST_1_","EN":0},"TI":4729,"AM":0,"x":74.336,"y":40.067,"w":8.572,"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":"LINE2_PRZIP_1_","EN":0},"TI":4730,"AM":0,"x":84.584,"y":39.973,"w":14.245,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2D_1_","EN":0},"TI":4731,"AM":0,"x":66.784,"y":40.818,"w":32.278,"h":0.833,"TU":"Line 2d. For tangible property, enter the place where the property is located or kept:"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE2_L2E_1_","EN":0},"TI":4732,"AM":0,"x":11.096,"y":42.318,"w":87.966,"h":0.833,"TU":"Line 2e. Name of any person, other than the donee organization, having actual possession of the property."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A128_VINBX_1_","EN":0},"TI":4644,"AM":0,"x":52.257,"y":11.282,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A128_VINBX_2_","EN":0},"TI":4654,"AM":0,"x":52.313,"y":13.989,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A128_VINBX_3_","EN":0},"TI":4664,"AM":0,"x":52.421,"y":16.665,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A128_VINBX_4_","EN":0},"TI":4674,"AM":0,"x":52.439,"y":19.208,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A128_VINBX_5_","EN":0},"TI":4684,"AM":0,"x":52.164,"y":21.378,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3AY","EN":0},"TI":4733,"AM":0,"x":92.536,"y":44.469,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3AN","EN":0},"TI":4734,"AM":0,"x":96.23,"y":44.451,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L3ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3BY","EN":0},"TI":4735,"AM":0,"x":92.616,"y":47.492,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3BN","EN":0},"TI":4736,"AM":0,"x":96.08,"y":47.445,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L3BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3CY","EN":0},"TI":4737,"AM":0,"x":92.671,"y":48.193,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3CN","EN":0},"TI":4738,"AM":0,"x":96.23,"y":48.18,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L3CRB","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":4.501,"w":1.125,"l":75.574},{"oc":"#221f1f","x":81.591,"y":4.501,"w":1.125,"l":17.454},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.178,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":15.751,"w":0.75,"l":33.498},{"oc":"#221f1f","x":42.034,"y":15.751,"w":0.75,"l":42.161},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":14.936},{"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":33.498},{"oc":"#221f1f","x":42.034,"y":16.501,"w":0.75,"l":42.161},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":16.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.146,"y":17.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":17.251,"w":0.75,"l":33.498},{"oc":"#221f1f","x":42.034,"y":17.251,"w":0.75,"l":42.161},{"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":6.146,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":18.001,"w":0.75,"l":33.498},{"oc":"#221f1f","x":42.034,"y":18.001,"w":0.75,"l":42.161},{"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":6.146,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":18.751,"w":0.75,"l":33.498},{"oc":"#221f1f","x":42.034,"y":18.751,"w":0.75,"l":42.161},{"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":6.147,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":20.997,"y":20.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":39.559,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":54.409,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":19.501,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":20.997,"y":20.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":39.559,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":54.409,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":20.997,"y":21.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":39.559,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":21.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":21.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.259,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":21.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":21.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.146,"y":21.782,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":21.782,"w":0.75,"l":12.461},{"oc":"#221f1f","x":20.997,"y":21.782,"w":0.75,"l":18.648},{"oc":"#221f1f","x":39.559,"y":21.782,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":21.782,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":21.782,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":21.782,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.259,"y":21.782,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":21.782,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":21.782,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":21.782,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.146,"y":22.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":20.997,"y":22.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":39.559,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":22.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":22.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.259,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":22.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":22.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":23.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":68.022,"y":26.178,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.147,"y":27.366,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":28.116,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":34.501,"w":0.75,"l":74.336},{"oc":"#221f1f","x":6.147,"y":36.001,"w":0.75,"l":74.336},{"oc":"#221f1f","x":80.397,"y":34.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":36.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":37.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":38.322,"y":39.751,"w":0.75,"l":38.448},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":48.349},{"oc":"#221f1f","x":6.147,"y":44.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":54.409,"y":42.751,"w":0.75,"l":44.636},{"oc":"#221f1f","x":54.409,"y":44.251,"w":0.75,"l":44.636},{"oc":"#221f1f","x":6.147,"y":45.751,"w":0.75,"l":48.349},{"oc":"#221f1f","x":54.409,"y":45.751,"w":0.75,"l":44.636},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":81.677,"y":2.985,"w":1.5,"l":1.539},{"oc":"#221f1f","x":42.077,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.665,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.077,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"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":42.077,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"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":42.077,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"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":42.077,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":21.04,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.664,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":21.04,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":39.602,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":51.977,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":54.452,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":66.827,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":69.302,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":81.677,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":84.152,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":96.527,"y":20.985,"w":0.75,"l":0.812},{"oc":"#221f1f","x":8.664,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":21.04,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":39.602,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":51.977,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":54.452,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":66.827,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":69.302,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":81.677,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":84.152,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":96.527,"y":21.766,"w":0.75,"l":0.751},{"oc":"#221f1f","x":8.664,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":21.04,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":39.602,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":51.977,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.452,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.827,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":69.302,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.527,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":11.14,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":42.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":44.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":45.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":45.735,"w":0.75,"l":1.531}],"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":"#bfc0c4","x":6.19,"y":18.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":23.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":27.366,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":37.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":-0.798,"y":49.5,"w":1.596,"h":0.29,"clr":-1},{"x":0,"y":48.919,"w":1.522,"h":0.553,"clr":0}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":11.635000000000005,"clr":-1,"A":"left","R":[{"T":"Form%208283%20(Rev.%2012-2012)","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":2.688,"w":18.929000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20your%20income%20tax%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.115,"y":2.688,"w":9.278999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.377,"w":40.45799999999998,"clr":-1,"A":"left","R":[{"T":"Section%20B.%20Donated%20Property%20Over%20%245%2C000%20(Except%20Certain%20Publicly%20Traded%20Securities)%2C","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":62.331,"y":4.377,"w":22.041000000000007,"clr":-1,"A":"left","R":[{"T":"List%20in%20this%20section%20only%20items%20(or%20groups%20of%20similar","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.744,"y":5.015,"w":56.75399999999995,"clr":-1,"A":"left","R":[{"T":"items)%20for%20which%20you%20claimed%20a%20deduction%20of%20more%20than%20%245%2C000%20per%20item%20or%20group%20(except%20contributions%20of%20certain%20publicly%20traded","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":15.741,"y":5.652,"w":51.92999999999996,"clr":-1,"A":"left","R":[{"T":"securities%20reported%20in%20Section%20A).%20An%20appraisal%20is%20generally%20required%20for%20property%20listed%20in%20Section%20B%20(see%20instructions).%20","S":-1,"TS":[0,11.5,0,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":15.736,"y":6.572,"w":15.946000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20on%20Donated%20Property%2C","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":42.757,"y":6.572,"w":24.708999999999996,"clr":-1,"A":"left","R":[{"T":"To%20be%20completed%20by%20the%20taxpayer%20and%2For%20the%20appraiser.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.747,"y":7.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":7.3580000000000005,"w":26.802999999999997,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20that%20describes%20the%20type%20of%20property%20donated%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.208,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.602,"y":8.108,"w":16.875000000000007,"clr":-1,"A":"left","R":[{"T":"Art*%20(contribution%20of%20%2420%2C000%20or%20more)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.592,"y":8.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.015,"y":8.108,"w":16.242999999999995,"clr":-1,"A":"left","R":[{"T":"Qualified%20Conservation%20Contribution%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.033,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.427,"y":8.108,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Equipment%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.18,"y":8.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.602,"y":8.858,"w":17.394000000000005,"clr":-1,"A":"left","R":[{"T":"Art*%20(contribution%20of%20less%20than%20%2420%2C000)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.621,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.015,"y":8.858,"w":8.131,"clr":-1,"A":"left","R":[{"T":"Other%20Real%20Estate%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.22,"y":8.84,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.427,"y":8.858,"w":4.6850000000000005,"clr":-1,"A":"left","R":[{"T":"Securities%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.18,"y":9.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.602,"y":9.608,"w":6.1850000000000005,"clr":-1,"A":"left","R":[{"T":"Collectibles**%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.606,"y":9.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"h","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.015,"y":9.608,"w":9.203999999999999,"clr":-1,"A":"left","R":[{"T":"Intellectual%20Property%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.278,"y":9.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":"i","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.427,"y":9.608,"w":3.722,"clr":-1,"A":"left","R":[{"T":"Vehicles","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.437,"y":10.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.602,"y":10.358,"w":2.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.011,"y":11.756,"w":9.594000000000003,"clr":-1,"A":"left","R":[{"T":"other%20similar%20objects.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.941,"y":12.553,"w":53.65999999999996,"clr":-1,"A":"left","R":[{"T":"**Collectibles%20include%20coins%2C%20stamps%2C%20books%2C%20gems%2C%20jewelry%2C%20sports%20memorabilia%2C%20dolls%2C%20etc.%2C%20but%20not%20art%20as%20defined%20above.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":13.223,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.836,"y":13.223,"w":39.19299999999998,"clr":-1,"A":"left","R":[{"T":"In%20certain%20cases%2C%20you%20must%20attach%20a%20qualified%20appraisal%20of%20the%20property.%20See%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.747,"y":14.371,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.208,"y":14.063,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":14.28,"y":14.063,"w":20.022000000000002,"clr":-1,"A":"left","R":[{"T":"Description%20of%20donated%20property%20(if%20you%20need%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":13.922,"y":14.563,"w":18.89400000000001,"clr":-1,"A":"left","R":[{"T":"more%20space%2C%20attach%20a%20separate%20statement)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.513,"y":14.063,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":45.629,"y":14.063,"w":30.688999999999993,"clr":-1,"A":"left","R":[{"T":"If%20tangible%20property%20was%20donated%2C%20give%20a%20brief%20summary%20of%20the%20overall%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":48.112,"y":14.563,"w":24.802000000000007,"clr":-1,"A":"left","R":[{"T":"physical%20condition%20of%20the%20property%20at%20the%20time%20of%20the%20gift%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.549,"y":14.063,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":88.286,"y":14.063,"w":6.7780000000000005,"clr":-1,"A":"left","R":[{"T":"%20Appraised%20fair%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.884,"y":14.563,"w":6.002000000000001,"clr":-1,"A":"left","R":[{"T":"market%20value%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.647,"y":15.59,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.633,"y":16.34,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":17.09,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":17.84,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.934,"y":18.563,"w":1.277,"clr":-1,"A":"left","R":[{"T":"(d)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":11.381,"y":18.563,"w":6.835000000000001,"clr":-1,"A":"left","R":[{"T":"%20Date%20acquired%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.687,"y":19.063,"w":8.447000000000003,"clr":-1,"A":"left","R":[{"T":"by%20donor%20(mo.%2C%20yr.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":22.874,"y":18.813,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":24.612,"y":18.813,"w":10.797000000000002,"clr":-1,"A":"left","R":[{"T":"How%20acquired%20by%20donor%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.898,"y":18.563,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":43.345,"y":18.563,"w":7.186000000000002,"clr":-1,"A":"left","R":[{"T":"Donor%E2%80%99s%20cost%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.877,"y":19.063,"w":6.761000000000001,"clr":-1,"A":"left","R":[{"T":"adjusted%20basis%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.409,"y":18.563,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":56.19,"y":18.563,"w":10.797000000000004,"clr":-1,"A":"left","R":[{"T":"For%20bargain%20sales%2C%20enter%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.136,"y":19.063,"w":7.743,"clr":-1,"A":"left","R":[{"T":"amount%20received%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.257,"y":18.563,"w":7.78,"clr":-1,"A":"left","R":[{"T":"See%20instructions","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":70.721,"y":19.057,"w":1.277,"clr":-1,"A":"left","R":[{"T":"(h)","S":-1,"TS":[0,9.16,1,0]}]},{"oc":"#221f1f","x":71.976,"y":19.057,"w":9.967000000000002,"clr":-1,"A":"left","R":[{"T":"%20Amount%20claimed%20as%20a%20","S":-1,"TS":[0,9.16,0,0]}]},{"oc":"#221f1f","x":74.104,"y":19.401,"w":4.760999999999999,"clr":-1,"A":"left","R":[{"T":"deduction%20","S":-1,"TS":[0,9.16,0,0]}]},{"oc":"#221f1f","x":85.662,"y":19.057,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(i)%20","S":-1,"TS":[0,9.16,1,0]}]},{"oc":"#221f1f","x":86.856,"y":19.057,"w":9.574000000000002,"clr":-1,"A":"left","R":[{"T":"Average%20trading%20price","S":-1,"TS":[0,9.16,0,0]}]},{"oc":"#221f1f","x":88.464,"y":19.401,"w":5.6850000000000005,"clr":-1,"A":"left","R":[{"T":"of%20securities%20","S":-1,"TS":[0,9.16,0,0]}]},{"oc":"#221f1f","x":6.647,"y":20.09,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.633,"y":20.871,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":21.59,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":22.34,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":23.072,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.736,"y":23.072,"w":13.669,"clr":-1,"A":"left","R":[{"T":"Taxpayer%20(Donor)%20Statement%2C","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":38.953,"y":23.072,"w":33.915,"clr":-1,"A":"left","R":[{"T":"List%20each%20item%20included%20in%20Part%20I%20above%20that%20the%20appraisal%20identifies%20as%20having","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.736,"y":23.822,"w":18.337000000000007,"clr":-1,"A":"left","R":[{"T":"a%20value%20of%20%24500%20or%20less.%20See%20instructions.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":25.258,"w":41.48899999999997,"clr":-1,"A":"left","R":[{"T":"(per%20item).%20Enter%20identifying%20letter%20from%20Part%20I%20and%20describe%20the%20specific%20item.%20See%20instructions.%20","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":65.838,"y":25.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.41,"w":13.278000000000004,"clr":-1,"A":"left","R":[{"T":"Signature%20of%20taxpayer%20(donor)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.197,"y":26.317,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":75.898,"y":26.41,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.159,"y":26.317,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":6.331,"y":27.187,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.736,"y":27.187,"w":11.892000000000001,"clr":-1,"A":"left","R":[{"T":"Declaration%20of%20Appraiser%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.924,"y":28.939,"w":21.650999999999996,"clr":-1,"A":"left","R":[{"T":"appraisals%20during%20my%20tax%20year%20for%20other%20persons.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.937,"y":32.065,"w":42.87699999999999,"clr":-1,"A":"left","R":[{"T":"been%20barred%20from%20presenting%20evidence%20or%20testimony%20by%20the%20Office%20of%20Professional%20Responsibility.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":32.765,"w":2.723,"clr":-1,"A":"left","R":[{"T":"Sign%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":33.515,"w":2.501,"clr":-1,"A":"left","R":[{"T":"Here%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":12.127,"y":33.563,"w":4.556000000000001,"clr":-1,"A":"left","R":[{"T":"Signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":17.608,"y":33.501,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":49.252,"y":33.563,"w":2.148,"clr":-1,"A":"left","R":[{"T":"Title%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.836,"y":33.501,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,8.05,0,0]}]},{"oc":"#221f1f","x":76.477,"y":33.563,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.33,"y":33.501,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":5.94,"y":34.188,"w":20.93,"clr":-1,"A":"left","R":[{"T":"Business%20address%20(including%20room%20or%20suite%20no.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":34.188,"w":9.278999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.939,"y":35.689,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"x":6.296,"y":37.322,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.736,"y":37.322,"w":12.113000000000001,"clr":-1,"A":"left","R":[{"T":"Donee%20Acknowledgment%E2%80%9E","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":37.566,"y":37.322,"w":21.63300000000001,"clr":-1,"A":"left","R":[{"T":"To%20be%20completed%20by%20the%20charitable%20organization.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.935,"y":38.758,"w":21.53900000000001,"clr":-1,"A":"left","R":[{"T":"in%20Section%20B%2C%20Part%20I%2C%20above%20on%20the%20following%20date%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.555,"y":38.664,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.93,"y":40.367,"w":28.926,"clr":-1,"A":"left","R":[{"T":"portion%20thereof)%20within%203%20years%20after%20the%20date%20of%20receipt%2C%20it%20will%20file%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.331,"y":40.367,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%208282%2C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":48.133,"y":40.367,"w":33.1624,"clr":-1,"A":"left","R":[{"T":"%20Donee%20Information%20Return%2C%20with%20the%20IRS%20and%20give%20the%20donor%20a%20copy%20of%20that%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.944,"y":41.008,"w":42.00899999999998,"clr":-1,"A":"left","R":[{"T":"form.%20This%20acknowledgment%20does%20not%20represent%20agreement%20with%20the%20claimed%20fair%20market%20value.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.944,"y":41.795,"w":31.616999999999997,"clr":-1,"A":"left","R":[{"T":"Does%20the%20organization%20intend%20to%20use%20the%20property%20for%20an%20unrelated%20use%3F%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.319,"y":41.795,"w":24,"clr":-1,"A":"left","R":[{"T":"...............%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":82.676,"y":41.702,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":87.202,"y":41.858,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.627,"y":41.858,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.438,"w":18.093,"clr":-1,"A":"left","R":[{"T":"Name%20of%20charitable%20organization%20(donee)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.89,"y":42.438,"w":15.281000000000004,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":43.939,"w":21.432000000000006,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20and%20room%20or%20suite%20no.)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.89,"y":43.939,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.939,"y":45.407,"w":9.500000000000002,"clr":-1,"A":"left","R":[{"T":"Authorized%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.89,"y":45.438,"w":2.148,"clr":-1,"A":"left","R":[{"T":"Title%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":45.407,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":47.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":47.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8283","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.572,"y":47.072,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2012)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.01,"y":11.256,"w":76.30599999999993,"clr":-1,"A":"left","R":[{"T":"*Art%20includes%20paintings%2C%20sculptures%2C%20watercolors%2C%20prints%2C%20drawings%2C%20ceramics%2C%20antiques%2C%20decorative%20arts%2C%20textiles%2C%20carpets%2C%20silver%2C%20rare%20manuscripts%2C%20historical%20memorabilia%2C%20and%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.925,"y":31.564999999999998,"w":75.33099999999999,"clr":-1,"A":"left","R":[{"T":"appraisal%20is%20to%20be%20used%20in%20connection%20with%20a%20return%20or%20claim%20for%20refund%20and%20a%20substantial%20or%20gross%20valuation%20misstatement%20results%20from%20my%20appraisal.%20I%20affirm%20that%20I%20have%20not%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.932,"y":31.065,"w":75.96499999999995,"clr":-1,"A":"left","R":[{"T":"abetting%20the%20understatement%20of%20tax%20liability).%20In%20addition%2C%20I%20understand%20that%20I%20may%20be%20subject%20to%20a%20penalty%20under%20section%206695A%20if%20I%20know%2C%20or%20reasonably%20should%20know%2C%20that%20my%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.925,"y":30.564,"w":75.24299999999995,"clr":-1,"A":"left","R":[{"T":"fraudulent%20overstatement%20of%20the%20property%20value%20as%20described%20in%20the%20qualified%20appraisal%20or%20this%20Form%208283%20may%20subject%20me%20to%20the%20penalty%20under%20section%206701(a)%20(aiding%20and%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.92,"y":30.064,"w":72.80799999999995,"clr":-1,"A":"left","R":[{"T":"of%20property%20being%20valued.%20I%20certify%20that%20the%20appraisal%20fees%20were%20not%20based%20on%20a%20percentage%20of%20the%20appraised%20property%20value.%20Furthermore%2C%20I%20understand%20that%20a%20false%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.924,"y":29.564,"w":77.03400000000002,"clr":-1,"A":"left","R":[{"T":"Also%2C%20I%20declare%20that%20I%20perform%20appraisals%20on%20a%20regular%20basis%3B%20and%20that%20because%20of%20my%20qualifications%20as%20described%20in%20the%20%20appraisal%2C%20I%20am%20qualified%20to%20make%20appraisals%20of%20the%20type%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.936,"y":28.439,"w":76.34799999999993,"clr":-1,"A":"left","R":[{"T":"married%20to%20any%20person%20who%20is%20related%20to%20any%20of%20the%20foregoing%20persons.%20And%2C%20if%20regularly%20used%20by%20the%20donor%2C%20donee%2C%20or%20party%20to%20the%20transaction%2C%20I%20performed%20the%20majority%20of%20my%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":27.939,"w":76.79499999999994,"clr":-1,"A":"left","R":[{"T":"I%20declare%20that%20I%20am%20not%20the%20donor%2C%20the%20donee%2C%20a%20party%20to%20the%20transaction%20in%20which%20the%20donor%20acquired%20the%20property%2C%20employed%20by%2C%20or%20related%20to%20any%20of%20the%20foregoing%20persons%2C%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":24.571,"w":64.55099999999992,"clr":-1,"A":"left","R":[{"T":"I%20declare%20that%20the%20following%20item(s)%20included%20in%20Part%20I%20above%20has%20to%20the%20best%20of%20my%20knowledge%20and%20belief%20an%20appraised%20value%20of%20not%20more%20than%20%24500%20","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.727,"w":66.85899999999997,"clr":-1,"A":"left","R":[{"T":"Furthermore%2C%20this%20organization%20affirms%20that%20in%20the%20event%20it%20sells%2C%20exchanges%2C%20or%20otherwise%20disposes%20of%20the%20property%20described%20in%20Section%20B%2C%20Part%20I%20(or%20any%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.071,"w":67.71199999999995,"clr":-1,"A":"left","R":[{"T":"This%20charitable%20organization%20acknowledges%20that%20it%20is%20a%20qualified%20organization%20under%20section%20170(c)%20and%20that%20it%20received%20the%20donated%20property%20as%20described%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":4739,"AM":1024,"x":6.229,"y":3.68,"w":75.506,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":4740,"AM":0,"x":81.861,"y":3.653,"w":17.418,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A119_L5A_1_","EN":0},"TI":4751,"AM":0,"x":8.766,"y":15.788,"w":33.227,"h":0.833,"TU":"Line 5A(a). Description of donated property (if you need more space, attach a separate statement)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A120_L5B_1_","EN":0},"TI":4752,"AM":0,"x":42.178,"y":15.788,"w":41.889,"h":0.833,"TU":"Line 5A(b). If tangible property was donated, give a brief summary of the overall physical condition of the property at the time of the gift."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L5C_1_","EN":0},"TI":4753,"AM":0,"x":84.253,"y":15.788,"w":12.189,"h":0.833,"TU":"Line 5A(c). Appraised fair market value."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A119_L5A_2_","EN":0},"TI":4754,"AM":0,"x":8.773,"y":16.537,"w":33.227,"h":0.833,"TU":"Line 5B(a). Description of donated property (if you need more space, attach a separate statement)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A120_L5B_2_","EN":0},"TI":4755,"AM":0,"x":42.186,"y":16.537,"w":41.889,"h":0.833,"TU":"Line 5B(b). If tangible property was donated, give a brief summary of the overall physical condition of the property at the time of the gift."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L5C_2_","EN":0},"TI":4756,"AM":0,"x":84.261,"y":16.537,"w":12.189,"h":0.833,"TU":"Line 5B(c). Appraised fair market value."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A119_L5A_3_","EN":0},"TI":4757,"AM":0,"x":8.769,"y":17.251,"w":33.227,"h":0.833,"TU":"Line 5C(a). Description of donated property (if you need more space, attach a separate statement)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A120_L5B_3_","EN":0},"TI":4758,"AM":0,"x":42.182,"y":17.251,"w":41.889,"h":0.833,"TU":"Line 5C(b). If tangible property was donated, give a brief summary of the overall physical condition of the property at the time of the gift."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L5C_3_","EN":0},"TI":4759,"AM":0,"x":84.257,"y":17.251,"w":12.189,"h":0.833,"TU":"Line 5C(c). Appraised fair market value."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A119_L5A_4_","EN":0},"TI":4760,"AM":0,"x":8.777,"y":18,"w":33.227,"h":0.833,"TU":"Line 5D(a). Description of donated property (if you need more space, attach a separate statement)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A120_L5B_4_","EN":0},"TI":4761,"AM":0,"x":42.189,"y":18,"w":41.889,"h":0.833,"TU":"Line 5D(b). If tangible property was donated, give a brief summary of the overall physical condition of the property at the time of the gift."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L5C_4_","EN":0},"TI":4762,"AM":0,"x":84.264,"y":18,"w":12.189,"h":0.833,"TU":"Line 5D(c). Appraised fair market value."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A121_L5D_1_","EN":0},"TI":4763,"AM":0,"x":8.766,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 5A(d). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A122_L5E_1_","EN":0},"TI":4764,"AM":0,"x":21.141,"y":20.288,"w":18.377,"h":0.833,"TU":"Line 5A(e). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A123_L5F_1_","EN":0},"TI":4765,"AM":0,"x":39.703,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 5A(f). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A124_L5G_1_","EN":0},"TI":4766,"AM":0,"x":54.553,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 5A(g). For bargain sales, enter amount received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A125_L5H_1_","EN":0},"TI":4767,"AM":0,"x":69.403,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 5A(h). Amount claimed as deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A126_L5I_1_","EN":0},"TI":4768,"AM":0,"x":84.253,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 5A(i). Average trading price of securities."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A121_L5D_2_","EN":0},"TI":4769,"AM":0,"x":8.793,"y":21.063,"w":12.189,"h":0.833,"TU":"Line 5B(d). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A122_L5E_2_","EN":0},"TI":4770,"AM":0,"x":21.168,"y":21.063,"w":18.377,"h":0.833,"TU":"Line 5B(e). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A123_L5F_2_","EN":0},"TI":4771,"AM":0,"x":39.731,"y":21.063,"w":12.189,"h":0.833,"TU":"Line 5B(f). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A124_L5G_2_","EN":0},"TI":4772,"AM":0,"x":54.581,"y":21.063,"w":12.189,"h":0.833,"TU":"Line 5B(g). For bargain sales, enter amount received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A125_L5H_2_","EN":0},"TI":4773,"AM":0,"x":69.431,"y":21.063,"w":12.189,"h":0.833,"TU":"Line 5B(h). Amount claimed as deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A126_L5I_2_","EN":0},"TI":4774,"AM":0,"x":84.281,"y":21.063,"w":12.189,"h":0.833,"TU":"Line 5B(i). Average trading price of securities."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A121_L5D_3_","EN":0},"TI":4775,"AM":0,"x":8.779,"y":21.792,"w":12.189,"h":0.833,"TU":"Line 5C(d). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A122_L5E_3_","EN":0},"TI":4776,"AM":0,"x":21.154,"y":21.792,"w":18.377,"h":0.833,"TU":"Line 5C(e). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A123_L5F_3_","EN":0},"TI":4777,"AM":0,"x":39.717,"y":21.792,"w":12.189,"h":0.833,"TU":"Line 5C(f). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A124_L5G_3_","EN":0},"TI":4778,"AM":0,"x":54.567,"y":21.792,"w":12.189,"h":0.833,"TU":"Line 5C(g). For bargain sales, enter amount received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A125_L5H_3_","EN":0},"TI":4779,"AM":0,"x":69.417,"y":21.792,"w":12.189,"h":0.833,"TU":"Line 5C(h). Amount claimed as deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A126_L5I_3_","EN":0},"TI":4780,"AM":0,"x":84.267,"y":21.792,"w":12.189,"h":0.833,"TU":"Line 5C(i). Average trading price of securities."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A121_L5D_4_","EN":0},"TI":4781,"AM":0,"x":8.807,"y":22.567,"w":12.189,"h":0.833,"TU":"Line 5D(d). Date acquired by donor (month, year).","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A122_L5E_4_","EN":0},"TI":4782,"AM":0,"x":21.182,"y":22.567,"w":18.377,"h":0.833,"TU":"Line 5D(e). How acquired by donor."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A123_L5F_4_","EN":0},"TI":4783,"AM":0,"x":39.745,"y":22.567,"w":12.189,"h":0.833,"TU":"Line 5D(f). Donor's cost or adjusted basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A124_L5G_4_","EN":0},"TI":4784,"AM":0,"x":54.595,"y":22.567,"w":12.189,"h":0.833,"TU":"Line 5D(g). For bargain sales, enter amount received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A125_L5H_4_","EN":0},"TI":4785,"AM":0,"x":69.445,"y":22.567,"w":12.189,"h":0.833,"TU":"Line 5D(h). Amount claimed as deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A126_L5I_4_","EN":0},"TI":4786,"AM":0,"x":84.295,"y":22.567,"w":12.189,"h":0.833,"TU":"Line 5D(i). Average trading price of securities."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"UN500_STII_1_","EN":0},"TI":4787,"AM":0,"x":67.905,"y":25.4,"w":3.546,"h":0.833,"TU":"Enter identifying letter from Part I. See instructions.","MV":"a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"UN500_STAT_1_","EN":0},"TI":4788,"AM":0,"x":72.512,"y":25.418,"w":26.55,"h":0.833,"TU":"Describe the specific item. See instructions."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"P2DT","EN":0},"TI":4789,"AM":0,"x":80.857,"y":26.598,"w":18.07,"h":0.833,"TU":"Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"P3TL","EN":0},"TI":4790,"AM":0,"x":53.241,"y":33.682,"w":23.039,"h":0.833,"TU":"Title."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"P3DT","EN":0},"TI":4791,"AM":0,"x":80.918,"y":33.697,"w":17.92,"h":0.833,"TU":"Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUS","EN":0},"TI":4792,"AM":0,"x":6.229,"y":35.126,"w":74.01,"h":0.859,"TU":"Business address (including room or suite number)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"IDENTNO","EN":0},"TI":4793,"AM":0,"x":80.582,"y":35.153,"w":18.397,"h":0.833,"TU":"Identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CTY","EN":0},"TI":4794,"AM":0,"x":6.146,"y":36.735,"w":67.685,"h":0.833,"TU":"City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":4795,"AM":0,"x":75.194,"y":36.773,"w":7.941000000000001,"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":4796,"AM":0,"x":84.884,"y":36.733,"w":14.245,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"P1DT","EN":0},"TI":4797,"AM":0,"x":38.206,"y":38.965,"w":38.509,"h":0.833,"TU":"This charitable organization acknowledges that it is a qualified organization under section 170(c) and that it received the donated property as described in Section B, Part I, above on the following date:","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CHO","EN":0},"TI":4800,"AM":0,"x":6.229,"y":43.348,"w":47.435,"h":0.887,"TU":"Name of charitable organization (donee)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CEIN","EN":0},"TI":4801,"AM":0,"x":54.851,"y":43.403,"w":43.765,"h":0.833,"TU":"Employer identification number.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CADD","EN":0},"TI":4802,"AM":0,"x":6.229,"y":44.877,"w":47.446,"h":0.858,"TU":"Address (number, street, and room or suite number)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CCIT","EN":0},"TI":4803,"AM":0,"x":54.575,"y":45.006,"w":18.06,"h":0.833,"TU":"City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CST","EN":0},"TI":4804,"AM":0,"x":74.609,"y":45.115,"w":8.121,"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":"CZIP","EN":0},"TI":4805,"AM":0,"x":84.734,"y":45.009,"w":14.245,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CTIT","EN":0},"TI":4806,"AM":0,"x":54.594,"y":46.403,"w":24.29,"h":0.833,"TU":"Title."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CDAT","EN":0},"TI":4807,"AM":0,"x":79.601,"y":46.4,"w":19.304,"h":0.833,"TU":"Date.","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IN11","EN":0},"TI":4741,"AM":0,"x":11.535,"y":8.208,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"QUALFX","EN":0},"TI":4742,"AM":0,"x":45.095,"y":8.106,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EQUIPX","EN":0},"TI":4743,"AM":0,"x":78.541,"y":8.216,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IN15","EN":0},"TI":4744,"AM":0,"x":11.443,"y":8.969,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IN22","EN":0},"TI":4745,"AM":0,"x":45.003,"y":8.868,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECURX","EN":0},"TI":4746,"AM":0,"x":78.449,"y":8.978,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLLECTX","EN":0},"TI":4747,"AM":0,"x":11.497,"y":9.752,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INTELLX","EN":0},"TI":4748,"AM":0,"x":45.058,"y":9.65,"w":1.597,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"VEHX","EN":0},"TI":4749,"AM":0,"x":78.504,"y":9.76,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IN29","EN":0},"TI":4750,"AM":0,"x":11.48,"y":10.447,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"IN1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"UNBXY","EN":0},"TI":4798,"AM":0,"x":85.349,"y":41.91,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"UNBXN","EN":0},"TI":4799,"AM":0,"x":92.748,"y":41.919,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"UNBXRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8379.content.txt b/test/data/fd/form/F8379.content.txt new file mode 100755 index 00000000..6ae7a387 --- /dev/null +++ b/test/data/fd/form/F8379.content.txt @@ -0,0 +1,194 @@ +Form +8379 +(Rev. Novermber 2012) +Department of the Treasury +Internal Revenue Service +Injured Spouse Allocation +a + + +OMB No. 1545-0074 +Attachment +Sequence No. +104 +Part I +Should You File This Form? +You must complete this part. +1 +Enter the tax year for which you are filing this form. +a +Answer the following questions for that year. +2 +Did you (or will you) file a joint return? +Yes. +Go to line 3. +No. Stop here. +Do not file this form. You are not an injured spouse. +3 +Did (or will) the IRS use the joint overpayment to pay any of the following legally enforceable past-due debt(s) owed only by y +our +spouse? (see instructions) +• Federal tax • State income tax • State unemployment compensation • Child support • Spousal support + +• Federal nontax debt (such as a student loan) +Yes. +Go to line 4. +No. Stop here. +Do not file this form. You are not an injured spouse. +Note. + If the past-due amount is for a joint federal tax, you may qualify for innocent spouse relief for the year to which + +the +overpayment was applied. See +Innocent Spouse Relief, +in the instructions for more information. +4 +Are you legally obligated to pay this past-due amount? +Yes. Stop here. +Do not file this form. You are not an injured spouse. +Note. +If the past-due amount is for a joint federal tax, you may qualify for innocent spouse relief for the year to which + +the +No. +Go to line 5. +5 +Were you a resident of a community property state at any time during the tax year entered on line 1? (see instructions) +Yes. +Enter the name(s) of the community property state(s) +. +No. +Go to line 6. +6 +Did you make and report payments, such as federal income tax withholding or estimated tax payments? +Yes. +No. +Go to line 7. +7 +Did you have earned income, such as wages, salaries, or self-employment income? +Yes. +Go to line 8. +No. +Skip line 8 and go to line 9. +8 +Did (or will) you claim the earned income credit or additional child tax credit? +Yes. +No. +Go to line 9. +9 +Did (or will) you claim a refundable tax credit (see instructions)? +Part II +Information About the Joint Tax Return for Which This Form Is Filed +10 +Enter the following information exactly as it is shown on the tax return for which you are filing this form. +The spouse’s name and social security number shown first on that tax return must also be shown first below. +First name, initial, and last name shown first on the return +Social security number shown first +If Injured Spouse, +check here + +a +First name, initial, and last name shown second on the return +Social security number shown second +If Injured Spouse, +check here + +a +11 +Check this box only if you are divorced or legally separated from the spouse with whom you filed the joint return and +you want your refund issued in your name only +........................ +12 +Do you want any injured spouse refund mailed to an address different from the one on your joint return? +If “Yes,” enter the address. +Yes +No +Number and street City, town, or post office, state, and ZIP code +For Privacy Act and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 62474Q +Form +8379 + (Rev. 11-2012) +Information about Form 8379 and its separate instructions is at www.irs.gov/form8379. +Skip lines 6 through 9 and go to Part II and complete the rest of this form. +Skip lines 7 through 9 and go to Part II and complete the rest of this form. +Skip line 9 and go to Part II and complete the rest of this form. +No. +Yes. +Go to Part II and complete the rest of this form. +Stop here. Do not file this form. You are not an injured spouse. +overpayment was applied. See Innocent Spouse Relief, in the instructions for more information. +----------------Page (0) Break---------------- +Form 8379 (Rev. 11-2012) +Page +2 +Part III +Allocation Between Spouses of Items on the Joint Tax Return +(see instructions) +Allocated Items +(a) +Amount shown + +on joint return +(b) +Allocated to + +injured spouse +(c) +Allocated to + +other spouse +13 +Income: +a. +Income reported on Form W-2 +b. +All other income +14 +Adjustments to income +15 +Standard deduction or Itemized deductions +16 +Number of exemptions +17 +Credits ( +do not +include any earned income credit) +18 +Other taxes +19 +Federal income tax withheld +20 +Payments +Part IV +Signature. +Complete this part only if you are filing Form 8379 by itself and not with your tax return. +knowledge. +Keep a copy of +this form for +your records +Injured spouse’s signature +Date +Phone number (optional) +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer's signature +Date +Check if +self-employed +PTIN +Firm’s name +a +Firm's EIN +a +Firm's Address +a +Phone no. +Form +8379 + (Rev. 11-2012) +Under penalties of perjury, I declare that I have examined this form and any accompanying schedules or statements and to the best of my knowledge +and belief, they are true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which preparer has any +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8379.fields.json b/test/data/fd/form/F8379.fields.json new file mode 100755 index 00000000..34d45573 --- /dev/null +++ b/test/data/fd/form/F8379.fields.json @@ -0,0 +1 @@ +[{"id":"JOINTRB","type":"radio","calc":false,"value":"JOINTY"},{"id":"JOINTRB","type":"radio","calc":false,"value":"JOINTN"},{"id":"OVERPARB","type":"radio","calc":false,"value":"OVRPAYY"},{"id":"OVERPARB","type":"radio","calc":false,"value":"OVERPAYN"},{"id":"OBLIGRB","type":"radio","calc":false,"value":"OBLIGY"},{"id":"OBLIGRB","type":"radio","calc":false,"value":"OBLIGN"},{"id":"L6RB","type":"radio","calc":false,"value":"L6Y"},{"id":"L6RB","type":"radio","calc":false,"value":"L6N"},{"id":"PMTSRB","type":"radio","calc":false,"value":"PMTSY"},{"id":"PMTSRB","type":"radio","calc":false,"value":"PMTSN"},{"id":"EARNINRB","type":"radio","calc":false,"value":"EARNINCY"},{"id":"EARNINRB","type":"radio","calc":false,"value":"EARNINCN"},{"id":"EICRB","type":"radio","calc":false,"value":"EICY"},{"id":"EICRB","type":"radio","calc":false,"value":"EICN"},{"id":"REFCRRB","type":"radio","calc":false,"value":"REFCRY"},{"id":"REFCRRB","type":"radio","calc":false,"value":"REFCRN"},{"id":"A440_BOX1_1_","type":"box","calc":false,"value":""},{"id":"A440_BOX1_2_","type":"box","calc":false,"value":""},{"id":"L5Y","type":"box","calc":false,"value":""},{"id":"L4RB","type":"radio","calc":false,"value":"L4Y"},{"id":"L4RB","type":"radio","calc":false,"value":"L4N"},{"id":"L2","type":"date","calc":false,"value":""},{"id":"L6TEXT","type":"alpha","calc":false,"value":""},{"id":"A440_TPNAME_1_","type":"alpha","calc":true,"value":""},{"id":"A440_TPSSN_1_","type":"ssn","calc":true,"value":""},{"id":"A440_TPNAME_2_","type":"alpha","calc":true,"value":""},{"id":"A440_TPSSN_2_","type":"ssn","calc":true,"value":""},{"id":"L3ADDR","type":"alpha","calc":false,"value":""},{"id":"L3CITY","type":"alpha","calc":false,"value":""},{"id":"L3STATE","type":"alpha","calc":false,"value":""},{"id":"L3ZIP","type":"zip","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L7AA","type":"number","calc":false,"value":""},{"id":"L7AB","type":"number","calc":false,"value":""},{"id":"L7AC","type":"number","calc":false,"value":""},{"id":"L7BA","type":"number","calc":false,"value":""},{"id":"L7BB","type":"number","calc":false,"value":""},{"id":"L7BC","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8C","type":"number","calc":false,"value":""},{"id":"L9A","type":"number","calc":false,"value":""},{"id":"L9B","type":"number","calc":false,"value":""},{"id":"L9C","type":"number","calc":false,"value":""},{"id":"L11A","type":"number","calc":false,"value":""},{"id":"L11B","type":"number","calc":false,"value":""},{"id":"L11C","type":"number","calc":false,"value":""},{"id":"L12A","type":"number","calc":false,"value":""},{"id":"L12B","type":"number","calc":false,"value":""},{"id":"L12C","type":"number","calc":false,"value":""},{"id":"L13A","type":"number","calc":false,"value":""},{"id":"L13B","type":"number","calc":false,"value":""},{"id":"L13C","type":"number","calc":false,"value":""},{"id":"L14A","type":"number","calc":false,"value":""},{"id":"L14B","type":"number","calc":false,"value":""},{"id":"L14C","type":"number","calc":false,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"L15C","type":"number","calc":false,"value":""},{"id":"PHONE","type":"phone","calc":false,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"PNAM","type":"alpha","calc":true,"value":"Self-prepared"},{"id":"XNP","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8379.json b/test/data/fd/form/F8379.json new file mode 100755 index 00000000..4b6b904a --- /dev/null +++ b/test/data/fd/form/F8379.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8379 (Rev. November 2012)","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.251,"w":1.5,"l":63.199},{"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.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":46.984,"y":6.751,"w":0.75,"l":8.781},{"oc":"#221f1f","x":53.172,"y":23.251,"w":0.75,"l":42.161},{"oc":"#221f1f","x":6.147,"y":37.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":9.859,"y":39.751,"w":0.75,"l":89.186},{"oc":"#221f1f","x":9.859,"y":41.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":58.122,"y":41.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":80.397,"y":41.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":93.365,"y":40.896,"w":0.75,"l":1.375},{"oc":"#221f1f","x":93.365,"y":40.396,"w":0.75,"l":1.375},{"oc":"#221f1f","x":9.859,"y":42.751,"w":0.75,"l":48.349},{"oc":"#221f1f","x":58.122,"y":42.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":80.397,"y":42.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":29.659,"y":46.501,"w":0.75,"l":69.386},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":53.299},{"oc":"#221f1f","x":59.359,"y":47.251,"w":1.5,"l":23.598},{"oc":"#221f1f","x":82.872,"y":47.251,"w":1.5,"l":16.173}],"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":58.165,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.74,"y":40.396,"w":0.75,"l":0.5},{"oc":"#221f1f","x":93.365,"y":40.396,"w":0.75,"l":0.5},{"oc":"#221f1f","x":58.165,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":41.235,"w":0.75,"l":1.531}],"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":"#221f1f","x":6.19,"y":37.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":1.178,"y":49.044,"w":0,"h":0.331,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.982,"w":1.178,"h":0.456,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.982,"w":1.178,"h":0.456,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.982,"w":1.178,"h":0.393,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.982,"w":1.178,"h":0.456,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.086,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8379","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3129999999999997,"w":10.558000000000005,"clr":-1,"A":"left","R":[{"T":"(Rev.%20Novermber%202012)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.857,"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.357,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":38.606,"y":2.164,"w":12.336000000000002,"clr":-1,"A":"left","R":[{"T":"Injured%20Spouse%20Allocation","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":23.296,"y":3.8040000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.357,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8760000000000003,"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.942,"y":4.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"104","S":10,"TS":[0,14,1,0]}]},{"x":6.838,"y":5.072,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":5.072,"w":13.558000000000003,"clr":-1,"A":"left","R":[{"T":"Should%20You%20File%20This%20Form%3F%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":37.415,"y":5.072,"w":12.931000000000001,"clr":-1,"A":"left","R":[{"T":"You%20must%20complete%20this%20part.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":5.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":5.84,"w":22.98300000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20year%20for%20which%20you%20are%20filing%20this%20form.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.203,"y":5.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.16,"y":5.778,"w":19.869999999999994,"clr":-1,"A":"left","R":[{"T":"Answer%20the%20following%20questions%20for%20that%20year.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":7.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":7.34,"w":16.741000000000003,"clr":-1,"A":"left","R":[{"T":"Did%20you%20(or%20will%20you)%20file%20a%20joint%20return%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":8.09,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.497,"y":8.09,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%203.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":8.84,"w":7.057,"clr":-1,"A":"left","R":[{"T":"No.%20Stop%20here.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.801,"y":8.84,"w":22.987000000000005,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20this%20form.%20You%20are%20not%20an%20injured%20spouse.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":10.403,"w":55.65299999999997,"clr":-1,"A":"left","R":[{"T":"Did%20(or%20will)%20the%20IRS%20use%20the%20joint%20overpayment%20to%20pay%20any%20of%20the%20following%20legally%20enforceable%20past-due%20debt(s)%20owed%20only%20by%20y","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.741,"y":10.403,"w":1.741,"clr":-1,"A":"left","R":[{"T":"our%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":11.09,"w":12.206000000000003,"clr":-1,"A":"left","R":[{"T":"spouse%3F%20(see%20instructions)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":11.777,"w":54.38899999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Federal%20tax%20%E2%80%A2%20State%20income%20tax%20%E2%80%A2%20State%20unemployment%20compensation%20%E2%80%A2%20Child%20support%20%E2%80%A2%20Spousal%20support%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":9.653,"y":12.465,"w":20.931000000000008,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Federal%20nontax%20debt%20(such%20as%20a%20student%20loan)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":13.34,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.012,"y":13.34,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%204.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":14.09,"w":7.057,"clr":-1,"A":"left","R":[{"T":"No.%20Stop%20here.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.145,"y":14.09,"w":22.987000000000005,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20this%20form.%20You%20are%20not%20an%20injured%20spouse.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.922,"y":14.903,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Note.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.876000000000001,"y":14.903,"w":49.488999999999955,"clr":-1,"A":"left","R":[{"T":"%20If%20the%20past-due%20amount%20is%20for%20a%20joint%20federal%20tax%2C%20you%20may%20qualify%20for%20innocent%20spouse%20relief%20for%20the%20year%20to%20which","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.858,"y":14.903,"w":1.686,"clr":-1,"A":"left","R":[{"T":"the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.922,"y":15.59,"w":14.039000000000003,"clr":-1,"A":"left","R":[{"T":"overpayment%20was%20applied.%20See%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.748,"y":15.59,"w":10.89,"clr":-1,"A":"left","R":[{"T":"Innocent%20Spouse%20Relief%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.703,"y":15.59,"w":17.578000000000003,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions%20for%20more%20information.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":17.09,"w":24.432000000000006,"clr":-1,"A":"left","R":[{"T":"Are%20you%20legally%20obligated%20to%20pay%20this%20past-due%20amount%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.586,"y":17.84,"w":7.503000000000002,"clr":-1,"A":"left","R":[{"T":"Yes.%20Stop%20here.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.489,"y":17.84,"w":22.987000000000005,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20this%20form.%20You%20are%20not%20an%20injured%20spouse.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.922,"y":18.653,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.962,"y":18.653,"w":49.21099999999996,"clr":-1,"A":"left","R":[{"T":"If%20the%20past-due%20amount%20is%20for%20a%20joint%20federal%20tax%2C%20you%20may%20qualify%20for%20innocent%20spouse%20relief%20for%20the%20year%20to%20which","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.858,"y":18.653,"w":1.686,"clr":-1,"A":"left","R":[{"T":"the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":20.09,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.012,"y":20.09,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%205.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":21.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":21.501,"w":52.641999999999946,"clr":-1,"A":"left","R":[{"T":"Were%20you%20a%20resident%20of%20a%20community%20property%20state%20at%20any%20time%20during%20the%20tax%20year%20entered%20on%20line%201%3F%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":22.34,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.012,"y":22.34,"w":23.451,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20name(s)%20of%20the%20community%20property%20state(s)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.384,"y":22.278,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":23.84,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.012,"y":23.84,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%206.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":25.34,"w":46.47599999999998,"clr":-1,"A":"left","R":[{"T":"Did%20you%20make%20and%20report%20payments%2C%20such%20as%20federal%20income%20tax%20withholding%20or%20estimated%20tax%20payments%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":26.09,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.886,"y":26.84,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.84,"y":26.84,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%207.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":28.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":28.34,"w":37.24899999999999,"clr":-1,"A":"left","R":[{"T":"Did%20you%20have%20earned%20income%2C%20such%20as%20wages%2C%20salaries%2C%20or%20self-employment%20income%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":29.09,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.84,"y":29.09,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%208.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":29.84,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.84,"y":29.84,"w":12.115,"clr":-1,"A":"left","R":[{"T":"Skip%20line%208%20and%20go%20to%20line%209.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":31.340000000000003,"w":34.171,"clr":-1,"A":"left","R":[{"T":"Did%20(or%20will)%20you%20claim%20the%20earned%20income%20credit%20or%20additional%20child%20tax%20credit%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.713,"y":32.09,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.886,"y":32.84,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.84,"y":32.84,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%209.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":34.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":34.34,"w":28.18700000000001,"clr":-1,"A":"left","R":[{"T":"Did%20(or%20will)%20you%20claim%20a%20refundable%20tax%20credit%20(see%20instructions)%3F","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":37.322,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":37.322,"w":32.336999999999996,"clr":-1,"A":"left","R":[{"T":"Information%20About%20the%20Joint%20Tax%20Return%20for%20Which%20This%20Form%20Is%20Filed","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":38.09,"w":46.46599999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20following%20information%20exactly%20as%20it%20is%20shown%20on%20the%20tax%20return%20for%20which%20you%20are%20filing%20this%20form.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":38.778,"w":48.619999999999976,"clr":-1,"A":"left","R":[{"T":"The%20spouse%E2%80%99s%20name%20and%20social%20security%20number%20shown%20first%20on%20that%20tax%20return%20must%20also%20be%20shown%20first%20below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.34,"y":39.526,"w":25.580000000000005,"clr":-1,"A":"left","R":[{"T":"First%20name%2C%20initial%2C%20and%20last%20name%20shown%20first%20on%20the%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.602,"y":39.526,"w":15.668000000000005,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20shown%20first%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":39.536,"w":8.669,"clr":-1,"A":"left","R":[{"T":"If%20Injured%20Spouse%2C%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":80.877,"y":40.161,"w":5.2250000000000005,"clr":-1,"A":"left","R":[{"T":"check%20here","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":87.584,"y":40.067,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":10.34,"y":41.026,"w":27.211000000000006,"clr":-1,"A":"left","R":[{"T":"First%20name%2C%20initial%2C%20and%20last%20name%20shown%20second%20on%20the%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.602,"y":41.026,"w":17.021000000000008,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20shown%20second","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":41.036,"w":8.669,"clr":-1,"A":"left","R":[{"T":"If%20Injured%20Spouse%2C%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":80.877,"y":41.661,"w":5.2250000000000005,"clr":-1,"A":"left","R":[{"T":"check%20here","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":87.584,"y":41.567,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":6.694,"y":42.653,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":42.653,"w":52.19299999999995,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20only%20if%20you%20are%20divorced%20or%20legally%20separated%20from%20the%20spouse%20with%20whom%20you%20filed%20the%20joint%20return%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":43.34,"w":20.838000000000008,"clr":-1,"A":"left","R":[{"T":"you%20want%20your%20refund%20issued%20in%20your%20name%20only","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.06,"y":43.34,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":"........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.903,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":44.903,"w":46.89999999999994,"clr":-1,"A":"left","R":[{"T":"Do%20you%20want%20any%20injured%20spouse%20refund%20mailed%20to%20an%20address%20different%20from%20the%20one%20on%20your%20joint%20return%3F%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":45.59,"w":12.039000000000003,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20address.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.612,"y":44.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.189,"y":44.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.452,"y":46.232,"w":8.651000000000002,"clr":-1,"A":"left","R":[{"T":"Number%20and%20street%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.578,"y":46.232,"w":20.298000000000002,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%2C%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.146,"w":38.066999999999986,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":66.384,"y":47.126,"w":7.800000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2062474Q%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":47.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":47.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8379","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.572,"y":47.072,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2011-2012)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.664,"y":3.8970000000000002,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208379%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8379.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":11.801,"y":23.09,"w":32.861,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%206%20through%209%20and%20go%20to%20Part%20II%20and%20complete%20the%20rest%20of%20this%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.84,"y":26.09,"w":32.861,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%207%20through%209%20and%20go%20to%20Part%20II%20and%20complete%20the%20rest%20of%20this%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.84,"y":32.09,"w":27.785,"clr":-1,"A":"left","R":[{"T":"Skip%20line%209%20and%20go%20to%20Part%20II%20and%20complete%20the%20rest%20of%20this%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.886,"y":35.84,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.886,"y":35.09,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.841999999999999,"y":35.09,"w":21.09700000000001,"clr":-1,"A":"left","R":[{"T":"Go%20to%20Part%20II%20and%20complete%20the%20rest%20of%20this%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.811,"y":35.84,"w":27.913999999999998,"clr":-1,"A":"left","R":[{"T":"Stop%20here.%20Do%20not%20file%20this%20form.%20You%20are%20not%20an%20injured%20spouse.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.922,"y":19.341,"w":42.52599999999998,"clr":-1,"A":"left","R":[{"T":"overpayment%20was%20applied.%20See%20Innocent%20Spouse%20Relief%2C%20in%20the%20instructions%20for%20more%20information.","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":4808,"AM":0,"x":46.909,"y":6.157,"w":8.807,"h":0.833,"TU":"Line 1. Enter the tax year for which you are filing this form.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6TEXT","EN":0},"TI":4816,"AM":0,"x":53.171,"y":22.657,"w":42.178,"h":0.833,"TU":"Enter the name(s) of the community property state(s)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A440_TPNAME_1_","EN":0},"TI":4826,"AM":1024,"x":9.941,"y":40.392,"w":48.098,"h":0.843},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A440_TPSSN_1_","EN":0},"TI":4827,"AM":1024,"x":58.307,"y":40.438,"w":22.007,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A440_TPNAME_2_","EN":0},"TI":4829,"AM":1024,"x":9.941,"y":41.938,"w":48.098,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A440_TPSSN_2_","EN":0},"TI":4830,"AM":1024,"x":58.307,"y":41.938,"w":22.007,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3ADDR","EN":0},"TI":4835,"AM":0,"x":29.659,"y":45.907,"w":34.215,"h":0.833,"TU":"Line 12. If \"yes\", enter the address, number and street."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3CITY","EN":0},"TI":4836,"AM":0,"x":65.059,"y":45.911,"w":14.825,"h":0.833,"TU":"City. town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3STATE","EN":0},"TI":4837,"AM":0,"x":79.791,"y":45.962,"w":5.657,"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":"L3ZIP","EN":0},"TI":4838,"AM":0,"x":86.172,"y":45.857,"w":12.205,"h":0.833,"TU":"Zip code."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JOINTY","EN":0},"TI":4809,"AM":0,"x":9.808,"y":8.233,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JOINTN","EN":0},"TI":4810,"AM":0,"x":9.87,"y":8.964,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"JOINTRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OVRPAYY","EN":0},"TI":4811,"AM":0,"x":9.87,"y":13.428,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OVERPAYN","EN":0},"TI":4812,"AM":0,"x":9.796,"y":14.218,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"OVERPARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OBLIGY","EN":0},"TI":4813,"AM":0,"x":9.775,"y":17.968,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OBLIGN","EN":0},"TI":4814,"AM":0,"x":9.796,"y":20.18,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"OBLIGRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6Y","EN":0},"TI":4815,"AM":0,"x":9.775,"y":22.46,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6N","EN":0},"TI":4817,"AM":0,"x":9.796,"y":23.937,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"L6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PMTSY","EN":0},"TI":4818,"AM":0,"x":9.796,"y":26.197,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PMTSN","EN":0},"TI":4819,"AM":0,"x":9.796,"y":26.932,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"PMTSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EARNINCY","EN":0},"TI":4820,"AM":0,"x":9.796,"y":29.191,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EARNINCN","EN":0},"TI":4821,"AM":0,"x":9.796,"y":29.954,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"EARNINRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EICY","EN":0},"TI":4822,"AM":0,"x":9.796,"y":32.186,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EICN","EN":0},"TI":4823,"AM":0,"x":9.796,"y":32.976,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"EICRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REFCRY","EN":0},"TI":4824,"AM":0,"x":9.796,"y":35.181,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REFCRN","EN":0},"TI":4825,"AM":0,"x":9.796,"y":35.943,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"REFCRRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A440_BOX1_1_","EN":0},"TI":4828,"AM":0,"x":93.31,"y":40.231,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A440_BOX1_2_","EN":0},"TI":4831,"AM":0,"x":93.365,"y":41.744,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5Y","EN":0},"TI":4832,"AM":0,"x":93.195,"y":43.374,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4Y","EN":0},"TI":4833,"AM":0,"x":86.584,"y":44.988,"w":1.464,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4N","EN":0},"TI":4834,"AM":0,"x":93.376,"y":44.996,"w":1.464,"h":0.833,"checked":false}],"id":{"Id":"L4RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":5.251,"w":0.75,"l":45.874},{"oc":"#221f1f","x":54.409,"y":5.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":5.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":5.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":6.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":17.284,"y":6.751,"w":0.75,"l":37.211},{"oc":"#221f1f","x":54.409,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":8.251,"w":0.75,"l":45.874},{"oc":"#221f1f","x":54.409,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":9.751,"w":0.75,"l":45.874},{"oc":"#221f1f","x":54.409,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":14.936},{"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":45.874},{"oc":"#221f1f","x":54.409,"y":11.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":11.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":12.751,"w":0.75,"l":45.874},{"oc":"#221f1f","x":54.409,"y":12.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":12.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":14.252,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":14.252,"w":0.75,"l":45.874},{"oc":"#221f1f","x":54.409,"y":14.252,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":14.252,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":14.252,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":15.752,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":15.752,"w":0.75,"l":45.874},{"oc":"#221f1f","x":54.409,"y":15.752,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":15.752,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":15.752,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":17.252,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":17.252,"w":0.75,"l":45.874},{"oc":"#221f1f","x":54.409,"y":17.252,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":17.252,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":17.252,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":18.752,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.622,"y":18.752,"w":1.125,"l":45.874},{"oc":"#221f1f","x":54.409,"y":18.752,"w":1.125,"l":14.936},{"oc":"#221f1f","x":69.259,"y":18.752,"w":1.125,"l":14.936},{"oc":"#221f1f","x":84.109,"y":18.752,"w":1.125,"l":14.936},{"oc":"#221f1f","x":6.147,"y":19.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.809,"y":23.251,"w":0.75,"l":54.536},{"oc":"#221f1f","x":69.259,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":23.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.809,"y":24.751,"w":0.75,"l":27.311},{"oc":"#221f1f","x":42.034,"y":24.751,"w":0.75,"l":27.311},{"oc":"#221f1f","x":69.259,"y":24.751,"w":0.75,"l":11.273},{"oc":"#221f1f","x":80.397,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":85.291,"y":24.064,"w":0.75,"l":1.375},{"oc":"#221f1f","x":85.291,"y":23.564,"w":0.75,"l":1.375},{"oc":"#221f1f","x":89.164,"y":24.751,"w":0.75,"l":9.881},{"oc":"#221f1f","x":14.809,"y":25.501,"w":0.75,"l":59.486},{"oc":"#221f1f","x":74.209,"y":25.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":26.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":54.452,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":5.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":5.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":5.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":6.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":6.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":6.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":8.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":8.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":8.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":11.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":11.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":11.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":12.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":12.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":12.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":69.302,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":14.852,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.852,"y":23.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":42.077,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.666,"y":23.564,"w":0.75,"l":0.5},{"oc":"#221f1f","x":85.291,"y":23.564,"w":0.75,"l":0.5},{"oc":"#221f1f","x":89.207,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":25.485,"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":"#221f1f","x":6.19,"y":18.751,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":11.913000000000006,"clr":-1,"A":"left","R":[{"T":"Form%208379%20(Rev.%2011-2012)%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":10,"TS":[0,14,1,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":29.506000000000004,"clr":-1,"A":"left","R":[{"T":"Allocation%20Between%20Spouses%20of%20Items%20on%20the%20Joint%20Tax%20Return%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":65.23,"y":2.822,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":25.555,"y":3.8710000000000004,"w":7.391000000000001,"clr":-1,"A":"left","R":[{"T":"Allocated%20Items","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.31,"y":3.532,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.543,"y":3.532,"w":7.002000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20shown%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.044,"y":4.22,"w":6.205000000000001,"clr":-1,"A":"left","R":[{"T":"on%20joint%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.192,"y":3.532,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":73.483,"y":3.532,"w":5.352000000000001,"clr":-1,"A":"left","R":[{"T":"Allocated%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.406,"y":4.22,"w":6.557,"clr":-1,"A":"left","R":[{"T":"injured%20spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.071,"y":3.5389999999999997,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.305,"y":3.5389999999999997,"w":5.630000000000001,"clr":-1,"A":"left","R":[{"T":"Allocated%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.015,"y":4.214,"w":5.853000000000001,"clr":-1,"A":"left","R":[{"T":"other%20spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":5.84,"w":3.594,"clr":-1,"A":"left","R":[{"T":"Income%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.765,"y":5.84,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"a.%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":5.84,"w":13.856,"clr":-1,"A":"left","R":[{"T":"Income%20reported%20on%20Form%20W-2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.868,"y":7.34,"w":1.723,"clr":-1,"A":"left","R":[{"T":"b.%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.533,"y":7.34,"w":7.242,"clr":-1,"A":"left","R":[{"T":"All%20other%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":8.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":8.84,"w":10.319000000000003,"clr":-1,"A":"left","R":[{"T":"Adjustments%20to%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":10.341,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":10.341,"w":19.393000000000008,"clr":-1,"A":"left","R":[{"T":"Standard%20deduction%20or%20Itemized%20deductions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":11.841,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":11.841,"w":10.224999999999998,"clr":-1,"A":"left","R":[{"T":"Number%20of%20exemptions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":13.341,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":13.341,"w":3.759,"clr":-1,"A":"left","R":[{"T":"Credits%20(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.776,"y":13.341,"w":3.3329999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.933,"y":13.341,"w":15.096000000000004,"clr":-1,"A":"left","R":[{"T":"include%20any%20earned%20income%20credit)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":14.841,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":14.841,"w":5.186,"clr":-1,"A":"left","R":[{"T":"Other%20taxes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":16.341,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":16.341,"w":12.575000000000003,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":17.778,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.961,"y":17.778,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Payments","S":3,"TS":[0,12,0,0]}]},{"x":6.296,"y":18.572,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":18.572,"w":5.168000000000001,"clr":-1,"A":"left","R":[{"T":"Signature.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.383,"y":18.572,"w":38.914999999999985,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20are%20filing%20Form%208379%20by%20itself%20and%20not%20with%20your%20tax%20return.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.927,"y":20.533,"w":5.148,"clr":-1,"A":"left","R":[{"T":"knowledge.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.193,"y":21.357,"w":7.057,"clr":-1,"A":"left","R":[{"T":"Keep%20a%20copy%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.017,"y":21.857,"w":5.686,"clr":-1,"A":"left","R":[{"T":"this%20form%20for%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.873,"y":22.357,"w":5.648000000000001,"clr":-1,"A":"left","R":[{"T":"your%20records","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.29,"y":21.438,"w":11.780000000000001,"clr":-1,"A":"left","R":[{"T":"Injured%20spouse%E2%80%99s%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.74,"y":21.438,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.115,"y":21.438,"w":10.966000000000001,"clr":-1,"A":"left","R":[{"T":"Phone%20number%20(optional)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":23.436,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":24.186,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":24.936,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":15.29,"y":22.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":42.171,"y":22.938,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer's%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.74,"y":22.938,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":23.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":80.877,"y":23.838,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.645,"y":22.939,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.29,"y":24.594,"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.939,"y":24.532,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.69,"y":24.595,"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.929,"y":24.532,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":15.29,"y":25.344,"w":7.298,"clr":-1,"A":"left","R":[{"T":"Firm's%20Address%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.07,"y":25.282,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.69,"y":25.344,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":26.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":26.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8379","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.572,"y":26.072,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2011-2012)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.533,"w":66.88699999999996,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20form%20and%20any%20accompanying%20schedules%20or%20statements%20and%20to%20the%20best%20of%20my%20knowledge%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.935,"y":20.033,"w":65.47199999999994,"clr":-1,"A":"left","R":[{"T":"and%20belief%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%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":4839,"AM":1024,"x":23.45,"y":1.937,"w":39.885,"h":0.983},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":4840,"AM":1024,"x":65.593,"y":1.937,"w":25.271,"h":0.983},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7AA","EN":0},"TI":4841,"AM":0,"x":54.636,"y":5.401,"w":14.499,"h":1.334,"TU":"Line 13a (a). Income reported on Form W-2. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7AB","EN":0},"TI":4842,"AM":0,"x":69.482,"y":5.422,"w":14.499,"h":1.334,"TU":"Line 13a (b). Income reported on Form W-2. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7AC","EN":0},"TI":4843,"AM":0,"x":84.081,"y":5.442,"w":14.499,"h":1.334,"TU":"Line 13a (c). Income reported on Form W-2. Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7BA","EN":0},"TI":4844,"AM":0,"x":54.666,"y":6.929,"w":14.499,"h":1.334,"TU":"Line 13b(a) All other income. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7BB","EN":0},"TI":4845,"AM":0,"x":69.512,"y":6.95,"w":14.499,"h":1.334,"TU":"Line 13b (b). All other income. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7BC","EN":0},"TI":4846,"AM":0,"x":84.111,"y":6.971,"w":14.499,"h":1.334,"TU":"Line 13b(c). All other income. Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":4847,"AM":0,"x":54.726,"y":8.37,"w":14.499,"h":1.334,"TU":"Line 14 (a). Adjustments to income. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":4848,"AM":0,"x":69.572,"y":8.391,"w":14.499,"h":1.334,"TU":"Line 14(b). Adjustments to income. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":4849,"AM":0,"x":84.171,"y":8.412,"w":14.499,"h":1.334,"TU":"Line 14(c). Adjustments to income. Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":4850,"AM":0,"x":54.83,"y":9.899,"w":14.499,"h":1.334,"TU":"Line 15 (a). Standard deduction or Itemized deductions. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":4851,"AM":0,"x":69.601,"y":9.92,"w":14.499,"h":1.334,"TU":"Line 15(b). Standard deduction or Itemized deductions. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":4852,"AM":0,"x":84.201,"y":9.94,"w":14.499,"h":1.334,"TU":"Line 15(c). Standard deduction or Itemized deductions. Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":4853,"AM":0,"x":54.68,"y":11.378,"w":14.499,"h":1.334,"TU":"Line 16(a). Number of exemptions. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":4854,"AM":0,"x":69.527,"y":11.399,"w":14.499,"h":1.334,"TU":"Line 16(b). Number of exemptions. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C","EN":0},"TI":4855,"AM":0,"x":84.126,"y":11.419,"w":14.499,"h":1.334,"TU":"Line 16(c). Number of exemptions. Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":4856,"AM":0,"x":54.71,"y":12.906,"w":14.499,"h":1.334,"TU":"Line 17(a). Credits (do not include any earned income credit). Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":4857,"AM":0,"x":69.557,"y":12.927,"w":14.499,"h":1.334,"TU":"Line 17(b). Credits. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C","EN":0},"TI":4858,"AM":0,"x":84.156,"y":12.947,"w":14.499,"h":1.334,"TU":"Line 17. Credits (do not include any earned income credit). Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":4859,"AM":0,"x":54.77,"y":14.347,"w":14.499,"h":1.334,"TU":"Line 18(a). Other taxes. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":4860,"AM":0,"x":69.617,"y":14.368,"w":14.499,"h":1.334,"TU":"Line 18(b). Other taxes. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13C","EN":0},"TI":4861,"AM":0,"x":84.216,"y":14.388,"w":14.499,"h":1.334,"TU":"Line 18(c). Other taxes. Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A","EN":0},"TI":4862,"AM":0,"x":54.8,"y":15.876,"w":14.499,"h":1.334,"TU":"Line 19(a). Federal income tax withheld. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":4863,"AM":0,"x":69.646,"y":15.897,"w":14.499,"h":1.334,"TU":"Line 19(b). Federal income tax withheld. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C","EN":0},"TI":4864,"AM":0,"x":84.246,"y":15.917,"w":14.499,"h":1.334,"TU":"Line 19(c). Federal income tax withheld. Allocated to other spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":4865,"AM":0,"x":54.729,"y":17.305,"w":14.499,"h":1.334,"TU":"Line 20(a). Payments. Amount shown on joint return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":4866,"AM":0,"x":69.575,"y":17.326,"w":14.499,"h":1.334,"TU":"Line 20(b). Payments. Allocated to injured spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C","EN":0},"TI":4867,"AM":0,"x":84.174,"y":17.346,"w":14.499,"h":1.334,"TU":"Line 20(c). Payments. Allocated to other spouse."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":4868,"AM":0,"x":81.819,"y":22.268,"w":17.16,"h":0.967,"TU":"Phone number (optional)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":4869,"AM":1024,"x":42.891,"y":23.925,"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":4870,"AM":1024,"x":25.31,"y":24.836,"w":26.446,"h":0.833,"V":"Self-prepared"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"XNP","EN":0},"TI":4871,"AM":1024,"x":6.364,"y":25.673,"w":3.546,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8396.content.txt b/test/data/fd/form/F8396.content.txt new file mode 100755 index 00000000..6c14273a --- /dev/null +++ b/test/data/fd/form/F8396.content.txt @@ -0,0 +1,137 @@ +Form +8396 +Department of the Treasury +Internal Revenue Service (99) +Mortgage Interest Credit +(For Holders of Qualified Mortgage Credit Certificates Issued by +State or Local Governmental Units or Agencies) +a + +Information about Form 8396 and its instructions is at +www.irs.gov/form8396 +. +a + +Attach to Form 1040 or 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +138 +Name(s) shown on your tax return +Your social security number +Enter the address of your main home to which the qualified mortgage certificate relates if it is different from the address sho +wn on your tax return. +Name of Issuer of Mortgage Credit Certificate +Mortgage Credit Certificate Number +Issue Date +Before you begin Part I, + figure the amounts of any of the following credits you are claiming: Credit for the elderly or the disabled, +alternative motor vehicle credit, and qualified plug-in electric drive motor vehicle credit. +Part I +Current Year Mortgage Interest Credit +1 + +Interest paid on the certified indebtedness amount. If someone else (other than your spouse if +filing jointly) also held an interest in the home, enter only your share of the interest paid . . . +1 +2 + +Enter the certificate credit rate shown on your +mortgage credit certificate. Do not +enter the +interest rate on your home mortgage +.................... +2 +% +3 + +If line 2 is 20% or less, multiply line 1 by line 2. If line 2 is more than 20%, or you refinanced +your mortgage and received a reissued certificate, see the instructions for the amount to enter . +3 +You must reduce your deduction for home mortgage interest on Schedule A (Form 1040) +by the amount on line 3. +4 +Enter any 2010 credit carryforward from line 16 of your 2012 Form 8396 +........ +4 +5 +Enter any 2011 credit carryforward from line 14 of your 2012 Form 8396 +........ +5 +6 +Enter any 2012 credit carryforward from line 17 of your 2012 Form 8396 +........ +6 +7 +Add lines 3 through 6 +......................... +7 +8 + +Limitation based on tax liability. Enter the amount from the Credit Limit Worksheet (see +instructions) +............................ +8 +9 + + +Current year mortgage interest credit. +Enter the +smaller +of line 7 or line 8. Also include this +amount in the total on Form 1040, line 53, or Form 1040NR, line 50. Check box +c +on that line and +enter “8396” in the space next to that box . +.................. +9 +Part II +Mortgage Interest Credit Carryforward to 2014. +(Complete +only +if line 9 is less than line 7.) +10 +Add lines 3 and 4 +.......................... +10 +11 +Enter the amount from line 7 +....................... +11 +12 +Enter the +larger +of line 9 or line 10 +..................... +12 +13 +Subtract line 12 from line 11 +....................... +13 +14 2012 credit carryforward to 2014. +Enter the + smaller +of line 6 or line 13 +........ +14 +15 +Subtract line 14 from line 13 +....................... +15 +16 2011 credit carryforward to 2014. +Enter the +smaller +of line 5 or line 15 +........ +16 +17 2013 credit carryforward to 2014. +Subtract line 9 from line 3. If zero or less, enter -0- . . . +17 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 62502X +Form +8396 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8396.fields.json b/test/data/fd/form/F8396.fields.json new file mode 100755 index 00000000..a3b0d50e --- /dev/null +++ b/test/data/fd/form/F8396.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"MCCNAME","type":"alpha","calc":false,"value":""},{"id":"MCCNO","type":"alpha","calc":false,"value":""},{"id":"MCCDATE","type":"date","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"mask","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8396.json b/test/data/fd/form/F8396.json new file mode 100755 index 00000000..46951c44 --- /dev/null +++ b/test/data/fd/form/F8396.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8396","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"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.064,"y":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":7.5,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.157,"y":7.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.5,"w":1.125,"l":35.973},{"oc":"#221f1f","x":42.032,"y":10.5,"w":1.125,"l":37.211},{"oc":"#221f1f","x":79.157,"y":10.5,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.145,"y":12.75,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.145,"y":12,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":12.75,"w":0.75,"l":92.899},{"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":79.157,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":16.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.87,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21.75,"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":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":24.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24.75,"w":1.125,"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":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":79.157,"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":6.145,"y":31.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":32.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.145,"y":31.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":32.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":33.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":33.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":35.25,"w":0.75,"l":3.798},{"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":79.157,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":38.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":39.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":39.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":39.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":42.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":42.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":42.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.5,"l":45.818},{"oc":"#221f1f","x":51.932,"y":44.25,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.82,"y":44.25,"w":1.5,"l":11.354}],"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":79.2,"y":5.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":42.075,"y":8.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":8.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":12.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":12.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":14.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":23.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":38.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":38.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":39.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":39.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":41.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":41.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":41.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":42.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":42.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":43.484,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":12,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.2,"y":18.75,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":79.2,"y":28.5,"w":3.712,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.188,"y":31.5,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"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.415,"y":2.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8396","S":-1,"TS":[0,27,0,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":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":38.893,"y":2.237,"w":11.18,"clr":-1,"A":"left","R":[{"T":"Mortgage%20Interest%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":31.47,"y":3.081,"w":31.195999999999998,"clr":-1,"A":"left","R":[{"T":"(For%20Holders%20of%20Qualified%20Mortgage%20Credit%20Certificates%20Issued%20by%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.761,"y":3.644,"w":22.942999999999998,"clr":-1,"A":"left","R":[{"T":"State%20or%20Local%20Governmental%20Units%20or%20Agencies)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.411,"y":4.209,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.681,"y":4.303,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208396%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.121,"y":4.303,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8396","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.895,"y":4.303,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.279,"y":4.928,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.549,"y":5.021,"w":15.171000000000003,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%201040NR.","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-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.856,"y":3.2670000000000003,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.201,"y":3.2670000000000003,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.963,"y":4.406,"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.852,"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.853,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"138","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.669,"w":15.372000000000005,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20your%20tax%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.638,"y":5.669,"w":13.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.169,"w":55.230999999999966,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20address%20of%20your%20main%20home%20to%20which%20the%20qualified%20mortgage%20certificate%20relates%20if%20it%20is%20different%20from%20the%20address%20sho","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.387,"y":7.169,"w":10.075000000000003,"clr":-1,"A":"left","R":[{"T":"wn%20on%20your%20tax%20return.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.669,"w":20.63,"clr":-1,"A":"left","R":[{"T":"Name%20of%20Issuer%20of%20Mortgage%20Credit%20Certificate%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.513,"y":8.669,"w":16.316,"clr":-1,"A":"left","R":[{"T":"Mortgage%20Credit%20Certificate%20Number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.638,"y":8.669,"w":5.0009999999999994,"clr":-1,"A":"left","R":[{"T":"Issue%20Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.288,"w":11.222000000000001,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%20Part%20I%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.297,"y":10.288,"w":46.85799999999999,"clr":-1,"A":"left","R":[{"T":"%20figure%20the%20amounts%20of%20any%20of%20the%20following%20credits%20you%20are%20claiming%3A%20Credit%20for%20the%20elderly%20or%20the%20disabled%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.963,"w":38.81999999999999,"clr":-1,"A":"left","R":[{"T":"alternative%20motor%20vehicle%20credit%2C%20and%20qualified%20plug-in%20electric%20drive%20motor%20vehicle%20credit.","S":3,"TS":[0,12,0,0]}]},{"x":6.836,"y":11.821,"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":11.821,"w":18.445000000000004,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Mortgage%20Interest%20Credit%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":12.652,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.652,"w":42.06599999999998,"clr":-1,"A":"left","R":[{"T":"Interest%20paid%20on%20the%20certified%20indebtedness%20amount.%20If%20someone%20else%20(other%20than%20your%20spouse%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":13.339,"w":38.636999999999986,"clr":-1,"A":"left","R":[{"T":"filing%20jointly)%20also%20held%20an%20interest%20in%20the%20home%2C%20enter%20only%20your%20share%20of%20the%20interest%20paid","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.944,"y":13.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.006,"y":13.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.068,"y":13.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":13.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":14.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.902,"w":20.668000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20certificate%20credit%20rate%20shown%20on%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.442,"y":14.902,"w":16.774,"clr":-1,"A":"left","R":[{"T":"mortgage%20credit%20certificate.%20Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.38,"y":14.902,"w":4.242,"clr":-1,"A":"left","R":[{"T":"enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":15.588999999999999,"w":16.337000000000003,"clr":-1,"A":"left","R":[{"T":"interest%20rate%20on%20your%20home%20mortgage","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.872,"y":15.588999999999999,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.203,"y":15.588999999999999,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":17.152,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.152,"w":41.12199999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%202%20is%2020%25%20or%20less%2C%20multiply%20line%201%20by%20line%202.%20If%20line%202%20is%20more%20than%2020%25%2C%20or%20you%20refinanced%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":17.839,"w":42.22999999999997,"clr":-1,"A":"left","R":[{"T":"your%20mortgage%20and%20received%20a%20reissued%20certificate%2C%20see%20the%20instructions%20for%20the%20amount%20to%20enter.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":17.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.652,"w":41.98099999999999,"clr":-1,"A":"left","R":[{"T":"You%20must%20reduce%20your%20deduction%20for%20home%20mortgage%20interest%20on%20Schedule%20A%20(Form%201040)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":19.339,"w":11.389000000000001,"clr":-1,"A":"left","R":[{"T":"by%20the%20amount%20on%20line%203.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":20.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.839,"w":32.02600000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20any%202010%20credit%20carryforward%20from%20line%2016%20of%20your%202012%20Form%208396","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":20.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":20.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":22.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.339,"w":32.02600000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20any%202011%20credit%20carryforward%20from%20line%2014%20of%20your%202012%20Form%208396","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":22.339,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":22.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.839,"w":32.02600000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20any%202012%20credit%20carryforward%20from%20line%2017%20of%20your%202012%20Form%208396","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":23.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%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":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.339,"w":9.559000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%203%20through%206","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":25.339,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.902,"w":38.99199999999999,"clr":-1,"A":"left","R":[{"T":"Limitation%20based%20on%20tax%20liability.%20Enter%20the%20amount%20from%20the%20Credit%20Limit%20Worksheet%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":27.589,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":27.589,"w":37.32399999999998,"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":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":29.214,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.214,"w":18.648,"clr":-1,"A":"left","R":[{"T":"Current%20year%20mortgage%20interest%20credit.%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":40.112,"y":29.214,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":47.061,"y":29.214,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":52.91,"y":29.214,"w":15.503000000000004,"clr":-1,"A":"left","R":[{"T":"of%20line%207%20or%20line%208.%20Also%20include%20this%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.902,"w":35.514,"clr":-1,"A":"left","R":[{"T":"amount%20in%20the%20total%20on%20Form%201040%2C%20line%2053%2C%20or%20Form%201040NR%2C%20line%2050.%20Check%20box%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":65.663,"y":29.902,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":67.077,"y":29.902,"w":7.188000000000001,"clr":-1,"A":"left","R":[{"T":"on%20that%20line%20and%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.891,"y":30.589,"w":19.247000000000003,"clr":-1,"A":"left","R":[{"T":"enter%20%E2%80%9C8396%E2%80%9D%20in%20the%20space%20next%20to%20that%20box%20.","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":41.004,"y":30.589,"w":25.268400000000003,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":80.376,"y":30.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"x":6.582,"y":31.320999999999998,"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":31.320999999999998,"w":22.686,"clr":-1,"A":"left","R":[{"T":"Mortgage%20Interest%20Credit%20Carryforward%20to%202014.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.663,"y":31.320999999999998,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"(Complete%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":61.068,"y":31.320999999999998,"w":2.259,"clr":-1,"A":"left","R":[{"T":"only%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.951,"y":31.320999999999998,"w":11.910000000000004,"clr":-1,"A":"left","R":[{"T":"if%20line%209%20is%20less%20than%20line%207.)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.839,"w":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%203%20and%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":32.839,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":34.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.339,"w":12.690000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":34.339,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":34.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"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":17.564,"y":35.839,"w":3.073,"clr":-1,"A":"left","R":[{"T":"larger%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.317,"y":35.839,"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":34.813,"y":35.839,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":37.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.339,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2012%20from%20line%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":37.339,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":37.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.839,"w":16.003000000000007,"clr":-1,"A":"left","R":[{"T":"2012%20credit%20carryforward%20to%202014.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.642,"y":38.839,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.888,"y":38.839,"w":4.052,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.156,"y":38.839,"w":7.9090000000000025,"clr":-1,"A":"left","R":[{"T":"of%20line%206%20or%20line%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":38.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.339,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014%20from%20line%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":40.339,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":41.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.839,"w":16.003000000000007,"clr":-1,"A":"left","R":[{"T":"2011%20credit%20carryforward%20to%202014.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.642,"y":41.839,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.318,"y":41.839,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.156,"y":41.839,"w":7.9090000000000025,"clr":-1,"A":"left","R":[{"T":"of%20line%205%20or%20line%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":41.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":41.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":43.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.339,"w":16.003000000000007,"clr":-1,"A":"left","R":[{"T":"2013%20credit%20carryforward%20to%202014.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.642,"y":43.339,"w":22.447000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%209%20from%20line%203.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.939,"y":43.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.001,"y":43.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.063,"y":43.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":43.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":44.107,"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":65.234,"y":44.125,"w":7.651,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2062502X%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.282,"y":44.071,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.424,"y":44.071,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8396","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.247,"y":44.071,"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":4872,"AM":1024,"x":6.114,"y":6.718,"w":62.876,"h":0.833,"TU":"Name(s) shown on your tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4873,"AM":1024,"x":79.996,"y":6.676,"w":11.999,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":4874,"AM":0,"x":6.214,"y":8.249,"w":33.942,"h":0.833,"TU":"Enter the address of your main home to which the qualified mortgage certificate relates if it is different from the address shown on your tax return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":4875,"AM":0,"x":41.272,"y":8.226,"w":21.738,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":4876,"AM":0,"x":66.214,"y":8.111,"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":4877,"AM":0,"x":74.442,"y":8.222,"w":16.423,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCNAME","EN":0},"TI":4878,"AM":0,"x":6.229,"y":9.801,"w":35.338,"h":0.833,"TU":"Name of Issuer of Mortgage Credit Certificate."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCNO","EN":0},"TI":4879,"AM":0,"x":44.719,"y":9.824,"w":17.167,"h":0.833,"TU":"Mortgage Credit Certificate Number."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MCCDATE","EN":0},"TI":4880,"AM":0,"x":79.893,"y":9.665,"w":15.215,"h":0.833,"TU":"Issue Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":4881,"AM":0,"x":82.948,"y":13.416,"w":12.324,"h":0.833,"TU":"Line 1. Interest paid on the certified indebtedness amount. If someone else (other than your spouse if filing jointly) also held an interest in the home, enter only your share of the interest paid."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":4882,"AM":0,"x":82.925,"y":15.79,"w":12.381,"h":0.833,"TU":"Line 2. Enter the certificate credit rate shown on your mortgage credit certificate. Do not enter the interest rate on your home mortgage.","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4883,"AM":0,"x":82.894,"y":18.005,"w":12.357,"h":0.833,"TU":"Line 3. If line 2 is 20% or less, multiply line 1 by line 2. If line 2 is more than 20%, or you refinanced your mortgage and received a reissued certificate, see the instructions for the amount to enter."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4884,"AM":0,"x":82.861,"y":20.882,"w":12.425,"h":0.853,"TU":"Line 4. Enter any 2010 credit carryforward from line 16 of your 2012 Form 8396."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4885,"AM":0,"x":82.948,"y":22.498,"w":12.324,"h":0.833,"TU":"Line 5. Enter any 2011 credit carryforward from line 14 of your 2012 Form 8396."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4886,"AM":0,"x":82.948,"y":23.916,"w":12.324,"h":0.833,"TU":"Line 6. Enter any 2012 credit carryforward from line 17 of your 2012 Form 8396."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4887,"AM":1024,"x":82.873,"y":25.451,"w":12.399,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":4888,"AM":0,"x":82.894,"y":27.618,"w":12.432,"h":0.87,"TU":"Line 8. Limitation based on tax liability. Enter the amount from the Credit Limit Worksheet (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4889,"AM":1024,"x":82.935,"y":30.632,"w":12.425,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4890,"AM":1024,"x":82.873,"y":32.998,"w":12.324,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4891,"AM":1024,"x":82.873,"y":34.451,"w":12.399,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4892,"AM":1024,"x":82.948,"y":35.889,"w":12.324,"h":0.866},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4893,"AM":1024,"x":82.948,"y":37.369,"w":12.324,"h":0.866},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4894,"AM":1024,"x":82.948,"y":38.889,"w":12.324,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4895,"AM":1024,"x":82.948,"y":40.451,"w":12.324,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":4896,"AM":1024,"x":82.948,"y":41.862,"w":12.324,"h":0.838},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":4897,"AM":1024,"x":82.948,"y":43.424,"w":12.324,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8453.content.txt b/test/data/fd/form/F8453.content.txt new file mode 100755 index 00000000..370fdaf5 --- /dev/null +++ b/test/data/fd/form/F8453.content.txt @@ -0,0 +1,95 @@ +State +Form +8453 +Department of the Treasury +Internal Revenue Service +U.S. Individual Income Tax Transmittal for an IRS +e-file +Return +For the year January 1–December 31, 2013 +a + See instructions on back. +a + +Information about Form 8453 and its instructions is available at +www.irs.gov/form8453 +. +OMB No. 1545-0074 +20 +13 +Please +print + +or +type. +P +R +I +N +T + +C +L +E +A +R +L +Y +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse’s social security number +c +Important! +You +must +enter +your SSN(s) above. +c +Home address (number and street). If you have a P.O. box, see instructions. +Apt. no. +City, town or post office, state, and ZIP code (If a foreign address, also complete spaces below.) +Foreign country name +Foreign province/state/county +Foreign postal code +FILE THIS FORM ONLY IF YOU ARE ATTACHING ONE OR MORE +OF THE FOLLOWING FORMS OR SUPPORTING DOCUMENTS. +Check the applicable box(es) to identify the attachments. +Form 1098-C, Contributions of Motor Vehicles, Boats, and Airplanes (or equivalent contemporaneous written +acknowledgement) +Form 2848, Power of Attorney and Declaration of Representative (or POA that states the agent is granted authority to sign the +return) +Form 3115, Application for Change in Accounting Method +Form 3468 - attach a copy of the first page of NPS Form 10-168, Historic Preservation Certification Application (Part 2— +Description of Rehabilitation), with an indication that it was received by the Department of the Interior or the State Historic + +Preservation Officer, together with proof that the building is a certified historic structure (or that such status has been +requested) +Form 4136 - attach the Certificate for Biodiesel and, if applicable, Statement of Biodiesel Reseller or a certificate from the +provider identifying the product as renewable diesel and, if applicable, a statement from the reseller +Form 5713, International Boycott Report +Form 8283, Noncash Charitable Contributions, Section A, (if any statement or qualified appraisal is required) or Section B, +Donated Property, and any related attachments (including any qualified appraisal or partnership Form 8283) +Form 8332, Release / Revocation of Release of Claim to Exemption for Child by Custodial Parent (or certain pages from a +divorce decree or separation agreement, that went into effect after 1984 and before 2009) (see instructions) +Form 8858, Information Return of U.S. Persons With Respect to Foreign Disregarded Entities +Form 8864 - attach the Certificate for Biodiesel and, if applicable, Statement of Biodiesel Reseller or a certificate from the +provider identifying the product as renewable diesel and, if applicable, a statement from the reseller +Form 8885, Health Coverage Tax Credit, and all required attachments +Form 8949, Sales and Other Dispositions of Capital Assets, (or a statement with the same information), if you elect not to +report your transactions electronically on Form 8949 +DO NOT SIGN THIS FORM. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 62766T +Form +8453 + (2013) +City +ZIP Code +Declaration Control Number (DCN) +00 - +- 3 + - +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8453.fields.json b/test/data/fd/form/F8453.fields.json new file mode 100755 index 00000000..9c3bdec0 --- /dev/null +++ b/test/data/fd/form/F8453.fields.json @@ -0,0 +1 @@ +[{"id":"F1098C","type":"box","calc":false,"value":""},{"id":"F2848","type":"box","calc":false,"value":""},{"id":"F3115","type":"box","calc":false,"value":""},{"id":"F3468","type":"box","calc":false,"value":""},{"id":"F4136","type":"box","calc":false,"value":""},{"id":"F5713","type":"box","calc":false,"value":""},{"id":"F8283","type":"box","calc":false,"value":""},{"id":"F8332","type":"box","calc":false,"value":""},{"id":"F8858","type":"box","calc":false,"value":""},{"id":"F8864","type":"box","calc":false,"value":""},{"id":"F8885","type":"box","calc":false,"value":""},{"id":"F8949","type":"box","calc":false,"value":""},{"id":"DCN1","type":"mask","calc":true,"value":""},{"id":"DCN2","type":"mask","calc":true,"value":""},{"id":"TNAME","type":"alpha","calc":true,"value":""},{"id":"TLNAME","type":"alpha","calc":true,"value":""},{"id":"TSSN","type":"ssn","calc":true,"value":""},{"id":"SNAME","type":"alpha","calc":true,"value":""},{"id":"SLNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"APT","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"FNAME","type":"alpha","calc":true,"value":""},{"id":"FCNTY","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8453.json b/test/data/fd/form/F8453.json new file mode 100755 index 00000000..b3d46679 --- /dev/null +++ b/test/data/fd/form/F8453.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8453","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.066,"y":1.876,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":3,"l":92.899},{"oc":"#221f1f","x":19.759,"y":6.751,"w":0.75,"l":27.311},{"oc":"#221f1f","x":46.984,"y":6.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":77.922,"y":6.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":19.759,"y":8.251,"w":0.75,"l":27.311},{"oc":"#221f1f","x":46.984,"y":8.251,"w":0.75,"l":31.109},{"oc":"#221f1f","x":77.922,"y":8.251,"w":2.25,"l":21.123},{"oc":"#221f1f","x":19.759,"y":9.751,"w":0.75,"l":49.586},{"oc":"#221f1f","x":69.259,"y":9.751,"w":0.75,"l":8.834},{"oc":"#221f1f","x":19.759,"y":11.251,"w":0.75,"l":58.249},{"oc":"#221f1f","x":17.43,"y":12.751,"w":2.25,"l":58.438},{"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":6.147,"y":42.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":43.501,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":20.969,"y":1.049,"w":1.5,"l":4.256},{"oc":"#221f1f","x":84.152,"y":1.11,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.133,"y":1.865,"w":1.5,"l":3.332},{"oc":"#221f1f","x":19.802,"y":5.269,"w":2.25,"l":7.531},{"oc":"#221f1f","x":15.073,"y":6.001,"w":2.25,"l":6},{"oc":"#221f1f","x":47.027,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":6.001,"w":2.25,"l":6},{"oc":"#221f1f","x":47.027,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":8.235,"w":2.25,"l":1.531},{"oc":"#221f1f","x":69.302,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":40.943,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.559,"y":11.257,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":15.201,"y":5.303,"w":2.612,"h":0.792,"clr":1},{"x":15.128,"y":12.032,"w":2.234,"h":0.725,"clr":1}],"Texts":[{"x":40.968,"y":10.291,"w":14.01,"clr":0,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.94,"y":1.509,"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":1.509,"w":2.34,"clr":-1,"A":"left","R":[{"T":"8453%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.563,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.58,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.063,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.58,0,0]}]},{"oc":"#221f1f","x":23.714,"y":0.8899999999999999,"w":22.339999999999996,"clr":-1,"A":"left","R":[{"T":"U.S.%20Individual%20Income%20Tax%20Transmittal%20for%20an%20IRS%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":69.79,"y":0.8899999999999999,"w":2.4250000000000003,"clr":-1,"A":"left","R":[{"T":"e-file%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":74.792,"y":0.8899999999999999,"w":3,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":39.075,"y":1.746,"w":19.303000000000008,"clr":-1,"A":"left","R":[{"T":"For%20the%20year%20January%201%E2%80%93December%2031%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.325,"y":2.329,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.357,"y":2.423,"w":12.371000000000002,"clr":-1,"A":"left","R":[{"T":"%20See%20instructions%20on%20back.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.309,"y":3.066,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.629,"y":3.16,"w":30.253,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208453%20and%20its%20instructions%20is%20available%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.227,"y":3.16,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8453","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.001,"y":3.16,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":0.8480000000000001,"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":2.612,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.204,"y":2.612,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.8580000000000005,"w":3.259,"clr":-1,"A":"left","R":[{"T":"Please%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.358,"w":2.019,"clr":-1,"A":"left","R":[{"T":"print","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.05,"y":8.358,"w":1.185,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.858,"w":2.501,"clr":-1,"A":"left","R":[{"T":"type.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.704,"y":5.73,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"P%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.674,"y":6.169,"w":1,"clr":-1,"A":"left","R":[{"T":"R%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.912,"y":6.607,"w":0.573,"clr":-1,"A":"left","R":[{"T":"I%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.663,"y":7.046,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"N%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.736,"y":7.484999999999999,"w":0.889,"clr":-1,"A":"left","R":[{"T":"T%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.664,"y":8.362,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.747,"y":8.801,"w":0.871,"clr":-1,"A":"left","R":[{"T":"L%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.716,"y":9.24,"w":0.926,"clr":-1,"A":"left","R":[{"T":"E%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.696,"y":9.679,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.675,"y":10.117,"w":1,"clr":-1,"A":"left","R":[{"T":"R%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.747,"y":10.556,"w":0.871,"clr":-1,"A":"left","R":[{"T":"L%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.706,"y":10.995,"w":0.667,"clr":-1,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":20.24,"y":5.001,"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":47.465,"y":5.001,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.952,"y":5.001,"w":13.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.24,"y":6.438,"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":47.465,"y":6.438,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.952,"y":6.438,"w":15.776000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.691,"y":8.366,"w":1,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,16,0,0]}]},{"oc":"#221f1f","x":85.442,"y":8.133,"w":5.239000000000001,"clr":-1,"A":"left","R":[{"T":"Important!%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.039,"y":8.733,"w":2.056,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.866,"y":8.733,"w":2.666,"clr":-1,"A":"left","R":[{"T":"must%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":90.532,"y":8.733,"w":2.834,"clr":-1,"A":"left","R":[{"T":"enter%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":82.957,"y":9.333,"w":8.852000000000002,"clr":-1,"A":"left","R":[{"T":"your%20SSN(s)%20above.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":95.779,"y":8.366,"w":1,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,16,0,0]}]},{"oc":"#221f1f","x":20.24,"y":7.938000000000001,"w":33.87899999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street).%20If%20you%20have%20a%20P.O.%20box%2C%20see%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.74,"y":7.938000000000001,"w":3.798,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.24,"y":9.438,"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":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.343,"y":10.938,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.38,"y":10.938,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.997,"y":10.96,"w":8.908,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.598,"y":13.278,"w":30.981999999999992,"clr":-1,"A":"left","R":[{"T":"FILE%20THIS%20FORM%20ONLY%20IF%20YOU%20ARE%20ATTACHING%20ONE%20OR%20MORE%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.355,"y":13.903,"w":29.727000000000004,"clr":-1,"A":"left","R":[{"T":"OF%20THE%20FOLLOWING%20FORMS%20OR%20SUPPORTING%20DOCUMENTS.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.84,"w":27.125000000000007,"clr":-1,"A":"left","R":[{"T":"Check%20the%20applicable%20box(es)%20to%20identify%20the%20attachments.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.29,"w":48.48999999999995,"clr":-1,"A":"left","R":[{"T":"Form%201098-C%2C%20Contributions%20of%20Motor%20Vehicles%2C%20Boats%2C%20and%20Airplanes%20(or%20equivalent%20contemporaneous%20written","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":16.978,"w":8.464,"clr":-1,"A":"left","R":[{"T":"acknowledgement)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.54,"w":56.02799999999992,"clr":-1,"A":"left","R":[{"T":"Form%202848%2C%20Power%20of%20Attorney%20and%20Declaration%20of%20Representative%20(or%20POA%20that%20states%20the%20agent%20is%20granted%20authority%20to%20sign%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":19.228,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"return)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":25.785000000000007,"clr":-1,"A":"left","R":[{"T":"Form%203115%2C%20Application%20for%20Change%20in%20Accounting%20Method","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.415,"w":53.69299999999998,"clr":-1,"A":"left","R":[{"T":"Form%203468%20-%20attach%20a%20copy%20of%20the%20first%20page%20of%20NPS%20Form%2010-168%2C%20Historic%20Preservation%20Certification%20Application%20(Part%202%E2%80%94","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":23.102,"w":54.283999999999935,"clr":-1,"A":"left","R":[{"T":"Description%20of%20Rehabilitation)%2C%20with%20an%20indication%20that%20it%20was%20received%20by%20the%20Department%20of%20the%20Interior%20or%20the%20State%20Historic","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":23.79,"w":52.43299999999994,"clr":-1,"A":"left","R":[{"T":"Preservation%20Officer%2C%20together%20with%20proof%20that%20the%20building%20is%20a%20certified%20historic%20structure%20(or%20that%20such%20status%20has%20been%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":24.477,"w":4.76,"clr":-1,"A":"left","R":[{"T":"requested)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.04,"w":54.098999999999954,"clr":-1,"A":"left","R":[{"T":"Form%204136%20-%20attach%20the%20Certificate%20for%20Biodiesel%20and%2C%20if%20applicable%2C%20Statement%20of%20Biodiesel%20Reseller%20or%20a%20certificate%20from%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":26.728,"w":44.37699999999997,"clr":-1,"A":"left","R":[{"T":"provider%20identifying%20the%20product%20as%20renewable%20diesel%20and%2C%20if%20applicable%2C%20a%20statement%20from%20the%20reseller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":18.004000000000005,"clr":-1,"A":"left","R":[{"T":"Form%205713%2C%20International%20Boycott%20Report","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.79,"w":54.56499999999999,"clr":-1,"A":"left","R":[{"T":"Form%208283%2C%20Noncash%20Charitable%20Contributions%2C%20Section%20A%2C%20(if%20any%20statement%20or%20qualified%20appraisal%20is%20required)%20or%20Section%20B%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":30.478,"w":47.99299999999999,"clr":-1,"A":"left","R":[{"T":"Donated%20Property%2C%20and%20any%20related%20attachments%20(including%20any%20qualified%20appraisal%20or%20partnership%20Form%208283)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.04,"w":54.432999999999964,"clr":-1,"A":"left","R":[{"T":"Form%208332%2C%20Release%20%2F%20Revocation%20of%20Release%20of%20Claim%20to%20Exemption%20for%20Child%20by%20Custodial%20Parent%20(or%20certain%20pages%20from%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":32.728,"w":47.84099999999996,"clr":-1,"A":"left","R":[{"T":"divorce%20decree%20or%20separation%20agreement%2C%20that%20went%20into%20effect%20after%201984%20and%20before%202009)%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":41.39599999999998,"clr":-1,"A":"left","R":[{"T":"Form%208858%2C%20Information%20Return%20of%20U.S.%20Persons%20With%20Respect%20to%20Foreign%20Disregarded%20Entities","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.79,"w":54.098999999999954,"clr":-1,"A":"left","R":[{"T":"Form%208864%20-%20attach%20the%20Certificate%20for%20Biodiesel%20and%2C%20if%20applicable%2C%20Statement%20of%20Biodiesel%20Reseller%20or%20a%20certificate%20from%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":36.478,"w":44.37699999999997,"clr":-1,"A":"left","R":[{"T":"provider%20identifying%20the%20product%20as%20renewable%20diesel%20and%2C%20if%20applicable%2C%20a%20statement%20from%20the%20reseller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":31.099000000000004,"clr":-1,"A":"left","R":[{"T":"Form%208885%2C%20Health%20Coverage%20Tax%20Credit%2C%20and%20all%20required%20attachments","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.54,"w":54.141999999999946,"clr":-1,"A":"left","R":[{"T":"Form%208949%2C%20Sales%20and%20Other%20Dispositions%20of%20Capital%20Assets%2C%20(or%20a%20statement%20with%20the%20same%20information)%2C%20if%20you%20elect%20not%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":40.228,"w":23.33700000000001,"clr":-1,"A":"left","R":[{"T":"report%20your%20transactions%20electronically%20on%20Form%208949","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.462,"y":42.126,"w":12.779,"clr":-1,"A":"left","R":[{"T":"DO%20NOT%20SIGN%20THIS%20FORM.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":43.358,"w":33.26,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.258,"y":43.376,"w":7.336,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2062766T","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.153,"y":43.322,"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.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8453","S":-1,"TS":[0,13,0,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":20.068,"y":10.285,"w":10.332,"clr":0,"A":"left","R":[{"T":"City","S":51,"TS":[0,9,0,0]}]},{"x":59.458,"y":10.322,"w":25.343999999999994,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":51,"TS":[0,9,0,0]}]},{"x":6.109,"y":-0.062000000000000055,"w":108.51400000000001,"clr":0,"A":"left","R":[{"T":"Declaration%20Control%20Number%20(DCN)","S":2,"TS":[0,10,0,0]}]},{"x":25.844,"y":-0.03300000000000003,"w":14.007,"clr":0,"A":"left","R":[{"T":"00%20-%20","S":2,"TS":[0,10,0,0]}]},{"x":43.142,"y":-0.0020000000000000018,"w":8.169,"clr":0,"A":"left","R":[{"T":"-%203","S":2,"TS":[0,10,0,0]}]},{"x":34.631,"y":-0.015000000000000013,"w":8.89,"clr":0,"A":"left","R":[{"T":"%20-%20","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DCN1","EN":0},"TI":4898,"AM":1024,"x":28.674,"y":0.191,"w":6.54,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DCN2","EN":0},"TI":4899,"AM":1024,"x":36.335,"y":0.197,"w":6.54,"h":0.833,"MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TNAME","EN":0},"TI":4900,"AM":1024,"x":20.048,"y":5.99,"w":26.854,"h":0.833,"TU":"Your first name and initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TLNAME","EN":0},"TI":4901,"AM":1024,"x":47.146,"y":5.954,"w":30.587,"h":0.833,"TU":"Last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TSSN","EN":0},"TI":4902,"AM":1024,"x":78.333,"y":5.929,"w":20.769,"h":0.833,"TU":"Spouse’s social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAME","EN":0},"TI":4903,"AM":1024,"x":20.048,"y":7.476,"w":26.854,"h":0.833,"TU":"If a joint return, spouse’s first name and initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNAME","EN":0},"TI":4904,"AM":1024,"x":47.169,"y":7.422,"w":30.437,"h":0.833,"TU":"Last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":4905,"AM":1024,"x":78.21,"y":7.395,"w":20.769,"h":0.833,"TU":"Spouse’s social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":4906,"AM":1024,"x":20.048,"y":8.976,"w":49.129,"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":"APT","EN":0},"TI":4907,"AM":1024,"x":69.444,"y":8.976,"w":8.087,"h":0.833,"TU":"Apt. no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":4908,"AM":1024,"x":22.742,"y":10.449,"w":14.885,"h":0.833,"TU":"City, town or post office"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":4909,"AM":1024,"x":44.515,"y":10.365,"w":14.286,"h":0.833,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":4910,"AM":1024,"x":64.56,"y":10.358,"w":12.938,"h":0.833,"TU":"ZIP code "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":4911,"AM":1024,"x":20.048,"y":11.895,"w":20.769,"h":0.833,"TU":"Foreign country name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNTY","EN":0},"TI":4912,"AM":1024,"x":41.01,"y":11.895,"w":18.356,"h":0.833,"TU":"Foreign province/state/county"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":4913,"AM":1024,"x":59.775,"y":11.918,"w":16.335,"h":0.833,"TU":"Foreign province/state/county"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1098C","EN":0},"TI":4914,"AM":0,"x":7.187,"y":16.427,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F2848","EN":0},"TI":4915,"AM":0,"x":7.138,"y":18.696,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F3115","EN":0},"TI":4916,"AM":0,"x":7.118,"y":20.949,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F3468","EN":0},"TI":4917,"AM":0,"x":7.098,"y":22.575,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F4136","EN":0},"TI":4918,"AM":0,"x":7.077,"y":26.161,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F5713","EN":0},"TI":4919,"AM":0,"x":7.057,"y":28.441,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8283","EN":0},"TI":4920,"AM":0,"x":7.112,"y":29.958,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8332","EN":0},"TI":4921,"AM":0,"x":7.092,"y":32.183,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8858","EN":0},"TI":4922,"AM":0,"x":7.072,"y":34.435,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8864","EN":0},"TI":4923,"AM":0,"x":7.052,"y":35.925,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8885","EN":0},"TI":4924,"AM":0,"x":7.107,"y":38.178,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8949","EN":0},"TI":4925,"AM":0,"x":7.087,"y":39.695,"w":1.746,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8582.content.txt b/test/data/fd/form/F8582.content.txt new file mode 100755 index 00000000..2e7d4ef7 --- /dev/null +++ b/test/data/fd/form/F8582.content.txt @@ -0,0 +1,195 @@ +Form +8582 +Department of the Treasury +Internal Revenue Service (99) +Passive Activity Loss Limitations +a + +See separate instructions. +a + +Attach to Form 1040 or Form 1041. +a + +. +OMB No. 1545-1008 +20 +13 +Attachment +Sequence No. +88 +Name(s) shown on return +Identifying number +Part I +2013 Passive Activity Loss +Caution: +Complete Worksheets 1, 2, and 3 before completing Part I. +Rental Real Estate Activities With Active Participation +(For the definition of active participation, see +1 + +a + +Activities with net income (enter the amount from Worksheet 1, +column (a)) +.................. +1a +b + +Activities with net loss (enter the amount from Worksheet 1, column +(b)) +..................... +1b +( +) +c + +Prior years unallowed losses (enter the amount from Worksheet 1, +column (c)) +.................. +1c +( +) +d +Combine lines 1a, 1b, and 1c +...................... +1d +Commercial Revitalization Deductions From Rental Real Estate Activities +2 +a +Commercial revitalization deductions from Worksheet 2, column (a) . +2a +( +) +b + +Prior year unallowed commercial revitalization deductions from +Worksheet 2, column (b) +.............. +2b +( +) +c +Add lines 2a and 2b +......................... +2c +( +) +All Other Passive Activities +3 + +a + +Activities with net income (enter the amount from Worksheet 3, +column (a)) +.................. +3a +b + +Activities with net loss (enter the amount from Worksheet 3, column +(b)) +..................... +3b +( +) +c + +Prior years unallowed losses (enter the amount from Worksheet 3, +column (c)) +.................. +3c +( +) +d +Combine lines 3a, 3b, and 3c +...................... +3d +4 + + +Combine lines 1d, 2c, and 3d. If this line is zero or more, stop here and include this form with +your return; all losses are allowed, including any prior year unallowed losses entered on line 1c, +2b, or 3c. Report the losses on the forms and schedules normally used +........ +4 +If line 4 is a loss and: • Line 1d is a loss, go to Part II. +• Line 2c is a loss (and line 1d is zero or more), skip Part II and go to Part III. +• Line 3d is a loss (and lines 1d and 2c are zero or more), skip Parts II and III and go to line 15. +Caution: +Part II or Part III. Instead, go to line 15. +Part II +Special Allowance for Rental Real Estate Activities With Active Participation +Note: +Enter all numbers in Part II as positive amounts. See instructions for an example. +5 +............ +5 +6 +Enter $150,000. If married filing separately, see instructions . . +6 +7 +Enter modified adjusted gross income, but not less than zero (see instructions) +7 +Note: +If line 7 is greater than or equal to line 6, skip lines 8 and + +9, +enter -0- on line 10. Otherwise, go to line 8. +8 +Subtract line 7 from line 6 +............. +8 +9 +9 +10 +.................... +10 +If line 2c is a loss, go to Part III. Otherwise, go to line 15. +Part III +Special Allowance for Commercial Revitalization Deductions From Rental Real Estate Activities +Note: +Enter all numbers in Part III as positive amounts. See the example for Part II in the instructions. +11 +Enter $25,000 reduced by the amount, if any, on line 10. If married filing separately, see instructions +11 +12 +Enter the loss from line 4 +........................ +12 +13 +Reduce line 12 by the amount on line 10 +.................. +13 +14 +Enter the +smallest + of line 2c (treated as a positive amount), line 11, or line 13 +...... +14 +Part IV +Total Losses Allowed +15 +Add the income, if any, on lines 1a and 3a and enter the total +............ +15 +16 + + +instructions to find out how to report the losses on your tax return . . . . +....... +16 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 63704F +Form +8582 + (2013) +Form 8582 pg 2 +Form 8582 pg 3 +Information about Form 8582 and its instructions is available at www.irs.gov/form8582 +Special Allowance for Rental Real Estate Activities in the instructions.) +If your filing status is married filing separately and you lived with your spouse at any time during the year, do not complete +Enter the smaller of line 5 or line 9 +Multiply line 8 by 50% (.5). Do not enter more than $25,000. If married filing separately, see instructions +Enter the smaller of the loss on line 1d or the loss on line 4 +Total losses allowed from all passive activities for 2013. Add lines 10, 14, and 15. See +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8582.fields.json b/test/data/fd/form/F8582.fields.json new file mode 100755 index 00000000..2c68aac5 --- /dev/null +++ b/test/data/fd/form/F8582.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1A","type":"number","calc":true,"value":""},{"id":"L1B","type":"number","calc":true,"value":""},{"id":"L1C","type":"number","calc":true,"value":""},{"id":"L1D","type":"number","calc":true,"value":""},{"id":"COMREV2A","type":"number","calc":true,"value":""},{"id":"COMREV2B","type":"number","calc":true,"value":""},{"id":"COMREV2C","type":"number","calc":true,"value":""},{"id":"L2A","type":"number","calc":true,"value":""},{"id":"L2B","type":"number","calc":true,"value":""},{"id":"L2C","type":"number","calc":true,"value":""},{"id":"L2D","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"COMREV11","type":"number","calc":false,"value":""},{"id":"COMREV12","type":"number","calc":true,"value":""},{"id":"COMREV13","type":"number","calc":true,"value":""},{"id":"COMREV14","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"Add_F8582P2","type":"link","calc":true,"value":""},{"id":"Add_F8582P3","type":"link","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8582.json b/test/data/fd/form/F8582.json new file mode 100755 index 00000000..ff8b089e --- /dev/null +++ b/test/data/fd/form/F8582.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8582","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.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":79.159,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":11.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"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":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":6.147,"y":15.001,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":15.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":18.751,"w":1.125,"l":73.099},{"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":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":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.19,"y":24.751,"w":1.125,"l":73.013},{"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":6.147,"y":30.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":12.334,"y":30.751,"w":1.125,"l":86.711},{"oc":"#221f1f","x":6.147,"y":32.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":59.359,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":33.751,"w":0.75,"l":3.798},{"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":59.359,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":34.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":36.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":36.751,"w":0.75,"l":3.798},{"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":39.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":12.334,"y":39.001,"w":1.125,"l":86.711},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":42.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":43.501,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":44.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":43.501,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.334,"y":44.251,"w":0.75,"l":86.711},{"oc":"#221f1f","x":79.159,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":45.001,"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":34.736},{"oc":"#221f1f","x":87.822,"y":46.501,"w":1.5,"l":11.223}],"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":82.915,"y":8.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":79.202,"y":8.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":82.915,"y":8.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":63.115,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":11.235,"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":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":0.781},{"oc":"#221f1f","x":75.49,"y":13.485,"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":82.915,"y":14.978,"w":0.75,"l":3.039},{"oc":"#221f1f","x":79.202,"y":14.978,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.29,"y":14.978,"w":0.75,"l":3.039},{"oc":"#221f1f","x":82.915,"y":14.978,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.29,"y":14.978,"w":0.75,"l":3.039},{"oc":"#221f1f","x":63.115,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":17.236,"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.728,"w":0.75,"l":5.289},{"oc":"#221f1f","x":79.202,"y":18.728,"w":0.75,"l":5.289},{"oc":"#221f1f","x":95.29,"y":18.728,"w":0.75,"l":5.289},{"oc":"#221f1f","x":82.915,"y":18.728,"w":0.75,"l":5.289},{"oc":"#221f1f","x":95.29,"y":18.728,"w":0.75,"l":5.289},{"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":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":26.235,"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":63.115,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":63.115,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":34.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":34.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.49,"y":34.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":34.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":34.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.49,"y":34.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"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},{"oc":"#221f1f","x":82.915,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"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":82.915,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":44.985,"w":0.75,"l":1.531},{"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":"#221f1f","x":6.19,"y":6.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":8.251,"w":3.713,"h":6,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":8.251,"w":12.375,"h":6,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":8.251,"w":3.713,"h":6,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":15.001,"w":3.713,"h":3,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":15.001,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":15.001,"w":3.713,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":18.751,"w":3.713,"h":5.25,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":18.751,"w":12.375,"h":5.25,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":18.751,"w":3.713,"h":5.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":30.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":33.001,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":33.001,"w":12.375,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":33.001,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":34.501,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":63.115,"y":34.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":75.49,"y":34.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":39.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":43.501,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8582%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.713,"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.213,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":34.564,"y":2.226,"w":15.839000000000006,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Loss%20Limitations","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.143,"y":2.764,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.413,"y":2.858,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":40.378,"y":3.5140000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":41.648,"y":3.6079999999999997,"w":16.449000000000005,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201041.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.334,"y":4.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.976,"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-1008","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.362,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.362,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,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.942,"y":4.366,"w":1.112,"clr":-1,"A":"left","R":[{"T":"88","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.026,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":4.919,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.601,"y":6.572,"w":12.729000000000003,"clr":-1,"A":"left","R":[{"T":"2013%20Passive%20Activity%20Loss","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":7.276999999999999,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.22,"y":7.276999999999999,"w":26.171000000000003,"clr":-1,"A":"left","R":[{"T":"Complete%20Worksheets%201%2C%202%2C%20and%203%20before%20completing%20Part%20I.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.153,"w":25.785000000000004,"clr":-1,"A":"left","R":[{"T":"Rental%20Real%20Estate%20Activities%20With%20Active%20Participation%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":42.141,"y":8.153,"w":20.113000000000003,"clr":-1,"A":"left","R":[{"T":"(For%20the%20definition%20of%20active%20participation%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":9.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.653,"w":28.359,"clr":-1,"A":"left","R":[{"T":"Activities%20with%20net%20income%20(enter%20the%20amount%20from%20Worksheet%201%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":10.34,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"column%20(a))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":10.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":11.153,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":30.174000000000007,"clr":-1,"A":"left","R":[{"T":"Activities%20with%20net%20loss%20(enter%20the%20amount%20from%20Worksheet%201%2C%20column","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":11.84,"w":1.37,"clr":-1,"A":"left","R":[{"T":"(b))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.195,"y":11.84,"w":27.992999999999988,"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":"1b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.008,"y":11.778,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.322,"y":11.778,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":12.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":12.653,"w":29.708000000000002,"clr":-1,"A":"left","R":[{"T":"Prior%20years%20unallowed%20losses%20(enter%20the%20amount%20from%20Worksheet%201%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":13.34,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"column%20(c))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.379,"y":13.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.008,"y":13.278,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.322,"y":13.278,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":14.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":14.09,"w":13.061000000000005,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201a%2C%201b%2C%20and%201c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.751,"y":14.09,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.906,"y":14.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":14.84,"w":34.675999999999995,"clr":-1,"A":"left","R":[{"T":"Commercial%20Revitalization%20Deductions%20From%20Rental%20Real%20Estate%20Activities","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":29.931,"clr":-1,"A":"left","R":[{"T":"Commercial%20revitalization%20deductions%20from%20Worksheet%202%2C%20column%20(a)","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":55.439,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":60.134,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.008,"y":15.527999999999999,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.322,"y":15.527999999999999,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":16.403,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":16.403,"w":28.334000000000017,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20unallowed%20commercial%20revitalization%20deductions%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":17.09,"w":10.874,"clr":-1,"A":"left","R":[{"T":"Worksheet%202%2C%20column%20(b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.63,"y":17.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":17.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.008,"y":17.028,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.322,"y":17.028,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":17.84,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202a%20and%202b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":17.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.809,"y":17.778,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":98.208,"y":17.778,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":18.59,"w":12.756,"clr":-1,"A":"left","R":[{"T":"All%20Other%20Passive%20Activities","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":19.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.403,"w":28.359,"clr":-1,"A":"left","R":[{"T":"Activities%20with%20net%20income%20(enter%20the%20amount%20from%20Worksheet%203%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":20.09,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"column%20(a))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":20.09,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"3a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":20.903,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.903,"w":30.174000000000007,"clr":-1,"A":"left","R":[{"T":"Activities%20with%20net%20loss%20(enter%20the%20amount%20from%20Worksheet%203%2C%20column","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":21.59,"w":1.37,"clr":-1,"A":"left","R":[{"T":"(b))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.195,"y":21.59,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":21.59,"w":1.167,"clr":-1,"A":"left","R":[{"T":"3b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.008,"y":21.528,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.322,"y":21.528,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":22.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":22.403,"w":29.708000000000002,"clr":-1,"A":"left","R":[{"T":"Prior%20years%20unallowed%20losses%20(enter%20the%20amount%20from%20Worksheet%203%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":23.09,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"column%20(c))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.379,"y":23.09,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"3c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.008,"y":23.028,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.322,"y":23.028,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":23.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":23.84,"w":13.061000000000005,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%203a%2C%203b%2C%20and%203c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.751,"y":23.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.906,"y":23.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"3d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":24.715,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.715,"w":41.45399999999997,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201d%2C%202c%2C%20and%203d.%20If%20this%20line%20is%20zero%20or%20more%2C%20stop%20here%20and%20include%20this%20form%20with","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":25.403,"w":42.68799999999998,"clr":-1,"A":"left","R":[{"T":"your%20return%3B%20all%20losses%20are%20allowed%2C%20including%20any%20prior%20year%20unallowed%20losses%20entered%20on%20line%201c%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":26.09,"w":31.620000000000005,"clr":-1,"A":"left","R":[{"T":"2b%2C%20or%203c.%20Report%20the%20losses%20on%20the%20forms%20and%20schedules%20normally%20used","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.638,"y":26.09,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":26.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":9.335,"clr":-1,"A":"left","R":[{"T":"If%20line%204%20is%20a%20loss%20and%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":26.84,"w":14.299000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Line%201d%20is%20a%20loss%2C%20go%20to%20Part%20II.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":27.59,"w":34.17099999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Line%202c%20is%20a%20loss%20(and%20line%201d%20is%20zero%20or%20more)%2C%20skip%20Part%20II%20and%20go%20to%20Part%20III.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":28.34,"w":42.02699999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Line%203d%20is%20a%20loss%20(and%20lines%201d%20and%202c%20are%20zero%20or%20more)%2C%20skip%20Parts%20II%20and%20III%20and%20go%20to%20line%2015.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.09,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.954,"y":29.777,"w":17.114000000000004,"clr":-1,"A":"left","R":[{"T":"Part%20II%20or%20Part%20III.%20Instead%2C%20go%20to%20line%2015.","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":30.572,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":30.572,"w":36.12199999999998,"clr":-1,"A":"left","R":[{"T":"Special%20Allowance%20for%20Rental%20Real%20Estate%20Activities%20With%20Active%20Participation","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":31.278,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.986,"y":31.278,"w":35.671,"clr":-1,"A":"left","R":[{"T":"Enter%20all%20numbers%20in%20Part%20II%20as%20positive%20amounts.%20See%20instructions%20for%20an%20example.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.378,"y":32.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":32.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":32.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":26.450000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20%24150%2C000.%20If%20married%20filing%20separately%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":32.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":32.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":33.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":35.025,"clr":-1,"A":"left","R":[{"T":"Enter%20modified%20adjusted%20gross%20income%2C%20but%20not%20less%20than%20zero%20(see%20instructions)","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":60.578,"y":33.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.403,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.419,"y":34.403,"w":24.950000000000003,"clr":-1,"A":"left","R":[{"T":"If%20line%207%20is%20greater%20than%20or%20equal%20to%20line%206%2C%20skip%20lines%208%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.624,"y":34.403,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":19.356000000000005,"clr":-1,"A":"left","R":[{"T":"enter%20-0-%20on%20line%2010.%20Otherwise%2C%20go%20to%20line%208.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%207%20from%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":35.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":35.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,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":80.378,"y":36.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%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":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":37.34,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":37.34,"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.028,"w":24.957000000000015,"clr":-1,"A":"left","R":[{"T":"If%20line%202c%20is%20a%20loss%2C%20go%20to%20Part%20III.%20Otherwise%2C%20go%20to%20line%2015.","S":3,"TS":[0,12,0,0]}]},{"x":6.331,"y":38.822,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":38.822,"w":45.290999999999954,"clr":-1,"A":"left","R":[{"T":"Special%20Allowance%20for%20Commercial%20Revitalization%20Deductions%20From%20Rental%20Real%20Estate%20Activities","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":39.528,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.986,"y":39.528,"w":41.89399999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20all%20numbers%20in%20Part%20III%20as%20positive%20amounts.%20See%20the%20example%20for%20Part%20II%20in%20the%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":44.41999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20%2425%2C000%20reduced%20by%20the%20amount%2C%20if%20any%2C%20on%20line%2010.%20If%20married%20filing%20separately%2C%20see%20instructions","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":79.948,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.09,"w":11.095000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20loss%20from%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":41.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":18.267,"clr":-1,"A":"left","R":[{"T":"Reduce%20line%2012%20by%20the%20amount%20on%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":41.84,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.528,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.566,"y":42.528,"w":3.996,"clr":-1,"A":"left","R":[{"T":"smallest","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.747,"y":42.528,"w":25.988000000000007,"clr":-1,"A":"left","R":[{"T":"%20of%20line%202c%20(treated%20as%20a%20positive%20amount)%2C%20line%2011%2C%20or%20line%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":42.528,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":43.322,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":43.322,"w":10.225000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20Losses%20Allowed","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.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":44.09,"w":27.176000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20the%20income%2C%20if%20any%2C%20on%20lines%201a%20and%203a%20and%20enter%20the%20total","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":44.09,"w":15.996,"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":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.891,"y":45.59,"w":28.736000000000004,"clr":-1,"A":"left","R":[{"T":"instructions%20to%20find%20out%20how%20to%20report%20the%20losses%20on%20your%20tax%20return","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":54.584,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":56.647,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":58.709,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":60.772,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":63.693,"y":45.59,"w":9.8273,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":79.948,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"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.877,"y":46.376,"w":7.614000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2063704F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8582","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":72.453,"y":46.844,"w":63.53099999999999,"clr":0,"A":"left","R":[{"T":"Form%208582%20pg%202","S":3,"TS":[0,12,0,0]}]},{"x":72.508,"y":47.487,"w":63.53099999999999,"clr":0,"A":"left","R":[{"T":"Form%208582%20pg%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.604,"y":4.358,"w":40.95699999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208582%20and%20its%20instructions%20is%20available%20at%20www.irs.gov%2Fform8582","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.84,"w":31.067000000000004,"clr":-1,"A":"left","R":[{"T":"Special%20Allowance%20for%20Rental%20Real%20Estate%20Activities%20in%20the%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.667,"y":29.09,"w":54.20999999999995,"clr":-1,"A":"left","R":[{"T":"If%20your%20filing%20status%20is%20married%20filing%20separately%20and%20you%20lived%20with%20your%20spouse%20at%20any%20time%20during%20the%20year%2C%20do%20not%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":15.451000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%205%20or%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":45.68599999999996,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%208%20by%2050%25%20(.5).%20Do%20not%20enter%20more%20than%20%2425%2C000.%20If%20married%20filing%20separately%2C%20see%20instructions","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":25.957000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20the%20loss%20on%20line%201d%20or%20the%20loss%20on%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.903,"w":37.96199999999998,"clr":-1,"A":"left","R":[{"T":"Total%20losses%20allowed%20from%20all%20passive%20activities%20for%202013.%20Add%20lines%2010%2C%2014%2C%20and%2015.%20See","S":-1,"TS":[0,11.55,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4926,"AM":1024,"x":6.576,"y":5.95,"w":64.057,"h":0.851},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4927,"AM":1024,"x":77.501,"y":5.803,"w":18.07,"h":0.905},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":4928,"AM":1024,"x":63.298,"y":10.379,"w":12.024,"h":0.856},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":4929,"AM":1024,"x":63.233,"y":11.891,"w":12.239,"h":0.844},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":4930,"AM":1024,"x":63.233,"y":13.389,"w":12.239,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1D","EN":0},"TI":4931,"AM":1024,"x":82.935,"y":14.275,"w":12.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMREV2A","EN":0},"TI":4932,"AM":1024,"x":63.096,"y":15.703,"w":12.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMREV2B","EN":0},"TI":4933,"AM":1024,"x":63.009,"y":17.194,"w":12.464,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMREV2C","EN":0},"TI":4934,"AM":1024,"x":82.925,"y":17.941,"w":12.456,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":4935,"AM":1024,"x":63.298,"y":20.102,"w":12.249,"h":0.883},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":4936,"AM":1024,"x":63.158,"y":21.612,"w":12.314,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2C","EN":0},"TI":4937,"AM":1024,"x":63.48,"y":22.961,"w":12.464,"h":0.844},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2D","EN":0},"TI":4938,"AM":1024,"x":83.01,"y":23.966,"w":12.125,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":4939,"AM":1024,"x":83.044,"y":26.128,"w":12.283,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":4940,"AM":0,"x":82.941,"y":32.288,"w":12.264,"h":0.833,"TU":"Line 5. Enter the smaller of the loss on line 1d or the loss on line 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4941,"AM":0,"x":63.087,"y":33.008,"w":12.522,"h":0.833,"TU":"Line 6. Enter $150,000. If married filing separately, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4942,"AM":0,"x":63.216,"y":33.788,"w":12.339,"h":0.833,"TU":"Line 7, Enter modified adjusted gross income, but not less than zero (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4943,"AM":1024,"x":63.169,"y":36.024,"w":12.283,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4944,"AM":0,"x":83.01,"y":36.792,"w":12.275,"h":0.833,"TU":"Line 9. Multiply line 8 by 50% (.5). Do not enter more than $25,000. If married filing separately, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4945,"AM":0,"x":82.791,"y":37.538,"w":12.414,"h":0.833,"TU":"Line 10. Enter the smaller of line 5 or line 9."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMREV11","EN":0},"TI":4946,"AM":0,"x":83.016,"y":40.538,"w":12.189,"h":0.833,"TU":"Line 11. Enter $25,000 reduced by the amount, if any, on line 10. If married filing separately, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMREV12","EN":0},"TI":4947,"AM":1024,"x":83.016,"y":41.288,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMREV13","EN":0},"TI":4948,"AM":1024,"x":83.016,"y":42.038,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMREV14","EN":0},"TI":4949,"AM":0,"x":83.016,"y":42.788,"w":12.189,"h":0.833,"TU":"Line 14. Enter the smallest of line 2c (treated as a positive amount), line 11, or line 13."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":4950,"AM":1024,"x":83.016,"y":44.288,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4951,"AM":1024,"x":82.948,"y":45.666,"w":12.174,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8582W15"}},"id":{"Id":"Add_F8582P2","EN":0},"TI":4952,"AM":1024,"x":84.288,"y":46.811,"w":3.531,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8582W6"}},"id":{"Id":"Add_F8582P3","EN":0},"TI":4953,"AM":1024,"x":84.418,"y":47.618,"w":3.267,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8582CR.content.txt b/test/data/fd/form/F8582CR.content.txt new file mode 100755 index 00000000..229bf2b1 --- /dev/null +++ b/test/data/fd/form/F8582CR.content.txt @@ -0,0 +1,293 @@ +do not +Low-Income Housing Credits for Property Placed in Service After 1989 Lines 3a through 3c (See +Form +8582-CR + +(Rev. January 2012) +Department of the Treasury +Internal Revenue Service +Passive Activity Credit Limitations +a + +See separate instructions. +a + +Attach to Form 1040 or 1041. +OMB No. 1545-1034 +Attachment +Sequence No. +89 +Name(s) shown on return +Identifying number +Part I +Passive Activity Credits +instructions. +Credits From Rental Real Estate Activities With Active Participation (Other Than Rehabilitation +1 a +Credits from Worksheet 1, column (a) +.......... +1a +b +Prior year unallowed credits from Worksheet 1, column (b) . . . +1b +c +Add lines 1a and 1b +......................... +1c +Rehabilitation Credits From Rental Real Estate Activities and Low-Income Housing Credits for +Property Placed in Service Before 1990 (or From Pass-Through Interests Acquired Before 1990) +2 a +Credits from Worksheet 2, column (a) +.......... +2a +b +Prior year unallowed credits from Worksheet 2, column (b) . . . +2b +c +Add lines 2a and 2b +......................... +2c +in the instructions.) +3a +Credits from Worksheet 3, column (a) +.......... +3a +b +Prior year unallowed credits from Worksheet 3, column (b) . . . +3b +c +Add lines 3a and 3b +......................... +3c +4 a +Credits from Worksheet 4, column (a) +.......... +4a +b +Prior year unallowed credits from Worksheet 4, column (b) . . . +4b +c +Add lines 4a and 4b +......................... +4c +5 +Add lines 1c, 2c, 3c, and 4c +....................... +5 +6 +Enter the tax attributable to net passive income (see instructions) +.......... +6 +7 +Subtract line 6 from line 5. If line 6 is more than or equal to line 5, enter -0- and see instructions +7 +Note: + + + +Part II +Special Allowance for Rental Real Estate Activities With Active Participation +Note: +Complete this part only if you have an amount on line 1c. Otherwise, go to Part III. +8 +Enter the smaller of line 1c or line 7 +.................... +8 +9 +Enter $150,000. If married filing separately, see instructions . . +9 +10 +Enter modified adjusted gross income, but not less than zero (see +instructions). If line 10 is equal to or more than line 9, skip lines 11 +through 15 and enter -0- on line 16 +.......... +10 +11 +Subtract line 10 from line 9 +............. +11 +12 +married filing separately, see instructions +........ +12 +13a +Enter the amount, if any, from line 10 +of Form 8582 +......... +13a +b +Enter the amount, if any, from line 14 +of Form 8582 +......... +13b +c +Add lines 13a and 13b +............... +13c +14 +Subtract line 13c from line 12 +............ +14 +15 +Enter the tax attributable to the amount on line 14 (see instructions) +.......... +15 +16 +.................... +16 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 64641R +Form +8582-CR + (Rev. 01-2012) +Caution: If you have credits from a publicly traded partnership, see Publicly Traded Partnerships (PTPs) in the +(See Lines 2a through 2c in the instructions.) +Credits and Low-Income Housing Credits) (See Lines 1a through 1c in the instructions.) + +All Other Passive Activity Credits (See Lines 4a through 4c in the instructions.) +Multiply line 11 by 50% (.50). Do not enter more than $25,000. If +Enter the smaller of line 8 or line 15 +If your filing status is married filing separately and you lived with your spouse at any time during +the year, +complete Part II, III, or IV. Instead, go to line 37. +----------------Page (0) Break---------------- +Form 8582-CR (Rev. 01-2012) +Page +2 +Part III +Special Allowance for Rehabilitation Credits From Rental Real Estate Activities and Low-Income Housing +Credits for Property Placed in Service Before 1990 (or From Pass-Through Interests Acquired Before 1990) +Note: +Complete this part only if you have an amount on line 2c. Otherwise, go to Part IV. +17 +Enter the amount from line 7 +....................... +17 +18 +Enter the amount from line 16 +...................... +18 +19 +Subtract line 18 from line 17. If zero, enter -0- here and on lines 30 and 36, and then go to +Part V +.............................. +19 +20 +.................... +20 +21 +Enter $250,000. If married filing separately, see instructions to find +out if you can skip lines 21 through 26 +......... +21 +22 +Enter modified adjusted gross income, but not less than zero. (See +instructions for line 10.) If line 22 is equal to or more than line 21, +skip lines 23 through 29 and enter -0- on line 30 +...... +22 +23 +Subtract line 22 from line 21 +............. +23 +24 +Multiply line 23 by 50% (.50). Do not enter more than $25,000. If +married filing separately, see instructions +........ +24 +25a +Enter the amount, if any, from line 10 +of Form 8582 +......... +25a +b +Enter the amount, if any, from line 14 +of Form 8582 +......... +25b +c +Add lines 25a and 25b +............... +25c +26 +Subtract line 25c from line 24 +............ +26 +27 +Enter the tax attributable to the amount on line 26 (see instructions) +27 +28 +Enter the amount, if any, from line 18 +.......... +28 +29 +Subtract line 28 from line 27 +....................... +29 +30 +.................... +30 +Part IV +Special Allowance for Low-Income Housing Credits for Property Placed in Service After 1989 +Note: +Complete this part only if you have an amount on line 3c. Otherwise, go to Part V. +31 +If you completed Part III, enter the amount from line 19. Otherwise, subtract line 16 from line 7 . +31 +32 +Enter the amount from line 30 +...................... +32 +33 +Subtract line 32 from line 31. If zero, enter -0- here and on line 36 +.......... +33 +34 +.................... +34 +35 +Tax attributable to the remaining special allowance (see instructions) +......... +35 +36 +.................... +36 +Part V +Passive Activity Credit Allowed +37 +Passive Activity Credit Allowed. +Add lines 6, 16, 30, and 36. See instructions to find out how to + + +you have more than one credit or credits from more than one activity. If you have any credits +37 +Part VI +Election To Increase Basis of Credit Property +38 +elect to increase your basis in credit property used in that activity by the unallowed credit that reduced your basis in the +property, check this box. See instructions +.......................... +a +39 +Name of passive activity disposed of +a +40 +Description of the credit property for which the election is being made +a +41 +Amount of unallowed credit that reduced your basis in the property +........ +a + +$ +Form +8582-CR + (Rev. 01-2012) +Enter the smaller of line 2c or line 19 +Enter the smaller of line 20 or line 29 +Enter the smaller of line 3c or line 33 +Enter the smaller of line 34 or line 35 +from a publicly traded partnership, see Publicly Traded Partnerships (PTPs) in the instructions. +If you disposed of your entire interest in a passive activity or former passive activity in a fully taxable transaction, and you +report the allowed credit on your tax return and how to allocate allowed and unallowed credits if +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8582CR.fields.json b/test/data/fd/form/F8582CR.fields.json new file mode 100755 index 00000000..5fc34c6a --- /dev/null +++ b/test/data/fd/form/F8582CR.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1A","type":"number","calc":false,"value":""},{"id":"L1B","type":"number","calc":false,"value":""},{"id":"L1C","type":"number","calc":true,"value":""},{"id":"L2A","type":"number","calc":false,"value":""},{"id":"L2B","type":"number","calc":false,"value":""},{"id":"L2C","type":"number","calc":true,"value":""},{"id":"L3A","type":"number","calc":false,"value":""},{"id":"L3B","type":"number","calc":false,"value":""},{"id":"L3C","type":"number","calc":true,"value":""},{"id":"L4A","type":"number","calc":false,"value":""},{"id":"L4B","type":"number","calc":false,"value":""},{"id":"L4C","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13A","type":"number","calc":true,"value":""},{"id":"L13B","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L38","type":"box","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25A","type":"number","calc":true,"value":""},{"id":"L25B","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"L29","type":"number","calc":true,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":true,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":true,"value":""},{"id":"L37","type":"number","calc":true,"value":""},{"id":"L39","type":"alpha","calc":false,"value":""},{"id":"L40","type":"alpha","calc":false,"value":""},{"id":"L40T","type":"alpha","calc":false,"value":""},{"id":"L41","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8582CR.json b/test/data/fd/form/F8582CR.json new file mode 100755 index 00000000..d853ade0 --- /dev/null +++ b/test/data/fd/form/F8582CR.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8582-CR (Revised January 2012)","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.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":70.624},{"oc":"#221f1f","x":76.684,"y":6.751,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":79.159,"y":9.001,"w":1.125,"l":3.798},{"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":59.359,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":13.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":15.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":15.001,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":18.001,"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":82.872,"y":21.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.001,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":23.251,"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":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":24.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":24.751,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"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":59.359,"y":27.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":27.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.19,"y":27.751,"w":1.125,"l":73.013},{"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":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":29.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":29.251,"w":1.125,"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":19.886},{"oc":"#221f1f","x":79.159,"y":31.501,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":31.501,"w":1.125,"l":6.273},{"oc":"#221f1f","x":12.334,"y":31.501,"w":1.125,"l":86.711},{"oc":"#221f1f","x":6.147,"y":33.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":36.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":39.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":55.647,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":42.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":43.272,"y":42.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":55.647,"y":42.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":42.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":46.501,"w":0.75,"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":27.311},{"oc":"#221f1f","x":80.397,"y":46.501,"w":1.5,"l":18.445}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.609},{"oc":"#221f1f","x":21.04,"y":3.643,"w":1.5,"l":0.781},{"oc":"#221f1f","x":21.04,"y":4.235,"w":1.5,"l":1.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":76.727,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":8.978,"w":0.75,"l":4.539},{"oc":"#221f1f","x":79.202,"y":8.978,"w":0.75,"l":4.539},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":5.281},{"oc":"#221f1f","x":63.115,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"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":63.115,"y":11.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":11.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.49,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":13.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":14.978,"w":0.75,"l":5.289},{"oc":"#221f1f","x":79.202,"y":14.978,"w":0.75,"l":5.289},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":5.281},{"oc":"#221f1f","x":63.115,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":17.985,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":20.978,"w":0.75,"l":3.039},{"oc":"#221f1f","x":79.202,"y":20.978,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":63.115,"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":75.49,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":24.728,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.202,"y":24.728,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.789},{"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.789},{"oc":"#221f1f","x":79.202,"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":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":99.002,"y":29.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":29.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":33.735,"w":0.75,"l":10.531},{"oc":"#221f1f","x":79.202,"y":33.735,"w":0.75,"l":10.531},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":10.531},{"oc":"#221f1f","x":63.115,"y":34.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":59.402,"y":34.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":75.49,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"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":75.49,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":38.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":38.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.49,"y":38.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":43.315,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":40.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":40.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":55.69,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":41.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":41.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":41.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":41.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":42.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":42.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":44.985,"w":0.75,"l":1.531},{"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":"#221f1f","x":6.19,"y":6.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":9.001,"w":3.713,"h":4.5,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":15.001,"w":3.713,"h":5.25,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":21.001,"w":3.713,"h":3,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":24.751,"w":3.713,"h":2.25,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":30.001,"w":19.8,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":31.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":33.751,"w":3.713,"h":10.5,"clr":-1},{"oc":"#c0c1c4","x":59.402,"y":39.001,"w":3.713,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":16.632,"y":30.478,"w":3.056,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.177,"y":20.79,"w":45.568999999999946,"clr":-1,"A":"left","R":[{"T":"Low-Income%20Housing%20Credits%20for%20Property%20Placed%20in%20Service%20After%201989%20Lines%203a%20through%203c%20(See","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.572,"w":4.001,"clr":-1,"A":"left","R":[{"T":"8582-CR","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3810000000000002,"w":8.836000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20January%202012)","S":2,"TS":[0,10,0,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.719999999999999,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.314,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":33.746,"y":2.101,"w":16.394000000000005,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Credit%20Limitations","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.143,"y":3.285,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.413,"y":3.3789999999999996,"w":12.449000000000003,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":42.287,"y":4.129,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":43.557,"y":4.222,"w":13.671000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%201041.","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-1034","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.5949999999999998,"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.041,"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.041,"w":1.112,"clr":-1,"A":"left","R":[{"T":"89","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"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.51,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.601,"y":6.572,"w":11.338000000000001,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Credits","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":7.978,"w":6.0009999999999994,"clr":-1,"A":"left","R":[{"T":"instructions.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":8.79,"w":45.12099999999994,"clr":-1,"A":"left","R":[{"T":"Credits%20From%20Rental%20Real%20Estate%20Activities%20With%20Active%20Participation%20(Other%20Than%20Rehabilitation%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1%20a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":16.652000000000005,"clr":-1,"A":"left","R":[{"T":"Credits%20from%20Worksheet%201%2C%20column%20(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":11.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":12.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":12.59,"w":26.207,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20unallowed%20credits%20from%20Worksheet%201%2C%20column%20(b).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.06,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.122,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":12.59,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":14.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.09,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201a%20and%201b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":14.09,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":14.853,"w":45.17599999999996,"clr":-1,"A":"left","R":[{"T":"Rehabilitation%20Credits%20From%20Rental%20Real%20Estate%20Activities%20and%20Low-Income%20Housing%20Credits%20for%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.176,"y":15.54,"w":46.12599999999996,"clr":-1,"A":"left","R":[{"T":"Property%20Placed%20in%20Service%20Before%201990%20(or%20From%20Pass-Through%20Interests%20Acquired%20Before%201990)%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2%20a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":16.652000000000005,"clr":-1,"A":"left","R":[{"T":"Credits%20from%20Worksheet%202%2C%20column%20(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":17.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":18.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":18.59,"w":26.207,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20unallowed%20credits%20from%20Worksheet%202%2C%20column%20(b).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.06,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.122,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":18.59,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202a%20and%202b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":20.09,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.182,"y":21.478,"w":9.279,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions.)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":16.652000000000005,"clr":-1,"A":"left","R":[{"T":"Credits%20from%20Worksheet%203%2C%20column%20(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":22.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"3a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":23.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":26.207,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20unallowed%20credits%20from%20Worksheet%203%2C%20column%20(b).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.06,"y":23.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.122,"y":23.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":23.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"3b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%203a%20and%203b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":23.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"3c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4%20a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":16.652000000000005,"clr":-1,"A":"left","R":[{"T":"Credits%20from%20Worksheet%204%2C%20column%20(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":25.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":25.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":26.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":26.207,"clr":-1,"A":"left","R":[{"T":"Prior%20year%20unallowed%20credits%20from%20Worksheet%204%2C%20column%20(b).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.06,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.122,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":26.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204a%20and%204b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":26.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":26.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":27.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":27.59,"w":12.431000000000006,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201c%2C%202c%2C%203c%2C%20and%204c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":27.59,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":27.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":28.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":28.95000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20attributable%20to%20net%20passive%20income%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":28.34,"w":13.33,"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":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":29.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":29.09,"w":42.77099999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206%20from%20line%205.%20If%20line%206%20is%20more%20than%20or%20equal%20to%20line%205%2C%20enter%20-0-%20and%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":29.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":29.79,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":31.259999999999998,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":31.265,"w":36.12199999999998,"clr":-1,"A":"left","R":[{"T":"Special%20Allowance%20for%20Rental%20Real%20Estate%20Activities%20With%20Active%20Participation","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":32.001,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.986,"y":32.001,"w":36.358,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20have%20an%20amount%20on%20line%201c.%20Otherwise%2C%20go%20to%20Part%20III.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":15.688000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%201c%20or%20line%207","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":80.378,"y":32.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":33.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":33.59,"w":26.450000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20%24150%2C000.%20If%20married%20filing%20separately%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":33.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":33.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":33.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%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":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.352,"w":29.580000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20modified%20adjusted%20gross%20income%2C%20but%20not%20less%20than%20zero%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":35.04,"w":29.675000000000004,"clr":-1,"A":"left","R":[{"T":"instructions).%20If%20line%2010%20is%20equal%20to%20or%20more%20than%20line%209%2C%20skip%20lines%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":35.727,"w":15.599000000000004,"clr":-1,"A":"left","R":[{"T":"through%2015%20and%20enter%20-0-%20on%20line%2016","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.888,"y":35.727,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":12.022000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20line%209","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":36.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.293,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.894,"y":37.978,"w":18.26100000000001,"clr":-1,"A":"left","R":[{"T":"married%20filing%20separately%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.007,"y":37.978,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.793,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"13a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.79,"w":16.747000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":39.478,"w":5.984000000000001,"clr":-1,"A":"left","R":[{"T":"of%20Form%208582","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":39.478,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.904,"y":39.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"13a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":40.293,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.29,"w":16.747000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2014%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":40.978,"w":5.984000000000001,"clr":-1,"A":"left","R":[{"T":"of%20Form%208582","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":40.978,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.876,"y":41.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"13b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":41.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":10.023,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2013a%20and%2013b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":41.84,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.704,"y":41.84,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"13c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":43.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":43.34,"w":13.115000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013c%20from%20line%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":43.34,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.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":44.09,"w":30.008000000000013,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20attributable%20to%20the%20amount%20on%20line%2014%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":44.09,"w":13.33,"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":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":45.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"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":62.097,"y":46.376,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2064641R","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.19,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.333,"y":46.322,"w":4.001,"clr":-1,"A":"left","R":[{"T":"8582-CR","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.369,"y":46.322,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2001-2012)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.602,"y":7.289999999999999,"w":52.62599999999994,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20If%20you%20have%20credits%20from%20a%20publicly%20traded%20partnership%2C%20see%20Publicly%20Traded%20Partnerships%20(PTPs)%20in%20the%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.176,"y":16.227,"w":21.39400000000001,"clr":-1,"A":"left","R":[{"T":"(See%20Lines%202a%20through%202c%20in%20the%20instructions.)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.185,"y":9.478,"w":41.618999999999964,"clr":-1,"A":"left","R":[{"T":"Credits%20and%20Low-Income%20Housing%20Credits)%20(See%20Lines%201a%20through%201c%20in%20the%20instructions.)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":24.528,"w":37.51099999999998,"clr":-1,"A":"left","R":[{"T":"All%20Other%20Passive%20Activity%20Credits%20(See%20Lines%204a%20through%204c%20in%20the%20instructions.)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.291,"w":28.403,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2011%20by%2050%25%20(.50).%20Do%20not%20enter%20more%20than%20%2425%2C000.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":45.59,"w":15.729000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%208%20or%20line%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.441,"y":29.79,"w":42.484999999999985,"clr":-1,"A":"left","R":[{"T":"If%20your%20filing%20status%20is%20married%20filing%20separately%20and%20you%20lived%20with%20your%20spouse%20at%20any%20time%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.271,"y":30.478,"w":3.834,"clr":-1,"A":"left","R":[{"T":"the%20year%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.789,"y":30.478,"w":21.17000000000001,"clr":-1,"A":"left","R":[{"T":"complete%20Part%20II%2C%20III%2C%20or%20IV.%20Instead%2C%20go%20to%20line%2037.","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":4954,"AM":1024,"x":6.229,"y":5.867,"w":70.373,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":4955,"AM":1024,"x":76.869,"y":5.895,"w":22.11,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":4956,"AM":0,"x":63.236,"y":11.258,"w":12.148,"h":0.833,"TU":"Line 1a. Credits from Worksheet 1, column (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":4957,"AM":0,"x":63.298,"y":12.748,"w":12.024,"h":0.833,"TU":"Line 1b. Prior year unallowed credits from Worksheet 1, column (b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":4958,"AM":1024,"x":83.155,"y":14.187,"w":12.024,"h":0.833,"TU":"1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":4959,"AM":0,"x":63.236,"y":17.258,"w":12.148,"h":0.833,"TU":"Line 2a. Credits from Worksheet 2, column (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":4960,"AM":0,"x":63.373,"y":18.694,"w":12.024,"h":0.833,"TU":"Line 2b. Prior year unallowed credits from Worksheet 2, column (b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2C","EN":0},"TI":4961,"AM":1024,"x":83.06,"y":20.169,"w":12.024,"h":0.833,"TU":"1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3A","EN":0},"TI":4962,"AM":0,"x":63.236,"y":22.531,"w":12.148,"h":0.833,"TU":"Line 3a. Credits from Worksheet 3, column (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3B","EN":0},"TI":4963,"AM":0,"x":63.216,"y":23.288,"w":12.189,"h":0.833,"TU":"Line 3b. Prior year unallowed credits from Worksheet 3, column (b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3C","EN":0},"TI":4964,"AM":1024,"x":83.16,"y":23.839,"w":11.901,"h":0.833,"TU":"3c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4A","EN":0},"TI":4965,"AM":0,"x":63.236,"y":25.508,"w":12.148,"h":0.833,"TU":"Line 4a. Credits from Worksheet 4, column (a)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4B","EN":0},"TI":4966,"AM":0,"x":63.216,"y":26.288,"w":12.189,"h":0.833,"TU":"Line 4b. Prior year unallowed credits from Worksheet 4, column (b)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C","EN":0},"TI":4967,"AM":1024,"x":83.235,"y":26.862,"w":11.901,"h":0.838,"TU":"4c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":4968,"AM":1024,"x":83.016,"y":27.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":4969,"AM":0,"x":83.016,"y":28.538,"w":12.189,"h":0.833,"TU":"Line 6. Enter the tax attributable to net passive income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":4970,"AM":1024,"x":83.016,"y":29.295,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":4971,"AM":1024,"x":83.016,"y":33.038,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":4972,"AM":0,"x":63.236,"y":33.758,"w":12.148,"h":0.833,"TU":"Line 9. Enter $150,000. If married filing separately, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":4973,"AM":0,"x":63.319,"y":35.826,"w":11.983,"h":0.902,"TU":"Line 10. Enter modified adjusted gross income, but not less than zero (see instructions). If line 10 is equal to or more than line 9, skip lines 11 through 15, and enter zero on line 16."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":4974,"AM":1024,"x":63.216,"y":36.795,"w":12.189,"h":0.833,"TU":"9 10 11 12 13c 14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":4975,"AM":0,"x":63.298,"y":38.139,"w":12.024,"h":0.846,"TU":"Line 12. Multiply line 11 by 50% (.50). Do not enter more than $25,000. If married filing separately, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":4976,"AM":1024,"x":43.436,"y":39.758,"w":12.148,"h":0.833,"TU":"13a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":4977,"AM":1024,"x":43.498,"y":41.194,"w":12.024,"h":0.833,"TU":"13b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":4978,"AM":1024,"x":63.36,"y":41.867,"w":11.901,"h":0.861,"TU":"9 10 11 12 13c 14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":4979,"AM":1024,"x":63.298,"y":43.478,"w":12.024,"h":0.833,"TU":"9 10 11 12 13c 14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":4980,"AM":0,"x":83.04,"y":44.174,"w":12.024,"h":0.833,"TU":"1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":4981,"AM":1024,"x":83.098,"y":45.721,"w":12.024,"h":0.833,"TU":"Enter the smaller of line 8 or line 15."}],"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":5.251,"w":0.75,"l":92.899},{"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":79.159,"y":7.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":7.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":7.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":11.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":13.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":13.501,"w":1.125,"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":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":39.559,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":55.647,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":43.272,"y":18.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":55.647,"y":18.751,"w":1.125,"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":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":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":21.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":22.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":22.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":22.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":24.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":12.334,"y":24.001,"w":1.125,"l":86.711},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":92.899},{"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":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.751,"w":1.125,"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":31.126,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":31.876,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":30.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":32.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":35.604,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":36.353,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":35.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":36.751,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":39.671,"y":39.751,"w":0.75,"l":59.374},{"dsh":1,"oc":"#221f1f","x":62.146,"y":40.501,"w":0.75,"l":36.899},{"dsh":1,"oc":"#221f1f","x":11.097,"y":41.251,"w":0.75,"l":87.949},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":92.899}],"VLines":[{"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":95.29,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":7.485,"w":0.75,"l":1.531},{"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.781},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":9.735,"w":0.75,"l":12.031},{"oc":"#221f1f","x":79.202,"y":9.735,"w":0.75,"l":12.031},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":12.031},{"oc":"#221f1f","x":75.49,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":59.402,"y":11.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":75.49,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":12.735,"w":0.75,"l":0.789},{"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":63.115,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.69,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":15.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":15.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.49,"y":15.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":43.315,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":55.69,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":55.69,"y":17.985,"w":0.75,"l":0.789},{"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":63.115,"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":75.49,"y":19.485,"w":0.75,"l":0.781},{"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":63.115,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.789},{"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":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},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.789},{"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.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":82.915,"y":32.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":34.485,"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":"#c0c1c4","x":79.202,"y":9.751,"w":3.713,"h":12,"clr":-1},{"oc":"#c0c1c4","x":59.402,"y":15.751,"w":3.713,"h":3,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":31.126,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":35.604,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#201e1f","x":5.94,"y":1.9729999999999999,"w":13.431000000000008,"clr":-1,"A":"left","R":[{"T":"Form%208582-CR%20(Rev.%2001-2012)","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]}]},{"x":6.331,"y":2.76,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":2.777,"w":50.240999999999985,"clr":-1,"A":"left","R":[{"T":"Special%20Allowance%20for%20Rehabilitation%20Credits%20From%20Rental%20Real%20Estate%20Activities%20and%20Low-Income%20Housing%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":14.599,"y":3.489,"w":50.57599999999996,"clr":-1,"A":"left","R":[{"T":"Credits%20for%20Property%20Placed%20in%20Service%20Before%201990%20(or%20From%20Pass-Through%20Interests%20Acquired%20Before%201990)","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":14.602,"y":4.278,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.986,"y":4.278,"w":36.45099999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20have%20an%20amount%20on%20line%202c.%20Otherwise%2C%20go%20to%20Part%20IV.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.84,"w":12.690000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":5.84,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.59,"w":13.246000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2016","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":6.59,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":7.292999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.289999999999999,"w":40.36399999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017.%20If%20zero%2C%20enter%20-0-%20here%20and%20on%20lines%2030%20and%2036%2C%20and%20then%20go%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":7.978,"w":2.7219999999999995,"clr":-1,"A":"left","R":[{"T":"Part%20V","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.262,"y":7.978,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":8.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":9.543,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.54,"w":29.840000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20%24250%2C000.%20If%20married%20filing%20separately%2C%20see%20instructions%20to%20find%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.228,"w":17.006000000000004,"clr":-1,"A":"left","R":[{"T":"out%20if%20you%20can%20skip%20lines%2021%20through%2026","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":10.228,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.102,"w":30.006,"clr":-1,"A":"left","R":[{"T":"Enter%20modified%20adjusted%20gross%20income%2C%20but%20not%20less%20than%20zero.%20(See%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":11.79,"w":29.10000000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20line%2010.)%20If%20line%2022%20is%20equal%20to%20or%20more%20than%20line%2021%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":12.477,"w":21.416000000000007,"clr":-1,"A":"left","R":[{"T":"skip%20lines%2023%20through%2029%20and%20enter%20-0-%20on%20line%2030","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.13,"y":12.477,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2022%20from%20line%2021","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":13.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":14.043,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.04,"w":28.586000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2023%20by%2050%25%20(.50).%20Do%20not%20enter%20more%20than%20%2425%2C000.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":14.728,"w":18.26100000000001,"clr":-1,"A":"left","R":[{"T":"married%20filing%20separately%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.999,"y":14.728,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":14.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":15.543,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"25a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.54,"w":16.747000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":16.228,"w":5.984000000000001,"clr":-1,"A":"left","R":[{"T":"of%20Form%208582","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":16.228,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.904,"y":16.34,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"25a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":17.043,"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.04,"w":16.747000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2014%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":17.728,"w":5.984000000000001,"clr":-1,"A":"left","R":[{"T":"of%20Form%208582","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":17.728,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.876,"y":17.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"25b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"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":10.023,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2025a%20and%2025b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":18.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.704,"y":18.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"25c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.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":19.34,"w":13.115000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025c%20from%20line%2024","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":19.34,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":19.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":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":30.286000000000012,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20attributable%20to%20the%20amount%20on%20line%2026%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%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":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":16.469000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":20.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.59,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2027","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":21.59,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":23.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":23.76,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":23.765,"w":44.06899999999997,"clr":-1,"A":"left","R":[{"T":"Special%20Allowance%20for%20Low-Income%20Housing%20Credits%20for%20Property%20Placed%20in%20Service%20After%201989","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":24.528,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.986,"y":24.528,"w":36.19199999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20have%20an%20amount%20on%20line%203c.%20Otherwise%2C%20go%20to%20Part%20V.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":42.17799999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20III%2C%20enter%20the%20amount%20from%20line%2019.%20Otherwise%2C%20subtract%20line%2016%20from%20line%207.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":13.246000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2030","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":26.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":29.155,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2032%20from%20line%2031.%20If%20zero%2C%20enter%20-0-%20here%20and%20on%20line%2036","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.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":28.34,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.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":29.09,"w":30.521000000000004,"clr":-1,"A":"left","R":[{"T":"Tax%20attributable%20to%20the%20remaining%20special%20allowance%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":29.09,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":29.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":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":29.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"x":6.55,"y":30.885,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":30.89,"w":14.894000000000002,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Credit%20Allowed","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.165,"w":15.450000000000003,"clr":-1,"A":"left","R":[{"T":"Passive%20Activity%20Credit%20Allowed.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.352,"y":32.165,"w":27.86100000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%2C%2016%2C%2030%2C%20and%2036.%20See%20instructions%20to%20find%20out%20how%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":33.54,"w":41.52799999999999,"clr":-1,"A":"left","R":[{"T":"you%20have%20more%20than%20one%20credit%20or%20credits%20from%20more%20than%20one%20activity.%20If%20you%20have%20any%20credits%20","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.362,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20VI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":35.39,"w":21.451000000000004,"clr":-1,"A":"left","R":[{"T":"Election%20To%20Increase%20Basis%20of%20Credit%20Property","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.883,"y":37.29,"w":53.65799999999995,"clr":-1,"A":"left","R":[{"T":"elect%20to%20increase%20your%20basis%20in%20credit%20property%20used%20in%20that%20activity%20by%20the%20unallowed%20credit%20that%20reduced%20your%20basis%20in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":37.988,"w":18.596000000000007,"clr":-1,"A":"left","R":[{"T":"property%2C%20check%20this%20box.%20See%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.007,"y":37.988,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":"..........................%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.092,"y":37.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.778,"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.778,"w":16.983999999999998,"clr":-1,"A":"left","R":[{"T":"Name%20of%20passive%20activity%20disposed%20of%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.161,"y":38.684,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.528,"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.528,"w":31.764,"clr":-1,"A":"left","R":[{"T":"Description%20of%20the%20credit%20property%20for%20which%20the%20election%20is%20being%20made%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.024,"y":39.434,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.028,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.028,"w":29.932000000000002,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20unallowed%20credit%20that%20reduced%20your%20basis%20in%20the%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":41.028,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.581,"y":40.934,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.121,"y":41.028,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.393,"y":41.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.536,"y":41.822,"w":4.001,"clr":-1,"A":"left","R":[{"T":"8582-CR","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.572,"y":41.822,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2001-2012)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":16.244000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%202c%20or%20line%2019","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":16.26300000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2020%20or%20line%2029","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":16.244000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%203c%20or%20line%2033","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":16.26300000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2034%20or%20line%2035","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":34.227,"w":42.321999999999974,"clr":-1,"A":"left","R":[{"T":"from%20a%20publicly%20traded%20partnership%2C%20see%20Publicly%20Traded%20Partnerships%20(PTPs)%20in%20the%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.603,"w":54.22899999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20disposed%20of%20your%20entire%20interest%20in%20a%20passive%20activity%20or%20former%20passive%20activity%20in%20a%20fully%20taxable%20transaction%2C%20and%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":32.852,"w":42.797,"clr":-1,"A":"left","R":[{"T":"report%20the%20allowed%20credit%20on%20your%20tax%20return%20and%20how%20to%20allocate%20allowed%20and%20unallowed%20credits%20if","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":4982,"AM":1024,"x":23.393,"y":2.15,"w":47.473,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":4983,"AM":1024,"x":71.134,"y":2.022,"w":22.11,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":4984,"AM":1024,"x":83.098,"y":6.053,"w":12.024,"h":0.833,"TU":"Line 17. Enter the amount from line 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":4985,"AM":1024,"x":83.016,"y":6.788,"w":12.189,"h":0.833,"TU":"18"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":4986,"AM":1024,"x":83.098,"y":8.31,"w":12.024,"h":0.833,"TU":"19"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":4987,"AM":1024,"x":83.016,"y":9.038,"w":12.189,"h":0.833,"TU":"20"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":4988,"AM":0,"x":63.298,"y":10.569,"w":12.024,"h":0.833,"TU":"Line 21. Enter $250,000. If married filing separately, see instructions to find out if you can skip lines 21 through 26."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":4989,"AM":0,"x":63.319,"y":12.63,"w":11.983,"h":0.847,"TU":"Line 22. Enter modified adjusted gross income, but not less than zero. (See instructions for line 10). If line 22 is equal to or more than line 21, skip lines 23 through 29 and enter zero on line 30."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":4990,"AM":1024,"x":63.291,"y":13.545,"w":12.189,"h":0.833,"TU":"21 22 23 24 25c 26 27 28"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":4991,"AM":0,"x":63.298,"y":14.978,"w":12.024,"h":0.833,"TU":"Line 24. Multiply line 23 by 50% (.50) Do not enter more than $25,000. If married filing separately, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25A","EN":0},"TI":4992,"AM":1024,"x":43.498,"y":16.515,"w":12.024,"h":0.833,"TU":"25a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25B","EN":0},"TI":4993,"AM":1024,"x":43.391,"y":17.986,"w":12.024,"h":0.833,"TU":"25b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":4994,"AM":1024,"x":63.36,"y":18.726,"w":11.901,"h":0.833,"TU":"21 22 23 24 25c 26 27 28"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":4995,"AM":1024,"x":63.216,"y":19.545,"w":12.189,"h":0.833,"TU":"21 22 23 24 25c 26 27 28"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":4996,"AM":0,"x":63.216,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 27. Enter the tax attributable to the amount on line 26 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":4997,"AM":1024,"x":63.216,"y":21.038,"w":12.189,"h":0.833,"TU":"21 22 23 24 25c 26 27 28"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":4998,"AM":1024,"x":83.16,"y":21.792,"w":11.901,"h":0.833,"TU":"29"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":4999,"AM":1024,"x":83.098,"y":23.283,"w":12.024,"h":0.833,"TU":"30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":5000,"AM":0,"x":83.098,"y":26.248,"w":12.024,"h":0.833,"TU":"Line 31. If you completed Part III, enter the amount from line 19. Otherwise, subtract line 16 from line 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":5001,"AM":1024,"x":83.016,"y":27.038,"w":12.189,"h":0.833,"TU":"32"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":5002,"AM":1024,"x":83.091,"y":27.795,"w":12.189,"h":0.833,"TU":"33"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":5003,"AM":1024,"x":83.016,"y":28.538,"w":12.189,"h":0.833,"TU":"34"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":5004,"AM":0,"x":83.016,"y":29.288,"w":12.189,"h":0.833,"TU":"Line 35. Tax attributable to the remaining special allowance (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":5005,"AM":1024,"x":83.091,"y":30.038,"w":12.189,"h":0.833,"TU":"36"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":5006,"AM":1024,"x":83.16,"y":34.409,"w":11.901,"h":0.833,"TU":"37"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":5008,"AM":0,"x":39.53,"y":38.95,"w":59.472,"h":0.833,"TU":"Line 39. Name of passive activity disposed of."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":5009,"AM":0,"x":61.739,"y":39.782,"w":37.086,"h":0.833,"TU":"Line 40. Description of the credit property for which the election is being made."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L40T","EN":0},"TI":5010,"AM":0,"x":11.197,"y":40.482,"w":87.547,"h":0.833,"TU":"Line 40. Continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":5011,"AM":0,"x":77.787,"y":41.3,"w":21.065,"h":0.833,"TU":"Line 41. Amount of unallowed credit that reduced your basis in the property."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":5007,"AM":0,"x":97.477,"y":38.098,"w":1.671,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8582W15.content.txt b/test/data/fd/form/F8582W15.content.txt new file mode 100755 index 00000000..0a612425 --- /dev/null +++ b/test/data/fd/form/F8582W15.content.txt @@ -0,0 +1,94 @@ +Form 8582 (2013) +Page +2 +Caution: +The worksheets must be filed with your tax return. Keep a copy for your records. +Worksheet 1—For Form 8582, Lines 1a, 1b, and 1c +(See instructions.) +Name of activity +Current year +Prior years +Overall gain or loss + +(a) Net income +(line 1a) +(b) Net loss +(line 1b) +(c) Unallowed +loss (line 1c) +(d) Gain +(e) Loss +Total. Enter on Form 8582, lines 1a, 1b, +and 1c +........... +a +Worksheet 2—For Form 8582, Lines 2a and 2b +(See instructions.) +Name of activity +(a) Current year +deductions (line 2a) +(b) Prior year +unallowed deductions (line 2b) +(c) Overall loss +Total. Enter on Form 8582, lines 2a and +2b +............ +a +Worksheet 3—For Form 8582, Lines 3a, 3b, and 3c +(See instructions.) +Name of activity +Current year +Prior years +Overall gain or loss + +(a) Net income +(line 3a) +(b) Net loss +(line 3b) +(c) Unallowed +loss (line 3c) +(d) Gain +(e) Loss +Total. Enter on Form 8582, lines 3a, 3b, +and 3c +........... +a +Worksheet 4—Use this worksheet if an amount is shown on Form 8582, line 10 or 14 +(See instructions.) +Name of activity +Form or schedule +and line number +to be reported on +(see instructions) +(a) Loss +(b) Ratio +(c) Special +allowance +(d) Subtract +column (c) from +column (a) +Total +................. +a + +Worksheet 5—Allocation of Unallowed Losses +(See instructions.) +Name of activity +Form or schedule +and line number +to be reported on +(see instructions) +(a) Loss +(b) Ratio +(c) Unallowed loss +Total +................... +a + +Form +8582 + (2013) +1.00 +1.00 +Form 8582 pg 3 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8582W15.fields.json b/test/data/fd/form/F8582W15.fields.json new file mode 100755 index 00000000..e91fa3e3 --- /dev/null +++ b/test/data/fd/form/F8582W15.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"WKS1_N1_1_","type":"alpha","calc":false,"value":""},{"id":"WKS1_A1_1_","type":"mask","calc":false,"value":""},{"id":"WKS1_B1_1_","type":"mask","calc":false,"value":""},{"id":"WKS1_C1_1_","type":"mask","calc":false,"value":""},{"id":"WKS1_D1_1_","type":"mask","calc":false,"value":""},{"id":"WKS1_E1_1_","type":"mask","calc":false,"value":""},{"id":"WKS1_N1_2_","type":"alpha","calc":false,"value":""},{"id":"WKS1_A1_2_","type":"mask","calc":false,"value":""},{"id":"WKS1_B1_2_","type":"mask","calc":false,"value":""},{"id":"WKS1_C1_2_","type":"mask","calc":false,"value":""},{"id":"WKS1_D1_2_","type":"mask","calc":false,"value":""},{"id":"WKS1_E1_2_","type":"mask","calc":false,"value":""},{"id":"WKS1_N1_3_","type":"alpha","calc":false,"value":""},{"id":"WKS1_A1_3_","type":"mask","calc":false,"value":""},{"id":"WKS1_B1_3_","type":"mask","calc":false,"value":""},{"id":"WKS1_C1_3_","type":"mask","calc":false,"value":""},{"id":"WKS1_D1_3_","type":"mask","calc":false,"value":""},{"id":"WKS1_E1_3_","type":"mask","calc":false,"value":""},{"id":"WKS1_N1_4_","type":"alpha","calc":false,"value":""},{"id":"WKS1_A1_4_","type":"mask","calc":false,"value":""},{"id":"WKS1_B1_4_","type":"mask","calc":false,"value":""},{"id":"WKS1_C1_4_","type":"mask","calc":false,"value":""},{"id":"WKS1_D1_4_","type":"mask","calc":false,"value":""},{"id":"WKS1_E1_4_","type":"mask","calc":false,"value":""},{"id":"WKS1_N1_5_","type":"alpha","calc":false,"value":""},{"id":"WKS1_A1_5_","type":"mask","calc":false,"value":""},{"id":"WKS1_B1_5_","type":"mask","calc":false,"value":""},{"id":"WKS1_C1_5_","type":"mask","calc":false,"value":""},{"id":"WKS1_D1_5_","type":"mask","calc":false,"value":""},{"id":"WKS1_E1_5_","type":"mask","calc":false,"value":""},{"id":"TA1","type":"number","calc":true,"value":""},{"id":"TB1","type":"number","calc":true,"value":""},{"id":"TC1","type":"number","calc":true,"value":""},{"id":"CRD_N2CRD_1_","type":"alpha","calc":false,"value":""},{"id":"CRD_CYDED_1_","type":"mask","calc":false,"value":""},{"id":"CRD_PYDED_1_","type":"mask","calc":false,"value":""},{"id":"CRD_OLOSS_1_","type":"mask","calc":false,"value":""},{"id":"CRD_N2CRD_2_","type":"alpha","calc":false,"value":""},{"id":"CRD_CYDED_2_","type":"mask","calc":false,"value":""},{"id":"CRD_PYDED_2_","type":"mask","calc":false,"value":""},{"id":"CRD_OLOSS_2_","type":"mask","calc":false,"value":""},{"id":"CRD_N2CRD_3_","type":"alpha","calc":false,"value":""},{"id":"CRD_CYDED_3_","type":"mask","calc":false,"value":""},{"id":"CRD_PYDED_3_","type":"mask","calc":false,"value":""},{"id":"CRD_OLOSS_3_","type":"mask","calc":false,"value":""},{"id":"CRD_N2CRD_4_","type":"alpha","calc":false,"value":""},{"id":"CRD_CYDED_4_","type":"mask","calc":false,"value":""},{"id":"CRD_PYDED_4_","type":"mask","calc":false,"value":""},{"id":"CRD_OLOSS_4_","type":"mask","calc":false,"value":""},{"id":"TCYDED","type":"number","calc":true,"value":""},{"id":"TPYDED","type":"number","calc":true,"value":""},{"id":"WKS2_N2_1_","type":"alpha","calc":false,"value":""},{"id":"WKS2_A2_1_","type":"mask","calc":false,"value":""},{"id":"WKS2_B2_1_","type":"mask","calc":false,"value":""},{"id":"WKS2_C2_1_","type":"mask","calc":false,"value":""},{"id":"WKS2_D2_1_","type":"mask","calc":false,"value":""},{"id":"WKS2_E2_1_","type":"mask","calc":false,"value":""},{"id":"WKS2_N2_2_","type":"alpha","calc":false,"value":""},{"id":"WKS2_A2_2_","type":"mask","calc":false,"value":""},{"id":"WKS2_B2_2_","type":"mask","calc":false,"value":""},{"id":"WKS2_C2_2_","type":"mask","calc":false,"value":""},{"id":"WKS2_D2_2_","type":"mask","calc":false,"value":""},{"id":"WKS2_E2_2_","type":"mask","calc":false,"value":""},{"id":"WKS2_N2_3_","type":"alpha","calc":false,"value":""},{"id":"WKS2_A2_3_","type":"mask","calc":false,"value":""},{"id":"WKS2_B2_3_","type":"mask","calc":false,"value":""},{"id":"WKS2_C2_3_","type":"mask","calc":false,"value":""},{"id":"WKS2_D2_3_","type":"mask","calc":false,"value":""},{"id":"WKS2_E2_3_","type":"mask","calc":false,"value":""},{"id":"WKS2_N2_4_","type":"alpha","calc":false,"value":""},{"id":"WKS2_A2_4_","type":"mask","calc":false,"value":""},{"id":"WKS2_B2_4_","type":"mask","calc":false,"value":""},{"id":"WKS2_C2_4_","type":"mask","calc":false,"value":""},{"id":"WKS2_D2_4_","type":"mask","calc":false,"value":""},{"id":"WKS2_E2_4_","type":"mask","calc":false,"value":""},{"id":"WKS2_N2_5_","type":"alpha","calc":false,"value":""},{"id":"WKS2_A2_5_","type":"mask","calc":false,"value":""},{"id":"WKS2_B2_5_","type":"mask","calc":false,"value":""},{"id":"WKS2_C2_5_","type":"mask","calc":false,"value":""},{"id":"WKS2_D2_5_","type":"mask","calc":false,"value":""},{"id":"WKS2_E2_5_","type":"mask","calc":false,"value":""},{"id":"TA2","type":"number","calc":true,"value":""},{"id":"TB2","type":"number","calc":true,"value":""},{"id":"TC2","type":"number","calc":true,"value":""},{"id":"WKS3_N3_1_","type":"alpha","calc":false,"value":""},{"id":"WKS3_F3_1_","type":"alpha","calc":false,"value":""},{"id":"WKS3_A3_1_","type":"mask","calc":false,"value":""},{"id":"WKS3_B3_1_","type":"mask","calc":false,"value":""},{"id":"WKS3_C3_1_","type":"mask","calc":false,"value":""},{"id":"WKS3_D3_1_","type":"number","calc":true,"value":""},{"id":"WKS3_N3_2_","type":"alpha","calc":false,"value":""},{"id":"WKS3_F3_2_","type":"alpha","calc":false,"value":""},{"id":"WKS3_A3_2_","type":"mask","calc":false,"value":""},{"id":"WKS3_B3_2_","type":"mask","calc":false,"value":""},{"id":"WKS3_C3_2_","type":"mask","calc":false,"value":""},{"id":"WKS3_D3_2_","type":"number","calc":true,"value":""},{"id":"WKS3_N3_3_","type":"alpha","calc":false,"value":""},{"id":"WKS3_F3_3_","type":"alpha","calc":false,"value":""},{"id":"WKS3_A3_3_","type":"mask","calc":false,"value":""},{"id":"WKS3_B3_3_","type":"mask","calc":false,"value":""},{"id":"WKS3_C3_3_","type":"mask","calc":false,"value":""},{"id":"WKS3_D3_3_","type":"number","calc":true,"value":""},{"id":"WKS3_N3_4_","type":"alpha","calc":false,"value":""},{"id":"WKS3_F3_4_","type":"alpha","calc":false,"value":""},{"id":"WKS3_A3_4_","type":"mask","calc":false,"value":""},{"id":"WKS3_B3_4_","type":"mask","calc":false,"value":""},{"id":"WKS3_C3_4_","type":"mask","calc":false,"value":""},{"id":"WKS3_D3_4_","type":"number","calc":true,"value":""},{"id":"WKS3_N3_5_","type":"alpha","calc":false,"value":""},{"id":"WKS3_F3_5_","type":"alpha","calc":false,"value":""},{"id":"WKS3_A3_5_","type":"mask","calc":false,"value":""},{"id":"WKS3_B3_5_","type":"mask","calc":false,"value":""},{"id":"WKS3_C3_5_","type":"mask","calc":false,"value":""},{"id":"WKS3_D3_5_","type":"number","calc":true,"value":""},{"id":"TA3","type":"number","calc":true,"value":""},{"id":"TC3","type":"number","calc":true,"value":""},{"id":"TD3","type":"number","calc":true,"value":""},{"id":"WKS4_N4_1_","type":"alpha","calc":false,"value":""},{"id":"WKS4_F4_1_","type":"alpha","calc":false,"value":""},{"id":"WKS4_A4_1_","type":"mask","calc":false,"value":""},{"id":"WKS4_B4_1_","type":"mask","calc":false,"value":""},{"id":"WKS4_C4_1_","type":"mask","calc":false,"value":""},{"id":"WKS4_N4_2_","type":"alpha","calc":false,"value":""},{"id":"WKS4_F4_2_","type":"alpha","calc":false,"value":""},{"id":"WKS4_A4_2_","type":"mask","calc":false,"value":""},{"id":"WKS4_B4_2_","type":"mask","calc":false,"value":""},{"id":"WKS4_C4_2_","type":"mask","calc":false,"value":""},{"id":"WKS4_N4_3_","type":"alpha","calc":false,"value":""},{"id":"WKS4_F4_3_","type":"alpha","calc":false,"value":""},{"id":"WKS4_A4_3_","type":"mask","calc":false,"value":""},{"id":"WKS4_B4_3_","type":"mask","calc":false,"value":""},{"id":"WKS4_C4_3_","type":"mask","calc":false,"value":""},{"id":"WKS4_N4_4_","type":"alpha","calc":false,"value":""},{"id":"WKS4_F4_4_","type":"alpha","calc":false,"value":""},{"id":"WKS4_A4_4_","type":"mask","calc":false,"value":""},{"id":"WKS4_B4_4_","type":"mask","calc":false,"value":""},{"id":"WKS4_C4_4_","type":"mask","calc":false,"value":""},{"id":"WKS4_N4_5_","type":"alpha","calc":false,"value":""},{"id":"WKS4_F4_5_","type":"alpha","calc":false,"value":""},{"id":"WKS4_A4_5_","type":"mask","calc":false,"value":""},{"id":"WKS4_B4_5_","type":"mask","calc":false,"value":""},{"id":"WKS4_C4_5_","type":"mask","calc":false,"value":""},{"id":"TA4","type":"number","calc":true,"value":""},{"id":"TC4","type":"number","calc":true,"value":""},{"id":"Add_F8283P3","type":"link","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8582W15.json b/test/data/fd/form/F8582W15.json new file mode 100755 index 00000000..e762e94d --- /dev/null +++ b/test/data/fd/form/F8582W15.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8582","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":6.147,"y":4.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":6.001,"w":0.75,"l":24.836},{"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":24.836},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":9.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":9.001,"w":0.75,"l":12.461},{"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":6.146,"y":9.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":10.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":11.251,"w":1.125,"l":31.023},{"oc":"#221f1f","x":37.084,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":49.459,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":61.834,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":11.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":11.251,"w":1.1235,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":11.251,"w":1.1235,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":12.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":15.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":58.122,"y":15.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":15.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":15.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":58.122,"y":15.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":15.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.146,"y":16.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":16.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":58.121,"y":16.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":16.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.146,"y":17.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":17.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":58.121,"y":17.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":18.001,"w":1.125,"l":31.023},{"oc":"#221f1f","x":37.084,"y":18.001,"w":1.125,"l":21.123},{"oc":"#221f1f","x":58.122,"y":18.001,"w":1.125,"l":21.123},{"oc":"#221f1f","x":79.159,"y":18.001,"w":1.125,"l":19.886},{"oc":"#221f1f","x":79.159,"y":18.001,"w":1.1235,"l":19.886},{"oc":"#221f1f","x":79.159,"y":19.501,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":19.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":21.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":61.834,"y":21.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":21.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":24.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":24.751,"w":0.75,"l":12.461},{"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":6.146,"y":25.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":25.501,"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":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":26.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":27.001,"w":1.125,"l":31.023},{"oc":"#221f1f","x":37.084,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":49.459,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":61.834,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":27.001,"w":1.1235,"l":12.461},{"oc":"#221f1f","x":74.209,"y":28.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":27.001,"w":1.1235,"l":12.461},{"oc":"#221f1f","x":86.584,"y":28.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":28.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":32.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"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":6.147,"y":33.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"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":6.146,"y":33.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":34.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.146,"y":35.254,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":35.254,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":35.254,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":35.254,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":35.254,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":35.254,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":36.004,"w":1.125,"l":31.023},{"oc":"#221f1f","x":37.084,"y":36.004,"w":1.125,"l":12.461},{"oc":"#221f1f","x":49.459,"y":36.004,"w":1.125,"l":12.461},{"oc":"#221f1f","x":61.834,"y":36.004,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":36.004,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":36.004,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":37.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":41.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":41.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":53.172,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":68.022,"y":41.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":42.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":42.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":53.172,"y":42.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":68.022,"y":42.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":42.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":42.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":42.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":53.171,"y":42.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":68.021,"y":42.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":42.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":43.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":43.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":53.171,"y":43.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":68.021,"y":43.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":43.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.146,"y":44.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":44.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":53.171,"y":44.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":68.021,"y":44.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.871,"y":44.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.125,"l":31.023},{"oc":"#221f1f","x":37.084,"y":45.001,"w":1.125,"l":16.173},{"oc":"#221f1f","x":53.172,"y":45.001,"w":1.125,"l":14.936},{"oc":"#221f1f","x":68.022,"y":45.001,"w":1.125,"l":14.936},{"oc":"#221f1f","x":82.872,"y":45.001,"w":1.125,"l":16.173},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":37.127,"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":37.127,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"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":37.127,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"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":37.127,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":49.502,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":37.127,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":11.227,"w":0.75,"l":1.547},{"oc":"#221f1f","x":37.127,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"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":37.127,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.164,"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":37.127,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.164,"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":37.127,"y":17.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":58.165,"y":17.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":17.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":37.127,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":17.978,"w":0.75,"l":1.547},{"oc":"#221f1f","x":37.127,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"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":74.252,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":49.502,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":37.127,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":26.978,"w":0.75,"l":1.547},{"oc":"#221f1f","x":37.127,"y":29.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.502,"y":29.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":29.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":29.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.627,"y":29.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":37.127,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":34.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":49.502,"y":34.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":61.877,"y":34.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":74.252,"y":34.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":86.627,"y":34.485,"w":0.75,"l":0.784},{"oc":"#221f1f","x":37.127,"y":35.238,"w":0.75,"l":0.789},{"oc":"#221f1f","x":49.502,"y":35.238,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":35.238,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":35.238,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.627,"y":35.238,"w":0.75,"l":0.789},{"oc":"#221f1f","x":49.498,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":53.215,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":68.065,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":37.127,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.214,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.214,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.214,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.064,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.914,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":37.127,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":53.215,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":44.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":53.215,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.065,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":74.252,"y":11.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":11.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":18.001,"w":19.8,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":27.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":27.001,"w":12.375,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208582%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]}]},{"oc":"#221f1f","x":5.94,"y":2.822,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.292,"y":2.822,"w":35.68699999999998,"clr":-1,"A":"left","R":[{"T":"The%20worksheets%20must%20be%20filed%20with%20your%20tax%20return.%20Keep%20a%20copy%20for%20your%20records.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.572,"w":24.116000000000003,"clr":-1,"A":"left","R":[{"T":"Worksheet%201%E2%80%94For%20Form%208582%2C%20Lines%201a%2C%201b%2C%20and%201c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":47.389,"y":3.572,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.451,"y":5.396,"w":7.702000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.639,"y":4.646,"w":5.965,"clr":-1,"A":"left","R":[{"T":"Current%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.80500000000001,"y":4.646,"w":5.1850000000000005,"clr":-1,"A":"left","R":[{"T":"Prior%20years","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.29,"y":4.646,"w":9.164000000000001,"clr":-1,"A":"left","R":[{"T":"Overall%20gain%20or%20loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.724,"y":5.834,"w":7.183,"clr":-1,"A":"left","R":[{"T":"(a)%20Net%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.216,"y":6.459,"w":3.6830000000000003,"clr":-1,"A":"left","R":[{"T":"(line%201a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.287,"y":5.834,"w":5.647,"clr":-1,"A":"left","R":[{"T":"(b)%20Net%20loss%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.562,"y":6.459,"w":3.72,"clr":-1,"A":"left","R":[{"T":"(line%201b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.804,"y":5.834,"w":6.756,"clr":-1,"A":"left","R":[{"T":"(c)%20Unallowed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.248,"y":6.459,"w":5.904,"clr":-1,"A":"left","R":[{"T":"loss%20(line%201c)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.355,"y":6.146,"w":3.665,"clr":-1,"A":"left","R":[{"T":"(d)%20Gain","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.686,"y":6.146,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"(e)%20Loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.09,"w":18.742,"clr":-1,"A":"left","R":[{"T":"Total.%20Enter%20on%20Form%208582%2C%20lines%201a%2C%201b%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.788,"w":3.186,"clr":-1,"A":"left","R":[{"T":"and%201c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.126,"y":11.788,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.402,"y":11.695,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.572,"w":22.152000000000005,"clr":-1,"A":"left","R":[{"T":"Worksheet%202%E2%80%94For%20Form%208582%2C%20Lines%202a%20and%202b%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":44.013,"y":12.572,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.451,"y":13.646,"w":7.702000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.666,"y":13.334,"w":7.965,"clr":-1,"A":"left","R":[{"T":"(a)%20Current%20year%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.222,"y":13.959,"w":9.275,"clr":-1,"A":"left","R":[{"T":"deductions%20(line%202a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.167,"y":13.334,"w":6.6850000000000005,"clr":-1,"A":"left","R":[{"T":"(b)%20Prior%20year%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":58.358,"y":13.959,"w":14.475999999999999,"clr":-1,"A":"left","R":[{"T":"unallowed%20deductions%20(line%202b)","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":83.426,"y":13.646,"w":7.016,"clr":-1,"A":"left","R":[{"T":"(c)%20Overall%20loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.84,"w":18.797000000000004,"clr":-1,"A":"left","R":[{"T":"Total.%20Enter%20on%20Form%208582%2C%20lines%202a%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.936,"y":18.538,"w":1.445,"clr":-1,"A":"left","R":[{"T":"2b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.062,"y":18.538,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.402,"y":18.445,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.322,"w":24.116000000000003,"clr":-1,"A":"left","R":[{"T":"Worksheet%203%E2%80%94For%20Form%208582%2C%20Lines%203a%2C%203b%2C%20and%203c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":47.389,"y":19.322,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.451,"y":21.146,"w":7.702000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.639,"y":20.396,"w":5.965,"clr":-1,"A":"left","R":[{"T":"Current%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.80500000000001,"y":20.396,"w":5.1850000000000005,"clr":-1,"A":"left","R":[{"T":"Prior%20years","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.29,"y":20.396,"w":9.164000000000001,"clr":-1,"A":"left","R":[{"T":"Overall%20gain%20or%20loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.724,"y":21.584,"w":7.183,"clr":-1,"A":"left","R":[{"T":"(a)%20Net%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.216,"y":22.209,"w":3.6830000000000003,"clr":-1,"A":"left","R":[{"T":"(line%203a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.287,"y":21.584,"w":5.647,"clr":-1,"A":"left","R":[{"T":"(b)%20Net%20loss%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.562,"y":22.209,"w":3.72,"clr":-1,"A":"left","R":[{"T":"(line%203b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.804,"y":21.584,"w":6.756,"clr":-1,"A":"left","R":[{"T":"(c)%20Unallowed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.248,"y":22.209,"w":5.904,"clr":-1,"A":"left","R":[{"T":"loss%20(line%203c)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.355,"y":21.896,"w":3.665,"clr":-1,"A":"left","R":[{"T":"(d)%20Gain","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.686,"y":21.896,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"(e)%20Loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.84,"w":18.742,"clr":-1,"A":"left","R":[{"T":"Total.%20Enter%20on%20Form%208582%2C%20lines%203a%2C%203b%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":27.538,"w":3.186,"clr":-1,"A":"left","R":[{"T":"and%203c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.126,"y":27.538,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.402,"y":27.445,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":28.322,"w":40.203999999999965,"clr":-1,"A":"left","R":[{"T":"Worksheet%204%E2%80%94Use%20this%20worksheet%20if%20an%20amount%20is%20shown%20on%20Form%208582%2C%20line%2010%20or%2014%20","S":-1,"TS":[0,12.9,0,0]}]},{"oc":"#221f1f","x":74.348,"y":28.322,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,12.9,0,0]}]},{"oc":"#221f1f","x":15.451,"y":30.146,"w":7.702000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.369,"y":29.209,"w":8.647,"clr":-1,"A":"left","R":[{"T":"Form%20or%20schedule%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":37.836,"y":29.834,"w":7.9609999999999985,"clr":-1,"A":"left","R":[{"T":"and%20line%20number%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":37.418,"y":30.459,"w":8.575000000000001,"clr":-1,"A":"left","R":[{"T":"to%20be%20reported%20on%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":37.483,"y":31.084,"w":8.202,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":52.561,"y":30.146,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.722,"y":30.146,"w":3.998,"clr":-1,"A":"left","R":[{"T":"(b)%20Ratio","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.367,"y":29.834,"w":5.219999999999999,"clr":-1,"A":"left","R":[{"T":"(c)%20Special%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.454,"y":30.459,"w":4.83,"clr":-1,"A":"left","R":[{"T":"allowance","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.296,"y":29.521,"w":5.853,"clr":-1,"A":"left","R":[{"T":"(d)%20Subtract%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":86.826,"y":30.146,"w":7.773999999999999,"clr":-1,"A":"left","R":[{"T":"column%20(c)%20from%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":88.752,"y":30.771,"w":4.979,"clr":-1,"A":"left","R":[{"T":"column%20(a)","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":5.94,"y":36.594,"w":2.6839999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.127,"y":36.594,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.777,"y":36.501,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":37.322,"w":22.235,"clr":-1,"A":"left","R":[{"T":"Worksheet%205%E2%80%94Allocation%20of%20Unallowed%20Losses%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":44.156,"y":37.322,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.451,"y":39.146,"w":7.702000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.448,"y":38.209,"w":8.647,"clr":-1,"A":"left","R":[{"T":"Form%20or%20schedule%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.979,"y":38.834,"w":7.9609999999999985,"clr":-1,"A":"left","R":[{"T":"and%20line%20number%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.504,"y":39.459,"w":8.575000000000001,"clr":-1,"A":"left","R":[{"T":"to%20be%20reported%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.578,"y":40.084,"w":8.202,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.799,"y":39.146,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Loss","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":72.457,"y":39.146,"w":3.998,"clr":-1,"A":"left","R":[{"T":"(b)%20Ratio","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":84.653,"y":39.146,"w":8.699000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20Unallowed%20loss","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":5.94,"y":45.527,"w":2.6839999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.127,"y":45.527,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.49,"y":45.434,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8582","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":66.31,"y":36.628,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"1.00","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":73.735,"y":45.628,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"1.00","S":3,"TS":[0,12,0,0]}]},{"x":70.651,"y":46.436,"w":63.53099999999999,"clr":0,"A":"left","R":[{"T":"Form%208582%20pg%203","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5012,"AM":1024,"x":17.928,"y":2.04,"w":51.521,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5013,"AM":1024,"x":71.543,"y":2.088,"w":16.816,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS1_N1_1_","EN":0},"TI":5014,"AM":0,"x":6.188,"y":7.538,"w":30.855,"h":0.833,"TU":"Name of activity_Row_1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_A1_1_","EN":0},"TI":5015,"AM":0,"x":37.228,"y":7.538,"w":12.189,"h":0.833,"TU":"(a) Net income (line 1a)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_B1_1_","EN":0},"TI":5016,"AM":0,"x":49.603,"y":7.538,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 1b)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_C1_1_","EN":0},"TI":5017,"AM":0,"x":61.978,"y":7.538,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 1b)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_D1_1_","EN":0},"TI":5018,"AM":0,"x":74.353,"y":7.538,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_E1_1_","EN":0},"TI":5019,"AM":0,"x":86.728,"y":7.538,"w":12.292,"h":0.833,"TU":"(e) Loss_Row_1","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS1_N1_2_","EN":0},"TI":5020,"AM":0,"x":6.188,"y":8.288,"w":30.855,"h":0.833,"TU":"Name of activity_Row_2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_A1_2_","EN":0},"TI":5021,"AM":0,"x":37.228,"y":8.288,"w":12.189,"h":0.833,"TU":"(a) Net income (line 1a)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_B1_2_","EN":0},"TI":5022,"AM":0,"x":49.603,"y":8.288,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 1b)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_C1_2_","EN":0},"TI":5023,"AM":0,"x":61.978,"y":8.288,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 1c)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_D1_2_","EN":0},"TI":5024,"AM":0,"x":74.353,"y":8.288,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_E1_2_","EN":0},"TI":5025,"AM":0,"x":86.728,"y":8.288,"w":12.292,"h":0.833,"TU":"(e) Loss_Row_2","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS1_N1_3_","EN":0},"TI":5026,"AM":0,"x":6.188,"y":9.038,"w":30.855,"h":0.833,"TU":"Name of activity_Row_3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_A1_3_","EN":0},"TI":5027,"AM":0,"x":37.228,"y":9.038,"w":12.189,"h":0.833,"TU":"(a) Net income (line 1a)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_B1_3_","EN":0},"TI":5028,"AM":0,"x":49.603,"y":9.038,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 1b)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_C1_3_","EN":0},"TI":5029,"AM":0,"x":61.978,"y":9.038,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 1c)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_D1_3_","EN":0},"TI":5030,"AM":0,"x":74.353,"y":9.038,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_E1_3_","EN":0},"TI":5031,"AM":0,"x":86.728,"y":8.987,"w":12.292,"h":0.833,"TU":"(e) Loss_Row_3","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS1_N1_4_","EN":0},"TI":5032,"AM":0,"x":6.188,"y":9.788,"w":30.855,"h":0.833,"TU":"Name of activity_Row_4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_A1_4_","EN":0},"TI":5033,"AM":0,"x":37.228,"y":9.788,"w":12.189,"h":0.833,"TU":"(a) Net income (line 1a)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_B1_4_","EN":0},"TI":5034,"AM":0,"x":49.735,"y":9.788,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 1b)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_C1_4_","EN":0},"TI":5035,"AM":0,"x":61.978,"y":9.788,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 1c)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_D1_4_","EN":0},"TI":5036,"AM":0,"x":74.353,"y":9.788,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_E1_4_","EN":0},"TI":5037,"AM":0,"x":86.728,"y":9.788,"w":12.292,"h":0.833,"TU":"(e) Loss_Row_4","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS1_N1_5_","EN":0},"TI":5038,"AM":0,"x":6.188,"y":10.538,"w":30.855,"h":0.833,"TU":"Name of activity_Row_5"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_A1_5_","EN":0},"TI":5039,"AM":0,"x":37.228,"y":10.538,"w":12.189,"h":0.833,"TU":"(a) Net income (line 1a)_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_B1_5_","EN":0},"TI":5040,"AM":0,"x":49.603,"y":10.538,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 1b)_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_C1_5_","EN":0},"TI":5041,"AM":0,"x":61.978,"y":10.538,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 1c)_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_D1_5_","EN":0},"TI":5042,"AM":0,"x":74.353,"y":10.538,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS1_E1_5_","EN":0},"TI":5043,"AM":0,"x":86.728,"y":10.538,"w":12.292,"h":0.833,"TU":"(e) Loss_Row_5","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TA1","EN":0},"TI":5044,"AM":1024,"x":37.086,"y":11.842,"w":12.399,"h":0.885,"TU":"(a) Net income (line 1a)_Total. Enter on Form 8582, lines 1a, 1b, and 1c a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB1","EN":0},"TI":5045,"AM":1024,"x":49.536,"y":11.87,"w":12.473,"h":0.858,"TU":"(b) Net loss (line 1b)_Total. Enter on Form 8582, lines 1a, 1b, and 1c a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC1","EN":0},"TI":5046,"AM":1024,"x":61.986,"y":11.897,"w":12.249,"h":0.833,"TU":"(c) Unallowed loss (line 1c)_Total. Enter on Form 8582, lines 1a, 1b, and 1c a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRD_N2CRD_1_","EN":0},"TI":5047,"AM":0,"x":6.188,"y":15.038,"w":30.855,"h":0.833,"TU":"Name of activity_Row_1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_CYDED_1_","EN":0},"TI":5048,"AM":0,"x":37.228,"y":15.038,"w":20.852,"h":0.833,"TU":"(a) Current year deductions (line 2a)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_PYDED_1_","EN":0},"TI":5049,"AM":0,"x":58.266,"y":15.038,"w":20.852,"h":0.833,"TU":"(b) Prior year unallowed deductions (line 2b)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_OLOSS_1_","EN":0},"TI":5050,"AM":0,"x":79.303,"y":15.038,"w":19.718,"h":0.833,"TU":"(c) Overall loss_Row_1","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRD_N2CRD_2_","EN":0},"TI":5051,"AM":0,"x":6.188,"y":15.788,"w":30.855,"h":0.833,"TU":"Name of activity_Row_2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_CYDED_2_","EN":0},"TI":5052,"AM":0,"x":37.228,"y":15.788,"w":20.852,"h":0.833,"TU":"(a) Current year deductions (line 2a)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_PYDED_2_","EN":0},"TI":5053,"AM":0,"x":58.266,"y":15.788,"w":20.852,"h":0.833,"TU":"(b) Prior year unallowed deductions (line 2b)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_OLOSS_2_","EN":0},"TI":5054,"AM":0,"x":79.303,"y":15.788,"w":19.718,"h":0.833,"TU":"(c) Overall loss_Row_2","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRD_N2CRD_3_","EN":0},"TI":5055,"AM":0,"x":6.188,"y":16.538,"w":30.855,"h":0.833,"TU":"Name of activity_Row_3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_CYDED_3_","EN":0},"TI":5056,"AM":0,"x":37.233,"y":16.555,"w":20.852,"h":0.833,"TU":"(a) Current year deductions (line 2a)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_PYDED_3_","EN":0},"TI":5057,"AM":0,"x":58.266,"y":16.538,"w":20.852,"h":0.833,"TU":"(b) Prior year unallowed deductions (line 2b)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_OLOSS_3_","EN":0},"TI":5058,"AM":0,"x":79.303,"y":16.538,"w":19.718,"h":0.833,"TU":"(c) Overall loss_Row_3","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRD_N2CRD_4_","EN":0},"TI":5059,"AM":0,"x":6.188,"y":17.288,"w":30.855,"h":0.833,"TU":"Name of activity_Row_4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_CYDED_4_","EN":0},"TI":5060,"AM":0,"x":37.228,"y":17.288,"w":20.852,"h":0.833,"TU":"(a) Current year deductions (line 2a)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_PYDED_4_","EN":0},"TI":5061,"AM":0,"x":58.266,"y":17.288,"w":20.852,"h":0.833,"TU":"(b) Prior year unallowed deductions (line 2b)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CRD_OLOSS_4_","EN":0},"TI":5062,"AM":0,"x":79.303,"y":17.288,"w":19.718,"h":0.833,"TU":"(c) Overall loss_Row_4","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TCYDED","EN":0},"TI":5063,"AM":1024,"x":37.161,"y":18.647,"w":21.061,"h":0.833,"TU":"(a) Current year deductions (line 2a)_Total. Enter on Form 8582, lines 2a and 2b a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPYDED","EN":0},"TI":5064,"AM":1024,"x":58.273,"y":18.647,"w":20.986,"h":0.833,"TU":"(b) Prior year unallowed deductions (line 2b)_Total. Enter on Form 8582, lines 2a and 2b a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS2_N2_1_","EN":0},"TI":5065,"AM":0,"x":6.188,"y":23.288,"w":30.855,"h":0.833,"TU":"Name of activity_Row_1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_A2_1_","EN":0},"TI":5066,"AM":0,"x":37.228,"y":23.288,"w":12.189,"h":0.833,"TU":"(a) Net income (line 3a)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_B2_1_","EN":0},"TI":5067,"AM":0,"x":49.603,"y":23.288,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_C2_1_","EN":0},"TI":5068,"AM":0,"x":61.978,"y":23.288,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_D2_1_","EN":0},"TI":5069,"AM":0,"x":74.353,"y":23.288,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_E2_1_","EN":0},"TI":5070,"AM":0,"x":86.728,"y":23.288,"w":12.292,"h":0.833,"TU":"(d) Gain_Row_1","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS2_N2_2_","EN":0},"TI":5071,"AM":0,"x":6.188,"y":24.038,"w":30.855,"h":0.833,"TU":"Name of activity_Row_2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_A2_2_","EN":0},"TI":5072,"AM":0,"x":37.228,"y":24.038,"w":12.189,"h":0.833,"TU":"(a) Net income (line 3a)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_B2_2_","EN":0},"TI":5073,"AM":0,"x":49.603,"y":24.038,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_C2_2_","EN":0},"TI":5074,"AM":0,"x":61.978,"y":24.038,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 3c)_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_D2_2_","EN":0},"TI":5075,"AM":0,"x":74.353,"y":24.038,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_E2_2_","EN":0},"TI":5076,"AM":0,"x":86.728,"y":24.038,"w":12.292,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_1","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS2_N2_3_","EN":0},"TI":5077,"AM":0,"x":6.188,"y":24.788,"w":30.855,"h":0.833,"TU":"Name of activity_Row_3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_A2_3_","EN":0},"TI":5078,"AM":0,"x":37.228,"y":24.788,"w":12.189,"h":0.833,"TU":"(a) Net income (line 3a)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_B2_3_","EN":0},"TI":5079,"AM":0,"x":49.603,"y":24.788,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_C2_3_","EN":0},"TI":5080,"AM":0,"x":61.978,"y":24.788,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 3c)_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_D2_3_","EN":0},"TI":5081,"AM":0,"x":74.353,"y":24.747,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_E2_3_","EN":0},"TI":5082,"AM":0,"x":86.728,"y":24.788,"w":12.292,"h":0.833,"TU":"(d) Gain_Row_3","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS2_N2_4_","EN":0},"TI":5083,"AM":0,"x":6.188,"y":25.538,"w":30.855,"h":0.833,"TU":"Name of activity_Row_4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_A2_4_","EN":0},"TI":5084,"AM":0,"x":37.228,"y":25.538,"w":12.189,"h":0.833,"TU":"(a) Net income (line 3a)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_B2_4_","EN":0},"TI":5085,"AM":0,"x":49.603,"y":25.538,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_C2_4_","EN":0},"TI":5086,"AM":0,"x":61.978,"y":25.538,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 3c)_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_D2_4_","EN":0},"TI":5087,"AM":0,"x":74.353,"y":25.538,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_E2_4_","EN":0},"TI":5088,"AM":0,"x":86.728,"y":25.538,"w":12.292,"h":0.833,"TU":"(d) Gain_Row_4","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS2_N2_5_","EN":0},"TI":5089,"AM":0,"x":6.072,"y":26.314,"w":30.855,"h":0.833,"TU":"Name of activity_Row_4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_A2_5_","EN":0},"TI":5090,"AM":0,"x":37.228,"y":26.288,"w":12.189,"h":0.833,"TU":"(a) Net income (line 3a)_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_B2_5_","EN":0},"TI":5091,"AM":0,"x":49.603,"y":26.288,"w":12.189,"h":0.833,"TU":"(b) Net loss (line 3b)_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_C2_5_","EN":0},"TI":5092,"AM":0,"x":61.978,"y":26.288,"w":12.189,"h":0.833,"TU":"(c) Unallowed loss (line 3c)_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_D2_5_","EN":0},"TI":5093,"AM":0,"x":74.353,"y":26.288,"w":12.189,"h":0.833,"TU":"(d) Gain_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS2_E2_5_","EN":0},"TI":5094,"AM":0,"x":86.728,"y":26.288,"w":12.292,"h":0.833,"TU":"(d) Gain_Row_5","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TA2","EN":0},"TI":5095,"AM":1024,"x":37.011,"y":27.647,"w":12.773,"h":0.833,"TU":"(a) Net income (line 3a)_Total. Enter on Form 8582, lines 3a, 3b, and 3c a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB2","EN":0},"TI":5096,"AM":1024,"x":49.686,"y":27.647,"w":12.249,"h":0.833,"TU":"(b) Net loss (line 3b)_Total. Enter on Form 8582, lines 3a, 3b, and 3c a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC2","EN":0},"TI":5097,"AM":1024,"x":61.836,"y":27.647,"w":12.324,"h":0.833,"TU":"(c) Unallowed loss (line 3c)_Total. Enter on Form 8582, lines 3a, 3b, and 3c a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_N3_1_","EN":0},"TI":5098,"AM":0,"x":6.188,"y":32.288,"w":30.855,"h":0.833,"TU":"Name of activity_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_F3_1_","EN":0},"TI":5099,"AM":0,"x":37.228,"y":32.288,"w":12.189,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_A3_1_","EN":0},"TI":5100,"AM":0,"x":49.603,"y":32.288,"w":12.189,"h":0.833,"TU":"(a) Loss_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_B3_1_","EN":0},"TI":5101,"AM":0,"x":61.978,"y":32.288,"w":12.189,"h":0.833,"TU":"(b) Ratio_Row_1","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_C3_1_","EN":0},"TI":5102,"AM":0,"x":74.353,"y":32.288,"w":12.189,"h":0.833,"TU":"(c) Special allowance_Row_1","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS3_D3_1_","EN":0},"TI":5103,"AM":1024,"x":86.728,"y":32.288,"w":12.292,"h":0.833,"TU":"(c) Special allowance_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_N3_2_","EN":0},"TI":5104,"AM":0,"x":6.188,"y":33.038,"w":30.855,"h":0.833,"TU":"Name of activity_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_F3_2_","EN":0},"TI":5105,"AM":0,"x":37.228,"y":32.956,"w":12.189,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_A3_2_","EN":0},"TI":5106,"AM":0,"x":49.603,"y":33.038,"w":12.189,"h":0.833,"TU":"(a) Loss_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_B3_2_","EN":0},"TI":5107,"AM":0,"x":61.978,"y":33.038,"w":12.189,"h":0.833,"TU":"(b) Ratio_Row_2","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_C3_2_","EN":0},"TI":5108,"AM":0,"x":74.353,"y":33.038,"w":12.189,"h":0.833,"TU":"(c) Special allowance_Row_2","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS3_D3_2_","EN":0},"TI":5109,"AM":1024,"x":86.728,"y":33.038,"w":12.292,"h":0.833,"TU":"(d) Subtract column (c) from column (a)_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_N3_3_","EN":0},"TI":5110,"AM":0,"x":6.188,"y":33.788,"w":30.855,"h":0.833,"TU":"Name of activity_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_F3_3_","EN":0},"TI":5111,"AM":0,"x":37.228,"y":33.788,"w":12.189,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_A3_3_","EN":0},"TI":5112,"AM":0,"x":49.603,"y":33.788,"w":12.189,"h":0.833,"TU":"(a) Loss_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_B3_3_","EN":0},"TI":5113,"AM":0,"x":61.978,"y":33.788,"w":12.189,"h":0.833,"TU":"(b) Ratio_Row_3","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_C3_3_","EN":0},"TI":5114,"AM":0,"x":74.353,"y":33.788,"w":12.189,"h":0.833,"TU":"(c) Special allowance_Row_3","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS3_D3_3_","EN":0},"TI":5115,"AM":1024,"x":86.728,"y":33.788,"w":12.292,"h":0.833,"TU":"(d) Subtract column (c) from column (a)_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_N3_4_","EN":0},"TI":5116,"AM":0,"x":6.208,"y":34.545,"w":30.814,"h":0.833,"TU":"Name of activity_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_F3_4_","EN":0},"TI":5117,"AM":0,"x":37.249,"y":34.545,"w":12.148,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_A3_4_","EN":0},"TI":5118,"AM":0,"x":49.624,"y":34.545,"w":12.148,"h":0.833,"TU":"(a) Loss_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_B3_4_","EN":0},"TI":5119,"AM":0,"x":61.999,"y":34.545,"w":12.148,"h":0.833,"TU":"(b) Ratio_Row_4","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_C3_4_","EN":0},"TI":5120,"AM":0,"x":74.374,"y":34.545,"w":12.148,"h":0.833,"TU":"(c) Special allowance_Row_4","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS3_D3_4_","EN":0},"TI":5121,"AM":1024,"x":86.749,"y":34.545,"w":12.251,"h":0.833,"TU":"(d) Subtract column (c) from column (a)_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_N3_5_","EN":0},"TI":5122,"AM":0,"x":6.188,"y":35.295,"w":30.855,"h":0.833,"TU":"Name of activity_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS3_F3_5_","EN":0},"TI":5123,"AM":0,"x":37.228,"y":35.295,"w":12.189,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_5"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_A3_5_","EN":0},"TI":5124,"AM":0,"x":49.603,"y":35.295,"w":12.189,"h":0.833,"TU":"(a) Loss_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_B3_5_","EN":0},"TI":5125,"AM":0,"x":61.978,"y":35.295,"w":12.189,"h":0.833,"TU":"(b) Ratio_Row_5","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS3_C3_5_","EN":0},"TI":5126,"AM":0,"x":74.353,"y":35.295,"w":12.189,"h":0.833,"TU":"(c) Special allowance_Row_5","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS3_D3_5_","EN":0},"TI":5127,"AM":1024,"x":86.728,"y":35.295,"w":12.292,"h":0.833,"TU":"(d) Subtract column (c) from column (a)_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TA3","EN":0},"TI":5128,"AM":1024,"x":49.611,"y":36.681,"w":12.324,"h":0.833,"TU":"(a) Loss_Total a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC3","EN":0},"TI":5129,"AM":1024,"x":74.211,"y":36.681,"w":12.474,"h":0.833,"TU":"(c) Special allowance_1.00"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TD3","EN":0},"TI":5130,"AM":1024,"x":86.586,"y":36.654,"w":12.352,"h":0.833,"TU":"(d) Subtract column (c) from column (a)_1.00"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_N4_1_","EN":0},"TI":5131,"AM":0,"x":6.188,"y":41.288,"w":30.855,"h":0.833,"TU":"Name of activity_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_F4_1_","EN":0},"TI":5132,"AM":0,"x":37.228,"y":41.288,"w":15.902,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_A4_1_","EN":0},"TI":5133,"AM":0,"x":53.316,"y":41.288,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_B4_1_","EN":0},"TI":5134,"AM":0,"x":68.166,"y":41.288,"w":14.664,"h":0.833,"TU":"(b) Ratio_Row_1","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_C4_1_","EN":0},"TI":5135,"AM":0,"x":83.016,"y":41.288,"w":16.005,"h":0.833,"TU":"(c) Unallowed loss_Row_1","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_N4_2_","EN":0},"TI":5136,"AM":0,"x":6.188,"y":42.038,"w":30.855,"h":0.833,"TU":"Name of activity_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_F4_2_","EN":0},"TI":5137,"AM":0,"x":37.228,"y":42.038,"w":15.902,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_A4_2_","EN":0},"TI":5138,"AM":0,"x":53.316,"y":42.038,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_B4_2_","EN":0},"TI":5139,"AM":0,"x":68.166,"y":42.038,"w":14.664,"h":0.833,"TU":"(b) Ratio_Row_2","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_C4_2_","EN":0},"TI":5140,"AM":0,"x":83.016,"y":42.038,"w":16.005,"h":0.833,"TU":"(c) Unallowed loss_Row_2","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_N4_3_","EN":0},"TI":5141,"AM":0,"x":6.188,"y":42.788,"w":30.855,"h":0.833,"TU":"Name of activity_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_F4_3_","EN":0},"TI":5142,"AM":0,"x":37.228,"y":42.788,"w":15.902,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_A4_3_","EN":0},"TI":5143,"AM":0,"x":53.316,"y":42.788,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_B4_3_","EN":0},"TI":5144,"AM":0,"x":68.166,"y":42.788,"w":14.664,"h":0.833,"TU":"(b) Ratio_Row_3","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_C4_3_","EN":0},"TI":5145,"AM":0,"x":83.016,"y":42.788,"w":16.005,"h":0.833,"TU":"(c) Unallowed loss_Row_3","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_N4_4_","EN":0},"TI":5146,"AM":0,"x":6.188,"y":43.538,"w":30.855,"h":0.833,"TU":"Name of activity_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_F4_4_","EN":0},"TI":5147,"AM":0,"x":37.228,"y":43.538,"w":15.902,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_A4_4_","EN":0},"TI":5148,"AM":0,"x":53.316,"y":43.538,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_B4_4_","EN":0},"TI":5149,"AM":0,"x":68.166,"y":43.538,"w":14.664,"h":0.833,"TU":"(b) Ratio_Row_4","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_C4_4_","EN":0},"TI":5150,"AM":0,"x":83.016,"y":43.538,"w":16.005,"h":0.833,"TU":"(c) Unallowed loss_Row_4","MV":"+"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_N4_5_","EN":0},"TI":5151,"AM":0,"x":6.188,"y":44.288,"w":30.855,"h":0.833,"TU":"Name of activity_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS4_F4_5_","EN":0},"TI":5152,"AM":0,"x":37.228,"y":44.288,"w":15.902,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_5"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_A4_5_","EN":0},"TI":5153,"AM":0,"x":53.316,"y":44.288,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_B4_5_","EN":0},"TI":5154,"AM":0,"x":68.166,"y":44.288,"w":14.664,"h":0.833,"TU":"(b) Ratio_Row_5","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS4_C4_5_","EN":0},"TI":5155,"AM":0,"x":83.016,"y":44.288,"w":16.005,"h":0.833,"TU":"(c) Unallowed loss_Row_5","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TA4","EN":0},"TI":5156,"AM":1024,"x":53.173,"y":45.592,"w":14.949,"h":0.878,"TU":"(a) Loss_Total ................... a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC4","EN":0},"TI":5157,"AM":1024,"x":83.098,"y":45.565,"w":15.84,"h":0.905,"TU":"(c) Unallowed loss_1.00"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8582W6"}},"id":{"Id":"Add_F8283P3","EN":0},"TI":5158,"AM":1024,"x":84.962,"y":46.488,"w":3.267,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8582W6.content.txt b/test/data/fd/form/F8582W6.content.txt new file mode 100755 index 00000000..11bfbe44 --- /dev/null +++ b/test/data/fd/form/F8582W6.content.txt @@ -0,0 +1,86 @@ +Form 8582 (2013) +Page +3 +Worksheet 6—Allowed Losses +(See instructions.) +Name of activity +Form or schedule +and line number to +be reported on (see +instructions) +(a) Loss +(b) Unallowed loss +(c) Allowed loss +Total +................... +a + + +Worksheet 7—Activities With Losses Reported on Two or More Forms or Schedules +(See instructions.) +Name of activity: +(a) +(b) +(c) Ratio +(d) Unallowed +loss +(e) Allowed loss +Form or schedule and line number +to be reported on (see +instructions): +1a + +Net loss plus prior year unallowed +loss from form or schedule . +a +b + +Net income from form or +schedule +....... +a +c +Subtract line 1b from line 1a. If zero or less, enter -0- +a +Form or schedule and line number +to be reported on (see +instructions): +1a + +Net loss plus prior year unallowed +loss from form or schedule . +a +b + +Net income from form or +schedule +....... +a +c +Subtract line 1b from line 1a. If zero or less, enter -0- +a +Form or schedule and line number +to be reported on (see +instructions): +1a + +Net loss plus prior year unallowed +loss from form or schedule . +a +b + +Net income from form or +schedule +....... +a +c +Subtract line 1b from line 1a. If zero or less, enter -0- +a +Total +.................. +a +Form +8582 + (2013) +1.00 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8582W6.fields.json b/test/data/fd/form/F8582W6.fields.json new file mode 100755 index 00000000..17b3c3d9 --- /dev/null +++ b/test/data/fd/form/F8582W6.fields.json @@ -0,0 +1 @@ +[{"id":"PAGE","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"WKS5_N5_1_","type":"alpha","calc":false,"value":""},{"id":"WKS5_F5_1_","type":"alpha","calc":false,"value":""},{"id":"WKS5_A5_1_","type":"mask","calc":false,"value":""},{"id":"WKS5_B5_1_","type":"mask","calc":false,"value":""},{"id":"WKS5_C5_1_","type":"number","calc":true,"value":""},{"id":"WKS5_N5_2_","type":"alpha","calc":false,"value":""},{"id":"WKS5_F5_2_","type":"alpha","calc":false,"value":""},{"id":"WKS5_A5_2_","type":"mask","calc":false,"value":""},{"id":"WKS5_B5_2_","type":"mask","calc":false,"value":""},{"id":"WKS5_C5_2_","type":"number","calc":true,"value":""},{"id":"WKS5_N5_3_","type":"alpha","calc":false,"value":""},{"id":"WKS5_F5_3_","type":"alpha","calc":false,"value":""},{"id":"WKS5_A5_3_","type":"mask","calc":false,"value":""},{"id":"WKS5_B5_3_","type":"mask","calc":false,"value":""},{"id":"WKS5_C5_3_","type":"number","calc":true,"value":""},{"id":"WKS5_N5_4_","type":"alpha","calc":false,"value":""},{"id":"WKS5_F5_4_","type":"alpha","calc":false,"value":""},{"id":"WKS5_A5_4_","type":"mask","calc":false,"value":""},{"id":"WKS5_B5_4_","type":"mask","calc":false,"value":""},{"id":"WKS5_C5_4_","type":"number","calc":true,"value":""},{"id":"WKS5_N5_5_","type":"alpha","calc":false,"value":""},{"id":"WKS5_F5_5_","type":"alpha","calc":false,"value":""},{"id":"WKS5_A5_5_","type":"mask","calc":false,"value":""},{"id":"WKS5_B5_5_","type":"mask","calc":false,"value":""},{"id":"WKS5_C5_5_","type":"number","calc":true,"value":""},{"id":"TA5","type":"number","calc":true,"value":""},{"id":"TB5","type":"number","calc":true,"value":""},{"id":"TC5","type":"number","calc":true,"value":""},{"id":"ACT","type":"alpha","calc":false,"value":""},{"id":"A145_SCH1_1_","type":"alpha","calc":false,"value":""},{"id":"A145_L1A_1_","type":"number","calc":false,"value":""},{"id":"A145_L1B_1_","type":"number","calc":false,"value":""},{"id":"A145_L1C_1_","type":"number","calc":true,"value":""},{"id":"A145_L1CC_1_","type":"mask","calc":false,"value":""},{"id":"A145_L1CD_1_","type":"number","calc":false,"value":""},{"id":"A145_L1CE_1_","type":"number","calc":true,"value":""},{"id":"A145_SCH1_2_","type":"alpha","calc":false,"value":""},{"id":"A145_L1A_2_","type":"number","calc":false,"value":""},{"id":"A145_L1B_2_","type":"number","calc":false,"value":""},{"id":"A145_L1C_2_","type":"number","calc":true,"value":""},{"id":"A145_L1CC_2_","type":"mask","calc":false,"value":""},{"id":"A145_L1CD_2_","type":"number","calc":false,"value":""},{"id":"A145_L1CE_2_","type":"number","calc":true,"value":""},{"id":"A145_SCH1_3_","type":"alpha","calc":false,"value":""},{"id":"A145_L1A_3_","type":"number","calc":false,"value":""},{"id":"A145_L1B_3_","type":"number","calc":false,"value":""},{"id":"A145_L1C_3_","type":"number","calc":true,"value":""},{"id":"A145_L1CC_3_","type":"mask","calc":false,"value":""},{"id":"A145_L1CD_3_","type":"number","calc":false,"value":""},{"id":"A145_L1CE_3_","type":"number","calc":true,"value":""},{"id":"TOT1","type":"number","calc":true,"value":""},{"id":"TOT2","type":"number","calc":true,"value":""},{"id":"TOT3","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8582W6.json b/test/data/fd/form/F8582W6.json new file mode 100755 index 00000000..cbef4872 --- /dev/null +++ b/test/data/fd/form/F8582W6.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8582","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":6.147,"y":6.751,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":54.409,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":7.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":54.409,"y":7.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":7.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":7.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.146,"y":8.251,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":54.409,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.146,"y":9.001,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":9.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":54.409,"y":9.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":9.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":9.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.146,"y":9.751,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":54.409,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.259,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":10.501,"w":1.125,"l":33.498},{"oc":"#221f1f","x":39.559,"y":10.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":54.409,"y":10.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":69.259,"y":10.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":84.109,"y":10.501,"w":1.125,"l":14.936},{"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":14.251,"w":0.75,"l":29.786},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":16.046,"y":16.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":35.89,"y":16.501,"w":0.75,"l":13.613},{"oc":"#221f1f","x":35.89,"y":14.251,"w":0.75,"l":13.613},{"oc":"#221f1f","x":49.459,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":35.847,"y":18.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":35.847,"y":19.501,"w":1.125,"l":13.698},{"oc":"#221f1f","x":49.459,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":61.834,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":29.786},{"dsh":1,"oc":"#221f1f","x":16.046,"y":23.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":35.89,"y":23.251,"w":0.75,"l":13.613},{"oc":"#221f1f","x":35.89,"y":21.001,"w":0.75,"l":13.613},{"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":35.847,"y":24.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":35.847,"y":26.251,"w":1.125,"l":13.698},{"oc":"#221f1f","x":49.459,"y":26.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":61.834,"y":26.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":26.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":26.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":29.786},{"dsh":1,"oc":"#221f1f","x":16.046,"y":30.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":35.89,"y":30.001,"w":0.75,"l":13.613},{"oc":"#221f1f","x":35.89,"y":27.751,"w":0.75,"l":13.613},{"oc":"#221f1f","x":49.459,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":35.847,"y":31.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":35.847,"y":33.001,"w":1.125,"l":13.698},{"oc":"#221f1f","x":49.459,"y":33.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":61.834,"y":33.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":33.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":33.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":34.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":34.501,"w":0.75,"l":38.448},{"oc":"#221f1f","x":49.459,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":36.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":39.602,"y":3.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":54.452,"y":3.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":69.302,"y":3.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"y":3.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":39.602,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.452,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":69.302,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.452,"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":84.152,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.503,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":14.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":35.89,"y":14.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":61.877,"y":14.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":14.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":14.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":14.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":14.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":14.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":14.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":35.89,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":21.001,"w":0.75,"l":2.25},{"oc":"#221f1f","x":35.89,"y":21.001,"w":0.75,"l":2.25},{"oc":"#221f1f","x":61.877,"y":20.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":20.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":20.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":20.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":20.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":20.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":20.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":35.89,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":24.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":27.751,"w":0.75,"l":2.25},{"oc":"#221f1f","x":35.89,"y":27.751,"w":0.75,"l":2.25},{"oc":"#221f1f","x":61.877,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":35.89,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":31.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":34.486,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":35.89,"y":14.251,"w":13.613,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":14.251,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":14.251,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":14.251,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":14.251,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":16.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":16.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":16.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":16.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":18.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":18.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":18.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":18.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":35.89,"y":21.001,"w":13.613,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":21.001,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":21.001,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":21.001,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":21.001,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":24.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":24.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":24.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":24.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":35.89,"y":27.751,"w":13.613,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":27.751,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":27.751,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":27.751,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":27.751,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":49.502,"y":31.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":61.877,"y":31.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":31.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":86.627,"y":31.501,"w":12.375,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208582%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]}]},{"oc":"#221f1f","x":5.94,"y":2.822,"w":14.738000000000005,"clr":-1,"A":"left","R":[{"T":"Worksheet%206%E2%80%94Allowed%20Losses%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.271,"y":2.822,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.689,"y":4.646,"w":7.702000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20activity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.369,"y":3.7089999999999996,"w":8.647,"clr":-1,"A":"left","R":[{"T":"Form%20or%20schedule%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":39.943,"y":4.334,"w":9.202,"clr":-1,"A":"left","R":[{"T":"and%20line%20number%20to%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":39.643,"y":4.959,"w":9.593,"clr":-1,"A":"left","R":[{"T":"be%20reported%20on%20(see%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":42.225,"y":5.584,"w":5.943,"clr":-1,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":58.748,"y":4.646,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"(a)%20Loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.721,"y":4.646,"w":8.736,"clr":-1,"A":"left","R":[{"T":"(b)%20Unallowed%20loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.545,"y":4.646,"w":7.475999999999999,"clr":-1,"A":"left","R":[{"T":"(c)%20Allowed%20loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.027,"w":2.6839999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.127,"y":11.027,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.727,"y":10.933,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.822,"w":40.10799999999998,"clr":-1,"A":"left","R":[{"T":"Worksheet%207%E2%80%94Activities%20With%20Losses%20Reported%20on%20Two%20or%20More%20Forms%20or%20Schedules%20","S":-1,"TS":[0,12.7,0,0]}]},{"oc":"#221f1f","x":72.805,"y":11.822,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,12.7,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.514,"w":7.98,"clr":-1,"A":"left","R":[{"T":"Name%20of%20activity%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.544,"y":12.896,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.51,"y":12.896,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.751,"y":12.896,"w":3.9610000000000003,"clr":-1,"A":"left","R":[{"T":"(c)%20Ratio","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.151,"y":12.584,"w":7.071,"clr":-1,"A":"left","R":[{"T":"(d)%20Unallowed%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.687,"y":13.209,"w":1.943,"clr":-1,"A":"left","R":[{"T":"loss","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.84,"y":12.896,"w":7.475999999999999,"clr":-1,"A":"left","R":[{"T":"(e)%20Allowed%20loss","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.215,"w":16.886,"clr":-1,"A":"left","R":[{"T":"Form%20or%20schedule%20and%20line%20number%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.903,"w":11.112000000000002,"clr":-1,"A":"left","R":[{"T":"to%20be%20reported%20on%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":15.59,"w":6.221,"clr":-1,"A":"left","R":[{"T":"instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.595,"y":16.403,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.403,"w":15.426000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20loss%20plus%20prior%20year%20unallowed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.101,"w":11.965,"clr":-1,"A":"left","R":[{"T":"loss%20from%20form%20or%20schedule","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.687,"y":17.101,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.165,"y":17.007,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.903,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.903,"w":11.261999999999999,"clr":-1,"A":"left","R":[{"T":"Net%20income%20from%20form%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.601,"w":4.038,"clr":-1,"A":"left","R":[{"T":"schedule","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":18.601,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.165,"y":18.507,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.09,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":23.855,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%201b%20from%20line%201a.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":46.682,"y":19.997,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.79,0,0]}]},{"oc":"#221f1f","x":5.94,"y":20.965,"w":16.886,"clr":-1,"A":"left","R":[{"T":"Form%20or%20schedule%20and%20line%20number%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":21.653,"w":11.112000000000002,"clr":-1,"A":"left","R":[{"T":"to%20be%20reported%20on%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":22.34,"w":6.221,"clr":-1,"A":"left","R":[{"T":"instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.595,"y":23.153,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.153,"w":15.426000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20loss%20plus%20prior%20year%20unallowed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":23.851,"w":11.965,"clr":-1,"A":"left","R":[{"T":"loss%20from%20form%20or%20schedule","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.687,"y":23.851,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.165,"y":23.757,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":24.653,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.653,"w":11.261999999999999,"clr":-1,"A":"left","R":[{"T":"Net%20income%20from%20form%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.351,"w":4.038,"clr":-1,"A":"left","R":[{"T":"schedule","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":25.351,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.165,"y":25.257,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.84,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":23.855,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%201b%20from%20line%201a.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":46.682,"y":26.747,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.79,0,0]}]},{"oc":"#221f1f","x":5.94,"y":27.715,"w":16.886,"clr":-1,"A":"left","R":[{"T":"Form%20or%20schedule%20and%20line%20number%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":28.403,"w":11.112000000000002,"clr":-1,"A":"left","R":[{"T":"to%20be%20reported%20on%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.09,"w":6.221,"clr":-1,"A":"left","R":[{"T":"instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.595,"y":29.903,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.903,"w":15.426000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20loss%20plus%20prior%20year%20unallowed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":30.601,"w":11.965,"clr":-1,"A":"left","R":[{"T":"loss%20from%20form%20or%20schedule","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.687,"y":30.601,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.165,"y":30.507,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.403,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.403,"w":11.261999999999999,"clr":-1,"A":"left","R":[{"T":"Net%20income%20from%20form%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.101,"w":4.038,"clr":-1,"A":"left","R":[{"T":"schedule","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":32.101,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.165,"y":32.007,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":33.59,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":23.855,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%201b%20from%20line%201a.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":46.682,"y":33.497,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.79,0,0]}]},{"oc":"#221f1f","x":5.94,"y":35.028,"w":2.4059999999999997,"clr":-1,"A":"left","R":[{"T":"Total","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.065,"y":35.028,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.777,"y":34.934,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":35.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":35.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8582","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":35.822,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":66.31,"y":35.129,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"1.00","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAGE","EN":0},"TI":5159,"AM":1024,"x":47.691,"y":1.28,"w":12.38,"h":0.858},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5160,"AM":1024,"x":18.417,"y":2.26,"w":50.937,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5161,"AM":1024,"x":75.316,"y":2.205,"w":11.407,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_N5_1_","EN":0},"TI":5162,"AM":0,"x":6.188,"y":6.864,"w":33.33,"h":0.833,"TU":"Name of activity_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_F5_1_","EN":0},"TI":5163,"AM":0,"x":39.703,"y":6.788,"w":14.664,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_A5_1_","EN":0},"TI":5164,"AM":0,"x":54.553,"y":6.788,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_1","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_B5_1_","EN":0},"TI":5165,"AM":0,"x":69.403,"y":6.788,"w":14.664,"h":0.833,"TU":"(b) Unallowed loss_Row_1","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS5_C5_1_","EN":0},"TI":5166,"AM":1024,"x":84.253,"y":6.788,"w":14.768,"h":0.833,"TU":"(c) Allowed loss_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_N5_2_","EN":0},"TI":5167,"AM":0,"x":6.188,"y":7.538,"w":33.33,"h":0.833,"TU":"Name of activity_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_F5_2_","EN":0},"TI":5168,"AM":0,"x":39.703,"y":7.538,"w":14.664,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_A5_2_","EN":0},"TI":5169,"AM":0,"x":54.553,"y":7.538,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_2","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_B5_2_","EN":0},"TI":5170,"AM":0,"x":69.403,"y":7.538,"w":14.664,"h":0.833,"TU":"(b) Unallowed loss_Row_2","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS5_C5_2_","EN":0},"TI":5171,"AM":1024,"x":84.253,"y":7.538,"w":14.768,"h":0.833,"TU":"(c) Allowed loss_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_N5_3_","EN":0},"TI":5172,"AM":0,"x":6.188,"y":8.288,"w":33.33,"h":0.833,"TU":"Name of activity_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_F5_3_","EN":0},"TI":5173,"AM":0,"x":39.703,"y":8.288,"w":14.664,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_A5_3_","EN":0},"TI":5174,"AM":0,"x":54.553,"y":8.288,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_3","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_B5_3_","EN":0},"TI":5175,"AM":0,"x":69.403,"y":8.288,"w":14.664,"h":0.833,"TU":"(b) Unallowed loss_Row_3","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS5_C5_3_","EN":0},"TI":5176,"AM":1024,"x":84.253,"y":8.288,"w":14.768,"h":0.833,"TU":"(c) Allowed loss_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_N5_4_","EN":0},"TI":5177,"AM":0,"x":6.188,"y":9.038,"w":33.33,"h":0.833,"TU":"Name of activity_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_F5_4_","EN":0},"TI":5178,"AM":0,"x":39.703,"y":9.038,"w":14.664,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_A5_4_","EN":0},"TI":5179,"AM":0,"x":54.553,"y":9.038,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_4","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_B5_4_","EN":0},"TI":5180,"AM":0,"x":69.403,"y":9.038,"w":14.664,"h":0.833,"TU":"(b) Unallowed loss_Row_4","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS5_C5_4_","EN":0},"TI":5181,"AM":1024,"x":84.253,"y":9.038,"w":14.768,"h":0.833,"TU":"(c) Allowed loss_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_N5_5_","EN":0},"TI":5182,"AM":0,"x":6.188,"y":9.788,"w":33.33,"h":0.833,"TU":"Name of activity_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WKS5_F5_5_","EN":0},"TI":5183,"AM":0,"x":39.703,"y":9.788,"w":14.664,"h":0.833,"TU":"Form or schedule and line number to be reported on (see instructions)_Row_5"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_A5_5_","EN":0},"TI":5184,"AM":0,"x":54.553,"y":9.788,"w":14.664,"h":0.833,"TU":"(a) Loss_Row_5","MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WKS5_B5_5_","EN":0},"TI":5185,"AM":0,"x":69.403,"y":9.788,"w":14.664,"h":0.833,"TU":"(b) Unallowed loss_Row_5","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WKS5_C5_5_","EN":0},"TI":5186,"AM":1024,"x":84.253,"y":9.788,"w":14.768,"h":0.833,"TU":"(c) Allowed loss_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TA5","EN":0},"TI":5187,"AM":1024,"x":54.486,"y":11.201,"w":14.948,"h":0.833,"TU":"(a) Loss_Total a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB5","EN":0},"TI":5188,"AM":1024,"x":69.486,"y":11.201,"w":14.499,"h":0.833,"TU":"(b) Unallowed loss_Total a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC5","EN":0},"TI":5189,"AM":1024,"x":84.261,"y":11.201,"w":14.677,"h":0.833,"TU":"(c) Allowed loss_Total a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ACT","EN":0},"TI":5190,"AM":0,"x":6.229,"y":13.54,"w":29.685,"h":0.833,"TU":"Name of activity:"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A145_SCH1_1_","EN":0},"TI":5191,"AM":0,"x":36.094,"y":14.558,"w":13.221,"h":1.822,"TU":"(a)_Form or schedule and line number to be reported on (see instructions): 1a Net loss plus prior year unallowed loss from form or schedule . a b Net income from form or schedule a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1A_1_","EN":0},"TI":5192,"AM":0,"x":36.073,"y":16.643,"w":13.262,"h":1.342,"TU":"Line 1(a)_Form or schedule and line number to be reported on (see instructions): Net loss plus prior year unallowed loss from form or schedule."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1B_1_","EN":0},"TI":5193,"AM":0,"x":36.073,"y":18.151,"w":13.262,"h":1.327,"TU":"Line 1b. Form or schedule and line number to be reported on (see instructions) Net income from form or schedule."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1C_1_","EN":0},"TI":5194,"AM":1024,"x":49.686,"y":19.658,"w":12.024,"h":1.327,"TU":"(b)_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A145_L1CC_1_","EN":0},"TI":5195,"AM":0,"x":62.061,"y":19.658,"w":12.024,"h":1.327,"TU":"(c) Ratio_c Subtract line 1b from line 1a. If zero or less, enter -0- a","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1CD_1_","EN":0},"TI":5196,"AM":0,"x":74.436,"y":19.658,"w":12.024,"h":1.327,"TU":"(d) Unallowed loss_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1CE_1_","EN":0},"TI":5197,"AM":1024,"x":86.811,"y":19.658,"w":12.128,"h":1.327,"TU":"(e) Allowed loss_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A145_SCH1_2_","EN":0},"TI":5198,"AM":0,"x":36.094,"y":21.518,"w":13.221,"h":1.717,"TU":"Form or schedule and line number to be reported on (see instructions): 1a Net loss plus prior year unallowed loss from form or schedule . a b Net income from form or schedule a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1A_2_","EN":0},"TI":5199,"AM":0,"x":36.073,"y":23.393,"w":13.262,"h":1.342,"TU":"Form or schedule and line number to be reported on (see instructions): 1a Net loss plus prior year unallowed loss from form or schedule . a b Net income from form or schedule a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1B_2_","EN":0},"TI":5200,"AM":0,"x":36.073,"y":24.901,"w":13.262,"h":1.327,"TU":"Form or schedule and line number to be reported on (see instructions): 1a Net loss plus prior year unallowed loss from form or schedule . a b Net income from form or schedule a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1C_2_","EN":0},"TI":5201,"AM":1024,"x":49.686,"y":26.408,"w":12.024,"h":1.327,"TU":"(b)_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A145_L1CC_2_","EN":0},"TI":5202,"AM":0,"x":62.061,"y":26.408,"w":12.024,"h":1.327,"TU":"(c) Ratio_c Subtract line 1b from line 1a. If zero or less, enter -0- a","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1CD_2_","EN":0},"TI":5203,"AM":0,"x":74.436,"y":26.408,"w":12.024,"h":1.327,"TU":"(d) Unallowed loss_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1CE_2_","EN":0},"TI":5204,"AM":1024,"x":86.811,"y":26.408,"w":12.128,"h":1.327,"TU":"(e) Allowed loss_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A145_SCH1_3_","EN":0},"TI":5205,"AM":0,"x":36.094,"y":28.268,"w":13.221,"h":1.717,"TU":"Form or schedule and line number to be reported on (see instructions): 1a Net loss plus prior year unallowed loss from form or schedule . a b Net income from form or schedule a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1A_3_","EN":0},"TI":5206,"AM":0,"x":36.073,"y":30.143,"w":13.262,"h":1.342,"TU":"Form or schedule and line number to be reported on (see instructions): 1a Net loss plus prior year unallowed loss from form or schedule . a b Net income from form or schedule a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1B_3_","EN":0},"TI":5207,"AM":0,"x":36.073,"y":31.651,"w":13.262,"h":1.327,"TU":"Form or schedule and line number to be reported on (see instructions): 1a Net loss plus prior year unallowed loss from form or schedule . a b Net income from form or schedule a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1C_3_","EN":0},"TI":5208,"AM":1024,"x":49.686,"y":33.158,"w":12.024,"h":1.327,"TU":"(b)_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A145_L1CC_3_","EN":0},"TI":5209,"AM":0,"x":62.061,"y":33.158,"w":12.024,"h":1.327,"TU":"(c) Ratio_c Subtract line 1b from line 1a. If zero or less, enter -0- a","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1CD_3_","EN":0},"TI":5210,"AM":0,"x":74.436,"y":33.158,"w":12.024,"h":1.327,"TU":"(d) Unallowed loss_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A145_L1CE_3_","EN":0},"TI":5211,"AM":1024,"x":86.811,"y":33.158,"w":12.128,"h":1.327,"TU":"(e) Allowed loss_c Subtract line 1b from line 1a. If zero or less, enter -0- a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOT1","EN":0},"TI":5212,"AM":1024,"x":49.536,"y":35.139,"w":12.324,"h":0.858,"TU":"(b)_Total a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOT2","EN":0},"TI":5213,"AM":1024,"x":74.211,"y":35.139,"w":12.548,"h":0.833,"TU":"(d) Unallowed loss_1.00"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOT3","EN":0},"TI":5214,"AM":1024,"x":86.811,"y":35.112,"w":12.128,"h":0.858,"TU":"(e) Allowed loss_1.00"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8586.content.txt b/test/data/fd/form/F8586.content.txt new file mode 100755 index 00000000..8db7fd50 --- /dev/null +++ b/test/data/fd/form/F8586.content.txt @@ -0,0 +1,121 @@ +Form +8586 +(Rev. December 2011) +Department of the Treasury +Internal Revenue Service (99) +Low-Income Housing Credit +a + +Attach to your tax return. +OMB No. 1545-0984 +Attachment +Sequence No. +36a +Name(s) shown on return +Identifying number +Part I +Buildings Placed in Service Before 2008 +1 + +Number of Forms 8609-A attached for buildings placed in service before +2008 +...................... +a +2 + +Has there been a decrease in the qualified basis of any buildings accounted for on line 1 since +the close of the preceding tax year? +Yes +No +If “Yes,” enter the building +identification numbers (BINs) of the buildings that had a decreased basis. If you need more +space, attach a schedule. +(i) +(ii) +(iii) +(iv) +3 + +Current year credit from attached Form(s) 8609-A for buildings placed in service before 2008 +(see instructions) +.......................... +3 +4 + +Low-income housing credit for buildings placed in service before 2008 from partnerships, S +corporations, estates, and trusts +..................... +4 +5 + + +Add lines 3 and 4. Estates and trusts, go to line 6. Partnerships and S corporations, stop here +and report this amount on Schedule K. All others, stop here and report this amount on Form +3800, line 1d +............................ +5 +6 +Amount allocated to beneficiaries of the estate or trust (see instructions) +........ +6 +7 +Estates and trusts, subtract line 6 from line 5. Report this amount on Form 3800, line 1d +. . . +7 +Part II +Buildings Placed in Service After 2007 +8 + +Number of Forms 8609-A attached for buildings placed in service after +2007 +...................... +a +9 + +Has there been a decrease in the qualified basis of any buildings accounted for on line 8 since +the close of the preceding tax year? +Yes +No +If “Yes,” enter the building +identification numbers (BINs) of the buildings that had a decreased basis. If you need more +space, attach a schedule. +(i) +(ii) +(iii) +(iv) +10 + +Current year credit from attached Form(s) 8609-A for buildings placed in service after 2007 +(see instructions) +.......................... +10 +11 + +Low-income housing credit for buildings placed in service after 2007 from partnerships, +S corporations, estates, and trusts +..................... +11 +12 + + +Add lines 10 and 11. Estates and trusts, go to line 13. Partnerships and S corporations, stop +here and report this amount on Schedule K. All others, stop here and report this amount on +Form 3800, line 4d +.......................... +12 +13 +Amount allocated to beneficiaries of the estate or trust (see instructions) +........ +13 +14 +Estates and trusts, + +subtract line 13 from line 12. Report this amount on Form 3800, line 4d +. . +14 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 63987I +Form +8586 + (Rev. 12-2011) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8586.fields.json b/test/data/fd/form/F8586.fields.json new file mode 100755 index 00000000..f73a0306 --- /dev/null +++ b/test/data/fd/form/F8586.fields.json @@ -0,0 +1 @@ +[{"id":"B3BRB","type":"radio","calc":false,"value":"B3BY"},{"id":"B3BRB","type":"radio","calc":false,"value":"B3BN"},{"id":"B9BRB","type":"radio","calc":false,"value":"B9BY"},{"id":"B9BRB","type":"radio","calc":false,"value":"B9BN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L3B1","type":"alpha","calc":false,"value":""},{"id":"L3B2","type":"alpha","calc":false,"value":""},{"id":"L3B3","type":"alpha","calc":false,"value":""},{"id":"L3B4","type":"alpha","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9B1","type":"alpha","calc":false,"value":""},{"id":"L9B2","type":"alpha","calc":false,"value":""},{"id":"L9B3","type":"alpha","calc":false,"value":""},{"id":"L9B4","type":"alpha","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8586.json b/test/data/fd/form/F8586.json new file mode 100755 index 00000000..914aef0d --- /dev/null +++ b/test/data/fd/form/F8586.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8586 (Rev. December 2011)","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.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":70.624},{"oc":"#221f1f","x":76.684,"y":6.751,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":7.501,"w":0.75,"l":86.711},{"dsh":1,"oc":"#221f1f","x":64.309,"y":9.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":79.159,"y":7.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":13.572,"y":13.501,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":30.897,"y":13.501,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":48.222,"y":13.501,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":65.547,"y":13.501,"w":0.75,"l":12.461},{"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":79.159,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":16.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":1.125,"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":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":20.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":21.751,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.334,"y":22.501,"w":0.75,"l":86.711},{"dsh":1,"oc":"#221f1f","x":64.309,"y":24.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":79.159,"y":22.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":13.572,"y":28.501,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":30.897,"y":28.501,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":48.222,"y":28.501,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":65.547,"y":28.501,"w":0.75,"l":12.461},{"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":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":31.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":35.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":36.751,"w":1.5,"l":37.211},{"oc":"#221f1f","x":43.272,"y":36.751,"w":1.5,"l":39.686},{"oc":"#221f1f","x":82.872,"y":36.751,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.472},{"oc":"#221f1f","x":21.04,"y":3.665,"w":1.5,"l":0.641},{"oc":"#221f1f","x":21.04,"y":4.223,"w":1.5,"l":1.059},{"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":76.727,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":7.485,"w":0.75,"l":6.031},{"oc":"#221f1f","x":79.202,"y":7.485,"w":0.75,"l":6.031},{"oc":"#221f1f","x":82.915,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":6.781},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":14.985,"w":0.75,"l":1.539},{"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.789},{"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.531},{"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":1.539},{"oc":"#221f1f","x":79.202,"y":18.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":1.531},{"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.781},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":22.486,"w":0.75,"l":6.031},{"oc":"#221f1f","x":79.202,"y":22.486,"w":0.75,"l":6.031},{"oc":"#221f1f","x":82.915,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.486,"w":0.75,"l":6.781},{"oc":"#221f1f","x":95.29,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":29.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":29.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":31.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":31.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":33.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":33.735,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":82.915,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"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":"#c0c1c4","x":79.202,"y":7.501,"w":3.713,"h":6,"clr":-1},{"oc":"#221f1f","x":6.19,"y":21.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":22.501,"w":3.713,"h":6,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.697,"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.697,"w":2.34,"clr":-1,"A":"left","R":[{"T":"8586%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.333,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202011)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.901,"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.37,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":37.644,"y":2.501,"w":12.220000000000002,"clr":-1,"A":"left","R":[{"T":"Low-Income%20Housing%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.448,"y":3.8040000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.816,"y":3.8970000000000002,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.348,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0984","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.6260000000000003,"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.072,"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.072,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"36a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.026,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":4.919,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.365,"y":6.572,"w":18.869000000000003,"clr":-1,"A":"left","R":[{"T":"Buildings%20Placed%20in%20Service%20Before%202008","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":7.4030000000000005,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.4030000000000005,"w":32.618,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Forms%208609-A%20attached%20for%20buildings%20placed%20in%20service%20before%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.101,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2008%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":8.101,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":"......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.057,"y":8.007,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.903,"w":42.24899999999999,"clr":-1,"A":"left","R":[{"T":"Has%20there%20been%20a%20decrease%20in%20the%20qualified%20basis%20of%20any%20buildings%20accounted%20for%20on%20line%201%20since%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":9.59,"w":16.039000000000005,"clr":-1,"A":"left","R":[{"T":"the%20close%20of%20the%20preceding%20tax%20year%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.827,"y":9.59,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.571,"y":9.59,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.607,"y":9.59,"w":11.705999999999998,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20building","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.278,"w":40.78699999999998,"clr":-1,"A":"left","R":[{"T":"identification%20numbers%20(BINs)%20of%20the%20buildings%20that%20had%20a%20decreased%20basis.%20If%20you%20need%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":10.965,"w":11.466000000000003,"clr":-1,"A":"left","R":[{"T":"space%2C%20attach%20a%20schedule.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.528,"w":0.8500000000000001,"clr":-1,"A":"left","R":[{"T":"(i)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":12.528,"w":1.108,"clr":-1,"A":"left","R":[{"T":"(ii)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.54,"y":12.528,"w":1.366,"clr":-1,"A":"left","R":[{"T":"(iii)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.865,"y":12.528,"w":1.37,"clr":-1,"A":"left","R":[{"T":"(iv)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.403,"w":41.58199999999997,"clr":-1,"A":"left","R":[{"T":"Current%20year%20credit%20from%20attached%20Form(s)%208609-A%20for%20buildings%20placed%20in%20service%20before%202008%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":14.09,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.505,"y":14.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.903,"w":41.09999999999998,"clr":-1,"A":"left","R":[{"T":"Low-income%20housing%20credit%20for%20buildings%20placed%20in%20service%20before%202008%20from%20partnerships%2C%20S%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":15.59,"w":14.484000000000004,"clr":-1,"A":"left","R":[{"T":"corporations%2C%20estates%2C%20and%20trusts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.812,"y":15.59,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.465,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.465,"w":41.991999999999976,"clr":-1,"A":"left","R":[{"T":"Add%20lines%203%20and%204.%20Estates%20and%20trusts%2C%20go%20to%20line%206.%20Partnerships%20and%20S%20corporations%2C%20stop%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":17.152,"w":41.01299999999997,"clr":-1,"A":"left","R":[{"T":"and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.84,"w":5.744000000000001,"clr":-1,"A":"left","R":[{"T":"3800%2C%20line%201d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":17.84,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":32.097,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":19.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":39.403,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20subtract%20line%206%20from%20line%205.%20Report%20this%20amount%20on%20Form%203800%2C%20line%201d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.943,"y":20.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":20.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":20.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":20.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":21.572,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.365,"y":21.572,"w":18.017000000000003,"clr":-1,"A":"left","R":[{"T":"Buildings%20Placed%20in%20Service%20After%202007","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":22.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.403,"w":32.044000000000004,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Forms%208609-A%20attached%20for%20buildings%20placed%20in%20service%20after%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.101,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2007%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":23.101,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":"......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.057,"y":23.008,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.903,"w":42.24899999999999,"clr":-1,"A":"left","R":[{"T":"Has%20there%20been%20a%20decrease%20in%20the%20qualified%20basis%20of%20any%20buildings%20accounted%20for%20on%20line%208%20since%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":24.59,"w":16.039000000000005,"clr":-1,"A":"left","R":[{"T":"the%20close%20of%20the%20preceding%20tax%20year%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.827,"y":24.59,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.727,"y":24.59,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.607,"y":24.59,"w":11.705999999999998,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20building","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.403,"w":40.78699999999998,"clr":-1,"A":"left","R":[{"T":"identification%20numbers%20(BINs)%20of%20the%20buildings%20that%20had%20a%20decreased%20basis.%20If%20you%20need%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":26.09,"w":11.466000000000003,"clr":-1,"A":"left","R":[{"T":"space%2C%20attach%20a%20schedule.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.528,"w":0.8500000000000001,"clr":-1,"A":"left","R":[{"T":"(i)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":27.528,"w":1.108,"clr":-1,"A":"left","R":[{"T":"(ii)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.54,"y":27.528,"w":1.366,"clr":-1,"A":"left","R":[{"T":"(iii)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.865,"y":27.528,"w":1.37,"clr":-1,"A":"left","R":[{"T":"(iv)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":28.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.403,"w":40.729999999999976,"clr":-1,"A":"left","R":[{"T":"Current%20year%20credit%20from%20attached%20Form(s)%208609-A%20for%20buildings%20placed%20in%20service%20after%202007%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":29.09,"w":34.65799999999998,"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":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.903,"w":39.321999999999974,"clr":-1,"A":"left","R":[{"T":"Low-income%20housing%20credit%20for%20buildings%20placed%20in%20service%20after%202007%20from%20partnerships%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":30.59,"w":15.410000000000002,"clr":-1,"A":"left","R":[{"T":"S%20corporations%2C%20estates%2C%20and%20trusts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.818,"y":30.59,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":30.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":31.465000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.465000000000003,"w":41.14099999999999,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%20and%2011.%20Estates%20and%20trusts%2C%20go%20to%20line%2013.%20Partnerships%20and%20S%20corporations%2C%20stop","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":32.153,"w":40.64199999999997,"clr":-1,"A":"left","R":[{"T":"here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":32.84,"w":8.356000000000002,"clr":-1,"A":"left","R":[{"T":"Form%203800%2C%20line%204d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.513,"y":32.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":32.097,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":34.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,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":8.354000000000001,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.242,"y":35.84,"w":31.605000000000018,"clr":-1,"A":"left","R":[{"T":"subtract%20line%2013%20from%20line%2012.%20Report%20this%20amount%20on%20Form%203800%2C%20line%204d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":35.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":35.84,"w":0.278,"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":5.94,"y":36.608,"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.641,"y":36.626,"w":7.021000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2063987I","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":36.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":36.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8586","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":36.572,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2011)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5215,"AM":1024,"x":6.229,"y":5.93,"w":69.446,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5216,"AM":1024,"x":77.399,"y":5.907,"w":21.581,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5217,"AM":0,"x":64.35,"y":8.326,"w":13.674,"h":0.833,"TU":"Line 1. Number of Forms 8609-A attached for buildings placed in services before 2008."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3B1","EN":0},"TI":5220,"AM":0,"x":13.571,"y":12.853,"w":12.478,"h":0.833,"TU":"Line 2(i). Building Identification Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3B2","EN":0},"TI":5221,"AM":0,"x":30.896,"y":12.853,"w":12.478,"h":0.833,"TU":"Line 2(ii). Building Identification Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3B3","EN":0},"TI":5222,"AM":0,"x":48.221,"y":12.826,"w":12.478,"h":0.833,"TU":"Line 2(iii). Building Identification Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3B4","EN":0},"TI":5223,"AM":0,"x":65.546,"y":12.826,"w":12.478,"h":0.833,"TU":"Line 2(iv). Building Identification Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5224,"AM":0,"x":83.16,"y":14.151,"w":11.901,"h":0.834,"TU":"Line 3. Current year credit for attached Form(s) 8609-A for buildings placed in service before 2008 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5225,"AM":0,"x":83.098,"y":15.721,"w":12.024,"h":0.833,"TU":"Line 4. Low-income housing credit for buildings placed in service before 2008 from partnerships, S corporations, estates, and trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5226,"AM":1024,"x":83.119,"y":17.888,"w":11.983,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENALLOC","EN":0},"TI":5227,"AM":0,"x":83.173,"y":19.452,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5228,"AM":1024,"x":83.098,"y":20.924,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5229,"AM":0,"x":64.309,"y":23.271,"w":13.716,"h":0.833,"TU":"Line 8. Number of Forms 8609-A attached for buildings placed in service after 2007."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9B1","EN":0},"TI":5232,"AM":0,"x":13.571,"y":27.799,"w":12.478,"h":0.833,"TU":"Line 9(i). Building Identification Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9B2","EN":0},"TI":5233,"AM":0,"x":30.896,"y":27.799,"w":12.478,"h":0.833,"TU":"Line 9(ii). Building Identification Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9B3","EN":0},"TI":5234,"AM":0,"x":48.221,"y":27.826,"w":12.478,"h":0.833,"TU":"Line 9(iii). Building Identification Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9B4","EN":0},"TI":5235,"AM":0,"x":65.546,"y":27.799,"w":12.478,"h":0.833,"TU":"Line 92(iv). Building Identification Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5236,"AM":0,"x":83.16,"y":29.124,"w":11.901,"h":0.861,"TU":"Line 10. Current year credit from attached Form(s) 8609-A for buildings placed in service after 2007 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5237,"AM":0,"x":83.098,"y":30.721,"w":12.024,"h":0.833,"TU":"Line 11. Low-income housing credit for buildings placed in service after 2007 from partnerships, S corporations, estates, and trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":5238,"AM":1024,"x":83.119,"y":32.861,"w":11.983,"h":0.874},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":5239,"AM":1024,"x":83.098,"y":34.471,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":5240,"AM":1024,"x":83.098,"y":35.924,"w":12.024,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B3BY","EN":0},"TI":5218,"AM":0,"x":39.455,"y":9.676,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B3BN","EN":0},"TI":5219,"AM":0,"x":49.363,"y":9.712,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"B3BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B9BY","EN":0},"TI":5230,"AM":0,"x":39.393,"y":24.668,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B9BN","EN":0},"TI":5231,"AM":0,"x":49.301,"y":24.704,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"B9BRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8594.content.txt b/test/data/fd/form/F8594.content.txt new file mode 100755 index 00000000..8b38b21d --- /dev/null +++ b/test/data/fd/form/F8594.content.txt @@ -0,0 +1,152 @@ +Form +8594 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +Asset Acquisition Statement + +Under Section 1060 +a + +Attach to your income tax return. + +a + Information about Form 8594 and its separate instructions is at +www.irs.gov/form8594 +OMB No. 1545-1021 +Attachment +Sequence No. +169 +Name as shown on return +Identifying number as shown on return +Check the box that identifies you: +Purchaser +Seller +Part I +General Information +1 +Name of other party to the transaction +Other party’s identifying number +Address (number, street, and room or suite no.) +City or town, state, and ZIP code +2 +Date of sale +3 +Total sales price (consideration) +Part II +Original Statement of Assets Transferred +4 + Assets +Aggregate fair market value (actual amount for Class I) +Allocation of sales price +Class I +$ +$ +Class II +$ +$ +Class III +$ +$ +Class IV +$ +$ +Class V +$ +$ +Class VI and VII +$ +$ +Total +$ +$ +5 + +Did the purchaser and seller provide for an allocation of the sales price in the sales contract +or in another +written document signed by both parties? +. . +.................... +Yes +No +If “Yes,” are the aggregate fair market values (FMV) listed for each of asset Classes I, II, III, IV, V, VI, and VII +the amounts agreed upon in your sales contract or in a separate written document? +........ +Yes +No +6 + + +In the purchase of the group of assets (or stock), did the purchaser also purchase a license or a covenant +not to compete, or enter into a lease agreement, employment +contract, +management contract, or similar +arrangement with the seller (or managers, directors, owners, or employees of the seller)? . . . . . . +Yes +No +If “Yes,” attach a statement that specifies +(a) + the type of agreement and +(b) + the maximum amount of +consideration (not including interest) paid or to be paid under the agreement. See instructions. +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 63768Z +Form +8594 + (Rev. 12-2012) +City +State +ZIP code +----------------Page (0) Break---------------- +Form 8594 (Rev. 12-2012) +Page +2 +Part III +Supplemental Statement— +Complete only if amending an original statement or previously filed + +supplemental +statement because of an increase or decrease in consideration. See instructions. +7 +Tax year and tax return form number with which the original Form 8594 and any supplemental statements were filed. +8 +Assets +Allocation of sales price as previously reported +Increase or (decrease) +Redetermined allocation of sales price +Class I +$ +$ +$ +Class II +$ +$ +$ +Class III +$ +$ +$ +Class IV +$ +$ +$ +Class V +$ +$ +$ +Class VI and VII +$ +$ +$ +Total +$ +$ +9 +Reason(s) for increase or decrease. Attach additional sheets if more space is needed. +Form +8594 + (Rev. 12-2012) +Tax Year +Tax Form +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8594.fields.json b/test/data/fd/form/F8594.fields.json new file mode 100755 index 00000000..c2f3413f --- /dev/null +++ b/test/data/fd/form/F8594.fields.json @@ -0,0 +1 @@ +[{"id":"CKRB","type":"radio","calc":false,"value":"CK1"},{"id":"CKRB","type":"radio","calc":false,"value":"CK2"},{"id":"II2RB","type":"radio","calc":false,"value":"II2Y"},{"id":"II2RB","type":"radio","calc":false,"value":"II2N"},{"id":"YYRB","type":"radio","calc":false,"value":"YY2"},{"id":"YYRB","type":"radio","calc":false,"value":"YN2"},{"id":"II3RB","type":"radio","calc":false,"value":"II3Y"},{"id":"II3RB","type":"radio","calc":false,"value":"II3N"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"NAM1","type":"alpha","calc":false,"value":""},{"id":"ID1","type":"alpha","calc":false,"value":""},{"id":"ADD1","type":"alpha","calc":false,"value":""},{"id":"CIT1","type":"alpha","calc":false,"value":""},{"id":"ST1","type":"alpha","calc":false,"value":""},{"id":"ZIP1","type":"zip","calc":false,"value":""},{"id":"L2","type":"date","calc":false,"value":""},{"id":"SAL3","type":"number","calc":false,"value":""},{"id":"A66_FMV_1_","type":"number","calc":false,"value":""},{"id":"A65_ASP_1_","type":"number","calc":false,"value":""},{"id":"A66_FMV_2_","type":"number","calc":false,"value":""},{"id":"A65_ASP_2_","type":"number","calc":false,"value":""},{"id":"A66_FMV_3_","type":"number","calc":false,"value":""},{"id":"A65_ASP_3_","type":"number","calc":false,"value":""},{"id":"A66_FMV_4_","type":"number","calc":false,"value":""},{"id":"A65_ASP_4_","type":"number","calc":false,"value":""},{"id":"A66_FMV_5_","type":"number","calc":false,"value":""},{"id":"A65_ASP_5_","type":"number","calc":false,"value":""},{"id":"A66_FMV_6_","type":"number","calc":false,"value":""},{"id":"A65_ASP_6_","type":"number","calc":false,"value":""},{"id":"TOTAGGRE","type":"number","calc":true,"value":""},{"id":"TOTALLOC","type":"number","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"EIN2","type":"ssn","calc":true,"value":""},{"id":"IV9YEAR","type":"date","calc":false,"value":""},{"id":"IV9","type":"alpha","calc":false,"value":""},{"id":"A63_ASP4_1_","type":"number","calc":false,"value":""},{"id":"A62_ID4_1_","type":"number","calc":true,"value":""},{"id":"A64_RASP_1_","type":"number","calc":false,"value":""},{"id":"A63_ASP4_2_","type":"number","calc":false,"value":""},{"id":"A62_ID4_2_","type":"number","calc":true,"value":""},{"id":"A64_RASP_2_","type":"number","calc":false,"value":""},{"id":"A63_ASP4_3_","type":"number","calc":false,"value":""},{"id":"A62_ID4_3_","type":"number","calc":true,"value":""},{"id":"A64_RASP_3_","type":"number","calc":false,"value":""},{"id":"A63_ASP4_4_","type":"number","calc":false,"value":""},{"id":"A62_ID4_4_","type":"number","calc":true,"value":""},{"id":"A64_RASP_4_","type":"number","calc":false,"value":""},{"id":"A63_ASP4_5_","type":"number","calc":false,"value":""},{"id":"A62_ID4_5_","type":"number","calc":true,"value":""},{"id":"A64_RASP_5_","type":"number","calc":false,"value":""},{"id":"A63_ASP4_6_","type":"number","calc":false,"value":""},{"id":"A62_ID4_6_","type":"number","calc":true,"value":""},{"id":"A64_RASP_6_","type":"number","calc":false,"value":""},{"id":"TASP","type":"number","calc":true,"value":""},{"id":"TRSP","type":"number","calc":true,"value":""},{"id":"LINE9_IV2_1_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_2_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_3_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_4_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_5_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_6_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_7_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_8_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_9_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_10_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_11_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_12_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_13_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_14_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_15_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_16_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_17_","type":"alpha","calc":false,"value":""},{"id":"LINE9_IV2_18_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8594.json b/test/data/fd/form/F8594.json new file mode 100755 index 00000000..2df9527a --- /dev/null +++ b/test/data/fd/form/F8594.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8594 (Rev. December 2012)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.064,"y":3.75,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":58.23},{"oc":"#221f1f","x":6.145,"y":7.5,"w":0.75,"l":58.23},{"oc":"#221f1f","x":64.307,"y":5.25,"w":1.5,"l":34.736},{"oc":"#221f1f","x":64.307,"y":7.5,"w":0.75,"l":34.736},{"oc":"#221f1f","x":6.211,"y":9.005,"w":1.125,"l":92.832},{"oc":"#221f1f","x":6.211,"y":9.755,"w":0.75,"l":92.832},{"oc":"#221f1f","x":6.145,"y":12,"w":0.75,"l":58.246},{"oc":"#221f1f","x":64.307,"y":12,"w":0.75,"l":34.74},{"oc":"#221f1f","x":6.147,"y":14.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":16.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":18.75,"w":1.125,"l":92.898},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":19.5,"w":0.75,"l":38.448},{"oc":"#221f1f","x":19.757,"y":20.25,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":19.5,"w":0.75,"l":40.923},{"oc":"#221f1f","x":58.12,"y":20.25,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":21.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":21.75,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":21.75,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":23.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":23.25,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":23.25,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":24.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":24.75,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":24.75,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":26.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":26.25,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":26.25,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":27.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":27.75,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":27.75,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":29.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":29.25,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":29.25,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":30.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":30.75,"w":0.75,"l":38.448},{"oc":"#221f1f","x":58.12,"y":30.75,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.188,"y":35.25,"w":0.75,"l":92.812},{"oc":"#221f1f","x":6.145,"y":41.25,"w":1.5,"l":48.348},{"oc":"#221f1f","x":54.407,"y":41.25,"w":1.5,"l":28.548},{"oc":"#221f1f","x":82.869,"y":41.25,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.836},{"oc":"#221f1f","x":21.038,"y":3.827,"w":1.5,"l":0.631},{"oc":"#221f1f","x":21.038,"y":4.367,"w":1.5,"l":0.898},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.531},{"oc":"#221f1f","x":64.332,"y":5.219,"w":0.75,"l":2.297},{"oc":"#221f1f","x":64.348,"y":9.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.45,"y":16.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":19.8,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":19.8,"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":19.8,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":21.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"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":19.8,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":26.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":26.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":27.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":27.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":29.235,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.192,"y":9,"w":5.767,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":18.752,"w":5.995,"h":0.75,"clr":-1},{"x":0.344,"y":49.017,"w":1.059,"h":0.358,"clr":0},{"oc":"#7f7f7f","x":0.172,"y":48.955,"w":1.403,"h":0.483,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.955,"w":1.403,"h":0.483,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.981,"y":2.868,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":9.451,"y":2.868,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8594","S":-1,"TS":[0,26.9998,0,0]}]},{"oc":"#221f1f","x":5.978,"y":3.4909999999999997,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":5.947,"y":4.017,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.947,"y":4.392,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.986,"y":2.22,"w":13.480000000000002,"clr":-1,"A":"left","R":[{"T":"Asset%20Acquisition%20Statement%20%20","S":-1,"TS":[2,16.899900000000002,0,0]}]},{"oc":"#221f1f","x":43.835,"y":2.971,"w":9.02,"clr":-1,"A":"left","R":[{"T":"Under%20Section%201060","S":-1,"TS":[2,13.9999,0,0]}]},{"oc":"#221f1f","x":41.514,"y":3.7009999999999996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.882,"y":3.795,"w":15.742000000000003,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20income%20tax%20return.","S":-1,"TS":[0,10.4999,0,0]}]},{"oc":"#221f1f","x":25.235,"y":4.272,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":26.267,"y":4.366,"w":30.515,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208594%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,10.4999,0,0]}]},{"oc":"#221f1f","x":65.602,"y":4.366,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8594","S":-1,"TS":[0,10.4999,0,0]}]},{"oc":"#221f1f","x":85.748,"y":2.387,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1021%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":85.619,"y":3.543,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":85.619,"y":4.176,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":93.914,"y":4.177,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"169%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":9.891,"y":4.981,"w":11.780000000000003,"clr":-1,"A":"left","R":[{"T":"Name%20as%20shown%20on%20return%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":66.162,"y":4.981,"w":17.467000000000006,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20as%20shown%20on%20return%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":7.301,"w":15.263000000000002,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20that%20identifies%20you%3A%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":11.713,"y":8.051,"w":4.537000000000001,"clr":-1,"A":"left","R":[{"T":"Purchaser","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.563,"y":8.051,"w":2.499,"clr":-1,"A":"left","R":[{"T":"Seller","S":-1,"TS":[0,11.9999,0,0]}]},{"x":6.634,"y":8.82,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":13.738,"y":8.825,"w":9.792,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":7.558,"y":9.588,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":9.606,"w":17.337000000000003,"clr":-1,"A":"left","R":[{"T":"Name%20of%20other%20party%20to%20the%20transaction%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":66.162,"y":9.606,"w":14.690000000000001,"clr":-1,"A":"left","R":[{"T":"Other%20party%E2%80%99s%20identifying%20number%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.856,"w":21.432000000000006,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20and%20room%20or%20suite%20no.)%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.106,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":7.558,"y":16.338,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.356,"w":5.593,"clr":-1,"A":"left","R":[{"T":"Date%20of%20sale%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":55.82,"y":16.338,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":57.913,"y":16.356,"w":14.426,"clr":-1,"A":"left","R":[{"T":"Total%20sales%20price%20(consideration)%20","S":-1,"TS":[0,10.9999,0,0]}]},{"x":6.492,"y":18.573,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":13.672,"y":18.57,"w":19.775000000000006,"clr":-1,"A":"left","R":[{"T":"Original%20Statement%20of%20Assets%20Transferred%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":7.657,"y":19.301,"w":2.224,"clr":-1,"A":"left","R":[{"T":"4%20%20%20%20%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":11.09,"y":19.301,"w":3.556,"clr":-1,"A":"left","R":[{"T":"%20Assets%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":22.097,"y":19.281,"w":24.521000000000008,"clr":-1,"A":"left","R":[{"T":"Aggregate%20fair%20market%20value%20(actual%20amount%20for%20Class%20I)%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":71.038,"y":19.281,"w":10.907000000000004,"clr":-1,"A":"left","R":[{"T":"Allocation%20of%20sales%20price%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":20.838,"w":3.296,"clr":-1,"A":"left","R":[{"T":"Class%20I%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":20.838,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.343,"y":20.838,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":22.338,"w":3.5549999999999997,"clr":-1,"A":"left","R":[{"T":"Class%20II%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":22.338,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.343,"y":22.338,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":23.839,"w":3.8139999999999996,"clr":-1,"A":"left","R":[{"T":"Class%20III%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.343,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":25.339,"w":3.9069999999999996,"clr":-1,"A":"left","R":[{"T":"Class%20IV%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.343,"y":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.839,"w":3.648,"clr":-1,"A":"left","R":[{"T":"Class%20V%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":26.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.343,"y":26.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":28.339,"w":7.2780000000000005,"clr":-1,"A":"left","R":[{"T":"Class%20VI%20and%20VII%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":28.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.343,"y":28.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":29.839,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Total%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":29.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.343,"y":29.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.555,"y":30.651,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.679,"y":30.651,"w":41.09799999999997,"clr":-1,"A":"left","R":[{"T":"Did%20the%20purchaser%20and%20seller%20provide%20for%20an%20allocation%20of%20the%20sales%20price%20in%20the%20sales%20contract%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":75.058,"y":30.651,"w":5.927000000000001,"clr":-1,"A":"left","R":[{"T":"or%20in%20another%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.679,"y":31.338,"w":18.653000000000002,"clr":-1,"A":"left","R":[{"T":"written%20document%20signed%20by%20both%20parties%3F","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":38.938,"y":31.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":41,"y":31.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":43.06,"y":31.339,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":86.94,"y":31.356,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":94.623,"y":31.356,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":9.679,"y":32.901,"w":48.206999999999965,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20are%20the%20aggregate%20fair%20market%20values%20(FMV)%20listed%20for%20each%20of%20asset%20Classes%20I%2C%20II%2C%20III%2C%20IV%2C%20V%2C%20VI%2C%20and%20%20VII%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.682,"y":33.588,"w":37.54599999999998,"clr":-1,"A":"left","R":[{"T":"the%20amounts%20agreed%20upon%20in%20your%20sales%20contract%20or%20in%20a%20separate%20written%20document%3F%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":67.816,"y":33.588,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":87.2,"y":33.606,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":94.497,"y":33.606,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":7.611,"y":35.963,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.65,"y":35.963,"w":47.23099999999996,"clr":-1,"A":"left","R":[{"T":"In%20the%20purchase%20of%20the%20group%20of%20assets%20(or%20stock)%2C%20did%20the%20purchaser%20also%20purchase%20a%20license%20or%20a%20covenant%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.647,"y":36.651,"w":27.657000000000004,"clr":-1,"A":"left","R":[{"T":"not%20to%20compete%2C%20or%20enter%20into%20a%20lease%20agreement%2C%20employment%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":54.451,"y":36.651,"w":4.26,"clr":-1,"A":"left","R":[{"T":"contract%2C%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":61.238,"y":36.651,"w":14.745000000000003,"clr":-1,"A":"left","R":[{"T":"management%20contract%2C%20or%20similar%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.647,"y":37.338,"w":39.72499999999998,"clr":-1,"A":"left","R":[{"T":"arrangement%20with%20the%20seller%20(or%20managers%2C%20directors%2C%20owners%2C%20or%20employees%20of%20the%20seller)%3F%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":71.936,"y":37.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":73.998,"y":37.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":76.06,"y":37.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":78.122,"y":37.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":80.184,"y":37.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":82.245,"y":37.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":87.2,"y":37.356,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":94.497,"y":37.356,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":9.679,"y":38.901,"w":19.06,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20attach%20a%20statement%20that%20specifies%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":39.108,"y":38.901,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":41.337,"y":38.901,"w":12.634,"clr":-1,"A":"left","R":[{"T":"%20the%20type%20of%20agreement%20and%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":60.844,"y":38.901,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":63.13,"y":38.901,"w":11.729000000000001,"clr":-1,"A":"left","R":[{"T":"%20the%20maximum%20amount%20of%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.677,"y":39.588,"w":42.30599999999996,"clr":-1,"A":"left","R":[{"T":"consideration%20(not%20including%20interest)%20paid%20or%20to%20be%20paid%20under%20the%20agreement.%20See%20instructions.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":41.088,"w":30.702000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":64.004,"y":41.124,"w":7.651,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2063768Z%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":83.632,"y":41.07,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":86.769,"y":41.07,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8594","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":90.584,"y":41.07,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2012)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"x":10.807,"y":15.535,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":54.159,"y":15.579,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":76.89,"y":15.529,"w":28.014,"clr":0,"A":"left","R":[{"T":"ZIP%20code","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5241,"AM":1024,"x":9.305,"y":6.521,"w":54.839,"h":0.902,"TU":"Name as shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5242,"AM":1024,"x":64.536,"y":6.561,"w":34.382,"h":0.861,"TU":"Identifying number as shown on return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM1","EN":0},"TI":5245,"AM":0,"x":6.417,"y":11.14,"w":57.747,"h":0.845,"TU":"Line 1. Name of other party to the transaction."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ID1","EN":0},"TI":5246,"AM":0,"x":65.849,"y":11.112,"w":33.069,"h":0.845,"TU":"Other party’s identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":5247,"AM":0,"x":6.146,"y":13.394,"w":92.916,"h":0.841,"TU":"Address (number, street, and room or suite no.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CIT1","EN":0},"TI":5248,"AM":0,"x":14.3,"y":15.576,"w":25.781,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST1","EN":0},"TI":5249,"AM":0,"x":58.488,"y":15.463,"w":5.707,"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":"ZIP1","EN":0},"TI":5250,"AM":0,"x":83.164,"y":15.579,"w":12.979,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5251,"AM":0,"x":10.823,"y":17.884,"w":12.338,"h":0.833,"TU":"Line 2. Date of sale.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SAL3","EN":0},"TI":5252,"AM":0,"x":58.513,"y":17.855,"w":21.326,"h":0.873,"TU":"Line 3. Total sales price (consideration)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_FMV_1_","EN":0},"TI":5253,"AM":0,"x":22.433,"y":20.862,"w":18.447,"h":0.846,"TU":"Line 4. Class I. Aggregate fair market vaule (actual amount for Class I)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_ASP_1_","EN":0},"TI":5254,"AM":0,"x":61.139,"y":20.971,"w":19.827,"h":0.833,"TU":"Line 4. Class I. Allocation of sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_FMV_2_","EN":0},"TI":5255,"AM":0,"x":22.37,"y":22.323,"w":18.447,"h":0.846,"TU":"Line 4. Class II. Aggregate fair market vaule (actual amount for Class I)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_ASP_2_","EN":0},"TI":5256,"AM":0,"x":61.285,"y":22.391,"w":19.827,"h":0.833,"TU":"Line 4. Class II. Allocation of sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_FMV_3_","EN":0},"TI":5257,"AM":0,"x":22.5,"y":23.813,"w":18.447,"h":0.846,"TU":"Line 4. Class III. Aggregate fair market vaule (actual amount for Class I)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_ASP_3_","EN":0},"TI":5258,"AM":0,"x":61.489,"y":23.908,"w":19.828,"h":0.833,"TU":"Line 4. Class III. Allocation of sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_FMV_4_","EN":0},"TI":5259,"AM":0,"x":22.48,"y":25.358,"w":18.447,"h":0.846,"TU":"Line 4. Class IV. Aggregate fair market vaule (actual amount for Class I)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_ASP_4_","EN":0},"TI":5260,"AM":0,"x":61.469,"y":25.426,"w":19.827,"h":0.833,"TU":"Line 4. Class IV. Allocation of sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_FMV_5_","EN":0},"TI":5261,"AM":0,"x":22.46,"y":26.82,"w":18.447,"h":0.846,"TU":"Line 4. Class V. Aggregate fair market vaule (actual amount for Class I)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_ASP_5_","EN":0},"TI":5262,"AM":0,"x":61.3,"y":26.916,"w":19.828,"h":0.833,"TU":"Line 4. Class V. Allocation of sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A66_FMV_6_","EN":0},"TI":5263,"AM":0,"x":22.515,"y":28.338,"w":18.447,"h":0.846,"TU":"Line 4. Class VI and VII. Aggregate fair market vaule (actual amount for Class I)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A65_ASP_6_","EN":0},"TI":5264,"AM":0,"x":61.354,"y":28.46,"w":19.827,"h":0.833,"TU":"Line 4. Class VI and VII. Allocation of sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAGGRE","EN":0},"TI":5265,"AM":1024,"x":22.725,"y":29.892,"w":18.597,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALLOC","EN":0},"TI":5266,"AM":1024,"x":61.432,"y":29.884,"w":19.902,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CK1","EN":0},"TI":5243,"AM":0,"x":9.733,"y":8.206,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CK2","EN":0},"TI":5244,"AM":0,"x":24.657,"y":8.228,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"CKRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"II2Y","EN":0},"TI":5267,"AM":0,"x":85.071,"y":31.405,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"II2N","EN":0},"TI":5268,"AM":0,"x":92.711,"y":31.451,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"II2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YY2","EN":0},"TI":5269,"AM":0,"x":85.204,"y":33.73,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YN2","EN":0},"TI":5270,"AM":0,"x":92.596,"y":33.696,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"YYRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"II3Y","EN":0},"TI":5271,"AM":0,"x":85.164,"y":37.446,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"II3N","EN":0},"TI":5272,"AM":0,"x":92.705,"y":37.466,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"II3RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.235,"y":3,"w":1.5,"l":87.858},{"oc":"#221f1f","x":94.007,"y":3,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.145,"y":4.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":6.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":6.145,"y":7.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":6.75,"w":0.75,"l":31.023},{"oc":"#221f1f","x":19.757,"y":7.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":50.695,"y":6.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":50.695,"y":7.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.495,"y":6.75,"w":0.75,"l":28.548},{"oc":"#221f1f","x":70.495,"y":7.5,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.223,"y":9,"w":0.75,"l":13.62},{"oc":"#221f1f","x":19.757,"y":9,"w":0.75,"l":31.023},{"oc":"#221f1f","x":50.695,"y":9,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.495,"y":9,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":10.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":50.695,"y":10.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.495,"y":10.5,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.223,"y":12,"w":0.75,"l":13.62},{"oc":"#221f1f","x":19.757,"y":12,"w":0.75,"l":31.023},{"oc":"#221f1f","x":50.695,"y":12,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.495,"y":12,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.223,"y":13.5,"w":0.75,"l":13.62},{"oc":"#221f1f","x":19.757,"y":13.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":50.695,"y":13.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.495,"y":13.5,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.145,"y":15,"w":0.75,"l":13.698},{"oc":"#221f1f","x":19.757,"y":15,"w":0.75,"l":31.023},{"oc":"#221f1f","x":50.695,"y":15,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.495,"y":15,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.223,"y":16.5,"w":0.75,"l":13.62},{"oc":"#221f1f","x":19.757,"y":16.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":70.495,"y":16.5,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.223,"y":18,"w":0.75,"l":13.62},{"oc":"#221f1f","x":19.757,"y":18,"w":0.75,"l":31.023},{"oc":"#221f1f","x":50.695,"y":16.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":50.695,"y":18.017,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.495,"y":18,"w":0.75,"l":28.548},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":21,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":22.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":24,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":25.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":27,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":28.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":30,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":31.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":33,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":34.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":36,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":37.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":39,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":40.499,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":42,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":43.5,"w":0.75,"l":92.898},{"oc":"#221f1f","x":6.145,"y":45.062,"w":1.5,"l":92.898}],"VLines":[{"oc":"#221f1f","x":19.8,"y":6.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":6.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.537,"y":6.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":19.8,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.537,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.537,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.537,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.537,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.537,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.537,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":19.8,"y":16.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":16.484,"w":0.75,"l":1.548},{"oc":"#221f1f","x":70.537,"y":16.484,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.003,"w":6.638,"h":0.749,"clr":-1},{"oc":"#c0c1c4","x":50.738,"y":16.5,"w":19.8,"h":1.517,"clr":-1}],"Texts":[{"oc":"#221f1f","x":6.028,"y":2.062,"w":11.913000000000006,"clr":-1,"A":"left","R":[{"T":"Form%208594%20(Rev.%2012-2012)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":94.372,"y":2.071,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":97.796,"y":2.071,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,12.9999,0,0]}]},{"x":6.561,"y":2.823,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":13.672,"y":2.851,"w":12.757000000000001,"clr":-1,"A":"left","R":[{"T":"Supplemental%20Statement%E2%80%94","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":35.562,"y":2.851,"w":29.765000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20only%20if%20amending%20an%20original%20statement%20or%20previously%20filed","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":87.083,"y":2.851,"w":6.299000000000001,"clr":-1,"A":"left","R":[{"T":"supplemental%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":13.672,"y":3.5389999999999997,"w":36.35799999999998,"clr":-1,"A":"left","R":[{"T":"statement%20because%20of%20an%20increase%20or%20decrease%20in%20consideration.%20See%20instructions.%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":7.638,"y":4.384,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.651,"y":4.338,"w":52.25199999999998,"clr":-1,"A":"left","R":[{"T":"Tax%20year%20and%20tax%20return%20form%20number%20with%20which%20the%20original%20Form%208594%20and%20any%20supplemental%20statements%20were%20filed.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.657,"y":6.551,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8%20%20%20%20%20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":11.09,"y":6.551,"w":3.278,"clr":-1,"A":"left","R":[{"T":"Assets%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":21.608,"y":6.521,"w":21.130000000000003,"clr":-1,"A":"left","R":[{"T":"Allocation%20of%20sales%20price%20as%20previously%20reported%20","S":-1,"TS":[0,10.4999,0,0]}]},{"oc":"#221f1f","x":54.027,"y":6.521,"w":10.166000000000004,"clr":-1,"A":"left","R":[{"T":"Increase%20or%20(decrease)%20","S":-1,"TS":[0,10.4999,0,0]}]},{"oc":"#221f1f","x":73.525,"y":6.521,"w":17.372000000000003,"clr":-1,"A":"left","R":[{"T":"Redetermined%20allocation%20of%20sales%20price%20","S":-1,"TS":[0,10.4999,0,0]}]},{"oc":"#221f1f","x":6.016,"y":8.089,"w":3.296,"clr":-1,"A":"left","R":[{"T":"Class%20I%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":50.918,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":70.718,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":9.589,"w":3.5549999999999997,"clr":-1,"A":"left","R":[{"T":"Class%20II%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":50.918,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":70.717,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.016,"y":11.089,"w":3.8139999999999996,"clr":-1,"A":"left","R":[{"T":"Class%20III%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":11.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":50.918,"y":11.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":70.718,"y":11.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.016,"y":12.588,"w":3.9069999999999996,"clr":-1,"A":"left","R":[{"T":"Class%20IV%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":12.588,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":50.918,"y":12.588,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":70.718,"y":12.588,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":14.089,"w":3.648,"clr":-1,"A":"left","R":[{"T":"Class%20V%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":14.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":50.918,"y":14.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":70.718,"y":14.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.016,"y":15.588999999999999,"w":7.2780000000000005,"clr":-1,"A":"left","R":[{"T":"Class%20VI%20and%20VII%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":50.918,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":70.718,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.016,"y":17.088,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Total%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":19.98,"y":17.088,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":70.718,"y":17.088,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.638,"y":17.838,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":9.651,"y":17.838,"w":38.375,"clr":-1,"A":"left","R":[{"T":"Reason(s)%20for%20increase%20or%20decrease.%20Attach%20additional%20sheets%20if%20more%20space%20is%20needed.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":83.632,"y":44.883,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":86.769,"y":44.883,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8594","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":90.584,"y":44.883,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2012)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"x":8.902,"y":5.594,"w":40.57000000000001,"clr":0,"A":"left","R":[{"T":"Tax%20Year","S":-1,"TS":[0,13,0,0]}]},{"x":28.754,"y":5.594,"w":42.78,"clr":0,"A":"left","R":[{"T":"Tax%20Form","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":5273,"AM":1024,"x":21.566,"y":2.136,"w":45.905,"h":0.833,"TU":"Name as shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"EIN2","EN":0},"TI":5274,"AM":1024,"x":70.732,"y":2.032,"w":19.372,"h":0.909,"TU":"Identifying number as shown on return"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"IV9YEAR","EN":0},"TI":5275,"AM":0,"x":17.058,"y":5.6,"w":10.382,"h":0.833,"TU":"Line 7. Tax Year.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"IV9","EN":0},"TI":5276,"AM":0,"x":37.077,"y":5.643,"w":8.605,"h":0.901,"TU":"Tax Form."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A63_ASP4_1_","EN":0},"TI":5277,"AM":0,"x":22.423,"y":8.166,"w":14.915,"h":0.833,"TU":"Line 8. Assets. Class I. Allocation of sales price as previously reported."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A62_ID4_1_","EN":0},"TI":5278,"AM":1024,"x":53.027,"y":8.221,"w":15.756,"h":0.833,"TU":"undefined"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_RASP_1_","EN":0},"TI":5279,"AM":0,"x":73.171,"y":8.221,"w":13.741,"h":0.833,"TU":"Line 8. Class I. Redetermined allocation of sales price."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A63_ASP4_2_","EN":0},"TI":5280,"AM":0,"x":22.511,"y":9.541,"w":14.915,"h":0.833,"TU":"Line 8. Assets. Class II. Allocation of sales price as previously reported."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A62_ID4_2_","EN":0},"TI":5281,"AM":1024,"x":53.064,"y":9.677,"w":15.756,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_RASP_2_","EN":0},"TI":5282,"AM":0,"x":73.387,"y":9.705,"w":13.741,"h":0.833,"TU":"Line 8. Class II. Redetermined allocation of sales price"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A63_ASP4_3_","EN":0},"TI":5283,"AM":0,"x":22.619,"y":11.086,"w":14.915,"h":0.833,"TU":"Line 8. Assets. Class III. Allocation of sales price as previously reported."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A62_ID4_3_","EN":0},"TI":5284,"AM":1024,"x":53.193,"y":11.195,"w":15.757,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_RASP_3_","EN":0},"TI":5285,"AM":0,"x":73.517,"y":11.167,"w":13.741,"h":0.833,"TU":"Line 8. Class III. Redetermined allocation of sales price"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A63_ASP4_4_","EN":0},"TI":5286,"AM":0,"x":22.823,"y":12.521,"w":14.915,"h":0.833,"TU":"Line 8. Assets. Class IV. Allocation of sales price as previously reported."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A62_ID4_4_","EN":0},"TI":5287,"AM":1024,"x":53.248,"y":12.712,"w":15.756,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_RASP_4_","EN":0},"TI":5288,"AM":0,"x":73.422,"y":12.63,"w":13.741,"h":0.833,"TU":"Line 8. Class IV. Redetermined allocation of sales price"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A63_ASP4_5_","EN":0},"TI":5289,"AM":0,"x":22.654,"y":14.066,"w":14.915,"h":0.833,"TU":"Line 8. Assets. Class V. Allocation of sales price as previously reported."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A62_ID4_5_","EN":0},"TI":5290,"AM":1024,"x":53.303,"y":14.12,"w":15.756,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_RASP_5_","EN":0},"TI":5291,"AM":0,"x":73.477,"y":14.147,"w":13.741,"h":0.833,"TU":"Line 8. Class V. Redetermined allocation of sales price"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A63_ASP4_6_","EN":0},"TI":5292,"AM":0,"x":22.828,"y":15.61,"w":14.915,"h":0.833,"TU":"Line 8. Assets. Class VI and VII. Allocation of sales price as previously reported."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A62_ID4_6_","EN":0},"TI":5293,"AM":1024,"x":53.358,"y":15.746,"w":15.756,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A64_RASP_6_","EN":0},"TI":5294,"AM":0,"x":73.456,"y":15.665,"w":13.741,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TASP","EN":0},"TI":5295,"AM":1024,"x":22.927,"y":17.191,"w":14.99,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TRSP","EN":0},"TI":5296,"AM":1024,"x":73.686,"y":17.221,"w":13.592,"h":0.833,"TU":"undefined"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_1_","EN":0},"TI":5297,"AM":0,"x":6.82,"y":18.681,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_2_","EN":0},"TI":5298,"AM":0,"x":6.623,"y":20.177,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_3_","EN":0},"TI":5299,"AM":0,"x":6.484,"y":21.671,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_4_","EN":0},"TI":5300,"AM":0,"x":6.623,"y":23.117,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_5_","EN":0},"TI":5301,"AM":0,"x":6.773,"y":24.642,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_6_","EN":0},"TI":5302,"AM":0,"x":6.398,"y":26.112,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_7_","EN":0},"TI":5303,"AM":0,"x":6.324,"y":27.637,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_8_","EN":0},"TI":5304,"AM":0,"x":6.508,"y":29.119,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_9_","EN":0},"TI":5305,"AM":0,"x":6.433,"y":30.698,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_10_","EN":0},"TI":5306,"AM":0,"x":6.508,"y":32.141,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_11_","EN":0},"TI":5307,"AM":0,"x":6.508,"y":33.666,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_12_","EN":0},"TI":5308,"AM":0,"x":6.453,"y":35.17,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_13_","EN":0},"TI":5309,"AM":0,"x":6.528,"y":36.641,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_14_","EN":0},"TI":5310,"AM":0,"x":6.378,"y":38.111,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_15_","EN":0},"TI":5311,"AM":0,"x":6.378,"y":39.581,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_16_","EN":0},"TI":5312,"AM":0,"x":6.303,"y":41.105,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_17_","EN":0},"TI":5313,"AM":0,"x":6.473,"y":42.583,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9_IV2_18_","EN":0},"TI":5314,"AM":0,"x":6.209,"y":44.173,"w":92.017,"h":0.833,"TU":"Line 9. Reason(s) for increase or decrease. Attach additional sheets if more space is needed."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8606S.content.txt b/test/data/fd/form/F8606S.content.txt new file mode 100755 index 00000000..eb17e629 --- /dev/null +++ b/test/data/fd/form/F8606S.content.txt @@ -0,0 +1,241 @@ +Form +8606 +Department of the Treasury +Internal Revenue Service (99) +Nondeductible IRAs +a + + +a + +Attach to Form 1040, Form 1040A, or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +48 +Name. If married, file a separate form for each spouse required to file Form 8606. See instructions. +Your social security number +Fill in Your Address Only +If You Are Filing This +Form by Itself and Not +With Your Tax Return +F +Home address (number and street, or P.O. box if mail is not delivered to your home) +Apt. no. +City, town or post office, If you have a foreign address, also complete the spaces below. +Foreign country name +Foreign province/state/county +Foreign postal code +Part I +Nondeductible Contributions to Traditional IRAs and Distributions From Traditional, SEP, and SIMPLE IRAs +Complete this part only if one or more of the following apply. +• You made nondeductible contributions to a traditional IRA for 2013. +traditional IRA in 2013 or an earlier year. For this purpose, a distribution does not include a rollover, qualified charitable +distributions, one-time distribution to fund an HSA, conversion, recharacterization, or return of certain contributions. +• You converted part, but not all, of your traditional, SEP, and SIMPLE IRAs to Roth IRAs in 2013 (excluding any portion +1 + +Enter your nondeductible contributions to traditional IRAs for 2013, including those made for 2013 +from January 1, 2014, through April 15, 2014 (see instructions) +............ +1 +2 +Enter your total basis in traditional IRAs (see instructions) +.............. +2 +3 +Add lines 1 and 2 +........................... +3 +In 2013, did you take a distribution +from traditional, SEP, or SIMPLE IRAs, +or make a Roth IRA conversion? +No +a +Enter the amount from line 3 on line 14. +Do not complete the rest of Part I. +Yes +a +Go to line 4. +4 +Enter those contributions included on line 1 that were made from January 1, 2014, through April 15, 2014 +4 +5 +Subtract line 4 from line 3 +........................ +5 +6 + +December 31, 2013, plus any outstanding rollovers (see instructions) . . +6 +7 + + + + +Enter your distributions from traditional, SEP, and SIMPLE IRAs in +time distribution to fund an HSA, conversions to a Roth IRA, certain +returned contributions, or recharacterizations of traditional IRA +contributions (see instructions) +.............. +7 +8 + + +Enter the net amount you converted from traditional, SEP, and SIMPLE +later recharacterized (see instructions). Also enter this amount on line 16 . +8 +9 +Add lines 6, 7, and 8 +........ +9 +10 + +Divide line 5 by line 9. Enter the result as a decimal rounded to at least +3 places. If the result is 1.000 or more, enter “1.000” +...... +10 +× +. +11 + +Multiply line 8 by line 10. This is the nontaxable portion of the amount +you converted to Roth IRAs. Also enter this amount on line 17 . . . +11 +12 + +Multiply line 7 by line 10. This is the nontaxable portion of your +distributions that you did not convert to a Roth IRA +....... +12 +13 +Add lines 11 and 12. This is the nontaxable portion of all your distributions +........ +13 +14 +14 +15 + +Taxable amount. + +1040, line 15b; Form 1040A, line 11b; or Form 1040NR, line 16b +............ +15 +Note. +You may be subject to an additional 10% tax on the amount on line 15 if you were under +age 59½ at the time of the distribution (see instructions). +For Privacy Act and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 63966F +Form +8606 + (2013) +State +ZIP Code +Information about Form 8606 and its separate instructions is at www.irs.gov/form8606. +you recharacterized) and you made nondeductible contributions to a traditional IRA in 2013 or an earlier year. +Enter the value of all your traditional, SEP, and SIMPLE IRAs as of +2013. Do not include rollovers, qualified charitable distributions, a one- +Subtract line 13 from line 3. This is your total basis in traditional IRAs for 2013 and earlier years +• You took distributions from a traditional, SEP, or SIMPLE IRA in 2013 and you made nondeductible contributions to a +Subtract line 12 from line 7. If more than zero, also include this amount on Form +IRAs to Roth IRAs in 2013. Do not include amounts converted that you +----------------Page (0) Break---------------- +Form 8606 (2013) +Page +2 +Part II +2013 Conversions From Traditional, SEP, or SIMPLE IRAs to Roth IRAs +Complete this part if you converted part or all of your traditional, SEP, and SIMPLE IRAs to a Roth IRA in 2013 (excluding +any portion you recharacterized). +16 + + +If you completed Part I, enter the amount from line 8. Otherwise, enter the net amount you +you later recharacterized back to traditional, SEP, or SIMPLE IRAs in 2013 or 2014 (see instructions) +16 +17 + +If you completed Part I, enter the amount from line 11. Otherwise, enter your basis in the amount +on line 16 (see instructions) +........................ +17 +18 + +Taxable amount. +Subtract line 17 from line 16. Also include this amount on Form 1040, line 15b; +Form 1040A, line 11b; or Form 1040NR, line 16b +................. +18 +Part III +Distributions From Roth IRAs +Complete this part only if you took a distribution from a Roth IRA in 2013. For this purpose, a distribution does not +include a rollover, qualified charitable distributions, a one-time distribution to fund an HSA, recharacterization, or return +of certain contributions (see instructions). +19 + +Enter your total nonqualified distributions from Roth IRAs in 2013, including any qualified first-time +homebuyer distributions (see instructions) +................... +19 +20 +20 +21 +Subtract line 20 from line 19. If zero or less, enter -0- and skip lines 22 through 25 . . . . . . . +21 +22 +Enter your basis in Roth IRA contributions (see instructions) +............. +22 +23 + +Subtract line 22 from line 21. If zero or less, enter -0- and skip lines 24 and 25. If more than zero, +you may be subject to an additional tax (see instructions) +.............. +23 +24 + +Enter your basis in conversions from traditional, SEP, and SIMPLE IRAs and rollovers from +qualified retirement plans to a Roth IRA (see instructions) +.............. +24 +25 Taxable amount. + Subtract line 24 from line 23. If more than zero, also include this amount on +Form 1040, line 15b; Form 1040A, line 11b; or Form 1040NR, line 16b +.......... +25 +Sign Here Only If You +Are Filing This Form +by Itself and Not With +Your Tax Return +F +Your signature +F +Date +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer’s signature +Date +Check if +self-employed +PTIN +Firm's name +a +Firm's address + +a +Firm's EIN + +a +Phone no. +Form +8606 + (2013) +converted from traditional, SEP, and SIMPLE IRAs to Roth IRAs in 2013. Do not include amounts +Qualified first-time homebuyer expenses (see instructions). Do not enter more than $10,000.. +belief, it is true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. +Under penalties of perjury, I declare that I have examined this form, including accompanying attachments, and to the best of my knowledge and +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8606S.fields.json b/test/data/fd/form/F8606S.fields.json new file mode 100755 index 00000000..2547a28f --- /dev/null +++ b/test/data/fd/form/F8606S.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"CYBASIS","type":"number","calc":false,"value":""},{"id":"PYBASIS","type":"number","calc":false,"value":""},{"id":"BASIS","type":"number","calc":true,"value":""},{"id":"LATECONT","type":"number","calc":false,"value":""},{"id":"NETBASIS","type":"number","calc":true,"value":""},{"id":"YEVALUE","type":"number","calc":false,"value":""},{"id":"DISNOTCV","type":"number","calc":false,"value":""},{"id":"DISCV","type":"number","calc":false,"value":""},{"id":"TOTDIS","type":"number","calc":true,"value":""},{"id":"RATIO","type":"percent","calc":true,"value":""},{"id":"CNONTAX","type":"number","calc":true,"value":""},{"id":"NCNONTAX","type":"number","calc":true,"value":""},{"id":"TDNONTAX","type":"number","calc":true,"value":""},{"id":"NEWBASIS","type":"number","calc":true,"value":""},{"id":"TAXDIST","type":"number","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"ROTHCONV","type":"number","calc":false,"value":""},{"id":"TCVBASIS","type":"number","calc":false,"value":""},{"id":"TAXCONV","type":"number","calc":true,"value":""},{"id":"ROTHDIST","type":"number","calc":false,"value":""},{"id":"HOMEBUY","type":"number","calc":false,"value":""},{"id":"TOTQDIST","type":"number","calc":true,"value":""},{"id":"CONBASIS","type":"number","calc":false,"value":""},{"id":"CONBAL","type":"number","calc":true,"value":""},{"id":"CVBASIS","type":"number","calc":false,"value":""},{"id":"EARNINGS","type":"number","calc":true,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"PNAM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F8606S.json b/test/data/fd/form/F8606S.json new file mode 100755 index 00000000..f6cac5ee --- /dev/null +++ b/test/data/fd/form/F8606S.json @@ -0,0 +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":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":28.422,"y":8.251,"w":0.75,"l":60.724},{"oc":"#221f1f","x":89.059,"y":8.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":28.422,"y":9.751,"w":0.75,"l":70.624},{"oc":"#221f1f","x":28.422,"y":11.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":54.409,"y":11.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":11.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":12.334,"y":11.251,"w":1.125,"l":86.711},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":11.14,"y":22.501,"w":1.5,"l":23.513},{"oc":"#221f1f","x":11.14,"y":20.251,"w":1.5,"l":23.513},{"oc":"#221f1f","x":34.652,"y":20.626,"w":0.75,"l":5.574},{"oc":"#221f1f","x":44.355,"y":20.626,"w":0.75,"l":5.746},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.652,"y":22.183,"w":0.75,"l":5.574},{"oc":"#221f1f","x":44.355,"y":22.183,"w":0.75,"l":5.746},{"oc":"#221f1f","x":80.397,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":72.972,"y":33.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":61.834,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.751,"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":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":39.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":41.251,"w":1.125,"l":18.648},{"oc":"#221f1f","x":6.147,"y":41.251,"w":1.5,"l":53.299},{"oc":"#221f1f","x":59.359,"y":41.251,"w":1.5,"l":28.548},{"oc":"#221f1f","x":87.822,"y":41.251,"w":1.5,"l":11.223}],"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":2.281},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.465,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.465,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.465,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":1.531},{"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":0.781},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":34.652,"y":20.251,"w":1.5,"l":2.25},{"oc":"#221f1f","x":11.14,"y":20.251,"w":1.5,"l":2.25},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":23.985,"w":0.75,"l":0.782},{"oc":"#221f1f","x":84.152,"y":23.985,"w":0.75,"l":12.781},{"oc":"#221f1f","x":80.44,"y":23.985,"w":0.75,"l":12.781},{"oc":"#221f1f","x":76.727,"y":24.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":28.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":12.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":39.735,"w":0.75,"l":1.539}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":11.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":20.251,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":24.001,"w":3.712,"h":12.75,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":31.501,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":39.751,"w":18.562,"h":1.5,"clr":-1},{"x":0,"y":48.643,"w":24.015,"h":0.857,"clr":1},{"oc":"#99c1da","x":0.172,"y":48.705,"w":23.671,"h":0.867,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8606","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.726,"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.251,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":41.734,"y":2.101,"w":9.500999999999998,"clr":-1,"A":"left","R":[{"T":"Nondeductible%20IRAs","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":23.273,"y":3.065,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":34.89,"y":3.8150000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.159,"y":3.909,"w":24.451000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%20Form%201040A%2C%20or%20Form%201040NR.","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.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.393,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.888,"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.335,"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.335,"w":1.112,"clr":-1,"A":"left","R":[{"T":"48","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":43.89699999999997,"clr":-1,"A":"left","R":[{"T":"Name.%20If%20married%2C%20file%20a%20separate%20form%20for%20each%20spouse%20required%20to%20file%20Form%208606.%20See%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":5.001,"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.2509999999999994,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20Your%20Address%20Only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.001,"w":10.280000000000003,"clr":-1,"A":"left","R":[{"T":"If%20You%20Are%20Filing%20This%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.751,"w":10.835000000000004,"clr":-1,"A":"left","R":[{"T":"Form%20by%20Itself%20and%20Not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":9.501,"w":10.223,"clr":-1,"A":"left","R":[{"T":"With%20Your%20Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.447,"y":6.021,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,82.999,0,0],"RA":90}]},{"oc":"#221f1f","x":28.902,"y":6.501,"w":37.41699999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street%2C%20or%20P.O.%20box%20if%20mail%20is%20not%20delivered%20to%20your%20home)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.54,"y":6.501,"w":3.52,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.902,"y":8.001,"w":39.42899999999999,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20If%20you%20have%20a%20foreign%20address%2C%20also%20complete%20the%20spaces%20below.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.902,"y":9.483,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.89,"y":9.483,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.877,"y":9.483,"w":8.908,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code","S":-1,"TS":[0,11,0,0]}]},{"x":6.838,"y":11.072,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":11.072,"w":51.06299999999997,"clr":-1,"A":"left","R":[{"T":"Nondeductible%20Contributions%20to%20Traditional%20IRAs%20and%20Distributions%20From%20Traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":14.602,"y":11.84,"w":27.022000000000006,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20one%20or%20more%20of%20the%20following%20apply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":12.59,"w":31.249000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20made%20nondeductible%20contributions%20to%20a%20traditional%20IRA%20for%202013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.149,"y":14.083,"w":53.21099999999998,"clr":-1,"A":"left","R":[{"T":"traditional%20IRA%20in%202013%20or%20an%20earlier%20year.%20For%20this%20purpose%2C%20a%20distribution%20does%20not%20include%20a%20rollover%2C%20qualified%20charitable%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.149,"y":14.708,"w":51.95199999999992,"clr":-1,"A":"left","R":[{"T":"distributions%2C%20one-time%20distribution%20to%20fund%20an%20HSA%2C%20conversion%2C%20recharacterization%2C%20or%20return%20of%20certain%20contributions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":15.584,"w":53.63999999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20converted%20part%2C%20but%20not%20all%2C%20of%20your%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20to%20Roth%20IRAs%20in%202013%20(excluding%20any%20portion%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.153,"w":44.02999999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20nondeductible%20contributions%20to%20traditional%20IRAs%20for%202013%2C%20including%20those%20made%20for%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.84,"w":28.084000000000003,"clr":-1,"A":"left","R":[{"T":"from%20January%201%2C%202014%2C%20through%20April%2015%2C%202014%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":17.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":25.428000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20basis%20in%20traditional%20IRAs%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":18.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"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":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":19.34,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.577,"y":20.071,"w":16.672000000000004,"clr":-1,"A":"left","R":[{"T":"In%202013%2C%20did%20you%20take%20a%20distribution%20","S":-1,"TS":[0,10.02,1,0]}]},{"oc":"#221f1f","x":11.577,"y":20.746,"w":18.560000000000002,"clr":-1,"A":"left","R":[{"T":"from%20traditional%2C%20SEP%2C%20or%20SIMPLE%20IRAs%2C%20","S":-1,"TS":[0,10.02,1,0]}]},{"oc":"#221f1f","x":11.577,"y":21.421,"w":15.448000000000006,"clr":-1,"A":"left","R":[{"T":"or%20make%20a%20Roth%20IRA%20conversion%3F","S":-1,"TS":[0,10.02,1,0]}]},{"oc":"#221f1f","x":40.781,"y":19.996,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.671,"y":20.035,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.727,"y":20.036,"w":17.859,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%203%20on%20line%2014.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.727,"y":20.711,"w":15.170000000000003,"clr":-1,"A":"left","R":[{"T":"Do%20not%20complete%20the%20rest%20of%20Part%20I.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.452,"y":21.496,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.671,"y":21.537,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.727,"y":21.501,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%204.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":46.885999999999946,"clr":-1,"A":"left","R":[{"T":"Enter%20those%20contributions%20included%20on%20line%201%20that%20were%20made%20from%20January%201%2C%202014%2C%20through%20April%2015%2C%202014","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":81.616,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.885,"y":24.59,"w":30.58200000000001,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202013%2C%20plus%20any%20outstanding%20rollovers%20(see%20instructions)","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":57.498,"y":24.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":59.561,"y":24.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":63.053,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":25.434,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.434,"w":29.411999999999992,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20distributions%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":26.809,"w":30.117000000000004,"clr":-1,"A":"left","R":[{"T":"time%20distribution%20to%20fund%20an%20HSA%2C%20conversions%20to%20a%20Roth%20IRA%2C%20certain","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.497,"w":28.130000000000013,"clr":-1,"A":"left","R":[{"T":"returned%20contributions%2C%20or%20recharacterizations%20of%20traditional%20IRA%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":28.184,"w":13.687000000000001,"clr":-1,"A":"left","R":[{"T":"contributions%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.748,"y":28.184,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":28.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":29.215,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":29.215,"w":31.952999999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20net%20amount%20you%20converted%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":10.891,"y":30.59,"w":32.189000000000014,"clr":-1,"A":"left","R":[{"T":"later%20recharacterized%20(see%20instructions).%20Also%20enter%20this%20amount%20on%20line%2016","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":59.567,"y":30.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":63.053,"y":30.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":9.171,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%2C%207%2C%20and%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":31.340000000000003,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.491,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.153,"w":31.675000000000004,"clr":-1,"A":"left","R":[{"T":"Divide%20line%205%20by%20line%209.%20Enter%20the%20result%20as%20a%20decimal%20rounded%20to%20at%20least%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":32.84,"w":23.581999999999994,"clr":-1,"A":"left","R":[{"T":"3%20places.%20If%20the%20result%20is%201.000%20or%20more%2C%20enter%20%E2%80%9C1.000%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.247,"y":32.84,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":68.124,"y":32.715,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.572,"y":32.715,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":33.652,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.652,"w":31.269000000000013,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%208%20by%20line%2010.%20This%20is%20the%20nontaxable%20portion%20of%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":34.34,"w":27.54400000000001,"clr":-1,"A":"left","R":[{"T":"you%20converted%20to%20Roth%20IRAs.%20Also%20enter%20this%20amount%20on%20line%2017","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.449,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.511,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.573,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.153,"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.153,"w":28.15500000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20by%20line%2010.%20This%20is%20the%20nontaxable%20portion%20of%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":35.84,"w":22.709,"clr":-1,"A":"left","R":[{"T":"distributions%20that%20you%20did%20not%20convert%20to%20a%20Roth%20IRA","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.198,"y":35.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":33.08200000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012.%20This%20is%20the%20nontaxable%20portion%20of%20all%20your%20distributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":36.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.186,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.153,"w":8.202,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":38.84,"w":28.47600000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2015b%3B%20Form%201040A%2C%20line%2011b%3B%20or%20Form%201040NR%2C%20line%2016b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.446,"y":38.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.722,"y":39.59,"w":39.771,"clr":-1,"A":"left","R":[{"T":"You%20may%20be%20subject%20to%20an%20additional%2010%25%20tax%20on%20the%20amount%20on%20line%2015%20if%20you%20were%20under%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.278,"w":25.118000000000006,"clr":-1,"A":"left","R":[{"T":"age%2059%C2%BD%20at%20the%20time%20of%20the%20distribution%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.108,"w":38.066999999999986,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.97,"y":41.126,"w":7.336,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2063966F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.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":41.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8606","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":41.072,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.371,"y":8.031,"w":2.352,"clr":-1,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.474,"y":8.078,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"ZIP%20Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.687,"y":3.066,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208606%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8606.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":16.149,"y":16.209,"w":48.692999999999984,"clr":-1,"A":"left","R":[{"T":"you%20recharacterized)%20and%20you%20made%20nondeductible%20contributions%20to%20a%20traditional%20IRA%20in%202013%20or%20an%20earlier%20year.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":23.903,"w":29.848000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20value%20of%20all%20your%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20as%20of%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":10.894,"y":26.122,"w":31.125000000000014,"clr":-1,"A":"left","R":[{"T":"2013.%20Do%20not%20include%20rollovers%2C%20qualified%20charitable%20distributions%2C%20a%20one-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":42.12799999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%203.%20This%20is%20your%20total%20basis%20in%20traditional%20IRAs%20for%202013%20and%20earlier%20years","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":14.602,"y":13.459,"w":53.402999999999956,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20took%20distributions%20from%20a%20traditional%2C%20SEP%2C%20or%20SIMPLE%20IRA%20in%202013%20and%20you%20made%20nondeductible%20contributions%20to%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.894,"y":38.153,"w":35.602000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2012%20from%20line%207.%20If%20more%20than%20zero%2C%20also%20include%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":29.903,"w":31.516000000000002,"clr":-1,"A":"left","R":[{"T":"IRAs%20to%20Roth%20IRAs%20in%202013.%20Do%20not%20include%20amounts%20converted%20that%20you%20","S":-1,"TS":[0,11.64,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5315,"AM":1024,"x":6.188,"y":5.821,"w":72.397,"h":0.833,"TU":"Name. If married, file a separate form for each spouse required to file Form 8606. See instructions."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5316,"AM":1024,"x":79.446,"y":5.821,"w":19.554,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":5317,"AM":0,"x":28.462,"y":7.5,"w":60.637,"h":0.833,"TU":"Fill in Your Address Only If You Are Filing This Form by Itself and Not With Your Tax Return. Home address (number and street, or P.O. box if mail is not delivered to your home)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":5318,"AM":0,"x":89.1,"y":7.5,"w":9.9,"h":0.833,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":5319,"AM":0,"x":28.462,"y":9,"w":50.288,"h":0.833,"TU":"City, town or post office, If you have a foreign address, also complete the spaces below (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":5320,"AM":0,"x":81.15,"y":8.82,"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":5321,"AM":0,"x":88.881,"y":8.996,"w":10.302,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":5322,"AM":0,"x":28.96,"y":10.331,"w":23.515,"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":5323,"AM":0,"x":54.45,"y":10.379,"w":25.987,"h":0.871,"TU":"Foreign province or state or county."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":5324,"AM":0,"x":80.438,"y":10.437,"w":18.563,"h":0.833,"TU":"Foreign postal code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYBASIS","EN":0},"TI":5325,"AM":0,"x":84.15,"y":18,"w":11.137,"h":0.833,"TU":"Line 1. Enter your nondeductible contributions to traditional I RAs for 2013, including those made for 2013 from January 1, 2014, through April 15, 2014 (see instructions). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYBASIS","EN":0},"TI":5326,"AM":0,"x":84.15,"y":18.75,"w":11.137,"h":0.833,"TU":"Line 2. Enter your total basis in traditional I R As (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS","EN":0},"TI":5327,"AM":1024,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 3. Add lines 1 and 2. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LATECONT","EN":0},"TI":5328,"AM":0,"x":84.15,"y":22.5,"w":11.137,"h":0.833,"TU":"Line 4. Enter those contributions included on line 1 that were made from January 1, 2014, through April 15, 2014. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETBASIS","EN":0},"TI":5329,"AM":1024,"x":84.15,"y":23.25,"w":11.137,"h":0.833,"TU":"Line 5. Subtract line 4 from line 3. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"YEVALUE","EN":0},"TI":5330,"AM":0,"x":65.588,"y":24.75,"w":11.137,"h":0.833,"TU":"Line 6. Enter the value of all your traditional, SEP, and SIMPLE IRAs as of December 31, 2013, plus any outstanding rollovers. (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISNOTCV","EN":0},"TI":5331,"AM":0,"x":65.588,"y":28.5,"w":11.137,"h":0.833,"TU":"Line 7. Enter your distributions from traditional, SEP, and SIMPLE IRAs in 2013. Do not include rollovers, qualified charitable distributions, a one-time distribution to fund an HSA, conversions to a Roth IRA, certain returned contributions, or recharacterizations of traditional IRA contributions (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISCV","EN":0},"TI":5332,"AM":0,"x":65.588,"y":30.75,"w":11.137,"h":0.833,"TU":"Line 8. Enter the net amount you converted from traditional, SEP, and SIMPLE IRAs to Roth I R As in 2013. Do not include amounts converted that you later recharacterized (see instructions). Also enter this amount on line 16. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDIS","EN":0},"TI":5333,"AM":1024,"x":47.025,"y":31.5,"w":11.137,"h":0.833,"TU":"Line 9. Add lines 6, 7, and 8. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"RATIO","EN":0},"TI":5334,"AM":1024,"x":69.749,"y":33,"w":5.892,"h":0.833,"TU":"Line 10. Divide line 5 by line 9. Enter the result as a decimal rounded to at least 3 places. If the result is 1.000 or more, enter “1.000”. Enter number before the decimal."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CNONTAX","EN":0},"TI":5335,"AM":1024,"x":65.588,"y":34.5,"w":11.137,"h":0.833,"TU":"Line 11. Multiply line 8 by line 10. This is the nontaxable portion of the amount you converted to Roth I R As. Also enter this amount on line 17. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NCNONTAX","EN":0},"TI":5336,"AM":1024,"x":65.588,"y":36,"w":11.137,"h":0.833,"TU":"Line 12. Multiply line 7 by line 10. This is the nontaxable portion of your distributions that you did not convert to a Roth I R A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDNONTAX","EN":0},"TI":5337,"AM":1024,"x":84.15,"y":36.75,"w":11.137,"h":0.833,"TU":"Line 13. Add lines 11 and 12. This is the nontaxable portion of all your distributions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NEWBASIS","EN":0},"TI":5338,"AM":1024,"x":84.15,"y":37.5,"w":11.137,"h":0.833,"TU":"Line 14. Subtract line 13 from line 3. This is your total basis in traditional IRAs for 2013 and earlier years. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDIST","EN":0},"TI":5339,"AM":1024,"x":84.15,"y":39,"w":11.137,"h":0.833,"TU":"Line 15. Taxable amount. Subtract line 12 from line 7. If more than zero, also include this amount on Form 1040, line 15b; Form 1040 A, line 11b; or Form 1040N R, line 16b. Dollars."}],"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.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":7.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":12.334,"y":10.501,"w":0.75,"l":86.711},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.895},{"oc":"#221f1f","x":80.397,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":17.411},{"oc":"#221f1f","x":23.472,"y":21.751,"w":1.125,"l":75.574},{"oc":"#221f1f","x":25.947,"y":24.001,"w":0.75,"l":47.111},{"oc":"#221f1f","x":75.447,"y":24.001,"w":0.75,"l":23.598},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.5,"l":9.986},{"oc":"#221f1f","x":16.047,"y":24.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":16.047,"y":26.251,"w":0.75,"l":24.836},{"oc":"#221f1f","x":40.797,"y":24.751,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.797,"y":26.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":66.784,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.784,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":77.922,"y":26.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.846,"y":25.432,"w":0.75,"l":1.375},{"oc":"#221f1f","x":82.846,"y":24.932,"w":0.75,"l":1.375},{"oc":"#221f1f","x":86.584,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":16.047,"y":27.001,"w":0.75,"l":61.961},{"oc":"#221f1f","x":16.047,"y":27.751,"w":1.5,"l":61.961},{"oc":"#221f1f","x":77.922,"y":27.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":27.751,"w":1.5,"l":21.123},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":84.152,"y":5.235,"w":0.75,"l":2.282},{"oc":"#221f1f","x":80.44,"y":5.235,"w":0.75,"l":2.282},{"oc":"#221f1f","x":95.29,"y":5.235,"w":0.75,"l":1.532},{"oc":"#221f1f","x":95.29,"y":6.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":7.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":7.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":8.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":8.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":16.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":21.728,"w":0.75,"l":3.039},{"oc":"#221f1f","x":16.09,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":40.84,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.221,"y":24.932,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.846,"y":24.932,"w":0.75,"l":0.5},{"oc":"#221f1f","x":86.627,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":16.09,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":16.09,"y":26.986,"w":0.75,"l":0.797},{"oc":"#221f1f","x":77.965,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":26.986,"w":0.75,"l":0.797}],"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":"#221f1f","x":6.19,"y":10.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%208606%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]}]},{"x":6.584,"y":2.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":2.822,"w":33.73,"clr":-1,"A":"left","R":[{"T":"2013%20Conversions%20From%20Traditional%2C%20SEP%2C%20or%20SIMPLE%20IRAs%20to%20Roth%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":3.6529999999999996,"w":54.23099999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20converted%20part%20or%20all%20of%20your%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20to%20a%20Roth%20IRA%20in%202013%20(excluding%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.591,"y":4.34,"w":14.685000000000006,"clr":-1,"A":"left","R":[{"T":"any%20portion%20you%20recharacterized).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.684,"y":5.215,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.215,"w":40.45699999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20I%2C%20enter%20the%20amount%20from%20line%208.%20Otherwise%2C%20enter%20the%20net%20amount%20you%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":10.888,"y":6.59,"w":44.91299999999996,"clr":-1,"A":"left","R":[{"T":"you%20later%20recharacterized%20back%20to%20traditional%2C%20SEP%2C%20or%20SIMPLE%20IRAs%20in%202013%20or%202014%20(see%20instructions)%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":81.186,"y":6.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":7.4030000000000005,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.4030000000000005,"w":43.345999999999975,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20I%2C%20enter%20the%20amount%20from%20line%2011.%20Otherwise%2C%20enter%20your%20basis%20in%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":8.09,"w":12.169000000000004,"clr":-1,"A":"left","R":[{"T":"on%20line%2016%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.694,"y":8.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":8.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.903,"w":8.169,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.013,"y":8.903,"w":35.27300000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2017%20from%20line%2016.%20Also%20include%20this%20amount%20on%20Form%201040%2C%20line%2015b%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":9.59,"w":21.620000000000008,"clr":-1,"A":"left","R":[{"T":"Form%201040A%2C%20line%2011b%3B%20or%20Form%201040NR%2C%20line%2016b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.122,"y":9.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":9.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":10.322,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":10.322,"w":14.056000000000001,"clr":-1,"A":"left","R":[{"T":"Distributions%20From%20Roth%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":11.153,"w":51.17999999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20took%20a%20distribution%20from%20a%20Roth%20IRA%20in%202013.%20For%20this%20purpose%2C%20a%20distribution%20does%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.594,"y":11.84,"w":53.33999999999995,"clr":-1,"A":"left","R":[{"T":"include%20a%20rollover%2C%20qualified%20charitable%20distributions%2C%20a%20one-time%20distribution%20%20to%20fund%20an%20HSA%2C%20recharacterization%2C%20or%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.593,"y":12.528,"w":18.428000000000004,"clr":-1,"A":"left","R":[{"T":"of%20certain%20contributions%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.685,"y":13.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.88,"y":13.403,"w":44.084,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20nonqualified%20distributions%20from%20Roth%20IRAs%20in%202013%2C%20including%20any%20qualified%20first-time%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":14.09,"w":18.652000000000008,"clr":-1,"A":"left","R":[{"T":"homebuyer%20distributions%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.993,"y":14.09,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":14.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":14.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.186,"y":14.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":36.47199999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2020%20from%20line%2019.%20If%20zero%20or%20less%2C%20enter%20-0-%20and%20skip%20lines%2022%20through%2025","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":65.751,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":67.814,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":69.878,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":71.939,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":74.002,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":76.066,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":78.129,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":81.186,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":26.800000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20basis%20in%20Roth%20IRA%20contributions%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":16.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.153,"w":43.37999999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2022%20from%20line%2021.%20If%20zero%20or%20less%2C%20enter%20-0-%20and%20skip%20lines%2024%20and%2025.%20If%20more%20than%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":17.84,"w":25.413000000000004,"clr":-1,"A":"left","R":[{"T":"you%20may%20be%20subject%20to%20an%20additional%20tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.322,"y":17.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":18.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.653,"w":40.30099999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20basis%20in%20conversions%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20and%20rollovers%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":19.34,"w":25.374000000000002,"clr":-1,"A":"left","R":[{"T":"qualified%20retirement%20plans%20to%20a%20Roth%20IRA%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.32,"y":19.34,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.153,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.153,"w":7.891,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.036,"y":20.153,"w":33.824,"clr":-1,"A":"left","R":[{"T":"%20Subtract%20line%2024%20from%20line%2023.%20If%20more%20than%20zero%2C%20also%20include%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":20.84,"w":31.088000000000008,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2015b%3B%20Form%201040A%2C%20line%2011b%3B%20or%20Form%201040NR%2C%20line%2016b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.571,"y":20.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":21.614,"w":10.503000000000002,"clr":-1,"A":"left","R":[{"T":"Sign%20Here%20Only%20If%20You%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":22.289,"w":10.001999999999999,"clr":-1,"A":"left","R":[{"T":"Are%20Filing%20This%20Form%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":22.964,"w":10.501000000000001,"clr":-1,"A":"left","R":[{"T":"by%20Itself%20and%20Not%20With%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":23.639,"w":7.779,"clr":-1,"A":"left","R":[{"T":"Your%20Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.69,"y":22.501,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,29.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":25.74,"y":23.72,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.654,"y":22.501,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,29.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":75.24,"y":23.72,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":24.823,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,13.35,1,0]}]},{"oc":"#221f1f","x":5.94,"y":25.648,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":-1,"TS":[0,13.35,1,0]}]},{"oc":"#221f1f","x":5.94,"y":26.473,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":-1,"TS":[0,13.35,1,0]}]},{"oc":"#221f1f","x":16.527,"y":24.47,"w":12.502000000000004,"clr":-1,"A":"left","R":[{"T":"Print%2FType%20preparer%E2%80%99s%20%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.277,"y":24.546,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":67.265,"y":24.501,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.402,"y":24.663,"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.402,"y":25.188,"w":6.631,"clr":-1,"A":"left","R":[{"T":"self-employed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.065,"y":24.51,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.527,"y":26.001,"w":7.189000000000002,"clr":-1,"A":"left","R":[{"T":"Firm's%20name%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.176,"y":25.939,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":16.527,"y":26.751,"w":6.908999999999999,"clr":-1,"A":"left","R":[{"T":"Firm's%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.078,"y":26.689,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":78.402,"y":26.032,"w":4.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Firm's%20EIN%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.546,"y":25.97,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":78.402,"y":26.782,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":27.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":27.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8606","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":27.572,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.891,"y":5.903,"w":43.47399999999997,"clr":-1,"A":"left","R":[{"T":"converted%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20to%20Roth%20IRAs%20in%202013.%20Do%20not%20include%20amounts%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":41.28999999999997,"clr":-1,"A":"left","R":[{"T":"Qualified%20first-time%20homebuyer%20expenses%20(see%20instructions).%20Do%20not%20enter%20more%20than%20%2410%2C000..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.944,"y":21.907,"w":66.59999999999995,"clr":-1,"A":"left","R":[{"T":"belief%2C%20it%20is%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.51,0,0]}]},{"oc":"#221f1f","x":23.952,"y":21.438,"w":64.47999999999995,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20form%2C%20including%20accompanying%20attachments%2C%20and%20to%20the%20best%20of%20my%20knowledge%20and%20","S":-1,"TS":[0,9.51,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":5340,"AM":1024,"x":18.331,"y":2.013,"w":47.68,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":5341,"AM":1024,"x":70.249,"y":2.192,"w":20.86,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ROTHCONV","EN":0},"TI":5342,"AM":0,"x":84.15,"y":6.75,"w":11.137,"h":0.833,"TU":"Line 16. If you completed Part I, enter the amount from line 8. Otherwise, enter the net amount you converted from traditional, SEP, and SIMPLE IRAs to Roth IRAs in 2013. Do not include amounts you later recharacterized back to traditional, SEP, or SIMPLE IRAs in 2013 or 2014 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TCVBASIS","EN":0},"TI":5343,"AM":0,"x":84.15,"y":8.25,"w":11.137,"h":0.833,"TU":"Line 17. If you completed Part 1, enter the amount from line 11. Otherwise, enter your basis in the amount on line 16 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCONV","EN":0},"TI":5344,"AM":1024,"x":84.15,"y":9.75,"w":11.137,"h":0.833,"TU":"Line 17. If you completed Part 1, enter the amount from line 11. Otherwise, enter your basis in the amount on line 16 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ROTHDIST","EN":0},"TI":5345,"AM":0,"x":84.15,"y":14.25,"w":11.137,"h":0.833,"TU":"Line 19. Enter your total nonqualified distributions from Roth I R As in 2013, including any qualified first-time homebuyer distributions (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOMEBUY","EN":0},"TI":5346,"AM":0,"x":84.15,"y":15,"w":11.137,"h":0.833,"TU":"Line 20. Qualified first-time homebuyer expenses (see instructions). Do not enter more than $10,000. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTQDIST","EN":0},"TI":5347,"AM":1024,"x":84.15,"y":15.75,"w":11.137,"h":0.833,"TU":"Line 21. Subtract line 20 from line 19. If zero or less, enter zero, and skip lines 22 through 25. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONBASIS","EN":0},"TI":5348,"AM":0,"x":84.15,"y":16.5,"w":11.137,"h":0.833,"TU":"Line 22. Enter your basis in Roth IRA contributions (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONBAL","EN":0},"TI":5349,"AM":1024,"x":84.15,"y":18,"w":11.137,"h":0.833,"TU":"Line 23. Subtract line 22 from line 21. If zero or less, enter zero, and skip lines 24 and 25. If more than zero, you may be subject to an additional tax (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CVBASIS","EN":0},"TI":5350,"AM":0,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 24. Enter your basis in conversions from traditional, SEP, and SIMPLE IRAs and rollovers from qualified retirement plans to a Roth IRA (see instructions). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EARNINGS","EN":0},"TI":5351,"AM":1024,"x":84.15,"y":21,"w":11.137,"h":0.833,"TU":"Line 25. Taxable amount. Subtract line 24 from line 23. If more than zero, also include this amount on Form 1040, line 15b; Form 1040A, line 11b; or Form 1040N R, line 16b. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":5352,"AM":1024,"x":41.166,"y":25.409,"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":5353,"AM":1024,"x":27.947,"y":26.25,"w":50.016,"h":0.833,"TU":"Firm's name.","V":"Self-prepared"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8606T.content.txt b/test/data/fd/form/F8606T.content.txt new file mode 100755 index 00000000..eb17e629 --- /dev/null +++ b/test/data/fd/form/F8606T.content.txt @@ -0,0 +1,241 @@ +Form +8606 +Department of the Treasury +Internal Revenue Service (99) +Nondeductible IRAs +a + + +a + +Attach to Form 1040, Form 1040A, or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +48 +Name. If married, file a separate form for each spouse required to file Form 8606. See instructions. +Your social security number +Fill in Your Address Only +If You Are Filing This +Form by Itself and Not +With Your Tax Return +F +Home address (number and street, or P.O. box if mail is not delivered to your home) +Apt. no. +City, town or post office, If you have a foreign address, also complete the spaces below. +Foreign country name +Foreign province/state/county +Foreign postal code +Part I +Nondeductible Contributions to Traditional IRAs and Distributions From Traditional, SEP, and SIMPLE IRAs +Complete this part only if one or more of the following apply. +• You made nondeductible contributions to a traditional IRA for 2013. +traditional IRA in 2013 or an earlier year. For this purpose, a distribution does not include a rollover, qualified charitable +distributions, one-time distribution to fund an HSA, conversion, recharacterization, or return of certain contributions. +• You converted part, but not all, of your traditional, SEP, and SIMPLE IRAs to Roth IRAs in 2013 (excluding any portion +1 + +Enter your nondeductible contributions to traditional IRAs for 2013, including those made for 2013 +from January 1, 2014, through April 15, 2014 (see instructions) +............ +1 +2 +Enter your total basis in traditional IRAs (see instructions) +.............. +2 +3 +Add lines 1 and 2 +........................... +3 +In 2013, did you take a distribution +from traditional, SEP, or SIMPLE IRAs, +or make a Roth IRA conversion? +No +a +Enter the amount from line 3 on line 14. +Do not complete the rest of Part I. +Yes +a +Go to line 4. +4 +Enter those contributions included on line 1 that were made from January 1, 2014, through April 15, 2014 +4 +5 +Subtract line 4 from line 3 +........................ +5 +6 + +December 31, 2013, plus any outstanding rollovers (see instructions) . . +6 +7 + + + + +Enter your distributions from traditional, SEP, and SIMPLE IRAs in +time distribution to fund an HSA, conversions to a Roth IRA, certain +returned contributions, or recharacterizations of traditional IRA +contributions (see instructions) +.............. +7 +8 + + +Enter the net amount you converted from traditional, SEP, and SIMPLE +later recharacterized (see instructions). Also enter this amount on line 16 . +8 +9 +Add lines 6, 7, and 8 +........ +9 +10 + +Divide line 5 by line 9. Enter the result as a decimal rounded to at least +3 places. If the result is 1.000 or more, enter “1.000” +...... +10 +× +. +11 + +Multiply line 8 by line 10. This is the nontaxable portion of the amount +you converted to Roth IRAs. Also enter this amount on line 17 . . . +11 +12 + +Multiply line 7 by line 10. This is the nontaxable portion of your +distributions that you did not convert to a Roth IRA +....... +12 +13 +Add lines 11 and 12. This is the nontaxable portion of all your distributions +........ +13 +14 +14 +15 + +Taxable amount. + +1040, line 15b; Form 1040A, line 11b; or Form 1040NR, line 16b +............ +15 +Note. +You may be subject to an additional 10% tax on the amount on line 15 if you were under +age 59½ at the time of the distribution (see instructions). +For Privacy Act and Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 63966F +Form +8606 + (2013) +State +ZIP Code +Information about Form 8606 and its separate instructions is at www.irs.gov/form8606. +you recharacterized) and you made nondeductible contributions to a traditional IRA in 2013 or an earlier year. +Enter the value of all your traditional, SEP, and SIMPLE IRAs as of +2013. Do not include rollovers, qualified charitable distributions, a one- +Subtract line 13 from line 3. This is your total basis in traditional IRAs for 2013 and earlier years +• You took distributions from a traditional, SEP, or SIMPLE IRA in 2013 and you made nondeductible contributions to a +Subtract line 12 from line 7. If more than zero, also include this amount on Form +IRAs to Roth IRAs in 2013. Do not include amounts converted that you +----------------Page (0) Break---------------- +Form 8606 (2013) +Page +2 +Part II +2013 Conversions From Traditional, SEP, or SIMPLE IRAs to Roth IRAs +Complete this part if you converted part or all of your traditional, SEP, and SIMPLE IRAs to a Roth IRA in 2013 (excluding +any portion you recharacterized). +16 + + +If you completed Part I, enter the amount from line 8. Otherwise, enter the net amount you +you later recharacterized back to traditional, SEP, or SIMPLE IRAs in 2013 or 2014 (see instructions) +16 +17 + +If you completed Part I, enter the amount from line 11. Otherwise, enter your basis in the amount +on line 16 (see instructions) +........................ +17 +18 + +Taxable amount. +Subtract line 17 from line 16. Also include this amount on Form 1040, line 15b; +Form 1040A, line 11b; or Form 1040NR, line 16b +................. +18 +Part III +Distributions From Roth IRAs +Complete this part only if you took a distribution from a Roth IRA in 2013. For this purpose, a distribution does not +include a rollover, qualified charitable distributions, a one-time distribution to fund an HSA, recharacterization, or return +of certain contributions (see instructions). +19 + +Enter your total nonqualified distributions from Roth IRAs in 2013, including any qualified first-time +homebuyer distributions (see instructions) +................... +19 +20 +20 +21 +Subtract line 20 from line 19. If zero or less, enter -0- and skip lines 22 through 25 . . . . . . . +21 +22 +Enter your basis in Roth IRA contributions (see instructions) +............. +22 +23 + +Subtract line 22 from line 21. If zero or less, enter -0- and skip lines 24 and 25. If more than zero, +you may be subject to an additional tax (see instructions) +.............. +23 +24 + +Enter your basis in conversions from traditional, SEP, and SIMPLE IRAs and rollovers from +qualified retirement plans to a Roth IRA (see instructions) +.............. +24 +25 Taxable amount. + Subtract line 24 from line 23. If more than zero, also include this amount on +Form 1040, line 15b; Form 1040A, line 11b; or Form 1040NR, line 16b +.......... +25 +Sign Here Only If You +Are Filing This Form +by Itself and Not With +Your Tax Return +F +Your signature +F +Date +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer’s signature +Date +Check if +self-employed +PTIN +Firm's name +a +Firm's address + +a +Firm's EIN + +a +Phone no. +Form +8606 + (2013) +converted from traditional, SEP, and SIMPLE IRAs to Roth IRAs in 2013. Do not include amounts +Qualified first-time homebuyer expenses (see instructions). Do not enter more than $10,000.. +belief, it is true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. +Under penalties of perjury, I declare that I have examined this form, including accompanying attachments, and to the best of my knowledge and +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8606T.fields.json b/test/data/fd/form/F8606T.fields.json new file mode 100755 index 00000000..2547a28f --- /dev/null +++ b/test/data/fd/form/F8606T.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FCNAME","type":"alpha","calc":false,"value":""},{"id":"FPC","type":"alpha","calc":false,"value":""},{"id":"FZIP","type":"alpha","calc":false,"value":""},{"id":"CYBASIS","type":"number","calc":false,"value":""},{"id":"PYBASIS","type":"number","calc":false,"value":""},{"id":"BASIS","type":"number","calc":true,"value":""},{"id":"LATECONT","type":"number","calc":false,"value":""},{"id":"NETBASIS","type":"number","calc":true,"value":""},{"id":"YEVALUE","type":"number","calc":false,"value":""},{"id":"DISNOTCV","type":"number","calc":false,"value":""},{"id":"DISCV","type":"number","calc":false,"value":""},{"id":"TOTDIS","type":"number","calc":true,"value":""},{"id":"RATIO","type":"percent","calc":true,"value":""},{"id":"CNONTAX","type":"number","calc":true,"value":""},{"id":"NCNONTAX","type":"number","calc":true,"value":""},{"id":"TDNONTAX","type":"number","calc":true,"value":""},{"id":"NEWBASIS","type":"number","calc":true,"value":""},{"id":"TAXDIST","type":"number","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"ROTHCONV","type":"number","calc":false,"value":""},{"id":"TCVBASIS","type":"number","calc":false,"value":""},{"id":"TAXCONV","type":"number","calc":true,"value":""},{"id":"ROTHDIST","type":"number","calc":false,"value":""},{"id":"HOMEBUY","type":"number","calc":false,"value":""},{"id":"TOTQDIST","type":"number","calc":true,"value":""},{"id":"CONBASIS","type":"number","calc":false,"value":""},{"id":"CONBAL","type":"number","calc":true,"value":""},{"id":"CVBASIS","type":"number","calc":false,"value":""},{"id":"EARNINGS","type":"number","calc":true,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"PNAM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F8606T.json b/test/data/fd/form/F8606T.json new file mode 100755 index 00000000..ccba42f2 --- /dev/null +++ b/test/data/fd/form/F8606T.json @@ -0,0 +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":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":28.422,"y":8.251,"w":0.75,"l":60.724},{"oc":"#221f1f","x":89.059,"y":8.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":28.422,"y":9.751,"w":0.75,"l":70.624},{"oc":"#221f1f","x":28.422,"y":11.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":54.409,"y":11.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":11.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":12.334,"y":11.251,"w":1.125,"l":86.711},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":11.14,"y":22.501,"w":1.5,"l":23.513},{"oc":"#221f1f","x":11.14,"y":20.251,"w":1.5,"l":23.513},{"oc":"#221f1f","x":34.652,"y":20.626,"w":0.75,"l":5.574},{"oc":"#221f1f","x":44.355,"y":20.626,"w":0.75,"l":5.746},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.652,"y":22.183,"w":0.75,"l":5.574},{"oc":"#221f1f","x":44.355,"y":22.183,"w":0.75,"l":5.746},{"oc":"#221f1f","x":80.397,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":72.972,"y":33.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":61.834,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":35.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":36.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":36.751,"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":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":39.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":41.251,"w":1.125,"l":18.648},{"oc":"#221f1f","x":6.147,"y":41.251,"w":1.5,"l":53.299},{"oc":"#221f1f","x":59.359,"y":41.251,"w":1.5,"l":28.548},{"oc":"#221f1f","x":87.822,"y":41.251,"w":1.5,"l":11.223}],"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":2.281},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.465,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":89.102,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.465,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":28.465,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":1.531},{"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":0.781},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":34.652,"y":20.251,"w":1.5,"l":2.25},{"oc":"#221f1f","x":11.14,"y":20.251,"w":1.5,"l":2.25},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":23.985,"w":0.75,"l":0.782},{"oc":"#221f1f","x":84.152,"y":23.985,"w":0.75,"l":12.781},{"oc":"#221f1f","x":80.44,"y":23.985,"w":0.75,"l":12.781},{"oc":"#221f1f","x":76.727,"y":24.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":28.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":12.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":39.735,"w":0.75,"l":1.539}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":11.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":20.251,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":24.001,"w":3.712,"h":12.75,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":31.501,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":39.751,"w":18.562,"h":1.5,"clr":-1},{"x":0,"y":48.643,"w":24.015,"h":0.857,"clr":1},{"oc":"#99c1da","x":0.172,"y":48.705,"w":23.671,"h":0.867,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8606","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.726,"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.251,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":41.734,"y":2.101,"w":9.500999999999998,"clr":-1,"A":"left","R":[{"T":"Nondeductible%20IRAs","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":23.273,"y":3.065,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":34.89,"y":3.8150000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.159,"y":3.909,"w":24.451000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%20Form%201040A%2C%20or%20Form%201040NR.","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.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.393,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.888,"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.335,"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.335,"w":1.112,"clr":-1,"A":"left","R":[{"T":"48","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":43.89699999999997,"clr":-1,"A":"left","R":[{"T":"Name.%20If%20married%2C%20file%20a%20separate%20form%20for%20each%20spouse%20required%20to%20file%20Form%208606.%20See%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":5.001,"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.2509999999999994,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20Your%20Address%20Only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.001,"w":10.280000000000003,"clr":-1,"A":"left","R":[{"T":"If%20You%20Are%20Filing%20This%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.751,"w":10.835000000000004,"clr":-1,"A":"left","R":[{"T":"Form%20by%20Itself%20and%20Not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":9.501,"w":10.223,"clr":-1,"A":"left","R":[{"T":"With%20Your%20Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.447,"y":6.021,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,82.999,0,0],"RA":90}]},{"oc":"#221f1f","x":28.902,"y":6.501,"w":37.41699999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street%2C%20or%20P.O.%20box%20if%20mail%20is%20not%20delivered%20to%20your%20home)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.54,"y":6.501,"w":3.52,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.902,"y":8.001,"w":39.42899999999999,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20If%20you%20have%20a%20foreign%20address%2C%20also%20complete%20the%20spaces%20below.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.902,"y":9.483,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.89,"y":9.483,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.877,"y":9.483,"w":8.908,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code","S":-1,"TS":[0,11,0,0]}]},{"x":6.838,"y":11.072,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":11.072,"w":51.06299999999997,"clr":-1,"A":"left","R":[{"T":"Nondeductible%20Contributions%20to%20Traditional%20IRAs%20and%20Distributions%20From%20Traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":14.602,"y":11.84,"w":27.022000000000006,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20one%20or%20more%20of%20the%20following%20apply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":12.59,"w":31.249000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20made%20nondeductible%20contributions%20to%20a%20traditional%20IRA%20for%202013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.149,"y":14.083,"w":53.21099999999998,"clr":-1,"A":"left","R":[{"T":"traditional%20IRA%20in%202013%20or%20an%20earlier%20year.%20For%20this%20purpose%2C%20a%20distribution%20does%20not%20include%20a%20rollover%2C%20qualified%20charitable%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.149,"y":14.708,"w":51.95199999999992,"clr":-1,"A":"left","R":[{"T":"distributions%2C%20one-time%20distribution%20to%20fund%20an%20HSA%2C%20conversion%2C%20recharacterization%2C%20or%20return%20of%20certain%20contributions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":15.584,"w":53.63999999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20converted%20part%2C%20but%20not%20all%2C%20of%20your%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20to%20Roth%20IRAs%20in%202013%20(excluding%20any%20portion%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.153,"w":44.02999999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20nondeductible%20contributions%20to%20traditional%20IRAs%20for%202013%2C%20including%20those%20made%20for%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.84,"w":28.084000000000003,"clr":-1,"A":"left","R":[{"T":"from%20January%201%2C%202014%2C%20through%20April%2015%2C%202014%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":17.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":25.428000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20basis%20in%20traditional%20IRAs%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":18.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"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":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":19.34,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.577,"y":20.071,"w":16.672000000000004,"clr":-1,"A":"left","R":[{"T":"In%202013%2C%20did%20you%20take%20a%20distribution%20","S":-1,"TS":[0,10.02,1,0]}]},{"oc":"#221f1f","x":11.577,"y":20.746,"w":18.560000000000002,"clr":-1,"A":"left","R":[{"T":"from%20traditional%2C%20SEP%2C%20or%20SIMPLE%20IRAs%2C%20","S":-1,"TS":[0,10.02,1,0]}]},{"oc":"#221f1f","x":11.577,"y":21.421,"w":15.448000000000006,"clr":-1,"A":"left","R":[{"T":"or%20make%20a%20Roth%20IRA%20conversion%3F","S":-1,"TS":[0,10.02,1,0]}]},{"oc":"#221f1f","x":40.781,"y":19.996,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.671,"y":20.035,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.727,"y":20.036,"w":17.859,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%203%20on%20line%2014.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.727,"y":20.711,"w":15.170000000000003,"clr":-1,"A":"left","R":[{"T":"Do%20not%20complete%20the%20rest%20of%20Part%20I.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.452,"y":21.496,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.671,"y":21.537,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.727,"y":21.501,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%204.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":46.885999999999946,"clr":-1,"A":"left","R":[{"T":"Enter%20those%20contributions%20included%20on%20line%201%20that%20were%20made%20from%20January%201%2C%202014%2C%20through%20April%2015%2C%202014","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":81.616,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.885,"y":24.59,"w":30.58200000000001,"clr":-1,"A":"left","R":[{"T":"December%2031%2C%202013%2C%20plus%20any%20outstanding%20rollovers%20(see%20instructions)","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":57.498,"y":24.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":59.561,"y":24.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":63.053,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":25.434,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.434,"w":29.411999999999992,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20distributions%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":26.809,"w":30.117000000000004,"clr":-1,"A":"left","R":[{"T":"time%20distribution%20to%20fund%20an%20HSA%2C%20conversions%20to%20a%20Roth%20IRA%2C%20certain","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.497,"w":28.130000000000013,"clr":-1,"A":"left","R":[{"T":"returned%20contributions%2C%20or%20recharacterizations%20of%20traditional%20IRA%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":28.184,"w":13.687000000000001,"clr":-1,"A":"left","R":[{"T":"contributions%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.748,"y":28.184,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":28.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":29.215,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":29.215,"w":31.952999999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20net%20amount%20you%20converted%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":10.891,"y":30.59,"w":32.189000000000014,"clr":-1,"A":"left","R":[{"T":"later%20recharacterized%20(see%20instructions).%20Also%20enter%20this%20amount%20on%20line%2016","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":59.567,"y":30.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":63.053,"y":30.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":9.171,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%2C%207%2C%20and%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":31.340000000000003,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.491,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.153,"w":31.675000000000004,"clr":-1,"A":"left","R":[{"T":"Divide%20line%205%20by%20line%209.%20Enter%20the%20result%20as%20a%20decimal%20rounded%20to%20at%20least%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":32.84,"w":23.581999999999994,"clr":-1,"A":"left","R":[{"T":"3%20places.%20If%20the%20result%20is%201.000%20or%20more%2C%20enter%20%E2%80%9C1.000%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.247,"y":32.84,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":68.124,"y":32.715,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.572,"y":32.715,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":33.652,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.652,"w":31.269000000000013,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%208%20by%20line%2010.%20This%20is%20the%20nontaxable%20portion%20of%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":34.34,"w":27.54400000000001,"clr":-1,"A":"left","R":[{"T":"you%20converted%20to%20Roth%20IRAs.%20Also%20enter%20this%20amount%20on%20line%2017","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.449,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.511,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.573,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.153,"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.153,"w":28.15500000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20by%20line%2010.%20This%20is%20the%20nontaxable%20portion%20of%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":35.84,"w":22.709,"clr":-1,"A":"left","R":[{"T":"distributions%20that%20you%20did%20not%20convert%20to%20a%20Roth%20IRA","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.198,"y":35.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":33.08200000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012.%20This%20is%20the%20nontaxable%20portion%20of%20all%20your%20distributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":36.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.186,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.153,"w":8.202,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":38.84,"w":28.47600000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2015b%3B%20Form%201040A%2C%20line%2011b%3B%20or%20Form%201040NR%2C%20line%2016b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.446,"y":38.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.722,"y":39.59,"w":39.771,"clr":-1,"A":"left","R":[{"T":"You%20may%20be%20subject%20to%20an%20additional%2010%25%20tax%20on%20the%20amount%20on%20line%2015%20if%20you%20were%20under%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.278,"w":25.118000000000006,"clr":-1,"A":"left","R":[{"T":"age%2059%C2%BD%20at%20the%20time%20of%20the%20distribution%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.108,"w":38.066999999999986,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.97,"y":41.126,"w":7.336,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2063966F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.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":41.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8606","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":41.072,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.371,"y":8.031,"w":2.352,"clr":-1,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.474,"y":8.078,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"ZIP%20Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.687,"y":3.066,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208606%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8606.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":16.149,"y":16.209,"w":48.692999999999984,"clr":-1,"A":"left","R":[{"T":"you%20recharacterized)%20and%20you%20made%20nondeductible%20contributions%20to%20a%20traditional%20IRA%20in%202013%20or%20an%20earlier%20year.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":23.903,"w":29.848000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20value%20of%20all%20your%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20as%20of%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":10.894,"y":26.122,"w":31.125000000000014,"clr":-1,"A":"left","R":[{"T":"2013.%20Do%20not%20include%20rollovers%2C%20qualified%20charitable%20distributions%2C%20a%20one-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":42.12799999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%203.%20This%20is%20your%20total%20basis%20in%20traditional%20IRAs%20for%202013%20and%20earlier%20years","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":14.602,"y":13.459,"w":53.402999999999956,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20took%20distributions%20from%20a%20traditional%2C%20SEP%2C%20or%20SIMPLE%20IRA%20in%202013%20and%20you%20made%20nondeductible%20contributions%20to%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.894,"y":38.153,"w":35.602000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2012%20from%20line%207.%20If%20more%20than%20zero%2C%20also%20include%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":29.903,"w":31.516000000000002,"clr":-1,"A":"left","R":[{"T":"IRAs%20to%20Roth%20IRAs%20in%202013.%20Do%20not%20include%20amounts%20converted%20that%20you%20","S":-1,"TS":[0,11.64,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5354,"AM":1024,"x":6.188,"y":5.821,"w":72.397,"h":0.833,"TU":"Name. If married, file a separate form for each spouse required to file Form 8606. See instructions."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5355,"AM":1024,"x":79.446,"y":5.821,"w":19.554,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":5356,"AM":0,"x":28.462,"y":7.5,"w":60.637,"h":0.833,"TU":"Fill in Your Address Only If You Are Filing This Form by Itself and Not With Your Tax Return. Home address (number and street, or P.O. box if mail is not delivered to your home)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":5357,"AM":0,"x":89.1,"y":7.5,"w":9.9,"h":0.833,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":5358,"AM":0,"x":28.462,"y":9,"w":50.288,"h":0.833,"TU":"City, town or post office, If you have a foreign address, also complete the spaces below (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":5359,"AM":0,"x":81.15,"y":8.82,"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":5360,"AM":0,"x":88.881,"y":8.996,"w":10.302,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":5361,"AM":0,"x":28.96,"y":10.331,"w":23.515,"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":5362,"AM":0,"x":54.45,"y":10.379,"w":25.987,"h":0.871,"TU":"Foreign province or state or county."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":5363,"AM":0,"x":80.438,"y":10.437,"w":18.563,"h":0.833,"TU":"Foreign postal code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYBASIS","EN":0},"TI":5364,"AM":0,"x":84.15,"y":18,"w":11.137,"h":0.833,"TU":"Line 1. Enter your nondeductible contributions to traditional I RAs for 2013, including those made for 2013 from January 1, 2014, through April 15, 2014 (see instructions). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYBASIS","EN":0},"TI":5365,"AM":0,"x":84.15,"y":18.75,"w":11.137,"h":0.833,"TU":"Line 2. Enter your total basis in traditional I R As (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BASIS","EN":0},"TI":5366,"AM":1024,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 3. Add lines 1 and 2. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LATECONT","EN":0},"TI":5367,"AM":0,"x":84.15,"y":22.5,"w":11.137,"h":0.833,"TU":"Line 4. Enter those contributions included on line 1 that were made from January 1, 2014, through April 15, 2014. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETBASIS","EN":0},"TI":5368,"AM":1024,"x":84.15,"y":23.25,"w":11.137,"h":0.833,"TU":"Line 5. Subtract line 4 from line 3. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"YEVALUE","EN":0},"TI":5369,"AM":0,"x":65.588,"y":24.75,"w":11.137,"h":0.833,"TU":"Line 6. Enter the value of all your traditional, SEP, and SIMPLE IRAs as of December 31, 2013, plus any outstanding rollovers. (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISNOTCV","EN":0},"TI":5370,"AM":0,"x":65.588,"y":28.5,"w":11.137,"h":0.833,"TU":"Line 7. Enter your distributions from traditional, SEP, and SIMPLE IRAs in 2013. Do not include rollovers, qualified charitable distributions, a one-time distribution to fund an HSA, conversions to a Roth IRA, certain returned contributions, or recharacterizations of traditional IRA contributions (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISCV","EN":0},"TI":5371,"AM":0,"x":65.588,"y":30.75,"w":11.137,"h":0.833,"TU":"Line 8. Enter the net amount you converted from traditional, SEP, and SIMPLE IRAs to Roth I R As in 2013. Do not include amounts converted that you later recharacterized (see instructions). Also enter this amount on line 16. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDIS","EN":0},"TI":5372,"AM":1024,"x":47.025,"y":31.5,"w":11.137,"h":0.833,"TU":"Line 9. Add lines 6, 7, and 8. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"RATIO","EN":0},"TI":5373,"AM":1024,"x":69.749,"y":33,"w":5.892,"h":0.833,"TU":"Line 10. Divide line 5 by line 9. Enter the result as a decimal rounded to at least 3 places. If the result is 1.000 or more, enter “1.000”. Enter number before the decimal."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CNONTAX","EN":0},"TI":5374,"AM":1024,"x":65.588,"y":34.5,"w":11.137,"h":0.833,"TU":"Line 11. Multiply line 8 by line 10. This is the nontaxable portion of the amount you converted to Roth I R As. Also enter this amount on line 17. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NCNONTAX","EN":0},"TI":5375,"AM":1024,"x":65.588,"y":36,"w":11.137,"h":0.833,"TU":"Line 12. Multiply line 7 by line 10. This is the nontaxable portion of your distributions that you did not convert to a Roth I R A. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDNONTAX","EN":0},"TI":5376,"AM":1024,"x":84.15,"y":36.75,"w":11.137,"h":0.833,"TU":"Line 13. Add lines 11 and 12. This is the nontaxable portion of all your distributions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NEWBASIS","EN":0},"TI":5377,"AM":1024,"x":84.15,"y":37.5,"w":11.137,"h":0.833,"TU":"Line 14. Subtract line 13 from line 3. This is your total basis in traditional IRAs for 2013 and earlier years. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDIST","EN":0},"TI":5378,"AM":1024,"x":84.15,"y":39,"w":11.137,"h":0.833,"TU":"Line 15. Taxable amount. Subtract line 12 from line 7. If more than zero, also include this amount on Form 1040, line 15b; Form 1040 A, line 11b; or Form 1040N R, line 16b. Dollars."}],"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.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":7.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":12.334,"y":10.501,"w":0.75,"l":86.711},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.895},{"oc":"#221f1f","x":80.397,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":17.411},{"oc":"#221f1f","x":23.472,"y":21.751,"w":1.125,"l":75.574},{"oc":"#221f1f","x":25.947,"y":24.001,"w":0.75,"l":47.111},{"oc":"#221f1f","x":75.447,"y":24.001,"w":0.75,"l":23.598},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.5,"l":9.986},{"oc":"#221f1f","x":16.047,"y":24.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":16.047,"y":26.251,"w":0.75,"l":24.836},{"oc":"#221f1f","x":40.797,"y":24.751,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.797,"y":26.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":66.784,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.784,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.922,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":77.922,"y":26.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.846,"y":25.432,"w":0.75,"l":1.375},{"oc":"#221f1f","x":82.846,"y":24.932,"w":0.75,"l":1.375},{"oc":"#221f1f","x":86.584,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":16.047,"y":27.001,"w":0.75,"l":61.961},{"oc":"#221f1f","x":16.047,"y":27.751,"w":1.5,"l":61.961},{"oc":"#221f1f","x":77.922,"y":27.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":27.751,"w":1.5,"l":21.123},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":84.152,"y":5.235,"w":0.75,"l":2.282},{"oc":"#221f1f","x":80.44,"y":5.235,"w":0.75,"l":2.282},{"oc":"#221f1f","x":95.29,"y":5.235,"w":0.75,"l":1.532},{"oc":"#221f1f","x":95.29,"y":6.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":7.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":7.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":8.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":8.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":16.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.515,"y":21.728,"w":0.75,"l":3.039},{"oc":"#221f1f","x":16.09,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":40.84,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.221,"y":24.932,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.846,"y":24.932,"w":0.75,"l":0.5},{"oc":"#221f1f","x":86.627,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":16.09,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":16.09,"y":26.986,"w":0.75,"l":0.797},{"oc":"#221f1f","x":77.965,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":26.986,"w":0.75,"l":0.797}],"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":"#221f1f","x":6.19,"y":10.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%208606%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]}]},{"x":6.584,"y":2.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":2.822,"w":33.73,"clr":-1,"A":"left","R":[{"T":"2013%20Conversions%20From%20Traditional%2C%20SEP%2C%20or%20SIMPLE%20IRAs%20to%20Roth%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":3.6529999999999996,"w":54.23099999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20converted%20part%20or%20all%20of%20your%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20to%20a%20Roth%20IRA%20in%202013%20(excluding%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.591,"y":4.34,"w":14.685000000000006,"clr":-1,"A":"left","R":[{"T":"any%20portion%20you%20recharacterized).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.684,"y":5.215,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.215,"w":40.45699999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20I%2C%20enter%20the%20amount%20from%20line%208.%20Otherwise%2C%20enter%20the%20net%20amount%20you%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":10.888,"y":6.59,"w":44.91299999999996,"clr":-1,"A":"left","R":[{"T":"you%20later%20recharacterized%20back%20to%20traditional%2C%20SEP%2C%20or%20SIMPLE%20IRAs%20in%202013%20or%202014%20(see%20instructions)%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":81.186,"y":6.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":7.4030000000000005,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.4030000000000005,"w":43.345999999999975,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Part%20I%2C%20enter%20the%20amount%20from%20line%2011.%20Otherwise%2C%20enter%20your%20basis%20in%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":8.09,"w":12.169000000000004,"clr":-1,"A":"left","R":[{"T":"on%20line%2016%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.694,"y":8.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":8.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.903,"w":8.169,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.013,"y":8.903,"w":35.27300000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2017%20from%20line%2016.%20Also%20include%20this%20amount%20on%20Form%201040%2C%20line%2015b%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":9.59,"w":21.620000000000008,"clr":-1,"A":"left","R":[{"T":"Form%201040A%2C%20line%2011b%3B%20or%20Form%201040NR%2C%20line%2016b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.122,"y":9.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":9.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":10.322,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":10.322,"w":14.056000000000001,"clr":-1,"A":"left","R":[{"T":"Distributions%20From%20Roth%20IRAs","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":11.153,"w":51.17999999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20took%20a%20distribution%20from%20a%20Roth%20IRA%20in%202013.%20For%20this%20purpose%2C%20a%20distribution%20does%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.594,"y":11.84,"w":53.33999999999995,"clr":-1,"A":"left","R":[{"T":"include%20a%20rollover%2C%20qualified%20charitable%20distributions%2C%20a%20one-time%20distribution%20%20to%20fund%20an%20HSA%2C%20recharacterization%2C%20or%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.593,"y":12.528,"w":18.428000000000004,"clr":-1,"A":"left","R":[{"T":"of%20certain%20contributions%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.685,"y":13.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.88,"y":13.403,"w":44.084,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20nonqualified%20distributions%20from%20Roth%20IRAs%20in%202013%2C%20including%20any%20qualified%20first-time%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":14.09,"w":18.652000000000008,"clr":-1,"A":"left","R":[{"T":"homebuyer%20distributions%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.993,"y":14.09,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":14.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":14.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.186,"y":14.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":36.47199999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2020%20from%20line%2019.%20If%20zero%20or%20less%2C%20enter%20-0-%20and%20skip%20lines%2022%20through%2025","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":65.751,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":67.814,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":69.878,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":71.939,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":74.002,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":76.066,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":78.129,"y":15.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":81.186,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":26.800000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20basis%20in%20Roth%20IRA%20contributions%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":16.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.153,"w":43.37999999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2022%20from%20line%2021.%20If%20zero%20or%20less%2C%20enter%20-0-%20and%20skip%20lines%2024%20and%2025.%20If%20more%20than%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":17.84,"w":25.413000000000004,"clr":-1,"A":"left","R":[{"T":"you%20may%20be%20subject%20to%20an%20additional%20tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.322,"y":17.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":18.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.653,"w":40.30099999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20basis%20in%20conversions%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20and%20rollovers%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":19.34,"w":25.374000000000002,"clr":-1,"A":"left","R":[{"T":"qualified%20retirement%20plans%20to%20a%20Roth%20IRA%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.32,"y":19.34,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.153,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.153,"w":7.891,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.036,"y":20.153,"w":33.824,"clr":-1,"A":"left","R":[{"T":"%20Subtract%20line%2024%20from%20line%2023.%20If%20more%20than%20zero%2C%20also%20include%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":20.84,"w":31.088000000000008,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2015b%3B%20Form%201040A%2C%20line%2011b%3B%20or%20Form%201040NR%2C%20line%2016b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.571,"y":20.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":21.614,"w":10.503000000000002,"clr":-1,"A":"left","R":[{"T":"Sign%20Here%20Only%20If%20You%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":22.289,"w":10.001999999999999,"clr":-1,"A":"left","R":[{"T":"Are%20Filing%20This%20Form%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":22.964,"w":10.501000000000001,"clr":-1,"A":"left","R":[{"T":"by%20Itself%20and%20Not%20With%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":23.639,"w":7.779,"clr":-1,"A":"left","R":[{"T":"Your%20Tax%20Return","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.69,"y":22.501,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,29.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":25.74,"y":23.72,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.654,"y":22.501,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,29.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":75.24,"y":23.72,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":24.823,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,13.35,1,0]}]},{"oc":"#221f1f","x":5.94,"y":25.648,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":-1,"TS":[0,13.35,1,0]}]},{"oc":"#221f1f","x":5.94,"y":26.473,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":-1,"TS":[0,13.35,1,0]}]},{"oc":"#221f1f","x":16.527,"y":24.47,"w":12.502000000000004,"clr":-1,"A":"left","R":[{"T":"Print%2FType%20preparer%E2%80%99s%20%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.277,"y":24.546,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":67.265,"y":24.501,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.402,"y":24.663,"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.402,"y":25.188,"w":6.631,"clr":-1,"A":"left","R":[{"T":"self-employed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.065,"y":24.51,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.527,"y":26.001,"w":7.189000000000002,"clr":-1,"A":"left","R":[{"T":"Firm's%20name%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.176,"y":25.939,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":16.527,"y":26.751,"w":6.908999999999999,"clr":-1,"A":"left","R":[{"T":"Firm's%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.078,"y":26.689,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":78.402,"y":26.032,"w":4.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Firm's%20EIN%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.546,"y":25.97,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":78.402,"y":26.782,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":27.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":27.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8606","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":27.572,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.891,"y":5.903,"w":43.47399999999997,"clr":-1,"A":"left","R":[{"T":"converted%20from%20traditional%2C%20SEP%2C%20and%20SIMPLE%20IRAs%20to%20Roth%20IRAs%20in%202013.%20Do%20not%20include%20amounts%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":41.28999999999997,"clr":-1,"A":"left","R":[{"T":"Qualified%20first-time%20homebuyer%20expenses%20(see%20instructions).%20Do%20not%20enter%20more%20than%20%2410%2C000..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.944,"y":21.907,"w":66.59999999999995,"clr":-1,"A":"left","R":[{"T":"belief%2C%20it%20is%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.51,0,0]}]},{"oc":"#221f1f","x":23.952,"y":21.438,"w":64.47999999999995,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20form%2C%20including%20accompanying%20attachments%2C%20and%20to%20the%20best%20of%20my%20knowledge%20and%20","S":-1,"TS":[0,9.51,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":5379,"AM":1024,"x":18.331,"y":2.013,"w":47.68,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":5380,"AM":1024,"x":70.249,"y":2.192,"w":20.86,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ROTHCONV","EN":0},"TI":5381,"AM":0,"x":84.15,"y":6.75,"w":11.137,"h":0.833,"TU":"Line 16. If you completed Part I, enter the amount from line 8. Otherwise, enter the net amount you converted from traditional, SEP, and SIMPLE IRAs to Roth IRAs in 2013. Do not include amounts you later recharacterized back to traditional, SEP, or SIMPLE IRAs in 2013 or 2014 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TCVBASIS","EN":0},"TI":5382,"AM":0,"x":84.15,"y":8.25,"w":11.137,"h":0.833,"TU":"Line 17. If you completed Part 1, enter the amount from line 11. Otherwise, enter your basis in the amount on line 16 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCONV","EN":0},"TI":5383,"AM":1024,"x":84.15,"y":9.75,"w":11.137,"h":0.833,"TU":"Line 17. If you completed Part 1, enter the amount from line 11. Otherwise, enter your basis in the amount on line 16 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ROTHDIST","EN":0},"TI":5384,"AM":0,"x":84.15,"y":14.25,"w":11.137,"h":0.833,"TU":"Line 19. Enter your total nonqualified distributions from Roth I R As in 2013, including any qualified first-time homebuyer distributions (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOMEBUY","EN":0},"TI":5385,"AM":0,"x":84.15,"y":15,"w":11.137,"h":0.833,"TU":"Line 20. Qualified first-time homebuyer expenses (see instructions). Do not enter more than $10,000. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTQDIST","EN":0},"TI":5386,"AM":1024,"x":84.15,"y":15.75,"w":11.137,"h":0.833,"TU":"Line 21. Subtract line 20 from line 19. If zero or less, enter zero, and skip lines 22 through 25. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONBASIS","EN":0},"TI":5387,"AM":0,"x":84.15,"y":16.5,"w":11.137,"h":0.833,"TU":"Line 22. Enter your basis in Roth IRA contributions (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONBAL","EN":0},"TI":5388,"AM":1024,"x":84.15,"y":18,"w":11.137,"h":0.833,"TU":"Line 23. Subtract line 22 from line 21. If zero or less, enter zero, and skip lines 24 and 25. If more than zero, you may be subject to an additional tax (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CVBASIS","EN":0},"TI":5389,"AM":0,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 24. Enter your basis in conversions from traditional, SEP, and SIMPLE IRAs and rollovers from qualified retirement plans to a Roth IRA (see instructions). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EARNINGS","EN":0},"TI":5390,"AM":1024,"x":84.15,"y":21,"w":11.137,"h":0.833,"TU":"Line 25. Taxable amount. Subtract line 24 from line 23. If more than zero, also include this amount on Form 1040, line 15b; Form 1040A, line 11b; or Form 1040N R, line 16b. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":5391,"AM":1024,"x":41.166,"y":25.409,"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":5392,"AM":1024,"x":27.947,"y":26.25,"w":50.016,"h":0.833,"TU":"Firm's name.","V":"Self-prepared"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8609A.content.txt b/test/data/fd/form/F8609A.content.txt new file mode 100755 index 00000000..8e433a11 --- /dev/null +++ b/test/data/fd/form/F8609A.content.txt @@ -0,0 +1,205 @@ +Form + +OMB No. 1545-0988 + +Annual Statement for Low-Income Housing Credit + + +File with owner’s federal income tax return. + +(Rev. December 2008) + +Attachment + +Department of the Treasury +Internal Revenue Service + +For Paperwork Reduction Act Notice, see separate instructions. + +Name(s) shown on return + +Identifying number + +1 + +1 + +Eligible basis of building + +. + +2 + +2 + +Low-income portion (smaller of unit fraction or floor space fraction) (if first year of the credit +period, see instructions) + +3 + +3 + +Qualified basis of low-income building. Multiply line 1 by line 2 (see instructions for exceptions) + +4 + +Part-year adjustment for disposition or acquisition during the tax year + +4 + +. + +5 + +5 + +Credit percentage + +6 + +Multiply line 3 or line 4 by the percentage on line 5 + +6 + +7 + +7 + +Additions to qualified basis, if any + +8 + +8 + +9 + +. + +9 + +10 + +10 + +Multiply line 7 or line 8 by the percentage on line 9 + +11 + +11 + +Section 42(f)(3)(B) modification + +12 + +12 + +Add lines 10 and 11 + +13 + +13 + +Credit for building before line 14 reduction. Subtract line 12 from line 6 + +14 + +14 + +Disallowed credit due to federal grants (see instructions) + +15 + +15 + +Credit allowed for building for tax year. Subtract line 14 from line 13, but do not enter more than +the amount shown on Form 8609, Part I, line 1b + +16 + +Taxpayer’s proportionate share of credit for the year (see instructions) + +16 + +17 + +18 + +Adjustments for deferred first-year credit (see instructions) + +17 + +Taxpayer’s credit. Combine lines 16 and 17. Enter here and on Form 8586 (see instructions) + +Sequence No. +36 + +Credit percentage. Enter one-third of the percentage on line 5 + +Cat No. 38841T + +18 + +Form 8609-A (Rev. 12-2008) + +Part-year adjustment for disposition or acquisition during the tax year + +B + +A + +C + +Building identification number (BIN) + + +This Form 8609-A is for (check the box) + +a newly constructed or existing building +section 42(e) rehabilitation expenditures + +Do you have in your records the original Form 8609 (or a copy thereof) signed and issued by the housing credit +agency for the building in +A +? + +If “No,” see the instructions and stop here—do not go to Part II. + +Did the building in +A +qualify as a part of a qualified low-income housing project and meet the requirements of +section 42 as of the end of the tax year for which this form is being filed? + +If “No,” see the instructions and stop here—do not go to Part II. + +Was there a decrease in the qualified basis of the building in +A +for the tax year for which this form is being +filed? + +If “Yes,” see the instructions. If “No,” and the entire credit has been claimed in prior tax years, stop here—do +not go to Part II. + +D + +E + +Yes + +No + +Part I + +Part II + +Compliance Information + +Computation of Credit + +8609-A + + +See separate instructions. + +(Enter as a decimal, for example .1234) +(Enter as a decimal, for example .1234) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8609A.fields.json b/test/data/fd/form/F8609A.fields.json new file mode 100755 index 00000000..988a52dd --- /dev/null +++ b/test/data/fd/form/F8609A.fields.json @@ -0,0 +1 @@ +[{"id":"A108RB","type":"radio","calc":false,"value":"NEWCON"},{"id":"A108RB","type":"radio","calc":false,"value":"REHAB"},{"id":"LINERB","type":"radio","calc":false,"value":"BOXDY"},{"id":"LINERB","type":"radio","calc":false,"value":"BOXDN"},{"id":"A136RB","type":"radio","calc":false,"value":"BOXEY"},{"id":"A136RB","type":"radio","calc":false,"value":"BOXEN"},{"id":"A150RB","type":"radio","calc":false,"value":"BOXFY"},{"id":"A150RB","type":"radio","calc":false,"value":"BOXFN"},{"id":"BDESC","type":"alpha","calc":true,"value":""},{"id":"BONAME","type":"alpha","calc":true,"value":""},{"id":"BOEIN","type":"ssn","calc":true,"value":""},{"id":"BIN","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"mask","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"mask","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"percent","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8609A.json b/test/data/fd/form/F8609A.json new file mode 100755 index 00000000..c1a30ed4 --- /dev/null +++ b/test/data/fd/form/F8609A.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8609-A (Rev. December 2008)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":83.83,"y":3.82,"w":0.75,"l":14.912},{"oc":"#221f1f","x":7.992,"y":5.326,"w":1.5,"l":90.75},{"oc":"#221f1f","x":7.992,"y":7.585,"w":0.75,"l":90.75},{"dsh":1,"oc":"#221f1f","x":30.68,"y":19.635,"w":1.5,"l":45.547},{"oc":"#221f1f","x":80.103,"y":19.635,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":30.68,"y":21.142,"w":1.5,"l":45.547},{"oc":"#221f1f","x":80.103,"y":21.142,"w":0.75,"l":18.64},{"oc":"#221f1f","x":80.103,"y":21.895,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":61.617,"y":22.648,"w":1.5,"l":14.609},{"oc":"#221f1f","x":80.103,"y":22.648,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":26.555,"y":23.401,"w":1.5,"l":49.672},{"oc":"#221f1f","x":80.103,"y":23.401,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":49.242,"y":24.154,"w":1.5,"l":26.984},{"oc":"#221f1f","x":80.103,"y":24.154,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":36.867,"y":24.907,"w":1.5,"l":39.36},{"oc":"#221f1f","x":80.103,"y":24.907,"w":0.75,"l":18.64},{"oc":"#221f1f","x":80.103,"y":25.66,"w":0.75,"l":18.64},{"oc":"#221f1f","x":80.103,"y":26.414,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":49.242,"y":27.167,"w":1.5,"l":26.984},{"oc":"#221f1f","x":80.103,"y":27.167,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":34.805,"y":27.92,"w":1.5,"l":41.422},{"oc":"#221f1f","x":80.103,"y":27.92,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":26.555,"y":28.673,"w":1.5,"l":49.672},{"oc":"#221f1f","x":80.103,"y":28.673,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":63.68,"y":29.426,"w":1.5,"l":12.547},{"oc":"#221f1f","x":80.103,"y":29.426,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":53.367,"y":30.179,"w":1.5,"l":22.859},{"oc":"#221f1f","x":80.103,"y":30.179,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":47.18,"y":31.685,"w":1.5,"l":29.047},{"oc":"#221f1f","x":80.103,"y":31.685,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":61.617,"y":32.439,"w":1.5,"l":14.609},{"oc":"#221f1f","x":80.103,"y":32.439,"w":0.75,"l":18.64},{"oc":"#221f1f","x":80.103,"y":33.192,"w":0.75,"l":18.64},{"dsh":1,"oc":"#221f1f","x":53.367,"y":33.13,"w":1.5,"l":22.859},{"oc":"#221f1f","x":7.992,"y":33.945,"w":1.5,"l":90.75},{"dsh":1,"oc":"#221f1f","x":57.492,"y":26.414,"w":1.5,"l":18.734},{"dsh":1,"oc":"#221f1f","x":61.617,"y":25.66,"w":1.5,"l":14.609},{"oc":"#221f1f","x":7.992,"y":18.882,"w":0.75,"l":90.75},{"dsh":1,"oc":"#221f1f","x":32.742,"y":12.104,"w":1.5,"l":53.797},{"dsh":1,"oc":"#221f1f","x":63.68,"y":14.364,"w":1.5,"l":22.859},{"dsh":1,"oc":"#221f1f","x":16.242,"y":16.623,"w":1.5,"l":70.297},{"oc":"#221f1f","x":7.992,"y":18.129,"w":1.215,"l":90.75},{"oc":"#221f1f","x":91.25,"y":8.339,"w":0.75,"l":7.456},{"oc":"#221f1f","x":91.25,"y":12.104,"w":0.75,"l":7.456},{"oc":"#221f1f","x":91.25,"y":16.623,"w":0.75,"l":7.456},{"oc":"#221f1f","x":91.25,"y":14.364,"w":0.75,"l":7.456},{"oc":"#221f1f","x":7.992,"y":6.832,"w":1.215,"l":90.75},{"dsh":1,"oc":"#221f1f","x":39.059,"y":9.092,"w":0.75,"l":50.949},{"x":0.086,"y":49.469,"w":1.5,"l":1.5},{"x":0.086,"y":49.005,"w":1.5,"l":1.5},{"x":0.086,"y":49.469,"w":1.5,"l":2.617},{"x":0.086,"y":48.801,"w":1.5,"l":2.617}],"VLines":[{"oc":"#221f1f","x":24.147,"y":2.326,"w":1.5,"l":3},{"oc":"#221f1f","x":83.794,"y":2.326,"w":1.5,"l":3},{"oc":"#221f1f","x":60.184,"y":5.326,"w":0.75,"l":1.506},{"oc":"#221f1f","x":94.978,"y":18.883,"w":0.75,"l":0.753},{"oc":"#221f1f","x":83.794,"y":18.883,"w":0.75,"l":15.062},{"oc":"#221f1f","x":80.066,"y":18.883,"w":0.75,"l":15.062},{"oc":"#221f1f","x":94.978,"y":21.142,"w":0.75,"l":1.506},{"oc":"#221f1f","x":94.978,"y":24.155,"w":0.75,"l":1.506},{"oc":"#221f1f","x":94.978,"y":26.414,"w":0.75,"l":7.531},{"oc":"#221f1f","x":94.978,"y":7.585,"w":0.75,"l":10.544},{"oc":"#221f1f","x":91.25,"y":7.585,"w":0.75,"l":10.544},{"x":1.586,"y":49.005,"w":1.5,"l":0.464},{"x":0.086,"y":49.005,"w":1.5,"l":0.464},{"x":2.703,"y":48.801,"w":1.5,"l":0.667},{"x":0.086,"y":48.801,"w":1.5,"l":0.667}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#babdbf","x":91.25,"y":16.623,"w":7.456,"h":1.506,"clr":-1},{"oc":"#babdbf","x":91.25,"y":14.364,"w":7.456,"h":1.506,"clr":-1},{"oc":"#babdbf","x":91.25,"y":12.104,"w":7.456,"h":1.506,"clr":-1},{"oc":"#babdbf","x":91.25,"y":8.338,"w":7.456,"h":3.013,"clr":-1},{"oc":"#221f1f","x":7.992,"y":6.832,"w":5.758,"h":0.753,"clr":-1},{"oc":"#221f1f","x":7.992,"y":18.129,"w":6.076,"h":0.749,"clr":-1},{"x":0.344,"y":49.099,"w":0.985,"h":0.276,"clr":0},{"x":0,"y":48.77,"w":2.789,"h":0.73,"clr":1},{"oc":"#7f7f7f","x":0.172,"y":48.833,"w":2.445,"h":0.605,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.833,"w":2.445,"h":0.605,"clr":-1}],"Texts":[{"oc":"#221f1f","x":7.742,"y":2.548,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.564,"y":2.224,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0988","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.331,"y":2.701,"w":22.08,"clr":-1,"A":"left","R":[{"T":"Annual%20Statement%20for%20Low-Income%20Housing%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":41.043,"y":3.383,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,9,0,0]}]},{"oc":"#221f1f","x":42.762,"y":3.4770000000000003,"w":20.624000000000002,"clr":-1,"A":"left","R":[{"T":"File%20with%20owner%E2%80%99s%20federal%20income%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.742,"y":3.338,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202008)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.598,"y":3.6849999999999996,"w":5.1690000000000005,"clr":-1,"A":"left","R":[{"T":"Attachment","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.742,"y":3.9509999999999996,"w":12.262000000000002,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":7.742,"y":4.389,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":7.742,"y":33.719,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.742,"y":5.079,"w":12,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":61.214,"y":5.11,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":81.291,"y":18.76,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.751,"y":18.886,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":18.885,"w":11.075,"clr":-1,"A":"left","R":[{"T":"Eligible%20basis%20of%20building%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.82,"y":20.271,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.291,"y":20.262,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.751,"y":19.702,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.471,"y":19.704,"w":40.64899999999998,"clr":-1,"A":"left","R":[{"T":"Low-income%20portion%20(smaller%20of%20unit%20fraction%20or%20floor%20space%20fraction)%20(if%20first%20year%20of%20the%20credit","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.471,"y":20.392,"w":10.983000000000002,"clr":-1,"A":"left","R":[{"T":"period%2C%20see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.272,"y":21.01,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.751,"y":21.146,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":21.145,"w":42.24699999999998,"clr":-1,"A":"left","R":[{"T":"Qualified%20basis%20of%20low-income%20building.%20Multiply%20line%201%20by%20line%202%20(see%20instructions%20for%20exceptions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.312,"y":21.768,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":21.898,"w":31.226999999999997,"clr":-1,"A":"left","R":[{"T":"Part-year%20adjustment%20for%20disposition%20or%20acquisition%20during%20the%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.751,"y":21.902,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":90.82,"y":22.546,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.291,"y":22.516,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.767,"y":22.646,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.471,"y":22.651,"w":8.334000000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20percentage%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.291,"y":23.275,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":23.404,"w":22.71000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%203%20or%20line%204%20by%20the%20percentage%20on%20line%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.767,"y":23.409,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.293,"y":24.033,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.767,"y":24.152,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":24.157,"w":15.299000000000001,"clr":-1,"A":"left","R":[{"T":"Additions%20to%20qualified%20basis%2C%20if%20any%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.291,"y":24.781,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.767,"y":24.902,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.283,"y":25.539,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":90.82,"y":25.552,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.767,"y":25.659,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.837,"y":26.298,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.9,"y":26.409,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":26.417,"w":22.71000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20or%20line%208%20by%20the%20percentage%20on%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.837,"y":27.045,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.9,"y":27.171,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":27.17,"w":13.927000000000001,"clr":-1,"A":"left","R":[{"T":"Section%2042(f)(3)(B)%20modification%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.837,"y":27.799,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.9,"y":27.934,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":27.923,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%20and%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.837,"y":28.552,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.9,"y":28.69,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":28.676,"w":31.72900000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20building%20before%20line%2014%20reduction.%20Subtract%20line%2012%20from%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.837,"y":29.305,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.9,"y":29.434,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":29.429,"w":25.35300000000001,"clr":-1,"A":"left","R":[{"T":"Disallowed%20credit%20due%20to%20federal%20grants%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.837,"y":30.811,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.9,"y":30.249,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":30.248,"w":42.74899999999996,"clr":-1,"A":"left","R":[{"T":"Credit%20allowed%20for%20building%20for%20tax%20year.%20Subtract%20line%2014%20from%20line%2013%2C%20but%20do%20not%20enter%20more%20than","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":30.935,"w":21.545,"clr":-1,"A":"left","R":[{"T":"the%20amount%20shown%20on%20Form%208609%2C%20Part%20I%2C%20line%201b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.9,"y":31.689,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":31.689,"w":31.409000000000002,"clr":-1,"A":"left","R":[{"T":"Taxpayer%E2%80%99s%20proportionate%20share%20of%20credit%20for%20the%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.837,"y":31.564,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.837,"y":32.317,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.837,"y":33.07,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":32.38,"w":26.280000000000005,"clr":-1,"A":"left","R":[{"T":"Adjustments%20for%20deferred%20first-year%20credit%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.881,"y":32.38,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":33.02,"w":41.14099999999998,"clr":-1,"A":"left","R":[{"T":"Taxpayer%E2%80%99s%20credit.%20Combine%20lines%2016%20and%2017.%20Enter%20here%20and%20on%20Form%208586%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.598,"y":4.185,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.726,"y":4.185,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":11.47,"y":25.664,"w":27.82,"clr":-1,"A":"left","R":[{"T":"Credit%20percentage.%20Enter%20one-third%20of%20the%20percentage%20on%20line%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.707,"y":33.719,"w":7.058,"clr":-1,"A":"left","R":[{"T":"Cat%20No.%2038841T","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.881,"y":33.02,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.539,"y":33.719,"w":13.078000000000007,"clr":-1,"A":"left","R":[{"T":"Form%208609-A%20(Rev.%2012-2008)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":11.47,"y":24.91,"w":31.226999999999997,"clr":-1,"A":"left","R":[{"T":"Part-year%20adjustment%20for%20disposition%20or%20acquisition%20during%20the%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.751,"y":9.095,"w":0.704,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.751,"y":8.284,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.751,"y":10.601,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.47,"y":8.342,"w":15.780000000000005,"clr":-1,"A":"left","R":[{"T":"Building%20identification%20number%20(BIN)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.851,"y":8.248,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,9,0,0]}]},{"oc":"#221f1f","x":11.47,"y":9.095,"w":17.615000000000006,"clr":-1,"A":"left","R":[{"T":"This%20Form%208609-A%20is%20for%20(check%20the%20box)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.074,"y":9.001,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,9,0,0]}]},{"oc":"#221f1f","x":42.567,"y":9.095,"w":18.020000000000007,"clr":-1,"A":"left","R":[{"T":"a%20newly%20constructed%20or%20existing%20building%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":9.72,"w":17.779999999999998,"clr":-1,"A":"left","R":[{"T":"section%2042(e)%20rehabilitation%20expenditures","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":10.667,"w":49.41799999999996,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20in%20your%20records%20the%20original%20Form%208609%20(or%20a%20copy%20thereof)%20signed%20and%20issued%20by%20the%20housing%20credit","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":11.354,"w":11.557999999999998,"clr":-1,"A":"left","R":[{"T":"agency%20for%20the%20building%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.285,"y":11.354,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.344,"y":11.354,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":12.107,"w":28.394,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CNo%2C%E2%80%9D%20see%20the%20instructions%20and%20stop%20here%E2%80%94do%20not%20go%20to%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":12.926,"w":8.355000000000002,"clr":-1,"A":"left","R":[{"T":"Did%20the%20building%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.593,"y":12.926,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.131,"y":12.926,"w":39.30399999999999,"clr":-1,"A":"left","R":[{"T":"qualify%20as%20a%20part%20of%20a%20qualified%20low-income%20housing%20project%20and%20meet%20the%20requirements%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":13.613,"w":32.746,"clr":-1,"A":"left","R":[{"T":"section%2042%20as%20of%20the%20end%20of%20the%20tax%20year%20for%20which%20this%20form%20is%20being%20filed%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":14.367,"w":28.394,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CNo%2C%E2%80%9D%20see%20the%20instructions%20and%20stop%20here%E2%80%94do%20not%20go%20to%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":15.185,"w":27.135000000000012,"clr":-1,"A":"left","R":[{"T":"Was%20there%20a%20decrease%20in%20the%20qualified%20basis%20of%20the%20building%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.144,"y":15.185,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.775,"y":15.185,"w":19.075000000000006,"clr":-1,"A":"left","R":[{"T":"for%20the%20tax%20year%20for%20which%20this%20form%20is%20being","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":15.873000000000001,"w":2.704,"clr":-1,"A":"left","R":[{"T":"filed%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":16.53,"w":48.80499999999996,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20see%20the%20instructions.%20If%20%E2%80%9CNo%2C%E2%80%9D%20and%20the%20entire%20credit%20has%20been%20claimed%20in%20prior%20tax%20years%2C%20stop%20here%E2%80%94do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.47,"y":17.155,"w":7.2230000000000025,"clr":-1,"A":"left","R":[{"T":"not%20go%20to%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.751,"y":12.952,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.751,"y":15.095,"w":0.648,"clr":-1,"A":"left","R":[{"T":"E","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":91.645,"y":7.417999999999999,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.722,"y":7.433,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":8.327,"y":6.684,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":10,"TS":[0,14,1,0]}]},{"x":8.227,"y":17.981,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":16.441,"y":6.675,"w":11.493000000000002,"clr":-1,"A":"left","R":[{"T":"Compliance%20Information","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.441,"y":17.95,"w":10.626999999999999,"clr":-1,"A":"left","R":[{"T":"Computation%20of%20Credit","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.147,"y":2.645,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"8609-A","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":45.393,"y":4.122,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,9,0,0]}]},{"oc":"#221f1f","x":47.112,"y":4.215,"w":12.463000000000001,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":52.473,"y":20.359,"w":157.563,"clr":0,"A":"left","R":[{"T":"(Enter%20as%20a%20decimal%2C%20for%20example%20.1234)","S":3,"TS":[0,12,0,0]}]},{"x":51.992,"y":22.441,"w":157.563,"clr":0,"A":"left","R":[{"T":"(Enter%20as%20a%20decimal%2C%20for%20example%20.1234)","S":3,"TS":[0,12,0,0]}]},{"x":52.335,"y":22.249,"w":26.764607,"clr":0,"A":"left","R":[{"T":"0.0000%25","S":-1,"TS":[0,9.780999999999999,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BDESC","EN":0},"TI":5393,"AM":1024,"x":24.295,"y":4.413,"w":14.747,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BONAME","EN":0},"TI":5394,"AM":1024,"x":8.064,"y":6.045,"w":51.996,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"BOEIN","EN":0},"TI":5395,"AM":1024,"x":60.328,"y":6.075,"w":38.288,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BIN","EN":0},"TI":5396,"AM":0,"x":39.023,"y":8.528,"w":51.047,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5405,"AM":0,"x":83.828,"y":18.922,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5406,"AM":0,"x":83.895,"y":20.41,"w":10.993,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5407,"AM":0,"x":83.875,"y":21.192,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5408,"AM":0,"x":83.855,"y":21.947,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5409,"AM":0,"x":83.895,"y":22.669,"w":10.993,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5410,"AM":0,"x":83.905,"y":23.435,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5411,"AM":0,"x":83.885,"y":24.19,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5412,"AM":0,"x":83.8,"y":24.949,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5413,"AM":1024,"x":83.96,"y":25.661,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5414,"AM":0,"x":83.94,"y":26.416,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5415,"AM":0,"x":83.94,"y":27.151,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":5416,"AM":1024,"x":83.92,"y":27.906,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":5417,"AM":1024,"x":83.895,"y":28.686,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":5418,"AM":0,"x":83.84,"y":29.497,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":5419,"AM":0,"x":83.97,"y":30.987,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":5420,"AM":0,"x":83.97,"y":31.722,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":5421,"AM":0,"x":83.95,"y":32.477,"w":10.993,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":5422,"AM":1024,"x":83.95,"y":33.198,"w":10.993,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NEWCON","EN":0},"TI":5397,"AM":0,"x":71.895,"y":9.213,"w":1.672,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REHAB","EN":0},"TI":5398,"AM":0,"x":40.865,"y":9.971,"w":1.822,"h":0.833,"checked":false}],"id":{"Id":"A108RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXDY","EN":0},"TI":5399,"AM":0,"x":91.777,"y":11.264,"w":2.682,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXDN","EN":0},"TI":5400,"AM":0,"x":95.592,"y":11.237,"w":2.571,"h":0.833,"checked":false}],"id":{"Id":"LINERB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXEY","EN":0},"TI":5401,"AM":0,"x":91.269,"y":13.395,"w":3.507,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXEN","EN":0},"TI":5402,"AM":0,"x":95.352,"y":13.476,"w":2.789,"h":0.833,"checked":false}],"id":{"Id":"A136RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXFY","EN":0},"TI":5403,"AM":0,"x":91.734,"y":15.837,"w":2.606,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXFN","EN":0},"TI":5404,"AM":0,"x":95.498,"y":15.838,"w":2.945,"h":0.833,"checked":false}],"id":{"Id":"A150RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8611.content.txt b/test/data/fd/form/F8611.content.txt new file mode 100755 index 00000000..d99cedb7 --- /dev/null +++ b/test/data/fd/form/F8611.content.txt @@ -0,0 +1,157 @@ +Form + +8611 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Recapture of Low-Income Housing Credit +a + +Attach to your return. +Note: +Complete a separate Form 8611 for each building to which recapture applies. +OMB No. 1545-1035 +Attachment +Sequence No. +90 +a + +Information about Form 8611 and its instructions is at +www.irs.gov/form8611 +. +A +Name(s) shown on return +B Identifying number +C +Address of building (as shown on Form 8609) +D +Building identification +number (BIN) +E +Date placed in service (from + +Form 8609) +F +If building is financed in whole or part with tax-exempt bonds, see instructions and furnish: +(1) +Issuer’s name +(2) +Date of issue +(3) +Name of issue +(4) +CUSIP number +Note: +Skip lines 1–7 and go to line 8 if recapture is passed through from a flow-through entity (partnership, S corporation, estate, +or +trust). However, section 42(j)(5) partnerships must complete lines 1 through 7. +1 +Enter total credits reported on Form 8586 in prior years for this building +........ +1 +2 +Credits included on line 1 attributable to additions to qualified basis (see instructions) . . . +2 +3 +Credits subject to recapture. Subtract line 2 from line 1 +.............. +3 +4 +Credit recapture percentage (see instructions) +................. +4 +. +5 +Accelerated portion of credit. Multiply line 3 by line 4 +.............. +5 +6 +Percentage decrease in qualified basis. Express as a decimal amount carried out to at least 3 +places (see instructions) +........................ +6 +. +7 + + + + +Amount of accelerated portion recaptured (see instructions if prior recapture on building). +Multiply line 5 by line 6. Section 42(j)(5) partnerships, go to line 16. All other flow-through +entities (except electing large partnerships), enter the result here and enter each recipient’s +share in the appropriate box of Schedule K-1. Generally, flow-through entities other than +electing large partnerships will stop here. ( +Note: +An estate or trust enters on line 8 + +only its share +of recapture amount attributable to the credit amount reported on its + +Form 8586.) +..... +7 +8 +Enter recapture amount from flow-through entity (see +Note +above) +.......... +8 +9 +Enter the unused portion of the accelerated amount from line 7 (see instructions) +..... +9 +10 +Net recapture. Subtract line 9 from line 7 or line 8. If less than zero, enter -0- +...... +10 +11 +Enter interest on the line 10 recapture amount (see instructions) +........... +11 +12 +Total amount subject to recapture. Add lines 10 and 11 +............. +12 +13 +Unused credits attributable to this building reduced by the accelerated portion included on line 9 +(see instructions) +.......................... +13 +14 + + +Recapture tax. +Subtract line 13 from line 12. If zero or less, enter -0-. Enter the result here + +and +on the appropriate line of your tax return (see instructions). If more than one + +Form 8611 is filed, +add the line 14 amounts from all forms and enter the total on the appropriate + +line of your return. +Electing large partnerships, see instructions +................. +14 +15 Carryforward of the low-income housing credit attributable to this building. +Subtract + +line 12 +from line 13. If zero or less, enter -0- (see instructions) +.............. +15 +Only Section 42(j)(5) partnerships need to complete lines 16 and 17. +16 +Enter interest on the line 7 recapture amount (see instructions) +........... +16 +17 +Total recapture. Add lines 7 and 16 (see instructions) +.............. +17 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 63983Q +Form +8611 + (Rev. 12-2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8611.fields.json b/test/data/fd/form/F8611.fields.json new file mode 100755 index 00000000..6caaf4ce --- /dev/null +++ b/test/data/fd/form/F8611.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ADDR1","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"ADDST","type":"alpha","calc":false,"value":""},{"id":"ADDRZIP","type":"zip","calc":false,"value":""},{"id":"LD","type":"alpha","calc":false,"value":""},{"id":"LE","type":"date","calc":false,"value":""},{"id":"LF1","type":"alpha","calc":false,"value":""},{"id":"LF2","type":"date","calc":false,"value":""},{"id":"LF3","type":"alpha","calc":false,"value":""},{"id":"LF4","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"mask","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"mask","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"UNUSEDCR","type":"number","calc":false,"value":""},{"id":"RECAPTAX","type":"number","calc":true,"value":""},{"id":"LIHCCF","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8611.json b/test/data/fd/form/F8611.json new file mode 100755 index 00000000..9b063610 --- /dev/null +++ b/test/data/fd/form/F8611.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8611 (Rev. December 2013)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.066,"y":3.751,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":73.099},{"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":19.886},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":54.536},{"oc":"#221f1f","x":60.597,"y":9.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":79.159,"y":9.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":12.751,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":12.751,"w":1.125,"l":19.886},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":92.899},{"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.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":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":92.772,"y":20.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":79.159,"y":21.751,"w":0.75,"l":3.798},{"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":82.872,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":92.772,"y":23.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":79.159,"y":23.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":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.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":32.251,"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":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},{"oc":"#221f1f","x":82.872,"y":36.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":41.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":42.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":44.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":44.251,"w":1.125,"l":12.461},{"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":37.211},{"oc":"#221f1f","x":43.272,"y":45.751,"w":1.5,"l":39.686},{"oc":"#221f1f","x":82.872,"y":45.751,"w":1.5,"l":16.173}],"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":1.531},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.531},{"oc":"#221f1f","x":79.202,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":60.64,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":11.235,"w":0.75,"l":1.539},{"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":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":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":17.235,"w":0.75,"l":1.531},{"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":0.781},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":0.781},{"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":82.915,"y":23.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":3.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":23.235,"w":0.75,"l":3.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":95.29,"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":1.539},{"oc":"#221f1f","x":79.202,"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":95.29,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"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":82.915,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":36.728,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.202,"y":36.728,"w":0.75,"l":2.289},{"oc":"#221f1f","x":82.915,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":42.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":42.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":44.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":44.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":79.202,"y":23.251,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":36.751,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.13,"y":2.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8611","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3209999999999997,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)%20","S":2,"TS":[0,10,0,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.313,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":30.353,"y":2.101,"w":18.279999999999998,"clr":-1,"A":"left","R":[{"T":"Recapture%20of%20Low-Income%20Housing%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":44.645,"y":2.717,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.013,"y":2.811,"w":10.485000000000001,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.92,"y":4.296,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":29.199,"y":4.296,"w":36.781,"clr":-1,"A":"left","R":[{"T":"Complete%20a%20separate%20Form%208611%20for%20each%20building%20to%20which%20recapture%20applies.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.313,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1035%20","S":2,"TS":[0,10,0,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.943,"y":4.291,"w":1.112,"clr":-1,"A":"left","R":[{"T":"90","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":26.364,"y":3.452,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.732,"y":3.5460000000000003,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208611%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.172,"y":3.5460000000000003,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8611","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.946,"y":3.5460000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":1.7970000000000002,"clr":-1,"A":"left","R":[{"T":"A%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.102,"y":4.938,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":4.938,"w":10.479000000000001,"clr":-1,"A":"left","R":[{"T":"B%20%20%20Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.376,"w":1.8530000000000002,"clr":-1,"A":"left","R":[{"T":"C%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.169,"y":6.376,"w":20.24500000000001,"clr":-1,"A":"left","R":[{"T":"Address%20of%20building%20(as%20shown%20on%20Form%208609)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.077,"y":6.376,"w":1.5750000000000002,"clr":-1,"A":"left","R":[{"T":"D%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.972,"y":6.376,"w":9.890000000000002,"clr":-1,"A":"left","R":[{"T":"Building%20identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.95,"y":6.876,"w":5.890000000000001,"clr":-1,"A":"left","R":[{"T":"number%20(BIN)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":6.376,"w":1.4820000000000002,"clr":-1,"A":"left","R":[{"T":"E%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.423,"y":6.376,"w":12.483,"clr":-1,"A":"left","R":[{"T":"Date%20placed%20in%20service%20(from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.513,"y":6.876,"w":5.095000000000001,"clr":-1,"A":"left","R":[{"T":"Form%208609)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.69,"w":1.705,"clr":-1,"A":"left","R":[{"T":"F%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.991,"y":8.69,"w":40.45099999999998,"clr":-1,"A":"left","R":[{"T":"If%20building%20is%20financed%20in%20whole%20or%20part%20with%20tax-exempt%20bonds%2C%20see%20instructions%20and%20furnish%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":9.376,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(1)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.99,"y":9.376,"w":6.224,"clr":-1,"A":"left","R":[{"T":"Issuer%E2%80%99s%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":8.688,"w":1.9820000000000002,"clr":-1,"A":"left","R":[{"T":"(2)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.024,"y":8.688,"w":5.834,"clr":-1,"A":"left","R":[{"T":"Date%20of%20issue","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":10.876,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(3)%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.99,"y":10.876,"w":6.390000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20issue","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":10.876,"w":1.9820000000000002,"clr":-1,"A":"left","R":[{"T":"(4)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.024,"y":10.876,"w":6.705,"clr":-1,"A":"left","R":[{"T":"CUSIP%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.539,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.93,"y":12.539,"w":54.675999999999945,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%201%E2%80%937%20and%20go%20to%20line%208%20if%20recapture%20is%20passed%20through%20from%20a%20flow-through%20entity%20(partnership%2C%20S%20corporation%2C%20estate%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.358,"y":12.539,"w":1.185,"clr":-1,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":13.214,"w":34.448,"clr":-1,"A":"left","R":[{"T":"trust).%20However%2C%20section%2042(j)(5)%20partnerships%20must%20complete%20lines%201%20through%207.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.564,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":14.84,"w":32.043000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20total%20credits%20reported%20on%20Form%208586%20in%20prior%20years%20for%20this%20building%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.636,"y":14.84,"w":10.664,"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":"1%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":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":38.24799999999999,"clr":-1,"A":"left","R":[{"T":"Credits%20included%20on%20line%201%20attributable%20to%20additions%20to%20qualified%20basis%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.943,"y":16.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":16.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":16.34,"w":0.278,"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":"2%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":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":24.783000000000005,"clr":-1,"A":"left","R":[{"T":"Credits%20subject%20to%20recapture.%20Subtract%20line%202%20from%20line%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":17.84,"w":18.662,"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":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.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":19.34,"w":20.72400000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20recapture%20percentage%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":19.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.565,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.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":20.84,"w":23.745,"clr":-1,"A":"left","R":[{"T":"Accelerated%20portion%20of%20credit.%20Multiply%20line%203%20by%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":20.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":20.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%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":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.54,"w":41.58099999999997,"clr":-1,"A":"left","R":[{"T":"Percentage%20decrease%20in%20qualified%20basis.%20Express%20as%20a%20decimal%20amount%20carried%20out%20to%20at%20least%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":22.34,"w":11.316,"clr":-1,"A":"left","R":[{"T":"places%20%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.629,"y":22.34,"w":31.991999999999983,"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":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.565,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.29,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.29,"w":40.042999999999985,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20accelerated%20portion%20recaptured%20(see%20instructions%20if%20prior%20recapture%20on%20building).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":23.977,"w":39.74799999999998,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205%20by%20line%206.%20Section%2042(j)(5)%20partnerships%2C%20go%20to%20line%2016.%20All%20other%20flow-through%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":24.664,"w":40.801999999999964,"clr":-1,"A":"left","R":[{"T":"entities%20(except%20electing%20large%20partnerships)%2C%20enter%20the%20result%20here%20and%20enter%20each%20recipient%E2%80%99s%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":25.352,"w":39.72799999999998,"clr":-1,"A":"left","R":[{"T":"share%20in%20the%20appropriate%20box%20of%20Schedule%20K-1.%20Generally%2C%20flow-through%20entities%20other%20than%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":26.039,"w":19.134599999999992,"clr":-1,"A":"left","R":[{"T":"electing%20large%20partnerships%20will%20stop%20here.%20%20(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.529,"y":26.039,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.357,"y":26.039,"w":14.762000000000004,"clr":-1,"A":"left","R":[{"T":"An%20estate%20or%20trust%20enters%20on%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.676,"y":26.039,"w":6.111000000000001,"clr":-1,"A":"left","R":[{"T":"only%20its%20share%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":26.726,"w":30.490000000000002,"clr":-1,"A":"left","R":[{"T":"of%20recapture%20amount%20attributable%20to%20the%20credit%20amount%20reported%20on%20its","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.479,"y":26.726,"w":5.65,"clr":-1,"A":"left","R":[{"T":"Form%208586.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.812,"y":26.726,"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":"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":10.89,"y":28.34,"w":24.004,"clr":-1,"A":"left","R":[{"T":"Enter%20recapture%20amount%20from%20flow-through%20entity%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.021,"y":28.34,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.975,"y":28.34,"w":3.2779999999999996,"clr":-1,"A":"left","R":[{"T":"above)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":28.34,"w":13.33,"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.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":36.157,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20unused%20portion%20of%20the%20accelerated%20amount%20from%20line%207%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":29.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"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":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":34.302,"clr":-1,"A":"left","R":[{"T":"Net%20recapture.%20Subtract%20line%209%20from%20line%207%20or%20line%208.%20If%20less%20than%20zero%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":31.340000000000003,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%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":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":28.58100000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20interest%20on%20the%20line%2010%20recapture%20amount%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":32.84,"w":14.663,"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":"11%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":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":24.879000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20amount%20subject%20to%20recapture.%20Add%20lines%2010%20and%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":34.34,"w":17.329,"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":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.04,"w":43.102999999999966,"clr":-1,"A":"left","R":[{"T":"Unused%20credits%20attributable%20to%20this%20building%20reduced%20by%20the%20accelerated%20portion%20included%20on%20line%209","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":35.84,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":35.84,"w":34.65799999999998,"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":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.665,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.665,"w":7.26,"clr":-1,"A":"left","R":[{"T":"Recapture%20tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.265,"y":36.665,"w":33.135,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%2012.%20If%20zero%20or%20less%2C%20enter%20-0-.%20Enter%20the%20result%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.114,"y":36.665,"w":1.964,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":37.465,"w":33.728,"clr":-1,"A":"left","R":[{"T":"on%20the%20appropriate%20line%20of%20your%20tax%20return%20(see%20instructions).%20If%20more%20than%20one","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.691,"y":37.465,"w":8.540000000000003,"clr":-1,"A":"left","R":[{"T":"Form%208611%20is%20filed%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":38.152,"w":34.196,"clr":-1,"A":"left","R":[{"T":"add%20the%20line%2014%20amounts%20from%20all%20forms%20and%20enter%20the%20total%20on%20the%20appropriate","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.018,"y":38.152,"w":8.390000000000002,"clr":-1,"A":"left","R":[{"T":"line%20of%20your%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":38.84,"w":19.78000000000001,"clr":-1,"A":"left","R":[{"T":"Electing%20large%20partnerships%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.074,"y":38.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.54,"w":36.008,"clr":-1,"A":"left","R":[{"T":"Carryforward%20of%20the%20low-income%20housing%20credit%20attributable%20to%20this%20building.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.791,"y":39.54,"w":3.834,"clr":-1,"A":"left","R":[{"T":"Subtract","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.171,"y":39.54,"w":3.205,"clr":-1,"A":"left","R":[{"T":"line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":40.34,"w":24.354000000000006,"clr":-1,"A":"left","R":[{"T":"from%20line%2013.%20If%20zero%20or%20less%2C%20enter%20-0-%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.257,"y":40.34,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.39,"w":31.962000000000003,"clr":-1,"A":"left","R":[{"T":"Only%20Section%2042(j)(5)%20partnerships%20need%20to%20complete%20lines%2016%20and%2017.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":43.34,"w":28.025000000000013,"clr":-1,"A":"left","R":[{"T":"Enter%20interest%20on%20the%20line%207%20recapture%20amount%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":43.34,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.778,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.778,"w":23.78300000000001,"clr":-1,"A":"left","R":[{"T":"Total%20recapture.%20Add%20lines%207%20and%2016%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":44.778,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":45.608,"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.34,"y":45.626,"w":7.522,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2063983Q","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":45.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":45.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8611","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":45.572,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2013)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5423,"AM":1024,"x":6.229,"y":5.815,"w":72.207,"h":0.92,"TU":"A Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5424,"AM":1024,"x":79.729,"y":5.825,"w":19.25,"h":0.91,"TU":"B Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR1","EN":0},"TI":5425,"AM":0,"x":6.291,"y":7.325,"w":39.286,"h":0.833,"TU":"C Address of building (as shown on Form 8609)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":5426,"AM":0,"x":6.495,"y":8.218,"w":39.073,"h":0.833,"TU":"C Address of building (as shown on Form 8609)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDST","EN":0},"TI":5427,"AM":0,"x":45.927,"y":8.074,"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":"ADDRZIP","EN":0},"TI":5428,"AM":0,"x":52.161,"y":8.034,"w":7.881,"h":0.857,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LD","EN":0},"TI":5429,"AM":0,"x":60.803,"y":7.905,"w":18.253,"h":1.08,"TU":"Line D. Building identification number (BIN)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LE","EN":0},"TI":5430,"AM":0,"x":79.942,"y":7.952,"w":19.017,"h":1.033,"TU":"Line E. Date placed in service (from Form 8609).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LF1","EN":0},"TI":5431,"AM":0,"x":6.165,"y":10.325,"w":72.655,"h":0.91,"TU":"Line F(1). If building is financed in whole or part with tax-exempt bonds, see instructions and furnish: (1) Issuer’s name."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LF2","EN":0},"TI":5432,"AM":0,"x":79.663,"y":10.335,"w":19.255,"h":0.9,"TU":"Line (2). Date of issue.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LF3","EN":0},"TI":5433,"AM":0,"x":6.229,"y":11.825,"w":72.591,"h":0.903,"TU":"(3) Name of issue"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LF4","EN":0},"TI":5434,"AM":0,"x":79.601,"y":11.825,"w":19.379,"h":0.903,"TU":"Line (4). CUSIP number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5435,"AM":0,"x":83.098,"y":14.89,"w":12.024,"h":0.845,"TU":"Line 1. Enter total credits reported on Form 8586 in prior years for this building."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5436,"AM":0,"x":83.098,"y":16.367,"w":12.024,"h":0.86,"TU":"Line 2. Credits included on line 1 attributable to additions to qualified basis (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5437,"AM":1024,"x":83.098,"y":17.908,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5438,"AM":0,"x":83.24,"y":19.314,"w":11.896,"h":0.868,"TU":"Line 4. Credit recapture percentage (see instructions).","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5439,"AM":1024,"x":83.098,"y":20.877,"w":12.024,"h":0.858,"TU":"._5"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5440,"AM":0,"x":83.452,"y":22.415,"w":11.576,"h":0.858,"TU":"Line 6. Percentage decrease in qualified basis. Express as a decimal amount carried out to at least 3 places (see instructions).","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5441,"AM":0,"x":83.16,"y":26.772,"w":11.901,"h":0.963,"TU":"Line 7. Amount of accelerated portion recaptured (see instructions if prior recapture on building)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5442,"AM":0,"x":83.098,"y":28.39,"w":12.024,"h":0.845,"TU":"Line 8. Enter recapture amount from flow-through entity (see Note above)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5443,"AM":0,"x":83.098,"y":29.82,"w":12.024,"h":0.907,"TU":"Line 9. Enter the unused portion of the accelerated amount from line 7 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5444,"AM":0,"x":83.098,"y":31.235,"w":12.024,"h":1,"TU":"Line 10. Net recapture. Subtract line 9 from line 7 or line 8. If less than zero, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5445,"AM":0,"x":83.098,"y":32.867,"w":12.024,"h":0.86,"TU":"Line 11. Enter interest on the line 10 recapture amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":5446,"AM":1024,"x":83.098,"y":34.351,"w":12.024,"h":0.884,"TU":"._12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNUSEDCR","EN":0},"TI":5447,"AM":0,"x":83.098,"y":35.797,"w":12.024,"h":0.93,"TU":"Line 13. Unused credits attributable to this building reduced by the accelerated portion included on line 9 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RECAPTAX","EN":0},"TI":5448,"AM":1024,"x":83.16,"y":38.726,"w":11.901,"h":1.002,"TU":"._14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LIHCCF","EN":0},"TI":5449,"AM":1024,"x":83.098,"y":40.281,"w":12.024,"h":0.954,"TU":"._15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":5450,"AM":1024,"x":83.098,"y":43.32,"w":12.024,"h":0.907,"TU":"16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":5451,"AM":1024,"x":83.098,"y":44.758,"w":12.024,"h":0.962,"TU":"17"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8615.content.txt b/test/data/fd/form/F8615.content.txt new file mode 100755 index 00000000..91d8c0f7 --- /dev/null +++ b/test/data/fd/form/F8615.content.txt @@ -0,0 +1,181 @@ +Form +8615 +Department of the Treasury +Internal Revenue Service (99) +Tax for Certain Children Who +Have Unearned Income +a + +Attach only to the child's Form 1040, Form 1040A, or Form 1040NR. + +a + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +33 +Child’s name shown on return +Child's social security number +Before you begin: +If the child, the parent, or any of the parent’s other children for whom Form 8615 must be filed must use the Schedule +D Tax Worksheet or has income from farming or fishing, see +Pub. 929, + Tax Rules for Children and Dependents. It +explains how to figure the child’s tax using the +Schedule D Tax Worksheet + or +Schedule J + (Form 1040). +A +Parent’s name (first, initial, and last). +Caution: + +See instructions before completing. +B +Parent•s social security number +C +Parent’s filing status (check one): +Single +Married filing jointly +Married filing separately +Head of household +Qualifying widow(er) +Part I +Child's Net Unearned Income +1 +Enter the child’s unearned income (see instructions) +1 +2 + +$2,000. Otherwise, see instructions +2 +3 + +attach it to the child’s return +3 +4 + +line 41. If the child files Form 2555 or 2555-EZ, see the instructions +4 +5 + +attach it to the child’s return +5 +Part II +Tentative Tax Based on the Tax Rate of the Parent +6 + + +line 6; Form 1040NR, line 41; or Form 1040NR-EZ, line 14. If zero or less, enter -0-. If the parent +files Form 2555 or 2555-EZ, see the instructions +6 +7 + +7 +8 +Add lines 5, 6, and 7 (see instructions) +8 +9 + + +If the Qualified Dividends and Capital Gain Tax Worksheet, Schedule D Tax Worksheet, or +Schedule J (Form 1040) is used to figure the tax, check here +a +9 +10 + + + + + +Enter the parent’s tax from Form 1040, line 44; Form 1040A, line 28, minus any alternative + +parent files Form 2555 or 2555-EZ, see the instructions. If the Qualified Dividends and Capital +Gain Tax Worksheet, Schedule D Tax Worksheet, or Schedule J (Form 1040) was used to figure +the tax, check here +a +10 +11 + +Subtract line 10 from line 9 and enter the result. If line 7 is blank, also enter this amount on line +11 +12a +Add lines 5 and 7 +12a +b +Divide line 5 by line 12a. Enter the result as a decimal (rounded to at least three places) +.... +12b +× +. +13 +Multiply line 11 by line 12b +13 +Part III +Child's Tax +If lines 4 and 5 above are the same, enter -0- on line 15 and go to line 16. +14 +Subtract line 5 from line 4 +14 +15 + + +the Qualified Dividends and Capital Gain Tax Worksheet, Schedule D Tax Worksheet, or +Schedule J (Form 1040) is used to figure the tax, check here +a +15 +16 +Add lines 13 and 15 +16 +17 + + +the Qualified Dividends and Capital Gain Tax Worksheet, Schedule D Tax Worksheet, or +Schedule J (Form 1040) is used to figure the tax, check here +a +17 +18 + +line 28; or Form 1040NR, line 42. If the child files Form 2555 or 2555-EZ, see the instructions +. . +18 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 64113U +Form +8615 + (2013) + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. + ................................................................................................. +Information about Form 8615 and its separate instructions is at www.irs.gov/form8615. +If the child did not itemize deductions on Schedule A (Form 1040 or Form 1040NR), enter +Subtract line 2 from line 1. If zero or less, stop; do not complete the rest of this form but do +Enter the child’s taxable income from Form 1040, line 43; Form 1040A, line 27; or Form 1040NR, +Enter the smaller of line 3 or line 4. If zero, stop; do not complete the rest of this form but do +Enter the parent’s taxable income from Form 1040, line 43; Form 1040A, line 27; Form 1040EZ, +Enter the total, if any, from Forms 8615, line 5, of all other children of the parent named above. +Enter the tax on the amount on line 8 based on the parent’s filing status above (see instructions). +Do not include the amount from line 5 above +include any tax from Form 4972 or 8814 or any tax from recapture of an education credit. If the +minimum tax; Form 1040EZ, line 10; Form 1040NR, line 42; or Form 1040NR-EZ, line 15. Do not +13 and go to Part III +Enter the tax on the amount on line 14 based on the child’s filing status (see instructions). If +Enter the tax on the amount on line 4 based on the child’s filing status (see instructions). If +Enter the larger of line 16 or line 17 here and on the child’s Form 1040, line 44; Form 1040A, +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8615.fields.json b/test/data/fd/form/F8615.fields.json new file mode 100755 index 00000000..db009724 --- /dev/null +++ b/test/data/fd/form/F8615.fields.json @@ -0,0 +1 @@ +[{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"L9AX","type":"box","calc":false,"value":""},{"id":"L10AX","type":"box","calc":false,"value":""},{"id":"L15AX","type":"box","calc":false,"value":""},{"id":"L17AX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"PNAM","type":"alpha","calc":false,"value":""},{"id":"PMI","type":"mask","calc":false,"value":""},{"id":"PLNM","type":"alpha","calc":false,"value":""},{"id":"PSFX","type":"alpha","calc":false,"value":""},{"id":"PSSN","type":"ssn","calc":false,"value":""},{"id":"LCW","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12A","type":"number","calc":true,"value":""},{"id":"L12B","type":"percent","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8615.json b/test/data/fd/form/F8615.json new file mode 100755 index 00000000..185b5047 --- /dev/null +++ b/test/data/fd/form/F8615.json @@ -0,0 +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.936},{"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":6.147,"y":9.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.684,"y":10.501,"w":0.75,"l":22.361},{"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":80.397,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":14.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":20.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.751,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.827,"y":27.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":77.827,"y":27.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":80.397,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":32.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":35.251,"w":1.125,"l":14.936},{"oc":"#221f1f","x":6.147,"y":36.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":36.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":61.834,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":38.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":41.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":41.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":41.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.827,"y":44.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":77.827,"y":44.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":80.397,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":45.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":48.349},{"oc":"#221f1f","x":54.409,"y":46.501,"w":1.5,"l":33.498},{"oc":"#221f1f","x":87.822,"y":46.501,"w":1.5,"l":11.223}],"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.531},{"oc":"#221f1f","x":76.727,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":14.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":14.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"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":84.152,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":84.152,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":23.235,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":84.152,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":79.202,"y":27.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":77.827,"y":27.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":27.735,"w":0.75,"l":4.539},{"oc":"#221f1f","x":80.44,"y":27.735,"w":0.75,"l":4.539},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":33.728,"w":0.75,"l":0.805},{"oc":"#221f1f","x":80.44,"y":33.728,"w":0.75,"l":0.805},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":1.547},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":44.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":77.827,"y":44.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":84.152,"y":42.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":42.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":45.736,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":12.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":20.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bdc0c2","x":80.44,"y":33.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":36.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bdc0c2","x":80.44,"y":36.751,"w":3.712,"h":1.5,"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.224,"clr":-1,"A":"left","R":[{"T":"8615","S":-1,"TS":[0,28,1,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":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":36.802,"y":2.101,"w":20.22899999999999,"clr":-1,"A":"left","R":[{"T":"Tax%20for%20Certain%20Children%20Who%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":39.906,"y":3.038,"w":11.337000000000002,"clr":-1,"A":"left","R":[{"T":"Have%20Unearned%20Income%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":29.723,"y":3.585,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":31.091,"y":3.6790000000000003,"w":32.525000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20only%20to%20the%20child's%20Form%201040%2C%20Form%201040A%2C%20or%20Form%201040NR.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.296,"y":4.147,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,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":89.581,"y":3.2800000000000002,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,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.942,"y":4.366,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.026,"w":13.670000000000003,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name%20shown%20on%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":5.001,"w":14.743000000000004,"clr":-1,"A":"left","R":[{"T":"Child's%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.564,"w":9.057,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A%20%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":19.522,"y":6.564,"w":52.75699999999997,"clr":-1,"A":"left","R":[{"T":"If%20the%20child%2C%20the%20parent%2C%20or%20any%20of%20the%20parent%E2%80%99s%20other%20children%20for%20whom%20Form%208615%20must%20be%20filed%20must%20use%20the%20Schedule%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":19.509,"y":7.2509999999999994,"w":27.079,"clr":-1,"A":"left","R":[{"T":"D%20Tax%20Worksheet%20or%20has%20income%20from%20farming%20or%20fishing%2C%20see%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":57.566,"y":7.239,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Pub.%20929%2C","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":63.875,"y":7.227,"w":19.263000000000005,"clr":-1,"A":"left","R":[{"T":"%20Tax%20Rules%20for%20Children%20and%20Dependents.%20It%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":19.503,"y":7.938000000000001,"w":20.984000000000005,"clr":-1,"A":"left","R":[{"T":"explains%20how%20to%20figure%20the%20child%E2%80%99s%20tax%20using%20the%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":48.76,"y":7.949999999999999,"w":12.837000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20Tax%20Worksheet","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":66.715,"y":7.928000000000001,"w":1.463,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":68.89,"y":7.973000000000001,"w":5.28,"clr":-1,"A":"left","R":[{"T":"Schedule%20J","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":76.749,"y":7.927,"w":6.188000000000002,"clr":-1,"A":"left","R":[{"T":"%20(Form%201040).%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.89,"w":1.278,"clr":-1,"A":"left","R":[{"T":"A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.859,"y":8.89,"w":16.429000000000002,"clr":-1,"A":"left","R":[{"T":"Parent%E2%80%99s%20name%20(first%2C%20initial%2C%20and%20last).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.883,"y":8.855,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Caution%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":33.03,"y":8.855,"w":16.112000000000002,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20before%20completing.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":8.89,"w":1.278,"clr":-1,"A":"left","R":[{"T":"B%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.114,"y":8.89,"w":15.467000000000004,"clr":-1,"A":"left","R":[{"T":"Parent%E2%80%A2s%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":10.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.946,"y":10.34,"w":15.058000000000009,"clr":-1,"A":"left","R":[{"T":"Parent%E2%80%99s%20filing%20status%20(check%20one)%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.295,"y":11.037,"w":2.759,"clr":-1,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":22.953,"y":11.037,"w":8.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":42.782,"y":11.037,"w":10.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":64.942,"y":11.037,"w":8.483,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":84.742,"y":11.037,"w":9.016000000000002,"clr":-1,"A":"left","R":[{"T":"Qualifying%20widow(er)","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.838,"y":11.822,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":11.822,"w":14.130000000000004,"clr":-1,"A":"left","R":[{"T":"Child's%20Net%20Unearned%20Income%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":23.376000000000012,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20child%E2%80%99s%20unearned%20income%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.896,"y":14.84,"w":16.004000000000005,"clr":-1,"A":"left","R":[{"T":"%242%2C000.%20Otherwise%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.652999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.896,"y":16.34,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"attach%20it%20to%20the%20child%E2%80%99s%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.896,"y":17.84,"w":30.157000000000007,"clr":-1,"A":"left","R":[{"T":"line%2041.%20If%20the%20child%20files%20Form%202555%20or%202555-EZ%2C%20see%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.88,"y":19.34,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"attach%20it%20to%20the%20child%E2%80%99s%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":20.072,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":20.072,"w":24.062,"clr":-1,"A":"left","R":[{"T":"Tentative%20Tax%20Based%20on%20the%20Tax%20Rate%20of%20the%20Parent%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.965,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.885,"y":21.652,"w":42.93599999999997,"clr":-1,"A":"left","R":[{"T":"line%206%3B%20Form%201040NR%2C%20line%2041%3B%20or%20Form%201040NR-EZ%2C%20line%2014.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20the%20parent%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":22.34,"w":21.74700000000001,"clr":-1,"A":"left","R":[{"T":"files%20Form%202555%20or%202555-EZ%2C%20see%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.616,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":24.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":17.283,"clr":-1,"A":"left","R":[{"T":"Add%20lines%205%2C%206%2C%20and%207%20(see%20instructions)%20","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.465,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.899,"y":26.152,"w":40.339999999999975,"clr":-1,"A":"left","R":[{"T":"If%20the%20Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet%2C%20Schedule%20D%20Tax%20Worksheet%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":26.851,"w":27.136999999999993,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%20(Form%201040)%20is%20used%20to%20figure%20the%20tax%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.502,"y":26.757,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.616,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.902,"w":40.34799999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20parent%E2%80%99s%20tax%20from%20Form%201040%2C%20line%2044%3B%20Form%201040A%2C%20line%2028%2C%20minus%20any%20alternative%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":29.964,"w":42.010999999999996,"clr":-1,"A":"left","R":[{"T":"parent%20files%20Form%202555%20or%202555-EZ%2C%20see%20the%20instructions.%20If%20the%20Qualified%20Dividends%20and%20Capital%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":30.652,"w":42.89599999999997,"clr":-1,"A":"left","R":[{"T":"Gain%20Tax%20Worksheet%2C%20Schedule%20D%20Tax%20Worksheet%2C%20or%20Schedule%20J%20(Form%201040)%20was%20used%20to%20figure%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":31.35,"w":8.817000000000002,"clr":-1,"A":"left","R":[{"T":"the%20tax%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.502,"y":31.256999999999998,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.153,"w":42.41999999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20line%209%20and%20enter%20the%20result.%20If%20line%207%20is%20blank%2C%20also%20enter%20this%20amount%20on%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":33.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"12a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%205%20and%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.179,"y":33.59,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"12a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":34.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":34.34,"w":39.045999999999985,"clr":-1,"A":"left","R":[{"T":"Divide%20line%205%20by%20line%2012a.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20three%20places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":34.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":34.34,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"12b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":90.277,"y":34.328,"w":1.4340000000000002,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.495,"y":34.328,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":11.875000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2011%20by%20line%2012b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":35.822,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":35.822,"w":5.295,"clr":-1,"A":"left","R":[{"T":"Child's%20Tax","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.117,"y":35.822,"w":32.974000000000004,"clr":-1,"A":"left","R":[{"T":"If%20lines%204%20and%205%20above%20are%20the%20same%2C%20enter%20-0-%20on%20line%2015%20and%20go%20to%20line%2016.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.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":37.34,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.965,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.896,"y":39.653,"w":39.506999999999984,"clr":-1,"A":"left","R":[{"T":"the%20Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet%2C%20Schedule%20D%20Tax%20Worksheet%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.903,"y":40.351,"w":27.136999999999993,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%20(Form%201040)%20is%20used%20to%20figure%20the%20tax%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.502,"y":40.257,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.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":41.84,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2013%20and%2015%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":42.715,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.883,"y":43.403,"w":39.506999999999984,"clr":-1,"A":"left","R":[{"T":"the%20Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet%2C%20Schedule%20D%20Tax%20Worksheet%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":44.101,"w":27.136999999999993,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%20(Form%201040)%20is%20used%20to%20figure%20the%20tax%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.502,"y":44.007,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":45.59,"w":41.90199999999999,"clr":-1,"A":"left","R":[{"T":"line%20%2028%3B%20or%20Form%201040NR%2C%20line%2042.%20If%20the%20child%20files%20Form%202555%20or%202555-EZ%2C%20see%20the%20%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.127,"y":45.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"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":66.406,"y":46.376,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2064113U%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":46.385,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.385,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8615","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":46.385,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":46.386,"y":13.341,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,11.6306,0,0]}]},{"x":35.787,"y":14.794,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,15.4149,0,0]}]},{"x":30.825,"y":16.341,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,16.592599999999997,0,0]}]},{"x":57.439,"y":17.794,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,8.7196,0,0]}]},{"x":30.76,"y":19.247,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,16.6262,0,0]}]},{"x":44.722,"y":22.298,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":42.842,"y":23.794,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,12.4374,0,0]}]},{"x":37.849,"y":24.591,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,14.0013,0,0]}]},{"x":52.862,"y":26.817,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,7.8112,0,0]}]},{"x":24.767,"y":31.341,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,15.8516,0,0]}]},{"x":25.731,"y":32.77,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,17.535600000000002,0,0]}]},{"x":23.734,"y":33.567,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,13.1261,0,0]}]},{"x":29.275,"y":37.27,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,11.2094,0,0]}]},{"x":52.926,"y":40.341,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,7.8117,0,0]}]},{"x":25.569,"y":41.864,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,18.326999999999998,0,0]}]},{"x":52.153,"y":44.067,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,7.9123,0,0]}]},{"x":29.696,"y":35.02,"w":22.344000000000033,"clr":0,"A":"left","R":[{"T":"%20.................................................................................................","S":-1,"TS":[1,15.9701,0,0]}]},{"oc":"#221f1f","x":24.664,"y":4.241,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208615%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8615.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.153,"w":40.01099999999998,"clr":-1,"A":"left","R":[{"T":"If%20the%20child%20did%20not%20itemize%20deductions%20on%20Schedule%20A%20(Form%201040%20or%20Form%201040NR)%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.652999999999999,"w":40.897999999999975,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20If%20zero%20or%20less%2C%20stop%3B%20do%20not%20complete%20the%20rest%20of%20this%20form%20but%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.153,"w":43.311999999999976,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20child%E2%80%99s%20taxable%20income%20from%20Form%201040%2C%20line%2043%3B%20Form%201040A%2C%20line%2027%3B%20or%20Form%201040NR%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.653,"w":41.36099999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%203%20or%20line%204.%20If%20zero%2C%20stop%3B%20do%20not%20complete%20the%20rest%20of%20this%20form%20but%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.965,"w":43.23899999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20parent%E2%80%99s%20%20taxable%20income%20%20from%20Form%201040%2C%20line%2043%3B%20Form%201040A%2C%20line%2027%3B%20Form%201040EZ%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.153,"w":42.40099999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%2C%20if%20any%2C%20from%20Forms%208615%2C%20line%205%2C%20of%20all%20other%20children%20of%20the%20parent%20named%20above.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.465,"w":43.344999999999985,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20on%20the%20amount%20on%20line%208%20based%20on%20the%20parent%E2%80%99s%20filing%20status%20above%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":23.84,"w":20.137,"clr":-1,"A":"left","R":[{"T":"Do%20not%20include%20the%20amount%20from%20line%205%20above%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":29.277,"w":42.58499999999997,"clr":-1,"A":"left","R":[{"T":"include%20any%20tax%20from%20Form%204972%20or%208814%20or%20any%20tax%20from%20recapture%20of%20an%20education%20credit.%20If%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.589,"w":42.77699999999999,"clr":-1,"A":"left","R":[{"T":"minimum%20tax%3B%20Form%201040EZ%2C%20line%2010%3B%20Form%201040NR%2C%20line%2042%3B%20or%20Form%201040NR-EZ%2C%20line%2015.%20Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":32.84,"w":9.113000000000001,"clr":-1,"A":"left","R":[{"T":"13%20and%20go%20to%20Part%20III%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.965,"w":40.97399999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20on%20the%20amount%20on%20line%2014%20based%20on%20the%20child%E2%80%99s%20filing%20status%20(see%20instructions).%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.715,"w":40.417999999999985,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20on%20the%20amount%20on%20line%204%20based%20on%20the%20child%E2%80%99s%20filing%20status%20(see%20instructions).%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.903,"w":41.272999999999975,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20larger%20of%20line%2016%20or%20line%2017%20here%20and%20on%20the%20child%E2%80%99s%20Form%201040%2C%20line%2044%3B%20Form%201040A%2C%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5452,"AM":1024,"x":6.188,"y":5.875,"w":70.358,"h":0.875,"TU":"Page 1. Child's name shown on return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5453,"AM":1024,"x":76.905,"y":5.875,"w":22.095,"h":0.875,"TU":"Child's social security number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":5454,"AM":0,"x":6.188,"y":9.816,"w":31.833,"h":0.833,"TU":"Line A. Parent's first name. Caution: See instructions before completing."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PMI","EN":0},"TI":5455,"AM":0,"x":38.497,"y":9.867,"w":5.431,"h":0.833,"TU":"Line A. Parent's middle intial","MV":"a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PLNM","EN":0},"TI":5456,"AM":0,"x":44.392,"y":9.859,"w":24.596,"h":0.833,"TU":"Line A. Parent's last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PSFX","EN":0},"TI":5457,"AM":0,"x":69.601,"y":9.801,"w":6.703,"h":0.833,"TU":"Line A Parent's Suffix"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PSSN","EN":0},"TI":5458,"AM":0,"x":76.678,"y":9.839,"w":22.5,"h":0.833,"TU":"Line B Parent's social security number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCW","EN":0},"TI":5459,"AM":0,"x":26.69,"y":10.57,"w":7.838,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5465,"AM":0,"x":84.15,"y":13.5,"w":11.137,"h":0.833,"TU":"Line 1. Enter the child's unearned income (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5466,"AM":0,"x":84.15,"y":15,"w":11.137,"h":0.833,"TU":"Line 2. If the child did not itemize deductions on Schedule A (Form 1040 or Form 1040N R), enter $2,000. Otherwise, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5467,"AM":1024,"x":84.15,"y":16.5,"w":11.137,"h":0.833,"TU":"Line 3. Subtract line 2 from line 1. If zero or less, stop; do not complete the rest of this form but do attach it to the child’s return. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5468,"AM":0,"x":84.15,"y":18,"w":11.137,"h":0.833,"TU":"Line 4. Enter the child’s taxable income from Form 1040, line 43; Form 1040A, line 27; or Form 1040N R, line 41. If the child files Form 2555 or 2555-E Z, see the instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5469,"AM":1024,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 5. Enter the smaller of line 3 or line 4. If zero, stop; do not complete the rest of this form but do attach it to the child’s return. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5470,"AM":0,"x":84.15,"y":22.5,"w":11.137,"h":0.833,"TU":"Line 6. Enter the parent’s taxable income from Form 1040, line 43; Form 1040A, line 27; Form 1040E Z, line 6; Form 1040N R, line 41; or Form 1040NR - EZ, line 14. If zero or less, enter zero. If the parent files Form 2555 or 2555-EZ, see the instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5471,"AM":0,"x":84.15,"y":24,"w":11.137,"h":0.833,"TU":"Line 7. Enter the total, if any, from Forms 8615, line 5, of all other children of the parent named above. Do not include the amount from line 5 above. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5472,"AM":1024,"x":84.15,"y":24.75,"w":11.137,"h":0.833,"TU":"Line 8. Add lines 5, 6, and 7 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5474,"AM":0,"x":84.15,"y":27,"w":11.137,"h":0.833,"TU":"Line 9. Enter the tax on the amount on line 8 based on the parent’s filing status above (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5476,"AM":0,"x":84.15,"y":31.5,"w":11.137,"h":0.833,"TU":"Line 10. Enter the parent’s tax from Form 1040, line 44; Form 1040A, line 28, minus any alternative minimum tax; Form 1040E Z, line 10; Form 1040N R, line 42; or Form 1040NR-EZ, line 15. Do not include any tax from Form 4972 or 8814 or any tax from recapture of an education credit. If the parent files Form 2555 or 2555-EZ, see the instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5477,"AM":1024,"x":84.15,"y":33,"w":11.137,"h":0.833,"TU":"Line 11. Subtract line 10 from line 9 and enter the result. If line 7 is blank, also enter this amount on line 13 and go to Part 3. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":5478,"AM":1024,"x":65.588,"y":33.75,"w":11.137,"h":0.833,"TU":"Line 12a. Add lines 5 and 7. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":5479,"AM":1024,"x":93.173,"y":34.5,"w":5.827,"h":0.833,"TU":"Line 12b. Divide line 5 by line 12a. Enter the result as a decimal (rounded to at least three places). Decimal."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":5480,"AM":1024,"x":84.15,"y":35.25,"w":11.137,"h":0.833,"TU":"Line 13. Multiply line 11 by line 12b. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":5481,"AM":1024,"x":65.588,"y":37.5,"w":11.137,"h":0.833,"TU":"Line 14. Subtract line 5 from line 4. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":5483,"AM":0,"x":84.15,"y":40.5,"w":11.137,"h":0.833,"TU":"Line 15. Enter the tax on the amount on line 14 based on the child's filing status (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":5484,"AM":1024,"x":84.15,"y":42,"w":11.137,"h":0.833,"TU":"Line 16. Add lines 13 and 15. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":5486,"AM":0,"x":84.15,"y":44.25,"w":11.137,"h":0.833,"TU":"Line 17.Enter the tax on the amount on line 4 based on the child’s filing status (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":5487,"AM":1024,"x":84.075,"y":45.75,"w":11.138,"h":0.833,"TU":"Line 18. Enter the larger of line 16 or line 17 here and on the child’s Form 1040, line 44; Form 1040A, line 28; or Form 1040N R, line 42. If the child files Form 2555 or 2555-E Z, see the instructions. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":5460,"AM":0,"x":8.609,"y":11.254,"w":1.466,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":5461,"AM":0,"x":20.912,"y":11.25,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":5462,"AM":0,"x":40.806,"y":11.27,"w":1.297,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":5463,"AM":0,"x":63.171,"y":11.263,"w":1.297,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":5464,"AM":0,"x":82.915,"y":11.255,"w":1.353,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L9AX","EN":0},"TI":5473,"AM":0,"x":77.825,"y":26.908,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L10AX","EN":0},"TI":5475,"AM":0,"x":77.825,"y":31.5,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15AX","EN":0},"TI":5482,"AM":0,"x":77.825,"y":40.5,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L17AX","EN":0},"TI":5485,"AM":0,"x":77.825,"y":44.168,"w":1.375,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8689.content.txt b/test/data/fd/form/F8689.content.txt new file mode 100755 index 00000000..6bfea13f --- /dev/null +++ b/test/data/fd/form/F8689.content.txt @@ -0,0 +1,249 @@ +Form + 8689 +Department of the Treasury +Internal Revenue Service +Allocation of Individual Income Tax +to the U.S. Virgin Islands +a + +Attach to Form 1040. + +a + +Information about Form 8689 and its instructions is at +www.irs.gov/form8689. +OMB No. 1545- +0074 +20 +13 +Attachment +Sequence No. +85 +Name(s) shown on Form 1040 +Your social security number +Part I +Income From the U.S. Virgin Islands (USVI) +1 +Wages, salaries, tips, etc. +........................ +1 +2 +Taxable interest +............................ +2 +3 +Ordinary dividends +........................... +3 +4 +Taxable refunds, credits, or offsets of local USVI income taxes +............ +4 +5 +Alimony received +........................... +5 +6 +Business income or (loss) +........................ +6 +7 +Capital gain or (loss) +.......................... +7 +8 +Other gains or (losses) +......................... +8 +9 +IRA distributions (taxable amount) +...................... +9 +10 +Pensions and annuities (taxable amount) +................... +10 +11 +Rental real estate, royalties, partnerships, S corporations, trusts, etc. +.......... +11 +12 +Farm income or (loss) +.......................... +12 +13 +Unemployment compensation +....................... +13 +14 +Social security benefits (taxable amount) +................... +14 +15 +Other income. List type and amount +a +15 +16 +Add lines 1 through 15. This is your +total USVI income +............. +a +16 +Part II +Adjusted Gross Income From the USVI +17 + +Educator expenses +................. +17 + +18 + +Certain business expenses of reservists, performing artists, and +fee-basis government officials +.............. +18 +19 + +Health savings account deduction +............ +19 +20 +Moving expenses +.................. +20 +21 + +Deductible part of self-employment tax +........... +21 +22 + +Self-employed SEP, SIMPLE, and qualified plans +........ +22 +23 + +Self-employed health insurance deduction +.......... +23 +24 + +Penalty on early withdrawal of savings +........... +24 + +25 + +IRA deduction +................... +25 +26 + +Student loan interest deduction +............. +26 +27 + +Tuition and fees deduction +............... +27 +28 + +Add lines 17 through 27 +......................... +28 +29 + +Subtract line 28 from line 16. This is your +USVI adjusted gross income +........ +a +29 +Part III +Allocation of Tax to the USVI +30 +Enter amount from Form 1040, line 61 +.................... +30 +31 +Enter the total of the amounts from Form 1040, lines 56, 57, 59a, 64a, 65, 66, and 71 (boxes c and +d). Include any uncollected social security and Medicare or tier 1 RRTA tax, tax on excess golden +parachute payments, or excise tax on insider stock compensation reported on line 60. Also +include any amount from Form 5329, Parts III, IV, V, VI, VII, or VIII reported on Form 1040, line 58 . +31 +32 +Subtract line 31 from line 30 +....................... +32 +33 +Enter amount from Form 1040, line 38 +........... +33 +34 +Divide line 29 above by line 33. Enter the result as a decimal (rounded to at least 3 places). Do not enter more than 1.000 +34 +× +. +35 +Multiply line 32 by line 34. This is your +tax allocated to the USVI +........... +35 +Part IV +Payments of Income Tax to the USVI +36 +Income tax withheld by the USVI +............. +36 +37 +2013 estimated tax payments and amount applied from 2012 return . +37 +38 +Amount paid with Form 4868 (extension request) +........ +38 +39 +Add lines 36 through 38. These are your +total payments to the USVI +......... +a + 39 +40 +Enter the smaller of line 35 or line 39. Include this amount in the total on Form 1040, line 72. On +the dotted line next to line 72, enter “Form 8689” and show this amount +......... + 40 +41 +Overpayment +to the USVI. If line 39 is more than line 35, subtract line 35 from line 39 +..... + 41 +42 +Amount of line 41 you want +refunded to you +................. +a + 42 +43 +Amount of line 41 you want +applied to your 2014 estimated tax +.. +43 +44 Amount you owe +to the USVI. +If line 39 is less than line 35, subtract line 39 from line 35 +.... + +44 +45 +Enter the amount from line 44 that you will pay when you file your income tax return. Include this amount in +the total of Form 1040, line 72. On the dotted line next to line 72, enter "Form 8689" and show this amount + +45 +For Paperwork Reduction Act Notice, see Form 1040 instructions. +Cat. No. 64603D +Form +8689 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8689.fields.json b/test/data/fd/form/F8689.fields.json new file mode 100755 index 00000000..00e039cc --- /dev/null +++ b/test/data/fd/form/F8689.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"WAGES","type":"number","calc":false,"value":""},{"id":"TXBLINT","type":"number","calc":false,"value":""},{"id":"ORDDIVS","type":"number","calc":false,"value":""},{"id":"TXBLREF","type":"number","calc":false,"value":""},{"id":"ALIMONY","type":"number","calc":false,"value":""},{"id":"BUSINC","type":"number","calc":false,"value":""},{"id":"CAPGIN","type":"number","calc":false,"value":""},{"id":"OTHGAIN","type":"number","calc":false,"value":""},{"id":"IRADISTR","type":"number","calc":false,"value":""},{"id":"PENSION","type":"number","calc":false,"value":""},{"id":"RENTRE","type":"number","calc":false,"value":""},{"id":"FARMINC","type":"number","calc":false,"value":""},{"id":"UNEMPLOY","type":"number","calc":false,"value":""},{"id":"SSBENES","type":"number","calc":false,"value":""},{"id":"A1_OTHINCT_1_","type":"alpha","calc":false,"value":""},{"id":"A1_OTHINC_1_","type":"number","calc":false,"value":""},{"id":"TOTINC","type":"number","calc":true,"value":""},{"id":"EDUCEXP","type":"number","calc":false,"value":""},{"id":"BUSEXPS","type":"number","calc":false,"value":""},{"id":"HSADEDN","type":"number","calc":false,"value":""},{"id":"MOVEXPS","type":"number","calc":false,"value":""},{"id":"SETAX","type":"number","calc":false,"value":""},{"id":"SESEP","type":"number","calc":false,"value":""},{"id":"SEHEALTH","type":"number","calc":false,"value":""},{"id":"EWDRWL","type":"number","calc":false,"value":""},{"id":"IRADED","type":"number","calc":false,"value":""},{"id":"STUDLOAN","type":"number","calc":false,"value":""},{"id":"TUITFEES","type":"number","calc":false,"value":""},{"id":"SUBTOT1","type":"number","calc":true,"value":""},{"id":"AGI","type":"number","calc":true,"value":""},{"id":"F1040L61","type":"number","calc":true,"value":""},{"id":"UNCOLLTX","type":"number","calc":false,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""},{"id":"F1040L38","type":"number","calc":true,"value":""},{"id":"MULT","type":"percent","calc":true,"value":""},{"id":"VITXALOC","type":"number","calc":true,"value":""},{"id":"VITAXPD","type":"number","calc":false,"value":""},{"id":"ESTTXPMT","type":"number","calc":false,"value":""},{"id":"PDWEXT","type":"number","calc":false,"value":""},{"id":"TOTPMTS","type":"number","calc":true,"value":""},{"id":"SUBTOT3","type":"number","calc":true,"value":""},{"id":"OVERPMT","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"APPLYES","type":"number","calc":false,"value":""},{"id":"OWED","type":"number","calc":true,"value":""},{"id":"PAY","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8689.json b/test/data/fd/form/F8689.json new file mode 100755 index 00000000..6d52159a --- /dev/null +++ b/test/data/fd/form/F8689.json @@ -0,0 +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.065,"y":3.001,"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":6.75,"w":1.125,"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":1.125,"l":22.361},{"oc":"#221f1f","x":6.145,"y":7.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":7.5,"w":0.75,"l":86.711},{"oc":"#221f1f","x":80.395,"y":8.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":8.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":8.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":9,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":9.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":10.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":11.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":12.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":14.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":17.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":17.25,"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":11.223},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":38.32,"y":18.75,"w":0.75,"l":40.924},{"oc":"#221f1f","x":80.395,"y":18.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":18.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":18.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":19.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":19.5,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.332,"y":20.25,"w":0.75,"l":86.711},{"oc":"#221f1f","x":61.832,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":20.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.545,"y":21,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.725,"y":21,"w":0.75,"l":3.712},{"oc":"#221f1f","x":76.725,"y":20.25,"w":0.75,"l":3.712},{"oc":"#221f1f","x":65.588,"y":20.234,"w":0.75,"l":11.138},{"oc":"#221f1f","x":80.395,"y":20.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":22.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":23.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":24,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":25.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":27.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.545,"y":28.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.545,"y":29.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":30,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":30,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":30,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":30.75,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":31.5,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":30.75,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.332,"y":31.5,"w":0.75,"l":86.711},{"oc":"#221f1f","x":80.395,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":32.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":35.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":36,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":36.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":37.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":91.532,"y":37.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.145,"y":38.25,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":39,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":38.25,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.332,"y":39,"w":0.75,"l":86.711},{"oc":"#221f1f","x":61.832,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":39.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":39,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":40.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":41.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.545,"y":41.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":41.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":42,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":43.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.188,"y":43.5,"w":0.75,"l":74.25},{"oc":"#221f1f","x":80.395,"y":44.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":44.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":44.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":45,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":45.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.545,"y":45.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":45.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":46.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":46.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":46.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":48,"w":1.5,"l":43.398},{"oc":"#221f1f","x":49.457,"y":48,"w":1.5,"l":38.448},{"oc":"#221f1f","x":87.82,"y":48,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.039,"y":2.235,"w":1.5,"l":1.547},{"oc":"#221f1f","x":21.039,"y":3.735,"w":1.5,"l":1.501},{"oc":"#221f1f","x":84.151,"y":2.235,"w":1.5,"l":0.797},{"oc":"#221f1f","x":84.151,"y":2.985,"w":1.5,"l":2.281},{"oc":"#221f1f","x":76.725,"y":5.219,"w":0.75,"l":1.555},{"oc":"#221f1f","x":80.438,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"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":0.781},{"oc":"#221f1f","x":84.15,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":9.734,"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":0.781},{"oc":"#221f1f","x":84.15,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":11.234,"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":0.781},{"oc":"#221f1f","x":84.15,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":12.734,"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":0.781},{"oc":"#221f1f","x":84.15,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"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":80.438,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":15.734,"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":0.781},{"oc":"#221f1f","x":84.15,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":17.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"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":61.875,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":20.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":84.15,"y":20.227,"w":0.75,"l":9.039},{"oc":"#221f1f","x":80.438,"y":20.227,"w":0.75,"l":9.039},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":9.031},{"oc":"#221f1f","x":65.588,"y":20.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":20.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":29.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":29.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":80.438,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"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":84.15,"y":32.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":32.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":32.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.15,"y":34.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":34.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":38.977,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.438,"y":38.977,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.875,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":40.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":40.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":41.985,"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.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":44.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":44.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":44.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":45.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"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":84.15,"y":47.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":47.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":47.234,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":6.75,"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":"#bebfc1","x":80.438,"y":20.25,"w":3.712,"h":9,"clr":-1},{"oc":"#221f1f","x":6.188,"y":30.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":32.25,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":36,"w":3.712,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":38.25,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":39,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":45,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":46.5,"w":3.712,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.939,"y":2.634,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.747,"y":2.634,"w":2.5999999999999996,"clr":-1,"A":"left","R":[{"T":"%208689%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.939,"y":3.729,"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.939,"y":4.23,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#181616","x":33.456,"y":2.188,"w":15.999999999999996,"clr":-1,"A":"left","R":[{"T":"Allocation%20of%20Individual%20Income%20Tax%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#181616","x":38.894,"y":3.063,"w":11.479999999999997,"clr":-1,"A":"left","R":[{"T":"to%20the%20U.S.%20Virgin%20Islands%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":44.813,"y":3.697,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.226,"y":3.7910000000000004,"w":9.927999999999999,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.341,"y":4.197,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.754,"y":4.291,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208689%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.193,"y":4.291,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8689.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.742,"y":1.9729999999999999,"w":7.059,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-","S":2,"TS":[0,10,0,0]}]},{"oc":"#181616","x":94.235,"y":1.9729999999999999,"w":2.224,"clr":-1,"A":"left","R":[{"T":"0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.202,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.964,"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.964,"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.941,"y":4.365,"w":1.112,"clr":-1,"A":"left","R":[{"T":"85","S":-1,"TS":[0,13,0,0]}]},{"oc":"#181616","x":5.938,"y":4.937,"w":13.689000000000005,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#181616","x":77.163,"y":4.937,"w":13.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":6.836,"y":6.571,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":6.571,"w":20.236,"clr":-1,"A":"left","R":[{"T":"Income%20From%20the%20U.S.%20Virgin%20Islands%20(USVI)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":7.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":7.339,"w":11.705000000000005,"clr":-1,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20tips%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":7.339,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":7.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":7.389000000000001,"clr":-1,"A":"left","R":[{"T":"Taxable%20interest%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":8.089,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":8.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.839,"w":8.706000000000001,"clr":-1,"A":"left","R":[{"T":"Ordinary%20dividends%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":8.839,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":8.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":9.589,"w":27.797000000000004,"clr":-1,"A":"left","R":[{"T":"Taxable%20refunds%2C%20credits%2C%20or%20offsets%20of%20local%20USVI%20income%20taxes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":9.589,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":9.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":10.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.339,"w":7.649,"clr":-1,"A":"left","R":[{"T":"Alimony%20received","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":10.339,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":10.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":11.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.089,"w":11.668000000000001,"clr":-1,"A":"left","R":[{"T":"Business%20income%20or%20(loss)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":11.089,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":11.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":11.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.839,"w":9.092000000000002,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20or%20(loss)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":11.839,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":11.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":12.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.589,"w":10.260000000000005,"clr":-1,"A":"left","R":[{"T":"Other%20gains%20or%20(losses)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":12.589,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":12.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":13.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.339,"w":15.373000000000005,"clr":-1,"A":"left","R":[{"T":"IRA%20distributions%20(taxable%20amount)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":13.339,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":13.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.089,"w":18.338000000000008,"clr":-1,"A":"left","R":[{"T":"Pensions%20and%20annuities%20(taxable%20amount)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":14.089,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":14.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":30.910999999999998,"clr":-1,"A":"left","R":[{"T":"Rental%20real%20estate%2C%20royalties%2C%20partnerships%2C%20S%20corporations%2C%20trusts%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.563,"y":14.839,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":14.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":15.588999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.588999999999999,"w":9.909000000000002,"clr":-1,"A":"left","R":[{"T":"Farm%20income%20or%20(loss)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":15.588999999999999,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":15.588999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":16.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.339,"w":13.728000000000003,"clr":-1,"A":"left","R":[{"T":"Unemployment%20compensation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":16.339,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":16.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":18.354000000000006,"clr":-1,"A":"left","R":[{"T":"Social%20security%20benefits%20(taxable%20amount)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":17.089,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":17.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.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":17.85,"w":16.619000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20income.%20List%20type%20and%20amount%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.595,"y":17.756,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":17.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":18.527,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.527,"w":16.042,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20through%2015.%20This%20is%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.702,"y":18.527,"w":8.812000000000001,"clr":-1,"A":"left","R":[{"T":"total%20USVI%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":18.527,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.713,"y":18.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":18.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":6.582,"y":19.321,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":19.321,"w":18.350000000000005,"clr":-1,"A":"left","R":[{"T":"Adjusted%20Gross%20Income%20From%20the%20USVI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":20.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.089,"w":8.89,"clr":-1,"A":"left","R":[{"T":"Educator%20expenses%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":20.089,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":20.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":20.905,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.902,"w":28.670000000000005,"clr":-1,"A":"left","R":[{"T":"Certain%20business%20expenses%20of%20reservists%2C%20performing%20artists%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":21.589,"w":13.408000000000001,"clr":-1,"A":"left","R":[{"T":"fee-basis%20government%20officials","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.745,"y":21.589,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":21.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":22.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.339,"w":15.485000000000001,"clr":-1,"A":"left","R":[{"T":"Health%20savings%20account%20deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":22.339,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":22.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":7.853000000000001,"clr":-1,"A":"left","R":[{"T":"Moving%20expenses","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":23.089,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":23.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.839,"w":17.430000000000003,"clr":-1,"A":"left","R":[{"T":"Deductible%20part%20of%20self-employment%20tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":23.839,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":23.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":24.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.589,"w":22.097,"clr":-1,"A":"left","R":[{"T":"Self-employed%20SEP%2C%20SIMPLE%2C%20and%20qualified%20plans%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.125,"y":24.589,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":24.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.339,"w":18.87500000000001,"clr":-1,"A":"left","R":[{"T":"Self-employed%20health%20insurance%20deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":25.339,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.089,"w":17.054000000000002,"clr":-1,"A":"left","R":[{"T":"Penalty%20on%20early%20withdrawal%20of%20savings","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":26.089,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":6.353000000000001,"clr":-1,"A":"left","R":[{"T":"IRA%20deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":26.839,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":27.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.589,"w":14.319000000000004,"clr":-1,"A":"left","R":[{"T":"Student%20loan%20interest%20deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":27.589,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":27.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.339,"w":12.170000000000003,"clr":-1,"A":"left","R":[{"T":"Tuition%20and%20fees%20deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":28.339,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":10.671,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2017%20through%2027","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":29.089,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":29.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.839,"w":18.505000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2016.%20This%20is%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.512,"y":29.839,"w":13.480000000000002,"clr":-1,"A":"left","R":[{"T":"USVI%20adjusted%20gross%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":29.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.713,"y":29.745,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"x":6.329,"y":30.571,"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":30.571,"w":13.627000000000002,"clr":-1,"A":"left","R":[{"T":"Allocation%20of%20Tax%20to%20the%20USVI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.339,"w":16.95200000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20from%20Form%201040%2C%20line%2061","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":31.339,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":31.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.267,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.214,"w":44.07499999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20the%20amounts%20from%20Form%201040%2C%20lines%2056%2C%2057%2C%2059a%2C%2064a%2C%2065%2C%2066%2C%20and%2071%20(boxes%20c%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":32.901,"w":43.63499999999996,"clr":-1,"A":"left","R":[{"T":"d).%20Include%20any%20uncollected%20social%20security%20and%20Medicare%20or%20tier%201%20RRTA%20tax%2C%20tax%20on%20excess%20golden%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.878,"y":33.589,"w":40.89799999999999,"clr":-1,"A":"left","R":[{"T":"parachute%20payments%2C%20or%20excise%20tax%20on%20insider%20stock%20compensation%20reported%20on%20line%2060.%20Also%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.878,"y":34.276,"w":43.64199999999995,"clr":-1,"A":"left","R":[{"T":"include%20any%20amount%20from%20Form%205329%2C%20Parts%20III%2C%20IV%2C%20V%2C%20VI%2C%20VII%2C%20or%20VIII%20reported%20on%20Form%201040%2C%20line%2058%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":34.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.089,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2031%20from%20line%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":35.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":35.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.839,"w":16.95200000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20from%20Form%201040%2C%20line%2038","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":35.839,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":35.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.589,"w":54.07199999999994,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2029%20above%20by%20line%2033.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%203%20places).%20Do%20not%20enter%20more%20than%201.000%20","S":-1,"TS":[0,10.29,0,0]}]},{"oc":"#221f1f","x":81.184,"y":36.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.292,"y":36.495,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.133,"y":36.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":37.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.339,"w":17.209000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2032%20by%20line%2034.%20This%20is%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.508,"y":37.339,"w":12.036,"clr":-1,"A":"left","R":[{"T":"tax%20allocated%20to%20the%20USVI%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.5,"y":37.339,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":37.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":3,"TS":[0,12,0,0]}]},{"x":6.294,"y":38.071,"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":38.071,"w":17.406000000000006,"clr":-1,"A":"left","R":[{"T":"Payments%20of%20Income%20Tax%20to%20the%20USVI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.839,"w":14.854000000000003,"clr":-1,"A":"left","R":[{"T":"Income%20tax%20withheld%20by%20the%20USVI%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":38.839,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":38.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.589,"w":30.18000000000001,"clr":-1,"A":"left","R":[{"T":"2013%20estimated%20tax%20payments%20and%20amount%20applied%20from%202012%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":39.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":39.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.339,"w":21.72800000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20paid%20with%20Form%204868%20(extension%20request)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.125,"y":40.339,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":40.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.05,"w":18.135000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2036%20through%2038.%20These%20are%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.94,"y":41.05,"w":12.722000000000001,"clr":-1,"A":"left","R":[{"T":"total%20payments%20to%20the%20USVI","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.563,"y":41.05,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.713,"y":40.956,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.969,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2039","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":41.807,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.839,"w":42.478999999999985,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2035%20or%20line%2039.%20Include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2072.%20On","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":42.527,"w":32.25200000000002,"clr":-1,"A":"left","R":[{"T":"the%20dotted%20line%20next%20to%20line%2072%2C%20enter%20%E2%80%9CForm%208689%E2%80%9D%20and%20show%20this%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.623,"y":42.527,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.969,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2040","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":43.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.339,"w":6.667999999999999,"clr":-1,"A":"left","R":[{"T":"Overpayment%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":21.099,"y":43.339,"w":31.695,"clr":-1,"A":"left","R":[{"T":"to%20the%20USVI.%20If%20line%2039%20is%20more%20than%20line%2035%2C%20subtract%20line%2035%20from%20line%2039%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":69.876,"y":43.339,"w":6.734999999999999,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":80.969,"y":43.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2041","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":44.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.089,"w":12.485000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2041%20you%20want%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.2,"y":44.089,"w":7.519999999999999,"clr":-1,"A":"left","R":[{"T":"refunded%20to%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":44.089,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.713,"y":43.995,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.969,"y":44.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"%2042","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":44.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.839,"w":12.485000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2041%20you%20want%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.2,"y":44.839,"w":16.387000000000008,"clr":-1,"A":"left","R":[{"T":"applied%20to%20your%202014%20estimated%20tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.5,"y":44.839,"w":2.666,"clr":-1,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":44.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":45.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":45.589,"w":8.296000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20owe%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.72,"y":45.589,"w":5.649000000000001,"clr":-1,"A":"left","R":[{"T":"to%20the%20USVI.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.458,"y":45.589,"w":25.50800000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2039%20is%20less%20than%20line%2035%2C%20subtract%20line%2039%20from%20line%2035%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":71.938,"y":45.589,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.399,"y":45.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":46.402,"w":1.112,"clr":-1,"A":"left","R":[{"T":"45","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":46.402,"w":47.95699999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2044%20that%20you%20will%20pay%20when%20you%20file%20your%20income%20tax%20return.%20Include%20this%20amount%20in%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":10.878,"y":47.089,"w":48.07399999999998,"clr":-1,"A":"left","R":[{"T":"the%20total%20of%20Form%201040%2C%20line%2072.%20On%20the%20dotted%20line%20next%20to%20line%2072%2C%20enter%20%22Form%208689%22%20and%20show%20this%20amount%20%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":81.399,"y":47.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"45","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":47.857,"w":31.518,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20Form%201040%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.94,"y":47.875,"w":7.744,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2064603D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":47.821,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.294,"y":47.821,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8689","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":47.821,"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":5488,"AM":1024,"x":6.229,"y":5.768,"w":70.373,"h":0.959,"TU":"Name(s) shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5489,"AM":1024,"x":76.869,"y":5.768,"w":22.11,"h":0.959,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WAGES","EN":0},"TI":5490,"AM":0,"x":84.253,"y":7.538,"w":10.952,"h":0.833,"TU":"Line 1. Wages, salaries, tips, etc. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TXBLINT","EN":0},"TI":5491,"AM":0,"x":84.253,"y":8.288,"w":10.952,"h":0.833,"TU":"Line 2. Taxable interest. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ORDDIVS","EN":0},"TI":5492,"AM":0,"x":84.253,"y":9.038,"w":10.952,"h":0.833,"TU":"Line 3. Ordinary Dividends. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TXBLREF","EN":0},"TI":5493,"AM":0,"x":84.253,"y":9.788,"w":10.952,"h":0.833,"TU":"Line 4. Taxable refunds, credits or offsets of local USVI income taxes. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALIMONY","EN":0},"TI":5494,"AM":0,"x":84.253,"y":10.538,"w":10.952,"h":0.833,"TU":"Line 5. Alimony received. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSINC","EN":0},"TI":5495,"AM":0,"x":84.253,"y":11.288,"w":10.952,"h":0.833,"TU":"Line 6. Business income or (loss). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CAPGIN","EN":0},"TI":5496,"AM":0,"x":84.253,"y":12.038,"w":10.952,"h":0.833,"TU":"Line 7. Capital gain or (loss). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHGAIN","EN":0},"TI":5497,"AM":0,"x":84.253,"y":12.788,"w":10.952,"h":0.833,"TU":"Line 8. Other gains or (losses). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"IRADISTR","EN":0},"TI":5498,"AM":0,"x":84.253,"y":13.538,"w":10.952,"h":0.833,"TU":"Line 9. IRA distributions (taxable amount). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENSION","EN":0},"TI":5499,"AM":0,"x":84.253,"y":14.288,"w":10.952,"h":0.833,"TU":"Line 10. Pensions and annuities (taxable amount). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENTRE","EN":0},"TI":5500,"AM":0,"x":84.253,"y":15.038,"w":10.952,"h":0.833,"TU":"Line 11. Rental real estate, royalties, partnerships, S corporations, trusts, etc. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FARMINC","EN":0},"TI":5501,"AM":0,"x":84.253,"y":15.788,"w":10.952,"h":0.833,"TU":"Line 12. Farm income or (loss). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNEMPLOY","EN":0},"TI":5502,"AM":0,"x":84.253,"y":16.538,"w":10.952,"h":0.833,"TU":"Line 13. Unemployment compensation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSBENES","EN":0},"TI":5503,"AM":0,"x":84.253,"y":17.288,"w":10.952,"h":0.833,"TU":"Line 14. Social security benefits (taxable amount). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_OTHINCT_1_","EN":0},"TI":5504,"AM":0,"x":38.321,"y":18.165,"w":40.941,"h":0.833,"TU":"Line 15. Other income. List type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_OTHINC_1_","EN":0},"TI":5505,"AM":0,"x":84.253,"y":18.038,"w":10.952,"h":0.833,"TU":"Line 15 Other income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTINC","EN":0},"TI":5506,"AM":1024,"x":84.253,"y":18.795,"w":10.952,"h":0.833,"TU":"Line 16. Add lines 1 through 15. This is your total USVI income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDUCEXP","EN":0},"TI":5507,"AM":0,"x":65.691,"y":20.295,"w":10.952,"h":0.833,"TU":"Line 17. Educator expenses. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSEXPS","EN":0},"TI":5508,"AM":0,"x":65.773,"y":21.755,"w":10.787,"h":0.833,"TU":"Line 18. Certain business expenses of reservists, performing artists, and fee-basis government officials. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSADEDN","EN":0},"TI":5509,"AM":0,"x":65.691,"y":22.538,"w":10.952,"h":0.833,"TU":"Line 19. Health savings account deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MOVEXPS","EN":0},"TI":5510,"AM":0,"x":65.691,"y":23.288,"w":10.952,"h":0.833,"TU":"Line 20. Moving expenses. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SETAX","EN":0},"TI":5511,"AM":0,"x":65.691,"y":24.038,"w":10.952,"h":0.833,"TU":"Line 21. Deductible part of self-employment tax. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SESEP","EN":0},"TI":5512,"AM":0,"x":65.691,"y":24.788,"w":10.952,"h":0.833,"TU":"Line 22. Self-employed SEP, SIMPLE, and qualified plans. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEHEALTH","EN":0},"TI":5513,"AM":0,"x":65.691,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 23. Self-employed health insurance deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EWDRWL","EN":0},"TI":5514,"AM":0,"x":65.691,"y":26.288,"w":10.952,"h":0.833,"TU":"Line 24. Penalty on early withdrawal of savings. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"IRADED","EN":0},"TI":5515,"AM":0,"x":65.691,"y":27.038,"w":10.952,"h":0.833,"TU":"Line 25. IRA deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STUDLOAN","EN":0},"TI":5516,"AM":0,"x":65.691,"y":27.788,"w":10.952,"h":0.833,"TU":"Line 26. Student loan interest deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TUITFEES","EN":0},"TI":5517,"AM":0,"x":65.691,"y":28.538,"w":10.952,"h":0.833,"TU":"Line 27. Tuition and fees deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT1","EN":0},"TI":5518,"AM":1024,"x":84.398,"y":29.222,"w":10.663,"h":0.833,"TU":"Line 28. Add lines 17 through 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGI","EN":0},"TI":5519,"AM":1024,"x":84.253,"y":30.045,"w":10.952,"h":0.833,"TU":"Line 29. Subtract line 28 from line 16. This is your USVI adjusted gross income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F1040L61","EN":0},"TI":5520,"AM":1024,"x":84.253,"y":31.538,"w":10.952,"h":0.833,"TU":"Line 30. Enter amount from Form 1040, line 61. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNCOLLTX","EN":0},"TI":5521,"AM":0,"x":84.398,"y":34.335,"w":10.663,"h":0.892,"TU":"Line 31. Enter the total of the amounts from Form 1040, lines 56, 57, 59a, 64a, 65, 66, and 71 (boxes c and d). Include any uncollected social security and Medicare or tier 1 RRTA tax on excess golden parachute payments, or excise tax on insider stock compensation reported on line 60. Also include any amount from Form 5329, Parts III, IV, V, VI, VII or VIII reported on Form 1040, line 58. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":5522,"AM":1024,"x":84.253,"y":35.295,"w":10.952,"h":0.833,"TU":"Line 32. Subtract line 31 from line 30. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F1040L38","EN":0},"TI":5523,"AM":1024,"x":65.711,"y":36.008,"w":10.911,"h":0.833,"TU":"Line 33. Enter amount from Form 1040, line 38. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"MULT","EN":0},"TI":5524,"AM":1024,"x":86.942,"y":36.701,"w":6.033,"h":0.833,"TU":"Line 34. Divide line 29 above by line 33. Enter the result as a decimal (rounded to at least 3 places). Do not enter more than 1.000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VITXALOC","EN":0},"TI":5525,"AM":1024,"x":84.253,"y":37.538,"w":10.952,"h":0.833,"TU":"Line 35. Multiply line 32 by line 34. This is your tax allocated to the USVI. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VITAXPD","EN":0},"TI":5526,"AM":0,"x":65.691,"y":39.045,"w":10.952,"h":0.833,"TU":"Line 36. Income tax withheld by the USVI. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTXPMT","EN":0},"TI":5527,"AM":0,"x":65.691,"y":39.788,"w":10.952,"h":0.833,"TU":"Line 37. 2013 estimated tax payments and amount applied from 2012 return. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PDWEXT","EN":0},"TI":5528,"AM":0,"x":65.691,"y":40.538,"w":10.952,"h":0.833,"TU":"Line 38. Amount paid with Form 4868 (extension request). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPMTS","EN":0},"TI":5529,"AM":1024,"x":84.398,"y":41.161,"w":10.663,"h":0.833,"TU":"Line 39. Add lines 36 through 38. These are your total payments to the USVI. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3","EN":0},"TI":5530,"AM":1024,"x":84.336,"y":42.687,"w":10.787,"h":0.833,"TU":"Line 40. Enter the smaller of line 35 or line 39. Include this amount in the total of Form 1040, line 72. On the dotted line next to line 72, enter \"Form 8689\" and show this amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPMT","EN":0},"TI":5531,"AM":1024,"x":84.253,"y":43.538,"w":10.952,"h":0.833,"TU":"Line 41. Overpayment to the USVI. If line 39 is more than 35, subtract line 35 from line 39. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":5532,"AM":1024,"x":84.253,"y":44.288,"w":10.952,"h":0.833,"TU":"Line 42. Amount of line 41 you want refunded to you. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"APPLYES","EN":0},"TI":5533,"AM":0,"x":65.711,"y":45.008,"w":10.911,"h":0.833,"TU":"Line 43. Amount of line 41 you want applied to your 2014 estimated tax. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OWED","EN":0},"TI":5534,"AM":1024,"x":84.336,"y":45.618,"w":10.787,"h":0.867,"TU":"Line 44. Amount you owe to the USVI. If line 39 is less than line 35, subtract line 39 from line 35. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY","EN":0},"TI":5535,"AM":0,"x":84.336,"y":47.132,"w":10.787,"h":0.838,"TU":"Line 45. Enter the amount from line 44 that you will pay when you file your income tax return. Include this amount in the total of Form 1040, line 72. On the dotted line next to line 72, enter \"Form 8689\" and show this amount."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8697.content.txt b/test/data/fd/form/F8697.content.txt new file mode 100755 index 00000000..bfaccf76 --- /dev/null +++ b/test/data/fd/form/F8697.content.txt @@ -0,0 +1,333 @@ +Form +8697 +(Rev. December 2011) +Department of the Treasury +Internal Revenue Service +Interest Computation Under the Look-Back +Method for Completed Long-Term Contracts +a + See separate instructions. +OMB No. 1545-1031 +Attachment +Sequence No. +97 +For the filing year beginning +, and ending +. See page 4 of the instructions. +Type +or +Print +Name +Number, street, and apt., room, or suite no. If a P.O. box, see page 4 of the instructions. +City or town, state, and ZIP code +A + Identifying number +B +Check applicable box to show type of taxpayer: +Corporation +S corporation +Individual +Partnership +Estate or trust +C +If you were an owner of an interest in a pass-through entity (such as a partnership or an S corporation) that holds one or more + long-term contracts to which this +interest computation relates, enter the name and employer identification number of the entity. Attach a schedule if there is mo +re than one such entity. +Name of entity +Employer identification number +Part I +Regular Method +(see instructions) + +Filing Year + +Year ended +mo. +yr. +Redetermination Years +(a) +Year ended +mo. +yr. +(b) +Year ended +mo. +yr. +(c) +Totals +(Add columns (a) +and (b).) +1 + + + + + + +Taxable income or loss for the prior years shown on tax +return (or as previously adjusted) before net operating loss +or capital loss carrybacks (other than carrybacks that must +be taken into account to properly compute interest under +section 460) (see page 4 of the instructions). If you were +required to file Form 8697 for an earlier year, enter adjusted +taxable income for the prior years from line 3, Form 8697, +for the most recent filing year that affects the prior years . +2 + + + + + + + + +Adjustment to income to reflect the difference between: +(a) + the amount of income required to be allocated for +post-February 1986 contracts completed or adjusted +during the tax year based on the +actual + contract price +and costs, and +(b) + the amount of income reported for +such contracts based on +estimated + contract price and +costs. See page 4 of the instructions and attach a +schedule listing each separate contract, unless you were +an owner of an interest in a pass-through entity reporting +this amount from Schedule K-1 or a similar statement . +3 + +Adjusted taxable income for look-back purposes. +Combine lines 1 and 2. If line 3 is a negative amount, see +instructions +.............. +4 +Income tax liability on line 3 amount using tax rates in +effect for the prior years (see page 4 of the instructions) . +5 + + + + +Income tax liability shown on return (or as previously +adjusted) for the prior years (see page 4 of the +instructions). If you were required to file Form 8697 for an +earlier year, enter the amount required to be reported on +line 4, Form 8697, for the most recent filing year that +affects the prior years +.......... +6 + +Increase or decrease in tax for the prior years on which +interest is due (or is to be refunded). Subtract line 5 from +line 4 +............... +7 +Interest due on increase, if any, shown on line 6 (see +page 4 of the instructions) +......... +8 +Interest to be refunded on decrease, if any, shown on line +6 (see page 4 of the instructions) +....... +9 + +Net amount of +interest to be refunded to you. + If line 8, column (c), exceeds line 7, column (c), enter the excess. File +Form 8697 separately; +do not + attach it to your tax return (see page 5 of the instructions) +......... +10 + +Net amount of +interest you owe. + If line 7, column (c), exceeds line 8, column (c), enter the excess. Attach Form 8697 +to your tax return. See page 5 of the instructions for where to include this amount on your return +...... +For Privacy Act and Paperwork Reduction Act Notice, see page 7 of the instructions. +Cat. No. 64598V +Form +8697 + (Rev. 12-2011) +Enter dates to calculate form +----------------Page (0) Break---------------- +Form 8697 (Rev. 12-2011) +Page +2 +Part II +Simplified Marginal Impact Method +(see instructions) +Date of each prior year to which interest +computation relates: +(a) +Year ended +mo. yr. +(b) +Year ended +mo. yr. +(c) +Year ended +mo. yr. +(d) +Totals +(Add columns (a), +(b), and (c).) +1 + + + + + + + + +Adjustment to regular taxable income to reflect the +difference between: +(a) + the amount of such income required +to be allocated for post-February 1986 contracts completed +or adjusted during the tax year based on +actual + contract +price and costs, and +(b) + the amount of such income +reported for such contracts based on +estimated + contract +price and costs. See page 6 of the instructions and attach a +schedule listing each separate contract, unless you were an +owner of an interest in a pass-through entity reporting this +amount from Schedule K-1 or a similar statement . . . +2 + +Increase or decrease in regular tax for prior years. Multiply +line 1 in each column by the applicable regular tax rate +(see page 6 of the instructions) +........ +Note: + For prior years beginning before 1987, skip lines 3 +and 4 and enter on line 5 the amount from line 2. +3 + + + + + + + + +Adjustment to alternative minimum taxable income to reflect +the difference between: +(a) + the amount of such income +required to be allocated for post-February 1986 contracts +completed or adjusted during the tax year based on +actual +contract price and costs, and +(b) + the amount of such income +reported for such contracts based on +estimated + contract +price and costs. See page 6 of the instructions and attach a +schedule listing each separate contract, unless you were an +owner of an interest in a pass-through entity reporting this +amount from Schedule K-1 or a similar statement . . . +4 + +Increase or decrease in alternative minimum tax (AMT) for +prior years. Multiply line 3 in each column by the +applicable AMT rate (see page 6 of the instructions) . +5 +Enter the +larger + of line 2 or line 4. See page 6 of the +instructions if either amount is negative +..... +Pass-through entities: +Skip line 6 and enter on line 7 the +amount from line 5. +6 + + + + + +Overpayment ceiling. For each column in which line 5 is a +negative number, enter your total tax liability for the prior year, +as adjusted for past applications of the look-back method +and after net operating loss, capital loss, net section 1256 +contracts loss, and credit carryovers and carrybacks to that +year. For each column in which line 5 is a positive number, +leave line 6 blank and enter on line 7 the amount from line 5 +7 + + +Increase or decrease in tax for the prior years on which interest is +due (or is to be refunded). Enter the amount from line 5 or line 6, +whichever is smaller. Treat both numbers as positive when making +this comparison, but enter the amount as a negative number . +8 +Interest due on increase, if any, shown on line 7 (see page +6 of the instructions) +........... +9 +Interest to be refunded on decrease, if any, shown on line +7 (see page 6 of the instructions) +....... +10 +Net amount of +interest to be refunded to you. + If line 9, column (d), exceeds line 8, column (d), enter the excess. File +Form 8697 separately; +do not + attach it to your tax return (see page 6 of the instructions) +......... +11 +Net amount of +interest you owe. + If line 8, column (d), exceeds line 9, column (d), enter the excess. Attach Form 8697 +to your tax return. See page 6 of the instructions for where to include this amount on your return +...... +Signature(s) +Complete this section + only +if this form is being filed separately. +Sign +Here +Under penalties of perjury, I declare that I have examined this form, including accompanying schedules and statements, and to t +he best of my knowledge +and belief, it is true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of whi +ch preparer has any knowledge. +▶ +Your signature +Date +Spouse's signature. If a joint return, both must sign +Date +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer's signature +Date +Check if +self-employed +PTIN +Firm’s name +a +Firm's EIN +a +Firm's address +a +Phone no. +Form +8697 + (Rev. 12-2011) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8697.fields.json b/test/data/fd/form/F8697.fields.json new file mode 100755 index 00000000..72db4283 --- /dev/null +++ b/test/data/fd/form/F8697.fields.json @@ -0,0 +1 @@ +[{"id":"A24RB","type":"radio","calc":false,"value":"BX1"},{"id":"A24RB","type":"radio","calc":false,"value":"BX4"},{"id":"A24RB","type":"radio","calc":false,"value":"BX2"},{"id":"A24RB","type":"radio","calc":false,"value":"BX5"},{"id":"A24RB","type":"radio","calc":false,"value":"BX3"},{"id":"DATEBEG","type":"date","calc":false,"value":""},{"id":"DATEEND","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"ENTYNAME","type":"alpha","calc":false,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"MO1","type":"date","calc":false,"value":""},{"id":"YR1","type":"date","calc":false,"value":""},{"id":"MONTH_RMO1_1_","type":"date","calc":false,"value":""},{"id":"YEAR_RYR1_1_","type":"date","calc":false,"value":""},{"id":"MONTH_RMO1_2_","type":"date","calc":false,"value":""},{"id":"YEAR_RYR1_2_","type":"date","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"A7_RL1_1_","type":"number","calc":false,"value":""},{"id":"A7_RL1_2_","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"A8_RL2_1_","type":"number","calc":false,"value":""},{"id":"A8_RL2_2_","type":"number","calc":false,"value":""},{"id":"L2D","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"A26_RL3_1_","type":"number","calc":false,"value":""},{"id":"A26_RL3_2_","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"A10_RL4_1_","type":"number","calc":false,"value":""},{"id":"A10_RL4_2_","type":"number","calc":false,"value":""},{"id":"A29_L5_1_","type":"number","calc":false,"value":""},{"id":"A29_L5_2_","type":"number","calc":false,"value":""},{"id":"A31_L6_1_","type":"number","calc":true,"value":""},{"id":"A31_L6_2_","type":"number","calc":true,"value":""},{"id":"A33_L7_1_","type":"number","calc":false,"value":""},{"id":"A33_L7_2_","type":"number","calc":false,"value":""},{"id":"L7D","type":"number","calc":false,"value":""},{"id":"A35_L8_1_","type":"number","calc":false,"value":""},{"id":"A35_L8_2_","type":"number","calc":false,"value":""},{"id":"L8D","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"MONTH2_P2MO1_1_","type":"date","calc":false,"value":""},{"id":"YEAR2_P2YR1_1_","type":"date","calc":false,"value":""},{"id":"MONTH2_P2MO1_2_","type":"date","calc":false,"value":""},{"id":"YEAR2_P2YR1_2_","type":"date","calc":false,"value":""},{"id":"MONTH2_P2MO1_3_","type":"date","calc":false,"value":""},{"id":"YEAR2_P2YR1_3_","type":"date","calc":false,"value":""},{"id":"A15_L21_1_","type":"number","calc":false,"value":""},{"id":"A15_L21_2_","type":"number","calc":false,"value":""},{"id":"A15_L21_3_","type":"number","calc":false,"value":""},{"id":"A16_L22_1_","type":"number","calc":false,"value":""},{"id":"A16_L22_2_","type":"number","calc":false,"value":""},{"id":"A16_L22_3_","type":"number","calc":false,"value":""},{"id":"A17_L23_1_","type":"number","calc":false,"value":""},{"id":"A17_L23_2_","type":"number","calc":false,"value":""},{"id":"A17_L23_3_","type":"number","calc":false,"value":""},{"id":"A18_L24_1_","type":"number","calc":false,"value":""},{"id":"A18_L24_2_","type":"number","calc":false,"value":""},{"id":"A18_L24_3_","type":"number","calc":false,"value":""},{"id":"A19_L25_1_","type":"number","calc":true,"value":""},{"id":"A19_L25_2_","type":"number","calc":true,"value":""},{"id":"A19_L25_3_","type":"number","calc":true,"value":""},{"id":"A20_L26_1_","type":"number","calc":false,"value":""},{"id":"A20_L26_2_","type":"number","calc":false,"value":""},{"id":"A20_L26_3_","type":"number","calc":false,"value":""},{"id":"A21_L27_1_","type":"number","calc":true,"value":""},{"id":"A21_L27_2_","type":"number","calc":true,"value":""},{"id":"A21_L27_3_","type":"number","calc":true,"value":""},{"id":"A22_L28_1_","type":"number","calc":false,"value":""},{"id":"A22_L28_2_","type":"number","calc":false,"value":""},{"id":"A22_L28_3_","type":"number","calc":false,"value":""},{"id":"L8D2","type":"number","calc":false,"value":""},{"id":"A23_L29_1_","type":"number","calc":false,"value":""},{"id":"A23_L29_2_","type":"number","calc":false,"value":""},{"id":"A23_L29_3_","type":"number","calc":false,"value":""},{"id":"L9D2","type":"number","calc":false,"value":""},{"id":"L102","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"PREPSIG","type":"alpha","calc":true,"value":"Not for use by paid preparers"},{"id":"PNAM","type":"alpha","calc":true,"value":"Self-prepared"}] \ No newline at end of file diff --git a/test/data/fd/form/F8697.json b/test/data/fd/form/F8697.json new file mode 100755 index 00000000..ca38315f --- /dev/null +++ b/test/data/fd/form/F8697.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8697 (Rev. December 2011)","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.75,"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,"w":0.75,"l":39.686},{"oc":"#221f1f","x":45.745,"y":6,"w":0.75,"l":29.786},{"oc":"#221f1f","x":75.445,"y":6,"w":0.75,"l":23.598},{"oc":"#221f1f","x":16.045,"y":7.5,"w":0.75,"l":57.011},{"oc":"#221f1f","x":16.045,"y":9,"w":0.75,"l":57.011},{"oc":"#221f1f","x":72.97,"y":7.5,"w":0.75,"l":26.073},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.145,"y":13.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.62,"y":10.5,"w":0.75,"l":90.424},{"oc":"#221f1f","x":8.62,"y":13.5,"w":1.125,"l":69.386},{"oc":"#221f1f","x":77.92,"y":13.5,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.145,"y":15,"w":0.75,"l":92.899},{"oc":"#221f1f","x":48.22,"y":16.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":18.75,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":50.796,"y":18.75,"w":0.75,"l":3.697},{"dsh":1,"oc":"#221f1f","x":56.606,"y":18.75,"w":0.75,"l":4.075},{"oc":"#221f1f","x":60.595,"y":16.5,"w":0.75,"l":24.836},{"oc":"#221f1f","x":60.595,"y":18.75,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":63.171,"y":18.75,"w":0.75,"l":3.697},{"dsh":1,"oc":"#221f1f","x":68.981,"y":18.75,"w":0.75,"l":4.075},{"oc":"#221f1f","x":72.97,"y":18.75,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":75.546,"y":18.75,"w":0.75,"l":3.697},{"dsh":1,"oc":"#221f1f","x":81.22,"y":18.75,"w":0.75,"l":4.211},{"oc":"#221f1f","x":48.22,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":18.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":85.345,"y":21,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":27.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":60.595,"y":27.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":72.97,"y":27.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":85.345,"y":27.75,"w":1.125,"l":13.698},{"oc":"#221f1f","x":48.22,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":27.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":38.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":38.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":38.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":60.595,"y":39.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":39.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":39.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":41.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":85.345,"y":42.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.5,"l":55.774},{"oc":"#221f1f","x":61.832,"y":44.25,"w":1.5,"l":21.123},{"oc":"#221f1f","x":82.87,"y":44.25,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.532},{"oc":"#221f1f","x":21.038,"y":3.735,"w":1.5,"l":0.522},{"oc":"#221f1f","x":21.038,"y":4.192,"w":1.5,"l":1.089},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":16.087,"y":5.984,"w":0.75,"l":4.531},{"oc":"#221f1f","x":73.013,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":16.087,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":16.087,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":5.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":11.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.263,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":16.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":48.263,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":16.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":16.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":85.388,"y":14.984,"w":0.75,"l":3.781},{"oc":"#221f1f","x":48.263,"y":18.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.638,"y":18.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":18.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":85.388,"y":18.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":48.263,"y":20.984,"w":0.75,"l":6.789},{"oc":"#221f1f","x":60.638,"y":20.984,"w":0.75,"l":6.789},{"oc":"#221f1f","x":85.388,"y":20.984,"w":0.75,"l":6.789},{"oc":"#221f1f","x":73.013,"y":20.984,"w":0.75,"l":6.789},{"oc":"#221f1f","x":85.388,"y":20.984,"w":0.75,"l":6.789},{"oc":"#221f1f","x":48.263,"y":27.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.638,"y":27.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":27.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":85.388,"y":27.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":48.263,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":31.484,"w":0.75,"l":4.531},{"oc":"#221f1f","x":48.263,"y":31.484,"w":0.75,"l":4.531},{"oc":"#221f1f","x":60.638,"y":31.484,"w":0.75,"l":4.531},{"oc":"#221f1f","x":73.013,"y":31.484,"w":0.75,"l":4.531},{"oc":"#221f1f","x":85.388,"y":31.484,"w":0.75,"l":4.531},{"oc":"#221f1f","x":60.638,"y":35.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":48.263,"y":35.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.638,"y":35.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":35.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":85.388,"y":35.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.638,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":39.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":39.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":39.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":39.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":39.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":43.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":13.848,"w":5.767,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":18.75,"w":13.612,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":27.75,"w":13.612,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":30,"w":13.612,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":48.263,"y":31.5,"w":12.375,"h":4.5,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":31.5,"w":13.612,"h":4.5,"clr":-1},{"oc":"#bfc0c4","x":48.263,"y":36,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":36,"w":13.612,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":48.263,"y":38.25,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":48.263,"y":39.75,"w":12.375,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.57,"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.57,"w":2.34,"clr":-1,"A":"left","R":[{"T":"8697%20","S":-1,"TS":[0,26.9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.343,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202011)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.9370000000000003,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.375,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":29.22,"y":2.123,"w":19.519999999999992,"clr":-1,"A":"left","R":[{"T":"Interest%20Computation%20Under%20the%20Look-Back%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":28.691,"y":3.173,"w":19.959999999999994,"clr":-1,"A":"left","R":[{"T":"Method%20for%20Completed%20Long-Term%20Contracts%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.069,"y":4.011,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":43.971,"y":3.8230000000000004,"w":13.019000000000004,"clr":-1,"A":"left","R":[{"T":"%20See%20separate%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":2.347,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1031%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.619,"y":3.6879999999999997,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.619,"y":4.196,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.931,"y":4.196,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"97%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.067,"w":12.668000000000003,"clr":-1,"A":"left","R":[{"T":"For%20the%20filing%20year%20beginning%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":45.709,"y":5.067,"w":5.836,"clr":-1,"A":"left","R":[{"T":"%2C%20and%20ending%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":75.409,"y":5.067,"w":14.485000000000003,"clr":-1,"A":"left","R":[{"T":".%20See%20page%204%20of%20the%20instructions.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":9.495,"y":7.173,"w":2.593,"clr":-1,"A":"left","R":[{"T":"Type%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.285,"y":7.666,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.529,"y":8.16,"w":2.259,"clr":-1,"A":"left","R":[{"T":"Print","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.267,"y":5.687,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.525,"y":7.187,"w":39.56699999999997,"clr":-1,"A":"left","R":[{"T":"Number%2C%20street%2C%20and%20apt.%2C%20room%2C%20or%20suite%20no.%20If%20a%20P.O.%20box%2C%20see%20page%204%20of%20the%20instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.525,"y":8.687,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.45,"y":5.687,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.609,"y":5.687,"w":8.892000000000001,"clr":-1,"A":"left","R":[{"T":"%20Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.45,"y":7.187,"w":1.26,"clr":-1,"A":"left","R":[{"T":"B%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.966,"y":7.187,"w":21.613,"clr":-1,"A":"left","R":[{"T":"Check%20applicable%20box%20to%20show%20type%20of%20taxpayer%3A%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":77.094,"y":8.125,"w":5.611000000000001,"clr":-1,"A":"left","R":[{"T":"Corporation%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.469,"y":8.125,"w":6.352,"clr":-1,"A":"left","R":[{"T":"S%20corporation%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.094,"y":8.875,"w":4.538,"clr":-1,"A":"left","R":[{"T":"Individual%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.469,"y":8.875,"w":5.408000000000001,"clr":-1,"A":"left","R":[{"T":"Partnership%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.094,"y":9.625,"w":6.575000000000001,"clr":-1,"A":"left","R":[{"T":"Estate%20or%20trust%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.521,"y":10.375,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.1,"y":10.375,"w":56.044999999999945,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20an%20owner%20of%20an%20interest%20in%20a%20pass-through%20entity%20(such%20as%20a%20partnership%20or%20an%20S%20corporation)%20that%20holds%20one%20or%20more","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.078,"y":10.375,"w":15.336000000000006,"clr":-1,"A":"left","R":[{"T":"%20long-term%20contracts%20to%20which%20this%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.113,"y":10.9,"w":56.052999999999955,"clr":-1,"A":"left","R":[{"T":"interest%20computation%20relates%2C%20enter%20the%20name%20and%20employer%20identification%20number%20of%20the%20entity.%20Attach%20a%20schedule%20if%20there%20is%20mo","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.552,"y":10.9,"w":10.763,"clr":-1,"A":"left","R":[{"T":"re%20than%20one%20such%20entity.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.1,"y":11.687,"w":6.798000000000002,"clr":-1,"A":"left","R":[{"T":"Name%20of%20entity%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.4,"y":11.687,"w":15.215000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":6.625,"y":13.669,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.875,"y":13.696,"w":7.925000000000001,"clr":-1,"A":"left","R":[{"T":"Regular%20Method%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.496,"y":13.696,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":50.967,"y":15.107,"w":4.703,"clr":-1,"A":"left","R":[{"T":"Filing%20Year","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.103,"y":16.963,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Year%20ended%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":48.275,"y":17.812,"w":1.983,"clr":-1,"A":"left","R":[{"T":"mo.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.699,"y":17.812,"w":1.389,"clr":-1,"A":"left","R":[{"T":"yr.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.747,"y":15.107,"w":10.205000000000002,"clr":-1,"A":"left","R":[{"T":"Redetermination%20Years","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.874,"y":16.25,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.478,"y":16.963,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Year%20ended%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.65,"y":17.812,"w":1.983,"clr":-1,"A":"left","R":[{"T":"mo.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.074,"y":17.812,"w":1.389,"clr":-1,"A":"left","R":[{"T":"yr.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.227,"y":16.25,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.853,"y":16.963,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Year%20ended%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.025,"y":17.812,"w":1.983,"clr":-1,"A":"left","R":[{"T":"mo.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.313,"y":17.812,"w":1.389,"clr":-1,"A":"left","R":[{"T":"yr.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.242,"y":15.062,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.306,"y":15.75,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.431,"y":16.437,"w":7.779999999999999,"clr":-1,"A":"left","R":[{"T":"(Add%20columns%20(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.771,"y":17.124,"w":3.8899999999999997,"clr":-1,"A":"left","R":[{"T":"and%20(b).)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.648,"y":15.642,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.642,"w":25.074999999999996,"clr":-1,"A":"left","R":[{"T":"Taxable%20income%20or%20loss%20for%20the%20prior%20years%20shown%20on%20tax%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.267,"w":26.299000000000003,"clr":-1,"A":"left","R":[{"T":"return%20(or%20as%20previously%20adjusted)%20before%20net%20operating%20loss%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.892,"w":26.504999999999995,"clr":-1,"A":"left","R":[{"T":"or%20capital%20loss%20carrybacks%20(other%20than%20carrybacks%20that%20must%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.517,"w":25.804000000000006,"clr":-1,"A":"left","R":[{"T":"be%20taken%20into%20account%20to%20properly%20compute%20interest%20under%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.886,"y":18.142,"w":25.207,"clr":-1,"A":"left","R":[{"T":"section%20460)%20(see%20page%204%20of%20the%20instructions).%20If%20you%20were%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.881,"y":18.767,"w":26.819,"clr":-1,"A":"left","R":[{"T":"required%20to%20file%20Form%208697%20for%20an%20earlier%20year%2C%20enter%20adjusted%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.878,"y":19.392,"w":25.932000000000006,"clr":-1,"A":"left","R":[{"T":"taxable%20income%20for%20the%20prior%20years%20from%20line%203%2C%20Form%208697%2C%20","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.879,"y":20.017,"w":25.61399999999999,"clr":-1,"A":"left","R":[{"T":"for%20the%20most%20recent%20filing%20year%20that%20affects%20the%20prior%20years%20.","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":7.648,"y":21.132,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":21.132,"w":25.115999999999996,"clr":-1,"A":"left","R":[{"T":"Adjustment%20to%20income%20to%20reflect%20the%20difference%20between%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.885,"y":21.757,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.868,"y":21.757,"w":22.728,"clr":-1,"A":"left","R":[{"T":"%20the%20amount%20of%20income%20required%20to%20be%20allocated%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.885,"y":22.382,"w":23.951000000000004,"clr":-1,"A":"left","R":[{"T":"post-February%201986%20contracts%20completed%20or%20adjusted%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.885,"y":23.007,"w":14.763000000000005,"clr":-1,"A":"left","R":[{"T":"during%20the%20tax%20year%20based%20on%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.246,"y":23.007,"w":2.925,"clr":-1,"A":"left","R":[{"T":"actual","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":37.563,"y":23.007,"w":6.76,"clr":-1,"A":"left","R":[{"T":"%20contract%20price%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.882,"y":23.632,"w":6.910000000000002,"clr":-1,"A":"left","R":[{"T":"and%20costs%2C%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.46,"y":23.632,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.473,"y":23.632,"w":15.912000000000004,"clr":-1,"A":"left","R":[{"T":"%20the%20amount%20of%20income%20reported%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.879,"y":24.257,"w":11.355000000000002,"clr":-1,"A":"left","R":[{"T":"such%20contracts%20based%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":27.719,"y":24.257,"w":4.738,"clr":-1,"A":"left","R":[{"T":"estimated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.54,"y":24.257,"w":8.724,"clr":-1,"A":"left","R":[{"T":"%20contract%20price%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.879,"y":24.882,"w":22.487,"clr":-1,"A":"left","R":[{"T":"costs.%20See%20page%204%20of%20the%20instructions%20and%20attach%20a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.875,"y":25.507,"w":25.577,"clr":-1,"A":"left","R":[{"T":"schedule%20listing%20each%20separate%20contract%2C%20unless%20you%20were%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.875,"y":26.132,"w":25.689000000000007,"clr":-1,"A":"left","R":[{"T":"an%20owner%20of%20an%20interest%20in%20a%20pass-through%20entity%20reporting%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.879,"y":26.757,"w":24.13800000000001,"clr":-1,"A":"left","R":[{"T":"this%20amount%20from%20Schedule%20K-1%20or%20a%20similar%20statement%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.117,"y":26.757,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":27.632,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.632,"w":22.30099999999999,"clr":-1,"A":"left","R":[{"T":"Adjusted%20taxable%20income%20for%20look-back%20purposes.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.885,"y":28.32,"w":25.712000000000003,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201%20and%202.%20If%20line%203%20is%20a%20negative%20amount%2C%20see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.885,"y":29.007,"w":5.186,"clr":-1,"A":"left","R":[{"T":"instructions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.31,"y":29.007,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":29.888,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.882,"w":24.191000000000006,"clr":-1,"A":"left","R":[{"T":"Income%20tax%20liability%20on%20line%203%20amount%20using%20tax%20rates%20in%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":30.507,"w":25.00200000000001,"clr":-1,"A":"left","R":[{"T":"effect%20for%20the%20prior%20years%20(see%20page%204%20of%20the%20instructions).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":31.881999999999998,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.881999999999998,"w":23.687,"clr":-1,"A":"left","R":[{"T":"Income%20tax%20liability%20shown%20on%20return%20(or%20as%20previously%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.883,"y":32.507,"w":20.873000000000005,"clr":-1,"A":"left","R":[{"T":"adjusted)%20for%20the%20prior%20years%20(see%20page%204%20of%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.132,"w":26.133000000000006,"clr":-1,"A":"left","R":[{"T":"instructions).%20%20If%20you%20were%20required%20to%20file%20Form%208697%20for%20an%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.883,"y":33.757,"w":25.709,"clr":-1,"A":"left","R":[{"T":"earlier%20year%2C%20%20enter%20the%20amount%20required%20to%20be%20reported%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.885,"y":34.382,"w":23.933000000000007,"clr":-1,"A":"left","R":[{"T":"line%204%2C%20Form%20%208697%2C%20for%20the%20most%20recent%20filing%20year%20that%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.881,"y":35.007,"w":10.278000000000002,"clr":-1,"A":"left","R":[{"T":"affects%20the%20prior%20%20years%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.556,"y":35.007,"w":15,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":35.882,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.882,"w":24.852,"clr":-1,"A":"left","R":[{"T":"Increase%20or%20decrease%20in%20tax%20for%20the%20prior%20years%20on%20which%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":36.57,"w":25.487000000000002,"clr":-1,"A":"left","R":[{"T":"interest%20is%20due%20(or%20is%20to%20be%20refunded).%20Subtract%20line%205%20from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":37.257,"w":2.649,"clr":-1,"A":"left","R":[{"T":"line%204%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.254,"y":37.257,"w":22.5,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":38.07,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.07,"w":23.652000000000008,"clr":-1,"A":"left","R":[{"T":"Interest%20due%20on%20increase%2C%20if%20any%2C%20shown%20on%20line%206%20(see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.893,"y":38.757,"w":11.910000000000002,"clr":-1,"A":"left","R":[{"T":"page%204%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.631,"y":38.757,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":39.569,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.569,"w":26.227,"clr":-1,"A":"left","R":[{"T":"Interest%20to%20be%20refunded%20on%20decrease%2C%20if%20any%2C%20shown%20on%20%20line%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":40.257,"w":14.855000000000002,"clr":-1,"A":"left","R":[{"T":"6%20(see%20page%204%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.754,"y":40.257,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":41.07,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.07,"w":6.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20amount%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.276,"y":41.07,"w":14.409000000000004,"clr":-1,"A":"left","R":[{"T":"interest%20to%20be%20refunded%20to%20you.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.526,"y":41.07,"w":31.136000000000006,"clr":-1,"A":"left","R":[{"T":"%20If%20line%208%2C%20column%20(c)%2C%20exceeds%20line%207%2C%20column%20(c)%2C%20enter%20the%20excess.%20File%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.757,"w":10.281000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208697%20separately%3B%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.027,"y":41.757,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":29.229,"y":41.757,"w":26.15300000000001,"clr":-1,"A":"left","R":[{"T":"%20attach%20it%20to%20your%20tax%20return%20(see%20page%205%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.753,"y":41.757,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":42.57,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":42.57,"w":6.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20amount%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.239,"y":42.57,"w":8.184999999999999,"clr":-1,"A":"left","R":[{"T":"interest%20you%20owe.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.675,"y":42.57,"w":37.60299999999999,"clr":-1,"A":"left","R":[{"T":"%20If%20line%207%2C%20column%20(c)%2C%20exceeds%20line%208%2C%20column%20(c)%2C%20enter%20the%20excess.%20Attach%20Form%208697%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":43.257,"w":43.13799999999997,"clr":-1,"A":"left","R":[{"T":"to%20your%20tax%20return.%20See%20page%205%20of%20the%20instructions%20for%20where%20to%20include%20this%20amount%20on%20your%20return%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.942,"y":43.257,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":44.107,"w":40.46399999999999,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%207%20of%20the%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":67.709,"y":44.125,"w":7.651,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2064598V%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.793,"y":44.071,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.27,"y":44.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8697%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.57,"y":44.071,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2011)%20","S":2,"TS":[0,10,0,0]}]},{"x":21.406,"y":4.281,"w":114.55200000000002,"clr":0,"A":"left","R":[{"T":"Enter%20dates%20to%20calculate%20form","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATEBEG","EN":0},"TI":5536,"AM":0,"x":24.646,"y":5.308,"w":21.009,"h":0.833,"TU":"For filing year beginning.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATEEND","EN":0},"TI":5537,"AM":0,"x":54.705,"y":5.308,"w":20.56,"h":0.833,"TU":"and ending.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5538,"AM":0,"x":16.424,"y":6.626,"w":56.027,"h":0.859,"TU":"Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5539,"AM":0,"x":73.67,"y":6.68,"w":25.385,"h":0.833,"TU":"Line A. Identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":5540,"AM":0,"x":16.232,"y":8.18,"w":56.465,"h":0.833,"TU":"Number, street, and apt. room, suite no. If a P.O. box, see page 4 of the instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":5545,"AM":0,"x":16.232,"y":9.598,"w":37.994,"h":0.887,"TU":"City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":5546,"AM":0,"x":54.824,"y":9.552,"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":5547,"AM":0,"x":61.23,"y":9.597,"w":11.272,"h":0.856,"TU":"ZIP"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ENTYNAME","EN":0},"TI":5549,"AM":0,"x":6.293,"y":12.602,"w":71.161,"h":0.852,"TU":"Line C. Name of Entity."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":5550,"AM":0,"x":78.556,"y":12.653,"w":20.424,"h":0.833,"TU":"Employer identification number.","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MO1","EN":0},"TI":5551,"AM":0,"x":50.705,"y":17.928,"w":3.823,"h":0.833,"TU":"Filing Year. Year Ended Month.","MV":"MM"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR1","EN":0},"TI":5552,"AM":0,"x":56.41,"y":17.928,"w":3.823,"h":0.833,"TU":"Filing year. Year ended year.","MV":"YYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MONTH_RMO1_1_","EN":0},"TI":5553,"AM":0,"x":63.138,"y":17.957,"w":3.822,"h":0.833,"TU":"Redetermination Years. Column (a). Year Ended Month.","MV":"MM"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR_RYR1_1_","EN":0},"TI":5554,"AM":0,"x":68.715,"y":17.957,"w":3.823,"h":0.833,"TU":"Redetermination Years. Column (a). Year ended year.","MV":"YYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MONTH_RMO1_2_","EN":0},"TI":5555,"AM":0,"x":75.435,"y":17.901,"w":3.823,"h":0.833,"TU":"Redetermination Years. Column (b). Year Ended Month.","MV":"MM"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR_RYR1_2_","EN":0},"TI":5556,"AM":0,"x":81.141,"y":17.901,"w":3.822,"h":0.833,"TU":"Redetermination Years. Column (b). Year ended year","MV":"YYYY"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5557,"AM":0,"x":48.469,"y":20.189,"w":11.983,"h":0.833,"TU":"Line 1. Filing Year. Taxable income or loss for the prior years shown on tax return (or as previously adjusted) before net operating loss or capital loss carrybacks (other than carrybacks that must be taken into account to properly compute interest under section 460) (see page 4 of the instructions). If you were required to file Form 8697 for an earlier year, enter the adjusted taxable income for the prior years from line 3, Form 8697, for the most recent filing year that affects the prior years."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A7_RL1_1_","EN":0},"TI":5558,"AM":0,"x":60.902,"y":20.218,"w":11.983,"h":0.833,"TU":"Line 1. Redetermination Years. Taxable income or loss for the prior years shown on tax return (or as previously adjusted) before net operating loss or capital loss carrybacks (other than carrybacks that must be taken into account to properly compute interest under section 460) (see page 4 of the instructions). If you were required to file Form 8697 for an earlier year, enter the adjusted taxable income for the prior years from line 3, Form 8697, for the most recent filing year that affects the prior years."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A7_RL1_2_","EN":0},"TI":5559,"AM":0,"x":73.199,"y":20.163,"w":11.983,"h":0.833,"TU":"Line 1. Redetermination Years. Taxable income or loss for the prior years shown on tax return (or as previously adjusted) before net operating loss or capital loss carrybacks (other than carrybacks that must be taken into account to properly compute interest under section 460) (see page 4 of the instructions). If you were required to file Form 8697 for an earlier year, enter the adjusted taxable income for the prior years from line 3, Form 8697, for the most recent filing year that affects the prior years."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5560,"AM":0,"x":48.437,"y":26.939,"w":11.983,"h":0.833,"TU":"Line 2. Filing Year. Adjustment to income to reflect the difference between: (a) the amount of income required to be allocated for post-February 1985 contracts completed or adjusted during the tax year based on the actual contract price and costs, and (b) the amount of income reported for such contracts based on estimated contract price and costs. See page 4 of the instructions and attach a schedule listing each separate contract, unless you were an owner of an interest in a pass-through entity reporting this amount from Schedule K-1 or a similar statement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A8_RL2_1_","EN":0},"TI":5561,"AM":0,"x":60.87,"y":26.968,"w":11.983,"h":0.833,"TU":"Line 2. Redetermination Years. Column (a). Adjustment to income to reflect the difference between: (a) the amount of income required to be allocated for post-February 1985 contracts completed or adjusted during the tax year based on the actual contract price and costs, and (b) the amount of income reported for such contracts based on estimated contract price and costs. See page 4 of the instructions and attach a schedule listing each separate contract, unless you were an owner of an interest in a pass-through entity reporting this amount from Schedule K-1 or a similar statement"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A8_RL2_2_","EN":0},"TI":5562,"AM":0,"x":73.167,"y":26.913,"w":11.983,"h":0.833,"TU":"Line 2. Redetermination Years. Column (b). Adjustment to income to reflect the difference between: (a) the amount of income required to be allocated for post-February 1985 contracts completed or adjusted during the tax year based on the actual contract price and costs, and (b) the amount of income reported for such contracts based on estimated contract price and costs. See page 4 of the instructions and attach a schedule listing each separate contract, unless you were an owner of an interest in a pass-through entity reporting this amount from Schedule K-1 or a similar statement"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2D","EN":0},"TI":5563,"AM":0,"x":86.17,"y":26.884,"w":11.983,"h":0.833,"TU":"Line 2. Column (c). Totals. (Add columns (a) and (b).)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5564,"AM":0,"x":48.395,"y":29.164,"w":11.983,"h":0.833,"TU":"Line 3. Filing Year. Adjusted taxable income for look-back purposes. Combine lines 1 and 2. If line 3 is a negative amount, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A26_RL3_1_","EN":0},"TI":5565,"AM":0,"x":60.828,"y":29.193,"w":11.983,"h":0.833,"TU":"Line 3. Redetermination Years. Column (a). Adjusted taxable income for look-back purposes. Combine lines 1 and 2. If line 3 is a negative amount, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A26_RL3_2_","EN":0},"TI":5566,"AM":0,"x":73.125,"y":29.138,"w":11.983,"h":0.833,"TU":"Line 3. Redetermination Years. Column (b). Adjusted taxable income for look-back purposes. Combine lines 1 and 2. If line 3 is a negative amount, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5567,"AM":0,"x":48.397,"y":30.627,"w":11.983,"h":0.833,"TU":"Line 4. Filing Year. Income tax liability on line 3 amount using tax rates in effect for the prior years (see page 4 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A10_RL4_1_","EN":0},"TI":5568,"AM":0,"x":60.83,"y":30.656,"w":11.983,"h":0.833,"TU":"Line 4. Redetermination Years. Column (a). Income tax liability on line 3 amount using tax rates in effect for the prior years (see page 4 of the instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A10_RL4_2_","EN":0},"TI":5569,"AM":0,"x":73.127,"y":30.601,"w":11.983,"h":0.833,"TU":"Line 4. Redetermination Years. Column (b). Income tax liability on line 3 amount using tax rates in effect for the prior years (see page 4 of the instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A29_L5_1_","EN":0},"TI":5570,"AM":0,"x":60.886,"y":35.223,"w":11.983,"h":0.833,"TU":"Line 5. Column (a). Income tax liability shown on return (or as previously adjusted) for the prior years (see page 4 of the instructions). If you were required to file Form 8697 for an earlier year, enter the amount required to be reported on line 4, Form 8697, for the most recent filing year that affects the prior years."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A29_L5_2_","EN":0},"TI":5571,"AM":0,"x":73.183,"y":35.167,"w":11.983,"h":0.833,"TU":"Line 5. Column (b). Income tax liability shown on return (or as previously adjusted) for the prior years (see page 4 of the instructions). If you were required to file Form 8697 for an earlier year, enter the amount required to be reported on line 4, Form 8697, for the most recent filing year that affects the prior year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_L6_1_","EN":0},"TI":5572,"AM":1024,"x":60.844,"y":37.448,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_L6_2_","EN":0},"TI":5573,"AM":1024,"x":73.141,"y":37.392,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A33_L7_1_","EN":0},"TI":5574,"AM":0,"x":60.846,"y":38.887,"w":11.983,"h":0.833,"TU":"Line 7. Column (a). Interest due on increase, if any shown on line 6 (see page 4 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A33_L7_2_","EN":0},"TI":5575,"AM":0,"x":73.143,"y":38.855,"w":11.983,"h":0.833,"TU":"Line 7. Column (b). Interest due on increase, if any shown on line 6 (see page 4 of the instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7D","EN":0},"TI":5576,"AM":0,"x":85.592,"y":38.925,"w":11.983,"h":0.833,"TU":"Line 7. Column (c). Totals. (Add columns (a) and (b).)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A35_L8_1_","EN":0},"TI":5577,"AM":0,"x":60.79,"y":40.442,"w":11.983,"h":0.833,"TU":"Line 8. Column (a). Interest to be refunded on decrease, if any, shown on line 6 (see page 4 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A35_L8_2_","EN":0},"TI":5578,"AM":0,"x":73.087,"y":40.387,"w":11.983,"h":0.833,"TU":"Line 8. Column (b). Interest to be refunded on decrease, if any, shown on line 6 (see page 4 of the instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8D","EN":0},"TI":5579,"AM":0,"x":85.55,"y":40.458,"w":11.983,"h":0.833,"TU":"Line 8. Column (c). Totals. (Add columns (a) and (b).)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5580,"AM":1024,"x":85.552,"y":41.921,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5581,"AM":1024,"x":85.646,"y":43.383,"w":11.983,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1","EN":0},"TI":5541,"AM":0,"x":75.466,"y":8.151,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX4","EN":0},"TI":5542,"AM":0,"x":87.842,"y":8.091,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2","EN":0},"TI":5543,"AM":0,"x":75.454,"y":8.95,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX5","EN":0},"TI":5544,"AM":0,"x":87.747,"y":8.874,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3","EN":0},"TI":5548,"AM":0,"x":75.509,"y":9.651,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"A24RB","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":4.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":48.22,"y":6,"w":0.75,"l":37.211},{"oc":"#221f1f","x":48.22,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":8.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.22,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":33.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":35.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":36.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":36.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":72.97,"y":36.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":85.345,"y":36.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":85.345,"y":38.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":6.145,"y":39.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":40.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":44.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.807,"y":44.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":17.282,"y":43.125,"w":0.75,"l":54.536},{"oc":"#221f1f","x":71.732,"y":43.125,"w":0.75,"l":27.311},{"oc":"#221f1f","x":17.282,"y":44.25,"w":0.75,"l":54.536},{"oc":"#221f1f","x":71.732,"y":44.25,"w":0.75,"l":27.311},{"oc":"#221f1f","x":14.807,"y":45.75,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.795,"y":45.75,"w":0.75,"l":26.073},{"oc":"#221f1f","x":66.782,"y":45.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":75.445,"y":45.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.345,"y":45.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":14.807,"y":46.5,"w":0.75,"l":60.724},{"oc":"#221f1f","x":75.445,"y":46.5,"w":0.75,"l":23.598},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":48.263,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":5.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.638,"y":5.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":5.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":85.388,"y":4.484,"w":0.75,"l":3.781},{"oc":"#221f1f","x":48.263,"y":8.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":60.638,"y":8.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":73.013,"y":8.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":85.388,"y":8.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":48.263,"y":11.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.638,"y":11.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":11.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":85.388,"y":11.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":48.263,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":14.984,"w":0.75,"l":6.031},{"oc":"#221f1f","x":60.638,"y":14.984,"w":0.75,"l":6.031},{"oc":"#221f1f","x":73.013,"y":14.984,"w":0.75,"l":6.031},{"oc":"#221f1f","x":85.388,"y":14.984,"w":0.75,"l":6.031},{"oc":"#221f1f","x":48.263,"y":20.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.638,"y":20.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":20.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":85.388,"y":20.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":48.263,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":26.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":60.638,"y":26.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":73.013,"y":26.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":85.388,"y":26.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":48.263,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":60.638,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":73.013,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":85.388,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":48.263,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":14.85,"y":40.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.85,"y":41.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":71.775,"y":41.984,"w":0.75,"l":1.156},{"oc":"#221f1f","x":71.775,"y":43.109,"w":0.75,"l":1.156},{"oc":"#221f1f","x":14.85,"y":44.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":40.837,"y":44.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.825,"y":44.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":44.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":44.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.85,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":14.85,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":46.484,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.322,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":8.25,"w":13.612,"h":3,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":11.25,"w":13.612,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":13.5,"w":13.612,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":15,"w":13.612,"h":6,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":21,"w":13.612,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":23.25,"w":13.612,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":24.75,"w":13.612,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":26.25,"w":13.612,"h":4.5,"clr":-1},{"oc":"#bfc0c4","x":85.388,"y":30.75,"w":13.612,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":11.913000000000006,"clr":-1,"A":"left","R":[{"T":"Form%208697%20(Rev.%2012-2011)%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.582,"y":3.144,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.875,"y":3.196,"w":16.952,"clr":-1,"A":"left","R":[{"T":"Simplified%20Marginal%20Impact%20Method%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":44.011,"y":3.196,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.289,"y":4.309,"w":18.149000000000004,"clr":-1,"A":"left","R":[{"T":"Date%20of%20each%20prior%20year%20to%20which%20interest%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.272,"y":4.909,"w":9.447000000000003,"clr":-1,"A":"left","R":[{"T":"computation%20relates%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.499,"y":5.75,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.103,"y":6.463,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Year%20ended%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":48.276,"y":7.375,"w":3.3720000000000003,"clr":-1,"A":"left","R":[{"T":"mo.%20yr.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.852,"y":5.75,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.478,"y":6.463,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Year%20ended%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.65,"y":7.375,"w":3.3720000000000003,"clr":-1,"A":"left","R":[{"T":"mo.%20yr.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.249,"y":5.75,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.853,"y":6.463,"w":5.427,"clr":-1,"A":"left","R":[{"T":"Year%20ended%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.026,"y":7.375,"w":3.3720000000000003,"clr":-1,"A":"left","R":[{"T":"mo.%20yr.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.22,"y":4.562,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.306,"y":5.25,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.263,"y":5.937,"w":8.058,"clr":-1,"A":"left","R":[{"T":"(Add%20columns%20(a)%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.802,"y":6.624,"w":5.501000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%2C%20and%20(c).)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.648,"y":5.232,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.232,"w":22.912000000000003,"clr":-1,"A":"left","R":[{"T":"Adjustment%20to%20regular%20taxable%20income%20to%20reflect%20the%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.886,"y":5.795,"w":9.111,"clr":-1,"A":"left","R":[{"T":"difference%20between%3A%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":23.058,"y":5.795,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":24.67,"y":5.795,"w":16.747,"clr":-1,"A":"left","R":[{"T":"%20the%20amount%20of%20such%20income%20required%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.884,"y":6.357,"w":27.321,"clr":-1,"A":"left","R":[{"T":"to%20be%20allocated%20for%20post-February%201986%20contracts%20%20completed%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.882,"y":6.92,"w":18.393000000000008,"clr":-1,"A":"left","R":[{"T":"or%20adjusted%20during%20the%20tax%20year%20based%20on%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":37.379,"y":6.92,"w":2.925,"clr":-1,"A":"left","R":[{"T":"actual","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":41.517,"y":6.92,"w":4.26,"clr":-1,"A":"left","R":[{"T":"%20contract%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.885,"y":7.481999999999999,"w":9.410000000000002,"clr":-1,"A":"left","R":[{"T":"price%20and%20costs%2C%20and%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":25.703,"y":7.481999999999999,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":27.89,"y":7.481999999999999,"w":12.765000000000002,"clr":-1,"A":"left","R":[{"T":"%20the%20amount%20of%20such%20income%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.882,"y":8.045,"w":16.929000000000002,"clr":-1,"A":"left","R":[{"T":"reported%20for%20such%20contracts%20based%20on%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":34.971,"y":8.045,"w":4.738,"clr":-1,"A":"left","R":[{"T":"estimated","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":41.515,"y":8.045,"w":4.26,"clr":-1,"A":"left","R":[{"T":"%20contract%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.884,"y":8.607,"w":27.229000000000003,"clr":-1,"A":"left","R":[{"T":"price%20and%20costs.%20See%20page%206%20of%20the%20instructions%20%20and%20attach%20a%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.888,"y":9.17,"w":26.948,"clr":-1,"A":"left","R":[{"T":"schedule%20listing%20each%20separate%20contract%2C%20unless%20you%20were%20an%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.732,"w":26.18900000000001,"clr":-1,"A":"left","R":[{"T":"owner%20of%20an%20interest%20in%20a%20pass-through%20entity%20reporting%20this%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.891,"y":10.295,"w":22.267000000000003,"clr":-1,"A":"left","R":[{"T":"amount%20from%20Schedule%20K-1%20or%20a%20similar%20statement%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":41.003,"y":10.295,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":43.065,"y":10.295,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":45.127,"y":10.295,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":7.648,"y":11.132,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.132,"w":26.278000000000002,"clr":-1,"A":"left","R":[{"T":"Increase%20or%20decrease%20in%20regular%20tax%20for%20prior%20years.%20Multiply%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.886,"y":11.82,"w":24.671999999999993,"clr":-1,"A":"left","R":[{"T":"line%201%20in%20each%20column%20by%20the%20applicable%20regular%20tax%20rate%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.889,"y":12.507,"w":14.299000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20%20page%206%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.689,"y":12.507,"w":12,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.32,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.562,"y":13.32,"w":22.78000000000001,"clr":-1,"A":"left","R":[{"T":"%20For%20prior%20years%20beginning%20before%201987%2C%20skip%20lines%203%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.007,"w":21.935000000000006,"clr":-1,"A":"left","R":[{"T":"and%204%20and%20enter%20on%20line%205%20the%20amount%20from%20line%202.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":14.982,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.982,"w":27.138,"clr":-1,"A":"left","R":[{"T":"Adjustment%20to%20alternative%20minimum%20taxable%20income%20to%20reflect%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.889,"y":15.545000000000002,"w":10.797000000000004,"clr":-1,"A":"left","R":[{"T":"the%20difference%20between%3A%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":26.495,"y":15.545000000000002,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":28.486,"y":15.545000000000002,"w":12.765000000000002,"clr":-1,"A":"left","R":[{"T":"%20the%20amount%20of%20such%20income%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.886,"y":16.107,"w":25.986,"clr":-1,"A":"left","R":[{"T":"required%20to%20be%20allocated%20for%20post-February%201986%20contracts%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.882,"y":16.67,"w":23.431999999999995,"clr":-1,"A":"left","R":[{"T":"completed%20or%20adjusted%20during%20the%20tax%20year%20based%20on%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":42.905,"y":16.67,"w":3.203,"clr":-1,"A":"left","R":[{"T":"actual%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.878,"y":17.232,"w":13.392000000000005,"clr":-1,"A":"left","R":[{"T":"contract%20price%20and%20costs%2C%20and%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":28.626,"y":17.232,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":30.228,"y":17.232,"w":12.765000000000002,"clr":-1,"A":"left","R":[{"T":"%20the%20amount%20of%20such%20income%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.88,"y":17.795,"w":16.929000000000002,"clr":-1,"A":"left","R":[{"T":"reported%20for%20such%20contracts%20based%20on%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":34.968,"y":17.795,"w":4.738,"clr":-1,"A":"left","R":[{"T":"estimated","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":41.513,"y":17.795,"w":4.26,"clr":-1,"A":"left","R":[{"T":"%20contract%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.881,"y":18.357,"w":26.951000000000004,"clr":-1,"A":"left","R":[{"T":"price%20and%20costs.%20See%20page%206%20of%20the%20instructions%20and%20attach%20a%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.884,"y":18.92,"w":26.948,"clr":-1,"A":"left","R":[{"T":"schedule%20listing%20each%20separate%20contract%2C%20unless%20you%20were%20an%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.886,"y":19.482,"w":26.18900000000001,"clr":-1,"A":"left","R":[{"T":"owner%20of%20an%20interest%20in%20a%20pass-through%20entity%20reporting%20this%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.045,"w":22.823,"clr":-1,"A":"left","R":[{"T":"amount%20from%20Schedule%20%20K-1%20or%20a%20similar%20statement%20.","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":42.709,"y":20.045,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":44.771,"y":20.045,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":7.648,"y":20.882,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.882,"w":26.00400000000001,"clr":-1,"A":"left","R":[{"T":"Increase%20or%20decrease%20in%20alternative%20minimum%20tax%20(AMT)%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.569,"w":21.858000000000015,"clr":-1,"A":"left","R":[{"T":"prior%20years.%20Multiply%20line%203%20in%20each%20column%20by%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.257,"w":23.54100000000001,"clr":-1,"A":"left","R":[{"T":"applicable%20%20AMT%20rate%20(see%20page%206%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.126,"y":22.257,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":23.07,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.07,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":17.435,"y":23.07,"w":2.795,"clr":-1,"A":"left","R":[{"T":"larger","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":21.584,"y":23.07,"w":16.374000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%202%20or%20line%204.%20See%20page%206%20of%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.757,"w":17.763000000000005,"clr":-1,"A":"left","R":[{"T":"instructions%20if%20either%20amount%20is%20negative%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.878,"y":23.757,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.57,"w":10.796,"clr":-1,"A":"left","R":[{"T":"Pass-through%20entities%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.86,"y":24.57,"w":15.116000000000003,"clr":-1,"A":"left","R":[{"T":"Skip%20line%206%20and%20enter%20on%20line%207%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.257,"w":8.910000000000004,"clr":-1,"A":"left","R":[{"T":"amount%20from%20line%205.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":26.007,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.007,"w":25.93200000000001,"clr":-1,"A":"left","R":[{"T":"Overpayment%20ceiling.%20For%20each%20column%20in%20which%20line%205%20is%20a%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":10.885,"y":26.632,"w":28.022,"clr":-1,"A":"left","R":[{"T":"negative%20number%2C%20enter%20your%20total%20tax%20liability%20for%20the%20prior%20year%2C%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":10.882,"y":27.257,"w":26.118,"clr":-1,"A":"left","R":[{"T":"as%20adjusted%20for%20past%20applications%20of%20the%20look-back%20method%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":10.885,"y":27.882,"w":26.395000000000003,"clr":-1,"A":"left","R":[{"T":"and%20after%20net%20operating%20loss%2C%20capital%20loss%2C%20net%20%20section%201256%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":10.886,"y":28.507,"w":26.910999999999994,"clr":-1,"A":"left","R":[{"T":"contracts%20loss%2C%20and%20credit%20carryovers%20and%20carrybacks%20to%20that%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.132,"w":26.395000000000003,"clr":-1,"A":"left","R":[{"T":"year.%20For%20each%20column%20in%20which%20line%205%20is%20a%20positive%20number%2C%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":10.891,"y":29.757,"w":26.602000000000007,"clr":-1,"A":"left","R":[{"T":"leave%20line%206%20blank%20and%20enter%20on%20line%207%20the%20amount%20from%20line%205","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":7.648,"y":30.695,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.695,"w":29.723,"clr":-1,"A":"left","R":[{"T":"Increase%20or%20decrease%20in%20tax%20for%20the%20prior%20years%20on%20which%20%20interest%20is%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.892,"y":31.381999999999998,"w":28.879000000000005,"clr":-1,"A":"left","R":[{"T":"due%20(or%20is%20to%20be%20refunded).%20Enter%20the%20amount%20from%20line%205%20or%20line%206%2C%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.893,"y":32.07,"w":30.234599999999997,"clr":-1,"A":"left","R":[{"T":"whichever%20is%20smaller.%20Treat%20both%20numbers%20%20as%20positive%20when%20making%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.893,"y":32.757,"w":27.250999999999998,"clr":-1,"A":"left","R":[{"T":"this%20comparison%2C%20but%20enter%20the%20amount%20as%20a%20negative%20number%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":45.132,"y":32.757,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":7.648,"y":33.57,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.57,"w":26.171000000000006,"clr":-1,"A":"left","R":[{"T":"Interest%20due%20on%20increase%2C%20if%20any%2C%20shown%20on%20line%207%20(see%20page%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.257,"w":9.391000000000002,"clr":-1,"A":"left","R":[{"T":"6%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.503,"y":34.257,"w":16.5,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":35.07,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.07,"w":26.227,"clr":-1,"A":"left","R":[{"T":"Interest%20to%20be%20refunded%20on%20decrease%2C%20if%20any%2C%20shown%20on%20%20line%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":35.757,"w":14.855000000000002,"clr":-1,"A":"left","R":[{"T":"7%20(see%20page%206%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.754,"y":35.757,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":36.57,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.57,"w":6.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20amount%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.255,"y":36.57,"w":14.409000000000004,"clr":-1,"A":"left","R":[{"T":"interest%20to%20be%20refunded%20to%20you.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.464,"y":36.57,"w":31.248000000000005,"clr":-1,"A":"left","R":[{"T":"%20If%20line%209%2C%20column%20(d)%2C%20exceeds%20line%208%2C%20column%20(d)%2C%20enter%20the%20excess.%20File%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.893,"y":37.257,"w":10.281000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208697%20separately%3B%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.029,"y":37.257,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":29.231,"y":37.257,"w":26.15300000000001,"clr":-1,"A":"left","R":[{"T":"%20attach%20it%20to%20your%20tax%20return%20(see%20page%206%20of%20the%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.756,"y":37.257,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":38.07,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.07,"w":6.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20amount%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.218,"y":38.07,"w":8.184999999999999,"clr":-1,"A":"left","R":[{"T":"interest%20you%20owe.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.633,"y":38.07,"w":37.71499999999998,"clr":-1,"A":"left","R":[{"T":"%20If%20line%208%2C%20column%20(d)%2C%20exceeds%20line%209%2C%20column%20(d)%2C%20enter%20the%20excess.%20Attach%20Form%208697%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.896,"y":38.757,"w":43.13799999999997,"clr":-1,"A":"left","R":[{"T":"to%20your%20tax%20return.%20See%20page%206%20of%20the%20instructions%20for%20where%20to%20include%20this%20amount%20on%20your%20return%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.946,"y":38.757,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":39.5,"w":6.2780000000000005,"clr":-1,"A":"left","R":[{"T":"Signature(s)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.649,"y":39.5,"w":9.742999999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20section","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.72,"y":39.5,"w":2.537,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.644,"y":39.5,"w":16.076000000000004,"clr":-1,"A":"left","R":[{"T":"if%20this%20form%20is%20being%20filed%20separately.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":41.366,"w":2.389,"clr":-1,"A":"left","R":[{"T":"Sign%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.191,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Here%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":15.838000000000001,"y":40.333,"w":57.18199999999996,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20form%2C%20including%20accompanying%20schedules%20and%20statements%2C%20and%20to%20t","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.635,"y":40.333,"w":11.521000000000003,"clr":-1,"A":"left","R":[{"T":"he%20best%20of%20my%20knowledge%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.838000000000001,"y":40.858,"w":54.22899999999996,"clr":-1,"A":"left","R":[{"T":"and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.%20Declaration%20of%20preparer%20(other%20than%20taxpayer)%20is%20based%20on%20all%20information%20of%20whi","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.082,"y":40.858,"w":14.613000000000003,"clr":-1,"A":"left","R":[{"T":"ch%20preparer%20has%20any%20knowledge.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#272526","x":15.236,"y":42.712,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":48,"TS":[3,10,0,0]}]},{"oc":"#221f1f","x":17.075,"y":41.719,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.955,"y":41.719,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":17.075,"y":42.844,"w":22.821000000000012,"clr":-1,"A":"left","R":[{"T":"Spouse's%20signature.%20If%20a%20joint%20return%2C%20both%20must%20sign","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.955,"y":42.844,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":44.366,"w":2.3880000000000003,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.938,"y":45.116,"w":4.445,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.938,"y":45.866,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":15.288,"y":43.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":43.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":43.938,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.925,"y":44.25,"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":75.925,"y":44.75,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.481,"y":43.938,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.288,"y":45.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":45.531,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":75.925,"y":45.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":82.164,"y":45.531,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":15.288,"y":46.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":46.281,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":75.925,"y":46.375,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.793,"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":86.27,"y":47.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8697%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.57,"y":47.071,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2011)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":5582,"AM":1024,"x":20.672,"y":2.048,"w":56.732,"h":0.859},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MONTH2_P2MO1_1_","EN":0},"TI":5583,"AM":0,"x":50.673,"y":7.418,"w":3.823,"h":0.833,"MV":"MM"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR2_P2YR1_1_","EN":0},"TI":5584,"AM":0,"x":56.378,"y":7.418,"w":3.823,"h":0.833,"MV":"YYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MONTH2_P2MO1_2_","EN":0},"TI":5585,"AM":0,"x":63.016,"y":7.419,"w":3.823,"h":0.833,"MV":"MM"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR2_P2YR1_2_","EN":0},"TI":5586,"AM":0,"x":68.721,"y":7.419,"w":3.823,"h":0.833,"MV":"YYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MONTH2_P2MO1_3_","EN":0},"TI":5587,"AM":0,"x":75.444,"y":7.419,"w":3.823,"h":0.833,"MV":"MM"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR2_P2YR1_3_","EN":0},"TI":5588,"AM":0,"x":81.149,"y":7.419,"w":3.823,"h":0.833,"MV":"YYYY"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A15_L21_1_","EN":0},"TI":5589,"AM":0,"x":48.512,"y":10.415,"w":11.983,"h":0.833,"TU":"Line 1. Column (a). Adjustment to regular taxable income to reflect the difference between: (a) the amount of such income required to be allocated for post-February 1986 contracts completed or adjusted during the tax year based on actual contract price and costs, and (b) the amount of such income reported for such contracts based on estimated contract price and costs. See page 6. of the instructions, and attach a schedule listing each separate contract, unless you were an owner of an interest in a pass-through entity reporting this amount from Schedule K-1 or a similar statement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A15_L21_2_","EN":0},"TI":5590,"AM":0,"x":60.854,"y":10.415,"w":11.983,"h":0.833,"TU":"Line 1. Column (b). Adjustment to regular taxable income to reflect the difference between: (a) the amount of such income required to be allocated for post-February 1986 contracts completed or adjusted during the tax year based on actual contract price and costs, and (b) the amount of such income reported for such contracts based on estimated contract price and costs. See page 6. of the instructions, and attach a schedule listing each separate contract, unless you were an owner of an interest in a pass-through entity reporting this amount from Schedule K-1 or a similar statement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A15_L21_3_","EN":0},"TI":5591,"AM":0,"x":73.282,"y":10.415,"w":11.983,"h":0.833,"TU":"Line 1. Column (c). Adjustment to regular taxable income to reflect the difference between: (a) the amount of such income required to be allocated for post-February 1986 contracts completed or adjusted during the tax year based on actual contract price and costs, and (b) the amount of such income reported for such contracts based on estimated contract price and costs. See page 6. of the instructions, and attach a schedule listing each separate contract, unless you were an owner of an interest in a pass-through entity reporting this amount from Schedule K-1 or a similar statement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A16_L22_1_","EN":0},"TI":5592,"AM":0,"x":48.415,"y":12.619,"w":11.983,"h":0.833,"TU":"Line 2. Column (a). Increase or decrease in regular tax for prior years. Multiply line 1 in each column by applicable regular tax rate (see page 6 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A16_L22_2_","EN":0},"TI":5593,"AM":0,"x":60.757,"y":12.619,"w":11.983,"h":0.833,"TU":"Line 2. Column (b). Increase or decrease in regular tax for prior years. Multiply line 1 in each column by applicable regular tax rate (see page 6 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A16_L22_3_","EN":0},"TI":5594,"AM":0,"x":73.185,"y":12.619,"w":11.983,"h":0.833,"TU":"Line 2. Column (c). Increase or decrease in regular tax for prior years. Multiply line 1 in each column by applicable regular tax rate (see page 6 of the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A17_L23_1_","EN":0},"TI":5595,"AM":0,"x":48.533,"y":20.249,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A17_L23_2_","EN":0},"TI":5596,"AM":0,"x":60.875,"y":20.249,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A17_L23_3_","EN":0},"TI":5597,"AM":0,"x":73.303,"y":20.249,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A18_L24_1_","EN":0},"TI":5598,"AM":0,"x":48.491,"y":22.474,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A18_L24_2_","EN":0},"TI":5599,"AM":0,"x":60.833,"y":22.475,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A18_L24_3_","EN":0},"TI":5600,"AM":0,"x":73.261,"y":22.475,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A19_L25_1_","EN":0},"TI":5601,"AM":1024,"x":48.493,"y":23.937,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A19_L25_2_","EN":0},"TI":5602,"AM":1024,"x":60.835,"y":23.937,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A19_L25_3_","EN":0},"TI":5603,"AM":1024,"x":73.263,"y":23.937,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A20_L26_1_","EN":0},"TI":5604,"AM":0,"x":48.438,"y":29.906,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A20_L26_2_","EN":0},"TI":5605,"AM":0,"x":60.781,"y":29.907,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A20_L26_3_","EN":0},"TI":5606,"AM":0,"x":73.208,"y":29.907,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A21_L27_1_","EN":0},"TI":5607,"AM":1024,"x":48.471,"y":32.948,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A21_L27_2_","EN":0},"TI":5608,"AM":1024,"x":60.813,"y":32.949,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A21_L27_3_","EN":0},"TI":5609,"AM":1024,"x":73.241,"y":32.949,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A22_L28_1_","EN":0},"TI":5610,"AM":0,"x":48.473,"y":34.411,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A22_L28_2_","EN":0},"TI":5611,"AM":0,"x":60.815,"y":34.411,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A22_L28_3_","EN":0},"TI":5612,"AM":0,"x":73.243,"y":34.411,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8D2","EN":0},"TI":5613,"AM":0,"x":85.865,"y":34.429,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A23_L29_1_","EN":0},"TI":5614,"AM":0,"x":48.362,"y":35.896,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A23_L29_2_","EN":0},"TI":5615,"AM":0,"x":60.705,"y":35.896,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A23_L29_3_","EN":0},"TI":5616,"AM":0,"x":73.132,"y":35.896,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9D2","EN":0},"TI":5617,"AM":0,"x":85.748,"y":35.963,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L102","EN":0},"TI":5618,"AM":1024,"x":85.825,"y":37.425,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5619,"AM":1024,"x":85.919,"y":38.887,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":5620,"AM":1024,"x":41.178,"y":44.968,"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":5621,"AM":1024,"x":25.625,"y":45.796,"w":26.446,"h":0.833,"V":"Self-prepared"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8801.content.txt b/test/data/fd/form/F8801.content.txt new file mode 100755 index 00000000..abc35e10 --- /dev/null +++ b/test/data/fd/form/F8801.content.txt @@ -0,0 +1,325 @@ +Form +8801 + +Department of the Treasury +Internal Revenue Service (99) +Credit for Prior Year Minimum Tax„ +Individuals, Estates, and Trusts +a + +. + + +a + +Attach to Form 1040, 1040NR, or 1041. +OMB No. 1545-1073 +20 +13 +Attachment +Sequence No. +74 + +Name(s) shown on return +Identifying number +Part I +Net Minimum Tax on Exclusion Items +1 +Combine lines 1 and 10 of your 2012 Form 6251. Estates and trusts, see instructions +..... +1 +2 +Enter adjustments and preferences treated as exclusion items (see instructions) +...... +2 +3 +Minimum tax credit net operating loss deduction (see instructions) +........... +3 +( +) +4 +Combine lines 1, 2, and 3. If zero or less, enter -0- here and on line 15 and go to Part II. If more +than $232,500 and you were married filing separately for 2012, see instructions +...... +4 +5 +Enter: $78,750 if married filing jointly or qualifying widow(er) for 2012; $50,600 if single or head of +household for 2012; or $39,375 if married filing separately for 2012. Estates and trusts, enter $22,500 +5 +6 + +Enter: $150,000 if married filing jointly or qualifying widow(er) for 2012; $112,500 if single or head +of household for 2012; or $75,000 if married filing separately for 2012. Estates and trusts, enter +$75,000 +.............................. +6 +7 +Subtract line 6 from line 4. If zero or less, enter -0- here and on line 8 and go to line 9 +.... +7 +8 +Multiply line 7 by 25% (.25) +........................ +8 +9 +Subtract line 8 from line 5. If zero or less, enter -0-. If under age 24 at the end of 2012, see instructions +9 +10 +Subtract line 9 from line 4. If zero or less, enter -0- here and on line 15 and go to Part II. Form +1040NR filers, see instructions +....................... +10 +11 +• If +for 2012 +you filed Form 2555 or 2555-EZ, see instructions for the amount to enter. +• If +for 2012 +you reported capital gain distributions directly on Form 1040, line 13; you +reported qualified dividends on Form 1040, line 9b (Form 1041, line 2b(2)); +or +you had a +gain on both lines 15 and 16 of Schedule D (Form 1040) (lines 14a and 15, column (2), of +Schedule D (Form 1041)), complete Part III of Form 8801 and enter the amount from line +45 here. Form 1040NR filers, see instructions. +• +All others: +If line 10 is $175,000 or less ($87,500 or less if married filing separately for +2012), multiply line 10 by 26% (.26). Otherwise, multiply line 10 by 28% (.28) and subtract +$3,500 ($1,750 if married filing separately for 2012) from the result. Form 1040NR filers, +see instructions. +} +11 +12 +Minimum tax foreign tax credit on exclusion items (see instructions) +.......... +12 +13 +Tentative minimum tax on exclusion items. Subtract line 12 from line 11 +......... +13 +14 +Enter the amount from your 2012 Form 6251, line 34, or 2012 Form 1041, Schedule I, line 55 . . +14 +15 Net minimum tax on exclusion items. +Subtract line 14 from line 13. If zero or less, enter -0- . . +15 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 10002S +Form +8801 +(2013) +Information about Form 8801 and its separate instructions is at www.irs.gov/form8801 +----------------Page (0) Break---------------- +Form 8801 (2013) +Page +2 +Part II +Minimum Tax Credit and Carryforward to 2014 +16 +Enter the amount from your 2012 Form 6251, line 35, or 2012 Form 1041, Schedule I, line 56 . . +16 +17 +Enter the amount from line 15 +....................... +17 +18 +Subtract line 17 from line 16. If less than zero, enter as a negative amount +........ +18 +...... +19 +20 +Enter your 2012 unallowed qualified electric vehicle credit (see instructions) +........ +20 +21 +Combine lines 18 through 20. If zero or less, stop here and see the instructions +....... +21 +22 +Enter your 2013 regular income tax liability minus allowable credits (see instructions) +..... +22 +23 +Enter the amount from your 2013 Form 6251, line 33, or 2013 Form 1041, Schedule I, line 54 . . +23 +24 +Subtract line 23 from line 22. If zero or less, enter -0- +............... +24 +25 +Minimum tax credit. +Enter the +smaller +of line 21 or line 24. Also enter this amount on your 2013 + +line 2c +............................... +25 +26 +26 +Credit carryforward to 2014. +Subtract line 25 from line 21. Keep a record of this amount because +you may use it in future years +....................... +Form +8801 +(2013) +Form 1040, line 53 (check box b); Form 1040NR, line 50 (check box b); or Form 1041,Schedule G, +19 + +2012 credit carryforward. Enter the amount from your 2012 Form 8801, line 28 +----------------Page (1) Break---------------- +Form 8801 (2013) +Page +3 +Part III +Tax Computation Using Maximum Capital Gains Rates +Caution. +If you did not complete the 2012 Qualified Dividends and Capital Gain Tax Worksheet, +the 2012 Schedule D Tax Worksheet, or Part V of the 2012 Schedule D (Form + +1041), see the +instructions before completing this part. +27 +Enter the amount from Form 8801, line 10. If you filed Form 2555 or 2555-EZ for 2012, enter the +amount from line 3 of the Foreign Earned Income Tax Worksheet in the instructions +..... +27 +Caution. +If +for 2012 +you filed Form 1040NR, 1041, 2555, or 2555-EZ, see the instructions before +completing lines 28, 29, and 30. +28 +Enter the amount from line 6 of your 2012 Qualified Dividends and +Capital Gain Tax Worksheet, the amount from line 13 of your 2012 +Schedule D Tax Worksheet, or the amount from line 22 of the 2012 +Schedule D (Form 1041), whichever applies* +......... +28 +If you figured your 2012 tax using the 2012 Qualified Dividends and +Capital Gain Tax Worksheet, skip line 29 and enter the amount +from line 28 on line 30. Otherwise, go to line 29. +29 +Enter the amount from line 19 of your 2012 Schedule D (Form 1040), or +line 14b, column (2), of the 2012 Schedule D (Form 1041) +..... +29 +30 +Add lines 28 and 29, and enter the +smaller +of that result or the amount +from line 10 of your 2012 Schedule D Tax Worksheet +...... +30 +31 +Enter the +smaller +of line 27 or line 30 +.................... +31 +32 +Subtract line 31 from line 27 +....................... +32 +33 + +If line 32 is $175,000 or less ($87,500 or less if married filing separately for 2012), multiply line 32 +by 26% (.26). Otherwise, multiply line 32 by 28% (.28) and subtract $3,500 ($1,750 if married filing +separately for 2012) from the result. Form 1040NR filers, see instructions +........ +a +33 +34 + + + + +Enter: +• $70,700 if married filing jointly or qualifying widow(er) for 2012, +• $35,350 if single or married filing separately for 2012, +• $47,350 if head of household for 2012, or +• $2,400 for an estate or trust. +Form 1040NR filers, see instructions +............ +34 +35 + + + + +Enter the amount from line 7 of your 2012 Qualified Dividends and +Capital Gain Tax Worksheet, the amount from line 14 of your 2012 +Schedule D Tax Worksheet, or the amount from line 23 of the 2012 +Schedule D (Form 1041), whichever applies. If you did not complete +either worksheet or Part V of the 2012 Schedule D (Form 1041), enter +-0-. Form 1040NR filers, see instructions +.......... +35 +36 +Subtract line 35 from line 34. If zero or less, enter -0- +...... +36 +37 +Enter the +smaller +of line 27 or line 28 +........... +37 +38 +Enter the +smaller +of line 36 or line 37 +........... +38 +39 +Subtract line 38 from line 37 +.............. +39 +40 +Multiply line 39 by 15% (.15) + +...................... +a +40 +If line 29 is zero or blank, skip lines 41 and 42 and go to line 43. Otherwise, go to line 41. +41 +Subtract line 37 from line 31 +.............. +41 +42 +Multiply line 41 by 25% (.25) +...................... +a +42 +43 +Add lines 33, 40, and 42 +......................... +43 +44 + +If line 27 is $175,000 or less ($87,500 or less if married filing separately for 2012), multiply line 27 +by 26% (.26). Otherwise, multiply line 27 by 28% (.28) and subtract $3,500 ($1,750 if married filing +separately for 2012) from the result. Form 1040NR filers, see instructions +......... +44 +45 + +Enter the +smaller +of line 43 or line 44 here and on line 11. If you filed Form 2555 or 2555-EZ for +2012, do not enter this amount on line 11. Instead, enter it on line 4 of the Foreign Earned Income +Tax Worksheet in the instructions +...................... +45 +* +The 2012 Qualified Dividends and Capital Gain Tax Worksheet is in the 2012 Instructions for Form 1040. The 2012 Schedule D Tax +Worksheet is in the 2012 Instructions +for Schedule D (Form 1040) (or the 2012 Instructions for Schedule D (Form 1041)). +Form +8801 +(2013) +----------------Page (2) Break---------------- diff --git a/test/data/fd/form/F8801.fields.json b/test/data/fd/form/F8801.fields.json new file mode 100755 index 00000000..16ca60ce --- /dev/null +++ b/test/data/fd/form/F8801.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"NAM3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"ENTERAMT","type":"number","calc":false,"value":""},{"id":"L34","type":"number","calc":false,"value":""},{"id":"SUB3534","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L36","type":"number","calc":true,"value":""},{"id":"L40","type":"number","calc":true,"value":""},{"id":"L49","type":"number","calc":true,"value":""},{"id":"L52","type":"number","calc":true,"value":""},{"id":"L53","type":"number","calc":true,"value":""},{"id":"L54","type":"number","calc":true,"value":""},{"id":"L55","type":"number","calc":false,"value":""},{"id":"L56","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8801.json b/test/data/fd/form/F8801.json new file mode 100755 index 00000000..de9664c3 --- /dev/null +++ b/test/data/fd/form/F8801.json @@ -0,0 +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.146,"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.066,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.25,"w":1.5,"l":14.977},{"oc":"#221f1f","x":6.145,"y":6.75,"w":1.125,"l":70.624},{"oc":"#221f1f","x":76.682,"y":6.75,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.145,"y":7.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":9,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":10.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":12,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":12,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":12,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":14.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":19.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":21,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":22.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":24,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":24,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":24,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":26.25,"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":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":36,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":37.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":39,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":39,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":39,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":40.5,"w":1.5,"l":44.636},{"oc":"#221f1f","x":50.695,"y":40.5,"w":1.5,"l":29.786},{"oc":"#221f1f","x":80.395,"y":40.5,"w":1.5,"l":18.648}],"VLines":[{"oc":"#221f1f","x":21.039,"y":2.234,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.984,"w":1.5,"l":2.281},{"oc":"#221f1f","x":76.725,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.15,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"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":84.15,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"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.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":11.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":11.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":14.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":14.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.15,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"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":84.15,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":20.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":20.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":23.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":23.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":26.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.438,"y":26.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":84.15,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.438,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.15,"y":34.485,"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":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":35.985,"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":0.781},{"oc":"#221f1f","x":95.288,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":37.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":37.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":38.985,"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":0.781},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":6.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":12,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":14.25,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":16.5,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":24,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":26.25,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":31.5,"w":3.712,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.939,"y":2.633,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.633,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8801","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.939,"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.939,"y":4.313,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":32.781,"y":2.1,"w":17.282,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Prior%20Year%20Minimum%20Tax%E2%80%9E%20%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":35.38,"y":2.975,"w":15.005000000000003,"clr":-1,"A":"left","R":[{"T":"Individuals%2C%20Estates%2C%20and%20Trusts","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":23.319,"y":3.5380000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.987,"y":3.6319999999999997,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":39.176,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.447,"y":4.257,"w":18.17300000000001,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%20or%201041.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1073","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.298,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.828,"y":3.298,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.964,"y":3.8369999999999997,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.964,"y":4.283,"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.284,"w":1.112,"clr":-1,"A":"left","R":[{"T":"74","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.937,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":4.937,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.836,"y":6.571,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":6.571,"w":17.949000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20Minimum%20Tax%20on%20Exclusion%20Items%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.552,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":38.06899999999999,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201%20and%2010%20of%20your%202012%20Form%206251.%20Estates%20and%20trusts%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.874,"y":8.089,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":9.589,"w":35.729,"clr":-1,"A":"left","R":[{"T":"Enter%20adjustments%20and%20preferences%20treated%20as%20exclusion%20items%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.813,"y":9.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":11.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.089,"w":29.470000000000006,"clr":-1,"A":"left","R":[{"T":"Minimum%20tax%20credit%20net%20operating%20loss%20deduction%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":11.089,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":11.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":84.044,"y":11,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":98.206,"y":11,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":12.539,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":12.539,"w":42.620999999999974,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201%2C%202%2C%20and%203.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20line%2015%20and%20go%20to%20Part%20II.%20If%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.227,"w":35.526999999999994,"clr":-1,"A":"left","R":[{"T":"than%20%24232%2C500%20and%20you%20were%20married%20filing%20separately%20for%202012%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.813,"y":13.227,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":13.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":14.789,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.789,"w":43.80299999999997,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20%2478%2C750%20if%20married%20filing%20jointly%20or%20qualifying%20widow(er)%20for%202012%3B%20%2450%2C600%20if%20single%20or%20head%20of%20%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.477,"w":45.08799999999996,"clr":-1,"A":"left","R":[{"T":"household%20for%202012%3B%20or%20%2439%2C375%20if%20married%20filing%20separately%20for%202012.%20Estates%20and%20trusts%2C%20enter%20%2422%2C500","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":81.614,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":17.102,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.102,"w":43.48899999999997,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20%24150%2C000%20if%20married%20filing%20jointly%20or%20qualifying%20widow(er)%20for%202012%3B%20%24112%2C500%20if%20single%20or%20head%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.789,"w":42.62199999999997,"clr":-1,"A":"left","R":[{"T":"of%20household%20for%202012%3B%20or%20%2475%2C000%20if%20married%20filing%20separately%20for%202012.%20Estates%20and%20trusts%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.477,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2475%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.313,"y":18.477,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":18.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.09,"w":38.192999999999984,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206%20from%20line%204.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20line%208%20and%20go%20to%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.938,"y":20.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":21.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":21.589,"w":12.097000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20by%2025%25%20(.25)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":21.589,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":21.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":46.028999999999954,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%205.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20under%20age%2024%20at%20the%20end%20of%202012%2C%20see%20instructions%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":81.614,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":24.539,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":24.539,"w":42.174999999999976,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%209%20from%20line%204.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20line%2015%20and%20go%20to%20Part%20II.%20Form%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.227,"w":13.613000000000003,"clr":-1,"A":"left","R":[{"T":"1040NR%20filers%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":25.227,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":26.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":1.611,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.036,"y":26.839,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"for%202012%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.882,"y":26.839,"w":32.899000000000015,"clr":-1,"A":"left","R":[{"T":"you%20filed%20Form%202555%20or%202555-EZ%2C%20see%20instructions%20for%20the%20amount%20to%20enter.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.727,"w":1.611,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.036,"y":27.727,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"for%202012%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.882,"y":27.727,"w":33.193999999999996,"clr":-1,"A":"left","R":[{"T":"you%20reported%20capital%20gain%20distributions%20directly%20on%20Form%201040%2C%20line%2013%3B%20you%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.414,"w":33.28900000000001,"clr":-1,"A":"left","R":[{"T":"reported%20qualified%20dividends%20on%20Form%201040%2C%20line%209b%20(Form%201041%2C%20line%202b(2))%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.38,"y":28.414,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.357,"y":28.414,"w":4.965000000000002,"clr":-1,"A":"left","R":[{"T":"you%20had%20a%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.102,"w":39.94099999999999,"clr":-1,"A":"left","R":[{"T":"gain%20on%20both%20lines%2015%20and%2016%20of%20Schedule%20D%20(Form%201040)%20(lines%2014a%20and%2015%2C%20column%20(2)%2C%20of%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.789,"w":39.51299999999999,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20(Form%201041))%2C%20complete%20Part%20III%20of%20Form%208801%20and%20enter%20the%20amount%20from%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.476,"w":20.412000000000006,"clr":-1,"A":"left","R":[{"T":"45%20here.%20Form%201040NR%20filers%2C%20see%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.414,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.091,"y":31.414,"w":5.223000000000001,"clr":-1,"A":"left","R":[{"T":"All%20others%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.107,"y":31.414,"w":33.580999999999996,"clr":-1,"A":"left","R":[{"T":"If%20line%2010%20is%20%24175%2C000%20or%20less%20(%2487%2C500%20or%20less%20if%20married%20filing%20separately%20for%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.101,"w":40.14499999999999,"clr":-1,"A":"left","R":[{"T":"2012)%2C%20multiply%20line%2010%20by%2026%25%20(.26).%20Otherwise%2C%20multiply%20line%2010%20by%2028%25%20(.28)%20and%20subtract%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.789,"w":39.139999999999986,"clr":-1,"A":"left","R":[{"T":"%243%2C500%20(%241%2C750%20if%20married%20filing%20separately%20for%202012)%20from%20the%20result.%20Form%201040NR%20filers%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.476,"w":7.594000000000001,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.357,"y":32.024,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,18,0,0]}]},{"oc":"#221f1f","x":81.184,"y":30.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":35.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":35.089,"w":30.339000000000013,"clr":-1,"A":"left","R":[{"T":"Minimum%20tax%20foreign%20tax%20credit%20on%20exclusion%20items%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.563,"y":35.089,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":35.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":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":36.589,"w":31.881000000000007,"clr":-1,"A":"left","R":[{"T":"Tentative%20minimum%20tax%20on%20exclusion%20items.%20Subtract%20line%2012%20from%20line%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":36.589,"w":13.33,"clr":-1,"A":"left","R":[{"T":".........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":36.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":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":38.089,"w":41.222,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20your%202012%20Form%206251%2C%20line%2034%2C%20or%202012%20Form%201041%2C%20Schedule%20I%2C%20line%2055","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":38.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.127,"y":38.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":39.589,"w":17.894000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20minimum%20tax%20on%20exclusion%20items.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.596,"y":39.589,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014%20from%20line%2013.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.142,"y":39.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.204,"y":39.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":39.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":40.357,"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":60.88,"y":40.375,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2010002S%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.008,"y":40.321,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":40.321,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8801%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.451,"y":40.321,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.637,"y":3.6319999999999997,"w":40.84499999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208801%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8801","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5622,"AM":1024,"x":6.188,"y":5.875,"w":70.537,"h":0.875,"TU":"Name (or names) shown on return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5623,"AM":1024,"x":76.725,"y":5.875,"w":22.275,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5624,"AM":0,"x":84.15,"y":8.25,"w":11.137,"h":0.833,"TU":"Line 1. Combine lines 1 and 10 of your 2012 Form 6251. Estates and trusts, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5625,"AM":0,"x":84.15,"y":9.727,"w":11.137,"h":0.833,"TU":"Line 2. Enter adjustments and preferences treated as exclusion items (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5626,"AM":0,"x":84.838,"y":11.25,"w":10.45,"h":0.833,"TU":"Line 3. Minimum tax credit net operating loss deduction (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5627,"AM":0,"x":84.214,"y":13.5,"w":11.137,"h":0.833,"TU":"Line 4. Combine lines 1, 2, and 3. If zero or less, enter zero here and on line 15 and go to Part 2. If more than $232,500 and you were married filing separately for 2012, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5628,"AM":0,"x":84.214,"y":15.75,"w":11.137,"h":0.833,"TU":"Line 5. Enter: $78,750 if married filing jointly or qualifying widow (or widower) for 2012; $50,600 if single or head of household for 2012; or $39,375 if married filing separately for 2012. Estates and trusts, enter $22,500. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5629,"AM":0,"x":84.15,"y":18.773,"w":11.137,"h":0.833,"TU":"Line 6. Enter: $150,000 if married filing jointly or qualifying widow (or widower) for 2012; $112,500 if single or head of household for 2012; or $75,000 if married filing separately for 2012. Estates and trusts, enter $75,000. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5630,"AM":1024,"x":84.15,"y":20.25,"w":11.137,"h":0.833,"TU":"Line 7. Subtract line 6 from line 4. If zero or less, enter zero here and on line 8 and go to line 9. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5631,"AM":1024,"x":84.15,"y":21.75,"w":11.137,"h":0.833,"TU":"Line 8. Multiply line 7 by 25 percent (.25). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5632,"AM":0,"x":84.15,"y":23.25,"w":11.137,"h":0.833,"TU":"Line 9. Subtract line 8 from line 5. If zero or less, enter zero. If under age 24 at the end of 2012, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5633,"AM":1024,"x":84.15,"y":25.5,"w":11.137,"h":0.833,"TU":"Line 10. Subtract line 9 from line 4. If zero or less, enter zero here and on line 15 and go to Part 2. Form 1040 N R filers, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5634,"AM":0,"x":84.15,"y":30.774,"w":11.137,"h":0.833,"TU":"Line 11. If for 2012 you filed Form 2555 or 2555- E Z, see instructions for the amount to enter. If for 2012 you reported capital gain distributions directly on Form 1040, line 13; you reported qualified dividends on Form 1040, line 9b (Form 1041, line 2b(2)); or you had a gain on both lines 15 and 16 of Schedule D (Form 1040) (lines 14a and 15, column (2), of Schedule (Form 1041)), complete Part 3 of Form 8801 and enter the amount from line 45 here. Form 1040 NR filers, see instructions. All others: If line 10 is $175,000 or less ($87,500 or less if married filing separately for 2011), multiply line 10 by 26 percent (.26). Otherwise, multiply line 10 by 28 percent (.28) and subtract $3,500 ($1,750 if married filing separately for 2011) from the result. Form 1040 N R filers, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":5635,"AM":0,"x":84.15,"y":35.25,"w":11.137,"h":0.833,"TU":"Line 12. Minimum tax foreign tax credit on exclusion items (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":5636,"AM":1024,"x":84.15,"y":36.75,"w":11.137,"h":0.833,"TU":"Line 13. Tentative minimum tax on exclusion items. Subtract line 12 from line 11. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":5637,"AM":0,"x":84.15,"y":38.25,"w":11.137,"h":0.833,"TU":"Line 14. Enter the amount from your 2012 Form 6251, line 34, or 2012 Form 1041, Schedule I, line 55. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":5638,"AM":1024,"x":84.15,"y":39.75,"w":11.137,"h":0.833,"TU":"Line 15. Net minimum tax on exclusion items. Subtract line 14 from line 13. If zero or less, enter zero. Dollars."}],"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":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":5.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":6.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":6.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":6.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":8.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":8.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":8.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":9.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":11.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":12.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":12.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":14.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":14.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":14.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":17.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":20.249,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":20.249,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":20.249,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":20.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":22.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":22.5,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":95.288,"y":3.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":4.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":5.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":6.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":6.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":6.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":7.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":8.234,"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":84.15,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":9.734,"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":84.15,"y":11.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":11.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":12.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":12.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":14.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":14.234,"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":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":95.288,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.227,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.438,"y":17.227,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.288,"y":17.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.15,"y":19.485,"w":0.75,"l":0.788},{"oc":"#221f1f","x":80.438,"y":19.485,"w":0.75,"l":0.788},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.788},{"oc":"#221f1f","x":84.15,"y":20.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":20.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.15,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.789}],"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":80.438,"y":17.25,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":20.25,"w":3.712,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208801%20(2013)","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.582,"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":14.6,"y":2.821,"w":21.894000000000005,"clr":-1,"A":"left","R":[{"T":"Minimum%20Tax%20Credit%20and%20Carryforward%20to%202014","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":4.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":4.339,"w":41.222,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20your%202012%20Form%206251%2C%20line%2035%2C%20or%202012%20Form%201041%2C%20Schedule%20I%2C%20line%2056","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":4.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.127,"y":4.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":4.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":5.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":5.839,"w":13.246000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":5.839,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":5.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":7.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":7.339,"w":32.859,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2017%20from%20line%2016.%20If%20less%20than%20zero%2C%20enter%20as%20a%20negative%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.687,"y":7.339,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":7.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.813,"y":8.839,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":8.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":10.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":10.339,"w":33.54,"clr":-1,"A":"left","R":[{"T":"Enter%20your%202012%20unallowed%20qualified%20electric%20vehicle%20credit%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.687,"y":10.339,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":10.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":11.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.839,"w":35.451999999999984,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2018%20through%2020.%20If%20zero%20or%20less%2C%20stop%20here%20and%20see%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":11.839,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":11.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":13.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":13.339,"w":37.596999999999994,"clr":-1,"A":"left","R":[{"T":"Enter%20your%202013%20regular%20income%20tax%20liability%20minus%20allowable%20credits%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.874,"y":13.339,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":13.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":41.222,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20your%202013%20Form%206251%2C%20line%2033%2C%20or%202013%20Form%201041%2C%20Schedule%20I%2C%20line%2054","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":14.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.127,"y":14.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":16.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":16.339,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2023%20from%20line%2022.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":16.339,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":16.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":17.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.851,"w":9.669000000000002,"clr":-1,"A":"left","R":[{"T":"Minimum%20tax%20credit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":24.429,"y":17.851,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.761,"y":17.851,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.256,"y":17.851,"w":25.49000000000001,"clr":-1,"A":"left","R":[{"T":"of%20line%2021%20or%20line%2024.%20Also%20enter%20this%20amount%20on%20your%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":19.226,"w":2.908,"clr":-1,"A":"left","R":[{"T":"line%202c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.25,"y":19.226,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":19.338,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":20.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.184,"y":21.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.789,"w":13.560000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20carryforward%20to%202014.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.177,"y":20.789,"w":30.509000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20from%20line%2021.%20Keep%20a%20record%20of%20this%20amount%20because%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":21.477,"w":13.096000000000004,"clr":-1,"A":"left","R":[{"T":"you%20may%20use%20it%20in%20future%20years","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.742,"y":21.477,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.008,"y":22.321,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":22.321,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8801%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.451,"y":22.321,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.539,"w":43.86699999999998,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2053%20(check%20box%20b)%3B%20Form%201040NR%2C%20line%2050%20(check%20box%20b)%3B%20or%20Form%201041%2CSchedule%20G%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":8.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":8.839,"w":34.918000000000006,"clr":-1,"A":"left","R":[{"T":"2012%20credit%20carryforward.%20Enter%20the%20amount%20from%20your%202012%20Form%208801%2C%20line%2028","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":5639,"AM":1024,"x":17.254,"y":2.163,"w":51.602,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":5640,"AM":1024,"x":71.275,"y":2.207,"w":21.617,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":5641,"AM":0,"x":84.15,"y":4.5,"w":11.137,"h":0.833,"TU":"Line 16. Enter the amount from your 2012 Form 6251, line 35, or 2012 Form 1041, Schedule I, line 56. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":5642,"AM":1024,"x":84.15,"y":6,"w":11.137,"h":0.833,"TU":"Line 17. Enter the amount from line 15. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":5643,"AM":1024,"x":84.15,"y":7.5,"w":11.137,"h":0.833,"TU":"Line 18. Subtract line 17 from line 16. If less than zero, enter as a negative amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":5644,"AM":0,"x":84.15,"y":9,"w":11.137,"h":0.833,"TU":"Line 19. 2012 credit carryforward. Enter the amount from your 2012 Form 8801, line 28. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":5645,"AM":0,"x":84.15,"y":10.5,"w":11.137,"h":0.833,"TU":"Line 20. Enter your 2012 unallowed qualified electric vehicle credit (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":5646,"AM":1024,"x":84.15,"y":12,"w":11.137,"h":0.833,"TU":"Line 21. Combine lines 18 through 20. If zero or less, stop here and see the instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":5647,"AM":1024,"x":84.15,"y":13.5,"w":11.137,"h":0.833,"TU":"Line 22. Enter your 2013 regular income tax liability minus allowable credits (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":5648,"AM":1024,"x":84.15,"y":15,"w":11.137,"h":0.833,"TU":"Line 23. Enter the amount from your 2013 Form 6251, line 33."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":5649,"AM":1024,"x":84.086,"y":16.5,"w":11.138,"h":0.833,"TU":"Line 24. Subtract line 23 from line 22. If zero or less, enter zero. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":5650,"AM":1024,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 25. Minimum tax credit. Enter the smaller of line 21 or line 24. Also enter this amount on your 2013 Form 1040, line 53 (check box b); Form 1040 NR, line 50 (check box b); or Form 1041, Schedule G, line 2c. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":5651,"AM":1024,"x":84.15,"y":21.75,"w":11.137,"h":0.833,"TU":"Line 26. Subtract line 25 from line 21. Dollars."}],"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":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":3.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":8.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":8.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":8.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":12.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":16.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":18,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":18.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":18.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":18.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":21.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.545,"y":30.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.832,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":31.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":32.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":33,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":33.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":34.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":36.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":37.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":37.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":38.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":38.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":38.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":40.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":42.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":84.15,"y":3.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.438,"y":3.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.288,"y":3.734,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.15,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":8.234,"w":0.75,"l":9.781},{"oc":"#221f1f","x":80.438,"y":8.234,"w":0.75,"l":9.781},{"oc":"#221f1f","x":95.288,"y":8.234,"w":0.75,"l":9.781},{"oc":"#221f1f","x":65.588,"y":9.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":9.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.725,"y":9.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.725,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":12.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":12.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.725,"y":12.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":65.588,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":15.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":16.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.875,"y":16.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"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":84.15,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":22.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":22.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.725,"y":22.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":65.588,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":21.735,"w":0.75,"l":12.031},{"oc":"#221f1f","x":80.438,"y":21.735,"w":0.75,"l":12.031},{"oc":"#221f1f","x":65.588,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.875,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":76.725,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":65.588,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.875,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.588,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":12.031},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":34.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":34.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.875,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":38.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.438,"y":38.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":40.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":40.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":40.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":41.985,"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.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":3.75,"w":3.712,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":8.25,"w":3.712,"h":9.75,"clr":-1},{"oc":"#bebfc1","x":61.875,"y":12.75,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":61.875,"y":16.5,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":19.5,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":61.875,"y":22.5,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":21.75,"w":3.712,"h":12,"clr":-1},{"oc":"#bebfc1","x":61.875,"y":26.25,"w":3.712,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":34.5,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":38.25,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":40.5,"w":3.712,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208801%20(2013)","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":"3%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":14.6,"y":2.821,"w":26.139000000000006,"clr":-1,"A":"left","R":[{"T":"Tax%20Computation%20Using%20Maximum%20Capital%20Gains%20Rates%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":4.352,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.647,"y":4.352,"w":38.714,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20complete%20the%202012%20Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":5.039,"w":34.45399999999999,"clr":-1,"A":"left","R":[{"T":"the%202012%20Schedule%20D%20Tax%20Worksheet%2C%20or%20Part%20V%20of%20the%202012%20Schedule%20D%20(Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.677,"y":5.039,"w":6.299,"clr":-1,"A":"left","R":[{"T":"1041)%2C%20see%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":5.726,"w":18.077999999999996,"clr":-1,"A":"left","R":[{"T":"instructions%20before%20completing%20this%20part.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":6.539,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":6.539,"w":42.71999999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%208801%2C%20line%2010.%20If%20you%20filed%20Form%202555%20or%202555-EZ%20for%202012%2C%20enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":7.226,"w":37.082999999999984,"clr":-1,"A":"left","R":[{"T":"amount%20from%20line%203%20of%20the%20Foreign%20Earned%20Income%20Tax%20Worksheet%20in%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.871,"y":7.226,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":7.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.039,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.505,"y":8.039,"w":0.833,"clr":-1,"A":"left","R":[{"T":"If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.794,"y":8.039,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"for%202012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.156,"y":8.039,"w":34.141000000000005,"clr":-1,"A":"left","R":[{"T":"you%20filed%20Form%201040NR%2C%201041%2C%202555%2C%20or%202555-EZ%2C%20see%20the%20instructions%20before%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.727,"w":14.544000000000008,"clr":-1,"A":"left","R":[{"T":"completing%20lines%2028%2C%2029%2C%20and%2030.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":9.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":9.664,"w":29.751000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%206%20of%20your%202012%20Qualified%20Dividends%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":10.351,"w":29.82300000000001,"clr":-1,"A":"left","R":[{"T":"Capital%20Gain%20Tax%20Worksheet%2C%20the%20amount%20from%20line%2013%20of%20your%202012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":11.039,"w":30.12100000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20Tax%20Worksheet%2C%20or%20the%20amount%20from%20line%2022%20of%20the%202012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":11.726,"w":19.72600000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20(Form%201041)%2C%20whichever%20applies*","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.069,"y":11.726,"w":13.33,"clr":-1,"A":"left","R":[{"T":".........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":11.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.602,"w":31.908000000000005,"clr":-1,"A":"left","R":[{"T":"If%20you%20figured%20your%202012%20tax%20using%20the%202012%20Qualified%20Dividends%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":13.289,"w":29.941000000000006,"clr":-1,"A":"left","R":[{"T":"Capital%20Gain%20Tax%20Worksheet%2C%20skip%20line%2029%20and%20enter%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":13.976,"w":22.773999999999997,"clr":-1,"A":"left","R":[{"T":"from%20line%2028%20on%20line%2030.%20Otherwise%2C%20go%20to%20line%2029.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.703,"y":14.789,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":14.789,"w":31.956000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2019%20of%20your%202012%20Schedule%20D%20(Form%201040)%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.903,"y":15.477,"w":25.418000000000013,"clr":-1,"A":"left","R":[{"T":"line%2014b%2C%20column%20(2)%2C%20of%20the%202012%20Schedule%20D%20(Form%201041)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.327,"y":15.477,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":15.588999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":16.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.289,"w":15.655000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2028%20and%2029%2C%20and%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.475,"y":16.289,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.359,"y":16.289,"w":12.430000000000003,"clr":-1,"A":"left","R":[{"T":"of%20that%20result%20or%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":16.977,"w":23.580000000000002,"clr":-1,"A":"left","R":[{"T":"from%20line%2010%20of%20your%202012%20Schedule%20D%20Tax%20Worksheet","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":16.977,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":17.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.839,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.564,"y":17.839,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.402,"y":17.839,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%2027%20or%20line%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":17.839,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":"....................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":17.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":18.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.589,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2031%20from%20line%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":18.589,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":18.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":19.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.352,"w":43.30799999999997,"clr":-1,"A":"left","R":[{"T":"If%20line%2032%20is%20%24175%2C000%20or%20less%20(%2487%2C500%20or%20less%20if%20married%20filing%20separately%20for%202012)%2C%20multiply%20line%2032%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":20.039,"w":43.92299999999996,"clr":-1,"A":"left","R":[{"T":"by%2026%25%20(.26).%20Otherwise%2C%20multiply%20line%2032%20by%2028%25%20(.28)%20and%20subtract%20%243%2C500%20(%241%2C750%20if%20married%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":20.737,"w":32.67300000000001,"clr":-1,"A":"left","R":[{"T":"separately%20for%202012)%20from%20the%20result.%20Form%201040NR%20filers%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.623,"y":20.737,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.44,"y":20.644,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":20.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":21.789,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":21.789,"w":2.9080000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.476,"w":28.984,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%2470%2C700%20if%20married%20filing%20jointly%20or%20qualifying%20widow(er)%20for%202012%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.163,"w":25.301999999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%2435%2C350%20if%20single%20or%20married%20filing%20separately%20for%202012%2C%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.851,"w":20.062999999999995,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%2447%2C350%20if%20head%20of%20household%20for%202012%2C%20or%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.538,"w":13.745000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%242%2C400%20for%20an%20estate%20or%20trust.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.226,"w":16.225000000000005,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%20filers%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":25.226,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.289,"w":29.751000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%207%20of%20your%202012%20Qualified%20Dividends%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":26.976,"w":29.82300000000001,"clr":-1,"A":"left","R":[{"T":"Capital%20Gain%20Tax%20Worksheet%2C%20the%20amount%20from%20line%2014%20of%20your%202012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":27.663,"w":30.12100000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20Tax%20Worksheet%2C%20or%20the%20amount%20from%20line%2023%20of%20the%202012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":28.351,"w":30.52600000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20(Form%201041)%2C%20whichever%20applies.%20If%20you%20did%20not%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":29.038,"w":31.118000000000006,"clr":-1,"A":"left","R":[{"T":"either%20worksheet%20or%20Part%20V%20of%20the%202012%20Schedule%20D%20(Form%201041)%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":29.726,"w":18.393000000000008,"clr":-1,"A":"left","R":[{"T":"-0-.%20Form%201040NR%20filers%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.01,"y":29.726,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2035%20from%20line%2034.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":30.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.339,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.564,"y":31.339,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.402,"y":31.339,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%2027%20or%20line%2028%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":31.339,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":31.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.564,"y":32.089,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.402,"y":32.089,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%2036%20or%20line%2037%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":32.089,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":32.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.839,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2038%20from%20line%2037%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":32.839,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"..............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":32.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.589,"w":12.653000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2039%20by%2015%25%20(.15)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.751,"y":33.589,"w":37.707999999999984,"clr":-1,"A":"left","R":[{"T":"......................","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.087,"y":33.495,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.625,"w":41.95799999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%2029%20is%20zero%20or%20blank%2C%20skip%20lines%2041%20and%2042%20and%20go%20to%20line%2043.%20Otherwise%2C%20go%20to%20line%2041.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.839,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2037%20from%20line%2031%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":35.839,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.621,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.589,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2041%20by%2025%25%20(.25)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":36.589,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.082,"y":36.495,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":37.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.339,"w":11.117000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2033%2C%2040%2C%20and%2042%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":37.339,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":".........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":37.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":38.102,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.102,"w":43.30799999999997,"clr":-1,"A":"left","R":[{"T":"If%20line%2027%20is%20%24175%2C000%20or%20less%20(%2487%2C500%20or%20less%20if%20married%20filing%20separately%20for%202012)%2C%20multiply%20line%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.789,"w":43.92299999999996,"clr":-1,"A":"left","R":[{"T":"by%2026%25%20(.26).%20Otherwise%2C%20multiply%20line%2027%20by%2028%25%20(.28)%20and%20subtract%20%243%2C500%20(%241%2C750%20if%20married%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":39.476,"w":32.39500000000001,"clr":-1,"A":"left","R":[{"T":"separately%20for%202012)%20from%20the%20result.%20Form%201040NR%20filers%2C%20see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.623,"y":39.476,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":39.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.352,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.796,"y":40.352,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.75,"y":40.352,"w":34.621,"clr":-1,"A":"left","R":[{"T":"of%20line%2043%20or%20line%2044%20here%20and%20on%20line%2011.%20If%20you%20filed%20Form%202555%20or%202555-EZ%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":41.039,"w":43.45899999999996,"clr":-1,"A":"left","R":[{"T":"2012%2C%20do%20not%20enter%20this%20amount%20on%20line%2011.%20Instead%2C%20enter%20it%20on%20line%204%20of%20the%20Foreign%20Earned%20Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":41.726,"w":15.188000000000004,"clr":-1,"A":"left","R":[{"T":"Tax%20Worksheet%20in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.819,"y":41.726,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":41.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"45","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.595,"w":0.63,"clr":-1,"A":"left","R":[{"T":"*%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.912,"y":42.595,"w":58.51699999999993,"clr":-1,"A":"left","R":[{"T":"The%202012%20Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet%20is%20in%20the%202012%20Instructions%20for%20Form%201040.%20The%202012%20Schedule%20D%20Tax%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.315,"y":42.595,"w":16.820000000000007,"clr":-1,"A":"left","R":[{"T":"Worksheet%20is%20in%20the%202012%20Instructions%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":43.181,"w":36.788,"clr":-1,"A":"left","R":[{"T":"for%20Schedule%20D%20(Form%201040)%20(or%20the%202012%20Instructions%20for%20Schedule%20D%20(Form%201041)).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.008,"y":44.071,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":44.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8801%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.451,"y":44.071,"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":"NAM3","EN":0},"TI":5652,"AM":1024,"x":17.571,"y":2.147,"w":51.602,"h":0.899},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":5653,"AM":1024,"x":71.593,"y":2.19,"w":21.617,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":5654,"AM":0,"x":84.15,"y":7.5,"w":11.137,"h":0.833,"TU":"Page 3. Part 3. Tax Computation Using Maximum Capital Gains Rates. Caution. If you did not complete the 2012 Qualified Dividends and Capital Gain Tax Worksheet, the 2012 Schedule D Tax Worksheet, or Part 5 of the 2012 Schedule D (Form 1041), see the instructions before completing this part. Enter the amount from Form 8801, line 10. If you filed Form 2555 or 2555 - EZ for 2012, enter the amount from line 3 of the Foreign Earned Income Tax Worksheet in the instructions. Dollars. Caution. If for 2012 you filed Form 1040 NR, 1041, 2555, or 2555-EZ, see the instructions before completing lines 28, 29, and 30. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":5655,"AM":0,"x":65.588,"y":12,"w":11.137,"h":0.833,"TU":"Line 30. Enter the amount from line 6 of your 2011 Qualified Dividends and Capital Gain Tax Worksheet, the amount from line 13 of your 2011 Schedule D Tax Worksheet, or the amount from line 22 of the 2011 Schedule D (Form 1041), whichever applies*. * The 2011 Qualified Dividends and Capital Gain Tax Worksheet is in the 2011 Instructions for Form 1040. The 2011 Schedule D Tax Worksheet is in the 2011 Instructions for Schedule D (Form 1040) (or the 2011 Instructions for Schedule D (Form 1041)). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":5656,"AM":0,"x":65.588,"y":15.75,"w":11.137,"h":0.833,"TU":"If you figured your 2011 tax using the 2011 Qualified Dividends and Capital Gain Tax Worksheet, skip line 31 and enter the amount from line 30 on line 32. Otherwise, go to line 31. Line 31. Enter the amount from line 19 of your 2011 Schedule D (Form 1040) or line 14b column (2) of the 2011 Schedule D (Form 1041). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":5657,"AM":0,"x":65.588,"y":17.25,"w":11.137,"h":0.833,"TU":"Line 32. Add lines 30 and 31, and enter the smaller of that result or the amount from line 10 of your 2011 Schedule D Tax Worksheet. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":5658,"AM":1024,"x":84.15,"y":18,"w":11.137,"h":0.833,"TU":"Line 33. Enter the smaller of line 29 or line 32. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":5659,"AM":1024,"x":84.15,"y":18.75,"w":11.137,"h":0.833,"TU":"Line 32. Subtract line 31 from line 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":5660,"AM":0,"x":84.15,"y":21,"w":11.137,"h":0.833,"TU":"Line 33. If line 32 is $175,000 or less ($87,500 or less if married filing separately for 2012), multiply line 32 by 26 percent (.26). Otherwise, multiply line 32 by 28 percent (.28) and subtract $3,500 ($1,750 if married filing separately for 2012) from the result. Form 1040 NR filers, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ENTERAMT","EN":0},"TI":5661,"AM":0,"x":65.588,"y":25.5,"w":11.137,"h":0.833,"TU":"Line 36. Enter: $69,000 if married filing jointly or qualifying widow (or widower) for 2011, \r$34,500 if single or married filing separately for 2011, $46,250 if head of household for 2011, or $2,300 for an estate or trust. Form 1040 N R filers, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":5662,"AM":0,"x":65.459,"y":29.953,"w":11.138,"h":0.833,"TU":"Line 35. Enter the amount from line 7 of your 2012 Qualified Dividends and Capital Gain Tax Worksheet, the amount from line 14 of your 2012 Schedule D Tax Worksheet, or the amount from line 23 of the 2012 Schedule D (Form 1041), whichever applies. If you did not complete either worksheet or Part 5 of the 2012 Schedule D (Form 1041), enter zero. Form 1040 NR filers, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUB3534","EN":0},"TI":5663,"AM":1024,"x":65.588,"y":30.75,"w":11.137,"h":0.833,"TU":"Line 38. Subtract line 37 from line 36. If zero or less, enter zero. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":5664,"AM":1024,"x":65.523,"y":31.5,"w":11.137,"h":0.833,"TU":"Line 39. Enter the smaller of line 29 or line 30. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":5665,"AM":1024,"x":65.588,"y":32.25,"w":11.137,"h":0.833,"TU":"Line 40. Enter the smaller of line 38 or line 39. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":5666,"AM":1024,"x":65.588,"y":33,"w":11.137,"h":0.833,"TU":"Line 39. Subtract line 38 from line 37. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":5667,"AM":1024,"x":84.086,"y":33.75,"w":11.138,"h":0.833,"TU":"Line 40. Multiply line 39 by 15 percent (.15). If line 29 is zero or blank, skip lines 41 and 42 and go to line 43. Otherwise, go to line 41. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":5668,"AM":1024,"x":65.588,"y":36,"w":11.137,"h":0.833,"TU":"Line 41. Subtract line 37from line 31 Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L53","EN":0},"TI":5669,"AM":1024,"x":84.15,"y":36.75,"w":11.137,"h":0.833,"TU":"Line 42 Multiply line 41by 25 percent (.25). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":5670,"AM":1024,"x":84.15,"y":37.5,"w":11.137,"h":0.833,"TU":"Line 43 Add lines 33 40 and 42 Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L55","EN":0},"TI":5671,"AM":0,"x":84.15,"y":39.75,"w":11.137,"h":0.833,"TU":"Line 44 If line 27is $175,000 or less ($87,500 or less if married filing separately for 2012, multiply line 27 by 26 percent (.26). Otherwise, multiply line 27 by 28 percent (.28) and subtract $3,500 ($1,750 if married filing separately for 2012) from the result. Form 1040 NR filers, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L56","EN":0},"TI":5672,"AM":1024,"x":84.15,"y":42,"w":11.137,"h":0.833,"TU":"Line 45. Enter the smaller of line 43 or line 44 here and on line 11. If you filed Form 2555 or 2555-EZ for 2012, do not enter this amount on line 11. Instead, enter it on line 4 of the Foreign Earned Income Tax Worksheet in the instructions. Dollars."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8812.content.txt b/test/data/fd/form/F8812.content.txt new file mode 100755 index 00000000..9243d61f --- /dev/null +++ b/test/data/fd/form/F8812.content.txt @@ -0,0 +1,200 @@ +smaller +Note. +SCHEDULE 8812 +(Form 1040A +or 1040) + + +Department of the Treasury +Internal Revenue Service (99) + +Child Tax Credit +a + +Attach to Form 1040, Form 1040A, or Form 1040NR. + +a + +Information about Schedule 8812 and its separate instructions is at + +www.irs.gov/schedule8812 +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +47 +1040A +1040 +8812 +` +1040NR +Name(s) shown on return +Your social security number +Part I +Filers Who Have Certain Child Dependent(s) with an ITIN (Individual Taxpayer Identification Number) +F +! +CAUTION +Complete this part only for each dependent who has an ITIN and for whom you are claiming the child tax credit. +If your dependent does not qualify for the credit, you cannot include that dependent in the calculation of this credit. +A +presence test? See separate instructions. +Yes +No +B +presence test? See separate instructions. +Yes +No +C +presence test? See separate instructions. +Yes +No +D +presence test? See separate instructions. +Yes +No +and check here +.................................... +a + +Part II +Additional Child Tax Credit Filers +1 +1040 filers: +Enter the amount from line 6 of your Child Tax Credit Worksheet (see the +Instructions for Form 1040, line 51). +1040A filers: +Enter the amount from line 6 of your Child Tax Credit Worksheet (see the +Instructions for Form 1040A, line 33). +1040NR filers: +Enter the amount from line 6 of your Child Tax Credit Worksheet (see the +Instructions for Form 1040NR, line 48). +If you used Pub. 972, enter the amount from line 8 of the Child Tax Credit Worksheet in the publication. +} +1 +2 +Enter the amount from Form 1040, line 51; Form 1040A, line 33; or Form 1040NR, line 48 +..... +2 +3 +Subtract line 2 from line 1. If zero, +stop; + you cannot take this credit +............. +3 +4a +Earned income (see separate instructions) +........... +4a +b +Nontaxable combat pay (see separate +instructions) +........... +4b +5 +Is the amount on line 4a more than $3,000? +No. +Leave line 5 blank and enter -0- on line 6. +Yes. +Subtract $3,000 from the amount on line 4a. Enter the result . . . +5 +6 +Multiply the amount on line 5 by 15% (.15) and enter the result +.............. +6 +Next. +Do you have three or more qualifying children? +No. +If line 6 is zero, stop; you cannot take this credit. Otherwise, skip Part III and enter the +of +line 3 or line 6 on line 13. +Yes. +If line 6 is equal to or more than line 3, skip Part III and enter the amount from line 3 on line 13. +Otherwise, go to line 7. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 59761M +Schedule 8812 (Form 1040A or 1040) 2013 +(Individual Taxpayer Identification Number) and that you indicated qualified for the child tax credit by checking column (4) for that dependent. +Answer the following questions for each dependent listed on Form 1040, line 6c; Form 1040A, line 6c; or Form 1040NR, line 7c, who has an ITIN +For the first dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial +For the second dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial +For the third dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial +For the fourth dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial +If you have more than four dependents identified with an ITIN and listed as a qualifying child for the child tax credit, see the instructions +----------------Page (0) Break---------------- +Schedule 8812 (Form 1040A or 1040) 2013 +Page +2 +Part III +Certain Filers Who Have Three or More Qualifying Children +7 +Withheld social security, Medicare, and Additional Medicare taxes from +Form(s) W-2, boxes 4 and 6. If married filing jointly, include your spouse’s +amounts with yours. If your employer withheld or you paid Additional +Medicare Tax or tier 1 RRTA taxes, see separate instructions +...... +7 +Enter the total of the amounts from Form 1040, lines +27 and 57, plus any taxes that you identified using code +“UT” and entered on line 60. +1040A filers: +Enter -0-. +1040NR filers: +Enter the total of the amounts from Form 1040NR, +lines 27 and 55, plus any taxes that you identified using +code “UT” and entered on line 59. +} +8 +9 +Add lines 7 and 8 +................... +9 +Enter the total of the amounts from Form 1040, lines +64a and 69. +1040A filers: +Enter the total of the amount from Form 1040A, line +38a, plus any excess social security and tier 1 RRTA +taxes withheld that you entered to the left of line 41 +(see separate instructions). +1040NR filers: +Enter the amount from Form 1040NR, line 65. +} +10 +11 +Subtract line 10 from line 9. If zero or less, enter -0- +................. +11 +12 +Enter the +larger + of line 6 or line 11 +...................... +12 +Next, +enter the +smaller +of line 3 or line 12 on line 13. +Part IV +Additional Child Tax Credit +13 +This is your additional child tax credit +................... +13 +1040A +1040 +1040NR +` +Enter this amount on +Form 1040, line 65, +Form 1040A, line 39, or +Form 1040NR, line 63. +Schedule 8812 (Form 1040A or 1040) 2013 +10 + +1040 filers: +8 + +1040 filers: +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8812.fields.json b/test/data/fd/form/F8812.fields.json new file mode 100755 index 00000000..7f91529a --- /dev/null +++ b/test/data/fd/form/F8812.fields.json @@ -0,0 +1 @@ +[{"id":"A4RB1","type":"radio","calc":false,"value":"C1YESBX"},{"id":"A4RB1","type":"radio","calc":false,"value":"C1NOBX"},{"id":"A4RB2","type":"radio","calc":false,"value":"C2YESBX"},{"id":"A4RB2","type":"radio","calc":false,"value":"C2NOBX"},{"id":"A4RB3","type":"radio","calc":false,"value":"C3YESBX"},{"id":"A4RB3","type":"radio","calc":false,"value":"C3NOBX"},{"id":"A4RB4","type":"radio","calc":false,"value":"C4YESBX"},{"id":"A4RB4","type":"radio","calc":false,"value":"C4NOBX"},{"id":"C5BX","type":"box","calc":false,"value":""},{"id":"L5BRB","type":"radio","calc":false,"value":"L5BN"},{"id":"L5BRB","type":"radio","calc":false,"value":"L5BY"},{"id":"L7BRB","type":"radio","calc":false,"value":"L7BN"},{"id":"L7BRB","type":"radio","calc":false,"value":"L7BY"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add_F8812SMT","type":"link","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L4B","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8812.json b/test/data/fd/form/F8812.json new file mode 100755 index 00000000..e7e3ef1d --- /dev/null +++ b/test/data/fd/form/F8812.json @@ -0,0 +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":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#848587","x":76.725,"y":3.004,"w":6,"l":3.231},{"oc":"#848587","x":74.549,"y":5.796,"w":3,"l":5.156},{"oc":"#848587","x":74.721,"y":3.546,"w":3,"l":3.438},{"oc":"#848587","x":78.159,"y":4.108,"w":3,"l":1.547},{"oc":"#221f1f","x":69.565,"y":4.519,"w":3,"l":5.156},{"oc":"#221f1f","x":69.565,"y":2.269,"w":3,"l":3.609},{"oc":"#221f1f","x":73.174,"y":2.831,"w":3,"l":1.547},{"dsh":1,"oc":"#221f1f","x":69.645,"y":3.063,"w":0.75,"l":5.172},{"dsh":1,"oc":"#221f1f","x":69.645,"y":3.737,"w":0.75,"l":5.172},{"oc":"#221f1f","x":6.145,"y":6,"w":1.5,"l":73.099},{"oc":"#221f1f","x":79.157,"y":6,"w":1.5,"l":19.886},{"oc":"#221f1f","x":6.145,"y":7.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.871,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":28.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":29.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":32.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":36.75,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.245,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":37.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":38.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.27,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.982,"y":39.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.12,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":42,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.545,"y":42,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.682,"y":42,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":42.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.145,"y":46.5,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.932,"y":46.5,"w":1.5,"l":22.361},{"oc":"#221f1f","x":74.207,"y":46.5,"w":1.5,"l":24.836}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":2.995},{"oc":"#221f1f","x":21.038,"y":3.734,"w":1.5,"l":2.297},{"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":4.484,"w":1.5,"l":1.547},{"oc":"#848587","x":79.705,"y":4.108,"w":3,"l":1.688},{"oc":"#848587","x":74.549,"y":4.5,"w":3,"l":1.312},{"oc":"#848587","x":78.159,"y":3.546,"w":3,"l":0.563},{"oc":"#221f1f","x":74.721,"y":2.831,"w":3,"l":1.688},{"oc":"#221f1f","x":69.565,"y":2.269,"w":3,"l":2.25},{"oc":"#221f1f","x":73.174,"y":2.269,"w":3,"l":0.563},{"oc":"#221f1f","x":79.2,"y":5.969,"w":0.75,"l":1.547},{"oc":"#221f1f","x":84.15,"y":29.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.438,"y":29.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":32.235,"w":0.75,"l":4.539},{"oc":"#221f1f","x":80.438,"y":32.235,"w":0.75,"l":4.539},{"oc":"#221f1f","x":95.288,"y":32.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.288,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":37.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.438,"y":37.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":47.025,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.725,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":65.588,"y":41.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.875,"y":41.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":41.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":42.734,"w":0.75,"l":3.789}],"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":8.568,"w":6.188,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.188,"y":28.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":37.5,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":61.875,"y":38.25,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":42.75,"w":18.563,"h":3.75,"clr":-1},{"x":0.799,"y":48.678,"w":1.477,"h":0.537,"clr":1},{"x":0.701,"y":48.757,"w":1.222,"h":0.444,"clr":1}],"Texts":[{"oc":"#221f1f","x":69.721,"y":43.384,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.937,"y":25.885,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":2.019,"w":8.28,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%208812%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":2.769,"w":6.613000000000001,"clr":-1,"A":"left","R":[{"T":"(Form%201040A%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.519,"w":4.113,"clr":-1,"A":"left","R":[{"T":"or%201040)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.515,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,8.98,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.025,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,8.98,0,0]}]},{"oc":"#221f1f","x":36.205,"y":2.665,"w":7.667999999999999,"clr":-1,"A":"left","R":[{"T":"Child%20Tax%20Credit","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":27.607,"y":3.5890000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.927,"y":3.745,"w":24.451000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%20Form%201040A%2C%20or%20Form%201040NR.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.981,"y":4.159,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.3,"y":4.315,"w":31.898,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%208812%20and%20its%20separate%20instructions%20is%20at","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":38.75,"y":4.928,"w":12.728000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fschedule8812","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":55.275,"y":4.928,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.5,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.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":3.393,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":4.219,"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.853,"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.853,"w":1.112,"clr":-1,"A":"left","R":[{"T":"47","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":69.981,"y":2.819,"w":3.224,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":69.536,"y":2.146,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#848587","x":74.696,"y":4.294,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8812","S":4,"TS":[0,14,0,0]}]},{"oc":"#848587","x":74.792,"y":2.469,"w":1,"clr":-1,"A":"left","R":[{"T":"%60","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":69.438,"y":3.5060000000000002,"w":3.946,"clr":-1,"A":"left","R":[{"T":"1040NR%20","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.669,"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":79.638,"y":5.669,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,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":"#181616","x":14.531,"y":7.321,"w":47.67599999999994,"clr":-1,"A":"left","R":[{"T":"Filers%20Who%20Have%20Certain%20Child%20Dependent(s)%20with%20an%20ITIN%20(Individual%20Taxpayer%20Identification%20Number)","S":10,"TS":[0,14,1,0]}]},{"x":6.241,"y":9.357,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.426,"y":9.293,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.352,"y":9.89,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":14.188,"y":8.646,"w":45.325,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20for%20each%20dependent%20who%20has%20an%20ITIN%20and%20for%20whom%20you%20are%20claiming%20the%20child%20tax%20credit.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.188,"y":9.396,"w":46.130999999999986,"clr":-1,"A":"left","R":[{"T":"If%20your%20dependent%20does%20not%20qualify%20for%20the%20credit%2C%20you%20cannot%20include%20that%20dependent%20in%20the%20calculation%20of%20this%20credit.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":13.888,"w":1.278,"clr":-1,"A":"left","R":[{"T":"A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":14.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":15.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.474,"y":15.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":16.885,"w":1.278,"clr":-1,"A":"left","R":[{"T":"B%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":18.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.527,"y":18.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.937,"y":19.905,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":20.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":21.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.474,"y":21.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":22.9,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":24.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.527,"y":24.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.749,"w":6.247,"clr":-1,"A":"left","R":[{"T":"and%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.374,"y":26.749,"w":47.987999999999964,"clr":-1,"A":"left","R":[{"T":"....................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.528,"y":26.655,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":6.582,"y":28.321,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#181616","x":14.531,"y":28.321,"w":15.781000000000002,"clr":-1,"A":"left","R":[{"T":"Additional%20Child%20Tax%20Credit%20Filers","S":10,"TS":[0,14,1,0]}]},{"oc":"#181616","x":7.639,"y":29.134,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.165,"w":5.503,"clr":-1,"A":"left","R":[{"T":"1040%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":29.134,"w":29.939999999999984,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%206%20of%20your%20Child%20Tax%20Credit%20Worksheet%20(see%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.019,"y":29.822,"w":14.638000000000003,"clr":-1,"A":"left","R":[{"T":"Instructions%20for%20Form%201040%2C%20line%2051).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":30.572,"w":6.225000000000001,"clr":-1,"A":"left","R":[{"T":"1040A%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.019,"y":30.634,"w":29.939999999999984,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%206%20of%20your%20Child%20Tax%20Credit%20Worksheet%20(see%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.013,"y":31.320999999999998,"w":15.360000000000003,"clr":-1,"A":"left","R":[{"T":"Instructions%20for%20Form%201040A%2C%20line%2033).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.875,"y":32.165,"w":6.947000000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.013,"y":32.134,"w":29.939999999999984,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%206%20of%20your%20Child%20Tax%20Credit%20Worksheet%20(see%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.006,"y":32.821,"w":16.027,"clr":-1,"A":"left","R":[{"T":"Instructions%20for%20Form%201040NR%2C%20line%2048).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.869,"y":34.321,"w":41.88499999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20used%20Pub.%20972%2C%20enter%20the%20amount%20from%20line%208%20of%20the%20Child%20Tax%20Credit%20Worksheet%20in%20the%20publication.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.045,"y":33.173,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,19.2,0,0]}]},{"oc":"#221f1f","x":81.657,"y":31.322000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.639,"y":35.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":35.822,"w":36.83299999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2051%3B%20Form%201040A%2C%20line%2033%3B%20or%20Form%201040NR%2C%20line%2048%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.874,"y":35.822,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.657,"y":35.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.639,"y":36.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":36.572,"w":14.164000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20If%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.11,"y":36.572,"w":2.111,"clr":-1,"A":"left","R":[{"T":"stop%3B","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":35.375,"y":36.572,"w":11.054000000000004,"clr":-1,"A":"left","R":[{"T":"%20you%20cannot%20take%20this%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":36.572,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.657,"y":36.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.639,"y":37.322,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":37.322,"w":16.912000000000006,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20(see%20separate%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":37.322,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.708,"y":37.322,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.446,"y":38.134,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":38.134,"w":15.134000000000006,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20combat%20pay%20(see%20separate%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":38.822,"w":5.250000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.374,"y":38.822,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.102,"y":38.822,"w":1.445,"clr":-1,"A":"left","R":[{"T":"4b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.639,"y":39.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":39.572,"w":17.609000000000005,"clr":-1,"A":"left","R":[{"T":"Is%20the%20amount%20on%20line%204a%20more%20than%20%243%2C000%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.638,"y":40.322,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.075,"y":40.322,"w":17.024000000000004,"clr":-1,"A":"left","R":[{"T":"Leave%20line%205%20blank%20and%20enter%20-0-%20on%20line%206.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.638,"y":41.072,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.075,"y":41.072,"w":24.302999999999994,"clr":-1,"A":"left","R":[{"T":"Subtract%20%243%2C000%20from%20the%20amount%20on%20line%204a.%20Enter%20the%20result%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.439,"y":41.072,"w":0.25,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.501,"y":41.072,"w":0.25,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.563,"y":41.072,"w":0.25,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":63.095,"y":41.072,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.639,"y":41.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.822,"w":25.608999999999988,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20line%205%20by%2015%25%20(.15)%20and%20enter%20the%20result%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":41.822,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.657,"y":41.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":42.572,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Next.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.14,"y":42.572,"w":19.329,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20three%20or%20more%20qualifying%20children%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.638,"y":43.322,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.075,"y":43.384,"w":34.85499999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%206%20is%20zero%2C%20stop%3B%20you%20cannot%20take%20this%20credit.%20Otherwise%2C%20skip%20Part%20III%20and%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.078,"y":43.384,"w":1.083,"clr":-1,"A":"left","R":[{"T":"of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.07,"y":44.071,"w":10.583000000000002,"clr":-1,"A":"left","R":[{"T":"line%203%20or%20line%206%20on%20line%2013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.638,"y":44.822,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.075,"y":44.884,"w":38.77299999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%206%20is%20equal%20to%20or%20more%20than%20line%203%2C%20skip%20Part%20III%20and%20enter%20the%20amount%20from%20line%203%20on%20line%2013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.067,"y":45.572,"w":9.638000000000002,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20go%20to%20line%207.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":46.395,"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":58.271,"y":46.375,"w":7.633000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2059761M","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.969,"y":46.375,"w":19.898000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%208812%20(Form%201040A%20or%201040)%202013","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.938,"y":12.322,"w":57.57199999999999,"clr":-1,"A":"left","R":[{"T":"(Individual%20Taxpayer%20Identification%20Number)%20and%20that%20you%20indicated%20qualified%20for%20the%20child%20tax%20credit%20by%20checking%20column%20(4)%20for%20that%20dependent.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.635,"w":59.10499999999999,"clr":-1,"A":"left","R":[{"T":"Answer%20the%20following%20questions%20for%20each%20dependent%20listed%20on%20Form%201040%2C%20line%206c%3B%20Form%201040A%2C%20line%206c%3B%20or%20Form%201040NR%2C%20line%207c%2C%20who%20has%20an%20ITIN%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.884,"w":54.439,"clr":-1,"A":"left","R":[{"T":"For%20the%20first%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":16.885,"w":55.605,"clr":-1,"A":"left","R":[{"T":"For%20the%20second%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.884,"w":54.71699999999999,"clr":-1,"A":"left","R":[{"T":"For%20the%20third%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":22.885,"w":55.27199999999999,"clr":-1,"A":"left","R":[{"T":"For%20the%20fourth%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.803,"y":25.885,"w":55.10199999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20four%20dependents%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20see%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5673,"AM":1024,"x":6.188,"y":6.625,"w":73.013,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5674,"AM":1024,"x":79.2,"y":6.625,"w":19.8,"h":0.875},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8812SMT"}},"id":{"Id":"Add_F8812SMT","EN":0},"TI":5683,"AM":0,"x":20.214,"y":26.691,"w":6.236,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5685,"AM":0,"x":84.225,"y":31.5,"w":11.138,"h":0.833,"TU":"Line 1. Enter the amount from line 6 of your Child Tax Credit Worksheet."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5686,"AM":1024,"x":84.15,"y":36,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5687,"AM":1024,"x":84.15,"y":36.75,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5688,"AM":0,"x":65.588,"y":37.477,"w":11.137,"h":0.833,"TU":"Line 4a. Earned income (see separate instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4B","EN":0},"TI":5689,"AM":0,"x":47.025,"y":39,"w":11.137,"h":0.833,"TU":"Line 4b. Nontaxable combat pay (see separate instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5692,"AM":1024,"x":65.513,"y":41.25,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5693,"AM":1024,"x":84.15,"y":42,"w":11.137,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1YESBX","EN":0},"TI":5675,"AM":0,"x":16.613,"y":15.702,"w":1.402,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1NOBX","EN":0},"TI":5676,"AM":0,"x":29.712,"y":15.785,"w":1.402,"h":0.833,"checked":false}],"id":{"Id":"A4RB1","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2YESBX","EN":0},"TI":5677,"AM":0,"x":16.219,"y":18.686,"w":2.122,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2NOBX","EN":0},"TI":5678,"AM":0,"x":29.539,"y":18.752,"w":1.672,"h":0.833,"checked":false}],"id":{"Id":"A4RB2","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3YESBX","EN":0},"TI":5679,"AM":0,"x":16.399,"y":21.599,"w":1.852,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3NOBX","EN":0},"TI":5680,"AM":0,"x":29.449,"y":21.697,"w":1.672,"h":0.833,"checked":false}],"id":{"Id":"A4RB3","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C4YESBX","EN":0},"TI":5681,"AM":0,"x":16.553,"y":24.675,"w":1.672,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C4NOBX","EN":0},"TI":5682,"AM":0,"x":29.809,"y":24.708,"w":1.312,"h":0.833,"checked":false}],"id":{"Id":"A4RB4","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C5BX","EN":0},"TI":5684,"AM":0,"x":96.979,"y":26.845,"w":1.719,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5BN","EN":0},"TI":5690,"AM":0,"x":11.614,"y":40.539,"w":1.222,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5BY","EN":0},"TI":5691,"AM":0,"x":11.614,"y":41.301,"w":1.222,"h":0.833,"checked":false}],"id":{"Id":"L5BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7BN","EN":0},"TI":5694,"AM":0,"x":11.689,"y":43.534,"w":1.222,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7BY","EN":0},"TI":5695,"AM":0,"x":11.614,"y":45.058,"w":1.222,"h":0.833,"checked":false}],"id":{"Id":"L7BRB","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,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":61.832,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":3.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":6.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":9.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.682,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.545,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.658,"y":13.507,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.832,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.569,"y":17.25,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.658,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.101,"y":20.25,"w":0.75,"l":11.199},{"oc":"#221f1f","x":95.245,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":21,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.395,"y":21.75,"w":1.125,"l":18.648},{"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":80.395,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":23.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.752,"y":25.887,"w":3,"l":5.156},{"oc":"#221f1f","x":75.752,"y":23.637,"w":3,"l":3.609},{"oc":"#221f1f","x":79.362,"y":24.2,"w":3,"l":1.547},{"dsh":1,"oc":"#221f1f","x":75.832,"y":24.423,"w":0.75,"l":5.172},{"dsh":1,"oc":"#221f1f","x":75.832,"y":25.097,"w":0.75,"l":5.172},{"dsh":1,"oc":"#221f1f","x":82.87,"y":25.5,"w":1.5,"l":16.197},{"oc":"#221f1f","x":6.145,"y":26.25,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":65.588,"y":3.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":3.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.725,"y":3.734,"w":0.75,"l":2.238},{"oc":"#221f1f","x":84.15,"y":3.734,"w":0.75,"l":13.531},{"oc":"#221f1f","x":80.438,"y":3.734,"w":0.75,"l":13.531},{"oc":"#221f1f","x":95.288,"y":3.734,"w":0.75,"l":15.781},{"oc":"#221f1f","x":76.725,"y":5.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":6.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":6.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.725,"y":6.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.725,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":9.688,"w":0.75,"l":3.828},{"oc":"#221f1f","x":61.875,"y":9.688,"w":0.75,"l":3.828},{"oc":"#221f1f","x":76.725,"y":9.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.701,"y":12.741,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.588,"y":13.484,"w":0.75,"l":3.789},{"oc":"#221f1f","x":61.875,"y":13.484,"w":0.75,"l":3.789},{"oc":"#221f1f","x":76.725,"y":13.49,"w":0.75,"l":3.025},{"oc":"#221f1f","x":76.701,"y":16.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":17.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.438,"y":17.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":19.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":20.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"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":80.909,"y":24.2,"w":3,"l":1.688},{"oc":"#221f1f","x":75.752,"y":23.637,"w":3,"l":2.25},{"oc":"#221f1f","x":79.362,"y":23.637,"w":3,"l":0.563},{"dsh":1,"oc":"#221f1f","x":98.981,"y":23.235,"w":1.5,"l":2.297}],"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":80.438,"y":3.75,"w":3.712,"h":13.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":21,"w":18.563,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.095,"y":21.75,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":19.15700000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%208812%20(Form%201040A%20or%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":10,"TS":[0,14,1,0]}]},{"x":6.329,"y":2.821,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":2.821,"w":28.229,"clr":-1,"A":"left","R":[{"T":"Certain%20Filers%20Who%20Have%20Three%20or%20More%20Qualifying%20Children%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.639,"y":3.758,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":3.753,"w":32.439000000000036,"clr":-1,"A":"left","R":[{"T":"Withheld%20social%20security%2C%20Medicare%2C%20and%20Additional%20Medicare%20taxes%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":4.44,"w":30.801999999999985,"clr":-1,"A":"left","R":[{"T":"Form(s)%20W-2%2C%20boxes%204%20and%20%206.%20If%20married%20filing%20jointly%2C%20include%20your%20spouse%E2%80%99s%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":5.127,"w":28.497999999999994,"clr":-1,"A":"left","R":[{"T":"amounts%20with%20yours.%20If%20your%20employer%20withheld%20or%20you%20paid%20Additional%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":5.815,"w":24.438999999999986,"clr":-1,"A":"left","R":[{"T":"Medicare%20Tax%20or%20tier%201%20RRTA%20taxes%2C%20see%20separate%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.239,"y":5.815,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.095,"y":5.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":6.709,"w":21.36,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20the%20amounts%20from%20Form%201040%2C%20lines%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.02,"y":7.397,"w":22.497999999999998,"clr":-1,"A":"left","R":[{"T":"27%20and%2057%2C%20plus%20any%20taxes%20that%20you%20identified%20using%20code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.017,"y":8.084,"w":11.858000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CUT%E2%80%9D%20and%20entered%20on%20line%2060.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":8.821,"w":6.225000000000001,"clr":-1,"A":"left","R":[{"T":"1040A%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.017,"y":8.88,"w":4.082000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20-0-.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":9.664,"w":6.947000000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.017,"y":9.755,"w":20.610000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20the%20amounts%20from%20Form%201040NR%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.017,"y":10.443,"w":22.498999999999995,"clr":-1,"A":"left","R":[{"T":"lines%2027%20and%2055%2C%20plus%20any%20taxes%20that%20you%20identified%20using%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.016,"y":11.13,"w":14.246000000000004,"clr":-1,"A":"left","R":[{"T":"code%20%E2%80%9CUT%E2%80%9D%20%20and%20entered%20on%20line%2059.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.607,"y":9.768,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,15.75,0,0]}]},{"oc":"#221f1f","x":63.095,"y":8.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.639,"y":12.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":12.572,"w":7.305,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%208%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":12.572,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.095,"y":12.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":14.134,"w":21.36,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20the%20amounts%20from%20Form%201040%2C%20lines%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.02,"y":14.821,"w":4.888,"clr":-1,"A":"left","R":[{"T":"64a%20and%2069.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":15.712,"w":6.225000000000001,"clr":-1,"A":"left","R":[{"T":"1040A%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.02,"y":15.759,"w":21.304000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20the%20amount%20from%20Form%201040A%2C%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.027,"y":16.446,"w":21.358000000000004,"clr":-1,"A":"left","R":[{"T":"38a%2C%20plus%20any%20excess%20social%20security%20and%20tier%201%20RRTA%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.033,"y":17.133,"w":20.913999999999998,"clr":-1,"A":"left","R":[{"T":"taxes%20withheld%20that%20you%20entered%20to%20the%20left%20of%20line%2041%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.039,"y":17.821,"w":10.886000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20separate%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.901,"y":18.57,"w":6.947000000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.039,"y":18.57,"w":18.888,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040NR%2C%20line%2065.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.581,"y":17.427,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,16.8,0,0]}]},{"oc":"#221f1f","x":62.708,"y":16.322,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.866,"y":19.322,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":19.322,"w":21.161999999999995,"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":45.124,"y":19.322,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.27,"y":19.322,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.866,"y":20.072,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.072,"w":3.888,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.902,"y":20.072,"w":2.779,"clr":-1,"A":"left","R":[{"T":"larger","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.767,"y":20.072,"w":7.916000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%206%20or%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":20.072,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.27,"y":20.072,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.759,"w":2.7230000000000003,"clr":-1,"A":"left","R":[{"T":"Next%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.753,"y":20.759,"w":3.7209999999999996,"clr":-1,"A":"left","R":[{"T":"enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.509,"y":20.759,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.621,"y":20.759,"w":12.166000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%203%20or%20line%2012%20on%20line%2013.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.201,"y":21.571,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":21.571,"w":13.113000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20Child%20Tax%20Credit%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.866,"y":22.322,"w":1.25,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":22.364,"w":18.228000000000005,"clr":-1,"A":"left","R":[{"T":"This%20is%20your%20additional%20child%20tax%20credit%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":41,"y":22.364,"w":22.799999999999994,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.27,"y":22.322,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":76.169,"y":24.179,"w":3.224,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":75.723,"y":23.515,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":75.626,"y":24.936,"w":3.946,"clr":-1,"A":"left","R":[{"T":"1040NR%20","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":81.197,"y":24.822,"w":1,"clr":-1,"A":"left","R":[{"T":"%60","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.381,"y":22.924,"w":8.667,"clr":-1,"A":"left","R":[{"T":"Enter%20this%20amount%20on%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.381,"y":23.424,"w":8.222000000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2065%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.381,"y":23.924,"w":9.971999999999998,"clr":-1,"A":"left","R":[{"T":"Form%201040A%2C%20line%2039%2C%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.381,"y":24.424,"w":9.25,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2063.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.969,"y":26.125,"w":19.898000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%208812%20(Form%201040A%20or%201040)%202013","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.866,"y":14.165,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.165,"w":5.503,"clr":-1,"A":"left","R":[{"T":"1040%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.639,"y":6.665,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":6.665,"w":5.503,"clr":-1,"A":"left","R":[{"T":"1040%20filers%3A%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5696,"AM":0,"x":65.588,"y":6.025,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5697,"AM":0,"x":65.588,"y":9.025,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5698,"AM":1024,"x":65.706,"y":12.671,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5699,"AM":0,"x":65.824,"y":16.318,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5700,"AM":1024,"x":84.387,"y":19.533,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":5701,"AM":1024,"x":84.387,"y":20.283,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":5702,"AM":1024,"x":84.387,"y":22.533,"w":11.138,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8812SMT.content.txt b/test/data/fd/form/F8812SMT.content.txt new file mode 100755 index 00000000..b5012e23 --- /dev/null +++ b/test/data/fd/form/F8812SMT.content.txt @@ -0,0 +1,44 @@ +For the sixth dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial +For the fifth dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial + + +Child Tax Credit Statement + + + + +20 +13 +Name(s) shown on return +Your social security number +Part I +Filers Who Have Certain Child Dependent(s) with an ITIN (Individual Taxpayer Identification Number) +F +! +CAUTION +Complete this part only for each dependent who has an ITIN and for whom you are claiming the child tax credit. +If your dependent does not qualify for the credit, you cannot include that dependent in the calculation of this credit. +A +presence test? See separate instructions. +Yes +No +B +presence test? See separate instructions. +Yes +No +C +presence test? See separate instructions. +Yes +No +D +presence test? See separate instructions. +Yes +No + +(Individual Taxpayer Identification Number) and that you indicated qualified for the child tax credit by checking column (4) for that dependent. +Answer the following questions for each dependent listed on Form 1040, line 6c; Form 1040A, line 6c; or Form 1040NR, line 7c, who has an ITIN +For the seventh dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial +For the eighth dependent identified with an ITIN and listed as a qualifying child for the child tax credit, did this child meet the substantial +SCHEDULE 8812 +- Part 1 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8812SMT.fields.json b/test/data/fd/form/F8812SMT.fields.json new file mode 100755 index 00000000..f30b2211 --- /dev/null +++ b/test/data/fd/form/F8812SMT.fields.json @@ -0,0 +1 @@ +[{"id":"A4RB1","type":"radio","calc":false,"value":"C1YESBX"},{"id":"A4RB1","type":"radio","calc":false,"value":"C1NOBX"},{"id":"A4RB2","type":"radio","calc":false,"value":"C2YESBX"},{"id":"A4RB2","type":"radio","calc":false,"value":"C2NOBX"},{"id":"A4RB3","type":"radio","calc":false,"value":"C3YESBX"},{"id":"A4RB3","type":"radio","calc":false,"value":"C3NOBX"},{"id":"A4RB4","type":"radio","calc":false,"value":"C4YESBX"},{"id":"A4RB4","type":"radio","calc":false,"value":"C4NOBX"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8812SMT.json b/test/data/fd/form/F8812SMT.json new file mode 100755 index 00000000..33d3607b --- /dev/null +++ b/test/data/fd/form/F8812SMT.json @@ -0,0 +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":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6,"w":1.5,"l":73.099},{"oc":"#221f1f","x":79.157,"y":6,"w":1.5,"l":19.886},{"oc":"#221f1f","x":6.145,"y":7.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.871,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":26.625,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.932,"y":26.625,"w":1.5,"l":22.361},{"oc":"#221f1f","x":74.207,"y":26.625,"w":1.5,"l":24.836}],"VLines":[{"oc":"#221f1f","x":21.012,"y":3.717,"w":1.5,"l":2.269},{"oc":"#221f1f","x":84.15,"y":3.703,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":4.453,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":4.484,"w":1.5,"l":1.547},{"oc":"#221f1f","x":79.2,"y":5.969,"w":0.75,"l":1.547}],"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":8.568,"w":6.188,"h":2.25,"clr":-1},{"oc":"#221f1f","x":0,"y":48.878,"w":1.672,"h":0.608,"clr":-1}],"Texts":[{"oc":"#221f1f","x":9.65,"y":16.885,"w":54.772999999999996,"clr":-1,"A":"left","R":[{"T":"For%20the%20sixth%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.884,"w":54.54999999999999,"clr":-1,"A":"left","R":[{"T":"For%20the%20fifth%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.025,"y":4.134,"w":12.78,"clr":-1,"A":"left","R":[{"T":"Child%20Tax%20Credit%20Statement","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":86.857,"y":4.861,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":4.861,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.669,"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":79.638,"y":5.669,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,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":"#181616","x":14.531,"y":7.321,"w":47.67599999999994,"clr":-1,"A":"left","R":[{"T":"Filers%20Who%20Have%20Certain%20Child%20Dependent(s)%20with%20an%20ITIN%20(Individual%20Taxpayer%20Identification%20Number)","S":10,"TS":[0,14,1,0]}]},{"x":6.241,"y":9.357,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.426,"y":9.293,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.352,"y":9.89,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":14.188,"y":8.646,"w":45.325,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20for%20each%20dependent%20who%20has%20an%20ITIN%20and%20for%20whom%20you%20are%20claiming%20the%20child%20tax%20credit.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.188,"y":9.396,"w":46.130999999999986,"clr":-1,"A":"left","R":[{"T":"If%20your%20dependent%20does%20not%20qualify%20for%20the%20credit%2C%20you%20cannot%20include%20that%20dependent%20in%20the%20calculation%20of%20this%20credit.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":13.888,"w":1.278,"clr":-1,"A":"left","R":[{"T":"A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":14.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":15.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.474,"y":15.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":16.885,"w":1.278,"clr":-1,"A":"left","R":[{"T":"B%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":18.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.527,"y":18.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.937,"y":19.905,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":20.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":21.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.474,"y":21.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":22.9,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.572,"w":15.968000000000005,"clr":-1,"A":"left","R":[{"T":"presence%20test%3F%20See%20separate%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.578,"y":24.576,"w":1.555,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.527,"y":24.572,"w":1.222,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":12.322,"w":57.57199999999999,"clr":-1,"A":"left","R":[{"T":"(Individual%20Taxpayer%20Identification%20Number)%20and%20that%20you%20indicated%20qualified%20for%20the%20child%20tax%20credit%20by%20checking%20column%20(4)%20for%20that%20dependent.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.635,"w":59.10499999999999,"clr":-1,"A":"left","R":[{"T":"Answer%20the%20following%20questions%20for%20each%20dependent%20listed%20on%20Form%201040%2C%20line%206c%3B%20Form%201040A%2C%20line%206c%3B%20or%20Form%201040NR%2C%20line%207c%2C%20who%20has%20an%20ITIN%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.885,"w":55.882999999999996,"clr":-1,"A":"left","R":[{"T":"For%20the%20seventh%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":22.885,"w":55.327999999999996,"clr":-1,"A":"left","R":[{"T":"For%20the%20eighth%20dependent%20identified%20with%20an%20ITIN%20and%20listed%20as%20a%20qualifying%20child%20for%20the%20child%20tax%20credit%2C%20did%20this%20child%20meet%20the%20substantial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.801,"w":8.28,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%208812%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.239,"y":4.988,"w":3.39,"clr":-1,"A":"left","R":[{"T":"-%20Part%201","S":10,"TS":[0,14,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5703,"AM":1024,"x":6.188,"y":6.625,"w":73.013,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5704,"AM":1024,"x":79.2,"y":6.625,"w":19.8,"h":0.875}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1YESBX","EN":0},"TI":5705,"AM":0,"x":16.613,"y":15.702,"w":1.402,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1NOBX","EN":0},"TI":5706,"AM":0,"x":29.712,"y":15.785,"w":1.402,"h":0.833,"checked":false}],"id":{"Id":"A4RB1","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2YESBX","EN":0},"TI":5707,"AM":0,"x":16.219,"y":18.686,"w":2.122,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2NOBX","EN":0},"TI":5708,"AM":0,"x":29.539,"y":18.752,"w":1.672,"h":0.833,"checked":false}],"id":{"Id":"A4RB2","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3YESBX","EN":0},"TI":5709,"AM":0,"x":16.399,"y":21.599,"w":1.852,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3NOBX","EN":0},"TI":5710,"AM":0,"x":29.449,"y":21.697,"w":1.672,"h":0.833,"checked":false}],"id":{"Id":"A4RB3","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C4YESBX","EN":0},"TI":5711,"AM":0,"x":16.553,"y":24.675,"w":1.672,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C4NOBX","EN":0},"TI":5712,"AM":0,"x":29.809,"y":24.708,"w":1.312,"h":0.833,"checked":false}],"id":{"Id":"A4RB4","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8814.content.txt b/test/data/fd/form/F8814.content.txt new file mode 100755 index 00000000..ae49728e --- /dev/null +++ b/test/data/fd/form/F8814.content.txt @@ -0,0 +1,144 @@ +Form + 8814 +Department of the Treasury +Internal Revenue Service (99) +Parents' Election To Report +Child's Interest and Dividends +a + + + +a + +Attach to parents' Form 1040 or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +40 +Name(s) shown on your return +Your social security number +Caution. + +file a separate tax return for the child instead of making this election. This is because you cannot take certain tax benefits that your +A + Child's name (first, initial, and last) +B Child•s social security number +C +If more than one Form 8814 is attached, check here +..................... +a +Part I +Child's Interest and Dividends To Report on Your Return +1 a +child’s Forms 1099-INT and 1099-OID, see the instructions +............ +1a +b +on line 1a +................... +1b +2 a +Enter your child’s ordinary dividends, including any Alaska Permanent Fund dividends. If your +child received any ordinary dividends as a nominee, see the instructions +........ +2a +b +Enter your child’s qualified dividends included on line 2a. See the +instructions +.................. +2b +3 +Enter your child’s capital gain distributions. If your child received any capital gain distributions +as a nominee, see the instructions +.................... +3 +4 +Add lines 1a, 2a, and 3. If the total is $2,000 or less, skip lines 5 through 12 and go to line 13. If +report the income +.......................... +4 +5 +Base amount +........................... +5 +6 +Subtract line 5 from line 4 +....................... +6 +If both lines 2b and 3 are zero or blank, skip lines 7 through 10, enter -0- on line 11, and go +to line 12. Otherwise, go to line 7. +7 +Divide line 2b by line 4. Enter the result as a decimal (rounded to at +least three places) +................ +7 +. +8 +Divide line 3 by line 4. Enter the result as a decimal (rounded to at +least three places) +................ +8 +. +9 +Multiply line 6 by line 7. Enter the result here. See the instructions +for where to report this amount on your return +....... +9 +10 +Multiply line 6 by line 8. Enter the result here. See the instructions +for where to report this amount on your return +....... +10 +11 +Add lines 9 and 10 +.......................... +11 +12 +Subtract line 11 from line 6. Include this amount in the total on Form 1040, line 21, or Form +1040NR, line 21. In the space next to line 21, enter “Form 8814” and show the amount. If you +checked the box on line C above, see the instructions. Go to line 13 below +....... +12 +Part II +Tax on the First $2,000 of Child's Interest and Dividends +13 +Amount not taxed +.......................... +13 +14 +Subtract line 13 from line 4. If the result is zero or less, enter -0- +........... +14 +Is the amount on line 14 less than $1,000? +No. +Yes. +} +... +15 +Note. +If you checked the box on line C above, see the instructions. Otherwise, include the amount from line 15 in the tax you enter +on Form 1040, line 44, or Form 1040NR, line 42. Be sure to check box +a +on Form 1040, line 44, or Form 1040NR, line 42. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 10750J +Form +8814 +(2013) +2,000 00 +1,000 00 + +child could take on his or her own return. For details, see Tax benefits you cannot take in the instructions. +Enter your child’s taxable interest. If this amount is different from the amounts shown on the +Enter your child’s tax-exempt interest. Do not include this amount +the total is $10,000 or more, do not file this form. Your child must file his or her own return to +15 + +Tax. +Information about Form 8814 and its instructions is at www.irs.gov/form8814. +The federal income tax on your child’s income, including qualified dividends and capital gain distributions, may be lessif you +Enter $100 here and see the Note below. +Multiply line 14 by 10% (.10). Enter the result here and see the Note below. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8814.fields.json b/test/data/fd/form/F8814.fields.json new file mode 100755 index 00000000..d7a41e5c --- /dev/null +++ b/test/data/fd/form/F8814.fields.json @@ -0,0 +1 @@ +[{"id":"CX","type":"box","calc":false,"value":""},{"id":"L9XRB","type":"radio","calc":false,"value":"L9XN"},{"id":"L9XRB","type":"radio","calc":false,"value":"L9XY"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"AA","type":"alpha","calc":false,"value":""},{"id":"AB","type":"mask","calc":false,"value":""},{"id":"AC","type":"alpha","calc":false,"value":""},{"id":"B","type":"ssn","calc":false,"value":""},{"id":"L1A","type":"number","calc":false,"value":""},{"id":"L1B","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"QDIV","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"SUBTOT6","type":"number","calc":true,"value":""},{"id":"SUBTOT1","type":"percent","calc":true,"value":""},{"id":"SUBTOT2","type":"percent","calc":true,"value":""},{"id":"SUBTOT3","type":"number","calc":true,"value":""},{"id":"SUBTOT4","type":"number","calc":true,"value":""},{"id":"SUBTOT5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8814.json b/test/data/fd/form/F8814.json new file mode 100755 index 00000000..83a71910 --- /dev/null +++ b/test/data/fd/form/F8814.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8814","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.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":6.147,"y":9.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.684,"y":10.501,"w":0.75,"l":22.361},{"oc":"#221f1f","x":94.465,"y":11.751,"w":0.75,"l":2.75},{"oc":"#221f1f","x":94.465,"y":10.751,"w":0.75,"l":2.75},{"oc":"#221f1f","x":6.147,"y":12.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":92.899},{"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":59.359,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":16.501,"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":79.159,"y":18.001,"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":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"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":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":82.872,"y":24.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":27.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":71.734,"y":27.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":59.359,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":29.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":71.734,"y":29.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":59.359,"y":30.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":59.359,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":32.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":32.251,"w":1.125,"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":6.147,"y":35.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":36.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":37.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":37.501,"w":1.125,"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":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.249,"y":39.751,"w":0.75,"l":3.797},{"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":34.736},{"oc":"#221f1f","x":87.822,"y":42.001,"w":1.5,"l":11.223}],"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.531},{"oc":"#221f1f","x":76.727,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":97.215,"y":10.751,"w":0.75,"l":1},{"oc":"#221f1f","x":94.465,"y":10.751,"w":0.75,"l":1},{"oc":"#221f1f","x":82.915,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":14.985,"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.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":15.735,"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":17.236,"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":82.915,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":18.735,"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":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"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.531},{"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":0.789},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"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":0.789},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":24.728,"w":0.75,"l":7.539},{"oc":"#221f1f","x":79.202,"y":24.728,"w":0.75,"l":7.539},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":7.531},{"oc":"#221f1f","x":63.115,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":30.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":30.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.49,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":31.485,"w":0.75,"l":0.789},{"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":2.289},{"oc":"#221f1f","x":79.202,"y":32.985,"w":0.75,"l":2.289},{"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.789},{"oc":"#221f1f","x":82.915,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.789},{"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},{"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":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.292,"y":38.985,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":12.376,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bdc0c2","x":79.202,"y":15.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bdc0c2","x":79.202,"y":18.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bdc0c2","x":79.202,"y":24.751,"w":3.713,"h":7.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":35.642,"w":6.188,"h":0.75,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":49.064,"w":1.195,"h":0.373,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":49.064,"w":1.195,"h":0.373,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.748,"y":2.634,"w":2.7800000000000002,"clr":-1,"A":"left","R":[{"T":"%208814%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.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.251,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":37.451,"y":2.164,"w":13.630000000000004,"clr":-1,"A":"left","R":[{"T":"Parents'%20Election%20To%20Report%20%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":36.2,"y":3.039,"w":14.297000000000004,"clr":-1,"A":"left","R":[{"T":"Child's%20Interest%20and%20Dividends","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":26.364,"y":3.66,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.445,"y":4.223,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":37.813,"y":4.316,"w":22.021000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20parents'%20Form%201040%20or%20Form%201040NR.","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.857,"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.303,"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.303,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":13.446000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20your%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":4.938,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.603,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.947,"y":7.289999999999999,"w":58.51099999999994,"clr":-1,"A":"left","R":[{"T":"file%20a%20separate%20tax%20return%20for%20the%20child%20instead%20of%20making%20this%20election.%20This%20is%20because%20you%20cannot%20take%20certain%20tax%20benefits%20that%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.971,"y":8.778,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.03,"y":8.778,"w":16.096000000000004,"clr":-1,"A":"left","R":[{"T":"%20%20%20Child's%20name%20(first%2C%20initial%2C%20and%20last)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.165,"y":8.778,"w":16.411,"clr":-1,"A":"left","R":[{"T":"B%20%20%20Child%E2%80%A2s%20social%20security%20number%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":6.971,"y":11.09,"w":1.556,"clr":-1,"A":"left","R":[{"T":"C%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.407,"y":11.09,"w":23.396999999999995,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%20one%20Form%208814%20is%20attached%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.221,"y":11.09,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":".....................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.452,"y":10.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":12.197,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":12.228,"w":27.131000000000007,"clr":-1,"A":"left","R":[{"T":"Child's%20Interest%20and%20Dividends%20To%20Report%20on%20Your%20Return%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":13.278,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"1%20a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":13.977,"w":26.324000000000005,"clr":-1,"A":"left","R":[{"T":"child%E2%80%99s%20Forms%201099-INT%20and%201099-OID%2C%20see%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":13.977,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":14.809,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.885,"y":15.478000000000002,"w":4.594000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%201a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.31,"y":15.478000000000002,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"...................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":15.59,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":16.309,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"2%20a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.29,"w":41.93599999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20child%E2%80%99s%20ordinary%20dividends%2C%20including%20any%20Alaska%20Permanent%20Fund%20dividends.%20If%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.978,"w":32.118,"clr":-1,"A":"left","R":[{"T":"child%20received%20any%20ordinary%20dividends%20as%20a%20nominee%2C%20see%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":16.978,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":17.809,"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.79,"w":29.358999999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20child%E2%80%99s%20qualified%20dividends%20included%20on%20line%202a.%20See%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":18.478,"w":5.186,"clr":-1,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.378,"y":18.478,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"..................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":18.59,"w":1.445,"clr":-1,"A":"left","R":[{"T":"2b%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":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":42.13599999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20child%E2%80%99s%20capital%20gain%20distributions.%20If%20your%20child%20received%20any%20capital%20gain%20distributions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":19.977,"w":15.523000000000001,"clr":-1,"A":"left","R":[{"T":"as%20a%20nominee%2C%20see%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.872,"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":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.852,"w":42.38499999999996,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201a%2C%202a%2C%20and%203.%20If%20the%20total%20is%20%242%2C000%20or%20less%2C%20skip%20lines%205%20through%2012%20and%20go%20to%20line%2013.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.868,"y":22.227,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"report%20the%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.48,"y":22.227,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"..........................%20","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":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":6.2059999999999995,"clr":-1,"A":"left","R":[{"T":"Base%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":23.09,"w":35.99099999999998,"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":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.54,"w":43.12499999999995,"clr":-1,"A":"left","R":[{"T":"If%20both%20lines%202b%20and%203%20are%20zero%20or%20blank%2C%20skip%20lines%207%20through%2010%2C%20enter%20-0-%20on%20line%2011%2C%20and%20go%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.896,"y":25.228,"w":16.117000000000008,"clr":-1,"A":"left","R":[{"T":"to%20line%2012.%20Otherwise%2C%20go%20to%20line%207.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.059,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.04,"w":30.138000000000005,"clr":-1,"A":"left","R":[{"T":"Divide%20line%202b%20by%20line%204.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":26.728,"w":8.408000000000001,"clr":-1,"A":"left","R":[{"T":"least%20three%20places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.511,"y":26.728,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":71.804,"y":26.822,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":27.559,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.54,"w":29.545000000000005,"clr":-1,"A":"left","R":[{"T":"Divide%20line%203%20by%20line%204.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":28.228,"w":8.13,"clr":-1,"A":"left","R":[{"T":"least%20three%20places)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":28.228,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":"................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":28.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":71.804,"y":28.322,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":29.059,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.04,"w":29.452000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20line%207.%20Enter%20the%20result%20here.%20See%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":29.728,"w":20.706999999999997,"clr":-1,"A":"left","R":[{"T":"for%20where%20to%20report%20this%20amount%20on%20your%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.061,"y":29.728,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":29.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.559,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.54,"w":29.452000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20line%208.%20Enter%20the%20result%20here.%20See%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":31.228,"w":20.706999999999997,"clr":-1,"A":"left","R":[{"T":"for%20where%20to%20report%20this%20amount%20on%20your%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.061,"y":31.228,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":8.337,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209%20and%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":32.09,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"..........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%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":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.853,"w":40.719,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2011%20from%20line%206.%20Include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2021%2C%20or%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":33.54,"w":41.810999999999986,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2021.%20In%20the%20space%20next%20to%20line%2021%2C%20enter%20%E2%80%9CForm%208814%E2%80%9D%20and%20show%20the%20amount.%20If%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":34.227,"w":33.21000000000001,"clr":-1,"A":"left","R":[{"T":"checked%20the%20box%20on%20line%20C%20above%2C%20see%20the%20instructions.%20Go%20to%20line%2013%20below","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.692,"y":34.227,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":35.464,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":35.479,"w":26.85700000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20on%20the%20First%20%242%2C000%20of%20Child's%20Interest%20and%20Dividends%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.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":36.59,"w":8.003,"clr":-1,"A":"left","R":[{"T":"Amount%20not%20taxed","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":36.59,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"..........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%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":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":28.708000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%204.%20If%20the%20result%20is%20zero%20or%20less%2C%20enter%20-0-%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.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.328,"y":38.09,"w":19.176000000000002,"clr":-1,"A":"left","R":[{"T":"Is%20the%20amount%20on%20line%2014%20less%20than%20%241%2C000%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.824,"y":38.84,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.985,"y":39.59,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":70.533,"y":39.309,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,11.5,0,0]}]},{"oc":"#221f1f","x":71.94,"y":38.894,"w":3.9989999999999997,"clr":-1,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":40.29,"w":3.056,"clr":-1,"A":"left","R":[{"T":"Note.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.914,"y":40.29,"w":55.606999999999935,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20box%20on%20line%20C%20above%2C%20see%20the%20instructions.%20Otherwise%2C%20include%20the%20amount%20from%20line%2015%20in%20the%20tax%20you%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.926,"y":40.978,"w":31.548,"clr":-1,"A":"left","R":[{"T":"on%20Form%201040%2C%20line%2044%2C%20or%20Form%201040NR%2C%20line%2042.%20Be%20sure%20to%20check%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.914,"y":40.978,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":51.232,"y":40.978,"w":21.750000000000007,"clr":-1,"A":"left","R":[{"T":"on%20Form%201040%2C%20line%2044%2C%20or%20Form%201040NR%2C%20line%2042.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.796,"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":65.91,"y":41.876,"w":7.559000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2010750J%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.01,"y":41.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":41.822,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8814%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.453,"y":41.822,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":90.168,"y":23.071,"w":2.705,"clr":-1,"A":"left","R":[{"T":"2%2C000","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":95.746,"y":23.071,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":90.168,"y":36.571,"w":2.705,"clr":-1,"A":"left","R":[{"T":"1%2C000","S":44,"TS":[2,12,0,0]}]},{"oc":"#231f20","x":95.746,"y":36.571,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":5.953,"y":7.977,"w":47.32399999999995,"clr":-1,"A":"left","R":[{"T":"child%20could%20take%20on%20his%20or%20her%20own%20return.%20For%20details%2C%20see%20Tax%20benefits%20you%20cannot%20take%20in%20the%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.29,"w":41.305999999999976,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20child%E2%80%99s%20taxable%20interest.%20If%20this%20amount%20is%20different%20from%20the%20amounts%20shown%20on%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.79,"w":29.638000000000016,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20child%E2%80%99s%20tax-exempt%20interest.%20Do%20not%20include%20this%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.876,"y":21.54,"w":41.60299999999997,"clr":-1,"A":"left","R":[{"T":"the%20total%20is%20%2410%2C000%20or%20more%2C%20do%20not%20file%20this%20form.%20Your%20child%20must%20file%20his%20or%20her%20own%20return%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"Tax.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.732,"y":3.7539999999999996,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208814%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8814.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":11.709,"y":6.603,"w":55.586999999999975,"clr":-1,"A":"left","R":[{"T":"The%20federal%20income%20tax%20on%20your%20child%E2%80%99s%20income%2C%20including%20qualified%20dividends%20and%20capital%20gain%20distributions%2C%20may%20be%20lessif%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.077,"y":38.84,"w":18.541000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20%24100%20here%20and%20see%20the%20Note%20below.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.077,"y":39.59,"w":33.675000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2014%20by%2010%25%20(.10).%20Enter%20the%20result%20here%20and%20see%20the%20Note%20below.%20","S":-1,"TS":[0,11.64,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5713,"AM":1024,"x":6.229,"y":5.838,"w":70.373,"h":0.897,"TU":"Name(s) shown on your return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5714,"AM":1024,"x":76.869,"y":5.862,"w":22.11,"h":0.873,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AA","EN":0},"TI":5715,"AM":0,"x":6.229,"y":9.642,"w":28.906,"h":0.843,"TU":"Line A. Child's first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"AB","EN":0},"TI":5716,"AM":0,"x":36.741,"y":9.628,"w":7.017,"h":0.877,"TU":"Child's middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AC","EN":0},"TI":5717,"AM":0,"x":44.79,"y":9.608,"w":30.78,"h":0.877,"TU":"Child's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":5718,"AM":0,"x":76.869,"y":9.618,"w":22.11,"h":0.867,"TU":"Line B. Child’s social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":5720,"AM":0,"x":83.098,"y":14.275,"w":12.024,"h":0.833,"TU":"Line 1a. Enter your child's taxable interest. If this amount is different from the amount shown on the child's Forms 1099-INT and 1099-OID, see the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":5721,"AM":0,"x":63.298,"y":15.696,"w":12.024,"h":0.833,"TU":"Line 1b. Enter your child's tax-exempt interest. Do not include this amount on line 1a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5722,"AM":0,"x":83.16,"y":17.133,"w":11.901,"h":0.852,"TU":"Line 2a. Enter your child's ordinary dividends, including any Alaska Permanent Fund dividends. If your child received any ordinary dividends as a nominee, see the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QDIV","EN":0},"TI":5723,"AM":0,"x":63.298,"y":18.696,"w":12.024,"h":0.833,"TU":"Line 2b. Enter your child's qualified dividends included on line 2a. See the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5724,"AM":0,"x":83.16,"y":20.255,"w":11.901,"h":0.833,"TU":"Line 3. Enter your child's capital gain distributions. If your child received any capital gain distributions as a nominee, see the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5725,"AM":1024,"x":83.119,"y":22.38,"w":11.983,"h":0.855},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT6","EN":0},"TI":5726,"AM":1024,"x":83.016,"y":24.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"SUBTOT1","EN":0},"TI":5727,"AM":1024,"x":63.342,"y":27.028,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":5728,"AM":1024,"x":63.523,"y":28.408,"w":12.024,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3","EN":0},"TI":5729,"AM":1024,"x":63.298,"y":29.942,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT4","EN":0},"TI":5730,"AM":1024,"x":63.298,"y":31.4,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT5","EN":0},"TI":5731,"AM":1024,"x":83.16,"y":32.102,"w":11.901,"h":0.876},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5732,"AM":1024,"x":83.119,"y":34.266,"w":11.983,"h":0.857},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5733,"AM":1024,"x":83.016,"y":37.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5735,"AM":0,"x":83.098,"y":38.942,"w":12.024,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CX","EN":0},"TI":5719,"AM":0,"x":94.474,"y":10.661,"w":2.963,"h":0.982}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L9XN","EN":0},"TI":5734,"AM":0,"x":10.965,"y":38.956,"w":1.591,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L9XY","EN":0},"TI":5736,"AM":0,"x":11.028,"y":39.737,"w":1.538,"h":0.833,"checked":false}],"id":{"Id":"L9XRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8815.content.txt b/test/data/fd/form/F8815.content.txt new file mode 100755 index 00000000..d786c575 --- /dev/null +++ b/test/data/fd/form/F8815.content.txt @@ -0,0 +1,106 @@ +(For example, enter decimal as .123) +Form +8815 +Department of the Treasury +Internal Revenue Service (99) +Exclusion of Interest From Series EE and I +U.S. Savings Bonds Issued After 1989 +(For Filers With Qualified Higher Education Expenses) +a + + +a + +Attach to Form 1040 or Form 1040A. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +167 +Name(s) shown on return +Your social security number +1 +(a) + +Name of person (you, your spouse, or your dependent) who + +was enrolled at or attended an eligible educational institution +(b) +Name and address of eligible educational institution +If you need more space, attach a statement. +2 +Enter the total qualified higher education expenses you paid in 2013 for the person(s) listed in +column (a) of line 1. See the instructions to find out which expenses qualify +........ +2 +3 +Enter the total of any nontaxable educational benefits (such as nontaxable scholarship or +fellowship grants) received for 2013 for the person(s) listed in column (a) of line 1 (see instructions) +3 +4 +...... +4 +5 +................... +5 +6 +Enter the interest included on line 5 (see instructions) +............... +6 +7 +If line 4 is equal to or more than line 5, enter “1.000.” If line 4 is less than line 5, divide line 4 by line +5. Enter the result as a decimal (rounded to at least three places) +........... +7 +8 +Multiply line 6 by line 7 +......................... +8 +9 +Enter your modified adjusted gross income (see instructions) +.... +9 +Note: +If line 9 is $89,700 or more if single or head of household, or + +$142,050 or more if married filing jointly or qualifying widow(er) with + + +10 +Enter: $74,700 if single or head of household; $112,050 if married filing +jointly or qualifying widow(er) with dependent child +....... +10 +11 +Subtract line 10 from line 9. If zero or less, skip line 12, enter -0- on line +13, and go to line 14 +................. +11 +12 +Divide line 11 by: $15,000 if single or head of household; $30,000 if married filing jointly or +qualifying widow(er) with dependent child. Enter the result as a decimal (rounded to at least three +places) +12 +13 +Multiply line 8 by line 12 +......................... +13 +14 + +Schedule B (Form 1040A or 1040), line 3 +.................. +a +14 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 10822S +Form +8815 + (2013) +Information about Form 8815 and its instructions is at www.irs.gov/form8815. +Enter the total proceeds (principal and interest) from all series EE and I U.S. savings bonds issued +after 1989 that you cashed during 2013 +dependent child, stop. You cannot take the exclusion. +Excludable savings bond interest. Subtract line 13 from line 8. Enter the result here and on +Subtract line 3 from line 2. If zero or less, stop You cannot take the exclusion +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8815.fields.json b/test/data/fd/form/F8815.fields.json new file mode 100755 index 00000000..9c5a8919 --- /dev/null +++ b/test/data/fd/form/F8815.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A87_L1FRST_1_","type":"alpha","calc":false,"value":""},{"id":"A87_L1MI_1_","type":"mask","calc":false,"value":""},{"id":"A87_L1LAST_1_","type":"alpha","calc":false,"value":""},{"id":"A87_L1B_1_","type":"alpha","calc":false,"value":""},{"id":"A87_L1B2_1_","type":"alpha","calc":false,"value":""},{"id":"A87_CSZ_1_","type":"alpha","calc":false,"value":""},{"id":"A87_STAT_1_","type":"alpha","calc":false,"value":""},{"id":"A87_ZIP_1_","type":"zip","calc":false,"value":""},{"id":"A87_L1FRST_2_","type":"alpha","calc":false,"value":""},{"id":"A87_L1MI_2_","type":"mask","calc":false,"value":""},{"id":"A87_L1LAST_2_","type":"alpha","calc":false,"value":""},{"id":"A87_L1B_2_","type":"alpha","calc":false,"value":""},{"id":"A87_L1B2_2_","type":"alpha","calc":false,"value":""},{"id":"A87_CSZ_2_","type":"alpha","calc":false,"value":""},{"id":"A87_STAT_2_","type":"alpha","calc":false,"value":""},{"id":"A87_ZIP_2_","type":"zip","calc":false,"value":""},{"id":"A87_L1FRST_3_","type":"alpha","calc":false,"value":""},{"id":"A87_L1MI_3_","type":"mask","calc":false,"value":""},{"id":"A87_L1LAST_3_","type":"alpha","calc":false,"value":""},{"id":"A87_L1B_3_","type":"alpha","calc":false,"value":""},{"id":"A87_L1B2_3_","type":"alpha","calc":false,"value":""},{"id":"A87_CSZ_3_","type":"alpha","calc":false,"value":""},{"id":"A87_STAT_3_","type":"alpha","calc":false,"value":""},{"id":"A87_ZIP_3_","type":"zip","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"percent","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"mask","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8815.json b/test/data/fd/form/F8815.json new file mode 100755 index 00000000..ba968bef --- /dev/null +++ b/test/data/fd/form/F8815.json @@ -0,0 +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.999,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":6.001,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.043,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.043,"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.147,"y":9.751,"w":0.75,"l":44.636},{"oc":"#221f1f","x":50.697,"y":9.751,"w":0.75,"l":48.349},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":44.636},{"dsh":1,"oc":"#221f1f","x":50.697,"y":10.501,"w":0.75,"l":48.348},{"oc":"#221f1f","x":50.697,"y":11.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":44.636},{"dsh":1,"oc":"#221f1f","x":50.697,"y":12.001,"w":0.75,"l":48.348},{"oc":"#221f1f","x":50.697,"y":12.751,"w":0.75,"l":48.349},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":44.636},{"dsh":1,"oc":"#221f1f","x":50.697,"y":13.501,"w":0.75,"l":48.348},{"oc":"#221f1f","x":50.697,"y":14.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"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":80.397,"y":22.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":22.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":94.009,"y":22.501,"w":1.125,"l":5.036},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":28.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":28.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":28.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":30.001,"w":0.75,"l":3.798},{"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":80.397,"y":23.251,"w":0.75,"l":3.798},{"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":9.986},{"oc":"#221f1f","x":94.009,"y":32.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":80.397,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.19,"y":35.251,"w":1.5,"l":92.813},{"oc":"#221f1f","x":6.147,"y":35.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":35.251,"w":1.5,"l":34.736},{"oc":"#221f1f","x":86.584,"y":35.251,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.795},{"oc":"#221f1f","x":84.129,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.129,"y":2.985,"w":1.5,"l":3.029},{"oc":"#221f1f","x":79.202,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.74,"y":7.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.74,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":16.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"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":95.29,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":20.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":22.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":22.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":22.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"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":65.59,"y":26.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":26.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":24.736,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":27.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.236,"w":0.75,"l":6.781},{"oc":"#221f1f","x":80.44,"y":23.236,"w":0.75,"l":6.781},{"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.539},{"oc":"#221f1f","x":80.44,"y":32.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":34.486,"w":0.75,"l":0.797}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":61.877,"y":24.751,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":23.251,"w":3.712,"h":6.75,"clr":-1}],"Texts":[{"x":16.078,"y":31.219,"w":163.39000000000004,"clr":0,"A":"left","R":[{"T":"(For%20example%2C%20enter%20decimal%20as%20.123)","S":-1,"TS":[0,13,0,0]}]},{"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.224,"clr":-1,"A":"left","R":[{"T":"8815","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.566,"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.067,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":29.632,"y":2.101,"w":20.396,"clr":-1,"A":"left","R":[{"T":"Exclusion%20of%20Interest%20From%20Series%20EE%20and%20I%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":31.702,"y":2.914,"w":18.284000000000006,"clr":-1,"A":"left","R":[{"T":"U.S.%20Savings%20Bonds%20Issued%20After%201989%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":30.463,"y":3.635,"w":25.728000000000012,"clr":-1,"A":"left","R":[{"T":"(For%20Filers%20With%20Qualified%20Higher%20Education%20Expenses)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":26.342,"y":4.171,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.835,"y":4.921,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":41.248,"y":5.015,"w":17.171000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040A.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.72,"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.836,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.806,"y":3.3310000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.942,"y":4.616,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.942,"y":5.063,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.92,"y":5.063,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"167","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.67,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":5.67,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.555,"y":7.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.413,"y":7.3870000000000005,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.107,"y":7.987,"w":26.894,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20(you%2C%20your%20spouse%2C%20or%20your%20dependent)%20who%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.586,"y":8.587,"w":27.096000000000018,"clr":-1,"A":"left","R":[{"T":"was%20enrolled%20at%20or%20attended%20an%20eligible%20educational%20institution","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.794,"y":7.871,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":58.717,"y":8.471,"w":23.134000000000018,"clr":-1,"A":"left","R":[{"T":"Name%20and%20address%20of%20eligible%20educational%20institution","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":13.999,"w":19.710000000000008,"clr":-1,"A":"left","R":[{"T":"If%20you%20need%20more%20space%2C%20attach%20a%20statement.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.778,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.783,"w":41.61999999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20qualified%20higher%20education%20expenses%20you%20paid%20in%202013%20for%20the%20person(s)%20listed%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":15.469999999999999,"w":33.63600000000001,"clr":-1,"A":"left","R":[{"T":"column%20(a)%20of%20line%201.%20See%20the%20instructions%20to%20find%20out%20which%20expenses%20qualify%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.697,"y":15.469999999999999,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":15.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":16.278,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.283,"w":39.91399999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20any%20nontaxable%20educational%20benefits%20(such%20as%20nontaxable%20scholarship%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":16.97,"w":43.70799999999998,"clr":-1,"A":"left","R":[{"T":"fellowship%20grants)%20received%20for%202013%20for%20the%20person(s)%20listed%20in%20column%20(a)%20of%20line%201%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%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":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.815,"y":17.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.528,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.01,"y":19.22,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"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.09,"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.09,"w":23.616000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20interest%20included%20on%20line%205%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":20.09,"w":19.994999999999997,"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":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.825,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.78,"w":43.95699999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%204%20is%20equal%20to%20or%20more%20than%20line%205%2C%20enter%20%E2%80%9C1.000.%E2%80%9D%20If%20line%204%20is%20less%20than%20line%205%2C%20divide%20line%204%20by%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":21.467,"w":29.062,"clr":-1,"A":"left","R":[{"T":"5.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20three%20places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.512,"y":21.467,"w":14.663,"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":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":22.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":10.170000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":22.34,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":22.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":27.04200000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20modified%20adjusted%20gross%20income%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":23.84,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":23.84,"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.715,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.858,"y":24.715,"w":26.708000000000006,"clr":-1,"A":"left","R":[{"T":"If%20line%209%20is%20%2489%2C700%20or%20more%20if%20single%20or%20head%20of%20household%2C%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":25.403,"w":30.039000000000012,"clr":-1,"A":"left","R":[{"T":"%24142%2C050%20or%20more%20if%20married%20filing%20jointly%20or%20qualifying%20widow(er)%20with","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.702,"y":26.778,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.897,"y":26.801,"w":31.84300000000001,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20%2474%2C700%20if%20single%20or%20head%20of%20household%3B%20%24112%2C050%20if%20married%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.905,"y":27.489,"w":22.555000000000007,"clr":-1,"A":"left","R":[{"T":"jointly%20or%20qualifying%20widow(er)%20with%20dependent%20child","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.206,"y":27.489,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.278,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.283,"w":31.821,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20line%209.%20If%20zero%20or%20less%2C%20skip%20line%2012%2C%20enter%20-0-%20on%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":28.97,"w":9.152000000000001,"clr":-1,"A":"left","R":[{"T":"13%2C%20and%20go%20to%20line%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.559,"y":28.97,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.825,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.832,"w":40.36299999999999,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2011%20by%3A%20%2415%2C000%20if%20single%20or%20head%20of%20household%3B%20%2430%2C000%20if%20married%20filing%20jointly%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":30.52,"w":43.523999999999965,"clr":-1,"A":"left","R":[{"T":"qualifying%20widow(er)%20with%20dependent%20child.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20three%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":31.207,"w":3.4629999999999996,"clr":-1,"A":"left","R":[{"T":"places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":10.726000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%208%20by%20line%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":32.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":33.528,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.231,"w":18.32100000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20B%20(Form%201040A%20or%201040)%2C%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":34.231,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"..................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.526,"y":34.137,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.186,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":35.108,"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":64.595,"y":35.126,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2010822S","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":35.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":35.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8815","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":35.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.756,"y":4.265,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208815%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8815.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.533,"w":43.46299999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20proceeds%20(principal%20and%20interest)%20from%20all%20series%20EE%20and%20I%20U.S.%20savings%20bonds%20issued","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":19.22,"w":17.40000000000001,"clr":-1,"A":"left","R":[{"T":"after%201989%20that%20you%20cashed%20during%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":26.09,"w":23.91400000000001,"clr":-1,"A":"left","R":[{"T":"dependent%20child%2C%20stop.%20You%20cannot%20take%20the%20exclusion.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.533,"w":40.01999999999997,"clr":-1,"A":"left","R":[{"T":"Excludable%20savings%20bond%20interest.%20Subtract%20line%2013%20from%20line%208.%20Enter%20the%20result%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":34.239,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20stop%20You%20cannot%20take%20the%20exclusion%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#00007f","x":1.782,"y":48.472,"w":24.408,"clr":-1,"A":"left","R":[{"T":"0.000%25","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5737,"AM":1024,"x":6.188,"y":6.625,"w":73.013,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5738,"AM":1024,"x":79.275,"y":6.625,"w":19.8,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1FRST_1_","EN":0},"TI":5739,"AM":0,"x":6.188,"y":9.833,"w":20.294,"h":1.417,"TU":"Line 1. First name of person (you, your spouse, or your dependent) who was enrolled at or attended an eligible educational institution."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A87_L1MI_1_","EN":0},"TI":5740,"AM":0,"x":26.778,"y":9.821,"w":5.022,"h":1.416,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1LAST_1_","EN":0},"TI":5741,"AM":0,"x":31.964,"y":9.828,"w":18.797,"h":1.417,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1B_1_","EN":0},"TI":5742,"AM":0,"x":50.737,"y":9.75,"w":24.081,"h":0.833,"TU":"Line 1(b). Name of eligible educational institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1B2_1_","EN":0},"TI":5743,"AM":0,"x":75.646,"y":9.77,"w":23.312,"h":0.833,"TU":"School Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_CSZ_1_","EN":0},"TI":5744,"AM":0,"x":50.737,"y":10.5,"w":28.873,"h":0.833,"TU":"School City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_STAT_1_","EN":0},"TI":5745,"AM":0,"x":81.506,"y":10.525,"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":"A87_ZIP_1_","EN":0},"TI":5746,"AM":0,"x":89.064,"y":10.501,"w":10.007,"h":0.833,"TU":"School ZIP"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1FRST_2_","EN":0},"TI":5747,"AM":0,"x":6.221,"y":11.386,"w":20.294,"h":1.417,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A87_L1MI_2_","EN":0},"TI":5748,"AM":0,"x":26.738,"y":11.373,"w":5.022,"h":1.417,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1LAST_2_","EN":0},"TI":5749,"AM":0,"x":31.923,"y":11.381,"w":18.797,"h":1.417,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1B_2_","EN":0},"TI":5750,"AM":0,"x":50.848,"y":11.233,"w":24.081,"h":0.833,"TU":"Line 1(b). Name of eligible educational institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1B2_2_","EN":0},"TI":5751,"AM":0,"x":75.692,"y":11.23,"w":23.376,"h":0.833,"TU":"School Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_CSZ_2_","EN":0},"TI":5752,"AM":0,"x":50.848,"y":11.999,"w":28.873,"h":0.833,"TU":"School City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_STAT_2_","EN":0},"TI":5753,"AM":0,"x":81.391,"y":12.003,"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":"A87_ZIP_2_","EN":0},"TI":5754,"AM":0,"x":89.174,"y":12,"w":10.007,"h":0.833,"TU":"School ZIP"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1FRST_3_","EN":0},"TI":5755,"AM":0,"x":6.254,"y":12.849,"w":20.294,"h":1.417,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A87_L1MI_3_","EN":0},"TI":5756,"AM":0,"x":26.695,"y":12.836,"w":5.022,"h":1.417,"TU":"Middle Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1LAST_3_","EN":0},"TI":5757,"AM":0,"x":31.956,"y":12.843,"w":18.797,"h":1.417,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1B_3_","EN":0},"TI":5758,"AM":0,"x":50.828,"y":12.704,"w":24.081,"h":0.833,"TU":"Line 1(b). Name of eligible educational institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_L1B2_3_","EN":0},"TI":5759,"AM":0,"x":75.8,"y":12.747,"w":23.248,"h":0.833,"TU":"School Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_CSZ_3_","EN":0},"TI":5760,"AM":0,"x":50.828,"y":13.477,"w":28.873,"h":0.833,"TU":"School City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A87_STAT_3_","EN":0},"TI":5761,"AM":0,"x":81.737,"y":13.544,"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":"A87_ZIP_3_","EN":0},"TI":5762,"AM":0,"x":89.154,"y":13.455,"w":10.007,"h":0.833,"TU":"School ZIP"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5763,"AM":0,"x":84.15,"y":15.75,"w":11.137,"h":0.833,"TU":"Line 2. Enter the total qualified higher education expenses you paid in 2013 for the person(s) listed in column (a) of line 1. See the instructions to find out which expenses qualify."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5764,"AM":0,"x":84.15,"y":17.25,"w":11.137,"h":0.833,"TU":"Line 3. Enter the total of any nontaxable educational benefits (such as nontaxable scholarship or fellowship grants) received for 2013 for the person(s) listed in column (a) of line 1 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5765,"AM":1024,"x":84.15,"y":18,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5766,"AM":0,"x":84.15,"y":19.5,"w":11.137,"h":0.833,"TU":"Line 5. Enter the total proceeds (principal and interest) from all series EE and I U.S. savings bonds issued after 1989 that you cashed during 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5767,"AM":0,"x":84.15,"y":20.25,"w":11.137,"h":0.833,"TU":"Line 6. Enter the interest included on line 5 (see instructions)"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5768,"AM":1024,"x":89.009,"y":21.585,"w":6.571,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5769,"AM":1024,"x":84.15,"y":22.5,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":5770,"AM":0,"x":65.588,"y":24,"w":11.137,"h":0.833,"TU":"Line 9. Enter your modified adjusted gross income (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":5771,"AM":0,"x":65.588,"y":27.75,"w":11.137,"h":0.833,"TU":"Line 10. Enter: $74,700 if single or head of household; $112,050 if married filing jointly or qualifying widow(er) with dependent child."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":5772,"AM":1024,"x":65.588,"y":29.25,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":5773,"AM":0,"x":87.651,"y":31.336,"w":7.356,"h":0.86,"TU":"Line 12. Divide line 11 by: $15,000 if single or head of household; $30,000 if married filing jointly or qualifying widow(er) with dependent child.","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":5774,"AM":1024,"x":84.15,"y":33,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":5775,"AM":1024,"x":84.15,"y":34.5,"w":11.137,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8820.content.txt b/test/data/fd/form/F8820.content.txt new file mode 100755 index 00000000..b3149be3 --- /dev/null +++ b/test/data/fd/form/F8820.content.txt @@ -0,0 +1,106 @@ +Form +8820 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +Orphan Drug Credit +a + +Information about Form 8820 and its instructions is available at +www.irs.gov/form8820. +a + +Attach to your tax return. +OMB No. 1545-1505 +Attachment +Sequence No. +103 +Name(s) shown on return +Identifying number +Part I +Current Year Credit +1 +Qualified clinical testing expenses paid or incurred during the tax year (see instructions) +.... +1 +2a +Current year credit. Multiply line 1 by 50% (.50) (see instructions) +........... +2a +b +Enter the portion of the credit from Form 8932, line 2, that is attributable to wages that were also +used to figure the credit on line 2a above + ................... +2b +c +Subtract line 2b from line 2a. If zero or less, enter -0- +............... +2c +3 +Orphan drug credit from partnerships, S corporations, estates, or trusts +......... +3 +4 +Add lines 2c and 3. Estates and trusts go to line 5. Partnerships and S corporations, report this +amount on Schedule K. All others, report this amount on Form 3800, line 1h +........ +4 +5 +Amount allocated to the beneficiaries of the estate or trust (see instructions) +........ +5 +6 +Estates and trusts. Subtract line 5 from line 4. Report this amount on Form 3800, line 1h +.... +6 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 11208S +Form +8820 + (Rev. 12-2012) +----------------Page (0) Break---------------- +Form 8820 (Rev. 12-2012) +Page +2 +Part II + Orphan Drug Information +(see instructions) +(a) + +(b) +Name of orphan drug +(c) +Designation application number +(d) +Date drug designated +(mm/dd/yyyy) +7a +b +c +d +e +f +g +h +i +j +k +l +m +n +o +p +q +r +s +t +u +v +w +x +y +z +Form +8820 + (Rev. 12-2012) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8820.fields.json b/test/data/fd/form/F8820.fields.json new file mode 100755 index 00000000..ff05c57f --- /dev/null +++ b/test/data/fd/form/F8820.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"EMPDIFF","type":"number","calc":false,"value":""},{"id":"SUBTOT","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"BENEAMT","type":"number","calc":true,"value":""},{"id":"ESTTRUST","type":"number","calc":true,"value":""},{"id":"ORPHAN_NAMEDRUG_1_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_1_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_1_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_2_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_2_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_2_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_3_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_3_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_3_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_4_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_4_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_4_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_5_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_5_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_5_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_6_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_6_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_6_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_7_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_7_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_7_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_8_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_8_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_8_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_9_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_9_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_9_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_10_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_10_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_10_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_11_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_11_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_11_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_12_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_12_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_12_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_13_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_13_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_13_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_14_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_14_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_14_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_15_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_15_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_15_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_16_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_16_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_16_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_17_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_17_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_17_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_18_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_18_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_18_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_19_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_19_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_19_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_20_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_20_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_20_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_21_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_21_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_21_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_22_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_22_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_22_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_23_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_23_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_23_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_24_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_24_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_24_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_25_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_25_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_25_","type":"date","calc":false,"value":""},{"id":"ORPHAN_NAMEDRUG_26_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_APPLICNO_26_","type":"alpha","calc":false,"value":""},{"id":"ORPHAN_DATE_26_","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8820.json b/test/data/fd/form/F8820.json new file mode 100755 index 00000000..6f1e1f45 --- /dev/null +++ b/test/data/fd/form/F8820.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8820 (Rev. December 2012)","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.251,"w":1.5,"l":63.199},{"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":74.336},{"oc":"#221f1f","x":80.397,"y":6.751,"w":1.125,"l":18.648},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":10.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":14.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":19.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.001,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":21.001,"w":1.5,"l":40.923},{"oc":"#221f1f","x":82.872,"y":21.001,"w":1.5,"l":16.173}],"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":80.44,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":7.485,"w":0.75,"l":1.531},{"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.781},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":11.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":14.235,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":84.152,"y":15.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":15.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.789},{"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":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"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}],"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.08,"clr":-1,"A":"left","R":[{"T":"8820","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.287,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8810000000000002,"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.318,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":42.023,"y":2.501,"w":8.580000000000002,"clr":-1,"A":"left","R":[{"T":"Orphan%20Drug%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":23.262,"y":3.4210000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.676,"y":3.5149999999999997,"w":30.253,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208820%20and%20its%20instructions%20is%20available%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.274,"y":3.5149999999999997,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8820.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.425,"y":4.103,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.839,"y":4.197,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.348,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1505","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.7510000000000003,"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.26,"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.26,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"103","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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.877,"y":4.982,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.58,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":6.572,"w":9.316000000000003,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Credit","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":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":38.948999999999984,"clr":-1,"A":"left","R":[{"T":"Qualified%20clinical%20testing%20expenses%20paid%20or%20incurred%20during%20the%20tax%20year%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":8.09,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":29.117000000000004,"clr":-1,"A":"left","R":[{"T":"Current%20year%20credit.%20Multiply%20line%201%20by%2050%25%20(.50)%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":9.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":9.59,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.153,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":43.322999999999986,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20portion%20of%20the%20credit%20from%20Form%208932%2C%20line%202%2C%20that%20is%20attributable%20to%20wages%20that%20were%20also%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.848,"w":18.263,"clr":-1,"A":"left","R":[{"T":"used%20to%20figure%20the%20credit%20on%20line%202a%20above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.931,"y":11.848,"w":26.66499999999999,"clr":-1,"A":"left","R":[{"T":"%20...................","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":81.143,"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.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":23.855,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202b%20from%20line%202a.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":13.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":13.34,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"2c%20","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":32.135999999999996,"clr":-1,"A":"left","R":[{"T":"Orphan%20drug%20credit%20from%20partnerships%2C%20S%20corporations%2C%20estates%2C%20or%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":14.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"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.403,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.403,"w":42.58399999999997,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202c%20and%203.%20Estates%20and%20trusts%20go%20to%20line%205.%20Partnerships%20and%20S%20corporations%2C%20report%20this%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":17.203,"w":34.01300000000001,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Schedule%20K.%20All%20others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%201h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.698,"y":17.203,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":34.061,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20the%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":18.59,"w":10.664,"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":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":39.23599999999999,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts.%20Subtract%20line%205%20from%20line%204.%20Report%20this%20amount%20on%20Form%203800%2C%20line%201h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":20.09,"w":5.332,"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":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":20.858,"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":57.788,"y":20.876,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011208S","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":20.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":20.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8820","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":20.822,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2012)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5776,"AM":1024,"x":6.229,"y":5.848,"w":74.085,"h":0.879,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5777,"AM":1024,"x":80.582,"y":5.921,"w":18.397,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5778,"AM":0,"x":84.272,"y":8,"w":10.787,"h":0.985,"TU":"Line 1. Qualified clinical testing expenses paid or incurred during the tax year (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5779,"AM":1024,"x":84.336,"y":9.477,"w":10.787,"h":1.008},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPDIFF","EN":0},"TI":5780,"AM":0,"x":84.356,"y":11.64,"w":10.746,"h":1.087,"TU":"Line 2b. Enter the portion of the credit from Form 8932, line 2, that is attributable to wages that were also used to figure the credit of line 2a above."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT","EN":0},"TI":5781,"AM":1024,"x":84.336,"y":13.305,"w":10.787,"h":0.93},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5782,"AM":0,"x":84.336,"y":14.797,"w":10.787,"h":0.93,"TU":"Line 3. Orphan drug credit from partnerships, S corporations, estates or trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5783,"AM":1024,"x":84.356,"y":16.898,"w":10.746,"h":1.087},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENEAMT","EN":0},"TI":5784,"AM":1024,"x":84.336,"y":18.454,"w":10.787,"h":1.024},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTRUST","EN":0},"TI":5785,"AM":1024,"x":84.336,"y":19.938,"w":10.787,"h":1.032}],"Boxsets":[]},{"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.147,"y":3.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.104,"y":3.751,"w":0.75,"l":7.597},{"oc":"#221f1f","x":6.104,"y":5.251,"w":0.75,"l":7.597},{"oc":"#221f1f","x":13.572,"y":3.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":13.572,"y":5.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":3.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":5.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":3.751,"w":0.75,"l":13.564},{"oc":"#221f1f","x":85.347,"y":5.251,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":6.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":6.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":6.751,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":8.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":8.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":8.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":8.251,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":9.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":9.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":9.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":9.751,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":11.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":11.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":11.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":11.251,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":12.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":12.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":12.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":12.751,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":14.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":14.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":14.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":14.251,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":15.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":15.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":15.751,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":17.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":17.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":17.251,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":17.251,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":18.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":18.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":18.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":18.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":20.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":20.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":20.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":20.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":21.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":21.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":21.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":21.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":23.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":23.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":23.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":23.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":24.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":24.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":24.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":24.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":26.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":26.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":26.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":26.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":27.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":27.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":27.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":27.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":29.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":29.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":29.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":29.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":30.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":30.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":30.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":30.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":32.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":32.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":32.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":32.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":33.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":33.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":33.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":33.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":35.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":35.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":35.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":35.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":36.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":36.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":36.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":36.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":38.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":38.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":38.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":38.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":39.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":39.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":39.752,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":39.752,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":41.253,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":41.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":41.252,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":41.252,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.146,"y":42.753,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":42.753,"w":0.75,"l":35.973},{"oc":"#221f1f","x":49.459,"y":42.753,"w":0.75,"l":35.973},{"oc":"#221f1f","x":85.347,"y":42.753,"w":0.75,"l":13.564},{"oc":"#221f1f","x":6.147,"y":44.253,"w":1.5,"l":7.511},{"oc":"#221f1f","x":13.572,"y":44.253,"w":1.5,"l":35.973},{"oc":"#221f1f","x":49.459,"y":44.253,"w":1.5,"l":35.973},{"oc":"#221f1f","x":85.347,"y":44.253,"w":1.5,"l":13.564}],"VLines":[{"oc":"#221f1f","x":13.615,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":11.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":11.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":11.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":12.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":12.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":12.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":21.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":21.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":21.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":33.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":33.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":33.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":35.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":35.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":35.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":36.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":36.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":36.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":38.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":38.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":38.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":39.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":39.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":39.737,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":41.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":41.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.39,"y":41.237,"w":0.75,"l":1.531},{"oc":"#221f1f","x":13.615,"y":42.737,"w":0.75,"l":1.547},{"oc":"#221f1f","x":49.502,"y":42.737,"w":0.75,"l":1.547},{"oc":"#221f1f","x":85.39,"y":42.737,"w":0.75,"l":1.547}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":3.001,"w":6.086,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":11.635000000000005,"clr":-1,"A":"left","R":[{"T":"Form%208820%20(Rev.%2012-2012)","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.533,"y":2.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":2.822,"w":12.777000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20Orphan%20Drug%20Information%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.634,"y":2.822,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.951,"y":3.726,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.585,"y":3.726,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.558,"y":4.251,"w":9.558000000000002,"clr":-1,"A":"left","R":[{"T":"Name%20of%20orphan%20drug","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.495,"y":3.726,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.661,"y":4.251,"w":14.189000000000002,"clr":-1,"A":"left","R":[{"T":"Designation%20application%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.155,"y":3.463,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.062,"y":3.901,"w":9.947000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20drug%20designated%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.223,"y":4.338,"w":6.0760000000000005,"clr":-1,"A":"left","R":[{"T":"(mm%2Fdd%2Fyyyy)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.778,"y":5.371,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"7a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.18,"y":6.871,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.208,"y":8.371,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.18,"y":9.872,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.208,"y":11.372,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.395,"y":12.872,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.18,"y":14.372,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.194,"y":15.872,"w":0.593,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.453,"y":17.372,"w":0.258,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.437,"y":18.872,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.208,"y":20.372,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"k","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.453,"y":21.872,"w":0.258,"clr":-1,"A":"left","R":[{"T":"l","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.951,"y":23.372,"w":0.906,"clr":-1,"A":"left","R":[{"T":"m","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.194,"y":24.872,"w":0.593,"clr":-1,"A":"left","R":[{"T":"n","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.18,"y":26.372,"w":0.611,"clr":-1,"A":"left","R":[{"T":"o","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.18,"y":27.872,"w":0.611,"clr":-1,"A":"left","R":[{"T":"p","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.18,"y":29.372,"w":0.611,"clr":-1,"A":"left","R":[{"T":"q","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.351,"y":30.872,"w":0.389,"clr":-1,"A":"left","R":[{"T":"r","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.237,"y":32.372,"w":0.537,"clr":-1,"A":"left","R":[{"T":"s","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.38,"y":33.873,"w":0.352,"clr":-1,"A":"left","R":[{"T":"t","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.194,"y":35.373,"w":0.593,"clr":-1,"A":"left","R":[{"T":"u","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.25,"y":36.873,"w":0.52,"clr":-1,"A":"left","R":[{"T":"v","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.023,"y":38.373,"w":0.8140000000000001,"clr":-1,"A":"left","R":[{"T":"w","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.237,"y":39.873,"w":0.537,"clr":-1,"A":"left","R":[{"T":"x","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.251,"y":41.373,"w":0.519,"clr":-1,"A":"left","R":[{"T":"y","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.251,"y":42.873,"w":0.519,"clr":-1,"A":"left","R":[{"T":"z","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.607,"y":44.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":44.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8820","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":44.072,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2012)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_1_","EN":0},"TI":5786,"AM":0,"x":13.798,"y":5.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_7a"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_1_","EN":0},"TI":5787,"AM":0,"x":49.686,"y":5.401,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_1_","EN":0},"TI":5788,"AM":0,"x":85.573,"y":5.401,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_2_","EN":0},"TI":5789,"AM":0,"x":13.798,"y":6.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_b"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_2_","EN":0},"TI":5790,"AM":0,"x":49.704,"y":6.902,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_2_","EN":0},"TI":5791,"AM":0,"x":85.591,"y":6.902,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_3_","EN":0},"TI":5792,"AM":0,"x":13.798,"y":8.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_c"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_3_","EN":0},"TI":5793,"AM":0,"x":49.695,"y":8.411,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_3_","EN":0},"TI":5794,"AM":0,"x":85.582,"y":8.411,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_4_","EN":0},"TI":5795,"AM":0,"x":13.798,"y":9.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_4_","EN":0},"TI":5796,"AM":0,"x":49.713,"y":9.912,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_4_","EN":0},"TI":5797,"AM":0,"x":85.601,"y":9.912,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_5_","EN":0},"TI":5798,"AM":0,"x":13.798,"y":11.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_e"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_5_","EN":0},"TI":5799,"AM":0,"x":49.669,"y":11.371,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_5_","EN":0},"TI":5800,"AM":0,"x":85.556,"y":11.371,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_6_","EN":0},"TI":5801,"AM":0,"x":13.798,"y":12.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_f"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_6_","EN":0},"TI":5802,"AM":0,"x":49.687,"y":12.872,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_6_","EN":0},"TI":5803,"AM":0,"x":85.574,"y":12.872,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_7_","EN":0},"TI":5804,"AM":0,"x":13.798,"y":14.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_g"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_7_","EN":0},"TI":5805,"AM":0,"x":49.678,"y":14.381,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_7_","EN":0},"TI":5806,"AM":0,"x":85.565,"y":14.381,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_8_","EN":0},"TI":5807,"AM":0,"x":13.798,"y":15.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_h"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_8_","EN":0},"TI":5808,"AM":0,"x":49.696,"y":15.882,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_8_","EN":0},"TI":5809,"AM":0,"x":85.583,"y":15.882,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_9_","EN":0},"TI":5810,"AM":0,"x":13.798,"y":17.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_i"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_9_","EN":0},"TI":5811,"AM":0,"x":49.624,"y":17.392,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_9_","EN":0},"TI":5812,"AM":0,"x":85.511,"y":17.424,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_10_","EN":0},"TI":5813,"AM":0,"x":13.798,"y":18.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_j"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_10_","EN":0},"TI":5814,"AM":0,"x":49.642,"y":18.926,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_10_","EN":0},"TI":5815,"AM":0,"x":85.53,"y":18.926,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_11_","EN":0},"TI":5816,"AM":0,"x":13.798,"y":20.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_k"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_11_","EN":0},"TI":5817,"AM":0,"x":49.633,"y":20.435,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_11_","EN":0},"TI":5818,"AM":0,"x":85.521,"y":20.435,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_12_","EN":0},"TI":5819,"AM":0,"x":13.798,"y":21.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_l"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_12_","EN":0},"TI":5820,"AM":0,"x":49.651,"y":21.936,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_12_","EN":0},"TI":5821,"AM":0,"x":85.539,"y":21.936,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_13_","EN":0},"TI":5822,"AM":0,"x":13.798,"y":23.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_m"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_13_","EN":0},"TI":5823,"AM":0,"x":49.607,"y":23.394,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_13_","EN":0},"TI":5824,"AM":0,"x":85.494,"y":23.394,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_14_","EN":0},"TI":5825,"AM":0,"x":13.798,"y":24.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_14_","EN":0},"TI":5826,"AM":0,"x":49.625,"y":24.896,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_14_","EN":0},"TI":5827,"AM":0,"x":85.513,"y":24.896,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_15_","EN":0},"TI":5828,"AM":0,"x":13.798,"y":26.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_o"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_15_","EN":0},"TI":5829,"AM":0,"x":49.616,"y":26.405,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_15_","EN":0},"TI":5830,"AM":0,"x":85.504,"y":26.405,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_16_","EN":0},"TI":5831,"AM":0,"x":13.798,"y":27.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_p"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_16_","EN":0},"TI":5832,"AM":0,"x":49.634,"y":27.906,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_16_","EN":0},"TI":5833,"AM":0,"x":85.522,"y":27.906,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_17_","EN":0},"TI":5834,"AM":0,"x":13.798,"y":29.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_q"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_17_","EN":0},"TI":5835,"AM":0,"x":49.671,"y":29.376,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_17_","EN":0},"TI":5836,"AM":0,"x":85.559,"y":29.376,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_18_","EN":0},"TI":5837,"AM":0,"x":13.798,"y":30.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_r"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_18_","EN":0},"TI":5838,"AM":0,"x":49.69,"y":30.877,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_18_","EN":0},"TI":5839,"AM":0,"x":85.577,"y":30.877,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_19_","EN":0},"TI":5840,"AM":0,"x":13.798,"y":32.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_s"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_19_","EN":0},"TI":5841,"AM":0,"x":49.68,"y":32.386,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_19_","EN":0},"TI":5842,"AM":0,"x":85.568,"y":32.386,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_20_","EN":0},"TI":5843,"AM":0,"x":13.798,"y":33.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_t"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_20_","EN":0},"TI":5844,"AM":0,"x":49.699,"y":33.888,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_20_","EN":0},"TI":5845,"AM":0,"x":85.586,"y":33.888,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_21_","EN":0},"TI":5846,"AM":0,"x":13.798,"y":35.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_u"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_21_","EN":0},"TI":5847,"AM":0,"x":49.654,"y":35.346,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_21_","EN":0},"TI":5848,"AM":0,"x":85.542,"y":35.346,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_22_","EN":0},"TI":5849,"AM":0,"x":13.798,"y":36.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_v"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_22_","EN":0},"TI":5850,"AM":0,"x":49.673,"y":36.847,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_22_","EN":0},"TI":5851,"AM":0,"x":85.56,"y":36.847,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_23_","EN":0},"TI":5852,"AM":0,"x":13.798,"y":38.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_w"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_23_","EN":0},"TI":5853,"AM":0,"x":49.663,"y":38.356,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_23_","EN":0},"TI":5854,"AM":0,"x":85.551,"y":38.356,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_24_","EN":0},"TI":5855,"AM":0,"x":13.798,"y":39.901,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_x"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_24_","EN":0},"TI":5856,"AM":0,"x":49.682,"y":39.858,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_24_","EN":0},"TI":5857,"AM":0,"x":85.569,"y":39.858,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_25_","EN":0},"TI":5858,"AM":0,"x":13.798,"y":41.401,"w":35.537,"h":1.334,"TU":"(b) Name of orphan drug_y"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_25_","EN":0},"TI":5859,"AM":0,"x":49.586,"y":41.447,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_25_","EN":0},"TI":5860,"AM":0,"x":85.474,"y":41.447,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_NAMEDRUG_26_","EN":0},"TI":5861,"AM":0,"x":13.798,"y":42.901,"w":35.537,"h":1.319,"TU":"(b) Name of orphan drug_z"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ORPHAN_APPLICNO_26_","EN":0},"TI":5862,"AM":0,"x":49.605,"y":42.949,"w":35.537,"h":1.334,"TU":"(c) Designation application number_7a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ORPHAN_DATE_26_","EN":0},"TI":5863,"AM":0,"x":85.492,"y":42.949,"w":13.241,"h":1.334,"TU":"(d) Date drug designated (mm/dd/yyyy)_7a","MV":"mm/dd/yyyy"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8824.content.txt b/test/data/fd/form/F8824.content.txt new file mode 100755 index 00000000..b9231fcc --- /dev/null +++ b/test/data/fd/form/F8824.content.txt @@ -0,0 +1,252 @@ +Form +8824 +Department of the Treasury +Internal Revenue Service +Like-Kind Exchanges + +(and section 1043 conflict-of-interest sales) +a + +Attach to your tax return. +a +. +OMB No. 1545-1190 +20 +13 +Attachment +Sequence No. +109 +Name(s) shown on tax return +Identifying number +Part I +Information on the Like-Kind Exchange +Note: +1 +Description of like-kind property given up +: +2 +Description of like-kind property received +: +3 +Date like-kind property given up was originally acquired (month, day, year) +...... +3 +MM/DD/YYYY +4 +Date you actually transferred your property to other party (month, day, year) +..... +4 +MM/DD/YYYY +5 +Date like-kind property you received was identified by written notice to another party (month, +day, year). See instructions for 45-day written identification requirement +....... +5 +MM/DD/YYYY +6 +Date you actually received the like-kind property from other party (month, day, year). See instructions +6 +MM/DD/YYYY +7 +Was the exchange of the property given up or received made with a related party, either directly or indirectly +(such as through an intermediary)? See instructions. If “Yes,” complete Part II. If “No,” go to Part III . . . +Yes +No +Part II +Related Party Exchange Information +8 +Name of related party +Relationship to you +Related party’s identifying number +Address (no., street, and apt., room, or suite no., city or town, state, and ZIP code) +9 +During this tax year (and before the date that is 2 years after the last transfer of property that was part of +the exchange), did the related party sell or dispose of any part of the like-kind property received from you +(or an intermediary) in the exchange or transfer property into the exchange, directly or indirectly (such as +through an intermediary), that became your replacement property? +.............. +Yes +No +10 +During this tax year (and before the date that is 2 years after the last transfer of property that was part of +the exchange), did you sell or dispose of any part of the like-kind property you received? +...... +Yes +No + +11 +If one of the exceptions below applies to the disposition, check the applicable box: +a +The disposition was after the death of either of the related parties. +b +The disposition was an involuntary conversion, and the threat of conversion occurred after the exchange. +c +You can establish to the satisfaction of the IRS that neither the exchange nor the disposition had tax avoidance as one of +its principal purposes. If this box is checked, attach an explanation (see instructions). +For Paperwork Reduction Act Notice, see the instructions. +Cat. No. 12311A + Form +8824 + (2013) +If both lines 9 and 10 are “No” and this is the year of the exchange, go to Part III. If both lines 9 and 10 are “No” and this is not +the year of the exchange, stop here. If either line 9 or line 10 is “Yes,” complete Part III and report on this year’s tax return the +deferred gain or (loss) from line 24 unless one of the exceptions on line 11 applies. + Information about Form 8824 and its separate instructions is at www.irs.gov/form8824 +If the property described on line 1 or line 2 is real or personal property located outside the United States, indicate the country. +----------------Page (0) Break---------------- +reduced (but not below zero) by any exchange expenses you incurred (see instructions) . . +Form 8824 (2013) +Page +2 +Name(s) shown on tax return. Do not enter name and social security number if shown on other side. +Your social security number +Part III +Realized Gain or (Loss), Recognized Gain, and Basis of Like-Kind Property Received +Caution: + + + +Note: + +12 +Fair market value (FMV) of other property given up +..... +12 +13 +Adjusted basis of other property given up +........ +13 +14 +Gain or (loss) recognized on other property given up. Subtract line 13 from line 12. Report the +gain or (loss) in the same manner as if the exchange had been a sale +......... +14 +Caution: +15 +Cash received, FMV of other property received, plus net liabilities assumed by other party, +15 +16 +FMV of like-kind property you received +................... +16 +17 +Add lines 15 and 16 +......................... +17 +18 +Adjusted basis of like-kind property you gave up, net amounts paid to other party, plus any +............. +18 +.............. +19 +20 +Enter the smaller of line 15 or line 19, but not less than zero +............ +20 +21 +Ordinary income under recapture rules. Enter here and on Form 4797, line 16 (see instructions) +21 +22 +Subtract line 21 from line 20. If zero or less, enter -0-. If more than zero, enter here and on +Schedule D or Form 4797, unless the installment method applies (see instructions) +.... +22 +................... +23 +24 +Deferred gain or (loss). Subtract line 23 from line 19. If a related party exchange, see instructions . +24 +25 +Part IV +Deferral of Gain From Section 1043 Conflict-of-Interest Sales +Note: + +officers of the Federal Government (including certain spouses, minor or dependent children, and trustees as described in + + + +the divested property. +26 +copy of your certificate. Keep the certificate with your records.) +.......... +a +– +27 +Description of divested property +a +28 +Description of replacement property +a +29 +Date divested property was sold (month, day, year) +............... +29 +MM/DD/YYYY +30 +Sales price of divested property (see instructions) +...... +30 +31 +Basis of divested property +............. +31 +................. +32 +33 +Cost of replacement property purchased within 60 days after date +of sale +.................... +33 +34 +Subtract line 33 from line 30. If zero or less, enter -0- +.............. +34 +35 +Ordinary income under recapture rules. Enter here and on Form 4797, line 10 (see instructions) +35 +36 +Subtract line 35 from line 34. If zero or less, enter -0-. If more than zero, enter here and on +Schedule D or Form 4797 (see instructions) +................. +36 +.......... +37 +........... +38 +Form +8824 + (2013) +Complete lines 12 through 14 only if you gave up property that was not like-kind. Otherwise, go to line 15. +If the property given up was used previously or partly as a home, see Property used as +home in the instructions. +see Reporting of multi-asset exchanges in the instructions. + + + +If you transferred and received (a) more than one group of like-kind properties or(b) cash or other (not like-kind) property, + +exchange expensesnot used on line 15 (see instructions) +19 + +Realized gain or (loss). Subtract line 18 from line 17 + +23 + +Recognized gain. Add lines 21 and 22 +25 + +Basis of like-kind property received. Subtract line 15 from the sum of lines 18 and 23 . . . . +This part is to be used only by officers or employees of the executive branch of the Federal Government or judicial +section 1043) for reporting nonrecognition of gain under section 1043 on the sale of property to comply with the +conflict-of-interest requirements. This part can be used onlyif the cost of the replacement property is more than the basis of +Enter the number from the upper right corner of your certificate of divestiture. (Do not attach a +32 + +Realized gain. Subtract line 31 from line 30 +37 + +38 + +Basis of replacement property. Subtract line 37 from line 33 +Deferred gain. Subtract the sum of lines 35 and 36 from line 32 +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8824.fields.json b/test/data/fd/form/F8824.fields.json new file mode 100755 index 00000000..4d2671c6 --- /dev/null +++ b/test/data/fd/form/F8824.fields.json @@ -0,0 +1 @@ +[{"id":"A12RB","type":"radio","calc":false,"value":"L7Y"},{"id":"A12RB","type":"radio","calc":false,"value":"L7N"},{"id":"A11RB","type":"radio","calc":false,"value":"L9Y"},{"id":"A11RB","type":"radio","calc":false,"value":"L9N"},{"id":"A9RB","type":"radio","calc":false,"value":"L10Y"},{"id":"A9RB","type":"radio","calc":false,"value":"L10N"},{"id":"L11RB","type":"radio","calc":false,"value":"L11A"},{"id":"L11RB","type":"radio","calc":false,"value":"L11B"},{"id":"L11RB","type":"radio","calc":false,"value":"L11C"},{"id":"COPY","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1A","type":"alpha","calc":false,"value":""},{"id":"L1B","type":"alpha","calc":false,"value":""},{"id":"L2A","type":"alpha","calc":false,"value":""},{"id":"L2B","type":"alpha","calc":false,"value":""},{"id":"L3","type":"date","calc":false,"value":""},{"id":"L4","type":"date","calc":false,"value":""},{"id":"L5","type":"date","calc":false,"value":""},{"id":"L6","type":"date","calc":false,"value":""},{"id":"NM2","type":"alpha","calc":false,"value":""},{"id":"REL2","type":"alpha","calc":false,"value":""},{"id":"IDN2","type":"ssn","calc":false,"value":""},{"id":"ADD2","type":"alpha","calc":false,"value":""},{"id":"CIT2","type":"alpha","calc":false,"value":""},{"id":"ST2","type":"alpha","calc":false,"value":""},{"id":"ZIP2","type":"zip","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"CERTNO","type":"mask","calc":false,"value":""},{"id":"L26A","type":"alpha","calc":false,"value":""},{"id":"L26B","type":"alpha","calc":false,"value":""},{"id":"L27A","type":"alpha","calc":false,"value":""},{"id":"L27B","type":"alpha","calc":false,"value":""},{"id":"L28","type":"date","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L33","type":"number","calc":true,"value":""},{"id":"L34","type":"number","calc":false,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L37","type":"number","calc":true,"value":""},{"id":"L38","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8824.json b/test/data/fd/form/F8824.json new file mode 100755 index 00000000..e31b6c87 --- /dev/null +++ b/test/data/fd/form/F8824.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8824","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.227,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.227,"w":1.5,"l":63.242},{"oc":"#221f1f","x":84.066,"y":2.738,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.227,"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":7.501,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":11.059,"y":10.506,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.097,"y":11.256,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.097,"y":12.751,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.059,"y":13.506,"w":0.75,"l":87.987},{"oc":"#221f1f","x":77.922,"y":14.259,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":14.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.922,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":15.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.922,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":18.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.922,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":19.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":11.072,"y":24.001,"w":0.75,"l":49.586},{"oc":"#221f1f","x":60.597,"y":24.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.922,"y":24.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":11.097,"y":25.501,"w":0.75,"l":87.949},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":39.686},{"oc":"#221f1f","x":45.747,"y":42.001,"w":1.5,"l":39.686},{"oc":"#221f1f","x":85.347,"y":42.001,"w":1.5,"l":13.698},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":2.697},{"oc":"#221f1f","x":0.086,"y":48.733,"w":0.75,"l":2.697}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.04,"y":4.146,"w":1.5,"l":1.113},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.518},{"oc":"#221f1f","x":84.152,"y":2.718,"w":1.5,"l":1.406},{"oc":"#221f1f","x":84.152,"y":4.068,"w":1.5,"l":1.191},{"oc":"#221f1f","x":77.965,"y":5.22,"w":0.75,"l":1.555},{"oc":"#221f1f","x":81.677,"y":13.493,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":13.493,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":15.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.965,"y":15.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.677,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.615,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":2.783,"y":48.733,"w":0.75,"l":0.736},{"oc":"#221f1f","x":0.086,"y":48.733,"w":0.75,"l":0.736}],"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":"#221f1f","x":6.19,"y":21.751,"w":6.188,"h":0.75,"clr":-1},{"x":0.172,"y":48.764,"w":2.525,"h":0.611,"clr":0},{"oc":"#bfbfbf","x":0.172,"y":48.764,"w":2.525,"h":0.673,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.758,"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.758,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8824","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.832,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.269,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":41.205,"y":2.101,"w":10.392000000000001,"clr":-1,"A":"left","R":[{"T":"Like-Kind%20Exchanges%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":35.709,"y":2.851,"w":20.561000000000007,"clr":-1,"A":"left","R":[{"T":"(and%20section%201043%20conflict-of-interest%20sales)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":43.473,"y":3.5140000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.791,"y":3.6079999999999997,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.273,"y":4.116,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.037,"y":4.209,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.863,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1190","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.126,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.126,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.621,"y":3.7489999999999997,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":4.321,"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.321,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"109","S":10,"TS":[0,14,1,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":78.746,"y":5.002,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.572,"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.572,"w":18.61400000000001,"clr":-1,"A":"left","R":[{"T":"Information%20on%20the%20Like-Kind%20Exchange","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.852,"y":8.002,"w":3.111,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"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.84,"w":18.448000000000004,"clr":-1,"A":"left","R":[{"T":"Description%20of%20like-kind%20property%20given%20up","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.426,"y":8.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":18.428000000000004,"clr":-1,"A":"left","R":[{"T":"Description%20of%20like-kind%20property%20received","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.395,"y":11.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.851,"y":13.348,"w":33.376000000000005,"clr":-1,"A":"left","R":[{"T":"Date%20like-kind%20property%20given%20up%20was%20originally%20acquired%20(month%2C%20day%2C%20year)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":13.348,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":13.348,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#bfc0c4","x":82.655,"y":13.348,"w":6.407999999999999,"clr":-1,"A":"left","R":[{"T":"MM%2FDD%2FYYYY","S":-1,"TS":[0,16.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.851,"y":14.848,"w":34.321,"clr":-1,"A":"left","R":[{"T":"Date%20you%20actually%20transferred%20your%20property%20to%20other%20party%20(month%2C%20day%2C%20year)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":14.848,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#bfc0c4","x":82.68,"y":14.759,"w":6.407999999999999,"clr":-1,"A":"left","R":[{"T":"MM%2FDD%2FYYYY","S":-1,"TS":[0,16.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.465,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.403,"w":41.69199999999997,"clr":-1,"A":"left","R":[{"T":"Date%20like-kind%20property%20you%20received%20was%20identified%20by%20written%20notice%20to%20another%20party%20(month%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":32.208000000000006,"clr":-1,"A":"left","R":[{"T":"day%2C%20year).%20See%20instructions%20for%2045-day%20written%20identification%20requirement%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":17.09,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#bfc0c4","x":82.655,"y":17.009,"w":6.407999999999999,"clr":-1,"A":"left","R":[{"T":"MM%2FDD%2FYYYY","S":-1,"TS":[0,16.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.595,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.852,"y":18.59,"w":45.101999999999975,"clr":-1,"A":"left","R":[{"T":"Date%20you%20actually%20received%20the%20like-kind%20property%20from%20other%20party%20(month%2C%20day%2C%20year).%20See%20instructions","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":79.141,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#bfc0c4","x":82.655,"y":18.501,"w":6.407999999999999,"clr":-1,"A":"left","R":[{"T":"MM%2FDD%2FYYYY","S":-1,"TS":[0,16.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.215,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.852,"y":20.203,"w":48.54299999999994,"clr":-1,"A":"left","R":[{"T":"Was%20the%20exchange%20of%20the%20property%20given%20up%20or%20received%20made%20with%20a%20related%20party%2C%20either%20directly%20or%20indirectly%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.852,"y":20.797,"w":44.33999999999998,"clr":-1,"A":"left","R":[{"T":"(such%20as%20through%20an%20intermediary)%3F%20See%20instructions.%20If%20%E2%80%9CYes%2C%E2%80%9D%20complete%20Part%20II.%20If%20%E2%80%9CNo%2C%E2%80%9D%20go%20to%20Part%20III%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":80.19,"y":20.797,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":82.253,"y":20.797,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":84.315,"y":20.797,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":88.44,"y":20.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.459,"y":20.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":21.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":21.572,"w":17.171000000000006,"clr":-1,"A":"left","R":[{"T":"Related%20Party%20Exchange%20Information","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":22.278,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.865,"y":22.251,"w":9.705000000000002,"clr":-1,"A":"left","R":[{"T":"Name%20of%20related%20party","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.905,"y":22.251,"w":8.594000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20to%20you","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.23,"y":22.251,"w":15.337000000000002,"clr":-1,"A":"left","R":[{"T":"Related%20party%E2%80%99s%20identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.751,"w":36.803999999999995,"clr":-1,"A":"left","R":[{"T":"Address%20(no.%2C%20street%2C%20and%20apt.%2C%20room%2C%20or%20suite%20no.%2C%20city%20or%20town%2C%20state%2C%20and%20ZIP%20code)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.278,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.278,"w":46.76499999999996,"clr":-1,"A":"left","R":[{"T":"During%20this%20tax%20year%20(and%20before%20the%20date%20that%20is%202%20years%20after%20the%20last%20transfer%20of%20property%20that%20was%20part%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.965,"w":47.21199999999997,"clr":-1,"A":"left","R":[{"T":"the%20exchange)%2C%20did%20the%20related%20party%20sell%20or%20dispose%20of%20any%20part%20of%20the%20like-kind%20property%20received%20from%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.652,"w":46.764999999999965,"clr":-1,"A":"left","R":[{"T":"(or%20an%20intermediary)%20in%20the%20exchange%20or%20transfer%20property%20into%20the%20exchange%2C%20directly%20or%20indirectly%20(such%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":30.027,"clr":-1,"A":"left","R":[{"T":"through%20an%20intermediary)%2C%20that%20became%20your%20replacement%20property%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":28.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"..............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.18,"y":28.358,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":94.283,"y":28.358,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.965,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.903,"w":46.76499999999996,"clr":-1,"A":"left","R":[{"T":"During%20this%20tax%20year%20(and%20before%20the%20date%20that%20is%202%20years%20after%20the%20last%20transfer%20of%20property%20that%20was%20part%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":39.74799999999997,"clr":-1,"A":"left","R":[{"T":"the%20exchange)%2C%20did%20you%20sell%20or%20dispose%20of%20any%20part%20of%20the%20like-kind%20property%20you%20received%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":30.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.451,"y":30.608,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":94.796,"y":30.608,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.599,"y":35.081,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":10.939,"y":35.09,"w":36.98699999999999,"clr":-1,"A":"left","R":[{"T":"If%20one%20of%20the%20exceptions%20below%20applies%20to%20the%20disposition%2C%20check%20the%20applicable%20box%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.589,"y":36.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.426,"y":36.59,"w":29.391999999999996,"clr":-1,"A":"left","R":[{"T":"The%20disposition%20was%20after%20the%20death%20of%20either%20of%20the%20related%20parties.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.562,"y":38.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.426,"y":38.09,"w":46.85799999999996,"clr":-1,"A":"left","R":[{"T":"The%20disposition%20was%20an%20involuntary%20conversion%2C%20and%20the%20threat%20of%20conversion%20occurred%20after%20the%20exchange.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.589,"y":39.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.426,"y":39.653,"w":54.28799999999994,"clr":-1,"A":"left","R":[{"T":"You%20can%20establish%20to%20the%20satisfaction%20of%20the%20IRS%20that%20neither%20the%20exchange%20nor%20the%20disposition%20had%20tax%20avoidance%20as%20one%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.426,"y":40.34,"w":37.91399999999998,"clr":-1,"A":"left","R":[{"T":"its%20principal%20purposes.%20If%20this%20box%20is%20checked%2C%20attach%20an%20explanation%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"w":27.673000000000002,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.882,"y":41.876,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012311A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.478,"y":41.822,"w":4.836,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":41.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8824","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":10.939,"y":32.215,"w":56.23699999999995,"clr":-1,"A":"left","R":[{"T":"If%20both%20lines%209%20and%2010%20are%20%E2%80%9CNo%E2%80%9D%20and%20this%20is%20the%20year%20of%20the%20exchange%2C%20go%20to%20Part%20III.%20If%20both%20lines%209%20and%2010%20are%20%E2%80%9CNo%E2%80%9D%20and%20this%20is%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":32.903,"w":55.804999999999936,"clr":-1,"A":"left","R":[{"T":"the%20year%20of%20the%20exchange%2C%20stop%20here.%20If%20either%20line%209%20or%20line%2010%20is%20%E2%80%9CYes%2C%E2%80%9D%20complete%20Part%20III%20and%20report%20on%20this%20year%E2%80%99s%20tax%20return%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.939,"y":33.59,"w":36.52200000000001,"clr":-1,"A":"left","R":[{"T":"deferred%20gain%20or%20(loss)%20from%20line%2024%20unless%20one%20of%20the%20exceptions%20on%20line%2011%20applies.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.304,"y":4.209,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208824%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8824","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":14.711,"y":8.002,"w":55.84199999999994,"clr":-1,"A":"left","R":[{"T":"If%20the%20property%20described%20on%20line%201%20or%20line%202%20is%20real%20or%20personal%20property%20located%20outside%20the%20United%20States%2C%20indicate%20the%20country.","S":-1,"TS":[0,11.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COPY","EN":0},"TI":5864,"AM":0,"x":22.205,"y":2.955,"w":12.847,"h":1.292},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5865,"AM":1024,"x":6.304,"y":5.846,"w":71.61,"h":0.882,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5866,"AM":1024,"x":78.107,"y":5.892,"w":20.872,"h":0.835,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":5867,"AM":0,"x":11.055,"y":9.873,"w":87.966,"h":0.833,"TU":"Line 1. Description of like-kind property given up."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":5868,"AM":0,"x":11.096,"y":10.623,"w":87.966,"h":0.833,"TU":"Description of like-kind property given up continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2A","EN":0},"TI":5869,"AM":0,"x":11.096,"y":11.937,"w":87.966,"h":0.833,"TU":"Line 2. Description of like-kind property received."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2B","EN":0},"TI":5870,"AM":0,"x":11.155,"y":12.877,"w":87.996,"h":0.833,"TU":"Description of like-kind property received continued."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5871,"AM":0,"x":81.802,"y":13.585,"w":17.247,"h":0.833,"TU":"Line 3. Date property given up acquired (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5872,"AM":0,"x":81.791,"y":14.903,"w":17.321,"h":0.833,"TU":"Line 4. Date you actually transferred your property to other party (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5873,"AM":0,"x":81.652,"y":17.114,"w":17.397,"h":0.856,"TU":"Line 5. Date like-kind property you received was identified by written notice to another party (month, day, year). See instructions for 45-day written identification requirement).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5874,"AM":0,"x":81.791,"y":18.583,"w":17.471,"h":0.858,"TU":"Line 6. Date you actually received the like-kind property from other party (month, day, year). See instructions.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NM2","EN":0},"TI":5877,"AM":0,"x":11.32,"y":23.188,"w":49.173,"h":0.833,"TU":" Line 8. Name of related party."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REL2","EN":0},"TI":5878,"AM":0,"x":60.761,"y":23.22,"w":17.077,"h":0.833,"TU":"Relation to you."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDN2","EN":0},"TI":5879,"AM":0,"x":78.257,"y":23.166,"w":20.723,"h":0.833,"TU":"Related party’s identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADD2","EN":0},"TI":5880,"AM":0,"x":11.246,"y":24.799,"w":87.966,"h":0.833,"TU":"Address (no., street, and apt., room, or suite no., city or town, state, and ZIP code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CIT2","EN":0},"TI":5881,"AM":0,"x":11.305,"y":25.564,"w":61.559,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST2","EN":0},"TI":5882,"AM":0,"x":74.79,"y":25.556,"w":5.456,"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":"ZIP2","EN":0},"TI":5883,"AM":0,"x":83.374,"y":25.564,"w":15.975,"h":0.833,"TU":"Zip code."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7Y","EN":0},"TI":5875,"AM":0,"x":85.648,"y":20.729,"w":2.869,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7N","EN":0},"TI":5876,"AM":0,"x":91.787,"y":20.729,"w":2.719,"h":0.833,"checked":false}],"id":{"Id":"A12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L9Y","EN":0},"TI":5884,"AM":0,"x":85.573,"y":28.325,"w":2.495,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L9N","EN":0},"TI":5885,"AM":0,"x":91.638,"y":28.379,"w":2.57,"h":0.833,"checked":false}],"id":{"Id":"A11RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L10Y","EN":0},"TI":5886,"AM":0,"x":85.723,"y":30.639,"w":2.57,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L10N","EN":0},"TI":5887,"AM":0,"x":91.787,"y":30.666,"w":2.869,"h":0.833,"checked":false}],"id":{"Id":"A9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":5888,"AM":0,"x":10.706,"y":36.601,"w":2.57,"h":0.934,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":5889,"AM":0,"x":10.481,"y":38.044,"w":2.869,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L11C","EN":0},"TI":5890,"AM":0,"x":10.856,"y":39.677,"w":2.42,"h":0.833,"checked":false}],"id":{"Id":"L11RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.185,"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.147,"y":4.501,"w":1.125,"l":71.861},{"oc":"#221f1f","x":77.922,"y":4.501,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":59.359,"y":8.251,"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":59.359,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":9.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":9.001,"w":1.125,"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":79.159,"y":13.501,"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.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":14.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":14.251,"w":1.125,"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.25,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":16.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":1.125,"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":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.25,"y":18.001,"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.25,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":20.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":20.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.25,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.755,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.755,"w":1.125,"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":76.684,"y":28.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":85.347,"y":28.501,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":35.847,"y":29.251,"w":0.75,"l":60.724},{"dsh":1,"oc":"#221f1f","x":11.097,"y":30.001,"w":0.75,"l":85.474},{"dsh":1,"oc":"#221f1f","x":38.322,"y":30.751,"w":0.75,"l":58.249},{"dsh":1,"oc":"#221f1f","x":11.097,"y":31.501,"w":0.75,"l":85.474},{"oc":"#221f1f","x":82.872,"y":33.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":59.361,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.361,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.249,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":39.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.161,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.161,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":42.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.161,"y":43.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":43.504,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.161,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":92.821}],"VLines":[{"oc":"#221f1f","x":77.965,"y":2.97,"w":0.75,"l":1.555},{"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":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":2.281},{"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.789},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.789},{"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.293,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":14.985,"w":0.75,"l":1.539},{"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.789},{"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.293,"y":17.236,"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.293,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":18.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.293,"y":20.235,"w":0.75,"l":0.789},{"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.989,"w":0.75,"l":0.789},{"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.917,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.204,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.117,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.404,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":63.117,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.404,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.917,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.204,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"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":75.49,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":37.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":37.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.917,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.204,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.917,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.204,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.917,"y":41.983,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.204,"y":41.983,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.917,"y":43.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.204,"y":43.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.917,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.204,"y":44.985,"w":0.75,"l":1.531},{"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":"#221f1f","x":6.19,"y":4.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":7.501,"w":3.713,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":22.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":33.001,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":37.501,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":10.9,"y":12.59,"w":39.503999999999984,"clr":-1,"A":"left","R":[{"T":"reduced%20%20(but%20not%20below%20zero)%20by%20any%20exchange%20expenses%20you%20incurred%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.016,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.078,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.978,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208824%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.556,"clr":-1,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.751,"w":44.471999999999966,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20tax%20return.%20Do%20not%20enter%20name%20and%20social%20security%20number%20if%20shown%20on%20other%20side.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.23,"y":2.751,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.331,"y":4.322,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":4.322,"w":40.17799999999998,"clr":-1,"A":"left","R":[{"T":"Realized%20Gain%20or%20(Loss)%2C%20Recognized%20Gain%2C%20and%20Basis%20of%20Like-Kind%20Property%20Received","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.162,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.893,"y":6.59,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":22.689000000000004,"clr":-1,"A":"left","R":[{"T":"Fair%20market%20value%20(FMV)%20of%20other%20property%20given%20up%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":7.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":18.763,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20of%20other%20property%20given%20up%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":8.09,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.903,"w":41.63599999999998,"clr":-1,"A":"left","R":[{"T":"Gain%20or%20(loss)%20recognized%20on%20other%20property%20given%20up.%20Subtract%20line%2013%20from%20line%2012.%20Report%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":9.59,"w":30.822,"clr":-1,"A":"left","R":[{"T":"gain%20or%20(loss)%20in%20the%20same%20manner%20as%20if%20the%20exchange%20had%20been%20a%20sale%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.571,"y":9.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":".........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.403,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.699,"y":11.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.894,"y":11.902,"w":40.50699999999997,"clr":-1,"A":"left","R":[{"T":"Cash%20received%2C%20FMV%20of%20other%20property%20received%2C%20plus%20net%20liabilities%20assumed%20by%20other%20party%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":17.577,"clr":-1,"A":"left","R":[{"T":"FMV%20of%20like-kind%20property%20you%20received%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":13.34,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"...................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":13.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.905,"y":14.09,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2015%20and%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":14.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":".........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":14.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.903,"w":40.58599999999998,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20of%20like-kind%20property%20you%20gave%20up%2C%20net%20amounts%20paid%20to%20other%20party%2C%20plus%20any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.308,"y":15.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":15.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.252,"y":16.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"..............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":26.765000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2015%20or%20line%2019%2C%20but%20not%20less%20than%20zero%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":17.09,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":42.45599999999998,"clr":-1,"A":"left","R":[{"T":"Ordinary%20income%20under%20recapture%20rules.%20Enter%20here%20and%20on%20Form%204797%2C%20line%2016%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":18.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.653,"w":40.135999999999974,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021%20from%20line%2020.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20more%20than%20zero%2C%20enter%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":19.34,"w":36.992999999999995,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20or%20Form%204797%2C%20unless%20the%20installment%20method%20applies%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.869,"y":19.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.939,"y":20.09,"w":25.32699999999999,"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":"23%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":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.849,"w":43.28399999999996,"clr":-1,"A":"left","R":[{"T":"Deferred%20gain%20or%20(loss).%20Subtract%20line%2023%20from%20line%2019.%20If%20a%20related%20party%20exchange%2C%20see%20instructions%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":76.067,"y":20.849,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":79.948,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.948,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":22.322,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":22.322,"w":28.784999999999997,"clr":-1,"A":"left","R":[{"T":"Deferral%20of%20Gain%20From%20Section%201043%20Conflict-of-Interest%20Sales","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.126,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.814,"w":53.63499999999993,"clr":-1,"A":"left","R":[{"T":"officers%20of%20the%20Federal%20Government%20(including%20certain%20spouses%2C%20minor%20or%20dependent%20children%2C%20and%20trustees%20as%20described%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.876,"w":9.616000000000003,"clr":-1,"A":"left","R":[{"T":"the%20divested%20property.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.894,"y":27.599,"w":28.371000000000002,"clr":-1,"A":"left","R":[{"T":"copy%20of%20your%20certificate.%20Keep%20the%20certificate%20with%20your%20records.)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":53.381,"y":27.599,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"..........%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":74.062,"y":27.505,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.99,"y":27.59,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":28.309,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.278,"w":14.650000000000002,"clr":-1,"A":"left","R":[{"T":"Description%20of%20divested%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.551,"y":28.184,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.809,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.778,"w":16.410000000000004,"clr":-1,"A":"left","R":[{"T":"Description%20of%20replacement%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.273,"y":29.684,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.866,"y":32.09,"w":23.040999999999997,"clr":-1,"A":"left","R":[{"T":"Date%20divested%20property%20was%20sold%20(month%2C%20day%2C%20year)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":32.09,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"...............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.95,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#bfc0c4","x":83.274,"y":32.001,"w":6.407999999999999,"clr":-1,"A":"left","R":[{"T":"MM%2FDD%2FYYYY","S":-1,"TS":[0,16.5,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":22.05700000000001,"clr":-1,"A":"left","R":[{"T":"Sales%20price%20of%20divested%20property%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":33.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.15,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":12.001000000000001,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20divested%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":35.09,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.15,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":43.065,"y":36.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.95,"y":36.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":37.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.403,"w":29.708999999999996,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20replacement%20property%20purchased%20within%2060%20days%20after%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":38.09,"w":3.222,"clr":-1,"A":"left","R":[{"T":"of%20sale%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.257,"y":38.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":38.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":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2033%20from%20line%2030.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":39.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.95,"y":39.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":41.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":41.09,"w":42.45599999999998,"clr":-1,"A":"left","R":[{"T":"Ordinary%20income%20under%20recapture%20rules.%20Enter%20here%20and%20on%20Form%204797%2C%20line%2010%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.95,"y":41.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":41.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.903,"w":40.135999999999974,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2035%20from%20line%2034.%20If%20zero%20or%20less%2C%20enter%20-0-.%20If%20more%20than%20zero%2C%20enter%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":42.59,"w":19.579000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20or%20Form%204797%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.057,"y":42.59,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":".................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.95,"y":42.588,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.501,"y":44.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.95,"y":44.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.44,"y":45.528,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.95,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.076,"y":46.315,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.219,"y":46.315,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8824","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.041,"y":46.315,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.933,"y":6.59,"w":46.57799999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%2012%20through%2014%20only%20if%20you%20gave%20up%20property%20that%20was%20not%20like-kind.%20Otherwise%2C%20go%20to%20line%2015.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.996,"y":10.403,"w":38.62899999999998,"clr":-1,"A":"left","R":[{"T":"If%20the%20property%20given%20up%20was%20used%20previously%20or%20partly%20as%20a%20home%2C%20see%20Property%20used%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":11.09,"w":10.838000000000003,"clr":-1,"A":"left","R":[{"T":"home%20in%20the%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.849,"w":25.90000000000001,"clr":-1,"A":"left","R":[{"T":"see%20Reporting%20of%20multi-asset%20exchanges%20in%20the%20instructions.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":16.796,"y":5.162,"w":53.68799999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20transferred%20and%20received%20(a)%20more%20than%20one%20group%20of%20like-kind%20properties%20or(b)%20cash%20or%20other%20(not%20like-kind)%20property%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.883,"y":15.59,"w":25.513000000000005,"clr":-1,"A":"left","R":[{"T":"exchange%20expensesnot%20used%20on%20line%2015%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":23.509000000000004,"clr":-1,"A":"left","R":[{"T":"Realized%20gain%20or%20(loss).%20%20Subtract%20line%2018%20from%20line%2017%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":17.121000000000002,"clr":-1,"A":"left","R":[{"T":"Recognized%20gain.%20Add%20lines%2021%20and%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.528,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.528,"w":43.96599999999995,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20like-kind%20property%20received.%20Subtract%20line%2015%20from%20the%20sum%20of%20lines%2018%20and%2023%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":14.758,"y":23.126,"w":50.41099999999994,"clr":-1,"A":"left","R":[{"T":"This%20part%20is%20to%20be%20used%20only%20by%20officers%20or%20employees%20of%20the%20executive%20branch%20of%20the%20Federal%20Government%20or%20judicial","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.501,"w":52.416999999999945,"clr":-1,"A":"left","R":[{"T":"section%201043)%20for%20reporting%20nonrecognition%20of%20gain%20under%20section%201043%20on%20the%20sale%20of%20property%20to%20comply%20with%20the%20%20%20%20%20%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.188,"w":54.52399999999992,"clr":-1,"A":"left","R":[{"T":"conflict-of-interest%20requirements.%20This%20part%20can%20be%20used%20onlyif%20the%20cost%20of%20the%20replacement%20property%20is%20more%20than%20the%20basis%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.912,"w":41.62999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20from%20the%20upper%20right%20corner%20of%20your%20certificate%20of%20divestiture.%20(Do%20not%20attach%20a%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":19.34200000000001,"clr":-1,"A":"left","R":[{"T":"Realized%20gain.%20Subtract%20line%2031%20from%20line%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":45.528,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":45.528,"w":26.567000000000007,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20replacement%20property.%20Subtract%20line%2037%20from%20line%2033%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.09,"w":28.125000000000007,"clr":-1,"A":"left","R":[{"T":"Deferred%20gain.%20Subtract%20the%20sum%20of%20lines%2035%20and%2036%20from%20line%2032%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":5891,"AM":1024,"x":6.453,"y":3.611,"w":71.535,"h":0.833,"TU":"Name(s) shown on tax 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":5892,"AM":1024,"x":78.332,"y":3.611,"w":20.648,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":5893,"AM":0,"x":63.236,"y":7.508,"w":12.148,"h":0.833,"TU":"Line 12. Fair market value (FMV) of other property given up."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":5894,"AM":0,"x":63.216,"y":8.288,"w":12.189,"h":0.833,"TU":"Line 13. Adjusted basis of other property given up."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":5895,"AM":1024,"x":83.01,"y":9.65,"w":12.275,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":5896,"AM":0,"x":83.01,"y":12.606,"w":12.2,"h":0.879,"TU":"Line 15. Cash received, FMV of other property received, plus net liabilities assumed by the other party, reduced (but not below zero) by any exchange expenses you incurred (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":5897,"AM":0,"x":83.016,"y":13.538,"w":12.189,"h":0.833,"TU":"Line 16. FMV of like-kind property received."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":5898,"AM":1024,"x":83.016,"y":14.295,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":5899,"AM":0,"x":83.098,"y":15.775,"w":12.099,"h":0.833,"TU":"Line 18. Adjusted basis of like-kind property you gave up, net amounts paid to other party, plus any exchange expenses not used on line 15 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":5900,"AM":1024,"x":83.016,"y":16.545,"w":12.189,"h":0.833,"TU":"Line 19. Realized gain or (loss). Subtract line 18 from line 17."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":5901,"AM":0,"x":83.016,"y":17.288,"w":12.189,"h":0.833,"TU":"Line 20. Enter the smaller of line 15 or line 19, but not less than zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":5902,"AM":0,"x":83.016,"y":18.038,"w":12.189,"h":0.833,"TU":"Line 21. Ordinary income under recapture rules. Enter here and on Form 4797, line 16 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":5903,"AM":1024,"x":83.023,"y":19.553,"w":12.249,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":5904,"AM":0,"x":83.016,"y":20.322,"w":12.189,"h":0.833,"TU":"Line 23. Recognized gain. Add lines 21 and 22."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":5905,"AM":1024,"x":83.016,"y":21.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":5906,"AM":0,"x":83.144,"y":21.779,"w":12.189,"h":0.833,"TU":"Line 25. Basis of like-kind property received. Subtract line 15 from the sum of lines 18 and 23."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CERTNO","EN":0},"TI":5907,"AM":0,"x":76.889,"y":27.526,"w":19.717,"h":0.883,"TU":"Line 26. Enter the number from the upper right hand corner of your certificate of divestiture. (Do not attach a copy of your certificate. Keep the certificate with your records.)","MV":"9999999999999999999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26A","EN":0},"TI":5908,"AM":0,"x":35.846,"y":28.65,"w":60.741,"h":0.833,"TU":"Line 27. Description of divested property."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26B","EN":0},"TI":5909,"AM":0,"x":11.321,"y":29.4,"w":85.266,"h":0.833,"TU":"Description of divested property continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L27A","EN":0},"TI":5910,"AM":0,"x":38.321,"y":30.15,"w":58.266,"h":0.833,"TU":"Line 28. Description of replacement property."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L27B","EN":0},"TI":5911,"AM":0,"x":11.471,"y":30.9,"w":85.041,"h":0.833,"TU":"Description of replacement property continued."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":5912,"AM":0,"x":82.925,"y":32.098,"w":12.381,"h":0.833,"TU":"Line 29. Date divested property was sold (month, day, year).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":5913,"AM":0,"x":63.298,"y":33.576,"w":12.249,"h":0.909,"TU":"Line 30. Sales price of divested property (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":5914,"AM":0,"x":63.298,"y":35.059,"w":12.174,"h":0.899,"TU":"Line 31. Basis of divested property."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":5915,"AM":1024,"x":83.085,"y":36.604,"w":11.901,"h":0.854,"TU":"BASIS"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":5916,"AM":0,"x":63.298,"y":38.103,"w":12.174,"h":0.882,"TU":"Line 33. Cost of replacement property purchased within 60 days after date of sale."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":5917,"AM":1024,"x":83.16,"y":39.634,"w":11.901,"h":0.851},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":5918,"AM":0,"x":83.098,"y":41.086,"w":12.024,"h":0.899,"TU":"Line 35. Ordinary income under recapture rules. Enter here and on Form 4797, line 10 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":5919,"AM":1024,"x":83.098,"y":42.585,"w":12.024,"h":0.9},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":5920,"AM":1024,"x":83.098,"y":44.139,"w":12.024,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":5921,"AM":1024,"x":83.098,"y":45.585,"w":12.024,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8826.content.txt b/test/data/fd/form/F8826.content.txt new file mode 100755 index 00000000..6be71ca4 --- /dev/null +++ b/test/data/fd/form/F8826.content.txt @@ -0,0 +1,61 @@ +Form +8826 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Disabled Access Credit +a + Attach to your tax return. +a + Information about Form 8826 and its instructions is at +www.irs.gov/form8826 +. +OMB No. 1545-1205 +Attachment +Sequence No. +86 +Name(s) shown on return +Identifying number +1 +Total eligible access expenditures (see instructions) +................ +1 +2 +Minimum amount +........................... +2 +3 +Subtract line 2 from line 1. If zero or less, enter -0- +................ +3 +4 +Maximum amount +........................... +4 +5 +Enter the +smaller + of line 3 or line 4 +..................... +5 +6 +Multiply line 5 by 50% (.50) +........................ +6 +7 +Disabled access credit from partnerships and S corporations +............. +7 +8 +Add lines 6 and 7, but do not enter more than $5,000. Partnerships and S corporations, report this +amount on Schedule K. All others, report this amount on Form 3800, line 1e +......... +8 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 12774N +Form +8826 + (Rev. 12-2013) +$ 250 00 +$10,000 00 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8826.fields.json b/test/data/fd/form/F8826.fields.json new file mode 100755 index 00000000..2a0519f4 --- /dev/null +++ b/test/data/fd/form/F8826.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8826.json b/test/data/fd/form/F8826.json new file mode 100755 index 00000000..9d62118d --- /dev/null +++ b/test/data/fd/form/F8826.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8826 (Rev. December 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.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.257,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":74.336},{"oc":"#221f1f","x":80.397,"y":6.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":14.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":19.501,"w":1.5,"l":37.211},{"oc":"#221f1f","x":43.272,"y":19.501,"w":1.5,"l":39.686},{"oc":"#221f1f","x":82.872,"y":19.501,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.232,"w":1.5,"l":3.051},{"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.303},{"oc":"#221f1f","x":80.44,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":84.152,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":6.735,"w":0.75,"l":1.531},{"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":84.152,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":84.152,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":18.735,"w":0.75,"l":0.791},{"oc":"#221f1f","x":80.44,"y":18.735,"w":0.75,"l":0.791},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":80.44,"y":17.251,"w":3.712,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.568,"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.568,"w":2.34,"clr":-1,"A":"left","R":[{"T":"8826%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.349,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8949999999999996,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.345,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.809,"y":2.445,"w":10.719999999999999,"clr":-1,"A":"left","R":[{"T":"Disabled%20Access%20Credit%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.25,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.343,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.15,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.243,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208826%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.243,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8826","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.969,"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.9729999999999999,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1205%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.607,"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.297,"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.297,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"86%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":81.221,"y":5.001,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":7.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":23.242000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20eligible%20access%20expenditures%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":7.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":7.34,"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.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":8.08,"clr":-1,"A":"left","R":[{"T":"Minimum%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":8.84,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":8.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":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":22.725,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":10.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":8.357000000000001,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":11.84,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.566,"y":13.34,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.974,"y":13.34,"w":7.909000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%203%20or%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":13.34,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":13.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":14.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":14.84,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205%20by%2050%25%20(.50)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":14.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.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":16.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":16.34,"w":27.430000000000003,"clr":-1,"A":"left","R":[{"T":"Disabled%20access%20credit%20from%20partnerships%20and%20S%20corporations%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":16.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":16.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":17.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":17.837,"w":44.06999999999997,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207%2C%20but%20do%20not%20enter%20more%20than%20%245%2C000.%20Partnerships%20and%20S%20corporations%2C%20report%20this%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.493,"w":34.27200000000001,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Schedule%20K.%20All%20others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%20%201e%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":61.625,"y":18.493,"w":12.707999999999998,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.616,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.358,"w":26.239,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.363,"y":19.376,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012774N%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.795,"y":19.322,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.272,"y":19.322,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8826%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":19.322,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":89.059,"y":8.801,"w":3.2800000000000002,"clr":-1,"A":"left","R":[{"T":"%24%20%20%20%20250","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":95.81,"y":8.801,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":87.874,"y":11.801,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2410%2C000","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":95.81,"y":11.801,"w":1.452,"clr":-1,"A":"left","R":[{"T":"00%20","S":-1,"TS":[2,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5922,"AM":1024,"x":6.229,"y":5.836,"w":74.085,"h":0.899,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":5923,"AM":1024,"x":80.582,"y":5.892,"w":18.397,"h":0.843,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5924,"AM":0,"x":84.336,"y":7.234,"w":10.787,"h":1.001,"TU":"Line 1. Total eligible access expenditures (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5925,"AM":1024,"x":84.336,"y":10.178,"w":10.787,"h":1.057},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5926,"AM":1024,"x":84.336,"y":13.123,"w":10.787,"h":1.112},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5927,"AM":1024,"x":84.336,"y":14.789,"w":10.787,"h":0.946},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5928,"AM":0,"x":84.336,"y":16.178,"w":10.787,"h":1.057,"TU":"Line 7. Disabled access credit from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5929,"AM":1024,"x":84.356,"y":17.995,"w":10.746,"h":1.37}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8828.content.txt b/test/data/fd/form/F8828.content.txt new file mode 100755 index 00000000..7ab8e7a4 --- /dev/null +++ b/test/data/fd/form/F8828.content.txt @@ -0,0 +1,157 @@ +Form +8828 +(Rev. March 2010) +Department of the Treasury +Internal Revenue Service (99) +Recapture of Federal Mortgage Subsidy + +Attach to Form 1040. + +See separate instructions. +OMB No. 1545-0074 +Attachment +Sequence No. +64 + +Name(s) +Social security number + (as shown on page 1 of your tax return) +Part I +Description of Home Subject to Federally Subsidized Debt +1 +Address of property (number and street, city or town, state, and ZIP code) +2 +Check the box that describes the type of federal subsidy you had on the loan for your home. +a +Mortgage loan from the proceeds of a tax-exempt bond +b +Mortgage credit certificate +Note. +If neither box applies, you are not subject to recapture tax on the sale or other disposition of your home. +Do not +complete this form. +3 +Name of the bond or certificate issuer +State Political subdivision (city, county, etc.) +Agency, if any +4 +Name and address of original lending institution +5 +Date of closing of the original loan +............... +Month +Day +Year +Note. +If the date of closing of the loan was before January 1, 1991, recapture tax does not apply. +Do not +complete this form. If + +you (1) checked the box on line 2b (mortgage credit certificate), (2) refinanced your home, and (3) received a reissued +mortgage credit certificate, see +Refinancing your home +on page 1 of the instructions. +6 +Date of sale or other disposition of your interest in the home +....... +Month +Day +Year +7 +Number of years and full months between original closing date (line 5) and date of sale or disposition (line 6): +Years +Full months +8 +Date of full repayment of the original loan including a refinancing other than one for which a replacement mortgage credit +certificate was issued (see instructions) . . . +........... +Month +Day +Year +Part II +Computation of Recapture Tax +9 +Sales price of your interest in the home sold or disposed of (see instructions) +...... +9 +10 +Expenses of sale. Include sales commissions, advertising, legal fees, etc. +....... +10 +11 +Amount realized. Subtract line 10 from line 9 . +................ +11 +12 +Adjusted basis of your interest in the home sold or disposed of (see instructions) +..... +12 +13 +Gain or (loss) from sale or disposition. Subtract line 12 from line 11. If a loss, +stop + here and +attach this form to your Form 1040. You +do not + owe recapture tax . . +........ +13 +14 +Multiply line 13 by 50% (.50) +...................... +14 +15 +Modified adjusted gross income (see instructions) +............... +15 +16 +Adjusted qualifying income (see instructions) . +................ +16 +17 +Subtract line 16 from line 15. If zero or less, +stop + here and attach this form to your Form 1040. +You +do not + owe recapture tax +...................... +17 +18 +Income percentage. If the amount on line 17 is $5,000 or more, enter “100.” Otherwise, divide +the amount on line 17 by $5,000 and enter the result as a percentage. Round to the nearest +whole percentage . . +........................ +18 +% +19 +Federally subsidized amount (see instructions) +................ +19 +20 +Holding period percentage (see instructions) . +................ +20 +% +21 +Multiply line 19 by the percentage on line 20 . +................ +21 +22 +Recapture amount. Multiply line 21 by the percentage on line 18 . . +........ +22 +23 +Tax. Enter the +smaller + of line 14 or line 22. Also, include this amount on the line for total tax on +Form 1040. For details, see the Instructions for Form 1040 +............ +23 +For Paperwork Reduction Act Notice, see Form 1040 instructions. +Cat. No. 13049F +Form +8828 + (Rev. 3-2010) +▶ +▶ +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8828.fields.json b/test/data/fd/form/F8828.fields.json new file mode 100755 index 00000000..a4b6382d --- /dev/null +++ b/test/data/fd/form/F8828.fields.json @@ -0,0 +1 @@ +[{"id":"A2RB","type":"radio","calc":false,"value":"PROTXBND"},{"id":"A2RB","type":"radio","calc":false,"value":"CRDCERT"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"P1","type":"alpha","calc":false,"value":""},{"id":"P2","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"COUNTY","type":"alpha","calc":false,"value":""},{"id":"AGENCY","type":"alpha","calc":false,"value":""},{"id":"INSTNAME","type":"alpha","calc":false,"value":""},{"id":"INSTADDR","type":"alpha","calc":false,"value":""},{"id":"INSTCITY","type":"alpha","calc":false,"value":""},{"id":"INSTST","type":"alpha","calc":false,"value":""},{"id":"INSTZIP","type":"zip","calc":false,"value":""},{"id":"CLOSEDT","type":"date","calc":false,"value":""},{"id":"OTHRDT","type":"date","calc":false,"value":""},{"id":"NOYRS","type":"number","calc":false,"value":""},{"id":"FULLMO","type":"number","calc":false,"value":""},{"id":"REPAYDT","type":"date","calc":false,"value":""},{"id":"SALPRICE","type":"number","calc":false,"value":""},{"id":"EXPSALE","type":"number","calc":false,"value":""},{"id":"REALAMT","type":"number","calc":true,"value":""},{"id":"ADJBASIS","type":"number","calc":false,"value":""},{"id":"GAIN","type":"number","calc":true,"value":""},{"id":"PCTGAIN","type":"number","calc":true,"value":""},{"id":"MODADJ","type":"number","calc":false,"value":""},{"id":"ADJINC","type":"number","calc":false,"value":""},{"id":"DIFRNCE","type":"number","calc":true,"value":""},{"id":"INCPCT","type":"number","calc":true,"value":""},{"id":"SUBAMT","type":"number","calc":false,"value":""},{"id":"PERDPCT","type":"number","calc":false,"value":""},{"id":"PCTNG","type":"number","calc":true,"value":""},{"id":"RECAPAMT","type":"number","calc":true,"value":""},{"id":"TOTTAX","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8828.json b/test/data/fd/form/F8828.json new file mode 100755 index 00000000..d67c9a17 --- /dev/null +++ b/test/data/fd/form/F8828.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8828 (Rev. March 2010)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.256,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.995,"y":5.25,"w":1.5,"l":63.198},{"oc":"#221f1f","x":84.064,"y":3.75,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.244,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6.75,"w":1.125,"l":92.898},{"oc":"#221f1f","x":6.145,"y":7.5,"w":0.75,"l":92.898},{"dsh":1,"oc":"#221f1f","x":46.306,"y":16.5,"w":0.75,"l":52.737},{"dsh":1,"oc":"#221f1f","x":69.257,"y":18.75,"w":0.75,"l":8.748},{"dsh":1,"oc":"#221f1f","x":77.92,"y":18.75,"w":0.75,"l":9.986},{"dsh":1,"oc":"#221f1f","x":87.819,"y":18.75,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":69.257,"y":22.5,"w":0.75,"l":8.748},{"dsh":1,"oc":"#221f1f","x":77.92,"y":22.5,"w":0.75,"l":9.986},{"dsh":1,"oc":"#221f1f","x":87.819,"y":22.5,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":69.257,"y":26.25,"w":0.75,"l":8.748},{"dsh":1,"oc":"#221f1f","x":77.92,"y":26.25,"w":0.75,"l":9.986},{"dsh":1,"oc":"#221f1f","x":87.819,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.145,"y":27,"w":1.125,"l":92.898},{"oc":"#221f1f","x":6.145,"y":27.75,"w":0.75,"l":92.898},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":28.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.869,"y":29.25,"w":1.125,"l":16.173},{"oc":"#221f1f","x":79.157,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":30,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.869,"y":31.5,"w":1.125,"l":16.173},{"oc":"#221f1f","x":79.157,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":33,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":34.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":35.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.869,"y":36.75,"w":1.125,"l":16.173},{"oc":"#221f1f","x":79.157,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":39,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":41.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":42,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":42.75,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":44.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":44.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.157,"y":45.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.869,"y":45.75,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.869,"y":48,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.145,"y":48,"w":1.5,"l":54.535},{"oc":"#221f1f","x":60.595,"y":48,"w":1.5,"l":22.361},{"oc":"#221f1f","x":82.869,"y":48,"w":1.5,"l":16.377}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.031},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.541},{"oc":"#221f1f","x":61.875,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.912,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.912,"y":28.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":28.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.912,"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.912,"y":29.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":29.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.912,"y":31.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":31.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.912,"y":32.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":32.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.912,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.912,"y":35.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":35.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.912,"y":36.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":36.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.912,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.912,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.912,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.912,"y":42.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":42.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.912,"y":44.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":44.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.912,"y":45.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":45.734,"w":0.75,"l":2.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":6.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":27,"w":6.188,"h":0.75,"clr":-1},{"x":0.075,"y":48.92,"w":1.596,"h":0.58,"clr":0}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.571,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":10.084,"y":2.571,"w":2.34,"clr":-1,"A":"left","R":[{"T":"8828%20","S":-1,"TS":[0,26.9998,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.226,"w":8.132000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%20March%202010)","S":-1,"TS":[0,9.4399,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.4399,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.4399,0,0]}]},{"oc":"#221f1f","x":31.921999999999997,"y":2.525,"w":17.76,"clr":-1,"A":"left","R":[{"T":"Recapture%20of%20Federal%20Mortgage%20Subsidy","S":-1,"TS":[2,16.9999,0,0]}]},{"oc":"#221f1f","x":35.731,"y":4.107,"w":11.596000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.%20%20%20%20%20%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":51.889,"y":4.107,"w":12.463000000000001,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":85.741,"y":2.347,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":85.962,"y":3.7439999999999998,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":85.962,"y":4.315,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":93.94,"y":4.315,"w":1.112,"clr":-1,"A":"left","R":[{"T":"64","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.92,"w":4.111000000000001,"clr":-1,"A":"left","R":[{"T":"Name(s)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":62.312,"y":4.92,"w":11.003999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":-1,"TS":[0,9.9999,1,0]}]},{"oc":"#221f1f","x":75.552,"y":4.92,"w":18.009,"clr":-1,"A":"left","R":[{"T":"%20(as%20shown%20on%20page%201%20of%20your%20tax%20return)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"x":6.836,"y":6.509,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":13.157,"y":6.54,"w":27.941000000000003,"clr":-1,"A":"left","R":[{"T":"Description%20of%20Home%20Subject%20to%20Federally%20Subsidized%20Debt%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":7.289,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":7.279,"w":32.903999999999996,"clr":-1,"A":"left","R":[{"T":"Address%20of%20property%20(number%20and%20street%2C%20city%20or%20town%2C%20state%2C%20and%20ZIP%20code)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":10.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.339,"w":41.491999999999976,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20that%20describes%20the%20type%20of%20federal%20subsidy%20you%20had%20on%20the%20loan%20for%20your%20home.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":8.413,"y":11.089,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":13.441,"y":11.063,"w":24.679000000000006,"clr":-1,"A":"left","R":[{"T":"Mortgage%20loan%20from%20the%20proceeds%20of%20a%20tax-exempt%20bond%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":8.414,"y":11.839,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":13.442,"y":11.813,"w":11.782000000000002,"clr":-1,"A":"left","R":[{"T":"Mortgage%20credit%20certificate%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.651,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":15.561,"y":12.651,"w":46.396999999999956,"clr":-1,"A":"left","R":[{"T":"If%20neither%20box%20applies%2C%20you%20are%20not%20subject%20to%20recapture%20tax%20on%20the%20sale%20or%20other%20disposition%20of%20your%20home.","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":15.419,"y":13.322,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":20.697,"y":13.292,"w":8.929000000000002,"clr":-1,"A":"left","R":[{"T":"complete%20this%20form.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.565,"y":14.026,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.029,"w":16.896,"clr":-1,"A":"left","R":[{"T":"Name%20of%20the%20bond%20or%20certificate%20issuer%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":43.504,"y":14.722,"w":2.63,"clr":-1,"A":"left","R":[{"T":"State%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":56.966,"y":14.722,"w":17.280000000000005,"clr":-1,"A":"left","R":[{"T":"Political%20subdivision%20(city%2C%20county%2C%20etc.)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":87.537,"y":14.72,"w":6.575000000000001,"clr":-1,"A":"left","R":[{"T":"Agency%2C%20if%20any%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":15.526,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.529,"w":21.343000000000004,"clr":-1,"A":"left","R":[{"T":"Name%20and%20address%20of%20original%20lending%20institution%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":17.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.839,"w":15.501000000000003,"clr":-1,"A":"left","R":[{"T":"Date%20of%20closing%20of%20the%20original%20loan%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":36.875,"y":17.839,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":71.71,"y":18.483,"w":3.057,"clr":-1,"A":"left","R":[{"T":"Month%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":81.593,"y":18.483,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Day%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":91.911,"y":18.483,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Year","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.464,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":15.272,"y":19.464,"w":40.45199999999997,"clr":-1,"A":"left","R":[{"T":"If%20the%20date%20of%20closing%20of%20the%20loan%20was%20before%20January%201%2C%201991%2C%20recapture%20tax%20does%20not%20apply.","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":77.939,"y":19.416,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":83.59,"y":19.417,"w":9.762000000000002,"clr":-1,"A":"left","R":[{"T":"complete%20this%20form.%20If%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.151,"w":52.41699999999995,"clr":-1,"A":"left","R":[{"T":"you%20(1)%20checked%20the%20box%20on%20line%202b%20(mortgage%20credit%20certificate)%2C%20(2)%20refinanced%20your%20home%2C%20and%20(3)%20received%20a%20reissued%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.878,"y":20.839,"w":13.908000000000003,"clr":-1,"A":"left","R":[{"T":"mortgage%20credit%20certificate%2C%20see","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":32.392,"y":20.839,"w":11.035000000000002,"clr":-1,"A":"left","R":[{"T":"Refinancing%20your%20home","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":49.806,"y":20.839,"w":13.337000000000003,"clr":-1,"A":"left","R":[{"T":"on%20page%201%20of%20the%20instructions.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":7.543,"y":21.576,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.878,"y":21.589,"w":27.042,"clr":-1,"A":"left","R":[{"T":"Date%20of%20sale%20or%20other%20disposition%20of%20your%20interest%20in%20the%20home%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":53.366,"y":21.589,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":71.71,"y":22.233,"w":3.057,"clr":-1,"A":"left","R":[{"T":"Month%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":81.593,"y":22.233,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Day%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":91.911,"y":22.233,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Year%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":48.618999999999964,"clr":-1,"A":"left","R":[{"T":"Number%20of%20years%20and%20full%20months%20between%20original%20closing%20date%20(line%205)%20and%20date%20of%20sale%20or%20disposition%20(line%206)%3A%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":87.897,"y":23.731,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Years%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":92.562,"y":23.733,"w":5.168,"clr":-1,"A":"left","R":[{"T":"Full%20months","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":24.645,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.651,"w":54.193999999999946,"clr":-1,"A":"left","R":[{"T":"Date%20of%20full%20repayment%20of%20the%20original%20loan%20including%20a%20refinancing%20other%20than%20one%20for%20which%20a%20replacement%20mortgage%20credit%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.894,"y":25.339,"w":17.759000000000004,"clr":-1,"A":"left","R":[{"T":"certificate%20was%20issued%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":38.944,"y":25.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":41.006,"y":25.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":43.068,"y":25.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":45.129,"y":25.339,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":71.71,"y":25.983,"w":3.057,"clr":-1,"A":"left","R":[{"T":"Month%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":81.593,"y":25.983,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Day%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":91.911,"y":25.983,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Year%20","S":-1,"TS":[0,9.9999,0,0]}]},{"x":6.583,"y":26.758,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":13.157,"y":26.79,"w":14.943000000000001,"clr":-1,"A":"left","R":[{"T":"Computation%20of%20Recapture%20Tax%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":7.553,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.589,"w":34.467999999999996,"clr":-1,"A":"left","R":[{"T":"Sales%20price%20of%20your%20interest%20in%20the%20home%20sold%20or%20disposed%20of%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":65.75,"y":27.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":80.376,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.339,"w":32.87500000000001,"clr":-1,"A":"left","R":[{"T":"Expenses%20of%20sale.%20Include%20sales%20commissions%2C%20advertising%2C%20legal%20fees%2C%20etc.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":63.687,"y":28.339,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":20.09700000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20realized.%20Subtract%20line%2010%20from%20line%209%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":43.064,"y":29.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":45.125,"y":29.089,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":36.11799999999999,"clr":-1,"A":"left","R":[{"T":"Adjusted%20basis%20of%20your%20interest%20in%20the%20home%20sold%20or%20disposed%20of%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":67.812,"y":30.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":31.405,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.401000000000003,"w":34.004999999999995,"clr":-1,"A":"left","R":[{"T":"Gain%20or%20(loss)%20from%20sale%20or%20disposition.%20Subtract%20line%2012%20from%20line%2011.%20If%20a%20loss%2C","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":67.728,"y":31.310000000000002,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"stop","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":71.758,"y":31.494999999999997,"w":4.4830000000000005,"clr":-1,"A":"left","R":[{"T":"%20here%20and%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":17.858000000000008,"clr":-1,"A":"left","R":[{"T":"attach%20this%20form%20to%20your%20Form%201040.%20You","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":39.396,"y":32.119,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.4,"y":32.089,"w":8.629000000000003,"clr":-1,"A":"left","R":[{"T":"%20owe%20recapture%20tax%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":58.23,"y":32.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":60.292,"y":32.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":61.623,"y":32.089,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":32.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.589,"w":12.653000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2013%20by%2050%25%20(.50)","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":32.75,"y":33.589,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":34.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.339,"w":22.46700000000001,"clr":-1,"A":"left","R":[{"T":"Modified%20adjusted%20gross%20income%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":47.188,"y":34.339,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":34.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.839,"w":20.189000000000007,"clr":-1,"A":"left","R":[{"T":"Adjusted%20qualifying%20income%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":43.064,"y":35.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":45.125,"y":35.839,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":37.423,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.401,"w":19.669000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2016%20from%20line%2015.%20If%20zero%20or%20less%2C%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":40.952,"y":37.401,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"stop","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":44.31,"y":37.448,"w":20.563000000000002,"clr":-1,"A":"left","R":[{"T":"%20here%20and%20attach%20this%20form%20to%20your%20Form%201040.%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.895,"y":38.089,"w":2.056,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":14.076,"y":38.089,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":18.803,"y":38.089,"w":8.629000000000003,"clr":-1,"A":"left","R":[{"T":"%20owe%20recapture%20tax%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":32.757,"y":38.089,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":38.952,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.964,"w":42.03199999999998,"clr":-1,"A":"left","R":[{"T":"Income%20percentage.%20If%20the%20amount%20on%20line%2017%20is%20%245%2C000%20or%20more%2C%20enter%20%E2%80%9C100.%E2%80%9D%20Otherwise%2C%20divide%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.879,"y":39.651,"w":41.051999999999964,"clr":-1,"A":"left","R":[{"T":"the%20amount%20on%20line%2017%20by%20%245%2C000%20and%20enter%20the%20result%20as%20a%20percentage.%20Round%20to%20the%20nearest%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.886,"y":40.339,"w":8.259,"clr":-1,"A":"left","R":[{"T":"whole%20percentage%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":24.499,"y":40.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.561,"y":40.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":28.623,"y":40.339,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":97.065,"y":40.386,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13.9999,1,0]}]},{"oc":"#221f1f","x":6.693,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.089,"w":20.91000000000001,"clr":-1,"A":"left","R":[{"T":"Federally%20subsidized%20amount%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":45.125,"y":41.089,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":41.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":41.839,"w":20.03900000000001,"clr":-1,"A":"left","R":[{"T":"Holding%20period%20percentage%20(see%20instructions)%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":43.064,"y":41.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":45.125,"y":41.839,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":41.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":97.065,"y":41.886,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13.9999,1,0]}]},{"oc":"#221f1f","x":6.693,"y":43.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.339,"w":19.71000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2019%20by%20the%20percentage%20on%20line%2020","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":43.064,"y":43.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":45.125,"y":43.339,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":43.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":44.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.839,"w":28.843,"clr":-1,"A":"left","R":[{"T":"Recapture%20amount.%20Multiply%20line%2021%20by%20the%20percentage%20on%20line%2018%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":57.501,"y":44.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":59.563,"y":44.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":61.623,"y":44.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":44.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":6.693,"y":46.395,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.888,"y":46.401,"w":6.501000000000001,"clr":-1,"A":"left","R":[{"T":"Tax.%20Enter%20the%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":21.167,"y":46.401,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":26.649,"y":46.401,"w":32.24900000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2014%20or%20line%2022.%20Also%2C%20include%20this%20amount%20on%20the%20line%20for%20total%20tax%20on","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":10.897,"y":47.088,"w":26.267000000000014,"clr":-1,"A":"left","R":[{"T":"Form%201040.%20For%20details%2C%20see%20the%20Instructions%20for%20Form%201040%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":53.385,"y":47.088,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":79.946,"y":47.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11.9999,0,0]}]},{"oc":"#221f1f","x":5.938,"y":47.857,"w":31.518,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20Form%201040%20instructions.%20","S":-1,"TS":[0,10.9999,0,0]}]},{"oc":"#221f1f","x":67.112,"y":47.874,"w":7.614000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013049F%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":83.666,"y":47.883,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":-1,"TS":[0,9.9999,0,0]}]},{"oc":"#221f1f","x":87.143,"y":47.883,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8828%20","S":-1,"TS":[0,12.9999,0,0]}]},{"oc":"#221f1f","x":91.443,"y":47.883,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%203-2010)%20","S":-1,"TS":[0,9.9999,0,0]}]},{"x":50.41,"y":4.055,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[3,9,0,0]}]},{"x":34.168,"y":4.04,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[3,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5930,"AM":1024,"x":6.229,"y":5.862,"w":55.373,"h":0.865,"TU":"Name(s)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5931,"AM":1024,"x":61.944,"y":5.889,"w":36.96,"h":0.838,"TU":"Social security number (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"P1","EN":0},"TI":5932,"AM":0,"x":7.846,"y":8.275,"w":87.883,"h":0.833,"TU":"Line 1. Address of property (number and street)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"P2","EN":0},"TI":5933,"AM":0,"x":7.889,"y":9.02,"w":87.883,"h":0.833,"TU":"Address continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":5934,"AM":0,"x":7.796,"y":9.916,"w":66.227,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":5935,"AM":0,"x":74.889,"y":9.803,"w":4.516,"h":0.875,"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":5936,"AM":0,"x":81.758,"y":9.875,"w":13.951,"h":0.833,"TU":"ZIP CODE"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":5939,"AM":0,"x":40.854,"y":14.161,"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":"alpha","TypeInfo":{}},"id":{"Id":"COUNTY","EN":0},"TI":5940,"AM":0,"x":48.215,"y":14.167,"w":25.841,"h":0.833,"TU":"Political subdivision (city, county, etc.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AGENCY","EN":0},"TI":5941,"AM":0,"x":74.588,"y":14.191,"w":24.392,"h":0.833,"TU":"Agency, if any."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INSTNAME","EN":0},"TI":5942,"AM":0,"x":46.303,"y":15.87,"w":52.759,"h":0.833,"TU":"Line 4. Name of original lending institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INSTADDR","EN":0},"TI":5943,"AM":0,"x":46.242,"y":16.64,"w":52.759,"h":0.833,"TU":"Address of original lending institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INSTCITY","EN":0},"TI":5944,"AM":0,"x":46.297,"y":17.34,"w":29.999,"h":0.833,"TU":"CITY OF original lending institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INSTST","EN":0},"TI":5945,"AM":0,"x":78.433,"y":17.297,"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":"INSTZIP","EN":0},"TI":5946,"AM":0,"x":86.434,"y":17.392,"w":12.567,"h":0.833,"TU":"ZIP CODE"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CLOSEDT","EN":0},"TI":5947,"AM":0,"x":69.116,"y":18.12,"w":30.032,"h":0.833,"TU":"Line 5. Date of closing of the original loan.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"OTHRDT","EN":0},"TI":5948,"AM":0,"x":69.191,"y":21.87,"w":29.958,"h":0.833,"TU":"Line 6. Date of sale of other disposition of your interest in the home.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NOYRS","EN":0},"TI":5949,"AM":0,"x":86.509,"y":23.37,"w":6.04,"h":0.833,"TU":"Line 7. Number of years between original closing date (line 5) and date of sale or disposition (line 6). Years."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FULLMO","EN":0},"TI":5950,"AM":0,"x":92.96,"y":23.337,"w":6.04,"h":0.833,"TU":"Number of full months between original closing date (line 5) and date of sale or disposition (line 6) Full months."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"REPAYDT","EN":0},"TI":5951,"AM":0,"x":69.172,"y":25.624,"w":29.958,"h":0.833,"TU":"Line 8. Date of full repayment of the original loan including a refinancing other than one for which a replacement mortgage credit certificate was issued (see instructions).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALPRICE","EN":0},"TI":5952,"AM":0,"x":83.016,"y":27.76,"w":16.005,"h":0.833,"TU":"Line 9. Sales price of your interest in the home sold or disposed of (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXPSALE","EN":0},"TI":5953,"AM":0,"x":83.016,"y":28.538,"w":16.005,"h":0.833,"TU":"Line 10. Expenses of sale. Include sales commissions, advertising, legal fees, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REALAMT","EN":0},"TI":5954,"AM":1024,"x":83.016,"y":29.295,"w":16.005,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJBASIS","EN":0},"TI":5955,"AM":0,"x":83.226,"y":30.431,"w":15.84,"h":1.094,"TU":"Line 12. Adjusted basis of your interest in the home sold or disposed of (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GAIN","EN":0},"TI":5956,"AM":1024,"x":83.098,"y":32.078,"w":15.84,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PCTGAIN","EN":0},"TI":5957,"AM":1024,"x":83.098,"y":33.454,"w":15.84,"h":1.031,"TU":"Line 14. Multiply line 13 by 50% (.50)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MODADJ","EN":0},"TI":5958,"AM":0,"x":83.016,"y":34.538,"w":16.005,"h":0.833,"TU":"Line 15. Modified adjusted gross income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJINC","EN":0},"TI":5959,"AM":0,"x":83.098,"y":35.82,"w":15.84,"h":0.907,"TU":"Line 16. Adjusted qualifying income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIFRNCE","EN":0},"TI":5960,"AM":1024,"x":83.119,"y":37.878,"w":15.948,"h":1.107},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCPCT","EN":0},"TI":5961,"AM":1024,"x":83.139,"y":40.116,"w":13.702,"h":1.13},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBAMT","EN":0},"TI":5962,"AM":0,"x":82.941,"y":41.288,"w":16.005,"h":0.833,"TU":"Line 19. Federally subsidized amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PERDPCT","EN":0},"TI":5963,"AM":0,"x":82.961,"y":42.053,"w":13.909,"h":0.833,"TU":"Line 20. Holding period percentage (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PCTNG","EN":0},"TI":5964,"AM":1024,"x":83.098,"y":43.297,"w":15.84,"h":0.938},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RECAPAMT","EN":0},"TI":5965,"AM":1024,"x":83.162,"y":44.704,"w":15.84,"h":1.031},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTAX","EN":0},"TI":5966,"AM":1024,"x":83.194,"y":46.676,"w":16.08,"h":1.294}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PROTXBND","EN":0},"TI":5937,"AM":0,"x":10.856,"y":11.282,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CRDCERT","EN":0},"TI":5938,"AM":0,"x":10.881,"y":12.013,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"A2RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8829.content.txt b/test/data/fd/form/F8829.content.txt new file mode 100755 index 00000000..683dee99 --- /dev/null +++ b/test/data/fd/form/F8829.content.txt @@ -0,0 +1,239 @@ +Form + +8829 +Department of the Treasury +Internal Revenue Service (99) +Expenses for Business Use of Your Home +a + +File only with Schedule C (Form 1040). Use a separate Form 8829 for each + +home you used for business during the year. + +a + +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +176 + +Name(s) of proprietor(s) +Your social security number +Part I +Part of Your Home Used for Business +1 +Area used regularly and exclusively for business, regularly for daycare, or for storage of +inventory or product samples (see instructions) +................ +1 +2 +Total area of home +......................... +2 +3 +Divide line 1 by line 2. Enter the result as a percentage +............. +3 +% +For daycare facilities not used exclusively for business, go to line 4. All others go to line 7. +4 +Multiply days used for daycare during year by hours used per day +4 +hr. +5 +Total hours available for use during the year (365 days x 24 hours) (see instructions) +5 +6 +Divide line 4 by line 5. Enter the result as a decimal amount . . . +6 +. +7 +Business percentage. For daycare facilities not used exclusively for business, multiply line 6 by +line 3 (enter the result as a percentage). All others, enter the amount from line 3 +..... +a +7 +% +Part II +Figure Your Allowable Deduction +8 + +Enter the amount from Schedule C, line 29, +plus + any gain derived from the business use of your +home and shown on Schedule D or Form 4797, minus any loss from the trade or business not derived +from the business use of your home and shown on Schedule D or Form 4797. See instructions . . +8 +See instructions for columns (a) and (b) before +completing lines 9...21. +(a) +Direct expenses + + + + +(b) +Indirect expenses + + + + +9 +Casualty losses (see instructions) +..... +9 +10 +Deductible mortgage interest (see instructions) +10 +11 +Real estate taxes (see instructions) +.... +11 +12 +Add lines 9, 10, and 11 +........ +12 +13 +Multiply line 12, column (b) by line 7 +.... +13 +14 +Add line 12, column (a) and line 13 +.... +14 +15 +Subtract line 14 from line 8. If zero or less, enter -0- +15 +16 +Excess mortgage interest (see instructions) . +16 +17 +Insurance +............ +17 +18 +Rent +.............. +18 +19 +Repairs and maintenance +....... +19 +20 +Utilities +............. +20 +21 +Other expenses (see instructions) +..... +21 +22 +Add lines 16 through 21 +........ +22 +23 +Multiply line 22, column (b) by line 7 +........... +23 +24 +Carryover of operating expenses from 2012 Form 8829, line 42 . . +24 +25 +Add line 22, column (a), line 23, and line 24 +................. +25 +26 +Allowable operating expenses. Enter the +smaller + of line 15 or line 25 +......... +26 +27 +Limit on excess casualty losses and depreciation. Subtract line 26 from line 15 +..... +27 +28 +Excess casualty losses (see instructions) +......... +28 +29 +Depreciation of your home from line 41 below +....... +29 +30 +Carryover of excess casualty losses and depreciation from 2012 Form 8829, line 43 +30 +31 +Add lines 28 through 30 +........................ +31 +32 +Allowable excess casualty losses and depreciation. Enter the +smaller + of line 27 or line 31 . . +32 +33 +Add lines 14, 26, and 32 +........................ +33 +34 +Casualty loss portion, if any, from lines 14 and 32. Carry amount to +Form 4684 + (see instructions) +34 +35 +Allowable expenses for business use of your home. +Subtract line 34 from line 33. Enter here +and on Schedule C, line 30. If your home was used for more than one business, see instructions + +a +35 +Part III +Depreciation of Your Home +36 +Enter the +smaller + of your home’s adjusted basis or its fair market value (see instructions) . . +36 +37 +Value of land included on line 36 +..................... +37 +38 +Basis of building. Subtract line 37 from line 36 +................ +38 +39 +Business basis of building. Multiply line 38 by line 7 +............... +39 +40 +40 +% +41 +Depreciation allowable (see instructions). Multiply line 39 by line 40. Enter here and on line 29 above +41 +Part IV +Carryover of Unallowed Expenses to 2014 +42 +Operating expenses. Subtract line 26 from line 25. If less than zero, enter -0- +...... +42 +43 +Excess casualty losses and depreciation. Subtract line 32 from line 31. If less than zero, enter -0- +43 +For Paperwork Reduction Act Notice, see your tax return instructions. + + +Cat. No. 13232M +Form +8829 + (2013) +hr. +8,760 +Information about Form 8829 and its separate instructions is at www.irs.gov/form8829 +Depreciation percentage (see instructions) (Enter as percent, for example 10.1234 for 10.1234%) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8829.fields.json b/test/data/fd/form/F8829.fields.json new file mode 100755 index 00000000..6655bd94 --- /dev/null +++ b/test/data/fd/form/F8829.fields.json @@ -0,0 +1 @@ +[{"id":"CNO","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"BUS","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"percent","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"percent","calc":true,"value":""},{"id":"L7","type":"percent","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9A","type":"number","calc":false,"value":""},{"id":"L9B","type":"number","calc":false,"value":""},{"id":"TLINTDIR","type":"number","calc":false,"value":""},{"id":"L10B","type":"number","calc":false,"value":""},{"id":"L11A","type":"number","calc":false,"value":""},{"id":"L11B","type":"number","calc":false,"value":""},{"id":"L12A","type":"number","calc":true,"value":""},{"id":"L12B","type":"number","calc":true,"value":""},{"id":"L13B","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16A","type":"number","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"OTHINSA","type":"number","calc":false,"value":""},{"id":"OTHINS","type":"number","calc":false,"value":""},{"id":"RENTA","type":"number","calc":false,"value":""},{"id":"RENTB","type":"number","calc":false,"value":""},{"id":"L18A","type":"number","calc":false,"value":""},{"id":"L18B","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":false,"value":""},{"id":"L19B","type":"number","calc":false,"value":""},{"id":"L20A","type":"number","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"L21A","type":"number","calc":true,"value":""},{"id":"L21B","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":true,"value":""},{"id":"L38","type":"number","calc":true,"value":""},{"id":"L39","type":"mask","calc":false,"value":""},{"id":"L40","type":"number","calc":true,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"L42","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8829.json b/test/data/fd/form/F8829.json new file mode 100755 index 00000000..18380c78 --- /dev/null +++ b/test/data/fd/form/F8829.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8829","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":7.511},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":6.751,"w":1.125,"l":85.474},{"oc":"#221f1f","x":13.572,"y":7.501,"w":0.75,"l":85.474},{"oc":"#221f1f","x":77.922,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":9.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.922,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":9.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.922,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":10.501,"w":0.75,"l":17.411},{"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":14.936},{"oc":"#221f1f","x":59.359,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":13.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":77.922,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":15.001,"w":1.125,"l":7.511},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":15.001,"w":1.125,"l":85.474},{"oc":"#221f1f","x":13.572,"y":15.751,"w":0.75,"l":85.474},{"oc":"#221f1f","x":77.922,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":18.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":18.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":48.222,"y":18.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":63.072,"y":18.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":63.072,"y":18.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":77.922,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.552,"y":19.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":44.552,"y":18.751,"w":0.75,"l":3.712},{"oc":"#221f1f","x":48.222,"y":19.501,"w":0.75,"l":11.223},{"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":11.223},{"oc":"#221f1f","x":74.209,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":20.251,"w":0.75,"l":11.223},{"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":11.223},{"oc":"#221f1f","x":74.209,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":48.222,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":59.359,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":74.209,"y":21.001,"w":1.125,"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":11.223},{"oc":"#221f1f","x":74.209,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.552,"y":22.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":44.552,"y":21.751,"w":0.75,"l":3.712},{"oc":"#221f1f","x":48.265,"y":22.501,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":21.751,"w":0.75,"l":11.137},{"oc":"#221f1f","x":44.552,"y":23.251,"w":0.75,"l":3.712},{"oc":"#221f1f","x":44.552,"y":22.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":48.265,"y":23.251,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":22.501,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.402,"y":23.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.402,"y":22.501,"w":0.75,"l":3.713},{"oc":"#221f1f","x":63.115,"y":23.251,"w":0.75,"l":11.138},{"oc":"#221f1f","x":63.115,"y":22.501,"w":0.75,"l":11.138},{"oc":"#221f1f","x":74.252,"y":23.251,"w":0.75,"l":3.712},{"oc":"#221f1f","x":74.252,"y":22.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":77.922,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":23.251,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.247,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":44.552,"y":24.001,"w":0.75,"l":3.712},{"oc":"#221f1f","x":44.552,"y":23.251,"w":0.75,"l":3.712},{"oc":"#221f1f","x":48.265,"y":24.001,"w":0.75,"l":11.137},{"oc":"#221f1f","x":48.265,"y":23.251,"w":0.75,"l":11.137},{"oc":"#221f1f","x":59.402,"y":24.001,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.402,"y":23.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":63.115,"y":24.001,"w":0.75,"l":11.138},{"oc":"#221f1f","x":63.115,"y":23.251,"w":0.75,"l":11.138},{"oc":"#221f1f","x":74.252,"y":24.001,"w":0.75,"l":3.712},{"oc":"#221f1f","x":74.252,"y":23.251,"w":0.75,"l":3.712},{"oc":"#221f1f","x":77.922,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":24.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":25.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":25.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":27.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":27.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":48.222,"y":28.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":59.359,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":28.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":74.209,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":44.509,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":29.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":59.359,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":29.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":30.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":74.209,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.922,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":31.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":32.251,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.247,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.922,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":33.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":34.501,"w":0.75,"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":11.223},{"oc":"#221f1f","x":74.209,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":36.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":36.751,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.247,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.922,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":37.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":38.251,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.247,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.922,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":39.751,"w":1.125,"l":7.511},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":39.751,"w":1.125,"l":85.474},{"oc":"#221f1f","x":13.572,"y":40.501,"w":0.75,"l":85.474},{"oc":"#221f1f","x":77.922,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":41.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":42.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":42.001,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.247,"y":42.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.922,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":42.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":43.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":44.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":44.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.125,"l":7.511},{"oc":"#221f1f","x":6.147,"y":45.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":13.572,"y":45.001,"w":1.125,"l":85.474},{"oc":"#221f1f","x":13.572,"y":45.751,"w":0.75,"l":85.474},{"oc":"#221f1f","x":77.922,"y":46.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":46.501,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.247,"y":46.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.172,"y":47.251,"w":1.5,"l":34.736},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223},{"oc":"#221f1f","x":63.072,"y":12.751,"w":0.75,"l":14.936}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.79},{"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":4.267,"w":1.5,"l":1.016},{"oc":"#221f1f","x":77.965,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":11.235,"w":0.75,"l":0.781},{"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":63.115,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":10.485,"w":0.75,"l":3.783},{"oc":"#221f1f","x":77.965,"y":10.485,"w":0.75,"l":3.783},{"oc":"#221f1f","x":81.677,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"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":81.677,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":18.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":44.552,"y":18.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"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":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":74.252,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":44.552,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"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":63.115,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":21.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":44.552,"y":21.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":21.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":21.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":44.552,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":48.265,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.252,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":77.965,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.252,"y":22.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":81.677,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"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":48.265,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":44.552,"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":48.265,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"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":74.252,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":77.965,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":74.252,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":81.677,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":48.265,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"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":59.402,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":44.552,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":48.265,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":63.115,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":31.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":31.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":63.115,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":32.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.965,"y":32.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":37.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":37.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":38.228,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":38.228,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":41.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":41.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":45.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":45.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":45.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":46.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":46.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":46.485,"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":7.425,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":7.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":10.501,"w":3.713,"h":3.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":15.001,"w":7.425,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":15.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":18.001,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":18.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":19.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":20.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":21.001,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":44.552,"y":21.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":48.265,"y":21.751,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":21.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":44.552,"y":22.501,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":48.265,"y":22.501,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":22.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":63.115,"y":22.501,"w":11.138,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":22.501,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":44.552,"y":23.251,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":48.265,"y":23.251,"w":11.137,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":23.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":63.115,"y":23.251,"w":11.138,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":74.252,"y":23.251,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":24.001,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":24.75,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":25.5,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":26.25,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":27,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":27.75,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":28.5,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":29.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":33.001,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":38.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":39.751,"w":7.425,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":45.001,"w":7.425,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.225,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8829","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.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.251,"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":30.185,"y":2.111,"w":19.95000000000001,"clr":-1,"A":"left","R":[{"T":"Expenses%20for%20Business%20Use%20of%20Your%20Home","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":27.623,"y":2.91,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.893,"y":3.004,"w":35.06799999999999,"clr":-1,"A":"left","R":[{"T":"File%20only%20with%20Schedule%20C%20(Form%201040).%20Use%20a%20separate%20Form%208829%20for%20each","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":37.806,"y":3.545,"w":21.339000000000006,"clr":-1,"A":"left","R":[{"T":"home%20you%20used%20for%20business%20during%20the%20year.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.464,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.228,"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.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.8600000000000003,"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.307,"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.307,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"176","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.911,"w":10.796000000000001,"clr":-1,"A":"left","R":[{"T":"Name(s)%20of%20proprietor(s)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.402,"y":4.907,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"x":7.199,"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":15.84,"y":6.572,"w":18.115000000000006,"clr":-1,"A":"left","R":[{"T":"Part%20of%20Your%20Home%20Used%20for%20Business%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":7.289999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":7.289999999999999,"w":38.86999999999997,"clr":-1,"A":"left","R":[{"T":"Area%20used%20regularly%20and%20exclusively%20for%20business%2C%20regularly%20for%20daycare%2C%20or%20for%20storage%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.651,"y":7.978,"w":21.18900000000001,"clr":-1,"A":"left","R":[{"T":"inventory%20%20or%20product%20samples%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":7.978,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":"................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":8.84,"w":8.389999999999999,"clr":-1,"A":"left","R":[{"T":"Total%20area%20of%20home","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":8.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":".........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":9.59,"w":24.524,"clr":-1,"A":"left","R":[{"T":"Divide%20line%201%20by%20line%202.%20Enter%20the%20result%20as%20a%20percentage%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":9.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.753,"y":9.527,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":10.34,"w":43.34899999999996,"clr":-1,"A":"left","R":[{"T":"For%20daycare%20facilities%20not%20used%20exclusively%20for%20business%2C%20go%20to%20line%204.%20All%20others%20go%20to%20line%207.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.554,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":11.09,"w":29.56199999999999,"clr":-1,"A":"left","R":[{"T":"Multiply%20days%20used%20for%20daycare%20during%20year%20by%20hours%20used%20per%20day%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.898,"y":11.008,"w":1.016,"clr":-1,"A":"left","R":[{"T":"hr.","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":11.84,"w":37.50599999999998,"clr":-1,"A":"left","R":[{"T":"Total%20hours%20available%20for%20use%20during%20the%20year%20(365%20days%20x%2024%20hours)%20(see%20instructions)%20","S":-1,"TS":[0,10.469999999999999,0,0]}]},{"oc":"#221f1f","x":60.578,"y":11.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":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":12.59,"w":26.36000000000001,"clr":-1,"A":"left","R":[{"T":"Divide%20line%204%20by%20line%205.%20Enter%20the%20result%20as%20a%20decimal%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":12.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#272872","x":66.066,"y":12.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":13.29,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":13.29,"w":42.542999999999985,"clr":-1,"A":"left","R":[{"T":"Business%20percentage.%20For%20daycare%20facilities%20not%20used%20exclusively%20for%20business%2C%20multiply%20line%206%20by%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":13.988,"w":35.248999999999995,"clr":-1,"A":"left","R":[{"T":"line%203%20(enter%20the%20result%20as%20a%20percentage).%20All%20others%2C%20enter%20the%20amount%20from%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.754,"y":13.988,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":13.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.141,"y":14.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.754,"y":14.028,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"x":6.945,"y":14.822,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.84,"y":14.822,"w":16.003000000000004,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Allowable%20Deduction%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.603000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":15.603000000000002,"w":19.544000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Schedule%20C%2C%20line%2029%2C%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":37.023,"y":15.603000000000002,"w":2.056,"clr":-1,"A":"left","R":[{"T":"plus","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":40.2,"y":15.603000000000002,"w":21.431,"clr":-1,"A":"left","R":[{"T":"%20any%20gain%20derived%20from%20the%20business%20use%20of%20your%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":9.642,"y":16.29,"w":45.680999999999976,"clr":-1,"A":"left","R":[{"T":"home%20and%20shown%20on%20Schedule%20D%20or%20Form%204797%2C%20minus%20any%20loss%20from%20the%20trade%20or%20business%20not%20derived%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":9.643,"y":16.977,"w":42.678999999999974,"clr":-1,"A":"left","R":[{"T":"from%20the%20business%20use%20of%20your%20home%20and%20shown%20on%20Schedule%20D%20or%20Form%204797.%20%20See%20instructions%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":73.992,"y":16.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":76.055,"y":16.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":79.141,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":17.546,"w":22.504,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20columns%20(a)%20and%20(b)%20before%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.655,"y":17.983,"w":11.393000000000004,"clr":-1,"A":"left","R":[{"T":"completing%20lines%209%E2%80%A621.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":50.07,"y":17.876,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":52.142,"y":17.876,"w":7.481999999999999,"clr":-1,"A":"left","R":[{"T":"Direct%20expenses%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.475,"y":17.876,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":66.591,"y":17.876,"w":7.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Indirect%20expenses","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":18.59,"w":14.834000000000003,"clr":-1,"A":"left","R":[{"T":"Casualty%20losses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":18.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.728,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":19.34,"w":21.09600000000001,"clr":-1,"A":"left","R":[{"T":"Deductible%20mortgage%20interest%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":20.09,"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":34.815,"y":20.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%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":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":20.84,"w":10.283000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209%2C%2010%2C%20and%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":20.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":20.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":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":21.59,"w":15.969000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2012%2C%20column%20(b)%20by%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":21.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%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":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":22.34,"w":15.395000000000007,"clr":-1,"A":"left","R":[{"T":"Add%20line%2012%2C%20column%20(a)%20and%20line%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":22.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.09,"w":23.003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014%20from%20line%208.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":78.711,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.84,"w":19.20500000000001,"clr":-1,"A":"left","R":[{"T":"Excess%20mortgage%20interest%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.004,"y":23.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%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":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":24.59,"w":4.371,"clr":-1,"A":"left","R":[{"T":"Insurance","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":24.59,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":25.339,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Rent","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.189,"y":25.339,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"..............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.089,"w":11.392000000000003,"clr":-1,"A":"left","R":[{"T":"Repairs%20and%20maintenance","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":26.089,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":26.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":26.839,"w":3.2769999999999997,"clr":-1,"A":"left","R":[{"T":"Utilities","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":26.839,"w":18.662,"clr":-1,"A":"left","R":[{"T":".............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":26.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":27.589,"w":14.891000000000005,"clr":-1,"A":"left","R":[{"T":"Other%20expenses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":27.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":28.339,"w":10.671,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2016%20through%2021","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":28.339,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":29.09,"w":15.969000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2022%2C%20column%20(b)%20by%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":29.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%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":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":29.84,"w":28.30300000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20operating%20expenses%20from%202012%20Form%208829%2C%20line%2042.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.065,"y":29.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":30.59,"w":19.15600000000001,"clr":-1,"A":"left","R":[{"T":"Add%20line%2022%2C%20column%20(a)%2C%20line%2023%2C%20and%20line%2024","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":30.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":30.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":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":31.340000000000003,"w":18.260000000000005,"clr":-1,"A":"left","R":[{"T":"Allowable%20operating%20expenses.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.32,"y":31.340000000000003,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.384,"y":31.340000000000003,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2015%20or%20line%2025","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":31.340000000000003,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":32.09,"w":35.007999999999996,"clr":-1,"A":"left","R":[{"T":"Limit%20on%20excess%20casualty%20losses%20and%20depreciation.%20Subtract%20line%2026%20from%20line%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":32.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%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":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":32.84,"w":18.13000000000001,"clr":-1,"A":"left","R":[{"T":"Excess%20casualty%20losses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":32.84,"w":11.997,"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":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":33.59,"w":20.355,"clr":-1,"A":"left","R":[{"T":"Depreciation%20of%20your%20home%20from%20line%2041%20below","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":33.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%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":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.653,"y":34.34,"w":37.52599999999998,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20excess%20casualty%20losses%20and%20depreciation%20from%202012%20Form%208829%2C%20line%2043%20","S":-1,"TS":[0,10.379999999999999,0,0]}]},{"oc":"#221f1f","x":60.148,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":35.09,"w":10.671,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2028%20through%2030","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":35.09,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":"........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%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":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":35.84,"w":27.483,"clr":-1,"A":"left","R":[{"T":"Allowable%20excess%20casualty%20losses%20and%20depreciation.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.04,"y":35.84,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.104,"y":35.84,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2027%20or%20line%2031","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.472,"y":35.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.534,"y":35.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":36.59,"w":10.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2014%2C%2026%2C%20and%2032","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":36.59,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%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":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":37.34,"w":30.118999999999996,"clr":-1,"A":"left","R":[{"T":"Casualty%20loss%20portion%2C%20if%20any%2C%20from%20lines%2014%20and%2032.%20Carry%20amount%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.43,"y":37.34,"w":5.002,"clr":-1,"A":"left","R":[{"T":"Form%204684","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":58.822,"y":37.34,"w":8.39,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":38.04,"w":24.897000000000002,"clr":-1,"A":"left","R":[{"T":"Allowable%20expenses%20for%20business%20use%20of%20your%20home.%20","S":-1,"TS":[0,11.73,1,0]}]},{"oc":"#221f1f","x":43.592,"y":38.04,"w":18.005000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2034%20from%20line%2033.%20Enter%20here%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":9.66,"y":38.738,"w":43.08499999999998,"clr":-1,"A":"left","R":[{"T":"and%20on%20Schedule%20C%2C%20line%2030.%20If%20your%20home%20was%20used%20for%20more%20than%20one%20business%2C%20see%20instructions%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":74.623,"y":38.645,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.711,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"x":6.949,"y":39.572,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.84,"y":39.572,"w":13.169000000000002,"clr":-1,"A":"left","R":[{"T":"Depreciation%20of%20Your%20Home%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":40.34,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.812999999999999,"y":40.34,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.705,"y":40.34,"w":31.727999999999994,"clr":-1,"A":"left","R":[{"T":"%20of%20your%20home%E2%80%99s%20adjusted%20basis%20or%20its%20fair%20market%20value%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.911,"y":40.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.973,"y":40.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":41.09,"w":14.504000000000005,"clr":-1,"A":"left","R":[{"T":"Value%20of%20land%20included%20on%20line%2036","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":41.09,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":41.09,"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.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":41.84,"w":20.542000000000012,"clr":-1,"A":"left","R":[{"T":"Basis%20of%20building.%20Subtract%20line%2037%20from%20line%2036","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":41.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":41.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":42.59,"w":22.932,"clr":-1,"A":"left","R":[{"T":"Business%20basis%20of%20building.%20Multiply%20line%2038%20by%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":42.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.711,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.753,"y":43.278,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%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":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":44.09,"w":44.563999999999986,"clr":-1,"A":"left","R":[{"T":"Depreciation%20allowable%20(see%20instructions).%20Multiply%20line%2039%20by%20line%2040.%20Enter%20here%20and%20on%20line%2029%20above","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":78.711,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"x":6.915,"y":44.822,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.84,"y":44.822,"w":19.896000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20Unallowed%20Expenses%20to%202014","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":45.59,"w":34.155,"clr":-1,"A":"left","R":[{"T":"Operating%20expenses.%20Subtract%20line%2026%20from%20line%2025.%20If%20less%20than%20zero%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":45.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":46.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":46.34,"w":43.26599999999998,"clr":-1,"A":"left","R":[{"T":"Excess%20casualty%20losses%20and%20depreciation.%20Subtract%20line%2032%20from%20line%2031.%20If%20less%20than%20zero%2C%20enter%20-0-","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":78.711,"y":46.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"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.889,"y":47.108,"w":7.911000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013232M%20","S":2,"TS":[0,10,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":"8829","S":10,"TS":[0,14,1,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":"#221f1f","x":75.968,"y":11.801,"w":1.016,"clr":-1,"A":"left","R":[{"T":"hr.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":70.661,"y":11.801,"w":2.705,"clr":-1,"A":"left","R":[{"T":"8%2C760","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":24.878,"y":4.243,"w":40.84499999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208829%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8829","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":43.34,"w":42.963999999999956,"clr":-1,"A":"left","R":[{"T":"Depreciation%20percentage%20(see%20instructions)%20(Enter%20as%20percent%2C%20for%20example%2010.1234%20for%2010.1234%25)","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNO","EN":0},"TI":5967,"AM":1024,"x":36.123,"y":1.032,"w":31.371,"h":0.833,"TU":"COPY NUMBER"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5968,"AM":0,"x":6.229,"y":5.816,"w":71.31,"h":0.9,"TU":"Name(s) of proprietor(s)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":5969,"AM":0,"x":78.332,"y":5.878,"w":20.648,"h":0.88,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUS","EN":0},"TI":5970,"AM":0,"x":47.655,"y":6.846,"w":31.371,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":5971,"AM":0,"x":81.989,"y":8.233,"w":17.077,"h":0.833,"TU":"Line 1. Area used regularly and exclusively for business, regularly for daycare, or for storage of inventory or product samples (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":5972,"AM":0,"x":81.778,"y":9.038,"w":17.243,"h":0.833,"TU":"Line 2. Total area of home."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":5973,"AM":1024,"x":81.744,"y":9.792,"w":14.621,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":5974,"AM":0,"x":63.326,"y":11.29,"w":12.301,"h":0.833,"TU":"Line 4. Multiply days used for daycare during year by hours used per day."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":5975,"AM":0,"x":63.306,"y":12.045,"w":7.435,"h":0.833,"TU":"Line 5. Total hours available for use during the year (365 days times 24 hours) (see instructions)."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":5976,"AM":1024,"x":66.619,"y":12.788,"w":11.261,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":5977,"AM":1024,"x":81.856,"y":14.257,"w":15.071,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":5978,"AM":0,"x":81.881,"y":17.138,"w":13.296,"h":0.847,"TU":"Line 8. Enter the amount from Schedule C, line 29, plus any gain derived from the business use of your home and shown on Schedule D or Form 4797, minus any loss from the trade or business not derived from the business use of your home and shown on Schedule D or Form 4797. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":5979,"AM":0,"x":48.366,"y":18.788,"w":10.952,"h":0.833,"TU":"Line 9(a). Casualty losses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":5980,"AM":0,"x":63.216,"y":18.788,"w":10.952,"h":0.833,"TU":"Line 9(b). Casualty losses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLINTDIR","EN":0},"TI":5981,"AM":0,"x":48.366,"y":19.538,"w":10.952,"h":0.833,"TU":"Line 10(a). Deductible mortgage interest (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":5982,"AM":0,"x":63.141,"y":19.538,"w":10.952,"h":0.833,"TU":"Line 10(b). Deductible mortgage interest (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":5983,"AM":0,"x":48.43,"y":20.288,"w":10.952,"h":0.833,"TU":"Line 11(a). Real estate taxes (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":5984,"AM":0,"x":63.216,"y":20.288,"w":10.952,"h":0.833,"TU":"Line 11(b). Real estate taxes (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":5985,"AM":1024,"x":48.366,"y":21.045,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":5986,"AM":1024,"x":63.216,"y":21.045,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":5987,"AM":1024,"x":63.216,"y":21.788,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":5988,"AM":1024,"x":81.923,"y":22.393,"w":13.138,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":5989,"AM":1024,"x":81.778,"y":23.295,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":5990,"AM":0,"x":48.366,"y":24.038,"w":10.952,"h":0.833,"TU":"Line 16(a). Excess mortgage interest (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":5991,"AM":0,"x":63.216,"y":24.038,"w":10.952,"h":0.833,"TU":"Line 16(b). Excess mortgage interest (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINSA","EN":0},"TI":5992,"AM":0,"x":48.366,"y":24.788,"w":10.952,"h":0.833,"TU":"Line 17(a). Insurance."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINS","EN":0},"TI":5993,"AM":0,"x":63.216,"y":24.788,"w":10.952,"h":0.833,"TU":"Line 17(b). Insurance."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENTA","EN":0},"TI":5994,"AM":0,"x":48.366,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 18(a). Rent."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENTB","EN":0},"TI":5995,"AM":0,"x":63.216,"y":25.538,"w":10.952,"h":0.833,"TU":"Line 18(b). Rent."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A","EN":0},"TI":5996,"AM":0,"x":48.366,"y":26.288,"w":10.952,"h":0.833,"TU":"Line 19(a). Repairs and maintenance."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18B","EN":0},"TI":5997,"AM":0,"x":63.291,"y":26.26,"w":10.952,"h":0.833,"TU":"Line 19(b). Repairs and maintenance."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":5998,"AM":0,"x":48.366,"y":27.038,"w":10.952,"h":0.833,"TU":"Line 20(a). Utilities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":5999,"AM":0,"x":63.216,"y":27.038,"w":10.952,"h":0.833,"TU":"Line 20(b). Utilities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20A","EN":0},"TI":6000,"AM":0,"x":48.366,"y":27.788,"w":10.952,"h":0.833,"TU":"Line 21(a). Other expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":6001,"AM":0,"x":63.216,"y":27.788,"w":10.952,"h":0.833,"TU":"Line 21(b). Other expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21A","EN":0},"TI":6002,"AM":1024,"x":48.366,"y":28.545,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21B","EN":0},"TI":6003,"AM":1024,"x":63.216,"y":28.545,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":6004,"AM":1024,"x":63.216,"y":29.288,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":6005,"AM":0,"x":63.216,"y":30.038,"w":10.952,"h":0.833,"TU":"Line 24. Carryover or operating expenses from 2012 Form 8829, line 42."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":6006,"AM":1024,"x":81.923,"y":30.678,"w":12.988,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":6007,"AM":1024,"x":81.778,"y":31.538,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":6008,"AM":1024,"x":81.778,"y":32.322,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":6009,"AM":0,"x":63.236,"y":33.008,"w":10.911,"h":0.833,"TU":"Line 28. Excess casualty losses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":6010,"AM":1024,"x":63.216,"y":33.788,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":6011,"AM":0,"x":63.152,"y":34.538,"w":10.952,"h":0.833,"TU":"Line 30. Carryover of excess casualty losses and depreciation from 2012 Form 8829, line 43."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":6012,"AM":1024,"x":81.923,"y":35.132,"w":13.063,"h":0.853},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":6013,"AM":1024,"x":81.778,"y":36.038,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":6014,"AM":1024,"x":81.778,"y":36.822,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":6015,"AM":0,"x":81.906,"y":37.514,"w":13.427,"h":0.833,"TU":"Line 34. Casualty loss portion, if any, from lines 14 and 32. Carry amount for Form 4684 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":6016,"AM":1024,"x":81.861,"y":38.951,"w":13.561,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":6017,"AM":0,"x":81.778,"y":40.538,"w":13.427,"h":0.833,"TU":"Line 36. Enter the smaller of your home's adjusted basis or its fair market value (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":6018,"AM":0,"x":81.778,"y":41.288,"w":13.427,"h":0.833,"TU":"Line 37. Value of land included on line 36."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":6019,"AM":1024,"x":81.778,"y":42.045,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":6020,"AM":1024,"x":81.703,"y":42.788,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":6021,"AM":0,"x":81.78,"y":43.551,"w":13.427,"h":0.833,"TU":"Line 40. Depreciation percentage (see instructions). ","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":6022,"AM":1024,"x":81.778,"y":44.288,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":6023,"AM":1024,"x":81.778,"y":45.788,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":6024,"AM":1024,"x":81.778,"y":46.545,"w":13.427,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8833.content.txt b/test/data/fd/form/F8833.content.txt new file mode 100755 index 00000000..0133c2df --- /dev/null +++ b/test/data/fd/form/F8833.content.txt @@ -0,0 +1,74 @@ +Explain the treaty-based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature +List the provision(s) of the limitation on benefits article (if any) in the treaty that the taxpayer relies on to prevent application + If the taxpayer is a dual-resident taxpayer and a long-term resident, by electing to be treated as a resident of a foreign country +for purposes of claiming benefits under an applicable income tax treaty, the taxpayer will be deemed to have expatriated pursuant to +Form +8833 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Treaty-Based Return Position Disclosure +Under Section 6114 or 7701(b) +a + Attach to your tax return. +a + Information about Form 8833 and its instructions is at +www.irs.gov/form8833 +. +OMB No. 1545-1354 +Attach a separate Form 8833 for each treaty-based return position taken. Failure to disclose a treaty-based return position may + +result in a penalty of $1,000 ($10,000 in the case of a C corporation) (see section 6712). +Name +U.S. taxpayer identifying number +Reference ID number, if any (see instructions) +Address in country of residence +Address in the United States +Check one or both of the following boxes as applicable: +• The taxpayer is disclosing a treaty-based return position as required by section 6114 +............. +a +• The taxpayer is a dual-resident taxpayer and is disclosing a treaty-based return position as required by +Regulations section 301.7701(b)-7 +.............................. +a +Note. +section 877A. For more information, see the instructions. +Check this box if the taxpayer is a U.S. citizen or resident or is incorporated in the United States +.......... +a +1 +Enter the specific treaty position relied on: +a +Treaty country +b +Article(s) +2 +List the Internal Revenue Code provision(s) overruled or +modified by the treaty-based return position +3 +Name, identifying number (if available to the taxpayer), and +address in the United States of the payor of the income (if +fixed or determinable annual or periodical). See instructions. +4 +of that article +a +5 +Is the taxpayer disclosing a treaty-based return position for which reporting is specifically required pursuant +to Regulations section 301.6114-1(b)? +....................... +Yes +No +If “Yes,” enter the specific subsection(s) of Regulations section 301.6114-1(b) requiring reporting +.... +a +Also include the information requested in line 6. +6 +and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or +other item (as applicable) for which the treaty benefit is claimed +For Paperwork Reduction Act Notice, see the instructions. +Cat. No. 14895L +Form +8833 + (Rev. 12-2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8833.fields.json b/test/data/fd/form/F8833.fields.json new file mode 100755 index 00000000..539cc876 --- /dev/null +++ b/test/data/fd/form/F8833.fields.json @@ -0,0 +1 @@ +[{"id":"TBPOS","type":"box","calc":false,"value":""},{"id":"DUALRES","type":"box","calc":false,"value":""},{"id":"USRES","type":"box","calc":false,"value":""},{"id":"LINE5BRB","type":"radio","calc":false,"value":"LINE5YES"},{"id":"LINE5BRB","type":"radio","calc":false,"value":"LINE5NO"},{"id":"DESC","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"REFIDNO","type":"alpha","calc":false,"value":""},{"id":"RESADD1","type":"alpha","calc":false,"value":""},{"id":"RESADD2","type":"alpha","calc":false,"value":""},{"id":"RESST","type":"alpha","calc":false,"value":""},{"id":"RESPOST","type":"alpha","calc":false,"value":""},{"id":"RESADD3","type":"alpha","calc":false,"value":""},{"id":"USADD1","type":"alpha","calc":false,"value":""},{"id":"USADD2","type":"alpha","calc":false,"value":""},{"id":"USCITY","type":"alpha","calc":false,"value":""},{"id":"USST","type":"alpha","calc":false,"value":""},{"id":"USZIP","type":"zip","calc":false,"value":""},{"id":"COUNTRY","type":"alpha","calc":false,"value":""},{"id":"ARTICLE","type":"alpha","calc":false,"value":""},{"id":"OVERRULE","type":"alpha","calc":false,"value":""},{"id":"PAYORNAM","type":"alpha","calc":false,"value":""},{"id":"PAYORSSN","type":"ssn","calc":false,"value":""},{"id":"PAYORADD","type":"alpha","calc":false,"value":""},{"id":"PAYORCIT","type":"alpha","calc":false,"value":""},{"id":"PAYORST","type":"alpha","calc":false,"value":""},{"id":"PAYORZIP","type":"zip","calc":false,"value":""},{"id":"LIMITS","type":"alpha","calc":false,"value":""},{"id":"REGULATE","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_1_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_2_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_3_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_4_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_5_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_6_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_7_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_8_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_9_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_10_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_11_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_12_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_13_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_14_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_15_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_16_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_17_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_18_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_19_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_20_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_21_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_22_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_23_","type":"alpha","calc":false,"value":""},{"id":"A761_EXPLAIN_24_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8833.json b/test/data/fd/form/F8833.json new file mode 100755 index 00000000..3c1a6b8e --- /dev/null +++ b/test/data/fd/form/F8833.json @@ -0,0 +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":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":45.874},{"oc":"#221f1f","x":51.932,"y":8.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":71.732,"y":8.25,"w":0.75,"l":27.311},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":45.874},{"oc":"#221f1f","x":51.932,"y":11.25,"w":0.75,"l":47.111},{"oc":"#221f1f","x":96.869,"y":14.125,"w":0.75,"l":1.375},{"oc":"#221f1f","x":96.869,"y":13.625,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.145,"y":16.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.188,"y":17.25,"w":1.125,"l":92.813},{"dsh":1,"oc":"#221f1f","x":22.232,"y":18.75,"w":0.75,"l":29.786},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.095,"y":19.5,"w":0.75,"l":40.923},{"oc":"#221f1f","x":6.145,"y":21.75,"w":0.75,"l":45.874},{"oc":"#221f1f","x":51.932,"y":21.75,"w":0.75,"l":47.111},{"oc":"#221f1f","x":6.188,"y":26.25,"w":0.75,"l":92.813},{"oc":"#221f1f","x":87.82,"y":25.5,"w":0.75,"l":11.223},{"dsh":1,"oc":"#221f1f","x":55.645,"y":28.5,"w":0.75,"l":43.398},{"dsh":1,"oc":"#221f1f","x":11.095,"y":29.25,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":30,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":30.75,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":31.5,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":32.25,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":33,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":33.75,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":34.5,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":35.25,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":36,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":36.75,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":37.5,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":38.25,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":39,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":39.75,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":40.5,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":41.25,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":42,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":42.75,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":43.5,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":44.25,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":45,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":45.75,"w":0.75,"l":87.949},{"dsh":1,"oc":"#221f1f","x":11.095,"y":46.5,"w":0.75,"l":87.949},{"oc":"#221f1f","x":6.145,"y":46.5,"w":1.5,"l":38.448},{"oc":"#221f1f","x":44.507,"y":46.5,"w":1.5,"l":38.448},{"oc":"#221f1f","x":82.87,"y":46.5,"w":1.5,"l":16.173},{"oc":"#221f1f","x":6.188,"y":26.25,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.188,"y":26.25,"w":1.125,"l":92.813},{"oc":"#221f1f","x":6.188,"y":23.25,"w":1.125,"l":92.813}],"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":3.047},{"oc":"#221f1f","x":51.975,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":71.775,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.975,"y":8.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":98.244,"y":13.625,"w":0.75,"l":0.5},{"oc":"#221f1f","x":96.869,"y":13.625,"w":0.75,"l":0.5},{"oc":"#221f1f","x":51.975,"y":17.234,"w":0.75,"l":4.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":10.888,"y":26.102,"w":55.27099999999995,"clr":-1,"A":"left","R":[{"T":"Explain%20the%20treaty-based%20return%20position%20taken.%20Include%20a%20brief%20summary%20of%20the%20facts%20on%20which%20it%20is%20based.%20Also%2C%20list%20the%20nature","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":21.539,"w":54.637999999999955,"clr":-1,"A":"left","R":[{"T":"List%20the%20provision(s)%20of%20the%20limitation%20on%20benefits%20article%20(if%20any)%20in%20the%20treaty%20that%20the%20taxpayer%20relies%20on%20to%20prevent%20application","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.955,"y":14.089,"w":56.50899999999992,"clr":-1,"A":"left","R":[{"T":"%20If%20the%20taxpayer%20is%20a%20dual-resident%20taxpayer%20and%20a%20long-term%20resident%2C%20by%20electing%20to%20be%20treated%20as%20a%20resident%20of%20a%20foreign%20country","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.95,"y":14.714,"w":59.195999999999955,"clr":-1,"A":"left","R":[{"T":"for%20purposes%20of%20claiming%20benefits%20under%20an%20applicable%20income%20tax%20treaty%2C%20the%20taxpayer%20will%20be%20deemed%20to%20have%20expatriated%20pursuant%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"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.415,"y":2.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8833","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.3200000000000003,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.875,"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.313,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":30.616,"y":2.163,"w":18.360000000000003,"clr":-1,"A":"left","R":[{"T":"Treaty-Based%20Return%20Position%20Disclosure%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":35.26,"y":3.1,"w":14.200000000000001,"clr":-1,"A":"left","R":[{"T":"Under%20Section%206114%20or%207701(b)","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.423,"y":3.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.454,"y":3.607,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.339,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.371,"y":4.242,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208833%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.192,"y":4.242,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8833","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.967,"y":4.242,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":3.097,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1354","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.035,"w":56.73399999999996,"clr":-1,"A":"left","R":[{"T":"Attach%20a%20separate%20Form%208833%20for%20each%20treaty-based%20return%20position%20taken.%20Failure%20to%20disclose%20a%20treaty-based%20return%20position%20may","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.931,"y":5.71,"w":39.232999999999976,"clr":-1,"A":"left","R":[{"T":"result%20in%20a%20penalty%20of%20%241%2C000%20(%2410%2C000%20in%20the%20case%20of%20a%20C%20corporation)%20(see%20section%206712).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.563,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.413,"y":6.5,"w":15.814,"clr":-1,"A":"left","R":[{"T":"U.S.%20taxpayer%20identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.213,"y":6.5,"w":21.756000000000004,"clr":-1,"A":"left","R":[{"T":"Reference%20ID%20number%2C%20if%20any%20(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.9079999999999995,"w":14.465000000000005,"clr":-1,"A":"left","R":[{"T":"Address%20in%20country%20of%20residence%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.413,"y":7.91,"w":13.077,"clr":-1,"A":"left","R":[{"T":"Address%20in%20the%20United%20States%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.089,"w":25.168999999999993,"clr":-1,"A":"left","R":[{"T":"Check%20one%20or%20both%20of%20the%20following%20boxes%20as%20applicable%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.757,"w":38.85899999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20taxpayer%20is%20disclosing%20a%20treaty-based%20return%20position%20as%20required%20by%20section%206114%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.813,"y":11.757,"w":18.662,"clr":-1,"A":"left","R":[{"T":".............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.847,"y":11.663,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":12.539,"w":46.93299999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20taxpayer%20is%20a%20dual-resident%20taxpayer%20and%20is%20disclosing%20a%20treaty-based%20return%20position%20as%20required%20by%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.484,"y":13.237,"w":15.579000000000006,"clr":-1,"A":"left","R":[{"T":"Regulations%20section%20301.7701(b)-7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":13.237,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"..............................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.847,"y":13.144,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":14.089,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.944,"y":15.338999999999999,"w":25.320999999999998,"clr":-1,"A":"left","R":[{"T":"section%20877A.%20For%20more%20information%2C%20see%20the%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.944,"y":16.339,"w":43.09699999999999,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20if%20the%20taxpayer%20is%20a%20U.S.%20citizen%20or%20resident%20or%20is%20incorporated%20in%20the%20United%20States%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.006,"y":16.339,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.686,"y":16.245,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":17.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":19.095000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20specific%20treaty%20position%20relied%20on%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":17.808,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.777,"w":6.723000000000001,"clr":-1,"A":"left","R":[{"T":"Treaty%20country%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":18.589,"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.589,"w":4.109999999999999,"clr":-1,"A":"left","R":[{"T":"Article(s)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":19.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.289,"w":25.058000000000007,"clr":-1,"A":"left","R":[{"T":"List%20the%20Internal%20Revenue%20Code%20provision(s)%20overruled%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":19.977,"w":19.931000000000008,"clr":-1,"A":"left","R":[{"T":"modified%20by%20the%20treaty-based%20return%20position%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.413,"y":17.002,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.937,"y":17.002,"w":26.523999999999997,"clr":-1,"A":"left","R":[{"T":"Name%2C%20identifying%20number%20(if%20available%20to%20the%20taxpayer)%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.963,"y":17.689,"w":26.061,"clr":-1,"A":"left","R":[{"T":"address%20in%20the%20United%20States%20of%20the%20payor%20of%20the%20income%20(if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.955,"y":18.376,"w":27.096000000000004,"clr":-1,"A":"left","R":[{"T":"fixed%20or%20determinable%20annual%20or%20periodical).%20See%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.549,"y":21.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":22.237,"w":6.130000000000001,"clr":-1,"A":"left","R":[{"T":"of%20that%20article%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.37,"y":22.144,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.058,"w":48.28199999999997,"clr":-1,"A":"left","R":[{"T":"Is%20the%20taxpayer%20disclosing%20a%20treaty-based%20return%20position%20for%20which%20reporting%20is%20specifically%20required%20pursuant%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.667,"w":17.024000000000004,"clr":-1,"A":"left","R":[{"T":"to%20Regulations%20section%20301.6114-1(b)%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":23.667,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.088,"y":23.839,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":96.275,"y":23.839,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.589,"w":43.044000000000004,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20specific%20subsection(s)%20of%20Regulations%20section%20301.6114-1(b)%20requiring%20reporting","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.126,"y":24.589,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.682,"y":24.495,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.339,"w":21.487,"clr":-1,"A":"left","R":[{"T":"Also%20include%20the%20information%20requested%20in%20line%206.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":26.789,"w":55.89999999999995,"clr":-1,"A":"left","R":[{"T":"and%20amount%20(or%20a%20reasonable%20estimate)%20of%20gross%20receipts%2C%20each%20separate%20gross%20payment%2C%20each%20separate%20gross%20income%20item%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":27.477,"w":28.503999999999998,"clr":-1,"A":"left","R":[{"T":"other%20item%20(as%20applicable)%20for%20which%20the%20treaty%20benefit%20is%20claimed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":46.357,"w":28.036,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.079,"y":46.375,"w":7.596,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2014895L%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.793,"y":46.321,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.27,"y":46.321,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8833%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.57,"y":46.321,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":0.09399999999999997,"y":48.565,"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":"DESC","EN":0},"TI":6025,"AM":1024,"x":62.087,"y":3.886,"w":21.011,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6026,"AM":1024,"x":6.09,"y":7.438,"w":45.467,"h":0.833,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO","EN":0},"TI":6027,"AM":1024,"x":52.167,"y":7.375,"w":18.967,"h":0.875,"TU":"U.S. taxpayer identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REFIDNO","EN":0},"TI":6028,"AM":0,"x":72.352,"y":7.375,"w":26.648,"h":0.875,"TU":"Reference ID number, if any (see instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RESADD1","EN":0},"TI":6029,"AM":0,"x":6.113,"y":8.762,"w":45.413,"h":0.833,"TU":"Street Address in country of residence"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RESADD2","EN":0},"TI":6030,"AM":0,"x":6.172,"y":9.654,"w":22.204,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RESST","EN":0},"TI":6031,"AM":0,"x":28.63,"y":9.669,"w":8.279,"h":0.833,"TU":"STATE"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RESPOST","EN":0},"TI":6032,"AM":0,"x":37.242,"y":9.654,"w":14.343,"h":0.833,"TU":"POST CODE"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RESADD3","EN":0},"TI":6033,"AM":0,"x":6.2,"y":10.42,"w":44.184,"h":0.833,"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":"USADD1","EN":0},"TI":6034,"AM":0,"x":52.236,"y":8.79,"w":45.413,"h":0.833,"TU":"Street address in the United States"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"USADD2","EN":0},"TI":6035,"AM":0,"x":52.31,"y":9.634,"w":45.413,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"USCITY","EN":0},"TI":6036,"AM":0,"x":52.46,"y":10.443,"w":24.915,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"USST","EN":0},"TI":6037,"AM":0,"x":77.848,"y":10.416,"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":"USZIP","EN":0},"TI":6038,"AM":0,"x":83.568,"y":10.424,"w":14.343,"h":0.833,"TU":"ZIP CODE"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COUNTRY","EN":0},"TI":6042,"AM":0,"x":22.275,"y":18,"w":29.7,"h":0.833,"TU":"Line 1a. Treaty Country"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ARTICLE","EN":0},"TI":6043,"AM":0,"x":22.467,"y":18.703,"w":29.7,"h":0.833,"TU":"Line 1b. Article(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OVERRULE","EN":0},"TI":6044,"AM":0,"x":6.188,"y":21,"w":45.788,"h":0.833,"TU":"Line 2. List the Internal Revenue Code provision(s) overruled or modified by the treaty-based return position."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYORNAM","EN":0},"TI":6045,"AM":0,"x":52.782,"y":19.217,"w":26.247,"h":0.833,"TU":"Line 3. NAME"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PAYORSSN","EN":0},"TI":6046,"AM":0,"x":79.267,"y":19.236,"w":19.126,"h":0.833,"TU":"Line 3. SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYORADD","EN":0},"TI":6047,"AM":0,"x":52.889,"y":20.081,"w":45.413,"h":0.833,"TU":"Line 3. ADDRESS"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYORCIT","EN":0},"TI":6048,"AM":0,"x":52.834,"y":20.956,"w":25.096,"h":0.833,"TU":"Line 3. CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYORST","EN":0},"TI":6049,"AM":0,"x":78.172,"y":20.89,"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":"PAYORZIP","EN":0},"TI":6050,"AM":0,"x":84.092,"y":20.932,"w":14.343,"h":0.833,"TU":"Line 3. ZIP CODE"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LIMITS","EN":0},"TI":6051,"AM":0,"x":22.275,"y":22.5,"w":76.725,"h":0.833,"TU":"Line 4. List the provision(s) of the limitation on benefits article (if any) in the treaty that the taxpayer relies on to prevent application of that article."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REGULATE","EN":0},"TI":6054,"AM":0,"x":87.862,"y":24.75,"w":11.138,"h":0.833,"TU":"Line 5. If “Yes,” enter the specific subsection(s) of Regulations section 301.6114-1(b) requiring reporting. Also include the information requested in line 6. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_1_","EN":0},"TI":6055,"AM":0,"x":11.137,"y":28.5,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_2_","EN":0},"TI":6056,"AM":0,"x":11.137,"y":29.25,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_3_","EN":0},"TI":6057,"AM":0,"x":11.137,"y":30,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_4_","EN":0},"TI":6058,"AM":0,"x":11.137,"y":30.75,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_5_","EN":0},"TI":6059,"AM":0,"x":11.137,"y":31.5,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_6_","EN":0},"TI":6060,"AM":0,"x":11.137,"y":32.25,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_7_","EN":0},"TI":6061,"AM":0,"x":11.137,"y":33,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_8_","EN":0},"TI":6062,"AM":0,"x":11.137,"y":33.75,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_9_","EN":0},"TI":6063,"AM":0,"x":11.137,"y":34.5,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_10_","EN":0},"TI":6064,"AM":0,"x":11.137,"y":35.25,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_11_","EN":0},"TI":6065,"AM":0,"x":11.137,"y":36,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_12_","EN":0},"TI":6066,"AM":0,"x":11.137,"y":36.75,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_13_","EN":0},"TI":6067,"AM":0,"x":11.137,"y":37.5,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_14_","EN":0},"TI":6068,"AM":0,"x":11.137,"y":38.25,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_15_","EN":0},"TI":6069,"AM":0,"x":11.137,"y":39,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_16_","EN":0},"TI":6070,"AM":0,"x":11.137,"y":39.75,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_17_","EN":0},"TI":6071,"AM":0,"x":11.137,"y":40.5,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_18_","EN":0},"TI":6072,"AM":0,"x":11.137,"y":41.25,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_19_","EN":0},"TI":6073,"AM":0,"x":11.137,"y":42,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_20_","EN":0},"TI":6074,"AM":0,"x":11.137,"y":42.75,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_21_","EN":0},"TI":6075,"AM":0,"x":11.137,"y":43.5,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_22_","EN":0},"TI":6076,"AM":0,"x":11.137,"y":44.25,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_23_","EN":0},"TI":6077,"AM":0,"x":11.137,"y":45,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A761_EXPLAIN_24_","EN":0},"TI":6078,"AM":0,"x":11.137,"y":45.75,"w":87.862,"h":0.833,"TU":"Line 6. Explain the treaty based return position taken. Include a brief summary of the facts on which it is based. Also, list the nature and amount (or a reasonable estimate) of gross receipts, each separate gross payment, each separate gross income item, or other item (as applicable) for which the treaty benefit is claimed."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TBPOS","EN":0},"TI":6039,"AM":0,"x":96.869,"y":12,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DUALRES","EN":0},"TI":6040,"AM":0,"x":96.869,"y":13.5,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"USRES","EN":0},"TI":6041,"AM":0,"x":96.869,"y":16.5,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE5YES","EN":0},"TI":6052,"AM":0,"x":88.206,"y":24.003,"w":1.909,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE5NO","EN":0},"TI":6053,"AM":0,"x":94.41,"y":23.943,"w":1.399,"h":0.833,"checked":false}],"id":{"Id":"LINE5BRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8834.content.txt b/test/data/fd/form/F8834.content.txt new file mode 100755 index 00000000..9706de9f --- /dev/null +++ b/test/data/fd/form/F8834.content.txt @@ -0,0 +1,88 @@ +Form +8834 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Qualified Electric Vehicle Credit +a + +Attach to your tax return. + +a + +Information about Form 8834 and its instructions is at +www.irs.gov/form8834 +. +OMB No. 1545-1374 +Attachment +Sequence No. +111 +Name(s) shown on return +Identifying number +Caution. +This form only applies to qualified electric vehicle passive activity credits from prior years (allowed on Form 8582-CR or Form + 8810 +for the current year). +1 +Qualified electric vehicle passive activity credits allowed for your current tax year (see instructions) +1 +2 +Regular tax before credits: +• Individuals. Enter the amount from Form 1040, line 44, or Form 1040NR, line 42. +• Corporations. Enter the amount from Form 1120, Schedule J, line 2; or the +applicable line of your return. +• Estates and trusts. Enter the sum of the amounts from Form 1041, Schedule G, +lines 1a and 1b, or the amount from the applicable line of your return. +} +.... +2 +3 +Credits that reduce regular tax before the qualified electric vehicle credit: +a +Foreign tax credit +.................. +3a +b +Certain allowable credits (see instructions) +.......... +3b +c +Add lines 3a and 3b +.......................... +3c +4 +Net regular tax. Subtract line 3c from line 2. If zero or less, enter -0- here and on line 7 +.... +4 +5 +Tentative minimum tax: +• Individuals. Enter the amount from Form 6251, line 33. +• Corporations. Enter the amount from Form 4626, line 12. +• Estates and trusts. Enter the amount from Schedule I (Form 1041), line 54. +} +...... +5 +6 +Subtract line 5 from line 4. If zero or less, enter -0- here and on line 7 +.......... +6 +7 + +Qualified electric vehicle credit. +Enter the +smaller +of line 1 or line 6. Report this amount on Form +1040, line 53; Form 1040NR, line 50; Form 1120, Schedule J, line 5b; or the appropriate line of +your return. + +If line 6 is smaller than line 1, see instructions +............ + +a +7 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 14953G +Form +8834 + (Rev. 12-2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8834.fields.json b/test/data/fd/form/F8834.fields.json new file mode 100755 index 00000000..ab82ac86 --- /dev/null +++ b/test/data/fd/form/F8834.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15B","type":"number","calc":true,"value":""},{"id":"L15A","type":"number","calc":true,"value":""},{"id":"L15K","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8834.json b/test/data/fd/form/F8834.json new file mode 100755 index 00000000..e03ea200 --- /dev/null +++ b/test/data/fd/form/F8834.json @@ -0,0 +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.26,"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.752,"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":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.4,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.112,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.25,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.112,"y":13.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.25,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.837,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.55,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.687,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.837,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.55,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.687,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.4,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.4,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.112,"y":18.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.25,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.4,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.112,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.25,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.4,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.112,"y":23.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.25,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.112,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.25,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.4,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":28.501,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":28.501,"w":1.5,"l":40.923},{"oc":"#221f1f","x":82.872,"y":28.501,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"oc":"#221f1f","x":21.015,"y":3.547,"w":1.5,"l":0.65},{"oc":"#221f1f","x":21.04,"y":4.148,"w":1.5,"l":1.144},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":1.532},{"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.531},{"oc":"#221f1f","x":84.155,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.443,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.293,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.293,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.155,"y":9.736,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.443,"y":9.736,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.293,"y":9.736,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.293,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.88,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.593,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.73,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.593,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.88,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.73,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.155,"y":13.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.443,"y":13.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.443,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.293,"y":13.485,"w":0.75,"l":4.531},{"oc":"#221f1f","x":84.155,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.293,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.155,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.443,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.293,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.293,"y":19.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.155,"y":20.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":80.443,"y":20.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.293,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.293,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.155,"y":23.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.443,"y":23.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.293,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.293,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.155,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.443,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.443,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.293,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.155,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.293,"y":27.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":80.443,"y":13.501,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":80.443,"y":25.501,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8834","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.915,"y":3.25,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.885,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.323,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":35.214,"y":2.664,"w":14.239999999999998,"clr":-1,"A":"left","R":[{"T":"Qualified%20Electric%20Vehicle%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.473,"y":3.4640000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.791,"y":3.558,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.39,"y":4.085,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.707,"y":4.179,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208834%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.146,"y":4.179,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8834","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.921,"y":4.179,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.349,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1374","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.814,"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.26,"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.26,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"111","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.927,"y":4.938,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.665,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":12.226,"y":6.665,"w":55.782999999999966,"clr":-1,"A":"left","R":[{"T":"This%20form%20only%20applies%20to%20qualified%20electric%20vehicle%20passive%20activity%20credits%20from%20prior%20years%20(allowed%20on%20Form%208582-CR%20or%20Form","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":94.201,"y":6.665,"w":2.7800000000000002,"clr":-1,"A":"left","R":[{"T":"%208810%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.34,"w":9.056000000000001,"clr":-1,"A":"left","R":[{"T":"for%20the%20current%20year).","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":7.557,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":8.84,"w":44.092999999999975,"clr":-1,"A":"left","R":[{"T":"Qualified%20electric%20vehicle%20passive%20activity%20credits%20allowed%20for%20your%20current%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.619,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.557,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":10.34,"w":11.833000000000004,"clr":-1,"A":"left","R":[{"T":"Regular%20tax%20before%20credits%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":11.09,"w":36.477000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Enter%20the%20amount%20from%20Form%201040%2C%20line%2044%2C%20or%20Form%201040NR%2C%20line%2042.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":11.79,"w":33.937,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Corporations.%20Enter%20the%20amount%20from%20Form%201120%2C%20Schedule%20J%2C%20line%202%3B%20or%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.617,"y":12.478,"w":12.983000000000002,"clr":-1,"A":"left","R":[{"T":"applicable%20line%20of%20your%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":13.29,"w":36.421,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Estates%20and%20trusts.%20Enter%20the%20sum%20of%20the%20amounts%20from%20Form%201041%2C%20Schedule%20G%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.61,"y":13.977,"w":30.898,"clr":-1,"A":"left","R":[{"T":"lines%201a%20and%201b%2C%20or%20the%20amount%20from%20the%20applicable%20line%20of%20your%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.299,"y":13.338,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,27.5,0,0]}]},{"oc":"#221f1f","x":71.94,"y":12.496,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.619,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.557,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":15.59,"w":32.501999999999995,"clr":-1,"A":"left","R":[{"T":"Credits%20that%20reduce%20regular%20tax%20before%20the%20qualified%20electric%20vehicle%20credit%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.418,"y":16.34,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":16.34,"w":8.111,"clr":-1,"A":"left","R":[{"T":"Foreign%20tax%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":16.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.612,"y":16.34,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"3a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.418,"y":17.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":17.09,"w":19.12900000000001,"clr":-1,"A":"left","R":[{"T":"Certain%20allowable%20credits%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.002,"y":17.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.584,"y":17.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"3b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.418,"y":17.84,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":17.84,"w":9.189000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%203a%20and%203b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":17.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.175,"y":17.84,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"3c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.557,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":19.34,"w":38.949999999999974,"clr":-1,"A":"left","R":[{"T":"Net%20regular%20tax.%20Subtract%20line%203c%20from%20line%202.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20line%207%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":19.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.619,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.557,"y":20.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":20.84,"w":10.412000000000003,"clr":-1,"A":"left","R":[{"T":"Tentative%20minimum%20tax%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":21.59,"w":25.01000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Enter%20the%20amount%20from%20Form%206251%2C%20line%2033.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":22.34,"w":26.08300000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Corporations.%20Enter%20the%20amount%20from%20Form%204626%2C%20line%2012.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":23.09,"w":33.845,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Estates%20and%20trusts.%20Enter%20the%20amount%20from%20Schedule%20I%20(Form%201041)%2C%20line%2054.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.105,"y":22.84,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,26,0,0]}]},{"oc":"#221f1f","x":67.815,"y":22.153,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.619,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.557,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":24.59,"w":30.709,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":24.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.619,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.557,"y":26.103,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":26.103,"w":15.289000000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20electric%20vehicle%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.586,"y":26.103,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.284,"y":26.103,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.133,"y":26.103,"w":20.784000000000006,"clr":-1,"A":"left","R":[{"T":"of%20line%201%20or%20line%206.%20Report%20this%20amount%20on%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":26.79,"w":42.27499999999999,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2053%3B%20Form%201040NR%2C%20line%2050%3B%20Form%201120%2C%20Schedule%20J%2C%20line%205b%3B%20or%20the%20appropriate%20line%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.903,"y":27.488,"w":5.427000000000001,"clr":-1,"A":"left","R":[{"T":"your%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.728,"y":27.488,"w":20.44900000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%206%20is%20smaller%20than%20line%201%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.388,"y":27.488,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.529,"y":27.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.619,"y":27.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":28.358,"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":57.722,"y":28.376,"w":7.521000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2014953G","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":28.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":28.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8834","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":28.322,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2013)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6079,"AM":1024,"x":6.457,"y":5.895,"w":67.675,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6080,"AM":1024,"x":75.939,"y":5.922,"w":22.991,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":6081,"AM":0,"x":84.464,"y":8.684,"w":10.787,"h":1.047,"TU":"Line 1. Qualified electric vehicle passive activity credits allowed for your current tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":6082,"AM":1024,"x":84.753,"y":12.2,"w":10.663,"h":1.224},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":6083,"AM":1024,"x":66.067,"y":16.447,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":6084,"AM":1024,"x":66.047,"y":17.227,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15K","EN":0},"TI":6085,"AM":1024,"x":84.576,"y":17.499,"w":10.663,"h":1.206},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":6086,"AM":1024,"x":84.377,"y":19.121,"w":10.746,"h":1.069},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":6087,"AM":1024,"x":84.575,"y":22.121,"w":10.663,"h":1.121},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":6088,"AM":1024,"x":84.383,"y":24.316,"w":10.663,"h":1.186},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":6089,"AM":1024,"x":84.284,"y":27.438,"w":10.663,"h":1.023}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8839.content.txt b/test/data/fd/form/F8839.content.txt new file mode 100755 index 00000000..7353df06 --- /dev/null +++ b/test/data/fd/form/F8839.content.txt @@ -0,0 +1,290 @@ +Form +8839 +Department of the Treasury +Internal Revenue Service (99) +Qualified Adoption Expenses +a + Attach to Form 1040 or 1040NR. +a +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +38 +Name(s) shown on return +Your social security number +Part I +Information About Your Eligible Child or Children- + +details, including what to do if you need more space. +1 +(a) +Child’s name +(b) +Child’s year +of birth +Check if child was— +(c) +born +before + +1996 +and + +disabled +(d) +a child +with special +needs +(e) +a +foreign +child +(f) +Child’s +identifying number +(g) +Check if +adoption +became final in +2013 or earlier + +First +Last + +Child +1 +Child +2 +Child +3 +Caution. + +Part II +Adoption Credit +Child 1 + +Child 2 + +Child 3 + +2 + +Maximum adoption credit per +2 +3 + +Did you file Form 8839 for a +prior year for the same child? +No. +Enter -0-. +Yes. +See instructions for +the amount to enter. +} +3 +4 +Subtract line 3 from line 2 . +4 +5 + +Qualified adoption expenses +(see instructions) +.... +Caution. +Your qualified +adoption expenses may not be +equal to the adoption expenses +you paid in 2013. +5 +6 +Enter the +smaller +of line 4 or line 5 +6 +7 +Enter modified adjusted gross income (see instructions) +...... +7 +8 +Is line 7 more than $194,580? +No. +Skip lines 8 and 9, and enter -0- on line 10. +Yes. +Subtract $194,580 from line 7 +........... +8 +9 + +Divide line 8 by $40,000. Enter the result as a decimal (rounded to at least three places). +Do not enter more than 1.000 +...................... +9 +× +. + +10 + +Multiply each amount on line 6 +by line 9 +....... +10 +11 +Subtract line 10 from line 6 . +11 +12 +Add the amounts on line 11 + +....................... +12 +13 +Credit carryforward, if any, from 2012. See the 2012 to 2013 Credit Carryforward Worksheet in +the instructions + +........................... +13 +14 +Add lines 12 and 13 + +......................... +14 +15 +Enter the amount from line 5 of the Credit Limit Worksheet in the instructions +...... +15 +16 Adoption Credit. +Enter the smaller of line 14 or line 15 here and on Form 1040, line 53, or Form +"8839" +is smaller than line 14, you may have a credit carryforward (see instructions) + +....... +16 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 22843L +Form +8839 + (2013) +You must complete this part. See instructions for + For information about Form 8839 and its separate instructions, see www.irs.gov/form8839 +If the child was a foreign child, see Special rules in the instructions for line 1, column (e) beforeyou complete Part II or +Part III. If you received employer-provided adoption benefits, complete Part III on the back next. +child $12,970 + in the space next to box c.. If line 15 +1040NR, line 50. Check box c. on that line and enter +----------------Page (0) Break---------------- +Form 8839 (2013) +Page +2 +Part III +Employer-Provided Adoption Benefits + +Child 1 + +Child 2 + +Child 3 + +17 +Maximum exclusion per child +17 +18 +Did you receive employer- +provided adoption benefits for a +prior year for the same child? +No. +Enter -0-. +Yes. +See instructions for +the amount to enter. +} +18 +19 +Subtract line 18 from line 17 +19 +20 +Employer-provided adoption +benefits you received in 2013. +This amount should be shown +in box 12 of your 2013 Form(s) +W-2 with code +T +.... +20 +21 +Add the amounts on line 20 +....................... +21 + +22 +Enter the +smaller +of line 19 or +line 20. But if the child was a +child with special needs and the +adoption became final in 2013, +enter the amount from line 19 +22 +23 +Enter modified adjusted gross income (from +the worksheet in the instructions) +.... +23 +24 +Is line 23 more than $194,580? +No. +Skip lines 24 and 25, and enter -0- +on line 26. +Yes. +24 +25 + +Divide line 24 by $40,000. Enter the result as a decimal (rounded to +at least three places). Do not enter more than 1.000 +..... +25 +× +. + +26 +Multiply each amount on line 22 +by line 25 +....... +26 +27 Excluded benefits. +Subtract +line 26 from line 22 +.... +27 +28 +Add the amounts on line 27 +....................... +28 +29 Taxable benefits. +Is line 28 more than line 21? +No. +Subtract line 28 from line 21. Also, include this amount, if more than zero, on +line 7 of Form 1040 or line 8 of Form 1040NR. On the dotted line next to line +7 of Form 1040 or line 8 of Form 1040NR, enter “AB.” +Yes. +Subtract line 21 from line 28. Enter the result as a negative number. Reduce +the total you would enter on line 7 of Form 1040 or line 8 of Form 1040NR by +the amount on Form 8839, line 29. Enter the result on line 7 of Form 1040 or +line 8 of Form 1040NR. Enter “SNE” on the dotted line next to the entry line. +} +.. +29 +TIP +You may be able to claim the adoption credit in Part II on the front of this form if any of the following apply. +• You paid adoption expenses in 2012, those expenses were not fully reimbursed by your employer or otherwise, and +the adoption was not final by the end of 2012. +• The total adoption expenses you paid in 2013 were not fully reimbursed by your employer or otherwise, and the +adoption became final in 2013 or earlier. +• You adopted a child with special needs and the adoption became final in 2013. +Form +8839 +(2013) +$12,970 +Subtract $194,580 from line 23 +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8839.fields.json b/test/data/fd/form/F8839.fields.json new file mode 100755 index 00000000..d0859ecf --- /dev/null +++ b/test/data/fd/form/F8839.fields.json @@ -0,0 +1 @@ +[{"id":"CDISABL1","type":"box","calc":false,"value":""},{"id":"CSPECL1","type":"box","calc":false,"value":""},{"id":"CFOREGN1","type":"box","calc":false,"value":""},{"id":"CFINAL1","type":"box","calc":false,"value":""},{"id":"CDISABL2","type":"box","calc":false,"value":""},{"id":"CSPECL2","type":"box","calc":false,"value":""},{"id":"CFOREGN2","type":"box","calc":false,"value":""},{"id":"CFINAL2","type":"box","calc":false,"value":""},{"id":"CDISABL3","type":"box","calc":false,"value":""},{"id":"CSPECL3","type":"box","calc":false,"value":""},{"id":"CFOREGN3","type":"box","calc":false,"value":""},{"id":"CFINAL3","type":"box","calc":false,"value":""},{"id":"LINE3RB","type":"radio","calc":false,"value":"L3N"},{"id":"LINE3RB","type":"radio","calc":false,"value":"L3Y"},{"id":"A666RB","type":"radio","calc":false,"value":"L9N"},{"id":"A666RB","type":"radio","calc":false,"value":"L9Y"},{"id":"COPY","type":"alpha","calc":false,"value":""},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"CFN1","type":"alpha","calc":false,"value":""},{"id":"CLN1","type":"alpha","calc":false,"value":""},{"id":"CBIRTH1","type":"date","calc":false,"value":""},{"id":"CSSN1","type":"ssn","calc":false,"value":""},{"id":"CFN2","type":"alpha","calc":false,"value":""},{"id":"CLN2","type":"alpha","calc":false,"value":""},{"id":"CBIRTH2","type":"date","calc":false,"value":""},{"id":"CSSN2","type":"ssn","calc":false,"value":""},{"id":"CFN3","type":"alpha","calc":false,"value":""},{"id":"CLN3","type":"alpha","calc":false,"value":""},{"id":"CBIRTH3","type":"date","calc":false,"value":""},{"id":"CSSN3","type":"ssn","calc":false,"value":""},{"id":"L2C1","type":"alpha","calc":false,"value":""},{"id":"L2C2","type":"alpha","calc":false,"value":""},{"id":"L2C3","type":"alpha","calc":false,"value":""},{"id":"L3C1","type":"number","calc":false,"value":""},{"id":"L3C2","type":"number","calc":false,"value":""},{"id":"L3C3","type":"number","calc":false,"value":""},{"id":"L4C1","type":"number","calc":true,"value":""},{"id":"L4C2","type":"number","calc":true,"value":""},{"id":"L4C3","type":"number","calc":true,"value":""},{"id":"L5C1","type":"number","calc":false,"value":""},{"id":"L5C2","type":"number","calc":false,"value":""},{"id":"L5C3","type":"number","calc":false,"value":""},{"id":"L6C1","type":"number","calc":true,"value":""},{"id":"L6C2","type":"number","calc":true,"value":""},{"id":"L6C3","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"percent","calc":true,"value":""},{"id":"L11C1","type":"number","calc":true,"value":""},{"id":"L11C2","type":"number","calc":true,"value":""},{"id":"L11C3","type":"number","calc":true,"value":""},{"id":"L12C1","type":"number","calc":true,"value":""},{"id":"L12C2","type":"number","calc":true,"value":""},{"id":"L12C3","type":"number","calc":true,"value":""},{"id":"L12SUM","type":"number","calc":true,"value":""},{"id":"CCFWD","type":"number","calc":false,"value":""},{"id":"L14SUM","type":"number","calc":true,"value":""},{"id":"L15AMT","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L16BXRB","type":"radio","calc":false,"value":"L16N"},{"id":"L16BXRB","type":"radio","calc":false,"value":"L16Y"},{"id":"LINE23RB","type":"radio","calc":false,"value":"AJ4"},{"id":"LINE23RB","type":"radio","calc":false,"value":"AJ5"},{"id":"LINE31RB","type":"radio","calc":true,"value":"L31NBOX"},{"id":"LINE31RB","type":"radio","calc":true,"value":"L31YBOX"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L15C1","type":"number","calc":false,"value":""},{"id":"L15C2","type":"number","calc":false,"value":""},{"id":"L15C3","type":"number","calc":false,"value":""},{"id":"L16C1","type":"number","calc":false,"value":""},{"id":"L16C2","type":"number","calc":false,"value":""},{"id":"L16C3","type":"number","calc":false,"value":""},{"id":"L17C1","type":"number","calc":true,"value":""},{"id":"L17C2","type":"number","calc":true,"value":""},{"id":"L17C3","type":"number","calc":true,"value":""},{"id":"L18C1","type":"number","calc":false,"value":""},{"id":"L18C2","type":"number","calc":false,"value":""},{"id":"L18C3","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20C1","type":"number","calc":false,"value":""},{"id":"L20C2","type":"number","calc":false,"value":""},{"id":"L20C3","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"mask","calc":true,"value":""},{"id":"L25C1","type":"number","calc":true,"value":""},{"id":"L25C2","type":"number","calc":true,"value":""},{"id":"L25C3","type":"number","calc":true,"value":""},{"id":"L26C1","type":"number","calc":true,"value":""},{"id":"L26C2","type":"number","calc":true,"value":""},{"id":"L26C3","type":"number","calc":true,"value":""},{"id":"L23TOT","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8839.json b/test/data/fd/form/F8839.json new file mode 100755 index 00000000..6e33a362 --- /dev/null +++ b/test/data/fd/form/F8839.json @@ -0,0 +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":63.242},{"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":1.125,"l":70.624},{"oc":"#221f1f","x":76.684,"y":7.501,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":9.001,"w":0.75,"l":29.786},{"oc":"#221f1f","x":39.559,"y":9.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":39.559,"y":12.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":48.222,"y":9.001,"w":0.75,"l":22.361},{"oc":"#221f1f","x":48.222,"y":9.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":48.222,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":55.647,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":63.072,"y":12.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":70.497,"y":9.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":70.497,"y":12.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":90.297,"y":9.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":90.297,"y":12.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":9.859,"y":12.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.472,"y":12.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":9.859,"y":13.501,"w":1.125,"l":13.698},{"oc":"#221f1f","x":23.472,"y":13.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":39.559,"y":13.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":48.222,"y":13.501,"w":1.125,"l":7.511},{"oc":"#221f1f","x":50.657,"y":13.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":50.657,"y":12.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":55.647,"y":13.501,"w":1.125,"l":7.511},{"oc":"#221f1f","x":58.082,"y":13.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":58.082,"y":12.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":63.072,"y":13.501,"w":1.125,"l":7.511},{"oc":"#221f1f","x":65.507,"y":13.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":65.507,"y":12.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":70.497,"y":13.501,"w":1.125,"l":19.886},{"oc":"#221f1f","x":90.297,"y":13.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":93.97,"y":13.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":93.97,"y":12.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":6.147,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":9.859,"y":15.001,"w":1.125,"l":13.698},{"oc":"#221f1f","x":23.472,"y":15.001,"w":1.125,"l":16.173},{"oc":"#221f1f","x":39.559,"y":15.001,"w":1.125,"l":8.748},{"oc":"#221f1f","x":48.222,"y":15.001,"w":1.125,"l":7.511},{"oc":"#221f1f","x":50.657,"y":14.626,"w":0.75,"l":2.063},{"oc":"#221f1f","x":50.657,"y":13.876,"w":0.75,"l":2.063},{"oc":"#221f1f","x":55.647,"y":15.001,"w":1.125,"l":7.511},{"oc":"#221f1f","x":58.082,"y":14.626,"w":0.75,"l":2.063},{"oc":"#221f1f","x":58.082,"y":13.876,"w":0.75,"l":2.063},{"oc":"#221f1f","x":63.072,"y":15.001,"w":1.125,"l":7.511},{"oc":"#221f1f","x":65.507,"y":14.626,"w":0.75,"l":2.063},{"oc":"#221f1f","x":65.507,"y":13.876,"w":0.75,"l":2.063},{"oc":"#221f1f","x":70.497,"y":15.001,"w":1.125,"l":19.886},{"oc":"#221f1f","x":90.297,"y":15.001,"w":1.125,"l":8.748},{"oc":"#221f1f","x":93.97,"y":14.626,"w":0.75,"l":2.063},{"oc":"#221f1f","x":93.97,"y":13.876,"w":0.75,"l":2.063},{"oc":"#221f1f","x":6.147,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":9.859,"y":16.501,"w":1.125,"l":13.698},{"oc":"#221f1f","x":23.472,"y":16.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":39.559,"y":16.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":48.222,"y":16.501,"w":1.125,"l":7.511},{"oc":"#221f1f","x":50.657,"y":16.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":50.657,"y":15.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":55.647,"y":16.501,"w":1.125,"l":7.511},{"oc":"#221f1f","x":58.082,"y":16.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":58.082,"y":15.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":63.072,"y":16.501,"w":1.125,"l":7.511},{"oc":"#221f1f","x":65.507,"y":16.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":65.507,"y":15.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":70.497,"y":16.501,"w":1.125,"l":19.886},{"oc":"#221f1f","x":90.297,"y":16.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":93.97,"y":16.126,"w":0.75,"l":2.063},{"oc":"#221f1f","x":93.97,"y":15.376,"w":0.75,"l":2.063},{"oc":"#221f1f","x":6.147,"y":18.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":38.322,"y":19.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":51.934,"y":19.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":65.547,"y":19.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":34.609,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":21.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.222,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":51.934,"y":21.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":61.834,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":21.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.447,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":38.322,"y":24.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":48.222,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":51.934,"y":24.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":61.834,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":24.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":34.609,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":25.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.222,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":51.934,"y":25.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":25.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.447,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.222,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":51.934,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":61.834,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.447,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":38.322,"y":30.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":48.222,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":51.934,"y":30.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":61.834,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":30.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":31.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.447,"y":33.751,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":94.009,"y":35.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":34.609,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":38.322,"y":35.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.322,"y":36.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":48.222,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":51.934,"y":35.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":51.934,"y":36.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":61.834,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":35.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":65.547,"y":36.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.447,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":34.609,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":38.322,"y":37.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":48.222,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":51.934,"y":37.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":61.834,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":37.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":35.251,"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":79.159,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":43.501,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":43.501,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.822,"y":43.501,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.797},{"oc":"#221f1f","x":84.152,"y":5.235,"w":1.5,"l":0.797},{"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.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":9.902,"y":8.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":39.602,"y":8.986,"w":0.75,"l":3.031},{"oc":"#221f1f","x":48.265,"y":8.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":9.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":55.69,"y":9.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":9.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":70.54,"y":8.986,"w":0.75,"l":3.031},{"oc":"#221f1f","x":90.34,"y":8.986,"w":0.75,"l":3.031},{"oc":"#221f1f","x":9.902,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":9.902,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":23.515,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.265,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":52.72,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":50.657,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":55.69,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":60.145,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":58.082,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":67.57,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":65.507,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":70.54,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":90.34,"y":11.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":96.032,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":93.97,"y":12.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":9.902,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":23.515,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.265,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":52.72,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":50.657,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":55.69,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":60.145,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":58.082,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":67.57,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":65.507,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":70.54,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":90.34,"y":13.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":96.032,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":93.97,"y":13.876,"w":0.75,"l":0.75},{"oc":"#221f1f","x":9.902,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":23.515,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.265,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":52.72,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":50.657,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":55.69,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":60.145,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":58.082,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.115,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":67.57,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":65.507,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":70.54,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":90.34,"y":14.986,"w":0.75,"l":1.539},{"oc":"#221f1f","x":96.032,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":93.97,"y":15.376,"w":0.75,"l":0.75},{"oc":"#221f1f","x":38.365,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":34.652,"y":19.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":19.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":19.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":19.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":19.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":19.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":19.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":34.652,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":48.265,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":51.977,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":65.59,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":61.877,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":65.59,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":75.49,"y":20.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":38.365,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":34.652,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":34.652,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":34.652,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":48.265,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":51.977,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":65.59,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":61.877,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":65.59,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":75.49,"y":26.986,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":18.736,"w":0.75,"l":15.781},{"oc":"#221f1f","x":79.202,"y":18.736,"w":0.75,"l":15.781},{"oc":"#221f1f","x":61.877,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":31.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":31.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":32.985,"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":34.652,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.265,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":38.365,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":51.977,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.265,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":51.977,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":65.59,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":65.59,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.49,"y":35.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":34.652,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":48.265,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":38.365,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":51.977,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":48.265,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":51.977,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":35.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":2.281},{"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},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":38.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"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":82.915,"y":41.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.202,"y":41.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":42.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.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":18.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":18.751,"w":3.713,"h":15.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":35.251,"w":3.713,"h":2.25,"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.224,"clr":-1,"A":"left","R":[{"T":"8839","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.326,"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.826,"w":13.001000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":36.994,"y":2.289,"w":13.892000000000007,"clr":-1,"A":"left","R":[{"T":"Qualified%20Adoption%20Expenses","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":41.209,"y":4.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.241,"y":4.358,"w":15.393000000000006,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%20or%201040NR.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.037,"y":4.952,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":82.273,"y":5.045,"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-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.393,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":4.345,"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.791,"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.791,"w":1.112,"clr":-1,"A":"left","R":[{"T":"38","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.776,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":5.776,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":7.321999999999999,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.675,"y":7.321999999999999,"w":23.78,"clr":-1,"A":"left","R":[{"T":"Information%20About%20Your%20Eligible%20Child%20or%20Children-","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":13.675,"y":8.072,"w":23.615999999999993,"clr":-1,"A":"left","R":[{"T":"details%2C%20including%20what%20to%20do%20if%20you%20need%20more%20space.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.872,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.801,"y":9.232,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":20.981,"y":9.732,"w":5.854,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.96,"y":9.357,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":40.508,"y":9.857,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20year%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.778,"y":10.357,"w":3.1670000000000003,"clr":-1,"A":"left","R":[{"T":"of%20birth","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.649,"y":8.724,"w":9.148000000000001,"clr":-1,"A":"left","R":[{"T":"Check%20if%20child%20was%E2%80%94","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.026,"y":9.482,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":48.463,"y":9.982,"w":2.334,"clr":-1,"A":"left","R":[{"T":"born%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.271,"y":9.982,"w":3.056,"clr":-1,"A":"left","R":[{"T":"before","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":49.208,"y":10.482,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1996%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":52.218,"y":10.482,"w":1.686,"clr":-1,"A":"left","R":[{"T":"and","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.444,"y":10.982,"w":3.7969999999999997,"clr":-1,"A":"left","R":[{"T":"disabled","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.429,"y":9.482,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":57.381,"y":9.982,"w":3.2230000000000003,"clr":-1,"A":"left","R":[{"T":"a%20child%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.978,"y":10.482,"w":5.833000000000002,"clr":-1,"A":"left","R":[{"T":"with%20special%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.514,"y":10.982,"w":2.723,"clr":-1,"A":"left","R":[{"T":"needs","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.876,"y":9.482,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":66.255,"y":9.982,"w":0.8150000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.717,"y":10.482,"w":3.3700000000000006,"clr":-1,"A":"left","R":[{"T":"foreign%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.296,"y":10.982,"w":2.13,"clr":-1,"A":"left","R":[{"T":"child","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.633,"y":9.357,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":78.329,"y":9.857,"w":3.371,"clr":-1,"A":"left","R":[{"T":"Child%E2%80%99s%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.197,"y":10.357,"w":8.299,"clr":-1,"A":"left","R":[{"T":"identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.697,"y":8.857,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":92.215,"y":9.357,"w":3.945,"clr":-1,"A":"left","R":[{"T":"Check%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.036,"y":9.857,"w":4.241999999999999,"clr":-1,"A":"left","R":[{"T":"adoption%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.354,"y":10.357,"w":7.0390000000000015,"clr":-1,"A":"left","R":[{"T":"became%20final%20in%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.566,"y":10.858,"w":6.686000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20or%20earlier%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.289,"y":10.982,"w":1.944,"clr":-1,"A":"left","R":[{"T":"First","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.161,"y":10.982,"w":1.908,"clr":-1,"A":"left","R":[{"T":"Last","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.315,"y":11.836,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Child%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.461,"y":12.361,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.315,"y":13.336,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Child%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.461,"y":13.861,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.315,"y":14.836,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Child%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":7.461,"y":15.361,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":16.289,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":17.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":17.822,"w":7.555,"clr":-1,"A":"left","R":[{"T":"Adoption%20Credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":42.372,"y":18.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%201","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.985,"y":18.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%202","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":69.598,"y":18.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%203","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":19.403,"w":1.112,"clr":-1,"A":"left","R":[{"T":"2%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.899,"y":19.403,"w":13.486000000000004,"clr":-1,"A":"left","R":[{"T":"Maximum%20adoption%20credit%20per%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.828,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.903,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.899,"y":20.903,"w":12.670000000000005,"clr":-1,"A":"left","R":[{"T":"Did%20you%20file%20Form%208839%20for%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":21.59,"w":13.076000000000004,"clr":-1,"A":"left","R":[{"T":"prior%20year%20for%20the%20same%20child%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":22.34,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.39,"y":22.34,"w":4.242000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20-0-.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":23.153,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.733,"y":23.153,"w":8.945000000000002,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":23.84,"w":9.078000000000001,"clr":-1,"A":"left","R":[{"T":"the%20amount%20to%20enter.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.976999999999997,"y":23.288,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17.4,0,0]}]},{"oc":"#221f1f","x":35.828,"y":23.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":24.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":24.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.828,"y":24.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":25.403,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.403,"w":13.89300000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20adoption%20expenses%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.891,"y":26.09,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":26.09,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.028,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.733,"y":27.028,"w":6.167000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20qualified","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":27.715,"w":14.097000000000003,"clr":-1,"A":"left","R":[{"T":"adoption%20expenses%20may%20not%20be%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.402,"w":14.374000000000002,"clr":-1,"A":"left","R":[{"T":"equal%20to%20the%20adoption%20expenses%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":7.689000000000002,"clr":-1,"A":"left","R":[{"T":"you%20paid%20in%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.828,"y":26.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":29.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":16.411,"y":29.84,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11.37,1,0]}]},{"oc":"#221f1f","x":21.153,"y":29.84,"w":7.353000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%204%20or%20line%205","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":35.828,"y":29.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":30.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.892,"y":30.59,"w":24.80100000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20modified%20adjusted%20gross%20income%20(see%20instructions)","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":49.253,"y":30.59,"w":8.166,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":63.053,"y":30.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.893,"y":31.340000000000003,"w":13.229000000000006,"clr":-1,"A":"left","R":[{"T":"Is%20line%207%20more%20than%20%24194%2C580%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":32.09,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.205,"y":32.09,"w":19.230000000000004,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%208%20and%209%2C%20and%20enter%20-0-%20on%20line%2010.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":32.84,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.892,"y":32.84,"w":13.265,"clr":-1,"A":"left","R":[{"T":"Subtract%20%24194%2C580%20from%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.941,"y":32.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":32.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":33.652,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.652,"w":43.47199999999998,"clr":-1,"A":"left","R":[{"T":"Divide%20line%208%20by%20%2440%2C000.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20three%20places).%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":34.34,"w":13.154000000000003,"clr":-1,"A":"left","R":[{"T":"Do%20not%20enter%20more%20than%201.000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.753,"y":34.34,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":34.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":90.09,"y":34.374,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":93.897,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.153,"w":13.950000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20each%20amount%20on%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":35.84,"w":3.742,"clr":-1,"A":"left","R":[{"T":"by%20line%209","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.318,"y":35.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.398,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":12.022000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20line%206","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":36.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.398,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":12.302000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":37.34,"w":30.658999999999985,"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":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.153,"w":42.115999999999985,"clr":-1,"A":"left","R":[{"T":"Credit%20carryforward%2C%20if%20any%2C%20from%202012.%20See%20the%202012%20to%202013%20Credit%20Carryforward%20Worksheet%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":38.84,"w":6.872000000000001,"clr":-1,"A":"left","R":[{"T":"the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.432,"y":38.84,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2012%20and%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":39.59,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":39.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":34.807,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%205%20of%20the%20Credit%20Limit%20Worksheet%20in%20the%20instructions%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":40.34,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.215,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.215,"w":8.111,"clr":-1,"A":"left","R":[{"T":"Adoption%20Credit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.95,"y":41.215,"w":34.548,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2014%20or%20line%2015%20here%20and%20on%20Form%201040%2C%20line%2053%2C%20or%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.978,"y":41.903,"w":3.1720000000000006,"clr":-1,"A":"left","R":[{"T":"%228839%22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":42.59,"w":33.81899999999999,"clr":-1,"A":"left","R":[{"T":"is%20smaller%20than%20line%2014%2C%20you%20may%20have%20a%20credit%20carryforward%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.688,"y":42.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":43.358,"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.269,"y":43.376,"w":7.3180000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2022843L","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":43.322,"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.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8839","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":43.322,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.259,"y":7.321999999999999,"w":21.787000000000003,"clr":-1,"A":"left","R":[{"T":"You%20must%20complete%20this%20part.%20See%20instructions%20for%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.068,"y":5.045,"w":42.95699999999997,"clr":-1,"A":"left","R":[{"T":"%20For%20information%20about%20Form%208839%20and%20its%20separate%20instructions%2C%20see%20www.irs.gov%2Fform8839","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":12.219,"y":16.289,"w":52.18899999999993,"clr":-1,"A":"left","R":[{"T":"If%20the%20child%20was%20a%20foreign%20child%2C%20see%20Special%20rules%20in%20the%20instructions%20for%20line%201%2C%20column%20(e)%20beforeyou%20complete%20Part%20II%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.947,"y":16.964,"w":42.18799999999997,"clr":-1,"A":"left","R":[{"T":"Part%20III.%20If%20you%20received%20employer-provided%20adoption%20benefits%2C%20complete%20Part%20III%20on%20the%20back%20next.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":20.09,"w":6.022000000000001,"clr":-1,"A":"left","R":[{"T":"child%20%2412%2C970","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.712,"y":41.903,"w":16.745000000000005,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20space%20next%20to%20box%20c..%20If%20line%2015%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":41.903,"w":23.619000000000003,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2050.%20Check%20box%20c.%20on%20that%20line%20and%20enter%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COPY","EN":0},"TI":6090,"AM":0,"x":67.069,"y":4.566,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":6091,"AM":1024,"x":6.188,"y":6.625,"w":69.832,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":6092,"AM":1024,"x":77.174,"y":6.625,"w":21.826,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CFN1","EN":0},"TI":6093,"AM":0,"x":9.9,"y":12.75,"w":13.356,"h":0.833,"TU":"Part 1. Information About Your Eligible Child or Children; You must complete this part. See instructions for details, including what to do if you need more space. Line 1. Child 1. (a) Child's name. First."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLN1","EN":0},"TI":6094,"AM":0,"x":24.025,"y":12.75,"w":15.062,"h":0.833,"TU":"Line 1. Child 1. (a) Child's name. Last."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CBIRTH1","EN":0},"TI":6095,"AM":0,"x":39.792,"y":12.75,"w":8.214,"h":0.833,"TU":"Line 1. Child 1. (b) Child's year of birth.","MV":"yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN1","EN":0},"TI":6099,"AM":0,"x":70.922,"y":12.75,"w":18.967,"h":0.833,"TU":"Line 1(f). Child's identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CFN2","EN":0},"TI":6101,"AM":0,"x":9.9,"y":14.25,"w":13.356,"h":0.833,"TU":"Line 1. Child 2. (a). First."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLN2","EN":0},"TI":6102,"AM":0,"x":24.025,"y":14.25,"w":15.19,"h":0.833,"TU":"Line 1. Child 2. (a). Last."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CBIRTH2","EN":0},"TI":6103,"AM":0,"x":39.856,"y":14.25,"w":8.086,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN2","EN":0},"TI":6107,"AM":0,"x":71.05,"y":14.25,"w":18.838,"h":0.833,"TU":"Line 1(f). Child's identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CFN3","EN":0},"TI":6109,"AM":0,"x":9.9,"y":15.75,"w":13.42,"h":0.833,"TU":"Line 1. Child 3. (a). First."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CLN3","EN":0},"TI":6110,"AM":0,"x":24.089,"y":15.727,"w":15.126,"h":0.833,"TU":"Line 1. Child 3. (a). Last."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CBIRTH3","EN":0},"TI":6111,"AM":0,"x":39.728,"y":15.774,"w":8.278,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN3","EN":0},"TI":6115,"AM":0,"x":71.05,"y":15.75,"w":18.774,"h":0.833,"TU":"Line 1(f). Child's identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2C1","EN":0},"TI":6117,"AM":0,"x":38.362,"y":20.277,"w":9.9,"h":0.833,"TU":"Line 2. Maximum adoption credit per child $12,970."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2C2","EN":0},"TI":6118,"AM":0,"x":51.975,"y":20.25,"w":9.9,"h":0.833,"TU":"Line 2. Maximum adoption credit per child $12,970"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2C3","EN":0},"TI":6119,"AM":0,"x":65.588,"y":20.25,"w":9.9,"h":0.833,"TU":"Line 2. Maximum adoption credit per child $12,970"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3C1","EN":0},"TI":6122,"AM":0,"x":38.312,"y":23.24,"w":9.9,"h":0.833,"TU":"Line 3. If you filed Form 8839 for a prior year for the same child, see instructions for the amount to enter. If no, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3C2","EN":0},"TI":6123,"AM":0,"x":51.947,"y":23.241,"w":9.9,"h":0.833,"TU":"Line 3. If you filed Form 8839 for a prior year for the same child, see instructions for the amount to enter. If no, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3C3","EN":0},"TI":6124,"AM":0,"x":65.53,"y":23.269,"w":9.9,"h":0.833,"TU":"Line 3. If you filed Form 8839 for a prior year for the same child, see instructions for the amount to enter. If no, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C1","EN":0},"TI":6125,"AM":1024,"x":38.402,"y":24.745,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C2","EN":0},"TI":6126,"AM":1024,"x":52.036,"y":24.786,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C3","EN":0},"TI":6127,"AM":1024,"x":65.619,"y":24.752,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5C1","EN":0},"TI":6128,"AM":0,"x":38.413,"y":26.243,"w":9.9,"h":0.833,"TU":"Line 5. Qualified adoption expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5C2","EN":0},"TI":6129,"AM":0,"x":52.047,"y":26.283,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5C3","EN":0},"TI":6130,"AM":0,"x":65.631,"y":26.249,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6C1","EN":0},"TI":6131,"AM":1024,"x":38.393,"y":29.992,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6C2","EN":0},"TI":6132,"AM":1024,"x":52.027,"y":30.033,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6C3","EN":0},"TI":6133,"AM":1024,"x":65.611,"y":29.998,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":6134,"AM":0,"x":65.647,"y":30.755,"w":9.9,"h":0.833,"TU":"Line 7. Enter modified adjusted gross income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":6137,"AM":1024,"x":65.627,"y":33.007,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":6138,"AM":1024,"x":85.351,"y":34.504,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C1","EN":0},"TI":6139,"AM":1024,"x":38.338,"y":35.961,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C2","EN":0},"TI":6140,"AM":1024,"x":51.973,"y":36.002,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C3","EN":0},"TI":6141,"AM":1024,"x":65.466,"y":35.968,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C1","EN":0},"TI":6142,"AM":1024,"x":38.393,"y":36.771,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C2","EN":0},"TI":6143,"AM":1024,"x":52.027,"y":36.812,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C3","EN":0},"TI":6144,"AM":1024,"x":65.611,"y":36.777,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12SUM","EN":0},"TI":6145,"AM":1024,"x":82.901,"y":37.533,"w":12.371,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CCFWD","EN":0},"TI":6146,"AM":0,"x":82.903,"y":38.963,"w":12.371,"h":0.833,"TU":"Line 13. Credit carryforward, if any, from 2012. See the 2012 to 2013 Credit Carryforward Worksheet in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14SUM","EN":0},"TI":6147,"AM":1024,"x":82.883,"y":39.745,"w":12.371,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15AMT","EN":0},"TI":6148,"AM":0,"x":82.938,"y":40.5,"w":12.371,"h":0.833,"TU":"Line 15. Enter the amount from line 5 of the Credit Limit Worksheet in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":6149,"AM":1024,"x":82.918,"y":42.725,"w":12.371,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CDISABL1","EN":0},"TI":6096,"AM":0,"x":50.655,"y":12.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CSPECL1","EN":0},"TI":6097,"AM":0,"x":58.016,"y":12.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFOREGN1","EN":0},"TI":6098,"AM":0,"x":65.505,"y":12.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFINAL1","EN":0},"TI":6100,"AM":0,"x":93.968,"y":12.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CDISABL2","EN":0},"TI":6104,"AM":0,"x":50.655,"y":13.75,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CSPECL2","EN":0},"TI":6105,"AM":0,"x":58.08,"y":13.75,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFOREGN2","EN":0},"TI":6106,"AM":0,"x":65.505,"y":13.75,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFINAL2","EN":0},"TI":6108,"AM":0,"x":93.968,"y":13.75,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CDISABL3","EN":0},"TI":6112,"AM":0,"x":50.655,"y":15.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CSPECL3","EN":0},"TI":6113,"AM":0,"x":58.08,"y":15.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFOREGN3","EN":0},"TI":6114,"AM":0,"x":65.505,"y":15.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFINAL3","EN":0},"TI":6116,"AM":0,"x":93.968,"y":15.25,"w":2.063,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3N","EN":0},"TI":6120,"AM":0,"x":11.005,"y":22.416,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3Y","EN":0},"TI":6121,"AM":0,"x":10.955,"y":23.255,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"LINE3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L9N","EN":0},"TI":6135,"AM":0,"x":11.01,"y":32.205,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L9Y","EN":0},"TI":6136,"AM":0,"x":10.955,"y":32.974,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"A666RB","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":38.322,"y":4.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":51.934,"y":4.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":65.547,"y":4.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":34.609,"y":4.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":6.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.222,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":51.934,"y":6.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":61.834,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":6.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.447,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":38.322,"y":10.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":48.222,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":51.934,"y":10.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":61.834,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":10.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":34.609,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":12.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":48.222,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":51.934,"y":12.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":61.834,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":12.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":75.447,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":38.322,"y":16.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":48.222,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":51.934,"y":16.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":61.834,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":16.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":16.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":3.751,"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":34.609,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.609,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":38.322,"y":18.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":38.322,"y":21.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":48.222,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":51.934,"y":18.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":51.934,"y":21.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":61.834,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":65.547,"y":21.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.447,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.447,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":44.509,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":48.222,"y":23.251,"w":1.125,"l":9.986},{"oc":"#221f1f","x":58.122,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":44.509,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.222,"y":26.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":58.122,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":74.209,"y":27.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":34.583,"y":27.751,"w":0.75,"l":3.8},{"oc":"#221f1f","x":34.583,"y":29.251,"w":1.125,"l":3.8},{"oc":"#221f1f","x":38.297,"y":27.751,"w":0.75,"l":9.991},{"oc":"#221f1f","x":38.297,"y":29.251,"w":1.125,"l":9.991},{"oc":"#221f1f","x":48.203,"y":27.751,"w":0.75,"l":3.8},{"oc":"#221f1f","x":48.203,"y":29.251,"w":1.125,"l":3.8},{"oc":"#221f1f","x":51.917,"y":27.751,"w":0.75,"l":9.991},{"oc":"#221f1f","x":51.917,"y":29.251,"w":1.125,"l":9.991},{"oc":"#221f1f","x":61.822,"y":29.251,"w":1.125,"l":3.8},{"oc":"#221f1f","x":65.537,"y":29.251,"w":1.125,"l":9.991},{"oc":"#221f1f","x":75.442,"y":29.251,"w":1.125,"l":3.8},{"oc":"#221f1f","x":34.583,"y":30.751,"w":1.125,"l":3.8},{"oc":"#221f1f","x":38.297,"y":30.751,"w":1.125,"l":9.991},{"oc":"#221f1f","x":48.203,"y":30.751,"w":1.125,"l":3.8},{"oc":"#221f1f","x":51.917,"y":30.751,"w":1.125,"l":9.991},{"oc":"#221f1f","x":61.822,"y":30.751,"w":1.125,"l":3.8},{"oc":"#221f1f","x":65.537,"y":30.751,"w":1.125,"l":9.991},{"oc":"#221f1f","x":75.442,"y":30.751,"w":1.125,"l":3.8},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":11.14,"y":34.464,"w":0.75,"l":1.375},{"oc":"#221f1f","x":11.14,"y":33.964,"w":0.75,"l":1.375},{"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":12.461},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":7.857,"y":42.751,"w":0.75,"l":5.328},{"oc":"#221f1f","x":7.857,"y":40.501,"w":0.75,"l":5.328},{"oc":"#221f1f","x":6.147,"y":39.002,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":44.252,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":38.365,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":34.652,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"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":65.59,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":34.652,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":48.265,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":51.977,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":65.59,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":61.877,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":65.59,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":75.49,"y":5.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":38.365,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":34.652,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":10.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":10.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":34.652,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":48.265,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":51.977,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":65.59,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":61.877,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":65.59,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":75.49,"y":11.986,"w":0.75,"l":4.539},{"oc":"#221f1f","x":82.915,"y":3.735,"w":0.75,"l":13.531},{"oc":"#221f1f","x":79.202,"y":3.735,"w":0.75,"l":13.531},{"oc":"#221f1f","x":95.29,"y":3.735,"w":0.75,"l":13.531},{"oc":"#221f1f","x":82.915,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":16.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.365,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":34.652,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":48.265,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":51.977,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":65.59,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":61.877,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":65.59,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":75.49,"y":17.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":17.986,"w":0.75,"l":12.781},{"oc":"#221f1f","x":79.202,"y":17.986,"w":0.75,"l":12.781},{"oc":"#221f1f","x":95.29,"y":17.986,"w":0.75,"l":13.531},{"oc":"#221f1f","x":48.265,"y":21.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":44.552,"y":21.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":58.165,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":21.728,"w":0.75,"l":4.539},{"oc":"#221f1f","x":61.877,"y":21.728,"w":0.75,"l":4.539},{"oc":"#221f1f","x":58.165,"y":22.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":48.265,"y":23.236,"w":0.75,"l":3.031},{"oc":"#221f1f","x":44.552,"y":23.236,"w":0.75,"l":3.031},{"oc":"#221f1f","x":58.165,"y":23.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":25.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.34,"y":27.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":34.626,"y":27.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":51.96,"y":27.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.246,"y":27.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":65.58,"y":27.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.865,"y":27.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.485,"y":27.736,"w":0.75,"l":1.539},{"oc":"#221f1f","x":38.34,"y":29.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":34.626,"y":29.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":51.96,"y":29.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":48.246,"y":29.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":65.58,"y":29.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.865,"y":29.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.485,"y":29.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":31.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.228,"w":0.75,"l":3.789},{"oc":"#221f1f","x":79.202,"y":32.228,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.29,"y":32.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":12.515,"y":33.964,"w":0.75,"l":0.5},{"oc":"#221f1f","x":11.14,"y":33.964,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.915,"y":35.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":7.427,"y":40.657,"w":0.75,"l":1.938},{"oc":"#221f1f","x":13.615,"y":40.657,"w":0.75,"l":1.938}],"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":3.751,"w":3.713,"h":13.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":18.001,"w":3.713,"h":12.75,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":21.751,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":32.251,"w":3.713,"h":3.75,"clr":-1},{"oc":"#221f1f","x":7.427,"y":40.501,"w":6.188,"h":2.25,"clr":-1},{"x":7.814,"y":40.642,"w":5.414,"h":1.969,"clr":1},{"oc":"#221f1f","x":0.335,"y":49.028,"w":1.076,"h":0.391,"clr":-1},{"oc":"#221f1f","x":0.309,"y":49.018,"w":1.129,"h":0.411,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208839%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]}]},{"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.602,"y":2.822,"w":18.058000000000003,"clr":-1,"A":"left","R":[{"T":"Employer-Provided%20Adoption%20Benefits","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":42.372,"y":3.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%201","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.985,"y":3.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%202","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":69.598,"y":3.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%203","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":5.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.09,"w":13.337000000000002,"clr":-1,"A":"left","R":[{"T":"Maximum%20exclusion%20per%20child%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.398,"y":5.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":6.707,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.715,"w":11.724,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20employer-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.4030000000000005,"w":14.595000000000004,"clr":-1,"A":"left","R":[{"T":"provided%20adoption%20benefits%20for%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":13.076000000000004,"clr":-1,"A":"left","R":[{"T":"prior%20year%20for%20the%20same%20child%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":8.84,"w":2.167,"clr":-1,"A":"left","R":[{"T":"No.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.218,"y":8.84,"w":4.242000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20-0-.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":9.653,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.733,"y":9.653,"w":8.945000000000002,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":10.34,"w":9.078000000000001,"clr":-1,"A":"left","R":[{"T":"the%20amount%20to%20enter.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.976999999999997,"y":9.788,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,17.4,0,0]}]},{"oc":"#221f1f","x":35.398,"y":9.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":11.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2017","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.398,"y":11.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":12.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.84,"w":13.077,"clr":-1,"A":"left","R":[{"T":"Employer-provided%20adoption%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.528,"w":13.652000000000005,"clr":-1,"A":"left","R":[{"T":"benefits%20you%20received%20in%202013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.215,"w":13.708000000000004,"clr":-1,"A":"left","R":[{"T":"This%20amount%20should%20be%20shown%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.902,"w":13.930000000000003,"clr":-1,"A":"left","R":[{"T":"in%20box%2012%20of%20your%202013%20Form(s)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":6.797000000000001,"clr":-1,"A":"left","R":[{"T":"W-2%20with%20code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.544,"y":15.59,"w":0.889,"clr":-1,"A":"left","R":[{"T":"T%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":24.502,"y":15.59,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.398,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":12.302000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%2020","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":17.09,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":17.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":18.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.09,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.904,"y":18.09,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.325,"y":18.09,"w":5.538,"clr":-1,"A":"left","R":[{"T":"of%20line%2019%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.778,"w":13.095000000000006,"clr":-1,"A":"left","R":[{"T":"line%2020.%20But%20if%20the%20child%20was%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.465,"w":14.614000000000008,"clr":-1,"A":"left","R":[{"T":"child%20with%20special%20needs%20and%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.152,"w":14.061000000000003,"clr":-1,"A":"left","R":[{"T":"adoption%20became%20final%20in%202013%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.84,"w":13.172,"clr":-1,"A":"left","R":[{"T":"enter%20the%20amount%20from%20line%2019","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.398,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":21.653,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.897,"y":21.653,"w":19.838000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20modified%20adjusted%20gross%20income%20(from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":22.34,"w":14.780000000000005,"clr":-1,"A":"left","R":[{"T":"the%20worksheet%20in%20the%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.817,"y":22.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.298,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.897,"y":23.09,"w":13.785000000000007,"clr":-1,"A":"left","R":[{"T":"Is%20line%2023%20more%20than%20%24194%2C580%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":23.903,"w":2.167,"clr":-1,"A":"left","R":[{"T":"No.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.218,"y":23.903,"w":15.729000000000005,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%2024%20and%2025%2C%20and%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.368,"y":24.59,"w":4.613000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%2026.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":25.34,"w":2.3350000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.298,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.153,"w":30.214000000000002,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2024%20by%20%2440%2C000.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":26.84,"w":22.97000000000001,"clr":-1,"A":"left","R":[{"T":"at%20least%20three%20places).%20Do%20not%20enter%20more%20than%201.000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.196,"y":26.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":26.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.29,"y":26.874,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":74.097,"y":26.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":27.653,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.653,"w":14.506000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20each%20amount%20on%20line%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":4.5760000000000005,"clr":-1,"A":"left","R":[{"T":"by%20line%2025%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":28.34,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.373,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.153,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.153,"w":9.114,"clr":-1,"A":"left","R":[{"T":"Excluded%20benefits.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.6,"y":29.153,"w":4.112,"clr":-1,"A":"left","R":[{"T":"Subtract%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":29.84,"w":8.466000000000001,"clr":-1,"A":"left","R":[{"T":"line%2026%20from%20line%2022","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":29.84,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.373,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":12.580000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%2027%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":31.340000000000003,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.841,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.841,"w":8.392,"clr":-1,"A":"left","R":[{"T":"Taxable%20benefits.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.516,"y":32.841,"w":12.542000000000005,"clr":-1,"A":"left","R":[{"T":"Is%20line%2028%20more%20than%20line%2021%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":33.678,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.077,"y":33.716,"w":34.454,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2021.%20Also%2C%20include%20this%20amount%2C%20if%20more%20than%20zero%2C%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.077,"y":34.403,"w":34.178000000000004,"clr":-1,"A":"left","R":[{"T":"line%207%20of%20Form%201040%20or%20line%208%20of%20Form%201040NR.%20On%20the%20dotted%20line%20next%20to%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.066,"y":35.091,"w":23.895999999999994,"clr":-1,"A":"left","R":[{"T":"7%20of%20Form%201040%20or%20line%208%20of%20Form%201040NR%2C%20enter%20%E2%80%9CAB.%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":35.872,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.077,"y":35.903,"w":34.083999999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021%20from%20line%2028.%20Enter%20the%20result%20as%20a%20negative%20number.%20Reduce%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.083,"y":36.59,"w":34.287000000000006,"clr":-1,"A":"left","R":[{"T":"the%20total%20you%20would%20enter%20on%20line%207%20of%20Form%201040%20or%20line%208%20of%20Form%201040NR%20by","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.093,"y":37.278,"w":34.477000000000004,"clr":-1,"A":"left","R":[{"T":"the%20amount%20on%20Form%208839%2C%20line%2029.%20Enter%20the%20result%20on%20line%207%20of%20Form%201040%20%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.097,"y":37.965,"w":33.842000000000006,"clr":-1,"A":"left","R":[{"T":"line%208%20of%20Form%201040NR.%20Enter%20%E2%80%9CSNE%E2%80%9D%20on%20the%20dotted%20line%20next%20to%20the%20entry%20line.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.527,"y":36.667,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,19,0,0]}]},{"oc":"#221f1f","x":74.002,"y":35.841,"w":2.666,"clr":-1,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":35.841,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.513,"y":41.099,"w":1.705,"clr":-1,"A":"left","R":[{"T":"TIP","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":15.221,"y":38.903,"w":48.17599999999997,"clr":-1,"A":"left","R":[{"T":"You%20may%20be%20able%20to%20claim%20the%20adoption%20credit%20in%20Part%20II%20on%20the%20front%20of%20this%20form%20if%20any%20of%20the%20following%20apply.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.221,"y":39.841,"w":52.65799999999995,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20paid%20adoption%20expenses%20in%202012%2C%20those%20expenses%20were%20not%20fully%20reimbursed%20by%20your%20employer%20or%20otherwise%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.834,"y":40.528,"w":21.062,"clr":-1,"A":"left","R":[{"T":"the%20adoption%20was%20not%20final%20by%20the%20end%20of%202012.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.226,"y":41.466,"w":50.78799999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20total%20adoption%20expenses%20you%20paid%20in%202013%20were%20not%20fully%20reimbursed%20by%20your%20employer%20or%20otherwise%2C%20and%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.847,"y":42.153,"w":18.523,"clr":-1,"A":"left","R":[{"T":"adoption%20became%20final%20in%202013%20or%20earlier.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.238,"y":43.091,"w":36.06599999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20adopted%20a%20child%20with%20special%20needs%20and%20the%20adoption%20became%20final%20in%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.01,"y":44.073,"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.073,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8839%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.453,"y":44.073,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":24.113,"y":4.234,"w":36.14000000000001,"clr":0,"A":"left","R":[{"T":"%2412%2C970","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.733,"y":25.34,"w":13.821000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20%24194%2C580%20from%20line%2023","S":-1,"TS":[0,12.81,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":6150,"AM":1024,"x":16.031,"y":2.108,"w":43.736,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":6151,"AM":1024,"x":78.932,"y":2.124,"w":15.912,"h":0.875},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C1","EN":0},"TI":6152,"AM":0,"x":38.316,"y":5.294,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C2","EN":0},"TI":6153,"AM":0,"x":51.973,"y":5.308,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C3","EN":0},"TI":6154,"AM":0,"x":65.556,"y":5.273,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16C1","EN":0},"TI":6157,"AM":0,"x":38.305,"y":9.742,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16C2","EN":0},"TI":6158,"AM":0,"x":51.961,"y":9.756,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16C3","EN":0},"TI":6159,"AM":0,"x":65.545,"y":9.721,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17C1","EN":0},"TI":6160,"AM":1024,"x":38.382,"y":11.232,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17C2","EN":0},"TI":6161,"AM":1024,"x":52.039,"y":11.246,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17C3","EN":0},"TI":6162,"AM":1024,"x":65.622,"y":11.211,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C1","EN":0},"TI":6163,"AM":0,"x":38.34,"y":15.741,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C2","EN":0},"TI":6164,"AM":0,"x":51.996,"y":15.755,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C3","EN":0},"TI":6165,"AM":0,"x":65.58,"y":15.688,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":6166,"AM":1024,"x":82.978,"y":17.252,"w":12.371,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20C1","EN":0},"TI":6167,"AM":0,"x":38.417,"y":21.023,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20C2","EN":0},"TI":6168,"AM":0,"x":52.073,"y":21.037,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20C3","EN":0},"TI":6169,"AM":0,"x":65.657,"y":20.97,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":6170,"AM":0,"x":48.33,"y":22.518,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":6173,"AM":1024,"x":48.24,"y":25.496,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":6174,"AM":1024,"x":69.17,"y":26.954,"w":9.9,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25C1","EN":0},"TI":6175,"AM":1024,"x":38.397,"y":28.47,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25C2","EN":0},"TI":6176,"AM":1024,"x":52.054,"y":28.484,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25C3","EN":0},"TI":6177,"AM":1024,"x":65.637,"y":28.449,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26C1","EN":0},"TI":6178,"AM":1024,"x":38.302,"y":29.987,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26C2","EN":0},"TI":6179,"AM":1024,"x":51.959,"y":30.001,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26C3","EN":0},"TI":6180,"AM":1024,"x":65.542,"y":30.029,"w":9.9,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23TOT","EN":0},"TI":6181,"AM":1024,"x":82.958,"y":31.483,"w":12.371,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":6184,"AM":1024,"x":82.841,"y":35.967,"w":12.371,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16N","EN":0},"TI":6155,"AM":0,"x":11.124,"y":8.92,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L16Y","EN":0},"TI":6156,"AM":0,"x":11.007,"y":9.76,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"L16BXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AJ4","EN":0},"TI":6171,"AM":0,"x":10.912,"y":24.045,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AJ5","EN":0},"TI":6172,"AM":0,"x":11.007,"y":25.436,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"LINE23RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31NBOX","EN":0},"TI":6182,"AM":1024,"x":10.849,"y":33.811,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L31YBOX","EN":0},"TI":6183,"AM":1024,"x":10.917,"y":35.961,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"LINE31RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8844.content.txt b/test/data/fd/form/F8844.content.txt new file mode 100755 index 00000000..6d9957cd --- /dev/null +++ b/test/data/fd/form/F8844.content.txt @@ -0,0 +1,69 @@ +Form +8844 +Department of the Treasury +Internal Revenue Service +Empowerment Zone Employment Credit +a + Attach to your tax return. +a + Information about Form 8844 and its instructions is at +www.irs.gov/form8844. +OMB No. 1545-1444 +20 +13 +Attachment +Sequence No. +99 +Name(s) shown on return +Identifying number +1 +Enter the total qualified wages paid or incurred during +calendar year +2013 + +only (see instructions) +a +Qualified empowerment zone wages +...... +$ +× 20% (.20) +1a +b +Reserved +............... +1b +2 +Enter the amount from line 1a. See instructions for the adjustment you must make to salaries and +wages +............................... +2 +3 +Empowerment zone employment credit from partnerships, S corporations, cooperatives, estates, +and trusts +.............................. +3 +4 + +Add lines 2 and 3. Cooperatives, estates, and trusts, go to line 5. Partnerships and S corporations, +stop here and report this amount on Schedule K. All others, stop here and report this amount on +Form 3800, Part III, line 3 +........................ +4 +5 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust (see +instructions) +............................. +5 +6 +Cooperatives, estates, and trusts, subtract line 5 from line 4. Report this amount on Form 3800, + +Part III, line 3 +............................ +6 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 16145S +Form +8844 + +(2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8844.fields.json b/test/data/fd/form/F8844.fields.json new file mode 100755 index 00000000..d36ae948 --- /dev/null +++ b/test/data/fd/form/F8844.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"ZWAGES","type":"number","calc":false,"value":""},{"id":"L1A","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"COESTTR","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8844.json b/test/data/fd/form/F8844.json new file mode 100755 index 00000000..0d2608e3 --- /dev/null +++ b/test/data/fd/form/F8844.json @@ -0,0 +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":2.76,"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":71.861},{"oc":"#221f1f","x":77.922,"y":6.751,"w":1.125,"l":21.123},{"oc":"#221f1f","x":80.397,"y":6.751,"w":1.125,"l":3.798},{"dsh":1,"oc":"#221f1f","x":50.834,"y":8.251,"w":0.75,"l":17.273},{"oc":"#221f1f","x":80.397,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":49.459,"y":9.001,"w":0.75,"l":29.649},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":84.109,"y":9.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":13.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":16.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.001,"w":1.5,"l":38.448},{"oc":"#221f1f","x":44.509,"y":21.001,"w":1.5,"l":42.161},{"oc":"#221f1f","x":86.584,"y":21.001,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.04,"y":4.11,"w":1.5,"l":1.172},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.54},{"oc":"#221f1f","x":84.152,"y":2.755,"w":1.5,"l":2.512},{"oc":"#221f1f","x":84.152,"y":4.048,"w":1.5,"l":1.235},{"oc":"#221f1f","x":77.965,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":6.728,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":6.728,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":13.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":13.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.44,"y":16.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":80.44,"y":6.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":8.314,"w":29.563,"h":0.687,"clr":-1},{"oc":"#bebfc1","x":84.152,"y":8.251,"w":11.138,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":95.29,"y":8.251,"w":3.713,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.758,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.758,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8844","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.801,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.326,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":30.955,"y":2.445,"w":17.780000000000005,"clr":-1,"A":"left","R":[{"T":"Empowerment%20Zone%20Employment%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.4000000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.4930000000000003,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.15,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.243,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208844%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.243,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8844.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.884,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1444","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.163,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.163,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8449999999999998,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%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.943,"y":4.291,"w":1.112,"clr":-1,"A":"left","R":[{"T":"99","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"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.402,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":6.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.59,"w":24.262,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20qualified%20wages%20paid%20or%20incurred%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.42,"y":6.59,"w":6.759,"clr":-1,"A":"left","R":[{"T":"calendar%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.875,"y":6.59,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.746,"y":6.59,"w":9.686000000000003,"clr":-1,"A":"left","R":[{"T":"only%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.589,"y":7.34,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":16.555999999999997,"clr":-1,"A":"left","R":[{"T":"Qualified%20empowerment%20zone%20wages%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":7.34,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":7.2780000000000005,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":7.34,"w":5.176000000000001,"clr":-1,"A":"left","R":[{"T":"%C3%97%2020%25%20(.20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":7.34,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.561,"y":8.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":8.09,"w":4.5,"clr":-1,"A":"left","R":[{"T":"Reserved%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.314,"y":8.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.143,"y":8.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.863,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.836,"y":9.863,"w":43.60699999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%201a.%20See%20instructions%20for%20the%20adjustment%20you%20must%20make%20to%20salaries%20and%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.844,"y":10.55,"w":3.184,"clr":-1,"A":"left","R":[{"T":"wages%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":16.26,"y":10.55,"w":41.75700000000002,"clr":-1,"A":"left","R":[{"T":"...............................","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":81.64,"y":10.349,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.79,"w":43.56299999999998,"clr":-1,"A":"left","R":[{"T":"Empowerment%20zone%20employment%20credit%20from%20partnerships%2C%20S%20corporations%2C%20cooperatives%2C%20estates%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":12.478,"w":4.761000000000001,"clr":-1,"A":"left","R":[{"T":"and%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.31,"y":12.478,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.103,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.103,"w":44.19499999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%20and%203.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%205.%20Partnerships%20and%20S%20corporations%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":14.79,"w":42.90199999999996,"clr":-1,"A":"left","R":[{"T":"stop%20here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":15.477,"w":11.485000000000005,"clr":-1,"A":"left","R":[{"T":"Form%203800%2C%20Part%20III%2C%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.696,"y":15.477,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.04,"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.04,"w":39.89399999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.728,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":17.728,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.29,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.993,"y":19.29,"w":42.58699999999997,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C%20subtract%20line%205%20from%20line%204.%20Report%20this%20amount%20on%20Form%203800%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.989,"y":19.978,"w":6.092999999999998,"clr":-1,"A":"left","R":[{"T":"Part%20III%2C%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.435,"y":19.978,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":20.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":20.849,"w":25.961000000000002,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.927,"y":20.849,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2016145S","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":87.409,"y":20.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":91.225,"y":20.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8844","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.453,"y":20.822,"w":2.742,"clr":-1,"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":6185,"AM":1024,"x":6.262,"y":5.875,"w":71.006,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO","EN":0},"TI":6186,"AM":1024,"x":78.614,"y":5.875,"w":20.461,"h":0.875},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ZWAGES","EN":0},"TI":6187,"AM":0,"x":51.025,"y":7.5,"w":17.187,"h":0.833,"TU":"Line 1a. Qualified empowerment zone wages."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":6188,"AM":1024,"x":84.225,"y":7.5,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":6189,"AM":1024,"x":84.225,"y":10.5,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":6190,"AM":0,"x":84.225,"y":12.75,"w":11.138,"h":0.833,"TU":"Line 3. Empowerment zone employment credit from partnerships, S corporations, cooperatives, estates, and trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":6191,"AM":1024,"x":84.225,"y":15.75,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENALLOC","EN":0},"TI":6192,"AM":1024,"x":84.225,"y":18,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COESTTR","EN":0},"TI":6193,"AM":1024,"x":84.225,"y":20.25,"w":11.138,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8845.content.txt b/test/data/fd/form/F8845.content.txt new file mode 100755 index 00000000..a2bf71aa --- /dev/null +++ b/test/data/fd/form/F8845.content.txt @@ -0,0 +1,69 @@ +Form +8845 +Department of the Treasury +Internal Revenue Service +Indian Employment Credit +a + +Attach to your tax return. +a + +Information about Form 8845 and its instructions is at +www.irs.gov/form8845. +OMB No. 1545-1417 +20 +13 +Attachment +Sequence No. +113 +Name(s) shown on return +Identifying number +1 +Total of qualified wages and qualified employee health insurance costs paid or incurred during the +tax year +.............................. +1 +2 +Calendar year 1993 qualified wages and qualified employee health insurance costs (see +instructions). If none, enter -0- +....................... +2 +3 +Incremental increase. Subtract line 2 from line 1. If zero or less, enter -0- +......... +3 + 4 +Multiply line 3 by 20% (.20). See instructions for the adjustment you must make to salaries and +wages +............................... +4 +5 +Indian employment credit from partnerships, S corporations, cooperatives, estates, +and trusts +.............................. +5 +6 + +Add lines 4 and 5. Cooperatives, estates, and trusts, go to line 7. Partnerships and S corporations, +stop here and report this amount on Schedule K. All others, stop here and report this amount on +Form 3800, line 1g +........................... +6 +7 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust (see +instructions) +............................. +7 +8 +Cooperatives, estates, and trusts, + +subtract line 7 from line 6. Report this amount on +Form 3800, line 1g +........................... +8 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 16146D +Form +8845 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8845.fields.json b/test/data/fd/form/F8845.fields.json new file mode 100755 index 00000000..4e73cb37 --- /dev/null +++ b/test/data/fd/form/F8845.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"ALLOC","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8845.json b/test/data/fd/form/F8845.json new file mode 100755 index 00000000..08e255ba --- /dev/null +++ b/test/data/fd/form/F8845.json @@ -0,0 +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.936},{"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":71.861},{"oc":"#221f1f","x":77.922,"y":6.751,"w":1.125,"l":21.123},{"oc":"#221f1f","x":80.397,"y":6.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":10.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":13.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":13.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.19,"y":18.751,"w":1.125,"l":92.813},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":47.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223}],"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":77.965,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":6.728,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":6.728,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.236,"w":0.75,"l":0.781},{"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":95.29,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":13.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":13.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":17.228,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":17.228,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":80.44,"y":6.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":8.251,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":10.501,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":12.001,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":13.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":15.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":17.251,"w":3.712,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"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.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8845","S":-1,"TS":[0,27,0,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.251,"w":11.649000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":38.462,"y":2.164,"w":11.540000000000003,"clr":-1,"A":"left","R":[{"T":"Indian%20Employment%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.497,"y":3.3470000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.767,"y":3.441,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.413,"y":4.097,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.683,"y":4.191,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208845%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.123,"y":4.191,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8845.","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-1417","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":91.204,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.857,"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.304,"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.303,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"113","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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.402,"y":4.938,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":6.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.54,"w":43.728999999999964,"clr":-1,"A":"left","R":[{"T":"Total%20of%20qualified%20wages%20and%20qualified%20employee%20health%20insurance%20costs%20paid%20or%20incurred%20during%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":7.34,"w":3.833,"clr":-1,"A":"left","R":[{"T":"tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.307,"y":7.34,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"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.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.04,"w":39.32099999999999,"clr":-1,"A":"left","R":[{"T":"Calendar%20year%201993%20qualified%20wages%20and%20qualified%20employee%20health%20insurance%20costs%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":8.84,"w":13.503000000000004,"clr":-1,"A":"left","R":[{"T":"instructions).%20If%20none%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.758,"y":8.84,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":32.282,"clr":-1,"A":"left","R":[{"T":"Incremental%20increase.%20Subtract%20line%202%20from%20line%201.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":9.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.124,"y":10.278,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.29,"w":42.477,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%203%20by%2020%25%20(.20).%20See%20instructions%20for%20the%20adjustment%20you%20must%20make%20to%20salaries%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":10.977,"w":2.906,"clr":-1,"A":"left","R":[{"T":"wages","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.263,"y":10.977,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.79,"w":37.34099999999999,"clr":-1,"A":"left","R":[{"T":"Indian%20employment%20credit%20from%20partnerships%2C%20S%20corporations%2C%20cooperatives%2C%20estates%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.59,"w":4.761000000000001,"clr":-1,"A":"left","R":[{"T":"and%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.313,"y":12.59,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.353,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.353,"w":44.19499999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204%20and%205.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%207.%20Partnerships%20and%20S%20corporations%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":14.04,"w":42.90199999999996,"clr":-1,"A":"left","R":[{"T":"stop%20here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":14.727,"w":8.615000000000004,"clr":-1,"A":"left","R":[{"T":"Form%203800%2C%20line%201g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.508,"y":14.727,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.54,"w":40.17199999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":16.34,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.383,"y":16.34,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.04,"w":15.058000000000003,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.85,"y":17.04,"w":21.85900000000001,"clr":-1,"A":"left","R":[{"T":"subtract%20line%207%20from%20line%206.%20Report%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":17.727,"w":8.615000000000004,"clr":-1,"A":"left","R":[{"T":"Form%203800%2C%20line%201g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.497,"y":17.727,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"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":60.23,"y":47.126,"w":7.466,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2016146D","S":2,"TS":[0,10,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":"8845","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":47.072,"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":6194,"AM":1024,"x":6.188,"y":5.875,"w":71.262,"h":0.875,"TU":"Name(s) shown on return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO","EN":0},"TI":6195,"AM":1024,"x":78.283,"y":5.875,"w":20.717,"h":0.875,"TU":"Identifying number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":6196,"AM":0,"x":84.15,"y":7.5,"w":11.137,"h":0.833,"TU":"Line 1. Total of qualified wages and qualified employee health insurance costs paid or incurred during the tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":6197,"AM":0,"x":84.075,"y":9,"w":11.138,"h":0.833,"TU":"Line 2. Calendar year 1993 qualified wages and qualified employee health insurance costs (see instructions), If none, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":6198,"AM":1024,"x":84.15,"y":9.75,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":6199,"AM":1024,"x":84.075,"y":11.25,"w":11.138,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":6200,"AM":0,"x":84.15,"y":12.75,"w":11.137,"h":0.833,"TU":"Line 5. Indian employment credit from partnerships, S corporations, cooperatives, estates, and trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":6201,"AM":1024,"x":84.15,"y":15,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOC","EN":0},"TI":6202,"AM":1024,"x":84.15,"y":16.473,"w":11.137,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":6203,"AM":1024,"x":84.075,"y":18,"w":11.138,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8846.content.txt b/test/data/fd/form/F8846.content.txt new file mode 100755 index 00000000..180cace7 --- /dev/null +++ b/test/data/fd/form/F8846.content.txt @@ -0,0 +1,65 @@ +Form +8846 +Department of the Treasury +Internal Revenue Service +Credit for Employer Social Security and Medicare Taxes +Paid on Certain Employee Tips +a + +Attach to your tax return. + +a + +. +OMB No. 1545-1414 +20 +13 +Attachment +Sequence No. +98 +Name(s) shown on return +Identifying number +Note. +Claim this credit + only +for employer social security and Medicare taxes paid by a food or beverage establishment + +1 +Tips received by employees for services on which you paid or incurred employer social +security and Medicare taxes during the tax year (see instructions) +........ +1 +2 +Tips not subject to the credit provisions (see instructions) +........... +2 +3 +Creditable tips. Subtract line 2 from line 1 +................. +3 +4 +Multiply line 3 by 7.65% (.0765). If you had any tipped employees whose wages +(including tips) exceeded $113,700, see instructions and check here +..... + +a + +4 +5 +Credit for employer social security and Medicare taxes paid on certain employee tips +from partnerships and S corporations +.................. +5 +6 +Add lines 4 and 5. Partnerships and S corporations, report this amount on Schedule K. +All others, report this amount on Form 3800, line 4f +............. +6 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 16148Z +Form +8846 + (2013) +Information about Form 8846 and its instructions is at www.irs.gov/form8846 +where tipping iscustomary for providing food or beverages. See the instructions for line 1. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8846.fields.json b/test/data/fd/form/F8846.fields.json new file mode 100755 index 00000000..17eca523 --- /dev/null +++ b/test/data/fd/form/F8846.fields.json @@ -0,0 +1 @@ +[{"id":"L4BX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"FEIN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8846.json b/test/data/fd/form/F8846.json new file mode 100755 index 00000000..49a3eb9e --- /dev/null +++ b/test/data/fd/form/F8846.json @@ -0,0 +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.147,"y":5.251,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.2000000000000002,"l":73.099},{"oc":"#221f1f","x":79.159,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.2000000000000002,"l":19.886},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":11.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":12.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":12.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":12.751,"w":1.125,"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":79.159,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.833,"y":16.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":75.833,"y":15.876,"w":0.75,"l":1.375},{"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":16.501,"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":18.751,"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":6.147,"y":21.001,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":21.001,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":21.001,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.04,"y":4.11,"w":1.5,"l":1.157},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.54},{"oc":"#221f1f","x":84.152,"y":2.728,"w":1.5,"l":2.539},{"oc":"#221f1f","x":84.152,"y":3.993,"w":1.5,"l":1.274},{"oc":"#221f1f","x":79.202,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":11.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":0.789},{"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":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":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":1.531},{"oc":"#221f1f","x":77.208,"y":15.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":75.833,"y":15.876,"w":0.75,"l":0.5},{"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":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":1.531},{"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":1.531},{"oc":"#221f1f","x":79.202,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":1.531},{"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}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":79.202,"y":9.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":11.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":14.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":16.501,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":18.751,"w":3.713,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.758,"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.758,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8846","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.776,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.276,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":22.292,"y":2.101,"w":26.843000000000007,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Employer%20Social%20Security%20and%20Medicare%20Taxes%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":35.936,"y":2.976,"w":14.671000000000006,"clr":-1,"A":"left","R":[{"T":"Paid%20on%20Certain%20Employee%20Tips","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.448,"y":3.643,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.816,"y":3.737,"w":11.946000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.364,"y":4.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.946,"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.8849999999999998,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1414","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.198,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.198,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.621,"y":3.817,"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.326,"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.326,"w":1.112,"clr":-1,"A":"left","R":[{"T":"98","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.108,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.983,"y":5.108,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.947,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.577,"y":6.947,"w":7.242000000000001,"clr":-1,"A":"left","R":[{"T":"Claim%20this%20credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":21.463,"y":6.947,"w":2.612,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":25.762,"y":6.947,"w":40.50599999999998,"clr":-1,"A":"left","R":[{"T":"for%20employer%20social%20security%20and%20Medicare%20taxes%20paid%20by%20a%20food%20or%20beverage%20establishment%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.449,"y":9.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.879,"y":9.572,"w":39.041,"clr":-1,"A":"left","R":[{"T":"Tips%20received%20by%20employees%20for%20services%20on%20which%20you%20paid%20or%20incurred%20employer%20social%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.879,"y":10.26,"w":29.337000000000007,"clr":-1,"A":"left","R":[{"T":"security%20and%20Medicare%20taxes%20during%20the%20tax%20year%20(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":61.617,"y":10.26,"w":9.600000000000001,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":10.322,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.459,"y":11.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.822,"w":25.782000000000007,"clr":-1,"A":"left","R":[{"T":"Tips%20not%20subject%20to%20the%20credit%20provisions%20(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":55.44,"y":11.822,"w":13.2,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":11.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.459,"y":13.322,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.322,"w":18.541000000000004,"clr":-1,"A":"left","R":[{"T":"Creditable%20tips.%20Subtract%20line%202%20from%20line%201","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":43.065,"y":13.322,"w":20.399999999999995,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":13.322,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.459,"y":14.947,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.947,"w":35.824000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%203%20by%207.65%25%20(.0765).%20If%20you%20had%20any%20tipped%20employees%20whose%20wages%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.896,"y":15.661000000000001,"w":30.62,"clr":-1,"A":"left","R":[{"T":"(including%20tips)%20exceeded%20%24113%2C700%2C%20see%20instructions%20and%20check%20here%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":63.696,"y":15.661000000000001,"w":6.000000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":73.405,"y":15.567,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.331,"y":15.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.459,"y":17.135,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.135,"w":38.134999999999984,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20employer%20social%20security%20and%20Medicare%20taxes%20paid%20on%20certain%20employee%20tips%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.884,"y":17.822,"w":17.003,"clr":-1,"A":"left","R":[{"T":"from%20partnerships%20and%20S%20corporations%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":40.997,"y":17.822,"w":21.599999999999994,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":17.822,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.459,"y":19.322,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.322,"w":38.93699999999999,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204%20and%205.%20Partnerships%20and%20S%20corporations%2C%20report%20this%20amount%20on%20Schedule%20K.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":20.01,"w":22.989000000000004,"clr":-1,"A":"left","R":[{"T":"All%20others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%204f%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.32,"y":20.01,"w":15.599999999999998,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":20.072,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":20.858,"w":25.895000000000003,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.286,"y":20.876,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2016148Z","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":20.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":20.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8846","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":20.822,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.732,"y":4.358,"w":36.45399999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208846%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8846","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.929,"y":7.635,"w":39.96699999999998,"clr":-1,"A":"left","R":[{"T":"where%20tipping%20iscustomary%20for%20providing%20food%20or%20beverages.%20See%20the%20instructions%20for%20line%201.","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6204,"AM":1024,"x":6.208,"y":5.943,"w":72.889,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"FEIN","EN":0},"TI":6205,"AM":1024,"x":79.773,"y":5.943,"w":19.227,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":6206,"AM":0,"x":83.119,"y":10.47,"w":11.983,"h":0.833,"TU":"Line 1. Tips received by employees for services on which you paid or incurred employer social security and Medicare taxes during the year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":6207,"AM":0,"x":83.098,"y":11.971,"w":12.024,"h":0.833,"TU":"Line 2. Tips not subject to the credit provisions (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":6208,"AM":1024,"x":83.098,"y":13.506,"w":12.024,"h":0.833,"TU":"3. Creditable tips. Subtract line 2 from line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":6210,"AM":0,"x":83.119,"y":15.719,"w":11.983,"h":0.833,"TU":"Line 4. Multiple line 3 by 7.65% (.0765)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":6211,"AM":0,"x":83.119,"y":17.942,"w":11.983,"h":0.833,"TU":"Line 5. Credit for employer social security and Medicare taxes paid on certain employee tips from partnerships and S corporations"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":6212,"AM":1024,"x":83.119,"y":20.096,"w":11.983,"h":0.874,"TU":"6. Add lines 4 and 5"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L4BX","EN":0},"TI":6209,"AM":0,"x":75.766,"y":15.72,"w":1.746,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8853.content.txt b/test/data/fd/form/F8853.content.txt new file mode 100755 index 00000000..e1d9caba --- /dev/null +++ b/test/data/fd/form/F8853.content.txt @@ -0,0 +1,152 @@ +Compensation (see instructions) from the employer maintaining the high deductible health plan. (If +Form +8853 +Department of the Treasury +Internal Revenue Service (99) +Archer MSAs and +Long-Term Care Insurance Contracts +a + +a + +Attach to Form 1040 or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +39 +Name(s) shown on return +Social security number of MSA +account holder. If both spouses +have MSAs, see instructions +a +Section A. Archer MSAs. +If you have only a Medicare Advantage MSA, skip Section A and complete Section B. +Part I +Archer MSA Contributions and Deductions. + + +separate Part I for each spouse. +1 +Total employer contributions to your Archer MSA(s) for 2013 +.... +1 +2 +Archer MSA contributions you made for 2013, including those made from January 1, 2014, +through April 15, 2014, that were for 2013. Do not include rollovers (see instructions) +..... +2 +3 +Limitation from the Line 3 Limitation Chart and Worksheet in the instructions +....... +3 +4 +self-employed, enter your earned income from the trade or business under which the high +deductible health plan was established.) +................... +4 +5 Archer MSA deduction. +Enter the +smallest +of line 2, 3, or 4 here. Also include this amount on + +Form 1040, line 36, or Form 1040NR, line 35. On the dotted line next to Form 1040, line 36, or + +Form 1040NR, line 35, enter “MSA” and the amount +................ +5 +Caution: +If line 2 is more than line 5, you may have to pay an additional tax (see instructions). +Part II +Archer MSA Distributions +6a +Total distributions you and your spouse received in 2013 from all Archer MSAs (see instructions) . +6a +b +Distributions included on line 6a that you rolled over to another Archer MSA or a health savings +account. Also include any excess contributions (and the earnings on those excess contributions) +included on line 6a that were withdrawn by the due date of your return (see instructions) +.... +6b +c +Subtract line 6b from line 6a +....................... +6c +7 +Unreimbursed qualified medical expenses (see instructions) +............. +7 +8 +Taxable Archer MSA distributions. +Subtract line 7 from line 6c. If zero or less, enter -0-. Also + +include this amount in the total on Form 1040, line 21, or Form 1040NR, line 21. On the dotted + +line next to line 21, enter “MSA” and the amount +................. +8 +9a +If any of the distributions included on line 8 meet any of the +Exceptions to the Additional +20% Tax + (see instructions), check here +.................. +a +b +Additional 20% tax +(see instructions). Enter 20% (.20) of the distributions included on line 8 that + +or Form 1040NR, line 59. On the dotted line next to Form 1040, line 60, or Form 1040NR, line 59, +enter “MSA” and the amount +....................... +9b +Section B. Medicare Advantage MSA Distributions. +If you are filing jointly and both you and your spouse received +distributions in 2013 from a Medicare Advantage MSA, complete a separate Section B for each spouse + +(see +instructions). +10 +Total distributions you received in 2013 from all Medicare Advantage MSAs (see instructions) . . +10 +11 +Unreimbursed qualified medical expenses (see instructions) +............. +11 +12 +Taxable Medicare Advantage MSA distributions. +Subtract line 11 from line 10. If zero or less, + +enter -0-. Also include this amount in the total on Form 1040, line 21, or Form 1040NR, line 21. + +On the dotted line next to line 21, enter “Med MSA” and the amount +.......... +12 +13a +If any of the distributions included on line 12 meet any of the +Exceptions to the Additional +50% Tax + (see instructions), check here +.................. +a +b +Additional 50% tax +(see instructions). Enter 50% (.50) of the distributions included on line 12 that + +or Form 1040NR, line 59. On the dotted line next to Form 1040, line 60, or Form 1040NR, line 59, +enter “Med MSA” and the amount +...................... +13b +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 24091H +Form +8853 + (2013) +Form 8853 page 2 +Information about Form 8853 and its separate instructions is available at www.irs.gov/form8853. +See instructions before completing this part. If you are filing +jointly and both you and your spouse have high deductible health plans with self-only coverage, complete a +are subject to the additional 50% tax. Also include this amount in the total on Form 1040, line 60, +are subject to the additional 20% tax. Also include this amount in the total on Form 1040, line 60, +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8853.fields.json b/test/data/fd/form/F8853.fields.json new file mode 100755 index 00000000..49b79ba0 --- /dev/null +++ b/test/data/fd/form/F8853.fields.json @@ -0,0 +1 @@ +[{"id":"L11BX","type":"box","calc":false,"value":""},{"id":"L15AX","type":"box","calc":false,"value":""},{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"SSN1","type":"ssn","calc":true,"value":""},{"id":"L3B","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11B","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"Add_F8853_Page_2","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8853.json b/test/data/fd/form/F8853.json new file mode 100755 index 00000000..b7f05577 --- /dev/null +++ b/test/data/fd/form/F8853.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8853","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":45.874},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":45.874},{"oc":"#221f1f","x":51.934,"y":5.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":51.934,"y":6.751,"w":1.125,"l":47.111},{"oc":"#221f1f","x":6.147,"y":7.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":61.834,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":10.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":18.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":18.001,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.334,"y":18.751,"w":0.75,"l":86.711},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":1.125,"l":3.798},{"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":80.397,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":23.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":30.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":32.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"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":80.397,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":40.501,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":40.501,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.822,"y":40.501,"w":1.5,"l":11.223}],"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":51.977,"y":5.22,"w":0.75,"l":1.555},{"oc":"#221f1f","x":61.877,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"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":95.29,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":14.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":19.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":20.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"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":84.152,"y":23.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":23.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":23.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":24.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":25.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":25.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":25.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"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":84.152,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":33.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":35.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.152,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.986,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":7.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":80.44,"y":9.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":18.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":80.44,"y":25.501,"w":3.712,"h":3.75,"clr":-1},{"oc":"#c0c1c4","x":80.44,"y":36.001,"w":3.712,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":10.89,"y":12.602,"w":44.215999999999994,"clr":-1,"A":"left","R":[{"T":"Compensation%20(see%20instructions)%20from%20the%20employer%20maintaining%20the%20high%20deductible%20%20health%20plan.%20(If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.634,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.086,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8853","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.726,"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.289,"w":13.279000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"oc":"#221f1f","x":42.986,"y":2.101,"w":8.613,"clr":-1,"A":"left","R":[{"T":"Archer%20MSAs%20and%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":32.615,"y":2.914,"w":17.670000000000005,"clr":-1,"A":"left","R":[{"T":"Long-Term%20Care%20Insurance%20Contracts","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":21.767,"y":3.5140000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.3,"y":4.186,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.714,"y":4.28,"w":19.561,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9380000000000002,"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.268,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.268,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,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.26,"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.26,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.907,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.415,"y":4.938,"w":14.373000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20MSA%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.415,"y":5.376,"w":14.726000000000004,"clr":-1,"A":"left","R":[{"T":"account%20holder.%20If%20both%20spouses%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.415,"y":5.879,"w":13.225000000000001,"clr":-1,"A":"left","R":[{"T":"have%20MSAs%2C%20see%20instructions%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.326,"y":5.785,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.572,"w":12.281000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20A.%20%20Archer%20MSAs.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":25.403,"y":6.572,"w":38.081999999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20only%20a%20Medicare%20Advantage%20MSA%2C%20skip%20Section%20A%20and%20complete%20Section%20B.","S":-1,"TS":[0,13,0,0]}]},{"x":6.838,"y":7.321999999999999,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":7.385,"w":20.891000000000002,"clr":-1,"A":"left","R":[{"T":"Archer%20MSA%20Contributions%20and%20Deductions.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.6,"y":8.76,"w":14.279000000000007,"clr":-1,"A":"left","R":[{"T":"separate%20Part%20I%20for%20each%20spouse.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":27.133999999999986,"clr":-1,"A":"left","R":[{"T":"Total%20employer%20contributions%20to%20your%20Archer%20MSA(s)%20for%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":9.59,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":10.302,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.29,"w":40.680999999999976,"clr":-1,"A":"left","R":[{"T":"Archer%20MSA%20contributions%20you%20made%20for%202013%2C%20including%20those%20made%20from%20January%201%2C%202014%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.977,"w":37.6,"clr":-1,"A":"left","R":[{"T":"through%20April%2015%2C%202014%2C%20that%20were%20for%202013.%20Do%20not%20include%20rollovers%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":10.977,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":34.288999999999994,"clr":-1,"A":"left","R":[{"T":"Limitation%20from%20the%20Line%203%20Limitation%20Chart%20and%20Worksheet%20in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":11.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.29,"w":40.58399999999998,"clr":-1,"A":"left","R":[{"T":"self-employed%2C%20enter%20your%20earned%20income%20from%20the%20trade%20or%20business%20under%20which%20%20the%20high%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.977,"w":18.17,"clr":-1,"A":"left","R":[{"T":"deductible%20health%20plan%20was%20established.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":13.977,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.853,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.853,"w":11.335,"clr":-1,"A":"left","R":[{"T":"Archer%20MSA%20deduction.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.531,"y":14.853,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.692,"y":14.853,"w":4.280000000000001,"clr":-1,"A":"left","R":[{"T":"smallest%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.788,"y":14.853,"w":22.11800000000001,"clr":-1,"A":"left","R":[{"T":"of%20line%202%2C%203%2C%20or%204%20here.%20Also%20include%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.54,"w":41.79499999999998,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2036%2C%20or%20Form%201040NR%2C%20line%2035.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2036%2C%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.227,"w":23.454000000000008,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2035%2C%20enter%20%E2%80%9CMSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":16.227,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.027,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.991,"y":17.027,"w":36.95199999999999,"clr":-1,"A":"left","R":[{"T":"If%20line%202%20is%20more%20than%20line%205%2C%20you%20may%20have%20to%20pay%20an%20additional%20tax%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":17.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":17.796,"w":12.168000000000003,"clr":-1,"A":"left","R":[{"T":"Archer%20MSA%20Distributions","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.54,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":43.15599999999999,"clr":-1,"A":"left","R":[{"T":"Total%20distributions%20you%20and%20your%20spouse%20received%20in%202013%20from%20all%20Archer%20MSAs%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.131,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":19.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.353,"w":42.933999999999976,"clr":-1,"A":"left","R":[{"T":"Distributions%20included%20on%20line%206a%20that%20you%20rolled%20over%20to%20another%20Archer%20MSA%20or%20a%20health%20savings%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.04,"w":43.544999999999995,"clr":-1,"A":"left","R":[{"T":"account.%20Also%20include%20any%20excess%20contributions%20(and%20the%20earnings%20on%20those%20excess%20contributions)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.727,"w":39.44999999999998,"clr":-1,"A":"left","R":[{"T":"included%20on%20line%206a%20that%20were%20withdrawn%20by%20the%20due%20date%20of%20your%20return%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":20.727,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.143,"y":20.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":21.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.59,"w":12.874000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206b%20from%20line%206a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":21.59,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":21.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":26.838000000000005,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20qualified%20medical%20expenses%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":22.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.103,"w":16.615000000000002,"clr":-1,"A":"left","R":[{"T":"Taxable%20Archer%20MSA%20distributions.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.716,"y":23.103,"w":25.762,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%207%20from%20line%206c.%20If%20zero%20or%20less%2C%20enter%20-0-.%20Also%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.79,"w":42.258999999999965,"clr":-1,"A":"left","R":[{"T":"include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2021%2C%20or%20Form%201040NR%2C%20line%2021.%20On%20the%20dotted%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.477,"w":21.841000000000008,"clr":-1,"A":"left","R":[{"T":"line%20next%20to%20line%2021%2C%20enter%20%E2%80%9CMSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":24.477,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":25.271,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.291,"w":26.693,"clr":-1,"A":"left","R":[{"T":"If%20any%20of%20the%20distributions%20included%20on%20line%208%20meet%20any%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.883,"y":25.291,"w":14.058000000000005,"clr":-1,"A":"left","R":[{"T":"Exceptions%20to%20the%20Additional%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.989,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"20%25%20Tax","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.047,"y":25.989,"w":13.873000000000008,"clr":-1,"A":"left","R":[{"T":"%20%20(see%20instructions)%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":25.989,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":25.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.909,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.915,"w":9.169000000000002,"clr":-1,"A":"left","R":[{"T":"Additional%2020%25%20tax%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.605,"y":26.915,"w":34.08300000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20Enter%2020%25%20(.20)%20of%20the%20distributions%20included%20on%20line%208%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.29,"w":43.47999999999998,"clr":-1,"A":"left","R":[{"T":"or%20Form%201040NR%2C%20line%2059.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2060%2C%20or%20Form%201040NR%2C%20line%2059%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.977,"w":13.172,"clr":-1,"A":"left","R":[{"T":"enter%20%E2%80%9CMSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":28.977,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.143,"y":29.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"9b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":29.885,"w":24.672000000000004,"clr":-1,"A":"left","R":[{"T":"Section%20B.%20%20Medicare%20Advantage%20MSA%20Distributions.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":46.911,"y":29.885,"w":27.689999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20filing%20jointly%20and%20both%20you%20and%20your%20spouse%20received%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.847999999999999,"y":30.572,"w":45.97299999999996,"clr":-1,"A":"left","R":[{"T":"distributions%20in%202013%20from%20a%20Medicare%20Advantage%20MSA%2C%20complete%20a%20separate%20Section%20B%20for%20each%20spouse","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.617,"y":30.572,"w":2.111,"clr":-1,"A":"left","R":[{"T":"(see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.855,"y":31.259999999999998,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":41.432999999999986,"clr":-1,"A":"left","R":[{"T":"Total%20distributions%20you%20received%20in%202013%20from%20all%20Medicare%20Advantage%20MSAs%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":32.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":26.838000000000005,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20qualified%20medical%20expenses%20(see%20instructions)%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":81.186,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":33.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.602,"w":23.116999999999997,"clr":-1,"A":"left","R":[{"T":"Taxable%20Medicare%20Advantage%20MSA%20distributions.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":42.767,"y":33.602,"w":19.669000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2011%20from%20line%2010.%20If%20zero%20or%20less%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.29,"w":42.441999999999986,"clr":-1,"A":"left","R":[{"T":"enter%20-0-.%20Also%20include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2021%2C%20or%20Form%201040NR%2C%20line%2021.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.977,"w":30.604999999999997,"clr":-1,"A":"left","R":[{"T":"On%20the%20dotted%20line%20next%20to%20line%2021%2C%20enter%20%E2%80%9CMed%20MSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":34.977,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.778,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"13a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.79,"w":27.249000000000002,"clr":-1,"A":"left","R":[{"T":"If%20any%20of%20the%20distributions%20included%20on%20line%2012%20meet%20any%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.743,"y":35.79,"w":14.058000000000005,"clr":-1,"A":"left","R":[{"T":"Exceptions%20to%20the%20Additional%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.488,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"50%25%20Tax","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.047,"y":36.488,"w":13.595000000000006,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions)%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":36.488,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":36.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":37.434,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.415,"w":9.169000000000002,"clr":-1,"A":"left","R":[{"T":"Additional%2050%25%20tax%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.433,"y":37.415,"w":34.63900000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20Enter%2050%25%20(.50)%20of%20the%20distributions%20included%20on%20line%2012%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.79,"w":43.47999999999998,"clr":-1,"A":"left","R":[{"T":"or%20Form%201040NR%2C%20line%2059.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2060%2C%20or%20Form%201040NR%2C%20line%2059%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.478,"w":15.451000000000004,"clr":-1,"A":"left","R":[{"T":"enter%20%E2%80%9CMed%20MSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":39.478,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":39.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"13b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":40.358,"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":40.376,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2024091H","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":40.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":40.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8853","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":40.322,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":81.64,"y":41.112,"w":65.368,"clr":0,"A":"left","R":[{"T":"Form%208853%20page%202","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.18,"y":3.6079999999999997,"w":45.62599999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208853%20and%20its%20separate%20instructions%20is%20available%20at%20www.irs.gov%2Fform8853.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":49.113,"y":7.385,"w":26.874,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20before%20completing%20this%20part.%20If%20you%20are%20filing%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.595,"y":8.072,"w":48.232999999999976,"clr":-1,"A":"left","R":[{"T":"jointly%20and%20both%20you%20and%20your%20spouse%20have%20high%20deductible%20health%20plans%20with%20self-only%20coverage%2C%20complete%20a%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.103,"w":43.56999999999997,"clr":-1,"A":"left","R":[{"T":"are%20subject%20to%20the%20additional%2050%25%20tax.%20Also%20include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2060%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.602,"w":43.56999999999997,"clr":-1,"A":"left","R":[{"T":"are%20subject%20to%20the%20additional%2020%25%20tax.%20Also%20include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2060%2C%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME1","EN":0},"TI":6213,"AM":1024,"x":5.957,"y":5.825,"w":45.706,"h":0.892},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1","EN":0},"TI":6214,"AM":1024,"x":70.648,"y":5.871,"w":28.21,"h":0.892},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3B","EN":0},"TI":6215,"AM":0,"x":65.691,"y":9.788,"w":10.952,"h":0.833,"TU":"Line 1. Total employer contributions to your Archer MSA(s) for 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":6216,"AM":0,"x":84.356,"y":10.828,"w":10.746,"h":1.157,"TU":"Line 2. Archer MSA contributions you made for 2013, including those made from January 1, 2014 through April 15, 2014, that were for 2013. Do not include rollovers (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":6217,"AM":0,"x":84.253,"y":12.038,"w":10.952,"h":0.833,"TU":"Line 3. Limitation from the Line 3 Limitation Chart and Worksheet in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":6218,"AM":0,"x":84.356,"y":13.874,"w":10.746,"h":1.111,"TU":"Line 4. Compensation (see instructions) from the employer maintaining the high deductible health plan. (If self-employed, enter your earned income from the trade or business under which the high deductible health plan was established)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":6219,"AM":0,"x":84.356,"y":16.008,"w":10.746,"h":1.227,"TU":"Line 5. Archer MSA deduction. Enter the smallest of line 2, 3 or 4 here. Also include this amount on Form 1040, line 36, or Form 140NR, line 35. On the dotted line next to Form 1040, line 36, or Form 1040NR, line 35, enter \"MSA\" and the amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":6220,"AM":0,"x":84.253,"y":18.788,"w":10.952,"h":0.833,"TU":"Line 6a. Total distributions you and your spouse received in 2013 from all Archer MSAs (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":6221,"AM":0,"x":84.356,"y":20.524,"w":10.746,"h":1.204,"TU":"Line 6b. Distributions included on line 6a that you rolled over to another Archer MSA or a health savings account. Also, include any excess contributions (and the earnings on those excess contributions) included on line 6a that were withdrawn by the due date of your return (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":6222,"AM":1024,"x":84.253,"y":21.795,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":6223,"AM":0,"x":84.253,"y":22.538,"w":10.952,"h":0.833,"TU":"Line 7. Unreimbursed qualified medical expenses (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":6224,"AM":1024,"x":84.356,"y":24.258,"w":10.746,"h":1.227},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":6226,"AM":0,"x":84.398,"y":28.61,"w":10.663,"h":1.367,"TU":"Line 9b. Additional 20% tax (see instructions). Enter the 20% (.20) of the distributions included on line 8 that are subject to the additional 20% tax. Also include this amount in the total on Form 1040, line 60, or Form 1040NR, line 59. On the dotted line next to Form 1040, line 60, or Form 1040NR, line 59, enter \"MSA\" and the amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":6227,"AM":0,"x":84.253,"y":32.288,"w":10.952,"h":0.833,"TU":"Line 10. Total distributions you received in 2013 from all Medicare Advantage MSAs (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":6228,"AM":0,"x":84.253,"y":33.038,"w":10.952,"h":0.833,"TU":"Line 11. Unreimburse qualified medical expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":6229,"AM":1024,"x":84.356,"y":34.781,"w":10.746,"h":1.204},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":6231,"AM":0,"x":84.398,"y":39.157,"w":10.663,"h":1.313},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F88532"}},"id":{"Id":"Add_F8853_Page_2","EN":0},"TI":6232,"AM":0,"x":93.905,"y":41.244,"w":1.604,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L11BX","EN":0},"TI":6225,"AM":0,"x":77.787,"y":26.201,"w":1.522,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L15AX","EN":0},"TI":6230,"AM":0,"x":77.775,"y":36.692,"w":1.521,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F88532.content.txt b/test/data/fd/form/F88532.content.txt new file mode 100755 index 00000000..b47d2e41 --- /dev/null +++ b/test/data/fd/form/F88532.content.txt @@ -0,0 +1,131 @@ +Form 8853 (2013) +Attachment Sequence No. +39 +Page +2 +Name of policyholder (as shown on Form 1040) +Social security number of +policyholder +a +Section C. Long-Term Care (LTC) Insurance Contracts. +See +Filing Requirements for Section C + +before completing this section. +If more than one Section C is attached, check here + ...................... +a +14a +Name of insured +a +b +Social security number of insured +a +15 +In 2013, did anyone other than you receive payments on a per diem or other periodic basis under a +qualified LTC insurance contract covering the insured or receive accelerated death benefits under a life +insurance policy covering the insured? +....................... +Yes +No +16 +Was the insured a terminally ill individual? +...................... +Yes +No +Note: + +to you because the insured was terminally ill, skip lines 17 through 25 and enter -0- on line 26. +17 +Gross LTC payments received on a per diem or other periodic basis. Enter the total of the +amounts from box 1 of all Forms 1099-LTC you received with respect to the insured on which the +“Per diem” box in box 3 is checked +..................... +17 + +use lines 18 through 26 to figure the taxable amount of benefits paid under an + +LTC insurance contract that is not a +qualified + + + +Form 1040, line 21. +18 +Enter the part of the amount on line 17 that is from +qualified +LTC insurance contracts +.... +18 +19 +Accelerated death benefits received on a per diem or other periodic basis. Do not include any +amounts you received because the insured was terminally ill (see instructions) +....... +19 +20 +Add lines 18 and 19 +.......................... +20 +Note: +If you checked “Yes” on line 15 above, see +Multiple Payees + +in + +the instructions before completing lines 21 through 25. +21 +Multiply $320 by the number of days in the LTC period +...... +21 +22 +Costs incurred for qualified LTC services provided for the insured +during the LTC period (see instructions) +........... +22 +23 +Enter the +larger +of line 21 or line 22 +............ +23 +24 +Reimbursements for qualified LTC services provided for the insured +during the LTC period +................. +24 +Caution: +If you received any reimbursements from LTC contracts + +issued before August 1, 1996, see instructions. +25 +Per diem limitation. Subtract line 24 from line 23 +................. +25 +26 +Taxable payments. +Subtract line 25 from line 20. If zero or less, enter -0-. Also include this + +amount in the total on Form 1040, line 21. On the dotted line next to line 21, enter “LTC” and + +the +amount +.............................. +26 +Form +8853 + (2013) +FIRST NAME +MI +LAST NAME +SUFF +not excludable from your income (for example, if the benefits are not paid for personal injuries or +sickness through accident or health insurance), report the amount not excludable as income on +If "Yes" and the + +only + +payments you received in 2013 were accelerated death benefits that were paid +in the instructions + LTC insurance contract. Instead, if the benefits are +Caution: Do not +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F88532.fields.json b/test/data/fd/form/F88532.fields.json new file mode 100755 index 00000000..df0c67aa --- /dev/null +++ b/test/data/fd/form/F88532.fields.json @@ -0,0 +1 @@ +[{"id":"LTCBX","type":"box","calc":false,"value":""},{"id":"L17BXRB","type":"radio","calc":false,"value":"L17YBX"},{"id":"L17BXRB","type":"radio","calc":false,"value":"L17NBX"},{"id":"L18BXRB","type":"radio","calc":false,"value":"L18YBX"},{"id":"L18BXRB","type":"radio","calc":false,"value":"L18NBX"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"NAME3","type":"alpha","calc":false,"value":""},{"id":"INITIAL","type":"alpha","calc":false,"value":""},{"id":"LASTNAM","type":"alpha","calc":false,"value":""},{"id":"SUFFIX","type":"alpha","calc":false,"value":""},{"id":"SSN3","type":"ssn","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F88532.json b/test/data/fd/form/F88532.json new file mode 100755 index 00000000..c0311d63 --- /dev/null +++ b/test/data/fd/form/F88532.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8853","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":65.674},{"oc":"#221f1f","x":71.734,"y":3.001,"w":1.5,"l":18.648},{"oc":"#221f1f","x":90.297,"y":3.001,"w":1.5,"l":8.748},{"oc":"#221f1f","x":6.147,"y":4.501,"w":1.125,"l":58.249},{"oc":"#221f1f","x":64.309,"y":4.501,"w":1.125,"l":34.736},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":24.709,"y":8.251,"w":0.75,"l":29.786},{"dsh":1,"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.001,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":32.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":64.352,"y":2.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":13.485,"w":0.75,"l":1.531},{"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":84.152,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":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.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":21.735,"w":0.75,"l":7.531},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":7.531},{"oc":"#221f1f","x":65.59,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":24.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":24.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":26.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":26.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":7.531},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.789},{"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":95.29,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c0c1c4","x":80.44,"y":15.001,"w":3.712,"h":3.75,"clr":-1},{"oc":"#c0c1c4","x":61.877,"y":21.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#c0c1c4","x":80.44,"y":21.751,"w":3.712,"h":7.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208853%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.978,"y":2.01,"w":12.634000000000006,"clr":-1,"A":"left","R":[{"T":"Attachment%20Sequence%20No.%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.178,"y":2.01,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","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.657,"w":21.115000000000013,"clr":-1,"A":"left","R":[{"T":"Name%20of%20policyholder%20(as%20shown%20on%20Form%201040)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.79,"y":2.803,"w":11.650000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.79,"y":3.393,"w":5.741000000000001,"clr":-1,"A":"left","R":[{"T":"policyholder%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.697,"y":3.3,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.322,"w":26.560000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20C.%20%20Long-Term%20Care%20(LTC)%20Insurance%20Contracts.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":49.965,"y":4.322,"w":2,"clr":-1,"A":"left","R":[{"T":"See%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":53.516,"y":4.322,"w":16.392000000000003,"clr":-1,"A":"left","R":[{"T":"Filing%20Requirements%20for%20Section%20C%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":15.84,"y":5.01,"w":13.799000000000001,"clr":-1,"A":"left","R":[{"T":"before%20completing%20this%20section.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.84,"w":23.952000000000012,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%20one%20Section%20C%20is%20attached%2C%20check%20here","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.19,"y":5.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":"%20......................%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.932,"y":5.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":7.276999999999999,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"14a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.276999999999999,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20insured%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.153,"y":7.184,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.44,"y":7.276999999999999,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.915,"y":7.276999999999999,"w":15.503000000000004,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20insured%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.896,"y":7.184,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":8.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.103,"w":44.40199999999997,"clr":-1,"A":"left","R":[{"T":"In%202013%2C%20did%20anyone%20other%20than%20you%20receive%20payments%20on%20a%20per%20diem%20or%20other%20periodic%20basis%20under%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.79,"w":46.19099999999995,"clr":-1,"A":"left","R":[{"T":"qualified%20LTC%20insurance%20contract%20covering%20the%20insured%20or%20receive%20accelerated%20death%20benefits%20under%20a%20life%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.477,"w":17.466,"clr":-1,"A":"left","R":[{"T":"insurance%20policy%20covering%20the%20insured%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":9.477,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.852,"y":9.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.368,"y":9.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":10.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":10.34,"w":18.615000000000002,"clr":-1,"A":"left","R":[{"T":"Was%20the%20insured%20a%20terminally%20ill%20individual%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.002,"y":10.34,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.869,"y":10.34,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.277,"y":10.34,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.04,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.728,"w":41.73199999999999,"clr":-1,"A":"left","R":[{"T":"to%20you%20because%20the%20insured%20was%20terminally%20ill%2C%20skip%20lines%2017%20through%2025%20and%20enter%20-0-%20on%20line%2026.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":12.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.603,"w":40.22999999999997,"clr":-1,"A":"left","R":[{"T":"Gross%20LTC%20payments%20received%20on%20a%20per%20diem%20or%20other%20periodic%20basis.%20Enter%20the%20total%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.29,"w":43.73199999999997,"clr":-1,"A":"left","R":[{"T":"amounts%20from%20box%201%20of%20all%20Forms%201099-LTC%20you%20received%20with%20respect%20to%20the%20insured%20on%20which%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.977,"w":16.041000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CPer%20diem%E2%80%9D%20box%20in%20box%203%20is%20checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":13.977,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":14.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.662,"y":14.978,"w":34.806999999999995,"clr":-1,"A":"left","R":[{"T":"use%20lines%2018%20through%2026%20to%20figure%20the%20taxable%20amount%20of%20benefits%20paid%20under%20an%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.665,"w":16.153,"clr":-1,"A":"left","R":[{"T":"LTC%20insurance%20contract%20that%20is%20not%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.298,"y":15.665,"w":4.112,"clr":-1,"A":"left","R":[{"T":"qualified","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.727,"w":8.596000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2021.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.8,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":22.823000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20part%20of%20the%20amount%20on%20line%2017%20that%20is%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.241,"y":18.59,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"qualified%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.279,"y":18.59,"w":11.224,"clr":-1,"A":"left","R":[{"T":"LTC%20insurance%20contracts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":18.59,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.284,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":42.00799999999997,"clr":-1,"A":"left","R":[{"T":"Accelerated%20death%20benefits%20received%20on%20a%20per%20diem%20or%20other%20periodic%20basis.%20Do%20not%20include%20any%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.977,"w":34.913000000000004,"clr":-1,"A":"left","R":[{"T":"amounts%20you%20received%20because%20the%20insured%20was%20terminally%20ill%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":19.977,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2018%20and%2019","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":20.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.54,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.273,"y":21.54,"w":19.243,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20%E2%80%9CYes%E2%80%9D%20on%20line%2015%20above%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.29,"y":21.54,"w":7.503,"clr":-1,"A":"left","R":[{"T":"Multiple%20Payees","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.375,"y":21.54,"w":0.778,"clr":-1,"A":"left","R":[{"T":"in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.228,"w":24.338000000000008,"clr":-1,"A":"left","R":[{"T":"the%20instructions%20before%20completing%20lines%2021%20through%2025.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":24.602000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20%24320%20by%20the%20number%20of%20days%20in%20the%20LTC%20period%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":23.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.784,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.79,"w":29.409999999999997,"clr":-1,"A":"left","R":[{"T":"Costs%20incurred%20for%20qualified%20LTC%20services%20provided%20for%20the%20insured%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.478,"w":17.892000000000003,"clr":-1,"A":"left","R":[{"T":"during%20the%20LTC%20period%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":24.478,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":24.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.222,"y":25.34,"w":3.057,"clr":-1,"A":"left","R":[{"T":"larger%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.632,"y":25.34,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%2021%20or%20line%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":25.34,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.034,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.04,"w":30.43099999999999,"clr":-1,"A":"left","R":[{"T":"Reimbursements%20for%20qualified%20LTC%20services%20provided%20for%20the%20insured%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.728,"w":10.058000000000002,"clr":-1,"A":"left","R":[{"T":"during%20the%20LTC%20period%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":26.728,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.623,"y":26.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.54,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.82,"y":27.54,"w":24.704000000000008,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20any%20reimbursements%20from%20LTC%20contracts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.228,"w":20.874000000000013,"clr":-1,"A":"left","R":[{"T":"issued%20before%20August%201%2C%201996%2C%20see%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":21.729000000000006,"clr":-1,"A":"left","R":[{"T":"Per%20diem%20limitation.%20Subtract%20line%2024%20from%20line%2023%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":29.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.853,"w":9.225999999999999,"clr":-1,"A":"left","R":[{"T":"Taxable%20payments.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.806,"y":29.853,"w":31.431000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20from%20line%2020.%20If%20zero%20or%20less%2C%20enter%20-0-.%20Also%20include%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.54,"w":41.31299999999999,"clr":-1,"A":"left","R":[{"T":"amount%20in%20the%20total%20on%20Form%201040%2C%20line%2021.%20On%20the%20dotted%20line%20next%20to%20line%2021%2C%20enter%20%E2%80%9CLTC%E2%80%9D%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.224,"y":30.54,"w":1.686,"clr":-1,"A":"left","R":[{"T":"the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.227,"w":3.6690000000000005,"clr":-1,"A":"left","R":[{"T":"amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":31.227,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.154,"y":32.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":32.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8853","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":32.072,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":25.875,"y":6.698,"w":42.39200000000001,"clr":0,"A":"left","R":[{"T":"FIRST%20NAME","S":2,"TS":[0,10,0,0]}]},{"x":36.732,"y":6.698,"w":7.777,"clr":0,"A":"left","R":[{"T":"MI","S":2,"TS":[0,10,0,0]}]},{"x":40.971,"y":6.688,"w":39.676,"clr":0,"A":"left","R":[{"T":"LAST%20NAME","S":2,"TS":[0,10,0,0]}]},{"x":51.461,"y":6.709,"w":18.277,"clr":0,"A":"left","R":[{"T":"SUFF","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.353,"w":43.00399999999998,"clr":-1,"A":"left","R":[{"T":"not%20excludable%20from%20your%20income%20(for%20example%2C%20if%20the%20benefits%20are%20not%20paid%20for%20personal%20injuries%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.04,"w":42.50899999999997,"clr":-1,"A":"left","R":[{"T":"sickness%20through%20accident%20or%20health%20insurance)%2C%20report%20the%20amount%20not%20excludable%20as%20income%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.102,"y":11.04,"w":6.881,"clr":-1,"A":"left","R":[{"T":"If%20%22Yes%22%20and%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.973,"y":11.04,"w":2.056,"clr":-1,"A":"left","R":[{"T":"only","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":28.24,"y":11.04,"w":35.129,"clr":-1,"A":"left","R":[{"T":"payments%20you%20received%20in%202013%20were%20accelerated%20death%20benefits%20that%20were%20paid%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.773,"y":4.322,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":39.14,"y":15.665,"w":23.005,"clr":-1,"A":"left","R":[{"T":"%20LTC%20insurance%20contract.%20Instead%2C%20if%20the%20benefits%20are%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.978,"w":7.498999999999999,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20Do%20not","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":6233,"AM":1024,"x":6.107,"y":3.612,"w":58.059,"h":0.892},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":6234,"AM":1024,"x":72.969,"y":3.715,"w":26.038,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME3","EN":0},"TI":6236,"AM":0,"x":24.709,"y":7.657,"w":11.311,"h":0.833,"TU":"Line 14a. Name of insured. First Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INITIAL","EN":0},"TI":6237,"AM":0,"x":36.233,"y":7.62,"w":3.15,"h":0.833,"TU":"Middle intitial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LASTNAM","EN":0},"TI":6238,"AM":0,"x":39.657,"y":7.64,"w":12.06,"h":0.833,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SUFFIX","EN":0},"TI":6239,"AM":0,"x":51.955,"y":7.647,"w":3.3,"h":0.833,"TU":"Suffix."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":6240,"AM":0,"x":83.934,"y":7.448,"w":15.108,"h":0.833,"TU":"Line 14b. Social security number of insured."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":6245,"AM":0,"x":84.336,"y":13.94,"w":10.787,"h":1.045,"TU":"Line 17. Gross LTC payments received on a per diem or other periodic basis. Enter the total of the amounts from box 1 of all Forms 1099-LTC you received with respect to the insured on which the \"Per Diem\" box in box 2 is checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":6246,"AM":0,"x":84.398,"y":18.32,"w":10.663,"h":1.165,"TU":"Line 18. Enter the part of the amount on line 17 that is from qualified LTC insurance contracts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":6247,"AM":0,"x":84.336,"y":19.861,"w":10.787,"h":1.117,"TU":"Line 19. Accelerated death benefits received on a per diem or other periodic basis. Do not include any amounts you received because the insured was terminally ill (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":6248,"AM":1024,"x":84.253,"y":21.045,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":6249,"AM":0,"x":65.794,"y":22.874,"w":10.746,"h":1.111,"TU":"Line 21. Multiply $320 by the number of days in the LTC period."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":6250,"AM":0,"x":65.773,"y":24.407,"w":10.787,"h":1.078,"TU":"Line 22. Costs incurred for qualified LTC services provided for the insured during the LTC period (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":6251,"AM":1024,"x":65.691,"y":25.538,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":6252,"AM":0,"x":65.773,"y":26.727,"w":10.787,"h":1,"TU":"Line 24. Reimbursements for qualified LTC services provided for the insured during the LTC period."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":6253,"AM":1024,"x":84.398,"y":28.823,"w":10.663,"h":1.155,"TU":"Line 25. Per diem limitation. Subtract line 24 from line 23."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":6254,"AM":1024,"x":84.356,"y":31.086,"w":10.746,"h":1.134,"TU":"Line 26. Taxable payments. Subtract line 25 from line 20. If zero or less, enter zero. Also include this amount in the total on Form 1040, line 21. On the dotted line next to line 21, enter \"LTC\" and the amount."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LTCBX","EN":0},"TI":6235,"AM":0,"x":96.192,"y":5.928,"w":1.522,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L17YBX","EN":0},"TI":6241,"AM":0,"x":86.584,"y":9.737,"w":1.464,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L17NBX","EN":0},"TI":6242,"AM":0,"x":94.009,"y":9.737,"w":1.464,"h":0.833,"checked":false}],"id":{"Id":"L17BXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18YBX","EN":0},"TI":6243,"AM":0,"x":86.584,"y":10.487,"w":1.464,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18NBX","EN":0},"TI":6244,"AM":0,"x":94.009,"y":10.487,"w":1.464,"h":0.833,"checked":false}],"id":{"Id":"L18BXRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8859.content.txt b/test/data/fd/form/F8859.content.txt new file mode 100755 index 00000000..1329cf6d --- /dev/null +++ b/test/data/fd/form/F8859.content.txt @@ -0,0 +1,124 @@ +Form + +8859 +Department of the Treasury +Internal Revenue Service +Carryforward of the District of Columbia +First-Time Homebuyer Credit +a + +Information about Form 8859 and its instructions is at +www.irs.gov/form8859. + +a + +Attach to Form 1040 or Form 1040NR. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +106 +Name(s) shown on return +Your social security number +Before you begin, + figure the amounts of any of the following credits you are claiming: Adoption credit, mortgage interest +credit, alternative motor vehicle credit, qualified plug-in electric drive motor vehicle credit, and credit for the elderly or +disabled. +1 +Credit carryforward from 2012. Enter the amount from line 10 of your 2012 Form 8859 +1 +2 +Limitation based on tax liability. Enter the amount from the Tax Liability Limit +Worksheet in the instructions +..................... +2 +3 + +Current year credit. +Enter the + smaller +of line 1 or line 2. Also include this amount on +Form 1040, + +line 53, or Form 1040NR, line 50. Check box + c +on that line and enter +“8859” in the space next + +to that box +.................. +3 +4 +Credit carryforward to 2014. +Subtract line 3 from line 1 +........... +4 +General Instructions +Future Developments +For the latest information about developments related to +Form 8859 and its instructions, such as legislation enacted +after they were published, go to +www.irs.gov/form8859. +Purpose of Form +Use Form 8859 to claim a carryforward of the District of +Columbia first-time homebuyer credit from 2012. +Line 2 +Complete the following worksheet to determine the amount +to enter on line 2 of Form 8859. +Tax Liability Limit Worksheet—Line 2 +1. + +Enter the amount from Form 1040, +line 46; or Form 1040NR, line 44 . +1. +2. + + + + + + + + +Form 1040 filers: +Enter the total of +any amounts from Form 1040, lines +47 through 50; line 12 of the Line 11 +Worksheet in Pub. 972*, Form 5695, +line 30; Form 8396, line 9; Form +8839, line 16; Form 8910, line 15; +Form 8936, line 23; and Schedule R +(Form 1040A or 1040), line 22. + + +Form 1040NR filers: +Enter the total +of the amounts from Form 1040NR, +lines 45 through 47; line 12 of the +Line 11 Worksheet in Pub. 972*; +Form 5695, line 30; Form 8396, line +9; Form 8839, line 16; Form 8910, +line 15; and Form 8936, line 23 . . +2. +3. + + + +Subtract line 2 from line 1. Enter this +amount on Form 8859, line 2. If zero +or less, enter -0- here and on Form +8859, lines 2 and 3 . . . . . . +3. +*If you are not claiming the child tax credit, you do not need +Pub. 972. +Line 4 +Any unused credit shown on line 4 can be carried forward +until it has been used. You cannot carry the unused credit +back to prior years. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 24779G +Form +8859 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8859.fields.json b/test/data/fd/form/F8859.fields.json new file mode 100755 index 00000000..1622b4fc --- /dev/null +++ b/test/data/fd/form/F8859.fields.json @@ -0,0 +1 @@ +[{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"LN12AMT","type":"number","calc":false,"value":""},{"id":"TOTLNAMT","type":"number","calc":false,"value":""},{"id":"CRDALLOW","type":"number","calc":true,"value":""},{"id":"CRDFORWR","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8859.json b/test/data/fd/form/F8859.json new file mode 100755 index 00000000..ed16b0fb --- /dev/null +++ b/test/data/fd/form/F8859.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8859","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.276,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":5.276,"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.276,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":92.899},{"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":79.159,"y":12.001,"w":0.75,"l":3.798},{"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":79.159,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":14.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":15.751,"w":0.75,"l":3.18},{"oc":"#221f1f","x":11.097,"y":15.752,"w":0.75,"l":68.149},{"oc":"#221f1f","x":79.159,"y":15.752,"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":54.409,"y":17.188,"w":0.75,"l":44.636},{"oc":"#221f1f","x":86.584,"y":18.935,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":29.497,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":32.31,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.409,"y":32.56,"w":1.5,"l":44.636},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.172,"y":47.251,"w":1.5,"l":33.498},{"oc":"#221f1f","x":86.584,"y":47.251,"w":1.5,"l":12.461}],"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":79.202,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.986,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.202,"y":11.986,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.486,"w":0.75,"l":0.789},{"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":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}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.697,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.225,"y":2.697,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8859","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.838,"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.338,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":30.907,"y":2.101,"w":18.420000000000005,"clr":-1,"A":"left","R":[{"T":"Carryforward%20of%20the%20District%20of%20Columbia%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":37.018,"y":2.976,"w":12.739999999999998,"clr":-1,"A":"left","R":[{"T":"First-Time%20Homebuyer%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":26.413,"y":3.564,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.683,"y":3.6580000000000004,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208859%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.123,"y":3.6580000000000004,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8859.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":39.372,"y":4.189,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.642,"y":4.283,"w":18.226000000000003,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20","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.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8819999999999997,"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.328,"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.328,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"106","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":5.001,"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":6.635,"w":8.389000000000001,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%2C","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.358,"y":6.635,"w":45.85899999999997,"clr":-1,"A":"left","R":[{"T":"%20figure%20the%20amounts%20of%20any%20of%20the%20following%20credits%20you%20are%20claiming%3A%20Adoption%20credit%2C%20mortgage%20interest%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.321999999999999,"w":52.579999999999956,"clr":-1,"A":"left","R":[{"T":"credit%2C%20alternative%20motor%20vehicle%20credit%2C%20qualified%20plug-in%20electric%20drive%20motor%20vehicle%20credit%2C%20and%20credit%20for%20the%20elderly%20or%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.01,"w":4.074999999999999,"clr":-1,"A":"left","R":[{"T":"disabled.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":9.51,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.51,"w":38.862999999999985,"clr":-1,"A":"left","R":[{"T":"Credit%20carryforward%20from%202012.%20Enter%20the%20amount%20from%20line%2010%20of%20your%202012%20Form%208859%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":9.572,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":10.322,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.967,"y":10.322,"w":34.38000000000001,"clr":-1,"A":"left","R":[{"T":"Limitation%20based%20on%20tax%20liability.%20Enter%20the%20amount%20from%20the%20Tax%20Liability%20Limit%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.958,"y":11.01,"w":13.281000000000004,"clr":-1,"A":"left","R":[{"T":"Worksheet%20in%20the%20instructions%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.806,"y":11.01,"w":25.199999999999992,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":11.01,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":11.885,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.885,"w":9.557000000000002,"clr":-1,"A":"left","R":[{"T":"Current%20year%20credit.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.615,"y":11.885,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.754,"y":11.885,"w":4.052,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":41.818,"y":11.885,"w":20.58000000000001,"clr":-1,"A":"left","R":[{"T":"of%20line%201%20or%20line%202.%20Also%20include%20this%20amount%20on%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.884,"y":12.572,"w":5.392000000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":21.491,"y":12.572,"w":19.784000000000002,"clr":-1,"A":"left","R":[{"T":"line%2053%2C%20or%20Form%201040NR%2C%20line%2050.%20Check%20box","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":58.068,"y":12.572,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"%20c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":60.295,"y":12.572,"w":9.744000000000002,"clr":-1,"A":"left","R":[{"T":"on%20that%20line%20and%20enter%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.884,"y":13.26,"w":11.004000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%9C8859%E2%80%9D%20in%20the%20space%20next","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":30.275,"y":13.26,"w":5.131,"clr":-1,"A":"left","R":[{"T":"to%20that%20box%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":40.997,"y":13.26,"w":21.599999999999994,"clr":-1,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":13.26,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.459,"y":14.76,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.76,"w":13.668000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20carryforward%20to%202014.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.381,"y":14.76,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%201%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":55.44,"y":14.76,"w":13.2,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.331,"y":14.76,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":16.251,"w":9.683000000000002,"clr":-1,"A":"left","R":[{"T":"General%20Instructions","S":-1,"TS":[0,17,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.474,"w":10.222999999999999,"clr":-1,"A":"left","R":[{"T":"Future%20Developments","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":18.425,"w":25.432000000000006,"clr":-1,"A":"left","R":[{"T":"For%20the%20latest%20information%20about%20developments%20related%20to%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.066,"w":26.526000000000007,"clr":-1,"A":"left","R":[{"T":"Form%208859%20and%20its%20instructions%2C%20such%20as%20legislation%20enacted%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.706,"w":14.446000000000003,"clr":-1,"A":"left","R":[{"T":"after%20they%20were%20published%2C%20go%20to%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":29.527,"y":19.706,"w":10.388000000000003,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8859.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":20.833,"w":7.980999999999999,"clr":-1,"A":"left","R":[{"T":"Purpose%20of%20Form","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":21.784,"w":25.132,"clr":-1,"A":"left","R":[{"T":"Use%20Form%208859%20to%20claim%20a%20carryforward%20of%20the%20District%20of%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":22.425,"w":21.78500000000001,"clr":-1,"A":"left","R":[{"T":"Columbia%20first-time%20homebuyer%20credit%20from%202012.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":23.552,"w":2.852,"clr":-1,"A":"left","R":[{"T":"Line%202","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":24.503,"w":26.783,"clr":-1,"A":"left","R":[{"T":"Complete%20the%20following%20worksheet%20to%20determine%20the%20amount%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":25.144,"w":14.042000000000003,"clr":-1,"A":"left","R":[{"T":"to%20enter%20on%20line%202%20of%20Form%208859.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":54.202,"y":16.162,"w":17.604000000000003,"clr":-1,"A":"left","R":[{"T":"Tax%20Liability%20Limit%20Worksheet%E2%80%94Line%202","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":54.202,"y":17.359,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1.%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":17.359,"w":15.711000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":17.984,"w":14.672000000000006,"clr":-1,"A":"left","R":[{"T":"line%2046%3B%20or%20Form%201040NR%2C%20line%2044%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":82.251,"y":17.984,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":85.015,"y":18.046,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":54.203,"y":19.171,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":19.171,"w":8.184000000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040%20filers%3A%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":70.041,"y":19.171,"w":7.705000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":19.797,"w":16.081000000000007,"clr":-1,"A":"left","R":[{"T":"any%20amounts%20from%20Form%201040%2C%20lines%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":20.422,"w":16.378000000000007,"clr":-1,"A":"left","R":[{"T":"47%20through%2050%3B%20line%2012%20of%20the%20Line%2011%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":21.047,"w":16.452000000000005,"clr":-1,"A":"left","R":[{"T":"Worksheet%20in%20Pub.%20972*%2C%20Form%205695%2C%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":21.672,"w":14.414000000000003,"clr":-1,"A":"left","R":[{"T":"line%2030%3B%20Form%208396%2C%20line%209%3B%20Form%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":22.297,"w":15.138000000000009,"clr":-1,"A":"left","R":[{"T":"8839%2C%20line%2016%3B%20Form%208910%2C%20line%2015%3B%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":22.923,"w":16.266000000000005,"clr":-1,"A":"left","R":[{"T":"Form%208936%2C%20line%2023%3B%20and%20Schedule%20R%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":23.548,"w":16.508000000000006,"clr":-1,"A":"left","R":[{"T":"(Form%201040A%20or%201040)%2C%20line%2022.%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":24.798,"w":9.647000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%20filers%3A%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":72.43,"y":24.798,"w":6.557000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":25.424,"w":16.136000000000006,"clr":-1,"A":"left","R":[{"T":"of%20the%20amounts%20from%20Form%201040NR%2C%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":26.049,"w":15.154000000000007,"clr":-1,"A":"left","R":[{"T":"lines%2045%20through%2047%3B%20line%2012%20of%20the%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":26.674,"w":14.599000000000004,"clr":-1,"A":"left","R":[{"T":"Line%2011%20Worksheet%20in%20Pub.%20972*%3B%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":27.299,"w":16.082000000000008,"clr":-1,"A":"left","R":[{"T":"Form%205695%2C%20line%2030%3B%20Form%208396%2C%20line%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":27.924,"w":15.65700000000001,"clr":-1,"A":"left","R":[{"T":"9%3B%20Form%208839%2C%20line%2016%3B%20Form%20%208910%2C%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":28.55,"w":14.04400000000001,"clr":-1,"A":"left","R":[{"T":"line%2015%3B%20and%20Form%208936%2C%20line%2023%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":80.189,"y":28.55,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":82.252,"y":28.55,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":85.015,"y":28.609,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":54.203,"y":29.484,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"3.%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":29.484,"w":16.523000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20Enter%20this%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":30.11,"w":16.431000000000008,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Form%208859%2C%20line%202.%20If%20zero%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":30.735,"w":15.893000000000004,"clr":-1,"A":"left","R":[{"T":"or%20less%2C%20enter%20-0-%20here%20and%20on%20Form%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.678,"y":31.36,"w":8.727000000000002,"clr":-1,"A":"left","R":[{"T":"8859%2C%20lines%202%20and%203%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":71.939,"y":31.36,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":74.002,"y":31.36,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":76.064,"y":31.36,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":78.126,"y":31.36,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":80.188,"y":31.36,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":82.251,"y":31.36,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":85.015,"y":31.421,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":54.202,"y":32.484,"w":26.914,"clr":-1,"A":"left","R":[{"T":"*If%20you%20are%20not%20claiming%20the%20child%20tax%20credit%2C%20you%20do%20not%20need%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":56.264,"y":33.124,"w":4.299000000000001,"clr":-1,"A":"left","R":[{"T":"Pub.%20972.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":54.202,"y":34.501,"w":2.852,"clr":-1,"A":"left","R":[{"T":"Line%204","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":54.202,"y":35.452,"w":26.039999999999992,"clr":-1,"A":"left","R":[{"T":"Any%20unused%20credit%20shown%20on%20line%204%20can%20be%20carried%20forward%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":54.202,"y":36.093,"w":26.081999999999997,"clr":-1,"A":"left","R":[{"T":"until%20it%20has%20been%20used.%20You%20cannot%20carry%20the%20unused%20credit%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":54.202,"y":36.734,"w":8.649000000000001,"clr":-1,"A":"left","R":[{"T":"back%20to%20prior%20years.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"w":33.26,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.147,"y":47.126,"w":7.521000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2024779G","S":2,"TS":[0,10,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":"8859","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":47.072,"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":"TPNAME","EN":0},"TI":6255,"AM":1024,"x":6.229,"y":5.836,"w":72.848,"h":0.899,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":6256,"AM":1024,"x":79.344,"y":5.836,"w":19.635,"h":0.899,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LN12AMT","EN":0},"TI":6257,"AM":0,"x":83.098,"y":9.158,"w":12.024,"h":1.327,"TU":"Line 1. Credit carryforward from 2012. Enter the amount from line 10 of your 2012 Form 8859."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTLNAMT","EN":0},"TI":6258,"AM":0,"x":83.098,"y":10.651,"w":12.024,"h":1.334,"TU":"Line 2. Limitation based on tax liability. Enter the amount from the Tax Liability Limit Worksheet in the instuctions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDALLOW","EN":0},"TI":6259,"AM":1024,"x":83.119,"y":12.511,"w":11.983,"h":1.717},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDFORWR","EN":0},"TI":6260,"AM":1024,"x":83.098,"y":14.408,"w":12.024,"h":1.327}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8862.content.txt b/test/data/fd/form/F8862.content.txt new file mode 100755 index 00000000..893c37f7 --- /dev/null +++ b/test/data/fd/form/F8862.content.txt @@ -0,0 +1,263 @@ +and +Do not +Form + +8862 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +Information To Claim Earned Income Credit +After Disallowance +a + +Attach to your tax return. +a + +. +OMB No. 1545-0074 +Attachment +Sequence No. +43A +Name(s) shown on return +Your social security number +Before you begin: + +See your tax return instructions or +Pub. 596, +Earned Income Credit (EIC), for the year for which you are filing +this form to make sure you can take the earned income credit (EIC) +to find out who is a qualifying child. + +Schedule EIC + + +reduced or disallowed in the earlier year was because it was determined that a child listed on + Schedule +EIC +was not your qualifying child. +Part I +All Filers +1 +Enter the year for which you are filing this form (for example, 2012) +............ +a +2 +If the +only +reason your EIC was reduced or disallowed in the earlier year was because you incorrectly +reported your earned income or investment income, check “Yes.” Otherwise, check “No” +.... +a +Yes +No +Caution. +If you checked “Yes,” +stop. Do not + +EIC. If you checked “No,” continue. +3 +Could you (or your spouse if filing jointly) be claimed as a qualifying child of another taxpayer for the year +shown on line 1? See the instructions before answering +............... +a +Yes +No +Caution. +If you checked “Yes,” +stop. +You cannot take the EIC. If you checked “No,” continue. + +Part II +Filers With a Qualifying Child or Children +shown on line 1 above. +4 +number of days +a +Child 1 +a +b Child 2 + +a +c Child 3 + +a +Caution. +If you entered less than +183 +(184 if the year on line 1 is a leap year) for any child, you cannot take the EIC based on + +5 +If your child was born or died during the year shown on line 1, enter the month and day the child was born and/or died. +Otherwise, skip this line. +a +Child 1 +a +(1) + Month and day of birth (MM/DD) +a +/ +(2) + +Month and day of death (MM/DD) +a +/ +b +Child 2 +a +(1) + Month and day of birth (MM/DD) +a +/ +(2) + +Month and day of death (MM/DD) +a +/ +c +Child 3 +a +(1) + Month and day of birth (MM/DD) +a +/ +(2) + +Month and day of death (MM/DD) +a +/ +6 +Enter the address where you and the child lived together during the year shown on line 1. If you lived with the child at more +than one address during the year, attach a list of the addresses where you lived: +a +Child 1 +a +Number and street +City or town, state, and ZIP code +b +Child 2 +a +If same as shown for child 1, check this box. + +a +Otherwise, enter below: +Number and street +City or town, state, and ZIP code +c +If same as shown for child 1, check this box. + +a +Or if same as shown for child 2 (and +this is different from address shown for child 1), check this box. +a +Otherwise, enter below: +Number and street +City or town, state, and ZIP code +7 +Did any other person (except your spouse, if filing jointly, and your dependents under age 19) live with +child 1, child 2, or child 3 for more than half the year shown on line 1? +........... +a +Yes +No +If “Yes,” enter that person’s name and relationship to the child below. If more than one other person lived +with the child for more than half the year, attach a list of each person’s name and relationship to the child: +a +Other person living with child 1: +Name +Relationship to child 1 +b +Other person living with child 2: +If same as shown for child 1, check this box. +a +Otherwise, enter below: +Name +Relationship to child 2 +c +Other person living with child 3: +If same as shown for child 1, check this box. + +a +Or if same as shown +for child 2 (and this is different from the person living with child 1), check this box. + +a +Otherwise, enter below: +Name +Relationship to child 3 +Caution. +The IRS may ask you to provide additional information to verify your eligibility to claim the EIC. +For Paperwork Reduction Act Notice, see page 3. +Cat. No. 25145E +Form +8862 +(Rev. 12-2012) +Child 3 +a +Zip Code +State +Zip Code +State +Zip Code +State +that child, unless the special rule for a child who was born or died during the year shown on line 1 applies. See the instructions. + +and + +Note. Child 1, Child 2, + +Child 3 + +Schedule EIC + +Information about Form 8862 and its instructions is at www.irs.gov/form8862 +If you have a qualifying child, complete +before you fill in this form. +file this form if you are taking the EIC without a qualifying child +the only reason your EIC was +fill in the rest of this form. But you must attach it to your tax return to take the +and + +are the same children you listed as Child 1, Child 2, and Child 3 on + +for the year +Enter the + +each child lived with you in the United States during the year shown on line 1 above: +----------------Page (0) Break---------------- +Form 8862 (Rev. 12-2012) +Page +2 +Part III +Filers Without a Qualifying Child +8 +number of days +a +instructions. +9 +number of days +lived in the United States +.......................... +a +instructions. +Form +8862 +(Rev. 12-2012) +If you entered less than + +You cannot take the EIC. See the +If married filing a joint return, enter the + +during the year shown on line 1 that your spouse +If you entered less than + +You cannot take the EIC. See the +Enter the + +during the year shown on line 1 that you lived in the United States . . . +Caution. + +183 (184 if the year on line 1 is a leap year), stop. +Caution. + +183 (184 if the year on line 1 is a leap year), stop. +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8862.fields.json b/test/data/fd/form/F8862.fields.json new file mode 100755 index 00000000..dd49553e --- /dev/null +++ b/test/data/fd/form/F8862.fields.json @@ -0,0 +1 @@ +[{"id":"INCXRB","type":"radio","calc":false,"value":"INCXY"},{"id":"INCXRB","type":"radio","calc":false,"value":"INCXN"},{"id":"L2RB","type":"radio","calc":false,"value":"L2Y"},{"id":"L2RB","type":"radio","calc":false,"value":"L2N"},{"id":"CH2SAMEX","type":"box","calc":false,"value":""},{"id":"CH3SAMEX","type":"box","calc":false,"value":""},{"id":"A1RB","type":"radio","calc":false,"value":"OTHERY"},{"id":"A1RB","type":"radio","calc":false,"value":"OTHERN"},{"id":"OTHSAME","type":"box","calc":false,"value":""},{"id":"OTHSAME2","type":"box","calc":false,"value":""},{"id":"OTHSAME3","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"date","calc":false,"value":""},{"id":"LINE4_CHILDUS_1_","type":"percent","calc":false,"value":""},{"id":"LINE4_CHILDUS_2_","type":"percent","calc":false,"value":""},{"id":"LINE4_CHILDUS_3_","type":"percent","calc":false,"value":""},{"id":"LINE5_CHDOB_1_","type":"date","calc":false,"value":""},{"id":"LINE5_CHDOD_1_","type":"date","calc":false,"value":""},{"id":"LINE5_CHDOB_2_","type":"date","calc":false,"value":""},{"id":"LINE5_CHDOD_2_","type":"date","calc":false,"value":""},{"id":"LINE5_CHDOB_3_","type":"date","calc":false,"value":""},{"id":"LINE5_CHDOD_3_","type":"date","calc":false,"value":""},{"id":"L6A_CH1ADDR_1_","type":"alpha","calc":false,"value":""},{"id":"L6A_CH1CITY_1_","type":"alpha","calc":false,"value":""},{"id":"L6A_CH1ST_1_","type":"alpha","calc":false,"value":""},{"id":"L6A_CH1ZIP_1_","type":"zip","calc":false,"value":""},{"id":"L6B_CH2ADDR_1_","type":"alpha","calc":false,"value":""},{"id":"L6B_CH2CITY_1_","type":"alpha","calc":false,"value":""},{"id":"L6B_CH2ST_1_","type":"alpha","calc":false,"value":""},{"id":"L6B_CH2ZIP_1_","type":"zip","calc":false,"value":""},{"id":"L6C_CH3ADDR_1_","type":"alpha","calc":false,"value":""},{"id":"L6C_CH3CITY_1_","type":"alpha","calc":false,"value":""},{"id":"L6C_CH3ST_1_","type":"alpha","calc":false,"value":""},{"id":"L6C_CH3ZIP_1_","type":"zip","calc":false,"value":""},{"id":"LINE9A_OTHNAME1_1_","type":"alpha","calc":false,"value":""},{"id":"LINE9A_OTHREL1_1_","type":"alpha","calc":false,"value":""},{"id":"LINE9B_OTHNAME2_1_","type":"alpha","calc":false,"value":""},{"id":"LINE9B_OTHREL2_1_","type":"alpha","calc":false,"value":""},{"id":"LINE7C_OTHNAME3_1_","type":"alpha","calc":false,"value":""},{"id":"LINE7C_OTHREL3_1_","type":"alpha","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"DAYSINUS","type":"percent","calc":false,"value":""},{"id":"DAYSSPUS","type":"percent","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8862.json b/test/data/fd/form/F8862.json new file mode 100755 index 00000000..6886ff95 --- /dev/null +++ b/test/data/fd/form/F8862.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8862 (Rev. December 2012)","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.954,"y":5.251,"w":1.5,"l":63.242},{"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":71.861},{"oc":"#221f1f","x":77.922,"y":6.751,"w":1.125,"l":21.123},{"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":85.39,"y":13.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":12.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":87.547,"y":13.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":87.547,"y":12.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":13.501,"w":0.75,"l":2.157},{"oc":"#221f1f","x":89.748,"y":13.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":89.748,"y":12.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":13.501,"w":0.75,"l":4.358},{"oc":"#221f1f","x":91.909,"y":13.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":91.909,"y":12.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":13.501,"w":0.75,"l":6.52},{"oc":"#221f1f","x":6.147,"y":18.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":19.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":19.802,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":19.802,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":21.959,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":21.959,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":19.802,"y":22.501,"w":0.75,"l":2.157},{"oc":"#221f1f","x":24.033,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":24.033,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":19.802,"y":22.501,"w":0.75,"l":4.231},{"oc":"#221f1f","x":43.315,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":43.315,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":45.471,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":45.471,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":43.315,"y":22.501,"w":0.75,"l":2.157},{"oc":"#221f1f","x":47.546,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":47.546,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":43.315,"y":22.501,"w":0.75,"l":4.232},{"oc":"#221f1f","x":66.827,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":66.827,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":68.984,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":68.984,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":66.827,"y":22.501,"w":0.75,"l":2.157},{"oc":"#221f1f","x":71.059,"y":22.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":71.059,"y":21.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":66.827,"y":22.501,"w":0.75,"l":4.231},{"oc":"#221f1f","x":47.027,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":47.027,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":49.057,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":49.057,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":47.027,"y":26.251,"w":0.75,"l":2.03},{"oc":"#221f1f","x":51.977,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":51.977,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":54.007,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":54.007,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":51.977,"y":26.251,"w":0.75,"l":2.03},{"oc":"#221f1f","x":90.34,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":90.34,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":92.37,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":92.37,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":90.34,"y":26.251,"w":0.75,"l":2.03},{"oc":"#221f1f","x":95.29,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":95.29,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":97.283,"y":26.251,"w":0.75,"l":1.719},{"oc":"#221f1f","x":97.283,"y":25.626,"w":0.75,"l":1.719},{"oc":"#221f1f","x":95.29,"y":26.251,"w":0.75,"l":1.994},{"oc":"#221f1f","x":47.027,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":47.027,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":49.057,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":49.057,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":47.027,"y":27.001,"w":0.75,"l":2.03},{"oc":"#221f1f","x":51.977,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":51.977,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":54.007,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":54.007,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":51.977,"y":27.001,"w":0.75,"l":2.03},{"oc":"#221f1f","x":90.34,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":90.34,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":92.37,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":92.37,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":90.34,"y":27.001,"w":0.75,"l":2.03},{"oc":"#221f1f","x":95.29,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":95.29,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":97.283,"y":27.001,"w":0.75,"l":1.719},{"oc":"#221f1f","x":97.283,"y":26.376,"w":0.75,"l":1.719},{"oc":"#221f1f","x":95.29,"y":27.001,"w":0.75,"l":1.994},{"oc":"#221f1f","x":47.027,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":47.027,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":49.057,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":49.057,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":47.027,"y":27.751,"w":0.75,"l":2.03},{"oc":"#221f1f","x":51.977,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":51.977,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":54.007,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":54.007,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":51.977,"y":27.751,"w":0.75,"l":2.03},{"oc":"#221f1f","x":90.34,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":90.34,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":92.37,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":92.37,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":90.34,"y":27.751,"w":0.75,"l":2.03},{"oc":"#221f1f","x":95.29,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":95.29,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":97.283,"y":27.751,"w":0.75,"l":1.719},{"oc":"#221f1f","x":97.283,"y":27.126,"w":0.75,"l":1.719},{"oc":"#221f1f","x":95.29,"y":27.751,"w":0.75,"l":1.994},{"dsh":1,"oc":"#221f1f","x":32.102,"y":30.001,"w":0.75,"l":66.943},{"dsh":1,"oc":"#221f1f","x":42.349,"y":30.751,"w":0.75,"l":56.696},{"dsh":1,"oc":"#221f1f","x":32.348,"y":32.251,"w":0.75,"l":66.697},{"dsh":1,"oc":"#221f1f","x":42.349,"y":33.001,"w":0.75,"l":56.696},{"dsh":1,"oc":"#221f1f","x":32.348,"y":35.251,"w":0.75,"l":66.697},{"dsh":1,"oc":"#221f1f","x":42.349,"y":36.001,"w":0.75,"l":56.696},{"dsh":1,"oc":"#221f1f","x":42.034,"y":39.751,"w":0.75,"l":57.011},{"dsh":1,"oc":"#221f1f","x":53.172,"y":40.501,"w":0.75,"l":45.873},{"dsh":1,"oc":"#221f1f","x":42.034,"y":42.001,"w":0.75,"l":57.011},{"dsh":1,"oc":"#221f1f","x":53.172,"y":42.751,"w":0.75,"l":45.873},{"dsh":1,"oc":"#221f1f","x":42.034,"y":45.751,"w":0.75,"l":57.011},{"dsh":1,"oc":"#221f1f","x":53.172,"y":46.501,"w":0.75,"l":45.873},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":33.498},{"oc":"#221f1f","x":39.559,"y":47.251,"w":1.5,"l":43.398},{"oc":"#221f1f","x":82.872,"y":47.251,"w":1.5,"l":16.173},{"oc":"#bfbfbf","x":0.086,"y":49.469,"w":0.75,"l":2.697},{"oc":"#bfbfbf","x":0.086,"y":48.542,"w":0.75,"l":2.697}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":21.04,"y":3.548,"w":1.5,"l":0.647},{"oc":"#221f1f","x":21.04,"y":4.185,"w":1.5,"l":1.097},{"oc":"#221f1f","x":21.04,"y":4.485,"w":1.5,"l":0.797},{"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":77.965,"y":5.22,"w":0.75,"l":1.555},{"oc":"#221f1f","x":87.108,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":85.39,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":89.265,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":87.547,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":91.467,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":89.748,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":93.628,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":91.909,"y":12.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":21.521,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":19.802,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":23.678,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":21.959,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":25.752,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":24.033,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":45.033,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":43.315,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":47.19,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":45.471,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":49.265,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":47.546,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":68.546,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":66.827,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":70.703,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":68.984,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":72.777,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":71.059,"y":21.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":48.746,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":47.027,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":50.776,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":49.057,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":53.696,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":51.977,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":55.726,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":54.007,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":92.058,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":90.34,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":94.089,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":92.37,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":97.008,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":95.29,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":99.002,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":97.283,"y":25.626,"w":0.75,"l":0.625},{"oc":"#221f1f","x":48.746,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":47.027,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":50.776,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":49.057,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":53.696,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":51.977,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":55.726,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":54.007,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":92.058,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":90.34,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":94.089,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":92.37,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":97.008,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":95.29,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":99.002,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":97.283,"y":26.376,"w":0.75,"l":0.625},{"oc":"#221f1f","x":48.746,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":47.027,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":50.776,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":49.057,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":53.696,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":51.977,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":55.726,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":54.007,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":92.058,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":90.34,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":94.089,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":92.37,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":97.008,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":95.29,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":99.002,"y":27.126,"w":0.75,"l":0.625},{"oc":"#221f1f","x":97.283,"y":27.126,"w":0.75,"l":0.625},{"oc":"#bfbfbf","x":2.783,"y":48.542,"w":0.75,"l":0.926},{"oc":"#bfbfbf","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.19,"y":12.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":18.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":-1.098,"y":49.101,"w":2.195,"h":0.798,"clr":-1}],"Texts":[{"oc":"#221f1f","x":66.705,"y":7.984999999999999,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":-1,"TS":[0,11.75,1,0]}]},{"oc":"#221f1f","x":24.502,"y":9.603,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"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.799,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8862","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3040000000000003,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)%20","S":2,"TS":[0,10,0,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.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.344,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":29.126,"y":2.101,"w":21.171,"clr":-1,"A":"left","R":[{"T":"Information%20To%20Claim%20Earned%20Income%20Credit%20%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":42.216,"y":3.038,"w":8.947,"clr":-1,"A":"left","R":[{"T":"After%20Disallowance","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":43.473,"y":3.5140000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.791,"y":3.6079999999999997,"w":15.560000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.389,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.921,"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":2.313,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074%20","S":2,"TS":[0,10,0,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":"43A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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.402,"y":4.938,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":7.353,"w":8.501,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":22.027,"y":7.223,"w":0.755,"clr":-1,"A":"left","R":[{"T":"%14","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.502,"y":7.298,"w":15.446000000000002,"clr":-1,"A":"left","R":[{"T":"See%20your%20tax%20return%20instructions%20or%20","S":-1,"TS":[0,11.75,0,0]}]},{"oc":"#221f1f","x":45.669,"y":7.298,"w":4.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Pub.%20596%2C%20","S":-1,"TS":[0,11.75,1,0]}]},{"oc":"#221f1f","x":51.976,"y":7.298,"w":28.407999999999998,"clr":-1,"A":"left","R":[{"T":"Earned%20Income%20Credit%20(EIC)%2C%20for%20the%20year%20for%20which%20you%20are%20filing%20","S":-1,"TS":[0,11.75,0,0]}]},{"oc":"#221f1f","x":24.502,"y":7.984999999999999,"w":30.119,"clr":-1,"A":"left","R":[{"T":"this%20form%20to%20make%20sure%20you%20can%20take%20the%20earned%20income%20credit%20(EIC)%20","S":-1,"TS":[0,11.75,0,0]}]},{"oc":"#221f1f","x":69.797,"y":7.984999999999999,"w":15.780000000000003,"clr":-1,"A":"left","R":[{"T":"to%20find%20out%20who%20is%20a%20qualifying%20child.","S":-1,"TS":[0,11.75,0,0]}]},{"oc":"#221f1f","x":22.027,"y":8.723,"w":0.755,"clr":-1,"A":"left","R":[{"T":"%14","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.886,"y":8.84,"w":6.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20EIC%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.027,"y":9.473,"w":0.755,"clr":-1,"A":"left","R":[{"T":"%14","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.502,"y":10.29,"w":41.52199999999997,"clr":-1,"A":"left","R":[{"T":"reduced%20or%20disallowed%20in%20the%20earlier%20year%20was%20because%20it%20was%20determined%20that%20a%20child%20listed%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.199,"y":10.29,"w":5.001999999999999,"clr":-1,"A":"left","R":[{"T":"%20Schedule%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":24.502,"y":10.978,"w":1.945,"clr":-1,"A":"left","R":[{"T":"EIC%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.365,"y":10.978,"w":13.001,"clr":-1,"A":"left","R":[{"T":"was%20not%20your%20qualifying%20child.","S":3,"TS":[0,12,0,0]}]},{"x":6.838,"y":11.76,"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.791,"w":4.224,"clr":-1,"A":"left","R":[{"T":"All%20Filers","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":29.91100000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20year%20for%20which%20you%20are%20filing%20this%20form%20(for%20example%2C%202012)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":12.59,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":12.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.29,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.29,"w":2.519,"clr":-1,"A":"left","R":[{"T":"If%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.135,"y":13.29,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.133,"y":13.29,"w":40.60999999999997,"clr":-1,"A":"left","R":[{"T":"reason%20your%20EIC%20was%20reduced%20or%20disallowed%20in%20the%20earlier%20year%20was%20because%20you%20incorrectly%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":13.988,"w":39.69399999999999,"clr":-1,"A":"left","R":[{"T":"reported%20your%20earned%20income%20or%20investment%20income%2C%20check%20%E2%80%9CYes.%E2%80%9D%20Otherwise%2C%20check%20%E2%80%9CNo%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.004,"y":13.988,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":13.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.615,"y":14.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.277,"y":14.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.79,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.769,"y":14.79,"w":9.928000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20%E2%80%9CYes%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.202,"y":14.79,"w":6.111000000000001,"clr":-1,"A":"left","R":[{"T":"stop.%20Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.478000000000002,"w":15.818000000000005,"clr":-1,"A":"left","R":[{"T":"EIC.%20If%20you%20checked%20%E2%80%9CNo%2C%E2%80%9D%20continue.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.29,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.29,"w":47.00499999999995,"clr":-1,"A":"left","R":[{"T":"Could%20you%20(or%20your%20spouse%20if%20filing%20jointly)%20be%20claimed%20as%20a%20qualifying%20child%20of%20another%20taxpayer%20for%20the%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":16.988,"w":24.983999999999998,"clr":-1,"A":"left","R":[{"T":"shown%20on%20line%201%3F%20See%20the%20instructions%20before%20answering%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.317,"y":16.988,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"...............%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.717,"y":16.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.542,"y":17.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.004,"y":17.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":17.777,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.647,"y":17.777,"w":9.928000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20%E2%80%9CYes%2C%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.942,"y":17.777,"w":2.667,"clr":-1,"A":"left","R":[{"T":"stop.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.724,"y":17.777,"w":25.099000000000004,"clr":-1,"A":"left","R":[{"T":"You%20cannot%20take%20the%20EIC.%20If%20you%20checked%20%E2%80%9CNo%2C%E2%80%9D%20continue.","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":18.51,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":18.546,"w":19.251,"clr":-1,"A":"left","R":[{"T":"Filers%20With%20a%20Qualifying%20Child%20or%20Children","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.887,"y":20.09,"w":10.298000000000004,"clr":-1,"A":"left","R":[{"T":"shown%20on%20line%201%20above.","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.878,"y":20.84,"w":7.724,"clr":-1,"A":"left","R":[{"T":"number%20of%20days%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":21.559,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.59,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%201%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.417,"y":21.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.927,"y":21.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":34.402,"y":21.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%202","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.929,"y":21.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.44,"y":21.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.887,"y":21.59,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%203","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.442,"y":21.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.29,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.066,"y":22.29,"w":10.706000000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20entered%20less%20than%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.935000000000002,"y":22.29,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"183%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.02,"y":22.29,"w":38.563999999999986,"clr":-1,"A":"left","R":[{"T":"(184%20if%20the%20year%20on%20line%201%20is%20a%20leap%20year)%20for%20any%20child%2C%20you%20cannot%20take%20the%20EIC%20based%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.539,"y":23.79,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.874,"y":23.79,"w":53.28899999999996,"clr":-1,"A":"left","R":[{"T":"If%20your%20child%20was%20born%20or%20died%20during%20the%20year%20shown%20on%20line%201%2C%20enter%20the%20month%20and%20day%20the%20child%20was%20born%20and%2For%20died.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":24.477,"w":10.872000000000003,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20skip%20this%20line.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.404,"y":25.309,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.879,"y":25.34,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%201%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.417,"y":25.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":25.34,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(1)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.09,"y":25.34,"w":15.302000000000003,"clr":-1,"A":"left","R":[{"T":"%20Month%20and%20day%20of%20birth%20(MM%2FDD)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.76,"y":25.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.49,"y":25.411,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":61.627,"y":25.34,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(2)","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":63.71,"y":25.34,"w":15.543000000000006,"clr":-1,"A":"left","R":[{"T":"Month%20and%20day%20of%20death%20(MM%2FDD)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.753,"y":25.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.803,"y":25.411,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.059,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%202%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.417,"y":25.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":26.09,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(1)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.09,"y":26.09,"w":15.302000000000003,"clr":-1,"A":"left","R":[{"T":"%20Month%20and%20day%20of%20birth%20(MM%2FDD)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.76,"y":25.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.49,"y":26.161,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":61.627,"y":26.09,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(2)","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":63.71,"y":26.09,"w":15.543000000000006,"clr":-1,"A":"left","R":[{"T":"Month%20and%20day%20of%20death%20(MM%2FDD)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.753,"y":25.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.803,"y":26.161,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.809,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%203%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.417,"y":26.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":26.84,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(1)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.09,"y":26.84,"w":15.302000000000003,"clr":-1,"A":"left","R":[{"T":"%20Month%20and%20day%20of%20birth%20(MM%2FDD)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.76,"y":26.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.609,"y":26.912,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":61.627,"y":26.84,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(2)","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":63.71,"y":26.84,"w":15.543000000000006,"clr":-1,"A":"left","R":[{"T":"Month%20and%20day%20of%20death%20(MM%2FDD)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.753,"y":26.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.802,"y":26.912,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":7.555,"y":27.54,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.54,"w":55.08399999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20address%20where%20you%20and%20the%20child%20lived%20together%20during%20the%20year%20shown%20on%20line%201.%20If%20you%20lived%20with%20the%20child%20at%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":28.227,"w":35.74699999999999,"clr":-1,"A":"left","R":[{"T":"than%20one%20address%20during%20the%20year%2C%20attach%20a%20list%20of%20the%20addresses%20where%20you%20lived%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.411,"y":29.059,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.886,"y":29.09,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%201%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.417,"y":28.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":29.028,"w":8.651000000000002,"clr":-1,"A":"left","R":[{"T":"Number%20and%20street%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":29.778,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":30.559,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%202%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.417,"y":30.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":30.59,"w":21.119000000000007,"clr":-1,"A":"left","R":[{"T":"If%20same%20as%20shown%20for%20child%201%2C%20check%20this%20box.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":51.394,"y":30.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.258,"y":30.59,"w":10.592000000000004,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20below%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":31.278,"w":8.651000000000002,"clr":-1,"A":"left","R":[{"T":"Number%20and%20street%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":32.028,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.809,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.315,"y":32.84,"w":21.119000000000007,"clr":-1,"A":"left","R":[{"T":"If%20same%20as%20shown%20for%20child%201%2C%20check%20this%20box.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":51.394,"y":32.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.258,"y":32.84,"w":17.172000000000008,"clr":-1,"A":"left","R":[{"T":"Or%20if%20same%20as%20shown%20for%20child%202%20(and","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.315,"y":33.59,"w":30.674999999999997,"clr":-1,"A":"left","R":[{"T":"this%20is%20different%20from%20address%20shown%20for%20child%201)%2C%20check%20this%20box.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":65.542,"y":33.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.527,"y":33.59,"w":10.592000000000004,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20below%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":34.278,"w":8.651000000000002,"clr":-1,"A":"left","R":[{"T":"Number%20and%20street%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":35.028,"w":15.020000000000007,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20state%2C%20and%20ZIP%20code%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.793,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.79,"w":45.71199999999998,"clr":-1,"A":"left","R":[{"T":"Did%20any%20other%20person%20(except%20your%20spouse%2C%20if%20filing%20jointly%2C%20and%20your%20dependents%20under%20age%2019)%20live%20with%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":36.488,"w":31.36,"clr":-1,"A":"left","R":[{"T":"child%201%2C%20child%202%2C%20or%20child%203%20for%20more%20than%20half%20the%20year%20shown%20on%20line%201%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.568,"y":36.488,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":36.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.615,"y":36.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.277,"y":36.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.29,"w":46.935999999999964,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20that%20person%E2%80%99s%20name%20and%20relationship%20to%20the%20child%20below.%20If%20more%20than%20one%20other%20person%20lived","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":37.978,"w":47.158999999999956,"clr":-1,"A":"left","R":[{"T":"with%20the%20child%20for%20more%20than%20half%20the%20year%2C%20attach%20a%20list%20of%20each%20person%E2%80%99s%20name%20and%20relationship%20to%20the%20child%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.424,"y":38.809,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.899,"y":38.841,"w":15.226000000000008,"clr":-1,"A":"left","R":[{"T":"Other%20person%20living%20with%20child%201%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":38.778,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":39.528,"w":10.206000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20to%20child%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":40.309,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":15.226000000000008,"clr":-1,"A":"left","R":[{"T":"Other%20person%20living%20with%20child%202%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":40.34,"w":21.397000000000006,"clr":-1,"A":"left","R":[{"T":"If%20same%20as%20shown%20for%20child%201%2C%20check%20this%20box.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":69.957,"y":40.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.002,"y":40.34,"w":10.592000000000004,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20below%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":41.028,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":41.778,"w":10.206000000000001,"clr":-1,"A":"left","R":[{"T":"Relationship%20to%20child%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":42.559,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":15.226000000000008,"clr":-1,"A":"left","R":[{"T":"Other%20person%20living%20with%20child%203%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":42.551,"w":21.119000000000007,"clr":-1,"A":"left","R":[{"T":"If%20same%20as%20shown%20for%20child%201%2C%20check%20this%20box.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":69.957,"y":42.457,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.246,"y":42.502,"w":9.726000000000003,"clr":-1,"A":"left","R":[{"T":"Or%20if%20same%20as%20shown","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":43.34,"w":39.509999999999955,"clr":-1,"A":"left","R":[{"T":"for%20child%202%20(and%20this%20is%20different%20from%20the%20person%20living%20with%20child%201)%2C%20check%20this%20box.%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":94.93,"y":43.247,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.877,"y":44.09,"w":10.592000000000004,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20below%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":44.778,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":45.528,"w":9.928,"clr":-1,"A":"left","R":[{"T":"Relationship%20to%20child%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":46.278,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.648,"y":46.278,"w":42.062,"clr":-1,"A":"left","R":[{"T":"The%20IRS%20may%20ask%20you%20to%20provide%20additional%20information%20to%20verify%20your%20eligibility%20to%20claim%20the%20EIC.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"w":23.340000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%203.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.573,"y":47.126,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2025145E","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.464,"y":47.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.606,"y":47.072,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8862%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.907,"y":47.072,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2012-2012)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%203%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.417,"y":32.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":80.739,"y":32.05,"w":36.513000000000005,"clr":0,"A":"left","R":[{"T":"Zip%20Code","S":3,"TS":[0,12,0,0]}]},{"x":69.742,"y":32.124,"w":21.015,"clr":0,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"x":81.126,"y":29.847,"w":36.513000000000005,"clr":0,"A":"left","R":[{"T":"Zip%20Code","S":3,"TS":[0,12,0,0]}]},{"x":69.613,"y":29.827,"w":21.015,"clr":0,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"x":80.868,"y":35.097,"w":36.513000000000005,"clr":0,"A":"left","R":[{"T":"Zip%20Code","S":3,"TS":[0,12,0,0]}]},{"x":69.613,"y":35.077,"w":21.015,"clr":0,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.874,"y":22.978,"w":56.452999999999946,"clr":-1,"A":"left","R":[{"T":"that%20child%2C%20unless%20the%20special%20rule%20for%20a%20child%20who%20was%20born%20or%20died%20during%20the%20year%20shown%20on%20line%201%20applies.%20See%20theinstructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.935,"y":9.603,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.415,"w":10.280000000000003,"clr":-1,"A":"left","R":[{"T":"Note.%20Child%201%2C%20Child%202%2C","S":-1,"TS":[0,11.46,1,0]}]},{"oc":"#221f1f","x":26.825,"y":19.415,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%203","S":-1,"TS":[0,11.46,1,0]}]},{"oc":"#221f1f","x":68.719,"y":19.415,"w":6.391,"clr":-1,"A":"left","R":[{"T":"Schedule%20EIC","S":-1,"TS":[0,11.46,1,0]}]},{"oc":"#221f1f","x":27.707,"y":4.243,"w":36.45399999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208862%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8862","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":24.502,"y":8.84,"w":17.651999999999997,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20a%20qualifying%20child%2C%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.994,"y":8.84,"w":11.557000000000004,"clr":-1,"A":"left","R":[{"T":"before%20you%20fill%20in%20this%20form.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.345,"y":9.603,"w":28.05900000000001,"clr":-1,"A":"left","R":[{"T":"file%20this%20form%20if%20you%20are%20taking%20the%20EIC%20without%20a%20qualifying%20child%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.943,"y":9.603,"w":13.315000000000001,"clr":-1,"A":"left","R":[{"T":"the%20only%20reason%20your%20EIC%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.673,"y":14.79,"w":34.434999999999995,"clr":-1,"A":"left","R":[{"T":"fill%20in%20the%20rest%20of%20this%20form.%20But%20you%20must%20attach%20it%20to%20your%20tax%20return%20to%20take%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.072,"y":19.415,"w":1.686,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":31.626,"y":19.415,"w":29.731000000000012,"clr":-1,"A":"left","R":[{"T":"are%20the%20same%20children%20you%20listed%20as%20Child%201%2C%20Child%202%2C%20and%20Child%203%20on","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":77.068,"y":19.415,"w":5.352,"clr":-1,"A":"left","R":[{"T":"for%20the%20year%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.391,"y":20.84,"w":37.61799999999998,"clr":-1,"A":"left","R":[{"T":"each%20child%20lived%20with%20you%20in%20the%20United%20States%20during%20the%20year%20shown%20on%20line%201%20above%3A","S":3,"TS":[0,12,0,0]}]},{"x":0.583,"y":48.573,"w":4.1124,"clr":0,"A":"left","R":[{"T":"0","S":-1,"TS":[4,9.854,0,0]}]},{"x":2.673,"y":48.573,"w":4.1124,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[4,9.854,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6261,"AM":1024,"x":5.981,"y":5.819,"w":68.563,"h":0.936,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6262,"AM":1024,"x":78.107,"y":5.838,"w":20.872,"h":0.889,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":6263,"AM":0,"x":85.161,"y":12.892,"w":8.724,"h":0.833,"TU":"Line 1. Enter the year for which you are filing this form (for example 2012).","MV":"YYYY"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"LINE4_CHILDUS_1_","EN":0},"TI":6268,"AM":0,"x":19.678,"y":21.892,"w":6.353,"h":0.833,"TU":"Line 4a. Child 1. Enter the number of days each child lived with you in the United States during the year shown on line 1 above."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"LINE4_CHILDUS_2_","EN":0},"TI":6269,"AM":0,"x":43.127,"y":21.892,"w":6.353,"h":0.833,"TU":"Line 4b. Child 2. Enter the number of days each child lived with you in the United States during the year shown on line 1 above"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"LINE4_CHILDUS_3_","EN":0},"TI":6270,"AM":0,"x":66.639,"y":21.892,"w":6.352,"h":0.833,"TU":"Line 4c. Child 3. Enter the number of days each child lived with you in the United States during the year shown on line 1 above"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE5_CHDOB_1_","EN":0},"TI":6271,"AM":0,"x":46.86,"y":25.602,"w":9.167,"h":0.833,"TU":"Line 5a(1). Child 1. Month and day of birth (MM/DD).","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE5_CHDOD_1_","EN":0},"TI":6272,"AM":0,"x":90.173,"y":25.602,"w":9.054,"h":0.833,"TU":"Line 5a(2). Child 1. Month and day of death (MM/DD).","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE5_CHDOB_2_","EN":0},"TI":6273,"AM":0,"x":46.86,"y":26.352,"w":9.054,"h":0.833,"TU":"Line 5b(1). Child 2. Month and day of birth (MM/DD)","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE5_CHDOD_2_","EN":0},"TI":6274,"AM":0,"x":90.173,"y":26.352,"w":8.942,"h":0.833,"TU":"Line 5b(2). Child 2. Month and day of death (MM/DD).","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE5_CHDOB_3_","EN":0},"TI":6275,"AM":0,"x":46.86,"y":27.02,"w":9.392,"h":0.833,"TU":"Line 5c(1). Child 3. Month and day of birth (MM/DD)","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"LINE5_CHDOD_3_","EN":0},"TI":6276,"AM":0,"x":90.173,"y":27.102,"w":8.829,"h":0.833,"TU":"Line 5c(2). Child 3. Month and day of death (MM/DD).","MV":"mm/dd"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_CH1ADDR_1_","EN":0},"TI":6277,"AM":0,"x":32.093,"y":29.272,"w":66.969,"h":0.833,"TU":"Number and street child 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_CH1CITY_1_","EN":0},"TI":6278,"AM":0,"x":42.343,"y":30.022,"w":26.831,"h":0.833,"TU":"Line 6a city"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_CH1ST_1_","EN":0},"TI":6279,"AM":0,"x":73.542,"y":30.015,"w":4.629,"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":"L6A_CH1ZIP_1_","EN":0},"TI":6280,"AM":0,"x":88.069,"y":30.068,"w":10.931,"h":0.833,"TU":"Line 6a zip code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6B_CH2ADDR_1_","EN":0},"TI":6282,"AM":0,"x":32.34,"y":31.522,"w":66.722,"h":0.833,"TU":"Number and Street child 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6B_CH2CITY_1_","EN":0},"TI":6283,"AM":0,"x":42.322,"y":32.252,"w":27.072,"h":0.833,"TU":"Line 6b city"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6B_CH2ST_1_","EN":0},"TI":6284,"AM":0,"x":74.279,"y":32.292,"w":4.629,"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":"L6B_CH2ZIP_1_","EN":0},"TI":6285,"AM":0,"x":87.691,"y":32.345,"w":11.417,"h":0.833,"TU":"Line 6b zip code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C_CH3ADDR_1_","EN":0},"TI":6287,"AM":0,"x":32.34,"y":34.523,"w":66.722,"h":0.833,"TU":"Number and street child 3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C_CH3CITY_1_","EN":0},"TI":6288,"AM":0,"x":42.259,"y":35.297,"w":26.831,"h":0.833,"TU":"Line 6c city"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C_CH3ST_1_","EN":0},"TI":6289,"AM":0,"x":73.458,"y":35.29,"w":4.629,"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":"L6C_CH3ZIP_1_","EN":0},"TI":6290,"AM":0,"x":87.807,"y":35.255,"w":11.109,"h":0.833,"TU":"Line 6C zip code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9A_OTHNAME1_1_","EN":0},"TI":6293,"AM":0,"x":42.034,"y":39.023,"w":57.028,"h":0.833,"TU":"Relationship to child 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9A_OTHREL1_1_","EN":0},"TI":6294,"AM":0,"x":53.171,"y":39.773,"w":45.891,"h":0.833,"TU":"Otherwise, enter below"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9B_OTHNAME2_1_","EN":0},"TI":6296,"AM":0,"x":41.734,"y":41.3,"w":57.028,"h":0.833,"TU":"Relationship to child 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE9B_OTHREL2_1_","EN":0},"TI":6297,"AM":0,"x":53.171,"y":42.023,"w":45.891,"h":0.833,"TU":"Or if same as shown"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE7C_OTHNAME3_1_","EN":0},"TI":6300,"AM":0,"x":42.034,"y":45.023,"w":57.028,"h":0.833,"TU":"Relationship to child 3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE7C_OTHREL3_1_","EN":0},"TI":6301,"AM":0,"x":53.171,"y":45.773,"w":45.891,"h":0.833,"TU":"Caution. The IRS may ask you to provide additional information to verify your eligibility to claim the EIC"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INCXY","EN":0},"TI":6264,"AM":0,"x":84.974,"y":14.032,"w":2.57,"h":0.88,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INCXN","EN":0},"TI":6265,"AM":0,"x":93.584,"y":14.004,"w":2.42,"h":0.934,"checked":false}],"id":{"Id":"INCXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2Y","EN":0},"TI":6266,"AM":0,"x":85.049,"y":16.999,"w":2.195,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2N","EN":0},"TI":6267,"AM":0,"x":93.285,"y":16.945,"w":2.644,"h":0.853,"checked":false}],"id":{"Id":"L2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CH2SAMEX","EN":0},"TI":6281,"AM":0,"x":54.366,"y":30.69,"w":1.8,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CH3SAMEX","EN":0},"TI":6286,"AM":0,"x":67.579,"y":33.449,"w":2.531,"h":1.002}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHERY","EN":0},"TI":6291,"AM":0,"x":84.45,"y":36.492,"w":2.869,"h":0.88,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHERN","EN":0},"TI":6292,"AM":0,"x":92.76,"y":36.601,"w":3.019,"h":0.853,"checked":false}],"id":{"Id":"A1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHSAME","EN":0},"TI":6295,"AM":0,"x":70.974,"y":40.521,"w":2.869,"h":0.989}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHSAME2","EN":0},"TI":6298,"AM":0,"x":71.723,"y":42.808,"w":1.821,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHSAME3","EN":0},"TI":6299,"AM":0,"x":96.354,"y":43.489,"w":2.27,"h":0.833}]}]},{"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.147,"y":3.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":85.39,"y":4.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":3.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":87.485,"y":4.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":87.485,"y":3.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":4.501,"w":0.75,"l":2.095},{"oc":"#221f1f","x":89.621,"y":4.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":89.621,"y":3.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":4.501,"w":0.75,"l":4.231},{"oc":"#221f1f","x":85.39,"y":7.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":6.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":87.485,"y":7.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":87.485,"y":6.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":7.501,"w":0.75,"l":2.095},{"oc":"#221f1f","x":89.621,"y":7.501,"w":0.75,"l":1.719},{"oc":"#221f1f","x":89.621,"y":6.876,"w":0.75,"l":1.719},{"oc":"#221f1f","x":85.39,"y":7.501,"w":0.75,"l":4.231},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":87.108,"y":3.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":85.39,"y":3.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":89.203,"y":3.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":87.485,"y":3.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":91.34,"y":3.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":89.621,"y":3.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":87.108,"y":6.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":85.39,"y":6.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":89.203,"y":6.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":87.485,"y":6.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":91.34,"y":6.876,"w":0.75,"l":0.625},{"oc":"#221f1f","x":89.621,"y":6.876,"w":0.75,"l":0.625}],"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}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":11.913000000000006,"clr":-1,"A":"left","R":[{"T":"Form%208862%20(Rev.%2012-2012)%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.76,"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.796,"w":15.447000000000005,"clr":-1,"A":"left","R":[{"T":"Filers%20Without%20a%20Qualifying%20Child","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":3.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.878,"y":3.59,"w":7.446,"clr":-1,"A":"left","R":[{"T":"number%20of%20days","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.665,"y":3.4960000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.899,"y":5.059,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.564,"y":5.79,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35,"y":5.79,"w":7.446,"clr":-1,"A":"left","R":[{"T":"number%20of%20days","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.911,"y":6.489,"w":11.447000000000001,"clr":-1,"A":"left","R":[{"T":"lived%20in%20the%20United%20States%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.649,"y":6.489,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":6.395,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.899,"y":8.059,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.464,"y":8.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.606,"y":8.822,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8862%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":90.907,"y":8.822,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2012-2012)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.878,"y":4.465,"w":10.428,"clr":-1,"A":"left","R":[{"T":"If%20you%20entered%20less%20than","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.83,"y":4.465,"w":14.837000000000005,"clr":-1,"A":"left","R":[{"T":"You%20cannot%20take%20the%20EIC.%20See%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":5.79,"w":17.021,"clr":-1,"A":"left","R":[{"T":"If%20married%20filing%20a%20joint%20return%2C%20enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.731,"y":5.79,"w":22.042000000000005,"clr":-1,"A":"left","R":[{"T":"during%20the%20year%20shown%20on%20line%201%20that%20your%20spouse%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.05,"y":7.465,"w":10.428,"clr":-1,"A":"left","R":[{"T":"If%20you%20entered%20less%20than","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.002,"y":7.465,"w":14.837000000000005,"clr":-1,"A":"left","R":[{"T":"You%20cannot%20take%20the%20EIC.%20See%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":3.59,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.391,"y":3.59,"w":29.34000000000001,"clr":-1,"A":"left","R":[{"T":"during%20the%20year%20shown%20on%20line%201%20that%20you%20lived%20in%20the%20United%20States","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.004,"y":3.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":3.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.127,"y":3.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":4.465,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":31.67,"y":4.465,"w":23.400000000000006,"clr":-1,"A":"left","R":[{"T":"183%20(184%20if%20the%20year%20on%20line%201%20is%20a%20leap%20year)%2C%20stop.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.465,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":31.841,"y":7.465,"w":23.400000000000006,"clr":-1,"A":"left","R":[{"T":"183%20(184%20if%20the%20year%20on%20line%201%20is%20a%20leap%20year)%2C%20stop.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":6302,"AM":1024,"x":21.218,"y":1.984,"w":48.172,"h":0.936,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":6303,"AM":1024,"x":72.952,"y":2.003,"w":20.873,"h":0.889,"TU":"Your social security number"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"DAYSINUS","EN":0},"TI":6304,"AM":0,"x":85.022,"y":3.84,"w":6.54,"h":0.91,"TU":"Days taxpayer lived in US"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"DAYSSPUS","EN":0},"TI":6305,"AM":0,"x":85.396,"y":6.806,"w":6.391,"h":0.833,"TU":"Days Spouse lived in US"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8863.content.txt b/test/data/fd/form/F8863.content.txt new file mode 100755 index 00000000..c6d56fa1 --- /dev/null +++ b/test/data/fd/form/F8863.content.txt @@ -0,0 +1,150 @@ +Form +8863 +Department of the Treasury +Internal Revenue Service + (99) +Education Credits +(American Opportunity and Lifetime Learning Credits) +a + + +a + Attach to Form 1040 or Form 1040A. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +50 +Name(s) shown on return +Your social security number +F +! +CAUTION +Complete a separate Part III on page 2 for each student for whom you are claiming either credit +before you complete Parts I and II. +Part I +Refundable American Opportunity Credit +1 +After completing Part III for each student, enter the total of all amounts from all Parts III, line 30 . +1 +2 +Enter: $180,000 if married filing jointly; $90,000 if single, head of +household, or qualifying widow(er) +............. +2 +3 +Enter the amount from Form 1040, line 38, or Form 1040A, line 22. If you +are filing Form 2555, 2555-EZ, or 4563, or you are excluding income from +Puerto Rico, see Pub. 970 for the amount to enter +........ +3 +4 +Subtract line 3 from line 2. If zero or less, +stop +; you cannot take any +................... +4 +5 +Enter: $20,000 if married filing jointly; $10,000 if single, head of household, +or qualifying widow(er) +................. +5 +6 +If line 4 is: +• Equal to or more than line 5, enter 1.000 on line 6 +............ +• Less than line 5, divide line 4 by line 5. Enter the result as a decimal (rounded to +at least three places) +..................... +} +.... +6 +. +7 +Multiply line 1 by line 6. +Caution: + If you were under age 24 at the end of the year +and + meet +the conditions described in the instructions, you +cannot + take the refundable American opportunity +credit; skip line 8, enter the amount from line 7 on line 9, and check this box +.... +a + +7 +8 Refundable American opportunity credit. +Multiply line 7 by 40% (.40). Enter the amount here and +on Form 1040, line 66, or Form 1040A, line 40. Then go to line 9 below +.......... +8 +Part II +Nonrefundable Education Credits +9 +Subtract line 8 from line 7. Enter here and on line 2 of the Credit Limit Worksheet (see instructions) +9 +10 +After completing Part III for each student, enter the total of all amounts from all Parts III, line 31. If +zero, skip lines 11 through 17, enter -0- on line 18, and go to line 19 +.......... +10 +11 +Enter the smaller of line 10 or $10,000 +.................... +11 +12 +Multiply line 11 by 20% (.20) +....................... +12 +13 +Enter: $127,000 if married filing jointly; $63,000 if single, head of +household, or qualifying widow(er) +............. +13 +14 +Enter the amount from Form 1040, line 38, or Form 1040A, line 22. If you +are filing Form 2555, 2555-EZ, or 4563, or you are excluding income from +Puerto Rico, see Pub. 970 for the amount to enter +........ +14 +15 +Subtract line 14 from line 13. If zero or less, skip lines 16 and 17, enter -0- +on line 18, and go to line 19 + +............... +15 +16 +Enter: $20,000 if married filing jointly; $10,000 if single, head of household, +or qualifying widow(er) +................. +16 +17 +If line 15 is: +• Equal to or more than line 16, enter 1.000 on line 17 and go to line 18 +• Less than line 16, divide line 15 by line 16. Enter the result as a decimal (rounded to at least three +places) +.............................. +17 +. +18 +Multiply line 12 by line 17. Enter here and on line 1 of the Credit Limit Worksheet (see instructions) + +a +18 +19 +Nonrefundable education credits. +Enter the amount from line 7 of the Credit Limit Worksheet (see +instructions) here and on Form 1040, line 49, or Form 1040A, line 31 +.......... +19 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 25379M +Form +8863 + (2013) +Click to enter Student Information on page 2: + Information about Form 8863 and its separate instructions is at www.irs.gov/form8863. +education credit +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8863.fields.json b/test/data/fd/form/F8863.fields.json new file mode 100755 index 00000000..a428df3f --- /dev/null +++ b/test/data/fd/form/F8863.fields.json @@ -0,0 +1 @@ +[{"id":"CONDX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add_F8863_Page_2","type":"link","calc":false,"value":""},{"id":"P4L9","type":"number","calc":false,"value":""},{"id":"P4L10","type":"number","calc":false,"value":""},{"id":"P4L11","type":"number","calc":false,"value":""},{"id":"P4L12","type":"number","calc":true,"value":""},{"id":"P4L13","type":"number","calc":false,"value":""},{"id":"P4L14","type":"percent","calc":true,"value":""},{"id":"P4L15","type":"number","calc":true,"value":""},{"id":"P4L16","type":"number","calc":true,"value":""},{"id":"SUBTRACT","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"mask","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8863.json b/test/data/fd/form/F8863.json new file mode 100755 index 00000000..b9998111 --- /dev/null +++ b/test/data/fd/form/F8863.json @@ -0,0 +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.276,"y":4.22,"w":1.5,"l":14.979},{"oc":"#221f1f","x":21.126,"y":4.22,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.195,"y":1.97,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.195,"y":4.22,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.276,"y":5.72,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.288,"y":5.72,"w":0.75,"l":7.511},{"oc":"#221f1f","x":86.713,"y":5.72,"w":0.75,"l":5.036},{"oc":"#221f1f","x":91.663,"y":5.72,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.276,"y":8.72,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.276,"y":9.47,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":15.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":15.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":16.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":16.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":20.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":20.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":81.634,"y":20.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"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":81.634,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":24.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":81.634,"y":26.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":26.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":28.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":28.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":29.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":29.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":30.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":30.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":30.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":29.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":33.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":33.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":34.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":34.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.309,"y":36.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.784,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":36.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":39.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":39.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":89.059,"y":39.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":81.634,"y":39.751,"w":0.75,"l":2.561},{"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":41.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.863,"y":41.251,"w":1.5,"l":36.045},{"oc":"#221f1f","x":87.822,"y":41.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.168,"y":1.204,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.168,"y":3.043,"w":1.5,"l":1.208},{"oc":"#221f1f","x":84.281,"y":1.204,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.281,"y":1.954,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.281,"y":3.236,"w":1.5,"l":1.015},{"oc":"#221f1f","x":79.331,"y":4.204,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.331,"y":4.204,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.756,"y":4.954,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.331,"y":4.954,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.706,"y":4.954,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":8.281},{"oc":"#221f1f","x":81.677,"y":11.235,"w":0.75,"l":8.281},{"oc":"#221f1f","x":66.827,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":64.352,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"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":66.827,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"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":66.827,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"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":84.152,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.677,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.677,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":20.235,"w":0.75,"l":2.281},{"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":84.152,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":9.031},{"oc":"#221f1f","x":81.677,"y":29.235,"w":0.75,"l":9.031},{"oc":"#221f1f","x":66.827,"y":30.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":64.352,"y":30.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":32.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":33.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":34.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":38.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":40.486,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.318,"y":6.032,"w":6.188,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.318,"y":8.72,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":11.251,"w":2.475,"h":8.25,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":20.251,"w":2.475,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":24.751,"w":6.531,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":29.251,"w":2.475,"h":9,"clr":-1}],"Texts":[{"oc":"#221f1f","x":6.068,"y":1.6030000000000002,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.88,"y":1.6030000000000002,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8863","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":6.068,"y":2.826,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":6.068,"y":3.245,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":18.214,"y":3.245,"w":2.186,"clr":-1,"A":"left","R":[{"T":"%20(99)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.215,"y":0.964,"w":9.113,"clr":-1,"A":"left","R":[{"T":"Education%20Credits%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":27.756,"y":1.714,"w":25.615000000000002,"clr":-1,"A":"left","R":[{"T":"(American%20Opportunity%20and%20Lifetime%20Learning%20Credits)","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":23.402,"y":2.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.346,"y":3.054,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":41.377,"y":3.147,"w":17.449000000000005,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%20or%20Form%201040A.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.872,"y":0.942,"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.987,"y":2.362,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.957,"y":2.362,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":86.609,"y":2.861,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.609,"y":3.244,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.587,"y":3.244,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.068,"y":3.91,"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":79.325,"y":3.8710000000000004,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.372,"y":6.82,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.557,"y":6.756,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.483,"y":7.353,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":13.803,"y":6.21,"w":42.59999999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20a%20separate%20Part%20III%20on%20page%202%20for%20each%20student%20for%20whom%20you%20are%20claiming%20either%20credit%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":13.803,"y":7.035,"w":15.335000000000004,"clr":-1,"A":"left","R":[{"T":"before%20you%20complete%20Parts%20I%20and%20II.","S":4,"TS":[0,14,0,0]}]},{"x":6.967,"y":8.541,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.662,"y":8.541,"w":19.725,"clr":-1,"A":"left","R":[{"T":"Refundable%20American%20Opportunity%20Credit%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":42.489,"clr":-1,"A":"left","R":[{"T":"After%20completing%20Part%20III%20for%20each%20student%2C%20enter%20the%20total%20of%20all%20amounts%20from%20all%20Parts%20III%2C%20line%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.13,"y":10.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.235,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.153,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":28.879,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20%24180%2C000%20if%20married%20filing%20jointly%3B%20%2490%2C000%20if%20single%2C%20head%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":11.84,"w":15.813999999999998,"clr":-1,"A":"left","R":[{"T":"household%2C%20%20or%20qualifying%20widow(er)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.879,"y":11.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.91,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.715,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.715,"w":32.643,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2038%2C%20or%20Form%201040A%2C%20line%2022.%20%20If%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":13.402,"w":32.787000000000006,"clr":-1,"A":"left","R":[{"T":"are%20filing%20Form%202555%2C%202555-EZ%2C%20or%204563%2C%20or%20you%20are%20excluding%20income%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":14.09,"w":22.52500000000001,"clr":-1,"A":"left","R":[{"T":"Puerto%20Rico%2C%20see%20Pub.%20970%20for%20the%20amount%20to%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.199,"y":14.09,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.91,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.903,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.903,"w":19.707000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.591,"y":14.903,"w":2.2110000000000003,"clr":-1,"A":"left","R":[{"T":"stop","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.667,"y":14.903,"w":10.121,"clr":-1,"A":"left","R":[{"T":"%3B%20you%20cannot%20take%20any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.496,"y":15.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"...................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.91,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":16.403,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.403,"w":33.547,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20%2420%2C000%20if%20married%20filing%20jointly%3B%20%2410%2C000%20if%20single%2C%20head%20of%20household%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.09,"w":10.312000000000003,"clr":-1,"A":"left","R":[{"T":"or%20qualifying%20widow(er)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":17.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.91,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":4.760000000000002,"clr":-1,"A":"left","R":[{"T":"If%20line%204%20is%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":23.064000000000007,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Equal%20to%20or%20more%20than%20line%205%2C%20enter%201.000%20on%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":18.59,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":19.403,"w":36.62199999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Less%20than%20line%205%2C%20divide%20line%204%20by%20line%205.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.098,"y":20.09,"w":9.538000000000002,"clr":-1,"A":"left","R":[{"T":"at%20least%20three%20places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.632,"y":20.09,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.012,"y":19.537,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":49,"TS":[3,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":19.027,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.235,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":89.797,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":20.965,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.965,"w":10.726000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%201%20by%20line%206.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.763,"y":20.965,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Caution%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":31.606,"y":20.965,"w":21.429999999999996,"clr":-1,"A":"left","R":[{"T":"%20If%20you%20were%20under%20age%2024%20at%20the%20end%20of%20the%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.318,"y":20.965,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.897000000000006,"y":20.965,"w":2.798,"clr":-1,"A":"left","R":[{"T":"%20meet%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.652,"w":21.72800000000001,"clr":-1,"A":"left","R":[{"T":"the%20conditions%20described%20in%20the%20instructions%2C%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.547,"y":21.652,"w":3.2780000000000005,"clr":-1,"A":"left","R":[{"T":"cannot","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.303,"y":21.652,"w":19.376000000000005,"clr":-1,"A":"left","R":[{"T":"%20take%20the%20refundable%20American%20opportunity%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.35,"w":34.400999999999996,"clr":-1,"A":"left","R":[{"T":"credit%3B%20skip%20line%208%2C%20enter%20the%20amount%20from%20line%207%20on%20line%209%2C%20and%20check%20this%20box%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":22.35,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.432,"y":22.257,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.235,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.153,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.153,"w":19.67,"clr":-1,"A":"left","R":[{"T":"Refundable%20American%20opportunity%20credit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.099,"y":23.153,"w":24.843000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20by%2040%25%20(.40).%20Enter%20the%20amount%20here%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":23.84,"w":31.418000000000013,"clr":-1,"A":"left","R":[{"T":"on%20Form%201040%2C%20line%2066%2C%20or%20Form%201040A%2C%20line%2040.%20Then%20go%20to%20line%209%20below","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.56,"y":23.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.235,"y":23.793,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"x":6.756,"y":24.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":24.572,"w":15.891000000000005,"clr":-1,"A":"left","R":[{"T":"Nonrefundable%20Education%20Credits","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":44.38099999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207.%20Enter%20here%20and%20on%20line%202%20of%20the%20Credit%20Limit%20Worksheet%20(see%20instructions)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.235,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.153,"w":43.321999999999996,"clr":-1,"A":"left","R":[{"T":"After%20completing%20Part%20III%20for%20each%20student%2C%20enter%20the%20total%20of%20all%20amounts%20from%20all%20Parts%20III%2C%20line%2031.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":26.84,"w":30.52800000000001,"clr":-1,"A":"left","R":[{"T":"zero%2C%20skip%20lines%2011%20through%2017%2C%20enter%20-0-%20on%20line%2018%2C%20and%20go%20to%20line%2019%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.571,"y":26.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.805,"y":26.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":17.22800000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2010%20or%20%2410%2C000%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":27.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.805,"y":27.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":12.931000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2011%20by%2020%25%20(.20)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":28.34,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.805,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.153,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.153,"w":28.879,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20%24127%2C000%20if%20married%20filing%20jointly%3B%20%2463%2C000%20if%20single%2C%20head%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":29.84,"w":15.536,"clr":-1,"A":"left","R":[{"T":"household%2C%20or%20qualifying%20widow(er)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.879,"y":29.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.48,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.715,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.715,"w":32.365,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2038%2C%20or%20Form%201040A%2C%20line%2022.%20If%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":31.403,"w":32.787000000000006,"clr":-1,"A":"left","R":[{"T":"are%20filing%20Form%202555%2C%202555-EZ%2C%20or%204563%2C%20or%20you%20are%20excluding%20income%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":22.52500000000001,"clr":-1,"A":"left","R":[{"T":"Puerto%20Rico%2C%20see%20Pub.%20970%20for%20the%20amount%20to%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":32.09,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.48,"y":32.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.903,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.903,"w":33.286,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014%20from%20line%2013.%20If%20zero%20or%20less%2C%20skip%20lines%2016%20and%2017%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":12.653000000000004,"clr":-1,"A":"left","R":[{"T":"on%20line%2018%2C%20and%20go%20to%20line%2019%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":33.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.48,"y":33.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":34.403,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.403,"w":33.547,"clr":-1,"A":"left","R":[{"T":"Enter%3A%20%2420%2C000%20if%20married%20filing%20jointly%3B%20%2410%2C000%20if%20single%2C%20head%20of%20household%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.09,"w":10.312000000000003,"clr":-1,"A":"left","R":[{"T":"or%20qualifying%20widow(er)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":35.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.48,"y":35.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":5.594000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2015%20is%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":31.93800000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Equal%20to%20or%20more%20than%20line%2016%2C%20enter%201.000%20on%20line%2017%20and%20go%20to%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.403,"w":44.36499999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Less%20than%20line%2016%2C%20divide%20line%2015%20by%20line%2016.%20Enter%20the%20result%20as%20a%20decimal%20(rounded%20to%20at%20least%20three%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.266,"y":38.09,"w":3.4629999999999996,"clr":-1,"A":"left","R":[{"T":"places)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.316,"y":38.09,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"..............................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.805,"y":38.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":89.768,"y":38.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":44.19699999999998,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2012%20by%20line%2017.%20Enter%20here%20and%20on%20line%201%20of%20the%20Credit%20Limit%20Worksheet%20(see%20instructions)%20%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":78.987,"y":38.747,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.805,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.653,"w":16.170000000000005,"clr":-1,"A":"left","R":[{"T":"Nonrefundable%20education%20credits.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.833,"y":39.653,"w":28.434,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%207%20of%20the%20Credit%20Limit%20Worksheet%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":40.34,"w":30.36300000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20here%20and%20on%20Form%201040%2C%20line%2049%2C%20or%20Form%201040A%2C%20line%2031","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.573,"y":40.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.805,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.108,"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":65.043,"y":41.126,"w":7.633000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2025379M","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.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":41.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8863","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":41.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"x":22.438,"y":9.484,"w":213.92000000000013,"clr":0,"A":"left","R":[{"T":"Click%20to%20enter%20Student%20Information%20on%20page%202%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.433,"y":2.527,"w":41.67899999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208863%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8863.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.883,"y":15.59,"w":7.945000000000001,"clr":-1,"A":"left","R":[{"T":"education%20credit%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6306,"AM":1024,"x":6.343,"y":4.777,"w":72.847,"h":0.876,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6307,"AM":1024,"x":79.474,"y":4.801,"w":18.744,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863P2"}},"id":{"Id":"Add_F8863_Page_2","EN":0},"TI":6308,"AM":0,"x":60.359,"y":9.578,"w":4.932,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P4L9","EN":0},"TI":6309,"AM":0,"x":84.125,"y":10.592,"w":12.5,"h":0.833,"TU":"Line 1. After completing Part III for each student, enter the total of all amounts from all Parts III, line 30."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P4L10","EN":0},"TI":6310,"AM":0,"x":66.782,"y":11.788,"w":12.305,"h":0.912,"TU":"Line 2. Enter: $180,000 if married filing jointly; $90,000 if single, head of household, or qualifying widower."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P4L11","EN":0},"TI":6311,"AM":0,"x":66.782,"y":14.102,"w":12.455,"h":0.885,"TU":"Line 3. Enter the amount from Form 1040, line 38, or Form 1040A, line 22. If you are filing Form 2555, 2555-EZ, or 4563, or you are exluding income from Puerto Rico, see Publ 970 for the amount to enter."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P4L12","EN":0},"TI":6312,"AM":1024,"x":66.99,"y":15.586,"w":11.916,"h":0.891,"TU":"Calculated"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P4L13","EN":0},"TI":6313,"AM":0,"x":66.931,"y":17.017,"w":12.23,"h":0.91,"TU":"Line 5: Enter $20,000 if married filing jointly; $10,000 if single, head of household, or qualifying widow(er)."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"P4L14","EN":0},"TI":6314,"AM":1024,"x":84.422,"y":19.275,"w":11.257,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P4L15","EN":0},"TI":6316,"AM":1024,"x":84.485,"y":22.21,"w":11.95,"h":0.965,"TU":"MULTIPLY L1 TIMES L6 IF ELIGIBLE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P4L16","EN":0},"TI":6317,"AM":1024,"x":84.048,"y":23.796,"w":12.605,"h":0.911,"TU":"Calculated Refundable Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT","EN":0},"TI":6318,"AM":1024,"x":84.253,"y":25.538,"w":12.414,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":6319,"AM":0,"x":84.325,"y":26.898,"w":12.174,"h":0.837,"TU":"Line 10. After completing Part III for each student, enter the total of all amounts from all Parts III, Line 31. If zero, skip lines 11 through 17, enter zero on line 18 and go to line 19."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":6320,"AM":1024,"x":84.403,"y":27.815,"w":12.04,"h":0.833,"TU":"Calculated Smaller of Line 10 or $10,000"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":6321,"AM":1024,"x":84.253,"y":28.538,"w":12.264,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":6322,"AM":0,"x":66.786,"y":29.852,"w":12.399,"h":0.876,"TU":"Line 13. Enter $127,000 if married filing jointly; $63,000 if single, head of household, or qualified widow(er)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":6323,"AM":0,"x":66.882,"y":32.132,"w":12.357,"h":0.845,"TU":"Line 14. Enter the amount from Form 1040, line 38, or Form 1040A, line 22. If you are filing Form 2555, 2555-EZ, or 4563, or you are excluding income from Puerto Rico, see Pub. 970 for the amount to enter."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":6324,"AM":1024,"x":66.786,"y":33.538,"w":12.399,"h":0.912,"TU":"If Zero or less enter 0"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":6325,"AM":0,"x":66.786,"y":35.174,"w":12.324,"h":0.833,"TU":"Line 16. Enter $20,000 if married filing jointly; $10,000 if single, head of household, or qualifying widow(er)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":6326,"AM":1024,"x":84.198,"y":38.114,"w":12.156,"h":0.858,"TU":"CALCULATED","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":6327,"AM":1024,"x":84.253,"y":39.038,"w":12.189,"h":0.833,"TU":"CALCULATED"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":6328,"AM":0,"x":84.186,"y":40.317,"w":12.399,"h":0.958,"TU":"Line 19. Nonrefundable education credits. Enter the amount from line 7 of the Credit Limit Worksheet (see instructions) here and on Form 1040, line 49, or Form 1040A, line 31."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CONDX","EN":0},"TI":6315,"AM":0,"x":76.514,"y":22.281,"w":2.195,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8863P2.content.txt b/test/data/fd/form/F8863P2.content.txt new file mode 100755 index 00000000..26e7cf33 --- /dev/null +++ b/test/data/fd/form/F8863P2.content.txt @@ -0,0 +1,165 @@ +cannot +Form 8863 (2013) +Page +2 +Name(s) shown on return +Your social security number +F +! +CAUTION +Complete Part III for each student for whom you are claiming either the American +opportunity credit or lifetime learning credit. Use additional copies of Page 2 as needed for +each student. +Part III +Student and Educational Institution Information + + +See instructions. +20 +Student name (as shown on page 1 of your tax return) +21 +Student social security number (as shown on page 1 of your tax return) +22 +Educational institution information (see instructions) +a. + Name of first educational institution +(1) + Address. Number and street (or P.O. box). City, town or +post office, state, and ZIP code. If a foreign address, see +instructions. +(2) +Did the student receive Form 1098-T +from this institution for 2013? +Yes +No +(3) + Did the student receive Form 1098-T +from this institution for 2012 with Box +2 filled in and Box 7 checked? +Yes +No +If you checked “No” in +both (2) and (3) +, skip +(4). +(4) +If you checked “Yes” in +(2) or (3) +, enter the institution's +federal identification number (from Form 1098-T). +– +b. + Name of second educational institution (if any) +(1) + Address. Number and street (or P.O. box). City, town or +post office, state, and ZIP code. If a foreign address, see +instructions. +(2) + Did the student receive Form 1098-T +from this institution for 2013? +Yes +No +(3) + Did the student receive Form 1098-T +from this institution for 2012 with Box 2 +filled in and Box 7 checked? +Yes +No +If you checked “No” in +both (2) and (3) +, skip +(4). +(4) +If you checked “Yes” in +(2) or (3) +, enter the institution's +federal identification number (from Form 1098-T). +– +23 +Has the Hope Scholarship Credit or American opportunity +credit been claimed for this student for any 4 tax years +before 2013? +Yes — +Stop! + +Go to line 31 for this student. +No — Go to line 24. +24 +Was the student enrolled at least half-time for at least one +academic period that began in 2013 at an eligible +educational institution in a program leading towards a +postsecondary degree, certificate, or other recognized +postsecondary educational credential? (see instructions) +Yes — Go to line 25. +No — +Stop! +Go to line 31 +for this student. +25 +Did the student complete the first 4 years of post-secondary +education before 2013? +Yes — +Stop! + +Go to line 31 for this +student. +No — Go to line 26. +26 +Was the student convicted, before the end of 2013, of a +felony for possession or distribution of a controlled +substance? +Yes — +Stop! + +Go to line 31 for this +student. +No — See +Tip + below and +complete +either + lines 27-30 +or +line 31 for this student. +TIP +When you figure your taxes, you may want to compare the American opportunity credit and lifetime learning credits, and +choose the credit for each student that gives you the lower tax liability. You +take the American opportunity credit +and the lifetime learning credit for the +same student +in the same year. If you complete lines 27 through 30 for this student, +do not complete line 31. +American Opportunity Credit +27 +Adjusted qualified education expenses (see instructions). + Do not enter more than $4,000 +.... +27 +28 +Subtract $2,000 from line 27. If zero or less enter -0- +................. +28 +29 +Multiply line 28 by 25% (.25) +......................... +29 +30 +If line 28 is zero, enter the amount from line 27. Otherwise, add $2,000 to the amount on line 29 and +enter the result. Skip line 31. Include the total of all amounts from all Parts III, line 30 on Part I, line 1 . +30 +Lifetime Learning Credit +31 +Adjusted qualified education expenses (see instructions). Include the total of all amounts from all Parts +III, line 31, on Part II, line 10 +......................... +31 +Form +8863 + (2013) +address +address +city +zip +city +zip +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8863P2.fields.json b/test/data/fd/form/F8863P2.fields.json new file mode 100755 index 00000000..4a547ba9 --- /dev/null +++ b/test/data/fd/form/F8863P2.fields.json @@ -0,0 +1 @@ +[{"id":"F1098TRB","type":"radio","calc":false,"value":"Y1098T"},{"id":"F1098TRB","type":"radio","calc":false,"value":"N1098T"},{"id":"F10982RB","type":"radio","calc":false,"value":"Y1098T2"},{"id":"F10982RB","type":"radio","calc":false,"value":"N1098T2"},{"id":"PY98TRB","type":"radio","calc":false,"value":"Y98TPY"},{"id":"PY98TRB","type":"radio","calc":false,"value":"N98TPY"},{"id":"PY98T2RB","type":"radio","calc":false,"value":"Y98TPY2"},{"id":"PY98T2RB","type":"radio","calc":false,"value":"N98TPY2"},{"id":"PYCREDRB","type":"radio","calc":false,"value":"PYCREDY"},{"id":"PYCREDRB","type":"radio","calc":false,"value":"PYCREDN"},{"id":"FULLBORB","type":"radio","calc":false,"value":"FULLY"},{"id":"FULLBORB","type":"radio","calc":false,"value":"FULLN"},{"id":"YRSRB","type":"radio","calc":false,"value":"YR4Y"},{"id":"YRSRB","type":"radio","calc":false,"value":"YR4N"},{"id":"FELONBRB","type":"radio","calc":false,"value":"FELONY"},{"id":"FELONBRB","type":"radio","calc":false,"value":"FELONN"},{"id":"DESC","type":"alpha","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"FNAME","type":"alpha","calc":false,"value":""},{"id":"LNAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"A1_SCHOOL_1_","type":"alpha","calc":false,"value":""},{"id":"A34_SCHOOL2_1_","type":"alpha","calc":false,"value":""},{"id":"A2_SADDR_1_","type":"alpha","calc":false,"value":""},{"id":"A30_SADDR2_1_","type":"alpha","calc":false,"value":""},{"id":"A24_SADDR1_1_","type":"alpha","calc":false,"value":""},{"id":"A24_SST1_1_","type":"alpha","calc":false,"value":""},{"id":"A24_SZIP_1_","type":"zip","calc":false,"value":""},{"id":"A31_SADDR3_1_","type":"alpha","calc":false,"value":""},{"id":"A31_SST2_1_","type":"alpha","calc":false,"value":""},{"id":"A31_SZIP2_1_","type":"zip","calc":false,"value":""},{"id":"A5_SCHEIN_1_","type":"mask","calc":false,"value":""},{"id":"A25_SCHEIN2_1_","type":"mask","calc":false,"value":""},{"id":"ADJEXP","type":"number","calc":false,"value":""},{"id":"SUBAMT","type":"number","calc":true,"value":""},{"id":"MULTIPLY","type":"number","calc":true,"value":""},{"id":"AOC","type":"number","calc":true,"value":""},{"id":"LLCEXP","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8863P2.json b/test/data/fd/form/F8863P2.json new file mode 100755 index 00000000..1d09bdfd --- /dev/null +++ b/test/data/fd/form/F8863P2.json @@ -0,0 +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":87.949},{"oc":"#221f1f","x":94.009,"y":3.001,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.147,"y":4.501,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.159,"y":4.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":86.584,"y":4.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":91.534,"y":4.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.147,"y":7.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":92.899},{"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":44.636},{"oc":"#221f1f","x":53.172,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":55.647,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":71.734,"y":11.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":82.872,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.631,"y":11.251,"w":0.75,"l":1.272},{"oc":"#221f1f","x":8.631,"y":12.001,"w":0.75,"l":1.272},{"oc":"#221f1f","x":9.859,"y":11.251,"w":0.75,"l":89.186},{"oc":"#221f1f","x":9.859,"y":12.001,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":47.111},{"oc":"#221f1f","x":6.147,"y":18.001,"w":0.75,"l":47.111},{"oc":"#221f1f","x":6.147,"y":19.501,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.322,"y":19.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":39.052,"y":19.001,"w":0.75,"l":1.375},{"oc":"#221f1f","x":39.052,"y":18.501,"w":0.75,"l":1.375},{"oc":"#221f1f","x":45.747,"y":19.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":46.477,"y":19.001,"w":0.75,"l":1.375},{"oc":"#221f1f","x":46.477,"y":18.501,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":32.261},{"oc":"#221f1f","x":38.322,"y":21.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":39.052,"y":20.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":39.052,"y":20.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":45.747,"y":21.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":46.477,"y":20.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":46.477,"y":20.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":47.111},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":47.111},{"oc":"#221f1f","x":11.097,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":14.809,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":20.997,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":24.709,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":28.422,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":32.134,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":39.559,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":43.272,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.172,"y":14.251,"w":0.75,"l":45.874},{"oc":"#221f1f","x":53.172,"y":18.001,"w":0.75,"l":45.874},{"oc":"#221f1f","x":53.172,"y":19.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":86.584,"y":19.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":87.315,"y":19.001,"w":0.75,"l":1.375},{"oc":"#221f1f","x":87.315,"y":18.501,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.772,"y":19.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":93.502,"y":19.001,"w":0.75,"l":1.375},{"oc":"#221f1f","x":93.502,"y":18.501,"w":0.75,"l":1.375},{"oc":"#221f1f","x":53.172,"y":21.751,"w":0.75,"l":33.498},{"oc":"#221f1f","x":86.584,"y":21.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":87.315,"y":20.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":87.315,"y":20.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.772,"y":21.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":93.502,"y":20.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":93.502,"y":20.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":53.172,"y":22.501,"w":0.75,"l":45.874},{"oc":"#221f1f","x":53.172,"y":25.501,"w":0.75,"l":45.874},{"oc":"#221f1f","x":58.122,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.834,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":68.022,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":71.734,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":75.447,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":79.159,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":82.872,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":86.584,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":90.297,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":27.751,"w":0.75,"l":44.636},{"oc":"#221f1f","x":53.172,"y":27.751,"w":0.75,"l":23.598},{"oc":"#221f1f","x":76.684,"y":27.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":31.501,"w":0.75,"l":44.636},{"oc":"#221f1f","x":53.172,"y":31.501,"w":0.75,"l":23.598},{"oc":"#221f1f","x":76.684,"y":31.501,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":33.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":33.751,"w":0.75,"l":44.636},{"oc":"#221f1f","x":53.172,"y":33.751,"w":0.75,"l":23.598},{"oc":"#221f1f","x":76.684,"y":33.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.619,"y":38.251,"w":0.75,"l":5.328},{"oc":"#221f1f","x":6.619,"y":36.001,"w":0.75,"l":5.328},{"oc":"#221f1f","x":6.147,"y":36.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":39.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":39.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.152,"y":40.501,"w":0.75,"l":2.475},{"oc":"#221f1f","x":84.152,"y":39.751,"w":0.75,"l":2.475},{"oc":"#221f1f","x":86.584,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.152,"y":41.251,"w":0.75,"l":2.475},{"oc":"#221f1f","x":84.152,"y":40.501,"w":0.75,"l":2.475},{"oc":"#221f1f","x":86.584,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.152,"y":42.001,"w":0.75,"l":2.475},{"oc":"#221f1f","x":84.152,"y":41.251,"w":0.75,"l":2.475},{"oc":"#221f1f","x":86.584,"y":42.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.152,"y":43.501,"w":0.75,"l":2.475},{"oc":"#221f1f","x":84.152,"y":42.001,"w":0.75,"l":2.475},{"oc":"#221f1f","x":6.147,"y":43.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":44.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":86.584,"y":45.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":45.751,"w":1.5,"l":92.899},{"oc":"#bfbfbf","x":1.371,"y":49.056,"w":1.5,"l":2.398},{"oc":"#bfbfbf","x":1.371,"y":48.184,"w":1.5,"l":2.398}],"VLines":[{"oc":"#221f1f","x":79.202,"y":2.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":2.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":91.577,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":8.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":71.777,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":11.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":53.215,"y":14.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":40.427,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":39.052,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":53.215,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.852,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":46.477,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":40.427,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":39.052,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":47.852,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":46.477,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":53.215,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":88.69,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":87.315,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":94.877,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":93.502,"y":18.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":53.215,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":88.69,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":87.315,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":94.877,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":93.502,"y":20.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":53.215,"y":22.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":6.19,"y":36.157,"w":0.75,"l":1.938},{"oc":"#221f1f","x":12.377,"y":36.157,"w":0.75,"l":1.938},{"oc":"#221f1f","x":86.627,"y":39.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":84.152,"y":39.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":86.627,"y":40.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":84.152,"y":40.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":86.627,"y":41.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":84.152,"y":41.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":86.627,"y":42.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":84.152,"y":42.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":86.627,"y":44.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":44.235,"w":0.75,"l":1.531},{"oc":"#bfbfbf","x":3.769,"y":48.184,"w":1.5,"l":0.872},{"oc":"#bfbfbf","x":1.371,"y":48.184,"w":1.5,"l":0.872}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":4.869,"w":6.188,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":7.501,"w":6.533,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":36.001,"w":6.188,"h":2.25,"clr":-1},{"x":6.576,"y":36.142,"w":5.414,"h":1.969,"clr":1},{"x":0.15,"y":48.675,"w":2.27,"h":0.825,"clr":0},{"x":1.457,"y":48.278,"w":2.054,"h":0.747,"clr":0}],"Texts":[{"oc":"#221f1f","x":59.971,"y":36.53,"w":3.5560000000000005,"clr":-1,"A":"left","R":[{"T":"cannot%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.013,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208863%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":2.751,"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":79.196,"y":2.652,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.243,"y":5.658,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.428,"y":5.594,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.354,"y":6.191,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":13.674,"y":4.686,"w":39.06599999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20Part%20III%20for%20each%20student%20for%20whom%20you%20are%20claiming%20either%20the%20American%20%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":13.674,"y":5.436,"w":43.40099999999996,"clr":-1,"A":"left","R":[{"T":"opportunity%20credit%20or%20lifetime%20learning%20credit.%20Use%20additional%20copies%20of%20Page%202%20as%20needed%20for%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":13.674,"y":6.186,"w":6.446,"clr":-1,"A":"left","R":[{"T":"each%20student.","S":-1,"TS":[0,15,1,0]}]},{"x":6.503,"y":7.321999999999999,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":7.385,"w":44.852999999999895,"clr":-1,"A":"left","R":[{"T":"Student%20and%20Educational%20Institution%20Information%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%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.533,"y":8.072,"w":7.464,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":8.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.79,"y":8.859,"w":24.042,"clr":-1,"A":"left","R":[{"T":"Student%20name%20(as%20shown%20on%20page%201%20of%20your%20tax%20return)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.72,"y":8.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.683,"y":8.866,"w":31.635000000000005,"clr":-1,"A":"left","R":[{"T":"Student%20social%20security%20number%20(as%20shown%20on%20page%201%20of%20your%20tax%20return)","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":6.694,"y":11.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.34,"y":11.09,"w":23.041000000000004,"clr":-1,"A":"left","R":[{"T":"Educational%20institution%20information%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.69,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.008,"y":11.84,"w":16.113999999999997,"clr":-1,"A":"left","R":[{"T":"%20Name%20of%20first%20educational%20institution","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.69,"y":14.14,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(1)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.465,"y":14.14,"w":25.912000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20Address.%20Number%20and%20street%20(or%20P.O.%20box).%20City%2C%20town%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.783,"y":14.765,"w":25.614,"clr":-1,"A":"left","R":[{"T":"post%20office%2C%20state%2C%20and%20ZIP%20code.%20If%20a%20foreign%20address%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.783,"y":15.39,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.69,"y":17.903,"w":2.056,"clr":-1,"A":"left","R":[{"T":"(2)%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.755,"y":17.903,"w":16.691000000000006,"clr":-1,"A":"left","R":[{"T":"Did%20the%20student%20receive%20Form%201098-T%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.783,"y":18.59,"w":13.097000000000008,"clr":-1,"A":"left","R":[{"T":"from%20this%20institution%20for%202013%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.617,"y":18.121,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.505,"y":18.121,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.69,"y":19.403,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(3)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.465,"y":19.403,"w":17.525000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20Did%20the%20student%20receive%20Form%201098-T%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.783,"y":20.09,"w":17.00300000000001,"clr":-1,"A":"left","R":[{"T":"from%20this%20institution%20for%202012%20with%20Box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.783,"y":20.777,"w":13.485000000000007,"clr":-1,"A":"left","R":[{"T":"2%20filled%20in%20and%20Box%207%20checked%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.744,"y":19.996,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.59,"y":19.996,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.627,"y":21.59,"w":10.317000000000002,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20%E2%80%9CNo%E2%80%9D%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.696,"y":21.59,"w":7.222,"clr":-1,"A":"left","R":[{"T":"both%20(2)%20and%20(3)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.608,"y":21.59,"w":2.668,"clr":-1,"A":"left","R":[{"T":"%2C%20skip%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.564,"y":21.59,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(4).","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.69,"y":22.403,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(4)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.749,"y":22.403,"w":10.706000000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20%E2%80%9CYes%E2%80%9D%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.543,"y":22.403,"w":4,"clr":-1,"A":"left","R":[{"T":"(2)%20or%20(3)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.483,"y":22.403,"w":10.207000000000004,"clr":-1,"A":"left","R":[{"T":"%2C%20enter%20the%20institution's%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.752,"y":23.09,"w":21.95000000000001,"clr":-1,"A":"left","R":[{"T":"federal%20identification%20number%20(from%20Form%201098-T).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.547,"y":23.746,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.715,"y":11.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.09,"y":11.84,"w":20.930000000000003,"clr":-1,"A":"left","R":[{"T":"%20Name%20of%20second%20educational%20institution%20(if%20any)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.715,"y":14.14,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(1)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.491,"y":14.14,"w":25.912000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20Address.%20Number%20and%20street%20(or%20P.O.%20box).%20City%2C%20town%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.808,"y":14.765,"w":25.614,"clr":-1,"A":"left","R":[{"T":"post%20office%2C%20state%2C%20and%20ZIP%20code.%20If%20a%20foreign%20address%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.808,"y":15.39,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.715,"y":17.903,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(2)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.491,"y":17.903,"w":17.525000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20Did%20the%20student%20receive%20Form%201098-T%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.808,"y":18.59,"w":13.097000000000008,"clr":-1,"A":"left","R":[{"T":"from%20this%20institution%20for%202013%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.388,"y":18.121,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.911,"y":18.121,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.715,"y":19.403,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(3)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.491,"y":19.403,"w":17.525000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20Did%20the%20student%20receive%20Form%201098-T%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.808,"y":20.09,"w":17.83700000000001,"clr":-1,"A":"left","R":[{"T":"from%20this%20institution%20for%202012%20with%20Box%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.808,"y":20.777,"w":12.651000000000007,"clr":-1,"A":"left","R":[{"T":"filled%20in%20and%20Box%207%20checked%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.422,"y":19.996,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.911,"y":19.996,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.652,"y":21.59,"w":10.317000000000002,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20%E2%80%9CNo%E2%80%9D%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.721,"y":21.59,"w":7.222,"clr":-1,"A":"left","R":[{"T":"both%20(2)%20and%20(3)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":77.633,"y":21.59,"w":2.668,"clr":-1,"A":"left","R":[{"T":"%2C%20skip%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.417,"y":21.59,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(4).","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.715,"y":22.403,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(4)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":58.774,"y":22.403,"w":10.706000000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20%E2%80%9CYes%E2%80%9D%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.122,"y":22.403,"w":4,"clr":-1,"A":"left","R":[{"T":"(2)%20or%20(3)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.985,"y":22.403,"w":10.207000000000004,"clr":-1,"A":"left","R":[{"T":"%2C%20enter%20the%20institution's%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.777,"y":23.09,"w":21.95000000000001,"clr":-1,"A":"left","R":[{"T":"federal%20identification%20number%20(from%20Form%201098-T).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.572,"y":23.746,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.403,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.477,"y":25.465,"w":26.078000000000003,"clr":-1,"A":"left","R":[{"T":"Has%20the%20Hope%20Scholarship%20Credit%20or%20American%20opportunity%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.472,"y":26.153,"w":24.615999999999993,"clr":-1,"A":"left","R":[{"T":"credit%20been%20claimed%20for%20this%20student%20for%20any%204%20tax%20years%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.479,"y":26.84,"w":5.928,"clr":-1,"A":"left","R":[{"T":"before%202013%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.375,"y":25.709,"w":3.241,"clr":-1,"A":"left","R":[{"T":"Yes%20%E2%80%94%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.389,"y":25.709,"w":2.555,"clr":-1,"A":"left","R":[{"T":"Stop!","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.375,"y":26.334,"w":12.985,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%2031%20for%20this%20student.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.888,"y":26.271,"w":8.835000000000003,"clr":-1,"A":"left","R":[{"T":"No%20%E2%80%94%20Go%20to%20line%2024.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":27.653,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.477,"y":27.653,"w":26.098000000000003,"clr":-1,"A":"left","R":[{"T":"Was%20the%20student%20enrolled%20at%20least%20half-time%20for%20at%20least%20one%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.471,"y":28.34,"w":22.303000000000008,"clr":-1,"A":"left","R":[{"T":"academic%20period%20that%20began%20in%202013%20at%20an%20eligible%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.466,"y":29.027,"w":24.263,"clr":-1,"A":"left","R":[{"T":"educational%20institution%20in%20a%20program%20leading%20towards%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.471,"y":29.715,"w":24.537000000000003,"clr":-1,"A":"left","R":[{"T":"postsecondary%20degree%2C%20certificate%2C%20or%20other%20recognized%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.469,"y":30.402,"w":25.170000000000005,"clr":-1,"A":"left","R":[{"T":"postsecondary%20educational%20credential%3F%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.375,"y":29.028,"w":9.224000000000002,"clr":-1,"A":"left","R":[{"T":"Yes%20%E2%80%94%20Go%20to%20line%2025.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.888,"y":29.028,"w":2.852,"clr":-1,"A":"left","R":[{"T":"No%20%E2%80%94%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.299,"y":29.028,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Stop!%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.598,"y":29.028,"w":5.9830000000000005,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%2031%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.888,"y":29.653,"w":7.002000000000001,"clr":-1,"A":"left","R":[{"T":"for%20this%20student.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":31.403,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.477,"y":31.403,"w":27.191999999999997,"clr":-1,"A":"left","R":[{"T":"Did%20the%20student%20complete%20the%20first%204%20years%20of%20post-secondary%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.48,"y":32.09,"w":10.633000000000003,"clr":-1,"A":"left","R":[{"T":"education%20before%202013%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.375,"y":31.465000000000003,"w":3.241,"clr":-1,"A":"left","R":[{"T":"Yes%20%E2%80%94%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.389,"y":31.465000000000003,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Stop!%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.375,"y":32.09,"w":9.613000000000001,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%2031%20for%20this%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.375,"y":32.715,"w":3.65,"clr":-1,"A":"left","R":[{"T":"student.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.888,"y":32.09,"w":8.835000000000003,"clr":-1,"A":"left","R":[{"T":"No%20%E2%80%94%20Go%20to%20line%2026.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.653,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.476,"y":33.653,"w":25.192999999999998,"clr":-1,"A":"left","R":[{"T":"Was%20the%20student%20convicted%2C%20before%20the%20end%20of%202013%2C%20of%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.478,"y":34.34,"w":22.945999999999998,"clr":-1,"A":"left","R":[{"T":"felony%20for%20possession%20or%20distribution%20of%20a%20controlled%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.479,"y":35.027,"w":5.187,"clr":-1,"A":"left","R":[{"T":"substance%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.314,"y":33.777,"w":3.241,"clr":-1,"A":"left","R":[{"T":"Yes%20%E2%80%94%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.328,"y":33.777,"w":2.555,"clr":-1,"A":"left","R":[{"T":"Stop!","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.314,"y":34.402,"w":9.613000000000001,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%2031%20for%20this%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.314,"y":35.027,"w":3.65,"clr":-1,"A":"left","R":[{"T":"student.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.888,"y":33.777,"w":4.852,"clr":-1,"A":"left","R":[{"T":"No%20%E2%80%94%20See%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":87.243,"y":33.777,"w":1.389,"clr":-1,"A":"left","R":[{"T":"Tip","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":89.349,"y":33.777,"w":5.204000000000001,"clr":-1,"A":"left","R":[{"T":"%20below%20and%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":79.888,"y":34.402,"w":4.446,"clr":-1,"A":"left","R":[{"T":"complete%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":86.284,"y":34.402,"w":2.723,"clr":-1,"A":"left","R":[{"T":"either","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":90.266,"y":34.402,"w":5.484,"clr":-1,"A":"left","R":[{"T":"%20lines%2027-30%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":79.888,"y":35.027,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":81.825,"y":35.027,"w":10.207,"clr":-1,"A":"left","R":[{"T":"line%2031%20for%20this%20student.","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":7.275,"y":36.599,"w":1.705,"clr":-1,"A":"left","R":[{"T":"TIP","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":13.674,"y":35.842,"w":53.620999999999945,"clr":-1,"A":"left","R":[{"T":"When%20you%20figure%20your%20taxes%2C%20you%20may%20want%20to%20compare%20the%20American%20opportunity%20credit%20and%20lifetime%20learning%20credits%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.674,"y":36.53,"w":33.597,"clr":-1,"A":"left","R":[{"T":"choose%20the%20credit%20for%20each%20student%20that%20gives%20you%20the%20lower%20tax%20liability.%20You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.013,"y":36.53,"w":16.522000000000002,"clr":-1,"A":"left","R":[{"T":"take%20the%20American%20opportunity%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.674,"y":37.217,"w":16.892,"clr":-1,"A":"left","R":[{"T":"and%20the%20lifetime%20learning%20credit%20for%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.569,"y":37.217,"w":6.724,"clr":-1,"A":"left","R":[{"T":"same%20student%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.051,"y":37.217,"w":31.062000000000012,"clr":-1,"A":"left","R":[{"T":"in%20the%20same%20year.%20If%20you%20complete%20lines%2027%20through%2030%20for%20this%20student%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.674,"y":37.904,"w":10.818000000000007,"clr":-1,"A":"left","R":[{"T":"do%20not%20complete%20line%2031.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.236,"y":38.822,"w":14.002000000000004,"clr":-1,"A":"left","R":[{"T":"American%20Opportunity%20Credit%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.559,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.339,"y":39.559,"w":25.393000000000004,"clr":-1,"A":"left","R":[{"T":"Adjusted%20qualified%20education%20expenses%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.353,"y":39.559,"w":14.893000000000006,"clr":-1,"A":"left","R":[{"T":"%20Do%20not%20enter%20more%20than%20%244%2C000%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":74.689,"y":39.559,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.28,"y":39.559,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":40.309,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.339,"y":40.309,"w":23.412,"clr":-1,"A":"left","R":[{"T":"Subtract%20%242%2C000%20from%20line%2027.%20If%20zero%20or%20less%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.877,"y":40.309,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.28,"y":40.309,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.059,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.339,"y":41.059,"w":12.653000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2028%20by%2025%25%20(.25)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.376,"y":41.059,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.28,"y":41.059,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.339,"y":41.872,"w":44.755999999999965,"clr":-1,"A":"left","R":[{"T":"If%20line%2028%20is%20zero%2C%20enter%20the%20amount%20from%20line%2027.%20Otherwise%2C%20add%20%242%2C000%20to%20the%20amount%20on%20line%2029%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.342,"y":42.559,"w":44.49199999999998,"clr":-1,"A":"left","R":[{"T":"enter%20the%20result.%20Skip%20line%2031.%20Include%20the%20total%20of%20all%20amounts%20from%20all%20Parts%20III%2C%20line%2030%20on%20Part%20I%2C%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.882,"y":42.559,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.28,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.236,"y":43.322,"w":11.501999999999999,"clr":-1,"A":"left","R":[{"T":"Lifetime%20Learning%20Credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.221,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.339,"y":44.165,"w":45.91599999999998,"clr":-1,"A":"left","R":[{"T":"Adjusted%20qualified%20education%20expenses%20(see%20instructions).%20Include%20the%20total%20of%20all%20amounts%20from%20all%20Parts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.342,"y":44.84,"w":12.336000000000006,"clr":-1,"A":"left","R":[{"T":"III%2C%20line%2031%2C%20on%20Part%20II%2C%20line%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.693,"y":44.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.28,"y":44.809,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.154,"y":45.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":45.572,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8863","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]}]},{"x":56.855,"y":16.141,"w":35.57,"clr":0,"A":"left","R":[{"T":"address","S":-1,"TS":[0,13,0,0]}]},{"x":5.226,"y":16.057,"w":35.57,"clr":0,"A":"left","R":[{"T":"address","S":-1,"TS":[0,13,0,0]}]},{"x":8.578,"y":16.807,"w":15,"clr":0,"A":"left","R":[{"T":"city","S":-1,"TS":[0,13,0,0]}]},{"x":41.715,"y":16.807,"w":12.780000000000001,"clr":0,"A":"left","R":[{"T":"zip","S":-1,"TS":[0,13,0,0]}]},{"x":60.035,"y":16.891,"w":15,"clr":0,"A":"left","R":[{"T":"city","S":-1,"TS":[0,13,0,0]}]},{"x":89.048,"y":16.891,"w":12.780000000000001,"clr":0,"A":"left","R":[{"T":"zip","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":6329,"AM":0,"x":40.862,"y":1.998,"w":19.6,"h":0.834},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":6330,"AM":1024,"x":6.229,"y":3.586,"w":72.997,"h":0.899,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":6331,"AM":1024,"x":79.209,"y":3.623,"w":19.792,"h":0.856},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":6332,"AM":0,"x":10.481,"y":10.293,"w":18.787,"h":0.91,"TU":"Line 20. Student first name (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":6333,"AM":0,"x":30.46,"y":10.293,"w":22.349,"h":0.91,"TU":"Student last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6334,"AM":0,"x":63.787,"y":9.993,"w":25.781,"h":1.292,"TU":"Line 21. Student social security number (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_SCHOOL_1_","EN":0},"TI":6335,"AM":0,"x":11.005,"y":13.394,"w":42.027,"h":0.833,"TU":"Line 22a. Name of first educational institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A34_SCHOOL2_1_","EN":0},"TI":6336,"AM":0,"x":57.822,"y":13.428,"w":41.054,"h":0.833,"TU":"Line 22b. Name of second educational institution (if any)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_SADDR_1_","EN":0},"TI":6337,"AM":0,"x":12.257,"y":16.253,"w":40.904,"h":0.833,"TU":"Line 22(1). Address. Number and street (or P.O. box). If a foreign address, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_SADDR2_1_","EN":0},"TI":6338,"AM":0,"x":64.885,"y":16.26,"w":34.177,"h":0.833,"TU":"Line 22(1). Address. Number and street (or P.O. box). If a foreign address, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A24_SADDR1_1_","EN":0},"TI":6339,"AM":0,"x":12.054,"y":17.124,"w":20.166,"h":0.858,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A24_SST1_1_","EN":0},"TI":6340,"AM":0,"x":32.973,"y":17.053,"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":"A24_SZIP_1_","EN":0},"TI":6341,"AM":0,"x":45.257,"y":17.151,"w":7.851,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A31_SADDR3_1_","EN":0},"TI":6342,"AM":0,"x":66.608,"y":17.014,"w":14.949,"h":0.858,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A31_SST2_1_","EN":0},"TI":6343,"AM":0,"x":82.186,"y":16.961,"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":"A31_SZIP2_1_","EN":0},"TI":6344,"AM":0,"x":93.188,"y":17.131,"w":5.95,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A5_SCHEIN_1_","EN":0},"TI":6353,"AM":0,"x":11.08,"y":24.039,"w":34.84,"h":0.833,"TU":"Line 22(4). If you checked yes in (2) or (3), enter the institution's federal identification number (from Form 1098-T) ","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A25_SCHEIN2_1_","EN":0},"TI":6354,"AM":0,"x":58.196,"y":24.005,"w":34.84,"h":0.833,"TU":"Line 22(4). If you checked yes in (2) or (3), enter the institution's federal identification number (from Form 1098-T)","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJEXP","EN":0},"TI":6363,"AM":0,"x":86.708,"y":39.788,"w":12.313,"h":0.833,"TU":"Line 27. Adjusted qualified education expenses (see instructions). Do not enter more than $4,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBAMT","EN":0},"TI":6364,"AM":1024,"x":86.708,"y":40.51,"w":12.313,"h":0.833,"TU":"SUBTRACT 2000"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTIPLY","EN":0},"TI":6365,"AM":1024,"x":86.708,"y":41.288,"w":12.313,"h":0.833,"TU":"CALCULATED"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AOC","EN":0},"TI":6366,"AM":1024,"x":86.64,"y":42.614,"w":12.597,"h":0.871},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LLCEXP","EN":0},"TI":6367,"AM":0,"x":86.586,"y":44.808,"w":12.427,"h":0.912,"TU":"Line 31. Adjusted qualified education expenses (see instructions). Include the total of all amounts from all Parts III, line 31, on Part II, line 10."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Y1098T","EN":0},"TI":6345,"AM":0,"x":38.706,"y":18.333,"w":2.42,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"N1098T","EN":0},"TI":6346,"AM":0,"x":45.744,"y":18.333,"w":2.57,"h":0.833,"checked":false}],"id":{"Id":"F1098TRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Y1098T2","EN":0},"TI":6347,"AM":0,"x":87.145,"y":18.224,"w":2.046,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"N1098T2","EN":0},"TI":6348,"AM":0,"x":93.434,"y":18.224,"w":2.195,"h":0.833,"checked":false}],"id":{"Id":"F10982RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Y98TPY","EN":0},"TI":6349,"AM":0,"x":38.781,"y":20.103,"w":2.121,"h":0.907,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"N98TPY","EN":0},"TI":6350,"AM":0,"x":46.118,"y":20.103,"w":2.195,"h":0.907,"checked":false}],"id":{"Id":"PY98TRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Y98TPY2","EN":0},"TI":6351,"AM":0,"x":87.071,"y":20.048,"w":2.195,"h":0.88,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"N98TPY2","EN":0},"TI":6352,"AM":0,"x":93.21,"y":20.048,"w":2.195,"h":0.907,"checked":false}],"id":{"Id":"PY98T2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PYCREDY","EN":0},"TI":6355,"AM":0,"x":53.68,"y":26.145,"w":2.495,"h":0.907,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PYCREDN","EN":0},"TI":6356,"AM":0,"x":76.589,"y":26.092,"w":2.57,"h":0.934,"checked":false}],"id":{"Id":"PYCREDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FULLY","EN":0},"TI":6357,"AM":0,"x":53.305,"y":29.06,"w":2.345,"h":0.934,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FULLN","EN":0},"TI":6358,"AM":0,"x":76.739,"y":29.005,"w":2.42,"h":0.88,"checked":false}],"id":{"Id":"FULLBORB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YR4Y","EN":0},"TI":6359,"AM":0,"x":53.37,"y":31.945,"w":2.719,"h":0.88,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YR4N","EN":0},"TI":6360,"AM":0,"x":76.889,"y":31.918,"w":2.42,"h":0.934,"checked":false}],"id":{"Id":"YRSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FELONY","EN":0},"TI":6361,"AM":0,"x":53.156,"y":34.151,"w":2.495,"h":0.934,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FELONN","EN":0},"TI":6362,"AM":0,"x":76.814,"y":34.205,"w":2.57,"h":0.907,"checked":false}],"id":{"Id":"FELONBRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8864.content.txt b/test/data/fd/form/F8864.content.txt new file mode 100755 index 00000000..4a33e075 --- /dev/null +++ b/test/data/fd/form/F8864.content.txt @@ -0,0 +1,109 @@ +Form +8864 +Department of the Treasury +Internal Revenue Service +Biodiesel and Renewable Diesel Fuels Credit +a + Attach to your tax return. +a + Information about Form 8864 and its instructions is at +www.irs.gov/form8864. +OMB No. 1545-1924 +20 +13 +Attachment +Sequence No. +141 +Name(s) shown on return +Identifying number +You cannot claim any amounts on Form 8864 that you claimed (or will claim) on Form 720 (Schedule C), Form 8849, or +Form 4136. +Caution. +Claimant has a certificate from the producer or importer of biodiesel or renewable diesel reported on lines 1 through 6 below a +nd, if +applicable, claimant also has a statement from the reseller. Claimant has no reason to believe that the information in the cer +tificate or +statement is false. Claimant may need to attach a copy of the certificate and statement. See +Certification +below. +Type of Fuel +(a) +Number of Gallons +Sold or Used +(b) +Rate +(c) +Column (a) x Column (b) + + + + + + +1 +Biodiesel (other than agri-biodiesel) +......... +1 +$1.00 +2 +Agri-biodiesel +................ +2 +$1.00 +3 +Renewable diesel +............... +3 +$1.00 +4 +Biodiesel (other than agri-biodiesel) included in a biodiesel +mixture +.................. +4 +$1.00 +5 +Agri-biodiesel included in a biodiesel mixture +...... +5 +$1.00 +6 +Renewable diesel included in a renewable diesel mixture . . +6 +$1.00 +7 +Qualified agri-biodiesel production +......... +7 +$ .10 +8 +Add lines 1 through 7. Include this amount in your income for 2013 (see instructions) +..... +8 +9 +Biodiesel and renewable diesel fuels credit from partnerships, S corporations, cooperatives, +estates, and trusts (see instructions) +..................... +9 +10 + +Add lines 8 and 9. Cooperatives, estates, and trusts, go to line 11. Partnerships and +S corporations, stop here and report this amount on Schedule K. All others, stop here and report +this amount on Form 3800, line 1l +...................... +10 +11 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust (see +instructions) +............................. +11 +12 +Cooperatives, estates, and trusts, subtract line 11 from line 10. Report this amount on Form 3800, +line 1l +............................... +12 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 25778F +Form +8864 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8864.fields.json b/test/data/fd/form/F8864.fields.json new file mode 100755 index 00000000..ff784190 --- /dev/null +++ b/test/data/fd/form/F8864.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"BIOSOLD","type":"number","calc":false,"value":""},{"id":"STRBIO","type":"number","calc":true,"value":""},{"id":"AGRISOLD","type":"number","calc":false,"value":""},{"id":"STRAGRI","type":"number","calc":true,"value":""},{"id":"MIXSOLD","type":"number","calc":false,"value":""},{"id":"BIOMIX","type":"number","calc":true,"value":""},{"id":"BIODSOLD","type":"number","calc":false,"value":""},{"id":"BIODIES","type":"number","calc":true,"value":""},{"id":"AGMXSOLD","type":"number","calc":false,"value":""},{"id":"AGRIBIO","type":"number","calc":true,"value":""},{"id":"RMIXSLD","type":"number","calc":false,"value":""},{"id":"RMIX","type":"number","calc":true,"value":""},{"id":"QUALSOLD","type":"number","calc":false,"value":""},{"id":"QUAL","type":"number","calc":true,"value":""},{"id":"ADDAMT","type":"number","calc":true,"value":""},{"id":"BIOCRED","type":"number","calc":false,"value":""},{"id":"CYCRED","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"COESTTR","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8864.json b/test/data/fd/form/F8864.json new file mode 100755 index 00000000..5d754aa2 --- /dev/null +++ b/test/data/fd/form/F8864.json @@ -0,0 +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":68.149},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":68.149},{"oc":"#221f1f","x":74.209,"y":5.251,"w":1.5,"l":24.836},{"oc":"#221f1f","x":74.209,"y":6.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":10.501,"w":0.75,"l":44.636},{"oc":"#221f1f","x":11.097,"y":12.001,"w":0.75,"l":44.636},{"oc":"#221f1f","x":55.647,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":10.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":12.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":10.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":74.209,"y":12.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":10.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":12.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":55.647,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":13.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":13.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":13.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":14.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":14.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":14.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":15.014,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":15.014,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":15.014,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":15.014,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.014,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":16.514,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":16.514,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":16.514,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":16.514,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.514,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":17.264,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":17.264,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":17.264,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":17.264,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.264,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":18.014,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":18.014,"w":0.75,"l":14.936},{"oc":"#221f1f","x":74.209,"y":18.014,"w":0.75,"l":9.986},{"oc":"#221f1f","x":84.109,"y":18.014,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.014,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":18.764,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":18.764,"w":1.125,"l":14.936},{"oc":"#221f1f","x":74.209,"y":18.764,"w":1.125,"l":9.986},{"oc":"#221f1f","x":84.109,"y":18.764,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.764,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.19,"y":26.251,"w":1.125,"l":92.813},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":46.501,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":46.501,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.723},{"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.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.542},{"oc":"#221f1f","x":74.252,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":59.402,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.69,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.69,"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":74.252,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":55.69,"y":14.236,"w":0.75,"l":0.794},{"oc":"#221f1f","x":59.402,"y":14.236,"w":0.75,"l":0.794},{"oc":"#221f1f","x":74.252,"y":14.236,"w":0.75,"l":0.794},{"oc":"#221f1f","x":84.152,"y":14.236,"w":0.75,"l":0.794},{"oc":"#221f1f","x":95.29,"y":14.236,"w":0.75,"l":0.794},{"oc":"#221f1f","x":55.69,"y":14.998,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":14.998,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":14.998,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":14.998,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.998,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.69,"y":16.498,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":16.498,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":16.498,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":16.498,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.498,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":17.248,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":17.248,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":17.248,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.248,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.248,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":17.998,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":17.998,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.252,"y":17.998,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":17.998,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.998,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":23.235,"w":0.75,"l":1.539},{"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.789},{"oc":"#221f1f","x":84.152,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":1.531},{"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}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"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.08,"clr":-1,"A":"left","R":[{"T":"8864","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.9130000000000003,"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.363,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.308,"y":2.186,"w":19.98,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20and%20Renewable%20Diesel%20Fuels%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.4000000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.4930000000000003,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.243,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208864%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.243,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8864.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.541,"y":2.112,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1924","S":51,"TS":[0,9,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":91.204,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.824,"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.27,"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.271,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"141","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.034,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.533,"y":6.537,"w":53.720999999999954,"clr":-1,"A":"left","R":[{"T":"You%20cannot%20claim%20any%20amounts%20on%20Form%208864%20that%20you%20claimed%20(or%20will%20claim)%20on%20Form%20720%20(Schedule%20C)%2C%20Form%208849%2C%20or%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.533,"y":7.225,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%204136.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.572,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.065,"w":56.28399999999994,"clr":-1,"A":"left","R":[{"T":"Claimant%20has%20a%20certificate%20from%20the%20producer%20or%20importer%20of%20biodiesel%20or%20renewable%20diesel%20reported%20on%20lines%201%20through%206%20below%20a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.004,"y":8.065,"w":2.501,"clr":-1,"A":"left","R":[{"T":"nd%2C%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.753,"w":55.401999999999944,"clr":-1,"A":"left","R":[{"T":"applicable%2C%20claimant%20also%20has%20a%20statement%20from%20the%20reseller.%20%20Claimant%20has%20no%20reason%20to%20believe%20that%20the%20information%20in%20the%20cer","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.64,"y":8.753,"w":4.444000000000001,"clr":-1,"A":"left","R":[{"T":"tificate%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":9.44,"w":41.325999999999986,"clr":-1,"A":"left","R":[{"T":"statement%20is%20false.%20Claimant%20may%20need%20to%20attach%20a%20copy%20of%20the%20certificate%20and%20statement.%20See%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.864,"y":9.44,"w":5.648,"clr":-1,"A":"left","R":[{"T":"Certification%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.601,"y":9.44,"w":2.962,"clr":-1,"A":"left","R":[{"T":"below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.37,"y":10.61,"w":5.519,"clr":-1,"A":"left","R":[{"T":"Type%20of%20Fuel","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.876,"y":10.157,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.53,"y":10.595,"w":8.946000000000003,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Gallons%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.057,"y":11.032,"w":5.852,"clr":-1,"A":"left","R":[{"T":"Sold%20or%20Used","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.229,"y":10.336,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.704,"y":10.861,"w":2.074,"clr":-1,"A":"left","R":[{"T":"Rate","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.626,"y":10.242,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.853,"y":10.901,"w":10.761999999999999,"clr":-1,"A":"left","R":[{"T":"Column%20(a)%20x%20Column%20(b)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.602,"y":12.599,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":15.778,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20(other%20than%20agri-biodiesel)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":12.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.89,"y":12.599,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.116,"y":12.599,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":13.349,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":6.166,"clr":-1,"A":"left","R":[{"T":"Agri-biodiesel","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":13.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.89,"y":13.349,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.116,"y":13.349,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":14.112,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.103,"w":8.129000000000001,"clr":-1,"A":"left","R":[{"T":"Renewable%20diesel%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":14.103,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.89,"y":14.112,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.116,"y":14.112,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":14.83,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.803,"w":26.299000000000003,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20(other%20than%20agri-biodiesel)%20included%20in%20a%20biodiesel%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":15.489999999999998,"w":3.612,"clr":-1,"A":"left","R":[{"T":"mixture%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.318,"y":15.489999999999998,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.89,"y":15.611999999999998,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.116,"y":15.611999999999998,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":16.362,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.353,"w":20.299000000000007,"clr":-1,"A":"left","R":[{"T":"Agri-biodiesel%20included%20in%20a%20biodiesel%20mixture%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":16.353,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.89,"y":16.362,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.116,"y":16.362,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":17.112,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.103,"w":25.483,"clr":-1,"A":"left","R":[{"T":"Renewable%20diesel%20included%20in%20a%20renewable%20diesel%20mixture%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":17.103,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":17.103,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.89,"y":17.112,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.116,"y":17.112,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%241.00","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":17.862,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.853,"w":15.687000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified%20agri-biodiesel%20production%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":17.853,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.89,"y":17.862,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":77.116,"y":17.862,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%24%20%20.10","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":18.599,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":37.586,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20through%207.%20Include%20this%20amount%20in%20your%20income%20for%202013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":18.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":18.599,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":19.305,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":41.224999999999966,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20and%20renewable%20diesel%20fuels%20credit%20from%20partnerships%2C%20S%20corporations%2C%20cooperatives%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":19.977,"w":16.392000000000003,"clr":-1,"A":"left","R":[{"T":"estates%2C%20and%20trusts%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.872,"y":19.977,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":20.099,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.79,"y":20.868,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.853,"w":38.769,"clr":-1,"A":"left","R":[{"T":"Add%20lines%208%20and%209.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%2011.%20Partnerships%20and%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":21.54,"w":43.36199999999997,"clr":-1,"A":"left","R":[{"T":"S%20corporations%2C%20stop%20here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":22.228,"w":15.211000000000006,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Form%203800%2C%20line%201l%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.81,"y":22.228,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.234,"y":22.349,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.79,"y":23.055,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.04,"w":39.89399999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"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.373,"y":23.728,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.234,"y":23.849,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.79,"y":24.555,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.54,"w":44.25499999999997,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C%20subtract%20line%2011%20from%20line%2010.%20Report%20this%20amount%20on%20Form%203800%2C%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.227,"w":2.871,"clr":-1,"A":"left","R":[{"T":"line%201l%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":25.227,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.234,"y":25.349,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"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":60.308,"y":46.376,"w":7.336,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2025778F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8864","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"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":6368,"AM":1024,"x":6.229,"y":5.834,"w":67.897,"h":0.901,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO","EN":0},"TI":6369,"AM":1024,"x":74.394,"y":5.889,"w":24.585,"h":0.846,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOSOLD","EN":0},"TI":6370,"AM":0,"x":59.559,"y":12.691,"w":14.664,"h":0.833,"TU":"Line 1(a). Biodiesel (other than agri-biodiesel)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STRBIO","EN":0},"TI":6371,"AM":1024,"x":84.24,"y":12.675,"w":10.996,"h":0.833,"TU":"Column (a) X Column (b)_ Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGRISOLD","EN":0},"TI":6372,"AM":0,"x":59.539,"y":13.5,"w":14.664,"h":0.833,"TU":"Line 2(a). Agri-biodiesel."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STRAGRI","EN":0},"TI":6373,"AM":1024,"x":84.22,"y":13.484,"w":10.996,"h":0.833,"TU":"Column (a) X Column (b)_ Line 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MIXSOLD","EN":0},"TI":6374,"AM":0,"x":59.594,"y":14.282,"w":14.664,"h":0.833,"TU":"Line 3(a). Renewable diesel."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOMIX","EN":0},"TI":6375,"AM":1024,"x":84.275,"y":14.266,"w":10.921,"h":0.833,"TU":"Column (a) X Column (b)_ Line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIODSOLD","EN":0},"TI":6376,"AM":0,"x":59.499,"y":15.745,"w":14.664,"h":0.833,"TU":"Line 4(a). Biodiesel (other than agri-biodiesel) included in a biodiesel mixture."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIODIES","EN":0},"TI":6377,"AM":1024,"x":84.18,"y":15.729,"w":11.146,"h":0.833,"TU":"Column (a) X Column (b)_ Line 4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGMXSOLD","EN":0},"TI":6378,"AM":0,"x":59.503,"y":16.552,"w":14.664,"h":0.833,"TU":"Line 5(a). Agri-biodiesel included in a biodiesel mixture."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGRIBIO","EN":0},"TI":6379,"AM":1024,"x":84.185,"y":16.536,"w":11.071,"h":0.833,"TU":"Column (a) X Column (b)_ Line 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RMIXSLD","EN":0},"TI":6380,"AM":0,"x":59.524,"y":17.306,"w":14.664,"h":0.833,"TU":"Line 6(a). Renewable diesel included in a renewable diesel mixture."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RMIX","EN":0},"TI":6381,"AM":1024,"x":84.206,"y":17.29,"w":11.22,"h":0.833,"TU":"Column (a) X Column (b)_ Line 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALSOLD","EN":0},"TI":6382,"AM":0,"x":59.354,"y":18.034,"w":14.664,"h":0.833,"TU":"Line 7(a). Qualified agri-biodiesel production."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL","EN":0},"TI":6383,"AM":1024,"x":84.036,"y":18.018,"w":11.37,"h":0.833,"TU":"Column (a) X Column (b)_ Line 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDAMT","EN":0},"TI":6384,"AM":1024,"x":84.273,"y":18.785,"w":11.032,"h":0.833,"TU":"8. Add line 1 through 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOCRED","EN":0},"TI":6385,"AM":0,"x":84.324,"y":20.221,"w":11.032,"h":0.833,"TU":"Line 9. Biodiesel and renewable diesel fuels credit from partnerships, S corporations, cooperatives, estates, and trusts (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYCRED","EN":0},"TI":6386,"AM":1024,"x":84.356,"y":22.296,"w":10.746,"h":0.834,"TU":"10. Add lines 8 and 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENALLOC","EN":0},"TI":6387,"AM":1024,"x":84.336,"y":23.944,"w":10.787,"h":0.833,"TU":"11. Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COESTTR","EN":0},"TI":6388,"AM":1024,"x":84.336,"y":25.451,"w":10.787,"h":0.833,"TU":"12. Cooperatives, estates, and trusts, subtract line 11 from line 10."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8874.content.txt b/test/data/fd/form/F8874.content.txt new file mode 100755 index 00000000..e689a07b --- /dev/null +++ b/test/data/fd/form/F8874.content.txt @@ -0,0 +1,59 @@ +Form +8874 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +New Markets Credit +a + Attach to your tax return. +a + Information about Form 8874 and its instructions is at +www.irs.gov/form8874 +. +OMB No. 1545-1804 +Attachment +Sequence No. +127 +Name(s) shown on return +Identifying number +(a) +Name and address of the qualified +community development entity (CDE) +(b) +Employer identification +number of CDE +(c) +Date of initial +investment +(d) +Amount of qualified +equity investment +(e) +Credit +rate +(f) +Credit ((d) + × +(e)) +1 +% +% +% +% +% +% +2 +New markets credit from partnerships and S corporations +............. +2 +3 +Add lines 1 and 2. Partnerships and S corporations, report this amount on Schedule K; all others, +report this amount on Form 3800, line 1i +................... +3 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 31663N +Form +8874 +(Rev. 12-2012) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8874.fields.json b/test/data/fd/form/F8874.fields.json new file mode 100755 index 00000000..bb7832c9 --- /dev/null +++ b/test/data/fd/form/F8874.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A13_NAMCDE_1_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE1_1_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE_1_","type":"alpha","calc":false,"value":""},{"id":"A13_STATE_1_","type":"alpha","calc":false,"value":""},{"id":"A13_ZIP_1_","type":"zip","calc":false,"value":""},{"id":"A13_IDNO_1_","type":"mask","calc":false,"value":""},{"id":"A13_DTINVEST_1_","type":"date","calc":false,"value":""},{"id":"A13_AMTINVST_1_","type":"number","calc":false,"value":""},{"id":"A13_CRRATE_1_","type":"number","calc":false,"value":""},{"id":"A13_INVSTCR_1_","type":"number","calc":false,"value":""},{"id":"A13_NAMCDE_2_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE1_2_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE_2_","type":"alpha","calc":false,"value":""},{"id":"A13_STATE_2_","type":"alpha","calc":false,"value":""},{"id":"A13_ZIP_2_","type":"zip","calc":false,"value":""},{"id":"A13_IDNO_2_","type":"mask","calc":false,"value":""},{"id":"A13_DTINVEST_2_","type":"date","calc":false,"value":""},{"id":"A13_AMTINVST_2_","type":"number","calc":false,"value":""},{"id":"A13_CRRATE_2_","type":"number","calc":false,"value":""},{"id":"A13_INVSTCR_2_","type":"number","calc":false,"value":""},{"id":"A13_NAMCDE_3_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE1_3_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE_3_","type":"alpha","calc":false,"value":""},{"id":"A13_STATE_3_","type":"alpha","calc":false,"value":""},{"id":"A13_ZIP_3_","type":"zip","calc":false,"value":""},{"id":"A13_IDNO_3_","type":"mask","calc":false,"value":""},{"id":"A13_DTINVEST_3_","type":"date","calc":false,"value":""},{"id":"A13_AMTINVST_3_","type":"number","calc":false,"value":""},{"id":"A13_CRRATE_3_","type":"number","calc":false,"value":""},{"id":"A13_INVSTCR_3_","type":"number","calc":false,"value":""},{"id":"A13_NAMCDE_4_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE1_4_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE_4_","type":"alpha","calc":false,"value":""},{"id":"A13_STATE_4_","type":"alpha","calc":false,"value":""},{"id":"A13_ZIP_4_","type":"zip","calc":false,"value":""},{"id":"A13_IDNO_4_","type":"mask","calc":false,"value":""},{"id":"A13_DTINVEST_4_","type":"date","calc":false,"value":""},{"id":"A13_AMTINVST_4_","type":"number","calc":false,"value":""},{"id":"A13_CRRATE_4_","type":"number","calc":false,"value":""},{"id":"A13_INVSTCR_4_","type":"number","calc":false,"value":""},{"id":"A13_NAMCDE_5_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE1_5_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE_5_","type":"alpha","calc":false,"value":""},{"id":"A13_STATE_5_","type":"alpha","calc":false,"value":""},{"id":"A13_ZIP_5_","type":"zip","calc":false,"value":""},{"id":"A13_IDNO_5_","type":"mask","calc":false,"value":""},{"id":"A13_DTINVEST_5_","type":"date","calc":false,"value":""},{"id":"A13_AMTINVST_5_","type":"number","calc":false,"value":""},{"id":"A13_CRRATE_5_","type":"number","calc":false,"value":""},{"id":"A13_INVSTCR_5_","type":"number","calc":false,"value":""},{"id":"A13_NAMCDE_6_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE1_6_","type":"alpha","calc":false,"value":""},{"id":"A13_ADDCDE_6_","type":"alpha","calc":false,"value":""},{"id":"A13_STATE_6_","type":"alpha","calc":false,"value":""},{"id":"A13_ZIP_6_","type":"zip","calc":false,"value":""},{"id":"A13_IDNO_6_","type":"mask","calc":false,"value":""},{"id":"A13_DTINVEST_6_","type":"date","calc":false,"value":""},{"id":"A13_AMTINVST_6_","type":"number","calc":false,"value":""},{"id":"A13_CRRATE_6_","type":"number","calc":false,"value":""},{"id":"A13_INVSTCR_6_","type":"number","calc":false,"value":""},{"id":"MARKTCR","type":"number","calc":false,"value":""},{"id":"CYCRDTS","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8874.json b/test/data/fd/form/F8874.json new file mode 100755 index 00000000..51dd53fb --- /dev/null +++ b/test/data/fd/form/F8874.json @@ -0,0 +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.281,"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":74.336},{"oc":"#221f1f","x":80.395,"y":6.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":28.548},{"oc":"#221f1f","x":34.607,"y":8.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":8.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":75.445,"y":8.25,"w":0.75,"l":5.036},{"oc":"#221f1f","x":80.395,"y":8.25,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.273,"y":10.969,"w":0.75,"l":28.548},{"oc":"#221f1f","x":34.736,"y":10.969,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.348,"y":10.969,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.723,"y":10.969,"w":0.75,"l":14.936},{"oc":"#221f1f","x":75.573,"y":10.969,"w":0.75,"l":5.036},{"oc":"#221f1f","x":80.524,"y":10.969,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.374,"y":10.969,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":13.922,"w":0.75,"l":28.548},{"oc":"#221f1f","x":34.607,"y":13.922,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.22,"y":13.922,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.595,"y":13.922,"w":0.75,"l":14.936},{"oc":"#221f1f","x":75.445,"y":13.922,"w":0.75,"l":5.036},{"oc":"#221f1f","x":80.395,"y":13.922,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":13.922,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.66,"y":16.782,"w":0.75,"l":28.548},{"oc":"#221f1f","x":35.123,"y":16.782,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.735,"y":16.782,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.11,"y":16.782,"w":0.75,"l":14.936},{"oc":"#221f1f","x":75.96,"y":16.782,"w":0.75,"l":5.036},{"oc":"#221f1f","x":80.91,"y":16.782,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.76,"y":16.782,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.402,"y":19.5,"w":0.75,"l":28.548},{"oc":"#221f1f","x":34.865,"y":19.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.477,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.852,"y":19.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":75.702,"y":19.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":80.653,"y":19.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.503,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.402,"y":22.454,"w":0.75,"l":28.548},{"oc":"#221f1f","x":34.865,"y":22.454,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.477,"y":22.454,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.852,"y":22.454,"w":0.75,"l":14.936},{"oc":"#221f1f","x":75.702,"y":22.454,"w":0.75,"l":5.036},{"oc":"#221f1f","x":80.653,"y":22.454,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.503,"y":22.454,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.789,"y":25.313,"w":0.75,"l":28.548},{"oc":"#221f1f","x":35.252,"y":25.313,"w":0.75,"l":13.698},{"oc":"#221f1f","x":48.864,"y":25.313,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.239,"y":25.313,"w":0.75,"l":14.936},{"oc":"#221f1f","x":76.089,"y":25.313,"w":0.75,"l":5.036},{"oc":"#221f1f","x":81.039,"y":25.313,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.889,"y":25.313,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.752,"y":26.813,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.889,"y":26.813,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.039,"y":26.813,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.789,"y":28.313,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.677,"y":28.313,"w":1.5,"l":40.923},{"oc":"#221f1f","x":83.514,"y":28.313,"w":1.5,"l":16.173}],"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":1.062},{"oc":"#221f1f","x":84.15,"y":3.263,"w":1.5,"l":2.018},{"oc":"#221f1f","x":80.438,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":34.65,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.263,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":34.676,"y":8.234,"w":0.75,"l":2.657},{"oc":"#221f1f","x":48.211,"y":8.235,"w":0.75,"l":2.936},{"oc":"#221f1f","x":60.586,"y":8.256,"w":0.75,"l":2.612},{"oc":"#221f1f","x":75.41,"y":8.258,"w":0.75,"l":2.702},{"oc":"#221f1f","x":80.438,"y":8.234,"w":0.75,"l":2.657},{"oc":"#221f1f","x":95.262,"y":8.258,"w":0.75,"l":2.702},{"oc":"#221f1f","x":34.805,"y":10.934,"w":0.75,"l":2.883},{"oc":"#221f1f","x":48.211,"y":10.956,"w":0.75,"l":2.837},{"oc":"#221f1f","x":60.715,"y":10.915,"w":0.75,"l":3.108},{"oc":"#221f1f","x":75.41,"y":10.936,"w":0.75,"l":2.973},{"oc":"#221f1f","x":80.566,"y":10.981,"w":0.75,"l":2.882},{"oc":"#221f1f","x":95.262,"y":10.96,"w":0.75,"l":3.018},{"oc":"#221f1f","x":35.063,"y":13.954,"w":0.75,"l":2.747},{"oc":"#221f1f","x":48.211,"y":13.886,"w":0.75,"l":2.978},{"oc":"#221f1f","x":60.586,"y":13.911,"w":0.75,"l":2.927},{"oc":"#221f1f","x":75.41,"y":13.908,"w":0.75,"l":2.747},{"oc":"#221f1f","x":80.566,"y":13.982,"w":0.75,"l":2.973},{"oc":"#221f1f","x":95.262,"y":13.909,"w":0.75,"l":2.932},{"oc":"#221f1f","x":34.934,"y":16.765,"w":0.75,"l":2.844},{"oc":"#221f1f","x":48.469,"y":16.791,"w":0.75,"l":2.792},{"oc":"#221f1f","x":60.457,"y":16.671,"w":0.75,"l":2.657},{"oc":"#221f1f","x":75.539,"y":16.789,"w":0.75,"l":2.702},{"oc":"#221f1f","x":80.695,"y":16.769,"w":0.75,"l":2.837},{"oc":"#221f1f","x":95.262,"y":16.767,"w":0.75,"l":2.747},{"oc":"#221f1f","x":34.934,"y":19.467,"w":0.75,"l":2.973},{"oc":"#221f1f","x":48.469,"y":19.444,"w":0.75,"l":3.018},{"oc":"#221f1f","x":60.715,"y":19.491,"w":0.75,"l":3.018},{"oc":"#221f1f","x":75.668,"y":19.514,"w":0.75,"l":2.973},{"oc":"#221f1f","x":80.695,"y":19.514,"w":0.75,"l":2.973},{"oc":"#221f1f","x":95.391,"y":19.514,"w":0.75,"l":2.973},{"oc":"#221f1f","x":34.934,"y":22.463,"w":0.75,"l":2.792},{"oc":"#221f1f","x":48.469,"y":22.397,"w":0.75,"l":3.018},{"oc":"#221f1f","x":60.844,"y":22.442,"w":0.75,"l":2.927},{"oc":"#221f1f","x":75.539,"y":22.394,"w":0.75,"l":2.837},{"oc":"#221f1f","x":80.695,"y":22.418,"w":0.75,"l":2.882},{"oc":"#221f1f","x":95.52,"y":22.444,"w":0.75,"l":3.018},{"oc":"#221f1f","x":84.795,"y":25.297,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.082,"y":25.297,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.417,"y":25.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.417,"y":26.094,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.795,"y":26.789,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.082,"y":26.789,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.417,"y":26.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.795,"y":27.547,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.082,"y":27.547,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.417,"y":27.594,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bdc0c2","x":81.082,"y":26.813,"w":3.712,"h":0.75,"clr":-1},{"x":23.632,"y":10.206,"w":4.926,"h":0.663,"clr":1},{"x":23.496,"y":13.074,"w":4.926,"h":0.663,"clr":1},{"x":23.452,"y":15.909,"w":4.926,"h":0.663,"clr":1},{"x":23.768,"y":18.778,"w":4.926,"h":0.663,"clr":1},{"x":23.724,"y":21.646,"w":4.926,"h":0.663,"clr":1},{"x":23.95,"y":24.547,"w":4.926,"h":0.663,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.08,"y":2.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8874","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.2859999999999996,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.8360000000000003,"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.273,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":41.516,"y":2.163,"w":9,"clr":-1,"A":"left","R":[{"T":"New%20Markets%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.423,"y":3.399,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.454,"y":3.492,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.339,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.371,"y":4.242,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208874%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.192,"y":4.242,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8874","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.967,"y":4.242,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":2.113,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1804","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"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.963,"y":4.196,"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.196,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"127","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.937,"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":80.875,"y":4.937,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.467,"y":6.406,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.92,"y":6.844,"w":15.930000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20and%20address%20of%20the%20qualified%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.172,"y":7.281000000000001,"w":16.617,"clr":-1,"A":"left","R":[{"T":"community%20development%20entity%20(CDE)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.483,"y":6.406,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.067,"y":6.844,"w":10.483000000000002,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.061,"y":7.281000000000001,"w":7.1690000000000005,"clr":-1,"A":"left","R":[{"T":"number%20of%20CDE%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.499,"y":6.406,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.703,"y":6.844,"w":6.371000000000002,"clr":-1,"A":"left","R":[{"T":"Date%20of%20initial%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.258,"y":7.281000000000001,"w":5.1690000000000005,"clr":-1,"A":"left","R":[{"T":"investment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.089,"y":6.406,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.576,"y":6.844,"w":8.984000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20qualified%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.066,"y":7.281000000000001,"w":8.17,"clr":-1,"A":"left","R":[{"T":"equity%20investment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.011,"y":6.406,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.075,"y":6.844,"w":3,"clr":-1,"A":"left","R":[{"T":"Credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.677,"y":7.281000000000001,"w":1.722,"clr":-1,"A":"left","R":[{"T":"rate","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.913,"y":6.625,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.355,"y":7.062,"w":4.37,"clr":-1,"A":"left","R":[{"T":"Credit%20((d)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.613,"y":7.062,"w":1.1560000000000001,"clr":-1,"A":"left","R":[{"T":"%20%C3%97%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.003,"y":7.062,"w":1.592,"clr":-1,"A":"left","R":[{"T":"(e))%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.856,"y":10.094,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.499,"y":12.763,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.727,"y":15.625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.985,"y":18.625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.985,"y":21.578,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.113,"y":23.875,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.197,"y":25.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.532,"y":25.902,"w":26.262999999999995,"clr":-1,"A":"left","R":[{"T":"New%20markets%20credit%20from%20partnerships%20and%20S%20corporations%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.02,"y":25.902,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.258,"y":25.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.197,"y":26.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.532,"y":26.601,"w":43.56699999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202.%20Partnerships%20and%20S%20corporations%2C%20report%20this%20amount%20on%20Schedule%20K%3B%20all%20others%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.524,"y":27.289,"w":18.174000000000003,"clr":-1,"A":"left","R":[{"T":"report%20this%20amount%20on%20Form%203800%2C%20line%201i%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.637,"y":27.289,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.258,"y":27.402,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.582,"y":28.169,"w":26.239,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.386,"y":28.187,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2031663N%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.772,"y":28.134,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.249,"y":28.134,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8874%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.549,"y":28.134,"w":6.799000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2012-2012)%20","S":2,"TS":[0,10,0,0]}]},{"x":0.09399999999999997,"y":48.532,"w":16.008,"clr":0,"A":"left","R":[{"T":"AP","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6389,"AM":1024,"x":6.245,"y":5.822,"w":74.085,"h":0.904,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6390,"AM":1024,"x":81.091,"y":5.882,"w":17.395,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_NAMCDE_1_","EN":0},"TI":6391,"AM":0,"x":9.629,"y":8.427,"w":24.946,"h":0.833,"TU":"Line 1(a). Name of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE1_1_","EN":0},"TI":6392,"AM":0,"x":7.063,"y":9.299,"w":26.877,"h":0.833,"TU":"Address of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE_1_","EN":0},"TI":6393,"AM":0,"x":6.719,"y":10.119,"w":16.549,"h":0.833,"TU":"City of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_STATE_1_","EN":0},"TI":6394,"AM":0,"x":23.776,"y":10.203,"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":"A13_ZIP_1_","EN":0},"TI":6395,"AM":0,"x":29.061,"y":10.292,"w":5.657,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A13_IDNO_1_","EN":0},"TI":6396,"AM":0,"x":34.902,"y":9.882,"w":13.547,"h":0.965,"TU":"Line 1(b). Employer identification number of CDE.","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A13_DTINVEST_1_","EN":0},"TI":6397,"AM":0,"x":48.783,"y":9.929,"w":11.724,"h":0.932,"TU":"Line 1(c). Date of initial investment.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_AMTINVST_1_","EN":0},"TI":6398,"AM":0,"x":61.16,"y":9.983,"w":14.179,"h":0.868,"TU":"Line 1(d). Amount of qualified equity investment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_CRRATE_1_","EN":0},"TI":6399,"AM":0,"x":75.72,"y":9.93,"w":3.372,"h":0.834,"TU":"Line 1(e). Credit rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_INVSTCR_1_","EN":0},"TI":6400,"AM":0,"x":80.768,"y":9.89,"w":14.499,"h":0.961,"TU":"Line 1(f). Credit ((d) x (e)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_NAMCDE_2_","EN":0},"TI":6401,"AM":0,"x":6.783,"y":11.16,"w":27.894,"h":0.839,"TU":"Line 1(a). Name of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE1_2_","EN":0},"TI":6402,"AM":0,"x":6.477,"y":12.11,"w":28.276,"h":0.833,"TU":"Address of the qualified community development entity (CDE)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE_2_","EN":0},"TI":6403,"AM":0,"x":6.277,"y":13.017,"w":16.549,"h":0.833,"TU":"City of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_STATE_2_","EN":0},"TI":6404,"AM":0,"x":23.64,"y":13.071,"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":"A13_ZIP_2_","EN":0},"TI":6405,"AM":0,"x":29.151,"y":13.158,"w":5.529,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A13_IDNO_2_","EN":0},"TI":6406,"AM":0,"x":34.932,"y":12.853,"w":13.547,"h":0.965,"TU":"Line 1(b). Employer identification number of CDE.","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A13_DTINVEST_2_","EN":0},"TI":6407,"AM":0,"x":48.719,"y":12.805,"w":11.788,"h":0.938,"TU":"Line 1(c). Date of initial investment.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_AMTINVST_2_","EN":0},"TI":6408,"AM":0,"x":61.288,"y":12.981,"w":13.922,"h":0.845,"TU":"Line 1(d). Amount of qualified equity investment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_CRRATE_2_","EN":0},"TI":6409,"AM":0,"x":75.578,"y":12.921,"w":3.371,"h":0.834,"TU":"Line 1(e). Credit rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_INVSTCR_2_","EN":0},"TI":6410,"AM":0,"x":80.768,"y":12.865,"w":14.499,"h":0.961,"TU":"Line 1(f). Credit ((d) x (e)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_NAMCDE_3_","EN":0},"TI":6411,"AM":0,"x":6.528,"y":14.018,"w":27.959,"h":0.833,"TU":"Line 1(a). Name of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE1_3_","EN":0},"TI":6412,"AM":0,"x":6.782,"y":14.968,"w":27.74,"h":0.833,"TU":"Address of the qualified community development entity (CDE)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE_3_","EN":0},"TI":6413,"AM":0,"x":6.369,"y":15.849,"w":16.549,"h":0.833,"TU":"City of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_STATE_3_","EN":0},"TI":6414,"AM":0,"x":23.596,"y":15.906,"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":"A13_ZIP_3_","EN":0},"TI":6415,"AM":0,"x":29.316,"y":15.966,"w":5.465,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A13_IDNO_3_","EN":0},"TI":6416,"AM":0,"x":35.081,"y":15.753,"w":13.611,"h":0.895,"TU":"Line 1(b). Employer identification number of CDE.","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A13_DTINVEST_3_","EN":0},"TI":6417,"AM":0,"x":49.127,"y":15.748,"w":11.724,"h":0.868,"TU":"Line 1(c). Date of initial investment.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_AMTINVST_3_","EN":0},"TI":6418,"AM":0,"x":61.568,"y":15.785,"w":13.986,"h":0.915,"TU":"Line 1(d). Amount of qualified equity investment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_CRRATE_3_","EN":0},"TI":6419,"AM":0,"x":75.978,"y":15.794,"w":3.372,"h":0.834,"TU":"Line 1(e). Credit rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_INVSTCR_3_","EN":0},"TI":6420,"AM":0,"x":81.047,"y":15.855,"w":14.499,"h":0.845,"TU":"Line 1(f). Credit ((d) x (e)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_NAMCDE_4_","EN":0},"TI":6421,"AM":0,"x":6.63,"y":16.949,"w":28.215,"h":0.89,"TU":"Line 1(a). Name of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE1_4_","EN":0},"TI":6422,"AM":0,"x":6.873,"y":17.895,"w":27.827,"h":0.833,"TU":"Address of the qualified community development entity (CDE)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE_4_","EN":0},"TI":6423,"AM":0,"x":6.554,"y":18.713,"w":16.549,"h":0.833,"TU":"City of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_STATE_4_","EN":0},"TI":6424,"AM":0,"x":23.912,"y":18.774,"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":"A13_ZIP_4_","EN":0},"TI":6425,"AM":0,"x":29.727,"y":18.79,"w":5.144,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A13_IDNO_4_","EN":0},"TI":6426,"AM":0,"x":35.405,"y":18.436,"w":13.163,"h":0.942,"TU":"Line 1(b). Employer identification number of CDE.","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A13_DTINVEST_4_","EN":0},"TI":6427,"AM":0,"x":49.139,"y":18.543,"w":11.852,"h":0.845,"TU":"Line 1(c). Date of initial investment.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_AMTINVST_4_","EN":0},"TI":6428,"AM":0,"x":61.708,"y":18.59,"w":13.986,"h":0.881,"TU":"Line 1(d). Amount of qualified equity investment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_CRRATE_4_","EN":0},"TI":6429,"AM":0,"x":76.124,"y":18.564,"w":3.371,"h":0.834,"TU":"Line 1(e). Credit rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_INVSTCR_4_","EN":0},"TI":6430,"AM":0,"x":81.187,"y":18.51,"w":14.499,"h":0.961,"TU":"Line 1(f). Credit ((d) x (e)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_NAMCDE_5_","EN":0},"TI":6431,"AM":0,"x":6.791,"y":19.606,"w":28.215,"h":0.839,"TU":"Line 1(a). Name of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE1_5_","EN":0},"TI":6432,"AM":0,"x":6.981,"y":20.63,"w":27.74,"h":0.89,"TU":"Address of the qualified community development entity (CDE)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE_5_","EN":0},"TI":6433,"AM":0,"x":6.646,"y":21.544,"w":16.549,"h":0.833,"TU":"City of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_STATE_5_","EN":0},"TI":6434,"AM":0,"x":23.868,"y":21.643,"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":"A13_ZIP_5_","EN":0},"TI":6435,"AM":0,"x":29.492,"y":21.678,"w":5.208,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A13_IDNO_5_","EN":0},"TI":6436,"AM":0,"x":35.374,"y":21.415,"w":12.778,"h":0.885,"TU":"Line 1(b). Employer identification number of CDE.","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A13_DTINVEST_5_","EN":0},"TI":6437,"AM":0,"x":48.859,"y":21.444,"w":11.98,"h":0.868,"TU":"Line 1(c). Date of initial investment.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_AMTINVST_5_","EN":0},"TI":6438,"AM":0,"x":61.62,"y":21.481,"w":13.666,"h":0.915,"TU":"Line 1(d). Amount of qualified equity investment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_CRRATE_5_","EN":0},"TI":6439,"AM":0,"x":75.964,"y":21.487,"w":3.371,"h":0.834,"TU":"Line 1(e). Credit rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_INVSTCR_5_","EN":0},"TI":6440,"AM":0,"x":80.907,"y":21.481,"w":14.499,"h":0.915,"TU":"Line 1(f). Credit ((d) x (e)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_NAMCDE_6_","EN":0},"TI":6441,"AM":0,"x":6.514,"y":22.652,"w":28.087,"h":0.833,"TU":"Line 1(a). Name of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE1_6_","EN":0},"TI":6442,"AM":0,"x":6.704,"y":23.625,"w":27.88,"h":0.833,"TU":"Address of the qualified community development entity (CDE)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_ADDCDE_6_","EN":0},"TI":6443,"AM":0,"x":7.021,"y":24.478,"w":16.549,"h":0.833,"TU":"City of the qualified community development entity (CDE)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A13_STATE_6_","EN":0},"TI":6444,"AM":0,"x":24.094,"y":24.544,"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":"A13_ZIP_6_","EN":0},"TI":6445,"AM":0,"x":29.57,"y":24.548,"w":5.336,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A13_IDNO_6_","EN":0},"TI":6446,"AM":0,"x":35.082,"y":24.324,"w":13.547,"h":0.895,"TU":"Line 1(b). Employer identification number of CDE.","MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A13_DTINVEST_6_","EN":0},"TI":6447,"AM":0,"x":49.075,"y":24.271,"w":12.108,"h":0.961,"TU":"Line 1(c). Date of initial investment.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_AMTINVST_6_","EN":0},"TI":6448,"AM":0,"x":61.9,"y":24.284,"w":13.73,"h":0.985,"TU":"Line 1(d). Amount of qualified equity investment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_CRRATE_6_","EN":0},"TI":6449,"AM":0,"x":76.25,"y":24.36,"w":3.371,"h":0.834,"TU":"Line 1(e). Credit rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_INVSTCR_6_","EN":0},"TI":6450,"AM":0,"x":81.187,"y":24.354,"w":14.499,"h":0.915,"TU":"Line 1(f). Credit ((d) x (e)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MARKTCR","EN":0},"TI":6451,"AM":0,"x":84.835,"y":25.831,"w":10.787,"h":0.93,"TU":"Line 2. New markets credit from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYCRDTS","EN":0},"TI":6452,"AM":1024,"x":84.964,"y":27.338,"w":10.787,"h":0.915}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8880.content.txt b/test/data/fd/form/F8880.content.txt new file mode 100755 index 00000000..0bf564ba --- /dev/null +++ b/test/data/fd/form/F8880.content.txt @@ -0,0 +1,192 @@ +Credit for Qualified Retirement Savings Contributions +Form +8880 +Department of the Treasury +Internal Revenue Service +a + Attach to Form 1040, Form 1040A, or Form 1040NR. +a +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +54 +Name(s) shown on return +Your social security number +F +! +CAUTION +You +cannot + take this credit if +either + of the following applies. +• The amount on Form 1040, line 38; Form 1040A, line 22; or Form 1040NR, line 37 is more than $29,500 ($44,250 if head of +household; $59,000 if married filing jointly). +• The person(s) who made the qualified contribution or elective deferral +(a) + was born after January 1, 1996, +(b) + is claimed as a +dependent on someone else’s 2013 tax return, or +(c) + was a +student + (see instructions). + + +(a) You + + +(b) Your spouse + +1 +Traditional and Roth IRA contributions for 2013. +Do not + include rollover +contributions +.................... +1 +2 + + +Elective deferrals to a 401(k) or other qualified employer plan, voluntary +employee contributions, and 501(c)(18)(D) plan contributions for 2013 +(see instructions) +.................. +2 +3 +Add lines 1 and 2 +.................. +3 +4 + + +Certain distributions received +after + 2010 and +before + the due date +(including extensions) of your 2013 tax return (see instructions). If +married filing jointly, include +both + spouses’ amounts in +both + columns. +See instructions for an exception +............. +4 +5 +Subtract line 4 from line 3. If zero or less, enter -0- . +...... +5 +6 +In each column, enter the +smaller + of line 5 or $2,000 +...... +6 +7 +Add the amounts on line 6. If zero, +stop; +you cannot take this credit +.......... +7 +8 +Enter the amount from Form 1040, line 38*; Form 1040A, line 22; or +Form 1040NR, line 37 +................. +8 +9 +Enter the applicable decimal amount shown below: +If line 8 is +Over— +But not +over— +And your filing status is +Married +filing jointly +Head of +household +Single, Married filing +separately, or +Qualifying widow(er) +Enter on line 9„ + +--- +$17,750 +.5 .5 +.5 +$17,750 +$19,250 +.5 .5 +.2 +$19,250 +$26,625 +.5 .5 +.1 +$26,625 +$28,875 +.5 .2 +.1 +$28,875 +$29,500 +.5 .1 +.1 +$29,500 +$35,500 +.5 .1 +.0 +$35,500 +$38,500 +.2 .1 +.0 +$38,500 +$44,250 +.1 .1 +.0 +$44,250 +$59,000 +.1 .0 +.0 +$59,000 +--- +.0 +.0 +.0 +Note: +If line 9 is zero, + +stop; +you cannot take this credit. +9 +X +10 +Multiply line 7 by line 9 +......................... +10 +11 +Limitation based on tax liability. Enter the amount from the Credit Limit Worksheet in the +instructions +............................. +11 +12 Credit for qualified retirement savings contributions. +Enter the + smaller +of line 10 or line + +11 here +and on Form 1040, line 50; Form 1040A, line 32; or Form 1040NR, line 47 +........ +12 +*See Pub. 590 for the amount to enter if you are filing Form 2555, 2555-EZ, or 4563 or you are excluding income from Puerto Ric +o. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 33394D +Form +8880 + (2013) + Information about Form 8880 and its instructions is at www.irs.gov/form8880 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8880.fields.json b/test/data/fd/form/F8880.fields.json new file mode 100755 index 00000000..958e8eb3 --- /dev/null +++ b/test/data/fd/form/F8880.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TIRA","type":"number","calc":false,"value":""},{"id":"SIRA","type":"number","calc":false,"value":""},{"id":"TDEF","type":"number","calc":false,"value":""},{"id":"SDEF","type":"number","calc":false,"value":""},{"id":"TCONT","type":"number","calc":true,"value":""},{"id":"SCONT","type":"number","calc":true,"value":""},{"id":"TDIST","type":"number","calc":false,"value":""},{"id":"SDIST","type":"number","calc":false,"value":""},{"id":"TNET","type":"number","calc":true,"value":""},{"id":"SNET","type":"number","calc":true,"value":""},{"id":"TSAV","type":"number","calc":true,"value":""},{"id":"SSAV","type":"number","calc":true,"value":""},{"id":"SAVINGS","type":"number","calc":true,"value":""},{"id":"MAGI","type":"number","calc":true,"value":""},{"id":"FACTOR","type":"mask","calc":false,"value":""},{"id":"TENCRED","type":"number","calc":true,"value":""},{"id":"NETCRED","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8880.json b/test/data/fd/form/F8880.json new file mode 100755 index 00000000..94b1eb71 --- /dev/null +++ b/test/data/fd/form/F8880.json @@ -0,0 +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":2.76,"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.5,"l":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.5,"l":19.886},{"oc":"#221f1f","x":61.824,"y":10.501,"w":1.5,"l":3.799},{"oc":"#221f1f","x":65.537,"y":10.501,"w":1.5,"l":12.464},{"oc":"#221f1f","x":65.537,"y":11.251,"w":0.75,"l":12.464},{"oc":"#221f1f","x":77.916,"y":10.501,"w":1.5,"l":2.561},{"oc":"#221f1f","x":80.391,"y":10.501,"w":1.5,"l":3.799},{"oc":"#221f1f","x":84.105,"y":10.501,"w":1.5,"l":12.464},{"oc":"#221f1f","x":84.105,"y":11.251,"w":0.75,"l":12.464},{"oc":"#221f1f","x":96.483,"y":10.501,"w":1.5,"l":2.561},{"oc":"#221f1f","x":61.867,"y":12.751,"w":0.75,"l":3.714},{"oc":"#221f1f","x":61.867,"y":11.251,"w":0.75,"l":3.714},{"oc":"#221f1f","x":65.537,"y":12.751,"w":0.75,"l":12.464},{"oc":"#221f1f","x":77.916,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":77.916,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":80.391,"y":11.251,"w":0.75,"l":3.799},{"oc":"#221f1f","x":84.105,"y":12.751,"w":0.75,"l":12.464},{"oc":"#221f1f","x":96.483,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":96.483,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.824,"y":15.001,"w":1.125,"l":3.799},{"oc":"#221f1f","x":65.537,"y":15.001,"w":1.125,"l":12.464},{"oc":"#221f1f","x":77.916,"y":15.001,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.105,"y":15.001,"w":1.125,"l":12.464},{"oc":"#221f1f","x":96.483,"y":15.001,"w":1.125,"l":2.561},{"oc":"#221f1f","x":61.824,"y":15.751,"w":0.75,"l":3.799},{"oc":"#221f1f","x":65.537,"y":15.751,"w":0.75,"l":12.464},{"oc":"#221f1f","x":77.916,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.105,"y":15.751,"w":0.75,"l":12.464},{"oc":"#221f1f","x":96.483,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.824,"y":18.751,"w":1.125,"l":3.799},{"oc":"#221f1f","x":65.537,"y":18.751,"w":1.125,"l":12.464},{"oc":"#221f1f","x":77.916,"y":18.751,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.105,"y":18.751,"w":1.125,"l":12.464},{"oc":"#221f1f","x":96.483,"y":18.751,"w":1.125,"l":2.561},{"oc":"#221f1f","x":61.824,"y":19.501,"w":0.75,"l":3.799},{"oc":"#221f1f","x":65.537,"y":19.501,"w":0.75,"l":12.464},{"oc":"#221f1f","x":77.916,"y":19.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.105,"y":19.501,"w":0.75,"l":12.464},{"oc":"#221f1f","x":96.483,"y":19.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.824,"y":20.251,"w":1.125,"l":3.799},{"oc":"#221f1f","x":65.537,"y":20.251,"w":1.125,"l":12.464},{"oc":"#221f1f","x":77.916,"y":20.251,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.105,"y":20.251,"w":1.125,"l":12.464},{"oc":"#221f1f","x":96.483,"y":20.251,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.109,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":21.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.834,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":77.922,"y":22.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":80.397,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":11.14,"y":24.751,"w":0.75,"l":19.8},{"oc":"#221f1f","x":11.14,"y":24.001,"w":0.75,"l":19.8},{"oc":"#221f1f","x":11.097,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":20.997,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":30.897,"y":24.001,"w":0.75,"l":47.111},{"oc":"#221f1f","x":30.897,"y":24.751,"w":0.75,"l":47.111},{"oc":"#221f1f","x":60.597,"y":27.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":30.897,"y":27.001,"w":0.75,"l":29.786},{"oc":"#221f1f","x":11.097,"y":34.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":20.997,"y":34.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":30.897,"y":34.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":45.747,"y":34.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":60.597,"y":34.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":84.109,"y":29.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":29.251,"w":0.75,"l":3.798},{"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":37.501,"w":0.75,"l":3.798},{"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":80.397,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":39.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":39.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":40.501,"w":1.5,"l":52.061},{"oc":"#221f1f","x":58.122,"y":40.501,"w":1.5,"l":29.786},{"oc":"#221f1f","x":87.822,"y":40.501,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.04,"y":4.11,"w":1.5,"l":1.172},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.54},{"oc":"#221f1f","x":84.152,"y":2.751,"w":1.5,"l":1.406},{"oc":"#221f1f","x":84.152,"y":4.111,"w":1.5,"l":1.171},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":61.867,"y":10.47,"w":0.75,"l":0.797},{"oc":"#221f1f","x":80.434,"y":10.47,"w":0.75,"l":0.797},{"oc":"#221f1f","x":65.58,"y":11.251,"w":0.75,"l":1.5},{"oc":"#221f1f","x":61.867,"y":11.251,"w":0.75,"l":1.5},{"oc":"#221f1f","x":77.959,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.148,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.434,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.526,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.58,"y":12.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":61.867,"y":12.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":77.959,"y":12.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":84.148,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.434,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":96.526,"y":12.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":65.58,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.867,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.959,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.148,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.434,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.526,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.58,"y":15.735,"w":0.75,"l":3.039},{"oc":"#221f1f","x":61.867,"y":15.735,"w":0.75,"l":3.039},{"oc":"#221f1f","x":77.959,"y":15.735,"w":0.75,"l":3.039},{"oc":"#221f1f","x":84.148,"y":15.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.434,"y":15.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":96.526,"y":15.735,"w":0.75,"l":3.039},{"oc":"#221f1f","x":65.58,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.867,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.959,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.148,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.434,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.526,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.58,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.867,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.959,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.148,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.434,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.526,"y":19.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.986,"w":0.75,"l":7.531},{"oc":"#221f1f","x":80.44,"y":20.986,"w":0.75,"l":7.531},{"oc":"#221f1f","x":30.94,"y":24.001,"w":0.75,"l":0.75},{"oc":"#221f1f","x":11.14,"y":24.001,"w":0.75,"l":0.75},{"oc":"#221f1f","x":11.14,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":30.94,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":21.04,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.965,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":30.94,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.64,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.79,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":60.64,"y":24.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":11.14,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":21.04,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":80.44,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":29.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":84.152,"y":35.236,"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.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":38.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":7.501,"w":6.188,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.434,"y":11.251,"w":3.714,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.434,"y":12.751,"w":3.714,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":80.434,"y":15.001,"w":3.714,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.434,"y":15.751,"w":3.714,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.434,"y":18.751,"w":3.714,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.434,"y":19.501,"w":3.714,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":21.001,"w":3.712,"h":7.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":29.251,"w":3.712,"h":6,"clr":-1}],"Texts":[{"oc":"#221f1f","x":23.712,"y":2.419,"w":25.504000000000005,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Qualified%20Retirement%20Savings%20Contributions","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.758,"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.758,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8880","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7670000000000003,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.267,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":34.818,"y":3.4000000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":35.849,"y":3.4930000000000003,"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":26.342,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.969,"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.8530000000000002,"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.159,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.159,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.621,"y":3.8760000000000003,"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.322,"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.323,"w":1.112,"clr":-1,"A":"left","R":[{"T":"54","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.925,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"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.243,"y":8.29,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.428,"y":8.225,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.354,"y":8.822,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":14.602,"y":6.572,"w":2.056,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":17.964,"y":6.572,"w":3.2780000000000005,"clr":-1,"A":"left","R":[{"T":"cannot","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.631,"y":6.572,"w":7.946000000000003,"clr":-1,"A":"left","R":[{"T":"%20take%20this%20credit%20if%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.913,"y":6.572,"w":2.723,"clr":-1,"A":"left","R":[{"T":"either","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":40.622,"y":6.572,"w":10.870000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20the%20following%20applies.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":7.474,"w":55.69199999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20amount%20on%20Form%201040%2C%20line%2038%3B%20Form%201040A%2C%20line%2022%3B%20or%20Form%201040NR%2C%20line%2037%20is%20more%20than%20%2429%2C500%20(%2444%2C250%20if%20head%20of%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.602,"y":8.052,"w":19.116000000000007,"clr":-1,"A":"left","R":[{"T":"household%3B%20%2459%2C000%20if%20married%20filing%20jointly).","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.602,"y":8.927,"w":31.985000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20person(s)%20who%20made%20the%20qualified%20contribution%20or%20elective%20deferral%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.438,"y":8.927,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(a)","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":61.142,"y":8.927,"w":14.68900000000001,"clr":-1,"A":"left","R":[{"T":"%20was%20born%20after%20January%201%2C%201996%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.398,"y":8.927,"w":1.277,"clr":-1,"A":"left","R":[{"T":"(b)","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":83.156,"y":8.927,"w":7.186999999999999,"clr":-1,"A":"left","R":[{"T":"%20is%20claimed%20as%20a%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":14.602,"y":9.505,"w":22.285,"clr":-1,"A":"left","R":[{"T":"dependent%20on%20someone%20else%E2%80%99s%202013%20tax%20return%2C%20or%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":45.44,"y":9.505,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(c)","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":47.144,"y":9.505,"w":3.166,"clr":-1,"A":"left","R":[{"T":"%20was%20a%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.769,"y":9.505,"w":3.6109999999999998,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":57.046,"y":9.505,"w":8.112,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions).","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":68.956,"y":10.293,"w":3.3889999999999993,"clr":-1,"A":"left","R":[{"T":"(a)%20You","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":84.3,"y":10.293,"w":7.612,"clr":-1,"A":"left","R":[{"T":"(b)%20Your%20spouse","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.486,"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":10.821,"y":11.04,"w":21.597,"clr":-1,"A":"left","R":[{"T":"Traditional%20and%20Roth%20IRA%20contributions%20for%202013.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.643,"y":11.04,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.627,"y":11.04,"w":7.630000000000001,"clr":-1,"A":"left","R":[{"T":"%20include%20rollover%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.82,"y":11.728,"w":6.131,"clr":-1,"A":"left","R":[{"T":"contributions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.375,"y":11.728,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":"....................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.044,"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.486,"y":12.603,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.821,"y":12.603,"w":32.264,"clr":-1,"A":"left","R":[{"T":"Elective%20deferrals%20to%20a%20401(k)%20or%20other%20qualified%20employer%20plan%2C%20voluntary%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.823,"y":13.29,"w":31.43500000000001,"clr":-1,"A":"left","R":[{"T":"employee%20contributions%2C%20and%20501(c)(18)(D)%20plan%20contributions%20for%202013%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.823,"y":13.977,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.503,"y":13.977,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.044,"y":14.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.486,"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.821,"y":14.84,"w":8.059,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":14.84,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.044,"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.486,"y":15.665,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.821,"y":15.665,"w":13.353000000000005,"clr":-1,"A":"left","R":[{"T":"Certain%20distributions%20received%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.128,"y":15.665,"w":2.167,"clr":-1,"A":"left","R":[{"T":"after","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.689,"y":15.665,"w":4.744,"clr":-1,"A":"left","R":[{"T":"%202010%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.758,"y":15.665,"w":3.056,"clr":-1,"A":"left","R":[{"T":"before","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.493,"y":15.665,"w":6.188000000000001,"clr":-1,"A":"left","R":[{"T":"%20the%20due%20date%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.823,"y":16.352,"w":29.319000000000003,"clr":-1,"A":"left","R":[{"T":"(including%20extensions)%20of%20your%202013%20tax%20return%20(see%20instructions).%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.824,"y":17.04,"w":12.724000000000004,"clr":-1,"A":"left","R":[{"T":"married%20filing%20jointly%2C%20include%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.829,"y":17.04,"w":2.166,"clr":-1,"A":"left","R":[{"T":"both","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.149,"y":17.04,"w":9.819,"clr":-1,"A":"left","R":[{"T":"%20spouses%E2%80%99%20amounts%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.036,"y":17.04,"w":2.166,"clr":-1,"A":"left","R":[{"T":"both","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.356,"y":17.04,"w":4.910000000000002,"clr":-1,"A":"left","R":[{"T":"%20columns.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.831,"y":17.727,"w":14.983000000000006,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20an%20exception%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.824,"y":17.727,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.044,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.486,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.821,"y":18.592,"w":22.725,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":47.19,"y":18.592,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":49.252,"y":18.592,"w":8.088000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":63.044,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.486,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.821,"y":19.34,"w":11.634000000000004,"clr":-1,"A":"left","R":[{"T":"In%20each%20column%2C%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.443,"y":19.34,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":31.991,"y":19.34,"w":8.596000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%205%20or%20%242%2C000%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":19.34,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.044,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":15.615000000000006,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%206.%20If%20zero%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.294,"y":20.09,"w":2.722,"clr":-1,"A":"left","R":[{"T":"stop%3B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.591,"y":20.09,"w":12.133000000000003,"clr":-1,"A":"left","R":[{"T":"you%20cannot%20take%20this%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":20.09,"w":13.33,"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":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.79,"w":30.254000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2038*%3B%20Form%201040A%2C%20line%2022%3B%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":21.478,"w":10.004000000000003,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2037%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.57,"y":21.478,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.053,"y":21.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":22.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":22.34,"w":22.819000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20decimal%20amount%20shown%20below%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.539,"y":23.746,"w":4.558000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%208%20is","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.688,"y":25.237,"w":3.1300000000000003,"clr":-1,"A":"left","R":[{"T":"Over%E2%80%94","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.485,"y":24.933,"w":3.5570000000000004,"clr":-1,"A":"left","R":[{"T":"But%20not%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.716,"y":25.533,"w":2.944,"clr":-1,"A":"left","R":[{"T":"over%E2%80%94","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.794,"y":23.746,"w":11.391000000000002,"clr":-1,"A":"left","R":[{"T":"And%20your%20filing%20status%20is","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.759,"y":24.558,"w":3.7039999999999997,"clr":-1,"A":"left","R":[{"T":"Married%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.691,"y":25.158,"w":4.981000000000001,"clr":-1,"A":"left","R":[{"T":"filing%20jointly","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":50.533,"y":24.56,"w":3.8149999999999995,"clr":-1,"A":"left","R":[{"T":"Head%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.756,"y":25.16,"w":4.668,"clr":-1,"A":"left","R":[{"T":"household","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.789,"y":24.637,"w":9.667000000000003,"clr":-1,"A":"left","R":[{"T":"Single%2C%20Married%20filing%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.876,"y":25.237,"w":6.352,"clr":-1,"A":"left","R":[{"T":"separately%2C%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.853,"y":25.837,"w":9.016000000000002,"clr":-1,"A":"left","R":[{"T":"Qualifying%20widow(er)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.155,"y":25.983,"w":7.391000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20line%209%E2%80%9E","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":14.937,"y":26.746,"w":1.167,"clr":-1,"A":"left","R":[{"T":"---","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":26.77,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2417%2C750","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":26.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":26.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":26.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":27.52,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2417%2C750","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":27.52,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2419%2C250","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":27.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":27.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":27.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":28.27,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2419%2C250","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":28.27,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2426%2C625","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":28.246,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":28.246,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":28.246,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":29.02,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2426%2C625","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":29.02,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2428%2C875","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":28.996,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":28.996,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":28.996,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":29.77,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2428%2C875","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":29.77,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2429%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":29.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":29.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":29.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":30.519,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2429%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":30.519,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2435%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":30.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":30.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":30.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":31.269,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2435%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":31.269,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2438%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":31.246,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":31.246,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":31.246,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":32.019,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2438%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":32.019,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2444%2C250","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":31.996000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":31.996000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":31.996000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":32.769,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2444%2C250","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.944,"y":32.769,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2459%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":32.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":32.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":32.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.044,"y":33.519,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2459%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.837,"y":33.496,"w":1.167,"clr":-1,"A":"left","R":[{"T":"---","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.47,"y":33.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.32,"y":33.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.407,"y":33.496,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".0","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.423,"y":34.34,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.806,"y":34.34,"w":6.629000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%209%20is%20zero%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.459,"y":34.34,"w":2.722,"clr":-1,"A":"left","R":[{"T":"stop%3B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":43.385,"y":34.34,"w":12.021000000000003,"clr":-1,"A":"left","R":[{"T":"you%20cannot%20take%20this%20credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":28.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":93.063,"y":28.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"X","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":10.448000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%207%20by%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":35.09,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.79,"w":39.344999999999985,"clr":-1,"A":"left","R":[{"T":"Limitation%20based%20on%20tax%20liability.%20Enter%20the%20amount%20from%20the%20Credit%20Limit%20Worksheet%20in%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.478,"w":5.186,"clr":-1,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":36.478,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.29,"w":25.283,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20qualified%20retirement%20savings%20contributions.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.743,"y":37.29,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.478,"y":37.29,"w":4.060700000000001,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.23,"y":37.29,"w":7.075000000000001,"clr":-1,"A":"left","R":[{"T":"of%20line%2010%20or%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.234,"y":37.29,"w":3.6310000000000002,"clr":-1,"A":"left","R":[{"T":"11%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":37.978,"w":32.959,"clr":-1,"A":"left","R":[{"T":"and%20on%20Form%201040%2C%20line%2050%3B%20Form%201040A%2C%20line%2032%3B%20or%20Form%201040NR%2C%20line%2047%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":37.978,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.487,"w":57.385999999999946,"clr":-1,"A":"left","R":[{"T":"*See%20Pub.%20590%20for%20the%20amount%20to%20enter%20if%20you%20are%20filing%20Form%202555%2C%202555-EZ%2C%20or%204563%20or%20you%20are%20excluding%20income%20from%20Puerto%20Ric","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.795,"y":39.487,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"o.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":40.34,"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.273,"y":40.376,"w":7.466,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2033394D","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":40.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":40.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8880","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":40.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.243,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208880%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8880","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6453,"AM":1024,"x":6.229,"y":5.841,"w":72.848,"h":0.879,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6454,"AM":1024,"x":79.344,"y":5.846,"w":19.635,"h":0.874,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TIRA","EN":0},"TI":6455,"AM":0,"x":65.676,"y":11.914,"w":12.054,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SIRA","EN":0},"TI":6456,"AM":0,"x":84.336,"y":11.952,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDEF","EN":0},"TI":6457,"AM":0,"x":65.676,"y":14.093,"w":12.13,"h":0.906},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDEF","EN":0},"TI":6458,"AM":0,"x":84.356,"y":14.061,"w":11.983,"h":0.917},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TCONT","EN":0},"TI":6459,"AM":1024,"x":65.691,"y":15.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCONT","EN":0},"TI":6460,"AM":1024,"x":84.253,"y":15.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TDIST","EN":0},"TI":6461,"AM":0,"x":65.691,"y":17.995,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SDIST","EN":0},"TI":6462,"AM":0,"x":84.177,"y":18.05,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TNET","EN":0},"TI":6463,"AM":1024,"x":65.691,"y":18.82,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SNET","EN":0},"TI":6464,"AM":1024,"x":84.253,"y":18.793,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TSAV","EN":0},"TI":6465,"AM":1024,"x":65.828,"y":19.497,"w":11.827,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSAV","EN":0},"TI":6466,"AM":1024,"x":84.334,"y":19.486,"w":12.054,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SAVINGS","EN":0},"TI":6467,"AM":1024,"x":84.253,"y":20.295,"w":12.189,"h":0.833,"TU":"_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAGI","EN":0},"TI":6468,"AM":1024,"x":65.773,"y":21.711,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FACTOR","EN":0},"TI":6469,"AM":0,"x":95.186,"y":28.377,"w":3.86,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TENCRED","EN":0},"TI":6470,"AM":1024,"x":84.398,"y":35.132,"w":11.901,"h":0.853,"TU":"10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETCRED","EN":0},"TI":6471,"AM":1024,"x":84.336,"y":36.674,"w":12.024,"h":0.838},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":6472,"AM":1024,"x":84.336,"y":38.199,"w":12.024,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8881.content.txt b/test/data/fd/form/F8881.content.txt new file mode 100755 index 00000000..387c0db1 --- /dev/null +++ b/test/data/fd/form/F8881.content.txt @@ -0,0 +1,52 @@ +Form +8881 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Credit for Small Employer Pension Plan +Startup Costs +a + Attach to your tax return. +a + Information about Form 8881 and its instructions is at +www.irs.gov/form8881 +. +OMB No. 1545-1810 +Attachment +Sequence No. +130 +Name(s) shown on return +Identifying number +1 +Qualified startup costs incurred during the tax year. +Do not +enter +more than $1,000 +................. +1 +2 +Enter one-half of line 1 +......................... +2 +3 +Credit for small employer pension plan startup costs from partnerships and S corporations . . +3 +4 +Add lines 2 and 3 +........................... +4 +5 +Enter the +smaller + of line 4 or +$500 +. Partnerships and S corporations, report this amount on +Schedule K. All others, report this amount on Form 3800, line 1j +........... +5 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 33435N +Form +8881 +(Rev. 12-2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8881.fields.json b/test/data/fd/form/F8881.fields.json new file mode 100755 index 00000000..10e31e69 --- /dev/null +++ b/test/data/fd/form/F8881.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"COSTS","type":"number","calc":false,"value":""},{"id":"HALFCSTS","type":"number","calc":true,"value":""},{"id":"PASSTHRU","type":"number","calc":false,"value":""},{"id":"SUBTTL","type":"number","calc":true,"value":""},{"id":"MAX500","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8881.json b/test/data/fd/form/F8881.json new file mode 100755 index 00000000..5f6e8c2c --- /dev/null +++ b/test/data/fd/form/F8881.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8881 (Rev. December 2013)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.066,"y":3.751,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":74.336},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":74.336},{"oc":"#221f1f","x":80.397,"y":5.251,"w":1.5,"l":18.648},{"oc":"#221f1f","x":80.397,"y":6.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":59.359,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":6.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":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.751,"w":1.125,"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":6.147,"y":12.001,"w":1.5,"l":37.211},{"oc":"#221f1f","x":43.272,"y":12.001,"w":1.5,"l":39.686},{"oc":"#221f1f","x":82.872,"y":12.001,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.672},{"oc":"#221f1f","x":21.04,"y":3.735,"w":1.5,"l":0.781},{"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":1.531},{"oc":"#221f1f","x":84.152,"y":3.744,"w":1.5,"l":1.522},{"oc":"#221f1f","x":80.44,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":63.115,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":79.202,"y":6.751,"w":3.713,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.34,"clr":-1,"A":"left","R":[{"T":"8881%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3129999999999997,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.901,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.338,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":34.32,"y":2.078,"w":17.78,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Small%20Employer%20Pension%20Plan%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":45.952,"y":2.953,"w":6.5,"clr":-1,"A":"left","R":[{"T":"Startup%20Costs%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.505,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.598,"w":12.504000000000001,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.15,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.243,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208881%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.243,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8881","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.969,"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":2.348,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1810%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.762,"y":3.6929999999999996,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.762,"y":4.264,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.074,"y":4.264,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"130","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":80.877,"y":5.001,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%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":9.652,"y":6.653,"w":23.208,"clr":-1,"A":"left","R":[{"T":"Qualified%20startup%20costs%20incurred%20during%20the%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.336,"y":6.653,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.391,"y":6.653,"w":2.556,"clr":-1,"A":"left","R":[{"T":"enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":7.452,"w":8.153000000000002,"clr":-1,"A":"left","R":[{"T":"more%20%20than%20%241%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":7.452,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":7.34,"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":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":8.09,"w":10.094000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20one-half%20of%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":8.09,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":7.996,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"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.84,"w":40.377999999999986,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20small%20employer%20pension%20plan%20startup%20costs%20from%20partnerships%20and%20S%20corporations","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":8.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":8.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":8.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":9.59,"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.59,"w":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%20and%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":9.59,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"...........................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":10.403,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.052,"y":10.403,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.822,"y":10.403,"w":5.26,"clr":-1,"A":"left","R":[{"T":"%20of%20line%204%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.407,"y":10.403,"w":2.224,"clr":-1,"A":"left","R":[{"T":"%24500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.847,"y":10.403,"w":25.469000000000012,"clr":-1,"A":"left","R":[{"T":".%20Partnerships%20and%20S%20corporations%2C%20report%20this%20amount%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":11.09,"w":28.324000000000016,"clr":-1,"A":"left","R":[{"T":"Schedule%20K.%20All%20others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%201j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.435,"y":11.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.858,"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.363,"y":11.963,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2033435N%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.464,"y":11.947,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.606,"y":11.947,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8881%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.907,"y":11.947,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2012-2013)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6473,"AM":1024,"x":6.106,"y":5.871,"w":73.486,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6474,"AM":1024,"x":81.159,"y":5.871,"w":17.821,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COSTS","EN":0},"TI":6475,"AM":0,"x":63.298,"y":7.444,"w":12.024,"h":0.833,"TU":"Line 1. Qualified startup costs incurred during the tax year. Do not enter more than $1,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HALFCSTS","EN":0},"TI":6476,"AM":1024,"x":83.119,"y":8.22,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PASSTHRU","EN":0},"TI":6477,"AM":0,"x":83.016,"y":9.038,"w":12.189,"h":0.833,"TU":"Line 3. Credit for small employer pension plan startup cosrs from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTTL","EN":0},"TI":6478,"AM":1024,"x":83.016,"y":9.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAX500","EN":0},"TI":6479,"AM":1024,"x":83.098,"y":11.221,"w":12.024,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8882.content.txt b/test/data/fd/form/F8882.content.txt new file mode 100755 index 00000000..429bb149 --- /dev/null +++ b/test/data/fd/form/F8882.content.txt @@ -0,0 +1,88 @@ +Form +8882 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Credit for Employer-Provided Childcare +Facilities and Services +a + Attach to your tax return. +a + Information about Form 8882 and its instructions is at +www.irs.gov/form8882 +. +OMB No. 1545-1809 + + + +Attachment +Sequence No. +131 +Name(s) shown on return +Identifying number +1 +Qualified childcare facility expenditures paid or incurred +..... +1 +2 +Enter 25% (.25) of line 1 +.......................... +2 +3 +Qualified childcare resource and referral expenditures paid or incurred +3 +4 +Enter 10% (.10) of line 3 +.......................... +4 +5 + +Credit for employer-provided childcare facilities and services from partnerships, S corporations, +estates, and trusts +........................... +5 +6 +Add lines 2, 4, and 5 +........................... +6 +7 + + +Enter the +smaller +of line 6 or +$150,000. +Estates and trusts, go to line 8. Partnerships and S +corporations, stop here and report this amount on Schedule K. All others, stop here and report this +amount on Form 3800, line 1k . . . . +.................... +7 +8 +Amount allocated to beneficiaries of the estate or trust (see instructions) +......... +8 +9 +Estates and trusts. Subtract line 8 from line 7. Report this amount on Form 3800, line 1k +.... +9 + + + + + + + + + + + + + + + +For Paperwork Reduction Act Notice, see back of form. +Cat. No. 33436Y +Form + 8882 + (Rev. 12-2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8882.fields.json b/test/data/fd/form/F8882.fields.json new file mode 100755 index 00000000..1ed16365 --- /dev/null +++ b/test/data/fd/form/F8882.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"QCFAC","type":"number","calc":false,"value":""},{"id":"PCTQCFAC","type":"number","calc":true,"value":""},{"id":"QCRR","type":"number","calc":false,"value":""},{"id":"PCTQCRR","type":"number","calc":true,"value":""},{"id":"CRPASS","type":"number","calc":false,"value":""},{"id":"TOTCYCR","type":"number","calc":true,"value":""},{"id":"CYCR","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"ESTTRUST","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8882.json b/test/data/fd/form/F8882.json new file mode 100755 index 00000000..a7c3cd9e --- /dev/null +++ b/test/data/fd/form/F8882.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8882 (Rev. December 2013)","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.954,"y":6.001,"w":1.5,"l":63.285},{"oc":"#221f1f","x":84.109,"y":3.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":6.001,"w":1.5,"l":14.936},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.684,"y":7.501,"w":0.75,"l":22.361},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.684,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":10.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.684,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":13.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.223,"y":23.251,"w":1.5,"l":92.813}],"VLines":[{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":2.281},{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":2.281},{"oc":"#221f1f","x":84.152,"y":4.485,"w":1.5,"l":0.797},{"oc":"#221f1f","x":21.04,"y":4.485,"w":1.5,"l":0.797},{"oc":"#221f1f","x":84.152,"y":5.235,"w":1.5,"l":0.797},{"oc":"#221f1f","x":21.04,"y":5.235,"w":1.5,"l":0.797},{"oc":"#221f1f","x":76.727,"y":5.97,"w":0.75,"l":1.547},{"oc":"#221f1f","x":84.152,"y":7.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":7.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":7.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":64.352,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":64.352,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"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":95.29,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"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":95.29,"y":22.485,"w":0.75,"l":0.797}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":80.44,"y":7.501,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":80.44,"y":10.501,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":80.44,"y":13.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":80.44,"y":17.251,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":80.44,"y":21.751,"w":3.712,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.572,"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.572,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8882","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.348,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.589,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.026,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":31.628,"y":2.269,"w":17.519999999999992,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Employer-Provided%20Childcare%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":40.195,"y":3.319,"w":10.099999999999998,"clr":-1,"A":"left","R":[{"T":"Facilities%20and%20Services","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":4.243,"w":12.504000000000001,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.899,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.993,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208882%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.993,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8882","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.969,"y":4.993,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1809%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.934,"y":4.126,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.934,"y":4.635,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.911,"y":4.635,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"131","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.751,"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":77.508,"y":5.751,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.504,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":8.09,"w":25.131999999999994,"clr":-1,"A":"left","R":[{"T":"Qualified%20childcare%20facility%20expenditures%20paid%20or%20incurred%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":8.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.816,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":9.59,"w":10.725000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%2025%25%20(.25)%20of%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":9.59,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":9.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.504,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.72,"y":11.09,"w":31.557999999999996,"clr":-1,"A":"left","R":[{"T":"Qualified%20childcare%20resource%20and%20referral%20expenditures%20paid%20or%20incurred%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.816,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.504,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":12.59,"w":10.725000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20(.10)%20of%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":12.59,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":14.153,"w":42.98499999999997,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20employer-provided%20childcare%20facilities%20and%20services%20from%20partnerships%2C%20S%20corporations%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":14.84,"w":8.558000000000002,"clr":-1,"A":"left","R":[{"T":"estates%2C%20and%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.497,"y":14.84,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":16.34,"w":9.449,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%2C%204%2C%20and%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":16.34,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.965,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.971,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":17.141,"y":17.971,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":23.301,"y":17.971,"w":4.982000000000001,"clr":-1,"A":"left","R":[{"T":"of%20line%206%20or%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":32.819,"y":17.971,"w":4.726000000000001,"clr":-1,"A":"left","R":[{"T":"%24150%2C000.%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":40.403,"y":17.971,"w":22.95,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20go%20to%20line%208.%20Partnerships%20and%20S%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":9.661,"y":18.658,"w":44.30699999999998,"clr":-1,"A":"left","R":[{"T":"corporations%2C%20stop%20here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":9.667,"y":19.345,"w":13.637000000000008,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Form%203800%2C%20line%201k%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":30.704,"y":19.345,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":32.766,"y":19.345,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":34.828,"y":19.345,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":36.89,"y":19.345,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":38.953,"y":19.345,"w":27.58000000000001,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":20.84,"w":32.375,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":20.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":20.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":22.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":22.34,"w":39.47699999999999,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts.%20Subtract%20line%208%20from%20line%207.%20Report%20this%20amount%20on%20Form%203800%2C%20line%201k%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.94,"y":22.34,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.971,"y":25.171,"w":26.386000000000003,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20back%20of%20form.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.438,"y":25.189,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2033436Y%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.548,"y":25.135,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.356,"y":25.135,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%208882","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.656,"y":25.135,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6480,"AM":1024,"x":6.352,"y":6.516,"w":63.466,"h":0.835,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6481,"AM":1024,"x":77.485,"y":6.65,"w":16.415,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCFAC","EN":0},"TI":6482,"AM":0,"x":64.474,"y":8.312,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PCTQCFAC","EN":0},"TI":6483,"AM":1024,"x":84.173,"y":9.741,"w":11.112,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCRR","EN":0},"TI":6484,"AM":0,"x":64.474,"y":11.258,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PCTQCRR","EN":0},"TI":6485,"AM":1024,"x":84.173,"y":12.659,"w":10.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRPASS","EN":0},"TI":6486,"AM":0,"x":84.281,"y":14.97,"w":11.045,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCYCR","EN":0},"TI":6487,"AM":1024,"x":84.336,"y":16.553,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYCR","EN":0},"TI":6488,"AM":1024,"x":84.248,"y":19.491,"w":10.888,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENALLOC","EN":0},"TI":6489,"AM":1024,"x":84.261,"y":21.025,"w":10.862,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTRUST","EN":0},"TI":6490,"AM":1024,"x":84.261,"y":22.471,"w":10.937,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8885S.content.txt b/test/data/fd/form/F8885S.content.txt new file mode 100755 index 00000000..48cda49f --- /dev/null +++ b/test/data/fd/form/F8885S.content.txt @@ -0,0 +1,129 @@ +Form +8885 +Department of the Treasury +Internal Revenue Service +Health Coverage Tax Credit +a + Attach to Form 1040, Form 1040NR, Form 1040-SS, or Form 1040-PR. +a + +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +134 +Name of recipient (if both spouses are recipients, complete a separate form for each spouse) +Recipient•s social security number +Before you begin: +See +Definitions and Special Rules +in the instructions. +F +! +CAUTION +Do not +complete this form if you can be claimed as a dependent on someone else’s 2013 tax return. +Part I +Complete This Part To See if You Are Eligible To Take This Credit +1 +Check the boxes below for each month in 2013 that +all +of the following statements were +true +on the +first day +of that month. +• You were an eligible trade adjustment assistance (TAA) recipient, alternative TAA (ATAA) recipient, reemployment TAA (RTAA) +recipient, or Pension Benefit Guaranty Corporation (PBGC) pension payee; or you were a qualified family member of an +individual who fell under one of the categories listed above when he or she passed away or with whom you finalized +a divorce. +• You and/or your family member(s) were covered by a qualified health insurance plan for which you paid the entire premiums, +or your portion of the premiums, directly to your health plan or to “U.S. Treasury–HCTC.” +• You were +not +enrolled in Medicare Part A, B, or C, or you were enrolled in Medicare but your family member(s) qualified for +the HCTC. +• You were +not +enrolled in Medicaid or the Children’s Health Insurance Program (CHIP). +• You were +not +enrolled in the Federal Employees Health Benefits Program (FEHBP) or eligible to receive benefits under the +U.S. military health system (TRICARE). +• You were +not +imprisoned under federal, state, or local authority. +• Your employer +did not + pay 50% or more of the cost of coverage. +• You +did not +receive a 65% COBRA premium reduction from your former employer or COBRA administrator. +January +February +March +April +May +June +July +August +September +October +November +December +Part II +Health Coverage Tax Credit +2 +Enter the total amount paid directly to your health plan for qualified health insurance coverage for +the months checked on line 1 (see instructions). +Do not +include on line 2 any qualified health +insurance premiums paid to “U.S. Treasury–HCTC” or any insurance premiums on coverage that +was actually paid for with a National Emergency Grant. Also, +do not +include any advance +(monthly) payments or reimbursement credits you received as shown on Form 1099-H, box 1 . . +2 +F +! +CAUTION +You +must +attach the required documents listed in the instructions for any amounts +included on line 2. If you do not attach the required documents, your credit will be +disallowed. +3 +Enter the total amount of any Archer MSA or health savings accounts distributions used to pay for +qualified health insurance coverage for the months checked on line 1 . . . +........ +3 +4 +Subtract line 3 from line 2. If zero or less, +stop; +you cannot take the credit +........ +4 +5 + +Health Coverage Tax Credit. +If you received an advance (monthly) payment in any month not +checked on line 1, see the instructions for line 5 for more details. Otherwise, multiply the amount +on line 4 by 72.5% (.725). Enter the result here and on Form 1040, line 71 (check box + c +); Form +1040NR, line 67 + +(check box +c +); Form 1040-SS, line 10; or Form 1040-PR, line 10 +...... +5 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 34641D +Form +8885 + (2013) +Information about Form 8885 and its instructions is at www.irs.gov/form8885 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8885S.fields.json b/test/data/fd/form/F8885S.fields.json new file mode 100755 index 00000000..7536f178 --- /dev/null +++ b/test/data/fd/form/F8885S.fields.json @@ -0,0 +1 @@ +[{"id":"JAN","type":"box","calc":false,"value":""},{"id":"FEB","type":"box","calc":false,"value":""},{"id":"MAR","type":"box","calc":false,"value":""},{"id":"APR","type":"box","calc":false,"value":""},{"id":"MAY","type":"box","calc":false,"value":""},{"id":"JUN","type":"box","calc":false,"value":""},{"id":"JUL","type":"box","calc":false,"value":""},{"id":"AUG","type":"box","calc":false,"value":""},{"id":"SEP","type":"box","calc":false,"value":""},{"id":"OCT","type":"box","calc":false,"value":""},{"id":"NOV","type":"box","calc":false,"value":""},{"id":"DEC","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"COVERAGE","type":"number","calc":false,"value":""},{"id":"MSADIST","type":"number","calc":false,"value":""},{"id":"NETCOV","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8885S.json b/test/data/fd/form/F8885S.json new file mode 100755 index 00000000..3053fa67 --- /dev/null +++ b/test/data/fd/form/F8885S.json @@ -0,0 +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.936},{"oc":"#221f1f","x":20.997,"y":5.259,"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":68.149},{"oc":"#221f1f","x":74.209,"y":6.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":1.5,"l":92.899},{"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":6.09,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.09,"y":26.251,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":34.501,"w":0.75,"l":3.798},{"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":6.147,"y":37.501,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":37.501,"w":1.5,"l":34.736},{"oc":"#221f1f","x":86.584,"y":37.501,"w":1.5,"l":12.461}],"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":84.152,"y":4.109,"w":1.5,"l":1.173},{"oc":"#221f1f","x":74.252,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"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":84.152,"y":29.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"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":80.44,"y":33.735,"w":0.75,"l":0.781},{"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},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":34.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":36.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.796,"w":6.188,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":10.501,"w":4.95,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.133,"y":25.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":11.14,"y":30.001,"w":6.188,"h":2.25,"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.224,"clr":-1,"A":"left","R":[{"T":"8885","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.726,"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.251,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":37.475,"y":2.226,"w":13.059000000000005,"clr":-1,"A":"left","R":[{"T":"Health%20Coverage%20Tax%20Credit","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":29.061,"y":3.228,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":30.092,"y":3.322,"w":32.95400000000001,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20Form%201040-SS%2C%20or%20Form%201040-PR.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.388,"y":4.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.922,"y":4.277,"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-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":86.996,"y":3.8440000000000003,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.996,"y":4.29,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.974,"y":4.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"134","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":41.413999999999966,"clr":-1,"A":"left","R":[{"T":"Name%20of%20recipient%20(if%20both%20spouses%20are%20recipients%2C%20complete%20a%20separate%20form%20for%20each%20spouse)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.69,"y":4.938,"w":16.578000000000007,"clr":-1,"A":"left","R":[{"T":"Recipient%E2%80%A2s%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.572,"w":8.779,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.901,"y":6.572,"w":2,"clr":-1,"A":"left","R":[{"T":"See%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.339,"y":6.572,"w":14.282000000000005,"clr":-1,"A":"left","R":[{"T":"Definitions%20and%20Special%20Rules%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.023,"y":6.572,"w":8.206000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":6.243,"y":8.585,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.428,"y":8.521,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.354,"y":9.18,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":8.374,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.379,"y":8.374,"w":41.15699999999997,"clr":-1,"A":"left","R":[{"T":"complete%20this%20form%20if%20you%20can%20be%20claimed%20as%20a%20dependent%20on%20someone%20else%E2%80%99s%202013%20tax%20return.","S":3,"TS":[0,12,0,0]}]},{"x":6.219,"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.322,"w":31.064000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20This%20Part%20To%20See%20if%20You%20Are%20Eligible%20To%20Take%20This%20Credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":23.41400000000001,"clr":-1,"A":"left","R":[{"T":"Check%20the%20boxes%20below%20for%20each%20month%20in%202013%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.327,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"all%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.271,"y":11.09,"w":14.796000000000003,"clr":-1,"A":"left","R":[{"T":"of%20the%20following%20statements%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":11.09,"w":2.167,"clr":-1,"A":"left","R":[{"T":"true%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":68.79,"y":11.09,"w":3.094,"clr":-1,"A":"left","R":[{"T":"on%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.233,"y":11.09,"w":4.167999999999999,"clr":-1,"A":"left","R":[{"T":"first%20day%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.104,"y":11.09,"w":6.281000000000001,"clr":-1,"A":"left","R":[{"T":"of%20that%20month.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.915,"w":56.949,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20an%20eligible%20trade%20adjustment%20assistance%20(TAA)%20recipient%2C%20alternative%20TAA%20(ATAA)%20recipient%2C%20reemployment%20TAA%20(RTAA)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.602,"w":53.09799999999999,"clr":-1,"A":"left","R":[{"T":"recipient%2C%20or%20Pension%20Benefit%20Guaranty%20Corporation%20(PBGC)%20pension%20payee%3B%20or%20you%20were%20a%20qualified%20family%20member%20of%20an","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":13.29,"w":51.927999999999976,"clr":-1,"A":"left","R":[{"T":"individual%20who%20fell%20under%20one%20of%20the%20categories%20listed%20above%20when%20he%20or%20she%20passed%20away%20or%20with%20whom%20you%20finalized%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":13.977,"w":4.667,"clr":-1,"A":"left","R":[{"T":"a%20divorce.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":14.79,"w":56.547999999999945,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20and%2For%20your%20family%20member(s)%20were%20covered%20by%20a%20qualified%20health%20insurance%20plan%20for%20which%20you%20paid%20the%20entire%20premiums%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":15.477,"w":39.635999999999996,"clr":-1,"A":"left","R":[{"T":"or%20your%20portion%20of%20the%20premiums%2C%20directly%20to%20your%20health%20plan%20or%20to%20%E2%80%9CU.S.%20Treasury%E2%80%93HCTC.%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":16.29,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.115,"y":16.29,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.866,"y":16.29,"w":48.69099999999998,"clr":-1,"A":"left","R":[{"T":"enrolled%20in%20Medicare%20Part%20A%2C%20B%2C%20or%20C%2C%20or%20you%20were%20enrolled%20in%20Medicare%20but%20your%20family%20member(s)%20qualified%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":16.978,"w":4.704000000000001,"clr":-1,"A":"left","R":[{"T":"the%20HCTC.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":17.84,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.198,"y":17.84,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.863,"y":17.84,"w":32.059,"clr":-1,"A":"left","R":[{"T":"enrolled%20in%20Medicaid%20or%20the%20Children%E2%80%99s%20Health%20Insurance%20Program%20(CHIP).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":18.54,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.095,"y":18.54,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.726,"y":18.54,"w":48.00399999999997,"clr":-1,"A":"left","R":[{"T":"enrolled%20in%20the%20Federal%20Employees%20Health%20Benefits%20Program%20(FEHBP)%20or%20eligible%20to%20receive%20benefits%20under%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":19.228,"w":17.150000000000002,"clr":-1,"A":"left","R":[{"T":"U.S.%20military%20health%20system%20(TRICARE).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":20.09,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.035,"y":20.09,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.7,"y":20.09,"w":22.226000000000006,"clr":-1,"A":"left","R":[{"T":"imprisoned%20under%20federal%2C%20state%2C%20or%20local%20authority.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":20.84,"w":7.594000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Your%20employer%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.275,"y":20.84,"w":3.333,"clr":-1,"A":"left","R":[{"T":"did%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.058,"y":20.84,"w":18.929,"clr":-1,"A":"left","R":[{"T":"%20pay%2050%25%20or%20more%20of%20the%20cost%20of%20coverage.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":21.59,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.6,"y":21.59,"w":3.611,"clr":-1,"A":"left","R":[{"T":"did%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.641,"y":21.59,"w":42.526999999999994,"clr":-1,"A":"left","R":[{"T":"receive%20a%2065%25%20COBRA%20premium%20reduction%20from%20your%20former%20employer%20or%20COBRA%20administrator.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":23.09,"w":3.5380000000000003,"clr":-1,"A":"left","R":[{"T":"January","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":23.09,"w":3.9630000000000005,"clr":-1,"A":"left","R":[{"T":"February","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.827,"y":23.09,"w":2.834,"clr":-1,"A":"left","R":[{"T":"March","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":23.09,"w":2.0180000000000002,"clr":-1,"A":"left","R":[{"T":"April","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":23.09,"w":1.908,"clr":-1,"A":"left","R":[{"T":"May","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":23.09,"w":2.168,"clr":-1,"A":"left","R":[{"T":"June","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":23.84,"w":1.7970000000000002,"clr":-1,"A":"left","R":[{"T":"July","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":23.84,"w":3.1490000000000005,"clr":-1,"A":"left","R":[{"T":"August","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.827,"y":23.84,"w":4.946,"clr":-1,"A":"left","R":[{"T":"September","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":23.84,"w":3.649,"clr":-1,"A":"left","R":[{"T":"October","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":23.84,"w":4.649,"clr":-1,"A":"left","R":[{"T":"November","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":23.84,"w":4.631,"clr":-1,"A":"left","R":[{"T":"December","S":3,"TS":[0,12,0,0]}]},{"x":6.527,"y":25.322,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.617,"y":25.322,"w":13.059000000000005,"clr":-1,"A":"left","R":[{"T":"Health%20Coverage%20Tax%20Credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.215,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.228,"w":43.61899999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20paid%20directly%20to%20your%20health%20plan%20for%20qualified%20health%20insurance%20coverage%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":26.915,"w":21.581000000000007,"clr":-1,"A":"left","R":[{"T":"the%20months%20checked%20on%20line%201%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.247,"y":26.915,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.106,"y":26.915,"w":16.208000000000006,"clr":-1,"A":"left","R":[{"T":"include%20on%20line%202%20any%20qualified%20health","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":27.602,"w":43.379999999999974,"clr":-1,"A":"left","R":[{"T":"insurance%20premiums%20paid%20to%20%E2%80%9CU.S.%20Treasury%E2%80%93HCTC%E2%80%9D%20or%20any%20insurance%20premiums%20on%20coverage%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":28.29,"w":27.259999999999998,"clr":-1,"A":"left","R":[{"T":"was%20actually%20paid%20for%20with%20a%20National%20Emergency%20Grant.%20Also%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.819,"y":28.29,"w":3.3329999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.367,"y":28.29,"w":9.447000000000001,"clr":-1,"A":"left","R":[{"T":"include%20any%20advance%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.91,"y":28.977,"w":41.77099999999997,"clr":-1,"A":"left","R":[{"T":"(monthly)%20payments%20or%20reimbursement%20credits%20you%20received%20as%20shown%20on%20Form%201099-H%2C%20box%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.087,"y":28.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.149,"y":28.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":11.193,"y":30.79,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":13.378,"y":30.726,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":11.304,"y":31.322000000000003,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":19.552,"y":29.755,"w":2.019,"clr":-1,"A":"left","R":[{"T":"You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.554,"y":29.755,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.587,"y":29.755,"w":31.970000000000013,"clr":-1,"A":"left","R":[{"T":"attach%20the%20required%20documents%20listed%20in%20the%20instructions%20for%20any%20amounts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.555,"y":30.442,"w":36.452999999999996,"clr":-1,"A":"left","R":[{"T":"included%20on%20line%202.%20If%20you%20do%20not%20attach%20the%20required%20documents%2C%20your%20credit%20will%20be","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.56,"y":31.13,"w":5,"clr":-1,"A":"left","R":[{"T":"disallowed.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.562,"y":32.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.04,"w":43.953999999999965,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20any%20Archer%20MSA%20or%20health%20savings%20accounts%20distributions%20used%20to%20pay%20for%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.728,"w":31.026000000000007,"clr":-1,"A":"left","R":[{"T":"qualified%20health%20insurance%20coverage%20for%20the%20months%20checked%20on%20line%201%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":57.501,"y":32.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":59.563,"y":32.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":61.626,"y":32.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":63.69,"y":32.728,"w":11.2312,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":81.616,"y":32.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":18.557000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.501,"y":33.59,"w":2.444,"clr":-1,"A":"left","R":[{"T":"stop%3B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.454,"y":33.59,"w":11.948000000000004,"clr":-1,"A":"left","R":[{"T":"you%20cannot%20take%20the%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":33.59,"w":10.664,"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":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":34.447,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.415,"w":13.615000000000006,"clr":-1,"A":"left","R":[{"T":"Health%20Coverage%20Tax%20Credit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.068,"y":34.415,"w":28.58400000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20an%20advance%20(monthly)%20payment%20in%20any%20month%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":35.103,"w":43.28899999999998,"clr":-1,"A":"left","R":[{"T":"checked%20on%20line%201%2C%20see%20the%20instructions%20for%20line%205%20for%20more%20details.%20Otherwise%2C%20multiply%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":35.79,"w":37.846999999999994,"clr":-1,"A":"left","R":[{"T":"on%20line%204%20by%2072.5%25%20(.725).%20Enter%20the%20result%20here%20and%20on%20Form%201040%2C%20line%2071%20(check%20box","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.415,"y":35.79,"w":1.078,"clr":-1,"A":"left","R":[{"T":"%20c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.908,"y":35.79,"w":3.149,"clr":-1,"A":"left","R":[{"T":")%3B%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":36.478,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2067","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.326,"y":36.478,"w":5.186,"clr":-1,"A":"left","R":[{"T":"(check%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.348,"y":36.478,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.236,"y":36.478,"w":22.879000000000005,"clr":-1,"A":"left","R":[{"T":")%3B%20Form%201040-SS%2C%20line%2010%3B%20or%20Form%201040-PR%2C%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.816,"y":36.478,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":36.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":37.358,"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":64.561,"y":37.376,"w":7.466,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2034641D","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":37.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":37.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8885","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":37.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.708,"y":4.277,"w":36.45399999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208885%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8885","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6491,"AM":1024,"x":6.443,"y":5.854,"w":67.898,"h":0.833,"TU":"Name of recipient (if both spouses are recipients, complete a separate form for each spouse)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6492,"AM":1024,"x":74.534,"y":5.881,"w":24.585,"h":0.833,"TU":"Recipient’s social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COVERAGE","EN":0},"TI":6505,"AM":0,"x":84.537,"y":29.095,"w":10.663,"h":0.833,"TU":"Line 2. Enter the total amount paid directly to your health plan for qualified insurance coverage for the months checked on line 1 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MSADIST","EN":0},"TI":6506,"AM":0,"x":84.537,"y":32.927,"w":10.663,"h":0.833,"TU":"Line 3. Enter the total amount of any Archer MSA or health savings account distributions used to pay for qualified health insurance coverage for the months checked on line 1. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETCOV","EN":0},"TI":6507,"AM":1024,"x":84.393,"y":33.746,"w":10.952,"h":0.833,"TU":"Line 4. Subtract line 3 from line 2. If zero or less, stop; you cannot take the credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":6508,"AM":0,"x":84.537,"y":36.583,"w":10.663,"h":0.838,"TU":"Line 5. Health Coverage Tax Credit. If you received an advance (monthly) payment in any month not checked on line 1, see instructions for line 5 for more details. Otherwise multiply the amount on line 4 by 72.5% (.725). Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JAN","EN":0},"TI":6493,"AM":0,"x":12.302,"y":23.211,"w":1.462,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FEB","EN":0},"TI":6494,"AM":0,"x":25.812,"y":23.208,"w":1.744,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAR","EN":0},"TI":6495,"AM":0,"x":39.501,"y":23.186,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"APR","EN":0},"TI":6496,"AM":0,"x":53.03,"y":23.195,"w":1.631,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAY","EN":0},"TI":6497,"AM":0,"x":66.645,"y":23.225,"w":1.8,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JUN","EN":0},"TI":6498,"AM":0,"x":80.379,"y":23.231,"w":1.575,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JUL","EN":0},"TI":6499,"AM":0,"x":12.277,"y":23.973,"w":1.575,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AUG","EN":0},"TI":6500,"AM":0,"x":25.843,"y":23.963,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SEP","EN":0},"TI":6501,"AM":0,"x":39.497,"y":23.984,"w":1.631,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OCT","EN":0},"TI":6502,"AM":0,"x":53.054,"y":23.96,"w":1.687,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOV","EN":0},"TI":6503,"AM":0,"x":66.759,"y":23.92,"w":1.687,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEC","EN":0},"TI":6504,"AM":0,"x":80.307,"y":23.953,"w":1.575,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8885T.content.txt b/test/data/fd/form/F8885T.content.txt new file mode 100755 index 00000000..48cda49f --- /dev/null +++ b/test/data/fd/form/F8885T.content.txt @@ -0,0 +1,129 @@ +Form +8885 +Department of the Treasury +Internal Revenue Service +Health Coverage Tax Credit +a + Attach to Form 1040, Form 1040NR, Form 1040-SS, or Form 1040-PR. +a + +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +134 +Name of recipient (if both spouses are recipients, complete a separate form for each spouse) +Recipient•s social security number +Before you begin: +See +Definitions and Special Rules +in the instructions. +F +! +CAUTION +Do not +complete this form if you can be claimed as a dependent on someone else’s 2013 tax return. +Part I +Complete This Part To See if You Are Eligible To Take This Credit +1 +Check the boxes below for each month in 2013 that +all +of the following statements were +true +on the +first day +of that month. +• You were an eligible trade adjustment assistance (TAA) recipient, alternative TAA (ATAA) recipient, reemployment TAA (RTAA) +recipient, or Pension Benefit Guaranty Corporation (PBGC) pension payee; or you were a qualified family member of an +individual who fell under one of the categories listed above when he or she passed away or with whom you finalized +a divorce. +• You and/or your family member(s) were covered by a qualified health insurance plan for which you paid the entire premiums, +or your portion of the premiums, directly to your health plan or to “U.S. Treasury–HCTC.” +• You were +not +enrolled in Medicare Part A, B, or C, or you were enrolled in Medicare but your family member(s) qualified for +the HCTC. +• You were +not +enrolled in Medicaid or the Children’s Health Insurance Program (CHIP). +• You were +not +enrolled in the Federal Employees Health Benefits Program (FEHBP) or eligible to receive benefits under the +U.S. military health system (TRICARE). +• You were +not +imprisoned under federal, state, or local authority. +• Your employer +did not + pay 50% or more of the cost of coverage. +• You +did not +receive a 65% COBRA premium reduction from your former employer or COBRA administrator. +January +February +March +April +May +June +July +August +September +October +November +December +Part II +Health Coverage Tax Credit +2 +Enter the total amount paid directly to your health plan for qualified health insurance coverage for +the months checked on line 1 (see instructions). +Do not +include on line 2 any qualified health +insurance premiums paid to “U.S. Treasury–HCTC” or any insurance premiums on coverage that +was actually paid for with a National Emergency Grant. Also, +do not +include any advance +(monthly) payments or reimbursement credits you received as shown on Form 1099-H, box 1 . . +2 +F +! +CAUTION +You +must +attach the required documents listed in the instructions for any amounts +included on line 2. If you do not attach the required documents, your credit will be +disallowed. +3 +Enter the total amount of any Archer MSA or health savings accounts distributions used to pay for +qualified health insurance coverage for the months checked on line 1 . . . +........ +3 +4 +Subtract line 3 from line 2. If zero or less, +stop; +you cannot take the credit +........ +4 +5 + +Health Coverage Tax Credit. +If you received an advance (monthly) payment in any month not +checked on line 1, see the instructions for line 5 for more details. Otherwise, multiply the amount +on line 4 by 72.5% (.725). Enter the result here and on Form 1040, line 71 (check box + c +); Form +1040NR, line 67 + +(check box +c +); Form 1040-SS, line 10; or Form 1040-PR, line 10 +...... +5 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 34641D +Form +8885 + (2013) +Information about Form 8885 and its instructions is at www.irs.gov/form8885 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8885T.fields.json b/test/data/fd/form/F8885T.fields.json new file mode 100755 index 00000000..7536f178 --- /dev/null +++ b/test/data/fd/form/F8885T.fields.json @@ -0,0 +1 @@ +[{"id":"JAN","type":"box","calc":false,"value":""},{"id":"FEB","type":"box","calc":false,"value":""},{"id":"MAR","type":"box","calc":false,"value":""},{"id":"APR","type":"box","calc":false,"value":""},{"id":"MAY","type":"box","calc":false,"value":""},{"id":"JUN","type":"box","calc":false,"value":""},{"id":"JUL","type":"box","calc":false,"value":""},{"id":"AUG","type":"box","calc":false,"value":""},{"id":"SEP","type":"box","calc":false,"value":""},{"id":"OCT","type":"box","calc":false,"value":""},{"id":"NOV","type":"box","calc":false,"value":""},{"id":"DEC","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"COVERAGE","type":"number","calc":false,"value":""},{"id":"MSADIST","type":"number","calc":false,"value":""},{"id":"NETCOV","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8885T.json b/test/data/fd/form/F8885T.json new file mode 100755 index 00000000..397f1f43 --- /dev/null +++ b/test/data/fd/form/F8885T.json @@ -0,0 +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.936},{"oc":"#221f1f","x":20.997,"y":5.259,"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":68.149},{"oc":"#221f1f","x":74.209,"y":6.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":1.5,"l":92.899},{"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":6.09,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.09,"y":26.251,"w":0.75,"l":92.899},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":34.501,"w":0.75,"l":3.798},{"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":6.147,"y":37.501,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":37.501,"w":1.5,"l":34.736},{"oc":"#221f1f","x":86.584,"y":37.501,"w":1.5,"l":12.461}],"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":84.152,"y":4.109,"w":1.5,"l":1.173},{"oc":"#221f1f","x":74.252,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"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":84.152,"y":29.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"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":80.44,"y":33.735,"w":0.75,"l":0.781},{"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},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":34.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":36.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.796,"w":6.188,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":10.501,"w":4.95,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.133,"y":25.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":11.14,"y":30.001,"w":6.188,"h":2.25,"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.224,"clr":-1,"A":"left","R":[{"T":"8885","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.726,"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.251,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":37.475,"y":2.226,"w":13.059000000000005,"clr":-1,"A":"left","R":[{"T":"Health%20Coverage%20Tax%20Credit","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":29.061,"y":3.228,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":30.092,"y":3.322,"w":32.95400000000001,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20Form%201040-SS%2C%20or%20Form%201040-PR.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.388,"y":4.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.922,"y":4.277,"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-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":86.996,"y":3.8440000000000003,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.996,"y":4.29,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.974,"y":4.29,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"134","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":41.413999999999966,"clr":-1,"A":"left","R":[{"T":"Name%20of%20recipient%20(if%20both%20spouses%20are%20recipients%2C%20complete%20a%20separate%20form%20for%20each%20spouse)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.69,"y":4.938,"w":16.578000000000007,"clr":-1,"A":"left","R":[{"T":"Recipient%E2%80%A2s%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.572,"w":8.779,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.901,"y":6.572,"w":2,"clr":-1,"A":"left","R":[{"T":"See%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.339,"y":6.572,"w":14.282000000000005,"clr":-1,"A":"left","R":[{"T":"Definitions%20and%20Special%20Rules%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.023,"y":6.572,"w":8.206000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":6.243,"y":8.585,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.428,"y":8.521,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.354,"y":9.18,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":13.365,"y":8.374,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.379,"y":8.374,"w":41.15699999999997,"clr":-1,"A":"left","R":[{"T":"complete%20this%20form%20if%20you%20can%20be%20claimed%20as%20a%20dependent%20on%20someone%20else%E2%80%99s%202013%20tax%20return.","S":3,"TS":[0,12,0,0]}]},{"x":6.219,"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.322,"w":31.064000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20This%20Part%20To%20See%20if%20You%20Are%20Eligible%20To%20Take%20This%20Credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":23.41400000000001,"clr":-1,"A":"left","R":[{"T":"Check%20the%20boxes%20below%20for%20each%20month%20in%202013%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.327,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"all%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.271,"y":11.09,"w":14.796000000000003,"clr":-1,"A":"left","R":[{"T":"of%20the%20following%20statements%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":11.09,"w":2.167,"clr":-1,"A":"left","R":[{"T":"true%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":68.79,"y":11.09,"w":3.094,"clr":-1,"A":"left","R":[{"T":"on%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.233,"y":11.09,"w":4.167999999999999,"clr":-1,"A":"left","R":[{"T":"first%20day%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.104,"y":11.09,"w":6.281000000000001,"clr":-1,"A":"left","R":[{"T":"of%20that%20month.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.915,"w":56.949,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20an%20eligible%20trade%20adjustment%20assistance%20(TAA)%20recipient%2C%20alternative%20TAA%20(ATAA)%20recipient%2C%20reemployment%20TAA%20(RTAA)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.602,"w":53.09799999999999,"clr":-1,"A":"left","R":[{"T":"recipient%2C%20or%20Pension%20Benefit%20Guaranty%20Corporation%20(PBGC)%20pension%20payee%3B%20or%20you%20were%20a%20qualified%20family%20member%20of%20an","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":13.29,"w":51.927999999999976,"clr":-1,"A":"left","R":[{"T":"individual%20who%20fell%20under%20one%20of%20the%20categories%20listed%20above%20when%20he%20or%20she%20passed%20away%20or%20with%20whom%20you%20finalized%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":13.977,"w":4.667,"clr":-1,"A":"left","R":[{"T":"a%20divorce.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":14.79,"w":56.547999999999945,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20and%2For%20your%20family%20member(s)%20were%20covered%20by%20a%20qualified%20health%20insurance%20plan%20for%20which%20you%20paid%20the%20entire%20premiums%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":15.477,"w":39.635999999999996,"clr":-1,"A":"left","R":[{"T":"or%20your%20portion%20of%20the%20premiums%2C%20directly%20to%20your%20health%20plan%20or%20to%20%E2%80%9CU.S.%20Treasury%E2%80%93HCTC.%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":16.29,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.115,"y":16.29,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.866,"y":16.29,"w":48.69099999999998,"clr":-1,"A":"left","R":[{"T":"enrolled%20in%20Medicare%20Part%20A%2C%20B%2C%20or%20C%2C%20or%20you%20were%20enrolled%20in%20Medicare%20but%20your%20family%20member(s)%20qualified%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":16.978,"w":4.704000000000001,"clr":-1,"A":"left","R":[{"T":"the%20HCTC.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":17.84,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.198,"y":17.84,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.863,"y":17.84,"w":32.059,"clr":-1,"A":"left","R":[{"T":"enrolled%20in%20Medicaid%20or%20the%20Children%E2%80%99s%20Health%20Insurance%20Program%20(CHIP).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":18.54,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.095,"y":18.54,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.726,"y":18.54,"w":48.00399999999997,"clr":-1,"A":"left","R":[{"T":"enrolled%20in%20the%20Federal%20Employees%20Health%20Benefits%20Program%20(FEHBP)%20or%20eligible%20to%20receive%20benefits%20under%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":19.228,"w":17.150000000000002,"clr":-1,"A":"left","R":[{"T":"U.S.%20military%20health%20system%20(TRICARE).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":20.09,"w":5.277000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.035,"y":20.09,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.7,"y":20.09,"w":22.226000000000006,"clr":-1,"A":"left","R":[{"T":"imprisoned%20under%20federal%2C%20state%2C%20or%20local%20authority.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":20.84,"w":7.594000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Your%20employer%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.275,"y":20.84,"w":3.333,"clr":-1,"A":"left","R":[{"T":"did%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.058,"y":20.84,"w":18.929,"clr":-1,"A":"left","R":[{"T":"%20pay%2050%25%20or%20more%20of%20the%20cost%20of%20coverage.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":21.59,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.6,"y":21.59,"w":3.611,"clr":-1,"A":"left","R":[{"T":"did%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.641,"y":21.59,"w":42.526999999999994,"clr":-1,"A":"left","R":[{"T":"receive%20a%2065%25%20COBRA%20premium%20reduction%20from%20your%20former%20employer%20or%20COBRA%20administrator.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":23.09,"w":3.5380000000000003,"clr":-1,"A":"left","R":[{"T":"January","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":23.09,"w":3.9630000000000005,"clr":-1,"A":"left","R":[{"T":"February","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.827,"y":23.09,"w":2.834,"clr":-1,"A":"left","R":[{"T":"March","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":23.09,"w":2.0180000000000002,"clr":-1,"A":"left","R":[{"T":"April","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":23.09,"w":1.908,"clr":-1,"A":"left","R":[{"T":"May","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":23.09,"w":2.168,"clr":-1,"A":"left","R":[{"T":"June","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.602,"y":23.84,"w":1.7970000000000002,"clr":-1,"A":"left","R":[{"T":"July","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":23.84,"w":3.1490000000000005,"clr":-1,"A":"left","R":[{"T":"August","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.827,"y":23.84,"w":4.946,"clr":-1,"A":"left","R":[{"T":"September","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":23.84,"w":3.649,"clr":-1,"A":"left","R":[{"T":"October","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":23.84,"w":4.649,"clr":-1,"A":"left","R":[{"T":"November","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":23.84,"w":4.631,"clr":-1,"A":"left","R":[{"T":"December","S":3,"TS":[0,12,0,0]}]},{"x":6.527,"y":25.322,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.617,"y":25.322,"w":13.059000000000005,"clr":-1,"A":"left","R":[{"T":"Health%20Coverage%20Tax%20Credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.215,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.228,"w":43.61899999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20paid%20directly%20to%20your%20health%20plan%20for%20qualified%20health%20insurance%20coverage%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":26.915,"w":21.581000000000007,"clr":-1,"A":"left","R":[{"T":"the%20months%20checked%20on%20line%201%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.247,"y":26.915,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.106,"y":26.915,"w":16.208000000000006,"clr":-1,"A":"left","R":[{"T":"include%20on%20line%202%20any%20qualified%20health","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":27.602,"w":43.379999999999974,"clr":-1,"A":"left","R":[{"T":"insurance%20premiums%20paid%20to%20%E2%80%9CU.S.%20Treasury%E2%80%93HCTC%E2%80%9D%20or%20any%20insurance%20premiums%20on%20coverage%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":28.29,"w":27.259999999999998,"clr":-1,"A":"left","R":[{"T":"was%20actually%20paid%20for%20with%20a%20National%20Emergency%20Grant.%20Also%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.819,"y":28.29,"w":3.3329999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.367,"y":28.29,"w":9.447000000000001,"clr":-1,"A":"left","R":[{"T":"include%20any%20advance%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.91,"y":28.977,"w":41.77099999999997,"clr":-1,"A":"left","R":[{"T":"(monthly)%20payments%20or%20reimbursement%20credits%20you%20received%20as%20shown%20on%20Form%201099-H%2C%20box%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.087,"y":28.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.149,"y":28.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":11.193,"y":30.79,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":13.378,"y":30.726,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":11.304,"y":31.322000000000003,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":19.552,"y":29.755,"w":2.019,"clr":-1,"A":"left","R":[{"T":"You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.554,"y":29.755,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.587,"y":29.755,"w":31.970000000000013,"clr":-1,"A":"left","R":[{"T":"attach%20the%20required%20documents%20listed%20in%20the%20instructions%20for%20any%20amounts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.555,"y":30.442,"w":36.452999999999996,"clr":-1,"A":"left","R":[{"T":"included%20on%20line%202.%20If%20you%20do%20not%20attach%20the%20required%20documents%2C%20your%20credit%20will%20be","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.56,"y":31.13,"w":5,"clr":-1,"A":"left","R":[{"T":"disallowed.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.562,"y":32.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.04,"w":43.953999999999965,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20any%20Archer%20MSA%20or%20health%20savings%20accounts%20distributions%20used%20to%20pay%20for%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.728,"w":31.026000000000007,"clr":-1,"A":"left","R":[{"T":"qualified%20health%20insurance%20coverage%20for%20the%20months%20checked%20on%20line%201%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":57.501,"y":32.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":59.563,"y":32.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":61.626,"y":32.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":63.69,"y":32.728,"w":11.2312,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":81.616,"y":32.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":18.557000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20If%20zero%20or%20less%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.501,"y":33.59,"w":2.444,"clr":-1,"A":"left","R":[{"T":"stop%3B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.454,"y":33.59,"w":11.948000000000004,"clr":-1,"A":"left","R":[{"T":"you%20cannot%20take%20the%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":33.59,"w":10.664,"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":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":34.447,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.415,"w":13.615000000000006,"clr":-1,"A":"left","R":[{"T":"Health%20Coverage%20Tax%20Credit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":30.068,"y":34.415,"w":28.58400000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20an%20advance%20(monthly)%20payment%20in%20any%20month%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":35.103,"w":43.28899999999998,"clr":-1,"A":"left","R":[{"T":"checked%20on%20line%201%2C%20see%20the%20instructions%20for%20line%205%20for%20more%20details.%20Otherwise%2C%20multiply%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":35.79,"w":37.846999999999994,"clr":-1,"A":"left","R":[{"T":"on%20line%204%20by%2072.5%25%20(.725).%20Enter%20the%20result%20here%20and%20on%20Form%201040%2C%20line%2071%20(check%20box","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.415,"y":35.79,"w":1.078,"clr":-1,"A":"left","R":[{"T":"%20c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.908,"y":35.79,"w":3.149,"clr":-1,"A":"left","R":[{"T":")%3B%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":36.478,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2067","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.326,"y":36.478,"w":5.186,"clr":-1,"A":"left","R":[{"T":"(check%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.348,"y":36.478,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.236,"y":36.478,"w":22.879000000000005,"clr":-1,"A":"left","R":[{"T":")%3B%20Form%201040-SS%2C%20line%2010%3B%20or%20Form%201040-PR%2C%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.816,"y":36.478,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":36.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":37.358,"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":64.561,"y":37.376,"w":7.466,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2034641D","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":37.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":37.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8885","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":37.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.708,"y":4.277,"w":36.45399999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208885%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8885","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6509,"AM":1024,"x":6.443,"y":5.821,"w":67.898,"h":0.833,"TU":"Name of recipient (if both spouses are recipients, complete a separate form for each spouse)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6510,"AM":1024,"x":74.534,"y":5.881,"w":24.585,"h":0.833,"TU":"Recipient’s social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COVERAGE","EN":0},"TI":6523,"AM":0,"x":84.537,"y":29.095,"w":10.663,"h":0.833,"TU":"Line 2. Enter the total amount paid directly to your health plan for qualified insurance coverage for the months checked on line 1 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MSADIST","EN":0},"TI":6524,"AM":0,"x":84.537,"y":32.927,"w":10.663,"h":0.833,"TU":"Line 3. Enter the total amount of any Archer MSA or health savings account distributions used to pay for qualified health insurance coverage for the months checked on line 1. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETCOV","EN":0},"TI":6525,"AM":1024,"x":84.393,"y":33.746,"w":10.952,"h":0.833,"TU":"Line 4. Subtract line 3 from line 2. If zero or less, stop; you cannot take the credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":6526,"AM":0,"x":84.537,"y":36.583,"w":10.663,"h":0.838,"TU":"Line 5. Health Coverage Tax Credit. If you received an advance (monthly) payment in any month not checked on line 1, see instructions for line 5 for more details. Otherwise multiply the amount on line 4 by 72.5% (.725). Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JAN","EN":0},"TI":6511,"AM":0,"x":12.302,"y":23.211,"w":1.462,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FEB","EN":0},"TI":6512,"AM":0,"x":25.812,"y":23.208,"w":1.744,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAR","EN":0},"TI":6513,"AM":0,"x":39.501,"y":23.186,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"APR","EN":0},"TI":6514,"AM":0,"x":53.03,"y":23.195,"w":1.631,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAY","EN":0},"TI":6515,"AM":0,"x":66.645,"y":23.225,"w":1.8,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JUN","EN":0},"TI":6516,"AM":0,"x":80.379,"y":23.231,"w":1.575,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JUL","EN":0},"TI":6517,"AM":0,"x":12.277,"y":23.973,"w":1.575,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AUG","EN":0},"TI":6518,"AM":0,"x":25.843,"y":23.963,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SEP","EN":0},"TI":6519,"AM":0,"x":39.497,"y":23.984,"w":1.631,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OCT","EN":0},"TI":6520,"AM":0,"x":53.054,"y":23.96,"w":1.687,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOV","EN":0},"TI":6521,"AM":0,"x":66.759,"y":23.92,"w":1.687,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEC","EN":0},"TI":6522,"AM":0,"x":80.307,"y":23.953,"w":1.575,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8886.content.txt b/test/data/fd/form/F8886.content.txt new file mode 100755 index 00000000..96cd569e --- /dev/null +++ b/test/data/fd/form/F8886.content.txt @@ -0,0 +1,190 @@ +Form +8886 +(Rev. March 2011) +Department of the Treasury +Internal Revenue Service +Reportable Transaction Disclosure Statement + +Attach to your tax return. + +See separate instructions. +OMB No. 1545-1800 +Attachment +Sequence No. +137 +F +F +Name(s) shown on return (individuals enter last name, first name, middle initial) +Identifying number +Number, street, and room or suite no. + City or town + State + ZIP code +A + +If you are filing more than one Form 8886 with your tax return, sequentially number +each Form 8886 and enter the statement number for this Form 8886 . . . . . . . . . . . . . . . +F +Statement number +of +B +Enter the form number of the tax return to which this form is attached or related . . . . . . . . . . . . . . . . . . . . . . . + . . . . +F +Enter the year of the tax return identified above . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . +F +Is this Form 8886 being filed with an amended tax return? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . +F +Yes +No +C +Check the box(es) that apply (see instructions). +Initial year filer +Protective disclosure +1a +Name of reportable transaction +1 b +Initial year participated in transaction +1c +Reportable transaction or tax shelter registration number (see instructions) +2 +Identify the type of reportable transaction. Check all boxes that apply (see instructions). +a +Listed +b +Confidential +c +Contractual protection +d +Loss +e +Transaction of interest +3 +If you checked box 2a or 2e, enter the published guidance number for the listed transaction or transaction +of interest . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . +F +4 +Enter the number of “same as or substantially similar” transactions reported on this form . . . . . . . . . . . . . . . . . . . + . +F +5 +If you participated in this reportable transaction through a partnership, S corporation, trust, and foreign entity, check the a +pplicable boxes and +provide the information below for the entity(s) (see instructions). (Attach additional sheets, if necessary.) +a +Type of entity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +F +Partnership +S corporation +Trust +Foreign +Partnership +S corporation +Trust +Foreign +b +Name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +F +c +Employer identification number (EIN), if known . . . . +F +d + +Date Schedule K-1 received from entity +(enter “none” if Schedule K-1 not received) . . . . . . . +F +6 + + +Enter below the name and address of each individual or entity to whom you paid a fee with regard to the transaction if that in +dividual or entity +promoted, solicited, or recommended your participation in the transaction, or provided tax advice related to the transaction. +(Attach additional +sheets, if necessary.) +a +Name +Identifying number (if known) +Fees paid +$ +Number, street, and room or suite no. +City or town + State + ZIP code +b +Name +Identifying number (if known) +Fees paid +$ +Number, street, and room or suite no. +City or town + State + ZIP code +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 34654G +Form +8886 + (Rev. 3-2011) +----------------Page (0) Break---------------- +Form 8886 (Rev. 3-2011) +Page +2 +7 Facts +a +Identify the type of tax benefit generated by the transaction. Check all the boxes that apply (see instructions). +Deductions +Capital loss +Ordinary loss +Exclusions from gross income +Nonrecognition of gain +Adjustments to basis +Absence of adjustments to basis +Deferral +Other +Tax Credits +b + + + +Further describe the amount and nature of the expected tax treatment and expected tax benefits generated by the transaction for + all affected +years. Include facts of each step of the transaction that relate to the expected tax benefits including the amount and nature o +f your investment. +Include in your description your participation in the transaction and all related transactions regardless of the year in which +they were entered +into. Also, include a description of any tax result protection with respect to the transaction. +8 + + + +Identify all individuals and entities involved in the transaction that are tax-exempt, foreign, or related. Check the appropria +te box(es) (see +instructions). Include their name(s), identifying number(s), address(es), and a brief description of their involvement. For eac +h foreign entity, +identify its country of incorporation or existence. For each individual or related entity, explain how the individual or entity + is related. Attach +additional sheets, if necessary. +a +Type of individual or entity: +Tax-exempt +Foreign +Related +Name +Identifying number +Address +Description +b +Type of individual or entity: +Tax-exempt +Foreign +Related +Name +Identifying number +Address +Description +Form +8886 + (Rev. 3-2011) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8886.fields.json b/test/data/fd/form/F8886.fields.json new file mode 100755 index 00000000..fd5aaa8d --- /dev/null +++ b/test/data/fd/form/F8886.fields.json @@ -0,0 +1 @@ +[{"id":"A2RB","type":"radio","calc":false,"value":"AMENDY"},{"id":"A2RB","type":"radio","calc":false,"value":"AMENDN"},{"id":"PDX","type":"box","calc":false,"value":""},{"id":"IYFX","type":"box","calc":false,"value":""},{"id":"L2ABX","type":"box","calc":false,"value":""},{"id":"L2CBX","type":"box","calc":false,"value":""},{"id":"TRANSBX","type":"box","calc":false,"value":""},{"id":"L2BBX","type":"box","calc":false,"value":""},{"id":"L2DBX","type":"box","calc":false,"value":""},{"id":"A90RB_1_","type":"radio","calc":false,"value":"PX"},{"id":"A90RB_1_","type":"radio","calc":false,"value":"TX"},{"id":"A90RB_1_","type":"radio","calc":false,"value":"SCX"},{"id":"A90RB_1_","type":"radio","calc":false,"value":"FX"},{"id":"A90RB_2_","type":"radio","calc":false,"value":"PX"},{"id":"A90RB_2_","type":"radio","calc":false,"value":"TX"},{"id":"A90RB_2_","type":"radio","calc":false,"value":"SCX"},{"id":"A90RB_2_","type":"radio","calc":false,"value":"FX"},{"id":"STMT","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"STMT1","type":"number","calc":false,"value":""},{"id":"STMT2","type":"number","calc":false,"value":""},{"id":"FNUMBER","type":"alpha","calc":false,"value":""},{"id":"YEAR","type":"date","calc":false,"value":""},{"id":"L1A","type":"alpha","calc":false,"value":""},{"id":"INITYEAR","type":"date","calc":false,"value":""},{"id":"L1B","type":"alpha","calc":false,"value":""},{"id":"L3","type":"alpha","calc":false,"value":""},{"id":"L4","type":"alpha","calc":false,"value":""},{"id":"A96_L5NAME_1_","type":"alpha","calc":false,"value":""},{"id":"A96_L5NAME_2_","type":"alpha","calc":false,"value":""},{"id":"A96_L5EIN_1_","type":"mask","calc":false,"value":""},{"id":"A96_L5EIN_2_","type":"mask","calc":false,"value":""},{"id":"A96_K1DATE_1_","type":"alpha","calc":false,"value":""},{"id":"A96_K1DATE_2_","type":"alpha","calc":false,"value":""},{"id":"FEE_NAME1_1_","type":"alpha","calc":false,"value":""},{"id":"FEE_IDNO1_1_","type":"alpha","calc":false,"value":""},{"id":"FEE_FEES_1_","type":"number","calc":false,"value":""},{"id":"FEE_ADDR1_1_","type":"alpha","calc":false,"value":""},{"id":"FEE_CITY1_1_","type":"alpha","calc":false,"value":""},{"id":"FEE_STATE1_1_","type":"alpha","calc":false,"value":""},{"id":"FEE_ZIP1_1_","type":"zip","calc":false,"value":""},{"id":"FEE_NAME1_2_","type":"alpha","calc":false,"value":""},{"id":"FEE_IDNO1_2_","type":"alpha","calc":false,"value":""},{"id":"FEE_FEES_2_","type":"number","calc":false,"value":""},{"id":"FEE_ADDR1_2_","type":"alpha","calc":false,"value":""},{"id":"FEE_CITY1_2_","type":"alpha","calc":false,"value":""},{"id":"FEE_STATE1_2_","type":"alpha","calc":false,"value":""},{"id":"FEE_ZIP1_2_","type":"zip","calc":false,"value":""},{"id":"DEDX","type":"box","calc":false,"value":""},{"id":"EXCLX","type":"box","calc":false,"value":""},{"id":"ABX","type":"box","calc":false,"value":""},{"id":"TCX","type":"box","calc":false,"value":""},{"id":"CLX","type":"box","calc":false,"value":""},{"id":"NONX","type":"box","calc":false,"value":""},{"id":"DEFX","type":"box","calc":false,"value":""},{"id":"OLX","type":"box","calc":false,"value":""},{"id":"ADJX","type":"box","calc":false,"value":""},{"id":"OTHX","type":"box","calc":false,"value":""},{"id":"A77RB_1_","type":"radio","calc":false,"value":"TAXEXX"},{"id":"A77RB_1_","type":"radio","calc":false,"value":"FOREIGNX"},{"id":"A77RB_1_","type":"radio","calc":false,"value":"RELATEX"},{"id":"A77RB_2_","type":"radio","calc":false,"value":"TAXEXX"},{"id":"A77RB_2_","type":"radio","calc":false,"value":"FOREIGNX"},{"id":"A77RB_2_","type":"radio","calc":false,"value":"RELATEX"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"EIN2","type":"ssn","calc":true,"value":""},{"id":"OTHER","type":"alpha","calc":false,"value":""},{"id":"L8TXT","type":"alpha","calc":false,"value":""},{"id":"A77_NAME3_1_","type":"alpha","calc":false,"value":""},{"id":"A77_IDNO3_1_","type":"alpha","calc":false,"value":""},{"id":"A77_ADDR3_1_","type":"alpha","calc":false,"value":""},{"id":"A77_CITY8_1_","type":"alpha","calc":false,"value":""},{"id":"A77_ST8_1_","type":"alpha","calc":false,"value":""},{"id":"A77_ZIP8_1_","type":"zip","calc":false,"value":""},{"id":"L8ARRAY_L8ATXT_1_","type":"alpha","calc":false,"value":""},{"id":"A77_NAME3_2_","type":"alpha","calc":false,"value":""},{"id":"A77_IDNO3_2_","type":"alpha","calc":false,"value":""},{"id":"A77_ADDR3_2_","type":"alpha","calc":false,"value":""},{"id":"A77_CITY8_2_","type":"alpha","calc":false,"value":""},{"id":"A77_ST8_2_","type":"alpha","calc":false,"value":""},{"id":"A77_ZIP8_2_","type":"zip","calc":false,"value":""},{"id":"L8ARRAY_L8ATXT_2_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8886.json b/test/data/fd/form/F8886.json new file mode 100755 index 00000000..58550ffb --- /dev/null +++ b/test/data/fd/form/F8886.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8886 (Rev. March 2011)","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":16.216},{"oc":"#221f1f","x":22.234,"y":5.251,"w":1.5,"l":61.961},{"oc":"#221f1f","x":84.066,"y":3.17,"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":71.758},{"oc":"#221f1f","x":77.922,"y":6.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":40.923},{"oc":"#221f1f","x":46.984,"y":8.251,"w":0.75,"l":39.686},{"oc":"#221f1f","x":86.584,"y":8.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":91.534,"y":8.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":79.314,"y":9.751,"w":0.75,"l":8.594},{"oc":"#221f1f","x":90.414,"y":9.751,"w":0.75,"l":8.631},{"oc":"#221f1f","x":83.284,"y":10.501,"w":0.75,"l":15.761},{"oc":"#221f1f","x":83.284,"y":11.251,"w":0.75,"l":15.761},{"oc":"#221f1f","x":6.19,"y":12.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":12.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":35.973},{"oc":"#221f1f","x":42.034,"y":15.751,"w":0.75,"l":57.011},{"oc":"#221f1f","x":72.87,"y":20.251,"w":0.75,"l":26.175},{"oc":"#221f1f","x":83.284,"y":21.001,"w":0.75,"l":15.761},{"oc":"#221f1f","x":44.509,"y":24.001,"w":0.75,"l":27.311},{"oc":"#221f1f","x":44.509,"y":25.501,"w":0.75,"l":27.311},{"oc":"#221f1f","x":71.734,"y":24.001,"w":0.75,"l":27.311},{"oc":"#221f1f","x":71.734,"y":25.501,"w":0.75,"l":27.311},{"oc":"#221f1f","x":44.509,"y":27.001,"w":0.75,"l":27.311},{"oc":"#221f1f","x":71.734,"y":27.001,"w":0.75,"l":27.311},{"oc":"#221f1f","x":44.509,"y":28.501,"w":0.75,"l":27.311},{"oc":"#221f1f","x":71.734,"y":28.501,"w":0.75,"l":27.311},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":52.061},{"oc":"#221f1f","x":6.147,"y":32.251,"w":0.75,"l":52.061},{"oc":"#221f1f","x":58.122,"y":30.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":58.122,"y":32.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":30.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":33.751,"w":0.75,"l":40.923},{"oc":"#221f1f","x":46.984,"y":33.751,"w":0.75,"l":39.686},{"oc":"#221f1f","x":86.584,"y":33.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":91.534,"y":33.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.147,"y":35.251,"w":0.75,"l":52.061},{"oc":"#221f1f","x":58.122,"y":35.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":35.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":36.751,"w":0.75,"l":40.923},{"oc":"#221f1f","x":46.984,"y":36.751,"w":0.75,"l":39.686},{"oc":"#221f1f","x":86.584,"y":36.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":91.534,"y":36.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":47.251,"w":1.5,"l":34.736},{"oc":"#221f1f","x":82.872,"y":47.251,"w":1.5,"l":16.173},{"oc":"#221f1f","x":0.086,"y":49.469,"w":1.5,"l":1.627},{"oc":"#221f1f","x":0.086,"y":48.951,"w":1.5,"l":1.627}],"VLines":[{"oc":"#221f1f","x":22.277,"y":2.235,"w":1.5,"l":3.031},{"oc":"#221f1f","x":22.277,"y":3.551,"w":1.5,"l":0.688},{"oc":"#221f1f","x":22.277,"y":4.218,"w":1.5,"l":1.065},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.951},{"oc":"#221f1f","x":84.152,"y":3.173,"w":1.5,"l":2.11},{"oc":"#221f1f","x":77.965,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":42.077,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":71.777,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.777,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":71.777,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":71.777,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":71.777,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.577,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":1.713,"y":48.951,"w":1.5,"l":0.518},{"oc":"#221f1f","x":0.086,"y":48.951,"w":1.5,"l":0.518}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":0.344,"y":49.044,"w":0,"h":0.331,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.982,"w":1.456,"h":0.456,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.982,"w":1.327,"h":0.456,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.982,"w":1.327,"h":0.456,"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":2.34,"clr":-1,"A":"left","R":[{"T":"8886%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.317,"w":8.410000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20March%202011)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.995,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.432,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.373,"y":2.418,"w":20.739999999999995,"clr":-1,"A":"left","R":[{"T":"Reportable%20Transaction%20Disclosure%20Statement%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":45.617,"y":3.4930000000000003,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.118,"y":4.243,"w":12.741000000000001,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.233,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1800%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.4690000000000003,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.9779999999999998,"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":3.9779999999999998,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"137%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":43.799,"y":3.8869999999999996,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":44.052,"y":3.137,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":5.94,"y":5.108,"w":35.303999999999995,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return%20(individuals%20enter%20last%20name%2C%20first%20name%2C%20middle%20initial)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.402,"y":5.12,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.608,"w":17.098000000000003,"clr":-1,"A":"left","R":[{"T":"Number%2C%20street%2C%20and%20room%20or%20suite%20no.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.777,"y":6.608,"w":5.703,"clr":-1,"A":"left","R":[{"T":"%20City%20or%20town","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.377,"y":6.608,"w":2.63,"clr":-1,"A":"left","R":[{"T":"%20State","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.327,"y":6.608,"w":4.315,"clr":-1,"A":"left","R":[{"T":"%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.235,"y":8.171,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.171,"w":37.434999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20filing%20more%20than%20one%20Form%208886%20with%20your%20tax%20return%2C%20sequentially%20number%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.858,"w":39.29799999999997,"clr":-1,"A":"left","R":[{"T":"each%20Form%208886%20and%20enter%20the%20statement%20number%20for%20this%20Form%208886%20%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.904,"y":8.403,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":66.577,"y":8.795,"w":8.597,"clr":-1,"A":"left","R":[{"T":"Statement%20number%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.313,"y":8.796,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.209,"y":9.608,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.545,"w":48.276999999999944,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20form%20number%20of%20the%20tax%20return%20to%20which%20this%20form%20is%20attached%20or%20related%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,0,0]}]},{"oc":"#221f1f","x":77.27,"y":9.545,"w":2.7800000000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.323,"y":9.153,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":10.89,"y":10.296,"w":42.686999999999905,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20year%20of%20the%20tax%20return%20identified%20above%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,0,0]}]},{"oc":"#221f1f","x":69.584,"y":10.296,"w":7.784000000000006,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.323,"y":9.903,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":10.89,"y":11.108,"w":45.207999999999906,"clr":-1,"A":"left","R":[{"T":"Is%20this%20Form%208886%20being%20filed%20with%20an%20amended%20tax%20return%3F%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,0,0]}]},{"oc":"#221f1f","x":73.051,"y":11.108,"w":5.282000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.323,"y":10.653,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":86.811,"y":11.108,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":95.173,"y":11.108,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.158,"y":11.858,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.858,"w":21.189000000000007,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box(es)%20that%20apply%20(see%20instructions).%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":48.633,"y":11.858,"w":6.684000000000003,"clr":-1,"A":"left","R":[{"T":"Initial%20year%20filer%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.958,"y":11.858,"w":9.648000000000001,"clr":-1,"A":"left","R":[{"T":"Protective%20disclosure%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":12.608,"w":1.8970000000000002,"clr":-1,"A":"left","R":[{"T":"1a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.608,"w":14.187000000000003,"clr":-1,"A":"left","R":[{"T":"Name%20of%20reportable%20transaction%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.667,"y":14.108,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1%20b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.108,"w":16.724000000000004,"clr":-1,"A":"left","R":[{"T":"Initial%20year%20participated%20in%20transaction%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.3,"y":14.108,"w":1.4560000000000002,"clr":-1,"A":"left","R":[{"T":"1c","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.54,"y":14.108,"w":33.689,"clr":-1,"A":"left","R":[{"T":"Reportable%20transaction%20or%20tax%20shelter%20registration%20number%20%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":15.608,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.608,"w":39.246999999999986,"clr":-1,"A":"left","R":[{"T":"Identify%20the%20type%20of%20reportable%20transaction.%20Check%20all%20boxes%20that%20apply%20(see%20instructions).%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.639,"y":16.358,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.746,"y":16.358,"w":3.001,"clr":-1,"A":"left","R":[{"T":"Listed%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.613,"y":17.108,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.746,"y":17.108,"w":5.630000000000001,"clr":-1,"A":"left","R":[{"T":"Confidential%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.439,"y":16.358,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.546,"y":16.358,"w":10.316,"clr":-1,"A":"left","R":[{"T":"Contractual%20protection%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.413,"y":17.108,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.546,"y":17.108,"w":2.408,"clr":-1,"A":"left","R":[{"T":"Loss%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.426,"y":16.358,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.533,"y":16.358,"w":9.982000000000001,"clr":-1,"A":"left","R":[{"T":"Transaction%20of%20interest","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":18.608,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.608,"w":47.52999999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20box%202a%20or%202e%2C%20enter%20the%20published%20guidance%20number%20for%20the%20listed%20transaction%20or%20transaction%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.296,"w":36.71099999999992,"clr":-1,"A":"left","R":[{"T":"of%20interest%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":[0,11,0,0]}]},{"oc":"#221f1f","x":61.367,"y":19.296,"w":6.116000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.98,"y":18.903,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":7.65,"y":20.045,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.045,"w":49.99899999999994,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20%E2%80%9Csame%20as%20or%20substantially%20similar%E2%80%9D%20transactions%20reported%20on%20this%20form%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.638,"y":20.045,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.118,"y":19.645,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":7.65,"y":20.858,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.812,"w":54.306999999999924,"clr":-1,"A":"left","R":[{"T":"If%20you%20participated%20in%20this%20reportable%20transaction%20through%20a%20partnership%2C%20S%20corporation%2C%20trust%2C%20and%20foreign%20entity%2C%20check%20the%20a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.278,"y":20.812,"w":9.298,"clr":-1,"A":"left","R":[{"T":"pplicable%20boxes%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.898,"y":21.412,"w":46.078999999999986,"clr":-1,"A":"left","R":[{"T":"provide%20the%20information%20below%20for%20the%20entity(s)%20(see%20instructions).%20(Attach%20additional%20sheets%2C%20if%20necessary.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.647,"y":22.358,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.898,"y":22.358,"w":22.754999999999985,"clr":-1,"A":"left","R":[{"T":"Type%20of%20entity%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,0,0]}]},{"oc":"#221f1f","x":42.755,"y":21.903,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":47.396,"y":22.358,"w":5.408000000000001,"clr":-1,"A":"left","R":[{"T":"Partnership%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.396,"y":23.108,"w":6.352,"clr":-1,"A":"left","R":[{"T":"S%20corporation%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.008,"y":22.358,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Trust%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.008,"y":23.108,"w":3.648,"clr":-1,"A":"left","R":[{"T":"Foreign%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.621,"y":22.358,"w":5.408000000000001,"clr":-1,"A":"left","R":[{"T":"Partnership%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.621,"y":23.108,"w":6.352,"clr":-1,"A":"left","R":[{"T":"S%20corporation%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.233,"y":22.358,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Trust%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.233,"y":23.108,"w":3.648,"clr":-1,"A":"left","R":[{"T":"Foreign%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.613,"y":23.858,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.858,"w":22.66499999999999,"clr":-1,"A":"left","R":[{"T":"Name%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,0,0]}]},{"oc":"#221f1f","x":42.755,"y":23.403,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":8.639,"y":25.358,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.358,"w":22.837999999999994,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number%20(EIN)%2C%20if%20known%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.755,"y":24.903,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":8.613,"y":26.921,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.921,"w":18.134000000000007,"clr":-1,"A":"left","R":[{"T":"Date%20Schedule%20K-1%20received%20from%20entity%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.608,"w":22.987999999999985,"clr":-1,"A":"left","R":[{"T":"(enter%20%E2%80%9Cnone%E2%80%9D%20if%20Schedule%20K-1%20not%20received)%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.755,"y":27.153,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9999,0,0],"RA":90}]},{"oc":"#221f1f","x":7.65,"y":28.658,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.658,"w":55.93599999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20below%20the%20name%20and%20address%20of%20each%20individual%20or%20entity%20to%20whom%20you%20paid%20a%20fee%20with%20regard%20to%20the%20transaction%20if%20that%20%20in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.591,"y":28.658,"w":7.631,"clr":-1,"A":"left","R":[{"T":"dividual%20or%20entity%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.902,"y":29.258,"w":55.80799999999994,"clr":-1,"A":"left","R":[{"T":"promoted%2C%20solicited%2C%20or%20recommended%20your%20participation%20in%20the%20transaction%2C%20or%20provided%20tax%20advice%20related%20to%20the%20%20transaction.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.997,"y":29.258,"w":8.094000000000001,"clr":-1,"A":"left","R":[{"T":"(Attach%20additional%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.902,"y":29.858,"w":9.649000000000003,"clr":-1,"A":"left","R":[{"T":"sheets%2C%20if%20necessary.)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.651,"y":30.608,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.608,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.602,"y":30.608,"w":13.169000000000002,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20(if%20known)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.64,"y":30.608,"w":4.649000000000001,"clr":-1,"A":"left","R":[{"T":"Fees%20paid%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.64,"y":31.253999999999998,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.924,"y":32.108,"w":17.098000000000003,"clr":-1,"A":"left","R":[{"T":"Number%2C%20street%2C%20and%20room%20or%20suite%20no.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.465,"y":32.108,"w":5.425,"clr":-1,"A":"left","R":[{"T":"City%20or%20town","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.377,"y":32.108,"w":2.63,"clr":-1,"A":"left","R":[{"T":"%20State","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.327,"y":32.108,"w":4.315,"clr":-1,"A":"left","R":[{"T":"%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.613,"y":33.608,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.608,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.602,"y":33.608,"w":13.169000000000002,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20(if%20known)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.64,"y":33.608,"w":4.649000000000001,"clr":-1,"A":"left","R":[{"T":"Fees%20paid%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.64,"y":34.262,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%24%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.924,"y":35.108,"w":17.098000000000003,"clr":-1,"A":"left","R":[{"T":"Number%2C%20street%2C%20and%20room%20or%20suite%20no.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.465,"y":35.108,"w":5.425,"clr":-1,"A":"left","R":[{"T":"City%20or%20town","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.377,"y":35.108,"w":2.63,"clr":-1,"A":"left","R":[{"T":"%20State","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.327,"y":35.108,"w":4.315,"clr":-1,"A":"left","R":[{"T":"%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"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":60.815,"y":47.126,"w":7.799000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2034654G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.276,"y":47.065,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.419,"y":47.065,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8886","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.241,"y":47.065,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%203-2011)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":6527,"AM":0,"x":65.234,"y":4.164,"w":12.71,"h":0.843},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6528,"AM":1024,"x":6.139,"y":5.962,"w":71.205,"h":0.833,"TU":"Name(s) shown on return (individuals enter last name, first name, middle initial)."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6529,"AM":1024,"x":78.471,"y":6.028,"w":20.529,"h":0.833,"TU":"Identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":6530,"AM":1024,"x":6.139,"y":7.537,"w":40.071,"h":0.833,"TU":"Number, street, and room or suite number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":6531,"AM":1024,"x":48.367,"y":7.486,"w":37.514,"h":0.833,"TU":"City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":6532,"AM":1024,"x":86.89,"y":7.506,"w":4.236,"h":0.833},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":6533,"AM":1024,"x":91.955,"y":7.482,"w":7.045,"h":0.833,"TU":"ZIP code"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STMT1","EN":0},"TI":6534,"AM":0,"x":79.324,"y":9.022,"w":8.601,"h":0.833,"TU":"Statement number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STMT2","EN":0},"TI":6535,"AM":0,"x":90.42,"y":9.022,"w":8.642,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNUMBER","EN":0},"TI":6536,"AM":0,"x":83.284,"y":9.772,"w":15.778,"h":0.833,"TU":"Line B. Enter the form number of the tax return to which this form is attached or related"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR","EN":0},"TI":6537,"AM":0,"x":83.284,"y":10.522,"w":15.778,"h":0.833,"TU":"Enter the year of the tax return identified above","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":6542,"AM":0,"x":11.209,"y":13.468,"w":87.696,"h":0.833,"TU":"Line 1a. Name of reportable transaction."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"INITYEAR","EN":0},"TI":6543,"AM":0,"x":10.925,"y":15.013,"w":30.342,"h":0.833,"TU":"Line 1b. Initial year participated in transaction.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":6544,"AM":0,"x":45.594,"y":15.001,"w":53.258,"h":0.833,"TU":"Line 1c. Reportable transaction or tax shelter registration number (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":6550,"AM":0,"x":72.868,"y":19.522,"w":26.194,"h":0.833,"TU":"Line 3. If you checked box 2a or 2e, enter the published guidance number for the listed transaction or transaction of interest."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":6551,"AM":0,"x":83.284,"y":20.272,"w":15.778,"h":0.833,"TU":"Line 4. Enter the number of “same as or substantially similar” transactions reportedLine 4. Enter the number of \"same as or substantially similar\" transactions reported on this form."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A96_L5NAME_1_","EN":0},"TI":6560,"AM":0,"x":44.633,"y":24.694,"w":26.849,"h":0.833,"TU":"Line 5b. Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A96_L5NAME_2_","EN":0},"TI":6561,"AM":0,"x":72.217,"y":24.721,"w":26.721,"h":0.833,"TU":"Line 5b. Name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A96_L5EIN_1_","EN":0},"TI":6562,"AM":0,"x":44.633,"y":26.221,"w":26.785,"h":0.833,"TU":"Line 5c. Employer identification number (EIN), if known. ","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A96_L5EIN_2_","EN":0},"TI":6563,"AM":0,"x":72.228,"y":26.221,"w":26.721,"h":0.833,"TU":"Line 5c. Employer identification number (EIN), if known. ","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A96_K1DATE_1_","EN":0},"TI":6564,"AM":0,"x":44.633,"y":27.666,"w":26.785,"h":0.833,"TU":"Line 5d. Date Schedule K-1 received from entity (enter \"none\" if Schedule K-1 not received)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A96_K1DATE_2_","EN":0},"TI":6565,"AM":0,"x":72.345,"y":27.666,"w":26.593,"h":0.833,"TU":"Line 5d. Date Schedule K-1 received from entity (enter \"none\" if Schedule K-1 not received)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_NAME1_1_","EN":0},"TI":6566,"AM":0,"x":6.208,"y":31.432,"w":51.274,"h":0.833,"TU":"Line 6a. Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_IDNO1_1_","EN":0},"TI":6567,"AM":0,"x":58.863,"y":31.459,"w":19.721,"h":0.833,"TU":"Identifying number (if known)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEE_FEES_1_","EN":0},"TI":6568,"AM":0,"x":80.996,"y":31.444,"w":17.943,"h":0.833,"TU":"Fees paid $"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_ADDR1_1_","EN":0},"TI":6569,"AM":0,"x":6.208,"y":32.932,"w":39.88,"h":0.833,"TU":"Number, street, and room or suite no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_CITY1_1_","EN":0},"TI":6570,"AM":0,"x":48.495,"y":32.959,"w":36.553,"h":0.833,"TU":"City or town"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_STATE1_1_","EN":0},"TI":6571,"AM":0,"x":86.811,"y":32.937,"w":4.066,"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":"FEE_ZIP1_1_","EN":0},"TI":6572,"AM":0,"x":91.955,"y":32.932,"w":7.045,"h":0.833,"TU":"ZIP code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_NAME1_2_","EN":0},"TI":6573,"AM":0,"x":6.289,"y":34.434,"w":51.403,"h":0.833,"TU":"Line 6b. Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_IDNO1_2_","EN":0},"TI":6574,"AM":0,"x":58.56,"y":34.461,"w":20.17,"h":0.833,"TU":"Identifying number (if known)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEE_FEES_2_","EN":0},"TI":6575,"AM":0,"x":80.948,"y":34.442,"w":17.943,"h":0.833,"TU":"Fees paid $"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_ADDR1_2_","EN":0},"TI":6576,"AM":0,"x":6.161,"y":35.957,"w":40.329,"h":0.833,"TU":"Number, street, and room or suite no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_CITY1_2_","EN":0},"TI":6577,"AM":0,"x":47.807,"y":35.985,"w":37.45,"h":0.833,"TU":"City or town"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FEE_STATE1_2_","EN":0},"TI":6578,"AM":0,"x":87.086,"y":35.942,"w":3.841,"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":"FEE_ZIP1_2_","EN":0},"TI":6579,"AM":0,"x":92.036,"y":35.957,"w":6.917,"h":0.833,"TU":"ZIP code"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMENDY","EN":0},"TI":6538,"AM":0,"x":84.547,"y":11.228,"w":1.799,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMENDN","EN":0},"TI":6539,"AM":0,"x":93.198,"y":11.223,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"A2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDX","EN":0},"TI":6540,"AM":0,"x":47.018,"y":11.997,"w":1.454,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IYFX","EN":0},"TI":6541,"AM":0,"x":64.221,"y":11.976,"w":1.454,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2ABX","EN":0},"TI":6545,"AM":0,"x":11.049,"y":16.47,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2CBX","EN":0},"TI":6546,"AM":0,"x":30.628,"y":16.458,"w":1.969,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TRANSBX","EN":0},"TI":6547,"AM":0,"x":56.82,"y":16.463,"w":1.575,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2BBX","EN":0},"TI":6548,"AM":0,"x":10.914,"y":17.237,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2DBX","EN":0},"TI":6549,"AM":0,"x":30.639,"y":17.214,"w":1.744,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PX","EN":0},"TI":6552,"AM":0,"x":45.623,"y":22.442,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TX","EN":0},"TI":6553,"AM":0,"x":59.329,"y":22.471,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SCX","EN":0},"TI":6556,"AM":0,"x":45.61,"y":23.2,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FX","EN":0},"TI":6557,"AM":0,"x":59.317,"y":23.202,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"A90RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PX","EN":0},"TI":6554,"AM":0,"x":72.874,"y":22.468,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TX","EN":0},"TI":6555,"AM":0,"x":86.581,"y":22.497,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SCX","EN":0},"TI":6558,"AM":0,"x":72.862,"y":23.226,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FX","EN":0},"TI":6559,"AM":0,"x":86.569,"y":23.228,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"A90RB_2_","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":58.122,"y":6.751,"w":0.75,"l":27.586},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.19,"y":10.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":11.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":12.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":12.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":13.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":14.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":71.861},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":71.861},{"oc":"#221f1f","x":77.922,"y":18.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":20.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.19,"y":23.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":24.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":24.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":25.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":26.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":27.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":71.861},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":71.861},{"oc":"#221f1f","x":77.922,"y":29.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":30.751,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":32.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":37.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.19,"y":33.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":34.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":35.251,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":36.001,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.19,"y":36.751,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.147,"y":47.481,"w":1.5,"l":92.869}],"VLines":[{"oc":"#221f1f","x":77.965,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":29.235,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":11.357000000000005,"clr":-1,"A":"left","R":[{"T":"Form%208886%20(Rev.%203-2011)%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":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.65,"y":2.858,"w":3.742,"clr":-1,"A":"left","R":[{"T":"7%20Facts%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.639,"y":3.6079999999999997,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":3.6079999999999997,"w":48.91699999999996,"clr":-1,"A":"left","R":[{"T":"Identify%20the%20type%20of%20tax%20benefit%20generated%20by%20the%20transaction.%20Check%20all%20the%20boxes%20that%20apply%20(see%20instructions).%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.746,"y":4.358,"w":5.372,"clr":-1,"A":"left","R":[{"T":"Deductions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.746,"y":5.108,"w":5.5,"clr":-1,"A":"left","R":[{"T":"Capital%20loss%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.746,"y":5.858,"w":6.186,"clr":-1,"A":"left","R":[{"T":"Ordinary%20loss%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":27.596,"y":4.358,"w":13.724000000000002,"clr":-1,"A":"left","R":[{"T":"Exclusions%20from%20gross%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":27.596,"y":5.108,"w":10.445000000000002,"clr":-1,"A":"left","R":[{"T":"Nonrecognition%20of%20gain%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":27.596,"y":5.858,"w":9.670000000000002,"clr":-1,"A":"left","R":[{"T":"Adjustments%20to%20basis%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.583,"y":4.358,"w":14.615,"clr":-1,"A":"left","R":[{"T":"Absence%20of%20adjustments%20to%20basis","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.583,"y":5.108,"w":3.7770000000000006,"clr":-1,"A":"left","R":[{"T":"Deferral%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.583,"y":5.858,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":82.046,"y":4.358,"w":5.129000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20Credits","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.613,"y":6.795,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.795,"w":57.75399999999993,"clr":-1,"A":"left","R":[{"T":"Further%20describe%20the%20amount%20and%20nature%20of%20the%20expected%20tax%20treatment%20and%20expected%20tax%20benefits%20generated%20by%20the%20transaction%20for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.567,"y":6.795,"w":5.462999999999999,"clr":-1,"A":"left","R":[{"T":"%20all%20affected%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.897,"y":7.4830000000000005,"w":55.73499999999994,"clr":-1,"A":"left","R":[{"T":"years.%20Include%20facts%20of%20each%20step%20of%20the%20transaction%20that%20relate%20to%20the%20expected%20tax%20benefits%20including%20the%20amount%20and%20nature%20o","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.763,"y":7.4830000000000005,"w":8.262,"clr":-1,"A":"left","R":[{"T":"f%20your%20investment.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.901,"y":8.17,"w":54.432999999999964,"clr":-1,"A":"left","R":[{"T":"Include%20in%20your%20description%20your%20participation%20in%20the%20transaction%20and%20all%20related%20transactions%20regardless%20of%20the%20year%20in%20which%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.523,"y":8.17,"w":8.315,"clr":-1,"A":"left","R":[{"T":"they%20were%20entered%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.898,"y":8.858,"w":40.690999999999974,"clr":-1,"A":"left","R":[{"T":"into.%20Also%2C%20include%20a%20description%20of%20any%20tax%20result%20protection%20with%20respect%20to%20the%20transaction.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":15.046,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.046,"w":54.21299999999998,"clr":-1,"A":"left","R":[{"T":"Identify%20all%20individuals%20and%20entities%20involved%20in%20the%20transaction%20that%20are%20tax-exempt%2C%20foreign%2C%20or%20related.%20Check%20the%20appropria","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.383,"y":15.046,"w":6.759000000000002,"clr":-1,"A":"left","R":[{"T":"te%20box(es)%20(see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.896,"y":15.733,"w":54.39899999999996,"clr":-1,"A":"left","R":[{"T":"instructions).%20Include%20their%20name(s)%2C%20identifying%20number(s)%2C%20address(es)%2C%20and%20a%20brief%20description%20of%20their%20involvement.%20For%20eac","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.814,"y":15.733,"w":7.205000000000002,"clr":-1,"A":"left","R":[{"T":"h%20foreign%20entity%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.891,"y":16.421,"w":53.52399999999996,"clr":-1,"A":"left","R":[{"T":"identify%20its%20country%20of%20incorporation%20or%20existence.%20For%20each%20individual%20or%20related%20entity%2C%20explain%20how%20the%20individual%20or%20entity","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.674,"y":16.421,"w":8.094000000000001,"clr":-1,"A":"left","R":[{"T":"%20is%20related.%20Attach%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.894,"y":17.108,"w":13.761000000000006,"clr":-1,"A":"left","R":[{"T":"additional%20sheets%2C%20if%20necessary.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.643,"y":17.858,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.894,"y":17.858,"w":12.317000000000002,"clr":-1,"A":"left","R":[{"T":"Type%20of%20individual%20or%20entity%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.783,"y":17.858,"w":5.649000000000001,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":48.633,"y":17.858,"w":3.648,"clr":-1,"A":"left","R":[{"T":"Foreign%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.771,"y":17.858,"w":3.7039999999999997,"clr":-1,"A":"left","R":[{"T":"Related%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":18.546,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.402,"y":18.626,"w":8.336,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":20.046,"w":3.982,"clr":-1,"A":"left","R":[{"T":"Address%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":21.546,"w":5.371,"clr":-1,"A":"left","R":[{"T":"Description%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.613,"y":28.358,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.889,"y":28.358,"w":12.595,"clr":-1,"A":"left","R":[{"T":"Type%20of%20individual%20or%20%20entity%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.783,"y":28.358,"w":5.649000000000001,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":48.633,"y":28.358,"w":3.648,"clr":-1,"A":"left","R":[{"T":"Foreign%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.771,"y":28.358,"w":3.7039999999999997,"clr":-1,"A":"left","R":[{"T":"Related%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.046,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.402,"y":29.108,"w":8.336,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.546,"w":3.982,"clr":-1,"A":"left","R":[{"T":"Address%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":32.045,"w":5.371,"clr":-1,"A":"left","R":[{"T":"Description%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.246,"y":47.303,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.389,"y":47.303,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8886","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.211,"y":47.303,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%203-2011)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":6580,"AM":1024,"x":20.567,"y":2.127,"w":39.632,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"EIN2","EN":0},"TI":6581,"AM":1024,"x":80.632,"y":2.166,"w":13.054,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHER","EN":0},"TI":6592,"AM":0,"x":58.637,"y":6.022,"w":26.909,"h":0.833,"TU":"Line 7a. Other description."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8TXT","EN":0},"TI":6593,"AM":0,"x":6.146,"y":9.772,"w":92.916,"h":0.833,"TU":"Line 7b Description."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_NAME3_1_","EN":0},"TI":6597,"AM":0,"x":6.229,"y":19.437,"w":70.841,"h":0.833,"TU":"Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_IDNO3_1_","EN":0},"TI":6598,"AM":0,"x":78.599,"y":19.501,"w":20.401,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_ADDR3_1_","EN":0},"TI":6599,"AM":0,"x":6.146,"y":21.022,"w":48.37,"h":0.833,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_CITY8_1_","EN":0},"TI":6600,"AM":0,"x":56.102,"y":20.982,"w":20.699,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_ST8_1_","EN":0},"TI":6601,"AM":0,"x":78.496,"y":20.94,"w":5.025,"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":"A77_ZIP8_1_","EN":0},"TI":6602,"AM":0,"x":88.044,"y":20.941,"w":10.883,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ARRAY_L8ATXT_1_","EN":0},"TI":6603,"AM":0,"x":6.146,"y":22.522,"w":92.916,"h":0.833,"TU":"Description."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_NAME3_2_","EN":0},"TI":6607,"AM":0,"x":6.287,"y":29.925,"w":71.097,"h":0.844,"TU":"Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_IDNO3_2_","EN":0},"TI":6608,"AM":0,"x":78.455,"y":29.993,"w":20.529,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_ADDR3_2_","EN":0},"TI":6609,"AM":0,"x":6.205,"y":31.487,"w":48.37,"h":0.833,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_CITY8_2_","EN":0},"TI":6610,"AM":0,"x":56.161,"y":31.4,"w":20.186,"h":0.846,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A77_ST8_2_","EN":0},"TI":6611,"AM":0,"x":78.353,"y":31.455,"w":5.025,"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":"A77_ZIP8_2_","EN":0},"TI":6612,"AM":0,"x":88.102,"y":31.406,"w":10.883,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ARRAY_L8ATXT_2_","EN":0},"TI":6613,"AM":0,"x":6.324,"y":32.926,"w":92.916,"h":0.833,"TU":"Description."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEDX","EN":0},"TI":6582,"AM":0,"x":11.005,"y":4.446,"w":1.631,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EXCLX","EN":0},"TI":6583,"AM":0,"x":25.859,"y":4.425,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ABX","EN":0},"TI":6584,"AM":0,"x":51.875,"y":4.469,"w":1.8,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TCX","EN":0},"TI":6585,"AM":0,"x":80.059,"y":4.228,"w":2.305,"h":0.982}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLX","EN":0},"TI":6586,"AM":0,"x":11.027,"y":5.186,"w":1.688,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NONX","EN":0},"TI":6587,"AM":0,"x":25.855,"y":5.198,"w":1.8,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEFX","EN":0},"TI":6588,"AM":0,"x":51.846,"y":5.189,"w":1.744,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OLX","EN":0},"TI":6589,"AM":0,"x":10.895,"y":5.973,"w":1.8,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADJX","EN":0},"TI":6590,"AM":0,"x":25.79,"y":5.941,"w":1.912,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHX","EN":0},"TI":6591,"AM":0,"x":51.741,"y":5.954,"w":1.744,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXEXX","EN":0},"TI":6594,"AM":0,"x":32.16,"y":17.974,"w":1.521,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FOREIGNX","EN":0},"TI":6595,"AM":0,"x":47.046,"y":17.956,"w":1.521,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RELATEX","EN":0},"TI":6596,"AM":0,"x":58.181,"y":17.949,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"A77RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXEXX","EN":0},"TI":6604,"AM":0,"x":32.09,"y":28.462,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FOREIGNX","EN":0},"TI":6605,"AM":0,"x":47.04,"y":28.421,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RELATEX","EN":0},"TI":6606,"AM":0,"x":58.068,"y":28.413,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"A77RB_2_","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8888.content.txt b/test/data/fd/form/F8888.content.txt new file mode 100755 index 00000000..6cae463c --- /dev/null +++ b/test/data/fd/form/F8888.content.txt @@ -0,0 +1,119 @@ +Form +8888 +Department of the Treasury +Internal Revenue Service + Allocation of Refund (Including Savings Bond Purchases) +a +. + +a + Attach to your income tax return. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +56 +Name(s) shown on return +Your social security number +Part I +Direct Deposit +Complete this part if you want us to directly deposit a portion of your refund to one or more accounts. +1a +Amount to be deposited in first account (see instructions) +............. +1a +b +Routing number +a + +c +Checking +Savings +d +Account number +2 +a +Amount to be deposited in second account +.................. +2a +b +Routing number +a + +c +Checking +Savings +d +Account number +3 +a +Amount to be deposited in third account +................... +3a +b +Routing number +a + +c +Checking +Savings +d +Account number +Part II +U.S. Series I Savings Bond Purchases +Complete this part if you want to buy paper bonds with a portion of your refund. +F +! +CAUTION +If a name is entered on line 5c or 6c below, co-ownership will be assumed unless the beneficiary box is checked. +See instructions for more details. +4 +Amount to be used for bond purchases for yourself (and your spouse, if filing jointly) +.... +4 +5a +Amount to be used to buy bonds for yourself, your spouse, +or + someone else +....... +5a +b +Enter the owner's name (First then Last) for the bond registration +c +If you would like to add a co-owner or beneficiary, enter the name here (First then Last). If beneficiary, also check here +a +6a +Amount to be used to buy bonds for yourself, your spouse, +or + someone else +....... +6a +b +Enter the owner's name (First then Last) for the bond registration +c + +a +Part III +Paper Check +Complete this part if you want a portion of your refund to be sent to you as a check. +7 +Amount to be refunded by check +..................... +7 +Part IV +Total Allocation of Refund +8 + +Add lines 1a, 2a, 3a, 4, 5a, 6a, and 7. The total must equal the refund amount shown on your tax +return +.............................. +8 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 21858A +Form +8888 + (2013) + Information about Form 8888 and its instructions is at www.irs.gov/form8888 +If you would like to add a co-owner or beneficiary, enter the name here (First then Last). If beneficiary, also check here +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8888.fields.json b/test/data/fd/form/F8888.fields.json new file mode 100755 index 00000000..c00931d3 --- /dev/null +++ b/test/data/fd/form/F8888.fields.json @@ -0,0 +1 @@ +[{"id":"ACTYP1RB","type":"radio","calc":false,"value":"CK1"},{"id":"ACTYP1RB","type":"radio","calc":false,"value":"SAV1"},{"id":"ACTYP2RB","type":"radio","calc":false,"value":"CK2"},{"id":"ACTYP2RB","type":"radio","calc":false,"value":"SAV2"},{"id":"ACTYP3RB","type":"radio","calc":false,"value":"CK3"},{"id":"ACTYP3RB","type":"radio","calc":false,"value":"SAV3"},{"id":"COBENE1","type":"box","calc":false,"value":""},{"id":"COBENE2","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"AMT1","type":"number","calc":false,"value":""},{"id":"RTNO1","type":"mask","calc":false,"value":""},{"id":"ACCT1","type":"mask","calc":false,"value":""},{"id":"AMT2","type":"number","calc":false,"value":""},{"id":"RTNO2","type":"mask","calc":false,"value":""},{"id":"ACCT2","type":"mask","calc":false,"value":""},{"id":"AMT3","type":"number","calc":false,"value":""},{"id":"RTNO3","type":"mask","calc":false,"value":""},{"id":"ACCT3","type":"mask","calc":false,"value":""},{"id":"SELF","type":"number","calc":false,"value":""},{"id":"ALL1","type":"number","calc":false,"value":""},{"id":"OWNNAME1","type":"alpha","calc":false,"value":""},{"id":"CONAME1","type":"alpha","calc":false,"value":""},{"id":"ALL2","type":"number","calc":false,"value":""},{"id":"OWNNAME2","type":"alpha","calc":false,"value":""},{"id":"CONAME2","type":"alpha","calc":false,"value":""},{"id":"CHECKAMT","type":"number","calc":false,"value":""},{"id":"TOTAMT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8888.json b/test/data/fd/form/F8888.json new file mode 100755 index 00000000..c202c4e3 --- /dev/null +++ b/test/data/fd/form/F8888.json @@ -0,0 +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.641,"y":6.751,"w":1.125,"l":22.404},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":9.001,"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":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":4.211},{"oc":"#221f1f","x":6.147,"y":23.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":25.501,"w":1.125,"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":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":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":32.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":36.751,"w":1.125,"l":92.894},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":39.001,"w":1.125,"l":92.894},{"oc":"#221f1f","x":6.147,"y":39.751,"w":0.75,"l":92.894},{"oc":"#221f1f","x":79.159,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":41.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":41.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":41.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.822,"y":41.251,"w":1.5,"l":11.354},{"oc":"#231f20","x":24.838,"y":10.47,"w":1.5,"l":22.103},{"oc":"#231f20","x":24.838,"y":9.782,"w":1.5,"l":22.103},{"oc":"#231f20","x":24.838,"y":11.97,"w":1.5,"l":41.559},{"oc":"#231f20","x":24.838,"y":11.282,"w":1.5,"l":41.559},{"oc":"#231f20","x":24.838,"y":14.97,"w":1.5,"l":22.103},{"oc":"#231f20","x":24.838,"y":14.282,"w":1.5,"l":22.103},{"oc":"#231f20","x":24.838,"y":16.47,"w":1.5,"l":41.731},{"oc":"#231f20","x":24.838,"y":15.782,"w":1.5,"l":41.731},{"oc":"#231f20","x":24.838,"y":19.47,"w":1.5,"l":22.103},{"oc":"#231f20","x":24.838,"y":18.782,"w":1.5,"l":22.103},{"oc":"#231f20","x":24.838,"y":20.97,"w":1.5,"l":41.731},{"oc":"#231f20","x":24.838,"y":20.282,"w":1.5,"l":41.731},{"oc":"#231f20","x":11.349,"y":28.47,"w":1.5,"l":77.495},{"oc":"#231f20","x":11.349,"y":27.782,"w":1.5,"l":77.495},{"oc":"#231f20","x":11.349,"y":30.72,"w":1.5,"l":77.495},{"oc":"#231f20","x":11.349,"y":30.032,"w":1.5,"l":77.495},{"oc":"#231f20","x":11.349,"y":33.72,"w":1.5,"l":77.495},{"oc":"#231f20","x":11.349,"y":33.032,"w":1.5,"l":77.495},{"oc":"#231f20","x":11.349,"y":35.97,"w":1.5,"l":77.495},{"oc":"#231f20","x":11.349,"y":35.282,"w":1.5,"l":77.495}],"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.577},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":76.727,"y":5.22,"w":1.5,"l":1.555},{"oc":"#221f1f","x":82.915,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":3.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":95.29,"y":8.985,"w":0.75,"l":3.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":3.781},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"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":95.29,"y":13.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.788},{"oc":"#221f1f","x":82.915,"y":17.978,"w":0.75,"l":3.789},{"oc":"#221f1f","x":79.202,"y":17.978,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":3.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.789},{"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.789},{"oc":"#221f1f","x":82.915,"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":95.29,"y":31.485,"w":0.75,"l":0.788},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":40.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.789},{"oc":"#231f20","x":46.941,"y":9.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":24.838,"y":9.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":27.227,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":29.702,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.177,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.652,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.127,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.602,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":42.077,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.552,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.552,"y":9.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":66.397,"y":11.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":24.838,"y":11.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":27.207,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":29.662,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.116,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.571,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.026,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.481,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":41.935,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.39,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.845,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":49.3,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.755,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":54.209,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":56.664,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":59.119,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":61.574,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.029,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.029,"y":11.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.941,"y":14.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":24.838,"y":14.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":27.227,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":29.702,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.177,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.652,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.127,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.602,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":42.077,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.552,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.552,"y":14.313,"w":1.5,"l":0.656},{"oc":"#231f20","x":66.569,"y":15.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":24.838,"y":15.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":27.217,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":29.682,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.147,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.612,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.077,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.541,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":42.006,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.471,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.936,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":49.401,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.866,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":54.331,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":56.796,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":59.26,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":61.725,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.19,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.19,"y":15.813,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.941,"y":18.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":24.838,"y":18.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":27.227,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":29.702,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.177,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.652,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.127,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.602,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":42.077,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.552,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.552,"y":18.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":66.569,"y":20.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":24.838,"y":20.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":27.217,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":29.682,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.147,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.612,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.077,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.541,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":42.006,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.471,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.936,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":49.401,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.866,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":54.331,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":56.796,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":59.26,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":61.725,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.19,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":64.19,"y":20.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":88.844,"y":27.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":11.349,"y":27.782,"w":1.5,"l":0.687},{"oc":"#231f20","x":13.617,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":15.97,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":18.324,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":20.677,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":23.031,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":25.384,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":27.738,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":30.092,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.445,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.799,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.152,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.506,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":41.859,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.213,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.566,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.92,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.273,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.627,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.98,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.334,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.688,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":63.041,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.395,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.748,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":70.102,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":72.455,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":74.809,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":77.162,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":79.516,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":81.869,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":84.223,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":27.814,"w":1.5,"l":0.656},{"oc":"#231f20","x":88.844,"y":30.032,"w":1.5,"l":0.687},{"oc":"#231f20","x":11.349,"y":30.032,"w":1.5,"l":0.687},{"oc":"#231f20","x":13.617,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":15.97,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":18.324,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":20.677,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":23.031,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":25.384,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":27.738,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":30.092,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.445,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.799,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.152,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.506,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":41.859,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.213,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.566,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.92,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.273,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.627,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.98,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.334,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.688,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":63.041,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.395,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.748,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":70.102,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":72.455,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":74.809,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":77.162,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":79.516,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":81.869,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":84.223,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":30.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":88.844,"y":33.032,"w":1.5,"l":0.687},{"oc":"#231f20","x":11.349,"y":33.032,"w":1.5,"l":0.687},{"oc":"#231f20","x":13.617,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":15.97,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":18.324,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":20.677,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":23.031,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":25.384,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":27.738,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":30.092,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.445,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.799,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.152,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.506,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":41.859,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.213,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.566,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.92,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.273,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.627,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.98,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.334,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.688,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":63.041,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.395,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.748,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":70.102,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":72.455,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":74.809,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":77.162,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":79.516,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":81.869,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":84.223,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":33.064,"w":1.5,"l":0.656},{"oc":"#231f20","x":88.844,"y":35.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":11.349,"y":35.282,"w":1.5,"l":0.687},{"oc":"#231f20","x":13.617,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":15.97,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":18.324,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":20.677,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":23.031,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":25.384,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":27.738,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":30.092,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":32.445,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":34.799,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":37.152,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":39.506,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":41.859,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":44.213,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":46.566,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.92,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":51.273,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.627,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.98,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.334,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.688,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":63.041,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.395,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.748,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":70.102,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":72.455,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":74.809,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":77.162,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":79.516,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":81.869,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":84.223,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":35.314,"w":1.5,"l":0.656},{"oc":"#231f20","x":86.576,"y":35.314,"w":1.5,"l":0.656}],"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":79.202,"y":9.001,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":13.501,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":18.001,"w":3.713,"h":3.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":21.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":23.251,"w":4.125,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":36.751,"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":79.202,"y":39.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.935,"w":1.313,"h":0.502,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"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.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8888","S":-1,"TS":[0,25.84,1,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.65,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.65,0,0]}]},{"oc":"#221f1f","x":21.282,"y":2.244,"w":27.727000000000015,"clr":-1,"A":"left","R":[{"T":"%20Allocation%20of%20Refund%20(Including%20Savings%20Bond%20Purchases)","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":26.342,"y":3.04,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.969,"y":3.134,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.817,"y":3.9779999999999998,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":41.848,"y":4.071,"w":16.003000000000004,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20income%20tax%20return.","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.385,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.657,"y":3.385,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8760000000000003,"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.353,"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.353,"w":1.112,"clr":-1,"A":"left","R":[{"T":"56","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.911,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"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.189,"y":6.572,"w":6.779,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.19,"y":7.295,"w":45.41599999999997,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20want%20us%20to%20directly%20deposit%20a%20portion%20of%20your%20refund%20to%20one%20or%20more%20accounts.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":25.54300000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20deposited%20in%20first%20account%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":8.09,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":9.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.559,"w":7.188000000000001,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.038,"y":9.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.578,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.789,"y":9.59,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.927,"y":9.59,"w":3.537,"clr":-1,"A":"left","R":[{"T":"Savings","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.059,"w":7.429,"clr":-1,"A":"left","R":[{"T":"Account%20number","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":8.415,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":19.340000000000007,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20deposited%20in%20second%20account","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":12.59,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":12.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":14.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.059,"w":7.188000000000001,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.038,"y":13.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.578,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.789,"y":14.09,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.927,"y":14.09,"w":3.537,"clr":-1,"A":"left","R":[{"T":"Savings","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":15.59,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.559000000000001,"w":7.429,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":18.06200000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20deposited%20in%20third%20account","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":17.09,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":17.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"3a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":18.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.559,"w":7.188000000000001,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.038,"y":18.496,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.578,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.789,"y":18.59,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.927,"y":18.59,"w":3.537,"clr":-1,"A":"left","R":[{"T":"Savings","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.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":20.059,"w":7.429,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":21.572,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":21.572,"w":18.06300000000001,"clr":-1,"A":"left","R":[{"T":"U.S.%20Series%20I%20Savings%20Bond%20Purchases","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.19,"y":22.296,"w":35.691999999999986,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20want%20to%20buy%20paper%20bonds%20with%20a%20portion%20of%20your%20refund.","S":-1,"TS":[0,11,0,0]}]},{"x":6.07,"y":23.555,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,28.2001,0,0]}]},{"oc":"#221f1f","x":7.604,"y":23.482,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,17.5,0,0]}]},{"x":6.148,"y":23.858,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":11.096,"y":23.084,"w":50.93199999999999,"clr":-1,"A":"left","R":[{"T":"If%20a%20name%20is%20entered%20on%20line%205c%20or%206c%20below%2C%20co-ownership%20will%20be%20assumed%20unless%20the%20beneficiary%20box%20is%20checked.%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.096,"y":23.709,"w":14.648000000000003,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20more%20details.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":37.41399999999999,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20used%20for%20bond%20purchases%20for%20yourself%20(and%20your%20spouse%2C%20if%20filing%20jointly)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":24.59,"w":5.332,"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":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":26.618999999999996,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20used%20to%20buy%20bonds%20for%20yourself%2C%20your%20spouse%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.253,"y":26.09,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.8,"y":26.09,"w":6.483,"clr":-1,"A":"left","R":[{"T":"%20someone%20else","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":26.09,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"5a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":26.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":28.838000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20owner's%20name%20(First%20then%20Last)%20for%20the%20bond%20registration","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":29.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":52.89499999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20would%20like%20to%20add%20a%20co-owner%20or%20beneficiary%2C%20enter%20the%20name%20here%20(First%20then%20Last).%20If%20beneficiary%2C%20also%20check%20here%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":88.617,"y":28.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":26.618999999999996,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20used%20to%20buy%20bonds%20for%20yourself%2C%20your%20spouse%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.253,"y":31.340000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.8,"y":31.340000000000003,"w":6.483,"clr":-1,"A":"left","R":[{"T":"%20someone%20else","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":31.340000000000003,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"6a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":32.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":28.838000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20owner's%20name%20(First%20then%20Last)%20for%20the%20bond%20registration","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":34.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.656,"y":34.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":6.331,"y":36.572,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":36.572,"w":6.058,"clr":-1,"A":"left","R":[{"T":"Paper%20Check","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.19,"y":37.295,"w":37.43399999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20want%20a%20portion%20of%20your%20refund%20to%20be%20sent%20to%20you%20as%20a%20check.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":38.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":14.969000000000008,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20refunded%20by%20check%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":38.09,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":38.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":38.822,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":38.822,"w":12.445000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Allocation%20of%20Refund","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":39.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.021,"y":39.653,"w":43.293999999999976,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201a%2C%202a%2C%203a%2C%204%2C%205a%2C%206a%2C%20and%207.%20The%20total%20must%20equal%20the%20refund%20amount%20shown%20on%20your%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.023,"y":40.34,"w":2.6300000000000003,"clr":-1,"A":"left","R":[{"T":"return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.254,"y":40.34,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":40.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.108,"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.213,"y":41.126,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2021858A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.284,"y":41.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.426,"y":41.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8888","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.249,"y":41.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.373,"y":3.134,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208888%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8888","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":52.61699999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20would%20like%20to%20add%20a%20co-owner%20or%20beneficiary%2C%20enter%20the%20name%20here%20(First%20then%20Last).%20If%20beneficiary%2C%20also%20check%20here","S":-1,"TS":[0,11.55,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6614,"AM":1024,"x":6.188,"y":5.875,"w":70.313,"h":0.834,"TU":"Page 1. Name (or Names) shown on return."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6615,"AM":1024,"x":76.988,"y":5.902,"w":21.937,"h":0.834,"TU":"Your social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1","EN":0},"TI":6616,"AM":0,"x":82.912,"y":8.25,"w":12.375,"h":0.833,"TU":"Line 1a. Amount to be deposited in first account. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTNO1","EN":0},"TI":6617,"AM":0,"x":24.814,"y":9.727,"w":22.275,"h":0.833,"TU":"Line 1b. Routing number. 9 digits.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCT1","EN":0},"TI":6620,"AM":0,"x":24.814,"y":11.25,"w":41.731,"h":0.833,"TU":"Line 1d. Account number. 17 digits.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2","EN":0},"TI":6621,"AM":0,"x":82.912,"y":12.75,"w":12.375,"h":0.833,"TU":"Line 2a. Amount to be deposited in second account. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTNO2","EN":0},"TI":6622,"AM":0,"x":24.635,"y":14.176,"w":22.275,"h":0.833,"TU":"Line 1b. Routing number. 9 digits.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCT2","EN":0},"TI":6625,"AM":0,"x":24.75,"y":15.75,"w":41.903,"h":0.833,"TU":"Line 2d. Account number. 17 digits.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT3","EN":0},"TI":6626,"AM":0,"x":82.912,"y":17.25,"w":12.375,"h":0.833,"TU":"Line 3a. Amount to be deposited in third account. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTNO3","EN":0},"TI":6627,"AM":0,"x":24.75,"y":18.75,"w":22.275,"h":0.833,"TU":"Line 3b. Routing number. 9 digits.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCT3","EN":0},"TI":6630,"AM":0,"x":24.75,"y":20.25,"w":41.903,"h":0.833,"TU":"Line 3d. Account number. 17 digits.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SELF","EN":0},"TI":6631,"AM":0,"x":82.838,"y":24.723,"w":12.375,"h":0.833,"TU":"Line 4. Amount to be used for bond purchases for yourself (and your spouse, if filing jointly). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALL1","EN":0},"TI":6632,"AM":0,"x":82.912,"y":26.25,"w":12.375,"h":0.833,"TU":"Line 5a. Amount to be used to buy bonds for yourself, your spouse, or someone else. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OWNNAME1","EN":0},"TI":6633,"AM":0,"x":11.261,"y":27.75,"w":77.667,"h":0.833,"TU":"Line 5b. Enter the owner's name (First then Last) for the bond registration."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CONAME1","EN":0},"TI":6635,"AM":0,"x":11.261,"y":30,"w":77.667,"h":0.833,"TU":"Line 5c. If you would like to add a co-owner or beneficiary, enter the name here (First then Last)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALL2","EN":0},"TI":6636,"AM":0,"x":82.912,"y":31.539,"w":12.375,"h":0.833,"TU":"Line 6a. Amount to be used to buy bonds for yourself, your spouse, or someone else. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OWNNAME2","EN":0},"TI":6637,"AM":0,"x":11.261,"y":33,"w":77.667,"h":0.833,"TU":"Line 6b. Enter the owner's name (First then Last) for the bond registration."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CONAME2","EN":0},"TI":6639,"AM":0,"x":11.261,"y":35.25,"w":77.667,"h":0.833,"TU":"Line 6c. If you would like to add a co-owner or beneficiary, enter the name here (First then Last). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHECKAMT","EN":0},"TI":6640,"AM":0,"x":82.912,"y":38.25,"w":12.375,"h":0.833,"TU":"Line 7. Amount to be refunded by check. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAMT","EN":0},"TI":6641,"AM":1024,"x":82.912,"y":40.5,"w":12.375,"h":0.833,"TU":"Part 4. Total Allocation of Refund. Line 8. Add lines 1a, 2a, 3a, 4, 5a, 6a, and 7. The total must equal the refund amount shown on your tax return. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CK1","EN":0},"TI":6618,"AM":0,"x":51.764,"y":9.754,"w":1.625,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SAV1","EN":0},"TI":6619,"AM":0,"x":63.106,"y":9.756,"w":1.432,"h":0.833,"checked":false}],"id":{"Id":"ACTYP1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CK2","EN":0},"TI":6623,"AM":0,"x":51.866,"y":14.227,"w":1.486,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SAV2","EN":0},"TI":6624,"AM":0,"x":63.011,"y":14.187,"w":1.656,"h":0.833,"checked":false}],"id":{"Id":"ACTYP2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CK3","EN":0},"TI":6628,"AM":0,"x":51.845,"y":18.731,"w":1.486,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SAV3","EN":0},"TI":6629,"AM":0,"x":62.991,"y":18.698,"w":1.506,"h":0.833,"checked":false}],"id":{"Id":"ACTYP3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COBENE1","EN":0},"TI":6634,"AM":0,"x":91.919,"y":29.25,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COBENE2","EN":0},"TI":6638,"AM":0,"x":91.919,"y":34.5,"w":1.375,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8889S.content.txt b/test/data/fd/form/F8889S.content.txt new file mode 100755 index 00000000..c347cb9c --- /dev/null +++ b/test/data/fd/form/F8889S.content.txt @@ -0,0 +1,222 @@ +Form +8889 +Department of the Treasury +Internal Revenue Service +a + + +a + +Attach to Form 1040 or Form 1040NR. + + + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +53 +Health Savings Accounts (HSAs) +Name(s) shown on Form 1040 or Form 1040NR +Social security number of HSA +beneficiary. If both spouses have +HSAs, see instructions +a +Before you begin: +Complete Form 8853, Archer MSAs and Long-Term Care Insurance Contracts, if required. +Part I +HSA Contributions and Deduction. +See the instructions before completing this part. If you are filing jointly +and both you and your spouse each have separate HSAs, complete a separate Part I for each spouse. +1 + +Check the box to indicate your coverage under a high-deductible health plan (HDHP) during +2013 (see instructions) +........................ +a +Self-only +Family +2 + + +HSA contributions you made for 2013 (or those made on your behalf), including those made +Do not +contributions, contributions through a cafeteria plan, or rollovers (see instructions) +..... +2 +3 + + +If you were under age 55 at the end of 2013, and on the first day of +every +month during 2013, +same +All others, +.... +3 +4 + + +Enter the amount you and your employer contributed to your Archer MSAs for 2013 from Form +8853, lines 1 and 2. If you or your spouse had family coverage under an HDHP at any time +during 2013, also include any amount contributed to your spouse’s Archer MSAs +..... +4 +5 +Subtract line 4 from line 3. If zero or less, enter -0- +............... +5 +6 + + +Enter the amount from line 5. But if you and your spouse each have separate HSAs and had +family coverage under an HDHP at any time during 2013, see the instructions for the amount to +enter +.............................. +6 +7 + + +If you were age 55 or older at the end of 2013, married, and you or your spouse had family +coverage under an HDHP at any time during 2013, enter your additional contribution amount +(see instructions) +.......................... +7 +8 +Add lines 6 and 7 +.......................... +8 +9 +Employer contributions made to your HSAs for 2013 +.... +9 +10 +Qualified HSA funding distributions +.......... +10 +11 +Add lines 9 and 10 +.......................... +11 +12 +Subtract line 11 from line 8. If zero or less, enter -0- +............... +12 +13 + +1040NR, line 25 +........................... +13 +Caution: +If line 2 is more than line 13, you may have to pay an additional tax (see instructions). +Part II +HSA Distributions. +If you are filing jointly and both you and your spouse each have separate HSAs, complete +a separate Part II for each spouse. +14a +Total distributions you received in 2013 from all HSAs (see instructions) +........ +14a +b + + +Distributions included on line 14a that you rolled over to another HSA. Also include any excess +contributions (and the earnings on those excess contributions) included on line 14a that were +withdrawn by the due date of your return (see instructions) +............ +14b +c +Subtract line 14b from line 14a +...................... +14c +15 +Unreimbursed qualified medical expenses (see instructions) +............ +15 +16 + + +Taxable HSA distributions. +Subtract line 15 from line 14c. If zero or less, enter -0-. Also, +include this amount in the total on Form 1040, line 21, or Form 1040NR, line 21. On the dotted +line next to line 21, enter “HSA” and the amount +................ +16 +17 + +a + +If any of the distributions included on line 16 meet any of the +Exceptions to the Additional +20% Tax +(see instructions), check here +................. +a +b + + + +Additional 20% tax + + +line 60, or Form 1040NR, line 59. On the dotted line next to Form 1040, line 60, or Form +1040NR, line 59, enter “HSA” and the amount +................. +17b +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 37621P +Form +8889 + (2013) +(see instructions). Enter 20% (.20) of the distributions included on line 16 +that are subject to the additional 20% tax. Also include this amount in the total on Form 1040, +Information about Form 8889 and its separate instructions is available at www.irs.gov/form8889. +from January 1, 2014, through April 15, 2014, that were for 2013. + +include employer +you were, or were considered, an eligible individual with the + +coverage, enter $3,250 +($6,450 for family coverage). + +see the instructions for the amount to enter +HSA deduction. smaller Enter the of line 2 or line 12 here and on Form 1040, line 25, or Form +----------------Page (0) Break---------------- +Form 8889 (2013) +Page +2 +Part III +Income and Additional Tax for Failure To Maintain HDHP Coverage. + +completing this part. If you are filing jointly and both you and your spouse each have separate HSAs, +complete a separate Part III for each spouse. +18 +18 +19 +Last-month rule +........................... +19 +20 +Qualified HSA funding distribution +..................... +20 +21 + + +Total income. +Add lines 18 and 19. Include this amount on Form 1040, line 21, or Form +1040NR, line 21. On the dotted line next to Form 1040, line 21, or Form 1040NR, line 21, enter +“HSA” and the amount +........................ +21 +Additional tax. +Multiply line 20 by 10% (.10). Include this amount in the total on Form 1040, line +60, or Form 1040NR, line 59. On the dotted line next to Form 1040, line 60, or Form 1040NR, +line 59, enter “HDHP” and the amount +................... +Form +8889 + (2013) +See the instructions before +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8889S.fields.json b/test/data/fd/form/F8889S.fields.json new file mode 100755 index 00000000..6ac8225f --- /dev/null +++ b/test/data/fd/form/F8889S.fields.json @@ -0,0 +1 @@ +[{"id":"COVBXRB","type":"radio","calc":false,"value":"SELF"},{"id":"COVBXRB","type":"radio","calc":false,"value":"FMLY"},{"id":"EXCEPTN","type":"box","calc":false,"value":""},{"id":"STMT","type":"alpha","calc":true,"value":""},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"QHSA","type":"number","calc":false,"value":""},{"id":"HSATOT","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12A","type":"number","calc":false,"value":""},{"id":"L12B","type":"number","calc":false,"value":""},{"id":"L12C","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"PYCOVG","type":"number","calc":false,"value":""},{"id":"QHSAFUND","type":"number","calc":false,"value":""},{"id":"TOTINC","type":"number","calc":true,"value":""},{"id":"ADDLX","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8889S.json b/test/data/fd/form/F8889S.json new file mode 100755 index 00000000..491efb5e --- /dev/null +++ b/test/data/fd/form/F8889S.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8889","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.101,"y":5.267,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.951,"y":5.267,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.021,"y":3.017,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.021,"y":5.267,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":53.299},{"oc":"#221f1f","x":59.338,"y":6.751,"w":1.125,"l":39.708},{"oc":"#221f1f","x":6.147,"y":8.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":8.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.221,"y":11.266,"w":0.75,"l":18.159},{"oc":"#221f1f","x":79.159,"y":13.501,"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":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":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.001,"w":1.125,"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":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":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":59.359,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":25.501,"w":1.125,"l":3.798},{"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":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":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":6.147,"y":29.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":29.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":92.899},{"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":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":79.159,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":34.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":35.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":35.251,"w":1.125,"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":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":42.001,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.822,"y":42.001,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":20.994,"y":2.251,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.107,"y":2.251,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.107,"y":3.001,"w":1.5,"l":2.281},{"oc":"#221f1f","x":59.402,"y":5.235,"w":1.125,"l":1.539},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":1.531},{"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":2.281},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":1.531},{"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":2.289},{"oc":"#221f1f","x":79.202,"y":15.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.789},{"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":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.531},{"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.289},{"oc":"#221f1f","x":79.202,"y":20.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":1.531},{"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":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":63.115,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":23.985,"w":0.75,"l":0.781},{"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":63.115,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":1.531},{"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":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":1.531},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":1.531},{"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":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":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":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.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.202,"y":31.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":1.531},{"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":0.789},{"oc":"#221f1f","x":79.202,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":35.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":37.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":37.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":8.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":24.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":28.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":28.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":28.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":29.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":37.501,"w":3.713,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.894,"y":2.65,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.036,"y":2.65,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8889","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.894,"y":3.792,"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.894,"y":4.292,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":22.382,"y":3.428,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.326,"y":4.117,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.596,"y":4.211,"w":21.50699999999999,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.697,"y":1.9889999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.813,"y":3.3470000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.611,"y":3.3470000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.919,"y":3.9349999999999996,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.919,"y":4.381,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.897,"y":4.381,"w":1.112,"clr":-1,"A":"left","R":[{"T":"53","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":34.638,"y":2.517,"w":15.892,"clr":-1,"A":"left","R":[{"T":"Health%20Savings%20Accounts%20(HSAs)%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.026,"w":21.395000000000007,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040%20or%20Form%201040NR%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":4.904,"w":14.224000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20HSA%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":5.372,"w":15.577000000000007,"clr":-1,"A":"left","R":[{"T":"beneficiary.%20If%20both%20spouses%20have%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":5.841,"w":10.668000000000003,"clr":-1,"A":"left","R":[{"T":"HSAs%2C%20see%20instructions%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.675,"y":5.779,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.916,"w":8.779,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.589,"y":6.916,"w":40.43499999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20Form%208853%2C%20Archer%20MSAs%20and%20Long-Term%20Care%20Insurance%20Contracts%2C%20if%20required.%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.838,"y":8.072,"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":8.072,"w":16.723000000000003,"clr":-1,"A":"left","R":[{"T":"HSA%20Contributions%20and%20Deduction.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":42.021,"y":8.072,"w":31.44900000000001,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20before%20completing%20this%20part.%20If%20you%20are%20filing%20jointly%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":8.822,"w":45.84299999999997,"clr":-1,"A":"left","R":[{"T":"and%20both%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%2C%20complete%20a%20separate%20Part%20I%20for%20each%20spouse.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.653,"w":41.248999999999995,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20to%20indicate%20your%20coverage%20under%20a%20high-deductible%20health%20plan%20(HDHP)%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":10.351,"w":10.058,"clr":-1,"A":"left","R":[{"T":"2013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.559,"y":10.351,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.477,"y":10.257,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.427,"y":10.189,"w":4.222,"clr":-1,"A":"left","R":[{"T":"Self-only%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.319,"y":10.184,"w":3.1860000000000004,"clr":-1,"A":"left","R":[{"T":"Family%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.215,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.215,"w":41.47499999999998,"clr":-1,"A":"left","R":[{"T":"HSA%20contributions%20you%20made%20for%202013%20(or%20those%20made%20on%20your%20behalf)%2C%20including%20%20those%20made%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.283,"y":11.902,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":12.59,"w":36.50399999999998,"clr":-1,"A":"left","R":[{"T":"contributions%2C%20contributions%20through%20a%20cafeteria%20plan%2C%20or%20rollovers%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.817,"y":12.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"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.465,"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.465,"w":30.119,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20under%20age%2055%20at%20the%20end%20of%202013%2C%20and%20on%20the%20first%20day%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.637,"y":13.465,"w":2.8910000000000005,"clr":-1,"A":"left","R":[{"T":"every%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.822,"y":13.465,"w":9.024000000000003,"clr":-1,"A":"left","R":[{"T":"month%20during%202013%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.952,"y":14.152,"w":2.869,"clr":-1,"A":"left","R":[{"T":"same%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.203,"y":14.84,"w":4.813000000000001,"clr":-1,"A":"left","R":[{"T":"All%20others%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.88,"y":14.84,"w":5.332,"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":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.715,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.715,"w":42.43799999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20you%20and%20your%20employer%20contributed%20to%20your%20Archer%20MSAs%20for%202013%20from%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":16.402,"w":40.214999999999996,"clr":-1,"A":"left","R":[{"T":"8853%2C%20lines%201%20and%202.%20If%20you%20or%20your%20spouse%20had%20family%20coverage%20under%20an%20HDHP%20at%20any%20time","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.09,"w":36.34400000000001,"clr":-1,"A":"left","R":[{"T":"during%20%202013%2C%20also%20include%20any%20amount%20contributed%20to%20your%20spouse%E2%80%99s%20Archer%20MSAs","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.811,"y":17.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.09,"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":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":22.447000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":17.84,"w":19.994999999999997,"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":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.715,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.715,"w":41.27099999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%205.%20But%20if%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%20and%20had%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":19.402,"w":42.99399999999997,"clr":-1,"A":"left","R":[{"T":"family%20coverage%20under%20an%20HDHP%20at%20any%20time%20during%202013%2C%20see%20the%20instructions%20for%20the%20%20amount%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.09,"w":2.556,"clr":-1,"A":"left","R":[{"T":"enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":20.09,"w":39.989999999999974,"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":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.965,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.965,"w":40.60199999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20age%2055%20or%20older%20at%20the%20end%20of%202013%2C%20married%2C%20and%20you%20or%20your%20spouse%20had%20family%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":21.652,"w":42.10499999999997,"clr":-1,"A":"left","R":[{"T":"coverage%20under%20an%20HDHP%20at%20any%20time%20during%202013%2C%20enter%20your%20additional%20contribution%20amount%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":22.34,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.491,"y":22.34,"w":34.65799999999998,"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":"7%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":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":23.09,"w":34.65799999999998,"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":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":23.616999999999997,"clr":-1,"A":"left","R":[{"T":"Employer%20contributions%20made%20to%20your%20HSAs%20for%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":23.84,"w":5.332,"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":"9%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":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":15.650999999999996,"clr":-1,"A":"left","R":[{"T":"Qualified%20HSA%20funding%20distributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":24.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":8.337,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209%20and%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":25.34,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":25.34,"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.09,"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.09,"w":23.003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2011%20from%20line%208.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":26.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.897,"y":27.59,"w":7.392000000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2025%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.448,"y":27.59,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":27.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":28.34,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.163,"y":28.34,"w":37.78599999999999,"clr":-1,"A":"left","R":[{"T":"If%20line%202%20is%20more%20than%20line%2013%2C%20you%20may%20have%20to%20pay%20an%20additional%20tax%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":29.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":29.072,"w":9.112000000000002,"clr":-1,"A":"left","R":[{"T":"HSA%20Distributions.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":30.086,"y":29.072,"w":40.15599999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20filing%20jointly%20and%20both%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%2C%20complete%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.606,"y":29.822,"w":15.631000000000006,"clr":-1,"A":"left","R":[{"T":"a%20separate%20Part%20II%20for%20each%20spouse.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"14a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":32.04200000000001,"clr":-1,"A":"left","R":[{"T":"Total%20distributions%20you%20received%20in%202013%20from%20all%20HSAs%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":30.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":30.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"14a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":31.465000000000003,"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.465000000000003,"w":42.451999999999984,"clr":-1,"A":"left","R":[{"T":"Distributions%20included%20on%20line%2014a%20that%20you%20rolled%20over%20to%20another%20HSA.%20Also%20include%20any%20excess%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":32.152,"w":41.78599999999998,"clr":-1,"A":"left","R":[{"T":"contributions%20(and%20the%20earnings%20on%20those%20excess%20contributions)%20included%20on%20line%2014a%20that%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":32.84,"w":26.31800000000001,"clr":-1,"A":"left","R":[{"T":"withdrawn%20by%20the%20due%20date%20of%20your%20return%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.365,"y":32.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.476,"y":32.84,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"14b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":33.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":33.59,"w":13.708000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014b%20from%20line%2014a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":33.59,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":33.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"14c%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":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":26.838000000000005,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20qualified%20medical%20expenses%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":34.34,"w":15.996,"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":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.215,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.215,"w":13.003000000000004,"clr":-1,"A":"left","R":[{"T":"Taxable%20HSA%20distributions.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":28.448,"y":35.215,"w":27.152,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2014c.%20If%20zero%20or%20less%2C%20enter%20-0-.%20Also%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":35.903,"w":41.980999999999966,"clr":-1,"A":"left","R":[{"T":"include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2021%2C%20or%20Form%201040NR%2C%20line%2021.%20On%20the%20dotted","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":21.692000000000007,"clr":-1,"A":"left","R":[{"T":"line%20next%20to%20line%2021%2C%20enter%20%E2%80%9CHSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":36.59,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":37.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.403,"w":27.249000000000002,"clr":-1,"A":"left","R":[{"T":"If%20any%20of%20the%20distributions%20included%20on%20line%2016%20meet%20any%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.363,"y":37.403,"w":13.780000000000005,"clr":-1,"A":"left","R":[{"T":"Exceptions%20to%20the%20Additional%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":38.101,"w":4.280000000000001,"clr":-1,"A":"left","R":[{"T":"20%25%20Tax%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.648,"y":38.101,"w":13.039000000000007,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%2C%20check%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":38.101,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":38.007,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.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":39.027,"w":9.169000000000002,"clr":-1,"A":"left","R":[{"T":"Additional%2020%25%20tax%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.402,"w":39.01499999999999,"clr":-1,"A":"left","R":[{"T":"line%2060%2C%20or%20Form%201040NR%2C%20line%2059.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2060%2C%20or%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.089,"w":20.693000000000005,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2059%2C%20enter%20%E2%80%9CHSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":41.089,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.476,"y":41.09,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"17b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"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":65.213,"y":41.876,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037621P%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":41.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8889","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":41.822,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.504,"y":39.027,"w":32.63800000000002,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20Enter%2020%25%20(.20)%20of%20the%20distributions%20included%20on%20line%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":39.715,"w":42.08799999999997,"clr":-1,"A":"left","R":[{"T":"that%20are%20subject%20to%20the%20additional%2020%25%20tax.%20Also%20include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.702,"y":3.521,"w":44.67599999999999,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208889%20and%20its%20separate%20instructions%20is%20available%20at%20www.irs.gov%2Fform8889.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":10.896,"y":11.902,"w":30.345,"clr":-1,"A":"left","R":[{"T":"from%20January%201%2C%202014%2C%20through%20April%2015%2C%202014%2C%20that%20were%20for%202013.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.876,"y":11.902,"w":8.503000000000002,"clr":-1,"A":"left","R":[{"T":"include%20employer%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.152,"w":28.509999999999994,"clr":-1,"A":"left","R":[{"T":"you%20were%2C%20or%20were%20considered%2C%20an%20eligible%20individual%20with%20the","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.607,"y":14.152,"w":10.728000000000005,"clr":-1,"A":"left","R":[{"T":"coverage%2C%20enter%20%243%2C250","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.893,"y":14.84,"w":13.450000000000006,"clr":-1,"A":"left","R":[{"T":"(%246%2C450%20for%20family%20coverage).","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.91,"y":14.84,"w":20.67,"clr":-1,"A":"left","R":[{"T":"see%20the%20instructions%20for%20the%20amount%20to%20enter","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.903,"w":44.069999999999965,"clr":-1,"A":"left","R":[{"T":"HSA%20deduction.%20smaller%20Enter%20the%20of%20line%202%20or%20line%2012%20here%20and%20on%20Form%201040%2C%20line%2025%2C%20or%20Form%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":6642,"AM":1024,"x":21.787,"y":2.72,"w":8.683,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":6643,"AM":1024,"x":5.984,"y":5.822,"w":53.154,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6644,"AM":1024,"x":78.778,"y":5.886,"w":20.304,"h":0.841},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":6647,"AM":0,"x":83.119,"y":12.395,"w":11.983,"h":1.09},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":6648,"AM":0,"x":83.119,"y":14.734,"w":11.983,"h":1.001},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":6649,"AM":0,"x":83.119,"y":17.111,"w":11.983,"h":0.867},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":6650,"AM":1024,"x":83.016,"y":18.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":6651,"AM":0,"x":83.044,"y":20.074,"w":11.983,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":6652,"AM":0,"x":83.119,"y":22.271,"w":11.983,"h":0.956},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":6653,"AM":1024,"x":83.016,"y":23.295,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":6654,"AM":0,"x":63.161,"y":24.008,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QHSA","EN":0},"TI":6655,"AM":0,"x":63.141,"y":24.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSATOT","EN":0},"TI":6656,"AM":1024,"x":83.119,"y":25.262,"w":11.983,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":6657,"AM":1024,"x":83.016,"y":26.268,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":6658,"AM":1024,"x":83.098,"y":27.667,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":6659,"AM":0,"x":83.016,"y":30.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":6660,"AM":0,"x":83.119,"y":32.867,"w":11.983,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C","EN":0},"TI":6661,"AM":1024,"x":83.016,"y":33.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":6662,"AM":0,"x":83.016,"y":34.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":6663,"AM":1024,"x":83.119,"y":36.529,"w":11.983,"h":0.956},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":6665,"AM":0,"x":83.16,"y":40.76,"w":11.901,"h":1.21}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SELF","EN":0},"TI":6645,"AM":0,"x":79.159,"y":10.272,"w":2.138,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FMLY","EN":0},"TI":6646,"AM":0,"x":89.8,"y":10.349,"w":2.25,"h":0.833,"checked":false}],"id":{"Id":"COVBXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EXCEPTN","EN":0},"TI":6664,"AM":0,"x":76.595,"y":38.182,"w":1.485,"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":5.251,"w":0.75,"l":92.899},{"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":79.159,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.106,"y":10.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.847,"y":10.688,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":10.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":13.212,"w":1.5,"l":92.899}],"VLines":[{"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":95.29,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.861,"y":8.236,"w":0.75,"l":2.476},{"oc":"#221f1f","x":79.149,"y":8.236,"w":0.75,"l":2.476},{"oc":"#221f1f","x":95.29,"y":8.236,"w":0.75,"l":1.718},{"oc":"#221f1f","x":95.29,"y":9.923,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.861,"y":10.72,"w":0.75,"l":2.468},{"oc":"#221f1f","x":79.149,"y":10.72,"w":0.75,"l":2.468},{"oc":"#221f1f","x":95.29,"y":10.716,"w":0.75,"l":1.718},{"oc":"#221f1f","x":95.29,"y":12.407,"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}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208889%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]}]},{"x":6.331,"y":2.822,"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":2.822,"w":32.229000000000006,"clr":-1,"A":"left","R":[{"T":"Income%20and%20Additional%20Tax%20for%20Failure%20To%20Maintain%20HDHP%20Coverage.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":3.572,"w":45.175999999999995,"clr":-1,"A":"left","R":[{"T":"completing%20this%20part.%20If%20you%20are%20filing%20jointly%20and%20both%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":4.322,"w":20.336000000000002,"clr":-1,"A":"left","R":[{"T":"complete%20a%20separate%20Part%20III%20for%20each%20spouse.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.948,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.84,"w":7.355,"clr":-1,"A":"left","R":[{"T":"Last-month%20rule%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":5.84,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.835,"y":7.34,"w":15.428999999999997,"clr":-1,"A":"left","R":[{"T":"Qualified%20HSA%20funding%20distribution%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.814,"y":7.34,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.895,"y":9.778,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":10.886,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.34,"w":6.724,"clr":-1,"A":"left","R":[{"T":"Total%20income.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.073,"y":8.34,"w":32.60700000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2018%20and%2019.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2021%2C%20or%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":9.027,"w":42.23899999999998,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2021.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2021%2C%20or%20Form%201040NR%2C%20line%2021%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.715,"w":10.189000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CHSA%E2%80%9D%20and%20the%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":9.715,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.895,"y":12.262,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.836,"y":10.886,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.716,"y":10.886,"w":35.88500000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%2010%25%20(.10).%20Include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.842,"y":11.574,"w":41.664999999999985,"clr":-1,"A":"left","R":[{"T":"60%2C%20or%20Form%201040NR%2C%20line%2059.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2060%2C%20or%20Form%201040NR%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.85,"y":12.261,"w":17.006000000000007,"clr":-1,"A":"left","R":[{"T":"line%2059%2C%20enter%20%E2%80%9CHDHP%E2%80%9D%20and%20the%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.954,"y":12.261,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.154,"y":13.033,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":13.033,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8889","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":13.033,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.383,"y":2.822,"w":12.298000000000004,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20before%20","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":6666,"AM":1024,"x":15.89,"y":1.97,"w":54.435,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":6667,"AM":1024,"x":72.579,"y":1.999,"w":22.11,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYCOVG","EN":0},"TI":6668,"AM":0,"x":83.098,"y":5.854,"w":12.024,"h":0.881},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QHSAFUND","EN":0},"TI":6669,"AM":0,"x":83.098,"y":7.354,"w":12.024,"h":0.881},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTINC","EN":0},"TI":6670,"AM":1024,"x":83.119,"y":9.587,"w":11.942,"h":1.078},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDLX","EN":0},"TI":6671,"AM":1024,"x":83.119,"y":11.987,"w":11.942,"h":1.198}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8889T.content.txt b/test/data/fd/form/F8889T.content.txt new file mode 100755 index 00000000..c347cb9c --- /dev/null +++ b/test/data/fd/form/F8889T.content.txt @@ -0,0 +1,222 @@ +Form +8889 +Department of the Treasury +Internal Revenue Service +a + + +a + +Attach to Form 1040 or Form 1040NR. + + + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +53 +Health Savings Accounts (HSAs) +Name(s) shown on Form 1040 or Form 1040NR +Social security number of HSA +beneficiary. If both spouses have +HSAs, see instructions +a +Before you begin: +Complete Form 8853, Archer MSAs and Long-Term Care Insurance Contracts, if required. +Part I +HSA Contributions and Deduction. +See the instructions before completing this part. If you are filing jointly +and both you and your spouse each have separate HSAs, complete a separate Part I for each spouse. +1 + +Check the box to indicate your coverage under a high-deductible health plan (HDHP) during +2013 (see instructions) +........................ +a +Self-only +Family +2 + + +HSA contributions you made for 2013 (or those made on your behalf), including those made +Do not +contributions, contributions through a cafeteria plan, or rollovers (see instructions) +..... +2 +3 + + +If you were under age 55 at the end of 2013, and on the first day of +every +month during 2013, +same +All others, +.... +3 +4 + + +Enter the amount you and your employer contributed to your Archer MSAs for 2013 from Form +8853, lines 1 and 2. If you or your spouse had family coverage under an HDHP at any time +during 2013, also include any amount contributed to your spouse’s Archer MSAs +..... +4 +5 +Subtract line 4 from line 3. If zero or less, enter -0- +............... +5 +6 + + +Enter the amount from line 5. But if you and your spouse each have separate HSAs and had +family coverage under an HDHP at any time during 2013, see the instructions for the amount to +enter +.............................. +6 +7 + + +If you were age 55 or older at the end of 2013, married, and you or your spouse had family +coverage under an HDHP at any time during 2013, enter your additional contribution amount +(see instructions) +.......................... +7 +8 +Add lines 6 and 7 +.......................... +8 +9 +Employer contributions made to your HSAs for 2013 +.... +9 +10 +Qualified HSA funding distributions +.......... +10 +11 +Add lines 9 and 10 +.......................... +11 +12 +Subtract line 11 from line 8. If zero or less, enter -0- +............... +12 +13 + +1040NR, line 25 +........................... +13 +Caution: +If line 2 is more than line 13, you may have to pay an additional tax (see instructions). +Part II +HSA Distributions. +If you are filing jointly and both you and your spouse each have separate HSAs, complete +a separate Part II for each spouse. +14a +Total distributions you received in 2013 from all HSAs (see instructions) +........ +14a +b + + +Distributions included on line 14a that you rolled over to another HSA. Also include any excess +contributions (and the earnings on those excess contributions) included on line 14a that were +withdrawn by the due date of your return (see instructions) +............ +14b +c +Subtract line 14b from line 14a +...................... +14c +15 +Unreimbursed qualified medical expenses (see instructions) +............ +15 +16 + + +Taxable HSA distributions. +Subtract line 15 from line 14c. If zero or less, enter -0-. Also, +include this amount in the total on Form 1040, line 21, or Form 1040NR, line 21. On the dotted +line next to line 21, enter “HSA” and the amount +................ +16 +17 + +a + +If any of the distributions included on line 16 meet any of the +Exceptions to the Additional +20% Tax +(see instructions), check here +................. +a +b + + + +Additional 20% tax + + +line 60, or Form 1040NR, line 59. On the dotted line next to Form 1040, line 60, or Form +1040NR, line 59, enter “HSA” and the amount +................. +17b +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 37621P +Form +8889 + (2013) +(see instructions). Enter 20% (.20) of the distributions included on line 16 +that are subject to the additional 20% tax. Also include this amount in the total on Form 1040, +Information about Form 8889 and its separate instructions is available at www.irs.gov/form8889. +from January 1, 2014, through April 15, 2014, that were for 2013. + +include employer +you were, or were considered, an eligible individual with the + +coverage, enter $3,250 +($6,450 for family coverage). + +see the instructions for the amount to enter +HSA deduction. smaller Enter the of line 2 or line 12 here and on Form 1040, line 25, or Form +----------------Page (0) Break---------------- +Form 8889 (2013) +Page +2 +Part III +Income and Additional Tax for Failure To Maintain HDHP Coverage. + +completing this part. If you are filing jointly and both you and your spouse each have separate HSAs, +complete a separate Part III for each spouse. +18 +18 +19 +Last-month rule +........................... +19 +20 +Qualified HSA funding distribution +..................... +20 +21 + + +Total income. +Add lines 18 and 19. Include this amount on Form 1040, line 21, or Form +1040NR, line 21. On the dotted line next to Form 1040, line 21, or Form 1040NR, line 21, enter +“HSA” and the amount +........................ +21 +Additional tax. +Multiply line 20 by 10% (.10). Include this amount in the total on Form 1040, line +60, or Form 1040NR, line 59. On the dotted line next to Form 1040, line 60, or Form 1040NR, +line 59, enter “HDHP” and the amount +................... +Form +8889 + (2013) +See the instructions before +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8889T.fields.json b/test/data/fd/form/F8889T.fields.json new file mode 100755 index 00000000..6ac8225f --- /dev/null +++ b/test/data/fd/form/F8889T.fields.json @@ -0,0 +1 @@ +[{"id":"COVBXRB","type":"radio","calc":false,"value":"SELF"},{"id":"COVBXRB","type":"radio","calc":false,"value":"FMLY"},{"id":"EXCEPTN","type":"box","calc":false,"value":""},{"id":"STMT","type":"alpha","calc":true,"value":""},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"QHSA","type":"number","calc":false,"value":""},{"id":"HSATOT","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12A","type":"number","calc":false,"value":""},{"id":"L12B","type":"number","calc":false,"value":""},{"id":"L12C","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"PYCOVG","type":"number","calc":false,"value":""},{"id":"QHSAFUND","type":"number","calc":false,"value":""},{"id":"TOTINC","type":"number","calc":true,"value":""},{"id":"ADDLX","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8889T.json b/test/data/fd/form/F8889T.json new file mode 100755 index 00000000..0a26ed80 --- /dev/null +++ b/test/data/fd/form/F8889T.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8889","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.101,"y":5.267,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.951,"y":5.267,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.021,"y":3.017,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.021,"y":5.267,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":53.299},{"oc":"#221f1f","x":59.338,"y":6.751,"w":1.125,"l":39.708},{"oc":"#221f1f","x":6.147,"y":8.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":8.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.221,"y":11.266,"w":0.75,"l":18.159},{"oc":"#221f1f","x":79.159,"y":13.501,"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":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":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.001,"w":1.125,"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":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":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":59.359,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":25.501,"w":1.125,"l":3.798},{"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":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":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":6.147,"y":29.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":29.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":92.899},{"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":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":79.159,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":34.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":35.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":35.251,"w":1.125,"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":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":42.001,"w":1.5,"l":35.973},{"oc":"#221f1f","x":87.822,"y":42.001,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":20.994,"y":2.251,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.107,"y":2.251,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.107,"y":3.001,"w":1.5,"l":2.281},{"oc":"#221f1f","x":59.402,"y":5.235,"w":1.125,"l":1.539},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":11.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":1.531},{"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":2.281},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":1.531},{"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":2.289},{"oc":"#221f1f","x":79.202,"y":15.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.789},{"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":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.531},{"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.289},{"oc":"#221f1f","x":79.202,"y":20.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":1.531},{"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":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":63.115,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":23.985,"w":0.75,"l":0.781},{"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":63.115,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":1.531},{"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":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":1.531},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":1.531},{"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":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":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":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.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":79.202,"y":31.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":1.531},{"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":0.789},{"oc":"#221f1f","x":79.202,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":35.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":37.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":37.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":8.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":24.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":28.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":28.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":28.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":29.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":37.501,"w":3.713,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.894,"y":2.65,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.036,"y":2.65,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8889","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.894,"y":3.792,"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.894,"y":4.292,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":22.382,"y":3.428,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.326,"y":4.117,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.596,"y":4.211,"w":21.50699999999999,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.697,"y":1.9889999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.813,"y":3.3470000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.611,"y":3.3470000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.919,"y":3.9349999999999996,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.919,"y":4.381,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.897,"y":4.381,"w":1.112,"clr":-1,"A":"left","R":[{"T":"53","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":34.638,"y":2.517,"w":15.892,"clr":-1,"A":"left","R":[{"T":"Health%20Savings%20Accounts%20(HSAs)%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.026,"w":21.395000000000007,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040%20or%20Form%201040NR%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":4.904,"w":14.224000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20HSA%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":5.372,"w":15.577000000000007,"clr":-1,"A":"left","R":[{"T":"beneficiary.%20If%20both%20spouses%20have%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":5.841,"w":10.668000000000003,"clr":-1,"A":"left","R":[{"T":"HSAs%2C%20see%20instructions%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.675,"y":5.779,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.916,"w":8.779,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.589,"y":6.916,"w":40.43499999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20Form%208853%2C%20Archer%20MSAs%20and%20Long-Term%20Care%20Insurance%20Contracts%2C%20if%20required.%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.838,"y":8.072,"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":8.072,"w":16.723000000000003,"clr":-1,"A":"left","R":[{"T":"HSA%20Contributions%20and%20Deduction.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":42.021,"y":8.072,"w":31.44900000000001,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20before%20completing%20this%20part.%20If%20you%20are%20filing%20jointly%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":8.822,"w":45.84299999999997,"clr":-1,"A":"left","R":[{"T":"and%20both%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%2C%20complete%20a%20separate%20Part%20I%20for%20each%20spouse.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.653,"w":41.248999999999995,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20to%20indicate%20your%20coverage%20under%20a%20high-deductible%20health%20plan%20(HDHP)%20during%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":10.351,"w":10.058,"clr":-1,"A":"left","R":[{"T":"2013%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.559,"y":10.351,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.477,"y":10.257,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.427,"y":10.189,"w":4.222,"clr":-1,"A":"left","R":[{"T":"Self-only%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.319,"y":10.184,"w":3.1860000000000004,"clr":-1,"A":"left","R":[{"T":"Family%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.215,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.215,"w":41.47499999999998,"clr":-1,"A":"left","R":[{"T":"HSA%20contributions%20you%20made%20for%202013%20(or%20those%20made%20on%20your%20behalf)%2C%20including%20%20those%20made%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.283,"y":11.902,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":12.59,"w":36.50399999999998,"clr":-1,"A":"left","R":[{"T":"contributions%2C%20contributions%20through%20a%20cafeteria%20plan%2C%20or%20rollovers%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.817,"y":12.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"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.465,"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.465,"w":30.119,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20under%20age%2055%20at%20the%20end%20of%202013%2C%20and%20on%20the%20first%20day%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.637,"y":13.465,"w":2.8910000000000005,"clr":-1,"A":"left","R":[{"T":"every%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.822,"y":13.465,"w":9.024000000000003,"clr":-1,"A":"left","R":[{"T":"month%20during%202013%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.952,"y":14.152,"w":2.869,"clr":-1,"A":"left","R":[{"T":"same%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.203,"y":14.84,"w":4.813000000000001,"clr":-1,"A":"left","R":[{"T":"All%20others%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.88,"y":14.84,"w":5.332,"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":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.715,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.715,"w":42.43799999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20you%20and%20your%20employer%20contributed%20to%20your%20Archer%20MSAs%20for%202013%20from%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":16.402,"w":40.214999999999996,"clr":-1,"A":"left","R":[{"T":"8853%2C%20lines%201%20and%202.%20If%20you%20or%20your%20spouse%20had%20family%20coverage%20under%20an%20HDHP%20at%20any%20time","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.09,"w":36.34400000000001,"clr":-1,"A":"left","R":[{"T":"during%20%202013%2C%20also%20include%20any%20amount%20contributed%20to%20your%20spouse%E2%80%99s%20Archer%20MSAs","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.811,"y":17.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.09,"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":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":22.447000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":17.84,"w":19.994999999999997,"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":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.715,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.715,"w":41.27099999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%205.%20But%20if%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%20and%20had%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":19.402,"w":42.99399999999997,"clr":-1,"A":"left","R":[{"T":"family%20coverage%20under%20an%20HDHP%20at%20any%20time%20during%202013%2C%20see%20the%20instructions%20for%20the%20%20amount%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":20.09,"w":2.556,"clr":-1,"A":"left","R":[{"T":"enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":20.09,"w":39.989999999999974,"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":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.965,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.965,"w":40.60199999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20age%2055%20or%20older%20at%20the%20end%20of%202013%2C%20married%2C%20and%20you%20or%20your%20spouse%20had%20family%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":21.652,"w":42.10499999999997,"clr":-1,"A":"left","R":[{"T":"coverage%20under%20an%20HDHP%20at%20any%20time%20during%202013%2C%20enter%20your%20additional%20contribution%20amount%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":22.34,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.491,"y":22.34,"w":34.65799999999998,"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":"7%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":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":23.09,"w":34.65799999999998,"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":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":23.616999999999997,"clr":-1,"A":"left","R":[{"T":"Employer%20contributions%20made%20to%20your%20HSAs%20for%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":23.84,"w":5.332,"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":"9%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":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":15.650999999999996,"clr":-1,"A":"left","R":[{"T":"Qualified%20HSA%20funding%20distributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":24.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":8.337,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209%20and%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":25.34,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":25.34,"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.09,"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.09,"w":23.003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2011%20from%20line%208.%20If%20zero%20or%20less%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":26.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.897,"y":27.59,"w":7.392000000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2025%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.448,"y":27.59,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":27.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":28.34,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.163,"y":28.34,"w":37.78599999999999,"clr":-1,"A":"left","R":[{"T":"If%20line%202%20is%20more%20than%20line%2013%2C%20you%20may%20have%20to%20pay%20an%20additional%20tax%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":29.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":29.072,"w":9.112000000000002,"clr":-1,"A":"left","R":[{"T":"HSA%20Distributions.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":30.086,"y":29.072,"w":40.15599999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20filing%20jointly%20and%20both%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%2C%20complete%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.606,"y":29.822,"w":15.631000000000006,"clr":-1,"A":"left","R":[{"T":"a%20separate%20Part%20II%20for%20each%20spouse.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"14a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":32.04200000000001,"clr":-1,"A":"left","R":[{"T":"Total%20distributions%20you%20received%20in%202013%20from%20all%20HSAs%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":30.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":30.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"14a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":31.465000000000003,"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.465000000000003,"w":42.451999999999984,"clr":-1,"A":"left","R":[{"T":"Distributions%20included%20on%20line%2014a%20that%20you%20rolled%20over%20to%20another%20HSA.%20Also%20include%20any%20excess%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":32.152,"w":41.78599999999998,"clr":-1,"A":"left","R":[{"T":"contributions%20(and%20the%20earnings%20on%20those%20excess%20contributions)%20included%20on%20line%2014a%20that%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":32.84,"w":26.31800000000001,"clr":-1,"A":"left","R":[{"T":"withdrawn%20by%20the%20due%20date%20of%20your%20return%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.365,"y":32.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.476,"y":32.84,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"14b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":33.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":33.59,"w":13.708000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014b%20from%20line%2014a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":33.59,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":33.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"14c%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":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":26.838000000000005,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20qualified%20medical%20expenses%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":34.34,"w":15.996,"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":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.215,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.215,"w":13.003000000000004,"clr":-1,"A":"left","R":[{"T":"Taxable%20HSA%20distributions.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":28.448,"y":35.215,"w":27.152,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2014c.%20If%20zero%20or%20less%2C%20enter%20-0-.%20Also%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":35.903,"w":41.980999999999966,"clr":-1,"A":"left","R":[{"T":"include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%2021%2C%20or%20Form%201040NR%2C%20line%2021.%20On%20the%20dotted","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":21.692000000000007,"clr":-1,"A":"left","R":[{"T":"line%20next%20to%20line%2021%2C%20enter%20%E2%80%9CHSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":36.59,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":37.403,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.403,"w":27.249000000000002,"clr":-1,"A":"left","R":[{"T":"If%20any%20of%20the%20distributions%20included%20on%20line%2016%20meet%20any%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.363,"y":37.403,"w":13.780000000000005,"clr":-1,"A":"left","R":[{"T":"Exceptions%20to%20the%20Additional%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":38.101,"w":4.280000000000001,"clr":-1,"A":"left","R":[{"T":"20%25%20Tax%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.648,"y":38.101,"w":13.039000000000007,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%2C%20check%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":38.101,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":38.007,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.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":39.027,"w":9.169000000000002,"clr":-1,"A":"left","R":[{"T":"Additional%2020%25%20tax%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.402,"w":39.01499999999999,"clr":-1,"A":"left","R":[{"T":"line%2060%2C%20or%20Form%201040NR%2C%20line%2059.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2060%2C%20or%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.089,"w":20.693000000000005,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2059%2C%20enter%20%E2%80%9CHSA%E2%80%9D%20and%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":41.089,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.476,"y":41.09,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"17b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"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":65.213,"y":41.876,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037621P%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":41.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8889","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":41.822,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.504,"y":39.027,"w":32.63800000000002,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20Enter%2020%25%20(.20)%20of%20the%20distributions%20included%20on%20line%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":39.715,"w":42.08799999999997,"clr":-1,"A":"left","R":[{"T":"that%20are%20subject%20to%20the%20additional%2020%25%20tax.%20Also%20include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.702,"y":3.521,"w":44.67599999999999,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208889%20and%20its%20separate%20instructions%20is%20available%20at%20www.irs.gov%2Fform8889.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":10.896,"y":11.902,"w":30.345,"clr":-1,"A":"left","R":[{"T":"from%20January%201%2C%202014%2C%20through%20April%2015%2C%202014%2C%20that%20were%20for%202013.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.876,"y":11.902,"w":8.503000000000002,"clr":-1,"A":"left","R":[{"T":"include%20employer%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.152,"w":28.509999999999994,"clr":-1,"A":"left","R":[{"T":"you%20were%2C%20or%20were%20considered%2C%20an%20eligible%20individual%20with%20the","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.607,"y":14.152,"w":10.728000000000005,"clr":-1,"A":"left","R":[{"T":"coverage%2C%20enter%20%243%2C250","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.893,"y":14.84,"w":13.450000000000006,"clr":-1,"A":"left","R":[{"T":"(%246%2C450%20for%20family%20coverage).","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.91,"y":14.84,"w":20.67,"clr":-1,"A":"left","R":[{"T":"see%20the%20instructions%20for%20the%20amount%20to%20enter","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.903,"w":44.069999999999965,"clr":-1,"A":"left","R":[{"T":"HSA%20deduction.%20smaller%20Enter%20the%20of%20line%202%20or%20line%2012%20here%20and%20on%20Form%201040%2C%20line%2025%2C%20or%20Form%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":6672,"AM":1024,"x":21.787,"y":2.72,"w":8.683,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":6673,"AM":1024,"x":5.984,"y":5.822,"w":53.154,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6674,"AM":1024,"x":78.778,"y":5.886,"w":20.304,"h":0.841},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":6677,"AM":0,"x":83.119,"y":12.395,"w":11.983,"h":1.09},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":6678,"AM":0,"x":83.119,"y":14.734,"w":11.983,"h":1.001},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":6679,"AM":0,"x":83.119,"y":17.111,"w":11.983,"h":0.867},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":6680,"AM":1024,"x":83.016,"y":18.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":6681,"AM":0,"x":83.044,"y":20.074,"w":11.983,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":6682,"AM":0,"x":83.119,"y":22.271,"w":11.983,"h":0.956},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":6683,"AM":1024,"x":83.016,"y":23.295,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":6684,"AM":0,"x":63.161,"y":24.008,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QHSA","EN":0},"TI":6685,"AM":0,"x":63.141,"y":24.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSATOT","EN":0},"TI":6686,"AM":1024,"x":83.119,"y":25.262,"w":11.983,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":6687,"AM":1024,"x":83.016,"y":26.268,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":6688,"AM":1024,"x":83.098,"y":27.667,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":6689,"AM":0,"x":83.016,"y":30.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":6690,"AM":0,"x":83.119,"y":32.867,"w":11.983,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C","EN":0},"TI":6691,"AM":1024,"x":83.016,"y":33.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":6692,"AM":0,"x":83.016,"y":34.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":6693,"AM":1024,"x":83.119,"y":36.529,"w":11.983,"h":0.956},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":6695,"AM":0,"x":83.16,"y":40.76,"w":11.901,"h":1.21}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SELF","EN":0},"TI":6675,"AM":0,"x":79.159,"y":10.272,"w":2.138,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FMLY","EN":0},"TI":6676,"AM":0,"x":89.8,"y":10.349,"w":2.25,"h":0.833,"checked":false}],"id":{"Id":"COVBXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EXCEPTN","EN":0},"TI":6694,"AM":0,"x":76.595,"y":38.182,"w":1.485,"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":5.251,"w":0.75,"l":92.899},{"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":79.159,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.106,"y":10.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.847,"y":10.688,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":10.688,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":13.212,"w":1.5,"l":92.899}],"VLines":[{"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":95.29,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.861,"y":8.236,"w":0.75,"l":2.476},{"oc":"#221f1f","x":79.149,"y":8.236,"w":0.75,"l":2.476},{"oc":"#221f1f","x":95.29,"y":8.236,"w":0.75,"l":1.718},{"oc":"#221f1f","x":95.29,"y":9.923,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.861,"y":10.72,"w":0.75,"l":2.468},{"oc":"#221f1f","x":79.149,"y":10.72,"w":0.75,"l":2.468},{"oc":"#221f1f","x":95.29,"y":10.716,"w":0.75,"l":1.718},{"oc":"#221f1f","x":95.29,"y":12.407,"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}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208889%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]}]},{"x":6.331,"y":2.822,"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":2.822,"w":32.229000000000006,"clr":-1,"A":"left","R":[{"T":"Income%20and%20Additional%20Tax%20for%20Failure%20To%20Maintain%20HDHP%20Coverage.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.602,"y":3.572,"w":45.175999999999995,"clr":-1,"A":"left","R":[{"T":"completing%20this%20part.%20If%20you%20are%20filing%20jointly%20and%20both%20you%20and%20your%20spouse%20each%20have%20separate%20HSAs%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":4.322,"w":20.336000000000002,"clr":-1,"A":"left","R":[{"T":"complete%20a%20separate%20Part%20III%20for%20each%20spouse.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":79.948,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.84,"w":7.355,"clr":-1,"A":"left","R":[{"T":"Last-month%20rule%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":5.84,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":8.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.835,"y":7.34,"w":15.428999999999997,"clr":-1,"A":"left","R":[{"T":"Qualified%20HSA%20funding%20distribution%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.814,"y":7.34,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.895,"y":9.778,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":10.886,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.34,"w":6.724,"clr":-1,"A":"left","R":[{"T":"Total%20income.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.073,"y":8.34,"w":32.60700000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2018%20and%2019.%20Include%20this%20amount%20on%20Form%201040%2C%20line%2021%2C%20or%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":9.027,"w":42.23899999999998,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2021.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2021%2C%20or%20Form%201040NR%2C%20line%2021%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.715,"w":10.189000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CHSA%E2%80%9D%20and%20the%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":9.715,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.895,"y":12.262,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.836,"y":10.886,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.716,"y":10.886,"w":35.88500000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%2010%25%20(.10).%20Include%20this%20amount%20in%20the%20total%20on%20Form%201040%2C%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.842,"y":11.574,"w":41.664999999999985,"clr":-1,"A":"left","R":[{"T":"60%2C%20or%20Form%201040NR%2C%20line%2059.%20On%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2060%2C%20or%20Form%201040NR%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.85,"y":12.261,"w":17.006000000000007,"clr":-1,"A":"left","R":[{"T":"line%2059%2C%20enter%20%E2%80%9CHDHP%E2%80%9D%20and%20the%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.954,"y":12.261,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.154,"y":13.033,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":13.033,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8889","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":13.033,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.383,"y":2.822,"w":12.298000000000004,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20before%20","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":6696,"AM":1024,"x":15.89,"y":1.97,"w":54.435,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":6697,"AM":1024,"x":72.579,"y":1.999,"w":22.11,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYCOVG","EN":0},"TI":6698,"AM":0,"x":83.098,"y":5.854,"w":12.024,"h":0.881},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QHSAFUND","EN":0},"TI":6699,"AM":0,"x":83.098,"y":7.354,"w":12.024,"h":0.881},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTINC","EN":0},"TI":6700,"AM":1024,"x":83.119,"y":9.587,"w":11.942,"h":1.078},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDLX","EN":0},"TI":6701,"AM":1024,"x":83.119,"y":11.987,"w":11.942,"h":1.198}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8891.content.txt b/test/data/fd/form/F8891.content.txt new file mode 100755 index 00000000..a41cdbf5 --- /dev/null +++ b/test/data/fd/form/F8891.content.txt @@ -0,0 +1,118 @@ +City +Form +8891 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +U.S. Information Return for Beneficiaries of +Certain Canadian Registered Retirement Plans +a + +Information about Form 8891 and its instructions is at +www.irs.gov/form8891. + +a + +Attach to Form 1040. + +OMB No. 1545-0074 +Attachment +Sequence No. +139 + +For calendar year 20 , or tax year beginning +, 20 , and ending +, 20 . +Name as shown on Form 1040 +Identifying number +(see instructions) +Address +1 +Name of plan custodian +2 +Account number of plan +3 +Address of plan custodian +4 +Type of plan (check one box): +Registered Retirement Savings Plan (RRSP) +Registered Retirement Income Fund (RRIF) +5 +Beneficiary +Annuitant (Complete only lines 7a, 7b, and 8.) +6 a +Have you previously made an election under Article XVIII(7) of the U.S.-Canada income tax treaty to +defer U.S. income tax on the undistributed earnings of the plan? +........... + +a +Yes +No +b +If “Yes,” enter the first year the election came into effect + and go to line 7a. If “No,” go to line 6c. +c +If you have not previously made the election described on line 6a above, you can make an irrevocable +election for this year and subsequent years by checking this box +........... + +a +7 a +Distributions received from the plan during the year. Enter here and include on Form 1040, line +7a +b +Taxable distributions received from the plan during the year. Enter here and include on Form +1040, line 16b +........................... +7b +8 +Plan balance at the end of the year. If you checked the “Annuitant” box on line 5, the “Yes” box +on line 6a, or the box on line 6c, +stop here. Do not +complete the rest of the form +..... +8 +9 +Contributions to the plan during the year +.................. +9 +10 +Undistributed earnings of the plan during the year: +Interest income. Enter here and include on Form 1040, line 8a +........... +10a +b +Total ordinary dividends. Enter here and include on Form 1040, line 9a +........ +10b +Qualified dividends. Enter here and include on Form 1040, line 9b +.......... + +10c +Capital gains. Enter here and include on Form 1040, line 13 +............ +10d +e +Other income. Enter here and include on Form 1040, line 21. List type and amount +a +10e +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37699X +Form +8891 +(Rev. 12-2012) +City, state, zip +Addr +State +Zip +If foreign country enter +Country +Province +Postal Code +Check the applicable box for your status in the plan (see Definitions in the instructions): +............................... +16a +d +c +a +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8891.fields.json b/test/data/fd/form/F8891.fields.json new file mode 100755 index 00000000..26cd4001 --- /dev/null +++ b/test/data/fd/form/F8891.fields.json @@ -0,0 +1 @@ +[{"id":"BX9RB","type":"radio","calc":false,"value":"RRSPX"},{"id":"BX9RB","type":"radio","calc":false,"value":"RRIFX"},{"id":"STATUSRB","type":"radio","calc":false,"value":"BENEFX"},{"id":"STATUSRB","type":"radio","calc":false,"value":"ANNUITX"},{"id":"BX7RB","type":"radio","calc":false,"value":"DEFERY"},{"id":"BX7RB","type":"radio","calc":false,"value":"DEFERN"},{"id":"DEFERNOW","type":"box","calc":false,"value":""},{"id":"YR1","type":"date","calc":false,"value":""},{"id":"BYR1","type":"date","calc":false,"value":""},{"id":"YR2","type":"date","calc":false,"value":""},{"id":"ENYR2","type":"date","calc":false,"value":""},{"id":"YR3","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"IDNO","type":"ssn","calc":false,"value":""},{"id":"NAMEADD1","type":"alpha","calc":false,"value":""},{"id":"NAMEADD2","type":"alpha","calc":false,"value":""},{"id":"CUSTNAME","type":"alpha","calc":false,"value":""},{"id":"ACCTNO","type":"alpha","calc":false,"value":""},{"id":"CUSTADDR","type":"alpha","calc":false,"value":""},{"id":"CUSTCSZ","type":"alpha","calc":false,"value":""},{"id":"CUSTST","type":"alpha","calc":false,"value":""},{"id":"CUSTZIP","type":"zip","calc":false,"value":""},{"id":"CCOUNTRY","type":"alpha","calc":false,"value":""},{"id":"CPROV","type":"alpha","calc":false,"value":""},{"id":"CPOST","type":"alpha","calc":false,"value":""},{"id":"ELECTYR","type":"date","calc":false,"value":""},{"id":"DISTRIBS","type":"number","calc":false,"value":""},{"id":"TXDISTR","type":"number","calc":false,"value":""},{"id":"PLANBAL","type":"number","calc":false,"value":""},{"id":"CONTRIBS","type":"number","calc":false,"value":""},{"id":"INTINC","type":"number","calc":false,"value":""},{"id":"ORDDIVS","type":"number","calc":false,"value":""},{"id":"QUALDIVS","type":"number","calc":false,"value":""},{"id":"CAPGAINS","type":"number","calc":false,"value":""},{"id":"OTHINCX1","type":"alpha","calc":false,"value":""},{"id":"OTHER_OITYPE_1_","type":"alpha","calc":false,"value":""},{"id":"OTHER_AMOUNT_1_","type":"number","calc":false,"value":""},{"id":"OTHER_OITYPE_2_","type":"alpha","calc":false,"value":""},{"id":"OTHER_AMOUNT_2_","type":"number","calc":false,"value":""},{"id":"OTHINC","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8891.json b/test/data/fd/form/F8891.json new file mode 100755 index 00000000..3b1c029b --- /dev/null +++ b/test/data/fd/form/F8891.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8891 (Rev. December 2012)","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":63.199},{"oc":"#221f1f","x":84.066,"y":3.751,"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":70.624},{"oc":"#221f1f","x":76.684,"y":7.501,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":11.043,"w":0.75,"l":49.586},{"oc":"#221f1f","x":55.647,"y":11.043,"w":0.75,"l":43.399},{"oc":"#221f1f","x":6.147,"y":16.626,"w":0.75,"l":49.586},{"oc":"#221f1f","x":55.647,"y":16.626,"w":0.75,"l":43.399},{"oc":"#221f1f","x":6.147,"y":19.626,"w":0.75,"l":92.899},{"oc":"#221f1f","x":50.697,"y":22.626,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.19,"y":25.626,"w":0.75,"l":92.813},{"oc":"#221f1f","x":79.159,"y":27.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.876,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.126,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.126,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.126,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":32.376,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.376,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":32.376,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.876,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":33.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":36.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.876,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":36.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":38.376,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":38.376,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":38.376,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":39.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.876,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":39.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":41.376,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":41.376,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":70.497,"y":42.876,"w":0.75,"l":7.511},{"dsh":1,"oc":"#221f1f","x":11.097,"y":44.376,"w":0.75,"l":66.911},{"oc":"#221f1f","x":79.159,"y":41.376,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.876,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":45.876,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":45.876,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":45.876,"w":1.5,"l":40.923},{"oc":"#221f1f","x":82.872,"y":45.876,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.797},{"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":2.297},{"oc":"#221f1f","x":76.727,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.69,"y":8.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":8.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":55.688,"y":11.199,"w":0.75,"l":5.54},{"oc":"#221f1f","x":82.915,"y":25.611,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":25.611,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":25.611,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.262,"y":27.184,"w":0.75,"l":2.257},{"oc":"#221f1f","x":82.887,"y":25.768,"w":0.75,"l":4.339},{"oc":"#221f1f","x":79.148,"y":25.793,"w":0.75,"l":4.384},{"oc":"#221f1f","x":95.29,"y":25.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":29.361,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":30.111,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":30.111,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":30.111,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":31.611,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":32.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.361,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.111,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":33.861,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":33.861,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":33.861,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":35.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":35.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.111,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":36.861,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":36.861,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.861,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.611,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":38.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":38.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":38.361,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":39.111,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":39.861,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":39.861,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":39.861,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.611,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":41.361,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.202,"y":41.361,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":41.361,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":44.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":44.361,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":45.111,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c0c1c4","x":79.202,"y":33.876,"w":3.713,"h":1.5,"clr":-1},{"oc":"#c0c1c4","x":79.202,"y":41.376,"w":3.713,"h":3,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":49.009,"w":1.028,"h":0.428,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":49.009,"w":1.028,"h":0.428,"clr":-1}],"Texts":[{"x":8.043,"y":12.516,"w":12.054,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.082,"y":2.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8891","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3129999999999997,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.657,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.095,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":29.126,"y":2.164,"w":19.900000000000002,"clr":-1,"A":"left","R":[{"T":"U.S.%20Information%20Return%20for%20Beneficiaries%20of%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":27.153,"y":3.039,"w":21.240000000000002,"clr":-1,"A":"left","R":[{"T":"Certain%20Canadian%20Registered%20Retirement%20Plans%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":26.364,"y":4.972,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.732,"y":5.066,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208891%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.093,"y":5.066,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8891.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.836,"y":3.535,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.205,"y":3.6289999999999996,"w":18.823999999999995,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.%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,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.348,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.501,"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.6680000000000001,"clr":-1,"A":"left","R":[{"T":"139","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":21.305,"y":4.329,"w":9.186,"clr":-1,"A":"left","R":[{"T":"For%20calendar%20year%2020","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.155,"y":4.329,"w":9.964,"clr":-1,"A":"left","R":[{"T":"%2C%20or%20tax%20year%20beginning","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.021,"y":4.329,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%2C%2020","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.971,"y":4.329,"w":5.558,"clr":-1,"A":"left","R":[{"T":"%2C%20and%20ending","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.058,"y":4.329,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%2C%2020","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.116,"y":4.329,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.688,"w":13.708000000000006,"clr":-1,"A":"left","R":[{"T":"Name%20as%20shown%20on%20Form%201040","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":5.728,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.256,"y":5.728,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.189,"w":3.704,"clr":-1,"A":"left","R":[{"T":"Address","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":10.929,"clr":-1,"A":"left","R":[{"T":"Name%20of%20plan%20custodian%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.055,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.39,"y":8.84,"w":11.041000000000002,"clr":-1,"A":"left","R":[{"T":"Account%20number%20of%20plan%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.882,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.882,"w":11.984,"clr":-1,"A":"left","R":[{"T":"Address%20of%20plan%20custodian%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.055,"y":10.882,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.424,"y":10.882,"w":13.484000000000004,"clr":-1,"A":"left","R":[{"T":"Type%20of%20plan%20(check%20one%20box)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.865,"y":12.001,"w":19.797,"clr":-1,"A":"left","R":[{"T":"Registered%20Retirement%20Savings%20Plan%20(RRSP)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.865,"y":12.791,"w":19.429000000000006,"clr":-1,"A":"left","R":[{"T":"Registered%20Retirement%20Income%20Fund%20(RRIF)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.465,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.969,"y":17.278,"w":4.962,"clr":-1,"A":"left","R":[{"T":"Beneficiary","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.969,"y":18.028,"w":20.285,"clr":-1,"A":"left","R":[{"T":"Annuitant%20(Complete%20only%20lines%207a%2C%207b%2C%20and%208.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.415,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"6%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.415,"w":44.635999999999974,"clr":-1,"A":"left","R":[{"T":"Have%20you%20previously%20made%20an%20election%20under%20Article%20XVIII(7)%20of%20the%20U.S.-Canada%20income%20tax%20treaty%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.895,"y":20.114,"w":28.915000000000006,"clr":-1,"A":"left","R":[{"T":"defer%20U.S.%20income%20tax%20on%20the%20undistributed%20earnings%20of%20the%20plan%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.507,"y":20.114,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.246,"y":20.02,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.813,"y":20.215,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.864,"y":20.215,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":21.684,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.653,"w":25.244000000000007,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20first%20year%20the%20election%20came%20into%20effect%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.865,"y":21.684,"w":17.615000000000002,"clr":-1,"A":"left","R":[{"T":"%20and%20go%20to%20line%207a.%20If%20%E2%80%9CNo%2C%E2%80%9D%20go%20to%20line%206c.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":23.166,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.166,"w":45.67699999999997,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20not%20previously%20made%20the%20election%20described%20on%20line%206a%20above%2C%20you%20can%20make%20an%20irrevocable%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":23.864,"w":29.006,"clr":-1,"A":"left","R":[{"T":"election%20for%20this%20year%20and%20subsequent%20years%20by%20checking%20this%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.506,"y":23.864,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.246,"y":23.77,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.165,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"7%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.165,"w":42.10399999999997,"clr":-1,"A":"left","R":[{"T":"Distributions%20received%20from%20the%20plan%20during%20the%20year.%20Enter%20here%20and%20include%20on%20Form%201040%2C%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":26.965,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"7a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":28.415,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.415,"w":41.19399999999999,"clr":-1,"A":"left","R":[{"T":"Taxable%20distributions%20received%20from%20the%20plan%20during%20the%20year.%20Enter%20here%20and%20include%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":29.103,"w":6.300000000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2016b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.434,"y":29.103,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.906,"y":29.215,"w":1.445,"clr":-1,"A":"left","R":[{"T":"7b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":30.665,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.665,"w":42.78899999999998,"clr":-1,"A":"left","R":[{"T":"Plan%20balance%20at%20the%20end%20of%20the%20year.%20If%20you%20checked%20the%20%E2%80%9CAnnuitant%E2%80%9D%20box%20on%20line%205%2C%20the%20%E2%80%9CYes%E2%80%9D%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":31.353,"w":14.578000000000005,"clr":-1,"A":"left","R":[{"T":"on%20line%206a%2C%20or%20the%20box%20on%20line%206c%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.62,"y":31.353,"w":8.539,"clr":-1,"A":"left","R":[{"T":"stop%20here.%20Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.657,"y":31.353,"w":12.985000000000001,"clr":-1,"A":"left","R":[{"T":"complete%20the%20rest%20of%20the%20form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.807,"y":31.353,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":31.465000000000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.965,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.965,"w":18.337999999999997,"clr":-1,"A":"left","R":[{"T":"Contributions%20to%20the%20plan%20during%20the%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":32.965,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":32.965,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":34.465,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.466,"w":24.239999999999995,"clr":-1,"A":"left","R":[{"T":"Undistributed%20earnings%20of%20the%20plan%20during%20the%20year%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.966,"w":27.50900000000001,"clr":-1,"A":"left","R":[{"T":"Interest%20income.%20Enter%20here%20and%20include%20on%20Form%201040%2C%20line%208a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":35.966,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":35.965,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"10a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":37.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.465,"w":31.62000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20ordinary%20dividends.%20Enter%20here%20and%20include%20on%20Form%201040%2C%20line%209a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":37.465,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.476,"y":37.465,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"10b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.965,"w":29.195000000000014,"clr":-1,"A":"left","R":[{"T":"Qualified%20dividends.%20Enter%20here%20and%20include%20on%20Form%201040%2C%20line%209b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":38.965,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.504,"y":38.965,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"10c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.465,"w":26.43400000000001,"clr":-1,"A":"left","R":[{"T":"Capital%20gains.%20Enter%20here%20and%20include%20on%20Form%201040%2C%20line%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":40.465,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.476,"y":40.465,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"10d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":41.934,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.903,"w":36.959999999999994,"clr":-1,"A":"left","R":[{"T":"Other%20income.%20Enter%20here%20and%20include%20on%20Form%201040%2C%20line%2021.%20List%20type%20and%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.062,"y":41.809,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.504,"y":44.965,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"10e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":45.671,"w":26.239,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.811,"y":45.751,"w":7.651,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037699X%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.464,"y":45.697,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.606,"y":45.697,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8891%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.907,"y":45.697,"w":6.799000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2012-2012)%20","S":2,"TS":[0,10,0,0]}]},{"x":64.69,"y":7.198,"w":43.96,"clr":0,"A":"left","R":[{"T":"City%2C%20state%2C%20zip","S":2,"TS":[0,10,0,0]}]},{"x":7.914,"y":11.734,"w":14.783999999999999,"clr":0,"A":"left","R":[{"T":"Addr","S":2,"TS":[0,10,0,0]}]},{"x":8.043,"y":13.266,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":32.535,"y":13.359,"w":9.723,"clr":0,"A":"left","R":[{"T":"Zip","S":2,"TS":[0,10,0,0]}]},{"x":9.504,"y":14.063,"w":70.03500000000001,"clr":0,"A":"left","R":[{"T":"If%20foreign%20country%20enter","S":2,"TS":[0,10,0,0]}]},{"x":8.172,"y":14.781,"w":24.507,"clr":0,"A":"left","R":[{"T":"Country","S":2,"TS":[0,10,0,0]}]},{"x":8.13,"y":15.654,"w":27.23,"clr":0,"A":"left","R":[{"T":"Province","S":2,"TS":[0,10,0,0]}]},{"x":33.867,"y":15.578,"w":38.129000000000005,"clr":0,"A":"left","R":[{"T":"Postal%20Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.924,"y":16.465,"w":39.15599999999999,"clr":-1,"A":"left","R":[{"T":"Check%20the%20applicable%20box%20for%20your%20status%20in%20the%20plan%20(see%20Definitions%20in%20the%20instructions)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.788,"y":26.844,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":-1,"TS":[0,12.0559,0,0]}]},{"oc":"#221f1f","x":10.754,"y":26.9,"w":1.649,"clr":-1,"A":"left","R":[{"T":"16a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.416,"y":40.463,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.558,"y":38.864,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.098,"y":35.916,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.416,"y":35.916,"w":1.223,"clr":-1,"A":"left","R":[{"T":"AL","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR1","EN":0},"TI":6702,"AM":0,"x":33.163,"y":4.625,"w":2.702,"h":0.833,"MV":"yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BYR1","EN":0},"TI":6703,"AM":0,"x":49.464,"y":4.618,"w":6.969,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR2","EN":0},"TI":6704,"AM":0,"x":59.441,"y":4.598,"w":2.702,"h":0.833,"MV":"yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ENYR2","EN":0},"TI":6705,"AM":0,"x":70.11,"y":4.625,"w":6.969,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR3","EN":0},"TI":6706,"AM":0,"x":80.459,"y":4.626,"w":2.702,"h":0.833,"MV":"yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6707,"AM":0,"x":5.957,"y":6.606,"w":70.487,"h":0.892,"TU":"Name(s) as shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO","EN":0},"TI":6708,"AM":0,"x":76.862,"y":6.616,"w":21.846,"h":0.882,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEADD1","EN":0},"TI":6709,"AM":0,"x":6.158,"y":8.103,"w":58.733,"h":0.892},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEADD2","EN":0},"TI":6710,"AM":0,"x":65.283,"y":8.096,"w":33.877,"h":0.892},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTNAME","EN":0},"TI":6711,"AM":0,"x":6.259,"y":10.093,"w":49.252,"h":0.892,"TU":"Line 1. Name of plan custodian."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ACCTNO","EN":0},"TI":6712,"AM":0,"x":55.873,"y":10.093,"w":43.963,"h":0.892,"TU":"Line 2. Account number of plan."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTADDR","EN":0},"TI":6713,"AM":0,"x":13.669,"y":11.88,"w":41.717,"h":0.833,"TU":"Line 3. Address of plan custodian."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTCSZ","EN":0},"TI":6714,"AM":0,"x":13.73,"y":12.748,"w":41.717,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CUSTST","EN":0},"TI":6716,"AM":0,"x":14.101,"y":13.607,"w":5.254,"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":"CUSTZIP","EN":0},"TI":6717,"AM":0,"x":35.142,"y":13.646,"w":20.23,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CCOUNTRY","EN":0},"TI":6719,"AM":0,"x":13.705,"y":14.939,"w":31.143,"h":0.833,"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":"CPROV","EN":0},"TI":6720,"AM":0,"x":13.763,"y":15.795,"w":19.257,"h":0.833,"TU":"Province."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CPOST","EN":0},"TI":6721,"AM":0,"x":41.01,"y":15.84,"w":14.615,"h":0.833,"TU":"Postal code."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ELECTYR","EN":0},"TI":6726,"AM":0,"x":50.524,"y":22.032,"w":12.478,"h":0.833,"TU":"Line 6b. Enter the first year the election came into effect and go to line 7a.","MV":"yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISTRIBS","EN":0},"TI":6728,"AM":0,"x":83.119,"y":26.993,"w":11.983,"h":0.867,"TU":"Line 7a. Distributions received from the plan during the year. Enter here and include on Form 1040, line 16a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TXDISTR","EN":0},"TI":6729,"AM":0,"x":83.119,"y":29.384,"w":11.983,"h":0.833,"TU":"Line 7b. Taxable distributions received from the plan during the year. Enter here and include on Form 1040, line 16b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PLANBAL","EN":0},"TI":6730,"AM":0,"x":83.119,"y":31.246,"w":11.983,"h":1.09,"TU":"Line 8. Plan balance at the end of the year. If you checked \"Annuitant\" box on line 5, the \"Yes\" box on line 6a, or the box on line 6, stop here. Do not complete the rest of the form."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS","EN":0},"TI":6731,"AM":0,"x":83.098,"y":33.018,"w":12.024,"h":0.842,"TU":"Line 9. Contributions to the plan during the year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTINC","EN":0},"TI":6732,"AM":0,"x":83.16,"y":35.748,"w":11.901,"h":1.112,"TU":"Line 10a. Interest income. Enter here and on Form 1040, line 8a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ORDDIVS","EN":0},"TI":6733,"AM":0,"x":83.098,"y":37.428,"w":12.024,"h":0.932,"TU":"Line 10b. Total ordinary dividends, Enter here and include on Form 1040, line 9a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":6734,"AM":0,"x":83.098,"y":38.794,"w":12.024,"h":1.066,"TU":"Line 10c. Qualified dividends. Enter here and include on Form 1040, line 13."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CAPGAINS","EN":0},"TI":6735,"AM":0,"x":83.098,"y":40.479,"w":12.024,"h":0.881,"TU":"Line 10d. Capital gains. Enter here and include on Form 1040, line 13."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHINCX1","EN":0},"TI":6736,"AM":0,"x":70.496,"y":42.282,"w":7.528,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHER_OITYPE_1_","EN":0},"TI":6737,"AM":0,"x":11.119,"y":43.039,"w":50.532,"h":0.833,"TU":"Line 10e. Other income. List type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHER_AMOUNT_1_","EN":0},"TI":6738,"AM":0,"x":62.005,"y":43.027,"w":15.693,"h":0.833,"TU":"Line 10e. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHER_OITYPE_2_","EN":0},"TI":6739,"AM":0,"x":11.096,"y":43.782,"w":50.757,"h":0.833,"TU":"Line 10e. Other income. List type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHER_AMOUNT_2_","EN":0},"TI":6740,"AM":0,"x":62.042,"y":43.817,"w":15.693,"h":0.833,"TU":"Line 10e. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC","EN":0},"TI":6741,"AM":1024,"x":83.16,"y":44.412,"w":11.901,"h":1.433}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RRSPX","EN":0},"TI":6715,"AM":0,"x":60.545,"y":12.227,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RRIFX","EN":0},"TI":6718,"AM":0,"x":60.668,"y":13.047,"w":1.297,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BENEFX","EN":0},"TI":6722,"AM":0,"x":11.245,"y":17.458,"w":1.233,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ANNUITX","EN":0},"TI":6723,"AM":0,"x":11.106,"y":18.138,"w":1.372,"h":0.833,"checked":false}],"id":{"Id":"STATUSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEFERY","EN":0},"TI":6724,"AM":0,"x":82.871,"y":20.363,"w":1.464,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEFERN","EN":0},"TI":6725,"AM":0,"x":94.05,"y":20.371,"w":1.464,"h":0.833,"checked":false}],"id":{"Id":"BX7RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEFERNOW","EN":0},"TI":6727,"AM":0,"x":83.477,"y":24.105,"w":1.447,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8903.content.txt b/test/data/fd/form/F8903.content.txt new file mode 100755 index 00000000..46acedea --- /dev/null +++ b/test/data/fd/form/F8903.content.txt @@ -0,0 +1,174 @@ +Form +8903 +(Rev. December 2010) +Department of the Treasury +Internal Revenue Service +Domestic Production Activities Deduction +a + +Attach to your tax return. + +a + +See separate instructions. +OMB No. 1545-1984 +Attachment +Sequence No. +143 + +Name(s) as shown on return +Identifying number +Note. Do not + complete column (a), unless you have oil-related +production activities. Enter amounts for all activities in column (b), +including oil-related production activities. +(a) +Oil-related production activities +(b) + + +All activities +1 +Domestic production gross receipts (DPGR) +........ +1 +2 +Allocable cost of goods sold. If you are using the small business +simplified overall method, skip lines 2 and 3 +........ +2 +3 +Enter deductions and losses allocable to DPGR (see instructions) . +3 +4 + +If you are using the small business simplified overall method, enter the +amount of cost of goods sold and other deductions or losses you +ratably apportion to DPGR. All others, skip line 4 +....... +4 +5 +Add lines 2 through 4 +............... +5 +6 +Subtract line 5 from line 1 +.............. +6 +7 +Qualified production activities income from estates, trusts, and +certain partnerships and S corporations (see instructions) . . . +7 +8 +Add lines 6 and 7. Estates and trusts, go to line 9, all others, skip line +9 and go to line 10 +................ +8 +9 +Amount allocated to beneficiaries of the estate or trust (see +instructions) +.................. +9 +10 + +a + +Oil-related qualified production activities income. +Estates and +trusts, subtract line 9, column (a), from line 8, column (a), all + +others, +enter amount from line 8, column (a). If zero or less, enter -0- here . +10a +b + + +Qualified production activities income. +Estates and trusts, subtract +line 9, column (b), from line 8, column (b), all + +others, enter amount +from line 8, column (b). If zero or less, enter -0- here, skip lines 11 +through 21, + +and enter -0- on line 22 +........... +10b +11 +Income limitation (see instructions): +• Individuals, estates, and trusts. Enter your adjusted gross income figured without the +domestic production activities deduction +................ +} +11 +• All others. Enter your taxable income figured without the domestic production activities +deduction (tax-exempt organizations, see instructions) +........... +12 +Enter the smaller of line 10b or line 11. If zero or less, enter -0- here, skip lines 13 through 21, +and enter -0- on line 22 +........................ +12 +13 +Enter 9% of line 12 +......................... +13 +14 +a +Enter the smaller of line 10a or line 12 +.......... +14a +b +Reduction for oil-related qualified production activities income. Multiply line 14a by 3% . . +14b +15 +Subtract line 14b from line 13 +...................... +15 +16 +Form W-2 wages (see instructions) +.................... +16 +17 +Form W-2 wages from estates, trusts, and certain partnerships and S corporations +(see instructions) +.......................... +17 +18 +Add lines 16 and 17. Estates and trusts, go to line 19, all others, skip line 19 and go to line 20 +18 +19 +Amount allocated to beneficiaries of the estate or trust (see instructions) +....... +19 +20 +Estates and trusts, subtract line 19 from line 18, all others, enter amount from line 18 . . . +20 +21 +Form W-2 wage limitation. Enter 50% of line 20 +................ +21 +22 +Enter the smaller of line 15 or line 21 +.................... +22 +23 +Domestic production activities deduction from cooperatives. Enter deduction from Form +1099-PATR, box 6 +......................... +23 +24 +Expanded affiliated group allocation (see instructions) +.............. +24 +25 +Domestic production activities deduction. +Combine lines 22 through 24 and enter the result +here and on Form 1040, line 35; Form 1120, line 25; or the applicable line of your return . . +25 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 37712F +Form +8903 + (Rev. 12-2010) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8903.fields.json b/test/data/fd/form/F8903.fields.json new file mode 100755 index 00000000..7cd43549 --- /dev/null +++ b/test/data/fd/form/F8903.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"IDNO","type":"ssn","calc":true,"value":""},{"id":"ODOMPROD","type":"number","calc":false,"value":""},{"id":"DOMPROD","type":"number","calc":false,"value":""},{"id":"OALLSOLD","type":"number","calc":false,"value":""},{"id":"ALLSOLD","type":"number","calc":false,"value":""},{"id":"ODIRALL","type":"number","calc":false,"value":""},{"id":"DIRALL","type":"number","calc":false,"value":""},{"id":"OINDALL","type":"number","calc":false,"value":""},{"id":"INDALL","type":"number","calc":false,"value":""},{"id":"OADDLIN","type":"number","calc":true,"value":""},{"id":"ADDLIN","type":"number","calc":true,"value":""},{"id":"OSUBLIN","type":"number","calc":true,"value":""},{"id":"SUBLIN","type":"number","calc":true,"value":""},{"id":"OQUALENT","type":"number","calc":false,"value":""},{"id":"QUALENT","type":"number","calc":false,"value":""},{"id":"OSUBTOT1","type":"number","calc":true,"value":""},{"id":"SUBTOT1","type":"number","calc":true,"value":""},{"id":"OBENES1","type":"number","calc":true,"value":""},{"id":"BENES1","type":"number","calc":true,"value":""},{"id":"OQUALPRO","type":"number","calc":true,"value":""},{"id":"QUALPROD","type":"number","calc":true,"value":""},{"id":"INCLIM","type":"number","calc":false,"value":""},{"id":"SMALIN","type":"number","calc":true,"value":""},{"id":"THRPER","type":"number","calc":true,"value":""},{"id":"SMALLER","type":"number","calc":true,"value":""},{"id":"ORED","type":"number","calc":true,"value":""},{"id":"SUBTRACT","type":"number","calc":true,"value":""},{"id":"FORMWAGE","type":"number","calc":false,"value":""},{"id":"FORMENT","type":"number","calc":false,"value":""},{"id":"SUMLIN","type":"number","calc":true,"value":""},{"id":"BENES2","type":"number","calc":true,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""},{"id":"WAGELIM","type":"number","calc":true,"value":""},{"id":"ENTSMAL","type":"number","calc":true,"value":""},{"id":"DEDPATR","type":"number","calc":false,"value":""},{"id":"GRPALL","type":"number","calc":false,"value":""},{"id":"PRODACT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8903.json b/test/data/fd/form/F8903.json new file mode 100755 index 00000000..cdbf10c9 --- /dev/null +++ b/test/data/fd/form/F8903.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8903 (Revised December 2010)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.064,"y":3.752,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.222,"w":1.5,"l":14.978},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":71.861},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.2000000000000002,"l":71.861},{"oc":"#221f1f","x":77.922,"y":5.251,"w":1.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":6.751,"w":1.2000000000000002,"l":21.123},{"oc":"#221f1f","x":59.359,"y":9.001,"w":0.75,"l":22.361},{"oc":"#221f1f","x":81.634,"y":9.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":59.359,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":77.922,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":9.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":11.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":77.922,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":11.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"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":14.936},{"oc":"#221f1f","x":77.922,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":12.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":12.001,"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":14.936},{"oc":"#221f1f","x":77.922,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":14.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":15.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":77.922,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":15.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":15.001,"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":14.936},{"oc":"#221f1f","x":77.922,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":15.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"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":14.936},{"oc":"#221f1f","x":77.922,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":17.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":17.251,"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":14.936},{"oc":"#221f1f","x":77.922,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":18.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":18.751,"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":14.936},{"oc":"#221f1f","x":77.922,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":20.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":20.251,"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":14.936},{"oc":"#221f1f","x":77.922,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":20.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":81.634,"y":22.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":59.359,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.115,"y":25.501,"w":0.75,"l":18.563},{"oc":"#221f1f","x":63.115,"y":22.501,"w":0.75,"l":18.563},{"oc":"#221f1f","x":81.634,"y":25.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":28.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":30.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":31.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":31.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.922,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":33.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":34.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":36.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":36.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":37.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":38.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":39.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":39.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":39.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":41.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":42.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.196,"y":43.499,"w":1.5,"l":42.111},{"oc":"#221f1f","x":48.222,"y":43.499,"w":1.5,"l":34.736},{"oc":"#221f1f","x":82.872,"y":43.499,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.236,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.038,"y":4.11,"w":1.5,"l":1.157},{"oc":"#221f1f","x":84.15,"y":2.236,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.736,"w":1.5,"l":1.518},{"oc":"#221f1f","x":77.965,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":59.402,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.677,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":11.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.677,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":63.115,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.235,"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":81.677,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":63.115,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.264,"y":15.735,"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":81.677,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":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":81.677,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":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":81.677,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":19.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":19.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.965,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":22.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":22.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":81.677,"y":22.501,"w":0.75,"l":3},{"oc":"#221f1f","x":63.115,"y":22.501,"w":0.75,"l":3},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.965,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.677,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":63.115,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":34.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":59.402,"y":15.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":20.251,"w":17.325,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":63.115,"y":22.501,"w":18.563,"h":3,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":25.501,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":28.501,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":31.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":31.501,"w":17.325,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":34.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":39.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":77.965,"y":42.001,"w":3.713,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.696,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.08,"y":2.696,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8903","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.3209999999999997,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202010)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.795,"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.938,"y":4.245,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":29.774,"y":2.793,"w":18.759999999999998,"clr":-1,"A":"left","R":[{"T":"Domestic%20Production%20Activities%20Deduction","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":33.909,"y":4.15,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":35.227,"y":4.244,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":52.324,"y":4.15,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":53.642,"y":4.244,"w":12.463000000000001,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":2.349,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1984","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.478,"y":3.6740000000000004,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.478,"y":4.183,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.456,"y":4.183,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"143","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":12.520000000000003,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.746,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.896,"y":6.689,"w":6.0200000000000005,"clr":-1,"A":"left","R":[{"T":"Note.%20Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.208,"y":6.689,"w":22.135,"clr":-1,"A":"left","R":[{"T":"%20complete%20column%20(a)%2C%20unless%20you%20have%20oil-related%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.896,"y":7.314,"w":29.617000000000004,"clr":-1,"A":"left","R":[{"T":"production%20activities.%20Enter%20amounts%20for%20all%20activities%20in%20column%20(b)%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.896,"y":7.939,"w":18.39100000000001,"clr":-1,"A":"left","R":[{"T":"including%20oil-related%20production%20activities.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.478,"y":6.914,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":60.557,"y":7.589,"w":13.982999999999999,"clr":-1,"A":"left","R":[{"T":"Oil-related%20production%20activities","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":89.159,"y":6.914,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.008,"y":7.589,"w":5.277,"clr":-1,"A":"left","R":[{"T":"All%20activities","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":8.84,"w":19.854,"clr":-1,"A":"left","R":[{"T":"Domestic%20production%20gross%20receipts%20(DPGR)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.002,"y":8.84,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":9.54,"w":28.912000000000003,"clr":-1,"A":"left","R":[{"T":"Allocable%20cost%20of%20goods%20sold.%20If%20you%20are%20using%20the%20small%20business%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":10.34,"w":19.784000000000002,"clr":-1,"A":"left","R":[{"T":"simplified%20overall%20method%2C%20skip%20lines%202%20and%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.998,"y":10.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":11.09,"w":29.856,"clr":-1,"A":"left","R":[{"T":"Enter%20deductions%20and%20losses%20allocable%20to%20DPGR%20(see%20%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":11.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":11.853,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":11.859,"w":31.619000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20using%20the%20small%20business%20simplified%20overall%20method%2C%20enter%20the%20","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":9.652,"y":12.581,"w":29.451000000000004,"clr":-1,"A":"left","R":[{"T":"amount%20of%20cost%20of%20goods%20sold%20and%20other%20deductions%20or%20losses%20you%20","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":9.652,"y":13.269,"w":21.910999999999998,"clr":-1,"A":"left","R":[{"T":"ratably%20apportion%20to%20DPGR.%20All%20others%2C%20skip%20line%204%20","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":43.065,"y":13.269,"w":9.548000000000002,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":60.578,"y":13.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":14.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":14.09,"w":9.837000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%20through%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":14.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":14.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":14.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":14.84,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":14.84,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":14.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":15.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":15.54,"w":28.265999999999995,"clr":-1,"A":"left","R":[{"T":"Qualified%20production%20activities%20income%20from%20estates%2C%20trusts%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":16.34,"w":26.09600000000001,"clr":-1,"A":"left","R":[{"T":"certain%20partnerships%20and%20%20S%20corporations%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.317,"y":16.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":16.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":16.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":17.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.103,"w":30.768000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207.%20Estates%20and%20trusts%2C%20go%20to%20line%209%2C%20all%20others%2C%20skip%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.657,"y":17.778,"w":8.318000000000001,"clr":-1,"A":"left","R":[{"T":"9%20and%20go%20to%20line%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.507,"y":17.778,"w":21.327999999999996,"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":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":18.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":18.54,"w":26.651999999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.649,"y":19.34,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.373,"y":19.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.103,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.103,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":20.103,"w":24.025,"clr":-1,"A":"left","R":[{"T":"Oil-related%20qualified%20production%20activities%20income.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.331,"y":20.103,"w":5.279,"clr":-1,"A":"left","R":[{"T":"Estates%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":20.903,"w":26.582000000000008,"clr":-1,"A":"left","R":[{"T":"trusts%2C%20subtract%20line%209%2C%20column%20(a)%2C%20from%20line%208%2C%20column%20(a)%2C%20all","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.133,"y":20.903,"w":3.3710000000000004,"clr":-1,"A":"left","R":[{"T":"others%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":21.59,"w":29.616999999999987,"clr":-1,"A":"left","R":[{"T":"enter%20amount%20from%20line%208%2C%20column%20(a).%20If%20zero%20or%20less%2C%20enter%20-0-%20here.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.704,"y":21.59,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"10a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":22.415,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":22.415,"w":18.602999999999998,"clr":-1,"A":"left","R":[{"T":"Qualified%20production%20activities%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.676,"y":22.415,"w":12.596000000000004,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20subtract%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":23.215,"w":19.655000000000005,"clr":-1,"A":"left","R":[{"T":"line%209%2C%20column%20(b)%2C%20from%20line%208%2C%20column%20(b)%2C%20all","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.993,"y":23.215,"w":9.596,"clr":-1,"A":"left","R":[{"T":"others%2C%20enter%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.646,"y":23.902,"w":29.264999999999993,"clr":-1,"A":"left","R":[{"T":"from%20line%208%2C%20column%20(b).%20If%20zero%20or%20less%2C%20enter%20-0-%20here%2C%20skip%20lines%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.641,"y":24.59,"w":5.132,"clr":-1,"A":"left","R":[{"T":"through%2021%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.01,"y":24.59,"w":10.467000000000002,"clr":-1,"A":"left","R":[{"T":"and%20enter%20-0-%20on%20line%2022","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.804,"y":24.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.676,"y":24.59,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"10b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.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":25.34,"w":15.744000000000005,"clr":-1,"A":"left","R":[{"T":"Income%20limitation%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":26.04,"w":38.89699999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals%2C%20estates%2C%20and%20trusts.%20Enter%20your%20adjusted%20gross%20income%20figured%20without%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.651,"y":26.728,"w":18.486000000000004,"clr":-1,"A":"left","R":[{"T":"domestic%20production%20activities%20deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.938,"y":26.728,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.878,"y":27.646,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21,0,0]}]},{"oc":"#221f1f","x":78.711,"y":27.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":27.54,"w":40.13599999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20others.%20Enter%20your%20taxable%20income%20figured%20without%20the%20domestic%20production%20%20activities%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":28.228,"w":24.521,"clr":-1,"A":"left","R":[{"T":"deduction%20(tax-exempt%20organizations%2C%20see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.254,"y":28.228,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.04,"w":41.860999999999954,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2010b%20or%20line%2011.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%2C%20skip%20lines%2013%20through%2021%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.84,"w":10.745000000000003,"clr":-1,"A":"left","R":[{"T":"and%20enter%20-0-%20on%20line%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":29.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":29.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":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":30.59,"w":8.817000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%209%25%20of%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":30.59,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":30.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":31.340000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.340000000000003,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":31.340000000000003,"w":17.078000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2010a%20or%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":31.340000000000003,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.704,"y":31.340000000000003,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"14a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":32.09,"w":39.025999999999996,"clr":-1,"A":"left","R":[{"T":"Reduction%20for%20oil-related%20qualified%20production%20activities%20income.%20Multiply%20line%2014a%20by%203%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.943,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":32.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.238,"y":32.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"14b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":32.84,"w":13.171000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014b%20from%20line%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":32.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":32.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":33.59,"w":15.779000000000005,"clr":-1,"A":"left","R":[{"T":"Form%20W-2%20wages%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":33.59,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":33.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":34.29,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":34.29,"w":37.65499999999998,"clr":-1,"A":"left","R":[{"T":"Form%20W-2%20wages%20from%20estates%2C%20trusts%2C%20and%20certain%20partnerships%20and%20S%20corporations%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":35.09,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":35.09,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":35.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":35.84,"w":41.86599999999997,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2016%20and%2017.%20Estates%20and%20trusts%2C%20go%20to%20line%2019%2C%20all%20others%2C%20skip%20line%2019%20and%20go%20to%20line%2020%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":36.59,"w":32.375,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":36.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":37.34,"w":38.01199999999999,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20subtract%20line%2019%20from%20line%2018%2C%20all%20others%2C%20enter%20amount%20from%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.879,"y":37.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":37.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":37.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":38.09,"w":21.412000000000006,"clr":-1,"A":"left","R":[{"T":"Form%20W-2%20wage%20limitation.%20Enter%2050%25%20of%20line%2020%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":38.09,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":38.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":38.84,"w":16.26300000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2015%20or%20line%2021","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":38.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":39.54,"w":40.138999999999974,"clr":-1,"A":"left","R":[{"T":"Domestic%20production%20activities%20deduction%20from%20cooperatives.%20Enter%20deduction%20from%20%20Form%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":40.34,"w":8.521000000000003,"clr":-1,"A":"left","R":[{"T":"1099-PATR%2C%20box%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":40.34,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":41.09,"w":24.18700000000001,"clr":-1,"A":"left","R":[{"T":"Expanded%20affiliated%20group%20allocation%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":41.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":41.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":41.726,"w":20.458,"clr":-1,"A":"left","R":[{"T":"Domestic%20production%20activities%20deduction.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.832,"y":41.726,"w":22.119000000000003,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2022%20through%2024%20and%20enter%20the%20result%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.646,"y":42.413,"w":39.21699999999998,"clr":-1,"A":"left","R":[{"T":"here%20and%20on%20Form%201040%2C%20line%2035%3B%20Form%201120%2C%20line%2025%3B%20or%20the%20applicable%20line%20of%20your%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.937,"y":42.413,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.999,"y":42.413,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":42.496,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.989,"y":43.356,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.927,"y":43.374,"w":7.336,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037712F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":43.32,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":43.32,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8903","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":43.32,"w":6.799,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2010)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6742,"AM":1024,"x":6.229,"y":5.962,"w":71.61,"h":0.833,"TU":"Name(s) as shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO","EN":0},"TI":6743,"AM":1024,"x":78.107,"y":5.892,"w":20.872,"h":0.835,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ODOMPROD","EN":0},"TI":6744,"AM":0,"x":63.216,"y":9.038,"w":14.664,"h":0.833,"TU":"Line 1a. Domestic production gross receipts (DPGR)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DOMPROD","EN":0},"TI":6745,"AM":0,"x":81.778,"y":9.038,"w":13.406,"h":0.833,"TU":"Line 1b. Domestic production gross receipts (DPGR)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OALLSOLD","EN":0},"TI":6746,"AM":0,"x":63.298,"y":10.017,"w":14.499,"h":1.241,"TU":"Line 2a. Allocable cost of goods sold. If you are using the small business simplified overall method, skip lines 2 and 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLSOLD","EN":0},"TI":6747,"AM":0,"x":81.861,"y":10.017,"w":13.241,"h":1.218,"TU":"Line 2b. Allocable cost of goods sold. If you are using the small business simplified overall method, skip lines 2 and 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ODIRALL","EN":0},"TI":6748,"AM":0,"x":63.216,"y":11.288,"w":14.664,"h":0.833,"TU":"Line 3a. Enter deductions and losses allocable to DPGR (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIRALL","EN":0},"TI":6749,"AM":0,"x":81.778,"y":11.288,"w":13.406,"h":0.833,"TU":"Line 3b. Enter deductions and losses allocable to DPGR (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OINDALL","EN":0},"TI":6750,"AM":0,"x":63.319,"y":13.031,"w":14.458,"h":1.204,"TU":"Line 4a. If you are using the small business simplified overall method, enter the amount of cost of goods sold and other deductions or losses you ratably apportion to DPRG. All others, skip line 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INDALL","EN":0},"TI":6751,"AM":0,"x":81.817,"y":12.961,"w":13.2,"h":1.286,"TU":"Line 4b. If you are using the small business simplified overall method, enter the amount of cost of goods sold and other deductions or losses you ratably apportion to DPRG. All others, skip line 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OADDLIN","EN":0},"TI":6752,"AM":1024,"x":63.216,"y":14.288,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDLIN","EN":0},"TI":6753,"AM":1024,"x":81.778,"y":14.288,"w":13.406,"h":0.833,"TU":"(b) All activities_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OSUBLIN","EN":0},"TI":6754,"AM":1024,"x":63.216,"y":15.038,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBLIN","EN":0},"TI":6755,"AM":1024,"x":81.778,"y":15.038,"w":13.406,"h":0.833,"TU":"(b) All activities_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OQUALENT","EN":0},"TI":6756,"AM":0,"x":63.298,"y":15.901,"w":14.499,"h":1.334,"TU":"Line 7a. Qualified production activities income from estates, trusts, and certain partnerships and S corporations (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALENT","EN":0},"TI":6757,"AM":0,"x":81.861,"y":15.901,"w":13.241,"h":1.334,"TU":"Line 7b. Qualified production activities income from estates, trusts, and certain partnerships and S corporations (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OSUBTOT1","EN":0},"TI":6758,"AM":1024,"x":63.298,"y":17.401,"w":14.499,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT1","EN":0},"TI":6759,"AM":1024,"x":81.861,"y":17.401,"w":13.241,"h":1.334,"TU":"(b) All activities_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OBENES1","EN":0},"TI":6760,"AM":1024,"x":63.298,"y":18.901,"w":14.499,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENES1","EN":0},"TI":6761,"AM":1024,"x":81.861,"y":18.901,"w":13.241,"h":1.334,"TU":"(b) All activities_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OQUALPRO","EN":0},"TI":6762,"AM":1024,"x":63.319,"y":21.071,"w":14.458,"h":1.414,"TU":"10a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALPROD","EN":0},"TI":6763,"AM":1024,"x":81.623,"y":24,"w":13.785,"h":1.561,"TU":"10b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCLIM","EN":0},"TI":6764,"AM":0,"x":81.923,"y":27.185,"w":13.138,"h":1.3,"TU":"Line 11. Income limitation (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALIN","EN":0},"TI":6765,"AM":1024,"x":81.881,"y":29.531,"w":13.221,"h":1.204,"TU":"12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"THRPER","EN":0},"TI":6766,"AM":1024,"x":81.778,"y":30.788,"w":13.427,"h":0.833,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER","EN":0},"TI":6767,"AM":1024,"x":63.236,"y":31.508,"w":10.911,"h":0.833,"TU":"14a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ORED","EN":0},"TI":6768,"AM":1024,"x":81.949,"y":32.119,"w":13.427,"h":0.833,"TU":"15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT","EN":0},"TI":6769,"AM":1024,"x":81.778,"y":33.038,"w":13.427,"h":0.833,"TU":"15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORMWAGE","EN":0},"TI":6770,"AM":0,"x":81.778,"y":33.788,"w":13.427,"h":0.833,"TU":"Line 16. Form W-2 wages (see instuctions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORMENT","EN":0},"TI":6771,"AM":0,"x":81.861,"y":34.878,"w":13.262,"h":1.107,"TU":"Line 17. Form W-2 wages from estates, trusts, and certain partnerships and S corporations (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUMLIN","EN":0},"TI":6772,"AM":1024,"x":81.778,"y":35.874,"w":13.427,"h":0.861,"TU":"18"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENES2","EN":0},"TI":6773,"AM":1024,"x":81.778,"y":36.788,"w":13.427,"h":0.833,"TU":"19"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":6774,"AM":1024,"x":81.778,"y":37.538,"w":13.427,"h":0.833,"TU":"20"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WAGELIM","EN":0},"TI":6775,"AM":1024,"x":81.778,"y":38.288,"w":13.427,"h":0.833,"TU":"21"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ENTSMAL","EN":0},"TI":6776,"AM":1024,"x":81.778,"y":39.038,"w":13.427,"h":0.833,"TU":"22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDPATR","EN":0},"TI":6777,"AM":0,"x":81.861,"y":40.148,"w":13.262,"h":1.087,"TU":"Line 23. Domestic production activities deduction from cooperatives. Enter deduction from Form 1099-PATR, box 6."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GRPALL","EN":0},"TI":6778,"AM":0,"x":81.778,"y":41.288,"w":13.427,"h":0.833,"TU":"Line 24. Expanded affiliated group allocation (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRODACT","EN":0},"TI":6779,"AM":1024,"x":81.861,"y":42.151,"w":13.262,"h":1.319,"TU":"25"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8906.content.txt b/test/data/fd/form/F8906.content.txt new file mode 100755 index 00000000..261eb03a --- /dev/null +++ b/test/data/fd/form/F8906.content.txt @@ -0,0 +1,48 @@ +Form +8906 +Department of the Treasury +Internal Revenue Service +Distilled Spirits Credit +a + Attach to your tax return. + +a + Information about Form 8906 and its instructions is at +www.irs.gov/form8906 +. +OMB No. 1545-1982 +20 +13 +Attachment +Sequence No. +150 +Name(s) shown on return +Identifying number +1 +Total number of cases of distilled spirits (see instructions) +.............. +1 +2 +Average tax-financing cost per case +..................... +2 +3 +Multiply line 1 by line 2 +.......................... +3 +4 +Distilled spirits credit from partnerships and S corporations +............. +4 +5 +Add lines 3 and 4. Partnerships and S corporations, report this amount on Schedule K. All others, +report this amount on Form 3800, line 1n +................... +5 +Cat. No. 37715M +Form +8906 + (2013) +For Paperwork Reduction Act Notice, see instructions. +0.08433 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8906.fields.json b/test/data/fd/form/F8906.fields.json new file mode 100755 index 00000000..07ea51c9 --- /dev/null +++ b/test/data/fd/form/F8906.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TOTCASES","type":"number","calc":false,"value":""},{"id":"MLTY1BY2","type":"number","calc":true,"value":""},{"id":"SPRTSCRD","type":"number","calc":false,"value":""},{"id":"ADDLNS","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8906.json b/test/data/fd/form/F8906.json new file mode 100755 index 00000000..408943d4 --- /dev/null +++ b/test/data/fd/form/F8906.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8906","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":74.336},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.2000000000000002,"l":74.336},{"oc":"#221f1f","x":80.397,"y":5.251,"w":1.5,"l":18.648},{"oc":"#221f1f","x":80.397,"y":6.751,"w":1.2000000000000002,"l":18.648},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":7.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":42.034,"y":38.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":38.251,"w":1.5,"l":11.223},{"oc":"#221f1f","x":6.147,"y":38.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":6.19,"y":11.251,"w":0.75,"l":92.813}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"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.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":2.281},{"oc":"#221f1f","x":84.152,"y":4.017,"w":1.5,"l":1.256},{"oc":"#221f1f","x":80.44,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":84.152,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8906","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.76,"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.94,"y":4.26,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":40.907,"y":2.412,"w":9.86,"clr":-1,"A":"left","R":[{"T":"Distilled%20Spirits%20Credit","S":-1,"TS":[2,16.5,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.4640000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.558,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.341,"y":4.085,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.179,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208906%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.179,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8906","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.969,"y":4.179,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.095,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1982","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.621,"y":3.8949999999999996,"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.341,"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.341,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"150","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.221,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":6.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.59,"w":25.892000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20number%20of%20cases%20of%20distilled%20spirits%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":6.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"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":7.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":16.371000000000006,"clr":-1,"A":"left","R":[{"T":"Average%20tax-financing%20cost%20per%20case%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":7.34,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":7.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.099,"w":10.448000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%201%20by%20line%202%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":26.564,"y":8.099,"w":36.71199999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":81.616,"y":8.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":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":26.596,"clr":-1,"A":"left","R":[{"T":"Distilled%20spirits%20credit%20from%20partnerships%20and%20S%20corporations%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":8.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.496,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.532,"w":43.67799999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%203%20and%204.%20Partnerships%20and%20S%20corporations%2C%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.22,"w":18.508000000000003,"clr":-1,"A":"left","R":[{"T":"report%20this%20amount%20on%20Form%203800%2C%20line%201n%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":10.22,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":10.309,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.129,"y":38.126,"w":7.633000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037715M","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":38.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":38.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8906","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":38.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.108,"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":"#231f20","x":87.91,"y":7.301,"w":3.9770000000000003,"clr":-1,"A":"left","R":[{"T":"0.08433","S":-1,"TS":[2,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6780,"AM":1024,"x":6.499,"y":5.93,"w":71.61,"h":0.835,"TU":"Name(s) as shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6781,"AM":1024,"x":80.777,"y":5.972,"w":18.945,"h":0.889,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCASES","EN":0},"TI":6782,"AM":0,"x":84.378,"y":6.802,"w":11.524,"h":0.833,"TU":"Line 1. Total number of cases of distilled spirits (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MLTY1BY2","EN":0},"TI":6783,"AM":1024,"x":84.413,"y":8.314,"w":10.979,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPRTSCRD","EN":0},"TI":6784,"AM":0,"x":84.574,"y":9.045,"w":10.952,"h":0.833,"TU":"Line 4. Distilled spirits credit from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDLNS","EN":0},"TI":6785,"AM":1024,"x":84.501,"y":10.469,"w":10.755,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8907.content.txt b/test/data/fd/form/F8907.content.txt new file mode 100755 index 00000000..8ded43a4 --- /dev/null +++ b/test/data/fd/form/F8907.content.txt @@ -0,0 +1,155 @@ +Form +8907 +Department of the Treasury +Internal Revenue Service +Nonconventional Source Fuel Credit +a + Attach to your tax return. + +a + Information about Form 8907 and its instructions is at +www.irs.gov/form8907. + +OMB No. 1545-2008 +20 +13 +Attachment +Sequence No. +146 +Name(s) shown on return +Identifying number +1 +Date the facility was placed in service +(a) +Qualified coke and coke +gas sold in +calendar + year 2013 +(b) +Reserved +(see +What's New + in the +instructions) +2 +Barrel-of-oil equivalents +............... +3 + +Enter the product of $3 multiplied by the inflation adjustment factor +(see instructions) +................. +4 +Multiply line 2 by line 3 +............... +5 +Add columns (a) and (b) on line 4 +...................... +5 +6 + + + +a + + + +Reduction due to government monies and subsidized financing. Enter +the total of government grants, proceeds of tax-exempt government +obligations, and subsidized energy financing for the project for this and +all prior tax years +.................. +6a +b + +Enter the total of additions to the capital account for the project for this +and all prior tax years +................. +6b +c +Divide line 6a by line 6b. Show as a decimal to at least 4 places . . . +6c +. +d +Multiply line 5 by line 6c +......................... +6d +7 +Subtract line 6d from line 5 +........................ +7 +8 + + +a + + +Reduction due to energy credit. Enter the total amount allowed under +section 38 for this and all prior tax years by reason of the energy +percentage with respect to the property used in the project +.... +8a +b + + +Enter the total amount recaptured with respect to the amount entered +on line 8a under section 49(b) or 50(a) for this and any prior tax year, +and under section 38 for any prior tax year +.......... +8b +c +Subtract line 8b from line 8a. If zero or less, enter -0- +............... +8c +9 +Subtract line 8c from line 7 +........................ +9 +10 + + +a + + +Reduction due to enhanced oil recovery credit (Form 8830). Enter the +total amount allowed for this and all prior tax years by reason of any +enhanced oil recovery credit with respect to such project +..... +10a +b + +Enter the total amount of enhanced oil recovery credit recapture with +respect to the amount on line 10a for any prior tax year +..... +10b +c +Subtract line 10b from line 10a. If zero or less, enter -0- +............... +10c +11 +Subtract line 10c from line 9 +....................... +11 +12 +Nonconventional source fuel credit from partnerships, S corporations, estates, and trusts . . . +12 +13 + +Add lines 11 and 12. Estates and trusts, go to line 14. Partnerships and S corporations, stop here +and report this amount on Schedule K. All others, stop here and report this amount on Form 3800, +line 1o +............................... +13 +14 +Amount allocated to beneficiaries of the estate or trust (see instructions) +......... +14 +15 +Estates and trusts, subtract line 14 from line 13. Report this amount on Form 3800, line 1o . . . +15 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37716X +Form +8907 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8907.fields.json b/test/data/fd/form/F8907.fields.json new file mode 100755 index 00000000..a902cc38 --- /dev/null +++ b/test/data/fd/form/F8907.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"INSERVDT","type":"date","calc":false,"value":""},{"id":"BARREL","type":"number","calc":false,"value":""},{"id":"BARRELB","type":"number","calc":false,"value":""},{"id":"INFLATN","type":"number","calc":false,"value":""},{"id":"INFLATNB","type":"number","calc":false,"value":""},{"id":"MULT","type":"number","calc":true,"value":""},{"id":"MULTB","type":"number","calc":true,"value":""},{"id":"SUBTOTAL","type":"number","calc":true,"value":""},{"id":"GOVTRED","type":"number","calc":false,"value":""},{"id":"TOTADDS","type":"number","calc":false,"value":""},{"id":"DIVIDE","type":"mask","calc":true,"value":""},{"id":"MULT7","type":"number","calc":true,"value":""},{"id":"SUBTR8","type":"number","calc":true,"value":""},{"id":"ENRGYRED","type":"number","calc":false,"value":""},{"id":"TOTRECAP","type":"number","calc":false,"value":""},{"id":"SUBTR9","type":"number","calc":true,"value":""},{"id":"SUBTR10","type":"number","calc":true,"value":""},{"id":"OILRECRD","type":"number","calc":false,"value":""},{"id":"TOILREC","type":"number","calc":false,"value":""},{"id":"SUBTR11","type":"number","calc":true,"value":""},{"id":"SUBTR12","type":"number","calc":true,"value":""},{"id":"PSTHRUCR","type":"number","calc":false,"value":""},{"id":"TENTCR1","type":"number","calc":true,"value":""},{"id":"BENALLOC","type":"number","calc":true,"value":""},{"id":"ESTTRUST","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8907.json b/test/data/fd/form/F8907.json new file mode 100755 index 00000000..67fa6ade --- /dev/null +++ b/test/data/fd/form/F8907.json @@ -0,0 +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.147,"y":5.251,"w":1.5,"l":71.861},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.2000000000000002,"l":71.861},{"oc":"#221f1f","x":77.922,"y":5.251,"w":1.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":6.751,"w":1.2000000000000002,"l":21.123},{"oc":"#221f1f","x":38.322,"y":9.001,"w":0.75,"l":22.361},{"oc":"#221f1f","x":61.834,"y":9.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":61.834,"y":10.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":10.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":61.834,"y":12.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":76.684,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":14.251,"w":1.125,"l":14.936},{"oc":"#221f1f","x":76.684,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":14.251,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.247,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":18.751,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":76.684,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":21.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":76.684,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":28.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":28.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":28.501,"w":1.125,"l":3.798},{"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":61.834,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":32.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":32.251,"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":11.223},{"oc":"#221f1f","x":76.684,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":35.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":35.251,"w":1.125,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":38.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":42.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":42.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":44.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":44.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":44.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.706},{"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":1.782},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.531},{"oc":"#221f1f","x":77.965,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":61.877,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"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":61.877,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"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":61.877,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"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":95.29,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"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":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":65.59,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":15.735,"w":0.75,"l":5.281},{"oc":"#221f1f","x":80.44,"y":15.735,"w":0.75,"l":5.281},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":5.281},{"oc":"#221f1f","x":76.727,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":19.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"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":84.152,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"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":84.152,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"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":65.59,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.44,"y":23.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":76.727,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":61.877,"y":25.485,"w":0.75,"l":2.289},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":1.584},{"oc":"#221f1f","x":76.727,"y":26.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":0.789},{"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":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":65.59,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.44,"y":29.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":76.727,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":32.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":34.485,"w":0.75,"l":0.789},{"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":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":36.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":36.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.44,"y":38.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":42.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":42.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":43.486,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":80.44,"y":15.751,"w":3.712,"h":5.25,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":23.251,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":30.001,"w":3.712,"h":4.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8907","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7889999999999997,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.314,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":33.048,"y":2.418,"w":16.039999999999996,"clr":-1,"A":"left","R":[{"T":"Nonconventional%20Source%20Fuel%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.4640000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.558,"w":12.504000000000001,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.085,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.179,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208907%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.179,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8907.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.8530000000000002,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-2008","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.206,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.206,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.7510000000000003,"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.322,"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.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"146","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"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.746,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.14,"w":16.778000000000002,"clr":-1,"A":"left","R":[{"T":"Date%20the%20facility%20was%20placed%20in%20service","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.207,"y":6.732,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.413,"y":7.232,"w":11.077000000000002,"clr":-1,"A":"left","R":[{"T":"Qualified%20coke%20and%20coke%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.52,"y":7.731999999999999,"w":5.112,"clr":-1,"A":"left","R":[{"T":"gas%20sold%20in%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.671,"y":7.731999999999999,"w":4.147,"clr":-1,"A":"left","R":[{"T":"calendar","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.66,"y":7.731999999999999,"w":4.687,"clr":-1,"A":"left","R":[{"T":"%20year%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.747,"y":6.482,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.931,"y":6.982,"w":4.5,"clr":-1,"A":"left","R":[{"T":"Reserved%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.131,"y":7.481999999999999,"w":2.111,"clr":-1,"A":"left","R":[{"T":"(see%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.671,"y":7.481999999999999,"w":5.685,"clr":-1,"A":"left","R":[{"T":"What's%20New","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.511,"y":7.481999999999999,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.194,"y":7.981999999999999,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":10.943999999999999,"clr":-1,"A":"left","R":[{"T":"Barrel-of-oil%20equivalents%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":9.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.153,"w":30.213000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20product%20of%20%243%20multiplied%20by%20the%20inflation%20adjustment%20factor%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":11.84,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.505,"y":11.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":10.448000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%202%20by%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":13.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":14.931000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(a)%20and%20(b)%20on%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":14.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.777999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":15.777000000000001,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.776,"w":31.397000000000002,"clr":-1,"A":"left","R":[{"T":"Reduction%20due%20to%20government%20monies%20and%20subsidized%20financing.%20Enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.464,"w":30.692000000000004,"clr":-1,"A":"left","R":[{"T":"the%20total%20of%20government%20grants%2C%20proceeds%20of%20tax-exempt%20government%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":17.151,"w":32.004000000000005,"clr":-1,"A":"left","R":[{"T":"obligations%2C%20and%20subsidized%20energy%20financing%20for%20the%20project%20for%20this%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":17.839,"w":7.925000000000001,"clr":-1,"A":"left","R":[{"T":"all%20prior%20tax%20years%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.491,"y":17.839,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":17.84,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"6a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":18.653,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.653,"w":31.987000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20additions%20to%20the%20capital%20account%20for%20the%20project%20for%20this%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":19.34,"w":9.889000000000003,"clr":-1,"A":"left","R":[{"T":"and%20all%20prior%20tax%20years%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.556,"y":19.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.581,"y":19.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"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":28.858,"clr":-1,"A":"left","R":[{"T":"Divide%20line%206a%20by%20line%206b.%20Show%20as%20a%20decimal%20to%20at%20least%204%20places%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.161,"y":20.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.223,"y":20.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":20.09,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"6c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.86,"y":20.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"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":10.985000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205%20by%20line%206c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":20.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.143,"y":20.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":12.337000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206d%20from%20line%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":22.34,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.215,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":23.215,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.215,"w":31.192000000000007,"clr":-1,"A":"left","R":[{"T":"Reduction%20due%20to%20energy%20credit.%20Enter%20the%20total%20amount%20allowed%20under%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":23.902,"w":28.984999999999992,"clr":-1,"A":"left","R":[{"T":"section%2038%20for%20this%20and%20all%20prior%20tax%20years%20by%20reason%20of%20the%20energy%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":26.597,"clr":-1,"A":"left","R":[{"T":"percentage%20with%20respect%20to%20the%20property%20used%20in%20the%20project%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":24.59,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":24.59,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"8a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":25.465,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.465,"w":31.064000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20recaptured%20with%20respect%20to%20the%20amount%20entered","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":26.152,"w":30.727999999999994,"clr":-1,"A":"left","R":[{"T":"on%20line%208a%20under%20section%2049(b)%20or%2050(a)%20for%20this%20and%20any%20prior%20tax%20year%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.902,"y":26.84,"w":19.243999999999996,"clr":-1,"A":"left","R":[{"T":"and%20under%20section%2038%20for%20any%20prior%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.015,"y":26.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.581,"y":26.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"8b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":27.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.59,"w":23.855,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208b%20from%20line%208a.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":27.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":27.59,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"8c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":29.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":12.281000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208c%20from%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":29.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.965,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":29.965,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.965,"w":30.859000000000005,"clr":-1,"A":"left","R":[{"T":"Reduction%20due%20to%20enhanced%20oil%20recovery%20credit%20(Form%208830).%20Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.652,"w":30.29899999999999,"clr":-1,"A":"left","R":[{"T":"total%20amount%20allowed%20for%20this%20and%20all%20prior%20tax%20years%20by%20reason%20of%20any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":31.340000000000003,"w":25.669,"clr":-1,"A":"left","R":[{"T":"enhanced%20oil%20recovery%20credit%20with%20respect%20to%20such%20project%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":31.340000000000003,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.179,"y":31.340000000000003,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"10a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.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":32.153,"w":30.707999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20enhanced%20oil%20recovery%20credit%20recapture%20with","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":32.84,"w":24.819999999999993,"clr":-1,"A":"left","R":[{"T":"respect%20to%20the%20amount%20on%20line%2010a%20for%20any%20prior%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.311,"y":32.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.151,"y":32.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"10b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":34.34,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":24.688999999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010b%20from%20line%2010a.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":49.252,"y":34.34,"w":20.834999999999994,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":80.742,"y":34.34,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"10c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010c%20from%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":35.84,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":39.98799999999997,"clr":-1,"A":"left","R":[{"T":"Nonconventional%20source%20fuel%20credit%20from%20partnerships%2C%20S%20corporations%2C%20estates%2C%20and%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":37.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":37.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":37.34,"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.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.965,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.965,"w":43.65999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012.%20Estates%20and%20trusts%2C%20go%20to%20line%2014.%20Partnerships%20and%20S%20corporations%2C%20stop%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":39.653,"w":44.070999999999955,"clr":-1,"A":"left","R":[{"T":"and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on%20Form%203800%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.876,"y":40.34,"w":3.2230000000000003,"clr":-1,"A":"left","R":[{"T":"line%201o%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.239,"y":40.34,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":32.375,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":41.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":43.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":43.34,"w":40.49599999999999,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20subtract%20line%2014%20from%20line%2013.%20Report%20this%20amount%20on%20Form%203800%2C%20line%201o%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":43.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":43.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":43.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":43.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":44.108,"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":60.286,"y":44.126,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037716X","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.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":44.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8907","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":44.072,"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":6786,"AM":1024,"x":6.538,"y":5.869,"w":71.259,"h":0.858,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6787,"AM":1024,"x":79.432,"y":5.866,"w":19.506,"h":0.861,"TU":"Identifying number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"INSERVDT","EN":0},"TI":6788,"AM":0,"x":39.807,"y":8.055,"w":18.719,"h":0.833,"TU":"Line 1. Date the facility was placed in service.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BARREL","EN":0},"TI":6789,"AM":0,"x":62.217,"y":9.508,"w":13.905,"h":0.949,"TU":"Line 2(a). Barrel-of-oil equivalents. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BARRELB","EN":0},"TI":6790,"AM":0,"x":80.781,"y":9.505,"w":13.905,"h":0.949,"TU":"Line 2(b). Barrel-of-oil equivalents. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INFLATN","EN":0},"TI":6791,"AM":0,"x":62.01,"y":11.637,"w":14.737,"h":1.128,"TU":"Line 3(a). Enter the product of $3 multiplied by the inflation adjustment factor (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INFLATNB","EN":0},"TI":6792,"AM":0,"x":80.775,"y":11.596,"w":14.352,"h":1.128,"TU":"Line 3(b). Enter the product of $3 multiplied by the inflation adjustment factor (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT","EN":0},"TI":6793,"AM":1024,"x":61.896,"y":13.093,"w":14.418,"h":1.158},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTB","EN":0},"TI":6794,"AM":1024,"x":80.781,"y":13.181,"w":14.418,"h":1.018},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOTAL","EN":0},"TI":6795,"AM":1024,"x":84.252,"y":14.477,"w":10.995,"h":1.251},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GOVTRED","EN":0},"TI":6796,"AM":0,"x":65.63,"y":17.649,"w":11.172,"h":1.047,"TU":"Line 6a. Reduction due to government monies and subsidized financing. Enter the total of government grants, proceeds of tax-exempt government obligations, and subsidized energy financing for the project for this and all prior tax years."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTADDS","EN":0},"TI":6797,"AM":0,"x":65.799,"y":19.151,"w":10.579,"h":1.024,"TU":"Line 6b. Enter the total of additions to the capital account for the project for this and all prior tax years."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DIVIDE","EN":0},"TI":6798,"AM":1024,"x":65.804,"y":20.235,"w":10.686,"h":0.833,"TU":"6c","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT7","EN":0},"TI":6799,"AM":1024,"x":84.436,"y":20.784,"w":10.908,"h":0.864},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR8","EN":0},"TI":6800,"AM":1024,"x":84.336,"y":21.908,"w":10.787,"h":1.327},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ENRGYRED","EN":0},"TI":6801,"AM":0,"x":65.773,"y":24.323,"w":10.787,"h":1.162,"TU":"Line 8a. Reduction due to energy credit. Enter the total amount allowed under section 38 for this and all prior tax years by reason of the energy percentage with respect to the property used in the project."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTRECAP","EN":0},"TI":6802,"AM":0,"x":65.65,"y":26.582,"w":10.746,"h":1.134,"TU":"Line 8b. Enter the total amount recaptured with respect to the amount entered on line 8a under section 49(b) or 50(a) for this and any prior tax year, and under section 38 for any prior tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR9","EN":0},"TI":6803,"AM":1024,"x":84.398,"y":27.599,"w":10.663,"h":0.879,"TU":"8c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR10","EN":0},"TI":6804,"AM":1024,"x":84.336,"y":28.931,"w":10.787,"h":1.054},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OILRECRD","EN":0},"TI":6805,"AM":0,"x":65.773,"y":31.073,"w":10.787,"h":1.162,"TU":"Line 10a. Reduction due to enhanced oil recovery credit (Form 8830). Enter the total amount allowed for this and all prior tax years by reason of any enhanced oil recovery credit with respect to such project."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOILREC","EN":0},"TI":6806,"AM":0,"x":65.773,"y":32.611,"w":10.787,"h":1.117,"TU":"line 10b. Enter the total amount of enhanced oil recovery credit recapture with respect to the amount on line 10a for any prior tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR11","EN":0},"TI":6807,"AM":1024,"x":84.398,"y":34.334,"w":10.663,"h":0.893,"TU":"10c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR12","EN":0},"TI":6808,"AM":1024,"x":84.336,"y":35.711,"w":10.787,"h":1.024},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PSTHRUCR","EN":0},"TI":6809,"AM":0,"x":84.336,"y":37.181,"w":10.787,"h":1.047,"TU":"Line 12. Nonconventional source fuel credit from partnerships, S corporations, estates and trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TENTCR1","EN":0},"TI":6810,"AM":1024,"x":84.398,"y":40.144,"w":10.663,"h":1.091,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENALLOC","EN":0},"TI":6811,"AM":1024,"x":84.336,"y":41.611,"w":10.787,"h":1.124,"TU":"14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTRUST","EN":0},"TI":6812,"AM":1024,"x":84.336,"y":43.087,"w":10.787,"h":1.133,"TU":"15"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8908.content.txt b/test/data/fd/form/F8908.content.txt new file mode 100755 index 00000000..c7cfa184 --- /dev/null +++ b/test/data/fd/form/F8908.content.txt @@ -0,0 +1,80 @@ +Form +8908 +Department of the Treasury +Internal Revenue Service +Energy Efficient Home Credit +a + +Attach to your tax return. +OMB No. 1545-1979 +20 +13 +Attachment +Sequence No. +153 +a + +Information about Form 8908 and its instructions is at +www.irs.gov/form8908. + +Name(s) shown on return +Identifying number +1 + + +a + + +Enter the total number of qualified energy efficient homes including +qualified energy efficient manufactured homes meeting the 50% +standard that were sold or leased to another person for use as a +residence during the tax year (see instructions) +........ +1a +b +Multiply line 1a by $2,000 +........................ +1b +2 + +a + +Enter the total number of qualified energy efficient manufactured +homes meeting the 30% standard that were sold or leased to another +person for use as a residence during the tax year (see instructions) . . +2a +b +Multiply line 2a by $1,000 +........................ +2b +3 +Energy efficient home credit from partnerships and S corporations +........... +3 +4 +Add lines 1b, 2b, and 3. Partnerships and S corporations, report this amount on Schedule K. All +others, report this amount on Form 3800, line 1p +................. +4 + + + + + + + + + + + + + + + + +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37718T +Form +8908 +(2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8908.fields.json b/test/data/fd/form/F8908.fields.json new file mode 100755 index 00000000..9cf4626b --- /dev/null +++ b/test/data/fd/form/F8908.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"QEEH","type":"number","calc":false,"value":""},{"id":"QEEHCR","type":"number","calc":true,"value":""},{"id":"QEEMH","type":"number","calc":false,"value":""},{"id":"QEEMHCR","type":"number","calc":true,"value":""},{"id":"PSEEHCR","type":"number","calc":false,"value":""},{"id":"EEHCR","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8908.json b/test/data/fd/form/F8908.json new file mode 100755 index 00000000..1d4c8169 --- /dev/null +++ b/test/data/fd/form/F8908.json @@ -0,0 +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.192,"y":5.251,"w":1.5,"l":14.891},{"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":20.997,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.125,"l":19.886},{"oc":"#221f1f","x":61.834,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":6.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":10.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":10.501,"w":0.75,"l":3.798},{"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":11.223},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":15.001,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.19,"y":16.501,"w":1.5,"l":92.813},{"oc":"#221f1f","x":6.147,"y":47.308,"w":1.5,"l":36.178},{"oc":"#221f1f","x":42.239,"y":47.308,"w":1.5,"l":45.874},{"oc":"#221f1f","x":88.027,"y":47.308,"w":1.5,"l":11.018}],"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":79.202,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":65.59,"y":6.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":6.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":6.728,"w":0.75,"l":3.039},{"oc":"#221f1f","x":80.44,"y":6.728,"w":0.75,"l":3.039},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":13.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":13.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":14.985,"w":0.75,"l":1.531},{"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}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":80.44,"y":6.751,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":10.501,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"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.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8908","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.985,"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.985,"y":4.251,"w":11.649000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":36.802,"y":2.383,"w":12.919999999999998,"clr":-1,"A":"left","R":[{"T":"Energy%20Efficient%20Home%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.497,"y":3.3789999999999996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.767,"y":3.4720000000000004,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","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-1979","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":91.204,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.857,"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.304,"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.303,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"153","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":26.413,"y":4.129,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.683,"y":4.222,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208908%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.123,"y":4.222,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8908.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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":79.64,"y":4.938,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":6.665,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":6.665,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.665,"w":30.192000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20number%20of%20qualified%20energy%20efficient%20homes%20including%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":7.352,"w":29.175,"clr":-1,"A":"left","R":[{"T":"qualified%20energy%20efficient%20manufactured%20homes%20meeting%20the%20%2050%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":8.04,"w":28.947999999999993,"clr":-1,"A":"left","R":[{"T":"standard%20that%20were%20sold%20or%20leased%20to%20another%20person%20for%20use%20as%20%20a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":8.727,"w":21.09500000000001,"clr":-1,"A":"left","R":[{"T":"residence%20during%20the%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.136,"y":8.727,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":8.84,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","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":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":11.672000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%201a%20by%20%242%2C000%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":9.59,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.143,"y":9.59,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.353,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":10.353,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.353,"w":29.061999999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20number%20of%20qualified%20energy%20efficient%20manufactured%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.04,"w":31.340999999999998,"clr":-1,"A":"left","R":[{"T":"homes%20meeting%20the%2030%25%20standard%20that%20were%20sold%20or%20leased%20to%20another%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":11.727,"w":30.226000000000003,"clr":-1,"A":"left","R":[{"T":"person%20for%20use%20as%20a%20residence%20during%20the%20tax%20year%20(see%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.274,"y":11.727,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.609,"y":11.84,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"2a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":12.59,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":11.672000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%202a%20by%20%241%2C000%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":12.59,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.143,"y":12.59,"w":1.445,"clr":-1,"A":"left","R":[{"T":"2b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.09,"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.09,"w":29.801000000000002,"clr":-1,"A":"left","R":[{"T":"Energy%20efficient%20home%20credit%20from%20partnerships%20and%20S%20corporations%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":14.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":14.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":14.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.79,"w":42.882999999999974,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201b%2C%202b%2C%20and%203.%20Partnerships%20and%20S%20corporations%2C%20report%20this%20amount%20on%20Schedule%20K.%20All%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":15.477,"w":21.916000000000004,"clr":-1,"A":"left","R":[{"T":"others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%201p%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.122,"y":15.477,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.165,"w":26.239,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.513,"y":47.183,"w":7.614000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037718T%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.01,"y":47.129,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":47.129,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8908%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.453,"y":47.129,"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":"NAME","EN":0},"TI":6813,"AM":1024,"x":6.229,"y":5.768,"w":72.848,"h":0.842,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6814,"AM":1024,"x":79.772,"y":5.724,"w":18.886,"h":0.848,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QEEH","EN":0},"TI":6815,"AM":0,"x":65.659,"y":8.58,"w":10.952,"h":1.1,"TU":"Line 1a. Enter the total number of qualified energy efficient homes including qualified energy efficient manufactured homes meeting the 50% standard that were sold or leased to another person for use as a residence during the tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QEEHCR","EN":0},"TI":6816,"AM":1024,"x":84.416,"y":9.699,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QEEMH","EN":0},"TI":6817,"AM":0,"x":65.612,"y":11.546,"w":10.952,"h":1.099,"TU":"Line 2a. Enter the total number of qualified energy efficient manufactured homes meeting the 30% standard that were sold or leased to another person for use as a residence during the tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QEEMHCR","EN":0},"TI":6818,"AM":1024,"x":84.482,"y":12.593,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PSEEHCR","EN":0},"TI":6819,"AM":0,"x":84.253,"y":13.878,"w":10.952,"h":1.1,"TU":"Line 3. Energy efficient home credit from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EEHCR","EN":0},"TI":6820,"AM":1024,"x":84.434,"y":15.367,"w":10.952,"h":1.1}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8909.content.txt b/test/data/fd/form/F8909.content.txt new file mode 100755 index 00000000..9b4cfa75 --- /dev/null +++ b/test/data/fd/form/F8909.content.txt @@ -0,0 +1,215 @@ +Form +8909 +Department of the Treasury +Internal Revenue Service +Energy Efficient Appliance Credit +a + +Attach to your tax return. + +a + +Information about Form 8909 and its instructions is at +www.irs.gov/form8909 +. +OMB No. 1545-2055 +20 +13 +Attachment +Sequence No. + +159 +Name(s) shown on return +Identifying number +Part I +Dishwashers +(see instructions) +(a) +Type A +(b) +Type B +1 +Enter the number of eligible dishwashers produced in calendar year 2013 +1 +2 +Enter the average number of eligible dishwashers produced in +the 2 prior calendar years +............ +2 +3 +Subtract line 2 from line 1 +............ +3 + 4 +Applicable amount +.............. +4 + 5 +Multiply line 3 by line 4 +............. +5 +6 +Add the amounts of line 5 in columns (a) and (b) +................. +6 +Part II +Clothes Washers +(see instructions) +7 +Enter the number of eligible clothes washers produced in calendar year 2013 +7 +8 + +Enter the average number of eligible clothes washers produced in the 2 prior +calendar years +..................... +8 +9 +Subtract line 8 from line 7 +................. +9 +10 +Applicable amount +.................... +10 +11 +Multiply line 9 by line 10 +.................. +11 +12 +Enter the amount from line 11 +....................... +12 +Part III +Refrigerators +(see instructions) +(a) +Type A +(b) +Type B +13 +Enter the number of eligible refrigerators produced in calendar year 2013 +13 +14 + +Enter the average number of eligible refrigerators produced in +the 2 prior calendar years +............ +14 +15 +Subtract line 14 from line 13 +........... +15 +16 +Applicable amount +............... +16 +17 +Multiply line 15 by line 16 +............ +17 +18 +Add the amounts on line 17 in columns (a) and (b) +................ +18 +Part IV +Current Year Energy Appliance Credit +19 Total. +Add lines 6, 12, and 18 +....................... +19 +20 +Enter 4% of average annual gross receipts (see instructions) +............. +20 +21a +Maximum credit base amount (see instructions) +......... +21a +b +Enter the amount from line 19 of your *2012 Form 8909 +....... +21b +c +Enter the amount from line 22a of your *2012 Form 8909 +...... +21c +d +Enter the amount from line 22b of your *2012 Form 8909 +...... +21d +e +Add lines 21c and 21d +................. +21e +f +Subtract line 21e from line 21b +............... +21f +g +Enter the amount from line 20 of your *2012 Form 8909 +...... +21g +h +Enter the +smallest +of the amount on line 21a, 21f, or 21g +...... +21h +i +Enter the amount from line 21h of your 2012 Form 8909 +...... +21i +j +Add lines 21h and 21i +.................. +21j +k +Subtract line 21j from line 21a +....................... +21k +22a +Enter the amount from line 12 +............... +22a +b +Enter the amount from line 17, column (b) +........... +22b +c +Add lines 22a and 22b +......................... +22c +23 +Maximum credit amount. Add lines 21k and 22c +................. +23 +24 +Enter the +smallest + of the amount on line 19, 20, or 23 +............... +24 +25 +Energy efficient appliance credit from partnerships, S corporations, cooperatives, estates, and trusts (see instructions) +25 +26 + +Add lines 24 and 25. Cooperatives, estates, and trusts, go to line 27. Partnerships and S +corporations, stop here and report this amount on Schedule K. All others, stop here and report this +amount on Form 3800, line 1q +....................... +26 +27 +Amount allocated to beneficiaries of the estate or trust, or to patrons of the cooperative (see instructions) +27 +28 +Cooperatives, estates, and trusts, subtract line 27 from line 26. Report this amount on Form 3800, line 1q +28 +*Include amounts from predecessors. +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37719E +Form +8909 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8909.fields.json b/test/data/fd/form/F8909.fields.json new file mode 100755 index 00000000..ae2e9c01 --- /dev/null +++ b/test/data/fd/form/F8909.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DPRODTYB","type":"number","calc":false,"value":""},{"id":"DPRODTYC","type":"number","calc":false,"value":""},{"id":"DPRODPRB","type":"number","calc":false,"value":""},{"id":"DPRODPRC","type":"number","calc":false,"value":""},{"id":"DDIFFB","type":"number","calc":true,"value":""},{"id":"DDIFFC","type":"number","calc":true,"value":""},{"id":"DAPPLICB","type":"number","calc":true,"value":""},{"id":"DAPPLICC","type":"number","calc":true,"value":""},{"id":"DCREDITB","type":"number","calc":true,"value":""},{"id":"DCREDITC","type":"number","calc":true,"value":""},{"id":"DCREDTOT","type":"number","calc":true,"value":""},{"id":"CPRODTYC","type":"number","calc":false,"value":""},{"id":"CPRODPRC","type":"number","calc":false,"value":""},{"id":"CDIFFC","type":"number","calc":true,"value":""},{"id":"CAPPLICC","type":"number","calc":true,"value":""},{"id":"CCREDITC","type":"number","calc":true,"value":""},{"id":"TOTCCCR","type":"number","calc":true,"value":""},{"id":"REFRIGB","type":"number","calc":false,"value":""},{"id":"REFRIGC","type":"number","calc":false,"value":""},{"id":"RPRODB","type":"number","calc":false,"value":""},{"id":"RPRODC","type":"number","calc":false,"value":""},{"id":"RDIFFB","type":"number","calc":true,"value":""},{"id":"RDIFFC","type":"number","calc":true,"value":""},{"id":"RAPPLICB","type":"number","calc":true,"value":""},{"id":"RAPPLICC","type":"number","calc":true,"value":""},{"id":"RCREDB","type":"number","calc":true,"value":""},{"id":"RCREDC","type":"number","calc":true,"value":""},{"id":"TOTRCR","type":"number","calc":true,"value":""},{"id":"TOTALCR","type":"number","calc":true,"value":""},{"id":"MAXCR","type":"number","calc":true,"value":""},{"id":"AAGR","type":"number","calc":false,"value":""},{"id":"FRL19","type":"number","calc":false,"value":""},{"id":"FRL21B","type":"number","calc":false,"value":""},{"id":"FR21C","type":"number","calc":false,"value":""},{"id":"ADD1","type":"number","calc":true,"value":""},{"id":"SUBTR1","type":"number","calc":true,"value":""},{"id":"FRL20","type":"number","calc":false,"value":""},{"id":"SMALL","type":"number","calc":true,"value":""},{"id":"AMT09","type":"number","calc":false,"value":""},{"id":"SUMHI","type":"number","calc":true,"value":""},{"id":"SUBTR2","type":"number","calc":true,"value":""},{"id":"RPRECR","type":"number","calc":true,"value":""},{"id":"FRL17","type":"number","calc":true,"value":""},{"id":"ADD2","type":"number","calc":true,"value":""},{"id":"RTOTCR","type":"number","calc":true,"value":""},{"id":"SMALLEST","type":"number","calc":true,"value":""},{"id":"EEACR","type":"number","calc":false,"value":""},{"id":"TOTEEACR","type":"number","calc":true,"value":""},{"id":"ALLOCATD","type":"number","calc":true,"value":""},{"id":"ESTRCOOP","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8909.json b/test/data/fd/form/F8909.json new file mode 100755 index 00000000..4c4b9150 --- /dev/null +++ b/test/data/fd/form/F8909.json @@ -0,0 +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.2000000000000002,"l":71.861},{"oc":"#221f1f","x":77.922,"y":6.751,"w":1.2000000000000002,"l":21.123},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":7.501,"w":0.75,"l":86.711},{"oc":"#221f1f","x":55.69,"y":9.001,"w":0.75,"l":3.712},{"oc":"#221f1f","x":55.69,"y":7.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":59.359,"y":9.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":70.497,"y":9.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":55.647,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":70.497,"y":9.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":55.647,"y":11.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":11.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":70.497,"y":11.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":55.647,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":70.497,"y":12,"w":0.75,"l":11.223},{"oc":"#221f1f","x":55.647,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":12.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":68.022,"y":12.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":70.497,"y":12.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":79.159,"y":12.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":55.647,"y":13.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":13.499,"w":1.125,"l":8.748},{"oc":"#221f1f","x":68.022,"y":13.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":70.497,"y":13.499,"w":1.125,"l":8.748},{"oc":"#221f1f","x":79.159,"y":13.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.634,"y":7.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":81.634,"y":13.501,"w":1.125,"l":17.411},{"oc":"#221f1f","x":81.634,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":85.347,"y":14.251,"w":1.125,"l":9.986},{"oc":"#221f1f","x":95.247,"y":14.251,"w":1.125,"l":3.745},{"oc":"#221f1f","x":6.147,"y":14.251,"w":1.2000000000000002,"l":6.273},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":14.251,"w":1.2000000000000002,"l":86.711},{"oc":"#221f1f","x":12.334,"y":15.001,"w":0.75,"l":86.711},{"oc":"#221f1f","x":66.509,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.222,"y":15.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.509,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":70.222,"y":17.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":66.509,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.222,"y":18.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.509,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":70.222,"y":18.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":78.884,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.509,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":70.222,"y":19.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":78.884,"y":19.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.634,"y":15.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":81.634,"y":19.501,"w":1.125,"l":17.411},{"oc":"#221f1f","x":6.147,"y":20.251,"w":1.2000000000000002,"l":6.273},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":20.251,"w":1.2000000000000002,"l":86.711},{"oc":"#221f1f","x":12.334,"y":21.001,"w":0.75,"l":86.711},{"oc":"#221f1f","x":55.647,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":55.647,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":70.497,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":55.647,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":70.497,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":55.647,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":24.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":70.497,"y":24.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":55.647,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":70.497,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":55.647,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":26.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":68.022,"y":26.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":70.497,"y":26.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":79.159,"y":26.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":55.647,"y":27.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":27.001,"w":1.125,"l":8.748},{"oc":"#221f1f","x":68.022,"y":27.001,"w":1.125,"l":2.561},{"oc":"#221f1f","x":70.497,"y":27.001,"w":1.125,"l":8.748},{"oc":"#221f1f","x":79.159,"y":27.001,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.634,"y":21.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":81.634,"y":27.001,"w":1.125,"l":17.411},{"oc":"#221f1f","x":6.121,"y":27.751,"w":1.2000000000000002,"l":6.299},{"oc":"#221f1f","x":6.121,"y":28.501,"w":0.75,"l":6.299},{"oc":"#221f1f","x":12.308,"y":27.751,"w":1.2000000000000002,"l":86.737},{"oc":"#221f1f","x":12.308,"y":28.501,"w":0.75,"l":86.737},{"oc":"#221f1f","x":81.634,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":29.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":30.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":30.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":81.634,"y":37.501,"w":1.125,"l":17.411},{"oc":"#221f1f","x":64.309,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":31.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":31.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":32.251,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":33.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":33.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":34.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":35.251,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":36.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":36.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":37.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":38.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":39.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":64.309,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":39.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":38.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":81.634,"y":39.751,"w":1.125,"l":17.411},{"oc":"#221f1f","x":81.634,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":40.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":41.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":42.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":85.347,"y":42.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":95.247,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":45.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":45.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":85.347,"y":45.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":95.247,"y":45.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.634,"y":46.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":46.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":46.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":47.251,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":47.251,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"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":77.965,"y":5.235,"w":0.75,"l":1.541},{"oc":"#221f1f","x":59.402,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":55.69,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":70.54,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":9.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":55.69,"y":9.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":9.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":70.54,"y":9.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"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":68.065,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":55.69,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":12.734,"w":0.75,"l":0.788},{"oc":"#221f1f","x":68.065,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"y":12.734,"w":0.75,"l":0.788},{"oc":"#221f1f","x":79.202,"y":12.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":7.485,"w":0.75,"l":6.039},{"oc":"#221f1f","x":85.39,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":85.39,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.265,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.552,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.265,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.552,"y":15.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":70.265,"y":15.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":70.265,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.552,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.265,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.265,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.552,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.265,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":78.927,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.265,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.552,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.265,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":78.927,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":14.985,"w":0.75,"l":4.539},{"oc":"#221f1f","x":85.39,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":55.69,"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":70.54,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"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":70.54,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":23.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":23.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":70.54,"y":23.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":55.69,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.54,"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":55.69,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.54,"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":81.677,"y":20.985,"w":0.75,"l":6.039},{"oc":"#221f1f","x":85.39,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":85.39,"y":28.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":85.39,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":68.065,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":29.985,"w":0.75,"l":7.539},{"oc":"#221f1f","x":68.065,"y":30.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":30.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":30.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":31.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":31.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":31.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":32.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":32.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":32.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":33.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":33.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":33.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":36.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":85.39,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":38.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":38.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":38.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":38.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":38.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":85.39,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.39,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":85.39,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.39,"y":41.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":41.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":41.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":85.39,"y":42.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.677,"y":42.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":42.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.39,"y":44.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.677,"y":44.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":85.39,"y":45.735,"w":0.75,"l":0.779},{"oc":"#221f1f","x":81.677,"y":45.735,"w":0.75,"l":0.779},{"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":"#221f1f","x":6.19,"y":6.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":55.69,"y":7.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":7.501,"w":17.325,"h":6,"clr":-1},{"oc":"#221f1f","x":6.19,"y":14.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":15.001,"w":17.325,"h":4.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":20.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":55.69,"y":21.001,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":21.001,"w":17.325,"h":6,"clr":-1},{"oc":"#221f1f","x":6.19,"y":27.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":30.001,"w":17.325,"h":7.5,"clr":-1},{"oc":"#bebfc1","x":81.677,"y":38.251,"w":17.325,"h":1.5,"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.08,"clr":-1,"A":"left","R":[{"T":"8909","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.745,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.245,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":34.588,"y":2.419,"w":14.759999999999994,"clr":-1,"A":"left","R":[{"T":"Energy%20Efficient%20Appliance%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.448,"y":3.519,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.816,"y":3.612,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.364,"y":4.202,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.732,"y":4.296,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208909%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.172,"y":4.296,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8909","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.946,"y":4.296,"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-2055","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":91.204,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":84.934,"y":3.822,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":84.934,"y":4.229,"w":6.353,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":92.365,"y":4.229,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"159","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"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.746,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.572,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.365,"y":6.572,"w":6.703000000000001,"clr":-1,"A":"left","R":[{"T":"Dishwashers%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.885,"y":6.572,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":63.819,"y":7.334,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.186,"y":7.959,"w":3.278,"clr":-1,"A":"left","R":[{"T":"Type%20A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.928,"y":7.334,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.309,"y":7.959,"w":3.2969999999999997,"clr":-1,"A":"left","R":[{"T":"Type%20B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":32.63599999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20eligible%20dishwashers%20produced%20in%20calendar%20year%202013","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":56.866,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.715,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.653,"w":27.929999999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20average%20number%20of%20eligible%20dishwashers%20produced%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":11.668000000000003,"clr":-1,"A":"left","R":[{"T":"the%202%20prior%20calendar%20years%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":10.34,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.866,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":11.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.866,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.124,"y":11.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.839,"w":8.929,"clr":-1,"A":"left","R":[{"T":"Applicable%20amount%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":11.839,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.866,"y":11.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.124,"y":12.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.589,"w":10.448000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%203%20by%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":12.589,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.866,"y":12.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":21.581999999999997,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20of%20line%205%20in%20columns%20(a)%20and%20(b)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":13.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.853,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":14.072,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.365,"y":14.072,"w":8.648000000000001,"clr":-1,"A":"left","R":[{"T":"Clothes%20Washers%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.228,"y":14.072,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":34.839999999999975,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20eligible%20clothes%20washers%20produced%20in%20calendar%20year%202013%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.728,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.652999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.652999999999999,"w":34.431,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20average%20number%20of%20eligible%20clothes%20washers%20produced%20in%20the%202%20prior%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":16.34,"w":6.815000000000001,"clr":-1,"A":"left","R":[{"T":"calendar%20years%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.432,"y":16.34,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.728,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":17.09,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.728,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":8.651,"clr":-1,"A":"left","R":[{"T":"Applicable%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":17.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.298,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":10.726000000000003,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%209%20by%20line%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":18.59,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.298,"y":18.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":13.802000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2011%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":19.34,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.423,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"x":6.331,"y":20.072,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.365,"y":20.072,"w":6.869,"clr":-1,"A":"left","R":[{"T":"Refrigerators%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":25.171,"y":20.072,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":63.819,"y":20.789,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.186,"y":21.464,"w":3.278,"clr":-1,"A":"left","R":[{"T":"Type%20A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.928,"y":20.789,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.309,"y":21.464,"w":3.2969999999999997,"clr":-1,"A":"left","R":[{"T":"Type%20B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":32.74599999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20eligible%20refrigerators%20produced%20in%20calendar%20year%202013%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":56.436,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.153,"w":27.761999999999993,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20average%20number%20of%20eligible%20refrigerators%20produced%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":11.668000000000003,"clr":-1,"A":"left","R":[{"T":"the%202%20prior%20calendar%20years%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.436,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":24.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014%20from%20line%2013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":24.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.436,"y":24.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":8.651,"clr":-1,"A":"left","R":[{"T":"Applicable%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":25.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.436,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":11.560000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2015%20by%20line%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":26.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.436,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":22.398000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%2017%20in%20columns%20(a)%20and%20(b)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":26.84,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.423,"y":26.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":6.296,"y":27.572,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.365,"y":27.572,"w":17.944000000000003,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Energy%20Appliance%20Credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":3.2399999999999998,"clr":-1,"A":"left","R":[{"T":"Total.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.901,"y":28.34,"w":10.283000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%2C%2012%2C%20and%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":28.34,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.423,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":27.13200000000001,"clr":-1,"A":"left","R":[{"T":"Enter%204%25%20of%20average%20annual%20gross%20receipts%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":29.09,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.423,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.84,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"21a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":21.173000000000012,"clr":-1,"A":"left","R":[{"T":"Maximum%20credit%20base%20amount%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":29.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.654,"y":29.84,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"21a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":30.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":24.60300000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2019%20of%20your%20*2012%20Form%208909","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":30.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.626,"y":30.59,"w":1.723,"clr":-1,"A":"left","R":[{"T":"21b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.340000000000003,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":25.41800000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2022a%20of%20your%20*2012%20Form%208909%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":31.340000000000003,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.654,"y":31.340000000000003,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"21c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":25.19600000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2022b%20of%20your%20*2012%20Form%208909","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":32.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.626,"y":32.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"21d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":32.84,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":10.301,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2021c%20and%2021d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":32.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.654,"y":32.84,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"21e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":33.59,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":13.708000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021e%20from%20line%2021b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":33.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.841,"y":33.59,"w":1.445,"clr":-1,"A":"left","R":[{"T":"21f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":34.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":24.881000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2020%20of%20your%20*2012%20Form%208909%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":34.34,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.626,"y":34.34,"w":1.723,"clr":-1,"A":"left","R":[{"T":"21g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":35.09,"w":0.593,"clr":-1,"A":"left","R":[{"T":"h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.566,"y":35.09,"w":4.274,"clr":-1,"A":"left","R":[{"T":"smallest%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.177,"y":35.09,"w":16.766000000000005,"clr":-1,"A":"left","R":[{"T":"of%20the%20amount%20on%20line%2021a%2C%2021f%2C%20or%2021g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":35.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.64,"y":35.09,"w":1.705,"clr":-1,"A":"left","R":[{"T":"21h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":35.84,"w":0.258,"clr":-1,"A":"left","R":[{"T":"i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":24.80700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2021h%20of%20your%202012%20Form%208909","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":35.84,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.899,"y":35.84,"w":1.37,"clr":-1,"A":"left","R":[{"T":"21i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":36.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":9.671000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2021h%20and%2021i","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":36.59,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.883,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21j","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":37.34,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"k","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":13.893000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021j%20from%20line%2021a%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":37.34,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.979,"y":37.34,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"21k","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.09,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"22a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":13.524000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":38.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.654,"y":38.09,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"22a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":38.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":18.489000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2017%2C%20column%20(b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":38.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.626,"y":38.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"22b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":39.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":10.301,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2022a%20and%2022b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":39.59,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.979,"y":39.59,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"22c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":21.677000000000003,"clr":-1,"A":"left","R":[{"T":"Maximum%20credit%20amount.%20Add%20lines%2021k%20and%2022c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":40.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.423,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.09,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.566,"y":41.09,"w":3.996,"clr":-1,"A":"left","R":[{"T":"smallest","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.747,"y":41.09,"w":15.915000000000008,"clr":-1,"A":"left","R":[{"T":"%20of%20the%20amount%20on%20line%2019%2C%2020%2C%20or%2023%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":41.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.423,"y":41.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":52.91399999999995,"clr":-1,"A":"left","R":[{"T":"Energy%20efficient%20appliance%20credit%20from%20partnerships%2C%20S%20corporations%2C%20cooperatives%2C%20estates%2C%20and%20trusts%20(see%20instructions)%20","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":82.423,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":42.778,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.715,"w":39.659,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2024%20and%2025.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%2027.%20Partnerships%20and%20S%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":43.403,"w":44.02899999999998,"clr":-1,"A":"left","R":[{"T":"corporations%2C%20stop%20here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":44.09,"w":13.433000000000007,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Form%203800%2C%20line%201q","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.741,"y":44.09,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.423,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.84,"w":47.33999999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%2C%20or%20to%20patrons%20of%20the%20cooperative%20(see%20instructions)%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":82.423,"y":44.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":45.559,"w":47.496999999999964,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C%20subtract%20line%2027%20from%20line%2026.%20Report%20this%20amount%20on%20Form%203800%2C%20%20line%201q%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":82.423,"y":45.588,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.309,"w":17.023000000000003,"clr":-1,"A":"left","R":[{"T":"*Include%20amounts%20from%20predecessors.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":47.108,"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":60.286,"y":47.126,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037719E","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":47.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":47.01,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8909","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":47.01,"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":6821,"AM":1024,"x":6.229,"y":5.836,"w":71.61,"h":0.892,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6822,"AM":1024,"x":78.107,"y":5.836,"w":20.872,"h":0.892,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPRODTYB","EN":0},"TI":6823,"AM":0,"x":59.344,"y":9.038,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPRODTYC","EN":0},"TI":6824,"AM":0,"x":70.905,"y":9.057,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPRODPRB","EN":0},"TI":6825,"AM":0,"x":59.45,"y":10.449,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPRODPRC","EN":0},"TI":6826,"AM":0,"x":71.011,"y":10.403,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DDIFFB","EN":0},"TI":6827,"AM":1024,"x":59.503,"y":11.295,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DDIFFC","EN":0},"TI":6828,"AM":1024,"x":70.641,"y":11.295,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DAPPLICB","EN":0},"TI":6829,"AM":1024,"x":59.798,"y":12.016,"w":10.346,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DAPPLICC","EN":0},"TI":6830,"AM":1024,"x":71.032,"y":12.035,"w":10.346,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DCREDITB","EN":0},"TI":6831,"AM":1024,"x":59.736,"y":12.842,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DCREDITC","EN":0},"TI":6832,"AM":1024,"x":70.705,"y":12.807,"w":10.734,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DCREDTOT","EN":0},"TI":6833,"AM":1024,"x":85.194,"y":13.468,"w":10.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CPRODTYC","EN":0},"TI":6834,"AM":0,"x":70.313,"y":15.049,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CPRODPRC","EN":0},"TI":6835,"AM":0,"x":70.455,"y":15.901,"w":10.89,"h":1.327},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CDIFFC","EN":0},"TI":6836,"AM":1024,"x":70.366,"y":17.292,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CAPPLICC","EN":0},"TI":6837,"AM":1024,"x":70.545,"y":18.044,"w":10.803,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CCREDITC","EN":0},"TI":6838,"AM":1024,"x":70.239,"y":18.809,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCCCR","EN":0},"TI":6839,"AM":1024,"x":85.575,"y":19.422,"w":10.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFRIGB","EN":0},"TI":6840,"AM":0,"x":59.503,"y":22.538,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFRIGC","EN":0},"TI":6841,"AM":0,"x":70.641,"y":22.538,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RPRODB","EN":0},"TI":6842,"AM":0,"x":59.586,"y":23.401,"w":10.787,"h":1.327},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RPRODC","EN":0},"TI":6843,"AM":0,"x":70.723,"y":23.401,"w":10.787,"h":1.327},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RDIFFB","EN":0},"TI":6844,"AM":1024,"x":59.503,"y":24.795,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RDIFFC","EN":0},"TI":6845,"AM":1024,"x":70.641,"y":24.795,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RAPPLICB","EN":0},"TI":6846,"AM":1024,"x":59.718,"y":25.54,"w":10.706,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RAPPLICC","EN":0},"TI":6847,"AM":1024,"x":70.781,"y":25.561,"w":10.458,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCREDB","EN":0},"TI":6848,"AM":1024,"x":59.629,"y":26.222,"w":10.83,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCREDC","EN":0},"TI":6849,"AM":1024,"x":70.641,"y":26.222,"w":10.455,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTRCR","EN":0},"TI":6850,"AM":1024,"x":85.491,"y":27.045,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALCR","EN":0},"TI":6851,"AM":1024,"x":85.491,"y":28.538,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXCR","EN":0},"TI":6852,"AM":1024,"x":68.144,"y":29.935,"w":9.889,"h":0.835},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AAGR","EN":0},"TI":6853,"AM":0,"x":85.365,"y":29.379,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRL19","EN":0},"TI":6854,"AM":0,"x":68.166,"y":30.788,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRL21B","EN":0},"TI":6855,"AM":0,"x":68.166,"y":31.545,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FR21C","EN":0},"TI":6856,"AM":0,"x":68.166,"y":32.295,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":6857,"AM":1024,"x":68.166,"y":33.045,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR1","EN":0},"TI":6858,"AM":1024,"x":68.166,"y":33.795,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRL20","EN":0},"TI":6859,"AM":0,"x":68.166,"y":34.545,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALL","EN":0},"TI":6860,"AM":1024,"x":68.166,"y":35.295,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT09","EN":0},"TI":6861,"AM":0,"x":68.166,"y":36.038,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUMHI","EN":0},"TI":6862,"AM":1024,"x":68.166,"y":36.795,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR2","EN":0},"TI":6863,"AM":1024,"x":85.491,"y":37.545,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RPRECR","EN":0},"TI":6864,"AM":1024,"x":68.186,"y":38.258,"w":9.673,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRL17","EN":0},"TI":6865,"AM":1024,"x":68.04,"y":39.091,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD2","EN":0},"TI":6866,"AM":1024,"x":85.491,"y":39.795,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RTOTCR","EN":0},"TI":6867,"AM":1024,"x":85.491,"y":40.538,"w":9.714,"h":0.833,"TU":"23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLEST","EN":0},"TI":6868,"AM":1024,"x":85.491,"y":41.288,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EEACR","EN":0},"TI":6869,"AM":0,"x":85.491,"y":42.038,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTEEACR","EN":0},"TI":6870,"AM":1024,"x":85.594,"y":43.334,"w":9.508,"h":1.717},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOCATD","EN":0},"TI":6871,"AM":1024,"x":85.491,"y":45.038,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTRCOOP","EN":0},"TI":6872,"AM":1024,"x":85.491,"y":45.795,"w":9.714,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8910.content.txt b/test/data/fd/form/F8910.content.txt new file mode 100755 index 00000000..8990198b --- /dev/null +++ b/test/data/fd/form/F8910.content.txt @@ -0,0 +1,133 @@ +Form +8910 +Department of the Treasury +Internal Revenue Service +Alternative Motor Vehicle Credit +a + +Attach to your tax return. + +a + +Information about Form 8910 and its separate instructions is at +www.irs.gov/form8910. +OMB No. 1545-1998 +20 +13 +Attachment +Sequence No. +152 +Name(s) shown on return +Identifying number +Note. +• Use this form to claim the credit for certain alternative motor vehicles. +• Claim the credit for certain plug-in electric vehicles on Form 8936. +Part I +Tentative Credit +Use a separate column for each vehicle. If you need more columns, +use additional Forms 8910 and include the totals on lines 7 and 11. +(a) + Vehicle 1 + +(b) + Vehicle 2 + +1 +Year, make, and model of vehicle +....... +1 +2 +Vehicle identification number (see instructions) . . +2 +3 +Enter date vehicle was placed in service (MM/DD/YYYY) +3 +/ +/ +/ +/ +4 +Tentative credit + (see instructions for amount to enter) +4 +Next: + If you did NOT use your vehicle for business or investment purposes and did not have a credit from a partnership or +S corporation, skip Part II and go to Part III. All others, go to Part II. +Part II +Credit for Business/Investment Use Part of Vehicle + +5 +Business/investment use percentage (see instructions) +5 +% +% +6 +Multiply line 4 by line 5 +.......... +6 +7 +Add columns (a) and (b) on line 6 +.................. +7 +8 +Alternative motor vehicle credit from partnerships and S corporations +...... +8 +9 + +Business/investment use part of credit. +Add lines 7 and 8. Partnerships and S +corporations, stop here and report + +this amount on Schedule K. All others, report this +amount on Form 3800, line 1r +................... +9 +Part III +Credit for Personal Use Part of Vehicle + +10 + +If you skipped Part II, enter the amount from line 4. If +you completed Part II, subtract line 6 from line 4 . . +10 +11 +Add columns (a) and (b) on line 10 +................. +11 +12 +Enter the amount from Form 1040, line 46, or Form 1040NR, line 44 +...... +12 +13 +Personal credits from Form 1040 or 1040NR (see instructions) +........ +13 +14 +Subtract line 13 from line 12. If zero or less, enter -0- and stop here. You cannot claim +the personal use part of the credit +.................. +14 +15 + +Personal use part of credit. +Enter the + smaller +of line 11 or line 14 here and on Form +1040, line 53 (or Form + +1040NR, line 50). Check box +c + on that line and enter “8910” in +the space next to that box. If line 14 is smaller than line 11, see instructions +.... +15 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 37720F +Form +8910 + (2013) +Year +Make +Model +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8910.fields.json b/test/data/fd/form/F8910.fields.json new file mode 100755 index 00000000..ab264eb1 --- /dev/null +++ b/test/data/fd/form/F8910.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A1X_VEHYR_1_","type":"date","calc":false,"value":""},{"id":"A1X_VEHYR_2_","type":"date","calc":false,"value":""},{"id":"A1X_YRMK_1_","type":"alpha","calc":false,"value":""},{"id":"A1X_YRMK_2_","type":"alpha","calc":false,"value":""},{"id":"A1X_YMM_1_","type":"alpha","calc":false,"value":""},{"id":"A1X_YMM_2_","type":"alpha","calc":false,"value":""},{"id":"A1X_VIN_1_","type":"alpha","calc":false,"value":""},{"id":"A1X_VIN_2_","type":"alpha","calc":false,"value":""},{"id":"A1X_INSERV_1_","type":"date","calc":false,"value":""},{"id":"A1X_INSERV_2_","type":"date","calc":false,"value":""},{"id":"A1_TENCR_1_","type":"number","calc":false,"value":""},{"id":"A1_TENCR_2_","type":"number","calc":false,"value":""},{"id":"A7_BUSUSE_1_","type":"mask","calc":false,"value":""},{"id":"A7_BUSUSE_2_","type":"mask","calc":false,"value":""},{"id":"A9_P2SUB_1_","type":"number","calc":true,"value":""},{"id":"A9_P2SUB_2_","type":"number","calc":true,"value":""},{"id":"P2SUBTOT","type":"number","calc":true,"value":""},{"id":"PTAMV","type":"number","calc":false,"value":""},{"id":"BUSAMV","type":"number","calc":true,"value":""},{"id":"A10_LESSTEN_1_","type":"number","calc":true,"value":""},{"id":"A10_LESSTEN_2_","type":"number","calc":true,"value":""},{"id":"P3SUB","type":"number","calc":true,"value":""},{"id":"FR1040","type":"number","calc":true,"value":""},{"id":"TOTCRS","type":"number","calc":true,"value":""},{"id":"LESSTMT","type":"number","calc":true,"value":""},{"id":"PERAMV","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8910.json b/test/data/fd/form/F8910.json new file mode 100755 index 00000000..744b2dfe --- /dev/null +++ b/test/data/fd/form/F8910.json @@ -0,0 +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.936},{"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":69.386},{"oc":"#221f1f","x":75.447,"y":6.751,"w":1.125,"l":23.598},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":48.349},{"oc":"#221f1f","x":54.409,"y":11.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.684,"y":11.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.697,"y":14.11,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":14.11,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.684,"y":14.11,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.697,"y":14.86,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":14.86,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.684,"y":14.86,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.697,"y":15.61,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":15.61,"w":0.75,"l":6.273},{"oc":"#221f1f","x":60.597,"y":15.61,"w":0.75,"l":6.273},{"oc":"#221f1f","x":66.784,"y":15.61,"w":0.75,"l":9.986},{"oc":"#221f1f","x":76.684,"y":15.61,"w":0.75,"l":6.273},{"oc":"#221f1f","x":82.872,"y":15.61,"w":0.75,"l":6.273},{"oc":"#221f1f","x":89.059,"y":15.61,"w":0.75,"l":9.986},{"oc":"#221f1f","x":50.697,"y":16.36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":16.36,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.972,"y":16.36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":16.36,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.247,"y":16.36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":16.363,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":17.863,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":18.613,"w":0.75,"l":92.899},{"oc":"#221f1f","x":50.697,"y":19.355,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":19.355,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.972,"y":19.355,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":19.355,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.247,"y":19.355,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":20.105,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.409,"y":20.105,"w":1.125,"l":18.648},{"oc":"#221f1f","x":72.972,"y":20.105,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.684,"y":20.105,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.247,"y":20.105,"w":1.125,"l":3.798},{"oc":"#221f1f","x":72.972,"y":20.856,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":20.856,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.247,"y":20.856,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.972,"y":21.613,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":21.613,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.247,"y":21.613,"w":1.125,"l":3.798},{"oc":"#221f1f","x":72.972,"y":21.606,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":23.856,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.606,"w":0.75,"l":92.899},{"oc":"#221f1f","x":50.697,"y":26.11,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.409,"y":26.106,"w":1.125,"l":18.648},{"oc":"#221f1f","x":72.972,"y":26.106,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.684,"y":26.106,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.247,"y":26.106,"w":1.125,"l":3.798},{"oc":"#221f1f","x":72.972,"y":26.856,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":26.856,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.247,"y":26.856,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.972,"y":27.606,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":27.606,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.247,"y":27.606,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.972,"y":28.356,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.684,"y":28.356,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.247,"y":28.356,"w":1.125,"l":3.798},{"oc":"#221f1f","x":72.972,"y":29.86,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":29.856,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.247,"y":29.856,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.972,"y":29.856,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":32.11,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":32.11,"w":1.5,"l":39.686},{"oc":"#221f1f","x":87.822,"y":32.11,"w":1.5,"l":11.223},{"oc":"#221f1f","x":50.96,"y":12.296,"w":0.75,"l":48.044},{"oc":"#221f1f","x":50.703,"y":13.233,"w":0.75,"l":48.3}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":2.984},{"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.539},{"oc":"#221f1f","x":54.452,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":9.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.66,"y":11.267,"w":0.75,"l":3.153},{"oc":"#221f1f","x":54.398,"y":11.239,"w":0.75,"l":2.928},{"oc":"#221f1f","x":76.727,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.74,"y":14.095,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":14.095,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":14.095,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":14.845,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":14.845,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":14.845,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":15.595,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":15.595,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":15.595,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":15.595,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":15.595,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.595,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":18.59,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":18.59,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":18.59,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":19.34,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.452,"y":19.34,"w":0.75,"l":0.789},{"oc":"#221f1f","x":73.015,"y":19.34,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":19.34,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":19.34,"w":0.75,"l":0.789},{"oc":"#221f1f","x":73.015,"y":20.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":20.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":20.848,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":20.848,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.848,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":21.582,"w":0.75,"l":1.555},{"oc":"#221f1f","x":73.015,"y":21.582,"w":0.75,"l":1.555},{"oc":"#221f1f","x":95.29,"y":21.59,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.015,"y":23.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":23.095,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":24.595,"w":0.75,"l":1.539},{"oc":"#221f1f","x":54.452,"y":24.59,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.015,"y":24.59,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":24.59,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":24.59,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.015,"y":26.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":26.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":26.84,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":26.84,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.84,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":27.59,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.727,"y":27.59,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":27.59,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":28.34,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":28.345,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.015,"y":28.345,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":29.09,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":29.84,"w":0.75,"l":1.547},{"oc":"#221f1f","x":73.015,"y":29.84,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":29.84,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.015,"y":31.34,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":31.34,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.34,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":9.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":17.863,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":73.015,"y":21.606,"w":3.713,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.252,"y":23.856,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":73.015,"y":29.856,"w":3.713,"h":1.5,"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.08,"clr":-1,"A":"left","R":[{"T":"8910","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7350000000000003,"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.235,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":34.925,"y":2.414,"w":14.48,"clr":-1,"A":"left","R":[{"T":"Alternative%20Motor%20Vehicle%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.497,"y":3.3810000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.767,"y":3.4749999999999996,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.345,"y":4.068,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.615,"y":4.162,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208910%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.191,"y":4.162,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8910.","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-1998","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":91.204,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8760000000000003,"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.942,"y":4.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"152","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.927,"y":4.938,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.59,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.34,"w":31.838,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Use%20this%20form%20to%20claim%20the%20credit%20for%20certain%20alternative%20motor%20vehicles.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.059,"w":30.228000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Claim%20the%20credit%20for%20certain%20plug-in%20electric%20vehicles%20on%20Form%208936.","S":3,"TS":[0,12,0,0]}]},{"x":6.838,"y":8.853,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":8.854,"w":7.611,"clr":-1,"A":"left","R":[{"T":"Tentative%20Credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":9.536,"w":30.359,"clr":-1,"A":"left","R":[{"T":"Use%20a%20separate%20column%20for%20each%20vehicle.%20If%20you%20need%20more%20columns%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":10.211,"w":29.937000000000012,"clr":-1,"A":"left","R":[{"T":"use%20additional%20Forms%208910%20and%20include%20the%20totals%20on%20lines%207%20and%2011.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.613,"y":9.854,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.617,"y":9.854,"w":5.168000000000001,"clr":-1,"A":"left","R":[{"T":"%20Vehicle%201%20%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":82.857,"y":9.854,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":84.924,"y":9.854,"w":5.168000000000001,"clr":-1,"A":"left","R":[{"T":"%20Vehicle%202%20%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.554,"y":13.19,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":13.19,"w":15.171000000000005,"clr":-1,"A":"left","R":[{"T":"Year%2C%20make%2C%20and%20model%20of%20vehicle%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":13.19,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":13.2,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.949,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.949,"w":21.02200000000001,"clr":-1,"A":"left","R":[{"T":"Vehicle%20identification%20number%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.128,"y":13.949,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":13.949,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":13.949,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.699,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.699,"w":25.075,"clr":-1,"A":"left","R":[{"T":"Enter%20date%20vehicle%20was%20placed%20in%20service%20(MM%2FDD%2FYYYY)","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":51.916,"y":14.699,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.751,"y":14.699,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.939,"y":14.699,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.026,"y":14.699,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.214,"y":14.699,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":15.449000000000002,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":15.387,"w":7.444,"clr":-1,"A":"left","R":[{"T":"Tentative%20credit","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.404,"y":15.387,"w":17.262999999999998,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions%20for%20amount%20to%20enter)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":15.449000000000002,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.924,"y":16.152,"w":2.4819999999999998,"clr":-1,"A":"left","R":[{"T":"Next%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.932,"y":16.152,"w":52.17899999999993,"clr":-1,"A":"left","R":[{"T":"%20If%20you%20did%20NOT%20use%20your%20vehicle%20for%20business%20or%20investment%20purposes%20and%20did%20not%20have%20a%20credit%20from%20a%20partnership%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.929,"y":16.84,"w":29.891,"clr":-1,"A":"left","R":[{"T":"S%20corporation%2C%20skip%20Part%20II%20and%20go%20to%20Part%20III.%20All%20others%2C%20go%20to%20Part%20II.","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":17.716,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":17.716,"w":24.165000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Business%2FInvestment%20Use%20Part%20of%20Vehicle","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.444,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.444,"w":24.59700000000001,"clr":-1,"A":"left","R":[{"T":"Business%2Finvestment%20use%20percentage%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":18.444,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.847,"y":18.444,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":96.123,"y":18.444,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.194,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.194,"w":10.170000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%20line%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":19.194,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":19.194,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.945,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.945,"w":14.931000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(a)%20and%20(b)%20on%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":19.945,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.191,"y":19.945,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.7,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.702,"w":31.133999999999997,"clr":-1,"A":"left","R":[{"T":"Alternative%20motor%20vehicle%20credit%20from%20partnerships%20and%20S%20corporations%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":20.702,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.191,"y":20.702,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":21.457,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.457,"w":18.963000000000005,"clr":-1,"A":"left","R":[{"T":"Business%2Finvestment%20use%20part%20of%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.404,"y":21.457,"w":17.134999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%208.%20Partnerships%20and%20S%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":22.145,"w":15.354000000000003,"clr":-1,"A":"left","R":[{"T":"corporations%2C%20stop%20here%20and%20report","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.051,"y":22.145,"w":21.932,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Schedule%20K.%20All%20others%2C%20report%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":22.832,"w":13.451000000000008,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Form%203800%2C%20line%201r%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.761,"y":22.832,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.191,"y":22.945,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":6.393,"y":23.708,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":23.708,"w":18.368000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Personal%20Use%20Part%20of%20Vehicle","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":24.395,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.395,"w":23.766000000000002,"clr":-1,"A":"left","R":[{"T":"If%20you%20skipped%20Part%20II%2C%20enter%20the%20amount%20from%20line%204.%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":25.082,"w":21.450000000000006,"clr":-1,"A":"left","R":[{"T":"you%20completed%20Part%20II%2C%20subtract%20line%206%20from%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.122,"y":25.082,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.184,"y":25.082,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":25.2,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.945,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.945,"w":15.487000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(a)%20and%20(b)%20on%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":25.945,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.761,"y":25.945,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.695,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.695,"w":30.383000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2046%2C%20or%20Form%201040NR%2C%20line%2044%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":26.695,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.761,"y":26.695,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":27.445,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.445,"w":27.87600000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20credits%20from%20Form%201040%20or%201040NR%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":27.445,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.761,"y":27.445,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":28.145,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.145,"w":38.359999999999985,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%2012.%20If%20zero%20or%20less%2C%20enter%20-0-%20and%20stop%20here.%20You%20cannot%20claim","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":28.832,"w":15.392000000000003,"clr":-1,"A":"left","R":[{"T":"the%20personal%20use%20part%20of%20the%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.804,"y":28.832,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.761,"y":28.95,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.707,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.707,"w":13.203000000000003,"clr":-1,"A":"left","R":[{"T":"Personal%20use%20part%20of%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.869999999999997,"y":29.707,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.339,"y":29.707,"w":4.052,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.718,"y":29.707,"w":16.69000000000001,"clr":-1,"A":"left","R":[{"T":"of%20line%2011%20or%20line%2014%20here%20and%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":30.395,"w":9.763000000000002,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2053%20(or%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.067,"y":30.395,"w":13.041000000000004,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2050).%20Check%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.874,"y":30.395,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.889,"y":30.395,"w":14.154000000000003,"clr":-1,"A":"left","R":[{"T":"%20on%20that%20line%20and%20enter%20%E2%80%9C8910%E2%80%9D%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.907,"y":31.082,"w":33.842,"clr":-1,"A":"left","R":[{"T":"the%20space%20next%20to%20that%20box.%20If%20line%2014%20is%20smaller%20than%20line%2011%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.706,"y":31.082,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.761,"y":31.195,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.967,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.402,"y":31.985,"w":7.336,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037720F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":31.932000000000002,"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.932000000000002,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8910","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":31.932000000000002,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"x":54.502,"y":11.231,"w":14.783999999999999,"clr":0,"A":"left","R":[{"T":"Year","S":2,"TS":[0,10,0,0]}]},{"x":54.55,"y":12.169,"w":17.115000000000002,"clr":0,"A":"left","R":[{"T":"Make","S":2,"TS":[0,10,0,0]}]},{"x":54.529,"y":13.153,"w":19.061,"clr":0,"A":"left","R":[{"T":"Model","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6873,"AM":1024,"x":6.229,"y":5.848,"w":68.494,"h":0.879,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6874,"AM":1024,"x":76.017,"y":5.848,"w":22.963,"h":0.879,"TU":"Identifying number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1X_VEHYR_1_","EN":0},"TI":6875,"AM":0,"x":58.247,"y":11.318,"w":18.188,"h":0.885,"TU":"Column (a). Vehicle 1 Year.","MV":"YYYY"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1X_VEHYR_2_","EN":0},"TI":6876,"AM":0,"x":77.189,"y":11.326,"w":18.444,"h":0.885,"TU":"Column (b). Vehicle 2 Year.","MV":"YYYY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1X_YRMK_1_","EN":0},"TI":6877,"AM":0,"x":58.271,"y":12.285,"w":18.124,"h":0.885,"TU":"Column (a). Vehicle 1 Make."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1X_YRMK_2_","EN":0},"TI":6878,"AM":0,"x":77.084,"y":12.224,"w":18.444,"h":0.885,"TU":"Column (b). Vehicle 2 Make."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1X_YMM_1_","EN":0},"TI":6879,"AM":0,"x":58.325,"y":13.149,"w":18.124,"h":0.885,"TU":"Column (a). Vehicle 1 Model."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1X_YMM_2_","EN":0},"TI":6880,"AM":0,"x":77.203,"y":13.181,"w":18.444,"h":0.885,"TU":"Column (b). Vehicle 2 Model."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1X_VIN_1_","EN":0},"TI":6881,"AM":0,"x":54.593,"y":14.083,"w":21.778,"h":0.833,"TU":"Line 2. Column (a). Vehicle Identification Number (see instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1X_VIN_2_","EN":0},"TI":6882,"AM":0,"x":77.237,"y":14.134,"w":21.65,"h":0.833,"TU":"Line 2. Column (b). Vehicle Identification Number (see instructions)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1X_INSERV_1_","EN":0},"TI":6883,"AM":0,"x":54.642,"y":14.927,"w":21.728,"h":0.833,"TU":"Line 3. Column (a) Enter date vehicle was placed in service (MM/DD/YYYY)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1X_INSERV_2_","EN":0},"TI":6884,"AM":0,"x":77.222,"y":14.908,"w":21.728,"h":0.833,"TU":"Line 3. Column (b) Enter date vehicle was placed in service (MM/DD/YYYY","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_TENCR_1_","EN":0},"TI":6885,"AM":0,"x":54.578,"y":15.646,"w":18.444,"h":0.833,"TU":"Line 4. Column (a). Tentative credit (see instructions for amount to enter)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_TENCR_2_","EN":0},"TI":6886,"AM":0,"x":77.351,"y":15.651,"w":17.931,"h":0.833,"TU":"Line 4. Column (b). Tentative credit (see instructions for amount to enter"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A7_BUSUSE_1_","EN":0},"TI":6887,"AM":0,"x":54.632,"y":18.559,"w":18.07,"h":0.833,"TU":"Line 5. Column (a). Business/investment use percentage (see instructions)","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A7_BUSUSE_2_","EN":0},"TI":6888,"AM":0,"x":76.889,"y":18.63,"w":18.519,"h":0.833,"TU":"Line 5. Column (b). Business/investment use percentage (see instructions","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A9_P2SUB_1_","EN":0},"TI":6889,"AM":1024,"x":54.49,"y":19.323,"w":18.145,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A9_P2SUB_2_","EN":0},"TI":6890,"AM":1024,"x":76.875,"y":19.346,"w":18.402,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P2SUBTOT","EN":0},"TI":6891,"AM":1024,"x":76.814,"y":20.119,"w":18.519,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PTAMV","EN":0},"TI":6892,"AM":0,"x":76.814,"y":20.924,"w":18.444,"h":0.833,"TU":"Line 8. Alternative motor vehicle credit from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSAMV","EN":0},"TI":6893,"AM":1024,"x":76.779,"y":23.105,"w":18.444,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A10_LESSTEN_1_","EN":0},"TI":6894,"AM":1024,"x":54.711,"y":25.196,"w":18.212,"h":0.833,"TU":"10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A10_LESSTEN_2_","EN":0},"TI":6895,"AM":1024,"x":76.991,"y":25.172,"w":18.212,"h":0.833,"TU":"10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P3SUB","EN":0},"TI":6896,"AM":1024,"x":76.828,"y":26.075,"w":18.377,"h":0.833,"TU":"11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FR1040","EN":0},"TI":6897,"AM":1024,"x":76.828,"y":26.817,"w":18.377,"h":0.833,"TU":"12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCRS","EN":0},"TI":6898,"AM":1024,"x":76.828,"y":27.567,"w":18.377,"h":0.833,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESSTMT","EN":0},"TI":6899,"AM":1024,"x":76.911,"y":29.028,"w":18.212,"h":0.833,"TU":"14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PERAMV","EN":0},"TI":6900,"AM":1024,"x":76.931,"y":31.127,"w":18.171,"h":0.873,"TU":"15"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8911.content.txt b/test/data/fd/form/F8911.content.txt new file mode 100755 index 00000000..86a4efa4 --- /dev/null +++ b/test/data/fd/form/F8911.content.txt @@ -0,0 +1,159 @@ +Form +8911 +Department of the Treasury +Internal Revenue Service +Alternative Fuel Vehicle Refueling Property Credit +a + Attach to your tax return. +a + Information about Form 8911 and its instructions is at +www.irs.gov/form8911. + +OMB No. 1545-1981 +20 +13 +Attachment +Sequence No. +151 +Name(s) shown on return +Identifying number +Part I +Total Cost of Refueling Property +1 + +Total cost of qualified alternative fuel vehicle refueling property placed in service during the tax year +(see +What's New + in the instructions) +................... +1 +Part II +Credit for Business/Investment Use Part of Refueling Property +2 +Business/investment use part (see instructions) +............... +2 +3 +Section 179 expense deduction (see instructions) +.............. +3 +4 +Subtract line 3 from line 2 +...................... +4 +5 +Multiply line 4 by 30% (.30) +...................... +5 +6 +Maximum business/investment use part of credit (see instructions) +......... +6 +7 +Enter the +smaller + of line 5 or line 6 +.................... +7 +8 +Alternative fuel vehicle refueling property credit from partnerships and S corporations . . . +8 +9 + +Business/investment use part of credit. +Add lines 7 and 8. Partnerships and S corporations, + +stop +here and report this amount on Schedule K. All others, report this amount on Form 3800, line 1s +9 +Part III +Credit for Personal Use Part of Refueling Property +10 + +Subtract line 2 from line 1. If zero, stop here; +do not + file this form unless you are claiming a +credit on line 9 +.......................... +10 +11 +Multiply line 10 by 30% (.30) +...................... +11 +12 +Maximum personal use part of credit (see instructions) +............. +12 +13 +Enter the +smaller + of line 11 or line 12 +................... +13 +14 +Regular tax before credits: +• Individuals. Enter the amount from Form 1040, line 44 (or Form 1040NR, line 42). +• Other filers. Enter the regular tax before credits from your return. +} +.... +14 +15 +Credits that reduce regular tax before the alternative fuel vehicle refueling property credit: +a +Foreign tax credit +................ +15a +b +Certain allowable credits (see instructions) +........ +15b +c +Add lines 15a and 15b +........................ +15c +16 + +Net regular tax. Subtract line 15c from line 14. If zero or less, enter -0- and stop here; +do not + +file this form unless you are claiming a credit on line 9 +............. +16 +17 +Tentative minimum tax (see instructions): +• Individuals. Enter the amount from Form 6251, line 33. +• Other filers. Enter the tentative minimum tax from your alternative minimum tax +form or schedule. +} +... +17 +18 + +Subtract line 17 from line 16. If zero or less, stop here; +do not + file this form unless you are +claiming a credit on line 9 +...................... +18 +19 + + +Personal use part of credit. +Enter the + smaller +of line 13 or line 18 here and on Form +1040, +line 53; + +Form 1040NR, line 50; or the appropriate line of your return. If line 18 is smaller +than line 13, see + +instructions +..................... +19 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37721Q +Form +8911 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8911.fields.json b/test/data/fd/form/F8911.fields.json new file mode 100755 index 00000000..6b8628ba --- /dev/null +++ b/test/data/fd/form/F8911.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ALTFUEL","type":"number","calc":false,"value":""},{"id":"BUSINVT","type":"number","calc":false,"value":""},{"id":"SEC179","type":"number","calc":false,"value":""},{"id":"SUB32","type":"number","calc":true,"value":""},{"id":"MULT430","type":"number","calc":true,"value":""},{"id":"MAXBUS","type":"number","calc":false,"value":""},{"id":"SMALL56","type":"number","calc":true,"value":""},{"id":"ALTFLVEH","type":"number","calc":false,"value":""},{"id":"BUSINCR","type":"number","calc":true,"value":""},{"id":"SUB21","type":"number","calc":true,"value":""},{"id":"MUL1030","type":"number","calc":true,"value":""},{"id":"MAXPER","type":"number","calc":false,"value":""},{"id":"SMAL112","type":"number","calc":true,"value":""},{"id":"REGTAX","type":"number","calc":true,"value":""},{"id":"FRNTAX","type":"alpha","calc":true,"value":""},{"id":"CRFORM","type":"number","calc":true,"value":""},{"id":"ADD15A","type":"number","calc":true,"value":""},{"id":"SUB15E","type":"number","calc":true,"value":""},{"id":"TENTMIN","type":"number","calc":true,"value":""},{"id":"SUB17","type":"number","calc":true,"value":""},{"id":"PERCRSM","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8911.json b/test/data/fd/form/F8911.json new file mode 100755 index 00000000..4a95d383 --- /dev/null +++ b/test/data/fd/form/F8911.json @@ -0,0 +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":73.099},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.2000000000000002,"l":73.099},{"oc":"#221f1f","x":79.159,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.2000000000000002,"l":19.886},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":77.965,"y":9.001,"w":0.75,"l":3.713},{"oc":"#221f1f","x":77.965,"y":7.501,"w":0.75,"l":3.713},{"oc":"#221f1f","x":81.634,"y":9.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":77.922,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":11.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":12.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":12.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":13.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":14.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":15.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":15.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":17.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":18.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":77.922,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":20.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":21.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":21.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":22.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":24.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":24.751,"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":11.223},{"oc":"#221f1f","x":74.209,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":28.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":30.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":35.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.634,"y":37.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":37.501,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":37.501,"w":1.5,"l":44.636},{"oc":"#221f1f","x":86.584,"y":37.501,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.903},{"oc":"#221f1f","x":21.04,"y":4.11,"w":1.5,"l":1.157},{"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":84.152,"y":4.017,"w":1.5,"l":1.25},{"oc":"#221f1f","x":79.202,"y":5.22,"w":0.75,"l":1.556},{"oc":"#221f1f","x":81.677,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":77.965,"y":7.501,"w":0.75,"l":1.5},{"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.781},{"oc":"#221f1f","x":81.677,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":81.677,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":81.677,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":17.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.965,"y":17.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"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":81.677,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":81.677,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":81.677,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"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":81.677,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":24.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.965,"y":24.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":63.115,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"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":81.677,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"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":81.677,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.677,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.735,"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":"#221f1f","x":6.288,"y":9.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":15.751,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.288,"y":17.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":22.501,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":24.751,"w":3.713,"h":3,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":28.501,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":30.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":33.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.965,"y":35.251,"w":3.713,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":8.92,"y":2.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8911","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.771,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.296,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":25.565,"y":2.419,"w":22.259999999999994,"clr":-1,"A":"left","R":[{"T":"Alternative%20Fuel%20Vehicle%20Refueling%20Property%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.3659999999999997,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.46,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.116,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.21,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208911%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.21,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8911.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":2.095,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1981","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.621,"y":3.8760000000000003,"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.322,"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.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"151","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.983,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.838,"y":6.572,"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.572,"w":15.331,"clr":-1,"A":"left","R":[{"T":"Total%20Cost%20of%20Refueling%20Property","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":7.4030000000000005,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":7.412000000000001,"w":44.669999999999966,"clr":-1,"A":"left","R":[{"T":"Total%20cost%20of%20qualified%20alternative%20fuel%20vehicle%20refueling%20property%20placed%20in%20service%20during%20the%20tax%20year%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.877,"y":8.099,"w":2.111,"clr":-1,"A":"left","R":[{"T":"(see%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":13.961,"y":8.099,"w":5.685,"clr":-1,"A":"left","R":[{"T":"What's%20New","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":22.266,"y":8.099,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":36.877,"y":8.099,"w":26.82799999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":79.141,"y":8.059,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"x":6.683,"y":8.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":8.822,"w":29.610000000000007,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Business%2FInvestment%20Use%20Part%20of%20Refueling%20Property","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":10.34,"w":21.31900000000001,"clr":-1,"A":"left","R":[{"T":"Business%2Finvestment%20use%20part%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.128,"y":10.34,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"...............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":11.09,"w":22.26400000000001,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense%20deduction%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":11.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":11.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":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":11.84,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":11.84,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":12.59,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%2030%25%20(.30)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":12.59,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":13.34,"w":29.878000000000004,"clr":-1,"A":"left","R":[{"T":"Maximum%20business%2Finvestment%20use%20part%20of%20credit%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.503,"y":13.34,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":14.09,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.554,"y":14.09,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.961,"y":14.09,"w":7.631000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%205%20or%20line%206","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":14.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":38.262999999999984,"clr":-1,"A":"left","R":[{"T":"Alternative%20fuel%20vehicle%20refueling%20property%20credit%20from%20partnerships%20and%20S%20corporations.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.71,"y":14.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.772,"y":14.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.141,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.652999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.652999999999999,"w":19.241000000000003,"clr":-1,"A":"left","R":[{"T":"Business%2Finvestment%20use%20part%20of%20credit.%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":39.207,"y":15.652999999999999,"w":23.061,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%208.%20Partnerships%20and%20S%20corporations%2C","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":73.571,"y":15.652999999999999,"w":2.26,"clr":-1,"A":"left","R":[{"T":"stop%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.895,"y":16.34,"w":43.273999999999965,"clr":-1,"A":"left","R":[{"T":"here%20and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%201s%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":79.141,"y":16.309,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":6.429,"y":17.072,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":17.072,"w":23.813000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Personal%20Use%20Part%20of%20Refueling%20Property","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":18.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":18.653,"w":20.114000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20If%20zero%2C%20stop%20here%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.553,"y":18.653,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.593,"y":18.653,"w":17.596,"clr":-1,"A":"left","R":[{"T":"%20file%20this%20form%20unless%20you%20are%20claiming%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.876,"y":19.34,"w":6.594000000000002,"clr":-1,"A":"left","R":[{"T":"credit%20on%20line%209","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.439,"y":19.34,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":20.09,"w":12.653000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2010%20by%2030%25%20(.30)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":20.09,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":20.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":20.84,"w":24.54200000000001,"clr":-1,"A":"left","R":[{"T":"Maximum%20personal%20use%20part%20of%20credit%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":20.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":20.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":21.59,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.554,"y":21.59,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.961,"y":21.59,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2011%20or%20line%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":21.59,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":21.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":22.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":22.34,"w":11.833000000000004,"clr":-1,"A":"left","R":[{"T":"Regular%20tax%20before%20credits%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":23.09,"w":36.995000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Enter%20the%20amount%20from%20Form%201040%2C%20line%2044%20(or%20Form%201040NR%2C%20line%2042).%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.877,"y":23.84,"w":29.780999999999995,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Other%20filers.%20Enter%20the%20regular%20tax%20before%20credits%20from%20your%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.463,"y":23.622,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,19.25,0,0]}]},{"oc":"#221f1f","x":67.815,"y":23.358,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":23.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":39.87299999999999,"clr":-1,"A":"left","R":[{"T":"Credits%20that%20reduce%20regular%20tax%20before%20the%20alternative%20fuel%20vehicle%20refueling%20property%20credit%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.09,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":8.111,"clr":-1,"A":"left","R":[{"T":"Foreign%20tax%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":26.09,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.704,"y":26.09,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"15a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":19.12900000000001,"clr":-1,"A":"left","R":[{"T":"Certain%20allowable%20credits%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":26.84,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.676,"y":26.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"15b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":27.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.599,"w":10.023,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2015a%20and%2015b","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":26.564,"y":27.599,"w":33.887999999999984,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.267,"y":27.59,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"15c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.153,"w":38.26499999999998,"clr":-1,"A":"left","R":[{"T":"Net%20regular%20tax.%20Subtract%20line%2015c%20from%20line%2014.%20If%20zero%20or%20less%2C%20enter%20-0-%20and%20stop%20here%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.668,"y":29.153,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":29.84,"w":24.19,"clr":-1,"A":"left","R":[{"T":"file%20this%20form%20unless%20you%20are%20claiming%20a%20credit%20on%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.258,"y":29.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":18.24600000000001,"clr":-1,"A":"left","R":[{"T":"Tentative%20minimum%20tax%20(see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":25.01000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Individuals.%20Enter%20the%20amount%20from%20Form%206251%2C%20line%2033.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.153,"w":36.197,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Other%20filers.%20Enter%20the%20tentative%20minimum%20tax%20from%20your%20alternative%20minimum%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.269,"y":32.84,"w":7.835000000000001,"clr":-1,"A":"left","R":[{"T":"form%20or%20schedule.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.948,"y":32.37,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,24,0,0]}]},{"oc":"#221f1f","x":69.877,"y":32.002,"w":3.9989999999999997,"clr":-1,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.653,"w":24.448,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2017%20from%20line%2016.%20If%20zero%20or%20less%2C%20stop%20here%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.046,"y":33.653,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.164,"y":33.653,"w":12.780000000000003,"clr":-1,"A":"left","R":[{"T":"%20file%20this%20form%20unless%20you%20are%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":11.966000000000003,"clr":-1,"A":"left","R":[{"T":"claiming%20%20a%20credit%20on%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":34.34,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.215,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.215,"w":13.783000000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20use%20part%20of%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.084,"y":35.215,"w":4.516000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.594,"y":35.215,"w":4.53,"clr":-1,"A":"left","R":[{"T":"%20smaller%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.951,"y":35.215,"w":17.748000000000005,"clr":-1,"A":"left","R":[{"T":"of%20line%2013%20or%20line%2018%20here%20and%20on%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":35.903,"w":2.9000000000000004,"clr":-1,"A":"left","R":[{"T":"1040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.397,"y":35.903,"w":3.483,"clr":-1,"A":"left","R":[{"T":"line%2053%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.345,"y":35.903,"w":35.508,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2050%3B%20or%20the%20appropriate%20line%20of%20your%20return.%20If%20line%2018%20is%20smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.904,"y":36.59,"w":7.577000000000002,"clr":-1,"A":"left","R":[{"T":"than%20line%2013%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.054,"y":36.59,"w":5.186,"clr":-1,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.765,"y":36.59,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.711,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":37.358,"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":59.577,"y":37.376,"w":7.522,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037721Q","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.341,"y":37.322,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.818,"y":37.322,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8911%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":37.322,"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":6901,"AM":1024,"x":6.229,"y":5.861,"w":72.848,"h":0.866,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6902,"AM":1024,"x":79.344,"y":5.861,"w":19.635,"h":0.866,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALTFUEL","EN":0},"TI":6903,"AM":0,"x":81.854,"y":8.241,"w":13.427,"h":0.833,"TU":"Line 1. Total cost of qualified alternative fuel vehicle refueling property placed in service during the tax year (see What's New in the instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSINVT","EN":0},"TI":6904,"AM":0,"x":81.705,"y":10.5,"w":13.427,"h":0.833,"TU":"Line 2. Business/investment use part (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC179","EN":0},"TI":6905,"AM":0,"x":81.685,"y":11.337,"w":13.427,"h":0.833,"TU":"Line 3. Section 179 expense deduction (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUB32","EN":0},"TI":6906,"AM":1024,"x":81.814,"y":12.037,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT430","EN":0},"TI":6907,"AM":1024,"x":81.719,"y":12.765,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXBUS","EN":0},"TI":6908,"AM":0,"x":81.849,"y":13.52,"w":13.427,"h":0.833,"TU":"Line 6. Maximum business / investment use part of credit (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALL56","EN":0},"TI":6909,"AM":1024,"x":81.754,"y":14.275,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALTFLVEH","EN":0},"TI":6910,"AM":0,"x":81.778,"y":15.038,"w":13.427,"h":0.833,"TU":"Line 8. Alternative fuel vehicle refueling property credit from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSINCR","EN":0},"TI":6911,"AM":1024,"x":81.659,"y":16.473,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUB21","EN":0},"TI":6912,"AM":1024,"x":81.78,"y":19.539,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MUL1030","EN":0},"TI":6913,"AM":1024,"x":81.778,"y":20.288,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXPER","EN":0},"TI":6914,"AM":0,"x":81.778,"y":21.038,"w":13.427,"h":0.833,"TU":"Line 12. Maximum personal use part of credit (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMAL112","EN":0},"TI":6915,"AM":1024,"x":81.778,"y":21.788,"w":13.427,"h":0.833,"TU":"Enter the smaller of line 11 or line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REGTAX","EN":0},"TI":6916,"AM":1024,"x":81.881,"y":23.841,"w":13.221,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FRNTAX","EN":0},"TI":6917,"AM":1024,"x":63.236,"y":26.258,"w":10.911,"h":0.833,"TU":"15a. Foreign tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRFORM","EN":0},"TI":6918,"AM":1024,"x":63.216,"y":27.038,"w":10.952,"h":0.833,"TU":"15b. Certain allowable credits (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD15A","EN":0},"TI":6919,"AM":1024,"x":81.923,"y":27.726,"w":13.138,"h":0.833,"TU":"15c. Add lines 15a and 15b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUB15E","EN":0},"TI":6920,"AM":1024,"x":81.881,"y":29.896,"w":13.221,"h":0.833,"TU":"_16file this form unless you are claiming a credit on line 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TENTMIN","EN":0},"TI":6921,"AM":1024,"x":81.881,"y":32.118,"w":13.221,"h":0.833,"TU":"_17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUB17","EN":0},"TI":6922,"AM":1024,"x":81.881,"y":34.368,"w":13.221,"h":0.833,"TU":"18. claiming a credit on line 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PERCRSM","EN":0},"TI":6923,"AM":1024,"x":81.881,"y":36.475,"w":13.221,"h":0.89,"TU":"_19"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8917.content.txt b/test/data/fd/form/F8917.content.txt new file mode 100755 index 00000000..19c53320 --- /dev/null +++ b/test/data/fd/form/F8917.content.txt @@ -0,0 +1,97 @@ +Form +8917 +Department of the Treasury +Internal Revenue Service +Tuition and Fees Deduction +a + +Attach to Form 1040 or Form 1040A. +a + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +60 +Name(s) shown on return +Your social security number +F +! +CAUTION +You +cannot + take both an education credit from Form 8863 and the tuition and fees deduction from this form for the +same student +for the same tax year. +Before you begin: + +Who Can Take the Deduction + +If you file Form 1040, figure any write-in adjustments to be entered on the dotted line next to Form +1040, line 36. See the 2013 Form 1040 instructions for line 36. +1 +(a) +Student’s name (as shown on page 1 of your tax return) + +First name Last name +(b) +Student’s social security + +number (as shown on page + +1 of your tax return) +(c) +Adjusted qualified + +expenses (see + +instructions) +2 +Add the amounts on line 1, column (c), and enter the total +............. +2 +3 +Enter the amount from Form 1040, line 22, or Form 1040A, line 15 +3 +4 +Enter the total from either: +• Form 1040, lines 23 through 33, plus any write-in adjustments +entered on the dotted line next to Form 1040, line 36, +or +• Form 1040A, lines 16 through 18 +........... +4 +5 +Subtract line 4 from line 3.* If the result is more than $80,000 ($160,000 if married filing jointly), +stop +; you cannot take the deduction for tuition and fees +............. +5 +*If you are filing Form 2555, 2555-EZ, or 4563, or you are excluding income from Puerto Rico, +see +Effect of the Amount of Your Income on the Amount of Your Deduction + in Pub. 970, chapter +6, to figure the amount to enter on line 5. +6 Tuition and fees deduction. +Is the amount on line 5 more than $65,000 ($130,000 if married +filing jointly)? +Yes. +Enter the smaller of line 2, or $2,000. +No. +Enter the smaller of line 2, or $4,000. +Also enter +this amount on Form 1040, line 34, or Form 1040A, line 19. +} +.............. +6 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 37728P +Form +8917 + (2013) +Information about Form 8917 and its instructions is at www.irs.gov/form8917. +To see if you qualify for this deduction, see + +in the instructions below. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8917.fields.json b/test/data/fd/form/F8917.fields.json new file mode 100755 index 00000000..c23f9b9d --- /dev/null +++ b/test/data/fd/form/F8917.fields.json @@ -0,0 +1 @@ +[{"id":"A12RB","type":"radio","calc":false,"value":"G45"},{"id":"A12RB","type":"radio","calc":false,"value":"G46"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"STUDENTS_SNAME_1_","type":"alpha","calc":false,"value":""},{"id":"STUDENTS_LNAME_1_","type":"alpha","calc":false,"value":""},{"id":"STUDENTS_SSSN_1_","type":"ssn","calc":false,"value":""},{"id":"STUDENTS_QUALEXPS_1_","type":"number","calc":false,"value":""},{"id":"STUDENTS_SNAME_2_","type":"alpha","calc":false,"value":""},{"id":"STUDENTS_LNAME_2_","type":"alpha","calc":false,"value":""},{"id":"STUDENTS_SSSN_2_","type":"ssn","calc":false,"value":""},{"id":"STUDENTS_QUALEXPS_2_","type":"number","calc":false,"value":""},{"id":"STUDENTS_SNAME_3_","type":"alpha","calc":false,"value":""},{"id":"STUDENTS_LNAME_3_","type":"alpha","calc":false,"value":""},{"id":"STUDENTS_SSSN_3_","type":"ssn","calc":false,"value":""},{"id":"STUDENTS_QUALEXPS_3_","type":"number","calc":false,"value":""},{"id":"SUBTOT1","type":"number","calc":true,"value":""},{"id":"FR10401","type":"number","calc":true,"value":""},{"id":"FR10402","type":"number","calc":false,"value":""},{"id":"SUBTOT2","type":"number","calc":true,"value":""},{"id":"TNFDEDN","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8917.json b/test/data/fd/form/F8917.json new file mode 100755 index 00000000..8dc492a1 --- /dev/null +++ b/test/data/fd/form/F8917.json @@ -0,0 +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.249,"w":1.5,"l":63.242},{"oc":"#221f1f","x":84.107,"y":3,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.107,"y":5.25,"w":1.5,"l":14.936},{"oc":"#221f1f","x":6.145,"y":6.75,"w":1.125,"l":70.624},{"oc":"#221f1f","x":76.682,"y":6.75,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.145,"y":9.322,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":12.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":11.095,"y":15.372,"w":0.75,"l":50.824},{"oc":"#221f1f","x":61.832,"y":15.372,"w":0.75,"l":21.123},{"oc":"#221f1f","x":82.87,"y":15.372,"w":0.75,"l":16.173},{"oc":"#221f1f","x":11.095,"y":16.246,"w":0.75,"l":50.824},{"oc":"#221f1f","x":61.832,"y":16.246,"w":0.75,"l":21.123},{"oc":"#221f1f","x":82.87,"y":16.246,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":16.246,"w":0.75,"l":3.798},{"oc":"#221f1f","x":11.095,"y":17.12,"w":0.75,"l":50.824},{"oc":"#221f1f","x":61.832,"y":17.12,"w":0.75,"l":21.123},{"oc":"#221f1f","x":82.87,"y":17.12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":17.12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":11.095,"y":18.035,"w":0.75,"l":50.824},{"oc":"#221f1f","x":61.832,"y":18.035,"w":0.75,"l":21.123},{"oc":"#221f1f","x":82.87,"y":18.035,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18.035,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":26.25,"w":0.75,"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":79.157,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":39,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.17,"y":39,"w":1.5,"l":33.498},{"oc":"#221f1f","x":86.582,"y":39,"w":1.5,"l":12.461}],"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":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.546},{"oc":"#221f1f","x":76.725,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.875,"y":12.734,"w":0.75,"l":2.653},{"oc":"#221f1f","x":82.913,"y":12.734,"w":0.75,"l":2.653},{"oc":"#221f1f","x":61.875,"y":15.357,"w":0.75,"l":0.905},{"oc":"#221f1f","x":82.913,"y":15.357,"w":0.75,"l":0.905},{"oc":"#221f1f","x":95.288,"y":15.357,"w":0.75,"l":0.905},{"oc":"#221f1f","x":61.875,"y":16.231,"w":0.75,"l":0.905},{"oc":"#221f1f","x":82.913,"y":16.231,"w":0.75,"l":0.905},{"oc":"#221f1f","x":95.288,"y":16.231,"w":0.75,"l":0.905},{"oc":"#221f1f","x":61.875,"y":17.105,"w":0.75,"l":0.946},{"oc":"#221f1f","x":82.913,"y":17.105,"w":0.75,"l":0.946},{"oc":"#221f1f","x":95.288,"y":17.105,"w":0.75,"l":0.946},{"oc":"#221f1f","x":82.913,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"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.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":19.485,"w":0.75,"l":8.297},{"oc":"#221f1f","x":79.2,"y":19.485,"w":0.75,"l":8.297},{"oc":"#221f1f","x":95.288,"y":19.475,"w":0.75,"l":8.309},{"oc":"#221f1f","x":63.113,"y":20.985,"w":0.75,"l":4.547},{"oc":"#221f1f","x":59.4,"y":20.985,"w":0.75,"l":4.547},{"oc":"#221f1f","x":75.488,"y":20.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":63.113,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":6.797},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":6.797},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":6.781},{"oc":"#221f1f","x":82.913,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":6.751,"w":6.188,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":19.5,"w":3.712,"h":8.25,"clr":-1},{"oc":"#bebfc1","x":59.4,"y":21,"w":3.713,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":79.2,"y":28.5,"w":3.712,"h":6.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.634,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.749,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8917","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.8019999999999996,"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.303,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":37.618,"y":2.381,"w":13.113000000000003,"clr":-1,"A":"left","R":[{"T":"Tuition%20and%20Fees%20Deduction","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":39.857,"y":3.471,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":41.222,"y":3.5650000000000004,"w":17.449000000000005,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040A.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.363,"y":4.034,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.9380000000000002,"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.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.478,"y":3.875,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.478,"y":4.321,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.791,"y":4.321,"w":1.112,"clr":-1,"A":"left","R":[{"T":"60","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.937,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":4.937,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.241,"y":7.539,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.426,"y":7.475,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.352,"y":8.072,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":13.672,"y":7.072,"w":2.019,"clr":-1,"A":"left","R":[{"T":"You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.567,"y":7.072,"w":3.2780000000000005,"clr":-1,"A":"left","R":[{"T":"cannot","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.639,"y":7.072,"w":46.215999999999966,"clr":-1,"A":"left","R":[{"T":"%20take%20both%20an%20education%20credit%20from%20Form%208863%20and%20the%20tuition%20and%20fees%20deduction%20from%20this%20form%20for%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.66,"y":7.747,"w":6.724,"clr":-1,"A":"left","R":[{"T":"same%20student%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.313,"y":7.747,"w":9.575000000000001,"clr":-1,"A":"left","R":[{"T":"for%20the%20same%20tax%20year.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":9.206,"w":8.501,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.5,"y":9.244,"w":0.846,"clr":-1,"A":"left","R":[{"T":"%15","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":53.592,"y":9.161,"w":13.004000000000003,"clr":-1,"A":"left","R":[{"T":"Who%20Can%20Take%20the%20Deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.5,"y":10.958,"w":0.846,"clr":-1,"A":"left","R":[{"T":"%15","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":26.975,"y":10.875,"w":44.08499999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20file%20Form%201040%2C%20figure%20any%20write-in%20adjustments%20to%20be%20entered%20on%20the%20dotted%20line%20next%20to%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.975,"y":11.55,"w":27.715000000000014,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2036.%20See%20the%202013%20Form%201040%20instructions%20for%20line%2036.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":12.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.009,"y":12.747,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.377,"y":12.747,"w":24.820000000000004,"clr":-1,"A":"left","R":[{"T":"Student%E2%80%99s%20name%20(as%20shown%20on%20page%201%20of%20your%20tax%20return)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.997,"w":5.261000000000001,"clr":-1,"A":"left","R":[{"T":"First%20name%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.914,"y":13.997,"w":4.947,"clr":-1,"A":"left","R":[{"T":"%20Last%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.6,"y":12.822,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":65.637,"y":12.822,"w":10.946000000000003,"clr":-1,"A":"left","R":[{"T":"Student%E2%80%99s%20social%20security","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.790000000000006,"y":13.422,"w":12.151000000000003,"clr":-1,"A":"left","R":[{"T":"number%20(as%20shown%20on%20page","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.121,"y":14.022,"w":8.760000000000002,"clr":-1,"A":"left","R":[{"T":"1%20of%20your%20tax%20return)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.2,"y":12.822,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":86.186,"y":12.822,"w":8.020000000000001,"clr":-1,"A":"left","R":[{"T":"Adjusted%20qualified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.313,"y":13.422,"w":6.389000000000001,"clr":-1,"A":"left","R":[{"T":"expenses%20(see","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.962,"y":14.022,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.552,"y":18.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":18.589,"w":25.657999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%201%2C%20column%20(c)%2C%20and%20enter%20the%20total","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":18.589,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":18.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.089,"w":29.346000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2022%2C%20or%20Form%201040A%2C%20line%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.576,"y":20.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":21.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":21.589,"w":11.669000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20from%20either%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":28.67700000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Form%201040%2C%20lines%2023%20through%2033%2C%20plus%20any%20write-in%20adjustments%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.764,"w":24.046000000000003,"clr":-1,"A":"left","R":[{"T":"entered%20on%20the%20dotted%20line%20next%20to%20Form%201040%2C%20line%2036%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.302,"y":23.764,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":25.339,"w":15.377000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Form%201040A%2C%20lines%2016%20through%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":25.339,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.576,"y":25.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":26.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":42.32800000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203.*%20If%20the%20result%20is%20more%20than%20%2480%2C000%20(%24160%2C000%20if%20married%20filing%20jointly)%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":27.526,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"stop","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.819,"y":27.526,"w":22.803000000000004,"clr":-1,"A":"left","R":[{"T":"%3B%20you%20cannot%20take%20the%20deduction%20for%20tuition%20and%20fees","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.321,"y":27.526,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":27.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":41.97299999999999,"clr":-1,"A":"left","R":[{"T":"*If%20you%20are%20filing%20Form%202555%2C%202555-EZ%2C%20or%204563%2C%20or%20you%20are%20excluding%20income%20from%20Puerto%20Rico%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":29.777,"w":1.8519999999999999,"clr":-1,"A":"left","R":[{"T":"see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.791,"y":29.777,"w":31.581000000000014,"clr":-1,"A":"left","R":[{"T":"Effect%20of%20the%20Amount%20of%20Your%20Income%20on%20the%20Amount%20of%20Your%20Deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.15,"y":29.777,"w":9.597000000000001,"clr":-1,"A":"left","R":[{"T":"%20in%20Pub.%20970%2C%20chapter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":30.464,"w":18.210000000000004,"clr":-1,"A":"left","R":[{"T":"6%2C%20to%20figure%20the%20amount%20to%20enter%20on%20line%205.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":32.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":13.280000000000005,"clr":-1,"A":"left","R":[{"T":"Tuition%20and%20fees%20deduction.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.052,"y":32.089,"w":28.347,"clr":-1,"A":"left","R":[{"T":"Is%20the%20amount%20on%20line%205%20more%20than%20%2465%2C000%20(%24130%2C000%20if%20married%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":32.777,"w":5.796000000000001,"clr":-1,"A":"left","R":[{"T":"filing%20jointly)%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.984,"y":34.339,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.074,"y":34.339,"w":16.394000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%202%2C%20or%20%242%2C000.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.984,"y":35.839,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.074,"y":35.839,"w":16.394000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%202%2C%20or%20%244%2C000.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":37.62,"w":5.168000000000001,"clr":-1,"A":"left","R":[{"T":"Also%20enter%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.305,"y":37.62,"w":26.25300000000001,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Form%201040%2C%20line%2034%2C%20or%20Form%201040A%2C%20line%2019.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.544,"y":35.376,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21,0,0]}]},{"oc":"#221f1f","x":49.25,"y":35.089,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":35.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":38.857,"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.211,"y":38.875,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037728P","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":38.821,"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.821,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8917","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":38.821,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.729,"y":4.127,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208917%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8917.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.975,"y":9.161,"w":19.150999999999996,"clr":-1,"A":"left","R":[{"T":"To%20see%20if%20you%20qualify%20for%20this%20deduction%2C%20see","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.361,"y":9.161,"w":11.168000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions%20below.","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6924,"AM":1024,"x":19.635,"y":5.912,"w":56.925,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6925,"AM":1024,"x":76.869,"y":5.906,"w":22.11,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STUDENTS_SNAME_1_","EN":0},"TI":6926,"AM":0,"x":11.212,"y":15.337,"w":21.231,"h":0.879,"TU":"Line 1(a) Student's first name (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STUDENTS_LNAME_1_","EN":0},"TI":6927,"AM":0,"x":34.433,"y":15.349,"w":26.843,"h":0.879,"TU":"Student's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"STUDENTS_SSSN_1_","EN":0},"TI":6928,"AM":0,"x":61.982,"y":15.411,"w":20.7,"h":0.879,"TU":"Line 1(b) Student's social security number (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STUDENTS_QUALEXPS_1_","EN":0},"TI":6929,"AM":0,"x":83.073,"y":15.419,"w":12.206,"h":0.879,"TU":"Line 1(c) Adjusted qualified expenses (see instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STUDENTS_SNAME_2_","EN":0},"TI":6930,"AM":0,"x":11.281,"y":16.264,"w":21.231,"h":0.879,"TU":"Line 1(a) Student's first name (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STUDENTS_LNAME_2_","EN":0},"TI":6931,"AM":0,"x":34.565,"y":16.252,"w":26.843,"h":0.879,"TU":"Student's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"STUDENTS_SSSN_2_","EN":0},"TI":6932,"AM":0,"x":62.039,"y":16.259,"w":20.549,"h":0.879,"TU":"Line 1(b) Student's social security number (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STUDENTS_QUALEXPS_2_","EN":0},"TI":6933,"AM":0,"x":83.142,"y":16.321,"w":12.206,"h":0.879,"TU":"Line 1(c) Adjusted qualified expenses (see instructions"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STUDENTS_SNAME_3_","EN":0},"TI":6934,"AM":0,"x":11.149,"y":17.153,"w":21.231,"h":0.879,"TU":"Line 1(a) Student's first name (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STUDENTS_LNAME_3_","EN":0},"TI":6935,"AM":0,"x":34.434,"y":17.141,"w":26.843,"h":0.879,"TU":"Student's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"STUDENTS_SSSN_3_","EN":0},"TI":6936,"AM":0,"x":61.983,"y":17.204,"w":20.7,"h":0.879,"TU":"Line 1(b) Student's social security number (as shown on page 1 of your tax return)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STUDENTS_QUALEXPS_3_","EN":0},"TI":6937,"AM":0,"x":83.01,"y":17.211,"w":12.206,"h":0.879,"TU":"Line 1(c) Adjusted qualified expenses (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT1","EN":0},"TI":6938,"AM":1024,"x":83.142,"y":18.477,"w":11.901,"h":0.945},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FR10401","EN":0},"TI":6939,"AM":1024,"x":63.236,"y":20.092,"w":12.148,"h":0.893},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FR10402","EN":0},"TI":6940,"AM":0,"x":63.36,"y":25.337,"w":11.901,"h":0.898},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT2","EN":0},"TI":6941,"AM":1024,"x":83.16,"y":27.533,"w":11.901,"h":0.945,"TU":"Line 5. Subtract line 4 from line 3. If the result is more than $80,000 ($160,000 if married filing jointly), stop; you cannot take the deduction for tuition and fees. If you are filing Form 2555, 2555-EZ, or 4563, or you are excluding income from Puerto Rico, see Effect of the Amount of Your Income on the Amount of Your Deduction in Pub. 970, chapter 6, to figure the amount to enter on line 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TNFDEDN","EN":0},"TI":6944,"AM":0,"x":83.16,"y":34.969,"w":11.901,"h":1.016,"TU":"Line 6. Tuition and fees deduction. Is the amount on line 5 more than $65,000 ($130,000 if married filing jointly)?"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"G45","EN":0},"TI":6942,"AM":0,"x":10.931,"y":34.396,"w":2.046,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"G46","EN":0},"TI":6943,"AM":0,"x":11.031,"y":35.916,"w":2.046,"h":0.833,"checked":false}],"id":{"Id":"A12RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8919S.content.txt b/test/data/fd/form/F8919S.content.txt new file mode 100755 index 00000000..68c39889 --- /dev/null +++ b/test/data/fd/form/F8919S.content.txt @@ -0,0 +1,154 @@ +Form +8919 +Department of the Treasury +Internal Revenue Service +Uncollected Social Security and +Medicare Tax on Wages +a + + +Information about Form 8919 and its instructions is at +www.irs.gov/form8919. +a + + +Attach to your tax return. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +72 +Name of person who must file this form. If married, complete a separate Form 8919 for each spouse who must file this form. +Social security number +Who must file. +You must file Form 8919 if +all +of the following apply. +• You performed services for a firm. +• You believe your pay from the firm was not for services as an independent contractor. +• The firm did not withhold your share of social security and Medicare taxes from your pay. +• One of the reasons listed below under +Reason codes +applies to you. +Reason codes: +For each firm listed below, enter in column (c) the applicable reason code for filing this form. If none of the reason +codes apply to you, but you believe you should have been treated as an employee, enter reason code G, and +file +Form SS-8 on or before the date you file your tax return +. +A +I filed Form SS-8 and received a determination letter stating that I am an employee of this firm. +C +I received other correspondence from the IRS that states I am an employee. +G +I filed Form SS-8 with the IRS and have not received a reply. +H +I received a Form W-2 and a Form 1099-MISC from this firm for 2013. The amount on Form 1099-MISC should have +been included as wages on Form W-2. +(Do not file Form SS-8 if you select reason code H.) +(a) +Name of firm +(b) +Firm’s + +federal + +identification + +number +(see instructions) +(c) +Enter + +reason code +from + +above +(d) +Date of IRS + +determination or + +correspondence + +(MM/DD/YYYY) + +(see instructions) +(e) +Check + +if Form + +1099-MISC + +was received +(f) +Total wages received + +with no social security or + +Medicare tax + +withholding and not + +reported on Form W-2 + + + + + + + + +1 +2 +3 +4 +5 +6 Total wages. +Combine lines 1 through 5 in column (f). Enter here and include on Form 1040, + +line 7; Form 1040NR, line 8; or Form 1040NR-EZ, line 3 +............. +6 +7 +Maximum amount of wages subject to social security tax . . . +7 +8 + + +Total social security wages and social security tips (total of boxes 3 +and 7 on Form(s) W-2), railroad retirement (RRTA) compensation +(subject to the 6.2% rate), and unreported tips subject to social +security tax from Form 4137, line 10. See instructions +.... +8 +9 +Subtract line 8 from line 7. If line 8 is more than line 7, enter -0- here and on line 10 +.... +9 +10 +Wages subject to social security tax. Enter the smaller of line 6 or line 9 +........ +10 +11 +Multiply line 10 by .062 (social security tax rate for 2013) +............. +11 +12 +Multiply line 6 by .0145 (Medicare tax rate) +.................. +12 +13 +Add lines 11 and 12. Enter here and on Form 1040, line 57; Form 1040NR, line 55; or +Form 1040NR-EZ, line 16. (Form 1040-SS and Form 1040-PR filers, see instructions) . . . +a +13 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 37730B +Form +8919 +(2013) +113,700 00 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8919S.fields.json b/test/data/fd/form/F8919S.fields.json new file mode 100755 index 00000000..86ad7381 --- /dev/null +++ b/test/data/fd/form/F8919S.fields.json @@ -0,0 +1 @@ +[{"id":"FIRMS_M99X_1_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_2_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_3_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_4_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_5_","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"FIRMS_FIRM_1_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_1_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_1_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_1_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_1_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_2_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_2_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_2_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_2_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_2_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_3_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_3_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_3_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_3_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_3_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_4_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_4_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_4_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_4_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_4_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_5_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_5_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_5_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_5_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_5_","type":"number","calc":false,"value":""},{"id":"TOTWAGES","type":"number","calc":true,"value":""},{"id":"MAXSS","type":"number","calc":true,"value":""},{"id":"OTHWAGES","type":"number","calc":false,"value":""},{"id":"NETWAGES","type":"number","calc":true,"value":""},{"id":"SSWAGES","type":"number","calc":true,"value":""},{"id":"SSTAX","type":"number","calc":true,"value":""},{"id":"MEDTAX","type":"number","calc":true,"value":""},{"id":"TOTTAX","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8919S.json b/test/data/fd/form/F8919S.json new file mode 100755 index 00000000..ee25cac3 --- /dev/null +++ b/test/data/fd/form/F8919S.json @@ -0,0 +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":69.386},{"oc":"#221f1f","x":75.447,"y":6.751,"w":1.125,"l":23.598},{"oc":"#221f1f","x":6.147,"y":10.501,"w":1.125,"l":12.463},{"oc":"#221f1f","x":18.522,"y":10.501,"w":1.125,"l":80.524},{"oc":"#221f1f","x":6.147,"y":19.501,"w":1.125,"l":33.498},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":19.501,"w":1.125,"l":13.698},{"oc":"#221f1f","x":39.559,"y":22.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":19.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":53.172,"y":22.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":19.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":63.072,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":19.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":74.209,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":19.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":22.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":22.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":24.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":24.001,"w":0.75,"l":8.748},{"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":6.146,"y":25.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":25.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":25.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":25.501,"w":0.75,"l":8.748},{"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.146,"y":27.001,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":27.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":27.001,"w":0.75,"l":8.748},{"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":6.146,"y":28.502,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":28.502,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":28.502,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":28.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":28.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":28.502,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":28.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":30.002,"w":1.125,"l":33.498},{"oc":"#221f1f","x":39.559,"y":30.002,"w":1.125,"l":13.698},{"oc":"#221f1f","x":53.172,"y":30.002,"w":1.125,"l":9.986},{"oc":"#221f1f","x":63.072,"y":30.002,"w":1.125,"l":11.223},{"oc":"#221f1f","x":74.209,"y":30.002,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":30.002,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.002,"w":1.125,"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":59.359,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":32.251,"w":0.75,"l":12.461},{"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":3.798},{"oc":"#221f1f","x":59.359,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":35.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"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":12.461},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"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":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":38.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":39.751,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":39.751,"w":1.5,"l":34.736},{"oc":"#221f1f","x":86.584,"y":39.751,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.774},{"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":2.281},{"oc":"#221f1f","x":75.49,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":53.215,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":63.115,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":74.252,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":82.915,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":39.602,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"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":74.252,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":53.215,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"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":82.915,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"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":32.236,"w":0.75,"l":3.039},{"oc":"#221f1f","x":59.402,"y":32.236,"w":0.75,"l":3.039},{"oc":"#221f1f","x":75.49,"y":32.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":79.202,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":79.202,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.789},{"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":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.986,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":79.202,"y":31.501,"w":3.713,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8919","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8760000000000003,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.314,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":35.166,"y":2.101,"w":14.879999999999999,"clr":-1,"A":"left","R":[{"T":"Uncollected%20Social%20Security%20and%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":39.328,"y":2.851,"w":10.82,"clr":-1,"A":"left","R":[{"T":"Medicare%20Tax%20on%20Wages","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":26.198,"y":3.4000000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.898,"y":3.4930000000000003,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208919%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.338,"y":3.4930000000000003,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8919.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.282,"y":4.15,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.982,"y":4.243,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%20","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.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8760000000000003,"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.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.277,"y":4.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"72","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":55.38299999999994,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20who%20must%20file%20this%20form.%20If%20married%2C%20complete%20a%20separate%20Form%208919%20for%20each%20spouse%20who%20must%20file%20this%20form.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.927,"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":6.793000000000001,"clr":-1,"A":"left","R":[{"T":"Who%20must%20file.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":6.59,"w":12.023000000000005,"clr":-1,"A":"left","R":[{"T":"You%20must%20file%20Form%208919%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.913,"y":6.59,"w":1.368,"clr":-1,"A":"left","R":[{"T":"all%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.029,"y":6.59,"w":9.832999999999998,"clr":-1,"A":"left","R":[{"T":"of%20the%20following%20apply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":7.34,"w":15.983000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20performed%20services%20for%20a%20firm.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":8.09,"w":39.07999999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20believe%20your%20pay%20from%20the%20firm%20was%20not%20for%20services%20as%20an%20independent%20contractor.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":8.84,"w":40.54299999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20firm%20did%20not%20withhold%20your%20share%20of%20social%20security%20and%20Medicare%20taxes%20from%20your%20pay.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":9.59,"w":18.04,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20One%20of%20the%20reasons%20listed%20below%20under%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.22,"y":9.59,"w":6.630000000000001,"clr":-1,"A":"left","R":[{"T":"Reason%20codes%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.476,"y":9.59,"w":6.556999999999999,"clr":-1,"A":"left","R":[{"T":"applies%20to%20you.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":10.528,"w":7.074,"clr":-1,"A":"left","R":[{"T":"Reason%20codes%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":10.528,"w":50.82199999999995,"clr":-1,"A":"left","R":[{"T":"For%20each%20firm%20listed%20below%2C%20enter%20in%20column%20(c)%20the%20applicable%20reason%20code%20for%20filing%20this%20form.%20If%20none%20of%20the%20reason%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":11.153,"w":48.975999999999964,"clr":-1,"A":"left","R":[{"T":"codes%20apply%20to%20you%2C%20but%20you%20believe%20you%20should%20have%20been%20treated%20as%20an%20employee%2C%20enter%20reason%20code%20G%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.073,"y":11.153,"w":1.701,"clr":-1,"A":"left","R":[{"T":"file%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":11.778,"w":26.354999999999997,"clr":-1,"A":"left","R":[{"T":"Form%20SS-8%20on%20or%20before%20the%20date%20you%20file%20your%20tax%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.082,"y":11.778,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.017,"y":13.34,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":13.34,"w":42.14,"clr":-1,"A":"left","R":[{"T":"I%20filed%20Form%20SS-8%20and%20received%20a%20determination%20letter%20stating%20that%20I%20am%20an%20employee%20of%20this%20firm.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.931000000000001,"y":14.84,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":14.84,"w":33.858999999999995,"clr":-1,"A":"left","R":[{"T":"I%20received%20other%20correspondence%20from%20the%20IRS%20that%20states%20I%20am%20an%20employee.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.902999999999999,"y":16.34,"w":0.759,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":16.34,"w":26.947999999999993,"clr":-1,"A":"left","R":[{"T":"I%20filed%20Form%20SS-8%20with%20the%20IRS%20and%20have%20not%20received%20a%20reply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.931000000000001,"y":17.84,"w":0.741,"clr":-1,"A":"left","R":[{"T":"H","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":17.84,"w":52.12899999999996,"clr":-1,"A":"left","R":[{"T":"I%20received%20a%20Form%20W-2%20and%20a%20Form%201099-MISC%20from%20this%20firm%20for%202013.%20The%20amount%20on%20Form%201099-MISC%20should%20have%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":18.496,"w":17.540999999999997,"clr":-1,"A":"left","R":[{"T":"been%20included%20as%20wages%20on%20Form%20W-2.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.448,"y":18.496,"w":24.313000000000006,"clr":-1,"A":"left","R":[{"T":"(Do%20not%20file%20Form%20SS-8%20if%20you%20select%20reason%20code%20H.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.301,"y":20.438,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.038,"y":20.438,"w":5.779000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20firm","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.607,"y":19.407,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":45.389,"y":19.407,"w":2.76,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.321,"y":19.907,"w":3.055,"clr":-1,"A":"left","R":[{"T":"federal","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.728,"y":20.407,"w":5.704000000000001,"clr":-1,"A":"left","R":[{"T":"identification","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.097,"y":20.907,"w":3.984,"clr":-1,"A":"left","R":[{"T":"number%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.614,"y":21.407,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.631,"y":19.907,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.368,"y":19.907,"w":2.3520000000000003,"clr":-1,"A":"left","R":[{"T":"Enter","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.572,"y":20.407,"w":6.668000000000001,"clr":-1,"A":"left","R":[{"T":"reason%20code%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.862,"y":20.907,"w":2.056,"clr":-1,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.67,"y":20.907,"w":2.7409999999999997,"clr":-1,"A":"left","R":[{"T":"above","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.468,"y":19.485,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.25,"y":19.485,"w":5.111,"clr":-1,"A":"left","R":[{"T":"Date%20of%20IRS","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.022,"y":19.954,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"determination%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.044,"y":20.422,"w":7.574999999999999,"clr":-1,"A":"left","R":[{"T":"correspondence%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.267,"y":20.891,"w":6.925999999999999,"clr":-1,"A":"left","R":[{"T":"(MM%2FDD%2FYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.888000000000005,"y":21.36,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.738,"y":19.72,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.475,"y":19.72,"w":3.149,"clr":-1,"A":"left","R":[{"T":"Check%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.45,"y":20.188,"w":3.13,"clr":-1,"A":"left","R":[{"T":"if%20Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.258,"y":20.657,"w":5.1129999999999995,"clr":-1,"A":"left","R":[{"T":"1099-MISC","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.803,"y":21.125,"w":5.869000000000001,"clr":-1,"A":"left","R":[{"T":"was%20received","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.282,"y":19.407,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.729,"y":19.407,"w":9.48,"clr":-1,"A":"left","R":[{"T":"Total%20wages%20received","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.037,"y":19.907,"w":11.092000000000002,"clr":-1,"A":"left","R":[{"T":"with%20no%20social%20security%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.21,"y":20.407,"w":5.815,"clr":-1,"A":"left","R":[{"T":"Medicare%20tax","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.394,"y":20.907,"w":8.835,"clr":-1,"A":"left","R":[{"T":"withholding%20and%20not","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.703,"y":21.407,"w":9.983999999999998,"clr":-1,"A":"left","R":[{"T":"reported%20on%20Form%20W-2","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.65,"y":23.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":24.546,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":26.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":27.546,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":29.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":29.79,"w":7.184000000000001,"clr":-1,"A":"left","R":[{"T":"6%20Total%20wages.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.712,"y":29.79,"w":35.19799999999998,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201%20through%205%20in%20column%20(f).%20Enter%20here%20and%20include%20on%20Form%201040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.478,"w":24.897000000000006,"clr":-1,"A":"left","R":[{"T":"line%207%3B%20Form%201040NR%2C%20line%208%3B%20or%20Form%201040NR-EZ%2C%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":30.478,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.402,"y":30.599,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":25.690000000000005,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20of%20wages%20subject%20to%20social%20security%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.602,"y":31.348999999999997,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.165,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.215,"w":30.334000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%20wages%20and%20social%20security%20tips%20(total%20of%20boxes%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.902,"w":28.98700000000001,"clr":-1,"A":"left","R":[{"T":"and%207%20on%20Form(s)%20W-2)%2C%20railroad%20retirement%20(RRTA)%20compensation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":28.50700000000001,"clr":-1,"A":"left","R":[{"T":"(subject%20to%20the%206.2%25%20rate)%2C%20and%20unreported%20tips%20subject%20to%20social%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.277,"w":24.099000000000007,"clr":-1,"A":"left","R":[{"T":"security%20tax%20from%20Form%204137%2C%20line%2010.%20See%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":34.277,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":34.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":37.23399999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207.%20If%20line%208%20is%20more%20than%20line%207%2C%20enter%20-0-%20here%20and%20on%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":35.09,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.402,"y":35.099,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":32.06,"clr":-1,"A":"left","R":[{"T":"Wages%20subject%20to%20social%20security%20tax.%20Enter%20the%20smaller%20of%20line%206%20or%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":35.84,"w":10.664,"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":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":25.376000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2010%20by%20.062%20(social%20security%20tax%20rate%20for%202013)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":36.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":19.190000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20.0145%20(Medicare%20tax%20rate)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":37.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.996,"y":37.349,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.04,"w":38.312,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012.%20Enter%20here%20and%20on%20Form%201040%2C%20line%2057%3B%20Form%201040NR%2C%20line%2055%3B%20or%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.738,"w":38.26999999999998,"clr":-1,"A":"left","R":[{"T":"Form%201040NR-EZ%2C%20line%2016.%20(Form%201040-SS%20and%20Form%201040-PR%20filers%2C%20see%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.72,"y":38.738,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.782,"y":38.738,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.152,"y":38.645,"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":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.608,"w":33.26,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.572,"y":39.626,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037730B","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.01,"y":39.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":39.572,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8919%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.453,"y":39.572,"w":2.742,"clr":-1,"A":"left","R":[{"T":"(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":68.074,"y":31.301000000000002,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"113%2C700","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":76.436,"y":31.301000000000002,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[2,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6945,"AM":1024,"x":6.188,"y":5.875,"w":69.3,"h":0.875,"TU":"Page 1. Name of person who must file this form. If married, complete a separate Form 8919 for each spouse who must file this form."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6946,"AM":1024,"x":75.487,"y":5.875,"w":23.513,"h":0.875,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_1_","EN":0},"TI":6947,"AM":0,"x":8.662,"y":22.584,"w":30.938,"h":1.417,"TU":"Reason codes: For each firm listed below, enter in column (c) the applicable reason code for filing this form. If none of the reason codes apply to you, but you believe you should have been treated as an employee, enter reason code G, and file Form S S-8 on or before the date you file your tax return. A, I filed Form S S - 8 and received a determination letter stating that I am an employee of this firm. C, I received other correspondence from the I R S that states I am an employee. G, I filed Form S S - 8 with the I R S and have not received a reply. H, I received a Form W-2 and a Form 1099-M I S C from this firm for 2013. The amount on Form 1099-M I S C should have been included as wages on Form W-2. (Do not file Form S S-8 if you select reason code H.) Line 1. (a) Name of firm. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_1_","EN":0},"TI":6948,"AM":0,"x":39.6,"y":22.584,"w":13.613,"h":1.417,"TU":"Line 1. (b). Firm's federal identification number (see instructions). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_1_","EN":0},"TI":6949,"AM":0,"x":53.213,"y":22.584,"w":9.9,"h":1.417,"TU":"Line 1. (c). Enter reason code from above. ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_1_","EN":0},"TI":6950,"AM":0,"x":63.112,"y":22.584,"w":11.138,"h":1.417,"TU":"Line 1. (d). Date of I R S determination or correspondence (enter 2 digit month, 2 digit day, 4 digit year) (see instructions). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_1_","EN":0},"TI":6952,"AM":0,"x":82.912,"y":22.584,"w":12.375,"h":1.417,"TU":"Line 1. (f). Total wages received with no social security or Medicare tax withholding and not reported on Form W-2. Dollars. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_2_","EN":0},"TI":6953,"AM":0,"x":8.662,"y":24.084,"w":30.938,"h":1.417,"TU":"Line 2. (a)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_2_","EN":0},"TI":6954,"AM":0,"x":39.6,"y":24.084,"w":13.613,"h":1.417,"TU":"Line 2. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_2_","EN":0},"TI":6955,"AM":0,"x":53.213,"y":24.084,"w":9.9,"h":1.417,"TU":"Line 2. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_2_","EN":0},"TI":6956,"AM":0,"x":63.112,"y":24.06,"w":11.138,"h":1.417,"TU":"Line 2. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_2_","EN":0},"TI":6958,"AM":0,"x":83.053,"y":24.084,"w":12.375,"h":1.417,"TU":"Line 2. (f). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_3_","EN":0},"TI":6959,"AM":0,"x":8.662,"y":25.584,"w":30.938,"h":1.417,"TU":"Line 3. (a). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_3_","EN":0},"TI":6960,"AM":0,"x":39.6,"y":25.584,"w":13.613,"h":1.417,"TU":"Line 3. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_3_","EN":0},"TI":6961,"AM":0,"x":53.213,"y":25.584,"w":9.9,"h":1.417,"TU":"Line 3. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_3_","EN":0},"TI":6962,"AM":0,"x":63.112,"y":25.584,"w":11.138,"h":1.417,"TU":"Line 3. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_3_","EN":0},"TI":6964,"AM":0,"x":82.912,"y":25.584,"w":12.375,"h":1.417,"TU":"Line 3. (f). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_4_","EN":0},"TI":6965,"AM":0,"x":8.662,"y":27.084,"w":30.938,"h":1.417,"TU":"Line 4. (a). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_4_","EN":0},"TI":6966,"AM":0,"x":39.6,"y":27.084,"w":13.613,"h":1.417,"TU":"Line 4. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_4_","EN":0},"TI":6967,"AM":0,"x":53.213,"y":27.033,"w":9.9,"h":1.417,"TU":"Line 4. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_4_","EN":0},"TI":6968,"AM":0,"x":63.112,"y":27.084,"w":11.138,"h":1.417,"TU":"Line 4. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_4_","EN":0},"TI":6970,"AM":0,"x":82.912,"y":27.084,"w":12.375,"h":1.417,"TU":"Line 4. (f). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_5_","EN":0},"TI":6971,"AM":0,"x":8.662,"y":28.584,"w":30.938,"h":1.417,"TU":"Line 5. (a). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_5_","EN":0},"TI":6972,"AM":0,"x":39.6,"y":28.584,"w":13.613,"h":1.417,"TU":"Line 5. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_5_","EN":0},"TI":6973,"AM":0,"x":53.213,"y":28.584,"w":9.9,"h":1.417,"TU":"Line 5. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_5_","EN":0},"TI":6974,"AM":0,"x":63.112,"y":28.584,"w":11.138,"h":1.417,"TU":"Line 5. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_5_","EN":0},"TI":6976,"AM":0,"x":82.912,"y":28.584,"w":12.375,"h":1.417,"TU":"Line 5. (f). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTWAGES","EN":0},"TI":6977,"AM":1024,"x":82.832,"y":30.75,"w":12.375,"h":0.833,"TU":"Line 6. Total wages. Combine lines 1 through 5 in column (f). Enter here and include on Form 1040, line 7; Form 1040 N R, line 8; or Form 1040 N R - E Z, line 3. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXSS","EN":0},"TI":6978,"AM":1024,"x":63.112,"y":31.5,"w":12.375,"h":0.833,"TU":"Line 7. Maximum amount of wages subject to social security tax. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHWAGES","EN":0},"TI":6979,"AM":0,"x":63.112,"y":34.5,"w":12.375,"h":0.833,"TU":"Line 8. Total social security wages and tips (total of boxes 3 and 7 on Form or Forms W-2) or railroad retirement (tier 1) compensation, and unreported tips subject to social security tax from Form 4137, line 10. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETWAGES","EN":0},"TI":6980,"AM":1024,"x":82.993,"y":35.279,"w":12.375,"h":0.833,"TU":"Line 9. Subtract line 8 from line 7. If line 8 is more than line 7, enter zero here and on line 10. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSWAGES","EN":0},"TI":6981,"AM":1024,"x":82.912,"y":36,"w":12.375,"h":0.833,"TU":"Line 10. Wages subject to social security tax. Enter the smaller of line 6 or line 9. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSTAX","EN":0},"TI":6982,"AM":1024,"x":82.912,"y":36.75,"w":12.375,"h":0.833,"TU":"Line 11. Multiply line 10 by .062 (social security tax rate for 2013). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MEDTAX","EN":0},"TI":6983,"AM":1024,"x":82.912,"y":37.5,"w":12.375,"h":0.833,"TU":"Line 12. Multiply line 6 by .0145 (Medicare tax rate). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTAX","EN":0},"TI":6984,"AM":1024,"x":82.912,"y":39,"w":12.375,"h":0.833,"TU":"Line 13. Add lines 11 and 12. Enter here and on Form 1040, line 57; Form 1040N R, line 55; or Form 1040N R-E Z, line 16. (Form 1040-S S and Form 1040-P R filers, see instructions). Dollars. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_1_","EN":0},"TI":6951,"AM":0,"x":76.853,"y":22.717,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_2_","EN":0},"TI":6957,"AM":0,"x":76.853,"y":24.209,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_3_","EN":0},"TI":6963,"AM":0,"x":76.853,"y":25.724,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_4_","EN":0},"TI":6969,"AM":0,"x":76.789,"y":27.216,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_5_","EN":0},"TI":6975,"AM":0,"x":76.918,"y":28.731,"w":3.094,"h":1.125}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8919T.content.txt b/test/data/fd/form/F8919T.content.txt new file mode 100755 index 00000000..68c39889 --- /dev/null +++ b/test/data/fd/form/F8919T.content.txt @@ -0,0 +1,154 @@ +Form +8919 +Department of the Treasury +Internal Revenue Service +Uncollected Social Security and +Medicare Tax on Wages +a + + +Information about Form 8919 and its instructions is at +www.irs.gov/form8919. +a + + +Attach to your tax return. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +72 +Name of person who must file this form. If married, complete a separate Form 8919 for each spouse who must file this form. +Social security number +Who must file. +You must file Form 8919 if +all +of the following apply. +• You performed services for a firm. +• You believe your pay from the firm was not for services as an independent contractor. +• The firm did not withhold your share of social security and Medicare taxes from your pay. +• One of the reasons listed below under +Reason codes +applies to you. +Reason codes: +For each firm listed below, enter in column (c) the applicable reason code for filing this form. If none of the reason +codes apply to you, but you believe you should have been treated as an employee, enter reason code G, and +file +Form SS-8 on or before the date you file your tax return +. +A +I filed Form SS-8 and received a determination letter stating that I am an employee of this firm. +C +I received other correspondence from the IRS that states I am an employee. +G +I filed Form SS-8 with the IRS and have not received a reply. +H +I received a Form W-2 and a Form 1099-MISC from this firm for 2013. The amount on Form 1099-MISC should have +been included as wages on Form W-2. +(Do not file Form SS-8 if you select reason code H.) +(a) +Name of firm +(b) +Firm’s + +federal + +identification + +number +(see instructions) +(c) +Enter + +reason code +from + +above +(d) +Date of IRS + +determination or + +correspondence + +(MM/DD/YYYY) + +(see instructions) +(e) +Check + +if Form + +1099-MISC + +was received +(f) +Total wages received + +with no social security or + +Medicare tax + +withholding and not + +reported on Form W-2 + + + + + + + + +1 +2 +3 +4 +5 +6 Total wages. +Combine lines 1 through 5 in column (f). Enter here and include on Form 1040, + +line 7; Form 1040NR, line 8; or Form 1040NR-EZ, line 3 +............. +6 +7 +Maximum amount of wages subject to social security tax . . . +7 +8 + + +Total social security wages and social security tips (total of boxes 3 +and 7 on Form(s) W-2), railroad retirement (RRTA) compensation +(subject to the 6.2% rate), and unreported tips subject to social +security tax from Form 4137, line 10. See instructions +.... +8 +9 +Subtract line 8 from line 7. If line 8 is more than line 7, enter -0- here and on line 10 +.... +9 +10 +Wages subject to social security tax. Enter the smaller of line 6 or line 9 +........ +10 +11 +Multiply line 10 by .062 (social security tax rate for 2013) +............. +11 +12 +Multiply line 6 by .0145 (Medicare tax rate) +.................. +12 +13 +Add lines 11 and 12. Enter here and on Form 1040, line 57; Form 1040NR, line 55; or +Form 1040NR-EZ, line 16. (Form 1040-SS and Form 1040-PR filers, see instructions) . . . +a +13 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 37730B +Form +8919 +(2013) +113,700 00 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8919T.fields.json b/test/data/fd/form/F8919T.fields.json new file mode 100755 index 00000000..86ad7381 --- /dev/null +++ b/test/data/fd/form/F8919T.fields.json @@ -0,0 +1 @@ +[{"id":"FIRMS_M99X_1_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_2_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_3_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_4_","type":"box","calc":false,"value":""},{"id":"FIRMS_M99X_5_","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"FIRMS_FIRM_1_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_1_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_1_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_1_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_1_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_2_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_2_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_2_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_2_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_2_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_3_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_3_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_3_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_3_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_3_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_4_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_4_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_4_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_4_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_4_","type":"number","calc":false,"value":""},{"id":"FIRMS_FIRM_5_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_EIN_5_","type":"alpha","calc":false,"value":""},{"id":"FIRMS_REASON_5_","type":"mask","calc":false,"value":""},{"id":"FIRMS_DETDATE_5_","type":"date","calc":false,"value":""},{"id":"FIRMS_WAGES_5_","type":"number","calc":false,"value":""},{"id":"TOTWAGES","type":"number","calc":true,"value":""},{"id":"MAXSS","type":"number","calc":true,"value":""},{"id":"OTHWAGES","type":"number","calc":false,"value":""},{"id":"NETWAGES","type":"number","calc":true,"value":""},{"id":"SSWAGES","type":"number","calc":true,"value":""},{"id":"SSTAX","type":"number","calc":true,"value":""},{"id":"MEDTAX","type":"number","calc":true,"value":""},{"id":"TOTTAX","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8919T.json b/test/data/fd/form/F8919T.json new file mode 100755 index 00000000..65d47156 --- /dev/null +++ b/test/data/fd/form/F8919T.json @@ -0,0 +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":69.386},{"oc":"#221f1f","x":75.447,"y":6.751,"w":1.125,"l":23.598},{"oc":"#221f1f","x":6.147,"y":10.501,"w":1.125,"l":12.463},{"oc":"#221f1f","x":18.522,"y":10.501,"w":1.125,"l":80.524},{"oc":"#221f1f","x":6.147,"y":19.501,"w":1.125,"l":33.498},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":19.501,"w":1.125,"l":13.698},{"oc":"#221f1f","x":39.559,"y":22.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":19.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":53.172,"y":22.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":19.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":63.072,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":19.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":74.209,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":19.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":22.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":22.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":24.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":24.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":24.001,"w":0.75,"l":8.748},{"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":6.146,"y":25.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":25.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":25.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":25.501,"w":0.75,"l":8.748},{"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.146,"y":27.001,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":27.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":27.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":27.001,"w":0.75,"l":8.748},{"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":6.146,"y":28.502,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":28.502,"w":0.75,"l":13.698},{"oc":"#221f1f","x":53.172,"y":28.502,"w":0.75,"l":9.986},{"oc":"#221f1f","x":63.072,"y":28.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":74.209,"y":28.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.872,"y":28.502,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":28.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":30.002,"w":1.125,"l":33.498},{"oc":"#221f1f","x":39.559,"y":30.002,"w":1.125,"l":13.698},{"oc":"#221f1f","x":53.172,"y":30.002,"w":1.125,"l":9.986},{"oc":"#221f1f","x":63.072,"y":30.002,"w":1.125,"l":11.223},{"oc":"#221f1f","x":74.209,"y":30.002,"w":1.125,"l":8.748},{"oc":"#221f1f","x":82.872,"y":30.002,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.002,"w":1.125,"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":59.359,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":32.251,"w":0.75,"l":12.461},{"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":3.798},{"oc":"#221f1f","x":59.359,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":35.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"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":12.461},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"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":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":38.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":38.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":39.751,"w":1.5,"l":45.874},{"oc":"#221f1f","x":51.934,"y":39.751,"w":1.5,"l":34.736},{"oc":"#221f1f","x":86.584,"y":39.751,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.774},{"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":2.281},{"oc":"#221f1f","x":75.49,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":39.602,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":53.215,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":63.115,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":74.252,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":82.915,"y":19.478,"w":0.75,"l":3.039},{"oc":"#221f1f","x":39.602,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"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":74.252,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":23.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":53.215,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":28.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"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":82.915,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"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":32.236,"w":0.75,"l":3.039},{"oc":"#221f1f","x":59.402,"y":32.236,"w":0.75,"l":3.039},{"oc":"#221f1f","x":75.49,"y":32.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":34.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":79.202,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":79.202,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":37.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.789},{"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":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.986,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":79.202,"y":31.501,"w":3.713,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"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.635,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8919","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8760000000000003,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.314,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":35.166,"y":2.101,"w":14.879999999999999,"clr":-1,"A":"left","R":[{"T":"Uncollected%20Social%20Security%20and%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":39.328,"y":2.851,"w":10.82,"clr":-1,"A":"left","R":[{"T":"Medicare%20Tax%20on%20Wages","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":26.198,"y":3.4000000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.898,"y":3.4930000000000003,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208919%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.338,"y":3.4930000000000003,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8919.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.282,"y":4.15,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.982,"y":4.243,"w":12.226,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.%20","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.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.3310000000000004,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8760000000000003,"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.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.277,"y":4.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"72","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":55.38299999999994,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20who%20must%20file%20this%20form.%20If%20married%2C%20complete%20a%20separate%20Form%208919%20for%20each%20spouse%20who%20must%20file%20this%20form.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.927,"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":6.793000000000001,"clr":-1,"A":"left","R":[{"T":"Who%20must%20file.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":6.59,"w":12.023000000000005,"clr":-1,"A":"left","R":[{"T":"You%20must%20file%20Form%208919%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.913,"y":6.59,"w":1.368,"clr":-1,"A":"left","R":[{"T":"all%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.029,"y":6.59,"w":9.832999999999998,"clr":-1,"A":"left","R":[{"T":"of%20the%20following%20apply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":7.34,"w":15.983000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20performed%20services%20for%20a%20firm.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":8.09,"w":39.07999999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20believe%20your%20pay%20from%20the%20firm%20was%20not%20for%20services%20as%20an%20independent%20contractor.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":8.84,"w":40.54299999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20firm%20did%20not%20withhold%20your%20share%20of%20social%20security%20and%20Medicare%20taxes%20from%20your%20pay.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":9.59,"w":18.04,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20One%20of%20the%20reasons%20listed%20below%20under%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.22,"y":9.59,"w":6.630000000000001,"clr":-1,"A":"left","R":[{"T":"Reason%20codes%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.476,"y":9.59,"w":6.556999999999999,"clr":-1,"A":"left","R":[{"T":"applies%20to%20you.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":10.528,"w":7.074,"clr":-1,"A":"left","R":[{"T":"Reason%20codes%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":10.528,"w":50.82199999999995,"clr":-1,"A":"left","R":[{"T":"For%20each%20firm%20listed%20below%2C%20enter%20in%20column%20(c)%20the%20applicable%20reason%20code%20for%20filing%20this%20form.%20If%20none%20of%20the%20reason%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":11.153,"w":48.975999999999964,"clr":-1,"A":"left","R":[{"T":"codes%20apply%20to%20you%2C%20but%20you%20believe%20you%20should%20have%20been%20treated%20as%20an%20employee%2C%20enter%20reason%20code%20G%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.073,"y":11.153,"w":1.701,"clr":-1,"A":"left","R":[{"T":"file%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":11.778,"w":26.354999999999997,"clr":-1,"A":"left","R":[{"T":"Form%20SS-8%20on%20or%20before%20the%20date%20you%20file%20your%20tax%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.082,"y":11.778,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.017,"y":13.34,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":13.34,"w":42.14,"clr":-1,"A":"left","R":[{"T":"I%20filed%20Form%20SS-8%20and%20received%20a%20determination%20letter%20stating%20that%20I%20am%20an%20employee%20of%20this%20firm.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.931000000000001,"y":14.84,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":14.84,"w":33.858999999999995,"clr":-1,"A":"left","R":[{"T":"I%20received%20other%20correspondence%20from%20the%20IRS%20that%20states%20I%20am%20an%20employee.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.902999999999999,"y":16.34,"w":0.759,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":16.34,"w":26.947999999999993,"clr":-1,"A":"left","R":[{"T":"I%20filed%20Form%20SS-8%20with%20the%20IRS%20and%20have%20not%20received%20a%20reply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.931000000000001,"y":17.84,"w":0.741,"clr":-1,"A":"left","R":[{"T":"H","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":17.84,"w":52.12899999999996,"clr":-1,"A":"left","R":[{"T":"I%20received%20a%20Form%20W-2%20and%20a%20Form%201099-MISC%20from%20this%20firm%20for%202013.%20The%20amount%20on%20Form%201099-MISC%20should%20have%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":18.496,"w":17.540999999999997,"clr":-1,"A":"left","R":[{"T":"been%20included%20as%20wages%20on%20Form%20W-2.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.448,"y":18.496,"w":24.313000000000006,"clr":-1,"A":"left","R":[{"T":"(Do%20not%20file%20Form%20SS-8%20if%20you%20select%20reason%20code%20H.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.301,"y":20.438,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.038,"y":20.438,"w":5.779000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20firm","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.607,"y":19.407,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":45.389,"y":19.407,"w":2.76,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.321,"y":19.907,"w":3.055,"clr":-1,"A":"left","R":[{"T":"federal","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.728,"y":20.407,"w":5.704000000000001,"clr":-1,"A":"left","R":[{"T":"identification","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.097,"y":20.907,"w":3.984,"clr":-1,"A":"left","R":[{"T":"number%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.614,"y":21.407,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.631,"y":19.907,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.368,"y":19.907,"w":2.3520000000000003,"clr":-1,"A":"left","R":[{"T":"Enter","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.572,"y":20.407,"w":6.668000000000001,"clr":-1,"A":"left","R":[{"T":"reason%20code%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.862,"y":20.907,"w":2.056,"clr":-1,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.67,"y":20.907,"w":2.7409999999999997,"clr":-1,"A":"left","R":[{"T":"above","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.468,"y":19.485,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.25,"y":19.485,"w":5.111,"clr":-1,"A":"left","R":[{"T":"Date%20of%20IRS","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.022,"y":19.954,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"determination%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.044,"y":20.422,"w":7.574999999999999,"clr":-1,"A":"left","R":[{"T":"correspondence%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.267,"y":20.891,"w":6.925999999999999,"clr":-1,"A":"left","R":[{"T":"(MM%2FDD%2FYYYY)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.888000000000005,"y":21.36,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.738,"y":19.72,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.475,"y":19.72,"w":3.149,"clr":-1,"A":"left","R":[{"T":"Check%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.45,"y":20.188,"w":3.13,"clr":-1,"A":"left","R":[{"T":"if%20Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.258,"y":20.657,"w":5.1129999999999995,"clr":-1,"A":"left","R":[{"T":"1099-MISC","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.803,"y":21.125,"w":5.869000000000001,"clr":-1,"A":"left","R":[{"T":"was%20received","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.282,"y":19.407,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.729,"y":19.407,"w":9.48,"clr":-1,"A":"left","R":[{"T":"Total%20wages%20received","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.037,"y":19.907,"w":11.092000000000002,"clr":-1,"A":"left","R":[{"T":"with%20no%20social%20security%20or","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.21,"y":20.407,"w":5.815,"clr":-1,"A":"left","R":[{"T":"Medicare%20tax","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.394,"y":20.907,"w":8.835,"clr":-1,"A":"left","R":[{"T":"withholding%20and%20not","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.703,"y":21.407,"w":9.983999999999998,"clr":-1,"A":"left","R":[{"T":"reported%20on%20Form%20W-2","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.65,"y":23.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":24.546,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":26.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":27.546,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":29.046,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":29.79,"w":7.184000000000001,"clr":-1,"A":"left","R":[{"T":"6%20Total%20wages.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.712,"y":29.79,"w":35.19799999999998,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201%20through%205%20in%20column%20(f).%20Enter%20here%20and%20include%20on%20Form%201040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.478,"w":24.897000000000006,"clr":-1,"A":"left","R":[{"T":"line%207%3B%20Form%201040NR%2C%20line%208%3B%20or%20Form%201040NR-EZ%2C%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":30.478,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.402,"y":30.599,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":31.340000000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":25.690000000000005,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20of%20wages%20subject%20to%20social%20security%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.316,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":31.340000000000003,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.602,"y":31.348999999999997,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.165,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.215,"w":30.334000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%20wages%20and%20social%20security%20tips%20(total%20of%20boxes%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.902,"w":28.98700000000001,"clr":-1,"A":"left","R":[{"T":"and%207%20on%20Form(s)%20W-2)%2C%20railroad%20retirement%20(RRTA)%20compensation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.59,"w":28.50700000000001,"clr":-1,"A":"left","R":[{"T":"(subject%20to%20the%206.2%25%20rate)%2C%20and%20unreported%20tips%20subject%20to%20social%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.277,"w":24.099000000000007,"clr":-1,"A":"left","R":[{"T":"security%20tax%20from%20Form%204137%2C%20line%2010.%20See%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":34.277,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":34.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":37.23399999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207.%20If%20line%208%20is%20more%20than%20line%207%2C%20enter%20-0-%20here%20and%20on%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":35.09,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.402,"y":35.099,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":32.06,"clr":-1,"A":"left","R":[{"T":"Wages%20subject%20to%20social%20security%20tax.%20Enter%20the%20smaller%20of%20line%206%20or%20line%209%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":35.84,"w":10.664,"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":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":25.376000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2010%20by%20.062%20(social%20security%20tax%20rate%20for%202013)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":36.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":36.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":19.190000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20.0145%20(Medicare%20tax%20rate)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":37.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.996,"y":37.349,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.04,"w":38.312,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012.%20Enter%20here%20and%20on%20Form%201040%2C%20line%2057%3B%20Form%201040NR%2C%20line%2055%3B%20or%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.738,"w":38.26999999999998,"clr":-1,"A":"left","R":[{"T":"Form%201040NR-EZ%2C%20line%2016.%20(Form%201040-SS%20and%20Form%201040-PR%20filers%2C%20see%20instructions)%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.72,"y":38.738,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.782,"y":38.738,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.152,"y":38.645,"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":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.608,"w":33.26,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.572,"y":39.626,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037730B","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.01,"y":39.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":39.572,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8919%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.453,"y":39.572,"w":2.742,"clr":-1,"A":"left","R":[{"T":"(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":68.074,"y":31.301000000000002,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"113%2C700","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":76.436,"y":31.301000000000002,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[2,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":6985,"AM":1024,"x":6.188,"y":5.875,"w":69.3,"h":0.875,"TU":"Page 1. Name of person who must file this form. If married, complete a separate Form 8919 for each spouse who must file this form."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":6986,"AM":1024,"x":75.487,"y":5.875,"w":23.513,"h":0.875,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_1_","EN":0},"TI":6987,"AM":0,"x":8.662,"y":22.584,"w":30.938,"h":1.417,"TU":"Line 1. (a) Name of firm. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_1_","EN":0},"TI":6988,"AM":0,"x":39.6,"y":22.584,"w":13.613,"h":1.417,"TU":"Line 1. (b). Firm's federal identification number (see instructions). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_1_","EN":0},"TI":6989,"AM":0,"x":53.246,"y":22.577,"w":9.9,"h":1.417,"TU":"Line 1. (c). Enter reason code from above. ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_1_","EN":0},"TI":6990,"AM":0,"x":63.112,"y":22.584,"w":11.138,"h":1.417,"TU":"Line 1. (d). Date of I R S determination or correspondence (enter 2 digit month, 2 digit day, 4 digit year) (see instructions). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_1_","EN":0},"TI":6992,"AM":0,"x":82.912,"y":22.584,"w":12.375,"h":1.417,"TU":"Line 1. (f). Total wages received with no social security or Medicare tax withholding and not reported on Form W-2. Dollars. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_2_","EN":0},"TI":6993,"AM":0,"x":8.662,"y":24.084,"w":30.938,"h":1.417,"TU":"Line 2. (a)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_2_","EN":0},"TI":6994,"AM":0,"x":39.6,"y":24.084,"w":13.613,"h":1.417,"TU":"Line 2. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_2_","EN":0},"TI":6995,"AM":0,"x":53.106,"y":24.112,"w":9.9,"h":1.417,"TU":"Line 2. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_2_","EN":0},"TI":6996,"AM":0,"x":63.112,"y":24.06,"w":11.138,"h":1.417,"TU":"Line 2. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_2_","EN":0},"TI":6998,"AM":0,"x":82.912,"y":24.084,"w":12.375,"h":1.417,"TU":"Line 2. (f). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_3_","EN":0},"TI":6999,"AM":0,"x":8.662,"y":25.584,"w":30.938,"h":1.417,"TU":"Line 3. (a). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_3_","EN":0},"TI":7000,"AM":0,"x":39.6,"y":25.584,"w":13.613,"h":1.417,"TU":"Line 3. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_3_","EN":0},"TI":7001,"AM":0,"x":53.246,"y":25.589,"w":9.9,"h":1.417,"TU":"Line 3. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_3_","EN":0},"TI":7002,"AM":0,"x":63.112,"y":25.584,"w":11.138,"h":1.417,"TU":"Line 3. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_3_","EN":0},"TI":7004,"AM":0,"x":82.912,"y":25.584,"w":12.375,"h":1.417,"TU":"Line 3. (f). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_4_","EN":0},"TI":7005,"AM":0,"x":8.662,"y":27.084,"w":30.938,"h":1.417,"TU":"Line 4. (a). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_4_","EN":0},"TI":7006,"AM":0,"x":39.6,"y":27.084,"w":13.613,"h":1.417,"TU":"Line 4. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_4_","EN":0},"TI":7007,"AM":0,"x":53.106,"y":27.066,"w":9.9,"h":1.417,"TU":"Line 4. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_4_","EN":0},"TI":7008,"AM":0,"x":63.112,"y":27.084,"w":11.138,"h":1.417,"TU":"Line 4. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_4_","EN":0},"TI":7010,"AM":0,"x":82.912,"y":27.084,"w":12.375,"h":1.417,"TU":"Line 4. (f). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_FIRM_5_","EN":0},"TI":7011,"AM":0,"x":8.662,"y":28.584,"w":30.938,"h":1.417,"TU":"Line 5. (a). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRMS_EIN_5_","EN":0},"TI":7012,"AM":0,"x":39.6,"y":28.584,"w":13.613,"h":1.417,"TU":"Line 5. (b). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FIRMS_REASON_5_","EN":0},"TI":7013,"AM":0,"x":53.246,"y":28.594,"w":9.9,"h":1.417,"TU":"Line 5. (c). ","MV":"a"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FIRMS_DETDATE_5_","EN":0},"TI":7014,"AM":0,"x":63.112,"y":28.584,"w":11.138,"h":1.417,"TU":"Line 5. (d). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMS_WAGES_5_","EN":0},"TI":7016,"AM":0,"x":82.912,"y":28.584,"w":12.375,"h":1.417,"TU":"Line 5. (f). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTWAGES","EN":0},"TI":7017,"AM":1024,"x":82.832,"y":30.75,"w":12.375,"h":0.833,"TU":"Line 6. Total wages. Combine lines 1 through 5 in column (f). Enter here and include on Form 1040, line 7; Form 1040 N R, line 8; or Form 1040 N R - E Z, line 3. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXSS","EN":0},"TI":7018,"AM":1024,"x":63.112,"y":31.5,"w":12.375,"h":0.833,"TU":"Line 7. Maximum amount of wages subject to social security tax. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHWAGES","EN":0},"TI":7019,"AM":0,"x":63.112,"y":34.5,"w":12.375,"h":0.833,"TU":"Line 8. Total social security wages and tips (total of boxes 3 and 7 on Form or Forms W-2) or railroad retirement (tier 1) compensation, and unreported tips subject to social security tax from Form 4137, line 10. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETWAGES","EN":0},"TI":7020,"AM":1024,"x":82.993,"y":35.279,"w":12.375,"h":0.833,"TU":"Line 9. Subtract line 8 from line 7. If line 8 is more than line 7, enter zero here and on line 10. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSWAGES","EN":0},"TI":7021,"AM":1024,"x":82.912,"y":36,"w":12.375,"h":0.833,"TU":"Line 10. Wages subject to social security tax. Enter the smaller of line 6 or line 9. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSTAX","EN":0},"TI":7022,"AM":1024,"x":82.912,"y":36.75,"w":12.375,"h":0.833,"TU":"Line 11. Multiply line 10 by .062 (social security tax rate for 2013). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MEDTAX","EN":0},"TI":7023,"AM":1024,"x":82.912,"y":37.5,"w":12.375,"h":0.833,"TU":"Line 12. Multiply line 6 by .0145 (Medicare tax rate). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTAX","EN":0},"TI":7024,"AM":1024,"x":82.912,"y":39,"w":12.375,"h":0.833,"TU":"Line 13. Add lines 11 and 12. Enter here and on Form 1040, line 57; Form 1040N R, line 55; or Form 1040N R-E Z, line 16. (Form 1040-S S and Form 1040-P R filers, see instructions). Dollars. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_1_","EN":0},"TI":6991,"AM":0,"x":76.853,"y":22.717,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_2_","EN":0},"TI":6997,"AM":0,"x":76.853,"y":24.209,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_3_","EN":0},"TI":7003,"AM":0,"x":76.853,"y":25.724,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_4_","EN":0},"TI":7009,"AM":0,"x":76.789,"y":27.216,"w":3.094,"h":1.125}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIRMS_M99X_5_","EN":0},"TI":7015,"AM":0,"x":76.918,"y":28.731,"w":3.094,"h":1.125}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8931.content.txt b/test/data/fd/form/F8931.content.txt new file mode 100755 index 00000000..a929aec5 --- /dev/null +++ b/test/data/fd/form/F8931.content.txt @@ -0,0 +1,107 @@ +Form +8931 +(Rev. December 2010) +Department of the Treasury +Internal Revenue Service +Agricultural Chemicals Security Credit +a + +See instructions. +a + +Attach to your tax return. +OMB No. 1545-2122 +Attachment +Sequence No. +162 + +Name shown on return +Identifying number +Facility +1 +Enter on the applicable line below the qualified agricultural +chemicals security costs described (see instructions) +.... +(a) +(b) +(c) +a +Employee security training and background checks +..... +1a +b +Limitation and prevention of access to controls of agricultural +chemicals stored +................ +1b +c +Tagging, locking tank valves, and chemical additives to prevent +theft or to render chemicals unfit for illegal use +...... +1c +d +Perimeter protection of agricultural chemicals +....... +1d +e +Installation of security lighting, cameras, recording equipment, +and intrusion detection sensors +........... +1e +f +Implementation of measures to increase computer or computer +network security +................ +1f +g +Conducting a security vulnerability assessment +...... +1g +h +Implementing a site security plan +........... +1h +2 +Total qualified agricultural chemicals security costs. Add the +amounts in columns (a), (b), and (c) on lines 1a through 1h . . . +2 +3 +Multiply the amounts in columns (a), (b), and (c) on line 2 by 30% +3 +4 +Maximum credit per facility. Subtract the total of the credits +claimed for the facility in the 5 prior tax years from $100,000 . . +4 +5 +Agricultural chemicals security credit. Enter the smaller of line 3 or +line 4 for each facility. For additional facilities, see instructions . +5 +6 +Add the amounts for all facilities on line 5 +.................... +6 +7 +Credit from partnerships, S corporations, estates, and trusts +.............. +7 +8 +Add lines 6 and 7. Enter the result, but not more than $2,000,000. Estates and trusts, go to line 9; +partnerships and S corporations, report this amount on Schedule K; all others, report this amount on +the appropriate line of Form 3800 (e.g., line 1v of the 2010 Form 3800) +.......... +8 +9 +Amount allocated to beneficiaries of the estate or trust (see instructions) +.......... +9 +10 +Estates and trusts, subtract line 9 from line 8. Report the credit on the appropriate line of Form 3800 +(e.g., line 1v of the 2010 Form 3800) +...................... +10 +For Paperwork Reduction Act Notice, see page 2. +Cat. No. 37745A +Form +8931 + (Rev. 12-2010) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8931.fields.json b/test/data/fd/form/F8931.fields.json new file mode 100755 index 00000000..8e7f20b6 --- /dev/null +++ b/test/data/fd/form/F8931.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A13_SECURITY_1_","type":"number","calc":false,"value":""},{"id":"A13_SECURITY_2_","type":"number","calc":false,"value":""},{"id":"A13_SECURITY_3_","type":"number","calc":false,"value":""},{"id":"A14_AGCHEM_1_","type":"number","calc":false,"value":""},{"id":"A14_AGCHEM_2_","type":"number","calc":false,"value":""},{"id":"A14_AGCHEM_3_","type":"number","calc":false,"value":""},{"id":"A15_PREVTHFT_1_","type":"number","calc":false,"value":""},{"id":"A15_PREVTHFT_2_","type":"number","calc":false,"value":""},{"id":"A15_PREVTHFT_3_","type":"number","calc":false,"value":""},{"id":"A16_PROTECT_1_","type":"number","calc":false,"value":""},{"id":"A16_PROTECT_2_","type":"number","calc":false,"value":""},{"id":"A16_PROTECT_3_","type":"number","calc":false,"value":""},{"id":"A17_SECLITE_1_","type":"number","calc":false,"value":""},{"id":"A17_SECLITE_2_","type":"number","calc":false,"value":""},{"id":"A17_SECLITE_3_","type":"number","calc":false,"value":""},{"id":"A18_COMPSEC_1_","type":"number","calc":false,"value":""},{"id":"A18_COMPSEC_2_","type":"number","calc":false,"value":""},{"id":"A18_COMPSEC_3_","type":"number","calc":false,"value":""},{"id":"A19_VULNER_1_","type":"number","calc":false,"value":""},{"id":"A19_VULNER_2_","type":"number","calc":false,"value":""},{"id":"A19_VULNER_3_","type":"number","calc":false,"value":""},{"id":"A20_SITESEC_1_","type":"number","calc":false,"value":""},{"id":"A20_SITESEC_2_","type":"number","calc":false,"value":""},{"id":"A20_SITESEC_3_","type":"number","calc":false,"value":""},{"id":"A21_TOTSEC_1_","type":"number","calc":true,"value":""},{"id":"A21_TOTSEC_2_","type":"number","calc":true,"value":""},{"id":"A21_TOTSEC_3_","type":"number","calc":true,"value":""},{"id":"A22_MULTIPLY_1_","type":"number","calc":true,"value":""},{"id":"A22_MULTIPLY_2_","type":"number","calc":true,"value":""},{"id":"A22_MULTIPLY_3_","type":"number","calc":true,"value":""},{"id":"A23_MAXCRED_1_","type":"number","calc":false,"value":""},{"id":"A23_MAXCRED_2_","type":"number","calc":false,"value":""},{"id":"A23_MAXCRED_3_","type":"number","calc":false,"value":""},{"id":"A24_AGSECUR_1_","type":"number","calc":true,"value":""},{"id":"A24_AGSECUR_2_","type":"number","calc":true,"value":""},{"id":"A24_AGSECUR_3_","type":"number","calc":true,"value":""},{"id":"ALLFACIL","type":"number","calc":true,"value":""},{"id":"PSHIPCR","type":"number","calc":false,"value":""},{"id":"ADD","type":"number","calc":true,"value":""},{"id":"BENEFIC","type":"number","calc":true,"value":""},{"id":"ESTTRUST","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8931.json b/test/data/fd/form/F8931.json new file mode 100755 index 00000000..c9dc218c --- /dev/null +++ b/test/data/fd/form/F8931.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8931 (Rev December 2010)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.105,"y":5.251,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.955,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.025,"y":3.751,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.025,"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":58.122,"y":7.501,"w":0.75,"l":40.924},{"oc":"#221f1f","x":58.165,"y":9.001,"w":0.75,"l":3.713},{"oc":"#221f1f","x":58.165,"y":7.501,"w":0.75,"l":3.713},{"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":58.122,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":16.501,"w":0.75,"l":3.798},{"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":58.122,"y":18.751,"w":0.75,"l":3.798},{"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":58.122,"y":21.001,"w":0.75,"l":3.798},{"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":58.122,"y":22.501,"w":0.75,"l":3.798},{"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":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":24.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":24.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":58.122,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":27.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":27.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":27.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":27.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":58.122,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.122,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":61.834,"y":32.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":74.209,"y":32.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.584,"y":32.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":35.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":35.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.872,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.584,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":39.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.584,"y":39.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":33.498},{"oc":"#221f1f","x":39.559,"y":42.001,"w":1.5,"l":43.398},{"oc":"#221f1f","x":82.872,"y":42.001,"w":1.5,"l":16.173}],"VLines":[{"oc":"#221f1f","x":20.998,"y":2.235,"w":1.5,"l":3.031},{"oc":"#221f1f","x":84.111,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.111,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":75.49,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":58.165,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":74.252,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"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":61.877,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":16.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":16.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":16.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":16.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":18.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"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":61.877,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"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":61.877,"y":22.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":58.165,"y":22.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":22.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":22.486,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":23.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":23.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":23.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":23.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":26.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":58.165,"y":26.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":26.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":26.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":58.165,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":27.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":29.986,"w":0.75,"l":2.289},{"oc":"#221f1f","x":58.165,"y":29.986,"w":0.75,"l":2.289},{"oc":"#221f1f","x":74.252,"y":29.986,"w":0.75,"l":2.289},{"oc":"#221f1f","x":86.627,"y":29.986,"w":0.75,"l":2.289},{"oc":"#221f1f","x":86.627,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":33.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":33.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":35.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.915,"y":35.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.627,"y":38.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":39.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":39.736,"w":0.75,"l":2.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":58.165,"y":7.501,"w":3.713,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.898,"y":2.635,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.044,"y":2.635,"w":2.34,"clr":-1,"A":"left","R":[{"T":"8931%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.898,"y":3.225,"w":9.929000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202010)","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.898,"y":3.814,"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.314,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":31.659,"y":2.252,"w":17.159999999999997,"clr":-1,"A":"left","R":[{"T":"Agricultural%20Chemicals%20Security%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":46.121,"y":3.4720000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":47.489,"y":3.566,"w":8,"clr":-1,"A":"left","R":[{"T":"See%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.406,"y":4.222,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.774,"y":4.316,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.702,"y":2.348,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-2122","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.923,"y":3.7510000000000003,"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.26,"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.26,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"162","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":10.465000000000002,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20on%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.927,"y":4.938,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.006,"y":6.483,"w":3.664,"clr":-1,"A":"left","R":[{"T":"Facility%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":7.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.289999999999999,"w":26.614000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20the%20applicable%20line%20below%20the%20qualified%20agricultural%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":7.977,"w":23.818000000000005,"clr":-1,"A":"left","R":[{"T":"chemicals%20security%20costs%20described%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.257,"y":7.977,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.013,"y":7.612,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.363,"y":7.612,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.763,"y":7.612,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(c)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.59,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":23.154,"clr":-1,"A":"left","R":[{"T":"Employee%20security%20training%20and%20background%20checks%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":9.59,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.897,"y":9.59,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.028,"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.04,"w":27.893000000000008,"clr":-1,"A":"left","R":[{"T":"Limitation%20and%20prevention%20of%20access%20to%20controls%20of%20agricultural%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":11.727,"w":7.909000000000001,"clr":-1,"A":"left","R":[{"T":"chemicals%20stored%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.507,"y":11.727,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.868,"y":11.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":13.278,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.29,"w":28.840000000000007,"clr":-1,"A":"left","R":[{"T":"Tagging%2C%20locking%20tank%20valves%2C%20and%20chemical%20additives%20to%20prevent%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":13.977,"w":20.984,"clr":-1,"A":"left","R":[{"T":"theft%20or%20to%20render%20chemicals%20unfit%20for%20illegal%20use%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.123,"y":13.977,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.897,"y":14.09,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":15.59,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":20.576000000000004,"clr":-1,"A":"left","R":[{"T":"Perimeter%20protection%20of%20agricultural%20chemicals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":15.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.868,"y":15.59,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.028,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.04,"w":28.33899999999999,"clr":-1,"A":"left","R":[{"T":"Installation%20of%20security%20lighting%2C%20cameras%2C%20recording%20equipment%2C%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":17.728,"w":14.318000000000003,"clr":-1,"A":"left","R":[{"T":"and%20intrusion%20detection%20sensors%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.82,"y":17.728,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.897,"y":17.84,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1e%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":19.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":28.804999999999996,"clr":-1,"A":"left","R":[{"T":"Implementation%20of%20measures%20to%20increase%20computer%20or%20computer%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.978,"w":7.6480000000000015,"clr":-1,"A":"left","R":[{"T":"network%20security%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.501,"y":19.978,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.083,"y":20.09,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":21.59,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.59,"w":21.282,"clr":-1,"A":"left","R":[{"T":"Conducting%20a%20security%20vulnerability%20assessment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":21.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.868,"y":21.59,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1g%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":23.09,"w":0.871,"clr":-1,"A":"left","R":[{"T":"h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":14.986000000000006,"clr":-1,"A":"left","R":[{"T":"Implementing%20a%20site%20security%20plan%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":23.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.882,"y":23.09,"w":1.427,"clr":-1,"A":"left","R":[{"T":"1h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":24.528,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.54,"w":27.392999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20qualified%20agricultural%20chemicals%20security%20costs.%20Add%20the%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":25.228,"w":25.824000000000016,"clr":-1,"A":"left","R":[{"T":"amounts%20in%20columns%20(a)%2C%20(b)%2C%20and%20(c)%20on%20lines%201a%20through%201h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.317,"y":25.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":25.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":25.228,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.341,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.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":26.84,"w":28.880999999999997,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amounts%20in%20columns%20(a)%2C%20(b)%2C%20and%20(c)%20on%20line%202%20by%2030%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.341,"y":26.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":28.278,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.29,"w":27.117000000000004,"clr":-1,"A":"left","R":[{"T":"Maximum%20credit%20per%20facility.%20Subtract%20the%20total%20of%20the%20credits%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.978,"w":26.821,"clr":-1,"A":"left","R":[{"T":"claimed%20for%20the%20facility%20in%20the%205%20prior%20tax%20years%20from%20%24100%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":28.978,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":28.978,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.341,"y":29.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":30.528,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.54,"w":29.763,"clr":-1,"A":"left","R":[{"T":"Agricultural%20chemicals%20security%20credit.%20Enter%20the%20smaller%20of%20line%203%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":31.228,"w":27.872000000000003,"clr":-1,"A":"left","R":[{"T":"line%204%20for%20each%20facility.%20For%20additional%20facilities%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.446,"y":31.228,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.341,"y":31.340000000000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.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":32.84,"w":18.652,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20for%20all%20facilities%20on%20line%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":32.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":32.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":34.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":34.34,"w":27.153000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20from%20partnerships%2C%20S%20corporations%2C%20estates%2C%20and%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":34.34,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":34.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":35.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":35.853,"w":43.665999999999976,"clr":-1,"A":"left","R":[{"T":"Add%20lines%206%20and%207.%20Enter%20the%20result%2C%20but%20not%20more%20than%20%242%2C000%2C000.%20Estates%20and%20trusts%2C%20go%20to%20line%209%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":36.54,"w":44.807999999999964,"clr":-1,"A":"left","R":[{"T":"partnerships%20and%20S%20corporations%2C%20report%20this%20amount%20on%20Schedule%20K%3B%20all%20others%2C%20report%20this%20amount%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":37.227,"w":31.54800000000001,"clr":-1,"A":"left","R":[{"T":"the%20appropriate%20line%20of%20Form%203800%20(e.g.%2C%20line%201v%20of%20the%202010%20Form%203800)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.619,"y":37.227,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":37.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":38.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":32.375,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":38.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.091,"y":38.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":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.29,"w":44.93799999999998,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20subtract%20line%209%20from%20line%208.%20Report%20the%20credit%20on%20the%20appropriate%20line%20of%20Form%203800%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":40.977,"w":16.340000000000007,"clr":-1,"A":"left","R":[{"T":"(e.g.%2C%20line%201v%20of%20the%202010%20Form%203800)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.871,"y":40.977,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.661,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"w":23.518000000000008,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%202.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":56.551,"y":41.876,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037745A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.607,"y":41.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.75,"y":41.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8931","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.572,"y":41.822,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2010)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7025,"AM":1024,"x":6.188,"y":5.768,"w":69.176,"h":0.967,"TU":"Name shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7026,"AM":1024,"x":75.632,"y":5.768,"w":23.347,"h":0.967,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_SECURITY_1_","EN":0},"TI":7027,"AM":0,"x":62.061,"y":9.666,"w":12.024,"h":0.833,"TU":"Line 1a(a.) Employee security training and background checks."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_SECURITY_2_","EN":0},"TI":7028,"AM":0,"x":74.545,"y":9.623,"w":12.024,"h":0.833,"TU":"Line 1a(b). Employee security training and background checks"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13_SECURITY_3_","EN":0},"TI":7029,"AM":0,"x":87.028,"y":9.67,"w":12.024,"h":0.833,"TU":"Line 1a(c). Employee security training and background checks"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A14_AGCHEM_1_","EN":0},"TI":7030,"AM":0,"x":62.006,"y":11.732,"w":11.983,"h":0.898,"TU":"Line 1b(a). Limitation and prevention of access to controls of agricultural chemicals stored."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A14_AGCHEM_2_","EN":0},"TI":7031,"AM":0,"x":74.491,"y":11.789,"w":11.983,"h":0.898,"TU":"Line 1b(b). Limitation and prevention of access to controls of agricultural chemicals stored"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A14_AGCHEM_3_","EN":0},"TI":7032,"AM":0,"x":86.899,"y":11.808,"w":11.983,"h":0.898,"TU":"Line 1b(c). Limitation and prevention of access to controls of agricultural chemicals stored"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A15_PREVTHFT_1_","EN":0},"TI":7033,"AM":0,"x":62.081,"y":14.01,"w":11.983,"h":0.87,"TU":"Line 1c(a). Tagging, locking, tank valves, and chemical additives to prevent theft or to render chemicals unfit for illegal use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A15_PREVTHFT_2_","EN":0},"TI":7034,"AM":0,"x":74.416,"y":14.035,"w":11.983,"h":0.87,"TU":"Line 1c(b). Tagging, locking, tank valves, and chemical additives to prevent theft or to render chemicals unfit for illegal use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A15_PREVTHFT_3_","EN":0},"TI":7035,"AM":0,"x":86.824,"y":14.109,"w":11.983,"h":0.87,"TU":"Line 1c(c). Tagging, locking, tank valves, and chemical additives to prevent theft or to render chemicals unfit for illegal use."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A16_PROTECT_1_","EN":0},"TI":7036,"AM":0,"x":62.061,"y":15.666,"w":12.024,"h":0.833,"TU":"Line 1d(a). Perimeter protection of agricultural chemicals."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A16_PROTECT_2_","EN":0},"TI":7037,"AM":0,"x":74.47,"y":15.64,"w":12.025,"h":0.833,"TU":"Line 1d(b). Perimeter protection of agricultural chemicals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A16_PROTECT_3_","EN":0},"TI":7038,"AM":0,"x":86.953,"y":15.659,"w":12.024,"h":0.833,"TU":"Line 1d(c). Perimeter protection of agricultural chemicals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A17_SECLITE_1_","EN":0},"TI":7039,"AM":0,"x":62.156,"y":17.761,"w":11.983,"h":0.842,"TU":"Line 1e(a). Installation of security lighting, cameras, recording equipment, and intrusion detection sensors."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A17_SECLITE_2_","EN":0},"TI":7040,"AM":0,"x":74.341,"y":17.739,"w":11.983,"h":0.842,"TU":"Line 1e(b). Installation of security lighting, cameras, recording equipment, and intrusion detection sensor"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A17_SECLITE_3_","EN":0},"TI":7041,"AM":0,"x":86.824,"y":17.759,"w":11.983,"h":0.842,"TU":"Line 1e(c). Installation of security lighting, cameras, recording equipment, and intrusion detection sensor"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A18_COMPSEC_1_","EN":0},"TI":7042,"AM":0,"x":62.081,"y":20.011,"w":11.983,"h":0.869,"TU":"Line 1f(a). Implementation of measures to increase computer or computer network security."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A18_COMPSEC_2_","EN":0},"TI":7043,"AM":0,"x":74.416,"y":20.039,"w":11.983,"h":0.869,"TU":"Line 1f(b). Implementation of measures to increase computer or computer network security"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A18_COMPSEC_3_","EN":0},"TI":7044,"AM":0,"x":86.973,"y":20.086,"w":11.983,"h":0.869,"TU":"Line 1f(c). Implementation of measures to increase computer or computer network security"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A19_VULNER_1_","EN":0},"TI":7045,"AM":0,"x":61.997,"y":21.711,"w":12.024,"h":0.844,"TU":"Line 1g(a). Conducting a security vulnerability assessment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A19_VULNER_2_","EN":0},"TI":7046,"AM":0,"x":74.395,"y":21.576,"w":12.024,"h":0.844,"TU":"Line 1g(b). Conducting a security vulnerability assessment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A19_VULNER_3_","EN":0},"TI":7047,"AM":0,"x":86.953,"y":21.596,"w":12.024,"h":0.844,"TU":"Line 1g(c). Conducting a security vulnerability assessment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A20_SITESEC_1_","EN":0},"TI":7048,"AM":0,"x":62.063,"y":23.092,"w":11.983,"h":0.861,"TU":"Line 1h(a). Implementing a site security plan."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A20_SITESEC_2_","EN":0},"TI":7049,"AM":0,"x":74.545,"y":23.048,"w":12.024,"h":0.866,"TU":"Line 1h(b). Implementing a site security plan."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A20_SITESEC_3_","EN":0},"TI":7050,"AM":0,"x":87.103,"y":23.068,"w":12.024,"h":0.866,"TU":"Line 1h(c). Implementing a site security plan."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A21_TOTSEC_1_","EN":0},"TI":7051,"AM":1024,"x":62.145,"y":25.362,"w":11.983,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A21_TOTSEC_2_","EN":0},"TI":7052,"AM":1024,"x":74.424,"y":25.36,"w":12.024,"h":0.866,"TU":"(a)_1h"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A21_TOTSEC_3_","EN":0},"TI":7053,"AM":1024,"x":87.048,"y":25.344,"w":11.983,"h":0.861,"TU":"(a)_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A22_MULTIPLY_1_","EN":0},"TI":7054,"AM":1024,"x":62.061,"y":26.835,"w":12.024,"h":0.893,"TU":"Line 3(a). Multiply the amounts in columns (a), (b), and (c) on line 2 by 30%."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A22_MULTIPLY_2_","EN":0},"TI":7055,"AM":1024,"x":74.395,"y":26.765,"w":12.024,"h":0.893,"TU":"Line 3(b). Multiply the amounts in columns (a), (b), and (c) on line 2 by 30%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A22_MULTIPLY_3_","EN":0},"TI":7056,"AM":1024,"x":87.028,"y":26.73,"w":12.024,"h":0.893,"TU":"Line 3(c). Multiply the amounts in columns (a), (b), and (c) on line 2 by 30%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A23_MAXCRED_1_","EN":0},"TI":7057,"AM":0,"x":62.081,"y":29.046,"w":11.983,"h":0.834,"TU":"Line 4(a). Maximum credit per facility. Subtract the total of the credits claimed for the facility in the 5 prior tax years from $100,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A23_MAXCRED_2_","EN":0},"TI":7058,"AM":0,"x":74.566,"y":29.095,"w":11.983,"h":0.834,"TU":"Line 4(b). Maximum credit per facility. Subtract the total of the credits claimed for the facility in the 5 prior tax years from $100,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A23_MAXCRED_3_","EN":0},"TI":7059,"AM":0,"x":86.973,"y":29.123,"w":11.983,"h":0.834,"TU":"Line 4(c). Maximum credit per facility. Subtract the total of the credits claimed for the facility in the 5 prior tax years from $100,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A24_AGSECUR_1_","EN":0},"TI":7060,"AM":1024,"x":62.081,"y":31.205,"w":11.983,"h":0.89,"TU":"(a)_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A24_AGSECUR_2_","EN":0},"TI":7061,"AM":1024,"x":74.566,"y":31.231,"w":11.983,"h":0.89,"TU":"(a)_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A24_AGSECUR_3_","EN":0},"TI":7062,"AM":1024,"x":86.973,"y":31.223,"w":11.983,"h":0.89,"TU":"(a)_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLFACIL","EN":0},"TI":7063,"AM":1024,"x":86.811,"y":32.951,"w":12.128,"h":0.833,"TU":"Add the amounts for all facilities on line 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PSHIPCR","EN":0},"TI":7064,"AM":0,"x":86.811,"y":34.444,"w":12.128,"h":0.833,"TU":"Line 7. Credit from partnerships, S corporations, estates, and trusts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD","EN":0},"TI":7065,"AM":1024,"x":86.873,"y":37.364,"w":12.004,"h":0.871,"TU":"Add line 6 and 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BENEFIC","EN":0},"TI":7066,"AM":1024,"x":86.811,"y":38.944,"w":12.128,"h":0.833,"TU":"Amount allocated to beneficiaries of the estate or trust (see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTRUST","EN":0},"TI":7067,"AM":1024,"x":86.831,"y":41.038,"w":12.086,"h":0.834,"TU":"Estates and trusts, subtract line 9 from line 8."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8932.content.txt b/test/data/fd/form/F8932.content.txt new file mode 100755 index 00000000..901e9582 --- /dev/null +++ b/test/data/fd/form/F8932.content.txt @@ -0,0 +1,55 @@ +Form +8932 +(Rev. December 2012) +Department of the Treasury +Internal Revenue Service +Credit for Employer Differential Wage Payments +a + Attach to your tax return. +a + Information about Form 8932 and its instructions is at +www.irs.gov/form8932 +. +OMB No. 1545-2126 +Attachment +Sequence No. +161 + +Name(s) shown on return +Identifying number +1 +Eligible differential wage payments paid during the tax year (see instructions) +....... +1 +2 +Multiply line 1 by 20% (.20) (see instructions for the adjustment you must make) +...... +2 +3 +Credit for employer differential wage payments from partnerships, S corporations, cooperatives, +estates, and trusts (see instructions) +..................... +3 +4 +Add lines 2 and 3. Cooperatives, estates, and trusts, go to line 5. Partnerships and S corporations, +report this amount on Schedule K. All others, report this amount on Form 3800, line 1w +.... +4 +5 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust (see +instructions) +............................. +5 +6 +Cooperatives, estates, and trusts, + +subtract line 5 from line 4. Report this amount on Form 3800, +line 1w +............................... +6 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37747W +Form +8932 + (Rev.12-2012) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8932.fields.json b/test/data/fd/form/F8932.fields.json new file mode 100755 index 00000000..e0f127ba --- /dev/null +++ b/test/data/fd/form/F8932.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DIFFWAGE","type":"number","calc":false,"value":""},{"id":"MULTIPLY","type":"number","calc":false,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""},{"id":"ADD","type":"number","calc":true,"value":""},{"id":"ALLOC","type":"number","calc":true,"value":""},{"id":"SUBTRACT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8932.json b/test/data/fd/form/F8932.json new file mode 100755 index 00000000..c9f6e773 --- /dev/null +++ b/test/data/fd/form/F8932.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 8932 (Rev. December 2012)","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.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":66.911},{"oc":"#221f1f","x":72.972,"y":6.751,"w":0.75,"l":26.073},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":7.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":9.751,"w":1.125,"l":14.936},{"oc":"#221f1f","x":80.397,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":12.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.751,"w":1.125,"l":14.936},{"oc":"#221f1f","x":84.109,"y":14.251,"w":1.5,"l":14.936},{"oc":"#221f1f","x":6.147,"y":14.314,"w":1.5,"l":35.782},{"oc":"#221f1f","x":39.559,"y":14.314,"w":1.5,"l":44.636}],"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":73.015,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":8.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":8.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":11.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":11.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":1.547}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"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":2.08,"clr":-1,"A":"left","R":[{"T":"8932","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.258,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202012)%20","S":2,"TS":[0,10,0,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":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":26.623,"y":2.664,"w":21.679999999999996,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Employer%20Differential%20Wage%20Payments%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.425,"y":3.4000000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.456,"y":3.4930000000000003,"w":12.504000000000001,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.342,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.373,"y":4.243,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208932%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.194,"y":4.243,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8932","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.969,"y":4.243,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-2126%20","S":2,"TS":[0,10,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.26,"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.26,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"161","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"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":73.452,"y":4.938,"w":9.219,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.602,"y":6.599,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.59,"w":34.465999999999994,"clr":-1,"A":"left","R":[{"T":"Eligible%20differential%20wage%20payments%20paid%20during%20the%20tax%20year%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":6.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":6.599,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":7.349,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":35.772000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%201%20by%2020%25%20(.20)%20(see%20instructions%20for%20the%20adjustment%20you%20must%20make)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":7.34,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":7.349,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":8.055,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.04,"w":43.11499999999997,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20employer%20differential%20wage%20payments%20from%20partnerships%2C%20S%20corporations%2C%20cooperatives%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":8.728,"w":16.392000000000003,"clr":-1,"A":"left","R":[{"T":"estates%2C%20and%20trusts%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.872,"y":8.728,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":8.849,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":9.555,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.54,"w":44.19499999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%20and%203.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%205.%20Partnerships%20and%20S%20corporations%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":10.228,"w":39.04899999999999,"clr":-1,"A":"left","R":[{"T":"report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%201w%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.935,"y":10.228,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":10.349,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":11.055,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.04,"w":40.17199999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":11.728,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.383,"y":11.728,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":11.849,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.602,"y":12.555,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.54,"w":15.058000000000003,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.194,"y":12.54,"w":27.52900000000001,"clr":-1,"A":"left","R":[{"T":"subtract%20line%205%20from%20line%204.%20Report%20this%20amount%20on%20Form%203800%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":13.228,"w":3.407,"clr":-1,"A":"left","R":[{"T":"line%201w%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.248,"y":13.228,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.64,"y":13.349,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.171,"w":26.239,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.002,"y":14.188,"w":7.966000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037747W%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.942,"y":14.135,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.084,"y":14.135,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8932","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.907,"y":14.135,"w":6.799000000000001,"clr":-1,"A":"left","R":[{"T":"%20(Rev.12-2012)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7068,"AM":1024,"x":6.229,"y":5.786,"w":66.66,"h":0.887,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7069,"AM":1024,"x":73.157,"y":5.805,"w":25.822,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIFFWAGE","EN":0},"TI":7070,"AM":0,"x":84.253,"y":6.725,"w":14.768,"h":0.833,"TU":"Line 1. Eligible differential wage payments paid during the tax year (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTIPLY","EN":0},"TI":7071,"AM":0,"x":84.189,"y":7.538,"w":14.768,"h":0.833,"TU":"Line 2. Multiply line 1 by 20% (.20) (see instructions for the adjustment you must make)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":7072,"AM":0,"x":84.336,"y":8.854,"w":14.603,"h":0.833,"TU":"Line 3. Credit for employer differential wage payments from partnerships, S corporations, cooperatives, estates, and trusts (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD","EN":0},"TI":7073,"AM":1024,"x":84.336,"y":10.416,"w":14.603,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOC","EN":0},"TI":7074,"AM":1024,"x":84.411,"y":11.881,"w":14.603,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT","EN":0},"TI":7075,"AM":1024,"x":84.198,"y":13.361,"w":14.603,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8933.content.txt b/test/data/fd/form/F8933.content.txt new file mode 100755 index 00000000..11f2ee22 --- /dev/null +++ b/test/data/fd/form/F8933.content.txt @@ -0,0 +1,66 @@ +Form +8933 +Department of the Treasury +Internal Revenue Service +Carbon Dioxide Sequestration Credit +a + +Attach to your tax return. +a + +To claim this credit, the qualified facility must capture at least 500,000 metric +tons of carbon dioxide during the tax year. +OMB No. 1545-2132 +20 +13 +Attachment +Sequence No. +165 +a + +Information about Form 8933 and its instructions is at +www.irs.gov/form8933 +. +Name(s) shown on return +Identifying number +Qualified carbon dioxide captured at a qualified facility, disposed of in secure geological +storage, and not used as a tertiary injectant in a qualified enhanced oil or natural gas +recovery project. +1a +Metric tons captured and disposed of (see instructions) +...... +b +Inflation–adjusted credit rate +............... +c +Multiply line 1a by line 1b +......................... +1c +Qualified carbon dioxide captured at a qualified facility, disposed of in secure geological +storage, and used as a tertiary injectant in a qualified enhanced oil or natural gas recovery +project. +2a +Metric tons captured and used (see instructions) +........ +b +Inflation–adjusted credit rate +............... +c +Multiply line 2a by line 2b +......................... +2c +3 +Carbon dioxide sequestration credit from partnerships and S corporations +........ +3 +4 +Add lines 1c, 2c, and 3. Partnerships and S corporations, report this amount on Schedule K. All +others, report this amount on Form 3800, line 1x +................. +4 +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37748H +Form +8933 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8933.fields.json b/test/data/fd/form/F8933.fields.json new file mode 100755 index 00000000..b5ca0d38 --- /dev/null +++ b/test/data/fd/form/F8933.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"TONSDISP","type":"number","calc":false,"value":""},{"id":"INFLADJ1","type":"percent","calc":true,"value":"21.25"},{"id":"DISPOSED","type":"number","calc":true,"value":""},{"id":"TONSCAPT","type":"number","calc":false,"value":""},{"id":"INFLADJ2","type":"percent","calc":true,"value":"10.63"},{"id":"CAPTURED","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8933.json b/test/data/fd/form/F8933.json new file mode 100755 index 00000000..bc17662c --- /dev/null +++ b/test/data/fd/form/F8933.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8933","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.954,"y":6.001,"w":1.5,"l":63.242},{"oc":"#221f1f","x":84.066,"y":3,"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":74.336},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":63.072,"y":12.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":17.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":63.072,"y":18.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.19,"y":22.501,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.034,"y":46.501,"w":1.5,"l":45.874},{"oc":"#221f1f","x":87.822,"y":46.501,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":21.04,"y":3.215,"w":1.5,"l":0.797},{"oc":"#221f1f","x":21.04,"y":3.458,"w":1.5,"l":2.574},{"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.835},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":2.297},{"oc":"#221f1f","x":80.44,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":7.486,"w":0.75,"l":4.547},{"oc":"#221f1f","x":80.44,"y":7.486,"w":0.75,"l":4.547},{"oc":"#221f1f","x":95.29,"y":7.486,"w":0.75,"l":4.531},{"oc":"#221f1f","x":84.152,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":5.297},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":5.297},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":5.281},{"oc":"#221f1f","x":84.152,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":0.797},{"oc":"#221f1f","x":80.44,"y":18.736,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":84.152,"y":20.236,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.44,"y":20.236,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":20.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"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":95.29,"y":21.736,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":80.44,"y":7.501,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bfc0c4","x":80.44,"y":12.751,"w":3.712,"h":5.25,"clr":-1},{"oc":"#bfc0c4","x":80.44,"y":18.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":80.44,"y":20.251,"w":3.712,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.813,"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.813,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8933","S":-1,"TS":[0,31.0001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.563,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":27.039,"y":2.272,"w":16.359999999999996,"clr":-1,"A":"left","R":[{"T":"Carbon%20Dioxide%20Sequestration%20Credit","S":-1,"TS":[2,21,0,0]}]},{"oc":"#221f1f","x":43.329,"y":2.952,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.934,"y":3.046,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.408,"y":3.782,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.012,"y":3.782,"w":40.73199999999997,"clr":-1,"A":"left","R":[{"T":"To%20claim%20this%20credit%2C%20the%20qualified%20facility%20must%20capture%20at%20least%20500%2C000%20metric%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.481,"y":4.345,"w":20.166,"clr":-1,"A":"left","R":[{"T":"tons%20of%20carbon%20dioxide%20during%20the%20tax%20year.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9380000000000002,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-2132","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.412,"y":3.6449999999999996,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,25,0,0]}]},{"oc":"#221f1f","x":91.191,"y":3.6449999999999996,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,25,0,0]}]},{"oc":"#221f1f","x":85.793,"y":4.563,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.793,"y":5.01,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.105,"y":5.01,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"165","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":26.246,"y":4.973,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.851,"y":5.066,"w":25.773999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208933%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.29,"y":5.066,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8933","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.064,"y":5.066,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.688,"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.877,"y":5.688,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.353,"w":42.240999999999985,"clr":-1,"A":"left","R":[{"T":"Qualified%20carbon%20dioxide%20captured%20at%20a%20qualified%20facility%2C%20disposed%20of%20in%20secure%20geological%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":8.04,"w":40.62599999999999,"clr":-1,"A":"left","R":[{"T":"storage%2C%20and%20not%20used%20as%20a%20tertiary%20injectant%20in%20a%20qualified%20enhanced%20oil%20or%20natural%20gas%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.728,"w":8.373000000000001,"clr":-1,"A":"left","R":[{"T":"recovery%20project.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":24.653000000000006,"clr":-1,"A":"left","R":[{"T":"Metric%20tons%20captured%20and%20disposed%20of%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":10.34,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":12.705000000000004,"clr":-1,"A":"left","R":[{"T":"Inflation%E2%80%93adjusted%20credit%20rate","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":11.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.84,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":11.300000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%201a%20by%20line%201b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":11.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":11.84,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.353,"w":42.240999999999985,"clr":-1,"A":"left","R":[{"T":"Qualified%20carbon%20dioxide%20captured%20at%20a%20qualified%20facility%2C%20disposed%20of%20in%20secure%20geological%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":14.04,"w":43.219999999999985,"clr":-1,"A":"left","R":[{"T":"storage%2C%20and%20used%20as%20a%20tertiary%20injectant%20in%20a%20qualified%20enhanced%20oil%20or%20natural%20gas%20recovery%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.9,"y":14.728,"w":3.945,"clr":-1,"A":"left","R":[{"T":"project.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":21.57900000000001,"clr":-1,"A":"left","R":[{"T":"Metric%20tons%20captured%20and%20used%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":16.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":12.705000000000004,"clr":-1,"A":"left","R":[{"T":"Inflation%E2%80%93adjusted%20credit%20rate","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":17.09,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.84,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":11.300000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%202a%20by%20line%202b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":17.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.172,"y":17.84,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":33.022999999999996,"clr":-1,"A":"left","R":[{"T":"Carbon%20dioxide%20sequestration%20credit%20from%20partnerships%20and%20S%20corporations","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":19.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.79,"w":42.77099999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201c%2C%202c%2C%20and%203.%20Partnerships%20and%20S%20corporations%2C%20report%20this%20amount%20on%20Schedule%20K.%20All%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":21.478,"w":21.563000000000006,"clr":-1,"A":"left","R":[{"T":"others%2C%20report%20this%20amount%20on%20Form%203800%2C%20line%201x","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.122,"y":21.478,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":21.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"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":60.219,"y":46.376,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037748H","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":46.322,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8933","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":46.322,"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":7076,"AM":1024,"x":6.229,"y":6.518,"w":74.085,"h":0.967,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7077,"AM":1024,"x":80.582,"y":6.518,"w":14.729,"h":0.967,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TONSDISP","EN":0},"TI":7078,"AM":0,"x":63.071,"y":10.603,"w":16.191,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"INFLADJ1","EN":0},"TI":7079,"AM":1024,"x":63.038,"y":11.278,"w":16.233,"h":0.833,"V":"21.25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISPOSED","EN":0},"TI":7080,"AM":1024,"x":84.472,"y":11.784,"w":10.738,"h":0.842},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TONSCAPT","EN":0},"TI":7081,"AM":0,"x":63.071,"y":16.385,"w":16.191,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"INFLADJ2","EN":0},"TI":7082,"AM":1024,"x":63.113,"y":17.233,"w":15.974,"h":0.833,"V":"10.63"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CAPTURED","EN":0},"TI":7083,"AM":1024,"x":84.398,"y":17.822,"w":10.663,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":7084,"AM":0,"x":84.336,"y":19.416,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":7085,"AM":1024,"x":84.356,"y":21.612,"w":10.746,"h":0.873}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8936.content.txt b/test/data/fd/form/F8936.content.txt new file mode 100755 index 00000000..cffb194b --- /dev/null +++ b/test/data/fd/form/F8936.content.txt @@ -0,0 +1,197 @@ +Form +8936 +Department of the Treasury +Internal Revenue Service +Qualified Plug-in Electric Drive Motor Vehicle Credit +(Including Qualified Two- or Three-Wheeled Plug-in Electric Vehicles) +a + Attach to your tax return. + +a + Information about Form 8936 and its instructions is at +www.irs.gov/form8936 +. +OMB No. 1545-2137 +20 +13 +Attachment +Sequence No. +125 +Name(s) shown on return +Identifying number +Note. +• Use this form to claim the credit for certain plug-in electric vehicles. +• Claim the credit for certain alternative motor vehicles on Form 8910. +Part I +Tentative Credit +Use a separate column for each vehicle. If you need more columns, +use additional Forms 8936 and include the totals on lines 12 and 19. +(a) +Vehicle 1 +(b) +Vehicle 2 +1 +Year, make, and model of vehicle +....... +1 +2 +Vehicle identification number (see instructions) +. . +2 +3 +Enter date vehicle was placed in service (MM/DD/YYYY) +3 +4 +If the vehicle is a two- or three-wheeled vehicle, enter +the cost of the vehicle. If the vehicle has at least four +wheels, enter the tentative credit (see instructions) +. +4 +Next: +If you did NOT use your vehicle for business or investment purposes and did not have a credit from a partnership or + +S corporation, skip Part II and go to Part III. All others, go to Part II. +Part II +Credit for Business/Investment Use Part of Vehicle + + +5 +Business/investment use percentage (see instructions) +5 +% +% +6 +Multiply line 4 by line 5. If the vehicle has at least four +wheels, leave lines 7 through 10 blank and enter this +amount on line 11 +............ +6 +7 +Section 179 expense deduction (see instructions) +. +7 +8 +Subtract line 7 from line 6 +......... +8 +9 +Multiply line 8 by 10% (.10) +......... +9 +10 +Maximum credit per vehicle +......... +10 +2,500 +00 +2,500 +00 +11 +If the vehicle is a two- or three-wheeled vehicle, enter the +smaller + of line 9 or line 10 +......... +11 +12 +Add columns (a) and (b) on line 11 +................. +12 +13 +Qualified plug-in electric drive motor vehicle credit from partnerships and S +corporations +......................... +13 +14 +Business/investment use part of credit. +Add lines 12 and 13. Partnerships and S +corporations, + +stop here and + +report this amount on Schedule K. All others, report this +amount on Form 3800, line 1y +................... +14 +Note. +Complete Part III to figure any credit for the personal use part of the vehicle. +For Paperwork Reduction Act Notice, see instructions. +Cat. No. 37751E +Form + 8936 + (2013) +Year +Make +Model +----------------Page (0) Break---------------- +Form 8936 (2013) +Page +2 +Part III +Credit for Personal Use Part of Vehicle +(a) +Vehicle 1 +(b) +Vehicle 2 +15 +If you skipped Part II, enter the amount from line 4. If +you completed Part II, subtract line 6 from line 4. If the +vehicle has at least four wheels, leave lines 16 and 17 + +blank and enter this amount on line 18 +..... +15 +16 +Multiply line 15 by 10% (.10) +......... +16 +17 +Maximum credit per vehicle. If you skipped Part II, +enter $2,500. If you completed Part II, subtract line 11 +from line 10 +.............. +17 +18 +If the vehicle is a two- or three-wheeled vehicle, enter +the + smaller + of line 16 or line 17 +........ +18 +19 +Add columns (a) and (b) on line 18 +.................. +19 +20 +Enter the amount from Form 1040, line 46, or Form 1040NR, line 44 +...... +20 +21 +Personal credits from Form 1040 or 1040NR (see instructions) +........ +21 +22 +Subtract line 21 from line 20 +................... +22 +23 +Personal use part of credit. +Enter the +smaller +of line 19 or line 22 here and on Form +1040, line 53, or Form 1040NR, line 50. Check box +c +on that line and enter “8936” in +the space next to that box. + +If line 22 is smaller than line 19, see instructions +.... +23 + + + + + +Form + 8936 + (2013) +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8936.fields.json b/test/data/fd/form/F8936.fields.json new file mode 100755 index 00000000..f543a4df --- /dev/null +++ b/test/data/fd/form/F8936.fields.json @@ -0,0 +1 @@ +[{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"A1_YEAR_1_","type":"date","calc":false,"value":""},{"id":"A3_MAKE_1_","type":"alpha","calc":false,"value":""},{"id":"A4_MODEL_1_","type":"alpha","calc":false,"value":""},{"id":"A5_CARVIN_1_","type":"alpha","calc":false,"value":""},{"id":"A6_SERVDAT_1_","type":"date","calc":false,"value":""},{"id":"A7_TENTCR_1_","type":"number","calc":false,"value":""},{"id":"A1_YEAR_2_","type":"date","calc":false,"value":""},{"id":"A3_MAKE_2_","type":"alpha","calc":false,"value":""},{"id":"A4_MODEL_2_","type":"alpha","calc":false,"value":""},{"id":"A5_CARVIN_2_","type":"alpha","calc":false,"value":""},{"id":"A6_SERVDAT_2_","type":"date","calc":false,"value":""},{"id":"A7_TENTCR_2_","type":"number","calc":false,"value":""},{"id":"A8_BIZUSE_1_","type":"number","calc":false,"value":""},{"id":"A9_MULTIPLY_1_","type":"number","calc":true,"value":""},{"id":"SEC179_1_","type":"number","calc":false,"value":""},{"id":"SUBTRACT_1_","type":"number","calc":false,"value":""},{"id":"LINE9_MULT2_1_","type":"number","calc":true,"value":""},{"id":"LINE10_BUSMAXCR_1_","type":"number","calc":true,"value":""},{"id":"LINE11_SMALLER_1_","type":"number","calc":false,"value":""},{"id":"A8_BIZUSE_2_","type":"number","calc":false,"value":""},{"id":"A9_MULTIPLY_2_","type":"number","calc":true,"value":""},{"id":"SEC179_2_","type":"number","calc":false,"value":""},{"id":"SUBTRACT_2_","type":"number","calc":false,"value":""},{"id":"LINE9_MULT2_2_","type":"number","calc":true,"value":""},{"id":"LINE10_BUSMAXCR_2_","type":"number","calc":true,"value":""},{"id":"LINE11_SMALLER_2_","type":"number","calc":false,"value":""},{"id":"SUBTOT1","type":"number","calc":true,"value":""},{"id":"QPLUGIN","type":"number","calc":false,"value":""},{"id":"BIZUSEPT","type":"number","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A11_SUBTOT2_1_","type":"number","calc":true,"value":""},{"id":"LINE16_MULT3_1_","type":"number","calc":false,"value":""},{"id":"LINE17_MAXCR_1_","type":"number","calc":false,"value":""},{"id":"A11_SUBTOT2_2_","type":"number","calc":true,"value":""},{"id":"LINE16_MULT3_2_","type":"number","calc":false,"value":""},{"id":"LINE17_MAXCR_2_","type":"number","calc":false,"value":""},{"id":"LINE18_SMALLER2_1_","type":"number","calc":false,"value":""},{"id":"LINE18_SMALLER2_2_","type":"number","calc":false,"value":""},{"id":"SUBTOT3","type":"number","calc":true,"value":""},{"id":"FR1040","type":"number","calc":true,"value":""},{"id":"CR1040","type":"number","calc":true,"value":""},{"id":"SUBTR3","type":"number","calc":true,"value":""},{"id":"PERUSEPT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8936.json b/test/data/fd/form/F8936.json new file mode 100755 index 00000000..1fe27417 --- /dev/null +++ b/test/data/fd/form/F8936.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8936","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":13.741},{"oc":"#221f1f","x":19.757,"y":5.25,"w":1.5,"l":63.199},{"oc":"#221f1f","x":82.827,"y":3,"w":0.75,"l":16.216},{"oc":"#221f1f","x":82.827,"y":5.25,"w":1.5,"l":16.216},{"oc":"#221f1f","x":6.145,"y":6.75,"w":0.75,"l":69.386},{"oc":"#221f1f","x":75.445,"y":6.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":6.145,"y":9,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":9.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":48.349},{"oc":"#221f1f","x":54.407,"y":11.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":11.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.695,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":14.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":14.438,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":14.438,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.695,"y":15.938,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":15.938,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":15.938,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.695,"y":17.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":17.438,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":17.438,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.695,"y":19.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":19.688,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":19.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":19.688,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":19.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":19.688,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":21.938,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":22.687,"w":0.75,"l":92.899},{"oc":"#221f1f","x":50.695,"y":22.687,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":24.187,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":24.188,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":24.188,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.695,"y":26.438,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":26.438,"w":1.125,"l":22.361},{"oc":"#221f1f","x":54.407,"y":26.437,"w":1.125,"l":18.648},{"oc":"#221f1f","x":72.97,"y":26.438,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":26.438,"w":1.125,"l":22.361},{"oc":"#221f1f","x":76.682,"y":26.438,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.245,"y":26.438,"w":1.125,"l":3.798},{"oc":"#221f1f","x":50.695,"y":27.938,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":27.938,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":27.938,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":27.938,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":27.938,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":29.439,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":29.438,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":29.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":29.438,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":29.438,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":31.69,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":31.688,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":31.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":31.69,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":31.69,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":33.193,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":33.193,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":33.193,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":33.191,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":33.19,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":34.693,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":34.698,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":34.698,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":34.688,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.97,"y":35.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":35.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":35.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.97,"y":36.938,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":36.938,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.245,"y":36.938,"w":1.125,"l":3.798},{"oc":"#221f1f","x":72.97,"y":39.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":39.188,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":39.188,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":39.188,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":42.188,"w":1.5,"l":35.973},{"oc":"#221f1f","x":42.032,"y":42.188,"w":1.5,"l":44.636},{"oc":"#221f1f","x":86.582,"y":42.188,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":19.8,"y":2.234,"w":1.5,"l":3.047},{"oc":"#221f1f","x":82.913,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":82.913,"y":2.984,"w":1.5,"l":1.547},{"oc":"#221f1f","x":82.913,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":75.488,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.398,"y":11.251,"w":0.75,"l":2.342},{"oc":"#221f1f","x":50.66,"y":11.251,"w":0.75,"l":2.342},{"oc":"#221f1f","x":54.45,"y":13.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":13.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.699,"y":11.247,"w":0.75,"l":3.194},{"oc":"#221f1f","x":50.738,"y":14.422,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":14.422,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":14.422,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":15.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":15.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":15.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":15.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":17.422,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.738,"y":17.422,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.45,"y":17.422,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":17.422,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.725,"y":17.422,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":17.422,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.45,"y":22.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":22.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":23.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":23.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":22.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":22.672,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":24.172,"w":0.75,"l":2.289},{"oc":"#221f1f","x":50.738,"y":24.172,"w":0.75,"l":2.289},{"oc":"#221f1f","x":54.45,"y":24.172,"w":0.75,"l":2.289},{"oc":"#221f1f","x":73.013,"y":24.172,"w":0.75,"l":2.289},{"oc":"#221f1f","x":76.725,"y":24.172,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.288,"y":24.172,"w":0.75,"l":2.289},{"oc":"#221f1f","x":54.45,"y":26.422,"w":0.75,"l":1.54},{"oc":"#221f1f","x":50.738,"y":26.422,"w":0.75,"l":1.54},{"oc":"#221f1f","x":76.725,"y":26.422,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":26.422,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":26.422,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":27.922,"w":0.75,"l":1.54},{"oc":"#221f1f","x":50.738,"y":27.922,"w":0.75,"l":1.54},{"oc":"#221f1f","x":73.013,"y":27.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":27.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":27.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":27.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":27.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":29.423,"w":0.75,"l":2.29},{"oc":"#221f1f","x":50.738,"y":29.423,"w":0.75,"l":2.29},{"oc":"#221f1f","x":73.013,"y":29.423,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.725,"y":29.424,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":29.423,"w":0.75,"l":2.282},{"oc":"#221f1f","x":54.45,"y":31.674,"w":0.75,"l":1.542},{"oc":"#221f1f","x":50.738,"y":31.674,"w":0.75,"l":1.542},{"oc":"#221f1f","x":76.725,"y":31.674,"w":0.75,"l":1.534},{"oc":"#221f1f","x":73.013,"y":31.674,"w":0.75,"l":1.534},{"oc":"#221f1f","x":95.288,"y":31.674,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":33.177,"w":0.75,"l":1.539},{"oc":"#221f1f","x":50.738,"y":33.177,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":33.182,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":33.177,"w":0.75,"l":1.526},{"oc":"#221f1f","x":95.288,"y":33.182,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":33.182,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":33.177,"w":0.75,"l":1.526},{"oc":"#221f1f","x":76.725,"y":34.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.013,"y":34.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.672,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":35.422,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":35.422,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":35.422,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":36.172,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":36.922,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":36.922,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":36.922,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":38.422,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":9,"w":6.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":50.737,"y":11.263,"w":3.713,"h":2.318,"clr":-1},{"oc":"#221f1f","x":6.188,"y":21.938,"w":6.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":50.738,"y":22.687,"w":3.713,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.634,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.749,"y":2.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8936","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.893,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.331,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":23.291,"y":2.1,"w":23.120000000000005,"clr":-1,"A":"left","R":[{"T":"Qualified%20Plug-in%20Electric%20Drive%20Motor%20Vehicle%20Credit","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":28.493,"y":2.828,"w":32.892,"clr":-1,"A":"left","R":[{"T":"(Including%20Qualified%20Two-%20or%20Three-Wheeled%20Plug-in%20Electric%20Vehicles)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.186,"y":3.284,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":43.217,"y":3.378,"w":12.226,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.102,"y":3.9050000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":26.133,"y":3.998,"w":26.051999999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%208936%20and%20its%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.955,"y":3.998,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8936","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.729,"y":3.998,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.122,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-2137","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.238,"y":3.357,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":90.583,"y":3.357,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.241,"y":3.8129999999999997,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.241,"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":93.219,"y":4.259,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"125","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.937,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.097,"y":4.937,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.589,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.292,"w":30.93,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Use%20this%20form%20to%20claim%20the%20credit%20for%20certain%20plug-in%20electric%20vehicles.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.98,"w":31.136000000000013,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Claim%20the%20credit%20for%20certain%20alternative%20motor%20vehicles%20on%20Form%208910.","S":3,"TS":[0,12,0,0]}]},{"x":6.836,"y":8.821,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":8.821,"w":7.611,"clr":-1,"A":"left","R":[{"T":"Tentative%20Credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":9.539,"w":30.359,"clr":-1,"A":"left","R":[{"T":"Use%20a%20separate%20column%20for%20each%20vehicle.%20If%20you%20need%20more%20columns%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.227,"w":31.04900000000001,"clr":-1,"A":"left","R":[{"T":"use%20additional%20Forms%208936%20and%20include%20the%20totals%20on%20lines%2012%20and%2019.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.372,"y":9.889,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":63.332,"y":9.889,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%201","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":82.616,"y":9.889,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":85.639,"y":9.889,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Vehicle%202","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":13.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.527,"w":15.171000000000005,"clr":-1,"A":"left","R":[{"T":"Year%2C%20make%2C%20and%20model%20of%20vehicle%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":13.527,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":13.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":15.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.027,"w":21.02200000000001,"clr":-1,"A":"left","R":[{"T":"Vehicle%20identification%20number%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.126,"y":15.027,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":15.027,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":15.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":16.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.527,"w":25.075,"clr":-1,"A":"left","R":[{"T":"Enter%20date%20vehicle%20was%20placed%20in%20service%20(MM%2FDD%2FYYYY)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":16.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":17.277,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.226,"w":24.13,"clr":-1,"A":"left","R":[{"T":"If%20the%20vehicle%20is%20a%20two-%20or%20three-wheeled%20vehicle%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.914,"w":23.726,"clr":-1,"A":"left","R":[{"T":"the%20cost%20of%20the%20vehicle.%20If%20the%20vehicle%20has%20at%20least%20four%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":18.601,"w":22.669000000000008,"clr":-1,"A":"left","R":[{"T":"wheels%2C%20enter%20the%20tentative%20credit%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":18.601,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":18.777,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":19.857,"w":2.76,"clr":-1,"A":"left","R":[{"T":"Next%3A%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":12.54,"y":19.857,"w":51.90099999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20NOT%20use%20your%20vehicle%20for%20business%20or%20investment%20purposes%20and%20did%20not%20have%20a%20credit%20from%20a%20partnership%20or%20","S":-1,"TS":[0,11.7,0,0]}]},{"oc":"#221f1f","x":8.413,"y":20.51,"w":29.891,"clr":-1,"A":"left","R":[{"T":"S%20corporation%2C%20skip%20Part%20II%20and%20go%20to%20Part%20III.%20All%20others%2C%20go%20to%20Part%20II.","S":-1,"TS":[0,11.7,0,0]}]},{"x":6.582,"y":21.759,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":21.759,"w":24.165000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Business%2FInvestment%20Use%20Part%20of%20Vehicle","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":23.277,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.277,"w":24.31900000000001,"clr":-1,"A":"left","R":[{"T":"Business%2Finvestment%20use%20percentage%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":23.276,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.585,"y":23.339,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.203,"y":23.339,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":24.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.039,"w":24.061,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%20line%205.%20If%20the%20vehicle%20has%20at%20least%20four%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":24.726,"w":23.653999999999996,"clr":-1,"A":"left","R":[{"T":"wheels%2C%20leave%20lines%207%20through%2010%20blank%20and%20enter%20this%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":25.414,"w":8.004000000000001,"clr":-1,"A":"left","R":[{"T":"amount%20on%20line%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.503,"y":25.414,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":25.527,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":27.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.027,"w":22.26400000000001,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense%20deduction%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":27.027,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":27.027,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":28.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.528,"w":11.744000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%207%20from%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":28.528,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":28.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":30.779,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.779,"w":12.097000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%208%20by%2010%25%20(.10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":30.779,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":30.779,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.282,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.282,"w":12.633000000000004,"clr":-1,"A":"left","R":[{"T":"Maximum%20credit%20per%20vehicle%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":32.282,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.484,"y":32.282,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.549,"y":32.282,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.372,"y":32.282,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.824,"y":32.28,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2%2C500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.03,"y":32.279,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":32.969,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.982,"w":25.816,"clr":-1,"A":"left","R":[{"T":"If%20the%20vehicle%20is%20a%20two-%20or%20three-wheeled%20vehicle%2C%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":33.669,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.292,"y":33.669,"w":8.187000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%209%20or%20line%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.685,"y":33.669,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.484,"y":33.782,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":34.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.839,"w":15.487000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(a)%20and%20(b)%20on%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":34.839,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":34.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.539,"w":33.802,"clr":-1,"A":"left","R":[{"T":"Qualified%20plug-in%20electric%20drive%20motor%20vehicle%20credit%20from%20partnerships%20and%20S%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":36.102,"w":5.926,"clr":-1,"A":"left","R":[{"T":"corporations%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.381,"y":36.102,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":36.027,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":36.777,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.789,"w":18.963000000000005,"clr":-1,"A":"left","R":[{"T":"Business%2Finvestment%20use%20part%20of%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.683,"y":36.789,"w":18.247,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2012%20and%2013.%20Partnerships%20and%20S%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.477,"w":5.926,"clr":-1,"A":"left","R":[{"T":"corporations%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.679,"y":37.477,"w":6.186999999999999,"clr":-1,"A":"left","R":[{"T":"stop%20here%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.264,"y":37.477,"w":24.895000000000003,"clr":-1,"A":"left","R":[{"T":"report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20report%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.164,"w":13.340000000000007,"clr":-1,"A":"left","R":[{"T":"amount%20on%20Form%203800%2C%20line%201y","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.753,"y":38.164,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":38.277,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":39.009,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.808,"y":39.009,"w":33.892999999999994,"clr":-1,"A":"left","R":[{"T":"Complete%20Part%20III%20to%20figure%20any%20credit%20for%20the%20personal%20use%20part%20of%20the%20vehicle.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.044,"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":59.665,"y":42.062,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037751E","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.008,"y":42.009,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.816,"y":42.009,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%208936","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":42.009,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":54.801,"y":11.264,"w":14.783999999999999,"clr":0,"A":"left","R":[{"T":"Year","S":2,"TS":[0,10,0,0]}]},{"x":54.72,"y":12.295,"w":17.115000000000002,"clr":0,"A":"left","R":[{"T":"Make","S":2,"TS":[0,10,0,0]}]},{"x":54.571,"y":13.42,"w":19.061,"clr":0,"A":"left","R":[{"T":"Model","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":7086,"AM":1024,"x":6.229,"y":5.848,"w":69.135,"h":0.887,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":7087,"AM":1024,"x":75.632,"y":5.821,"w":23.347,"h":0.914,"TU":"Identifying number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_YEAR_1_","EN":0},"TI":7088,"AM":0,"x":59.474,"y":11.372,"w":12.458,"h":0.833,"TU":"Line 1(a). Year.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A3_MAKE_1_","EN":0},"TI":7089,"AM":0,"x":59.546,"y":12.521,"w":12.458,"h":0.833,"TU":"Line 1(a). Make."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A4_MODEL_1_","EN":0},"TI":7090,"AM":0,"x":59.526,"y":13.529,"w":12.458,"h":0.833,"TU":"Line 1(a). Model."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_CARVIN_1_","EN":0},"TI":7091,"AM":0,"x":54.893,"y":15.061,"w":17.74,"h":0.844,"TU":"Line 2(a). Vehicle identification number (see instructions)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A6_SERVDAT_1_","EN":0},"TI":7092,"AM":0,"x":54.949,"y":16.533,"w":17.951,"h":0.844,"TU":"Line 3(a). Enter date vehicle was placed in service (MM/DD/YYYY).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A7_TENTCR_1_","EN":0},"TI":7093,"AM":0,"x":54.925,"y":18.838,"w":17.998,"h":0.844,"TU":"Line 4(a). If the vehicle is a two or three wheeled vehicle, enter the cost of the vehicle. If the vehicle has at least four wheels, enter the tentative credit (see instructions)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_YEAR_2_","EN":0},"TI":7094,"AM":0,"x":82.342,"y":11.405,"w":12.458,"h":0.833,"TU":"Line 1(b). Year.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A3_MAKE_2_","EN":0},"TI":7095,"AM":0,"x":82.414,"y":12.473,"w":12.458,"h":0.833,"TU":"Line 1(b). Make."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A4_MODEL_2_","EN":0},"TI":7096,"AM":0,"x":82.394,"y":13.535,"w":12.458,"h":0.833,"TU":"Line 1(b). Model."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_CARVIN_2_","EN":0},"TI":7097,"AM":0,"x":76.931,"y":15.039,"w":17.739,"h":0.844,"TU":"Line 2(b). Vehicle identification number (see instructions)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A6_SERVDAT_2_","EN":0},"TI":7098,"AM":0,"x":76.89,"y":16.539,"w":17.951,"h":0.844,"TU":"Line 3(b). Enter date vehicle was placed in service (MM/DD/YYYY).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A7_TENTCR_2_","EN":0},"TI":7099,"AM":0,"x":76.92,"y":18.793,"w":17.998,"h":0.844,"TU":"Line 4(b). If the vehicle is a two or three wheeled vehicle, enter the cost of the vehicle. If the vehicle has at least four wheels, enter the tentative credit (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A8_BIZUSE_1_","EN":0},"TI":7100,"AM":0,"x":54.851,"y":23.296,"w":18.171,"h":0.834,"TU":"Line 5(a). Business/investment use percentage (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A9_MULTIPLY_1_","EN":0},"TI":7101,"AM":1024,"x":54.656,"y":25.519,"w":18.171,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC179_1_","EN":0},"TI":7102,"AM":0,"x":54.636,"y":27.1,"w":18.212,"h":0.833,"TU":"Line 7(a). Section 179 expense deduction (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT_1_","EN":0},"TI":7103,"AM":0,"x":54.636,"y":28.518,"w":18.212,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_MULT2_1_","EN":0},"TI":7104,"AM":1024,"x":54.581,"y":30.687,"w":18.171,"h":0.943},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_BUSMAXCR_1_","EN":0},"TI":7105,"AM":1024,"x":54.985,"y":31.932,"w":18.175,"h":1.173},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_SMALLER_1_","EN":0},"TI":7106,"AM":0,"x":54.561,"y":33.804,"w":18.212,"h":0.856,"TU":"Line 11(a). If the vehicle is a two or three wheeled vehicle, enter the smaller of line 9 or line 10."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A8_BIZUSE_2_","EN":0},"TI":7107,"AM":0,"x":77.082,"y":23.258,"w":18.171,"h":0.834,"TU":"Line 5(b). Business/investment use percentage (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A9_MULTIPLY_2_","EN":0},"TI":7108,"AM":1024,"x":76.887,"y":25.48,"w":18.171,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC179_2_","EN":0},"TI":7109,"AM":0,"x":76.867,"y":27.061,"w":18.212,"h":0.833,"TU":"Line 7(b). Section 179 expense deduction (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT_2_","EN":0},"TI":7110,"AM":0,"x":76.867,"y":28.48,"w":18.212,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_MULT2_2_","EN":0},"TI":7111,"AM":1024,"x":76.812,"y":30.649,"w":18.171,"h":0.943},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_BUSMAXCR_2_","EN":0},"TI":7112,"AM":1024,"x":76.705,"y":31.917,"w":18.175,"h":1.173},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_SMALLER_2_","EN":0},"TI":7113,"AM":0,"x":76.792,"y":33.766,"w":18.212,"h":0.856,"TU":"Line 11(b). If the vehicle is a two or three wheeled vehicle, enter the smaller of line 9 or line 10."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT1","EN":0},"TI":7114,"AM":1024,"x":76.937,"y":34.848,"w":18.171,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QPLUGIN","EN":0},"TI":7115,"AM":0,"x":77.087,"y":35.901,"w":18.171,"h":0.943,"TU":"Line 13. Qualified plug-in electric drive motor vehicle credit from partnerships and S corporations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIZUSEPT","EN":0},"TI":7116,"AM":1024,"x":76.878,"y":38.16,"w":18.171,"h":0.943}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.145,"y":3,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":3.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":50.695,"y":3.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":5.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":5.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.695,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":7.938,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":7.938,"w":1.125,"l":18.648},{"oc":"#221f1f","x":72.97,"y":7.938,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":7.938,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.245,"y":7.938,"w":1.125,"l":3.798},{"oc":"#221f1f","x":50.695,"y":9,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":9,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":11.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":11.25,"w":0.75,"l":18.648},{"oc":"#221f1f","x":72.97,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":11.25,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.695,"y":12.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.407,"y":12.75,"w":1.125,"l":18.648},{"oc":"#221f1f","x":72.97,"y":12.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":12.75,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.245,"y":12.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":72.97,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":14.25,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.97,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":15.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":72.97,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":17.25,"w":1.125,"l":18.648},{"oc":"#221f1f","x":95.245,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":72.97,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":18.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":95.245,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":21,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":50.738,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":6.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":50.738,"y":6.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":5.234,"w":0.75,"l":3.039},{"oc":"#221f1f","x":76.725,"y":5.234,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":3.039},{"oc":"#221f1f","x":54.45,"y":8.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":50.738,"y":8.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.013,"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":54.45,"y":8.984,"w":0.75,"l":2.289},{"oc":"#221f1f","x":50.738,"y":8.984,"w":0.75,"l":2.289},{"oc":"#221f1f","x":76.725,"y":8.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":8.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":8.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.45,"y":11.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":50.738,"y":11.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":11.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":11.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":11.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":12.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":12.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":15.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.013,"y":15.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.013,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.013,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":20.234,"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.188,"h":0.75,"clr":-1},{"oc":"#c0c1c4","x":50.738,"y":3.75,"w":3.713,"h":1.5,"clr":-1},{"oc":"#c0c1c4","x":50.738,"y":5.25,"w":3.713,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208936%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.364,"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.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":2.821,"w":18.646000000000004,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Personal%20Use%20Part%20of%20Vehicle%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":60.372,"y":3.8890000000000002,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":63.332,"y":3.8890000000000002,"w":4.612,"clr":-1,"A":"left","R":[{"T":"Vehicle%201%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":82.616,"y":3.8890000000000002,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":85.639,"y":3.8890000000000002,"w":4.612,"clr":-1,"A":"left","R":[{"T":"Vehicle%202%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.152,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.164,"w":23.766000000000002,"clr":-1,"A":"left","R":[{"T":"If%20you%20skipped%20Part%20II%2C%20enter%20the%20amount%20from%20line%204.%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":5.851,"w":24.525000000000002,"clr":-1,"A":"left","R":[{"T":"you%20completed%20Part%20II%2C%20subtract%20line%206%20from%20line%204.%20If%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.878,"y":6.539,"w":24.152,"clr":-1,"A":"left","R":[{"T":"vehicle%20has%20at%20least%20four%20wheels%2C%20leave%20lines%2016%20and%2017%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":7.226,"w":17.100000000000005,"clr":-1,"A":"left","R":[{"T":"blank%20and%20enter%20this%20amount%20on%20line%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.934,"y":7.226,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.484,"y":7.027,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":8.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":12.653000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2015%20by%2010%25%20(.10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":8.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.484,"y":8.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":8.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.852,"w":22.672,"clr":-1,"A":"left","R":[{"T":"Maximum%20credit%20per%20vehicle.%20If%20you%20skipped%20Part%20II%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":9.539,"w":24.304000000000002,"clr":-1,"A":"left","R":[{"T":"enter%20%242%2C500.%20If%20you%20completed%20Part%20II%2C%20subtract%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":10.226,"w":5.539,"clr":-1,"A":"left","R":[{"T":"from%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.378,"y":10.226,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.484,"y":10.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":11.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.039,"w":24.13,"clr":-1,"A":"left","R":[{"T":"If%20the%20vehicle%20is%20a%20two-%20or%20three-wheeled%20vehicle%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":11.726,"w":1.408,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.061,"y":11.726,"w":3.774,"clr":-1,"A":"left","R":[{"T":"%20smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.899,"y":11.726,"w":8.743000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2016%20or%20line%2017","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.745,"y":11.726,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.484,"y":11.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.339,"w":15.209000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(a)%20and%20(b)%20on%20line%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":13.339,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":30.383000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2046%2C%20or%20Form%201040NR%2C%20line%2044%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.563,"y":14.839,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":14.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":16.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.339,"w":27.87600000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20credits%20from%20Form%201040%20or%201040NR%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":16.339,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.84,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021%20from%20line%2020%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":17.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":18.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.602,"w":13.203000000000003,"clr":-1,"A":"left","R":[{"T":"Personal%20use%20part%20of%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.868000000000002,"y":18.602,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.767,"y":18.602,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.716,"y":18.602,"w":16.69000000000001,"clr":-1,"A":"left","R":[{"T":"of%20line%2019%20or%20line%2022%20here%20and%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":19.289,"w":22.842000000000006,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2053%2C%20or%20Form%201040NR%2C%20line%2050.%20Check%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.717,"y":19.289,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.183,"y":19.289,"w":13.876000000000005,"clr":-1,"A":"left","R":[{"T":"on%20that%20line%20and%20enter%20%E2%80%9C8936%E2%80%9D%20in","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.901,"y":19.976,"w":12.003000000000002,"clr":-1,"A":"left","R":[{"T":"the%20space%20next%20to%20that%20box.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.899,"y":19.976,"w":21.56100000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2022%20is%20smaller%20than%20line%2019%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.701,"y":19.976,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.759,"y":20.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.751,"y":21.134,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.559,"y":21.134,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%208936","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":94.859,"y":21.134,"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":7117,"AM":1024,"x":16.705,"y":1.961,"w":44.22,"h":0.887,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":7118,"AM":1024,"x":64.751,"y":2.015,"w":28.683,"h":0.914,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A11_SUBTOT2_1_","EN":0},"TI":7119,"AM":1024,"x":54.729,"y":7.024,"w":18.171,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_MULT3_1_","EN":0},"TI":7120,"AM":0,"x":54.633,"y":8.047,"w":18.212,"h":0.912,"TU":"Line 16(a). Multiply line 15 by 10% (.10)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_MAXCR_1_","EN":0},"TI":7121,"AM":0,"x":54.633,"y":10.29,"w":18.212,"h":0.912,"TU":"Line 17(a). Maximum credit per vehicle. If you skipped Part II, enter $2,500. If you completed Part II, subtract line 11 from line 10."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A11_SUBTOT2_2_","EN":0},"TI":7122,"AM":1024,"x":77.06,"y":7.027,"w":18.171,"h":0.834},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_MULT3_2_","EN":0},"TI":7123,"AM":0,"x":76.964,"y":8.049,"w":18.212,"h":0.912,"TU":"Line 16(b). Multiply line 15 by 10% (.10)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_MAXCR_2_","EN":0},"TI":7124,"AM":0,"x":76.964,"y":10.292,"w":18.212,"h":0.912,"TU":"Line 17(b). Maximum credit per vehicle. If you skipped Part II, enter $2,500. If you completed Part II, subtract line 11 from line 10."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_SMALLER2_1_","EN":0},"TI":7125,"AM":0,"x":54.597,"y":11.716,"w":18.171,"h":0.943,"TU":"Line 18(a). If the vehicle is a two or three wheeled vehicle, enter the smaller of line 16 or line 17."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_SMALLER2_2_","EN":0},"TI":7126,"AM":0,"x":77.207,"y":11.718,"w":18.171,"h":0.943,"TU":"Line 18(b). If the vehicle is a two or three wheeled vehicle, enter the smaller of line 16 or line 17."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTOT3","EN":0},"TI":7127,"AM":1024,"x":76.916,"y":13.343,"w":18.212,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FR1040","EN":0},"TI":7128,"AM":1024,"x":76.971,"y":14.942,"w":18.212,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CR1040","EN":0},"TI":7129,"AM":1024,"x":76.911,"y":16.444,"w":18.212,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR3","EN":0},"TI":7130,"AM":1024,"x":76.876,"y":17.902,"w":18.212,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PERUSEPT","EN":0},"TI":7131,"AM":1024,"x":76.931,"y":20.154,"w":18.212,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8938.content.txt b/test/data/fd/form/F8938.content.txt new file mode 100755 index 00000000..c62df037 --- /dev/null +++ b/test/data/fd/form/F8938.content.txt @@ -0,0 +1,334 @@ +Form +8938 +(December 2013) +Department of the Treasury +Internal Revenue Service +Statement of Specified Foreign Financial Assets +a + +Information about Form 8938 and its separate instructions is at +www.irs.gov/form8938 +. +a + +Attach to your tax return. +OMB No. 1545-2195 +Attachment +Sequence No. + 175 +If you have attached continuation statements, check here +Number of continuation statements +Name(s) shown on return +Identifying number +Part I +Foreign Deposit and Custodial Accounts Summary +1 +Number of Deposit Accounts (reported on Form 8938) +................ +a +2 +Maximum Value of All Deposit Accounts +..................... + $ +3 +Number of Custodial Accounts (reported on Form 8938) +............... +a +4 +Maximum Value of All Custodial Accounts +..................... + $ +5 +Were any foreign deposit or custodial accounts closed during the tax year? +.......... +Yes +No +Part II +Other Foreign Assets Summary +1 +Number of Foreign Assets (reported on Form 8938) +................. +a + +2 +Maximum Value of All Assets +......................... + $ +3 +Were any foreign assets acquired or sold during the tax year? +.............. +Yes +No +Part III +Summary of Tax Items Attributable to Specified Foreign Financial Assets +(see instructions) +(a) + Asset Category +(b) + Tax item +(c) + Amount reported on +form or schedule +Where reported + +(d) + Form and line +( +e) + Schedule and line + +1 + Foreign Deposit and +1a + Interest +$ + Custodial Accounts +1b + Dividends +$ + +1c + Royalties +$ + +1d + Other income +$ + +1e + Gains (losses) +$ + +1f + Deductions +$ + +1g + Credits +$ + + +2 + Other Foreign Assets +2a + Interest +$ + +2b + Dividends +$ + +2c + Royalties +$ + +2d + Other income +$ + +2e + Gains (losses) +$ + +2f + Deductions +$ + +2g + Credits +$ +Part IV +Excepted Specified Foreign Financial Assets +(see instructions) +If you reported specified foreign financial assets on one or more of the following forms, enter the number of such forms filed. + You do +not need to include these assets on Form 8938 for the tax year. +1. Number of Forms 3520 +2. Number of Forms 3520-A +3. Number of Forms 5471 +4. Number of Forms 8621 +5. Number of Forms 8865 +6. Number of Forms 8891 +Part V +Detailed Information for Each Foreign Deposit and Custodial Account Included in the Part I Summary +(see instructions) +If you have more than one account to report, attach a continuation statement for each additional account (see instructions). +1 +Type of account +Deposit +Custodial +2 + Account number or other designation +3 +Check all that apply +a +Account opened during tax year +b +Account closed during tax year +c +Account jointly owned with spouse +d +No tax item reported in Part III with respect to this asset +4 +Maximum value of account during tax year +..................... + $ +5 +Did you use a foreign currency exchange rate to convert the value of the account into U.S. dollars? . . +Yes +No +6 +If you answered “Yes” to line 5, complete all that apply. +(1) +Foreign currency in which +account is maintained +(2) +Foreign currency exchange rate used to +convert to U.S. dollars +(3) +Source of exchange rate used if not from +U.S. Treasury Financial Management Service +For Paperwork Reduction Act Notice, see the separate instructions. +Cat. No. 37753A +Form +8938 + (12-2013) +----------------Page (0) Break---------------- +Form 8938 (12-2013) +Page +2 +Part V +Detailed Information for Each Foreign Deposit and Custodial Account Included in the Part I Summary +(see instructions) (continued) +7 +Name of financial institution in which account is maintained +8 +Mailing address of financial institution in which account is maintained. Number, street, and room or suite no. +9 +City or town +Part VI +Detailed Information for Each "Other Foreign Asset" Included in the Part II Summary +(see instructions) +Note. + +If you reported specified foreign financial assets on Forms 3520, 3520-A, 5471, 8621, 8865, or 8891, you do not have to include + +the assets on Form 8938. You must complete Part IV. See instructions. +If you have more than one asset to report, attach a continuation statement for each additional asset (see instructions). +1 +Description of asset +2 +Identifying number or other designation +3 +Complete all that apply. See instructions for reporting of multiple acquisition or disposition dates. +a +Date asset acquired during tax year, if applicable +.................. +b +Date asset disposed of during tax year, if applicable +................. +c +Check if asset jointly owned with spouse +d +Check if no tax item reported in Part III with respect to this asset +4 +Maximum value of asset during tax year (check box that applies) +a +$0 - $50,000 +b +$50,001 - $100,000 +c +$100,001 - $150,000 +d +$150,001 - $200,000 +e +If more than $200,000, list value +........................ +$ +5 +Did you use a foreign currency exchange rate to convert the value of the asset into U.S. dollars? . . . +Yes +No +6 +If you answered “Yes” to line 5, complete all that apply. +(1) +Foreign currency in which asset +is denominated +(2) +Foreign currency exchange rate used to +convert to U.S. dollars +(3) +Source of exchange rate used if not from +U.S. Treasury Financial Management Service +7 +If asset reported on line 1 is stock of a foreign entity or an interest in a foreign entity, enter the following information fo +r the asset. +a +Name of foreign entity +b +Type of foreign entity +(1) +Partnership +(2) +Corporation +(3) +Trust +(4) +Estate +c +Mailing address of foreign entity. Number, street, and room or suite no. +d +8 + +If asset reported on line 1 is not stock of a foreign entity or an interest in a foreign entity, enter the following informatio +n for the +asset. +Note. + +If this asset has more than one issuer or counterparty, attach a continuation statement with the same information for each +additional issuer or counterparty (see instructions). +a +Name of issuer or counterparty +Check if information is for +Issuer +Counterparty +b +Type of issuer or counterparty +(1) +Individual +(2) +Partnership +(3) +Corporation +(4) +Trust +(5) +Estate +c +Check if issuer or counterparty is a +U.S. person +Foreign person +d +Mailing address of issuer or counterparty. Number, street, and room or suite no. +e +Form +8938 + (12-2013) +State +US Zip Code +Foreign country name +Foreign province +Foreign postal code +City or town +State +US Zip Code +Foreign country name +Foreign province +Foreign postal code +City or town +State +US Zip Code +Foreign country name +Foreign province +Foreign postal code +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F8938.fields.json b/test/data/fd/form/F8938.fields.json new file mode 100755 index 00000000..eae3c985 --- /dev/null +++ b/test/data/fd/form/F8938.fields.json @@ -0,0 +1 @@ +[{"id":"ADDLSHTS","type":"box","calc":false,"value":""},{"id":"CLOSEDRB","type":"radio","calc":false,"value":"CLOSEY"},{"id":"CLOSEDRB","type":"radio","calc":false,"value":"CLOSEN"},{"id":"ACQSOLRB","type":"radio","calc":false,"value":"ACQY"},{"id":"ACQSOLRB","type":"radio","calc":false,"value":"ACYN"},{"id":"A171RB_1_","type":"radio","calc":false,"value":"DEPOSIT"},{"id":"A171RB_1_","type":"radio","calc":false,"value":"CUSTOD"},{"id":"A171_OPENTY_1_","type":"box","calc":false,"value":""},{"id":"A171_CLOSDTY_1_","type":"box","calc":false,"value":""},{"id":"A171_JOINT_1_","type":"box","calc":false,"value":""},{"id":"A171_PARTIII_1_","type":"box","calc":false,"value":""},{"id":"A172RB_1_","type":"radio","calc":false,"value":"FGNRATEY"},{"id":"A172RB_1_","type":"radio","calc":false,"value":"FGNRATEN"},{"id":"NUMSTATE","type":"number","calc":false,"value":""},{"id":"NAM1","type":"alpha","calc":true,"value":""},{"id":"IDNO1","type":"ssn","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"IDNO2","type":"ssn","calc":true,"value":""},{"id":"DEPACCTS","type":"number","calc":false,"value":""},{"id":"ACCTSVAL","type":"number","calc":false,"value":""},{"id":"CUSTACCT","type":"number","calc":false,"value":""},{"id":"CUSTVALU","type":"number","calc":false,"value":""},{"id":"FORACCTS","type":"number","calc":false,"value":""},{"id":"ASSETVAL","type":"number","calc":false,"value":""},{"id":"AMT1A","type":"number","calc":false,"value":""},{"id":"FORM1A","type":"number","calc":false,"value":""},{"id":"SCH1A","type":"alpha","calc":false,"value":""},{"id":"AMT1B","type":"number","calc":false,"value":""},{"id":"FORM1B","type":"alpha","calc":false,"value":""},{"id":"SCH1B","type":"alpha","calc":false,"value":""},{"id":"AMT1C","type":"number","calc":false,"value":""},{"id":"FORM1C","type":"number","calc":false,"value":""},{"id":"SCH1C","type":"alpha","calc":false,"value":""},{"id":"AMT1D","type":"number","calc":false,"value":""},{"id":"FORM1D","type":"number","calc":false,"value":""},{"id":"SCH1D","type":"alpha","calc":false,"value":""},{"id":"AMT1E","type":"number","calc":false,"value":""},{"id":"FORM1E","type":"number","calc":false,"value":""},{"id":"SCH1E","type":"alpha","calc":false,"value":""},{"id":"AMT1F","type":"number","calc":false,"value":""},{"id":"FORM1F","type":"number","calc":false,"value":""},{"id":"SCH1F","type":"alpha","calc":false,"value":""},{"id":"AMT1G","type":"number","calc":false,"value":""},{"id":"FORM1G","type":"number","calc":false,"value":""},{"id":"SCH1G","type":"alpha","calc":false,"value":""},{"id":"AMT2A","type":"number","calc":false,"value":""},{"id":"FORM2A","type":"number","calc":false,"value":""},{"id":"SCH2A","type":"alpha","calc":false,"value":""},{"id":"AMT2B","type":"number","calc":false,"value":""},{"id":"FORM2B","type":"alpha","calc":false,"value":""},{"id":"SCH2B","type":"alpha","calc":false,"value":""},{"id":"AMT2C","type":"number","calc":false,"value":""},{"id":"FORM2C","type":"number","calc":false,"value":""},{"id":"SCH2C","type":"alpha","calc":false,"value":""},{"id":"AMT2D","type":"number","calc":false,"value":""},{"id":"FORM2D","type":"number","calc":false,"value":""},{"id":"SCH2D","type":"alpha","calc":false,"value":""},{"id":"AMT2E","type":"number","calc":false,"value":""},{"id":"FORM2E","type":"number","calc":false,"value":""},{"id":"SCH2E","type":"alpha","calc":false,"value":""},{"id":"AMT2F","type":"number","calc":false,"value":""},{"id":"FORM2F","type":"number","calc":false,"value":""},{"id":"SCH2F","type":"alpha","calc":false,"value":""},{"id":"AMT2G","type":"number","calc":false,"value":""},{"id":"FORM2G","type":"number","calc":false,"value":""},{"id":"SCH2G","type":"alpha","calc":false,"value":""},{"id":"F3520NO","type":"number","calc":false,"value":""},{"id":"F3520ANO","type":"number","calc":false,"value":""},{"id":"F5471NO","type":"number","calc":false,"value":""},{"id":"F8621NO","type":"number","calc":false,"value":""},{"id":"F8865NO","type":"number","calc":false,"value":""},{"id":"F8891NO","type":"number","calc":false,"value":""},{"id":"A171_ACCTNO_1_","type":"alpha","calc":false,"value":""},{"id":"A171_MAXVAL_1_","type":"number","calc":false,"value":""},{"id":"A171_FGNCURR1_1_","type":"alpha","calc":false,"value":""},{"id":"A171_FGNRATE1_1_","type":"alpha","calc":false,"value":""},{"id":"A171_SOURCE1_1_","type":"alpha","calc":false,"value":""},{"id":"A173_JASST_1_","type":"box","calc":false,"value":""},{"id":"A173_NOTAX_1_","type":"box","calc":false,"value":""},{"id":"VALMAXRB","type":"radio","calc":false,"value":"MAXVAL1"},{"id":"VALMAXRB","type":"radio","calc":false,"value":"MAXVAL2"},{"id":"VALMAXRB","type":"radio","calc":false,"value":"MAXVAL3"},{"id":"VALMAXRB","type":"radio","calc":false,"value":"MAXVAL4"},{"id":"A59RB","type":"radio","calc":false,"value":"CONVY"},{"id":"A59RB","type":"radio","calc":false,"value":"CONVN"},{"id":"A78RB","type":"radio","calc":false,"value":"FPSHP"},{"id":"A78RB","type":"radio","calc":false,"value":"FCORP"},{"id":"A78RB","type":"radio","calc":false,"value":"FTRUST"},{"id":"A78RB","type":"radio","calc":false,"value":"FESTATE"},{"id":"A113RB","type":"radio","calc":false,"value":"ISSSUER"},{"id":"A113RB","type":"radio","calc":false,"value":"COUNTER"},{"id":"BX91RB","type":"radio","calc":false,"value":"ISSINDIV"},{"id":"BX91RB","type":"radio","calc":false,"value":"ISSPSHP"},{"id":"BX91RB","type":"radio","calc":false,"value":"ISSCORP"},{"id":"BX91RB","type":"radio","calc":false,"value":"ISSTRUST"},{"id":"BX91RB","type":"radio","calc":false,"value":"ISSEST"},{"id":"A120RB","type":"radio","calc":false,"value":"ISSUS"},{"id":"A120RB","type":"radio","calc":false,"value":"ISSFGN"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A171_INAME_1_","type":"alpha","calc":false,"value":""},{"id":"A171_IADDR_1_","type":"alpha","calc":false,"value":""},{"id":"A171_ACITY_1_","type":"alpha","calc":false,"value":""},{"id":"A171_IST_1_","type":"alpha","calc":false,"value":""},{"id":"A171_IZIP_1_","type":"zip","calc":false,"value":""},{"id":"A171_ICOUNTRY_1_","type":"alpha","calc":false,"value":""},{"id":"A171_IFPC_1_","type":"alpha","calc":false,"value":""},{"id":"A171_IFZIP_1_","type":"alpha","calc":false,"value":""},{"id":"A173_ASSTDESC_1_","type":"alpha","calc":false,"value":""},{"id":"A173_ASSTID_1_","type":"alpha","calc":false,"value":""},{"id":"A173_DATEACQ_1_","type":"date","calc":false,"value":""},{"id":"A173_DATEDISP_1_","type":"date","calc":false,"value":""},{"id":"A173_GREATVAL_1_","type":"number","calc":false,"value":""},{"id":"A174_FGNCURR2_1_","type":"alpha","calc":false,"value":""},{"id":"A174_FGNRATE2_1_","type":"alpha","calc":false,"value":""},{"id":"A174_SOURCE2_1_","type":"alpha","calc":false,"value":""},{"id":"A174_FNAME_1_","type":"alpha","calc":false,"value":""},{"id":"A174_PFICADDR_1_","type":"alpha","calc":false,"value":""},{"id":"A174_PFICCITY_1_","type":"alpha","calc":false,"value":""},{"id":"A174_PFICST_1_","type":"alpha","calc":false,"value":""},{"id":"A174_PFICZIP_1_","type":"zip","calc":false,"value":""},{"id":"A174_PCOUNTRY_1_","type":"alpha","calc":false,"value":""},{"id":"A174_PFPC_1_","type":"alpha","calc":false,"value":""},{"id":"A174_PFZIP_1_","type":"alpha","calc":false,"value":""},{"id":"A174_ISSNAME_1_","type":"alpha","calc":false,"value":""},{"id":"A174_ISSADDR_1_","type":"alpha","calc":false,"value":""},{"id":"A174_ISSCITY_1_","type":"alpha","calc":false,"value":""},{"id":"A174_ISSST_1_","type":"alpha","calc":false,"value":""},{"id":"A174_ISSZIP_1_","type":"zip","calc":false,"value":""},{"id":"A174_SCOUNTRY_1_","type":"alpha","calc":false,"value":""},{"id":"A174_ISFPC_1_","type":"alpha","calc":false,"value":""},{"id":"A174_ISFZIP_1_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8938.json b/test/data/fd/form/F8938.json new file mode 100755 index 00000000..d5308845 --- /dev/null +++ b/test/data/fd/form/F8938.json @@ -0,0 +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.143,"y":5.249,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.95,"y":5.249,"w":1.5,"l":63.242},{"oc":"#221f1f","x":84.063,"y":3.75,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.063,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":52.321,"y":6.001,"w":0.75,"l":1.375},{"oc":"#221f1f","x":52.321,"y":5.501,"w":0.75,"l":1.375},{"oc":"#221f1f","x":56.884,"y":6.751,"w":0.75,"l":28.548},{"oc":"#221f1f","x":85.347,"y":6.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":58.249},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":58.249},{"oc":"#221f1f","x":64.309,"y":6.751,"w":0.75,"l":34.736},{"oc":"#221f1f","x":64.309,"y":9.001,"w":0.75,"l":34.736},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":11.097,"y":10.503,"w":0.75,"l":87.951},{"oc":"#221f1f","x":84.006,"y":10.503,"w":0.75,"l":15.041},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":10.501,"w":0.75,"l":75.574},{"oc":"#221f1f","x":8.622,"y":11.251,"w":0.75,"l":75.574},{"oc":"#221f1f","x":84.109,"y":11.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":11.097,"y":12.003,"w":0.75,"l":87.951},{"oc":"#221f1f","x":84.111,"y":12.003,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":12.001,"w":0.75,"l":75.574},{"oc":"#221f1f","x":8.622,"y":12.751,"w":0.75,"l":75.574},{"oc":"#221f1f","x":84.109,"y":12.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":14.936},{"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":0.75,"l":2.561},{"oc":"#221f1f","x":84.111,"y":15.003,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":15.001,"w":0.75,"l":75.574},{"oc":"#221f1f","x":8.622,"y":15.751,"w":0.75,"l":75.574},{"oc":"#221f1f","x":84.109,"y":15.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":15.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":15.751,"w":0.75,"l":76.811},{"oc":"#221f1f","x":6.147,"y":16.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":17.251,"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":17.411},{"oc":"#221f1f","x":45.747,"y":18.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":18.001,"w":0.75,"l":35.973},{"oc":"#221f1f","x":63.072,"y":18.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":18.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":19.593,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":19.593,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":19.593,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":19.593,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":20.343,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":20.343,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":20.343,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":20.343,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":21.093,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":21.093,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":21.093,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":21.093,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":21.843,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":21.843,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":21.843,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":21.843,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":22.593,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":22.593,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":22.593,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":22.593,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":23.343,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":23.343,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":23.343,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":23.343,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":24.093,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":24.093,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":24.093,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":24.093,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.147,"y":24.093,"w":0.75,"l":22.361},{"oc":"#221f1f","x":28.422,"y":24.842,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":24.842,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":24.842,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":24.842,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":25.592,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":25.592,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":25.592,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":25.592,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":26.342,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":26.342,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":26.342,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":26.342,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":27.092,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":27.092,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":27.092,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":27.092,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":27.842,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":27.842,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":27.842,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":27.842,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":28.499,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":28.499,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":28.499,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":28.499,"w":0.75,"l":17.411},{"oc":"#221f1f","x":28.422,"y":29.248,"w":0.75,"l":17.411},{"oc":"#221f1f","x":45.747,"y":29.248,"w":0.75,"l":17.411},{"oc":"#221f1f","x":63.072,"y":29.248,"w":0.75,"l":18.648},{"oc":"#221f1f","x":81.634,"y":29.248,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.147,"y":29.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":30.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":25.912,"y":33.001,"w":0.75,"l":7.545},{"oc":"#221f1f","x":59.291,"y":33.001,"w":0.75,"l":7.58},{"oc":"#221f1f","x":91.5,"y":33.001,"w":0.75,"l":7.545},{"oc":"#221f1f","x":25.912,"y":33.751,"w":0.75,"l":7.545},{"oc":"#221f1f","x":59.291,"y":33.751,"w":0.75,"l":7.58},{"oc":"#221f1f","x":91.5,"y":33.751,"w":0.75,"l":7.545},{"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},{"oc":"#221f1f","x":6.147,"y":36.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":55.774},{"oc":"#221f1f","x":61.834,"y":38.251,"w":0.75,"l":37.211},{"oc":"#221f1f","x":6.147,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":40.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":39.751,"w":0.75,"l":75.574},{"oc":"#221f1f","x":8.622,"y":40.501,"w":0.75,"l":75.574},{"oc":"#221f1f","x":84.109,"y":39.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.109,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":41.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":41.251,"w":0.75,"l":90.424},{"oc":"#221f1f","x":6.147,"y":42.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.147,"y":44.251,"w":1.5,"l":31.023},{"oc":"#221f1f","x":37.084,"y":42.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":44.251,"w":1.5,"l":31.023},{"oc":"#221f1f","x":68.022,"y":42.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.022,"y":44.251,"w":1.5,"l":31.023},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.853},{"oc":"#221f1f","x":0.086,"y":48.897,"w":0.75,"l":1.853}],"VLines":[{"oc":"#221f1f","x":21.036,"y":2.234,"w":1.5,"l":1.547},{"oc":"#221f1f","x":21.036,"y":3.735,"w":1.5,"l":1.545},{"oc":"#221f1f","x":84.149,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.149,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":53.696,"y":5.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":52.321,"y":5.501,"w":0.75,"l":0.5},{"oc":"#221f1f","x":64.352,"y":6.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":28.465,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.79,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":18.735,"w":0.75,"l":0.873},{"oc":"#221f1f","x":45.79,"y":18.735,"w":0.75,"l":0.873},{"oc":"#221f1f","x":63.115,"y":18.735,"w":0.75,"l":0.873},{"oc":"#221f1f","x":81.677,"y":18.735,"w":0.75,"l":0.873},{"oc":"#221f1f","x":28.465,"y":19.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":19.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":19.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":19.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":20.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":20.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":20.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":20.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":21.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":21.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":21.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":21.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":21.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":21.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":21.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":21.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":22.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":22.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":22.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":22.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":23.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":23.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":23.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":23.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":24.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":24.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":24.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":24.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":24.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":24.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":24.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":24.827,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":25.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":25.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":25.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":25.577,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":26.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":26.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":26.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":26.327,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":27.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":27.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":27.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":27.077,"w":0.75,"l":0.781},{"oc":"#221f1f","x":28.465,"y":27.827,"w":0.75,"l":0.688},{"oc":"#221f1f","x":45.79,"y":27.827,"w":0.75,"l":0.688},{"oc":"#221f1f","x":63.115,"y":27.827,"w":0.75,"l":0.688},{"oc":"#221f1f","x":81.677,"y":27.827,"w":0.75,"l":0.688},{"oc":"#221f1f","x":28.465,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.79,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.677,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":41.985,"w":0.75,"l":2.297},{"oc":"#221f1f","x":68.065,"y":41.985,"w":0.75,"l":2.297},{"oc":"#221f1f","x":1.939,"y":48.897,"w":0.75,"l":0.572},{"oc":"#221f1f","x":0.086,"y":48.897,"w":0.75,"l":0.572}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":9.001,"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":"#221f1f","x":6.19,"y":16.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":29.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":34.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.928,"w":1.681,"h":0.509,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.928,"w":1.681,"h":0.509,"clr":-1},{"x":0.344,"y":49.011,"w":1.056,"h":0.364,"clr":0}],"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.08,"clr":-1,"A":"left","R":[{"T":"8938","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.936,"y":3.155,"w":7.651,"clr":-1,"A":"left","R":[{"T":"(December%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.936,"y":3.9370000000000003,"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.936,"y":4.374,"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.379,"y":2.162,"w":21.579999999999995,"clr":-1,"A":"left","R":[{"T":"Statement%20of%20Specified%20Foreign%20Financial%20Assets","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":23.294,"y":3.471,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.659,"y":3.5650000000000004,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208938%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.235,"y":3.5650000000000004,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8938","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.01,"y":3.5650000000000004,"w":2.224,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.446,"y":4.034,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.811,"y":4.128,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.74,"y":2.347,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-2195","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.618,"y":3.5570000000000004,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.618,"y":4.157,"w":6.353,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.353,"y":4.157,"w":2.224,"clr":-1,"A":"left","R":[{"T":"%20175%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.518,"y":5.215,"w":27.37200000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20attached%20continuation%20statements%2C%20check%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.88,"y":5.215,"w":16.905,"clr":-1,"A":"left","R":[{"T":"Number%20of%20continuation%20statements","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.59,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.79,"y":6.59,"w":8.336,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":3,"TS":[0,12,0,0]}]},{"x":6.838,"y":8.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":8.822,"w":24.071,"clr":-1,"A":"left","R":[{"T":"Foreign%20Deposit%20and%20Custodial%20Accounts%20Summary","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.53,"w":24.37700000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Deposit%20Accounts%20(reported%20on%20Form%208938)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":9.53,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"................%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.904,"y":9.436,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":18.171000000000003,"clr":-1,"A":"left","R":[{"T":"Maximum%20Value%20of%20All%20Deposit%20Accounts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":10.34,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.495,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.03,"w":25.17300000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Custodial%20Accounts%20(reported%20on%20Form%208938)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":11.03,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":"...............%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.904,"y":10.936,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":18.967000000000002,"clr":-1,"A":"left","R":[{"T":"Maximum%20Value%20of%20All%20Custodial%20Accounts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":11.84,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.495,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":33.801,"clr":-1,"A":"left","R":[{"T":"Were%20any%20foreign%20deposit%20or%20custodial%20accounts%20closed%20during%20the%20tax%20year%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":12.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.632,"y":12.608,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.798,"y":12.608,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,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.533,"y":13.322,"w":14.907000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20Foreign%20Assets%20Summary","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.03,"w":23.079000000000008,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Foreign%20Assets%20(reported%20on%20Form%208938)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":14.03,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":".................%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.904,"y":13.936,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":13.225,"clr":-1,"A":"left","R":[{"T":"Maximum%20Value%20of%20All%20Assets%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":14.84,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.495,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":27.744000000000003,"clr":-1,"A":"left","R":[{"T":"Were%20any%20foreign%20assets%20acquired%20or%20sold%20during%20the%20tax%20year%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":15.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.632,"y":15.608,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.798,"y":15.608,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":6.331,"y":16.322,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":16.322,"w":34.786,"clr":-1,"A":"left","R":[{"T":"Summary%20of%20Tax%20Items%20Attributable%20to%20Specified%20Foreign%20Financial%20Assets%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":74.32,"y":16.322,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.647,"y":17.84,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.451,"y":17.84,"w":7.148000000000001,"clr":-1,"A":"left","R":[{"T":"%20Asset%20Category","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.766,"y":17.84,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(b)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.627,"y":17.84,"w":4.112,"clr":-1,"A":"left","R":[{"T":"%20Tax%20item","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.122,"y":17.04,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(c)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.926,"y":17.04,"w":9.559,"clr":-1,"A":"left","R":[{"T":"%20Amount%20reported%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.357,"y":17.728,"w":7.557,"clr":-1,"A":"left","R":[{"T":"form%20or%20schedule","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.752,"y":17.09,"w":6.982000000000001,"clr":-1,"A":"left","R":[{"T":"Where%20reported","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.616,"y":17.84,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(d)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.477,"y":17.84,"w":6.391000000000002,"clr":-1,"A":"left","R":[{"T":"%20Form%20and%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.185,"y":17.84,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.586,"y":17.84,"w":0.8700000000000001,"clr":-1,"A":"left","R":[{"T":"e)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.931,"y":17.84,"w":8.243000000000002,"clr":-1,"A":"left","R":[{"T":"%20Schedule%20and%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.23,"y":18.682,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.09,"y":18.682,"w":9.613000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20Foreign%20Deposit%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":18.682,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.65,"y":18.682,"w":3.908,"clr":-1,"A":"left","R":[{"T":"%20%20Interest","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":18.682,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.971,"y":19.37,"w":9.02,"clr":-1,"A":"left","R":[{"T":"%20Custodial%20Accounts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":19.432,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.707,"y":19.432,"w":4.9830000000000005,"clr":-1,"A":"left","R":[{"T":"%20%20Dividends","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":19.432,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":20.182,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.65,"y":20.182,"w":4.648000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20Royalties","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":20.182,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":20.932,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.707,"y":20.932,"w":6.614,"clr":-1,"A":"left","R":[{"T":"%20%20Other%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":20.932,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":21.682,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.65,"y":21.682,"w":6.759,"clr":-1,"A":"left","R":[{"T":"%20%20Gains%20(losses)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":21.682,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":22.432,"w":0.889,"clr":-1,"A":"left","R":[{"T":"1f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.277,"y":22.432,"w":5.928000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20Deductions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":22.432,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":23.182,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.707,"y":23.182,"w":3.778,"clr":-1,"A":"left","R":[{"T":"%20%20Credits","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":23.182,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.8,"y":23.932,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.66,"y":23.932,"w":9.983,"clr":-1,"A":"left","R":[{"T":"%20%20Other%20Foreign%20Assets","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":23.932,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.65,"y":23.932,"w":3.908,"clr":-1,"A":"left","R":[{"T":"%20%20Interest","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":23.932,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":24.681,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.707,"y":24.681,"w":4.9830000000000005,"clr":-1,"A":"left","R":[{"T":"%20%20Dividends","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":24.681,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":25.431,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.65,"y":25.431,"w":4.648000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20Royalties","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":25.431,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":26.181,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.707,"y":26.181,"w":6.614,"clr":-1,"A":"left","R":[{"T":"%20%20Other%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":26.181,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":26.931,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.65,"y":26.931,"w":6.759,"clr":-1,"A":"left","R":[{"T":"%20%20Gains%20(losses)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":26.931,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":27.588,"w":0.889,"clr":-1,"A":"left","R":[{"T":"2f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.277,"y":27.588,"w":5.928000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20Deductions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":27.588,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.902,"y":28.338,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2g","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.707,"y":28.338,"w":3.778,"clr":-1,"A":"left","R":[{"T":"%20%20Credits","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.917,"y":28.338,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":6.296,"y":29.072,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":29.072,"w":21.438999999999997,"clr":-1,"A":"left","R":[{"T":"Excepted%20Specified%20Foreign%20Financial%20Assets%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.382,"y":29.072,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.903,"w":55.488999999999955,"clr":-1,"A":"left","R":[{"T":"If%20you%20reported%20specified%20foreign%20financial%20assets%20on%20one%20or%20more%20of%20the%20following%20forms%2C%20enter%20the%20number%20of%20such%20forms%20filed.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.774,"y":29.903,"w":3.7790000000000004,"clr":-1,"A":"left","R":[{"T":"%20You%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.528,"w":28.582,"clr":-1,"A":"left","R":[{"T":"not%20need%20to%20include%20these%20assets%20on%20Form%208938%20for%20the%20tax%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.283,"y":32.09,"w":11.468000000000004,"clr":-1,"A":"left","R":[{"T":"1.%20Number%20of%20Forms%203520","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.458,"y":32.09,"w":12.505000000000003,"clr":-1,"A":"left","R":[{"T":"2.%20Number%20of%20Forms%203520-A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.871,"y":32.09,"w":11.468000000000004,"clr":-1,"A":"left","R":[{"T":"3.%20Number%20of%20Forms%205471","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.283,"y":32.84,"w":11.468000000000004,"clr":-1,"A":"left","R":[{"T":"4.%20Number%20of%20Forms%208621","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.458,"y":32.84,"w":11.468000000000004,"clr":-1,"A":"left","R":[{"T":"5.%20Number%20of%20Forms%208865","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.871,"y":32.84,"w":11.468000000000004,"clr":-1,"A":"left","R":[{"T":"6.%20Number%20of%20Forms%208891","S":3,"TS":[0,12,0,0]}]},{"x":6.55,"y":34.322,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":34.385,"w":48.24899999999999,"clr":-1,"A":"left","R":[{"T":"Detailed%20Information%20for%20Each%20Foreign%20Deposit%20and%20Custodial%20Account%20Included%20in%20the%20Part%20I%20Summary%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":35.041,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":35.84,"w":54.938999999999965,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20one%20account%20to%20report%2C%20attach%20a%20continuation%20statement%20for%20each%20additional%20account%20(see%20instructions).","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":7.555,"y":36.653,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":7.242,"clr":-1,"A":"left","R":[{"T":"Type%20of%20account","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.912,"y":36.59,"w":3.4450000000000003,"clr":-1,"A":"left","R":[{"T":"Deposit","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.302,"y":36.59,"w":4.2410000000000005,"clr":-1,"A":"left","R":[{"T":"Custodial","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.315,"y":36.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.175,"y":36.59,"w":17.505000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20Account%20number%20or%20other%20designation","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":38.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":8.854000000000001,"clr":-1,"A":"left","R":[{"T":"Check%20all%20that%20apply","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.771,"y":38.09,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.927,"y":38.09,"w":14.336000000000006,"clr":-1,"A":"left","R":[{"T":"Account%20opened%20during%20tax%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.443,"y":38.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":38.09,"w":14.187000000000006,"clr":-1,"A":"left","R":[{"T":"Account%20closed%20during%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.771,"y":38.84,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.927,"y":38.84,"w":15.575000000000005,"clr":-1,"A":"left","R":[{"T":"Account%20jointly%20owned%20with%20spouse","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":57.442,"y":38.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":38.84,"w":24.928000000000004,"clr":-1,"A":"left","R":[{"T":"No%20tax%20item%20reported%20in%20Part%20III%20with%20respect%20to%20this%20asset","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":7.555,"y":39.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":19.301000000000002,"clr":-1,"A":"left","R":[{"T":"Maximum%20value%20of%20account%20during%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":39.59,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.495,"y":39.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":40.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":44.35899999999998,"clr":-1,"A":"left","R":[{"T":"Did%20you%20use%20a%20foreign%20currency%20exchange%20rate%20to%20convert%20the%20value%20of%20the%20account%20into%20U.S.%20dollars%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.193,"y":40.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.255,"y":40.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.632,"y":40.358,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.798,"y":40.358,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":41.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.09,"w":24.708000000000006,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%E2%80%9D%20to%20line%205%2C%20complete%20all%20that%20apply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.79,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(1)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.525,"y":41.79,"w":11.778000000000004,"clr":-1,"A":"left","R":[{"T":"Foreign%20currency%20in%20which%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.477,"w":9.818000000000003,"clr":-1,"A":"left","R":[{"T":"account%20is%20maintained","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.565,"y":41.79,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(2)%20%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":40.174,"y":41.79,"w":18.076000000000008,"clr":-1,"A":"left","R":[{"T":"Foreign%20currency%20exchange%20rate%20used%20to%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":37.565,"y":42.477,"w":9.982000000000001,"clr":-1,"A":"left","R":[{"T":"convert%20to%20U.S.%20dollars","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":68.502,"y":41.79,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(3)%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":71.006,"y":41.79,"w":18.558000000000003,"clr":-1,"A":"left","R":[{"T":"Source%20of%20exchange%20rate%20used%20if%20not%20from%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":68.502,"y":42.477,"w":20.058,"clr":-1,"A":"left","R":[{"T":"U.S.%20Treasury%20Financial%20Management%20Service","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":5.94,"y":44.108,"w":32.49900000000001,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20separate%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.976,"y":44.126,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037753A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.013,"y":44.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.156,"y":44.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8938","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":92.978,"y":44.072,"w":5.077,"clr":-1,"A":"left","R":[{"T":"%20%20(12-2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NUMSTATE","EN":0},"TI":7133,"AM":0,"x":85.346,"y":5.288,"w":12.478,"h":0.833,"TU":"Number of continuation statements"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM1","EN":0},"TI":7134,"AM":1024,"x":6.139,"y":7.421,"w":40.05,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO1","EN":0},"TI":7135,"AM":1024,"x":64.208,"y":7.44,"w":25.781,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":7136,"AM":1024,"x":6.106,"y":8.151,"w":40.05,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"IDNO2","EN":0},"TI":7137,"AM":1024,"x":64.342,"y":8.181,"w":25.781,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPACCTS","EN":0},"TI":7138,"AM":0,"x":86.123,"y":9.774,"w":12.853,"h":0.833,"TU":"Part I. Line 1. Number of Deposit Accounts (reported on Form 8938)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ACCTSVAL","EN":0},"TI":7139,"AM":0,"x":86.186,"y":10.531,"w":12.853,"h":0.833,"TU":"Part I. Line 2. Maximum Value of All Deposit Accounts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CUSTACCT","EN":0},"TI":7140,"AM":0,"x":86.186,"y":11.3,"w":12.853,"h":0.833,"TU":"Part I. Line 3. Number of Custodial Accounts (reported on Form 8938)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CUSTVALU","EN":0},"TI":7141,"AM":0,"x":86.115,"y":12.087,"w":12.853,"h":0.833,"TU":"Part I. Line 4. Maximum Value of All Custodial Accounts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORACCTS","EN":0},"TI":7144,"AM":0,"x":86.42,"y":14.292,"w":12.853,"h":0.833,"TU":"Part II Line 1. Number of Foreign Assets (reported on Form 8938)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ASSETVAL","EN":0},"TI":7145,"AM":0,"x":86.35,"y":15.036,"w":12.853,"h":0.833,"TU":"Part II. Line 2. Maximum Value of All Assets."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1A","EN":0},"TI":7148,"AM":0,"x":47.529,"y":18.781,"w":15.556,"h":0.833,"TU":"Part III. Line 1a(c). Interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM1A","EN":0},"TI":7149,"AM":0,"x":63.192,"y":18.774,"w":18.377,"h":0.833,"TU":"Part III. Line 1a(d). Interest."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH1A","EN":0},"TI":7150,"AM":0,"x":81.754,"y":18.774,"w":17.243,"h":0.833,"TU":"Part III. Line 1a(e). Interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1B","EN":0},"TI":7151,"AM":0,"x":47.519,"y":19.601,"w":15.556,"h":0.833,"TU":"Part III. Line 1b(c). Dividends."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FORM1B","EN":0},"TI":7152,"AM":0,"x":63.192,"y":19.524,"w":18.377,"h":0.833,"TU":"Part III. Line 1b(d). Dividends."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH1B","EN":0},"TI":7153,"AM":0,"x":81.754,"y":19.524,"w":17.243,"h":0.833,"TU":"Part III. Line 1b(e). Dividends."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1C","EN":0},"TI":7154,"AM":0,"x":47.448,"y":20.345,"w":15.556,"h":0.833,"TU":"Line 1c(c). Royalties."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM1C","EN":0},"TI":7155,"AM":0,"x":63.192,"y":20.274,"w":18.377,"h":0.833,"TU":"Line 1c(d). Royalties."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH1C","EN":0},"TI":7156,"AM":0,"x":81.754,"y":20.274,"w":17.243,"h":0.833,"TU":"Line 1c(e). Royalties."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1D","EN":0},"TI":7157,"AM":0,"x":47.46,"y":21.148,"w":15.556,"h":0.833,"TU":"Line 1d(c). Other Income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM1D","EN":0},"TI":7158,"AM":0,"x":63.216,"y":21.128,"w":18.377,"h":0.833,"TU":"Line 1d(d). Other Income."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH1D","EN":0},"TI":7159,"AM":0,"x":81.661,"y":21.085,"w":17.243,"h":0.833,"TU":"Line 1d(e). Other Income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1E","EN":0},"TI":7160,"AM":0,"x":47.578,"y":21.875,"w":15.556,"h":0.833,"TU":"Line 1e(c). Gains (losses)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM1E","EN":0},"TI":7161,"AM":0,"x":63.216,"y":21.878,"w":18.377,"h":0.833,"TU":"Line 1e(d). Gains (losses)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH1E","EN":0},"TI":7162,"AM":0,"x":81.778,"y":21.878,"w":17.243,"h":0.833,"TU":"Line 1e(e). Gains (losses)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1F","EN":0},"TI":7163,"AM":0,"x":47.507,"y":22.618,"w":15.556,"h":0.833,"TU":"Line 1f(c). Deductions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM1F","EN":0},"TI":7164,"AM":0,"x":63.216,"y":22.628,"w":18.377,"h":0.833,"TU":"Line 1f(d). Deductions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH1F","EN":0},"TI":7165,"AM":0,"x":81.778,"y":22.628,"w":17.243,"h":0.833,"TU":"Line 1f(e). Deductions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1G","EN":0},"TI":7166,"AM":0,"x":47.554,"y":23.362,"w":15.556,"h":0.833,"TU":"Line 1g(c). Credits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM1G","EN":0},"TI":7167,"AM":0,"x":63.216,"y":23.378,"w":18.377,"h":0.833,"TU":"Line 1g(d). Credits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH1G","EN":0},"TI":7168,"AM":0,"x":81.778,"y":23.378,"w":17.243,"h":0.833,"TU":"Line 1g(e). Credits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2A","EN":0},"TI":7169,"AM":0,"x":47.519,"y":24.101,"w":15.556,"h":0.833,"TU":"Line 2a(c). Interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM2A","EN":0},"TI":7170,"AM":0,"x":63.216,"y":24.128,"w":18.377,"h":0.833,"TU":"Line 2a(d). Interest."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH2A","EN":0},"TI":7171,"AM":0,"x":81.714,"y":24.104,"w":17.243,"h":0.833,"TU":"Line 2a(e). Interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2B","EN":0},"TI":7172,"AM":0,"x":47.636,"y":24.828,"w":15.556,"h":0.833,"TU":"Line 2b(c). Dividends."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FORM2B","EN":0},"TI":7173,"AM":0,"x":63.216,"y":24.878,"w":18.377,"h":0.833,"TU":"Line 2b(d). Dividends."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH2B","EN":0},"TI":7174,"AM":0,"x":81.778,"y":24.878,"w":17.243,"h":0.833,"TU":"Line 2b(e). Dividends."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2C","EN":0},"TI":7175,"AM":0,"x":47.566,"y":25.572,"w":15.556,"h":0.833,"TU":"Line 2c(c). Royalties."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM2C","EN":0},"TI":7176,"AM":0,"x":63.216,"y":25.628,"w":18.377,"h":0.833,"TU":"Line 2c(d). Royalties."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH2C","EN":0},"TI":7177,"AM":0,"x":81.778,"y":25.628,"w":17.243,"h":0.833,"TU":"Line 2c(e). Royalties."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2D","EN":0},"TI":7178,"AM":0,"x":47.612,"y":26.315,"w":15.556,"h":0.833,"TU":"Line 2d(c). Other income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM2D","EN":0},"TI":7179,"AM":0,"x":63.216,"y":26.378,"w":18.377,"h":0.833,"TU":"Line 2d(d). Other income."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH2D","EN":0},"TI":7180,"AM":0,"x":81.778,"y":26.378,"w":17.243,"h":0.833,"TU":"Line 2d(e). Other income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2E","EN":0},"TI":7181,"AM":0,"x":47.613,"y":27.072,"w":15.556,"h":0.833,"TU":"Line 2e(c). Gains (losses)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM2E","EN":0},"TI":7182,"AM":0,"x":63.152,"y":27.128,"w":18.377,"h":0.833,"TU":"Line 2e(d). Gains (losses)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH2E","EN":0},"TI":7183,"AM":0,"x":81.778,"y":27.128,"w":17.243,"h":0.833,"TU":"Line 2e(e). Gains (losses)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2F","EN":0},"TI":7184,"AM":0,"x":47.542,"y":27.815,"w":15.556,"h":0.833,"TU":"Line 2e(f). Gains (losses)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM2F","EN":0},"TI":7185,"AM":0,"x":63.216,"y":27.878,"w":18.377,"h":0.833,"TU":"Line 2e(d). Gains (losses)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH2F","EN":0},"TI":7186,"AM":0,"x":81.778,"y":27.878,"w":17.243,"h":0.833,"TU":"Line 2e(e). Gains (losses)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT2G","EN":0},"TI":7187,"AM":0,"x":47.589,"y":28.559,"w":15.556,"h":0.833,"TU":"Line 2g(c). Credits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORM2G","EN":0},"TI":7188,"AM":0,"x":63.152,"y":28.538,"w":18.377,"h":0.833,"TU":"Line 2g(d). Credits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCH2G","EN":0},"TI":7189,"AM":0,"x":81.778,"y":28.538,"w":17.243,"h":0.833,"TU":"Line 2g(e). Credits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F3520NO","EN":0},"TI":7190,"AM":0,"x":25.905,"y":32.288,"w":7.569,"h":0.833,"TU":"1. Number of Forms 3520 [1]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F3520ANO","EN":0},"TI":7191,"AM":0,"x":59.297,"y":32.288,"w":7.59,"h":0.833,"TU":"2. Number of Forms 3520-A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F5471NO","EN":0},"TI":7192,"AM":0,"x":91.493,"y":32.288,"w":7.569,"h":0.833,"TU":"3. Number of Forms 5471"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8621NO","EN":0},"TI":7193,"AM":0,"x":25.905,"y":33.038,"w":7.569,"h":0.833,"TU":"4. Number of Forms 8621"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8865NO","EN":0},"TI":7194,"AM":0,"x":59.297,"y":33.038,"w":7.59,"h":0.833,"TU":"5. Number of Forms 8865"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8891NO","EN":0},"TI":7195,"AM":0,"x":91.493,"y":33.038,"w":7.569,"h":0.833,"TU":"6. Number of Forms 8891"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_ACCTNO_1_","EN":0},"TI":7198,"AM":0,"x":61.999,"y":37.428,"w":37.001,"h":0.833,"TU":"2 Account number or other designation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A171_MAXVAL_1_","EN":0},"TI":7203,"AM":0,"x":86.263,"y":39.773,"w":12.536,"h":0.833,"TU":"Line 4. Maximum value of account during tax year."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_FGNCURR1_1_","EN":0},"TI":7206,"AM":0,"x":6.229,"y":43.36,"w":30.773,"h":0.86,"TU":"(1) Foreign currency in which account is maintained"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_FGNRATE1_1_","EN":0},"TI":7207,"AM":0,"x":37.269,"y":43.383,"w":30.669,"h":0.837,"TU":"(2) Foreign currency exchange rate used to convert to U.S. dollars"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_SOURCE1_1_","EN":0},"TI":7208,"AM":0,"x":68.207,"y":43.383,"w":30.772,"h":0.837,"TU":"(3) Source of exchange rate used if not from U.S. Treasury Financial Management Service"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADDLSHTS","EN":0},"TI":7132,"AM":0,"x":52.284,"y":5.357,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLOSEY","EN":0},"TI":7142,"AM":0,"x":85.574,"y":12.67,"w":2.194,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLOSEN","EN":0},"TI":7143,"AM":0,"x":93.038,"y":12.69,"w":1.912,"h":0.833,"checked":false}],"id":{"Id":"CLOSEDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACQY","EN":0},"TI":7146,"AM":0,"x":85.455,"y":15.69,"w":2.025,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACYN","EN":0},"TI":7147,"AM":0,"x":92.907,"y":15.69,"w":2.025,"h":0.833,"checked":false}],"id":{"Id":"ACQSOLRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPOSIT","EN":0},"TI":7196,"AM":0,"x":29.419,"y":36.714,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CUSTOD","EN":0},"TI":7197,"AM":0,"x":41.85,"y":36.734,"w":1.856,"h":0.833,"checked":false}],"id":{"Id":"A171RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A171_OPENTY_1_","EN":0},"TI":7199,"AM":0,"x":29.659,"y":38.238,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A171_CLOSDTY_1_","EN":0},"TI":7200,"AM":0,"x":59.359,"y":38.238,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A171_JOINT_1_","EN":0},"TI":7201,"AM":0,"x":29.659,"y":38.988,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A171_PARTIII_1_","EN":0},"TI":7202,"AM":0,"x":59.359,"y":38.988,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FGNRATEY","EN":0},"TI":7204,"AM":0,"x":85.331,"y":40.437,"w":2.025,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FGNRATEN","EN":0},"TI":7205,"AM":0,"x":92.925,"y":40.477,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"A172RB_1_","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":2.485,"w":1.5,"l":87.949},{"oc":"#221f1f","x":94.009,"y":2.485,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.147,"y":2.485,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":3.985,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":5.485,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.661,"y":5.485,"w":0.75,"l":90.385},{"oc":"#221f1f","x":6.147,"y":6.986,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.661,"y":6.986,"w":0.75,"l":90.385},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.661,"y":9.001,"w":1.125,"l":90.385},{"oc":"#221f1f","x":6.147,"y":9.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":13.501,"w":0.75,"l":44.636},{"oc":"#221f1f","x":53.172,"y":13.501,"w":0.75,"l":45.874},{"oc":"#221f1f","x":81.634,"y":15.003,"w":0.75,"l":17.411},{"oc":"#221f1f","x":81.634,"y":15.753,"w":0.75,"l":17.411},{"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":90.424},{"oc":"#221f1f","x":11.097,"y":18.751,"w":0.75,"l":73.099},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":14.936},{"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":76.811},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":20.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":22.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.021,"y":20.251,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.021,"y":22.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":27.184,"y":24.001,"w":0.75,"l":71.861},{"oc":"#221f1f","x":11.097,"y":26.251,"w":0.75,"l":87.949},{"oc":"#221f1f","x":11.083,"y":28.36,"w":0.75,"l":87.949},{"oc":"#221f1f","x":6.147,"y":28.36,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.621,"y":28.36,"w":0.75,"l":90.424},{"oc":"#221f1f","x":33.371,"y":32.11,"w":0.75,"l":65.674},{"oc":"#221f1f","x":11.096,"y":38.11,"w":0.75,"l":87.949},{"oc":"#221f1f","x":6.147,"y":40.032,"w":1.5,"l":92.899},{"oc":"#221f1f","x":0.086,"y":49.469,"w":1.125,"l":1.915},{"oc":"#221f1f","x":0.086,"y":49.045,"w":1.125,"l":1.915},{"oc":"#221f1f","x":0.086,"y":49.469,"w":1.125,"l":1.341},{"oc":"#221f1f","x":0.086,"y":49.069,"w":1.125,"l":1.341}],"VLines":[{"oc":"#221f1f","x":53.215,"y":11.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.127,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":68.064,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":2.001,"y":49.045,"w":1.125,"l":0.424},{"oc":"#221f1f","x":0.086,"y":49.045,"w":1.125,"l":0.424},{"oc":"#221f1f","x":1.427,"y":49.069,"w":1.125,"l":0.399},{"oc":"#221f1f","x":0.086,"y":49.069,"w":1.125,"l":0.399}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":2.485,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":9.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.908,"w":1.569,"h":0.53,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":49.101,"w":1.169,"h":0.274,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":49.101,"w":1.169,"h":0.337,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.4580000000000002,"w":9.357000000000003,"clr":-1,"A":"left","R":[{"T":"Form%208938%20(12-2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":1.4940000000000002,"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.4940000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.55,"y":2.306,"w":2.89,"clr":1,"A":"left","R":[{"T":"Part%20V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":2.369,"w":48.24899999999999,"clr":-1,"A":"left","R":[{"T":"Detailed%20Information%20for%20Each%20Foreign%20Deposit%20and%20Custodial%20Account%20Included%20in%20the%20Part%20I%20Summary%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":3.025,"w":13.076000000000004,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20(continued)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":3.825,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.929,"y":3.825,"w":26.450000000000006,"clr":-1,"A":"left","R":[{"T":"Name%20of%20financial%20institution%20in%20which%20account%20is%20maintained","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":5.325,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.929,"y":5.219,"w":48.25199999999997,"clr":-1,"A":"left","R":[{"T":"Mailing%20address%20of%20financial%20institution%20in%20which%20account%20is%20maintained.%20Number%2C%20street%2C%20and%20room%20or%20suite%20no.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":6.825,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.929,"y":6.824,"w":5.279000000000001,"clr":-1,"A":"left","R":[{"T":"City%20or%20town","S":3,"TS":[0,12,0,0]}]},{"x":6.296,"y":8.822,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20VI","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":8.822,"w":40.30599999999999,"clr":-1,"A":"left","R":[{"T":"Detailed%20Information%20for%20Each%20%22Other%20Foreign%20Asset%22%20Included%20in%20the%20Part%20II%20Summary%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":82.948,"y":8.822,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":9.54,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.323,"y":9.54,"w":56.738999999999926,"clr":-1,"A":"left","R":[{"T":"If%20you%20reported%20specified%20foreign%20financial%20assets%20on%20Forms%203520%2C%203520-A%2C%205471%2C%208621%2C%208865%2C%20or%208891%2C%20you%20do%20not%20have%20to%20include","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":10.228,"w":31.468000000000004,"clr":-1,"A":"left","R":[{"T":"the%20assets%20on%20Form%208938.%20You%20must%20complete%20Part%20IV.%20See%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.09,"w":52.49299999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20one%20asset%20to%20report%2C%20attach%20a%20continuation%20statement%20for%20each%20additional%20asset%20(see%20instructions).","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.79,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.739,"w":8.908000000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20asset","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.652,"y":11.715,"w":1.112,"clr":-1,"A":"left","R":[{"T":"2%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.372,"y":11.715,"w":17.578000000000007,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20or%20other%20designation","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":43.30399999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20all%20that%20apply.%20See%20instructions%20for%20reporting%20of%20multiple%20acquisition%20or%20disposition%20dates.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.59,"y":14.059,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.03,"w":22.114,"clr":-1,"A":"left","R":[{"T":"Date%20asset%20acquired%20during%20tax%20year%2C%20if%20applicable%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.128,"y":14.03,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.553,"y":14.809,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.78,"w":23.465999999999998,"clr":-1,"A":"left","R":[{"T":"Date%20asset%20disposed%20of%20during%20tax%20year%2C%20if%20applicable%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":14.78,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.581,"y":15.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":15.59,"w":18.186,"clr":-1,"A":"left","R":[{"T":"Check%20if%20asset%20jointly%20owned%20with%20spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.162,"y":15.59,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.965,"y":15.59,"w":28.707,"clr":-1,"A":"left","R":[{"T":"Check%20if%20no%20tax%20item%20reported%20in%20Part%20III%20with%20respect%20to%20this%20asset","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":28.728,"clr":-1,"A":"left","R":[{"T":"Maximum%20value%20of%20asset%20during%20tax%20year%20(check%20box%20that%20applies)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.589,"y":17.09,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":17.09,"w":5.671,"clr":-1,"A":"left","R":[{"T":"%240%20-%20%2450%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.887,"y":17.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":17.09,"w":8.729000000000003,"clr":-1,"A":"left","R":[{"T":"%2450%2C001%20-%20%24100%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.189,"y":17.09,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.965,"y":17.09,"w":9.285000000000004,"clr":-1,"A":"left","R":[{"T":"%24100%2C001%20-%20%24150%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.149,"y":17.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.952,"y":17.09,"w":9.285000000000004,"clr":-1,"A":"left","R":[{"T":"%24150%2C001%20-%20%24200%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.84,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":14.543000000000006,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%20%24200%2C000%2C%20list%20value%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":17.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.71,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":43.13599999999998,"clr":-1,"A":"left","R":[{"T":"Did%20you%20use%20a%20foreign%20currency%20exchange%20rate%20to%20convert%20the%20value%20of%20the%20asset%20into%20U.S.%20dollars%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.13,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.192,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.254,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.632,"y":18.608,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.798,"y":18.608,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":24.708000000000006,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%E2%80%9D%20to%20line%205%2C%20complete%20all%20that%20apply.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.04,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(1)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.525,"y":20.04,"w":14.445000000000006,"clr":-1,"A":"left","R":[{"T":"Foreign%20currency%20in%20which%20asset%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.727,"w":6.873,"clr":-1,"A":"left","R":[{"T":"is%20denominated","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.565,"y":20.04,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(2)%20%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":40.174,"y":20.04,"w":18.076000000000008,"clr":-1,"A":"left","R":[{"T":"Foreign%20currency%20exchange%20rate%20used%20to%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":37.565,"y":20.727,"w":9.982000000000001,"clr":-1,"A":"left","R":[{"T":"convert%20to%20U.S.%20dollars","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":68.502,"y":20.04,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"(3)%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":71.006,"y":20.04,"w":18.558000000000003,"clr":-1,"A":"left","R":[{"T":"Source%20of%20exchange%20rate%20used%20if%20not%20from%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":68.502,"y":20.728,"w":20.058,"clr":-1,"A":"left","R":[{"T":"U.S.%20Treasury%20Financial%20Management%20Service","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":7.555,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":22.34,"w":52.523999999999944,"clr":-1,"A":"left","R":[{"T":"If%20asset%20reported%20on%20line%201%20is%20stock%20of%20a%20foreign%20entity%20or%20an%20interest%20in%20a%20foreign%20entity%2C%20enter%20the%20following%20information%20fo","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":90.512,"y":22.34,"w":4.964,"clr":-1,"A":"left","R":[{"T":"r%20the%20asset.","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":8.415,"y":23.09,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":23.09,"w":9.889999999999999,"clr":-1,"A":"left","R":[{"T":"Name%20of%20foreign%20entity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":23.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":23.84,"w":9.444999999999999,"clr":-1,"A":"left","R":[{"T":"Type%20of%20foreign%20entity","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.514,"y":23.84,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(1)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.941,"y":23.84,"w":5.130000000000001,"clr":-1,"A":"left","R":[{"T":"Partnership","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.839,"y":23.84,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(2)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":23.84,"w":5.333,"clr":-1,"A":"left","R":[{"T":"Corporation","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.402,"y":23.84,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(3)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":23.84,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Trust","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.252,"y":23.84,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(4)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.852,"y":23.84,"w":2.815,"clr":-1,"A":"left","R":[{"T":"Estate","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":24.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":31.691999999999997,"clr":-1,"A":"left","R":[{"T":"Mailing%20address%20of%20foreign%20entity.%20Number%2C%20street%2C%20and%20room%20or%20suite%20no.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":26.09,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":28.149,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":28.149,"w":52.54299999999994,"clr":-1,"A":"left","R":[{"T":"If%20asset%20reported%20on%20line%201%20is%20not%20stock%20of%20a%20foreign%20entity%20or%20an%20interest%20in%20a%20foreign%20entity%2C%20enter%20the%20following%20informatio","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.167,"y":28.149,"w":4.001,"clr":-1,"A":"left","R":[{"T":"n%20for%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":28.837,"w":2.667,"clr":-1,"A":"left","R":[{"T":"asset.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":29.65,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.273,"y":29.65,"w":54.159999999999926,"clr":-1,"A":"left","R":[{"T":"If%20this%20asset%20has%20more%20than%20one%20issuer%20or%20counterparty%2C%20attach%20a%20continuation%20statement%20with%20the%20same%20information%20for%20each%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":30.337,"w":22.39000000000001,"clr":-1,"A":"left","R":[{"T":"additional%20issuer%20or%20counterparty%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":31.199,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":31.199,"w":13.872000000000003,"clr":-1,"A":"left","R":[{"T":"Name%20of%20issuer%20or%20counterparty","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":31.948999999999998,"w":11.742,"clr":-1,"A":"left","R":[{"T":"Check%20if%20information%20is%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.115,"y":31.948999999999998,"w":2.685,"clr":-1,"A":"left","R":[{"T":"Issuer","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":31.948999999999998,"w":5.871,"clr":-1,"A":"left","R":[{"T":"Counterparty","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":33.449,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.449,"w":13.427000000000003,"clr":-1,"A":"left","R":[{"T":"Type%20of%20issuer%20or%20counterparty","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.952,"y":34.199,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(1)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":34.199,"w":4.260000000000001,"clr":-1,"A":"left","R":[{"T":"Individual","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.514,"y":34.199,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(2)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.115,"y":34.199,"w":5.130000000000001,"clr":-1,"A":"left","R":[{"T":"Partnership","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.839,"y":34.199,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(3)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":34.199,"w":5.333,"clr":-1,"A":"left","R":[{"T":"Corporation","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.402,"y":34.199,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(4)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":34.199,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Trust","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.489,"y":34.199,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"(5)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":90.09,"y":34.199,"w":2.815,"clr":-1,"A":"left","R":[{"T":"Estate","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":35.699,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.699,"w":15.557000000000006,"clr":-1,"A":"left","R":[{"T":"Check%20if%20issuer%20or%20counterparty%20is%20a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.59,"y":35.699,"w":5.297,"clr":-1,"A":"left","R":[{"T":"U.S.%20person","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.915,"y":35.699,"w":6.741,"clr":-1,"A":"left","R":[{"T":"Foreign%20person","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":36.449,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":36.449,"w":35.67399999999998,"clr":-1,"A":"left","R":[{"T":"Mailing%20address%20of%20issuer%20or%20counterparty.%20Number%2C%20street%2C%20and%20room%20or%20suite%20no.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":37.95,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.536,"y":39.853,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.013,"y":39.853,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8938%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":93.313,"y":39.853,"w":4.521000000000001,"clr":-1,"A":"left","R":[{"T":"%20(12-2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.172,"y":6.786,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.034,"y":6.824,"w":5.724,"clr":-1,"A":"left","R":[{"T":"US%20Zip%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.214,"y":6.778,"w":9.726000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.533,"y":6.752,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20province","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.324,"y":6.752,"w":8.782,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.759,"y":26.116,"w":5.279000000000001,"clr":-1,"A":"left","R":[{"T":"City%20or%20town","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.002,"y":26.078,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.864,"y":26.116,"w":5.724,"clr":-1,"A":"left","R":[{"T":"US%20Zip%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.044,"y":26.069,"w":9.726000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.363,"y":26.043,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20province","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.155,"y":26.043,"w":8.782,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.63,"y":37.975,"w":5.279000000000001,"clr":-1,"A":"left","R":[{"T":"City%20or%20town","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.873,"y":37.937,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.735,"y":37.975,"w":5.724,"clr":-1,"A":"left","R":[{"T":"US%20Zip%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.915,"y":37.928,"w":9.726000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.234,"y":37.903,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20province","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.026,"y":37.903,"w":8.782,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":7209,"AM":1024,"x":19.684,"y":1.508,"w":39.414,"h":0.905},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":7210,"AM":1024,"x":61.289,"y":1.591,"w":25.429,"h":0.864},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_INAME_1_","EN":0},"TI":7211,"AM":0,"x":10.987,"y":4.671,"w":72.792,"h":0.833,"TU":"Part V. Line 7. Name of financial institution in which account is maintained."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_IADDR_1_","EN":0},"TI":7212,"AM":0,"x":10.907,"y":6.184,"w":72.792,"h":0.833,"TU":"Part V. Line 8. Mailing address of financial institution in which account is maintained. Number, street, and room or suite number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_ACITY_1_","EN":0},"TI":7213,"AM":0,"x":9.812,"y":7.89,"w":16.644,"h":0.884,"TU":"Part V. Line 9. City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_IST_1_","EN":0},"TI":7214,"AM":0,"x":27.369,"y":7.923,"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":"A171_IZIP_1_","EN":0},"TI":7215,"AM":0,"x":33.732,"y":7.894,"w":12.426,"h":0.891,"TU":"U S Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_ICOUNTRY_1_","EN":0},"TI":7216,"AM":0,"x":47.145,"y":7.957,"w":17.694,"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":"A171_IFPC_1_","EN":0},"TI":7217,"AM":0,"x":66.637,"y":7.947,"w":11.05,"h":0.941,"TU":"Foreign province."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A171_IFZIP_1_","EN":0},"TI":7218,"AM":0,"x":81.196,"y":7.843,"w":12.839,"h":1.091,"TU":"Foreign postal code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A173_ASSTDESC_1_","EN":0},"TI":7219,"AM":0,"x":10.004,"y":12.574,"w":42.823,"h":0.905,"TU":"Part VI. Line 1. Description of asset."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A173_ASSTID_1_","EN":0},"TI":7220,"AM":0,"x":55.569,"y":12.567,"w":42.823,"h":0.905,"TU":"Part VI. Line 2. Identifying number or other designation."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A173_DATEACQ_1_","EN":0},"TI":7221,"AM":0,"x":82.505,"y":14.274,"w":16.026,"h":0.833,"TU":"Part VI. Line 3a. Date asset acquired during the tax year, if applicable.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A173_DATEDISP_1_","EN":0},"TI":7222,"AM":0,"x":82.483,"y":15.104,"w":16.026,"h":0.833,"TU":"Part VI. Line 3b. Date asset disposed pf during tax year, if applicable.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A173_GREATVAL_1_","EN":0},"TI":7229,"AM":0,"x":86.329,"y":17.971,"w":13.026,"h":0.833,"TU":"Line 4e. If more than $200,000, list value."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_FGNCURR2_1_","EN":0},"TI":7232,"AM":0,"x":11.282,"y":21.573,"w":25.719,"h":0.912,"TU":"(1) Foreign currency in which asset is denominated"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_FGNRATE2_1_","EN":0},"TI":7233,"AM":0,"x":37.269,"y":21.61,"w":30.669,"h":0.875,"TU":"(2) Foreign currency exchange rate used to convert to U.S. dollars"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_SOURCE2_1_","EN":0},"TI":7234,"AM":0,"x":68.207,"y":21.573,"w":30.772,"h":0.912,"TU":"(3) Source of exchange rate used if not from U.S. Treasury Financial Management Service"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_FNAME_1_","EN":0},"TI":7235,"AM":0,"x":33.763,"y":23.205,"w":61.365,"h":0.833,"TU":"Line 7a. Name of foreign entity."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_PFICADDR_1_","EN":0},"TI":7240,"AM":0,"x":11.096,"y":25.455,"w":87.966,"h":0.833,"TU":"Line 7c. Mailing address of foreign entity. Number, street, and room and suite number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_PFICCITY_1_","EN":0},"TI":7241,"AM":0,"x":10.449,"y":27.239,"w":17.57,"h":0.897,"TU":"Line 7d. City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_PFICST_1_","EN":0},"TI":7242,"AM":0,"x":28.329,"y":27.147,"w":4.929,"h":1.126,"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"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A174_PFICZIP_1_","EN":0},"TI":7243,"AM":0,"x":34.907,"y":27.207,"w":12.426,"h":0.891,"TU":"U S Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_PCOUNTRY_1_","EN":0},"TI":7244,"AM":0,"x":48.384,"y":27.271,"w":17.694,"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":"A174_PFPC_1_","EN":0},"TI":7245,"AM":0,"x":67.876,"y":27.307,"w":11.05,"h":0.941,"TU":"Foreign province."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_PFZIP_1_","EN":0},"TI":7246,"AM":0,"x":82.435,"y":27.157,"w":12.839,"h":1.091,"TU":"Foreign postal code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_ISSNAME_1_","EN":0},"TI":7247,"AM":0,"x":33.371,"y":31.356,"w":65.691,"h":0.833,"TU":"Line 8a. Name of issuer or counterparty."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_ISSADDR_1_","EN":0},"TI":7257,"AM":0,"x":11.096,"y":37.409,"w":87.966,"h":0.833,"TU":"Line 8d. Mailing address of issuer or counterparty. Number, street, and room or suite number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_ISSCITY_1_","EN":0},"TI":7258,"AM":0,"x":10.787,"y":39.063,"w":16.075,"h":0.833,"TU":"Line 8e. City or town."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_ISSST_1_","EN":0},"TI":7259,"AM":0,"x":27.519,"y":38.9,"w":4.929,"h":1.126,"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"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A174_ISSZIP_1_","EN":0},"TI":7260,"AM":0,"x":34.161,"y":38.96,"w":12.426,"h":0.891,"TU":"U S Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_SCOUNTRY_1_","EN":0},"TI":7261,"AM":0,"x":47.575,"y":39.024,"w":17.694,"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":"A174_ISFPC_1_","EN":0},"TI":7262,"AM":0,"x":67.067,"y":39.06,"w":11.05,"h":0.941,"TU":"Foreign province."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A174_ISFZIP_1_","EN":0},"TI":7263,"AM":0,"x":81.626,"y":38.91,"w":12.839,"h":1.091,"TU":"Foreign postal code."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A173_JASST_1_","EN":0},"TI":7223,"AM":0,"x":11.096,"y":15.737,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A173_NOTAX_1_","EN":0},"TI":7224,"AM":0,"x":50.632,"y":15.737,"w":1.464,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAXVAL1","EN":0},"TI":7225,"AM":0,"x":10.913,"y":17.18,"w":1.913,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAXVAL2","EN":0},"TI":7226,"AM":0,"x":28.238,"y":17.221,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAXVAL3","EN":0},"TI":7227,"AM":0,"x":50.456,"y":17.2,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MAXVAL4","EN":0},"TI":7228,"AM":0,"x":76.557,"y":17.18,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"VALMAXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CONVY","EN":0},"TI":7230,"AM":0,"x":85.5,"y":18.734,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CONVN","EN":0},"TI":7231,"AM":0,"x":93.038,"y":18.734,"w":1.631,"h":0.833,"checked":false}],"id":{"Id":"A59RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FPSHP","EN":0},"TI":7236,"AM":0,"x":35.775,"y":23.93,"w":1.912,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FCORP","EN":0},"TI":7237,"AM":0,"x":53.044,"y":23.93,"w":1.969,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FTRUST","EN":0},"TI":7238,"AM":0,"x":71.55,"y":23.971,"w":2.137,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FESTATE","EN":0},"TI":7239,"AM":0,"x":86.615,"y":23.971,"w":2.087,"h":0.833,"checked":false}],"id":{"Id":"A78RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSSUER","EN":0},"TI":7248,"AM":0,"x":35.719,"y":32.108,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COUNTER","EN":0},"TI":7249,"AM":0,"x":52.988,"y":32.108,"w":1.912,"h":0.833,"checked":false}],"id":{"Id":"A113RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSINDIV","EN":0},"TI":7250,"AM":0,"x":17.335,"y":34.348,"w":1.535,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSPSHP","EN":0},"TI":7251,"AM":0,"x":35.712,"y":34.317,"w":2.324,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSCORP","EN":0},"TI":7252,"AM":0,"x":52.913,"y":34.317,"w":2.155,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSTRUST","EN":0},"TI":7253,"AM":0,"x":71.831,"y":34.337,"w":1.513,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSEST","EN":0},"TI":7254,"AM":0,"x":87.682,"y":34.383,"w":1.732,"h":0.833,"checked":false}],"id":{"Id":"BX91RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSUS","EN":0},"TI":7255,"AM":0,"x":38.194,"y":35.831,"w":1.688,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISSFGN","EN":0},"TI":7256,"AM":0,"x":55.575,"y":35.851,"w":1.575,"h":0.833,"checked":false}],"id":{"Id":"A120RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8941.content.txt b/test/data/fd/form/F8941.content.txt new file mode 100755 index 00000000..b907e0c4 --- /dev/null +++ b/test/data/fd/form/F8941.content.txt @@ -0,0 +1,143 @@ +Form +8941 +Department of the Treasury +Internal Revenue Service +Credit for Small Employer Health Insurance Premiums +a + +Attach to your tax return. +a + +Information about Form 8941 and its separate instructions is at +www.irs.gov/form8941 +. +OMB No. 1545-2198 +20 +13 +Attachment +Sequence No. +63 +Name(s) shown on return +Identifying number +Caution. + See the instructions and complete Worksheets 1 through 7 as needed. +1a +Enter the number of individuals you employed during the tax year who are considered +employees for purposes of this credit (total from Worksheet 1, column (a)) +....... +1a +b +Enter the employer identification number (EIN) used to report employment taxes for individuals +included on line 1a if different from the identifying number listed above +........ +1b +2 +Enter the number of full-time equivalent employees (FTEs) you had for the tax year (from +Worksheet 2, line 3). If you entered 25 or more, skip lines 3 through 11 and enter -0- on line 12 +2 +3 +Average annual wages you paid for the tax year (from Worksheet 3, line 3). If you entered +$50,000 or more, skip lines 4 through 11 and enter -0- on line 12 +.......... +3 +4 +Premiums you paid during the tax year for employees included on line 1a for health insurance +coverage under a qualifying arrangement (total from Worksheet 4, column (b)) . +..... +4 +5 +Premiums you would have entered on line 4 if the total premium for each employee equaled the +average premium for the small group market in which you offered health insurance coverage +(total from Worksheet 4, column (c)) +.................... +5 +6 +Enter the +smaller + of line 4 or line 5 +.................... +6 +7 +Multiply line 6 by the applicable percentage: +• Tax-exempt small employers, multiply line 6 by 25% (.25) +• All other small employers, multiply line 6 by 35% (.35) +............. +7 +8 +If line 2 is 10 or less, enter the amount from line 7. Otherwise, enter the amount from Worksheet +5, line 6 +............................. +8 +9 +If line 3 is $25,000 or less, enter the amount from line 8. Otherwise, enter the amount from +Worksheet 6, line 7 +......................... +9 +10 +Enter the total amount of any state premium subsidies paid and any state tax credits available to +you for premiums included on line 4 (see instructions) +.............. +10 +11 +Subtract line 10 from line 4. If zero or less, enter -0- +............... +11 +12 +Enter the + smaller +of line 9 or line 11 +.................... +12 +13 + +If line 12 is zero, skip lines 13 and 14 and go to line 15. Otherwise, enter the number of +employees included on line 1a for whom you paid premiums during the tax year for health +insurance coverage under a qualifying arrangement (total from Worksheet 4, column (a)) . . . +13 +14 +Enter the number of FTEs you would have entered on line 2 if you only included employees +included on line 13 (from Worksheet 7, line 3) +................. +14 +15 +Credit for small employer health insurance premiums from partnerships, S corporations, +cooperatives, estates, and trusts (see instructions) +............... +15 +16 + + +Add lines 12 and 15. Cooperatives, estates, and trusts, go to line 17. Tax-exempt small +employers, skip lines 17 and 18 and go to line 19. Partnerships and S corporations, stop here +and report this amount on Schedule K. All others, stop here and report this amount on Form +3800, line 4h +............................ +16 +17 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust (see +instructions) +............................ +17 +18 +Cooperatives, estates, and trusts, subtract line 17 from line 16. Stop here and report this amount +on Form 3800, line 4h +......................... +18 +19 +Enter the amount you paid in 2013 for taxes considered payroll taxes for purposes of this credit +(see instructions) +.......................... +19 +20 +Tax-exempt small employers, enter the +smaller + of line 16 or line 19 here and on Form 990-T, +line 44f +.............................. +20 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 37757S +Form +8941 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8941.fields.json b/test/data/fd/form/F8941.fields.json new file mode 100755 index 00000000..4cba2b84 --- /dev/null +++ b/test/data/fd/form/F8941.fields.json @@ -0,0 +1 @@ +[{"id":"COPYNAME","type":"alpha","calc":true,"value":""},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"EMPLS1","type":"number","calc":false,"value":""},{"id":"EEIN","type":"mask","calc":false,"value":""},{"id":"FTEMPL1","type":"number","calc":false,"value":""},{"id":"AVGWGS","type":"number","calc":false,"value":""},{"id":"PREMPD","type":"number","calc":false,"value":""},{"id":"PREMPOSS","type":"number","calc":false,"value":""},{"id":"SMALLER1","type":"number","calc":true,"value":""},{"id":"EMPLPCT","type":"number","calc":false,"value":""},{"id":"LESS10","type":"number","calc":false,"value":""},{"id":"LESS25K","type":"number","calc":false,"value":""},{"id":"STSUBSID","type":"number","calc":false,"value":""},{"id":"SUBTR1","type":"number","calc":true,"value":""},{"id":"SMALLER2","type":"number","calc":true,"value":""},{"id":"EMPLS2","type":"number","calc":false,"value":""},{"id":"FTEMPL2","type":"number","calc":false,"value":""},{"id":"SEHIPCR","type":"number","calc":false,"value":""},{"id":"ADD1","type":"number","calc":true,"value":""},{"id":"COOP","type":"number","calc":true,"value":""},{"id":"SUBTR3","type":"number","calc":true,"value":""},{"id":"PAYROLL","type":"number","calc":true,"value":""},{"id":"TAXEXMPT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8941.json b/test/data/fd/form/F8941.json new file mode 100755 index 00000000..d7de3f4d --- /dev/null +++ b/test/data/fd/form/F8941.json @@ -0,0 +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":84.066,"y":6.001,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.001,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.147,"y":7.501,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":6.001,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":7.501,"w":1.125,"l":19.886},{"oc":"#221f1f","x":79.159,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":16.173},{"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":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":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":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":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":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":23.988,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":23.988,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":25.501,"w":1.125,"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":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":29.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"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},{"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":12.461},{"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":12.461},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"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":6.147,"y":41.251,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":41.251,"w":1.5,"l":39.686},{"oc":"#221f1f","x":87.822,"y":41.251,"w":1.5,"l":11.223},{"oc":"#221f1f","x":79.159,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":3.798}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":2.281},{"oc":"#221f1f","x":21.04,"y":4.485,"w":1.5,"l":1.531},{"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.555},{"oc":"#221f1f","x":82.915,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":9.735,"w":0.75,"l":1.531},{"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":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":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"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":82.915,"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":95.29,"y":15.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":17.235,"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.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":1.531},{"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.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":20.986,"w":0.75,"l":1.531},{"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":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.222,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"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":82.915,"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":95.29,"y":25.486,"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":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":82.915,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":3.031},{"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.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":35.236,"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.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"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":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":95.29,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.485,"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":82.915,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":2.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":79.202,"y":18.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":15.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":27.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":32.251,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.661,"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.661,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8941","S":-1,"TS":[0,29.0001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.413,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":23.447,"y":2.419,"w":24.019999999999996,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Small%20Employer%20Health%20Insurance%20Premiums","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.473,"y":3.7750000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.791,"y":3.8680000000000003,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.321,"y":4.837,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.639,"y":4.931,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208941%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.215,"y":4.931,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8941","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.989,"y":4.931,"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-2198","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.394,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.394,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.563,"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.072,"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":5.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"63","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.751,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.983,"y":5.751,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.177,"y":7.2509999999999994,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":7.2509999999999994,"w":31.769000000000002,"clr":-1,"A":"left","R":[{"T":"%20See%20the%20instructions%20and%20complete%20Worksheets%201%20through%207%20as%20needed.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.028,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.04,"w":38.22999999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20individuals%20you%20employed%20during%20the%20tax%20year%20who%20are%20considered","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":8.728,"w":32.821000000000005,"clr":-1,"A":"left","R":[{"T":"employees%20for%20purposes%20of%20this%20credit%20(total%20from%20Worksheet%201%2C%20column%20(a))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.683,"y":8.728,"w":11.997,"clr":-1,"A":"left","R":[{"T":".......%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":8.84,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.559,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.54,"w":42.39799999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20employer%20identification%20number%20(EIN)%20used%20to%20report%20employment%20taxes%20for%20individuals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.228,"w":31.730000000000004,"clr":-1,"A":"left","R":[{"T":"included%20on%20line%201a%20if%20different%20from%20the%20identifying%20number%20listed%20above%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":10.228,"w":13.33,"clr":-1,"A":"left","R":[{"T":"........%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.906,"y":10.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.04,"w":39.28599999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20full-time%20equivalent%20employees%20(FTEs)%20you%20had%20for%20the%20tax%20year%20(from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":11.727,"w":42.64399999999998,"clr":-1,"A":"left","R":[{"T":"Worksheet%202%2C%20line%203).%20If%20you%20entered%2025%20or%20more%2C%20skip%20lines%203%20through%2011%20and%20enter%20-0-%20on%20line%2012%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.54,"w":39.61599999999997,"clr":-1,"A":"left","R":[{"T":"Average%20annual%20wages%20you%20paid%20for%20the%20tax%20year%20(from%20Worksheet%203%2C%20line%203).%20If%20you%20entered","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.227,"w":29.068,"clr":-1,"A":"left","R":[{"T":"%2450%2C000%20or%20more%2C%20skip%20lines%204%20through%2011%20and%20enter%20-0-%20on%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":13.227,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.04,"w":41.93599999999997,"clr":-1,"A":"left","R":[{"T":"Premiums%20you%20paid%20during%20the%20tax%20year%20for%20employees%20included%20on%20line%201a%20for%20health%20insurance%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.893,"y":14.728,"w":34.821999999999996,"clr":-1,"A":"left","R":[{"T":"coverage%20under%20a%20qualifying%20arrangement%20(total%20from%20Worksheet%204%2C%20column%20(b))%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":65.756,"y":14.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":67.818,"y":14.728,"w":6.734999999999999,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":80.378,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.603000000000002,"w":42.585999999999984,"clr":-1,"A":"left","R":[{"T":"Premiums%20you%20would%20have%20entered%20on%20line%204%20if%20the%20total%20premium%20for%20each%20employee%20equaled%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":16.29,"w":41.45199999999997,"clr":-1,"A":"left","R":[{"T":"average%20premium%20for%20the%20small%20group%20market%20in%20which%20you%20offered%20health%20insurance%20coverage%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":16.977,"w":16.189000000000004,"clr":-1,"A":"left","R":[{"T":"(total%20from%20Worksheet%204%2C%20column%20(c))%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.871,"y":16.977,"w":26.65999999999999,"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":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.566,"y":17.84,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.974,"y":17.84,"w":7.909000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%204%20or%20line%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":17.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":19.690000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20the%20applicable%20percentage%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":26.323000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Tax-exempt%20small%20employers%2C%20multiply%20line%206%20by%2025%25%20(.25)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.091,"w":24.915,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20other%20small%20employers%2C%20multiply%20line%206%20by%2035%25%20(.35)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.091,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":20.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.79,"w":42.937999999999974,"clr":-1,"A":"left","R":[{"T":"If%20line%202%20is%2010%20or%20less%2C%20enter%20the%20amount%20from%20line%207.%20Otherwise%2C%20enter%20the%20amount%20from%20Worksheet%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.478,"w":3.761,"clr":-1,"A":"left","R":[{"T":"5%2C%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":21.478,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":21.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":22.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.29,"w":40.08699999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%203%20is%20%2425%2C000%20or%20less%2C%20enter%20the%20amount%20from%20line%208.%20Otherwise%2C%20enter%20the%20amount%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":22.977,"w":8.836000000000004,"clr":-1,"A":"left","R":[{"T":"Worksheet%206%2C%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.561,"y":22.977,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.79,"w":43.30799999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20any%20state%20premium%20subsidies%20paid%20and%20any%20state%20tax%20credits%20available%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":24.478,"w":24.099000000000004,"clr":-1,"A":"left","R":[{"T":"you%20for%20premiums%20included%20on%20line%204%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.261,"y":24.478,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"..............%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":24.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":23.281,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20line%204.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":25.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.136,"y":26.09,"w":4.052,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.404,"y":26.09,"w":8.187000000000003,"clr":-1,"A":"left","R":[{"T":"of%20line%209%20or%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":26.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.853,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.853,"w":38.62099999999999,"clr":-1,"A":"left","R":[{"T":"If%20line%2012%20is%20zero%2C%20skip%20lines%2013%20and%2014%20and%20go%20to%20line%2015.%20Otherwise%2C%20enter%20the%20number%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.54,"w":40.00999999999999,"clr":-1,"A":"left","R":[{"T":"employees%20included%20on%20line%201a%20for%20whom%20you%20paid%20premiums%20during%20the%20tax%20year%20for%20health","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":28.227,"w":39.655999999999985,"clr":-1,"A":"left","R":[{"T":"insurance%20coverage%20under%20a%20qualifying%20arrangement%20(total%20from%20Worksheet%204%2C%20column%20(a))%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.872,"y":28.227,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.934,"y":28.227,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.04,"w":40.80599999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20FTEs%20you%20would%20have%20entered%20on%20line%202%20if%20you%20only%20included%20employees%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.728,"w":20.395000000000003,"clr":-1,"A":"left","R":[{"T":"included%20on%20line%2013%20(from%20Worksheet%207%2C%20line%203)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":29.728,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.54,"w":39.45299999999999,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20small%20employer%20health%20insurance%20premiums%20from%20partnerships%2C%20S%20corporations%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":31.227,"w":22.42900000000001,"clr":-1,"A":"left","R":[{"T":"cooperatives%2C%20estates%2C%20and%20trusts%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.192,"y":31.227,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.165,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.165,"w":38.844,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2012%20and%2015.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%2017.%20Tax-exempt%20small","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":32.853,"w":41.91899999999998,"clr":-1,"A":"left","R":[{"T":"employers%2C%20skip%20lines%2017%20and%2018%20and%20go%20to%20line%2019.%20Partnerships%20and%20S%20corporations%2C%20stop%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":33.54,"w":41.01299999999997,"clr":-1,"A":"left","R":[{"T":"and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":34.227,"w":5.985000000000001,"clr":-1,"A":"left","R":[{"T":"3800%2C%20line%204h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.372,"y":34.227,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.04,"w":39.89399999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.728,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":35.728,"w":37.32399999999998,"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":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.54,"w":43.437999999999974,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C%20subtract%20line%2017%20from%20line%2016.%20Stop%20here%20and%20report%20this%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":37.228,"w":9.727000000000004,"clr":-1,"A":"left","R":[{"T":"on%20Form%203800%2C%20line%204h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.572,"y":37.228,"w":33.32499999999998,"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":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.04,"w":42.82299999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20you%20paid%20in%202013%20for%20taxes%20considered%20payroll%20taxes%20for%20purposes%20of%20this%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.728,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":38.728,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.54,"w":17.708000000000006,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20small%20employers%2C%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.171,"y":39.54,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.757,"y":39.54,"w":20.433000000000007,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2016%20or%20line%2019%20here%20and%20on%20Form%20990-T%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.228,"w":3.223,"clr":-1,"A":"left","R":[{"T":"line%2044f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":40.228,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.108,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.72,"y":41.108,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037757S","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.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":41.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8941","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":41.072,"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":"COPYNAME","EN":0},"TI":7264,"AM":1024,"x":47.493,"y":3.378,"w":9.977,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":7265,"AM":1024,"x":6.229,"y":6.603,"w":72.848,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":7266,"AM":1024,"x":80.243,"y":6.631,"w":18.587,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLS1","EN":0},"TI":7267,"AM":0,"x":83.194,"y":8.942,"w":15.875,"h":0.833,"TU":"Line 1a. Enter the number of individuals you employed during the tax year who are considered employees for purposes of this credit (total from Worksheet 1, column (a))."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EEIN","EN":0},"TI":7268,"AM":0,"x":82.961,"y":10.435,"w":15.964,"h":0.833,"TU":"Line 1b. Enter the employer identification number (EIN) used to report employment taxes for individuals included on line 1a if different from the identifying number listed above.","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTEMPL1","EN":0},"TI":7269,"AM":0,"x":83.131,"y":11.878,"w":15.964,"h":0.833,"TU":"Line 2. Enter the number of full-time equivalent employees (FTEs) you had for the tax year (from Worksheet 2, line 3). If you entered 25 or more, skip lines 3 through 11 and enter zero on line 12."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AVGWGS","EN":0},"TI":7270,"AM":0,"x":83.059,"y":13.32,"w":12.066,"h":0.884,"TU":"Line 3. Average annual wages you paid for the tax year (from Worksheet 3, line 3). If you entered $50,000 or more, skip lines 4 through 11 and enter zero on line 12."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREMPD","EN":0},"TI":7271,"AM":0,"x":83.152,"y":14.851,"w":12.066,"h":0.884,"TU":"Line 4. Premiums you paid during the tax year for employees included on line 1a for health insurance coverage under a qualifying arrangement (total from Worksheet 4, column (b))."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREMPOSS","EN":0},"TI":7272,"AM":0,"x":83.039,"y":16.988,"w":12.066,"h":0.884,"TU":"Line 5. Premiums you would have entered on line 4 if the total premium for each employee equaled the average premium for the small group market in which you offered health insurance coverage (total from Worksheet 4, column (c))."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER1","EN":0},"TI":7273,"AM":1024,"x":83.094,"y":17.907,"w":12.066,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLPCT","EN":0},"TI":7274,"AM":0,"x":83.119,"y":20.054,"w":11.983,"h":0.833,"TU":"Line 7. Multiply line 6 by the applicable percentage: tax-exempt small employers use 25% (.25). All other small employers, use 35% (.35)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESS10","EN":0},"TI":7275,"AM":0,"x":83.098,"y":21.694,"w":12.024,"h":0.833,"TU":"Line 8. If line 2 is 10 or less, enter the amount from line 7. Otherwise, enter the amount from Worksheet 5, line 6."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESS25K","EN":0},"TI":7276,"AM":0,"x":83.098,"y":23.166,"w":12.024,"h":0.833,"TU":"Line 9. If line 3 is $25,000 or less, enter the amount from line 8. Otherwise, enterr the amount from Worksheet 6, line 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STSUBSID","EN":0},"TI":7277,"AM":0,"x":83.098,"y":24.706,"w":12.024,"h":0.833,"TU":"Line 10. Enter the total amount of any state premium subsidies paid and any state tax credits available to you for premiums included on line 4 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR1","EN":0},"TI":7278,"AM":1024,"x":83.016,"y":25.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER2","EN":0},"TI":7279,"AM":1024,"x":83.016,"y":26.26,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLS2","EN":0},"TI":7280,"AM":0,"x":83.119,"y":28.333,"w":12.136,"h":0.902,"TU":"Line 13. If line 12 is zero, skip lines 13 and 14 and go to line 15. Otherwise, enter the number of employees included on line 1a for whom you paid premiums during the tax year for health insurance coverage under a qualifying arrangement (total from Worksheet 4, column (a))."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTEMPL2","EN":0},"TI":7281,"AM":0,"x":83.098,"y":30.04,"w":12.177,"h":0.833,"TU":"Line 14. Enter the number of FTEs you would have entered on line 2 if you only included employees included on line 13 (from Worksheet 7, line 3)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEHIPCR","EN":0},"TI":7282,"AM":0,"x":83.098,"y":31.471,"w":12.024,"h":0.833,"TU":"Line 15. Credit for small employer health insurance premiums from partnerships, S corporations, cooperatives, estates, and trusts (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":7283,"AM":1024,"x":83.16,"y":34.409,"w":11.901,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COOP","EN":0},"TI":7284,"AM":1024,"x":83.098,"y":35.971,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR3","EN":0},"TI":7285,"AM":1024,"x":83.098,"y":37.444,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYROLL","EN":0},"TI":7286,"AM":1024,"x":83.098,"y":38.944,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXEXMPT","EN":0},"TI":7287,"AM":1024,"x":83.098,"y":40.416,"w":12.024,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8941S.content.txt b/test/data/fd/form/F8941S.content.txt new file mode 100755 index 00000000..b907e0c4 --- /dev/null +++ b/test/data/fd/form/F8941S.content.txt @@ -0,0 +1,143 @@ +Form +8941 +Department of the Treasury +Internal Revenue Service +Credit for Small Employer Health Insurance Premiums +a + +Attach to your tax return. +a + +Information about Form 8941 and its separate instructions is at +www.irs.gov/form8941 +. +OMB No. 1545-2198 +20 +13 +Attachment +Sequence No. +63 +Name(s) shown on return +Identifying number +Caution. + See the instructions and complete Worksheets 1 through 7 as needed. +1a +Enter the number of individuals you employed during the tax year who are considered +employees for purposes of this credit (total from Worksheet 1, column (a)) +....... +1a +b +Enter the employer identification number (EIN) used to report employment taxes for individuals +included on line 1a if different from the identifying number listed above +........ +1b +2 +Enter the number of full-time equivalent employees (FTEs) you had for the tax year (from +Worksheet 2, line 3). If you entered 25 or more, skip lines 3 through 11 and enter -0- on line 12 +2 +3 +Average annual wages you paid for the tax year (from Worksheet 3, line 3). If you entered +$50,000 or more, skip lines 4 through 11 and enter -0- on line 12 +.......... +3 +4 +Premiums you paid during the tax year for employees included on line 1a for health insurance +coverage under a qualifying arrangement (total from Worksheet 4, column (b)) . +..... +4 +5 +Premiums you would have entered on line 4 if the total premium for each employee equaled the +average premium for the small group market in which you offered health insurance coverage +(total from Worksheet 4, column (c)) +.................... +5 +6 +Enter the +smaller + of line 4 or line 5 +.................... +6 +7 +Multiply line 6 by the applicable percentage: +• Tax-exempt small employers, multiply line 6 by 25% (.25) +• All other small employers, multiply line 6 by 35% (.35) +............. +7 +8 +If line 2 is 10 or less, enter the amount from line 7. Otherwise, enter the amount from Worksheet +5, line 6 +............................. +8 +9 +If line 3 is $25,000 or less, enter the amount from line 8. Otherwise, enter the amount from +Worksheet 6, line 7 +......................... +9 +10 +Enter the total amount of any state premium subsidies paid and any state tax credits available to +you for premiums included on line 4 (see instructions) +.............. +10 +11 +Subtract line 10 from line 4. If zero or less, enter -0- +............... +11 +12 +Enter the + smaller +of line 9 or line 11 +.................... +12 +13 + +If line 12 is zero, skip lines 13 and 14 and go to line 15. Otherwise, enter the number of +employees included on line 1a for whom you paid premiums during the tax year for health +insurance coverage under a qualifying arrangement (total from Worksheet 4, column (a)) . . . +13 +14 +Enter the number of FTEs you would have entered on line 2 if you only included employees +included on line 13 (from Worksheet 7, line 3) +................. +14 +15 +Credit for small employer health insurance premiums from partnerships, S corporations, +cooperatives, estates, and trusts (see instructions) +............... +15 +16 + + +Add lines 12 and 15. Cooperatives, estates, and trusts, go to line 17. Tax-exempt small +employers, skip lines 17 and 18 and go to line 19. Partnerships and S corporations, stop here +and report this amount on Schedule K. All others, stop here and report this amount on Form +3800, line 4h +............................ +16 +17 +Amount allocated to patrons of the cooperative or beneficiaries of the estate or trust (see +instructions) +............................ +17 +18 +Cooperatives, estates, and trusts, subtract line 17 from line 16. Stop here and report this amount +on Form 3800, line 4h +......................... +18 +19 +Enter the amount you paid in 2013 for taxes considered payroll taxes for purposes of this credit +(see instructions) +.......................... +19 +20 +Tax-exempt small employers, enter the +smaller + of line 16 or line 19 here and on Form 990-T, +line 44f +.............................. +20 +For Paperwork Reduction Act Notice, see separate instructions. +Cat. No. 37757S +Form +8941 + (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8941S.fields.json b/test/data/fd/form/F8941S.fields.json new file mode 100755 index 00000000..4cba2b84 --- /dev/null +++ b/test/data/fd/form/F8941S.fields.json @@ -0,0 +1 @@ +[{"id":"COPYNAME","type":"alpha","calc":true,"value":""},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"EMPLS1","type":"number","calc":false,"value":""},{"id":"EEIN","type":"mask","calc":false,"value":""},{"id":"FTEMPL1","type":"number","calc":false,"value":""},{"id":"AVGWGS","type":"number","calc":false,"value":""},{"id":"PREMPD","type":"number","calc":false,"value":""},{"id":"PREMPOSS","type":"number","calc":false,"value":""},{"id":"SMALLER1","type":"number","calc":true,"value":""},{"id":"EMPLPCT","type":"number","calc":false,"value":""},{"id":"LESS10","type":"number","calc":false,"value":""},{"id":"LESS25K","type":"number","calc":false,"value":""},{"id":"STSUBSID","type":"number","calc":false,"value":""},{"id":"SUBTR1","type":"number","calc":true,"value":""},{"id":"SMALLER2","type":"number","calc":true,"value":""},{"id":"EMPLS2","type":"number","calc":false,"value":""},{"id":"FTEMPL2","type":"number","calc":false,"value":""},{"id":"SEHIPCR","type":"number","calc":false,"value":""},{"id":"ADD1","type":"number","calc":true,"value":""},{"id":"COOP","type":"number","calc":true,"value":""},{"id":"SUBTR3","type":"number","calc":true,"value":""},{"id":"PAYROLL","type":"number","calc":true,"value":""},{"id":"TAXEXMPT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8941S.json b/test/data/fd/form/F8941S.json new file mode 100755 index 00000000..46c6b91c --- /dev/null +++ b/test/data/fd/form/F8941S.json @@ -0,0 +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":84.066,"y":6.001,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.001,"w":1.5,"l":73.099},{"oc":"#221f1f","x":6.147,"y":7.501,"w":1.125,"l":73.099},{"oc":"#221f1f","x":79.159,"y":6.001,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":7.501,"w":1.125,"l":19.886},{"oc":"#221f1f","x":79.159,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":12.751,"w":0.75,"l":16.173},{"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":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":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":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":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":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":23.988,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":23.988,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":25.501,"w":1.125,"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":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":29.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":32.251,"w":0.75,"l":3.798},{"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},{"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":12.461},{"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":12.461},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"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":6.147,"y":41.251,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":41.251,"w":1.5,"l":39.686},{"oc":"#221f1f","x":87.822,"y":41.251,"w":1.5,"l":11.223},{"oc":"#221f1f","x":79.159,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":3.798}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":2.281},{"oc":"#221f1f","x":21.04,"y":4.485,"w":1.5,"l":1.531},{"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.555},{"oc":"#221f1f","x":82.915,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":9.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":9.735,"w":0.75,"l":1.531},{"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":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":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"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":82.915,"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":95.29,"y":15.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":17.235,"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.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":1.531},{"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.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":20.986,"w":0.75,"l":1.531},{"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":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.222,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"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":82.915,"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":95.29,"y":25.486,"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":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":82.915,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":3.031},{"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.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":35.236,"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.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781},{"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":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"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":95.29,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.485,"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":82.915,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":2.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":79.202,"y":18.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":15.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":27.001,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":32.251,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.661,"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.661,"w":2.08,"clr":-1,"A":"left","R":[{"T":"8941","S":-1,"TS":[0,29.0001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.413,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":23.447,"y":2.419,"w":24.019999999999996,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Small%20Employer%20Health%20Insurance%20Premiums","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":43.473,"y":3.7750000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.791,"y":3.8680000000000003,"w":11.948,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.321,"y":4.837,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.639,"y":4.931,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208941%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.215,"y":4.931,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform8941","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.989,"y":4.931,"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-2198","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.394,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.394,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.563,"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.072,"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":5.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"63","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.751,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.983,"y":5.751,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.177,"y":7.2509999999999994,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":7.2509999999999994,"w":31.769000000000002,"clr":-1,"A":"left","R":[{"T":"%20See%20the%20instructions%20and%20complete%20Worksheets%201%20through%207%20as%20needed.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.028,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.04,"w":38.22999999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20individuals%20you%20employed%20during%20the%20tax%20year%20who%20are%20considered","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":8.728,"w":32.821000000000005,"clr":-1,"A":"left","R":[{"T":"employees%20for%20purposes%20of%20this%20credit%20(total%20from%20Worksheet%201%2C%20column%20(a))","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.683,"y":8.728,"w":11.997,"clr":-1,"A":"left","R":[{"T":".......%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":8.84,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.559,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.54,"w":42.39799999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20employer%20identification%20number%20(EIN)%20used%20to%20report%20employment%20taxes%20for%20individuals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.228,"w":31.730000000000004,"clr":-1,"A":"left","R":[{"T":"included%20on%20line%201a%20if%20different%20from%20the%20identifying%20number%20listed%20above%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":10.228,"w":13.33,"clr":-1,"A":"left","R":[{"T":"........%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.906,"y":10.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.04,"w":39.28599999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20full-time%20equivalent%20employees%20(FTEs)%20you%20had%20for%20the%20tax%20year%20(from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":11.727,"w":42.64399999999998,"clr":-1,"A":"left","R":[{"T":"Worksheet%202%2C%20line%203).%20If%20you%20entered%2025%20or%20more%2C%20skip%20lines%203%20through%2011%20and%20enter%20-0-%20on%20line%2012%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":11.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.528,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.54,"w":39.61599999999997,"clr":-1,"A":"left","R":[{"T":"Average%20annual%20wages%20you%20paid%20for%20the%20tax%20year%20(from%20Worksheet%203%2C%20line%203).%20If%20you%20entered","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.227,"w":29.068,"clr":-1,"A":"left","R":[{"T":"%2450%2C000%20or%20more%2C%20skip%20lines%204%20through%2011%20and%20enter%20-0-%20on%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":13.227,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":13.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.028,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.04,"w":41.93599999999997,"clr":-1,"A":"left","R":[{"T":"Premiums%20you%20paid%20during%20the%20tax%20year%20for%20employees%20included%20on%20line%201a%20for%20health%20insurance%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.893,"y":14.728,"w":34.821999999999996,"clr":-1,"A":"left","R":[{"T":"coverage%20under%20a%20qualifying%20arrangement%20(total%20from%20Worksheet%204%2C%20column%20(b))%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":65.756,"y":14.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":67.818,"y":14.728,"w":6.734999999999999,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":80.378,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.603000000000002,"w":42.585999999999984,"clr":-1,"A":"left","R":[{"T":"Premiums%20you%20would%20have%20entered%20on%20line%204%20if%20the%20total%20premium%20for%20each%20employee%20equaled%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":16.29,"w":41.45199999999997,"clr":-1,"A":"left","R":[{"T":"average%20premium%20for%20the%20small%20group%20market%20in%20which%20you%20offered%20health%20insurance%20coverage%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":16.977,"w":16.189000000000004,"clr":-1,"A":"left","R":[{"T":"(total%20from%20Worksheet%204%2C%20column%20(c))%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.871,"y":16.977,"w":26.65999999999999,"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":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.566,"y":17.84,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.974,"y":17.84,"w":7.909000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%204%20or%20line%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":17.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":18.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":19.690000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20the%20applicable%20percentage%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":26.323000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Tax-exempt%20small%20employers%2C%20multiply%20line%206%20by%2025%25%20(.25)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.091,"w":24.915,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20other%20small%20employers%2C%20multiply%20line%206%20by%2035%25%20(.35)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.091,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":20.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":20.778,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.79,"w":42.937999999999974,"clr":-1,"A":"left","R":[{"T":"If%20line%202%20is%2010%20or%20less%2C%20enter%20the%20amount%20from%20line%207.%20Otherwise%2C%20enter%20the%20amount%20from%20Worksheet%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.478,"w":3.761,"clr":-1,"A":"left","R":[{"T":"5%2C%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":21.478,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":21.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":22.278,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.29,"w":40.08699999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%203%20is%20%2425%2C000%20or%20less%2C%20enter%20the%20amount%20from%20line%208.%20Otherwise%2C%20enter%20the%20amount%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":22.977,"w":8.836000000000004,"clr":-1,"A":"left","R":[{"T":"Worksheet%206%2C%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.561,"y":22.977,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.79,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.79,"w":43.30799999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20any%20state%20premium%20subsidies%20paid%20and%20any%20state%20tax%20credits%20available%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":24.478,"w":24.099000000000004,"clr":-1,"A":"left","R":[{"T":"you%20for%20premiums%20included%20on%20line%204%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.261,"y":24.478,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"..............%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":24.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":23.281,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20line%204.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":25.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":25.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.09,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.136,"y":26.09,"w":4.052,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.404,"y":26.09,"w":8.187000000000003,"clr":-1,"A":"left","R":[{"T":"of%20line%209%20or%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":26.09,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":26.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.853,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.853,"w":38.62099999999999,"clr":-1,"A":"left","R":[{"T":"If%20line%2012%20is%20zero%2C%20skip%20lines%2013%20and%2014%20and%20go%20to%20line%2015.%20Otherwise%2C%20enter%20the%20number%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":27.54,"w":40.00999999999999,"clr":-1,"A":"left","R":[{"T":"employees%20included%20on%20line%201a%20for%20whom%20you%20paid%20premiums%20during%20the%20tax%20year%20for%20health","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":28.227,"w":39.655999999999985,"clr":-1,"A":"left","R":[{"T":"insurance%20coverage%20under%20a%20qualifying%20arrangement%20(total%20from%20Worksheet%204%2C%20column%20(a))%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.872,"y":28.227,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.934,"y":28.227,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":28.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.04,"w":40.80599999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20FTEs%20you%20would%20have%20entered%20on%20line%202%20if%20you%20only%20included%20employees%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.728,"w":20.395000000000003,"clr":-1,"A":"left","R":[{"T":"included%20on%20line%2013%20(from%20Worksheet%207%2C%20line%203)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":29.728,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":30.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.54,"w":39.45299999999999,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20small%20employer%20health%20insurance%20premiums%20from%20partnerships%2C%20S%20corporations%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":31.227,"w":22.42900000000001,"clr":-1,"A":"left","R":[{"T":"cooperatives%2C%20estates%2C%20and%20trusts%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.192,"y":31.227,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.165,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.165,"w":38.844,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2012%20and%2015.%20Cooperatives%2C%20estates%2C%20and%20trusts%2C%20go%20to%20line%2017.%20Tax-exempt%20small","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":32.853,"w":41.91899999999998,"clr":-1,"A":"left","R":[{"T":"employers%2C%20skip%20lines%2017%20and%2018%20and%20go%20to%20line%2019.%20Partnerships%20and%20S%20corporations%2C%20stop%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.877,"y":33.54,"w":41.01299999999997,"clr":-1,"A":"left","R":[{"T":"and%20report%20this%20amount%20on%20Schedule%20K.%20All%20others%2C%20stop%20here%20and%20report%20this%20amount%20on%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":34.227,"w":5.985000000000001,"clr":-1,"A":"left","R":[{"T":"3800%2C%20line%204h%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.372,"y":34.227,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":34.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.04,"w":39.89399999999997,"clr":-1,"A":"left","R":[{"T":"Amount%20allocated%20to%20patrons%20of%20the%20cooperative%20or%20beneficiaries%20of%20the%20estate%20or%20trust%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.728,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":35.728,"w":37.32399999999998,"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":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.54,"w":43.437999999999974,"clr":-1,"A":"left","R":[{"T":"Cooperatives%2C%20estates%2C%20and%20trusts%2C%20subtract%20line%2017%20from%20line%2016.%20Stop%20here%20and%20report%20this%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":37.228,"w":9.727000000000004,"clr":-1,"A":"left","R":[{"T":"on%20Form%203800%2C%20line%204h","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.572,"y":37.228,"w":33.32499999999998,"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":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.04,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.04,"w":42.82299999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20you%20paid%20in%202013%20for%20taxes%20considered%20payroll%20taxes%20for%20purposes%20of%20this%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.728,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.504,"y":38.728,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.54,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.54,"w":17.708000000000006,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20small%20employers%2C%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.171,"y":39.54,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.757,"y":39.54,"w":20.433000000000007,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2016%20or%20line%2019%20here%20and%20on%20Form%20990-T%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.228,"w":3.223,"clr":-1,"A":"left","R":[{"T":"line%2044f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":40.228,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":40.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.108,"w":30.424000000000007,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.72,"y":41.108,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037757S","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":41.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":41.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8941","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":41.072,"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":"COPYNAME","EN":0},"TI":7288,"AM":1024,"x":47.493,"y":3.378,"w":9.977,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":7289,"AM":1024,"x":6.229,"y":6.603,"w":72.848,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":7290,"AM":1024,"x":80.243,"y":6.631,"w":18.587,"h":0.833,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLS1","EN":0},"TI":7291,"AM":0,"x":83.194,"y":8.942,"w":15.875,"h":0.833,"TU":"Line 1a. Enter the number of individuals you employed during the tax year who are considered employees for purposes of this credit (total from Worksheet 1, column (a))."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EEIN","EN":0},"TI":7292,"AM":0,"x":82.961,"y":10.435,"w":15.964,"h":0.833,"TU":"Line 1b. Enter the employer identification number (EIN) used to report employment taxes for individuals included on line 1a if different from the identifying number listed above.","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTEMPL1","EN":0},"TI":7293,"AM":0,"x":83.131,"y":11.878,"w":15.964,"h":0.833,"TU":"Line 2. Enter the number of full-time equivalent employees (FTEs) you had for the tax year (from Worksheet 2, line 3). If you entered 25 or more, skip lines 3 through 11 and enter zero on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AVGWGS","EN":0},"TI":7294,"AM":0,"x":83.059,"y":13.32,"w":12.066,"h":0.884,"TU":"Line 3. Average annual wages you paid for the tax year (from Worksheet 3, line 3). If you entered $50,000 or more, skip lines 4 through 11 and enter zero on line 12."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREMPD","EN":0},"TI":7295,"AM":0,"x":83.152,"y":14.851,"w":12.066,"h":0.884,"TU":"Line 4. Premiums you paid during the tax year for employees included on line 1a for health insurance coverage under a qualifying arrangement (total from Worksheet 4, column (b))."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREMPOSS","EN":0},"TI":7296,"AM":0,"x":83.039,"y":16.988,"w":12.066,"h":0.884,"TU":"Line 5. Premiums you would have entered on line 4 if the total premium for each employee equaled the average premium for the small group market in which you offered health insurance coverage (total from Worksheet 4, column (c))."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER1","EN":0},"TI":7297,"AM":1024,"x":83.094,"y":17.907,"w":12.066,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLPCT","EN":0},"TI":7298,"AM":0,"x":83.119,"y":20.118,"w":11.983,"h":0.833,"TU":"Line 7. Multiply line 6 by the applicable percentage: tax-exempt small employers use 25% (.25). All other small employers, use 35% (.35)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESS10","EN":0},"TI":7299,"AM":0,"x":83.098,"y":21.694,"w":12.024,"h":0.833,"TU":"Line 8. If line 2 is 10 or less, enter the amount from line 7. Otherwise, enter the amount from Worksheet 5, line 6."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESS25K","EN":0},"TI":7300,"AM":0,"x":83.098,"y":23.166,"w":12.024,"h":0.833,"TU":"Line 9. If line 3 is $25,000 or less, enter the amount from line 8. Otherwise, enterr the amount from Worksheet 6, line 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STSUBSID","EN":0},"TI":7301,"AM":0,"x":83.098,"y":24.706,"w":12.024,"h":0.833,"TU":"Line 10. Enter the total amount of any state premium subsidies paid and any state tax credits available to you for premiums included on line 4 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR1","EN":0},"TI":7302,"AM":1024,"x":83.016,"y":25.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLER2","EN":0},"TI":7303,"AM":1024,"x":83.016,"y":26.26,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLS2","EN":0},"TI":7304,"AM":0,"x":83.119,"y":28.333,"w":12.136,"h":0.902,"TU":"Line 13. If line 12 is zero, skip lines 13 and 14 and go to line 15. Otherwise, enter the number of employees included on line 1a for whom you paid premiums during the tax year for health insurance coverage under a qualifying arrangement (total from Worksheet 4, column (a))."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTEMPL2","EN":0},"TI":7305,"AM":0,"x":83.098,"y":30.04,"w":12.177,"h":0.833,"TU":"Line 14. Enter the number of FTEs you would have entered on line 2 if you only included employees included on line 13 (from Worksheet 7, line 3)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEHIPCR","EN":0},"TI":7306,"AM":0,"x":83.098,"y":31.471,"w":12.024,"h":0.833,"TU":"Line 15. Credit for small employer health insurance premiums from partnerships, S corporations, cooperatives, estates, and trusts (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD1","EN":0},"TI":7307,"AM":1024,"x":83.16,"y":34.409,"w":11.901,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COOP","EN":0},"TI":7308,"AM":1024,"x":83.098,"y":35.971,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTR3","EN":0},"TI":7309,"AM":1024,"x":83.098,"y":37.444,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYROLL","EN":0},"TI":7310,"AM":1024,"x":83.098,"y":38.944,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXEXMPT","EN":0},"TI":7311,"AM":1024,"x":83.098,"y":40.416,"w":12.024,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8949LT.content.txt b/test/data/fd/form/F8949LT.content.txt new file mode 100755 index 00000000..7946306e --- /dev/null +++ b/test/data/fd/form/F8949LT.content.txt @@ -0,0 +1,118 @@ +Form 8949 (2013) +Attachment Sequence No. +12A +Page +2 +Name(s) shown on return. + +(Name and SSN or taxpayer identification no. not required if shown on other side.) +Social security number or taxpayer identification number +Part II +Long-Term. + Transactions involving capital assets you held more than one year are long term. For short-term +transactions, see page 1. +Note. + You may aggregate all long-term transactions reported on Form(s) 1099-B showing basis was reported +to the IRS and for which no adjustments or codes are required. Enter the total directly on Schedule D, line 8a; +you are not required to report these transactions on Form 8949 (see instructions). +If more than one box applies for your long-term transactions, complete +more of the boxes, complete as many forms with the same box checked as you need. +(D) + Long-term transactions reported on Form(s) 1099-B showing basis was reported to the IRS (see +Note + above) +(E) + Long-term transactions reported on Form(s) 1099-B showing basis was +not + reported to the IRS +(F) + Long-term transactions not reported to you on Form 1099-B +1 +(a) +Description of property +(Example: 100 sh. XYZ Co.) +(b) + +Date acquired + +(Mo., day, yr.) +(c) + +Date sold or + +disposed + +(Mo., day, yr.) +(d) +Proceeds +(sales price) +(see instructions) +(e) +Cost or other basis. +See the +Note + below +and see + Column (e) + +in the separate +instructions +Adjustment, if any, to gain or loss +. + +If you enter an amount in column (g), + enter a code in column (f). +See the separate instructions. + +(f) +Code(s) from +instructions +(g) +Amount of +adjustment +(h) +Gain or (loss). +Subtract column (e) +from column (d) and +combine the result +with column (g) + + + + +2 +Totals. +Add the amounts in columns (d), (e), (g), and (h) (subtract +negative amounts). Enter each total here and include on your +Schedule D, +line 8b +(if +Box D + above is checked), +line 9 + (if +Box E + +above is checked), or +line 10 + (if +Box F + above is checked) + +a +Note. +adjustment in column (g) to correct the basis. See +Column (g) + in the separate instructions for how to figure the amount of the adjustment. +Form + +8949 + +(2013) +Most brokers issue their own substitute statement instead of using Form 1099-B. They also may provide basis information (usually your cost) to you on +the statement even if it is not reported to the IRS. Before you check Box D, E, or F below, determine whether you received any statement(s) and, if so, +the transactions for which basis was reported to the IRS. Brokers are required to report basis to the IRS for most stock you bought in 2011 or later. +You must check Box D, E, or F below. Check only one box. +a separate Form 8949, page 2, for each applicable box. If you have more long-term transactions than will fit on this page for one or + If you checked Box D above but the basis reported to the IRS was incorrect, enter in column (e) the basis as reported to the IRS, and enter an +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8949LT.fields.json b/test/data/fd/form/F8949LT.fields.json new file mode 100755 index 00000000..726e4fac --- /dev/null +++ b/test/data/fd/form/F8949LT.fields.json @@ -0,0 +1 @@ +[{"id":"BOXESRB","type":"radio","calc":false,"value":"LTBOXA"},{"id":"BOXESRB","type":"radio","calc":false,"value":"LTBOXB"},{"id":"BOXESRB","type":"radio","calc":false,"value":"LTBOXC"},{"id":"COPYID","type":"alpha","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A1_L3A_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_1_","type":"date","calc":false,"value":""},{"id":"A1_L3D_1_","type":"date","calc":false,"value":""},{"id":"A1_L3E_1_","type":"number","calc":false,"value":""},{"id":"A1_L3F_1_","type":"number","calc":false,"value":""},{"id":"A1_L3B_1_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_1_","type":"number","calc":false,"value":""},{"id":"A1_L3H_1_","type":"number","calc":true,"value":""},{"id":"A1_L3A_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_2_","type":"date","calc":false,"value":""},{"id":"A1_L3D_2_","type":"date","calc":false,"value":""},{"id":"A1_L3E_2_","type":"number","calc":false,"value":""},{"id":"A1_L3F_2_","type":"number","calc":false,"value":""},{"id":"A1_L3B_2_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_2_","type":"number","calc":false,"value":""},{"id":"A1_L3H_2_","type":"number","calc":true,"value":""},{"id":"A1_L3A_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_3_","type":"date","calc":false,"value":""},{"id":"A1_L3D_3_","type":"date","calc":false,"value":""},{"id":"A1_L3E_3_","type":"number","calc":false,"value":""},{"id":"A1_L3F_3_","type":"number","calc":false,"value":""},{"id":"A1_L3B_3_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_3_","type":"number","calc":false,"value":""},{"id":"A1_L3H_3_","type":"number","calc":true,"value":""},{"id":"A1_L3A_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_4_","type":"date","calc":false,"value":""},{"id":"A1_L3D_4_","type":"date","calc":false,"value":""},{"id":"A1_L3E_4_","type":"number","calc":false,"value":""},{"id":"A1_L3F_4_","type":"number","calc":false,"value":""},{"id":"A1_L3B_4_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_4_","type":"number","calc":false,"value":""},{"id":"A1_L3H_4_","type":"number","calc":true,"value":""},{"id":"A1_L3A_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_5_","type":"date","calc":false,"value":""},{"id":"A1_L3D_5_","type":"date","calc":false,"value":""},{"id":"A1_L3E_5_","type":"number","calc":false,"value":""},{"id":"A1_L3F_5_","type":"number","calc":false,"value":""},{"id":"A1_L3B_5_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_5_","type":"number","calc":false,"value":""},{"id":"A1_L3H_5_","type":"number","calc":true,"value":""},{"id":"A1_L3A_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_6_","type":"date","calc":false,"value":""},{"id":"A1_L3D_6_","type":"date","calc":false,"value":""},{"id":"A1_L3E_6_","type":"number","calc":false,"value":""},{"id":"A1_L3F_6_","type":"number","calc":false,"value":""},{"id":"A1_L3B_6_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_6_","type":"number","calc":false,"value":""},{"id":"A1_L3H_6_","type":"number","calc":true,"value":""},{"id":"A1_L3A_7_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_7_","type":"date","calc":false,"value":""},{"id":"A1_L3D_7_","type":"date","calc":false,"value":""},{"id":"A1_L3E_7_","type":"number","calc":false,"value":""},{"id":"A1_L3F_7_","type":"number","calc":false,"value":""},{"id":"A1_L3B_7_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_7_","type":"number","calc":false,"value":""},{"id":"A1_L3H_7_","type":"number","calc":true,"value":""},{"id":"A1_L3A_8_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_8_","type":"date","calc":false,"value":""},{"id":"A1_L3D_8_","type":"date","calc":false,"value":""},{"id":"A1_L3E_8_","type":"number","calc":false,"value":""},{"id":"A1_L3F_8_","type":"number","calc":false,"value":""},{"id":"A1_L3B_8_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_8_","type":"number","calc":false,"value":""},{"id":"A1_L3H_8_","type":"number","calc":true,"value":""},{"id":"A1_L3A_9_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_9_","type":"date","calc":false,"value":""},{"id":"A1_L3D_9_","type":"date","calc":false,"value":""},{"id":"A1_L3E_9_","type":"number","calc":false,"value":""},{"id":"A1_L3F_9_","type":"number","calc":false,"value":""},{"id":"A1_L3B_9_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_9_","type":"number","calc":false,"value":""},{"id":"A1_L3H_9_","type":"number","calc":true,"value":""},{"id":"A1_L3A_10_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_10_","type":"date","calc":false,"value":""},{"id":"A1_L3D_10_","type":"date","calc":false,"value":""},{"id":"A1_L3E_10_","type":"number","calc":false,"value":""},{"id":"A1_L3F_10_","type":"number","calc":false,"value":""},{"id":"A1_L3B_10_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_10_","type":"number","calc":false,"value":""},{"id":"A1_L3H_10_","type":"number","calc":true,"value":""},{"id":"A1_L3A_11_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_11_","type":"date","calc":false,"value":""},{"id":"A1_L3D_11_","type":"date","calc":false,"value":""},{"id":"A1_L3E_11_","type":"number","calc":false,"value":""},{"id":"A1_L3F_11_","type":"number","calc":false,"value":""},{"id":"A1_L3B_11_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_11_","type":"number","calc":false,"value":""},{"id":"A1_L3H_11_","type":"number","calc":true,"value":""},{"id":"A1_L3A_12_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_12_","type":"date","calc":false,"value":""},{"id":"A1_L3D_12_","type":"date","calc":false,"value":""},{"id":"A1_L3E_12_","type":"number","calc":false,"value":""},{"id":"A1_L3F_12_","type":"number","calc":false,"value":""},{"id":"A1_L3B_12_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_12_","type":"number","calc":false,"value":""},{"id":"A1_L3H_12_","type":"number","calc":true,"value":""},{"id":"A1_L3A_13_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_13_","type":"date","calc":false,"value":""},{"id":"A1_L3D_13_","type":"date","calc":false,"value":""},{"id":"A1_L3E_13_","type":"number","calc":false,"value":""},{"id":"A1_L3F_13_","type":"number","calc":false,"value":""},{"id":"A1_L3B_13_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_13_","type":"number","calc":false,"value":""},{"id":"A1_L3H_13_","type":"number","calc":true,"value":""},{"id":"A1_L3A_14_","type":"alpha","calc":false,"value":""},{"id":"A1_L3C_14_","type":"date","calc":false,"value":""},{"id":"A1_L3D_14_","type":"date","calc":false,"value":""},{"id":"A1_L3E_14_","type":"number","calc":false,"value":""},{"id":"A1_L3F_14_","type":"number","calc":false,"value":""},{"id":"A1_L3B_14_","type":"alpha","calc":false,"value":""},{"id":"A1_L3G_14_","type":"number","calc":false,"value":""},{"id":"A1_L3H_14_","type":"number","calc":true,"value":""},{"id":"L4E","type":"number","calc":true,"value":""},{"id":"L4F","type":"number","calc":true,"value":""},{"id":"L4G","type":"number","calc":true,"value":""},{"id":"L4H","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8949LT.json b/test/data/fd/form/F8949LT.json new file mode 100755 index 00000000..f7fb9948 --- /dev/null +++ b/test/data/fd/form/F8949LT.json @@ -0,0 +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":92.899},{"oc":"#221f1f","x":72.972,"y":3.001,"w":1.5,"l":21.123},{"oc":"#221f1f","x":94.009,"y":3.001,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.147,"y":4.501,"w":1.125,"l":55.774},{"oc":"#221f1f","x":61.834,"y":4.501,"w":1.125,"l":37.211},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":23.599},{"oc":"#221f1f","x":6.147,"y":19.501,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":29.659,"y":19.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":15.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":19.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":46.984,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":15.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":69.259,"y":17.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":69.259,"y":19.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":15.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":21.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":21.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":21.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":22.501,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":22.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":22.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":24.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":24.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":24.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":25.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":25.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":25.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":25.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":27.001,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":27.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":27.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":27.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":28.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":28.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":28.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":30.001,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":30.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":30.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":30.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":31.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":31.501,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":31.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":33.001,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":33.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":33.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":33.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":34.502,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":34.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":34.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":34.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":34.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":34.502,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":34.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":34.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":36.002,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":36.002,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":36.002,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":36.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":36.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":36.002,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":36.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":36.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":37.502,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":37.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":37.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":37.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":37.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":37.502,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":37.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":37.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":39.002,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":39.002,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":39.002,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":39.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":39.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":39.002,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":39.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":39.002,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":40.502,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":40.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":40.502,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":40.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.121,"y":40.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":40.502,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":40.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":40.502,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":40.501,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.147,"y":43.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":61.877,"y":2.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":23.901,"y":14.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":35.915,"y":15.079,"w":0.75,"l":4.531},{"oc":"#221f1f","x":47.027,"y":14.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":58.165,"y":14.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":69.302,"y":14.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.302,"y":17.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":17.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":87.865,"y":14.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":23.901,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":19.579,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":21.079,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":22.579,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":24.079,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":25.579,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":27.079,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":26.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":28.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":28.579,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":28.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":28.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":28.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":28.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":28.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":30.079,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":29.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":31.579,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":31.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":32.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":33.08,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":32.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":32.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":32.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":32.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":32.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":34.58,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":35.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":36.08,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":35.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":35.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":35.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":35.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":35.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.916,"y":37.58,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.901,"y":38.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.915,"y":39.08,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":38.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.164,"y":38.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":38.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":38.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":38.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":40.486,"w":0.75,"l":3.031},{"oc":"#221f1f","x":47.027,"y":40.486,"w":0.75,"l":3.031},{"oc":"#221f1f","x":69.302,"y":40.486,"w":0.75,"l":3.031},{"oc":"#221f1f","x":69.302,"y":40.486,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":40.486,"w":0.75,"l":3.031},{"oc":"#221f1f","x":87.865,"y":40.486,"w":0.75,"l":3.031}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.211,"y":6.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":69.302,"y":40.501,"w":7.425,"h":3,"clr":-1},{"oc":"#221f1f","x":0.172,"y":48.86,"w":1.589,"h":0.578,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.86,"w":1.589,"h":0.578,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.939,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%208949%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.765,"y":2.01,"w":12.078000000000005,"clr":-1,"A":"left","R":[{"T":"Attachment%20Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.296,"y":2.01,"w":1.834,"clr":-1,"A":"left","R":[{"T":"12A","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.796,"y":2.01,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.939,"y":2.822,"w":11.483000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return.","S":-1,"TS":[0,9.51,0,0]}]},{"oc":"#221f1f","x":19.218,"y":2.822,"w":36.56,"clr":-1,"A":"left","R":[{"T":"(Name%20and%20SSN%20or%20taxpayer%20identification%20no.%20not%20required%20if%20shown%20on%20other%20side.)","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":62.315,"y":2.776,"w":27.118999999999996,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20or%20taxpayer%20identification%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.605,"y":6.635,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.534,"y":6.635,"w":5.5,"clr":-1,"A":"left","R":[{"T":"Long-Term.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.424,"y":6.635,"w":43.17499999999997,"clr":-1,"A":"left","R":[{"T":"%20Transactions%20involving%20capital%20assets%20you%20held%20more%20than%20one%20year%20are%20long%20term.%20For%20short-term%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.534,"y":7.321999999999999,"w":11.521000000000004,"clr":-1,"A":"left","R":[{"T":"transactions%2C%20see%20page%201.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":8.135,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Note.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":18.583,"y":8.135,"w":46.46899999999999,"clr":-1,"A":"left","R":[{"T":"%20You%20may%20aggregate%20all%20long-term%20transactions%20reported%20on%20Form(s)%201099-B%20showing%20basis%20was%20reported%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":8.822,"w":49.08399999999995,"clr":-1,"A":"left","R":[{"T":"to%20the%20IRS%20and%20for%20which%20no%20adjustments%20or%20codes%20are%20required.%20Enter%20the%20total%20directly%20on%20Schedule%20D%2C%20line%208a%3B%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":9.51,"w":36.266999999999996,"clr":-1,"A":"left","R":[{"T":"you%20are%20not%20required%20to%20report%20these%20transactions%20on%20Form%208949%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":44.501,"y":10.396,"w":31.877000000000006,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%20one%20box%20applies%20for%20your%20long-term%20transactions%2C%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.646,"w":38.30699999999998,"clr":-1,"A":"left","R":[{"T":"more%20of%20the%20boxes%2C%20complete%20as%20many%20forms%20with%20the%20same%20box%20checked%20as%20you%20need.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.473,"y":12.501,"w":1.388,"clr":-1,"A":"left","R":[{"T":"(D)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.535,"y":12.501,"w":43.35799999999998,"clr":-1,"A":"left","R":[{"T":"%20Long-term%20transactions%20reported%20on%20Form(s)%201099-B%20showing%20basis%20was%20reported%20to%20the%20IRS%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.555,"y":12.501,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.907,"y":12.501,"w":3.278,"clr":-1,"A":"left","R":[{"T":"%20above)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.477,"y":13.251,"w":1.333,"clr":-1,"A":"left","R":[{"T":"(E)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.395,"y":13.251,"w":32.431000000000004,"clr":-1,"A":"left","R":[{"T":"%20Long-term%20transactions%20reported%20on%20Form(s)%201099-B%20showing%20basis%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.749,"y":13.251,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.156,"y":13.251,"w":8.816,"clr":-1,"A":"left","R":[{"T":"%20reported%20to%20the%20IRS","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.477,"y":14.001,"w":1.277,"clr":-1,"A":"left","R":[{"T":"(F)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.31,"y":14.001,"w":27.21200000000001,"clr":-1,"A":"left","R":[{"T":"%20Long-term%20transactions%20not%20reported%20to%20you%20on%20Form%201099-B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.383,"y":15.215,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.116,"y":16.06,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":8.623,"y":16.56,"w":10.575000000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.463,"y":17.06,"w":12.225000000000001,"clr":-1,"A":"left","R":[{"T":"(Example%3A%20100%20sh.%20XYZ%20Co.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.221,"y":16.06,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"oc":"#221f1f","x":26.451,"y":16.56,"w":6.557,"clr":-1,"A":"left","R":[{"T":"Date%20acquired%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":26.557,"y":17.06,"w":6.372000000000002,"clr":-1,"A":"left","R":[{"T":"(Mo.%2C%20day%2C%20yr.)%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":40.941,"y":15.823,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"oc":"#221f1f","x":38.302,"y":16.357,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Date%20sold%20or","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":38.911,"y":16.857,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"disposed%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":37.927,"y":17.357,"w":6.094000000000001,"clr":-1,"A":"left","R":[{"T":"(Mo.%2C%20day%2C%20yr.)","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":51.622,"y":15.857,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":49.784,"y":16.357,"w":4.537000000000001,"clr":-1,"A":"left","R":[{"T":"Proceeds%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.149,"y":16.857,"w":5.5920000000000005,"clr":-1,"A":"left","R":[{"T":"(sales%20price)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.8,"y":17.357,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.782,"y":15.357,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":58.192,"y":15.857,"w":9.075000000000003,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.115,"y":16.357,"w":3.686,"clr":-1,"A":"left","R":[{"T":"See%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.55,"y":16.357,"w":2.2779999999999996,"clr":-1,"A":"left","R":[{"T":"Note","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.29,"y":16.357,"w":3.2399999999999998,"clr":-1,"A":"left","R":[{"T":"%20below%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.292,"y":16.857,"w":3.538,"clr":-1,"A":"left","R":[{"T":"and%20see","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.549,"y":16.857,"w":5.093000000000001,"clr":-1,"A":"left","R":[{"T":"%20Column%20(e)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.495,"y":17.357,"w":7.187000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20separate%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.364,"y":17.857,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.562,"y":14.732,"w":16.05900000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment%2C%20if%20any%2C%20to%20gain%20or%20loss","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":86.804,"y":14.732,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":69.488,"y":15.232,"w":16.895,"clr":-1,"A":"left","R":[{"T":"If%20you%20enter%20an%20amount%20in%20column%20(g)%2C%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":71.895,"y":15.732,"w":12.17,"clr":-1,"A":"left","R":[{"T":"%20enter%20a%20code%20in%20column%20(f).%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":70.613,"y":16.232,"w":14.227000000000006,"clr":-1,"A":"left","R":[{"T":"See%20the%20separate%20instructions.","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":72.164,"y":17.2,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":69.255,"y":17.725,"w":6.112,"clr":-1,"A":"left","R":[{"T":"Code(s)%20from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.723,"y":18.25,"w":5.057,"clr":-1,"A":"left","R":[{"T":"instructions","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.322,"y":17.348,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":79.248,"y":17.873,"w":4.928000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.047,"y":18.311,"w":4.984,"clr":-1,"A":"left","R":[{"T":"adjustment","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.506,"y":15.357,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(h)%20%20","S":-1,"TS":[0,9.65,1,0]}]},{"oc":"#221f1f","x":89.439,"y":15.857,"w":7.002000000000001,"clr":-1,"A":"left","R":[{"T":"Gain%20or%20(loss).%20","S":-1,"TS":[0,9.65,1,0]}]},{"oc":"#221f1f","x":88.187,"y":16.357,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20column%20(e)%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":88.049,"y":16.857,"w":9.263000000000002,"clr":-1,"A":"left","R":[{"T":"from%20column%20(d)%20and%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":88.441,"y":17.357,"w":8.577000000000002,"clr":-1,"A":"left","R":[{"T":"combine%20the%20result%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":89.299,"y":17.857,"w":6.797000000000001,"clr":-1,"A":"left","R":[{"T":"with%20column%20(g)","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":7.211,"y":40.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":40.836,"w":3.501,"clr":-1,"A":"left","R":[{"T":"Totals.%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":12.925,"y":40.836,"w":25.564,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20in%20columns%20(d)%2C%20(e)%2C%20(g)%2C%20and%20(h)%20(subtract%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":8.414,"y":41.43,"w":27.433,"clr":-1,"A":"left","R":[{"T":"negative%20amounts).%20Enter%20each%20total%20here%20and%20include%20on%20your%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":8.414,"y":42.024,"w":5.724,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%2C%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":15.793,"y":42.024,"w":3.446,"clr":-1,"A":"left","R":[{"T":"line%208b%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":20.184,"y":42.024,"w":1.055,"clr":-1,"A":"left","R":[{"T":"(if%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":21.544,"y":42.024,"w":2.889,"clr":-1,"A":"left","R":[{"T":"Box%20D","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":25.244,"y":42.024,"w":8.928,"clr":-1,"A":"left","R":[{"T":"%20above%20is%20checked)%2C%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":36.753,"y":42.024,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"line%209","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":39.998,"y":42.024,"w":1.333,"clr":-1,"A":"left","R":[{"T":"%20(if%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":41.716,"y":42.024,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Box%20E","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":8.414,"y":42.618,"w":9.835,"clr":-1,"A":"left","R":[{"T":"above%20is%20checked)%2C%20or%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":21.092,"y":42.618,"w":3.1130000000000004,"clr":-1,"A":"left","R":[{"T":"line%2010","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":25.054,"y":42.618,"w":1.333,"clr":-1,"A":"left","R":[{"T":"%20(if%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":26.772,"y":42.618,"w":2.7779999999999996,"clr":-1,"A":"left","R":[{"T":"Box%20F","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":30.282,"y":42.618,"w":8.372,"clr":-1,"A":"left","R":[{"T":"%20above%20is%20checked)","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":41.399,"y":42.523,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":5.939,"y":43.315,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.953,"y":43.908,"w":22.468999999999998,"clr":-1,"A":"left","R":[{"T":"adjustment%20in%20column%20(g)%20to%20correct%20the%20basis.%20See%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.098,"y":43.908,"w":4.852,"clr":-1,"A":"left","R":[{"T":"Column%20(g)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.598,"y":43.908,"w":33.712,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20separate%20instructions%20for%20how%20to%20figure%20the%20amount%20of%20the%20adjustment.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.154,"y":44.822,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":44.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8949","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.453,"y":44.822,"w":2.742,"clr":-1,"A":"left","R":[{"T":"(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.939,"y":4.396,"w":67.04199999999996,"clr":-1,"A":"left","R":[{"T":"Most%20brokers%20issue%20their%20own%20substitute%20statement%20instead%20of%20using%20Form%201099-B.%20They%20also%20may%20provide%20basis%20information%20(usually%20your%20cost)%20to%20you%20on%20","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":5.939,"y":5.021,"w":66.71099999999994,"clr":-1,"A":"left","R":[{"T":"the%20statement%20even%20if%20it%20is%20not%20reported%20to%20the%20IRS.%20Before%20you%20check%20Box%20D%2C%20E%2C%20or%20F%20below%2C%20determine%20whether%20you%20received%20any%20statement(s)%20and%2C%20if%20so%2C%20","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":5.939,"y":5.646,"w":65.17299999999992,"clr":-1,"A":"left","R":[{"T":"the%20transactions%20for%20which%20basis%20was%20reported%20to%20the%20IRS.%20Brokers%20are%20required%20to%20report%20basis%20to%20the%20IRS%20for%20most%20stock%20you%20bought%20in%202011%20or%20later.","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":5.939,"y":10.396,"w":28.175,"clr":-1,"A":"left","R":[{"T":"You%20must%20check%20Box%20D%2C%20E%2C%20or%20F%20below.%20Check%20only%20one%20box.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":11.021,"w":58.62199999999994,"clr":-1,"A":"left","R":[{"T":"a%20separate%20Form%208949%2C%20page%202%2C%20for%20each%20applicable%20box.%20If%20you%20have%20more%20long-term%20transactions%20than%20will%20fit%20on%20this%20page%20for%20one%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.18,"y":43.315,"w":63.752999999999915,"clr":-1,"A":"left","R":[{"T":"%20If%20you%20checked%20Box%20D%20above%20but%20the%20basis%20reported%20to%20the%20IRS%20was%20incorrect%2C%20enter%20in%20column%20(e)%20the%20basis%20as%20reported%20to%20the%20IRS%2C%20and%20enter%20an%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COPYID","EN":0},"TI":7312,"AM":1024,"x":16.555,"y":2.201,"w":14.005,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":7313,"AM":1024,"x":6.208,"y":3.621,"w":54.673,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":7314,"AM":1024,"x":62.262,"y":3.643,"w":36.717,"h":0.833,"TU":"Social security number or taxpayer identification number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_1_","EN":0},"TI":7318,"AM":0,"x":6.27,"y":19.61,"w":17.767,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_1"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_1_","EN":0},"TI":7319,"AM":0,"x":24.272,"y":19.609,"w":12.024,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_1","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_1_","EN":0},"TI":7320,"AM":0,"x":36.636,"y":19.61,"w":10.224,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_1","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_1_","EN":0},"TI":7321,"AM":0,"x":47.211,"y":19.61,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_1_","EN":0},"TI":7322,"AM":0,"x":58.348,"y":19.61,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_1_","EN":0},"TI":7323,"AM":0,"x":69.486,"y":19.61,"w":7.074,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_1_","EN":0},"TI":7324,"AM":0,"x":76.911,"y":19.61,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_1_","EN":0},"TI":7325,"AM":1024,"x":88.048,"y":19.61,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_2_","EN":0},"TI":7326,"AM":0,"x":6.27,"y":21.11,"w":17.728,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_2"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_2_","EN":0},"TI":7327,"AM":0,"x":24.261,"y":21.13,"w":11.968,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_2","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_2_","EN":0},"TI":7328,"AM":0,"x":36.636,"y":21.11,"w":10.224,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_2","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_2_","EN":0},"TI":7329,"AM":0,"x":47.211,"y":21.11,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_2_","EN":0},"TI":7330,"AM":0,"x":58.348,"y":21.11,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_2_","EN":0},"TI":7331,"AM":0,"x":69.486,"y":21.11,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_2_","EN":0},"TI":7332,"AM":0,"x":76.911,"y":21.11,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_2_","EN":0},"TI":7333,"AM":1024,"x":88.048,"y":21.11,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_3_","EN":0},"TI":7334,"AM":0,"x":6.27,"y":22.61,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_3"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_3_","EN":0},"TI":7335,"AM":0,"x":24.261,"y":22.63,"w":12.081,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_3","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_3_","EN":0},"TI":7336,"AM":0,"x":36.692,"y":22.61,"w":10.168,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_3","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_3_","EN":0},"TI":7337,"AM":0,"x":47.211,"y":22.61,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_3_","EN":0},"TI":7338,"AM":0,"x":58.348,"y":22.61,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_3_","EN":0},"TI":7339,"AM":0,"x":69.486,"y":22.61,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_3_","EN":0},"TI":7340,"AM":0,"x":76.911,"y":22.61,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_3_","EN":0},"TI":7341,"AM":1024,"x":88.048,"y":22.61,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_4_","EN":0},"TI":7342,"AM":0,"x":6.27,"y":24.11,"w":17.809,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_4"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_4_","EN":0},"TI":7343,"AM":0,"x":24.429,"y":24.069,"w":11.799,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_4","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_4_","EN":0},"TI":7344,"AM":0,"x":36.579,"y":24.11,"w":10.281,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_4","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_4_","EN":0},"TI":7345,"AM":0,"x":47.211,"y":24.11,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_4_","EN":0},"TI":7346,"AM":0,"x":58.348,"y":24.11,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_4_","EN":0},"TI":7347,"AM":0,"x":69.486,"y":24.11,"w":6.909,"h":1.334,"TU":"(f) Code(s) from instructions_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_4_","EN":0},"TI":7348,"AM":0,"x":76.911,"y":24.11,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_4_","EN":0},"TI":7349,"AM":1024,"x":88.048,"y":24.11,"w":10.89,"h":1.334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_5_","EN":0},"TI":7350,"AM":0,"x":6.27,"y":25.61,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_5"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_5_","EN":0},"TI":7351,"AM":0,"x":24.429,"y":25.569,"w":11.799,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_5","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_5_","EN":0},"TI":7352,"AM":0,"x":36.579,"y":25.61,"w":10.281,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_5","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_5_","EN":0},"TI":7353,"AM":0,"x":47.211,"y":25.61,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_5_","EN":0},"TI":7354,"AM":0,"x":58.348,"y":25.61,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_5_","EN":0},"TI":7355,"AM":0,"x":69.486,"y":25.61,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_5_","EN":0},"TI":7356,"AM":0,"x":76.911,"y":25.61,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_5_","EN":0},"TI":7357,"AM":1024,"x":88.048,"y":25.61,"w":10.89,"h":1.334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_6_","EN":0},"TI":7358,"AM":0,"x":6.27,"y":27.11,"w":17.809,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_6"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_6_","EN":0},"TI":7359,"AM":0,"x":24.489,"y":27.087,"w":11.799,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_6","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_6_","EN":0},"TI":7360,"AM":0,"x":36.692,"y":27.11,"w":10.168,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_6","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_6_","EN":0},"TI":7361,"AM":0,"x":47.211,"y":27.11,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_6_","EN":0},"TI":7362,"AM":0,"x":58.348,"y":27.11,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_6_","EN":0},"TI":7363,"AM":0,"x":69.486,"y":27.11,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_6_","EN":0},"TI":7364,"AM":0,"x":76.911,"y":27.11,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_6_","EN":0},"TI":7365,"AM":1024,"x":88.048,"y":27.11,"w":10.89,"h":1.334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_7_","EN":0},"TI":7366,"AM":0,"x":6.27,"y":28.61,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_7"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_7_","EN":0},"TI":7367,"AM":0,"x":24.429,"y":28.569,"w":11.799,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_7","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_7_","EN":0},"TI":7368,"AM":0,"x":36.748,"y":28.61,"w":10.112,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_7","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_7_","EN":0},"TI":7369,"AM":0,"x":47.211,"y":28.61,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_7_","EN":0},"TI":7370,"AM":0,"x":58.401,"y":28.609,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_7_","EN":0},"TI":7371,"AM":0,"x":69.486,"y":28.61,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_7_","EN":0},"TI":7372,"AM":0,"x":76.902,"y":28.59,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_7_","EN":0},"TI":7373,"AM":1024,"x":87.777,"y":28.614,"w":10.89,"h":1.334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_8_","EN":0},"TI":7374,"AM":0,"x":6.27,"y":30.11,"w":17.809,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_8"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_8_","EN":0},"TI":7375,"AM":0,"x":24.429,"y":30.069,"w":11.856,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_8","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_8_","EN":0},"TI":7376,"AM":0,"x":36.692,"y":30.11,"w":10.168,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_8","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_8_","EN":0},"TI":7377,"AM":0,"x":47.211,"y":30.11,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_8_","EN":0},"TI":7378,"AM":0,"x":58.348,"y":30.11,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_8_","EN":0},"TI":7379,"AM":0,"x":69.486,"y":30.11,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_8_","EN":0},"TI":7380,"AM":0,"x":76.911,"y":30.11,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_8_","EN":0},"TI":7381,"AM":1024,"x":88.048,"y":30.11,"w":10.89,"h":1.334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_9_","EN":0},"TI":7382,"AM":0,"x":6.27,"y":31.61,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_9"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_9_","EN":0},"TI":7383,"AM":0,"x":24.429,"y":31.569,"w":11.799,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_9","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_9_","EN":0},"TI":7384,"AM":0,"x":36.692,"y":31.61,"w":10.168,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_9","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_9_","EN":0},"TI":7385,"AM":0,"x":47.211,"y":31.61,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_9_","EN":0},"TI":7386,"AM":0,"x":58.348,"y":31.61,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_9_","EN":0},"TI":7387,"AM":0,"x":69.486,"y":31.61,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_9_","EN":0},"TI":7388,"AM":0,"x":76.911,"y":31.61,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_9_","EN":0},"TI":7389,"AM":1024,"x":88.048,"y":31.61,"w":10.89,"h":1.334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_10_","EN":0},"TI":7390,"AM":0,"x":6.27,"y":33.11,"w":17.809,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_10"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_10_","EN":0},"TI":7391,"AM":0,"x":24.429,"y":33.069,"w":11.912,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_10","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_10_","EN":0},"TI":7392,"AM":0,"x":36.579,"y":33.11,"w":10.281,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_10","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_10_","EN":0},"TI":7393,"AM":0,"x":47.211,"y":33.11,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_10_","EN":0},"TI":7394,"AM":0,"x":58.348,"y":33.11,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_10_","EN":0},"TI":7395,"AM":0,"x":69.486,"y":33.11,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_10_","EN":0},"TI":7396,"AM":0,"x":76.911,"y":33.11,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_10_","EN":0},"TI":7397,"AM":1024,"x":88.048,"y":33.11,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_11_","EN":0},"TI":7398,"AM":0,"x":6.27,"y":34.61,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_11"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_11_","EN":0},"TI":7399,"AM":0,"x":24.373,"y":34.61,"w":11.856,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_11","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_11_","EN":0},"TI":7400,"AM":0,"x":36.579,"y":34.61,"w":10.281,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_11","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_11_","EN":0},"TI":7401,"AM":0,"x":47.211,"y":34.61,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_11_","EN":0},"TI":7402,"AM":0,"x":58.348,"y":34.61,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_11"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_11_","EN":0},"TI":7403,"AM":0,"x":69.486,"y":34.61,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_11_","EN":0},"TI":7404,"AM":0,"x":76.911,"y":34.61,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_11_","EN":0},"TI":7405,"AM":1024,"x":88.048,"y":34.61,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_11"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_12_","EN":0},"TI":7406,"AM":0,"x":6.27,"y":36.11,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_12"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_12_","EN":0},"TI":7407,"AM":0,"x":24.373,"y":36.11,"w":11.912,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_12","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_12_","EN":0},"TI":7408,"AM":0,"x":36.692,"y":36.11,"w":10.168,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_12","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_12_","EN":0},"TI":7409,"AM":0,"x":47.211,"y":36.11,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_12_","EN":0},"TI":7410,"AM":0,"x":58.348,"y":36.11,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_12_","EN":0},"TI":7411,"AM":0,"x":69.486,"y":36.11,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_12_","EN":0},"TI":7412,"AM":0,"x":76.911,"y":36.11,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_12_","EN":0},"TI":7413,"AM":1024,"x":88.048,"y":36.11,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_13_","EN":0},"TI":7414,"AM":0,"x":6.27,"y":37.61,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_13"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_13_","EN":0},"TI":7415,"AM":0,"x":24.373,"y":37.61,"w":11.912,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_13","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_13_","EN":0},"TI":7416,"AM":0,"x":36.692,"y":37.61,"w":10.168,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_13","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_13_","EN":0},"TI":7417,"AM":0,"x":47.211,"y":37.61,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_13_","EN":0},"TI":7418,"AM":0,"x":58.348,"y":37.61,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_13"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_13_","EN":0},"TI":7419,"AM":0,"x":69.486,"y":37.61,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_13_","EN":0},"TI":7420,"AM":0,"x":76.911,"y":37.61,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_13_","EN":0},"TI":7421,"AM":1024,"x":88.048,"y":37.61,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_13"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3A_14_","EN":0},"TI":7422,"AM":0,"x":6.27,"y":39.11,"w":17.752,"h":1.334,"TU":"3 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_14"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3C_14_","EN":0},"TI":7423,"AM":0,"x":24.207,"y":39.11,"w":12.081,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_14","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A1_L3D_14_","EN":0},"TI":7424,"AM":0,"x":36.579,"y":39.11,"w":10.281,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_14","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3E_14_","EN":0},"TI":7425,"AM":0,"x":47.211,"y":39.11,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3F_14_","EN":0},"TI":7426,"AM":0,"x":58.348,"y":39.11,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_14"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_L3B_14_","EN":0},"TI":7427,"AM":0,"x":69.486,"y":39.11,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3G_14_","EN":0},"TI":7428,"AM":0,"x":76.911,"y":39.11,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1_L3H_14_","EN":0},"TI":7429,"AM":1024,"x":88.048,"y":39.11,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4E","EN":0},"TI":7430,"AM":1024,"x":47.273,"y":41.123,"w":10.663,"h":2.339,"TU":"(d) Proceeds (sales price) (see instructions)_4 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 8 (if Box A above is checked), line 9 (if Box B above is checked), or line 10 (if Box C above is checked) a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4F","EN":0},"TI":7431,"AM":1024,"x":58.41,"y":41.123,"w":10.663,"h":2.339,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_4 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 8 (if Box A above is checked), line 9 (if Box B above is checked), or line 10 (if Box C above is checked) a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4G","EN":0},"TI":7432,"AM":1024,"x":76.973,"y":41.123,"w":10.663,"h":2.339,"TU":"(g) Amount of adjustment_4 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 8 (if Box A above is checked), line 9 (if Box B above is checked), or line 10 (if Box C above is checked) a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4H","EN":0},"TI":7433,"AM":1024,"x":88.11,"y":41.123,"w":10.766,"h":2.339,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_4 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 8 (if Box A above is checked), line 9 (if Box B above is checked), or line 10 (if Box C above is checked) a"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LTBOXA","EN":0},"TI":7315,"AM":0,"x":8.687,"y":12.779,"w":1.932,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LTBOXB","EN":0},"TI":7316,"AM":0,"x":8.55,"y":13.423,"w":1.601,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LTBOXC","EN":0},"TI":7317,"AM":0,"x":8.645,"y":14.181,"w":1.601,"h":0.833,"checked":false}],"id":{"Id":"BOXESRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8949ST.content.txt b/test/data/fd/form/F8949ST.content.txt new file mode 100755 index 00000000..2f75316e --- /dev/null +++ b/test/data/fd/form/F8949ST.content.txt @@ -0,0 +1,130 @@ +Form +8949 +Department of the Treasury +Internal Revenue Service +Sales and Other Dispositions of Capital Assets +▶ + +a + +File with your Schedule D to list your transactions for lines 1b, 2, 3, 8b, 9, and 10 of Schedule D. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +12A + +Name(s) shown on return +Social security number or taxpayer identification number +Part I +Short-Term. +Transactions involving capital assets you held one year or less are short term. For long-term +transactions, see page 2. +Note. +You may aggregate all short-term transactions reported on Form(s) 1099-B showing basis was +reported to the IRS and for which no adjustments or codes are required. Enter the total directly on +Schedule D, line 1a; you are not required to report these transactions on Form 8949 (see instructions). + If more than one box applies for your short-term transactions, +for one or more of the boxes, complete as many forms with the same box checked as you need. +(A) + Short-term transactions reported on Form(s) 1099-B showing basis was reported to the IRS (see +Note + above) +(B) + Short-term transactions reported on Form(s) 1099-B showing basis was +not + reported to the IRS +(C) + Short-term transactions not reported to you on Form 1099-B +1 +(a) +Description of property +(Example: 100 sh. XYZ Co.) +(b) + +Date acquired + +(Mo., day, yr.) + +(c) + +Date sold or + +disposed + +(Mo., day, yr.) +(d) +Proceeds +(sales price) +(see instructions) +(e) +Cost or other basis. +See the +Note + below +and see + Column (e) + +in the separate +instructions +Adjustment, if any, to gain or loss +. + +If you enter an amount in column (g), + enter a code in column (f). +See the separate instructions. + +(f) +Code(s) from +instructions +(g) +Amount of +adjustment +(h) +Gain or (loss). +Subtract column (e) +from column (d) and +combine the result +with column (g) + + + + +2 +Totals. +Add the amounts in columns (d), (e), (g), and (h) (subtract +negative amounts). Enter each total here and include on your +Schedule D, +line 1b +(if +Box A + above is checked), +line 2 + (if +Box B + +above is checked), or +line 3 + (if +Box C +above is checked) + +a +Note. +adjustment in column (g) to correct the basis. See +Column (g) + in the separate instructions for how to figure the amount of the adjustment. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 37768Z +Form +8949 + (2013) +Information about Form 8949 and its separate instructions is at www.irs.gov/form8949. +the transactions for which basis was reported to the IRS. Brokers are required to report basis to the IRS for most stock you bought in 2011 or later. +the statement even if it is not reported to the IRS. Before you check Box A, B, or C below, determine whether you received any statement(s) and, if so, +Most brokers issue their own substitute statement instead of using Form 1099-B. They also may provide basis information (usually your cost) to you on +You must check Box A, B, or C below. Check only one box. +complete a separate Form 8949, page 1, for each applicable box. If you have more short-term transactions than will fit on this page + If you checked Box A above but the basis reported to the IRS was incorrect, enter in column (e) the basis as reported to the IRS, and enter an +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8949ST.fields.json b/test/data/fd/form/F8949ST.fields.json new file mode 100755 index 00000000..155562e7 --- /dev/null +++ b/test/data/fd/form/F8949ST.fields.json @@ -0,0 +1 @@ +[{"id":"BOXESRB","type":"radio","calc":false,"value":"STBOXA"},{"id":"BOXESRB","type":"radio","calc":false,"value":"STBOXB"},{"id":"BOXESRB","type":"radio","calc":false,"value":"STBOXC"},{"id":"COPYID","type":"alpha","calc":true,"value":""},{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"SSN1","type":"ssn","calc":true,"value":""},{"id":"SHORTTBL_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_1_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_1_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_1_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_1_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_1_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_1_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_1_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_2_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_2_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_2_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_2_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_2_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_2_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_2_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_3_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_3_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_3_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_3_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_3_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_3_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_3_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_3_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_4_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_4_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_4_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_4_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_4_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_4_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_4_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_4_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_5_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_5_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_5_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_5_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_5_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_5_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_5_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_5_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_6_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_6_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_6_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_6_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_6_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_6_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_6_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_6_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_7_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_7_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_7_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_7_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_7_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_7_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_7_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_7_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_8_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_8_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_8_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_8_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_8_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_8_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_8_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_8_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_9_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_9_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_9_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_9_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_9_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_9_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_9_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_9_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_10_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_10_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_10_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_10_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_10_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_10_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_10_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_10_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_11_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_11_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_11_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_11_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_11_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_11_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_11_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_11_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_12_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_12_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_12_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_12_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_12_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_12_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_12_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_12_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_13_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_13_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_13_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_13_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_13_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_13_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_13_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_13_","type":"number","calc":true,"value":""},{"id":"SHORTTBL_L1A_14_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1C_14_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1D_14_","type":"date","calc":false,"value":""},{"id":"SHORTTBL_L1E_14_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1F_14_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1B_14_","type":"alpha","calc":false,"value":""},{"id":"SHORTTBL_L1G_14_","type":"number","calc":false,"value":""},{"id":"SHORTTBL_L1H_14_","type":"number","calc":true,"value":""},{"id":"L2E","type":"number","calc":true,"value":""},{"id":"L2F","type":"number","calc":true,"value":""},{"id":"L2G","type":"number","calc":true,"value":""},{"id":"L2H","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8949ST.json b/test/data/fd/form/F8949ST.json new file mode 100755 index 00000000..45f84315 --- /dev/null +++ b/test/data/fd/form/F8949ST.json @@ -0,0 +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.252,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.2},{"oc":"#221f1f","x":84.068,"y":3.002,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.068,"y":5.252,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":55.774},{"oc":"#221f1f","x":61.834,"y":6.751,"w":1.125,"l":37.211},{"oc":"#221f1f","x":6.147,"y":9.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":17.251,"w":0.75,"l":23.599},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":17.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":29.659,"y":21.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":17.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":21.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":46.984,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":17.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":69.259,"y":19.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":69.259,"y":21.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":23.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":23.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":23.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":24.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":24.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":26.251,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":26.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":26.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":26.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":26.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":27.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":27.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":27.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":27.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":29.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":29.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":29.251,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":29.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":30.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":30.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":30.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":30.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":32.252,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":32.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":32.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":32.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":32.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":32.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":32.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":32.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":33.752,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":33.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":33.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":33.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":33.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":33.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":33.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":33.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":35.252,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":35.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":35.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":35.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":35.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":35.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":35.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":35.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":36.752,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":36.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":36.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":36.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":36.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":36.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":36.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":36.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":38.252,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":38.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":38.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":38.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":38.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":38.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":38.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":38.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":39.752,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":39.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":39.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":39.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":39.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":39.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":39.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":39.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":41.252,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":41.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":41.252,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":41.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":41.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":41.252,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":41.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":41.252,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.147,"y":42.752,"w":0.75,"l":23.599},{"oc":"#221f1f","x":29.659,"y":42.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":38.322,"y":42.752,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.984,"y":42.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.121,"y":42.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":42.752,"w":0.75,"l":7.511},{"oc":"#221f1f","x":76.684,"y":42.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":87.822,"y":42.752,"w":0.75,"l":11.223},{"oc":"#221f1f","x":58.122,"y":45.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":69.259,"y":42.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.147,"y":45.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.172,"y":47.251,"w":1.5,"l":33.498},{"oc":"#221f1f","x":86.584,"y":47.251,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.236,"w":1.5,"l":1.662},{"oc":"#221f1f","x":21.04,"y":3.736,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.154,"y":2.236,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.154,"y":2.986,"w":1.5,"l":2.281},{"oc":"#221f1f","x":61.877,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":26.222,"y":17.376,"w":0.75,"l":4.531},{"oc":"#221f1f","x":37.462,"y":17.329,"w":0.75,"l":4.531},{"oc":"#221f1f","x":47.027,"y":17.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":58.165,"y":17.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":69.302,"y":17.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.302,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":76.727,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":87.865,"y":17.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":26.222,"y":21.876,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":21.829,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":23.376,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":23.329,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":24.876,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":24.829,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":26.376,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":26.329,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":26.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":27.876,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":27.829,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":29.376,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":29.329,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":29.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":30.876,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":30.83,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":30.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":32.377,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":32.33,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":33.877,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":33.83,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":33.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":33.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":33.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":33.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":33.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":35.377,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":35.33,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":36.877,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":36.83,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":36.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":36.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":36.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":36.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":36.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":38.377,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":38.33,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":38.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":38.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":38.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":38.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":38.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":39.877,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":39.83,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.222,"y":41.377,"w":0.75,"l":1.531},{"oc":"#221f1f","x":37.462,"y":41.33,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":41.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.164,"y":41.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":41.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":41.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.865,"y":41.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.165,"y":42.736,"w":0.75,"l":3.031},{"oc":"#221f1f","x":47.027,"y":42.736,"w":0.75,"l":3.031},{"oc":"#221f1f","x":69.302,"y":42.736,"w":0.75,"l":3.031},{"oc":"#221f1f","x":69.302,"y":42.736,"w":0.75,"l":3.031},{"oc":"#221f1f","x":76.727,"y":42.736,"w":0.75,"l":3.031},{"oc":"#221f1f","x":87.865,"y":42.736,"w":0.75,"l":3.031}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":9.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":69.302,"y":42.751,"w":7.425,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.939,"y":2.635,"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.635,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8949","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.939,"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.939,"y":4.276,"w":11.649000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":23.636,"y":2.6,"w":22.284000000000006,"clr":-1,"A":"left","R":[{"T":"Sales%20and%20Other%20Dispositions%20of%20Capital%20Assets","S":-1,"TS":[0,20,1,0]}]},{"oc":"#221f1f","x":26.223,"y":3.285,"w":1.28,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6%20","S":-1,"TS":[2,8.4,0,0]}]},{"oc":"#221f1f","x":23.701,"y":4.035,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":25.076,"y":4.129,"w":45.40399999999995,"clr":-1,"A":"left","R":[{"T":"File%20with%20your%20Schedule%20D%20to%20list%20your%20transactions%20for%20lines%201b%2C%202%2C%203%2C%208b%2C%209%2C%20and%2010%20of%20Schedule%20D.","S":-1,"TS":[0,10.2,1,0]}]},{"oc":"#221f1f","x":85.745,"y":1.9740000000000002,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.86,"y":3.394,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.83,"y":3.394,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.966,"y":3.8890000000000002,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.966,"y":4.335,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.944,"y":4.335,"w":1.834,"clr":-1,"A":"left","R":[{"T":"12A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.939,"y":5.026,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.315,"y":5.026,"w":27.118999999999996,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20or%20taxpayer%20identification%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":8.885,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.532,"y":8.885,"w":5.945000000000002,"clr":-1,"A":"left","R":[{"T":"Short-Term.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.393,"y":8.885,"w":41.30199999999997,"clr":-1,"A":"left","R":[{"T":"Transactions%20involving%20capital%20assets%20you%20held%20one%20year%20or%20less%20are%20short%20term.%20For%20long-term%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.532,"y":9.572,"w":11.521000000000004,"clr":-1,"A":"left","R":[{"T":"transactions%2C%20see%20page%202.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":10.385,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":19.232,"y":10.385,"w":42.45,"clr":-1,"A":"left","R":[{"T":"You%20may%20aggregate%20all%20short-term%20transactions%20reported%20on%20Form(s)%201099-B%20showing%20basis%20was%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":11.072,"w":44.82299999999996,"clr":-1,"A":"left","R":[{"T":"reported%20to%20the%20IRS%20and%20for%20which%20no%20adjustments%20or%20codes%20are%20required.%20Enter%20the%20total%20directly%20on%20%20%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":11.76,"w":45.45499999999997,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%2C%20line%201a%3B%20you%20are%20not%20required%20to%20report%20these%20transactions%20on%20Form%208949%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":44.472,"y":12.584,"w":28.061,"clr":-1,"A":"left","R":[{"T":"%20If%20more%20than%20one%20box%20applies%20for%20your%20short-term%20transactions%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":13.834,"w":42.91799999999997,"clr":-1,"A":"left","R":[{"T":"for%20one%20or%20more%20of%20the%20boxes%2C%20complete%20as%20many%20forms%20with%20the%20same%20box%20checked%20as%20you%20need.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.477,"y":14.751,"w":1.388,"clr":-1,"A":"left","R":[{"T":"(A)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.452,"y":14.751,"w":43.52399999999998,"clr":-1,"A":"left","R":[{"T":"%20Short-term%20transactions%20reported%20on%20Form(s)%201099-B%20showing%20basis%20was%20reported%20to%20the%20IRS%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.386,"y":14.751,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.91,"y":14.751,"w":3.278,"clr":-1,"A":"left","R":[{"T":"%20above)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.477,"y":15.501000000000001,"w":1.388,"clr":-1,"A":"left","R":[{"T":"(B)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.482,"y":15.501000000000001,"w":32.597,"clr":-1,"A":"left","R":[{"T":"%20Short-term%20transactions%20reported%20on%20Form(s)%201099-B%20showing%20basis%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.921,"y":15.501000000000001,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.156,"y":15.501000000000001,"w":8.816,"clr":-1,"A":"left","R":[{"T":"%20reported%20to%20the%20IRS","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.477,"y":16.251,"w":1.388,"clr":-1,"A":"left","R":[{"T":"(C)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.539,"y":16.251,"w":27.378000000000004,"clr":-1,"A":"left","R":[{"T":"%20Short-term%20transactions%20not%20reported%20to%20you%20on%20Form%201099-B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.383,"y":17.465,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.76,"y":18.31,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":9.268,"y":18.81,"w":10.575000000000001,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.108,"y":19.31,"w":12.225000000000001,"clr":-1,"A":"left","R":[{"T":"(Example%3A%20100%20sh.%20XYZ%20Co.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.897,"y":18.357,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"oc":"#221f1f","x":28.126,"y":18.857,"w":6.557,"clr":-1,"A":"left","R":[{"T":"Date%20acquired%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":28.233,"y":19.357,"w":6.372000000000002,"clr":-1,"A":"left","R":[{"T":"(Mo.%2C%20day%2C%20yr.)%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":41.128,"y":18.06,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"oc":"#221f1f","x":38.818,"y":18.56,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Date%20sold%20or","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":39.427,"y":19.06,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"disposed%20","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":38.443,"y":19.561,"w":6.094000000000001,"clr":-1,"A":"left","R":[{"T":"(Mo.%2C%20day%2C%20yr.)","S":-1,"TS":[0,9.719999999999999,0,0]}]},{"oc":"#221f1f","x":51.622,"y":18.107,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":49.784,"y":18.607,"w":4.537000000000001,"clr":-1,"A":"left","R":[{"T":"Proceeds%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.149,"y":19.107,"w":5.5920000000000005,"clr":-1,"A":"left","R":[{"T":"(sales%20price)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.8,"y":19.607,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.782,"y":17.607,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":58.192,"y":18.107,"w":9.075000000000003,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.115,"y":18.607,"w":3.686,"clr":-1,"A":"left","R":[{"T":"See%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.55,"y":18.607,"w":2.2779999999999996,"clr":-1,"A":"left","R":[{"T":"Note","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.29,"y":18.607,"w":3.2399999999999998,"clr":-1,"A":"left","R":[{"T":"%20below%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.292,"y":19.107,"w":3.538,"clr":-1,"A":"left","R":[{"T":"and%20see","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.549,"y":19.107,"w":5.093000000000001,"clr":-1,"A":"left","R":[{"T":"%20Column%20(e)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.495,"y":19.607,"w":7.187000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20separate%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.364,"y":20.108,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.562,"y":16.982,"w":16.05900000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment%2C%20if%20any%2C%20to%20gain%20or%20loss","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":86.804,"y":16.982,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":69.488,"y":17.482,"w":16.895,"clr":-1,"A":"left","R":[{"T":"If%20you%20enter%20an%20amount%20in%20column%20(g)%2C%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":71.895,"y":17.982,"w":12.17,"clr":-1,"A":"left","R":[{"T":"%20enter%20a%20code%20in%20column%20(f).%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":70.613,"y":18.482,"w":14.227000000000006,"clr":-1,"A":"left","R":[{"T":"See%20the%20separate%20instructions.","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":72.164,"y":19.45,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":69.255,"y":19.975,"w":6.112,"clr":-1,"A":"left","R":[{"T":"Code(s)%20from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.723,"y":20.5,"w":5.057,"clr":-1,"A":"left","R":[{"T":"instructions","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.322,"y":19.598,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(g)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":79.248,"y":20.123,"w":4.928000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.047,"y":20.561,"w":4.984,"clr":-1,"A":"left","R":[{"T":"adjustment","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.506,"y":17.607,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(h)%20%20","S":-1,"TS":[0,9.65,1,0]}]},{"oc":"#221f1f","x":89.439,"y":18.107,"w":7.002000000000001,"clr":-1,"A":"left","R":[{"T":"Gain%20or%20(loss).%20","S":-1,"TS":[0,9.65,1,0]}]},{"oc":"#221f1f","x":88.187,"y":18.607,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract%20column%20(e)%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":88.049,"y":19.107,"w":9.263000000000002,"clr":-1,"A":"left","R":[{"T":"from%20column%20(d)%20and%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":88.441,"y":19.607,"w":8.577000000000002,"clr":-1,"A":"left","R":[{"T":"combine%20the%20result%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":89.299,"y":20.108,"w":6.797000000000001,"clr":-1,"A":"left","R":[{"T":"with%20column%20(g)","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":7.211,"y":43.215,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.414,"y":43.18,"w":3.501,"clr":-1,"A":"left","R":[{"T":"Totals.%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":12.926,"y":43.18,"w":25.564,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20in%20columns%20(d)%2C%20(e)%2C%20(g)%2C%20and%20(h)%20(subtract%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":8.409,"y":43.742,"w":27.433,"clr":-1,"A":"left","R":[{"T":"negative%20amounts).%20Enter%20each%20total%20here%20and%20include%20on%20your%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":8.412,"y":44.305,"w":5.724,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%2C%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":15.824000000000002,"y":44.305,"w":3.446,"clr":-1,"A":"left","R":[{"T":"line%201b%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":20.249,"y":44.305,"w":1.055,"clr":-1,"A":"left","R":[{"T":"(if%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":21.626,"y":44.305,"w":2.889,"clr":-1,"A":"left","R":[{"T":"Box%20A","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":25.288,"y":44.305,"w":8.928,"clr":-1,"A":"left","R":[{"T":"%20above%20is%20checked)%2C%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":36.847,"y":44.305,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"line%202","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":40.126,"y":44.305,"w":1.333,"clr":-1,"A":"left","R":[{"T":"%20(if%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":41.861,"y":44.305,"w":2.889,"clr":-1,"A":"left","R":[{"T":"Box%20B","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":8.405,"y":44.886,"w":9.835,"clr":-1,"A":"left","R":[{"T":"above%20is%20checked)%2C%20or%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":21.084,"y":44.886,"w":2.5170000000000003,"clr":-1,"A":"left","R":[{"T":"line%203","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":24.328,"y":44.886,"w":1.333,"clr":-1,"A":"left","R":[{"T":"%20(if%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":26.046,"y":44.886,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Box%20C%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":30.106,"y":44.886,"w":8.372,"clr":-1,"A":"left","R":[{"T":"above%20is%20checked)%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":41.241,"y":44.793,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":5.939,"y":45.564,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.945,"y":46.158,"w":22.468999999999998,"clr":-1,"A":"left","R":[{"T":"adjustment%20in%20column%20(g)%20to%20correct%20the%20basis.%20See%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.262,"y":46.158,"w":4.852,"clr":-1,"A":"left","R":[{"T":"Column%20(g)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.762,"y":46.158,"w":33.712,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20separate%20instructions%20for%20how%20to%20figure%20the%20amount%20of%20the%20adjustment.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.939,"y":47.108,"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.236,"y":47.126,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2037768Z","S":2,"TS":[0,10,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":"8949","S":10,"TS":[0,14,1,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":"#221f1f","x":27.411,"y":3.3789999999999996,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208949%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8949.","S":-1,"TS":[0,10.2,1,0]}]},{"oc":"#221f1f","x":5.939,"y":7.896000000000001,"w":65.17299999999992,"clr":-1,"A":"left","R":[{"T":"the%20transactions%20for%20which%20basis%20was%20reported%20to%20the%20IRS.%20Brokers%20are%20required%20to%20report%20basis%20to%20the%20IRS%20for%20most%20stock%20you%20bought%20in%202011%20or%20later.","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":5.939,"y":7.271000000000001,"w":66.89599999999996,"clr":-1,"A":"left","R":[{"T":"the%20statement%20even%20if%20it%20is%20not%20reported%20to%20the%20IRS.%20Before%20you%20check%20Box%20A%2C%20B%2C%20or%20C%20below%2C%20determine%20whether%20you%20received%20any%20statement(s)%20and%2C%20if%20so%2C%20","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":5.939,"y":6.646,"w":67.04199999999996,"clr":-1,"A":"left","R":[{"T":"Most%20brokers%20issue%20their%20own%20substitute%20statement%20instead%20of%20using%20Form%201099-B.%20They%20also%20may%20provide%20basis%20information%20(usually%20your%20cost)%20to%20you%20on%20","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":5.939,"y":12.584,"w":28.063000000000002,"clr":-1,"A":"left","R":[{"T":"You%20must%20check%20Box%20A%2C%20B%2C%20or%20C%20below.%20Check%20only%20one%20box.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":13.209,"w":58.80899999999993,"clr":-1,"A":"left","R":[{"T":"complete%20a%20separate%20Form%208949%2C%20page%201%2C%20for%20each%20applicable%20box.%20If%20you%20have%20more%20short-term%20transactions%20than%20will%20fit%20on%20this%20page%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.355,"y":45.564,"w":63.69699999999992,"clr":-1,"A":"left","R":[{"T":"%20If%20you%20checked%20Box%20A%20above%20but%20the%20basis%20reported%20to%20the%20IRS%20was%20incorrect%2C%20enter%20in%20column%20(e)%20the%20basis%20as%20reported%20to%20the%20IRS%2C%20and%20enter%20an%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COPYID","EN":0},"TI":7434,"AM":1024,"x":6.802,"y":3.439,"w":13.737,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME1","EN":0},"TI":7435,"AM":1024,"x":6.229,"y":5.919,"w":55.523,"h":0.869,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1","EN":0},"TI":7436,"AM":1024,"x":62.019,"y":5.919,"w":36.96,"h":0.869,"TU":"Social security number or taxpayer identification number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_1_","EN":0},"TI":7440,"AM":0,"x":6.577,"y":21.883,"w":18.953,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_1"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_1_","EN":0},"TI":7441,"AM":0,"x":26.199,"y":21.869,"w":11.012,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_1","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_1_","EN":0},"TI":7442,"AM":0,"x":37.437,"y":21.883,"w":9.73,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_1","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_1_","EN":0},"TI":7443,"AM":0,"x":47.518,"y":21.883,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_1_","EN":0},"TI":7444,"AM":0,"x":58.655,"y":21.883,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_1_","EN":0},"TI":7445,"AM":0,"x":69.793,"y":21.883,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_1_","EN":0},"TI":7446,"AM":0,"x":77.218,"y":21.883,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_1_","EN":0},"TI":7447,"AM":1024,"x":88.355,"y":21.883,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_2_","EN":0},"TI":7448,"AM":0,"x":6.577,"y":23.383,"w":18.953,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_2"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_2_","EN":0},"TI":7449,"AM":0,"x":26.068,"y":23.315,"w":11.087,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_2","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_2_","EN":0},"TI":7450,"AM":0,"x":37.618,"y":23.383,"w":9.549,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_2","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_2_","EN":0},"TI":7451,"AM":0,"x":47.518,"y":23.383,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_2_","EN":0},"TI":7452,"AM":0,"x":58.655,"y":23.383,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_2_","EN":0},"TI":7453,"AM":0,"x":69.793,"y":23.383,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_2_","EN":0},"TI":7454,"AM":0,"x":77.094,"y":23.383,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_2_","EN":0},"TI":7455,"AM":1024,"x":88.355,"y":23.383,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_3_","EN":0},"TI":7456,"AM":0,"x":6.577,"y":24.883,"w":18.953,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_3"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_3_","EN":0},"TI":7457,"AM":0,"x":26.236,"y":24.877,"w":10.862,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_3","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_3_","EN":0},"TI":7458,"AM":0,"x":37.468,"y":24.883,"w":9.699,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_3","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_3_","EN":0},"TI":7459,"AM":0,"x":47.518,"y":24.883,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_3_","EN":0},"TI":7460,"AM":0,"x":58.655,"y":24.883,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_3_","EN":0},"TI":7461,"AM":0,"x":69.793,"y":24.883,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_3_","EN":0},"TI":7462,"AM":0,"x":77.218,"y":24.883,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_3_","EN":0},"TI":7463,"AM":1024,"x":88.355,"y":24.883,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_4_","EN":0},"TI":7464,"AM":0,"x":6.577,"y":26.383,"w":19.04,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_4"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_4_","EN":0},"TI":7465,"AM":0,"x":26.18,"y":26.336,"w":10.862,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_4","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_4_","EN":0},"TI":7466,"AM":0,"x":37.58,"y":26.383,"w":9.587,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_4","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_4_","EN":0},"TI":7467,"AM":0,"x":47.518,"y":26.383,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_4_","EN":0},"TI":7468,"AM":0,"x":58.655,"y":26.383,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_4_","EN":0},"TI":7469,"AM":0,"x":69.793,"y":26.383,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_4_","EN":0},"TI":7470,"AM":0,"x":77.218,"y":26.383,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_4_","EN":0},"TI":7471,"AM":1024,"x":88.355,"y":26.383,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_5_","EN":0},"TI":7472,"AM":0,"x":6.577,"y":27.883,"w":18.819,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_5"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_5_","EN":0},"TI":7473,"AM":0,"x":26.18,"y":27.836,"w":10.862,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_5","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_5_","EN":0},"TI":7474,"AM":0,"x":37.618,"y":27.883,"w":9.549,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_5_","EN":0},"TI":7475,"AM":0,"x":47.518,"y":27.883,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_5_","EN":0},"TI":7476,"AM":0,"x":58.655,"y":27.928,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_5_","EN":0},"TI":7477,"AM":0,"x":69.793,"y":27.883,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_5_","EN":0},"TI":7478,"AM":0,"x":77.218,"y":27.883,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_5_","EN":0},"TI":7479,"AM":1024,"x":88.355,"y":27.883,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_6_","EN":0},"TI":7480,"AM":0,"x":6.577,"y":29.383,"w":19.065,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_6"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_6_","EN":0},"TI":7481,"AM":0,"x":26.18,"y":29.336,"w":10.937,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_6","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_6_","EN":0},"TI":7482,"AM":0,"x":37.355,"y":29.383,"w":9.812,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_7","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_6_","EN":0},"TI":7483,"AM":0,"x":47.518,"y":29.383,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_6_","EN":0},"TI":7484,"AM":0,"x":58.655,"y":29.383,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_6_","EN":0},"TI":7485,"AM":0,"x":69.793,"y":29.383,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_6_","EN":0},"TI":7486,"AM":0,"x":77.218,"y":29.383,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_6_","EN":0},"TI":7487,"AM":1024,"x":88.355,"y":29.383,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_7_","EN":0},"TI":7488,"AM":0,"x":6.577,"y":30.883,"w":18.99,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_7"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_7_","EN":0},"TI":7489,"AM":0,"x":26.18,"y":30.836,"w":10.787,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_7","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_7_","EN":0},"TI":7490,"AM":0,"x":37.336,"y":30.883,"w":9.831,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_7","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_7_","EN":0},"TI":7491,"AM":0,"x":47.518,"y":30.883,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_7_","EN":0},"TI":7492,"AM":0,"x":58.655,"y":30.883,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_7_","EN":0},"TI":7493,"AM":0,"x":69.793,"y":30.883,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_7_","EN":0},"TI":7494,"AM":0,"x":77.218,"y":30.883,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_7_","EN":0},"TI":7495,"AM":1024,"x":88.355,"y":30.883,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_8_","EN":0},"TI":7496,"AM":0,"x":6.577,"y":32.383,"w":18.915,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_8"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_8_","EN":0},"TI":7497,"AM":0,"x":26.33,"y":32.417,"w":10.712,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_8","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_8_","EN":0},"TI":7498,"AM":0,"x":37.243,"y":32.383,"w":9.924,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_8","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_8_","EN":0},"TI":7499,"AM":0,"x":47.518,"y":32.383,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_8_","EN":0},"TI":7500,"AM":0,"x":58.655,"y":32.383,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_8_","EN":0},"TI":7501,"AM":0,"x":69.793,"y":32.383,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_8_","EN":0},"TI":7502,"AM":0,"x":77.218,"y":32.383,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_8_","EN":0},"TI":7503,"AM":1024,"x":88.355,"y":32.383,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_9_","EN":0},"TI":7504,"AM":0,"x":6.577,"y":33.883,"w":19.065,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_9"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_9_","EN":0},"TI":7505,"AM":0,"x":26.33,"y":33.917,"w":10.637,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_9","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_9_","EN":0},"TI":7506,"AM":0,"x":37.186,"y":33.883,"w":9.981,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_9","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_9_","EN":0},"TI":7507,"AM":0,"x":47.518,"y":33.883,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_9_","EN":0},"TI":7508,"AM":0,"x":58.655,"y":33.883,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_9_","EN":0},"TI":7509,"AM":0,"x":69.793,"y":33.883,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_9_","EN":0},"TI":7510,"AM":0,"x":77.218,"y":33.883,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_9_","EN":0},"TI":7511,"AM":1024,"x":88.355,"y":33.883,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_10_","EN":0},"TI":7512,"AM":0,"x":6.577,"y":35.383,"w":18.84,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_10"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_10_","EN":0},"TI":7513,"AM":0,"x":26.33,"y":35.417,"w":10.637,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_10","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_10_","EN":0},"TI":7514,"AM":0,"x":37.186,"y":35.383,"w":9.981,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_10","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_10_","EN":0},"TI":7515,"AM":0,"x":47.518,"y":35.383,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_10_","EN":0},"TI":7516,"AM":0,"x":58.655,"y":35.383,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_10_","EN":0},"TI":7517,"AM":0,"x":69.793,"y":35.383,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_10_","EN":0},"TI":7518,"AM":0,"x":77.218,"y":35.383,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_10_","EN":0},"TI":7519,"AM":1024,"x":88.355,"y":35.383,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_11_","EN":0},"TI":7520,"AM":0,"x":6.577,"y":36.883,"w":18.915,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_11"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_11_","EN":0},"TI":7521,"AM":0,"x":26.33,"y":36.917,"w":10.712,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_11","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_11_","EN":0},"TI":7522,"AM":0,"x":37.186,"y":36.883,"w":9.981,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_11","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_11_","EN":0},"TI":7523,"AM":0,"x":47.518,"y":36.883,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_11_","EN":0},"TI":7524,"AM":0,"x":58.655,"y":36.883,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_11"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_11_","EN":0},"TI":7525,"AM":0,"x":69.793,"y":36.883,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_11_","EN":0},"TI":7526,"AM":0,"x":77.218,"y":36.883,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_11_","EN":0},"TI":7527,"AM":1024,"x":88.355,"y":36.883,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_11"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_12_","EN":0},"TI":7528,"AM":0,"x":6.577,"y":38.383,"w":18.915,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_12"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_12_","EN":0},"TI":7529,"AM":0,"x":26.33,"y":38.417,"w":10.712,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_12","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_12_","EN":0},"TI":7530,"AM":0,"x":37.243,"y":38.383,"w":9.924,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_12","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_12_","EN":0},"TI":7531,"AM":0,"x":47.518,"y":38.383,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_12_","EN":0},"TI":7532,"AM":0,"x":58.655,"y":38.383,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_12_","EN":0},"TI":7533,"AM":0,"x":69.793,"y":38.383,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_12_","EN":0},"TI":7534,"AM":0,"x":77.218,"y":38.383,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_12_","EN":0},"TI":7535,"AM":1024,"x":88.355,"y":38.383,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_13_","EN":0},"TI":7536,"AM":0,"x":6.577,"y":39.883,"w":18.84,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_13"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_13_","EN":0},"TI":7537,"AM":0,"x":26.33,"y":39.917,"w":10.712,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_13","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_13_","EN":0},"TI":7538,"AM":0,"x":37.243,"y":39.883,"w":9.924,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_13","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_13_","EN":0},"TI":7539,"AM":0,"x":47.518,"y":39.883,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_13_","EN":0},"TI":7540,"AM":0,"x":58.655,"y":39.883,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_13"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_13_","EN":0},"TI":7541,"AM":0,"x":69.793,"y":39.883,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_13_","EN":0},"TI":7542,"AM":0,"x":77.218,"y":39.883,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_13_","EN":0},"TI":7543,"AM":1024,"x":88.355,"y":39.883,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_13"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1A_14_","EN":0},"TI":7544,"AM":0,"x":6.577,"y":41.383,"w":18.84,"h":1.334,"TU":"1 (a) Description of property (Example: 100 sh. XYZ Co.)_Row_14"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1C_14_","EN":0},"TI":7545,"AM":0,"x":26.33,"y":41.417,"w":10.787,"h":1.334,"TU":"(b) Date acquired (Mo., day, yr.)_Row_14","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1D_14_","EN":0},"TI":7546,"AM":0,"x":37.299,"y":41.383,"w":9.868,"h":1.334,"TU":"(c) Date sold or disposed (Mo., day, yr.)_Row_14","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1E_14_","EN":0},"TI":7547,"AM":0,"x":47.518,"y":41.383,"w":10.787,"h":1.334,"TU":"(d) Proceeds (sales price) (see instructions)_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1F_14_","EN":0},"TI":7548,"AM":0,"x":58.655,"y":41.383,"w":10.787,"h":1.334,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_Row_14"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1B_14_","EN":0},"TI":7549,"AM":0,"x":69.917,"y":41.383,"w":7.074,"h":1.334,"TU":"(f) Code(s) from instructions_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1G_14_","EN":0},"TI":7550,"AM":0,"x":77.218,"y":41.383,"w":10.787,"h":1.334,"TU":"(g) Amount of adjustment_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHORTTBL_L1H_14_","EN":0},"TI":7551,"AM":1024,"x":88.355,"y":41.383,"w":10.89,"h":1.334,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_Row_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2E","EN":0},"TI":7552,"AM":1024,"x":47.375,"y":43.338,"w":10.663,"h":2.354,"TU":"(d) Proceeds (sales price) (see instructions)_2 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 1 (if Box A above is checked), line 2 (if Box B above is checked), or line 3 (if Box C above is checked) . a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2F","EN":0},"TI":7553,"AM":1024,"x":58.512,"y":43.338,"w":10.663,"h":2.354,"TU":"(e) Cost or other basis. See the Note below and see Column (e) in the separate instructions_2 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 1 (if Box A above is checked), line 2 (if Box B above is checked), or line 3 (if Box C above is checked) . a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2G","EN":0},"TI":7554,"AM":1024,"x":77.075,"y":43.338,"w":10.663,"h":2.354,"TU":"(g) Amount of adjustment_2 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 1 (if Box A above is checked), line 2 (if Box B above is checked), or line 3 (if Box C above is checked) . a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2H","EN":0},"TI":7555,"AM":1024,"x":88.212,"y":43.338,"w":10.766,"h":2.354,"TU":"(h) Gain or (loss). Subtract column (e) from column (d) and combine the result with column (g)_2 Totals. Add the amounts in columns (d), (e), (g), and (h) (subtract negative amounts). Enter each total here and include on your Schedule D, line 1 (if Box A above is checked), line 2 (if Box B above is checked), or line 3 (if Box C above is checked) . a"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STBOXA","EN":0},"TI":7437,"AM":0,"x":8.486,"y":14.944,"w":1.601,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STBOXB","EN":0},"TI":7438,"AM":0,"x":8.682,"y":15.618,"w":1.601,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STBOXC","EN":0},"TI":7439,"AM":0,"x":8.279,"y":16.437,"w":2.098,"h":0.833,"checked":false}],"id":{"Id":"BOXESRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8959.content.txt b/test/data/fd/form/F8959.content.txt new file mode 100755 index 00000000..34f5f38d --- /dev/null +++ b/test/data/fd/form/F8959.content.txt @@ -0,0 +1,176 @@ +Form + +8959 + +Department of the Treasury +Internal Revenue Service +Additional Medicare Tax +a + +If any line does not apply to you, leave it blank. See separate instructions. + +a + +Attach to Form 1040, 1040NR, 1040-PR, or 1040-SS. + + +a + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +71 +Name(s) shown on Form 1040 +Your social security number +Part I +Additional Medicare Tax on Medicare Wages +1 +Medicare wages and tips from Form W-2, box 5. If you have +more than one Form W-2, enter the total of the amounts +from box 5 +................ +1 +2 +Unreported tips from Form 4137, line 6 +....... +2 +3 +Wages from Form 8919, line 6 +.......... +3 +4 +Add lines 1 through 3 +............. +4 +5 +Enter the following amount for your filing status: +Married filing jointly +.......... +$250,000 +Married filing separately +........ +$125,000 +Single, Head of household, or Qualifying widow(er) + $200,000 +5 +6 +Subtract line 5 from line 4. If the result is zero or less, enter -0- +.......... +6 +7 +Additional Medicare Tax on Medicare wages. Multiply line 6 by 0.9% (.009). Enter here and +go to Part II +........................... +7 +Part II +Additional Medicare Tax on Self-Employment Income +8 +Self-employment income from Schedule SE (Form 1040), +Section A, line 4, or Section B, line 6. If you had a loss, enter +-0- (Form 1040-PR and Form 1040-SS filers, see instructions.) +8 +9 +Enter the following amount for your filing status: +Married filing jointly +.......... +$250,000 +Married filing separately +........ +$125,000 +Single, Head of household, or Qualifying widow(er) + $200,000 +9 +10 +Enter the amount from line 4 +.......... +10 +11 +Subtract line 10 from line 9. If zero or less, enter -0- . . . +11 +12 +Subtract line 11 from line 8. If the result is zero or less, enter -0- +.......... +12 +13 +Additional Medicare Tax on self-employment income. Multiply line 12 by 0.9% (.009). Enter +here and go to Part III +........................ +13 +Part III +Additional Medicare Tax on Railroad Retirement Tax Act (RRTA) Compensation +14 +Railroad retirement (RRTA) compensation and tips from +Form(s) W-2, box 14 (see instructions) +....... +14 +15 +Enter the following amount for your filing status: +Married filing jointly +.......... +$250,000 +Married filing separately +........ +$125,000 +Single, Head of household, or Qualifying widow(er) + $200,000 +15 +16 +Subtract line 15 from line 14. If zero or less, enter -0- +............. +16 +17 +Additional Medicare Tax on railroad retirement (RRTA) compensation. Multiply line 16 by +0.9% (.009). Enter here and go to Part IV +................. +17 +Part IV +Total Additional Medicare Tax +18 +Add lines 7, 13, and 17. Also include this amount on Form 1040, line 60, (Form 1040NR, +1040-PR, and 1040-SS filers, see instructions) and go to Part V +........ +18 +Part V +Withholding Reconciliation +19 +Medicare tax withheld from Form W-2, box 6. If you have +more than one Form W-2, enter the total of the amounts +from box 6 +................ +19 +20 +Enter the amount from line 1 +.......... +20 +21 +Multiply line 20 by 1.45% (.0145). This is your regular +Medicare tax withholding on Medicare wages +..... +21 +22 +Subtract line 21 from line 19. This is your Additional Medicare Tax withholding on Medicare +wages +............................. +22 +23 +Additional Medicare Tax withholding on railroad retirement (RRTA) compensation from Form +W-2, box 14 (see instructions) +..................... +23 +24 +Total Additional Medicare Tax withholding. +Add lines 22 and 23. Also include this + +amount with federal income tax withholding on Form 1040, line 62 (Form 1040NR, 1040-PR, +and 1040-SS filers, see instructions) +................... +24 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 59475X +Form +8959 +(2013) +Information about Form 8959 and its instructions is at www.irs.gov/form8959. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8959.fields.json b/test/data/fd/form/F8959.fields.json new file mode 100755 index 00000000..93fb41ec --- /dev/null +++ b/test/data/fd/form/F8959.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"W2MCBX5","type":"number","calc":false,"value":""},{"id":"UNRPTTIP","type":"number","calc":true,"value":""},{"id":"WAGE8919","type":"number","calc":true,"value":""},{"id":"TOTAL1","type":"number","calc":true,"value":""},{"id":"FSAMT1","type":"number","calc":false,"value":""},{"id":"TOTAL2","type":"number","calc":true,"value":""},{"id":"ADLMCTX5","type":"number","calc":true,"value":""},{"id":"SEINC","type":"number","calc":false,"value":""},{"id":"FSAMT2","type":"number","calc":false,"value":""},{"id":"TOTAL3","type":"number","calc":true,"value":""},{"id":"TOTAL4","type":"number","calc":true,"value":""},{"id":"TOTAL5","type":"number","calc":true,"value":""},{"id":"ADDMCSE","type":"number","calc":true,"value":""},{"id":"RRTAW2","type":"number","calc":false,"value":""},{"id":"FSAMT3","type":"number","calc":false,"value":""},{"id":"TOTAL6","type":"number","calc":true,"value":""},{"id":"ADDLMCRR","type":"number","calc":true,"value":""},{"id":"TOTAL7","type":"number","calc":true,"value":""},{"id":"W2MCBX6","type":"number","calc":false,"value":""},{"id":"W2BX7","type":"number","calc":true,"value":""},{"id":"REGMCTX","type":"number","calc":true,"value":""},{"id":"ADLMCTX6","type":"number","calc":true,"value":""},{"id":"MCTRRTA","type":"number","calc":false,"value":""},{"id":"TLADDMCT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8959.json b/test/data/fd/form/F8959.json new file mode 100755 index 00000000..c237cd53 --- /dev/null +++ b/test/data/fd/form/F8959.json @@ -0,0 +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.936},{"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":7.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":54.409,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":9.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":9.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":10.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":11.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":58.122,"y":11.251,"w":1.125,"l":14.936},{"oc":"#221f1f","x":72.972,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":12.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":15.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":58.122,"y":15.001,"w":1.125,"l":14.936},{"oc":"#221f1f","x":72.972,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":15.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":17.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":18.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":54.409,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":23.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":58.122,"y":24.001,"w":1.125,"l":14.936},{"oc":"#221f1f","x":72.972,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":58.122,"y":24.751,"w":1.125,"l":14.936},{"oc":"#221f1f","x":72.972,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":25.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":27.001,"w":0.75,"l":3.798},{"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":54.409,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":29.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":32.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":58.122,"y":32.251,"w":1.125,"l":14.936},{"oc":"#221f1f","x":72.972,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":33.001,"w":0.75,"l":14.936},{"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":6.147,"y":34.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":35.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"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":54.409,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":39.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":58.122,"y":40.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":72.972,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":42.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":58.122,"y":42.001,"w":1.125,"l":14.936},{"oc":"#221f1f","x":72.972,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":43.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.247,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.684,"y":45.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":45.001,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.247,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":47.252,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.172,"y":47.251,"w":1.5,"l":32.261},{"oc":"#221f1f","x":85.347,"y":47.252,"w":1.5,"l":13.698}],"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":58.165,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.452,"y":7.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.015,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":7.485,"w":0.75,"l":7.531},{"oc":"#221f1f","x":76.727,"y":7.485,"w":0.75,"l":7.531},{"oc":"#221f1f","x":58.165,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.452,"y":10.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":73.015,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":11.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":54.452,"y":11.986,"w":0.75,"l":3.039},{"oc":"#221f1f","x":58.165,"y":14.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":73.015,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"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":80.44,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.727,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":17.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.452,"y":17.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.015,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":6.781},{"oc":"#221f1f","x":76.727,"y":17.985,"w":0.75,"l":6.781},{"oc":"#221f1f","x":58.165,"y":20.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":54.452,"y":20.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":58.165,"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":58.165,"y":23.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.452,"y":23.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":73.015,"y":23.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.452,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":73.015,"y":23.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"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":80.44,"y":25.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":25.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":27.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":73.015,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":27.736,"w":0.75,"l":4.531},{"oc":"#221f1f","x":76.727,"y":27.736,"w":0.75,"l":4.531},{"oc":"#221f1f","x":58.165,"y":29.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":54.452,"y":29.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":58.165,"y":31.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":73.015,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":32.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":35.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":35.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":37.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.452,"y":37.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.015,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":37.486,"w":0.75,"l":5.281},{"oc":"#221f1f","x":76.727,"y":37.486,"w":0.75,"l":5.281},{"oc":"#221f1f","x":58.165,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":39.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.165,"y":40.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":54.452,"y":40.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":73.015,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":42.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":43.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.727,"y":43.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":44.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":76.727,"y":44.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":46.486,"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":76.727,"y":7.501,"w":3.713,"h":7.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":17.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":76.727,"y":18.001,"w":3.713,"h":6.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":27.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":76.727,"y":27.751,"w":3.713,"h":4.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":34.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":36.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":76.727,"y":37.501,"w":3.713,"h":5.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.724,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.82,"y":2.724,"w":2.224,"clr":-1,"A":"left","R":[{"T":"8959","S":-1,"TS":[0,30.0001,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.86,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.251,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":39.232,"y":2.164,"w":11.503000000000004,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":27.64,"y":2.914,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":29.008,"y":3.008,"w":35.34599999999999,"clr":-1,"A":"left","R":[{"T":"If%20any%20line%20does%20not%20apply%20to%20you%2C%20leave%20it%20blank.%20See%20separate%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":34.811,"y":3.5389999999999997,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.18,"y":3.633,"w":24.342000000000013,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%201040-PR%2C%20or%201040-SS.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.58,"y":4.164,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,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":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.857,"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.303,"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.303,"w":1.112,"clr":-1,"A":"left","R":[{"T":"71","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":13.411000000000005,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":4.938,"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.533,"y":6.572,"w":21.117000000000008,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20on%20Medicare%20Wages","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":7.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.352,"w":27.097999999999992,"clr":-1,"A":"left","R":[{"T":"Medicare%20wages%20and%20tips%20from%20Form%20W-2%2C%20box%205.%20If%20you%20have%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.04,"w":25.28700000000001,"clr":-1,"A":"left","R":[{"T":"more%20than%20one%20Form%20W-2%2C%20enter%20the%20total%20of%20the%20amounts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.727,"w":5.131,"clr":-1,"A":"left","R":[{"T":"from%20box%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":8.727,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":8.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":9.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":9.59,"w":17.654000000000003,"clr":-1,"A":"left","R":[{"T":"Unreported%20tips%20from%20Form%204137%2C%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":9.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":13.727000000000006,"clr":-1,"A":"left","R":[{"T":"Wages%20from%20Form%208919%2C%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":10.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":9.559000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20through%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":11.09,"w":18.662,"clr":-1,"A":"left","R":[{"T":".............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":11.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":21.35400000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20following%20amount%20for%20your%20filing%20status%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":8.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":12.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.706,"y":12.59,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%24250%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":13.34,"w":10.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.623,"y":13.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.703,"y":13.34,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%24125%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.09,"w":22.555000000000003,"clr":-1,"A":"left","R":[{"T":"Single%2C%20Head%20of%20household%2C%20or%20Qualifying%20widow(er)","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":44.383,"y":14.09,"w":4.448,"clr":-1,"A":"left","R":[{"T":"%20%24200%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":14.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":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":28.152,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204.%20If%20the%20result%20is%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":14.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.903,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.665,"w":40.748999999999974,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20on%20Medicare%20wages.%20Multiply%20line%206%20by%200.9%25%20(.009).%20Enter%20here%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":5.500000000000002,"clr":-1,"A":"left","R":[{"T":"go%20to%20Part%20II%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":16.34,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.903,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":17.072,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":17.072,"w":25.228000000000005,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20on%20Self-Employment%20Income","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.853,"w":25.990000000000002,"clr":-1,"A":"left","R":[{"T":"Self-employment%20income%20from%20Schedule%20SE%20%20(Form%201040)%2C%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":10.891,"y":18.54,"w":27.246,"clr":-1,"A":"left","R":[{"T":"Section%20A%2C%20line%204%2C%20or%20Section%20B%2C%20line%206.%20If%20you%20had%20a%20loss%2C%20enter%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":10.887,"y":19.227,"w":27.989,"clr":-1,"A":"left","R":[{"T":"-0-%20(Form%201040-PR%20and%20Form%201040-SS%20filers%2C%20see%20instructions.)%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":55.628,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":21.35400000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20following%20amount%20for%20your%20filing%20status%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":8.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":20.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.706,"y":20.84,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%24250%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":21.59,"w":10.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.623,"y":21.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.703,"y":21.59,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%24125%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":22.555000000000003,"clr":-1,"A":"left","R":[{"T":"Single%2C%20Head%20of%20household%2C%20or%20Qualifying%20widow(er)","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":44.383,"y":22.34,"w":4.448,"clr":-1,"A":"left","R":[{"T":"%20%24200%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.628,"y":22.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.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":23.09,"w":12.968000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":23.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.198,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.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":23.84,"w":23.558999999999997,"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":48.964,"y":23.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.026,"y":23.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.198,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%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":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":28.708000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2011%20from%20line%208.%20If%20the%20result%20is%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":24.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.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":25.29,"w":40.789999999999985,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20on%20self-employment%20income.%20Multiply%20line%2012%20by%200.9%25%20(.009).%20Enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.977,"w":9.964,"clr":-1,"A":"left","R":[{"T":"here%20and%20go%20to%20Part%20III%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":25.977,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":26.822,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":26.822,"w":37.61699999999998,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20on%20Railroad%20Retirement%20Tax%20Act%20(RRTA)%20Compensation","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.665,"w":25.023000000000007,"clr":-1,"A":"left","R":[{"T":"Railroad%20retirement%20(RRTA)%20compensation%20and%20tips%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":16.966000000000005,"clr":-1,"A":"left","R":[{"T":"Form(s)%20W-2%2C%20box%2014%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":28.34,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.198,"y":28.34,"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.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":21.35400000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20following%20amount%20for%20your%20filing%20status%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":8.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":29.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.706,"y":29.84,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%24250%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":30.59,"w":10.685,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.623,"y":30.59,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.703,"y":30.59,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%24125%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":22.555000000000003,"clr":-1,"A":"left","R":[{"T":"Single%2C%20Head%20of%20household%2C%20or%20Qualifying%20widow(er)","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":44.383,"y":31.340000000000003,"w":4.448,"clr":-1,"A":"left","R":[{"T":"%20%24200%2C000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.198,"y":31.340000000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2014.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":32.09,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%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":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.903,"w":39.61799999999999,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20on%20railroad%20retirement%20(RRTA)%20compensation.%20Multiply%20line%2016%20by%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.528,"w":18.375000000000004,"clr":-1,"A":"left","R":[{"T":"0.9%25%20(.009).%20Enter%20here%20and%20go%20to%20Part%20IV%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":33.528,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":34.322,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":34.322,"w":14.170000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Additional%20Medicare%20Tax","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.165,"w":39.443,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%2C%2013%2C%20and%2017.%20Also%20include%20this%20amount%20on%20Form%201040%2C%20line%2060%2C%20(Form%201040NR%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":35.84,"w":28.451000000000004,"clr":-1,"A":"left","R":[{"T":"1040-PR%2C%20and%201040-SS%20filers%2C%20see%20instructions)%20and%20go%20to%20Part%20V%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.435,"y":35.84,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"x":6.55,"y":36.572,"w":3.168,"clr":1,"A":"left","R":[{"T":"Part%20V%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":36.572,"w":12.890000000000004,"clr":-1,"A":"left","R":[{"T":"Withholding%20Reconciliation","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.353,"w":25.726999999999993,"clr":-1,"A":"left","R":[{"T":"Medicare%20tax%20withheld%20from%20Form%20W-2%2C%20box%206.%20If%20you%20have%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.04,"w":25.28700000000001,"clr":-1,"A":"left","R":[{"T":"more%20than%20one%20Form%20W-2%2C%20enter%20the%20total%20of%20the%20amounts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.727,"w":5.131,"clr":-1,"A":"left","R":[{"T":"from%20box%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":38.727,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.198,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":12.968000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":39.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.198,"y":39.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":40.278,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.29,"w":23.896000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%201.45%25%20(.0145).%20This%20is%20your%20regular%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.977,"w":20.555999999999994,"clr":-1,"A":"left","R":[{"T":"Medicare%20tax%20withholding%20on%20Medicare%20wages%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":40.977,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.198,"y":41.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.915,"w":40.895999999999994,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2021%20from%20line%2019.%20This%20is%20your%20Additional%20Medicare%20Tax%20withholding%20on%20Medicare%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":2.906,"clr":-1,"A":"left","R":[{"T":"wages","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":42.59,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":".............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":43.403,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.403,"w":41.35699999999998,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20withholding%20on%20railroad%20retirement%20(RRTA)%20compensation%20from%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.078,"w":13.614000000000004,"clr":-1,"A":"left","R":[{"T":"W-2%2C%20box%2014%20%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":44.078,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":44.778,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.853,"w":20.615000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Additional%20Medicare%20Tax%20withholding.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.833,"y":44.853,"w":17.043000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2022%20and%2023.%20Also%20include%20this%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":45.54,"w":41.327000000000005,"clr":-1,"A":"left","R":[{"T":"amount%20with%20federal%20income%20tax%20withholding%20on%20Form%201040%2C%20line%2062%20(Form%201040NR%2C%201040-PR%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":46.228,"w":16.392000000000003,"clr":-1,"A":"left","R":[{"T":"and%201040-SS%20filers%2C%20see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":46.228,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.473,"y":46.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":47.046,"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":64.617,"y":47.126,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2059475X","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.01,"y":47.073,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":47.073,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8959%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.453,"y":47.073,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.898,"y":4.258,"w":36.73199999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208959%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform8959.","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7556,"AM":1024,"x":6.229,"y":5.838,"w":70.373,"h":0.889,"TU":"Name(s) shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7557,"AM":1024,"x":76.869,"y":5.885,"w":22.11,"h":0.843,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"W2MCBX5","EN":0},"TI":7558,"AM":0,"x":58.387,"y":8.972,"w":14.472,"h":0.833,"TU":"Line 1. Medicare wages and tips from Form W-2, box 5. If you have more than one Form W-2, enter the total of the amounts from box 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNRPTTIP","EN":0},"TI":7559,"AM":1024,"x":58.081,"y":9.776,"w":14.985,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WAGE8919","EN":0},"TI":7560,"AM":1024,"x":58.266,"y":10.538,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL1","EN":0},"TI":7561,"AM":1024,"x":58.313,"y":11.43,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FSAMT1","EN":0},"TI":7562,"AM":0,"x":58.277,"y":14.003,"w":14.664,"h":0.934,"TU":"Line 5. Enter the following amount for your filing status: Married filing jointly $250,000; Married filing separately $125,000; Single, Head of household, or Qualifying widow(er) $200,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL2","EN":0},"TI":7563,"AM":1024,"x":80.703,"y":14.835,"w":14.344,"h":0.84},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADLMCTX5","EN":0},"TI":7564,"AM":1024,"x":80.948,"y":16.155,"w":14.408,"h":0.999},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEINC","EN":0},"TI":7565,"AM":0,"x":58.207,"y":19.499,"w":14.664,"h":0.833,"TU":"Line 8. Self employment income from Schedule SE (Form 1040), Section A, line 4, or Section B, line 6. If you had a loss, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FSAMT2","EN":0},"TI":7566,"AM":0,"x":58.248,"y":22.442,"w":14.664,"h":0.833,"TU":"Line 9. Enter the following amount for your filing status: Married filing jointly $250,000; Married filing separately $125,000; Single, Head of household, or Qualifying Widow(er) $200,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL3","EN":0},"TI":7567,"AM":1024,"x":58.266,"y":23.288,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL4","EN":0},"TI":7568,"AM":1024,"x":58.266,"y":24.045,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL5","EN":0},"TI":7569,"AM":1024,"x":80.789,"y":24.464,"w":14.216,"h":0.999},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDMCSE","EN":0},"TI":7570,"AM":1024,"x":80.482,"y":25.968,"w":14.664,"h":0.934},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RRTAW2","EN":0},"TI":7571,"AM":0,"x":58.387,"y":28.213,"w":14.664,"h":0.999,"TU":"Line 14. Railroad retirement (RRTA) compensation and tips from Form(s) W-2, box 14 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FSAMT3","EN":0},"TI":7572,"AM":0,"x":58.26,"y":31.225,"w":14.664,"h":0.999,"TU":"Line 15. Enter the following amount for your filing status: Married filing jointly $250,000; Married filing separately $125,000; Single, Head of household, or Qualifying Widow(er) $200,000."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL6","EN":0},"TI":7573,"AM":1024,"x":80.609,"y":31.913,"w":14.664,"h":0.999},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDLMCRR","EN":0},"TI":7574,"AM":1024,"x":80.662,"y":33.371,"w":14.664,"h":0.999},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL7","EN":0},"TI":7575,"AM":1024,"x":80.683,"y":35.732,"w":14.664,"h":0.999},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"W2MCBX6","EN":0},"TI":7576,"AM":0,"x":58.26,"y":38.656,"w":14.664,"h":0.999,"TU":"Line 19. Medicare tax withheld for Form W-2, box 6. If you have more than one Form W-2, enter the total of the amounts from box 6."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"W2BX7","EN":0},"TI":7577,"AM":1024,"x":58.266,"y":39.788,"w":14.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REGMCTX","EN":0},"TI":7578,"AM":1024,"x":58.313,"y":41.002,"w":14.664,"h":0.999},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADLMCTX6","EN":0},"TI":7579,"AM":1024,"x":80.662,"y":42.329,"w":14.664,"h":0.999},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MCTRRTA","EN":0},"TI":7580,"AM":0,"x":80.623,"y":43.828,"w":14.499,"h":1.187,"TU":"Line 23. Additional Medicare Tax withholding on railroad retirement (RRTA) compensation from Form W-2, box 14 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TLADDMCT","EN":0},"TI":7581,"AM":1024,"x":80.535,"y":46.14,"w":14.664,"h":0.999}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F8960.content.txt b/test/data/fd/form/F8960.content.txt new file mode 100755 index 00000000..13be06c0 --- /dev/null +++ b/test/data/fd/form/F8960.content.txt @@ -0,0 +1,180 @@ +Form + 8960 +Department of the Treasury +Internal Revenue Service (99) +Net Investment Income Tax„ +Individuals, Estates, and Trusts +a + +Attach to Form 1040 or Form 1041. +a + +OMB No. XXXX-XXXX +20 +13 +Attachment +Sequence No. +72 + +Name(s) shown on Form 1040 or Form 1041 +Your social security number or EIN +Part I +Investment Income +Section 6013(g) election (see instructions) +Regulations section 1.1411-10(g) election (see instructions) +1 +Taxable interest (Form 1040, line 8a; or Form 1041, line 1) +............. +1 +2 +Ordinary dividends (Form 1040, line 9a; or Form 1041, line 2a) +........... +2 +3 +Annuities from nonqualified plans (see instructions) +............... +3 +4a +Rental real estate, royalties, partnerships, S corporations, trusts, +etc. (Form 1040, line 17; or Form 1041, line 5) +....... +4a +b +Adjustment for net income or loss derived in the ordinary course of +a non-section 1411 trade or business (see instructions) +.... +4b +c +Combine lines 4a and 4b +........................ +4c +5a +Net gain or loss from disposition of property from Form 1040, +combine lines 13 and 14; or from Form 1041, combine lines 4 and 7 +5a +b +Net gain or loss from disposition of property that is not subject to +net investment income tax (see instructions) +....... +5b +c +Adjustment from disposition of partnership interest or S corporation +stock (see instructions) +.............. +5c +d +Combine lines 5a through 5c +...................... +5d +6 +Changes to investment income for certain CFCs and PFICs (see instructions) +...... +6 +7 +Other modifications to investment income (see instructions) +............ +7 +8 +Total investment income. Combine lines 1, 2, 3, 4c, 5d, 6, and 7 +........... +8 +Part II +Investment Expenses Allocable to Investment Income and Modifications +9a +Investment interest expenses (see instructions) +...... +9a +b +State income tax (see instructions) +.......... +9b +c +Miscellaneous investment expenses (see instructions) +.... +9c +d +Add lines 9a, 9b, and 9c +........................ +9d +10 +Additional modifications (see instructions) +.................. +10 +11 +Total deductions and modifications. Add lines 9d and 10 +............. +11 +Part III +Tax Computation +12 +Net investment income. Subtract Part II, line 11 from Part I, line 8. Individuals complete lines 13– +17. Estates and trusts complete lines 18a–21. If zero or less, enter -0- +......... +12 +Individuals: +13 +Modified adjusted gross income (see instructions) +..... +13 +14 +Threshold based on filing status (see instructions) +..... +14 +15 +Subtract line 14 from line 13. If zero or less, enter -0- +.... +15 +16 +Enter the smaller of line 12 or line 15 +.................... +16 +17 +Net investment income tax for individuals. Multiply line 16 by 3.8% (.038). Enter here and on +Form 1040, line 60 +.......................... +17 +Estates and Trusts: +18a +Net investment income (line 12 above) +......... +18a +b +Deductions for distributions of net investment income and +deductions under section 642(c) (see instructions) +..... +18b +c +Undistributed net investment income. Subtract line 18b from 18a (see +instructions) . . . . +.............. +18c +19a +Adjusted gross income (see instructions) +........ +19a +b +Highest tax bracket for estates and trusts for the year (see +instructions) +.................. +19b +c +Subtract line 19b from line 19a. If zero or less, enter -0- . . . +19c +20 +Enter the smaller of line 18c or line 19c +................... +20 +21 +Net investment income tax for estates and trusts. Multiply line 20 by 3.8% (.038). Enter here and +on Form 1041, Schedule G, line 4 +..................... +21 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 59474M +Form + +8960 +(2013) + +Information about Form 8960 and its separate instructions is at www.irs.gov/form8960. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F8960.fields.json b/test/data/fd/form/F8960.fields.json new file mode 100755 index 00000000..2d72b0a4 --- /dev/null +++ b/test/data/fd/form/F8960.fields.json @@ -0,0 +1 @@ +[{"id":"SEC6013G","type":"box","calc":false,"value":""},{"id":"REGBOX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"INTEREST","type":"number","calc":true,"value":""},{"id":"DIVIDEND","type":"number","calc":true,"value":""},{"id":"ANNUITY","type":"number","calc":false,"value":""},{"id":"RENTAL","type":"number","calc":false,"value":""},{"id":"ADJUST4B","type":"number","calc":false,"value":""},{"id":"SUM4A4B","type":"number","calc":true,"value":""},{"id":"GAIN5A","type":"number","calc":false,"value":""},{"id":"GAIN5B","type":"number","calc":false,"value":""},{"id":"ADJUSTK1","type":"number","calc":false,"value":""},{"id":"SUMLN5","type":"number","calc":true,"value":""},{"id":"CHANGEII","type":"number","calc":false,"value":""},{"id":"OTHMOD","type":"number","calc":false,"value":""},{"id":"TOTPT1","type":"number","calc":true,"value":""},{"id":"INVINTEX","type":"number","calc":false,"value":""},{"id":"STATETAX","type":"number","calc":false,"value":""},{"id":"MISCEXP","type":"number","calc":false,"value":""},{"id":"SUMLN9","type":"number","calc":true,"value":""},{"id":"ADDMOD","type":"number","calc":false,"value":""},{"id":"TOTPT2","type":"number","calc":true,"value":""},{"id":"NETININI","type":"number","calc":true,"value":""},{"id":"MODAGI","type":"number","calc":false,"value":""},{"id":"THRSHOLD","type":"number","calc":false,"value":""},{"id":"SUBTRCTI","type":"number","calc":true,"value":""},{"id":"SMALLERI","type":"number","calc":true,"value":""},{"id":"NIITAXI","type":"number","calc":true,"value":""},{"id":"NETININF","type":"number","calc":true,"value":""},{"id":"DISTDED","type":"number","calc":true,"value":""},{"id":"UNDISNII","type":"number","calc":true,"value":""},{"id":"AGI","type":"number","calc":true,"value":""},{"id":"TOPBRAC","type":"number","calc":true,"value":""},{"id":"SUBTRCTF","type":"number","calc":true,"value":""},{"id":"SMALLERF","type":"number","calc":true,"value":""},{"id":"NETTAXF","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F8960.json b/test/data/fd/form/F8960.json new file mode 100755 index 00000000..89c12162 --- /dev/null +++ b/test/data/fd/form/F8960.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 8960","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":70.624},{"oc":"#221f1f","x":76.682,"y":6.75,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":31.244,"y":8.106,"w":0.75,"l":1.375},{"oc":"#221f1f","x":31.244,"y":7.606,"w":0.75,"l":1.375},{"oc":"#221f1f","x":33.37,"y":8.25,"w":0.75,"l":42.198},{"oc":"#221f1f","x":79.157,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":9.75,"w":0.75,"l":12.461},{"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.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":59.357,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":10.5,"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":59.357,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":13.5,"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":59.357,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"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":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21.75,"w":0.75,"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":1.125,"l":92.899},{"oc":"#221f1f","x":59.357,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":22.5,"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":59.357,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":24.75,"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":26.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":26.25,"w":1.125,"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":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":27,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":27.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":79.157,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.07,"y":31.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.445,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"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":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33,"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":59.357,"y":36,"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":1.125,"l":3.798},{"oc":"#221f1f","x":63.07,"y":37.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.445,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":39,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":39.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":41.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.07,"y":41.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.445,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":42,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":42.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":44.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":44.25,"w":1.5,"l":45.873},{"oc":"#221f1f","x":46.982,"y":44.25,"w":1.5,"l":40.923},{"oc":"#221f1f","x":87.82,"y":44.25,"w":1.5,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.047},{"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":2.281},{"oc":"#221f1f","x":76.725,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":32.619,"y":7.606,"w":0.75,"l":0.5},{"oc":"#221f1f","x":31.244,"y":7.606,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.913,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":8.984,"w":0.75,"l":0.781},{"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.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":10.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.2,"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":75.488,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":14.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":14.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.234,"w":0.75,"l":4.531},{"oc":"#221f1f","x":79.2,"y":14.234,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":4.531},{"oc":"#221f1f","x":75.488,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":17.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":17.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"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":82.913,"y":20.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":20.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.2,"y":22.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":22.484,"w":0.75,"l":2.281},{"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":59.4,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"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":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":25.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":25.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"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":95.288,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":27.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":27.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":27.734,"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":29.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.2,"y":29.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":63.113,"y":29.984,"w":0.75,"l":0.782},{"oc":"#221f1f","x":59.4,"y":29.984,"w":0.75,"l":0.782},{"oc":"#221f1f","x":75.488,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.4,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"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":95.288,"y":32.234,"w":0.75,"l":0.781},{"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":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":34.484,"w":0.75,"l":7.531},{"oc":"#221f1f","x":79.2,"y":34.484,"w":0.75,"l":7.531},{"oc":"#221f1f","x":95.287,"y":34.484,"w":0.75,"l":7.531},{"oc":"#221f1f","x":59.4,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":35.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.4,"y":35.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.487,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.4,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":39.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.4,"y":39.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.487,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.487,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.912,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.912,"y":42.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":42.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.287,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.287,"y":43.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":6.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.2,"y":10.5,"w":3.712,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.2,"y":14.25,"w":3.712,"h":4.5,"clr":-1},{"oc":"#221f1f","x":6.188,"y":21.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.2,"y":22.5,"w":3.712,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.188,"y":27,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":79.2,"y":29.25,"w":3.712,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.2,"y":34.5,"w":3.713,"h":7.5,"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":8.746,"y":2.634,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"%208960","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.7750000000000004,"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.275,"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.222,"y":2.1,"w":13.726000000000004,"clr":-1,"A":"left","R":[{"T":"Net%20Investment%20Income%20Tax%E2%80%9E%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":35.38,"y":2.913,"w":15.005000000000003,"clr":-1,"A":"left","R":[{"T":"Individuals%2C%20Estates%2C%20and%20Trusts","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":41.665,"y":3.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.935,"y":3.607,"w":16.449000000000005,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201041.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.319,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":85.476,"y":1.972,"w":9.723,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%20XXXX-XXXX","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":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":"72","S":10,"TS":[0,14,1,0]}]},{"oc":"#201e1f","x":5.938,"y":4.937,"w":19.710000000000008,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040%20or%20Form%201041","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":4.937,"w":16.672000000000004,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20or%20EIN","S":8,"TS":[0,10,1,0]}]},{"x":6.836,"y":6.571,"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":6.696,"w":9.058,"clr":-1,"A":"left","R":[{"T":"Investment%20Income","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":33.163,"y":6.608,"w":18.59500000000001,"clr":-1,"A":"left","R":[{"T":"Section%206013(g)%20election%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.163,"y":7.3580000000000005,"w":26.33800000000001,"clr":-1,"A":"left","R":[{"T":"Regulations%20section%201.1411-10(g)%20election%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":25.711000000000013,"clr":-1,"A":"left","R":[{"T":"Taxable%20interest%20(Form%201040%2C%20line%208a%3B%20or%20Form%201041%2C%20line%201)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":8.089,"w":18.662,"clr":-1,"A":"left","R":[{"T":".............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":8.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":8.839,"w":27.843000000000007,"clr":-1,"A":"left","R":[{"T":"Ordinary%20dividends%20(Form%201040%2C%20line%209a%3B%20or%20Form%201041%2C%20line%202a)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":8.839,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":8.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":9.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":9.589,"w":22.986000000000008,"clr":-1,"A":"left","R":[{"T":"Annuities%20from%20nonqualified%20plans%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":9.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":9.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":10.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":10.402,"w":28.966,"clr":-1,"A":"left","R":[{"T":"Rental%20real%20estate%2C%20royalties%2C%20partnerships%2C%20S%20corporations%2C%20trusts%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.089,"w":20.56400000000001,"clr":-1,"A":"left","R":[{"T":"etc.%20(Form%201040%2C%20line%2017%3B%20or%20Form%201041%2C%20line%205)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":11.089,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.132,"y":11.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":11.902,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":11.902,"w":30.08,"clr":-1,"A":"left","R":[{"T":"Adjustment%20for%20net%20income%20or%20loss%20derived%20in%20the%20ordinary%20course%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":12.589,"w":24.48700000000001,"clr":-1,"A":"left","R":[{"T":"a%20non-section%201411%20trade%20or%20business%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":12.589,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.104,"y":12.589,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":13.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":13.339,"w":11.412000000000004,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%204a%20and%204b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":13.339,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.932,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":14.152,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"5a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":14.152,"w":27.691000000000003,"clr":-1,"A":"left","R":[{"T":"Net%20gain%20or%20loss%20from%20disposition%20of%20property%20from%20Form%201040%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":14.839,"w":30.495000000000008,"clr":-1,"A":"left","R":[{"T":"combine%20lines%2013%20and%2014%3B%20or%20from%20Form%201041%2C%20combine%20lines%204%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.132,"y":14.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":15.713999999999999,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":15.652000000000001,"w":29.394000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20gain%20or%20loss%20from%20disposition%20of%20property%20that%20is%20not%20subject%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":16.339,"w":19.61600000000001,"clr":-1,"A":"left","R":[{"T":"net%20investment%20income%20tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.062,"y":16.339,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.104,"y":16.339,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":17.214,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":17.152,"w":30.209,"clr":-1,"A":"left","R":[{"T":"Adjustment%20from%20disposition%20of%20partnership%20interest%20or%20S%20corporation","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":17.839,"w":10.557,"clr":-1,"A":"left","R":[{"T":"stock%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.627,"y":17.839,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.132,"y":17.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":18.589,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":18.589,"w":13.134000000000004,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%205a%20through%205c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":18.589,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.904,"y":18.589,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":19.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":19.339,"w":34.523999999999994,"clr":-1,"A":"left","R":[{"T":"Changes%20to%20investment%20income%20for%20certain%20CFCs%20and%20PFICs%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":19.339,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":19.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":20.089,"w":26.785000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20modifications%20to%20investment%20income%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":20.089,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":20.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":20.839,"w":28.75399999999999,"clr":-1,"A":"left","R":[{"T":"Total%20investment%20income.%20Combine%20lines%201%2C%202%2C%203%2C%204c%2C%205d%2C%206%2C%20and%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.437,"y":20.839,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":20.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":9,"TS":[0,12,1,0]}]},{"x":6.582,"y":21.571,"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":21.571,"w":34.28699999999999,"clr":-1,"A":"left","R":[{"T":"Investment%20Expenses%20Allocable%20to%20Investment%20Income%20and%20Modifications","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.552,"y":22.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"9a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":22.339,"w":21.18900000000001,"clr":-1,"A":"left","R":[{"T":"Investment%20interest%20expenses%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.124,"y":22.339,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.132,"y":22.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":23.089,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":23.089,"w":15.669000000000002,"clr":-1,"A":"left","R":[{"T":"State%20income%20tax%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":23.089,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.104,"y":23.089,"w":1.167,"clr":-1,"A":"left","R":[{"T":"9b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":23.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":23.839,"w":23.930000000000007,"clr":-1,"A":"left","R":[{"T":"Miscellaneous%20investment%20expenses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":23.839,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.132,"y":23.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":24.589,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":24.589,"w":11.116000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209a%2C%209b%2C%20and%209c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.625,"y":24.589,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.904,"y":24.589,"w":1.167,"clr":-1,"A":"left","R":[{"T":"9d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":25.339,"w":18.873000000000005,"clr":-1,"A":"left","R":[{"T":"Additional%20modifications%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41,"y":25.339,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":26.089,"w":25.49,"clr":-1,"A":"left","R":[{"T":"Total%20deductions%20and%20modifications.%20Add%20lines%209d%20and%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":26.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":9,"TS":[0,12,1,0]}]},{"x":6.328,"y":26.821,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":26.821,"w":8.167,"clr":-1,"A":"left","R":[{"T":"Tax%20Computation","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":27.652,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":27.652,"w":42.955999999999975,"clr":-1,"A":"left","R":[{"T":"Net%20investment%20income.%20Subtract%20Part%20II%2C%20line%2011%20from%20Part%20I%2C%20line%208.%20Individuals%20complete%20lines%2013%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":28.339,"w":31.302999999999987,"clr":-1,"A":"left","R":[{"T":"17.%20Estates%20and%20trusts%20complete%20lines%2018a%E2%80%9321.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.557,"y":28.339,"w":11.997,"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":"12","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":29.134,"w":5.5569999999999995,"clr":-1,"A":"left","R":[{"T":"Individuals%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":29.839,"w":22.46700000000001,"clr":-1,"A":"left","R":[{"T":"Modified%20adjusted%20gross%20income%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":29.839,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.146,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":30.589,"w":22.374000000000006,"clr":-1,"A":"left","R":[{"T":"Threshold%20based%20on%20filing%20status%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":30.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.146,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":31.339,"w":23.837,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2014%20from%20line%2013.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":31.339,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.146,"y":31.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":32.089,"w":16.541000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2012%20or%20line%2015%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":32.089,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":32.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.889,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":32.914,"w":40.99399999999998,"clr":-1,"A":"left","R":[{"T":"Net%20investment%20income%20tax%20for%20individuals.%20Multiply%20line%2016%20by%203.8%25%20(.038).%20Enter%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":33.589,"w":8.597000000000003,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2060%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.499,"y":33.589,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":33.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":34.384,"w":9.28,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20Trusts%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":35.089,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"18a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":35.089,"w":17.320000000000007,"clr":-1,"A":"left","R":[{"T":"Net%20investment%20income%20(line%2012%20above)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":35.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.702,"y":35.089,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"18a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":35.902,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":35.902,"w":26.156,"clr":-1,"A":"left","R":[{"T":"Deductions%20for%20distributions%20of%20net%20investment%20income%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":36.589,"w":22.190000000000012,"clr":-1,"A":"left","R":[{"T":"deductions%20under%20section%20642(c)%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":36.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.76,"y":36.589,"w":1.723,"clr":-1,"A":"left","R":[{"T":"18b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":37.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":37.414,"w":31.306999999999995,"clr":-1,"A":"left","R":[{"T":"Undistributed%20net%20investment%20income.%20Subtract%20line%2018b%20from%2018a%20(see%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.887,"y":38.089,"w":6.001000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20.","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":22.438,"y":38.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":24.5,"y":38.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":26.563,"y":38.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":28.626,"y":38.089,"w":19.6546,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":59.702,"y":38.089,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"18c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":38.839,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"19a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":38.839,"w":18.392000000000007,"clr":-1,"A":"left","R":[{"T":"Adjusted%20gross%20income%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41,"y":38.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.702,"y":38.839,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":39.589,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":39.664,"w":26.224999999999994,"clr":-1,"A":"left","R":[{"T":"Highest%20tax%20bracket%20for%20estates%20and%20trusts%20for%20the%20year%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":40.339,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.37,"y":40.339,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.674,"y":40.339,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.412,"y":41.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":41.089,"w":24.966999999999995,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2019b%20from%20line%2019a.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.313,"y":41.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.375,"y":41.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.437,"y":41.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.702,"y":41.089,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"19c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":41.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":41.839,"w":17.615000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2018c%20or%20line%2019c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":41.839,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":41.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":42.652,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.887,"y":42.652,"w":43.142999999999965,"clr":-1,"A":"left","R":[{"T":"Net%20investment%20income%20tax%20for%20estates%20and%20trusts.%20Multiply%20line%2020%20by%203.8%25%20(.038).%20Enter%20here%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":43.339,"w":15.228000000000003,"clr":-1,"A":"left","R":[{"T":"on%20Form%201041%2C%20Schedule%20G%2C%20line%204%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.814,"y":43.339,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":43.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.937,"y":44.145,"w":33.23,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,10.92,1,0]}]},{"oc":"#221f1f","x":62.602,"y":44.125,"w":7.633000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2059474M","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.008,"y":44.071,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.151,"y":44.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8960%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.451,"y":44.071,"w":2.742,"clr":-1,"A":"left","R":[{"T":"(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.637,"y":4.242,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%208960%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform8960.","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7582,"AM":1024,"x":6.229,"y":5.885,"w":70.373,"h":0.843,"TU":"Name(s) shown on Form 1040 or Form 1041"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7583,"AM":1024,"x":76.869,"y":5.848,"w":22.11,"h":0.879,"TU":"Your social security number or EIN"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTEREST","EN":0},"TI":7586,"AM":1024,"x":83,"y":8.257,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVIDEND","EN":0},"TI":7587,"AM":1024,"x":83.232,"y":9.061,"w":11.933,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ANNUITY","EN":0},"TI":7588,"AM":0,"x":83.105,"y":9.799,"w":12.189,"h":0.833,"TU":"line 3. Annuities from nonqualified plans (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENTAL","EN":0},"TI":7589,"AM":0,"x":63.278,"y":10.972,"w":12.066,"h":1.013,"TU":"Line 4a. Rental real estate, royalties, partnerships, S corporations, trusts, etc. (Form 1040, line 17; or Form 1041, line 5)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJUST4B","EN":0},"TI":7590,"AM":0,"x":63.283,"y":12.458,"w":12.066,"h":1.013,"TU":"Line 4b. Adjustment for net income or loss derived in the ordinary course of a non-section 1411 trade or business (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUM4A4B","EN":0},"TI":7591,"AM":1024,"x":83.158,"y":13.48,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GAIN5A","EN":0},"TI":7592,"AM":0,"x":63.239,"y":14.618,"w":12.153,"h":1.078,"TU":"Line 5a. Net gain or loss from disposition of property from Form 1040, combine lines 13 and 14; or from Form 1041, combine lines 4 and 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GAIN5B","EN":0},"TI":7593,"AM":0,"x":63.298,"y":16.274,"w":12.024,"h":0.961,"TU":"Line 5b. Net gain or loss from disposition of property that is not subject to net investment income tax (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJUSTK1","EN":0},"TI":7594,"AM":0,"x":63.215,"y":17.64,"w":12.345,"h":1.101,"TU":"Line 5c. Adjustment from disposition of property interest or S corporation stock (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUMLN5","EN":0},"TI":7595,"AM":1024,"x":83.031,"y":18.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHANGEII","EN":0},"TI":7596,"AM":0,"x":83.084,"y":19.599,"w":12.189,"h":0.833,"TU":"Line 6. Changes to investment income from certain CFCs and PFICs (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHMOD","EN":0},"TI":7597,"AM":0,"x":82.778,"y":20.337,"w":12.189,"h":0.833,"TU":"Line 7. Other modification to investment income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPT1","EN":0},"TI":7598,"AM":1024,"x":83.016,"y":21.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INVINTEX","EN":0},"TI":7599,"AM":0,"x":63.216,"y":22.545,"w":12.189,"h":0.833,"TU":"Line 9a. Investment interest expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATETAX","EN":0},"TI":7600,"AM":0,"x":63.216,"y":23.288,"w":12.189,"h":0.833,"TU":"Line 9b. State income tax (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MISCEXP","EN":0},"TI":7601,"AM":0,"x":63.216,"y":24.038,"w":12.189,"h":0.833,"TU":"Line 9c. Miscellaneous investment expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUMLN9","EN":0},"TI":7602,"AM":1024,"x":83.16,"y":24.446,"w":11.901,"h":1.039,"TU":"9d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDMOD","EN":0},"TI":7603,"AM":0,"x":83.016,"y":25.538,"w":12.189,"h":0.833,"TU":"Line 10. Additional modifications (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPT2","EN":0},"TI":7604,"AM":1024,"x":83.016,"y":26.295,"w":12.189,"h":0.833,"TU":"11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETININI","EN":0},"TI":7605,"AM":1024,"x":83.098,"y":27.974,"w":12.024,"h":1.327,"TU":"12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MODAGI","EN":0},"TI":7606,"AM":0,"x":63.236,"y":30.008,"w":12.148,"h":0.833,"TU":"Line 13. Modified adjusted gross income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"THRSHOLD","EN":0},"TI":7607,"AM":0,"x":63.216,"y":30.788,"w":12.189,"h":0.833,"TU":"Line 14. Threshold based on filing status (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRCTI","EN":0},"TI":7608,"AM":1024,"x":63.216,"y":31.545,"w":12.189,"h":0.833,"TU":"15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLERI","EN":0},"TI":7609,"AM":1024,"x":83.16,"y":32.086,"w":11.901,"h":0.899,"TU":"16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NIITAXI","EN":0},"TI":7610,"AM":1024,"x":83.098,"y":33.151,"w":12.024,"h":1.334,"TU":"17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETININF","EN":0},"TI":7611,"AM":1024,"x":63.236,"y":35.323,"w":12.148,"h":0.833,"TU":"18a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISTDED","EN":0},"TI":7612,"AM":1024,"x":63.298,"y":36.151,"w":12.024,"h":1.327,"TU":"18b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDISNII","EN":0},"TI":7613,"AM":1024,"x":63.298,"y":37.724,"w":12.024,"h":1.327,"TU":"18c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGI","EN":0},"TI":7614,"AM":1024,"x":63.216,"y":39.038,"w":12.189,"h":0.833,"TU":"19a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOPBRAC","EN":0},"TI":7615,"AM":1024,"x":63.298,"y":39.901,"w":12.024,"h":1.327,"TU":"19b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRCTF","EN":0},"TI":7616,"AM":1024,"x":63.216,"y":41.295,"w":12.189,"h":0.833,"TU":"19c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMALLERF","EN":0},"TI":7617,"AM":1024,"x":83.16,"y":41.8,"w":11.901,"h":0.935,"TU":"20"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETTAXF","EN":0},"TI":7618,"AM":1024,"x":83.098,"y":42.967,"w":12.024,"h":1.319,"TU":"21"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SEC6013G","EN":0},"TI":7584,"AM":0,"x":31.247,"y":6.737,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REGBOX","EN":0},"TI":7585,"AM":0,"x":31.194,"y":7.459,"w":1.456,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F9465.content.txt b/test/data/fd/form/F9465.content.txt new file mode 100755 index 00000000..6634ccd3 --- /dev/null +++ b/test/data/fd/form/F9465.content.txt @@ -0,0 +1,244 @@ +Form + +9465 +(Rev. December 2013) +Department of the Treasury +Internal Revenue Service +Installment Agreement Request +a + +Information about Form 9465 and its separate instructions is at +www.irs.gov/form9465. + +a + +If you are filing this form with your tax return, attach it to the front of the return. + +a + +See separate instructions. +OMB No. 1545-0074 +Tip: +If you owe $50,000 or less, you may be able to establish an installment agreement online, even if you have not yet received a b +ill +for your taxes. Go to IRS.gov to apply to pay online. +Caution: +Do not file this form if + +you are currently making payments on an +installment agreement or can pay your balance in full within 120 days. Instead, call 1-800-829-1040. Do not file if your busine +ss is still +operating and owes employment or unemployment taxes. Instead, call the telephone number on your most recent notice. If you are +in +bankruptcy or we have accepted your offer-in-compromise, see +Bankruptcy or offer-in-compromise, +in the instructions. +Part I + +This request is for Form(s) (for example, Form 1040 or Form 941) + +a +and for tax year(s) (for example, 2012 and 2013) +a +1 +a +Your first name and initial +Last name +Your social security number +If a joint return, spouse’s first name and initial +Last name +Spouse’s social security number +Current address (number and street). If you have a P.O. box and no home delivery, enter your box number. +Apt. number +City, town or post office, state, and ZIP code. If a foreign address, also complete the spaces below (see instructions) +Foreign country name +Foreign province/state/county +Foreign postal code +1 +b +If this address is new since you filed your last tax return, check here +................. +a +2 +Name of your business (must be no longer operating) +Employer identification number (EIN) +3 +Your home phone number +Best time for us to call +4 +Your work phone number +Ext. +Best time for us to call +5 +Name of your bank or other financial institution: +Address +City, state, and ZIP code +6 +Your employer’s name: +Address +City, state, and ZIP code +7 +Enter the total amount you owe as shown on your tax return(s) (or notice(s)) +........ +7 +8 +Enter the amount of any payment you are making with your tax return(s) (or notice(s)). See instructions +8 +9 +Subtract line 8 from line 7 and enter the result +.................. +9 +10 +Enter the amount you can pay each month. Make your payments as large as possible to limit interest +and penalty charges. +The charges will continue until you pay in full. If no payment amount is listed +on line 10, a payment will be determined for you by dividing the balance due by 72 months + +.. +10 +12 +Enter the date you want to make your payment each month. +Do not +enter a date later than the 28th +a +13 +If you want to make your payments by direct debit from your checking account, see the instructions and fill in lines 13a and +13b. This is the most convenient way to make your payments and it will ensure that they are made on time. +a +a +Routing number +a +b +Account number +I authorize the U.S. Treasury and its designated Financial Agent to initiate a monthly ACH debit (electronic withdrawal) entry +to the financial +institution account indicated for payments of my Federal taxes owed, and the financial institution to debit the entry to this a +ccount. This +authorization is to remain in full force and effect until I notify the U.S. Treasury Financial Agent to terminate the authoriza +tion. To revoke +payment, I must contact the U.S. Treasury Financial Agent at +1-800-829-1040 +no later than 14 business days prior to the payment (settlement) +date. I also authorize the financial institutions involved in the processing of the electronic payments of taxes to receive con +fidential information +necessary to answer inquiries and resolve issues related to the payments. +Your signature +Date +Spouse’s signature. If a joint return, +both +must sign. +Date +For Privacy Act and Paperwork Reduction Act Notice, see instructions. +Cat. No. 14842Y +Form +9465 +(Rev. 12-2013) +11 +Divide the amount on line 9 by 72 and enter the result +............... +11 +• If the amount on line 10 is less than the amount on line 11 and you are unable to increase your payment to the amount on line + +11, complete and attach Form 433-F, Collection Information Statement. +• If the amount on line 10 is equal to or greater than the amount on line 11 but the amount you owe is greater than $25,000 but + +not more than $50,000, you must complete either line 13 or 14, if you do not wish to complete Form 433-F. +• If the amount on line 9 is greater than $50,000, complete and attach Form 433-F, Collection Information Statement. +14 +If you want to make your payments by payroll deduction, check this box and attach a completed Form 2159, Payroll Deduction +Agreement +..................................... +----------------Page (0) Break---------------- +Form 9465 (Rev. 12-2013) +Page +2 +Part II +Additional information. +Complete this part only if you have defaulted on an installment agreement within the +past 12 months and the amount you owe is greater than $25,000 but not more $50,000 and the amount on +line 10 is equal to or greater than the amount on line 11. If you owe more than $50,000, complete and attach +Form 433-F, Collection Information Statement. +15 +16a +Marital status: +Single. Skip question 16b and go to question 17. +Married. Go to question 16b. +b +Do you share household expenses with your spouse? +Yes. +No. +17 +How many dependents will you be able to claim on this year's tax return? +......... +17 +18 +How many people in your household are 65 or older? +............... +18 +19 +How often are you paid? +Once a week. +Once every two weeks. +Once a month. +Twice a month. +20 +What is your net income per pay period (take home pay)? +.............. +20 +$ +21 +How often is your spouse paid? +Once a week. +Once every two weeks. +Once a month. +Twice a month. +22 +What is your spouse's net income per pay period (take home pay)? +........... +22 +$ +23 +How many vehicles do you own? +...................... +23 +24 +How many car payments do you have each month? +................... +24 +25a +Do you have health insurance? +Yes. Go to question 25b. +No. Skip question 25b and go to question 26a. +b +Are your premiums deducted from your paycheck? +Yes. Skip question 25c and go to question 26a. +No. Go to question 25c. +c +How much are your monthly premiums? +................... +25c +$ +26a +Do you make court-ordered payments? +Yes. Go to question 26b. +No. Go to question 27. +b +Are your court-ordered payments deducted from your paycheck? +Yes. Go to question 27. +No. Go to question 26c. +c +How much are your court-ordered payments each month? +............. +26c +$ +27 +Not including any court-ordered payments for child and dependent support, how much do you pay +for child or dependent care each month? +................... +27 +$ +Form +9465 + (Rev. 12-2013) +In which county is your primary residence? +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/F9465.fields.json b/test/data/fd/form/F9465.fields.json new file mode 100755 index 00000000..bea2d543 --- /dev/null +++ b/test/data/fd/form/F9465.fields.json @@ -0,0 +1 @@ +[{"id":"BOX1","type":"box","calc":false,"value":""},{"id":"PYRLDED","type":"box","calc":false,"value":""},{"id":"L7","type":"alpha","calc":false,"value":""},{"id":"L8","type":"date","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"APT","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"BUSNM","type":"alpha","calc":false,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"HOMEPHON","type":"phone","calc":false,"value":""},{"id":"HTIME","type":"alpha","calc":false,"value":""},{"id":"WORKPHON","type":"phone","calc":false,"value":""},{"id":"EXT","type":"alpha","calc":false,"value":""},{"id":"WTIME","type":"alpha","calc":false,"value":""},{"id":"BANKNAME","type":"alpha","calc":false,"value":""},{"id":"EMPNAME","type":"alpha","calc":false,"value":""},{"id":"BANKADDR","type":"alpha","calc":false,"value":""},{"id":"EMPADDR","type":"alpha","calc":false,"value":""},{"id":"BANKCITY","type":"alpha","calc":false,"value":""},{"id":"BANKST","type":"alpha","calc":false,"value":""},{"id":"BANKZIP","type":"zip","calc":false,"value":""},{"id":"EMPCITY","type":"alpha","calc":false,"value":""},{"id":"EMPSTATE","type":"alpha","calc":false,"value":""},{"id":"EMPZIP","type":"zip","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"TTLTXDUE","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"CMTHPMT","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"MARSTSRB","type":"radio","calc":false,"value":"MSSINGLE"},{"id":"MARSTSRB","type":"radio","calc":false,"value":"MSMARRD"},{"id":"SHREXPRB","type":"radio","calc":false,"value":"SHEXPY"},{"id":"SHREXPRB","type":"radio","calc":false,"value":"SHEXPN"},{"id":"PAIDRB","type":"radio","calc":false,"value":"PDWKLY"},{"id":"PAIDRB","type":"radio","calc":false,"value":"PDBIWKLY"},{"id":"PAIDRB","type":"radio","calc":false,"value":"PDMNTHLY"},{"id":"PAIDRB","type":"radio","calc":false,"value":"PDTWCMTH"},{"id":"SPPAIDRB","type":"radio","calc":false,"value":"SPDWKLY"},{"id":"SPPAIDRB","type":"radio","calc":false,"value":"SPBIWKLY"},{"id":"SPPAIDRB","type":"radio","calc":false,"value":"SPMNTHLY"},{"id":"SPPAIDRB","type":"radio","calc":false,"value":"SPTWCMTH"},{"id":"HLTHINRB","type":"radio","calc":false,"value":"HLTHINSY"},{"id":"HLTHINRB","type":"radio","calc":false,"value":"HLTHINSN"},{"id":"INSPAYRB","type":"radio","calc":false,"value":"INSDEDY"},{"id":"INSPAYRB","type":"radio","calc":false,"value":"INSDEDN"},{"id":"CRTORDRB","type":"radio","calc":false,"value":"CRTORDY"},{"id":"CRTORDRB","type":"radio","calc":false,"value":"CRTORDN"},{"id":"CRTDEDRB","type":"radio","calc":false,"value":"CRTDEDY"},{"id":"CRTDEDRB","type":"radio","calc":false,"value":"CRTDEDN"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"PRCNTYRS","type":"alpha","calc":false,"value":""},{"id":"DEPCLMD","type":"number","calc":false,"value":""},{"id":"AGE65OVR","type":"number","calc":false,"value":""},{"id":"NETINCOM","type":"number","calc":false,"value":""},{"id":"SPNETINC","type":"number","calc":false,"value":""},{"id":"NUMVEHC","type":"number","calc":false,"value":""},{"id":"CARPYMCN","type":"number","calc":false,"value":""},{"id":"MTHLYINS","type":"number","calc":false,"value":""},{"id":"CRTPYMT","type":"number","calc":false,"value":""},{"id":"DEPEXP","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F9465.json b/test/data/fd/form/F9465.json new file mode 100755 index 00000000..bfb26713 --- /dev/null +++ b/test/data/fd/form/F9465.json @@ -0,0 +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.952,"y":5.25,"w":1.5,"l":63.285},{"oc":"#221f1f","x":84.064,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":9,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":9.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.5,"w":1.125,"l":43.398},{"oc":"#221f1f","x":49.457,"y":10.5,"w":1.125,"l":49.586},{"oc":"#221f1f","x":11.095,"y":12,"w":0.75,"l":28.548},{"oc":"#221f1f","x":39.557,"y":12,"w":0.75,"l":39.686},{"oc":"#221f1f","x":79.157,"y":12,"w":0.75,"l":19.886},{"oc":"#221f1f","x":11.095,"y":13.5,"w":0.75,"l":28.548},{"oc":"#221f1f","x":39.557,"y":13.5,"w":0.75,"l":39.686},{"oc":"#221f1f","x":79.157,"y":13.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":11.095,"y":15,"w":0.75,"l":74.336},{"oc":"#221f1f","x":85.345,"y":15,"w":0.75,"l":13.716},{"oc":"#221f1f","x":11.095,"y":16.512,"w":0.75,"l":43.398},{"oc":"#221f1f","x":11.095,"y":18.012,"w":0.75,"l":43.398},{"oc":"#221f1f","x":54.45,"y":18.012,"w":0.75,"l":30.938},{"oc":"#221f1f","x":54.45,"y":16.512,"w":0.75,"l":30.938},{"oc":"#221f1f","x":85.345,"y":16.512,"w":0.75,"l":13.698},{"oc":"#221f1f","x":85.345,"y":18.012,"w":0.75,"l":13.698},{"oc":"#221f1f","x":6.188,"y":18.012,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.188,"y":20.25,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.145,"y":18.75,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.095,"y":18.75,"w":0.75,"l":65.674},{"oc":"#221f1f","x":11.095,"y":20.25,"w":0.75,"l":65.674},{"oc":"#221f1f","x":76.682,"y":18.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":20.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":11.095,"y":21,"w":0.75,"l":17.411},{"oc":"#221f1f","x":32.132,"y":21,"w":0.75,"l":16.173},{"oc":"#221f1f","x":54.407,"y":21,"w":0.75,"l":17.411},{"oc":"#221f1f","x":74.207,"y":21,"w":0.75,"l":6.273},{"oc":"#221f1f","x":82.87,"y":20.958,"w":0.75,"l":16.241},{"oc":"#221f1f","x":6.188,"y":21.75,"w":0.75,"l":92.813},{"oc":"#221f1f","x":11.096,"y":23.25,"w":0.75,"l":37.211},{"oc":"#221f1f","x":11.096,"y":24.75,"w":0.75,"l":37.211},{"oc":"#221f1f","x":54.407,"y":23.25,"w":0.75,"l":44.636},{"oc":"#221f1f","x":54.407,"y":24.75,"w":0.75,"l":44.636},{"oc":"#221f1f","x":6.188,"y":26.25,"w":0.75,"l":92.813},{"oc":"#221f1f","x":81.632,"y":27.012,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":27.012,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":27.012,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":27.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":28.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":30.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.188,"y":36,"w":0.75,"l":92.813},{"oc":"#221f1f","x":6.145,"y":45.75,"w":0.75,"l":37.211},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.125,"l":37.211},{"oc":"#221f1f","x":43.27,"y":45.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":43.27,"y":47.25,"w":1.125,"l":9.986},{"oc":"#221f1f","x":53.17,"y":45.75,"w":0.75,"l":35.973},{"oc":"#221f1f","x":53.17,"y":47.25,"w":1.125,"l":35.973},{"oc":"#221f1f","x":89.057,"y":45.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":47.25,"w":1.125,"l":9.986},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.17,"y":47.25,"w":1.5,"l":29.786},{"oc":"#221f1f","x":82.87,"y":47.25,"w":1.5,"l":16.173},{"oc":"#221f1f","x":81.632,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":31.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#231f20","x":26.073,"y":38.219,"w":1.5,"l":22.103},{"oc":"#231f20","x":26.073,"y":37.531,"w":1.5,"l":22.103},{"oc":"#231f20","x":26.073,"y":39.258,"w":1.5,"l":41.903},{"oc":"#231f20","x":26.073,"y":38.571,"w":1.5,"l":41.903}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.031},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":3.047},{"oc":"#221f1f","x":39.6,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.6,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.45,"y":16.497,"w":0.75,"l":1.531},{"oc":"#221f1f","x":85.388,"y":16.512,"w":0.75,"l":1.5},{"oc":"#221f1f","x":54.45,"y":16.512,"w":0.75,"l":1.5},{"oc":"#221f1f","x":85.388,"y":16.497,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":18.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":21.734,"w":0.75,"l":4.531},{"oc":"#221f1f","x":85.388,"y":26.234,"w":0.75,"l":0.793},{"oc":"#221f1f","x":81.675,"y":26.234,"w":0.75,"l":0.793},{"oc":"#221f1f","x":95.288,"y":26.246,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"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":85.388,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"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":85.388,"y":28.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":28.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":28.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":45.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":53.213,"y":45.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.1,"y":45.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":85.388,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":30.734,"w":0.75,"l":0.781},{"oc":"#231f20","x":48.177,"y":37.531,"w":1.5,"l":0.687},{"oc":"#231f20","x":26.073,"y":37.531,"w":1.5,"l":0.687},{"oc":"#231f20","x":28.462,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":30.938,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":33.413,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":35.888,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":38.363,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":40.838,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.313,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":45.788,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":45.788,"y":37.563,"w":1.5,"l":0.656},{"oc":"#231f20","x":67.977,"y":38.571,"w":1.5,"l":0.687},{"oc":"#231f20","x":26.073,"y":38.571,"w":1.5,"l":0.687},{"oc":"#231f20","x":28.462,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":30.938,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":33.413,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":35.888,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":38.363,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":40.838,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.313,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":45.788,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.263,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":50.738,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.213,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.688,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":58.163,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":60.638,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":63.113,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.588,"y":38.602,"w":1.5,"l":0.656},{"oc":"#231f20","x":65.588,"y":38.602,"w":1.5,"l":0.656}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":9,"w":6.188,"h":0.75,"clr":-1},{"x":11.137,"y":16.512,"w":43.313,"h":1.5,"clr":1},{"x":54.45,"y":16.512,"w":30.938,"h":1.5,"clr":1},{"x":85.388,"y":16.512,"w":13.612,"h":1.5,"clr":1},{"x":0,"y":48.574,"w":5.016,"h":0.926,"clr":31}],"Texts":[{"oc":"#221f1f","x":5.938,"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.797,"y":2.634,"w":2.08,"clr":-1,"A":"left","R":[{"T":"9465","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.3200000000000003,"w":10.207000000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20December%202013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.8120000000000003,"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.312,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":35.187,"y":2.278,"w":14.56,"clr":-1,"A":"left","R":[{"T":"Installment%20Agreement%20Request%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":23.319,"y":2.961,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.637,"y":3.054,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%209465%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.213,"y":3.054,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform9465.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.777,"y":3.5810000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.095,"y":3.675,"w":37.961999999999975,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20filing%20this%20form%20with%20your%20tax%20return%2C%20attach%20it%20to%20the%20front%20of%20the%20return.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.116,"y":4.202,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":44.435,"y":4.296,"w":12.741000000000001,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":3.097,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5.152,"w":2.036,"clr":-1,"A":"left","R":[{"T":"Tip%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.138,"y":5.152,"w":56.47699999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20owe%20%2450%2C000%20or%20less%2C%20you%20may%20be%20able%20to%20establish%20an%20installment%20agreement%20online%2C%20even%20if%20you%20have%20not%20yet%20received%20a%20b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.726,"y":5.152,"w":0.9440000000000001,"clr":-1,"A":"left","R":[{"T":"ill%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.944,"y":5.777,"w":23.447000000000003,"clr":-1,"A":"left","R":[{"T":"for%20your%20taxes.%20Go%20to%20IRS.gov%20to%20apply%20to%20pay%20online.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.174,"y":5.777,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.061,"y":5.777,"w":9.536999999999999,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20this%20form%20if","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.858,"y":5.777,"w":18.559,"clr":-1,"A":"left","R":[{"T":"you%20are%20currently%20making%20payments%20on%20an%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":6.402,"w":55.385999999999946,"clr":-1,"A":"left","R":[{"T":"installment%20agreement%20or%20can%20pay%20your%20balance%20in%20full%20within%20120%20days.%20Instead%2C%20call%201-800-829-1040.%20Do%20not%20file%20if%20your%20busine","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.914,"y":6.402,"w":3.961,"clr":-1,"A":"left","R":[{"T":"ss%20is%20still%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.928,"y":7.027,"w":58.45499999999993,"clr":-1,"A":"left","R":[{"T":"operating%20and%20owes%20employment%20or%20unemployment%20taxes.%20Instead%2C%20call%20the%20telephone%20number%20on%20your%20most%20recent%20notice.%20If%20you%20are%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.526,"y":7.027,"w":1.056,"clr":-1,"A":"left","R":[{"T":"in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.917,"y":7.651999999999999,"w":28.576,"clr":-1,"A":"left","R":[{"T":"bankruptcy%20or%20we%20have%20accepted%20your%20offer-in-compromise%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.119,"y":7.651999999999999,"w":17.477,"clr":-1,"A":"left","R":[{"T":"Bankruptcy%20or%20offer-in-compromise%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.154,"y":7.651999999999999,"w":8.168000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions.","S":3,"TS":[0,12,0,0]}]},{"x":6.836,"y":8.821,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":9.565,"w":28.82100000000001,"clr":-1,"A":"left","R":[{"T":"This%20request%20is%20for%20Form(s)%20(for%20example%2C%20Form%201040%20or%20Form%20941)","S":-1,"TS":[0,9.4,0,0]}]},{"oc":"#221f1f","x":37.942,"y":9.471,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":49.938,"y":9.565,"w":21.616000000000007,"clr":-1,"A":"left","R":[{"T":"and%20for%20tax%20year(s)%20(for%20example%2C%202012%20and%202013)%20","S":-1,"TS":[0,9.4,0,0]}]},{"oc":"#221f1f","x":73.714,"y":9.471,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,7.8,0,0]}]},{"oc":"#221f1f","x":7.552,"y":10.214,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":10.214,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":10.187,"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":40.038,"y":10.204,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.638,"y":10.187,"w":13.646000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":11.687,"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":40.038,"y":11.687,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.638,"y":11.687,"w":15.776000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":13.187,"w":47.864999999999974,"clr":-1,"A":"left","R":[{"T":"Current%20address%20(number%20and%20street).%20If%20you%20have%20a%20P.O.%20box%20and%20no%20home%20delivery%2C%20enter%20your%20box%20number.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.825,"y":13.212,"w":5.818,"clr":-1,"A":"left","R":[{"T":"Apt.%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.687,"w":52.26399999999996,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code.%20If%20a%20foreign%20address%2C%20also%20complete%20the%20spaces%20below%20(see%20instructions)%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":11.575,"y":16.198,"w":20.899999999999988,"clr":-1,"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]}]},{"oc":"#221f1f","x":54.888,"y":16.201,"w":24.249999999999968,"clr":-1,"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%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":85.825,"y":16.198,"w":11.966000000000005,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":7.552,"y":17.745,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":17.745,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.76,"w":30.52199999999999,"clr":-1,"A":"left","R":[{"T":"If%20this%20address%20is%20new%20since%20you%20filed%20your%20last%20tax%20return%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.563,"y":17.76,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.8,"y":17.666,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":7.552,"y":18.526,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.575,"y":18.625,"w":23.987000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20of%20%20your%20business%20(must%20be%20no%20longer%20operating)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":18.625,"w":16.299000000000007,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number%20(EIN)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":20.151,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.506,"y":20.687,"w":11.987000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20home%20phone%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":33.941,"y":20.687,"w":10.298000000000002,"clr":-1,"A":"left","R":[{"T":"Best%20time%20for%20us%20to%20call%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.865,"y":20.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.021,"y":20.687,"w":11.651000000000003,"clr":-1,"A":"left","R":[{"T":"Your%20work%20phone%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.058,"y":20.687,"w":2,"clr":-1,"A":"left","R":[{"T":"Ext.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.712,"y":20.666,"w":10.298000000000002,"clr":-1,"A":"left","R":[{"T":"Best%20time%20for%20us%20to%20call%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.554,"y":21.464,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":21.437,"w":21.449000000000012,"clr":-1,"A":"left","R":[{"T":"Name%20of%20your%20bank%20or%20other%20financial%20institution%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.889,"y":22.937,"w":3.982,"clr":-1,"A":"left","R":[{"T":"Address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.889,"y":24.438,"w":11.354000000000005,"clr":-1,"A":"left","R":[{"T":"City%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.865,"y":21.527,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.2,"y":21.437,"w":10.633000000000004,"clr":-1,"A":"left","R":[{"T":"Your%20employer%E2%80%99s%20name%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.2,"y":22.937,"w":3.982,"clr":-1,"A":"left","R":[{"T":"Address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.2,"y":24.437,"w":11.354000000000005,"clr":-1,"A":"left","R":[{"T":"City%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.089,"w":33.781000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20you%20owe%20as%20shown%20on%20your%20tax%20return(s)%20(or%20notice(s))%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.687,"y":26.089,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.851,"y":26.101,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":45.73099999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20any%20payment%20you%20are%20making%20with%20your%20tax%20return(s)%20(or%20notice(s)).%20See%20instructions%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":82.851,"y":26.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%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":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.589,"w":20.69100000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%207%20and%20enter%20the%20result%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":27.589,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.851,"y":27.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":28.402,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.352,"w":45.49599999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20you%20can%20pay%20each%20month.%20Make%20your%20payments%20as%20large%20as%20possible%20to%20limit%20%20interest%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.893,"y":29.039,"w":9.632000000000003,"clr":-1,"A":"left","R":[{"T":"and%20penalty%20charges.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":25.37,"y":29.039,"w":36.56299999999998,"clr":-1,"A":"left","R":[{"T":"The%20charges%20will%20continue%20until%20you%20pay%20in%20full.%20If%20no%20payment%20amount%20is%20listed%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.893,"y":29.726,"w":42.71599999999996,"clr":-1,"A":"left","R":[{"T":"on%20line%2010%2C%20a%20payment%20will%20be%20determined%20for%20you%20by%20dividing%20the%20balance%20due%20by%2072%20months","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":76.063,"y":29.727,"w":2.666,"clr":-1,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.027,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.027,"w":27.084,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20you%20want%20to%20make%20your%20payment%20each%20month.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.783,"y":35.027,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.141,"y":35.027,"w":14.042000000000003,"clr":-1,"A":"left","R":[{"T":"enter%20a%20date%20later%20than%20the%2028th%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.862,"y":34.933,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":6.692,"y":35.751,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":35.777,"w":55.23699999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20want%20to%20make%20your%20payments%20by%20direct%20debit%20from%20your%20checking%20account%2C%20see%20the%20instructions%20and%20fill%20in%20lines%2013a%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.898,"y":36.477,"w":47.97799999999995,"clr":-1,"A":"left","R":[{"T":"13b.%20This%20is%20the%20most%20convenient%20way%20to%20make%20your%20payments%20and%20it%20will%20ensure%20that%20they%20are%20made%20on%20time.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":37.3,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.339,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":37.371,"w":7.466000000000001,"clr":-1,"A":"left","R":[{"T":"Routing%20number%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":38.339,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.378,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":38.41,"w":7.707000000000001,"clr":-1,"A":"left","R":[{"T":"Account%20number%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.857,"w":55.37499999999998,"clr":-1,"A":"left","R":[{"T":"I%20authorize%20the%20U.S.%20Treasury%20and%20its%20designated%20Financial%20Agent%20to%20initiate%20a%20monthly%20ACH%20debit%20(electronic%20withdrawal)%20entry%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.509,"y":39.857,"w":6.816000000000001,"clr":-1,"A":"left","R":[{"T":"to%20the%20financial%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.897,"y":40.388,"w":54.882999999999925,"clr":-1,"A":"left","R":[{"T":"institution%20account%20indicated%20for%20payments%20of%20my%20Federal%20taxes%20owed%2C%20and%20the%20financial%20institution%20to%20debit%20the%20entry%20to%20this%20a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":90.981,"y":40.388,"w":5.761000000000001,"clr":-1,"A":"left","R":[{"T":"ccount.%20This%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.889,"y":40.919,"w":53.54299999999994,"clr":-1,"A":"left","R":[{"T":"authorization%20is%20to%20remain%20in%20full%20force%20and%20effect%20until%20I%20notify%20the%20U.S.%20Treasury%20Financial%20Agent%20to%20terminate%20the%20authoriza","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.152,"y":40.919,"w":6.927000000000001,"clr":-1,"A":"left","R":[{"T":"tion.%20To%20revoke%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.894,"y":41.45,"w":27.452000000000005,"clr":-1,"A":"left","R":[{"T":"payment%2C%20I%20must%20contact%20the%20U.S.%20Treasury%20Financial%20Agent%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":48.875,"y":41.45,"w":7.615,"clr":-1,"A":"left","R":[{"T":"1-800-829-1040%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.369,"y":41.45,"w":28.750000000000007,"clr":-1,"A":"left","R":[{"T":"no%20later%20than%2014%20business%20days%20prior%20to%20the%20payment%20(settlement)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.889,"y":41.981,"w":54.58099999999995,"clr":-1,"A":"left","R":[{"T":"date.%20I%20also%20authorize%20the%20financial%20institutions%20involved%20in%20the%20processing%20of%20the%20electronic%20payments%20of%20taxes%20to%20receive%20con","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.591,"y":41.981,"w":9.094000000000003,"clr":-1,"A":"left","R":[{"T":"fidential%20information%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.885,"y":42.512,"w":33.19,"clr":-1,"A":"left","R":[{"T":"necessary%20to%20answer%20inquiries%20and%20resolve%20issues%20related%20to%20the%20payments.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":45.437,"w":6.797000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.75,"y":45.437,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.65,"y":45.437,"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":73.082,"y":45.437,"w":2.445,"clr":-1,"A":"left","R":[{"T":"both%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.023,"y":45.437,"w":4.91,"clr":-1,"A":"left","R":[{"T":"must%20sign.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.538,"y":45.437,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":47.107,"w":33.963,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.355,"y":47.125,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2014842Y%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.462,"y":47.071,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.604,"y":47.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"9465%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.905,"y":47.071,"w":6.521000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2012-2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":24.454,"clr":-1,"A":"left","R":[{"T":"Divide%20the%20amount%20on%20line%209%20by%2072%20and%20enter%20the%20result%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":30.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.289,"w":56.74299999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20the%20amount%20on%20line%2010%20is%20less%20than%20the%20amount%20on%20line%2011%20and%20you%20are%20unable%20to%20increase%20your%20payment%20to%20the%20amount%20on%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.976999999999997,"w":31.95500000000002,"clr":-1,"A":"left","R":[{"T":"11%2C%20complete%20and%20attach%20Form%20433-F%2C%20Collection%20Information%20Statement.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.789,"w":56.501999999999924,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20the%20amount%20on%20line%2010%20is%20equal%20to%20or%20greater%20than%20the%20amount%20on%20line%2011%20but%20the%20amount%20you%20owe%20is%20greater%20than%20%2425%2C000%20but","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":33.476,"w":47.999999999999964,"clr":-1,"A":"left","R":[{"T":"not%20more%20than%20%2450%2C000%2C%20you%20must%20complete%20either%20line%2013%20or%2014%2C%20if%20you%20do%20not%20wish%20to%20complete%20Form%20433-F.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.339,"w":52.16599999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20the%20amount%20on%20line%209%20is%20greater%20than%20%2450%2C000%2C%20complete%20and%20attach%20Form%20433-F%2C%20Collection%20Information%20Statement.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.649,"y":43.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.906,"w":56.92399999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20want%20to%20make%20your%20payments%20by%20payroll%20deduction%2C%20check%20this%20box%20and%20attach%20a%20completed%20Form%202159%2C%20Payroll%20Deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.594,"w":5.168000000000001,"clr":-1,"A":"left","R":[{"T":"Agreement%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.375,"y":44.594,"w":49.32099999999996,"clr":-1,"A":"left","R":[{"T":".....................................","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":7619,"AM":0,"x":39.6,"y":9.75,"w":9.9,"h":0.833,"TU":"This request is for Form(s) (for example, Form 1040, or Form 941)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":7620,"AM":0,"x":75.384,"y":9.75,"w":23.616,"h":0.833,"TU":"And for tax year(s) (for example, 2012 and 2013).","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":7621,"AM":1024,"x":11.137,"y":11.125,"w":28.463,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":7622,"AM":1024,"x":39.6,"y":11.158,"w":39.6,"h":0.842},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7623,"AM":1024,"x":79.275,"y":11.125,"w":19.8,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":7624,"AM":1024,"x":11.137,"y":12.625,"w":28.463,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":7625,"AM":1024,"x":39.6,"y":12.625,"w":39.6,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":7626,"AM":1024,"x":79.2,"y":12.625,"w":19.8,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":7627,"AM":1024,"x":11.137,"y":14.125,"w":74.25,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":7628,"AM":1024,"x":85.388,"y":14.175,"w":13.63,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":7629,"AM":1024,"x":11.137,"y":15.676,"w":61.925,"h":0.833,"TU":"Line 1a. City, town or post office, state, and ZIP code. If a foreign address, also complete the spaces below (see instructions. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":7630,"AM":0,"x":73.725,"y":15.687,"w":4.796,"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":7631,"AM":1024,"x":81.605,"y":15.629,"w":17.127,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COUNTRY","EN":0},"TI":7632,"AM":1024,"x":11.137,"y":17.196,"w":43.313,"h":0.833,"TU":"Line 1a. Foreign country name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":7633,"AM":1024,"x":54.45,"y":17.196,"w":30.938,"h":0.833,"TU":"Line 1a. Foreign province or state or county. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":7634,"AM":1024,"x":85.388,"y":17.196,"w":13.612,"h":0.833,"TU":"Line 1a. Foreign postal code. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUSNM","EN":0},"TI":7636,"AM":0,"x":11.137,"y":19.5,"w":65.587,"h":0.833,"TU":"Line 2. Name of your business (must be no longer operating). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":7637,"AM":0,"x":76.725,"y":19.5,"w":22.275,"h":0.833,"TU":"Line 2. Employer identification number (E I N). ","MV":"99-9999999"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"HOMEPHON","EN":0},"TI":7638,"AM":0,"x":11.137,"y":20.273,"w":17.325,"h":0.833,"TU":"Line 3. Your home phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HTIME","EN":0},"TI":7639,"AM":0,"x":32.175,"y":20.25,"w":16.088,"h":0.833,"TU":"Best time for us to call."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"WORKPHON","EN":0},"TI":7640,"AM":0,"x":54.45,"y":20.25,"w":17.325,"h":0.833,"TU":"Line 4. Your work phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXT","EN":0},"TI":7641,"AM":0,"x":74.25,"y":20.25,"w":6.188,"h":0.833,"TU":"Extension."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WTIME","EN":0},"TI":7642,"AM":0,"x":82.912,"y":20.25,"w":16.155,"h":0.833,"TU":"Best time for us to call."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BANKNAME","EN":0},"TI":7643,"AM":0,"x":11.139,"y":22.375,"w":37.125,"h":0.875,"TU":"Line 5. Name of your bank or other financial institution."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPNAME","EN":0},"TI":7644,"AM":0,"x":54.45,"y":22.375,"w":44.55,"h":0.875,"TU":"Line 6. Your employer's name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BANKADDR","EN":0},"TI":7645,"AM":0,"x":11.139,"y":23.875,"w":37.125,"h":0.875,"TU":"Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPADDR","EN":0},"TI":7646,"AM":0,"x":54.45,"y":23.875,"w":44.55,"h":0.875,"TU":"Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BANKCITY","EN":0},"TI":7647,"AM":0,"x":11.139,"y":25.375,"w":23.724,"h":0.875,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BANKST","EN":0},"TI":7648,"AM":0,"x":35.211,"y":25.384,"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":"BANKZIP","EN":0},"TI":7649,"AM":0,"x":41.25,"y":25.41,"w":8.239,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPCITY","EN":0},"TI":7650,"AM":0,"x":54.675,"y":25.375,"w":28.603,"h":0.875,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPSTATE","EN":0},"TI":7651,"AM":0,"x":83.841,"y":25.265,"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":"EMPZIP","EN":0},"TI":7652,"AM":0,"x":89.689,"y":25.382,"w":8.988,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":7653,"AM":1024,"x":85.388,"y":26.262,"w":9.9,"h":0.833,"TU":"Line 7. Enter the total amount you owe as shown on your tax return (or returns) (or notice (or notices)). Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":7654,"AM":0,"x":85.388,"y":27,"w":9.9,"h":0.833,"TU":"Line 8. Enter the amount of any payment you are making with your tax return (or returns) (or notice (or notices)). See instructions. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TTLTXDUE","EN":0},"TI":7655,"AM":0,"x":85.405,"y":27.755,"w":9.926,"h":0.833,"TU":"Line 9. Subtract line 8 from line 7 and enter the result."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":7656,"AM":0,"x":85.388,"y":30,"w":9.9,"h":0.833,"TU":"Line 10. Enter the amount you can pay each month. Make your payments as large as possible to limit interest and penalty charges. The charges will continue until you pay in full. If no payment amount is listed on line 10, a payment will be determined for you by dividing the balance due by 72 months."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CMTHPMT","EN":0},"TI":7657,"AM":0,"x":85.313,"y":30.75,"w":9.9,"h":0.833,"TU":"Line 11. Divide the amount on line 9 by 72 and enter the result. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":7658,"AM":0,"x":82.625,"y":35.25,"w":12.375,"h":0.833,"TU":"Line 12. Enter the date you want to make your payment each month. Do not enter a date later than the 28th. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":7659,"AM":0,"x":25.988,"y":37.5,"w":22.275,"h":0.833,"TU":"Line 13a. Routing number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":7660,"AM":0,"x":25.988,"y":38.539,"w":42.075,"h":0.833,"TU":"Line 13b. Account number.","MV":"maxl:17"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX1","EN":0},"TI":7635,"AM":0,"x":96.972,"y":18.012,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PYRLDED","EN":0},"TI":7661,"AM":0,"x":95.914,"y":44.64,"w":3.094,"h":0.939}]}]},{"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.108,"y":2.998,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.108,"y":5.998,"w":0.75,"l":92.899},{"oc":"#221f1f","x":81.632,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":14.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":81.632,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":15.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":81.632,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":21.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":27.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":29.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":81.632,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":30.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":81.632,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":36.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":42.75,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.345,"y":45,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.245,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":45.75,"w":1.5,"l":92.899},{"oc":"#221f1f","x":41.251,"y":7.625,"w":0.75,"l":40.593},{"oc":"#221f1f","x":41.251,"y":6.75,"w":0.75,"l":40.593},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.572},{"oc":"#221f1f","x":0.086,"y":48.999,"w":0.75,"l":1.572},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.628},{"oc":"#221f1f","x":0.086,"y":48.959,"w":0.75,"l":1.628}],"VLines":[{"oc":"#221f1f","x":85.388,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"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":85.388,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":41.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":85.388,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.844,"y":6.75,"w":0.75,"l":0.875},{"oc":"#221f1f","x":41.251,"y":6.75,"w":0.75,"l":0.875},{"oc":"#221f1f","x":1.658,"y":48.999,"w":0.75,"l":0.469},{"oc":"#221f1f","x":0.086,"y":48.999,"w":0.75,"l":0.469},{"oc":"#221f1f","x":1.714,"y":48.959,"w":0.75,"l":0.51},{"oc":"#221f1f","x":0.086,"y":48.959,"w":0.75,"l":0.51}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.151,"y":2.998,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.928,"w":1.4,"h":0.509,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.909,"w":1.569,"h":0.528,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":11.913000000000006,"clr":-1,"A":"left","R":[{"T":"Form%209465%20(Rev.%2012-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.545,"y":2.819,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.495,"y":2.913,"w":11.123000000000001,"clr":-1,"A":"left","R":[{"T":"Additional%20information.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":33.612,"y":2.913,"w":37.80599999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20have%20defaulted%20on%20an%20installment%20agreement%20within%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.495,"y":3.5999999999999996,"w":47.855999999999945,"clr":-1,"A":"left","R":[{"T":"past%2012%20months%20and%20the%20amount%20you%20owe%20is%20greater%20than%20%2425%2C000%20but%20not%20more%20%2450%2C000%20and%20the%20amount%20on%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.495,"y":4.288,"w":48.849999999999945,"clr":-1,"A":"left","R":[{"T":"line%2010%20is%20equal%20to%20or%20greater%20than%20the%20amount%20on%20line%2011.%20%20If%20you%20owe%20more%20than%20%2450%2C000%2C%20complete%20and%20attach%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.495,"y":4.975,"w":20.802000000000003,"clr":-1,"A":"left","R":[{"T":"Form%20433-F%2C%20Collection%20Information%20Statement.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":6.635,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":8.089,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"16a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":8.089,"w":6.316000000000001,"clr":-1,"A":"left","R":[{"T":"Marital%20status%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":8.839,"w":22.045000000000005,"clr":-1,"A":"left","R":[{"T":"Single.%20Skip%20question%2016b%20and%20go%20to%20question%2017.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":9.589,"w":12.874,"clr":-1,"A":"left","R":[{"T":"Married.%20Go%20to%20question%2016b.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.412,"y":10.339,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":10.339,"w":23.893000000000008,"clr":-1,"A":"left","R":[{"T":"Do%20you%20share%20household%20expenses%20with%20your%20spouse%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":11.089,"w":1.963,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":11.839,"w":1.574,"clr":-1,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":13.339,"w":32.727999999999994,"clr":-1,"A":"left","R":[{"T":"How%20many%20dependents%20will%20you%20be%20able%20to%20claim%20on%20this%20year's%20tax%20return%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.625,"y":13.339,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":23.985999999999997,"clr":-1,"A":"left","R":[{"T":"How%20many%20people%20in%20your%20household%20are%2065%20or%20older%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":14.839,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":14.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":16.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.339,"w":10.982,"clr":-1,"A":"left","R":[{"T":"How%20often%20are%20you%20paid%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":17.089,"w":6.112,"clr":-1,"A":"left","R":[{"T":"Once%20a%20week.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":17.839,"w":10.407000000000004,"clr":-1,"A":"left","R":[{"T":"Once%20every%20two%20weeks.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":18.589,"w":6.615,"clr":-1,"A":"left","R":[{"T":"Once%20a%20month.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":19.339,"w":6.853,"clr":-1,"A":"left","R":[{"T":"Twice%20a%20month.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":20.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":20.839,"w":25.841000000000005,"clr":-1,"A":"left","R":[{"T":"What%20is%20your%20net%20income%20per%20pay%20period%20(take%20home%20pay)%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.312,"y":20.839,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":20.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.481,"y":20.748,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[3,11,1,0]}]},{"oc":"#221f1f","x":6.692,"y":22.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.339,"w":14.168000000000003,"clr":-1,"A":"left","R":[{"T":"How%20often%20is%20your%20spouse%20paid%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":23.089,"w":6.112,"clr":-1,"A":"left","R":[{"T":"Once%20a%20week.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":23.839,"w":10.407000000000004,"clr":-1,"A":"left","R":[{"T":"Once%20every%20two%20weeks.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":24.589,"w":6.615,"clr":-1,"A":"left","R":[{"T":"Once%20a%20month.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":25.339,"w":6.853,"clr":-1,"A":"left","R":[{"T":"Twice%20a%20month.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":26.839,"w":29.878999999999994,"clr":-1,"A":"left","R":[{"T":"What%20is%20your%20spouse's%20net%20income%20per%20pay%20period%20(take%20home%20pay)%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":26.839,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.481,"y":26.748,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[3,11,1,0]}]},{"oc":"#221f1f","x":6.692,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.339,"w":15.020000000000005,"clr":-1,"A":"left","R":[{"T":"How%20many%20vehicles%20do%20you%20own%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":28.339,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.839,"w":23.304000000000002,"clr":-1,"A":"left","R":[{"T":"How%20many%20car%20payments%20do%20you%20have%20each%20month%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.875,"y":29.839,"w":21.109000000000005,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"25a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.339,"w":13.763000000000005,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20health%20insurance%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":32.089,"w":11.133000000000001,"clr":-1,"A":"left","R":[{"T":"Yes.%20Go%20to%20question%2025b.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":32.839,"w":20.841000000000005,"clr":-1,"A":"left","R":[{"T":"No.%20Skip%20question%2025b%20and%20go%20to%20question%2026a.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.412,"y":33.589,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":33.589,"w":22.748,"clr":-1,"A":"left","R":[{"T":"Are%20your%20premiums%20deducted%20from%20your%20paycheck%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":34.339,"w":21.174000000000007,"clr":-1,"A":"left","R":[{"T":"Yes.%20Skip%20question%2025c%20and%20go%20to%20question%2026a.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":35.089,"w":10.688000000000002,"clr":-1,"A":"left","R":[{"T":"No.%20Go%20to%20question%2025c.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.412,"y":35.839,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":35.839,"w":18.173000000000002,"clr":-1,"A":"left","R":[{"T":"How%20much%20are%20your%20monthly%20premiums%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41,"y":35.839,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.977,"y":35.839,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"25c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.481,"y":35.748,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[3,11,1,0]}]},{"oc":"#221f1f","x":6.692,"y":37.339,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"26a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.339,"w":17.617000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20you%20make%20court-ordered%20payments%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":38.089,"w":11.133000000000001,"clr":-1,"A":"left","R":[{"T":"Yes.%20Go%20to%20question%2026b.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":38.839,"w":10.151000000000002,"clr":-1,"A":"left","R":[{"T":"No.%20Go%20to%20question%2027.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.412,"y":39.589,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":39.589,"w":29.174,"clr":-1,"A":"left","R":[{"T":"Are%20your%20court-ordered%20payments%20deducted%20from%20your%20paycheck%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":40.339,"w":10.540000000000001,"clr":-1,"A":"left","R":[{"T":"Yes.%20Go%20to%20question%2027.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.915,"y":41.089,"w":10.688000000000002,"clr":-1,"A":"left","R":[{"T":"No.%20Go%20to%20question%2026c.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.412,"y":41.839,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":41.839,"w":26.322000000000006,"clr":-1,"A":"left","R":[{"T":"How%20much%20are%20your%20court-ordered%20payments%20each%20month%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.375,"y":41.839,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.977,"y":41.839,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"26c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.481,"y":41.748,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[3,11,1,0]}]},{"oc":"#221f1f","x":6.692,"y":43.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.351,"w":44.40199999999997,"clr":-1,"A":"left","R":[{"T":"Not%20including%20any%20court-ordered%20payments%20for%20child%20and%20dependent%20support%2C%20how%20much%20do%20you%20pay%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":44.026,"w":18.52400000000001,"clr":-1,"A":"left","R":[{"T":"for%20child%20or%20dependent%20care%20each%20month%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":44.026,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.421,"y":44.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.481,"y":43.998,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[3,11,1,0]}]},{"oc":"#221f1f","x":83.605,"y":45.571,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.748,"y":45.571,"w":2.224,"clr":-1,"A":"left","R":[{"T":"9465","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.57,"y":45.571,"w":7.077,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%2012-2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.888,"y":6.652,"w":19.114000000000004,"clr":-1,"A":"left","R":[{"T":"In%20which%20county%20is%20your%20primary%20residence%3F","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":7662,"AM":1024,"x":24.646,"y":1.793,"w":37.342,"h":0.968},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":7663,"AM":1024,"x":65.044,"y":1.839,"w":25.4,"h":1.061},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRCNTYRS","EN":0},"TI":7664,"AM":0,"x":41.251,"y":6.75,"w":40.593,"h":0.875,"TU":"Page 2. Part 2. Additional information. Complete this part only if you have defaulted on an installment agreement within the past 12 months and the amount you owe is greater than $25,000 but not more $50,000 and the amount on line 10 is equal to or greater than the amount on line 11. If you owe more than $50,000, complete and attach Form 433-F, Collection Information Statement. Line 15. In which county is your primary residence?"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPCLMD","EN":0},"TI":7669,"AM":0,"x":85.388,"y":13.5,"w":13.612,"h":0.833,"TU":"Line 17. How many dependents will you be able to claim on this year's tax return? "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGE65OVR","EN":0},"TI":7670,"AM":0,"x":85.388,"y":15,"w":13.612,"h":0.833,"TU":"Line 18. How many people in your household are 65 or older?"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETINCOM","EN":0},"TI":7675,"AM":0,"x":87.106,"y":21,"w":8.181,"h":0.833,"TU":"Line 20. What is your net income per pay period (take home pay)? Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPNETINC","EN":0},"TI":7680,"AM":0,"x":87.106,"y":27,"w":8.181,"h":0.833,"TU":"Line 22. What is your spouse's net income per pay period (take home pay)? Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NUMVEHC","EN":0},"TI":7681,"AM":0,"x":85.388,"y":28.5,"w":13.612,"h":0.833,"TU":"Line 23. How many vehicles do you own?"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARPYMCN","EN":0},"TI":7682,"AM":0,"x":85.388,"y":30,"w":13.612,"h":0.833,"TU":"Line 24. How many car payments do you have each month?"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MTHLYINS","EN":0},"TI":7687,"AM":0,"x":87.106,"y":36,"w":8.181,"h":0.833,"TU":"Line 25c. How much are your monthly premiums? Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRTPYMT","EN":0},"TI":7692,"AM":0,"x":87.106,"y":42,"w":8.181,"h":0.833,"TU":"Line 26c. How much are your court-ordered payments each month? Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPEXP","EN":0},"TI":7693,"AM":0,"x":87.106,"y":44.25,"w":8.181,"h":0.833,"TU":"Line 27. Not including any court-ordered payments for child and dependent support, how much do you pay for child or dependent care each month? Dollars. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MSSINGLE","EN":0},"TI":7665,"AM":0,"x":10.933,"y":8.976,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MSMARRD","EN":0},"TI":7666,"AM":0,"x":10.933,"y":9.684,"w":1.856,"h":0.833,"checked":false}],"id":{"Id":"MARSTSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SHEXPY","EN":0},"TI":7667,"AM":0,"x":11.08,"y":11.191,"w":1.688,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SHEXPN","EN":0},"TI":7668,"AM":0,"x":10.947,"y":11.921,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"SHREXPRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDWKLY","EN":0},"TI":7671,"AM":0,"x":11.144,"y":17.174,"w":1.575,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDBIWKLY","EN":0},"TI":7672,"AM":0,"x":11.016,"y":17.971,"w":1.8,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDMNTHLY","EN":0},"TI":7673,"AM":0,"x":10.999,"y":18.697,"w":1.688,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDTWCMTH","EN":0},"TI":7674,"AM":0,"x":10.916,"y":19.445,"w":1.913,"h":0.833,"checked":false}],"id":{"Id":"PAIDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDWKLY","EN":0},"TI":7676,"AM":0,"x":11.099,"y":23.17,"w":1.631,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBIWKLY","EN":0},"TI":7677,"AM":0,"x":11.084,"y":23.974,"w":1.688,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPMNTHLY","EN":0},"TI":7678,"AM":0,"x":11.087,"y":24.693,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPTWCMTH","EN":0},"TI":7679,"AM":0,"x":10.983,"y":25.477,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"SPPAIDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HLTHINSY","EN":0},"TI":7683,"AM":0,"x":10.963,"y":32.209,"w":1.688,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HLTHINSN","EN":0},"TI":7684,"AM":0,"x":10.916,"y":32.935,"w":1.8,"h":0.833,"checked":false}],"id":{"Id":"HLTHINRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INSDEDY","EN":0},"TI":7685,"AM":0,"x":10.898,"y":34.489,"w":1.913,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INSDEDN","EN":0},"TI":7686,"AM":0,"x":10.987,"y":35.202,"w":1.8,"h":0.833,"checked":false}],"id":{"Id":"INSPAYRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CRTORDY","EN":0},"TI":7688,"AM":0,"x":11.034,"y":38.211,"w":1.631,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CRTORDN","EN":0},"TI":7689,"AM":0,"x":10.974,"y":38.897,"w":1.8,"h":0.833,"checked":false}],"id":{"Id":"CRTORDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CRTDEDY","EN":0},"TI":7690,"AM":0,"x":10.983,"y":40.499,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CRTDEDN","EN":0},"TI":7691,"AM":0,"x":10.952,"y":41.218,"w":1.856,"h":0.833,"checked":false}],"id":{"Id":"CRTDEDRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/F982.content.txt b/test/data/fd/form/F982.content.txt new file mode 100755 index 00000000..38235255 --- /dev/null +++ b/test/data/fd/form/F982.content.txt @@ -0,0 +1,133 @@ +Form +982 +(Rev. July 2013) +Department of the Treasury +Internal Revenue Service +Reduction of Tax Attributes Due to Discharge of +Indebtedness (and Section 1082 Basis Adjustment) +a + Attach this form to your income tax return. +OMB No. 1545-0046 +Attachment +Sequence No. +94 +Name shown on return +Identifying number +Part I +General Information +(see instructions) +1 +Amount excluded is due to (check applicable box(es)): +a +Discharge of indebtedness in a title 11 case +........................ +b +Discharge of indebtedness to the extent insolvent (not in a title 11 case) +............... +c +Discharge of qualified farm indebtedness +......................... +d +Discharge of qualified real property business indebtedness +................... +e +Discharge of qualified principal residence indebtedness +.................... +2 +Total amount of discharged indebtedness excluded from gross income +......... +2 +3 +Do you elect to treat all real property described in section 1221(a)(1), relating to property held for sale to +customers in the ordinary course of a trade or business, as if it were depreciable property? +...... +Yes +No +Part II +Reduction of Tax Attributes. +You must attach a description of any transactions resulting in the reduction in +basis under section 1017. See Regulations section 1.1017-1 for basis reduction ordering rules, and, if applicable, +required partnership consent statements. (For additional information, see the instructions for Part II.) +Enter amount excluded from gross income: +4 +For a discharge of qualified real property business indebtedness applied to reduce the basis of +depreciable real property +........................ +4 +5 +That you elect under section 108(b)(5) to apply first to reduce the basis (under section 1017) of +depreciable property +.......................... +5 +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 +..................... +6 +7 +Applied to reduce any general business credit carryover to or from the tax year of the discharge . +7 +8 +Applied to reduce any minimum tax credit as of the beginning of the tax year immediately after the +tax year of the discharge +......................... +8 +9 +Applied to reduce any net capital loss for the tax year of the discharge, including any capital loss +carryovers to the tax year of the discharge +................... +9 +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 +.......... +10a +b +Applied to reduce the basis of your principal residence. +Enter amount here ONLY if line 1e is +checked +.............................. +10b +11 +For a discharge of qualified farm indebtedness applied to reduce the basis of: +a +Depreciable property used or held for use in a trade or business or for the production of income if +not reduced on line 5 +.......................... +11a +b +Land used or held for use in a trade or business of farming +............. +11b +c +Other property used or held for use in a trade or business or for the production of income . . . +11c +12 +Applied to reduce any passive activity loss and credit carryovers from the tax year of the discharge +12 +13 +Applied to reduce any foreign tax credit carryover to or from the tax year of the discharge . . . +13 +Part III +Consent of Corporation to Adjustment of Basis of Its Property Under Section 1082(a)(2) +Under section 1081(b), the corporation named above has excluded $ +from its gross income +for the tax year beginning + and ending +. +of +. +(State of incorporation) +Note. +You must attach a description of the transactions resulting in the nonrecognition of gain under section 1081. +For Paperwork Reduction Act Notice, see page 5 of this form. +Cat. No. 17066E +Form +982 + (Rev. 7-2013) +a +. + Information about Form 982 and its instructions is at www.irs.gov/form982 +Under that section, the corporation consents to have the basis of its property adjusted in accordance with the regulations prescribed +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 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/F982.fields.json b/test/data/fd/form/F982.fields.json new file mode 100755 index 00000000..caa67cf5 --- /dev/null +++ b/test/data/fd/form/F982.fields.json @@ -0,0 +1 @@ +[{"id":"BX1A","type":"box","calc":false,"value":""},{"id":"BX1B","type":"box","calc":false,"value":""},{"id":"BX1C","type":"box","calc":false,"value":""},{"id":"BX1D","type":"box","calc":false,"value":""},{"id":"BX1E","type":"box","calc":false,"value":""},{"id":"L3BOXERB","type":"radio","calc":false,"value":"BX3YES"},{"id":"L3BOXERB","type":"radio","calc":false,"value":"BX3NO"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L10B","type":"number","calc":false,"value":""},{"id":"L11A","type":"number","calc":false,"value":""},{"id":"L11B","type":"number","calc":false,"value":""},{"id":"L11C","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"EXCLINC","type":"number","calc":false,"value":""},{"id":"TYBEG","type":"date","calc":false,"value":""},{"id":"TYEND","type":"date","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/F982.json b/test/data/fd/form/F982.json new file mode 100755 index 00000000..257ef872 --- /dev/null +++ b/test/data/fd/form/F982.json @@ -0,0 +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 diff --git a/test/data/fd/form/FDEPEND.content.txt b/test/data/fd/form/FDEPEND.content.txt new file mode 100755 index 00000000..96456335 --- /dev/null +++ b/test/data/fd/form/FDEPEND.content.txt @@ -0,0 +1,17 @@ +Form 1040 +Additional Dependents Statement 2013 +Line 6c +G + Attach to return (after all IRS forms) +Statement +Name(s) shown on return +Your social security number +Dependents: + (1) (2) (3) (4) + +First name Last name Dependent's Dependent's +b + if qualifying +social security relationship child for +number to you child tax credit +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FDEPEND.fields.json b/test/data/fd/form/FDEPEND.fields.json new file mode 100755 index 00000000..d4197aae --- /dev/null +++ b/test/data/fd/form/FDEPEND.fields.json @@ -0,0 +1 @@ +[{"id":"DEPNAME_L6C5_1_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_2_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_3_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_4_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_5_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_6_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_7_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_8_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_9_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_10_","type":"box","calc":false,"value":""},{"id":"STMT","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C1_1_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_1_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_1_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_1_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_2_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_2_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_2_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_2_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_3_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_3_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_3_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_3_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_4_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_4_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_4_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_4_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_5_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_5_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_5_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_5_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_6_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_6_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_6_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_6_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_7_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_7_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_7_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_7_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_8_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_8_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_8_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_8_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_9_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_9_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_9_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_9_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_10_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_10_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_10_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_10_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FDEPEND.json b/test/data/fd/form/FDEPEND.json new file mode 100755 index 00000000..700dbcc0 --- /dev/null +++ b/test/data/fd/form/FDEPEND.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdix3801.pfm : default (Read Only)","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":0.086,"y":49.469,"w":1,"l":2.922},{"x":0.086,"y":48.731,"w":1,"l":2.922}],"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":3.008,"y":48.731,"w":1,"l":0.738},{"x":0.086,"y":48.731,"w":1,"l":0.738}],"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":91.781,"y":1.5,"w":8.333,"h":0.03,"clr":0},{"x":0,"y":3,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":7.125,"w":100.114,"h":0.03,"clr":0},{"x":2.063,"y":8.25,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":8.25,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":8.25,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":9,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":9,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":9,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":9.75,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":9.75,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":9.75,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":10.5,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":10.5,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":10.5,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":11.25,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":11.25,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":11.25,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":12,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":12,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":12,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":12.75,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":12.75,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":12.75,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":13.5,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":13.5,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":13.5,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":14.25,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":14.25,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":14.25,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":15,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":15,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":15,"w":21.739,"h":0.03,"clr":0},{"x":0,"y":15.75,"w":100.372,"h":0.124,"clr":0},{"x":15.469,"y":0,"w":0.083,"h":1.53,"clr":0},{"x":91.781,"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":41.766,"y":3,"w":0.082,"h":12.03,"clr":0},{"x":56.203,"y":3,"w":0.083,"h":12.03,"clr":0},{"x":78.891,"y":3,"w":0.083,"h":12.03,"clr":0},{"x":19.078,"y":4.5,"w":0.083,"h":10.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":87.656,"y":7.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":8.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":7.5,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":7.5,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":7.504,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":8.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":8.25,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":8.25,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":8.254,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":9,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":9,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":9.004,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":9.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":10.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9.75,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":9.75,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":9.754,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":10.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":11.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":10.5,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":10.5,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":10.504,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":11.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":11.25,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":11.25,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":11.254,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":12,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":12,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":12.004,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":12.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":13.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12.75,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":12.75,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":12.754,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":13.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":14.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":13.5,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":13.5,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":13.504,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":14.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":15,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":14.25,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":14.25,"w":0.083,"h":0.78,"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":0,"y":48.7,"w":3.094,"h":0.8,"clr":1}],"Texts":[{"x":0.09000000000000002,"y":-0.124,"w":5.002,"clr":0,"A":"left","R":[{"T":"Form%201040","S":-1,"TS":[2,13.96,1,0]}]},{"x":32.059,"y":-0.124,"w":16.002,"clr":0,"A":"left","R":[{"T":"Additional%20Dependents%20Statement","S":-1,"TS":[2,16,1,0]}]},{"x":91.873,"y":-0.124,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,16,1,0]}]},{"x":2.153,"y":0.6259999999999999,"w":3.446,"clr":0,"A":"left","R":[{"T":"Line%206c","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.559,"y":0.6259999999999999,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,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.376,"w":13.449000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[2,10.98,1,0]}]},{"x":0.09000000000000002,"y":2.876,"w":6.056,"clr":0,"A":"left","R":[{"T":"Dependents%3A","S":-1,"TS":[2,12,1,0]}]},{"x":2.153,"y":3.6260000000000003,"w":8.450000000000005,"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(1)","S":-1,"TS":[2,12,1,0]}]},{"x":47.967,"y":3.6260000000000003,"w":1.222,"clr":0,"A":"left","R":[{"T":"(2)","S":-1,"TS":[2,12,1,0]}]},{"x":66.53,"y":3.6260000000000003,"w":1.222,"clr":0,"A":"left","R":[{"T":"(3)","S":-1,"TS":[2,12,1,0]}]},{"x":88.701,"y":3.6260000000000003,"w":1.222,"clr":0,"A":"left","R":[{"T":"(4)","S":-1,"TS":[2,12,1,0]}]},{"x":2.586,"y":4.376,"w":5.632999999999999,"clr":0,"A":"left","R":[{"T":"First%20name%20%20","S":44,"TS":[2,12,0,0]}]},{"x":19.686,"y":4.376,"w":5.201,"clr":0,"A":"left","R":[{"T":"%20Last%20name","S":44,"TS":[2,12,0,0]}]},{"x":44.478,"y":4.376,"w":5.733999999999999,"clr":0,"A":"left","R":[{"T":"Dependent's","S":44,"TS":[2,12,0,0]}]},{"x":63.041,"y":4.376,"w":5.733999999999999,"clr":0,"A":"left","R":[{"T":"Dependent's","S":44,"TS":[2,12,0,0]}]},{"x":84.859,"y":4.376,"w":0.755,"clr":0,"A":"left","R":[{"T":"b","S":-1,"TS":[2,12.96,0,0]}]},{"x":86.148,"y":4.376,"w":5.673,"clr":0,"A":"left","R":[{"T":"%20if%20qualifying","S":44,"TS":[2,12,0,0]}]},{"x":43.815,"y":5.126,"w":6.583999999999999,"clr":0,"A":"left","R":[{"T":"social%20security","S":44,"TS":[2,12,0,0]}]},{"x":63.319,"y":5.126,"w":5.363999999999999,"clr":0,"A":"left","R":[{"T":"relationship","S":44,"TS":[2,12,0,0]}]},{"x":86.771,"y":5.126,"w":3.713,"clr":0,"A":"left","R":[{"T":"child%20for","S":44,"TS":[2,12,0,0]}]},{"x":46.187,"y":5.876,"w":3.5020000000000002,"clr":0,"A":"left","R":[{"T":"number","S":44,"TS":[2,12,0,0]}]},{"x":65.265,"y":5.876,"w":2.8440000000000003,"clr":0,"A":"left","R":[{"T":"to%20you","S":44,"TS":[2,12,0,0]}]},{"x":84.395,"y":5.876,"w":6.779999999999999,"clr":0,"A":"left","R":[{"T":"child%20tax%20credit","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":7721,"AM":0,"x":91.946,"y":0.615,"w":8.044,"h":0.885},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7722,"AM":1024,"x":0.062,"y":2.115,"w":81.345,"h":0.885,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7723,"AM":0,"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":"DEPNAME_L6C1_1_","EN":0},"TI":7724,"AM":0,"x":2.25,"y":7.517,"w":16.746,"h":0.833,"TU":"First name_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_1_","EN":0},"TI":7725,"AM":0,"x":19.858,"y":7.502,"w":16.746,"h":0.833,"TU":"First name_Row_1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_1_","EN":0},"TI":7726,"AM":0,"x":42.281,"y":7.538,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_1_","EN":0},"TI":7727,"AM":0,"x":56.549,"y":7.539,"w":21.681,"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":"DEPNAME_L6C1_2_","EN":0},"TI":7729,"AM":0,"x":2.104,"y":8.303,"w":16.933,"h":0.833,"TU":"First name_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_2_","EN":0},"TI":7730,"AM":0,"x":19.711,"y":8.287,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_2_","EN":0},"TI":7731,"AM":0,"x":42.281,"y":8.288,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_2_","EN":0},"TI":7732,"AM":0,"x":56.485,"y":8.328,"w":21.681,"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":"DEPNAME_L6C1_3_","EN":0},"TI":7734,"AM":0,"x":2.104,"y":9.053,"w":16.933,"h":0.833,"TU":"First name_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_3_","EN":0},"TI":7735,"AM":0,"x":19.711,"y":9.037,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_3_","EN":0},"TI":7736,"AM":0,"x":42.281,"y":9.038,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_3_","EN":0},"TI":7737,"AM":0,"x":56.43,"y":9.049,"w":21.681,"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":"DEPNAME_L6C1_4_","EN":0},"TI":7739,"AM":0,"x":2.104,"y":9.803,"w":16.933,"h":0.833,"TU":"First name_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_4_","EN":0},"TI":7740,"AM":0,"x":19.711,"y":9.787,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_4_","EN":0},"TI":7741,"AM":0,"x":42.281,"y":9.788,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_4_","EN":0},"TI":7742,"AM":0,"x":56.503,"y":9.771,"w":21.681,"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":"DEPNAME_L6C1_5_","EN":0},"TI":7744,"AM":0,"x":2.104,"y":10.553,"w":16.933,"h":0.833,"TU":"First name_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_5_","EN":0},"TI":7745,"AM":0,"x":19.711,"y":10.537,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_5_","EN":0},"TI":7746,"AM":0,"x":42.281,"y":10.538,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_5_","EN":0},"TI":7747,"AM":0,"x":56.448,"y":10.539,"w":21.681,"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":"DEPNAME_L6C1_6_","EN":0},"TI":7749,"AM":0,"x":2.104,"y":11.303,"w":16.933,"h":0.833,"TU":"First name_Row_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_6_","EN":0},"TI":7750,"AM":0,"x":19.711,"y":11.287,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_6_","EN":0},"TI":7751,"AM":0,"x":42.281,"y":11.288,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_6_","EN":0},"TI":7752,"AM":0,"x":56.544,"y":11.279,"w":21.682,"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":"DEPNAME_L6C1_7_","EN":0},"TI":7754,"AM":0,"x":2.104,"y":12.053,"w":16.933,"h":0.833,"TU":"First name_Row_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_7_","EN":0},"TI":7755,"AM":0,"x":19.711,"y":12.037,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_7_","EN":0},"TI":7756,"AM":0,"x":42.281,"y":12.038,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_7_","EN":0},"TI":7757,"AM":0,"x":56.481,"y":12.067,"w":21.681,"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":"DEPNAME_L6C1_8_","EN":0},"TI":7759,"AM":0,"x":2.104,"y":12.803,"w":16.933,"h":0.833,"TU":"First name_Row_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_8_","EN":0},"TI":7760,"AM":0,"x":19.711,"y":12.787,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_8_","EN":0},"TI":7761,"AM":0,"x":42.281,"y":12.788,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_8_","EN":0},"TI":7762,"AM":0,"x":56.426,"y":12.789,"w":21.681,"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":"DEPNAME_L6C1_9_","EN":0},"TI":7764,"AM":0,"x":2.104,"y":13.553,"w":16.933,"h":0.833,"TU":"First name_Row_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_9_","EN":0},"TI":7765,"AM":0,"x":19.711,"y":13.537,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_9_","EN":0},"TI":7766,"AM":0,"x":42.281,"y":13.538,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_9_","EN":0},"TI":7767,"AM":0,"x":56.498,"y":13.51,"w":21.681,"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":"DEPNAME_L6C1_10_","EN":0},"TI":7769,"AM":0,"x":2.104,"y":14.303,"w":16.933,"h":0.833,"TU":"First name_Row_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_10_","EN":0},"TI":7770,"AM":0,"x":19.711,"y":14.287,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_10_","EN":0},"TI":7771,"AM":0,"x":42.281,"y":14.288,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_10_","EN":0},"TI":7772,"AM":0,"x":56.443,"y":14.279,"w":21.681,"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"]}}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_1_","EN":0},"TI":7728,"AM":0,"x":87.849,"y":7.386,"w":3.094,"h":0.847}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_2_","EN":0},"TI":7733,"AM":0,"x":87.704,"y":8.145,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_3_","EN":0},"TI":7738,"AM":0,"x":87.777,"y":8.82,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_4_","EN":0},"TI":7743,"AM":0,"x":87.722,"y":9.601,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_5_","EN":0},"TI":7748,"AM":0,"x":87.704,"y":10.347,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_6_","EN":0},"TI":7753,"AM":0,"x":87.649,"y":11.162,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_7_","EN":0},"TI":7758,"AM":0,"x":87.722,"y":11.884,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_8_","EN":0},"TI":7763,"AM":0,"x":87.667,"y":12.605,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_9_","EN":0},"TI":7768,"AM":0,"x":87.739,"y":13.374,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_10_","EN":0},"TI":7773,"AM":0,"x":87.684,"y":14.095,"w":3.094,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FDEPENDA.content.txt b/test/data/fd/form/FDEPENDA.content.txt new file mode 100755 index 00000000..2d766403 --- /dev/null +++ b/test/data/fd/form/FDEPENDA.content.txt @@ -0,0 +1,17 @@ +Form 1040A +Additional Dependents Statement 2013 +Line 6c +G + Attach to return (after all IRS forms) +Statement +Name(s) shown on return +Your social security number +Dependents: + (1) (2) (3) (4) + +First name Last name Dependent's Dependent's +b + if qualifying +social security relationship child for +number to you child tax credit +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FDEPENDA.fields.json b/test/data/fd/form/FDEPENDA.fields.json new file mode 100755 index 00000000..394e83af --- /dev/null +++ b/test/data/fd/form/FDEPENDA.fields.json @@ -0,0 +1 @@ +[{"id":"DEPNAME_L6C5_1_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_2_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_3_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_4_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_5_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_6_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_7_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_8_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_9_","type":"box","calc":false,"value":""},{"id":"DEPNAME_L6C5_10_","type":"box","calc":false,"value":""},{"id":"STMT","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DEPNAME_L6C1_1_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_1_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_1_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_1_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_2_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_2_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_2_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_2_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_3_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_3_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_3_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_3_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_4_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_4_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_4_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_4_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_5_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_5_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_5_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_5_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_6_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_6_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_6_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_6_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_7_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_7_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_7_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_7_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_8_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_8_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_8_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_8_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_9_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_9_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_9_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_9_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C1_10_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C2_10_","type":"alpha","calc":false,"value":""},{"id":"DEPNAME_L6C3_10_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_L6C4_10_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FDEPENDA.json b/test/data/fd/form/FDEPENDA.json new file mode 100755 index 00000000..307a3ed1 --- /dev/null +++ b/test/data/fd/form/FDEPENDA.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdix3801.pfm : default (Read Only)","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":0.086,"y":49.469,"w":1,"l":2.922},{"x":0.086,"y":48.731,"w":1,"l":2.922}],"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":3.008,"y":48.731,"w":1,"l":0.738},{"x":0.086,"y":48.731,"w":1,"l":0.738}],"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":91.781,"y":1.5,"w":8.333,"h":0.03,"clr":0},{"x":0,"y":3,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":7.125,"w":100.114,"h":0.03,"clr":0},{"x":2.063,"y":8.25,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":8.25,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":8.25,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":9,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":9,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":9,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":9.75,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":9.75,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":9.75,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":10.5,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":10.5,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":10.5,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":11.25,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":11.25,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":11.25,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":12,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":12,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":12,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":12.75,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":12.75,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":12.75,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":13.5,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":13.5,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":13.5,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":14.25,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":14.25,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":14.25,"w":21.739,"h":0.03,"clr":0},{"x":2.063,"y":15,"w":39.27,"h":0.03,"clr":0},{"x":42.281,"y":15,"w":13.489,"h":0.03,"clr":0},{"x":56.719,"y":15,"w":21.739,"h":0.03,"clr":0},{"x":0,"y":15.75,"w":100.372,"h":0.124,"clr":0},{"x":15.469,"y":0,"w":0.083,"h":1.53,"clr":0},{"x":91.781,"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":41.766,"y":3,"w":0.082,"h":12.03,"clr":0},{"x":56.203,"y":3,"w":0.083,"h":12.03,"clr":0},{"x":78.891,"y":3,"w":0.083,"h":12.03,"clr":0},{"x":19.078,"y":4.5,"w":0.083,"h":10.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":87.656,"y":7.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":8.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":7.5,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":7.5,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":7.504,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":8.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":8.25,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":8.25,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":8.254,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":9,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":9,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":9.004,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":9.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":10.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":9.75,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":9.75,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":9.754,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":10.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":11.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":10.5,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":10.5,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":10.504,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":11.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":11.25,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":11.25,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":11.254,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":12,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":12,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":12.004,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":12.75,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":13.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":12.75,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":12.75,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":12.754,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":13.5,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":14.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":13.5,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":13.5,"w":0.083,"h":0.78,"clr":0},{"x":100.062,"y":13.504,"w":1,"h":0.742,"clr":0},{"x":87.656,"y":14.25,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":15,"w":3.176,"h":0.03,"clr":0},{"x":87.656,"y":14.25,"w":0.083,"h":0.78,"clr":0},{"x":90.75,"y":14.25,"w":0.083,"h":0.78,"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":0,"y":48.7,"w":3.094,"h":0.8,"clr":1}],"Texts":[{"x":0.09000000000000002,"y":-0.124,"w":5.724,"clr":0,"A":"left","R":[{"T":"Form%201040A","S":-1,"TS":[2,13.96,1,0]}]},{"x":32.059,"y":-0.124,"w":16.002,"clr":0,"A":"left","R":[{"T":"Additional%20Dependents%20Statement","S":-1,"TS":[2,16,1,0]}]},{"x":91.873,"y":-0.124,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,16,1,0]}]},{"x":2.153,"y":0.6259999999999999,"w":3.446,"clr":0,"A":"left","R":[{"T":"Line%206c","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.559,"y":0.6259999999999999,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,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.376,"w":13.449000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[2,10.98,1,0]}]},{"x":0.09000000000000002,"y":2.876,"w":6.056,"clr":0,"A":"left","R":[{"T":"Dependents%3A","S":-1,"TS":[2,12,1,0]}]},{"x":2.153,"y":3.6260000000000003,"w":8.450000000000005,"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(1)","S":-1,"TS":[2,12,1,0]}]},{"x":47.967,"y":3.6260000000000003,"w":1.222,"clr":0,"A":"left","R":[{"T":"(2)","S":-1,"TS":[2,12,1,0]}]},{"x":66.53,"y":3.6260000000000003,"w":1.222,"clr":0,"A":"left","R":[{"T":"(3)","S":-1,"TS":[2,12,1,0]}]},{"x":88.701,"y":3.6260000000000003,"w":1.222,"clr":0,"A":"left","R":[{"T":"(4)","S":-1,"TS":[2,12,1,0]}]},{"x":2.586,"y":4.376,"w":5.632999999999999,"clr":0,"A":"left","R":[{"T":"First%20name%20%20","S":44,"TS":[2,12,0,0]}]},{"x":19.686,"y":4.376,"w":5.201,"clr":0,"A":"left","R":[{"T":"%20Last%20name","S":44,"TS":[2,12,0,0]}]},{"x":44.478,"y":4.376,"w":5.733999999999999,"clr":0,"A":"left","R":[{"T":"Dependent's","S":44,"TS":[2,12,0,0]}]},{"x":63.041,"y":4.376,"w":5.733999999999999,"clr":0,"A":"left","R":[{"T":"Dependent's","S":44,"TS":[2,12,0,0]}]},{"x":84.859,"y":4.376,"w":0.755,"clr":0,"A":"left","R":[{"T":"b","S":-1,"TS":[2,12.96,0,0]}]},{"x":86.148,"y":4.376,"w":5.673,"clr":0,"A":"left","R":[{"T":"%20if%20qualifying","S":44,"TS":[2,12,0,0]}]},{"x":43.815,"y":5.126,"w":6.583999999999999,"clr":0,"A":"left","R":[{"T":"social%20security","S":44,"TS":[2,12,0,0]}]},{"x":63.319,"y":5.126,"w":5.363999999999999,"clr":0,"A":"left","R":[{"T":"relationship","S":44,"TS":[2,12,0,0]}]},{"x":86.771,"y":5.126,"w":3.713,"clr":0,"A":"left","R":[{"T":"child%20for","S":44,"TS":[2,12,0,0]}]},{"x":46.187,"y":5.876,"w":3.5020000000000002,"clr":0,"A":"left","R":[{"T":"number","S":44,"TS":[2,12,0,0]}]},{"x":65.265,"y":5.876,"w":2.8440000000000003,"clr":0,"A":"left","R":[{"T":"to%20you","S":44,"TS":[2,12,0,0]}]},{"x":84.395,"y":5.876,"w":6.779999999999999,"clr":0,"A":"left","R":[{"T":"child%20tax%20credit","S":44,"TS":[2,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":7774,"AM":0,"x":91.946,"y":0.615,"w":8.044,"h":0.885},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7775,"AM":1024,"x":0.062,"y":2.115,"w":81.345,"h":0.885,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7776,"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":"DEPNAME_L6C1_1_","EN":0},"TI":7777,"AM":0,"x":2.25,"y":7.517,"w":16.746,"h":0.833,"TU":"First name_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_1_","EN":0},"TI":7778,"AM":0,"x":19.858,"y":7.502,"w":16.746,"h":0.833,"TU":"First name_Row_1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_1_","EN":0},"TI":7779,"AM":0,"x":42.281,"y":7.538,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_1_","EN":0},"TI":7780,"AM":0,"x":56.549,"y":7.539,"w":21.681,"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":"DEPNAME_L6C1_2_","EN":0},"TI":7782,"AM":0,"x":2.104,"y":8.303,"w":16.933,"h":0.833,"TU":"First name_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_2_","EN":0},"TI":7783,"AM":0,"x":19.711,"y":8.287,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_2_","EN":0},"TI":7784,"AM":0,"x":42.281,"y":8.288,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_2_","EN":0},"TI":7785,"AM":0,"x":56.485,"y":8.328,"w":21.681,"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":"DEPNAME_L6C1_3_","EN":0},"TI":7787,"AM":0,"x":2.104,"y":9.053,"w":16.933,"h":0.833,"TU":"First name_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_3_","EN":0},"TI":7788,"AM":0,"x":19.711,"y":9.037,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_3_","EN":0},"TI":7789,"AM":0,"x":42.281,"y":9.038,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_3_","EN":0},"TI":7790,"AM":0,"x":56.43,"y":9.049,"w":21.681,"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":"DEPNAME_L6C1_4_","EN":0},"TI":7792,"AM":0,"x":2.104,"y":9.803,"w":16.933,"h":0.833,"TU":"First name_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_4_","EN":0},"TI":7793,"AM":0,"x":19.711,"y":9.787,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_4_","EN":0},"TI":7794,"AM":0,"x":42.281,"y":9.788,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_4_","EN":0},"TI":7795,"AM":0,"x":56.503,"y":9.771,"w":21.681,"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":"DEPNAME_L6C1_5_","EN":0},"TI":7797,"AM":0,"x":2.104,"y":10.553,"w":16.933,"h":0.833,"TU":"First name_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_5_","EN":0},"TI":7798,"AM":0,"x":19.711,"y":10.537,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_5_","EN":0},"TI":7799,"AM":0,"x":42.281,"y":10.538,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_5_","EN":0},"TI":7800,"AM":0,"x":56.448,"y":10.539,"w":21.681,"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":"DEPNAME_L6C1_6_","EN":0},"TI":7802,"AM":0,"x":2.104,"y":11.303,"w":16.933,"h":0.833,"TU":"First name_Row_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_6_","EN":0},"TI":7803,"AM":0,"x":19.711,"y":11.287,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_6_","EN":0},"TI":7804,"AM":0,"x":42.281,"y":11.288,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_6_","EN":0},"TI":7805,"AM":0,"x":56.544,"y":11.279,"w":21.682,"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":"DEPNAME_L6C1_7_","EN":0},"TI":7807,"AM":0,"x":2.104,"y":12.053,"w":16.933,"h":0.833,"TU":"First name_Row_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_7_","EN":0},"TI":7808,"AM":0,"x":19.711,"y":12.037,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_7_","EN":0},"TI":7809,"AM":0,"x":42.281,"y":12.038,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_7_","EN":0},"TI":7810,"AM":0,"x":56.481,"y":12.067,"w":21.681,"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":"DEPNAME_L6C1_8_","EN":0},"TI":7812,"AM":0,"x":2.104,"y":12.803,"w":16.933,"h":0.833,"TU":"First name_Row_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_8_","EN":0},"TI":7813,"AM":0,"x":19.711,"y":12.787,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_8_","EN":0},"TI":7814,"AM":0,"x":42.281,"y":12.788,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_8_","EN":0},"TI":7815,"AM":0,"x":56.426,"y":12.789,"w":21.681,"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":"DEPNAME_L6C1_9_","EN":0},"TI":7817,"AM":0,"x":2.104,"y":13.553,"w":16.933,"h":0.833,"TU":"First name_Row_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_9_","EN":0},"TI":7818,"AM":0,"x":19.711,"y":13.537,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_9_","EN":0},"TI":7819,"AM":0,"x":42.281,"y":13.538,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_9_","EN":0},"TI":7820,"AM":0,"x":56.498,"y":13.51,"w":21.681,"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":"DEPNAME_L6C1_10_","EN":0},"TI":7822,"AM":0,"x":2.104,"y":14.303,"w":16.933,"h":0.833,"TU":"First name_Row_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C2_10_","EN":0},"TI":7823,"AM":0,"x":19.711,"y":14.287,"w":16.933,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C3_10_","EN":0},"TI":7824,"AM":0,"x":42.281,"y":14.288,"w":13.509,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C4_10_","EN":0},"TI":7825,"AM":0,"x":56.443,"y":14.279,"w":21.681,"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"]}}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_1_","EN":0},"TI":7781,"AM":0,"x":87.849,"y":7.386,"w":3.094,"h":0.847}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_2_","EN":0},"TI":7786,"AM":0,"x":87.704,"y":8.145,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_3_","EN":0},"TI":7791,"AM":0,"x":87.777,"y":8.82,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_4_","EN":0},"TI":7796,"AM":0,"x":87.722,"y":9.601,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_5_","EN":0},"TI":7801,"AM":0,"x":87.704,"y":10.347,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_6_","EN":0},"TI":7806,"AM":0,"x":87.649,"y":11.162,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_7_","EN":0},"TI":7811,"AM":0,"x":87.722,"y":11.884,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_8_","EN":0},"TI":7816,"AM":0,"x":87.667,"y":12.605,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_9_","EN":0},"TI":7821,"AM":0,"x":87.739,"y":13.374,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPNAME_L6C5_10_","EN":0},"TI":7826,"AM":0,"x":87.684,"y":14.095,"w":3.094,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FES1.content.txt b/test/data/fd/form/FES1.content.txt new file mode 100755 index 00000000..cc62cc3f --- /dev/null +++ b/test/data/fd/form/FES1.content.txt @@ -0,0 +1,43 @@ + +Tear off here + +Form +1040-ES +Department of the Treasury +Internal Revenue Service +20 +13 + +Estimated Tax +Payment +Voucher +1 +OMB No. 1545-0074 +File only if you are making a payment of estimated tax by check or money order. Mail this +voucher with your check or money order payable to +“United States Treasury.” + Write your +social security number and “2013 Form 1040-ES” on your check or money order. Do not send +cash. Enclose, but do not staple or attach, your payment with this voucher. +Calendar year—Due April 15, 2013 +Amount of estimated tax you are paying +by check or +money order. +Dollars +Cents +Print or type +Your first name and initial +Your last name +Your social security number +If joint payment, complete for spouse +Spouse’s first name and initial +Spouse’s last name +Spouse’s social security number +Address (number, street, and apt. no.) +City, state, and ZIP code. (If a foreign address, enter city, also complete spaces below.) +Foreign country name +Foreign province/county +Foreign postal code +For Privacy Act and Paperwork Reduction Act Notice, see instructions. +Form 1040-ES (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FES1.fields.json b/test/data/fd/form/FES1.fields.json new file mode 100755 index 00000000..a50b6442 --- /dev/null +++ b/test/data/fd/form/FES1.fields.json @@ -0,0 +1 @@ +[{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"YSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FES1.json b/test/data/fd/form/FES1.json new file mode 100755 index 00000000..7caef9fa --- /dev/null +++ b/test/data/fd/form/FES1.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1040-ES (OTC)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.501,"HLines":[{"dsh":1,"x":6.145,"y":17.062,"w":0.75,"l":92.898},{"x":10.82,"y":3.688,"w":1.5,"l":2.561},{"x":13.295,"y":3.688,"w":1.5,"l":13.698},{"x":26.864,"y":3.688,"w":1.5,"l":43.441},{"x":70.22,"y":3.688,"w":1.5,"l":8.748},{"x":78.882,"y":3.688,"w":1.5,"l":2.561},{"x":81.357,"y":3.687,"w":1.5,"l":14.936},{"x":10.82,"y":6.688,"w":1.5,"l":58.248},{"x":68.939,"y":4.438,"w":1.5,"l":27.354},{"x":68.939,"y":6.688,"w":1.5,"l":27.354},{"x":80.034,"y":5.188,"w":2.25,"l":12.547},{"x":80.034,"y":6.688,"w":2.25,"l":12.547},{"x":92.495,"y":5.188,"w":2.25,"l":3.884},{"x":92.495,"y":6.688,"w":2.25,"l":3.884},{"x":10.777,"y":14.938,"w":1.5,"l":2.647},{"x":13.252,"y":8.188,"w":0.75,"l":38.491},{"x":51.657,"y":8.188,"w":0.75,"l":24.836},{"x":76.407,"y":8.188,"w":0.75,"l":19.886},{"x":13.252,"y":8.938,"w":0.75,"l":83.041},{"x":13.252,"y":10.438,"w":0.75,"l":38.491},{"x":51.657,"y":10.438,"w":0.75,"l":24.836},{"x":76.407,"y":10.438,"w":0.75,"l":19.886},{"x":13.252,"y":11.938,"w":0.75,"l":83.041},{"x":13.252,"y":13.438,"w":0.75,"l":83.041},{"x":13.295,"y":14.938,"w":1.5,"l":38.448},{"x":51.657,"y":14.938,"w":1.5,"l":24.836},{"x":76.407,"y":14.938,"w":1.5,"l":19.886}],"VLines":[{"x":26.95,"y":2.172,"w":1.5,"l":1.547},{"x":69.025,"y":3.672,"w":1.5,"l":0.797},{"x":69.025,"y":4.422,"w":1.5,"l":2.297},{"x":80.162,"y":5.141,"w":2.25,"l":1.594},{"x":96.25,"y":5.141,"w":2.25,"l":1.594},{"x":92.537,"y":5.141,"w":0.75,"l":1.594},{"x":13.337,"y":6.656,"w":1.5,"l":8.313},{"x":10.863,"y":6.656,"w":1.5,"l":8.313},{"x":51.7,"y":6.672,"w":0.75,"l":1.531},{"x":76.45,"y":6.672,"w":0.75,"l":1.531},{"x":51.7,"y":8.922,"w":0.75,"l":1.531},{"x":76.45,"y":8.922,"w":0.75,"l":1.531},{"x":51.7,"y":13.422,"w":0.75,"l":1.547},{"x":76.45,"y":13.422,"w":0.75,"l":1.547}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":48.142,"y":16.138,"w":6.111,"clr":0,"A":"left","R":[{"T":"Tear%20off%20here","S":-1,"TS":[0,11,0,0]}]},{"x":12.107,"y":2.698,"w":2.334,"clr":0,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":13.088,"y":1.991,"w":3.9280000000000004,"clr":0,"A":"left","R":[{"T":"1040-ES","S":4,"TS":[0,14,0,0]}]},{"x":13.087,"y":2.393,"w":12.540000000000003,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":51,"TS":[0,9,0,0]}]},{"x":13.087,"y":2.799,"w":11.093000000000002,"clr":0,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"x":27.387,"y":2.58,"w":1.264,"clr":0,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":31.732,"y":2.58,"w":1.336,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":37.228,"y":2.58,"w":6.811999999999999,"clr":0,"A":"left","R":[{"T":"Estimated%20Tax","S":-1,"TS":[0,23,0,0]}]},{"x":70.013,"y":1.9460000000000002,"w":4.463000000000001,"clr":0,"A":"left","R":[{"T":"Payment%20","S":-1,"TS":[0,13,0,0]}]},{"x":70.013,"y":2.634,"w":3.9640000000000004,"clr":0,"A":"left","R":[{"T":"Voucher","S":-1,"TS":[0,13,0,0]}]},{"x":78.675,"y":2.509,"w":0.48,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,27,0,0]}]},{"x":84.831,"y":2.687,"w":9.283000000000001,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"x":10.613,"y":3.6959999999999997,"w":40.102999999999994,"clr":0,"A":"left","R":[{"T":"File%20only%20if%20you%20are%20making%20a%20payment%20of%20estimated%20tax%20by%20check%20or%20money%20order.%20Mail%20this%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":10.613,"y":4.258,"w":23.3,"clr":0,"A":"left","R":[{"T":"voucher%20with%20your%20check%20or%20money%20order%20payable%20to%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":40.648,"y":4.258,"w":12.113,"clr":0,"A":"left","R":[{"T":"%E2%80%9CUnited%20States%20Treasury.%E2%80%9D","S":-1,"TS":[0,10.5,0,0]}]},{"x":56.262,"y":4.258,"w":5.130000000000001,"clr":0,"A":"left","R":[{"T":"%20Write%20your%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":10.613,"y":4.821,"w":42.19899999999998,"clr":0,"A":"left","R":[{"T":"social%20security%20number%20and%20%E2%80%9C2013%20Form%201040-ES%E2%80%9D%20on%20your%20check%20or%20money%20order.%20Do%20not%20send%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":10.613,"y":5.383,"w":33.49,"clr":0,"A":"left","R":[{"T":"cash.%20Enclose%2C%20but%20do%20not%20staple%20or%20attach%2C%20your%20payment%20with%20this%20voucher.","S":-1,"TS":[0,10.5,0,0]}]},{"x":69.463,"y":3.4240000000000004,"w":16.205000000000005,"clr":0,"A":"left","R":[{"T":"Calendar%20year%E2%80%94Due%20April%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"x":69.463,"y":4.17,"w":18.11600000000001,"clr":0,"A":"left","R":[{"T":"Amount%20of%20estimated%20tax%20you%20are%20paying%20","S":-1,"TS":[0,11,0,0]}]},{"x":69.463,"y":4.77,"w":5.798,"clr":0,"A":"left","R":[{"T":"by%20check%20or%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":69.463,"y":5.37,"w":5.946,"clr":0,"A":"left","R":[{"T":"money%20order.","S":-1,"TS":[0,11,0,0]}]},{"x":84.24,"y":5,"w":3.092,"clr":0,"A":"left","R":[{"T":"Dollars","S":2,"TS":[0,10,0,0]}]},{"x":92.72,"y":5,"w":2.63,"clr":0,"A":"left","R":[{"T":"Cents","S":-1,"TS":[0,9.3,0,0]}]},{"x":12.144,"y":11.53,"w":5.8709999999999996,"clr":0,"A":"left","R":[{"T":"Print%20or%20type","S":-1,"TS":[0,11,0,0],"RA":90}]},{"x":13.775,"y":6.545,"w":11.353999999999997,"clr":0,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":52.138,"y":6.545,"w":6.723999999999999,"clr":0,"A":"left","R":[{"T":"Your%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":76.888,"y":6.545,"w":12.465000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"x":13.775,"y":7.922000000000001,"w":16.634,"clr":0,"A":"left","R":[{"T":"If%20joint%20payment%2C%20complete%20for%20spouse","S":-1,"TS":[0,11,0,0]}]},{"x":13.775,"y":8.795,"w":13.429000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":52.138,"y":8.795,"w":8.799000000000001,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":76.887,"y":8.795,"w":14.540000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number","S":-1,"TS":[0,10.2,0,0]}]},{"x":13.775,"y":10.295,"w":16.950000000000006,"clr":0,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20and%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":13.775,"y":11.795,"w":39.004000000000005,"clr":0,"A":"left","R":[{"T":"City%2C%20state%2C%20and%20ZIP%20code.%20(If%20a%20foreign%20address%2C%20enter%20city%2C%20also%20complete%20spaces%20below.)","S":-1,"TS":[0,11,0,0]}]},{"x":13.775,"y":13.295,"w":9.780000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20country%20name","S":-1,"TS":[0,11,0,0]}]},{"x":52.138,"y":13.295,"w":10.871,"clr":0,"A":"left","R":[{"T":"Foreign%20province%2Fcounty","S":-1,"TS":[0,11,0,0]}]},{"x":76.888,"y":13.232,"w":8.908,"clr":0,"A":"left","R":[{"T":"Foreign%20postal%20code","S":-1,"TS":[0,11,0,0]}]},{"x":10.612,"y":14.795,"w":33.685,"clr":0,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":79.912,"y":14.777,"w":9.799000000000003,"clr":0,"A":"left","R":[{"T":"Form%201040-ES%20(2013)","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":7827,"AM":0,"x":80.334,"y":5.875,"w":12.053,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7828,"AM":1024,"x":13.509,"y":7.375,"w":62.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"YSSN","EN":0},"TI":7829,"AM":1024,"x":76.622,"y":7.375,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":7830,"AM":1024,"x":13.509,"y":9.625,"w":62.919,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":7831,"AM":1024,"x":76.622,"y":9.625,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":7832,"AM":1024,"x":13.584,"y":11.125,"w":82.913,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CSZ","EN":0},"TI":7833,"AM":1024,"x":13.435,"y":12.652,"w":82.912,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COUNTRY","EN":0},"TI":7834,"AM":1024,"x":13.509,"y":14.125,"w":38.363,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":7835,"AM":1024,"x":51.872,"y":14.125,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":7836,"AM":1024,"x":76.622,"y":14.125,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCANLINE","EN":0},"TI":7837,"AM":1024,"x":10.464,"y":15.864,"w":19.8,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FES2.content.txt b/test/data/fd/form/FES2.content.txt new file mode 100755 index 00000000..f6e3ac07 --- /dev/null +++ b/test/data/fd/form/FES2.content.txt @@ -0,0 +1,42 @@ + +Tear off here +Form +1040-ES +Department of the Treasury +Internal Revenue Service +20 +13 + +Estimated Tax +Payment +Voucher +2 +OMB No. 1545-0074 +File only if you are making a payment of estimated tax by check or money order. Mail this +voucher with your check or money order payable to +“United States Treasury.” + Write your +social security number and “2013 Form 1040-ES” on your check or money order. Do not send +cash. Enclose, but do not staple or attach, your payment with this voucher. +Calendar year—Due June 17, 2013 +Amount of estimated tax you are paying +by check or +money order. +Dollars +Cents +Print or type +Your first name and initial +Your last name +Your social security number +If joint payment, complete for spouse +Spouse’s first name and initial +Spouse’s last name +Spouse’s social security number +Address (number, street, and apt. no.) +City, state, and ZIP code. (If a foreign address, enter city, also complete spaces below.) +Foreign country name +Foreign province/county +Foreign postal code +For Privacy Act and Paperwork Reduction Act Notice, see instructions. + +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FES2.fields.json b/test/data/fd/form/FES2.fields.json new file mode 100755 index 00000000..fd1d9427 --- /dev/null +++ b/test/data/fd/form/FES2.fields.json @@ -0,0 +1 @@ +[{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FES2.json b/test/data/fd/form/FES2.json new file mode 100755 index 00000000..a6f49371 --- /dev/null +++ b/test/data/fd/form/FES2.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1040-ES (OTC)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.501,"HLines":[{"dsh":1,"x":6.145,"y":17.062,"w":0.75,"l":92.898},{"x":9.788,"y":3.188,"w":1.5,"l":2.561},{"x":12.263,"y":3.188,"w":1.5,"l":13.698},{"x":25.833,"y":3.188,"w":1.5,"l":43.441},{"x":69.188,"y":3.188,"w":1.5,"l":8.748},{"x":77.851,"y":3.188,"w":1.5,"l":2.561},{"x":80.326,"y":3.187,"w":1.5,"l":14.936},{"x":9.788,"y":6.188,"w":1.5,"l":58.248},{"x":67.908,"y":3.938,"w":1.5,"l":27.354},{"x":67.908,"y":6.188,"w":1.5,"l":27.354},{"x":79.002,"y":4.688,"w":2.25,"l":12.547},{"x":79.002,"y":6.188,"w":2.25,"l":12.547},{"x":91.463,"y":4.688,"w":2.25,"l":3.884},{"x":91.463,"y":6.188,"w":2.25,"l":3.884},{"x":9.745,"y":14.438,"w":1.5,"l":2.647},{"x":12.22,"y":7.688,"w":0.75,"l":38.491},{"x":50.626,"y":7.688,"w":0.75,"l":24.836},{"x":75.376,"y":7.688,"w":0.75,"l":19.886},{"x":12.22,"y":8.438,"w":0.75,"l":83.041},{"x":12.22,"y":9.938,"w":0.75,"l":38.491},{"x":50.626,"y":9.938,"w":0.75,"l":24.836},{"x":75.376,"y":9.938,"w":0.75,"l":19.886},{"x":12.22,"y":11.438,"w":0.75,"l":83.041},{"x":12.22,"y":12.938,"w":0.75,"l":83.041},{"x":12.263,"y":14.438,"w":1.5,"l":38.448},{"x":50.626,"y":14.438,"w":1.5,"l":24.836},{"x":75.376,"y":14.438,"w":1.5,"l":19.886}],"VLines":[{"x":25.919,"y":1.672,"w":1.5,"l":1.547},{"x":67.994,"y":3.172,"w":1.5,"l":0.797},{"x":67.994,"y":3.922,"w":1.5,"l":2.297},{"x":79.131,"y":4.641,"w":2.25,"l":1.594},{"x":95.219,"y":4.641,"w":2.25,"l":1.594},{"x":91.506,"y":4.641,"w":0.75,"l":1.594},{"x":12.306,"y":6.156,"w":1.5,"l":8.313},{"x":9.831,"y":6.156,"w":1.5,"l":8.313},{"x":50.669,"y":6.172,"w":0.75,"l":1.531},{"x":75.419,"y":6.172,"w":0.75,"l":1.531},{"x":50.669,"y":8.422,"w":0.75,"l":1.531},{"x":75.419,"y":8.422,"w":0.75,"l":1.531},{"x":50.669,"y":12.922,"w":0.75,"l":1.547},{"x":75.419,"y":12.922,"w":0.75,"l":1.547}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":48.142,"y":16.138,"w":6.111,"clr":0,"A":"left","R":[{"T":"Tear%20off%20here","S":-1,"TS":[0,11,0,0]}]},{"x":11.076,"y":2.198,"w":2.334,"clr":0,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":12.056,"y":1.491,"w":3.9280000000000004,"clr":0,"A":"left","R":[{"T":"1040-ES","S":4,"TS":[0,14,0,0]}]},{"x":12.056,"y":1.8929999999999998,"w":12.540000000000003,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":51,"TS":[0,9,0,0]}]},{"x":12.056,"y":2.299,"w":11.093000000000002,"clr":0,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"x":26.356,"y":2.08,"w":1.264,"clr":0,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":30.701,"y":2.08,"w":1.336,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":36.197,"y":2.08,"w":6.811999999999999,"clr":0,"A":"left","R":[{"T":"Estimated%20Tax","S":-1,"TS":[0,23,0,0]}]},{"x":68.981,"y":1.509,"w":4.463000000000001,"clr":0,"A":"left","R":[{"T":"Payment%20","S":-1,"TS":[0,13,0,0]}]},{"x":68.981,"y":2.196,"w":3.9640000000000004,"clr":0,"A":"left","R":[{"T":"Voucher","S":-1,"TS":[0,13,0,0]}]},{"x":77.644,"y":2.009,"w":0.48,"clr":0,"A":"left","R":[{"T":"2","S":-1,"TS":[0,27,0,0]}]},{"x":83.8,"y":2.187,"w":9.283000000000001,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"x":9.581,"y":3.196,"w":40.102999999999994,"clr":0,"A":"left","R":[{"T":"File%20only%20if%20you%20are%20making%20a%20payment%20of%20estimated%20tax%20by%20check%20or%20money%20order.%20Mail%20this%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":9.581,"y":3.758,"w":23.3,"clr":0,"A":"left","R":[{"T":"voucher%20with%20your%20check%20or%20money%20order%20payable%20to%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":39.616,"y":3.758,"w":12.113,"clr":0,"A":"left","R":[{"T":"%E2%80%9CUnited%20States%20Treasury.%E2%80%9D","S":-1,"TS":[0,10.5,0,0]}]},{"x":55.231,"y":3.758,"w":5.130000000000001,"clr":0,"A":"left","R":[{"T":"%20Write%20your%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":9.581,"y":4.321,"w":42.19899999999998,"clr":0,"A":"left","R":[{"T":"social%20security%20number%20and%20%E2%80%9C2013%20Form%201040-ES%E2%80%9D%20on%20your%20check%20or%20money%20order.%20Do%20not%20send%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":9.581,"y":4.883,"w":33.49,"clr":0,"A":"left","R":[{"T":"cash.%20Enclose%2C%20but%20do%20not%20staple%20or%20attach%2C%20your%20payment%20with%20this%20voucher.","S":-1,"TS":[0,10.5,0,0]}]},{"x":68.431,"y":2.924,"w":16.320000000000007,"clr":0,"A":"left","R":[{"T":"Calendar%20year%E2%80%94Due%20June%2017%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"x":68.431,"y":3.67,"w":18.11600000000001,"clr":0,"A":"left","R":[{"T":"Amount%20of%20estimated%20tax%20you%20are%20paying%20","S":-1,"TS":[0,11,0,0]}]},{"x":68.431,"y":4.27,"w":5.798,"clr":0,"A":"left","R":[{"T":"by%20check%20or%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":68.431,"y":4.87,"w":5.946,"clr":0,"A":"left","R":[{"T":"money%20order.","S":-1,"TS":[0,11,0,0]}]},{"x":83.209,"y":4.5,"w":3.092,"clr":0,"A":"left","R":[{"T":"Dollars","S":2,"TS":[0,10,0,0]}]},{"x":91.689,"y":4.5,"w":2.63,"clr":0,"A":"left","R":[{"T":"Cents","S":-1,"TS":[0,9.3,0,0]}]},{"x":11.113,"y":11.03,"w":5.8709999999999996,"clr":0,"A":"left","R":[{"T":"Print%20or%20type","S":-1,"TS":[0,11,0,0],"RA":90}]},{"x":12.744,"y":6.045,"w":11.353999999999997,"clr":0,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":51.106,"y":6.045,"w":6.723999999999999,"clr":0,"A":"left","R":[{"T":"Your%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":75.856,"y":6.045,"w":12.465000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"x":12.744,"y":7.422000000000001,"w":16.634,"clr":0,"A":"left","R":[{"T":"If%20joint%20payment%2C%20complete%20for%20spouse","S":-1,"TS":[0,11,0,0]}]},{"x":12.744,"y":8.295,"w":13.429000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":51.106,"y":8.295,"w":8.799000000000001,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":75.856,"y":8.295,"w":14.540000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number","S":-1,"TS":[0,10.2,0,0]}]},{"x":12.744,"y":9.795,"w":16.950000000000006,"clr":0,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20and%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":12.744,"y":11.295,"w":39.004000000000005,"clr":0,"A":"left","R":[{"T":"City%2C%20state%2C%20and%20ZIP%20code.%20(If%20a%20foreign%20address%2C%20enter%20city%2C%20also%20complete%20spaces%20below.)","S":-1,"TS":[0,11,0,0]}]},{"x":12.744,"y":12.795,"w":9.780000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20country%20name","S":-1,"TS":[0,11,0,0]}]},{"x":51.106,"y":12.795,"w":10.871,"clr":0,"A":"left","R":[{"T":"Foreign%20province%2Fcounty","S":-1,"TS":[0,11,0,0]}]},{"x":75.856,"y":12.732,"w":8.908,"clr":0,"A":"left","R":[{"T":"Foreign%20postal%20code","S":-1,"TS":[0,11,0,0]}]},{"x":9.581,"y":14.295,"w":33.685,"clr":0,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":7838,"AM":0,"x":79.074,"y":5.37,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7839,"AM":1024,"x":12.45,"y":6.935,"w":62.844,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":7840,"AM":1024,"x":12.338,"y":9.167,"w":62.919,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":7841,"AM":1024,"x":12.448,"y":10.692,"w":82.913,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CSZ","EN":0},"TI":7842,"AM":1024,"x":12.448,"y":12.189,"w":82.913,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COUNTRY","EN":0},"TI":7843,"AM":1024,"x":12.413,"y":13.659,"w":38.362,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":7844,"AM":1024,"x":50.813,"y":13.686,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":7845,"AM":1024,"x":75.523,"y":13.632,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCANLINE","EN":0},"TI":7846,"AM":1024,"x":9.865,"y":15.265,"w":19.8,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FES3.content.txt b/test/data/fd/form/FES3.content.txt new file mode 100755 index 00000000..994947b2 --- /dev/null +++ b/test/data/fd/form/FES3.content.txt @@ -0,0 +1,42 @@ +Form +1040-ES +Department of the Treasury +Internal Revenue Service +20 +13 + +Estimated Tax +Payment +Voucher +3 +OMB No. 1545-0074 +File only if you are making a payment of estimated tax by check or money order. Mail this +voucher with your check or money order payable to +“United States Treasury.” + Write your +social security number and “2013 Form 1040-ES” on your check or money order. Do not send +cash. Enclose, but do not staple or attach, your payment with this voucher. +Calendar year—Due Sept. 16, 2013 +Amount of estimated tax you are paying +by check or +money order. +Dollars +Cents +Print or type +Your first name and initial +Your last name +Your social security number +If joint payment, complete for spouse +Spouse’s first name and initial +Spouse’s last name +Spouse’s social security number +Address (number, street, and apt. no.) +City, state, and ZIP code. (If a foreign address, enter city, also complete spaces below.) +Foreign country name +Foreign province/county +Foreign postal code +For Privacy Act and Paperwork Reduction Act Notice, see instructions. +Tear off here + + +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FES3.fields.json b/test/data/fd/form/FES3.fields.json new file mode 100755 index 00000000..a50b6442 --- /dev/null +++ b/test/data/fd/form/FES3.fields.json @@ -0,0 +1 @@ +[{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"YSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FES3.json b/test/data/fd/form/FES3.json new file mode 100755 index 00000000..d2d1c9ec --- /dev/null +++ b/test/data/fd/form/FES3.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1040-ES (OTC)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.501,"HLines":[{"x":13.57,"y":3.75,"w":1.5,"l":2.561},{"x":16.045,"y":3.75,"w":1.5,"l":13.698},{"x":29.614,"y":3.75,"w":1.5,"l":43.441},{"x":72.97,"y":3.75,"w":1.5,"l":8.748},{"x":81.632,"y":3.75,"w":1.5,"l":2.561},{"x":84.107,"y":3.75,"w":1.5,"l":14.936},{"x":13.57,"y":6.75,"w":1.5,"l":58.248},{"x":71.689,"y":4.5,"w":1.5,"l":27.354},{"x":71.689,"y":6.75,"w":1.5,"l":27.354},{"x":82.784,"y":5.25,"w":2.25,"l":12.547},{"x":82.784,"y":6.75,"w":2.25,"l":12.547},{"x":95.245,"y":5.25,"w":2.25,"l":3.884},{"x":95.245,"y":6.75,"w":2.25,"l":3.884},{"x":13.527,"y":15,"w":1.5,"l":2.647},{"x":16.002,"y":8.25,"w":0.75,"l":38.491},{"x":54.407,"y":8.25,"w":0.75,"l":24.836},{"x":79.157,"y":8.25,"w":0.75,"l":19.886},{"x":16.002,"y":9,"w":0.75,"l":83.041},{"x":16.002,"y":10.5,"w":0.75,"l":38.491},{"x":54.407,"y":10.5,"w":0.75,"l":24.836},{"x":79.157,"y":10.5,"w":0.75,"l":19.886},{"x":16.002,"y":12,"w":0.75,"l":83.041},{"x":16.002,"y":13.5,"w":0.75,"l":83.041},{"x":16.045,"y":15,"w":1.5,"l":38.448},{"x":54.407,"y":15,"w":1.5,"l":24.836},{"x":79.157,"y":15,"w":1.5,"l":19.886},{"dsh":1,"x":6.145,"y":17.062,"w":0.75,"l":92.898}],"VLines":[{"x":29.7,"y":2.234,"w":1.5,"l":1.547},{"x":71.775,"y":3.734,"w":1.5,"l":0.797},{"x":71.775,"y":4.484,"w":1.5,"l":2.297},{"x":82.912,"y":5.203,"w":2.25,"l":1.594},{"x":99,"y":5.203,"w":2.25,"l":1.594},{"x":95.287,"y":5.203,"w":0.75,"l":1.594},{"x":16.087,"y":6.719,"w":1.5,"l":8.313},{"x":13.613,"y":6.719,"w":1.5,"l":8.313},{"x":54.45,"y":6.734,"w":0.75,"l":1.531},{"x":79.2,"y":6.734,"w":0.75,"l":1.531},{"x":16.087,"y":8.984,"w":1.5,"l":1.531},{"x":54.45,"y":8.984,"w":0.75,"l":1.531},{"x":79.2,"y":8.984,"w":0.75,"l":1.531},{"x":54.45,"y":13.484,"w":0.75,"l":1.547},{"x":79.2,"y":13.484,"w":0.75,"l":1.547}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":14.857,"y":2.761,"w":2.334,"clr":0,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":15.837,"y":2.053,"w":3.9280000000000004,"clr":0,"A":"left","R":[{"T":"1040-ES","S":4,"TS":[0,14,0,0]}]},{"x":15.838000000000001,"y":2.455,"w":12.540000000000003,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":51,"TS":[0,9,0,0]}]},{"x":15.838000000000001,"y":2.861,"w":11.093000000000002,"clr":0,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"x":30.137,"y":2.643,"w":1.264,"clr":0,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":34.483,"y":2.643,"w":1.336,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":39.978,"y":2.643,"w":6.811999999999999,"clr":0,"A":"left","R":[{"T":"Estimated%20Tax","S":-1,"TS":[0,23,0,0]}]},{"x":72.763,"y":2.071,"w":4.463000000000001,"clr":0,"A":"left","R":[{"T":"Payment%20","S":-1,"TS":[0,13,0,0]}]},{"x":72.763,"y":2.759,"w":3.9640000000000004,"clr":0,"A":"left","R":[{"T":"Voucher","S":-1,"TS":[0,13,0,0]}]},{"x":81.425,"y":2.571,"w":0.48,"clr":0,"A":"left","R":[{"T":"3","S":-1,"TS":[0,27,0,0]}]},{"x":87.581,"y":2.75,"w":9.283000000000001,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"x":13.363,"y":3.758,"w":40.102999999999994,"clr":0,"A":"left","R":[{"T":"File%20only%20if%20you%20are%20making%20a%20payment%20of%20estimated%20tax%20by%20check%20or%20money%20order.%20Mail%20this%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":13.363,"y":4.321,"w":23.3,"clr":0,"A":"left","R":[{"T":"voucher%20with%20your%20check%20or%20money%20order%20payable%20to%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":43.398,"y":4.321,"w":12.113,"clr":0,"A":"left","R":[{"T":"%E2%80%9CUnited%20States%20Treasury.%E2%80%9D","S":-1,"TS":[0,10.5,0,0]}]},{"x":59.012,"y":4.321,"w":5.130000000000001,"clr":0,"A":"left","R":[{"T":"%20Write%20your%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":13.363,"y":4.883,"w":42.19899999999998,"clr":0,"A":"left","R":[{"T":"social%20security%20number%20and%20%E2%80%9C2013%20Form%201040-ES%E2%80%9D%20on%20your%20check%20or%20money%20order.%20Do%20not%20send%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":13.363,"y":5.446,"w":33.49,"clr":0,"A":"left","R":[{"T":"cash.%20Enclose%2C%20but%20do%20not%20staple%20or%20attach%2C%20your%20payment%20with%20this%20voucher.","S":-1,"TS":[0,10.5,0,0]}]},{"x":72.213,"y":3.4859999999999998,"w":16.468000000000007,"clr":0,"A":"left","R":[{"T":"Calendar%20year%E2%80%94Due%20Sept.%2016%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"x":72.213,"y":4.232,"w":18.11600000000001,"clr":0,"A":"left","R":[{"T":"Amount%20of%20estimated%20tax%20you%20are%20paying%20","S":-1,"TS":[0,11,0,0]}]},{"x":72.213,"y":4.832,"w":5.798,"clr":0,"A":"left","R":[{"T":"by%20check%20or%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":72.213,"y":5.432,"w":5.946,"clr":0,"A":"left","R":[{"T":"money%20order.","S":-1,"TS":[0,11,0,0]}]},{"x":86.99,"y":5.062,"w":3.092,"clr":0,"A":"left","R":[{"T":"Dollars","S":2,"TS":[0,10,0,0]}]},{"x":95.47,"y":5.062,"w":2.63,"clr":0,"A":"left","R":[{"T":"Cents","S":-1,"TS":[0,9.3,0,0]}]},{"x":14.894,"y":11.593,"w":5.8709999999999996,"clr":0,"A":"left","R":[{"T":"Print%20or%20type","S":-1,"TS":[0,11,0,0],"RA":90}]},{"x":16.525,"y":6.607,"w":11.353999999999997,"clr":0,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":54.888,"y":6.607,"w":6.723999999999999,"clr":0,"A":"left","R":[{"T":"Your%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":79.638,"y":6.607,"w":12.465000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":7.984,"w":16.634,"clr":0,"A":"left","R":[{"T":"If%20joint%20payment%2C%20complete%20for%20spouse","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":8.857,"w":13.429000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":54.888,"y":8.857,"w":8.799000000000001,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":79.638,"y":8.857,"w":14.540000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number","S":-1,"TS":[0,10.2,0,0]}]},{"x":16.525,"y":10.357,"w":16.950000000000006,"clr":0,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20and%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":11.857,"w":39.004000000000005,"clr":0,"A":"left","R":[{"T":"City%2C%20state%2C%20and%20ZIP%20code.%20(If%20a%20foreign%20address%2C%20enter%20city%2C%20also%20complete%20spaces%20below.)","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":13.357,"w":9.780000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20country%20name","S":-1,"TS":[0,11,0,0]}]},{"x":54.888,"y":13.357,"w":10.871,"clr":0,"A":"left","R":[{"T":"Foreign%20province%2Fcounty","S":-1,"TS":[0,11,0,0]}]},{"x":79.638,"y":13.295,"w":8.908,"clr":0,"A":"left","R":[{"T":"Foreign%20postal%20code","S":-1,"TS":[0,11,0,0]}]},{"x":13.362,"y":14.857,"w":33.685,"clr":0,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":48.142,"y":16.138,"w":6.111,"clr":0,"A":"left","R":[{"T":"Tear%20off%20here","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":7847,"AM":0,"x":82.979,"y":5.955,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7848,"AM":1024,"x":16.343,"y":7.479,"w":62.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"YSSN","EN":0},"TI":7849,"AM":1024,"x":79.192,"y":7.479,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":7850,"AM":1024,"x":16.231,"y":9.766,"w":62.919,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":7851,"AM":1024,"x":79.192,"y":9.739,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":7852,"AM":1024,"x":16.341,"y":11.182,"w":82.912,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CSZ","EN":0},"TI":7853,"AM":1024,"x":16.192,"y":12.706,"w":82.912,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COUNTRY","EN":0},"TI":7854,"AM":1024,"x":16.081,"y":14.204,"w":38.362,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":7855,"AM":1024,"x":54.481,"y":14.204,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":7856,"AM":1024,"x":79.192,"y":14.176,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCANLINE","EN":0},"TI":7857,"AM":1024,"x":13.608,"y":16.001,"w":19.8,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FES4.content.txt b/test/data/fd/form/FES4.content.txt new file mode 100755 index 00000000..311c4684 --- /dev/null +++ b/test/data/fd/form/FES4.content.txt @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + +Tear off here +Form +1040-ES +Department of the Treasury +Internal Revenue Service +20 +13 + +Estimated Tax +Payment +Voucher +4 +OMB No. 1545-0074 +File only if you are making a payment of estimated tax by check or money order. Mail this +voucher with your check or money order payable to +“United States Treasury.” + Write your +social security number and “2013 Form 1040-ES” on your check or money order. Do not send +cash. Enclose, but do not staple or attach, your payment with this voucher. +Calendar year—Due Jan. 15, 2014 +Amount of estimated tax you are paying +by check or +money order. +Dollars +Cents +Print or type +Your first name and initial +Your last name +Your social security number +If joint payment, complete for spouse +Spouse’s first name and initial +Spouse’s last name +Spouse’s social security number +Address (number, street, and apt. no.) +City, state, and ZIP code. (If a foreign address, enter city, also complete spaces below.) +Foreign country name +Foreign province/county +Foreign postal code +For Privacy Act and Paperwork Reduction Act Notice, see instructions. +Form 1040-ES (2013) +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FES4.fields.json b/test/data/fd/form/FES4.fields.json new file mode 100755 index 00000000..a50b6442 --- /dev/null +++ b/test/data/fd/form/FES4.fields.json @@ -0,0 +1 @@ +[{"id":"L1","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"YSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CSZ","type":"alpha","calc":true,"value":""},{"id":"COUNTRY","type":"alpha","calc":true,"value":""},{"id":"FPC","type":"alpha","calc":true,"value":""},{"id":"FZIP","type":"alpha","calc":true,"value":""},{"id":"SCANLINE","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FES4.json b/test/data/fd/form/FES4.json new file mode 100755 index 00000000..e10aa47e --- /dev/null +++ b/test/data/fd/form/FES4.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1040-ES (OTC)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.501,"HLines":[{"dsh":1,"x":6.145,"y":16.531,"w":0.75,"l":92.898},{"x":13.57,"y":3.125,"w":1.5,"l":2.561},{"x":16.045,"y":3.125,"w":1.5,"l":13.698},{"x":29.614,"y":3.125,"w":1.5,"l":43.441},{"x":72.97,"y":3.125,"w":1.5,"l":8.748},{"x":81.632,"y":3.125,"w":1.5,"l":2.561},{"x":84.107,"y":3.125,"w":1.5,"l":14.936},{"x":13.57,"y":6.125,"w":1.5,"l":58.248},{"x":71.689,"y":3.875,"w":1.5,"l":27.354},{"x":71.689,"y":6.125,"w":1.5,"l":27.354},{"x":82.784,"y":4.625,"w":2.25,"l":12.547},{"x":82.784,"y":6.125,"w":2.25,"l":12.547},{"x":95.245,"y":4.625,"w":2.25,"l":3.884},{"x":95.245,"y":6.125,"w":2.25,"l":3.884},{"x":13.527,"y":14.375,"w":1.5,"l":2.647},{"x":16.002,"y":7.625,"w":0.75,"l":38.491},{"x":54.407,"y":7.625,"w":0.75,"l":24.836},{"x":79.157,"y":7.625,"w":0.75,"l":19.886},{"x":16.002,"y":8.375,"w":0.75,"l":83.041},{"x":16.002,"y":9.875,"w":0.75,"l":38.491},{"x":54.407,"y":9.875,"w":0.75,"l":24.836},{"x":79.157,"y":9.875,"w":0.75,"l":19.886},{"x":16.002,"y":11.375,"w":0.75,"l":83.041},{"x":16.002,"y":12.875,"w":0.75,"l":83.041},{"x":16.045,"y":14.375,"w":1.5,"l":38.448},{"x":54.407,"y":14.375,"w":1.5,"l":24.836},{"x":79.157,"y":14.375,"w":1.5,"l":19.886}],"VLines":[{"x":29.7,"y":1.609,"w":1.5,"l":1.547},{"x":71.775,"y":3.109,"w":1.5,"l":0.797},{"x":71.775,"y":3.859,"w":1.5,"l":2.297},{"x":82.912,"y":4.578,"w":2.25,"l":1.594},{"x":99,"y":4.578,"w":2.25,"l":1.594},{"x":95.287,"y":4.578,"w":0.75,"l":1.594},{"x":16.087,"y":6.094,"w":1.5,"l":8.313},{"x":13.613,"y":6.094,"w":1.5,"l":8.313},{"x":54.45,"y":6.109,"w":0.75,"l":1.531},{"x":79.2,"y":6.109,"w":0.75,"l":1.531},{"x":54.45,"y":8.359,"w":0.75,"l":1.531},{"x":79.2,"y":8.359,"w":0.75,"l":1.531},{"x":54.45,"y":12.859,"w":0.75,"l":1.547},{"x":79.2,"y":12.859,"w":0.75,"l":1.547}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":48.142,"y":15.434999999999999,"w":6.111,"clr":0,"A":"left","R":[{"T":"Tear%20off%20here","S":-1,"TS":[0,11,0,0]}]},{"x":14.857,"y":2.136,"w":2.334,"clr":0,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":15.837,"y":1.428,"w":3.9280000000000004,"clr":0,"A":"left","R":[{"T":"1040-ES","S":4,"TS":[0,14,0,0]}]},{"x":15.838000000000001,"y":1.83,"w":12.540000000000003,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":51,"TS":[0,9,0,0]}]},{"x":15.838000000000001,"y":2.236,"w":11.093000000000002,"clr":0,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"x":30.137,"y":2.018,"w":1.264,"clr":0,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":34.483,"y":2.018,"w":1.336,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":39.978,"y":2.018,"w":6.811999999999999,"clr":0,"A":"left","R":[{"T":"Estimated%20Tax","S":-1,"TS":[0,23,0,0]}]},{"x":72.763,"y":1.4460000000000002,"w":4.463000000000001,"clr":0,"A":"left","R":[{"T":"Payment%20","S":-1,"TS":[0,13,0,0]}]},{"x":72.763,"y":2.134,"w":3.9640000000000004,"clr":0,"A":"left","R":[{"T":"Voucher","S":-1,"TS":[0,13,0,0]}]},{"x":81.425,"y":1.9460000000000002,"w":0.48,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,27,0,0]}]},{"x":87.581,"y":2.125,"w":9.283000000000001,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"x":13.363,"y":3.133,"w":40.102999999999994,"clr":0,"A":"left","R":[{"T":"File%20only%20if%20you%20are%20making%20a%20payment%20of%20estimated%20tax%20by%20check%20or%20money%20order.%20Mail%20this%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":13.363,"y":3.6959999999999997,"w":23.3,"clr":0,"A":"left","R":[{"T":"voucher%20with%20your%20check%20or%20money%20order%20payable%20to%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":43.398,"y":3.6959999999999997,"w":12.113,"clr":0,"A":"left","R":[{"T":"%E2%80%9CUnited%20States%20Treasury.%E2%80%9D","S":-1,"TS":[0,10.5,0,0]}]},{"x":59.012,"y":3.6959999999999997,"w":5.130000000000001,"clr":0,"A":"left","R":[{"T":"%20Write%20your%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":13.363,"y":4.258,"w":42.19899999999998,"clr":0,"A":"left","R":[{"T":"social%20security%20number%20and%20%E2%80%9C2013%20Form%201040-ES%E2%80%9D%20on%20your%20check%20or%20money%20order.%20Do%20not%20send%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":13.363,"y":4.821,"w":33.49,"clr":0,"A":"left","R":[{"T":"cash.%20Enclose%2C%20but%20do%20not%20staple%20or%20attach%2C%20your%20payment%20with%20this%20voucher.","S":-1,"TS":[0,10.5,0,0]}]},{"x":72.213,"y":2.861,"w":16.005000000000006,"clr":0,"A":"left","R":[{"T":"Calendar%20year%E2%80%94Due%20Jan.%2015%2C%202014","S":-1,"TS":[0,11,0,0]}]},{"x":72.213,"y":3.607,"w":18.39400000000001,"clr":0,"A":"left","R":[{"T":"Amount%20of%20estimated%20tax%20you%20are%20paying%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":72.213,"y":4.138,"w":5.798,"clr":0,"A":"left","R":[{"T":"by%20check%20or%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":72.213,"y":4.669,"w":5.946,"clr":0,"A":"left","R":[{"T":"money%20order.","S":-1,"TS":[0,11,0,0]}]},{"x":86.99,"y":4.437,"w":3.092,"clr":0,"A":"left","R":[{"T":"Dollars","S":2,"TS":[0,10,0,0]}]},{"x":95.47,"y":4.437,"w":2.63,"clr":0,"A":"left","R":[{"T":"Cents","S":-1,"TS":[0,9.3,0,0]}]},{"x":14.894,"y":10.968,"w":5.8709999999999996,"clr":0,"A":"left","R":[{"T":"Print%20or%20type","S":-1,"TS":[0,11,0,0],"RA":90}]},{"x":16.525,"y":5.982,"w":11.353999999999997,"clr":0,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":54.888,"y":5.982,"w":6.723999999999999,"clr":0,"A":"left","R":[{"T":"Your%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":79.638,"y":5.982,"w":12.465000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":7.359,"w":16.634,"clr":0,"A":"left","R":[{"T":"If%20joint%20payment%2C%20complete%20for%20spouse","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":8.232,"w":13.429000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name%20and%20initial","S":-1,"TS":[0,11,0,0]}]},{"x":54.888,"y":8.232,"w":8.799000000000001,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20last%20name","S":-1,"TS":[0,11,0,0]}]},{"x":79.638,"y":8.232,"w":14.540000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number","S":-1,"TS":[0,10.2,0,0]}]},{"x":16.525,"y":9.732,"w":16.950000000000006,"clr":0,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20and%20apt.%20no.)","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":11.232,"w":39.004000000000005,"clr":0,"A":"left","R":[{"T":"City%2C%20state%2C%20and%20ZIP%20code.%20(If%20a%20foreign%20address%2C%20enter%20city%2C%20also%20complete%20spaces%20below.)","S":-1,"TS":[0,11,0,0]}]},{"x":16.525,"y":12.732,"w":9.780000000000001,"clr":0,"A":"left","R":[{"T":"Foreign%20country%20name","S":-1,"TS":[0,11,0,0]}]},{"x":54.888,"y":12.732,"w":10.871,"clr":0,"A":"left","R":[{"T":"Foreign%20province%2Fcounty","S":-1,"TS":[0,11,0,0]}]},{"x":79.638,"y":12.67,"w":8.908,"clr":0,"A":"left","R":[{"T":"Foreign%20postal%20code","S":-1,"TS":[0,11,0,0]}]},{"x":13.362,"y":14.232,"w":33.685,"clr":0,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":82.663,"y":14.214,"w":9.799000000000003,"clr":0,"A":"left","R":[{"T":"Form%201040-ES%20(2013)","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":7858,"AM":0,"x":83.14,"y":5.301,"w":12.053,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7859,"AM":1024,"x":16.268,"y":6.88,"w":62.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"YSSN","EN":0},"TI":7860,"AM":1024,"x":79.267,"y":6.88,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":7861,"AM":1024,"x":16.231,"y":9.113,"w":62.919,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":7862,"AM":1024,"x":79.192,"y":9.113,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":7863,"AM":1024,"x":16.192,"y":10.61,"w":82.912,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CSZ","EN":0},"TI":7864,"AM":1024,"x":16.192,"y":12.08,"w":82.912,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COUNTRY","EN":0},"TI":7865,"AM":1024,"x":16.081,"y":13.55,"w":38.362,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":7866,"AM":1024,"x":54.556,"y":13.523,"w":24.75,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":7867,"AM":1024,"x":79.342,"y":13.55,"w":19.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCANLINE","EN":0},"TI":7868,"AM":1024,"x":13.159,"y":15.265,"w":19.8,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHA.content.txt b/test/data/fd/form/FSCHA.content.txt new file mode 100755 index 00000000..789fad2d --- /dev/null +++ b/test/data/fd/form/FSCHA.content.txt @@ -0,0 +1,230 @@ +..... +www.irs.gov/schedulea +Information about Schedule A and its separate instructions is at +SCHEDULE A +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Itemized Deductions +a +Information about Schedule A and its separate instructions is at +. + +a + +Attach to Form 1040. + + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +07 + +Name(s) shown on Form 1040 +Your social security number +Medical +and +Dental +Expenses +Caution. +Do not include expenses reimbursed or paid by others. +1 +Medical and dental expenses (see instructions) +1 +2 +Enter amount from Form 1040, line 38 +2 +3 +Multiply line 2 by +10% (.10). But if either you or your spouse was +born before January 2, 1949, multiply line 2 by 7.5% (.075) instead + + +3 +4 +Subtract line 3 from line 1. If line 3 is more than line 1, enter -0- +........ +4 +Taxes You +Paid + +5 +State and local +(check only one box): +a +Income taxes, +or +b +General sales taxes +} +........... +5 +6 +Real estate taxes (see instructions) +......... +6 +7 +Personal property taxes +............. +7 +8 +Other taxes. List type and amount +a +8 +9 +Add lines 5 through 8 +...................... +9 +Interest +You Paid +Note. + +Your mortgage +interest +deduction may +be limited (see +instructions). +10 +Home mortgage interest and points reported to you on Form 1098 +10 +11 + + +Home mortgage interest not reported to you on Form 1098. If paid +to the person from whom you bought the home, see instructions +and show that person’s name, identifying no., and address +a +11 +12 + +Points not reported to you on Form 1098. See instructions for +special rules +................. +12 +13 +Mortgage insurance premiums (see instructions) +..... +13 +14 +Investment interest. Attach Form 4952 if required. (See instructions.) +14 +15 +Add lines 10 through 14 +..................... +15 +Gifts to +Charity +If you made a +gift and got a +benefit for it, +see instructions. +16 + +Gifts by cash or check. If you made any gift of $250 or more, +see instructions +................ +16 +17 + +Other than by cash or check. If any gift of $250 or more, see +instructions. You +must +attach Form 8283 if over $500 . . . +17 +18 +Carryover from prior year +............ +18 +19 +Add lines 16 through 18 +..................... +19 +Casualty and +Theft Losses +20 +Casualty or theft loss(es). Attach Form 4684. (See instructions.) +........ +20 +Job Expenses +and Certain +Miscellaneous +Deductions + +21 + + +Unreimbursed employee expenses—job travel, union dues, +job education, etc. Attach Form 2106 or 2106-EZ if required. +(See instructions.) + + +a +21 +22 +Tax preparation fees +............. +22 +23 + +Other expenses—investment, safe deposit box, etc. List type +and amount + +a +23 +24 +Add lines 21 through 23 +............ +24 +25 +Enter amount from Form 1040, line 38 +25 +26 +Multiply line 25 by 2% (.02) +........... +26 +27 +Subtract line 26 from line 24. If line 26 is more than line 24, enter -0- +...... +27 +Other +Miscellaneous +Deductions +28 +Other—from list in instructions. List type and amount +a +28 +Total +Itemized +Deductions +29 + +Is Form 1040, line 38, over $150,000? +29 +No. + Your deduction is not limited. Add the amounts in the far right column + +for lines 4 through 28. Also, enter this amount on Form 1040, line 40. +} +.. +Yes. + Your deduction may be limited. See the Itemized Deductions + +Worksheet in the instructions to figure the amount to enter. +30 + +If you elect to itemize deductions even though they are less than your standard +deduction, check here +................... +a +For Paperwork Reduction Act Notice, see Form 1040 instructions. +Cat. No. 17145C +Schedule A (Form 1040) 2013 +NAME +SSN/EIN +ADDRESS +CITY +STATE +ZIP +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHA.fields.json b/test/data/fd/form/FSCHA.fields.json new file mode 100755 index 00000000..cd17840a --- /dev/null +++ b/test/data/fd/form/FSCHA.fields.json @@ -0,0 +1 @@ +[{"id":"TAXRB","type":"radio","calc":false,"value":"IT"},{"id":"TAXRB","type":"radio","calc":false,"value":"ST"},{"id":"L28BOXRB","type":"radio","calc":false,"value":"L28N"},{"id":"L28BOXRB","type":"radio","calc":false,"value":"L28Y"},{"id":"ITDED","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"alpha","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"LINE11_L11BX_1_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11BX1_1_","type":"ssn","calc":false,"value":""},{"id":"LINE11_L11BY_1_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11BZ_1_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11BZ2_1_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11BZ3_1_","type":"zip","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"QUALMORT","type":"number","calc":false,"value":""},{"id":"Add_F4952","type":"link","calc":true,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"Add_F8283","type":"link","calc":true,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"Add_F4684","type":"link","calc":true,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"Text1","type":"alpha","calc":true,"value":"Form 2106"},{"id":"Add_F2106","type":"link","calc":true,"value":""},{"id":"Text3","type":"alpha","calc":true,"value":"Taxpayer Copy"},{"id":"Add_F2106S","type":"link","calc":true,"value":""},{"id":"Text5","type":"alpha","calc":true,"value":"Spouse Copy"},{"id":"Text2","type":"alpha","calc":true,"value":"Form 2106-EZ"},{"id":"Add_F2106EZ","type":"link","calc":true,"value":""},{"id":"Text4","type":"alpha","calc":true,"value":"Taxpayer Copy"},{"id":"Add_F2106EZS","type":"link","calc":true,"value":""},{"id":"Text6","type":"alpha","calc":true,"value":"Spouse Copy"},{"id":"EMPEXP_L20A_1_","type":"alpha","calc":false,"value":""},{"id":"EMPEXP_L20B_1_","type":"number","calc":false,"value":""},{"id":"EMPEXP_L20A_2_","type":"alpha","calc":false,"value":""},{"id":"EMPEXP_L20B_2_","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"INVEXP_L22A_1_","type":"alpha","calc":false,"value":""},{"id":"INVEXP_L22B_1_","type":"number","calc":false,"value":""},{"id":"INVEXP_L22A_2_","type":"alpha","calc":false,"value":""},{"id":"INVEXP_L22B_2_","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"OTHEXP_L27A_1_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L27B_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L27A_2_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L27B_2_","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHA.json b/test/data/fd/form/FSCHA.json new file mode 100755 index 00000000..b6d1953e --- /dev/null +++ b/test/data/fd/form/FSCHA.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHB.content.txt b/test/data/fd/form/FSCHB.content.txt new file mode 100755 index 00000000..536290c5 --- /dev/null +++ b/test/data/fd/form/FSCHB.content.txt @@ -0,0 +1,154 @@ +...... +SCHEDULE B +(Form 1040A or 1040) +Department of the Treasury +Internal Revenue Service (99) +Interest and Ordinary Dividends +a + +Attach to Form 1040A or 1040. + + +a + +Information about Schedule B (Form 1040A or 1040) and its instructions is at www.irs.gov/scheduleb +. + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +08 + +Name(s) shown on return +Your social security number +Part I +Interest + +(See instructions +on back and the +instructions for +Form 1040A, or +Form 1040, +line 8a.) + + + +Note. +If you + +received a Form + +1099-INT, Form + +1099-OID, or + +substitute +statement from +a brokerage firm, +list the firm’s +name as the +payer and enter +the total interest +shown on that +form. +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 on back and list +this interest first. Also, show that buyer’s social security number and address +a +1 +Amount +2 +Add the amounts on line 1 +.................. +2 +3 + +Excludable interest on series EE and I U.S. savings bonds issued after 1989. +Attach Form 8815 +..................... +3 +4 + +Subtract line 3 from line 2. Enter the result here and on Form 1040A, or Form +1040, line 8a +...................... +a +4 +Note. +If line 4 is over $1,500, you must complete Part III. +Amount +Part II +Ordinary +Dividends +(See instructions +on back and the +instructions for +Form 1040A, or +Form 1040, +line 9a.) +Note. +If you +received a Form +1099-DIV or +substitute +statement from +a brokerage firm, +list the firm’s +name as the +payer and enter +the ordinary +dividends shown +on that form. +5 +List name of payer + +a +5 +6 + +Add the amounts on line 5. Enter the total here and on Form 1040A, or Form +1040, line 9a +...................... +a +6 +Note. +If line 6 is over $1,500, you must complete Part III. +Part III +Foreign +Accounts +and Trusts +(See +instructions on +back.) +Yes +No +7a +At any time during 2013, did you have a financial interest in or signature authority over a financial +account (such as a bank account, securities account, or brokerage account) located in a foreign +country? See instructions +........................ +If “Yes,” are you required to file FinCEN Form 114, Report of Foreign Bank and Financial +Accounts (FBAR), formerly TD F 90-22.1, to report that financial interest or signature authority? +requirements +............................ +See FinCEN Form 114 and its instructions for filing requirements and exceptions to those +b +If you are required to file FinCEN Form 114, enter the name of the foreign country where the +financial account is located +a +8 +During 2013, did you receive a distribution from, or were you the grantor of, or transferor to, a +foreign trust? If “Yes,” you may have to file Form 3520. See instructions on back +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 17146N +Schedule B (Form 1040A or 1040) 2013 +Enter more interest payers +Enter more dividend payers +foreign account; or (c) received a distribution from, or were a grantor of, or a transferor to, a foreign trust. +You must complete this part if you (a) had over $1,500 of taxable interest or ordinary dividends; (b) had a +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHB.fields.json b/test/data/fd/form/FSCHB.fields.json new file mode 100755 index 00000000..6162e22c --- /dev/null +++ b/test/data/fd/form/FSCHB.fields.json @@ -0,0 +1 @@ +[{"id":"L7ARB","type":"radio","calc":false,"value":"L7AY"},{"id":"L7ARB","type":"radio","calc":false,"value":"L7AN"},{"id":"L7APLRB","type":"radio","calc":false,"value":"TDFY"},{"id":"L7APLRB","type":"radio","calc":false,"value":"TDFN"},{"id":"L8RB","type":"radio","calc":false,"value":"L8Y"},{"id":"L8RB","type":"radio","calc":false,"value":"L8N"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"INT_PAY_1_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_1_","type":"number","calc":false,"value":""},{"id":"INT_PAY_2_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_2_","type":"number","calc":false,"value":""},{"id":"INT_PAY_3_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_3_","type":"number","calc":false,"value":""},{"id":"INT_PAY_4_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_4_","type":"number","calc":false,"value":""},{"id":"INT_PAY_5_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_5_","type":"number","calc":false,"value":""},{"id":"INT_PAY_6_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_6_","type":"number","calc":false,"value":""},{"id":"INT_PAY_7_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_7_","type":"number","calc":false,"value":""},{"id":"INT_PAY_8_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_8_","type":"number","calc":false,"value":""},{"id":"INT_PAY_9_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_9_","type":"number","calc":false,"value":""},{"id":"INT_PAY_10_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_10_","type":"number","calc":false,"value":""},{"id":"INT_PAY_11_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_11_","type":"number","calc":false,"value":""},{"id":"INT_PAY_12_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_12_","type":"number","calc":false,"value":""},{"id":"ADDLINT","type":"alpha","calc":true,"value":""},{"id":"INTEREST","type":"number","calc":true,"value":""},{"id":"Add_FSCHB2","type":"link","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"Add_F8815","type":"link","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"DIV_PAYR_1_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_1_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_2_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_2_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_3_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_3_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_4_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_4_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_5_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_5_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_6_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_6_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_7_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_7_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_8_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_8_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_9_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_9_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_10_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_10_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_11_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_11_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_12_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_12_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_13_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_13_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_14_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_14_","type":"number","calc":false,"value":""},{"id":"ADDLDIV","type":"alpha","calc":true,"value":""},{"id":"DIVS","type":"number","calc":true,"value":""},{"id":"Add_FSCHB3","type":"link","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"A223_L7B_1_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHB.json b/test/data/fd/form/FSCHB.json new file mode 100755 index 00000000..121f95f2 --- /dev/null +++ b/test/data/fd/form/FSCHB.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHB2.content.txt b/test/data/fd/form/FSCHB2.content.txt new file mode 100755 index 00000000..c5d2c20f --- /dev/null +++ b/test/data/fd/form/FSCHB2.content.txt @@ -0,0 +1,14 @@ +Schedule B +Additional Interest Statement 2013 +Part I +G + Attach to return (after all IRS forms) +Statement +Name(s) shown on return +Your social security number +List name of payer. +Amount +Total +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHB2.fields.json b/test/data/fd/form/FSCHB2.fields.json new file mode 100755 index 00000000..0730bc0f --- /dev/null +++ b/test/data/fd/form/FSCHB2.fields.json @@ -0,0 +1 @@ +[{"id":"STMT","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"INT_PAY_1_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_1_","type":"number","calc":false,"value":""},{"id":"INT_PAY_2_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_2_","type":"number","calc":false,"value":""},{"id":"INT_PAY_3_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_3_","type":"number","calc":false,"value":""},{"id":"INT_PAY_4_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_4_","type":"number","calc":false,"value":""},{"id":"INT_PAY_5_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_5_","type":"number","calc":false,"value":""},{"id":"INT_PAY_6_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_6_","type":"number","calc":false,"value":""},{"id":"INT_PAY_7_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_7_","type":"number","calc":false,"value":""},{"id":"INT_PAY_8_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_8_","type":"number","calc":false,"value":""},{"id":"INT_PAY_9_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_9_","type":"number","calc":false,"value":""},{"id":"INT_PAY_10_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_10_","type":"number","calc":false,"value":""},{"id":"INT_PAY_11_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_11_","type":"number","calc":false,"value":""},{"id":"INT_PAY_12_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_12_","type":"number","calc":false,"value":""},{"id":"INT_PAY_13_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_13_","type":"number","calc":false,"value":""},{"id":"INT_PAY_14_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_14_","type":"number","calc":false,"value":""},{"id":"INT_PAY_15_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_15_","type":"number","calc":false,"value":""},{"id":"INT_PAY_16_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_16_","type":"number","calc":false,"value":""},{"id":"INT_PAY_17_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_17_","type":"number","calc":false,"value":""},{"id":"INT_PAY_18_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_18_","type":"number","calc":false,"value":""},{"id":"INT_PAY_19_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_19_","type":"number","calc":false,"value":""},{"id":"INT_PAY_20_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_20_","type":"number","calc":false,"value":""},{"id":"INT_PAY_21_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_21_","type":"number","calc":false,"value":""},{"id":"INT_PAY_22_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_22_","type":"number","calc":false,"value":""},{"id":"INT_PAY_23_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_23_","type":"number","calc":false,"value":""},{"id":"INT_PAY_24_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_24_","type":"number","calc":false,"value":""},{"id":"INT_PAY_25_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_25_","type":"number","calc":false,"value":""},{"id":"INT_PAY_26_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_26_","type":"number","calc":false,"value":""},{"id":"INT_PAY_27_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_27_","type":"number","calc":false,"value":""},{"id":"INT_PAY_28_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_28_","type":"number","calc":false,"value":""},{"id":"INT_PAY_29_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_29_","type":"number","calc":false,"value":""},{"id":"INT_PAY_30_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_30_","type":"number","calc":false,"value":""},{"id":"INT_PAY_31_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_31_","type":"number","calc":false,"value":""},{"id":"INT_PAY_32_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_32_","type":"number","calc":false,"value":""},{"id":"INT_PAY_33_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_33_","type":"number","calc":false,"value":""},{"id":"INT_PAY_34_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_34_","type":"number","calc":false,"value":""},{"id":"INT_PAY_35_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_35_","type":"number","calc":false,"value":""},{"id":"INT_PAY_36_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_36_","type":"number","calc":false,"value":""},{"id":"INT_PAY_37_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_37_","type":"number","calc":false,"value":""},{"id":"INT_PAY_38_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_38_","type":"number","calc":false,"value":""},{"id":"INT_PAY_39_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_39_","type":"number","calc":false,"value":""},{"id":"INT_PAY_40_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_40_","type":"number","calc":false,"value":""},{"id":"INT_PAY_41_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_41_","type":"number","calc":false,"value":""},{"id":"INT_PAY_42_","type":"alpha","calc":false,"value":""},{"id":"INT_AMT_42_","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHB2.json b/test/data/fd/form/FSCHB2.json new file mode 100755 index 00000000..fc2f052c --- /dev/null +++ b/test/data/fd/form/FSCHB2.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHB3.content.txt b/test/data/fd/form/FSCHB3.content.txt new file mode 100755 index 00000000..8c18d8cd --- /dev/null +++ b/test/data/fd/form/FSCHB3.content.txt @@ -0,0 +1,15 @@ +Schedule B +Additional Dividends Statement +2013 +Part II +G + Attach to return (after all IRS forms) +Statement +Name(s) shown on return +Your social security number +List name of payer. +Amount +Total +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHB3.fields.json b/test/data/fd/form/FSCHB3.fields.json new file mode 100755 index 00000000..aab5044f --- /dev/null +++ b/test/data/fd/form/FSCHB3.fields.json @@ -0,0 +1 @@ +[{"id":"STMT","type":"number","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DIV_PAYR_1_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_1_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_2_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_2_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_3_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_3_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_4_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_4_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_5_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_5_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_6_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_6_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_7_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_7_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_8_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_8_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_9_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_9_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_10_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_10_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_11_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_11_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_12_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_12_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_13_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_13_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_14_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_14_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_15_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_15_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_16_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_16_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_17_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_17_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_18_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_18_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_19_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_19_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_20_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_20_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_21_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_21_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_22_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_22_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_23_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_23_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_24_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_24_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_25_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_25_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_26_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_26_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_27_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_27_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_28_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_28_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_29_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_29_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_30_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_30_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_31_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_31_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_32_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_32_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_33_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_33_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_34_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_34_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_35_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_35_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_36_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_36_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_37_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_37_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_38_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_38_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_39_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_39_","type":"number","calc":false,"value":""},{"id":"DIV_PAYR_40_","type":"alpha","calc":false,"value":""},{"id":"DIV_GD_40_","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHB3.json b/test/data/fd/form/FSCHB3.json new file mode 100755 index 00000000..99245773 --- /dev/null +++ b/test/data/fd/form/FSCHB3.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHC.content.txt b/test/data/fd/form/FSCHC.content.txt new file mode 100755 index 00000000..a8e282bf --- /dev/null +++ b/test/data/fd/form/FSCHC.content.txt @@ -0,0 +1,373 @@ +Did you 'materially participate' in the operation of this business during 2013? If 'No', see instructions for limit on losses . +20a +SCHEDULE C +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Profit or Loss From Business +(Sole Proprietorship) +a + + + +a + +Attach to Form 1040, 1040NR, or 1041; partnerships generally must file Form 1065. +OMB No. 1545-0074 +Attachment +Sequence No. +09 + +Name of proprietor +Social security number (SSN) +A +Principal business or profession, including product or service (see instructions) +B +Enter code from instructions +a +C +Business name. If no separate business name, leave blank. +D +Employer ID number (EIN), +(see instr.) +E +Business address (including suite or room no. +) +a + City, town or post office, state, and ZIP code +F +Accounting method: +(1) +Cash +(2) +Accrual +(3) +Other (specify) + +a + +G + +Yes +No +H +If you started or acquired this business during 2013, check here +................. +a +I +Did you make any payments in 2013 that would require you to file Form(s) 1099? (see instructions) +........ +Yes +No +J +If "Yes," did you or will you file required Forms 1099? +..................... +Yes +No +Part I +Income +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 +......... +a +1 +2 +Returns and allowances +......................... +2 +3 +Subtract line 2 from line 1 +........................ +3 +4 +Cost of goods sold (from line 42) +...................... +4 +.................... +5 +6 +Other income, including federal and state gasoline or fuel tax credit or refund (see instructions) +.... +6 +..................... +a +7 +Part II +Expenses +Enter expenses for business use of your home only on line 30. +8 +Advertising +..... +8 +9 + +Car and truck expenses (see +instructions) +..... +9 +10 +Commissions and fees . +10 +11 +Contract labor (see instructions) +11 +12 +Depletion +..... +12 +13 + + + +Depreciation and section 179 +expense deduction (not +included in Part III) (see +instructions) . +13 +14 + +Employee benefit programs +(other than on line 19) . . +14 +15 +Insurance (other than health) +15 +16 +Interest: +a +Mortgage (paid to banks, etc.) +16a +b +Other +...... +16b +17 +Legal and professional services +17 +18 +Office expense (see instructions) +18 +19 +Pension and profit-sharing plans . +19 +20 +Rent or lease (see instructions): +a +Vehicles, machinery, and equipment +b +Other business property . . . +20b +21 +Repairs and maintenance . . . +21 +22 +Supplies (not included in Part III) . +22 +23 +Taxes and licenses +..... +23 +24 +Travel, meals, and entertainment: +a +Travel +......... +24a +b + +Deductible meals and +entertainment (see instructions) . +24b +25 +Utilities +........ +25 +26 +Wages (less employment credits) . +26 +27 +a +Other expenses (from line 48) . . +27a +b Reserved for future use . . . +27b +before expenses for business use of home. Add lines 8 through 27a +...... +a +28 +29 +Tentative profit or (loss). Subtract line 28 from line 7 +................. +29 +30 +Expenses for business use of your home. Do not report these expenses elsewhere. Attach Form 8829 +unless using the simplified method (see instructions) +. +and (b) the part of your home used for business: +. Use the Simplified +Method Worksheet in the instructions to figure the amount to enter on line 30 +......... +30 + + +. +} +31 +32 +If you have a loss, check the box that describes your investment in this activity (see instructions). +} +32a +All investment is at risk. +32b +Some investment is not +at risk. +For Paperwork Reduction Act Notice, see the separate instructions. +Cat. No. 11334P +Schedule C (Form 1040) 2013 +Form 4562 +REQUIRED: +2013 +For information on Schedule C and its instructions, go towww.irs.gov/schedulec. +28 +Total expenses +31 +(If you checked the box on line 1, see instructions). Estates and trusts, enter on Form 1041, line 3. + Net profit or (loss). + Subtract line 30 from line 29. +Simplified method filers only: + enter the total square footage of: (a) your home: +€ If a profit, enter on both +Form 1040, line 12 + (or +Form 1040NR, line 13 +) and on +Schedule SE, line 2 +€ If a loss, you +must + go to line 32. +€ If you checked 32a, enter the loss on both +Form 1040, line 12 +, (or +Form 1040NR, line 13 +) and +7 Gross income. + Add lines 5 and 6 +5 Gross profit. +Subtract line 4 from line 3 +on +Schedule SE, line 2 +. If you checked the box on line 1, (see the line 31 instructions). Estates and +trusts, enter on +Form 1041, line 3 +. +€ If you checked 32b, you +must + attach +Form 6198 +. Your loss may be limited. +----------------Page (0) Break---------------- +Schedule C (Form 1040) 2013 +Page +2 +Part III +Cost of Goods Sold +(see instructions) +33 + +Method(s) used to +value closing inventory: +a +Cost +b +Lower of cost or market +c +Other (attach explanation) +34 + +Was there any change in determining quantities, costs, or valuations between opening and closing inventory? +If “Yes,” attach explanation +.......................... +Yes +No +35 +Inventory at beginning of year. If different from last year’s closing inventory, attach explanation . . . +35 +36 +Purchases less cost of items withdrawn for personal use +.............. +36 +37 +Cost of labor. Do not include any amounts paid to yourself +.............. +37 +38 +Materials and supplies +........................ +38 +39 +Other costs +............................ +39 +40 +Add lines 35 through 39 +........................ +40 +41 +Inventory at end of year +........................ +41 +42 Cost of goods sold. +Subtract line 41 from line 40. Enter the result here and on line 4 +...... +42 +Part IV +Information on Your Vehicle. +Complete this part +only + +and are not required to file Form 4562 for this business. See the instructions for line 13 to find out if you must +file Form 4562. +43 +When did you place your vehicle in service for business purposes? (month, day, year) +a +/ +/ +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 +b +Commuting (see instructions) +c + Other +45 +Was your vehicle available for personal use during off-duty hours? +............... +Yes +No +46 +Do you (or your spouse) have another vehicle available for personal use? +.............. +Yes +No +47a +Do you have evidence to support your deduction? +.................... +Yes +No +b +If “Yes,” is the evidence written? +......................... +Yes +No +Part V +Other Expenses. +List below business expenses not included on lines 8–26 or line 30. +48 Total other expenses. +Enter here and on line 27a +................ +48 +Schedule C (Form 1040) 2013 +if you are claiming car or truck expenses on line 9 +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/FSCHC.fields.json b/test/data/fd/form/FSCHC.fields.json new file mode 100755 index 00000000..c61bd750 --- /dev/null +++ b/test/data/fd/form/FSCHC.fields.json @@ -0,0 +1 @@ +[{"id":"FRB","type":"radio","calc":false,"value":"F1"},{"id":"FRB","type":"radio","calc":false,"value":"F2"},{"id":"FRB","type":"radio","calc":false,"value":"F3"},{"id":"GIRB","type":"radio","calc":false,"value":"GIY"},{"id":"GIRB","type":"radio","calc":false,"value":"GIN"},{"id":"HX","type":"box","calc":false,"value":""},{"id":"REQDRB","type":"radio","calc":false,"value":"REQDY"},{"id":"REQDRB","type":"radio","calc":false,"value":"REQDN"},{"id":"F1099RB","type":"radio","calc":false,"value":"F1099Y"},{"id":"F1099RB","type":"radio","calc":false,"value":"F1099N"},{"id":"GROSSB","type":"box","calc":false,"value":""},{"id":"L32RB","type":"radio","calc":false,"value":"L32A"},{"id":"L32RB","type":"radio","calc":false,"value":"L32B"},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"A","type":"alpha","calc":false,"value":""},{"id":"B","type":"mask","calc":false,"value":""},{"id":"C","type":"alpha","calc":false,"value":""},{"id":"D","type":"mask","calc":false,"value":""},{"id":"EA","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FD","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"CONTRLBR","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"Add_F4562C","type":"link","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16A","type":"number","calc":false,"value":""},{"id":"L16B","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20A3","type":"alpha","calc":false,"value":""},{"id":"L20B","type":"number","calc":false,"value":""},{"id":"L21","type":"alpha","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24A","type":"number","calc":false,"value":""},{"id":"L24D","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"L29","type":"number","calc":true,"value":""},{"id":"Add_F8829","type":"link","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L31A","type":"alpha","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"Add_F6198C","type":"link","calc":false,"value":""},{"id":"L33BXRB","type":"radio","calc":false,"value":"L33A"},{"id":"L33BXRB","type":"radio","calc":false,"value":"L33B"},{"id":"L33BXRB","type":"radio","calc":false,"value":"L33C"},{"id":"L34RB","type":"radio","calc":false,"value":"L34Y"},{"id":"L34RB","type":"radio","calc":false,"value":"L34N"},{"id":"L46RB_1_","type":"radio","calc":false,"value":"L46Y"},{"id":"L46RB_1_","type":"radio","calc":false,"value":"L46N"},{"id":"L45RB_1_","type":"radio","calc":false,"value":"L45Y"},{"id":"L45RB_1_","type":"radio","calc":false,"value":"L45N"},{"id":"L47ARB_1_","type":"radio","calc":false,"value":"L47AY"},{"id":"L47ARB_1_","type":"radio","calc":false,"value":"L47AN"},{"id":"L48BRB_1_","type":"radio","calc":false,"value":"L47BY"},{"id":"L48BRB_1_","type":"radio","calc":false,"value":"L47BN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L35","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":false,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"L39","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":true,"value":""},{"id":"L41","type":"number","calc":false,"value":""},{"id":"L42","type":"number","calc":true,"value":""},{"id":"VEHICLE_L43_1_","type":"date","calc":false,"value":""},{"id":"VEHICLE_L44A_1_","type":"number","calc":false,"value":""},{"id":"VEHICLE_L44B_1_","type":"number","calc":false,"value":""},{"id":"VEHICLE_L44C_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_1_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_2_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_2_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_3_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_3_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_4_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_4_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_5_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_5_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_6_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_6_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_7_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_7_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_8_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_8_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L48T_9_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L48A_9_","type":"number","calc":false,"value":""},{"id":"L48","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHC.json b/test/data/fd/form/FSCHC.json new file mode 100755 index 00000000..0fc9fdc8 --- /dev/null +++ b/test/data/fd/form/FSCHC.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHCEZS.content.txt b/test/data/fd/form/FSCHCEZS.content.txt new file mode 100755 index 00000000..34633b8d --- /dev/null +++ b/test/data/fd/form/FSCHCEZS.content.txt @@ -0,0 +1,166 @@ +Form 4562, +SCHEDULE C-EZ +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Net Profit From Business +(Sole Proprietorship) +a + +Partnerships, joint ventures, etc., generally must file Form 1065 or 1065-B. + + +a + +Attach to Form 1040, 1040NR, or 1041. + +a + +See instructions on page 2. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +09A + +Name of proprietor +Social security number (SSN) +Part I +General Information +You May Use +Schedule C-EZ +Instead of +Schedule C +Only If You: +a +• Had business expenses of $5,000 or +less. +• Use the cash method of accounting. +• Did not have an inventory at any time +during the year. +• Did not have a net loss from your +business. +• Had only one business as either a sole +proprietor, qualified joint venture, or +statutory employee. + +And You: +a +• Had no employees during the year. +• Are not required to file +Depreciation and Amortization, for +this business. See the instructions for +Schedule C, line 13, to find out if you +must file. +• Do not deduct expenses for business +use of your home. +• Do not have prior year unallowed +passive activity losses from this +business. +A +Principal business or profession, including product or service +B +Enter business code (see page 2) +a +C +Business name. If no separate business name, leave blank. +D +Enter your EIN (see page 2) +E +Business address (including suite or room no.). Address not required if same as on page 1 of your tax return. +City, town or post office, state, and ZIP code +F +Did you make any payments in 2013 that would require you to file Form(s) 1099? (see the Schedule C +instructions) +.............................. +Yes +No +G +If “Yes,” did you or will you file required Forms 1099? +................. +Yes +No +Part II +Figure Your Net Profit +1 +Gross receipts. Caution. + If this income was reported to you on Form W-2 and the “Statutory +Schedule C, line 1, and check here +.................. + +a +1 +2 Total expenses +(see page 2). If more than $5,000, you +must +use Schedule C +....... +2 +3 + + +Net profit. +Subtract line 2 from line 1. If less than zero, you +must + +Form 1040, line 12, +and +Schedule SE, line 2, +or on +Form 1040NR, line 13 +and +Schedule SE, +line 2 +(see instructions). +(Statutory employees, +do not +report this amount on Schedule SE, line 2.) + +Form 1041, line 3 +................. +3 +Part III +Information on Your Vehicle. +Complete this part +only +if you are claiming car or truck expenses on line 2. +4 +When did you place your vehicle in service for business purposes? (month, day, year) +a + . +5 +Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for: +a +Business +b +Commuting (see page 2) +c +Other +6 +Was your vehicle available for personal use during off-duty hours? +............. +Yes +No +7 +Do you (or your spouse) have another vehicle available for personal use? +........... +Yes +No +8a +Do you have evidence to support your deduction? +.................. +Yes +No +b +If “Yes,” is the evidence written? +........................ +Yes +No +For Paperwork Reduction Act Notice, see the separate instructions for Schedule C (Form 1040). +Cat. No. 14374D +Schedule C-EZ (Form 1040) 2013 +employee” box on that form was checked, see Statutory Employees in the instructions for +use Schedule C. Enter on both +Estates and trusts, enter on +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHCEZS.fields.json b/test/data/fd/form/FSCHCEZS.fields.json new file mode 100755 index 00000000..30d3ff1c --- /dev/null +++ b/test/data/fd/form/FSCHCEZS.fields.json @@ -0,0 +1 @@ +[{"id":"REQD99RB","type":"radio","calc":false,"value":"REQDY"},{"id":"REQD99RB","type":"radio","calc":false,"value":"REQDN"},{"id":"FILE99RB","type":"radio","calc":false,"value":"F1099Y"},{"id":"FILE99RB","type":"radio","calc":false,"value":"F1099N"},{"id":"STATEMP","type":"box","calc":false,"value":""},{"id":"L7RB","type":"radio","calc":false,"value":"L7Y"},{"id":"L7RB","type":"radio","calc":false,"value":"L7N"},{"id":"L6RB","type":"radio","calc":false,"value":"L6Y"},{"id":"L6RB","type":"radio","calc":false,"value":"L6N"},{"id":"L8ARB","type":"radio","calc":false,"value":"L8AY"},{"id":"L8ARB","type":"radio","calc":false,"value":"L8AN"},{"id":"L8BRB","type":"radio","calc":false,"value":"L8BY"},{"id":"L8BRB","type":"radio","calc":false,"value":"L8BN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A","type":"alpha","calc":false,"value":""},{"id":"B","type":"mask","calc":false,"value":""},{"id":"C","type":"alpha","calc":false,"value":""},{"id":"D","type":"mask","calc":false,"value":""},{"id":"E1","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"GRRCPTS","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"VEHICLE_L4A_1_","type":"date","calc":false,"value":""},{"id":"VEHICLE_L5A_1_","type":"number","calc":false,"value":""},{"id":"VEHICLE_L5B_1_","type":"number","calc":false,"value":""},{"id":"VEHICLE_L5C_1_","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHCEZS.json b/test/data/fd/form/FSCHCEZS.json new file mode 100755 index 00000000..2a9d810e --- /dev/null +++ b/test/data/fd/form/FSCHCEZS.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHCEZT.content.txt b/test/data/fd/form/FSCHCEZT.content.txt new file mode 100755 index 00000000..34633b8d --- /dev/null +++ b/test/data/fd/form/FSCHCEZT.content.txt @@ -0,0 +1,166 @@ +Form 4562, +SCHEDULE C-EZ +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Net Profit From Business +(Sole Proprietorship) +a + +Partnerships, joint ventures, etc., generally must file Form 1065 or 1065-B. + + +a + +Attach to Form 1040, 1040NR, or 1041. + +a + +See instructions on page 2. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +09A + +Name of proprietor +Social security number (SSN) +Part I +General Information +You May Use +Schedule C-EZ +Instead of +Schedule C +Only If You: +a +• Had business expenses of $5,000 or +less. +• Use the cash method of accounting. +• Did not have an inventory at any time +during the year. +• Did not have a net loss from your +business. +• Had only one business as either a sole +proprietor, qualified joint venture, or +statutory employee. + +And You: +a +• Had no employees during the year. +• Are not required to file +Depreciation and Amortization, for +this business. See the instructions for +Schedule C, line 13, to find out if you +must file. +• Do not deduct expenses for business +use of your home. +• Do not have prior year unallowed +passive activity losses from this +business. +A +Principal business or profession, including product or service +B +Enter business code (see page 2) +a +C +Business name. If no separate business name, leave blank. +D +Enter your EIN (see page 2) +E +Business address (including suite or room no.). Address not required if same as on page 1 of your tax return. +City, town or post office, state, and ZIP code +F +Did you make any payments in 2013 that would require you to file Form(s) 1099? (see the Schedule C +instructions) +.............................. +Yes +No +G +If “Yes,” did you or will you file required Forms 1099? +................. +Yes +No +Part II +Figure Your Net Profit +1 +Gross receipts. Caution. + If this income was reported to you on Form W-2 and the “Statutory +Schedule C, line 1, and check here +.................. + +a +1 +2 Total expenses +(see page 2). If more than $5,000, you +must +use Schedule C +....... +2 +3 + + +Net profit. +Subtract line 2 from line 1. If less than zero, you +must + +Form 1040, line 12, +and +Schedule SE, line 2, +or on +Form 1040NR, line 13 +and +Schedule SE, +line 2 +(see instructions). +(Statutory employees, +do not +report this amount on Schedule SE, line 2.) + +Form 1041, line 3 +................. +3 +Part III +Information on Your Vehicle. +Complete this part +only +if you are claiming car or truck expenses on line 2. +4 +When did you place your vehicle in service for business purposes? (month, day, year) +a + . +5 +Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for: +a +Business +b +Commuting (see page 2) +c +Other +6 +Was your vehicle available for personal use during off-duty hours? +............. +Yes +No +7 +Do you (or your spouse) have another vehicle available for personal use? +........... +Yes +No +8a +Do you have evidence to support your deduction? +.................. +Yes +No +b +If “Yes,” is the evidence written? +........................ +Yes +No +For Paperwork Reduction Act Notice, see the separate instructions for Schedule C (Form 1040). +Cat. No. 14374D +Schedule C-EZ (Form 1040) 2013 +employee” box on that form was checked, see Statutory Employees in the instructions for +use Schedule C. Enter on both +Estates and trusts, enter on +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHCEZT.fields.json b/test/data/fd/form/FSCHCEZT.fields.json new file mode 100755 index 00000000..30d3ff1c --- /dev/null +++ b/test/data/fd/form/FSCHCEZT.fields.json @@ -0,0 +1 @@ +[{"id":"REQD99RB","type":"radio","calc":false,"value":"REQDY"},{"id":"REQD99RB","type":"radio","calc":false,"value":"REQDN"},{"id":"FILE99RB","type":"radio","calc":false,"value":"F1099Y"},{"id":"FILE99RB","type":"radio","calc":false,"value":"F1099N"},{"id":"STATEMP","type":"box","calc":false,"value":""},{"id":"L7RB","type":"radio","calc":false,"value":"L7Y"},{"id":"L7RB","type":"radio","calc":false,"value":"L7N"},{"id":"L6RB","type":"radio","calc":false,"value":"L6Y"},{"id":"L6RB","type":"radio","calc":false,"value":"L6N"},{"id":"L8ARB","type":"radio","calc":false,"value":"L8AY"},{"id":"L8ARB","type":"radio","calc":false,"value":"L8AN"},{"id":"L8BRB","type":"radio","calc":false,"value":"L8BY"},{"id":"L8BRB","type":"radio","calc":false,"value":"L8BN"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A","type":"alpha","calc":false,"value":""},{"id":"B","type":"mask","calc":false,"value":""},{"id":"C","type":"alpha","calc":false,"value":""},{"id":"D","type":"mask","calc":false,"value":""},{"id":"E1","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"GRRCPTS","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"VEHICLE_L4A_1_","type":"date","calc":false,"value":""},{"id":"VEHICLE_L5A_1_","type":"number","calc":false,"value":""},{"id":"VEHICLE_L5B_1_","type":"number","calc":false,"value":""},{"id":"VEHICLE_L5C_1_","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHCEZT.json b/test/data/fd/form/FSCHCEZT.json new file mode 100755 index 00000000..617fe1ef --- /dev/null +++ b/test/data/fd/form/FSCHCEZT.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHD.content.txt b/test/data/fd/form/FSCHD.content.txt new file mode 100755 index 00000000..f7554b08 --- /dev/null +++ b/test/data/fd/form/FSCHD.content.txt @@ -0,0 +1,288 @@ +Form 8949 +See instructions for how to figure the amounts to enter on the +lines below. +This form may be easier to complete if you round off cents to +whole dollars. +See instructions for how to figure the amounts to enter on the +lines below. +This form may be easier to complete if you round off cents to +whole dollars. +SCHEDULE D +(Form 1040) +Department of the Treasury +Internal Revenue Service +(99) +Capital Gains and Losses +a + Attach to Form 1040 or Form 1040NR. + +a +. + +a + +Use Form 8949 to list your transactions for lines 1b, 2, 3, 8b, 9, and 10. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +12 + +Name(s) shown on return +Your social security number +Part I +Short-Term Capital Gains and Losses, Assets Held One Year or Less +(d) +Proceeds +(sales + +price) +(e) + + +Cost +(or other basis) +(g) + + +Adjustments + to gain or loss from +Form(s) 8949, Part I, +line 2, column (g) +(h) Gain or (loss) +Subtract column (e) +from column (d) and +combine the result with +column (g) +1a +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 + +. +1b +Totals for all transactions reported on Form(s) 8949 with +Box A +checked +............. +2 + +Totals for all transactions reported on Form(s) 8949 with +Box B +checked +............. +3 + +Totals for all transactions reported on Form(s) 8949 with +Box C +checked +............. +4 +Short-term gain from Form 6252 and short-term gain or (loss) from Forms 4684, 6781, and 8824 . +4 +5 + +Net short-term gain or (loss) from partnerships, S corporations, estates, and trusts from +Schedule(s) K-1 +............................ +5 +6 + +Short-term capital loss carryover. Enter the amount, if any, from line 8 of your + +Worksheet +in the instructions +....................... +6 +( ) +7 Net short-term capital gain or (loss). +Combine lines 1a through 6 in column (h). If you have any long- +term capital gains or losses, go to Part II below. Otherwise, go to Part III on the back +..... +7 +Part II +Long-Term Capital Gains and Losses, Assets Held More Than One Year +(d) +Proceeds +(sales + +price) +(e) + + +Cost +(or other basis) +(g) + + +Adjustments + to gain or loss from +Form(s) 8949, Part II, +line 2, column (g) +(h) Gain or (loss) +Subtract column (e) +from column (d) and +combine the result with +column (g) +8a +Totals for all long-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 8b . +8b +Totals for all transactions reported on Form(s) 8949 with +Box D +checked +............. +9 + +Totals for all transactions reported on Form(s) 8949 with +Box E +checked +............. +10 + +Totals for all transactions reported on Form(s) 8949 with +Box F +checked +.............. +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 +...................... +11 +12 +Net long-term gain or (loss) from partnerships, S corporations, estates, and trusts from Schedule(s) K-1 +12 +13 +Capital gain distributions. See the instructions +.................. +13 +14 + +Long-term capital loss carryover. Enter the amount, if any, from line 13 of your + +Worksheet +in the instructions +....................... +14 +( ) +15 + +Net long-term capital gain or (loss). +Combine lines 8a through 14 in column (h). Then go to Part III on +the back +............................... +15 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11338H +Schedule D (Form 1040) 2013 +Form 6781 +Form 6252 +Forms 4684 +From 8824 +Form 4797 +Form 2439 +Form 6252 +Form 4684 +Form 6781 +Form 8824 +ENTER AS A NEGATIVE NUMBER +ENTER AS A NEGATIVE NUMBER +Form 8949 + Information about Schedule D and its separate instructions is at www.irs.gov/scheduled +Capital Loss Carryover +Capital Loss Carryover +----------------Page (0) Break---------------- +Schedule D (Form 1040) 2013 +Page +2 +Part III +Summary +16 +Combine lines 7 and 15 and enter the result +.................. +16 +• If line 16 is a +gain, +enter the amount from line 16 on Form 1040, line 13, or Form 1040NR, line +14. Then go to line 17 below. +• If line 16 is a +loss, +skip lines 17 through 20 below. Then go to line 21. Also be sure to complete +line 22. +• If line 16 is +zero, +skip lines 17 through 21 below and enter -0- on Form 1040, line 13, or Form +1040NR, line 14. Then go to line 22. +17 +Are lines 15 and 16 +both + gains? +Yes. + Go to line 18. +No. + Skip lines 18 through 21, and go to line 22. +18 +Enter the amount, if any, from line 7 of the +28% Rate Gain Worksheet +in the instructions . . +a +18 +19 + +Enter the amount, if any, from line 18 of the +Unrecaptured Section 1250 Gain Worksheet + in the +instructions +............................ +a +19 +20 +Are lines 18 and 19 +both + zero or blank? +Yes. + Complete the + + in the instructions +for Form 1040, line 44 (or in the instructions for Form 1040NR, line 42). +Do not +complete lines +21 and 22 below. +No. + Complete the +Schedule D Tax Worksheet + in the instructions. +Do not + complete lines 21 +and 22 below. +21 +If line 16 is a loss, enter here and on Form 1040, line 13, or Form 1040NR, line 14, the +smaller + of: +• The loss on line 16 or +• ($3,000), or if married filing separately, ($1,500) +} +............... +21 +( ) +Note. +When figuring which amount is smaller, treat both amounts as positive numbers. +22 +Do you have qualified dividends on Form 1040, line 9b, or Form 1040NR, line 10b? +Yes. + Complete the +Qualified Dividends and Capital Gain Tax Worksheet + in the instructions +for Form 1040, line 44 (or in the instructions for Form 1040NR, line 42). +No. + Complete the rest of Form 1040 or Form 1040NR. +Schedule D (Form 1040) 2013 +Qualified Dividends and Capital Gain Tax Worksheet +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/FSCHD.fields.json b/test/data/fd/form/FSCHD.fields.json new file mode 100755 index 00000000..aa240c43 --- /dev/null +++ b/test/data/fd/form/FSCHD.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add_F8949","type":"link","calc":true,"value":""},{"id":"L1ASPRCE","type":"number","calc":false,"value":""},{"id":"L1ACOST","type":"number","calc":false,"value":""},{"id":"L1AGOL","type":"number","calc":false,"value":""},{"id":"A1PRICE","type":"number","calc":true,"value":""},{"id":"A1BASIS","type":"number","calc":true,"value":""},{"id":"A1ADJST","type":"number","calc":true,"value":""},{"id":"A1GORL","type":"number","calc":true,"value":""},{"id":"B1PRICE","type":"number","calc":true,"value":""},{"id":"B1BASIS","type":"number","calc":true,"value":""},{"id":"B1ADJST","type":"number","calc":true,"value":""},{"id":"B1GORL","type":"number","calc":true,"value":""},{"id":"C1PRICE","type":"number","calc":true,"value":""},{"id":"C1BASIS","type":"number","calc":true,"value":""},{"id":"C1ADJST","type":"number","calc":true,"value":""},{"id":"C1GORL","type":"number","calc":true,"value":""},{"id":"Add_F6252","type":"link","calc":true,"value":""},{"id":"Add_F4684","type":"link","calc":true,"value":""},{"id":"Add_F6781","type":"link","calc":true,"value":""},{"id":"Add_F8824","type":"link","calc":true,"value":""},{"id":"L4F","type":"number","calc":false,"value":""},{"id":"L5F","type":"number","calc":false,"value":""},{"id":"L6F","type":"mask","calc":false,"value":""},{"id":"L7F","type":"number","calc":true,"value":""},{"id":"Add_F8949","type":"link","calc":true,"value":""},{"id":"L8ASPRCE","type":"number","calc":false,"value":""},{"id":"L8ACOST","type":"number","calc":false,"value":""},{"id":"L8AGOL","type":"number","calc":false,"value":""},{"id":"A2PRICE","type":"number","calc":true,"value":""},{"id":"A2BASIS","type":"number","calc":true,"value":""},{"id":"A2ADJST","type":"number","calc":true,"value":""},{"id":"A2GORL","type":"number","calc":true,"value":""},{"id":"B2PRICE","type":"number","calc":true,"value":""},{"id":"B2BASIS","type":"number","calc":true,"value":""},{"id":"B2ADJST","type":"number","calc":true,"value":""},{"id":"B2GORL","type":"number","calc":true,"value":""},{"id":"C2PRICE","type":"number","calc":true,"value":""},{"id":"C2BASIS","type":"number","calc":true,"value":""},{"id":"C2ADJST","type":"number","calc":true,"value":""},{"id":"C2GORL","type":"number","calc":true,"value":""},{"id":"L11F","type":"number","calc":false,"value":""},{"id":"Add_F4797","type":"link","calc":true,"value":""},{"id":"Add_F2439","type":"link","calc":true,"value":""},{"id":"Add_F6252","type":"link","calc":true,"value":""},{"id":"Add_F4684","type":"link","calc":true,"value":""},{"id":"Add_F6781","type":"link","calc":true,"value":""},{"id":"Add_F8824","type":"link","calc":true,"value":""},{"id":"L12F","type":"number","calc":false,"value":""},{"id":"L13F","type":"number","calc":false,"value":""},{"id":"L14F","type":"mask","calc":false,"value":""},{"id":"L15F","type":"number","calc":true,"value":""},{"id":"A377RB","type":"radio","calc":false,"value":"GAINXY"},{"id":"A377RB","type":"radio","calc":false,"value":"GAINXN"},{"id":"A381RB","type":"radio","calc":false,"value":"NORGUNXY"},{"id":"A381RB","type":"radio","calc":false,"value":"NORGUNXN"},{"id":"A387RB","type":"radio","calc":false,"value":"QUALDVXY"},{"id":"A387RB","type":"radio","calc":false,"value":"FQUALDVXN"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L21","type":"mask","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHD.json b/test/data/fd/form/FSCHD.json new file mode 100755 index 00000000..e340db96 --- /dev/null +++ b/test/data/fd/form/FSCHD.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHE1.content.txt b/test/data/fd/form/FSCHE1.content.txt new file mode 100755 index 00000000..25040323 --- /dev/null +++ b/test/data/fd/form/FSCHE1.content.txt @@ -0,0 +1,238 @@ +Physical address of each property street +See Form 4562 +SCHEDULE E +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Supplemental Income and Loss + +(From rental real estate, royalties, partnerships, S corporations, estates, trusts, REMICs, etc.) +a + +Attach to Form 1040, 1040NR, or Form 1041. + +a + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +13 +Name(s) shown on return +Your social security number +Part I +Income or Loss From Rental Real Estate and Royalties +Note. +If you are in the business of renting personal property, use + +Schedule C +or + C-EZ +(see instructions). If you are an individual, report farm rental income or loss from +Form 4835 +on page 2, line 40. +A +Did you make any payments in 2013 that would require you to file Form(s) 1099? (see instructions) +Yes +No +B +If “Yes,” did you or will you file required Forms 1099? +Yes +No +1a +A +B +C +1b +Type of Property +(from list below) +A +B +C +2 +For each rental real estate property listed +above, report the number of fair rental and +personal use days. Check the +QJV +box +only if you meet the requirements to file as +a qualified joint venture. See instructions. +Fair Rental +Days +Personal Use +Days +QJV +A +B +C +Type of Property: +1 Single Family Residence +2 Multi-Family Residence +3 Vacation/Short-Term Rental +4 Commercial +5 Land +6 Royalties +7 Self-Rental +8 Other (describe) +Income: +Properties: + +A +B +C + + + + + + + + + +3 +Rents received +............. +3 +4 +Royalties received +............ +4 +Expenses: + + + + + + + +5 +Advertising +.............. +5 +6 +Auto and travel (see instructions) +....... +6 +7 +Cleaning and maintenance +......... +7 +8 +Commissions +.............. +8 +9 +Insurance +............... +9 +10 +Legal and other professional fees +....... +10 +11 +Management fees +............ +11 +12 +Mortgage interest paid to banks, etc. (see instructions) +12 +13 +Other interest +.............. +13 +14 +Repairs +................ +14 +15 +Supplies +............... +15 +16 +Taxes +................ +16 +17 +Utilities +................ +17 +18 +Depreciation expense or depletion . . +..... +18 +19 +Other (list) +a +20 +Total expenses. Add lines 5 through 19 +..... +20 +21 +Subtract line 20 from line 3 (rents) and/or 4 (royalties). If +result is a (loss), see instructions to find out if you must +file +Form 6198 +............. +21 +22 +Deductible rental real estate loss after limitation, if any, +on +Form 8582 +(see instructions) +....... +22 +( +) +( +) +( +) +23a +Total of all amounts reported on line 3 for all rental properties +.... +23a +b +Total of all amounts reported on line 4 for all royalty properties +.... +23b +c +Total of all amounts reported on line 12 for all properties +...... +23c +d +Total of all amounts reported on line 18 for all properties +...... +23d +e +Total of all amounts reported on line 20 for all properties +...... +23e +24 Income. +Add positive amounts shown on line 21. +Do not + include any losses +....... +24 +25 +Losses. +Add royalty losses from line 21 and rental real estate losses from line 22. Enter total losses here +25 +( +) +26 +Total rental real estate and royalty income or (loss). +Combine lines 24 and 25. Enter the result here. +If Parts II, III, IV, and line 40 on page 2 do not apply to you, also enter this amount on Form 1040, line +17, or Form 1040NR, line 18. Otherwise, include this amount in the total on line 41 on page 2 . . . . +26 +For Paperwork Reduction Act Notice, see the separate instructions. +Cat. No. 11344L +Schedule E (Form 1040) 2013 +19 +Schedule E page 2 +city + state + ZIP Code +Information about Schedule E and its separate instructions is at www.irs.gov/schedulee. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHE1.fields.json b/test/data/fd/form/FSCHE1.fields.json new file mode 100755 index 00000000..c96816fe --- /dev/null +++ b/test/data/fd/form/FSCHE1.fields.json @@ -0,0 +1 @@ +[{"id":"A519RB","type":"radio","calc":false,"value":"F1099AY"},{"id":"A519RB","type":"radio","calc":false,"value":"F1099AN"},{"id":"A523RB","type":"radio","calc":false,"value":"F1099BY"},{"id":"A523RB","type":"radio","calc":false,"value":"F1099BN"},{"id":"TB14_QJV_1_","type":"box","calc":false,"value":""},{"id":"TB14_QJV_2_","type":"box","calc":false,"value":""},{"id":"TB14_QJV_3_","type":"box","calc":false,"value":""},{"id":"DESC","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"LINE1A_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_CITY_1_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_ST_1_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_ZIP_1_","type":"zip","calc":false,"value":""},{"id":"LINE1A_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_CITY_2_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_ST_2_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_ZIP_2_","type":"zip","calc":false,"value":""},{"id":"LINE1A_L1A_3_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_CITY_3_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_ST_3_","type":"alpha","calc":false,"value":""},{"id":"LINE1A_ZIP_3_","type":"zip","calc":false,"value":""},{"id":"TYPE_1_","type":"alpha","calc":false,"value":""},{"id":"TB14_FAIRDAY_1_","type":"number","calc":false,"value":""},{"id":"TB14_PERSDAY_1_","type":"number","calc":false,"value":""},{"id":"TYPE_2_","type":"alpha","calc":false,"value":""},{"id":"TB14_FAIRDAY_2_","type":"number","calc":false,"value":""},{"id":"TB14_PERSDAY_2_","type":"number","calc":false,"value":""},{"id":"TYPE_3_","type":"alpha","calc":false,"value":""},{"id":"TB14_FAIRDAY_3_","type":"number","calc":false,"value":""},{"id":"TB14_PERSDAY_3_","type":"number","calc":false,"value":""},{"id":"OTHER_TYOTH_1_","type":"alpha","calc":false,"value":""},{"id":"LINE3B_L3_1_","type":"number","calc":false,"value":""},{"id":"LINE3B_L3_2_","type":"number","calc":false,"value":""},{"id":"LINE3B_L3_3_","type":"number","calc":false,"value":""},{"id":"LINE4_L4_1_","type":"number","calc":false,"value":""},{"id":"LINE4_L4_2_","type":"number","calc":false,"value":""},{"id":"LINE4_L4_3_","type":"number","calc":false,"value":""},{"id":"LINE5_L5_1_","type":"number","calc":false,"value":""},{"id":"LINE5_L5_2_","type":"number","calc":false,"value":""},{"id":"LINE5_L5_3_","type":"number","calc":false,"value":""},{"id":"LINE6AT_L6AT_1_","type":"number","calc":false,"value":""},{"id":"LINE6AT_L6AT_2_","type":"number","calc":false,"value":""},{"id":"LINE6AT_L6AT_3_","type":"number","calc":false,"value":""},{"id":"LINE7_L7_1_","type":"number","calc":false,"value":""},{"id":"LINE7_L7_2_","type":"number","calc":false,"value":""},{"id":"LINE7_L7_3_","type":"number","calc":false,"value":""},{"id":"LINE8_L8_1_","type":"number","calc":false,"value":""},{"id":"LINE8_L8_2_","type":"number","calc":false,"value":""},{"id":"LINE8_L8_3_","type":"number","calc":false,"value":""},{"id":"LINE9_L9_1_","type":"number","calc":false,"value":""},{"id":"LINE9_L9_2_","type":"number","calc":false,"value":""},{"id":"LINE9_L9_3_","type":"number","calc":false,"value":""},{"id":"LINE10_L10_1_","type":"number","calc":false,"value":""},{"id":"LINE10_L10_2_","type":"number","calc":false,"value":""},{"id":"LINE10_L10_3_","type":"number","calc":false,"value":""},{"id":"LINE11_L11_1_","type":"number","calc":false,"value":""},{"id":"LINE11_L11_2_","type":"number","calc":false,"value":""},{"id":"LINE11_L11_3_","type":"number","calc":false,"value":""},{"id":"LINE12_L12_1_","type":"number","calc":false,"value":""},{"id":"LINE12_L12_2_","type":"number","calc":false,"value":""},{"id":"LINE12_L12_3_","type":"number","calc":false,"value":""},{"id":"LINE13_L13_1_","type":"number","calc":false,"value":""},{"id":"LINE13_L13_2_","type":"number","calc":false,"value":""},{"id":"LINE13_L13_3_","type":"number","calc":false,"value":""},{"id":"LINE14_L14_1_","type":"number","calc":false,"value":""},{"id":"LINE14_L14_2_","type":"number","calc":false,"value":""},{"id":"LINE14_L14_3_","type":"number","calc":false,"value":""},{"id":"LINE15_L15_1_","type":"number","calc":false,"value":""},{"id":"LINE15_L15_2_","type":"number","calc":false,"value":""},{"id":"LINE15_L15_3_","type":"number","calc":false,"value":""},{"id":"LINE16_L16_1_","type":"number","calc":false,"value":""},{"id":"LINE16_L16_2_","type":"number","calc":false,"value":""},{"id":"LINE16_L16_3_","type":"number","calc":false,"value":""},{"id":"LINE17_L17_1_","type":"number","calc":false,"value":""},{"id":"LINE17_L17_2_","type":"number","calc":false,"value":""},{"id":"LINE17_L17_3_","type":"number","calc":false,"value":""},{"id":"Add_F4562E","type":"link","calc":true,"value":""},{"id":"LINE18_L20_1_","type":"number","calc":false,"value":""},{"id":"LINE18_L20_2_","type":"number","calc":false,"value":""},{"id":"LINE18_L20_3_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18T_1_","type":"mask","calc":false,"value":""},{"id":"OTHEREXP_L18A_1_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18B_1_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18C_1_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18T_2_","type":"mask","calc":false,"value":""},{"id":"OTHEREXP_L18A_2_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18B_2_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18C_2_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18T_3_","type":"mask","calc":false,"value":""},{"id":"OTHEREXP_L18A_3_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18B_3_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18C_3_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18T_4_","type":"mask","calc":false,"value":""},{"id":"OTHEREXP_L18A_4_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18B_4_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18C_4_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18T_5_","type":"mask","calc":false,"value":""},{"id":"OTHEREXP_L18A_5_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18B_5_","type":"number","calc":false,"value":""},{"id":"OTHEREXP_L18C_5_","type":"number","calc":false,"value":""},{"id":"LINE20_L19_1_","type":"number","calc":true,"value":""},{"id":"LINE20_L19_2_","type":"number","calc":true,"value":""},{"id":"LINE20_L19_3_","type":"number","calc":true,"value":""},{"id":"Add_F6198E","type":"link","calc":true,"value":""},{"id":"LINE21_L22_1_","type":"number","calc":false,"value":""},{"id":"LINE21_L22_2_","type":"number","calc":false,"value":""},{"id":"LINE21_L22_3_","type":"number","calc":false,"value":""},{"id":"Add_F8582","type":"link","calc":true,"value":""},{"id":"LINE22_L23_1_","type":"mask","calc":false,"value":""},{"id":"LINE22_L23_2_","type":"mask","calc":false,"value":""},{"id":"LINE22_L23_3_","type":"mask","calc":false,"value":""},{"id":"RENT1","type":"number","calc":true,"value":""},{"id":"ROYAL2","type":"alpha","calc":true,"value":""},{"id":"L12T","type":"alpha","calc":true,"value":""},{"id":"L20T","type":"number","calc":true,"value":""},{"id":"L19T","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"mask","calc":false,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"Add_SchE_Page2","type":"link","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHE1.json b/test/data/fd/form/FSCHE1.json new file mode 100755 index 00000000..39950ea0 --- /dev/null +++ b/test/data/fd/form/FSCHE1.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHE2.content.txt b/test/data/fd/form/FSCHE2.content.txt new file mode 100755 index 00000000..c9bc867e --- /dev/null +++ b/test/data/fd/form/FSCHE2.content.txt @@ -0,0 +1,248 @@ +Schedule E (Form 1040) 2013 +Attachment Sequence No. + +13 +Page +2 +Name(s) shown on return. Do not enter name and social security number if shown on other side. +Your social security number +Caution. +The IRS compares amounts reported on your tax return with amounts shown on Schedule(s) K-1. +Part II +Income or Loss From Partnerships and S Corporations + Note. +If you report a loss from an at-risk activity for + +which +any +amount is +not +at risk, you +must +check the box in column +(e) +on line 28 and attach +Form 6198. + See instructions. +27 +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 + +unallowed loss from a passive activity (if that loss was not reported on Form 8582), or unreimbursed partnership expenses? If +you answered “Yes,” see instructions before completing this section. +Yes +No +28 +(a) +Name +(b) +Enter + P +for + +partnership; +S + +for S corporation +(c) +Check if + +foreign + +partnership +(d) +Employer + +identification +number +(e) +Check if + +any amount is +not at risk +A +B +C +D + +Passive Income and Loss + + +Nonpassive Income and Loss + +(f) +Passive loss allowed + +(attach + Form 8582 +if required) +(g) +Passive income + +from + Schedule K...1 +(h) +Nonpassive loss + +from + Schedule K...1 +(i) +Section 179 expense + +deduction from +Form 4562 + +(j) +Nonpassive income + +from +Schedule K...1 +29a +Totals +b +Totals +30 +Add columns (g) and (j) of line 29a +..................... +30 +31 +Add columns (f), (h), and (i) of line 29b +................... +31 +( +) +32 Total partnership and S corporation income or (loss). +Combine lines 30 and 31. Enter the +result here and include in the total on line 41 below +............... +32 +Part III +Income or Loss From Estates and Trusts +33 +(a) +Name +(b) +Employer + +identification number +A +B + +Passive Income and Loss + +Nonpassive Income and Loss + + + + + +(c) +Passive deduction or loss allowed + +(attach + Form 8582 +if required) +(d) +Passive income + +from + Schedule K...1 +(e) +Deduction or loss + +from +Schedule K...1 +(f) +Other income from + +Schedule K...1 +34a +Totals +b +Totals +35 +Add columns (d) and (f) of line 34a +..................... +35 +36 +Add columns (c) and (e) of line 34b +.................... +36 +( +) +37 +Total estate and trust income or (loss). +Combine lines 35 and 36. Enter the result here and +include in the total on line 41 below +.................... +37 +Part IV +Income or Loss From Real Estate Mortgage Investment Conduits (REMICs)„Residual Holder +38 +(a) +Name +(b) +Employer + +identification +number +(c) +Excess inclusion from + +Schedules Q, +line 2c + +(see instructions) +(d) +Taxable income (net loss) +from + Schedules Q, +line 1b +(e) + Income from + +Schedules Q, +line 3b +39 +Combine columns (d) and (e) only. Enter the result here and include in the total on line 41 below +39 +Part V +Summary +40 +Net farm rental income or (loss) from +Form 4835 +. Also, complete line 42 below +...... +40 +41 +Total income or (loss). +Combine lines 26, 32, 37, 39, and 40. Enter the result here and on Form 1040, line 17, or Form 1040NR, line 18 +a + +41 +42 +Reconciliation of farming and fishing income. +Enter your +gross +farming and fishing income reported on Form 4835, line 7; Schedule K-1 +(Form 1065), box 14, code B; Schedule K-1 (Form 1120S), box 17, code +V; and Schedule K-1 (Form 1041), box 14, code F (see instructions) . . +42 +43 +Reconciliation for real estate professionals. +If you were a real estate +professional (see instructions), enter the net income or (loss) you reported +anywhere on Form 1040 or Form 1040NR from all rental real estate activities +in which you materially participated under the passive activity loss rules . . +43 +Schedule E (Form 1040) 2013 + +A +B +C +D + +A +B + + +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHE2.fields.json b/test/data/fd/form/FSCHE2.fields.json new file mode 100755 index 00000000..30a2e7ed --- /dev/null +++ b/test/data/fd/form/FSCHE2.fields.json @@ -0,0 +1 @@ +[{"id":"NALOSSRB","type":"radio","calc":false,"value":"NALOSSY"},{"id":"NALOSSRB","type":"radio","calc":false,"value":"NALOSSN"},{"id":"LINE27_L27CX_1_","type":"box","calc":false,"value":""},{"id":"LINE27_L27EX_1_","type":"box","calc":false,"value":""},{"id":"LINE27_L27CX_2_","type":"box","calc":false,"value":""},{"id":"LINE27_L27EX_2_","type":"box","calc":false,"value":""},{"id":"LINE27_L27CX_3_","type":"box","calc":false,"value":""},{"id":"LINE27_L27EX_3_","type":"box","calc":false,"value":""},{"id":"LINE27_L27CX_4_","type":"box","calc":false,"value":""},{"id":"LINE27_L27EX_4_","type":"box","calc":false,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"LINE27_L27A_1_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27B_1_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27D_1_","type":"mask","calc":false,"value":""},{"id":"LINE27_L27A_2_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27B_2_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27D_2_","type":"mask","calc":false,"value":""},{"id":"LINE27_L27A_3_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27B_3_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27D_3_","type":"mask","calc":false,"value":""},{"id":"LINE27_L27A_4_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27B_4_","type":"alpha","calc":false,"value":""},{"id":"LINE27_L27D_4_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27G_1_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27H_1_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27I_1_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27J_1_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27K_1_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27G_2_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27H_2_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27I_2_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27J_2_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27K_2_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27G_3_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27H_3_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27I_3_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27J_3_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27K_3_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27G_4_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27H_4_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27I_4_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27J_4_","type":"mask","calc":false,"value":""},{"id":"PSCGL_L27K_4_","type":"mask","calc":false,"value":""},{"id":"L28AH","type":"number","calc":true,"value":""},{"id":"L28AK","type":"number","calc":true,"value":""},{"id":"L28BG","type":"number","calc":true,"value":""},{"id":"L28BI","type":"number","calc":true,"value":""},{"id":"L28BJ","type":"number","calc":true,"value":""},{"id":"L29","type":"number","calc":true,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"L31","type":"number","calc":true,"value":""},{"id":"ESTATE_L32A_1_","type":"alpha","calc":false,"value":""},{"id":"ESTATE_L32B_1_","type":"alpha","calc":false,"value":""},{"id":"ESTATE_L32A_2_","type":"alpha","calc":false,"value":""},{"id":"ESTATE_L32B_2_","type":"alpha","calc":false,"value":""},{"id":"ESGL_L32C_1_","type":"mask","calc":false,"value":""},{"id":"ESGL_L32D_1_","type":"mask","calc":false,"value":""},{"id":"ESGL_L32E_1_","type":"mask","calc":false,"value":""},{"id":"ESGL_L32F_1_","type":"mask","calc":false,"value":""},{"id":"ESGL_L32C_2_","type":"mask","calc":false,"value":""},{"id":"ESGL_L32D_2_","type":"mask","calc":false,"value":""},{"id":"ESGL_L32E_2_","type":"mask","calc":false,"value":""},{"id":"ESGL_L32F_2_","type":"mask","calc":false,"value":""},{"id":"L33AD","type":"number","calc":true,"value":""},{"id":"L33AF","type":"number","calc":true,"value":""},{"id":"L33BC","type":"number","calc":true,"value":""},{"id":"L33BE","type":"number","calc":true,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L36","type":"number","calc":true,"value":""},{"id":"L37_L37A_1_","type":"alpha","calc":false,"value":""},{"id":"L37_L37B_1_","type":"mask","calc":false,"value":""},{"id":"L37_L37C_1_","type":"number","calc":false,"value":""},{"id":"L37_L37D_1_","type":"number","calc":false,"value":""},{"id":"L37_L37E_1_","type":"number","calc":false,"value":""},{"id":"L38","type":"number","calc":true,"value":""},{"id":"L39","type":"number","calc":false,"value":""},{"id":"L40","type":"number","calc":true,"value":""},{"id":"L41","type":"number","calc":false,"value":""},{"id":"L42","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHE2.json b/test/data/fd/form/FSCHE2.json new file mode 100755 index 00000000..bb845fc9 --- /dev/null +++ b/test/data/fd/form/FSCHE2.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHEIC.content.txt b/test/data/fd/form/FSCHEIC.content.txt new file mode 100755 index 00000000..d0a25773 --- /dev/null +++ b/test/data/fd/form/FSCHEIC.content.txt @@ -0,0 +1,156 @@ +SCHEDULE EIC +(Form 1040A or 1040) +Department of the Treasury +Internal Revenue Service (99) +Earned Income Credit +Qualifying Child Information +a + +Complete and attach to Form 1040A or 1040 only if you have a qualifying child. +1040A +. . . . . . . . . . +1040 +EIC +` +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +43 +a + +. + +Name(s) shown on return +Your social security number +Before you begin: +• See the instructions for Form 1040A, lines 38a and 38b, or Form 1040, lines 64a and 64b, to make +sure that +(a) + you can take the EIC, and +(b) + you have a qualifying child. +• 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. +Otherwise, at the time we process your return, we may reduce or disallow your EIC. If the name or SSN on the child’s +social security card is not correct, call the Social Security Administration at 1-800-772-1213. +F +! +CAUTION + +Qualifying Child Information +Child 1 +Child 2 +Child 3 +1 Child's name +If you have more than three qualifying +children, you only have to list three to get +the maximum credit. +First name Last name +First name Last name +First name Last name +2 Child's SSN +The child must have an SSN as defined in +the instructions for Form 1040A, lines 38a +and 38b, or Form 1040, lines 64a and 64b, +unless the child was born and died in +2013. If your child was born and died in +2013 and did not have an SSN, enter +“Died” on this line and attach a copy of +the child’s birth certificate, death +certificate, or hospital medical records. +3 Child's year of birth +Year +If born after 1994 +and + the child was +younger than you (or your spouse, if +filing jointly), skip lines 4a and 4b; +go to line 5. +Year +If born after 1994 + and + the child was +younger than you (or your spouse, if +filing jointly), skip lines 4a and 4b; +go to line 5. +Year +If born after 1994 +and +the child was +younger than you (or your spouse, if +filing jointly), skip lines 4a and 4b; +go to line 5. +4 +a +Was the child under age 24 at the end of +2013, a student, and younger than you (or +your spouse, if filing jointly)? +Yes. +Go to +line 5. +No. +Go to line 4b. +Yes. +Go to +line 5. +No. +Go to line 4b. +Yes. +Go to +line 5. +No. +Go to line 4b. +b +Was the child permanently and totally +disabled during any part of 2013? +Yes. +Go to +line 5. +No. +The child is not a +qualifying child. +Yes. +Go to +line 5. +No. +The child is not a +qualifying child. +Yes. +Go to +line 5. +No. +The child is not a +qualifying child. +5 +Child's relationship to you +(for example, son, daughter, grandchild, +niece, nephew, foster child, etc.) +6 Number of months child lived +with you in the United States +during 2013 +• If the child lived with you for more than +half of 2013 but less than 7 months, +enter “7.” +• If the child was born or died in 2013 and +your home was the child’s home for more +than half the time he or she was alive +during 2013, enter “12.” +months +Do not enter more than 12 +months. +months +Do not enter more than 12 +months. +months +Do not enter more than 12 +months. +For Paperwork Reduction Act Notice, see your tax +return instructions. +Cat. No. 13339M +Schedule EIC (Form 1040A or 1040) 2013 + +Information about Schedule EIC (Form 1040A or 1040) and its instructions is at www.irs.gov/scheduleeic +• 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. +• 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. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHEIC.fields.json b/test/data/fd/form/FSCHEIC.fields.json new file mode 100755 index 00000000..63255d86 --- /dev/null +++ b/test/data/fd/form/FSCHEIC.fields.json @@ -0,0 +1 @@ +[{"id":"STU1RB","type":"radio","calc":false,"value":"STU1Y"},{"id":"STU1RB","type":"radio","calc":false,"value":"STU1N"},{"id":"STU2RB","type":"radio","calc":false,"value":"STU2Y"},{"id":"STU2RB","type":"radio","calc":false,"value":"STU2N"},{"id":"STU3RB","type":"radio","calc":false,"value":"STU3Y"},{"id":"STU3RB","type":"radio","calc":false,"value":"STU3N"},{"id":"BX161RB","type":"radio","calc":false,"value":"DIS1Y"},{"id":"BX161RB","type":"radio","calc":false,"value":"DIS1N"},{"id":"BX162RB","type":"radio","calc":false,"value":"DIS2Y"},{"id":"BX162RB","type":"radio","calc":false,"value":"DIS2N"},{"id":"BX163RB","type":"radio","calc":false,"value":"DIS3Y"},{"id":"BX163RB","type":"radio","calc":false,"value":"DIS3N"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A144_L1A_1_","type":"alpha","calc":false,"value":""},{"id":"A148_L1C_1_","type":"alpha","calc":false,"value":""},{"id":"A144_L1A_2_","type":"alpha","calc":false,"value":""},{"id":"A148_L1C_2_","type":"alpha","calc":false,"value":""},{"id":"A144_L1A_3_","type":"alpha","calc":false,"value":""},{"id":"A148_L1C_3_","type":"alpha","calc":false,"value":""},{"id":"A5_CHSSN_1_","type":"ssn","calc":false,"value":""},{"id":"A5_CHSSN_2_","type":"ssn","calc":false,"value":""},{"id":"A5_CHSSN_3_","type":"ssn","calc":false,"value":""},{"id":"A8_BIRTHYR_1_","type":"date","calc":false,"value":""},{"id":"A8_BIRTHYR_2_","type":"date","calc":false,"value":""},{"id":"A8_BIRTHYR_3_","type":"date","calc":false,"value":""},{"id":"A9_L5_1_","type":"alpha","calc":false,"value":""},{"id":"A9_L5_2_","type":"alpha","calc":false,"value":""},{"id":"A9_L5_3_","type":"alpha","calc":false,"value":""},{"id":"A11_L6_1_","type":"number","calc":false,"value":""},{"id":"A11_L6_2_","type":"alpha","calc":false,"value":""},{"id":"A11_L6_3_","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHEIC.json b/test/data/fd/form/FSCHEIC.json new file mode 100755 index 00000000..39be098e --- /dev/null +++ b/test/data/fd/form/FSCHEIC.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHF.content.txt b/test/data/fd/form/FSCHF.content.txt new file mode 100755 index 00000000..8fde02b5 --- /dev/null +++ b/test/data/fd/form/FSCHF.content.txt @@ -0,0 +1,376 @@ +SCHEDULE F +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Profit or Loss From Farming +a + +Attach to Form 1040, Form 1040NR, Form 1041, Form 1065, or Form 1065-B. +a + +. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +14 +Name of proprietor +Social security number (SSN) +A + Principal crop or activity +B Enter code from Part IV +a +C +Accounting method: +Cash +Accrual +D +Employer ID number (EIN), (see instr) +E +Yes +No +F +Did you make any payments in 2013 that would require you to file Form(s) 1099 (see instructions)? . . . . . . . . . +Yes +No +G +If “Yes,” did you or will you file required Forms 1099? . . . . . . . . . . . . . . . . . . . . . . +Yes +No +Part I +Farm Income, Cash Method. +Complete Parts I and II (Accrual method. Complete Parts II and III, and Part I, line 9.) +1a +Sales of livestock and other resale items (see instructions) +...... +1a +b +Cost or other basis of livestock or other items reported on line 1a +.... +1b +c +Subtract line 1b from line 1a +........................ +2 +Sales of livestock, produce, grains, and other products you raised +............ +2 +3a +Cooperative distributions (Form(s) 1099-PATR) . +3a +3b +Taxable amount +3b +4a +Agricultural program payments + (see instructions) +. +4a +4b +Taxable amount +4b +5a +Commodity Credit Corporation (CCC) loans reported under election +............ +5a +b +CCC loans forfeited +......... +5b +5c +Taxable amount +5c +6 +Crop insurance proceeds and federal crop disaster payments (see instructions) +a +6a +6b +Taxable amount +6b +c +If election to defer to 2014 is attached, check here +a +6d +Amount deferred from 2012 +6d +7 +Custom hire (machine work) income +..................... +7 +8 +8 +9 + +Gross income. +Add amounts in the right column (lines 1c, 2, 3b, 4b, 5a, 5c, 6b, 6d, 7, and 8). If you use the +accrual method, enter the amount from Part III, line 50 (see instructions) +.......... +a +9 +Part II +Farm Expenses, Cash and Accrual Method. +Do not include personal or living expenses (see instructions). +Amount received in 2013 +....... +Other income, including federal and state gasoline or fuel tax credit or refund + +(see instructions) +.... +1c +10 + +Car and truck expenses (see +instructions). Also attach +Form 4562 + +10 +11 +Chemicals +...... +11 +12 +Conservation expenses (see instructions) +12 +13 +Custom hire (machine work) . +13 +14 + +Depreciation and section 179 expense +(see instructions) See Form 4562 +14 +15 + +Employee benefit programs +other than on line 23 . . . +15 +16 +Feed +....... +16 +17 +Fertilizers and lime . . . +17 +18 +Freight and trucking . . . +18 +19 +Gasoline, fuel, and oil . . . +19 +20 +Insurance (other than health) +20 +21 +Interest: +a +Mortgage (paid to banks, etc.) +21a +b +Other +....... +21b +22 +Labor hired (less employment credits) +22 +23 +Pension and profit-sharing plans +23 +24 +Rent or lease (see instructions): +Vehicles, machinery, equipment +a +24a +b +Other (land, animals, etc.) . . +24b +25 +Repairs and maintenance . . +25 +26 +Seeds and plants +..... +26 +27 +Storage and warehousing . . +27 +28 +Supplies +....... +28 +29 +Taxes +........ +29 +30 +Utilities +........ +30 +31 +Veterinary, breeding, and medicine +31 +32 +Other expenses (specify): +a +32a +b +32b +c +32c +d +32d +e +32e +f +32f +33 Total expenses. +Add lines 10 through 32f. If line 32f is negative, see instructions +....... +a +33 +34 +Net farm profit or (loss). +Subtract line 33 from line 9 +................ +If a profit, stop here and see instructions for where to report. If a loss, complete lines 35 and 36. +34 +35 +Did you receive an applicable subsidy in 2013? (see instructions) +................. +Yes +No +36 +Check the box that describes your investment in this activity and see instructions for where to report your loss. +a +All investment is at risk. +b +Some investment is not at risk. +For Paperwork Reduction Act Notice, see the separate instructions. +Cat. No. 11346H +Schedule F (Form 1040) 2013 +If at risk, you must complete Form 6198 +Information about Schedule F and its separate instructions is at www.irs.gov/schedulef +Did you “materially participate” in the operation of this business during 2013? If “No,” see instructions for limit on passive losses +----------------Page (0) Break---------------- +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. +*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 +Schedule F (Form 1040) 2013 +Page +2 +Part III +Farm Income„Accrual Method +(see instructions). +37 +Sales of livestock, produce, grains, and other products (see instructions) . . . . . . . . . . . +37 +38a +Cooperative distributions (Form(s) 1099-PATR) . +38a +38b +Taxable amount +38b +39a +Agricultural program payments +...... +39a +39b +Taxable amount +39b +40 +Commodity Credit Corporation (CCC) loans: +a +CCC loans reported under election +...................... +40a +b +CCC loans forfeited +......... +40b +40c +Taxable amount +40c +41 +Crop insurance proceeds +........................ +41 +42 +Custom hire (machine work) income +..................... +42 +43 +Other income (see instructions) +....................... +43 +44 +Add amounts in the right column for lines 37 through 43 (lines 37, 38b, 39b, 40a, 40c, 41, 42, and 43) . . +44 +45 + +Inventory of livestock, produce, grains, and other products at beginning of +the year. Do not include sales reported on Form 4797 +....... +45 +46 + +Cost of livestock, produce, grains, and other products purchased during the +year +...................... +46 +47 +Add lines 45 and 46 +................. +47 +48 +Inventory of livestock, produce, grains, and other products at end of year . +48 +49 +Cost of livestock, produce, grains, and other products sold. Subtract line 48 from line 47* +..... +49 +50 Gross income. +Subtract line 49 from line 44. Enter the result here and on Part I, line 9 +..... +a +50 +Part IV +Principal Agricultural Activity Codes +F +! +CAUTION +Do not file Schedule F (Form 1040) to report the +following. +• Income from providing agricultural services such as +soil preparation, veterinary, farm labor, horticultural, or +management for a fee or on a contract basis. Instead file +Schedule C (Form 1040) or Schedule C-EZ (Form 1040). +• Income from breeding, raising, or caring for dogs, cats, or +other pet animals. Instead file Schedule C (Form 1040) or +Schedule C-EZ (Form 1040). +• Sales of livestock held for draft, breeding, sport, or dairy +purposes. Instead file Form 4797. +These codes for the Principal Agricultural Activity classify +farms by their primary activity to facilitate the administration of +the Internal Revenue Code. These six-digit codes are based on +the North American Industry Classification System (NAICS). +Select the code that best identifies your primary farming +activity and enter the six-digit number on line B. +Crop Production +111100 Oilseed and grain farming +111210 Vegetable and melon farming +111300 Fruit and tree nut farming +111400 Greenhouse, nursery, and floriculture production +111900 Other crop farming +Animal Production +112111 Beef cattle ranching and farming +112112 Cattle feedlots +112120 Dairy cattle and milk production +112210 Hog and pig farming +112300 Poultry and egg production +112400 Sheep and goat farming +112510 Aquaculture +112900 Other animal production +Forestry and Logging +113000 Forestry and logging (including forest nurseries and +timber tracts) +Schedule F (Form 1040) 2013 +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/FSCHF.fields.json b/test/data/fd/form/FSCHF.fields.json new file mode 100755 index 00000000..44fc794f --- /dev/null +++ b/test/data/fd/form/FSCHF.fields.json @@ -0,0 +1 @@ +[{"id":"A177RB","type":"radio","calc":false,"value":"C1"},{"id":"A177RB","type":"radio","calc":false,"value":"C2"},{"id":"ERB","type":"radio","calc":false,"value":"EY"},{"id":"ERB","type":"radio","calc":false,"value":"EN"},{"id":"FRB","type":"radio","calc":false,"value":"REQD1099Y"},{"id":"FRB","type":"radio","calc":false,"value":"REQ1099N"},{"id":"GRB","type":"radio","calc":false,"value":"FIL1099Y"},{"id":"GRB","type":"radio","calc":false,"value":"FIL1099N"},{"id":"L8CX","type":"box","calc":false,"value":""},{"id":"SUBSIDRB","type":"radio","calc":false,"value":"SUBSIDYY"},{"id":"SUBSIDRB","type":"radio","calc":false,"value":"SUBSIDYN"},{"id":"B37RB","type":"radio","calc":false,"value":"B37A"},{"id":"B37RB","type":"radio","calc":false,"value":"B37B"},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"A","type":"alpha","calc":false,"value":""},{"id":"B","type":"mask","calc":false,"value":""},{"id":"D","type":"mask","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"SALESRSD","type":"number","calc":false,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5B","type":"number","calc":false,"value":""},{"id":"L6A","type":"number","calc":false,"value":""},{"id":"L6B","type":"number","calc":false,"value":""},{"id":"L7A","type":"number","calc":false,"value":""},{"id":"L7B","type":"number","calc":false,"value":""},{"id":"L7C","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8D","type":"number","calc":false,"value":""},{"id":"HIRENR","type":"number","calc":false,"value":""},{"id":"OTHERNR","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L26A3","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L26B","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"Add_F4562F","type":"link","calc":true,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"OTHEXP_L34T_1_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L34AA_1_","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"OTHEXP_L34T_2_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L34AA_2_","type":"number","calc":false,"value":""},{"id":"OTHEXP_L34T_3_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L34AA_3_","type":"number","calc":false,"value":""},{"id":"L23A","type":"number","calc":false,"value":""},{"id":"OTHEXP_L34T_4_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L34AA_4_","type":"number","calc":false,"value":""},{"id":"L23B","type":"number","calc":false,"value":""},{"id":"OTHEXP_L34T_5_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L34AA_5_","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"OTHEXP_L34T_6_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_L34AA_6_","type":"number","calc":false,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L36","type":"number","calc":true,"value":""},{"id":"Add_F6198","type":"link","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"L39A","type":"number","calc":false,"value":""},{"id":"L39B","type":"number","calc":false,"value":""},{"id":"L40A","type":"number","calc":false,"value":""},{"id":"L40B","type":"number","calc":false,"value":""},{"id":"L41A","type":"number","calc":false,"value":""},{"id":"L41B","type":"number","calc":false,"value":""},{"id":"L41C","type":"number","calc":false,"value":""},{"id":"L42","type":"number","calc":false,"value":""},{"id":"L43","type":"number","calc":false,"value":""},{"id":"OTHINCNR","type":"number","calc":false,"value":""},{"id":"L45","type":"number","calc":true,"value":""},{"id":"L46","type":"number","calc":false,"value":""},{"id":"L47","type":"number","calc":false,"value":""},{"id":"L48","type":"number","calc":true,"value":""},{"id":"L49","type":"number","calc":false,"value":""},{"id":"L50","type":"number","calc":true,"value":""},{"id":"L51","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHF.json b/test/data/fd/form/FSCHF.json new file mode 100755 index 00000000..f2357dff --- /dev/null +++ b/test/data/fd/form/FSCHF.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHHS.content.txt b/test/data/fd/form/FSCHHS.content.txt new file mode 100755 index 00000000..10e2aa56 --- /dev/null +++ b/test/data/fd/form/FSCHHS.content.txt @@ -0,0 +1,291 @@ +SCHEDULE H +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Household Employment Taxes +(For Social Security, Medicare, Withheld Income, and Federal Unemployment (FUTA) Taxes) +a + +Attach to Form 1040, 1040NR, 1040-SS, or 1041. + +a + +Information about Schedule H and its separate instructions is at +www.irs.gov/form1040. +OMB No. 1545-1971 +20 +13 +Attachment +Sequence No. +44 + +Name of employer +Social security number +Employer identification number +Calendar year taxpayers having no household employees in 2013 do not have to complete this form for 2013. +A +Did you pay +any one + household employee cash wages of $1,800 or more in 2013? (If any household employee was your +spouse, your child under age 21, your parent, or anyone under age 18, see the line A instructions before you answer this +question.) +Yes. + Skip lines B and C and go to line 1. +No. +Go to line B. +B +Did you withhold federal income tax during 2013 for any household employee? +Yes. + Skip line C and go to line 7. +No. +Go to line C. +C +Did you pay +total + cash wages of $1,000 or more in +any + calendar +quarter + of 2012 or 2013 to +all + household employees? +( +Do not +count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) +No. Stop. +Do not file this schedule. +Yes. +Skip lines 1-9 and go to line 10. +Part I +Social Security, Medicare, and Federal Income Taxes +1 +Total cash wages subject to social security tax +........ +1 +2 +Social security tax. Multiply line 1 by 12.4% (.124) +................ +2 +3 +Total cash wages subject to Medicare tax +.......... +3 +4 +Medicare tax. Multiply line 3 by 2.9% (.029) +.................. +4 +5 +Total cash wages subject to Additional Medicare Tax withholding . . +5 +6 +Additional Medicare Tax withholding. Multiply line 5 by 0.9% (.009) +.......... +6 +7 +Federal income tax withheld, if any +..................... +7 +8 Total social security, Medicare, and federal income taxes. +Add lines 2, 4, 6, and 7 +.... +8 +9 +Did you pay +total + cash wages of $1,000 or more in +any + calendar +quarter + of 2012 or 2013 to +all + household employees? +( +Do not + count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) +No. Stop. +Include the amount from line 8 above on Form 1040, line 59a. If you are not + +required to file Form 1040, see the +line 9 instructions. +Yes. + Go to line 10. +For Privacy Act and Paperwork Reduction Act Notice, see the instructions. +Cat. No. 12187K +Schedule H (Form 1040) 2013 +----------------Page (0) Break---------------- +Schedule H (Form 1040) 2013 +Page + 2 +Part II +Federal Unemployment (FUTA) Tax +Yes +No +10 +Did you pay unemployment contributions to only one state? (If you paid contributions to a credit reduction +state, see instructions and check “No.”) +....................... +10 +11 +Did you pay all state unemployment contributions for 2013 by April 15, 2014? Fiscal year filers see instructions +11 +12 +Were all wages that are taxable for FUTA tax also taxable for your state’s unemployment tax? +..... +12 +Next: +If you checked the +“Yes” + box on +all + the lines above, complete Section A. + +If you checked the +“No” + box on +any + of the lines above, skip Section A and complete Section B. +Section A +13 +Name of the state where you paid unemployment contributions +a +14 +Contributions paid to your state unemployment fund +...... +14 +15 +Total cash wages subject to FUTA tax +.................... +15 +16 FUTA tax. +Multiply line 15 by .6% (.006). Enter the result here, skip Section B, and go to line 25 +16 +Section B +17 +Complete all columns below that apply (if you need more space, see instructions): +(a) + +Name of state +(b) +Taxable wages (as + +defined in state act) +(c) +State experience rate + +period +From +To +(d) +State +experience +rate +(e) +Multiply col. (b) + +by .054 +(f) +Multiply col. (b) + +by col. (d) +(g) +Subtract col. (f) + +from col. (e). If + +zero or less, + +enter -0-. +(h) +Contributions + +paid to state + +unemployment + +fund + +18 +Totals +............................ +18 +19 +Add columns (g) and (h) of line 18 +............ +19 +20 +Total cash wages subject to FUTA tax (see the line 15 instructions) +.......... +20 +21 +Multiply line 20 by 6.0% (.060) +...................... +21 +22 +Multiply line 20 by 5.4% (.054) +............. +22 +23 +Enter the +smaller + of line 19 or line 22 +.................... +(Employers in a credit reduction state must use the worksheet on page H-7 and check here) . +23 +24 FUTA tax. +Subtract line 23 from line 21. Enter the result here and go to line 25 +...... +24 +Part III +Total Household Employment Taxes +25 +Enter the amount from line 8. If you checked the “Yes” box on line C of page 1, enter -0- . . . +25 +26 +Add line 16 (or line 24) and line 25 +..................... +26 +27 +Are you required to file Form 1040? +Yes. Stop. +Include the amount from line 26 above on Form 1040, line 59a. +Do not + complete Part IV below. +No. + You may have to complete Part IV. See instructions for details. +Part IV +Address and Signature— +Complete this part + only +if required. See the line 27 instructions. +Address (number and street) or P.O. box if mail is not delivered to street address +Apt., room, or suite no. +City, town or post office, state, and ZIP code +Under penalties of perjury, I declare that I have examined this schedule, including accompanying statements, and to the best of + my knowledge and belief, it is true, +correct, and complete. No part of any payment made to a state unemployment fund claimed as a credit was, or is to be, deducted +from the payments to employees. +Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. +F +Employer’s signature +F +Date +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer's signature +Date +Check if +self-employed +PTIN +Firm’s name +a +Firm's address +a +Firm's EIN +a +Phone no. +Schedule H (Form 1040) 2013 +mm/dd/yy +mm/dd/yy +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/FSCHHS.fields.json b/test/data/fd/form/FSCHHS.fields.json new file mode 100755 index 00000000..3c91cffc --- /dev/null +++ b/test/data/fd/form/FSCHHS.fields.json @@ -0,0 +1 @@ +[{"id":"BXARB","type":"radio","calc":false,"value":"BXA1"},{"id":"BXARB","type":"radio","calc":false,"value":"BXA2"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXB1"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXB2"},{"id":"BXCRB","type":"radio","calc":false,"value":"BXC1"},{"id":"BXCRB","type":"radio","calc":false,"value":"BXC2"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX91"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX92"},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5AMED","type":"number","calc":false,"value":""},{"id":"L6AMED","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"B10RB","type":"radio","calc":false,"value":"B10Y"},{"id":"B10RB","type":"radio","calc":false,"value":"B10N"},{"id":"B11RB","type":"radio","calc":false,"value":"B11Y"},{"id":"B11RB","type":"radio","calc":false,"value":"B11N"},{"id":"B12RB","type":"radio","calc":false,"value":"B12Y"},{"id":"B12RB","type":"radio","calc":false,"value":"B12N"},{"id":"EMPLRX","type":"box","calc":false,"value":""},{"id":"BX28RB","type":"radio","calc":false,"value":"BX28A"},{"id":"BX28RB","type":"radio","calc":false,"value":"BX28B"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L13","type":"alpha","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"A30_STNAME_1_","type":"alpha","calc":false,"value":""},{"id":"A30_TAXWAGES_1_","type":"number","calc":false,"value":""},{"id":"A30_RATEFROM_1_","type":"date","calc":false,"value":""},{"id":"A30_RATETO_1_","type":"date","calc":false,"value":""},{"id":"A31_STEXPRT_1_","type":"mask","calc":false,"value":""},{"id":"A31_COLE_1_","type":"number","calc":true,"value":""},{"id":"A31_COLF_1_","type":"number","calc":true,"value":""},{"id":"A31_COLG_1_","type":"number","calc":true,"value":""},{"id":"A31_UNEMP_1_","type":"number","calc":false,"value":""},{"id":"A30_STNAME_2_","type":"alpha","calc":false,"value":""},{"id":"A30_TAXWAGES_2_","type":"number","calc":false,"value":""},{"id":"A30_RATEFROM_2_","type":"date","calc":false,"value":""},{"id":"A30_RATETO_2_","type":"date","calc":false,"value":""},{"id":"A31_STEXPRT_2_","type":"mask","calc":false,"value":""},{"id":"A31_COLE_2_","type":"number","calc":true,"value":""},{"id":"A31_COLF_2_","type":"number","calc":true,"value":""},{"id":"A31_COLG_2_","type":"number","calc":true,"value":""},{"id":"A31_UNEMP_2_","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":true,"value":""},{"id":"L19B","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"ADDRESS","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FNAME","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHHS.json b/test/data/fd/form/FSCHHS.json new file mode 100755 index 00000000..565db4b5 --- /dev/null +++ b/test/data/fd/form/FSCHHS.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHHT.content.txt b/test/data/fd/form/FSCHHT.content.txt new file mode 100755 index 00000000..10e2aa56 --- /dev/null +++ b/test/data/fd/form/FSCHHT.content.txt @@ -0,0 +1,291 @@ +SCHEDULE H +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Household Employment Taxes +(For Social Security, Medicare, Withheld Income, and Federal Unemployment (FUTA) Taxes) +a + +Attach to Form 1040, 1040NR, 1040-SS, or 1041. + +a + +Information about Schedule H and its separate instructions is at +www.irs.gov/form1040. +OMB No. 1545-1971 +20 +13 +Attachment +Sequence No. +44 + +Name of employer +Social security number +Employer identification number +Calendar year taxpayers having no household employees in 2013 do not have to complete this form for 2013. +A +Did you pay +any one + household employee cash wages of $1,800 or more in 2013? (If any household employee was your +spouse, your child under age 21, your parent, or anyone under age 18, see the line A instructions before you answer this +question.) +Yes. + Skip lines B and C and go to line 1. +No. +Go to line B. +B +Did you withhold federal income tax during 2013 for any household employee? +Yes. + Skip line C and go to line 7. +No. +Go to line C. +C +Did you pay +total + cash wages of $1,000 or more in +any + calendar +quarter + of 2012 or 2013 to +all + household employees? +( +Do not +count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) +No. Stop. +Do not file this schedule. +Yes. +Skip lines 1-9 and go to line 10. +Part I +Social Security, Medicare, and Federal Income Taxes +1 +Total cash wages subject to social security tax +........ +1 +2 +Social security tax. Multiply line 1 by 12.4% (.124) +................ +2 +3 +Total cash wages subject to Medicare tax +.......... +3 +4 +Medicare tax. Multiply line 3 by 2.9% (.029) +.................. +4 +5 +Total cash wages subject to Additional Medicare Tax withholding . . +5 +6 +Additional Medicare Tax withholding. Multiply line 5 by 0.9% (.009) +.......... +6 +7 +Federal income tax withheld, if any +..................... +7 +8 Total social security, Medicare, and federal income taxes. +Add lines 2, 4, 6, and 7 +.... +8 +9 +Did you pay +total + cash wages of $1,000 or more in +any + calendar +quarter + of 2012 or 2013 to +all + household employees? +( +Do not + count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) +No. Stop. +Include the amount from line 8 above on Form 1040, line 59a. If you are not + +required to file Form 1040, see the +line 9 instructions. +Yes. + Go to line 10. +For Privacy Act and Paperwork Reduction Act Notice, see the instructions. +Cat. No. 12187K +Schedule H (Form 1040) 2013 +----------------Page (0) Break---------------- +Schedule H (Form 1040) 2013 +Page + 2 +Part II +Federal Unemployment (FUTA) Tax +Yes +No +10 +Did you pay unemployment contributions to only one state? (If you paid contributions to a credit reduction +state, see instructions and check “No.”) +....................... +10 +11 +Did you pay all state unemployment contributions for 2013 by April 15, 2014? Fiscal year filers see instructions +11 +12 +Were all wages that are taxable for FUTA tax also taxable for your state’s unemployment tax? +..... +12 +Next: +If you checked the +“Yes” + box on +all + the lines above, complete Section A. + +If you checked the +“No” + box on +any + of the lines above, skip Section A and complete Section B. +Section A +13 +Name of the state where you paid unemployment contributions +a +14 +Contributions paid to your state unemployment fund +...... +14 +15 +Total cash wages subject to FUTA tax +.................... +15 +16 FUTA tax. +Multiply line 15 by .6% (.006). Enter the result here, skip Section B, and go to line 25 +16 +Section B +17 +Complete all columns below that apply (if you need more space, see instructions): +(a) + +Name of state +(b) +Taxable wages (as + +defined in state act) +(c) +State experience rate + +period +From +To +(d) +State +experience +rate +(e) +Multiply col. (b) + +by .054 +(f) +Multiply col. (b) + +by col. (d) +(g) +Subtract col. (f) + +from col. (e). If + +zero or less, + +enter -0-. +(h) +Contributions + +paid to state + +unemployment + +fund + +18 +Totals +............................ +18 +19 +Add columns (g) and (h) of line 18 +............ +19 +20 +Total cash wages subject to FUTA tax (see the line 15 instructions) +.......... +20 +21 +Multiply line 20 by 6.0% (.060) +...................... +21 +22 +Multiply line 20 by 5.4% (.054) +............. +22 +23 +Enter the +smaller + of line 19 or line 22 +.................... +(Employers in a credit reduction state must use the worksheet on page H-7 and check here) . +23 +24 FUTA tax. +Subtract line 23 from line 21. Enter the result here and go to line 25 +...... +24 +Part III +Total Household Employment Taxes +25 +Enter the amount from line 8. If you checked the “Yes” box on line C of page 1, enter -0- . . . +25 +26 +Add line 16 (or line 24) and line 25 +..................... +26 +27 +Are you required to file Form 1040? +Yes. Stop. +Include the amount from line 26 above on Form 1040, line 59a. +Do not + complete Part IV below. +No. + You may have to complete Part IV. See instructions for details. +Part IV +Address and Signature— +Complete this part + only +if required. See the line 27 instructions. +Address (number and street) or P.O. box if mail is not delivered to street address +Apt., room, or suite no. +City, town or post office, state, and ZIP code +Under penalties of perjury, I declare that I have examined this schedule, including accompanying statements, and to the best of + my knowledge and belief, it is true, +correct, and complete. No part of any payment made to a state unemployment fund claimed as a credit was, or is to be, deducted +from the payments to employees. +Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. +F +Employer’s signature +F +Date +Paid +Preparer +Use Only +Print/Type preparer’s name +Preparer's signature +Date +Check if +self-employed +PTIN +Firm’s name +a +Firm's address +a +Firm's EIN +a +Phone no. +Schedule H (Form 1040) 2013 +mm/dd/yy +mm/dd/yy +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/FSCHHT.fields.json b/test/data/fd/form/FSCHHT.fields.json new file mode 100755 index 00000000..3c91cffc --- /dev/null +++ b/test/data/fd/form/FSCHHT.fields.json @@ -0,0 +1 @@ +[{"id":"BXARB","type":"radio","calc":false,"value":"BXA1"},{"id":"BXARB","type":"radio","calc":false,"value":"BXA2"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXB1"},{"id":"BXBRB","type":"radio","calc":false,"value":"BXB2"},{"id":"BXCRB","type":"radio","calc":false,"value":"BXC1"},{"id":"BXCRB","type":"radio","calc":false,"value":"BXC2"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX91"},{"id":"BX9RB","type":"radio","calc":false,"value":"BX92"},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5AMED","type":"number","calc":false,"value":""},{"id":"L6AMED","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"B10RB","type":"radio","calc":false,"value":"B10Y"},{"id":"B10RB","type":"radio","calc":false,"value":"B10N"},{"id":"B11RB","type":"radio","calc":false,"value":"B11Y"},{"id":"B11RB","type":"radio","calc":false,"value":"B11N"},{"id":"B12RB","type":"radio","calc":false,"value":"B12Y"},{"id":"B12RB","type":"radio","calc":false,"value":"B12N"},{"id":"EMPLRX","type":"box","calc":false,"value":""},{"id":"BX28RB","type":"radio","calc":false,"value":"BX28A"},{"id":"BX28RB","type":"radio","calc":false,"value":"BX28B"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L13","type":"alpha","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"A30_STNAME_1_","type":"alpha","calc":false,"value":""},{"id":"A30_TAXWAGES_1_","type":"number","calc":false,"value":""},{"id":"A30_RATEFROM_1_","type":"date","calc":false,"value":""},{"id":"A30_RATETO_1_","type":"date","calc":false,"value":""},{"id":"A31_STEXPRT_1_","type":"mask","calc":false,"value":""},{"id":"A31_COLE_1_","type":"number","calc":true,"value":""},{"id":"A31_COLF_1_","type":"number","calc":true,"value":""},{"id":"A31_COLG_1_","type":"number","calc":true,"value":""},{"id":"A31_UNEMP_1_","type":"number","calc":false,"value":""},{"id":"A30_STNAME_2_","type":"alpha","calc":false,"value":""},{"id":"A30_TAXWAGES_2_","type":"number","calc":false,"value":""},{"id":"A30_RATEFROM_2_","type":"date","calc":false,"value":""},{"id":"A30_RATETO_2_","type":"date","calc":false,"value":""},{"id":"A31_STEXPRT_2_","type":"mask","calc":false,"value":""},{"id":"A31_COLE_2_","type":"number","calc":true,"value":""},{"id":"A31_COLF_2_","type":"number","calc":true,"value":""},{"id":"A31_COLG_2_","type":"number","calc":true,"value":""},{"id":"A31_UNEMP_2_","type":"number","calc":false,"value":""},{"id":"L19A","type":"number","calc":true,"value":""},{"id":"L19B","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"ADDRESS","type":"alpha","calc":false,"value":""},{"id":"APT","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"FNAME","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHHT.json b/test/data/fd/form/FSCHHT.json new file mode 100755 index 00000000..8d699938 --- /dev/null +++ b/test/data/fd/form/FSCHHT.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHJ.content.txt b/test/data/fd/form/FSCHJ.content.txt new file mode 100755 index 00000000..46092555 --- /dev/null +++ b/test/data/fd/form/FSCHJ.content.txt @@ -0,0 +1,205 @@ +SCHEDULE J +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Income Averaging for +Farmers and Fishermen +a + +Attach to Form 1040 or Form 1040NR. + + +a + +Information about Schedule J and its separate instructions is at +www.irs.gov/schedulej. +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +20 +Name(s) shown on return +Social security number (SSN) +1 +Enter the taxable income from your +2013 + Form 1040, line 43, or Form 1040NR, line 41 . . . +1 +2a +Enter your +elected farm income +(see instructions). +Do not +enter more than the amount on line 1 +2a +Capital gain included on line 2a: +b + +Excess, if any, of net long-term capital gain over net short-term +capital loss +................. +2b +c +Unrecaptured section 1250 gain +.......... +2c +3 +Subtract line 2a from line 1 +....................... +3 +4 +Figure the tax on the amount on line 3 using the +2013 + tax rates (see instructions) +..... +4 +5 +If you used Schedule J to figure your tax for: +• 2012, enter the amount from your 2012 Schedule J, line 11. +• +2011 but not 2012, enter the amount from your 2011 Schedule J, line 15. + +• 2010 but not 2011 or 2012, enter the amount from your 2010 +Schedule J, line 3. +Otherwise, enter the taxable income from your +2010 + 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. +} +5 +6 +Divide the amount on +line 2a +by 3.0 +......... +6 +7 +Combine lines 5 and 6. If zero or less, enter -0- +..... +7 +8 +Figure the tax on the amount on line 7 using the +2010 +tax rates (see instructions) +..... +8 +9 +If you used Schedule J to figure your tax for: +• 2012, enter the amount from your 2012 Schedule J, line 15. +• +2011 but not 2012, enter the amount from your 2011 Schedule J, line 3. +Otherwise, enter the taxable income from your +2011 + 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. +} +9 +10 +Enter the amount from line 6 +........... +10 +11 +Combine lines 9 and 10. If less than zero, enter as a negative amount +11 +12 +Figure the tax on the amount on line 11 using the +2011 +tax rates (see instructions) +..... +12 +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 . . +13 +14 +Enter the amount from line 6 +........... +14 +15 +Combine lines 13 and 14. If less than zero, enter as a negative amount +15 +16 +Figure the tax on the amount on line 15 using the +2012 +tax rates (see instructions) +..... +16 +17 +Add lines 4, 8, 12, and 16 +....................... +17 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 25513Y +Schedule J (Form 1040) 2013 +----------------Page (0) Break---------------- +Schedule J (Form 1040) 2013 +Page +2 +18 +Amount from line 17 +.......................... +18 +19 +If you used Schedule J to figure your tax for: +• 2012, enter the amount from your 2012 Schedule J, line 12. +• 2011 but not 2012, enter the amount from your 2011 Schedule J, +line 16. +• 2010 but not 2011 or 2012, enter the amount from your 2010 +Schedule J, line 4. +Otherwise, enter the tax from your +2010 +Form 1040, line 44;* +Form 1040A, line 28;* Form 1040EZ, line 11; Form 1040NR, line +42;* or Form 1040NR-EZ, line 15. +} +19 +20 +If you used Schedule J to figure your tax for: +• 2012, enter the amount from your 2012 Schedule J, line 16. +• 2011 but not 2012, enter the amount from your 2011 +Schedule J, line 4. +Otherwise, enter the tax from your +2011 +Form 1040, line 44;* +Form 1040A, line 28;* Form 1040EZ, line 10; Form 1040NR, line +42;* or Form 1040NR-EZ, line 15. +} +20 +21 + + + +If you used Schedule J to figure your tax for 2012, enter the amount +from your 2012 Schedule J, line 4. Otherwise, enter the tax from +your +2012 +Form 1040, line 44;* Form 1040A, line 28;* Form 1040EZ, +line 10; Form 1040NR, line 42;* or Form 1040NR-EZ, line 15 . . +21 +*Only +include tax reported on this line that is imposed by section 1 of the Internal Revenue Code (see +instructions). +Do not +include alternative minimum tax from Form 1040A. +22 +Add lines 19 through 21 +........................ +22 +23 +Tax. +Subtract line 22 from line 18. Also include this amount on Form 1040, line 44; or Form 1040NR, line 42 +23 +Caution. +Your tax may be less if you figure it using the 2013 Tax Table, Tax Computation Worksheet, +Qualified Dividends and Capital Gain Tax Worksheet, or Schedule D Tax Worksheet. Attach Schedule J +only if you are using it to figure your tax. +Schedule J (Form 1040) 2013 +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/FSCHJ.fields.json b/test/data/fd/form/FSCHJ.fields.json new file mode 100755 index 00000000..4f45e0f3 --- /dev/null +++ b/test/data/fd/form/FSCHJ.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L2BX","type":"number","calc":false,"value":""},{"id":"L2CX","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"N18","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":true,"value":""},{"id":"L22","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHJ.json b/test/data/fd/form/FSCHJ.json new file mode 100755 index 00000000..876ebe8e --- /dev/null +++ b/test/data/fd/form/FSCHJ.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHR.content.txt b/test/data/fd/form/FSCHR.content.txt new file mode 100755 index 00000000..215fc383 --- /dev/null +++ b/test/data/fd/form/FSCHR.content.txt @@ -0,0 +1,278 @@ +Schedule R +(Form 1040A +or 1040) +Department of the Treasury +Internal Revenue Service (99) +Credit for the Elderly or the Disabled +a + +Complete and attach to Form 1040A or 1040. + +a + Information about Schedule R and its separate instructions is at + +www.irs.gov/scheduler. +1040A +. . . . . . . . . . +1040 +R +` +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +16 + +Name(s) shown on Form 1040A or 1040 +Your social security number +You may be able to take this credit and reduce your tax if by the end of 2013: +• You were age 65 or older +or + + +• You were under age 65, you retired on +permanent and total +disability, and +you received taxable disability income. +But you must also meet other tests. See instructions. +TIP +In most cases, the IRS can figure the credit for you. See instructions. +Part I +Check the Box for Your Filing Status and Age +If your filing status is: +And by the end of 2013: +Check only one box: +Single, +Head of household, or +Qualifying widow(er) +1 +You were 65 or older +.................... +1 +2 +You were under 65 and you retired on permanent and total disability . . +2 +Married filing +jointly +3 +Both spouses were 65 or older +................. +3 +Both spouses were under 65, but only one spouse retired on permanent and +total disability +....................... +5 +Both spouses were under 65, and both retired on permanent and total +disability +......................... +5 +6 +One spouse was 65 or older, and the other spouse was under 65 and retired +on permanent and total disability +................ +6 +7 +One spouse was 65 or older, and the other spouse was under 65 and +not +retired on permanent and total disability +............. +7 +Married filing +separately +8 +You were 65 or older and you lived apart from your spouse for all of 2013 . +8 +9 +You were under 65, you retired on permanent and total disability, and you +lived apart from your spouse for all of 2013 +............ +9 +Did you check +box 1, 3, 7, or +8? +Yes +a +Skip Part II and complete Part III on the back. +No +a +Complete Parts II and III. +Part II +Statement of Permanent and Total Disability + +(Complete +only +if you checked box 2, 4, 5, 6, or 9 above.) +If: +1 +You filed a physician’s statement for this disability for 1983 or an earlier year, or you filed or got a +statement for tax years after 1983 and your physician signed line B on the statement, +and +2 +Due to your continued disabled condition, you were unable to engage in any substantial gainful activity +in 2013, check this box +............................. +a +• If you checked this box, you do not have to get another statement for 2013. +• If you +did not +check this box, have your physician complete the statement in the instructions. You +must + +keep the statement for your records. +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11359K +Schedule R (Form 1040A or 1040) 2013 +3 +4 +4 +----------------Page (0) Break---------------- +Schedule R (Form 1040A or 1040) 2013 +Page +2 +Part III +Figure Your Credit +10 If you checked (in Part I): Enter: +Box 1, 2, 4, or 7 +............ +$5,000 +Box 3, 5, or 6 +............. +$7,500 +Box 8 or 9 +.............. +$3,750 +} +.......... +10 +Did you check +box 2, 4, 5, 6, +or 9 in Part I? +Yes +a +You +must + complete line 11. +No +a +Enter the amount from line 10 +on line 12 and go to line 13. +11 If you checked (in Part I): +• Box 6, add $5,000 to the taxable disability income of the + spouse who was under age 65. Enter the total. +• Box 2, 4, or 9, enter your taxable disability income. +• Box 5, add your taxable disability income to your spouse’s + taxable disability income. Enter the total. +} +....... +11 +TIP +For more details on what to include on line 11, see +Figure Your Credit + in the instructions. +12 + +If you completed line 11, enter the +smaller +of line 10 or line 11. +All others, +enter the +amount from line 10 +......................... +12 +13 + +Enter the following pensions, annuities, or disability income that +you (and your spouse if filing jointly) received in 2013. +a + + +Nontaxable part of social security benefits and nontaxable part +of railroad retirement benefits treated as social security (see +instructions) +.................... +13a +b + + +Nontaxable veterans’ pensions and any other pension, annuity, +or disability benefit that is excluded from income under any +other provision of law (see instructions) +.......... +13b +c + + + +Add lines 13a and 13b. (Even though these income items are +not taxable, they +must + be included here to figure your credit.) If +you did not receive any of the types of nontaxable income listed +on line 13a or 13b, enter -0- on line 13c +......... +13c +14 + +Enter the amount from Form 1040A, line +22, or Form 1040, line 38 +..... +14 +15 If you checked (in Part I): Enter: +Box 1 or 2 +...... +$7,500 +Box 3, 4, 5, 6, or 7 . . . $10,000 +Box 8 or 9 +...... +$5,000 +} +15 +16 + +Subtract line 15 from line 14. If zero or +less, enter -0- +......... +16 +17 +Enter one-half of line 16 +............... +17 +18 +Add lines 13c and 17 +......................... +18 +19 + +Subtract line 18 from line 12. If zero or less, +stop; +you +cannot +take the credit. Otherwise, +go to line 20 +............................ +19 +20 +Multiply line 19 by 15% (.15) +....................... +20 +21 +Tax liability limit. Enter the amount from the Credit Limit Worksheet in the instructions . +21 +22 + + +Credit for the elderly or the disabled. +Enter the +smaller +of line 20 or line 21. Also enter +this amount on Form 1040A, line 30, or include on Form 1040, line 53 (check box + and +enter “Sch R” on the line next to that box) +................. +22 +Schedule R (Form 1040A or 1040) 2013 + c +this amount on Form 1040A, line 30, or include on Form 1040, line 53 (check box +this amount on Form 1040A, line 30, or include on Form 1040, line 53 (check box +----------------Page (1) Break---------------- diff --git a/test/data/fd/form/FSCHR.fields.json b/test/data/fd/form/FSCHR.fields.json new file mode 100755 index 00000000..089822d4 --- /dev/null +++ b/test/data/fd/form/FSCHR.fields.json @@ -0,0 +1 @@ +[{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"FSRB","type":"radio","calc":false,"value":"FS6"},{"id":"FSRB","type":"radio","calc":false,"value":"FS7"},{"id":"FSRB","type":"radio","calc":false,"value":"FS8"},{"id":"FSRB","type":"radio","calc":false,"value":"FS9"},{"id":"STX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13A","type":"number","calc":false,"value":""},{"id":"L13B","type":"number","calc":false,"value":""},{"id":"L13C","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L21","type":"alpha","calc":true,"value":""},{"id":"LIABLMT","type":"alpha","calc":true,"value":""},{"id":"CREDIT","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHR.json b/test/data/fd/form/FSCHR.json new file mode 100755 index 00000000..d66f0059 --- /dev/null +++ b/test/data/fd/form/FSCHR.json @@ -0,0 +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 diff --git a/test/data/fd/form/FSCHSELS.content.txt b/test/data/fd/form/FSCHSELS.content.txt new file mode 100755 index 00000000..2abcb02f --- /dev/null +++ b/test/data/fd/form/FSCHSELS.content.txt @@ -0,0 +1,244 @@ +Schedule SE (Form 1040) 2013 +Attachment Sequence No. +17 +Page +2 +Name of person with + self-employment + income (as shown on Form 1040) +Social security number of person +with +self-employment + income +a +Section B, Long Schedule SE +Part I +Self-Employment Tax +Note. +If your only income subject to self-employment tax is +church employee income, +see instructions. Also see instructions for the +definition of church employee income. +A +If you are a minister, member of a religious order, or Christian Science practitioner +and +you filed Form 4361, but you +had $400 or more of +other +net earnings from self-employment, check here and continue with Part I +...... +a +1a +Net farm profit or (loss) from Schedule F, line 34, and farm partnerships, Schedule K-1 (Form 1065), +box 14, code A. +Note. +Skip lines 1a and 1b if you use the farm optional method (see instructions) +1a +b +If you received social security retirement or disability benefits, enter the amount of Conservation Reserve +Program payments included on Schedule F, line 4b, or listed on Schedule K-1 (Form 1065), box 20, code Z +1b +( +) +2 +Net profit or (loss) from Schedule C, line 31; Schedule C-EZ, line 3; Schedule K-1 (Form 1065), +box 14, code A (other than farming); and Schedule K-1 (Form 1065-B), box 9, code J1. +Ministers and members of religious orders, see instructions for types of income to report on +this line. See instructions for other income to report. +Note. +Skip this line if you use the nonfarm +optional method (see instructions) +.................... +2 +3 +Combine lines 1a, 1b, and 2 +...................... +3 +4 +a +If line 3 is more than zero, multiply line 3 by 92.35% (.9235). Otherwise, enter amount from line 3 +4a +Note. + If line 4a is less than $400 due to Conservation Reserve Program payments on line 1b, see instructions. +b +If you elect one or both of the optional methods, enter the total of lines 15 and 17 here . . +4b +c +Combine lines 4a and 4b. If less than $400, +stop +; you do not owe self-employment tax. +Exception. +If less than $400 and you had +church employee income, +enter -0- and continue +a +4c +5 +a +Enter your +church employee income + from Form W-2. See +instructions for definition of church employee income . . . +5a +b +Multiply line 5a by 92.35% (.9235). If less than $100, enter -0- +.......... +5b +6 +Add lines 4c and 5b +........................ +6 +7 +Maximum amount of combined wages and self-employment earnings subject to social security +tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax for 2013 +...... +7 +8 +a +Total social security wages and tips (total of boxes 3 and 7 on +Form(s) W-2) and railroad retirement (tier 1) compensation. +If $113,700 or more, skip lines 8b through 10, and go to line 11 +8a +b +Unreported tips subject to social security tax (from Form 4137, line 10) +8b +c +Wages subject to social security tax (from Form 8919, line 10) +8c +d +Add lines 8a, 8b, and 8c +....................... +8d +9 +Subtract line 8d from line 7. If zero or less, enter -0- here and on line 10 and go to line 11 . +a +9 +10 +Multiply the +smaller + of line 6 or line 9 by 12.4% (.124) +............. +10 +11 +Multiply line 6 by 2.9% (.029) +..................... +11 +12 +Self-employment tax. +Add lines 10 and 11. Enter here and on + Form 1040, line 56, +or + Form 1040NR, line 54 +12 +13 +Deduction for one-half of self-employment tax. +13 +Part II +Optional Methods To Figure Net Earnings +(see instructions) +Farm Optional Method. +You may use this method +only +if +(a) +your gross farm income +1 + +was not more +than $6,960, +or (b) +your net farm profits +2 + + were less than $5,024. +14 +Maximum income for optional methods +.................. +14 +15 +Enter the +smaller +of: two-thirds ( +) of gross farm income +1 + (not less than zero) +or + $4,640. Also +include this amount on line 4b above +................... +15 +Nonfarm Optional Method. +You may use this method + only +if +(a) +your net nonfarm profits +3 + +were less + +than $5,024 +and also less than 72.189% of your gross nonfarm income, +4 + +and (b) +you had net earnings + +from self-employment +of at least $400 in 2 of the prior 3 years. +Caution. + You may use this method no more than five times. +16 +Subtract line 15 from line 14 +...................... +16 +17 + +Enter the +smaller +of: two-thirds ( +2 +/ +3 +) of gross nonfarm income +4 + +(not less than zero) + +or + +the +amount on line 16. Also include this amount on line 4b above +........... +17 +1 + +From Sch. F, line 9, and Sch. K-1 (Form 1065), box 14, code B. +2 + +From Sch. F, line 34, and Sch. K-1 (Form 1065), box 14, code + +A—minus the +amount you would have entered on line 1b had you not + +used the optional +method. +3 + +From Sch. C, line 31; Sch. C-EZ, line 3; Sch. K-1 (Form 1065), box 14, + code +A; and Sch. K-1 (Form 1065-B), box 9, code J1. +4 +From Sch. C, line 7; Sch. C-EZ, line 1; Sch. K-1 (Form 1065), box 14, code +C; and Sch. K-1 (Form 1065-B), box 9, code J2. +Schedule SE (Form 1040) 2013 +Multiply line 12 by 50% (.50). Enter the result here and on +Form 1040, line 27, +or + Form 1040NR, line 27 +..... +4,640 00 +2 +/ +3 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHSELS.fields.json b/test/data/fd/form/FSCHSELS.fields.json new file mode 100755 index 00000000..13d631c8 --- /dev/null +++ b/test/data/fd/form/FSCHSELS.fields.json @@ -0,0 +1 @@ +[{"id":"AX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"CONSRES","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4A","type":"number","calc":true,"value":""},{"id":"L4B","type":"number","calc":true,"value":""},{"id":"L4C","type":"number","calc":true,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5B","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":true,"value":""},{"id":"L8919","type":"number","calc":true,"value":""},{"id":"L8C","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHSELS.json b/test/data/fd/form/FSCHSELS.json new file mode 100755 index 00000000..0b0c5ff5 --- /dev/null +++ b/test/data/fd/form/FSCHSELS.json @@ -0,0 +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":3,"w":1.5,"l":17.427},{"oc":"#221f1f","x":23.47,"y":3,"w":1.5,"l":70.624},{"oc":"#221f1f","x":94.007,"y":3,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.145,"y":4.5,"w":1.125,"l":92.895},{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":6,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":5.25,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.332,"y":6,"w":0.75,"l":86.711},{"oc":"#221f1f","x":77.963,"y":10.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":77.963,"y":9.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":81.632,"y":9.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":81.632,"y":10.5,"w":0.75,"l":13.698},{"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":77.92,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":12,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":15.75,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":16.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":16.5,"w":0.75,"l":3.798},{"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.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":18.75,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":18.75,"w":1.125,"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":56.882,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":21.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":74.207,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":22.5,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":23.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":23.25,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":23.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":24.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":27,"w":0.75,"l":13.698},{"oc":"#221f1f","x":74.207,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":27.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":74.207,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":28.5,"w":1.125,"l":13.698},{"oc":"#221f1f","x":74.207,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":29.25,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":30,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"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":13.698},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":31.5,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":32.25,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.92,"y":34.5,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.145,"y":34.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":35.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":34.5,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.332,"y":35.25,"w":0.75,"l":86.711},{"oc":"#221f1f","x":77.92,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.66,"y":37.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":39,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":39,"w":0.75,"l":71.861},{"oc":"#221f1f","x":77.92,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":42,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":43.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":45.75,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":60.638,"y":2.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":2.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":9.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":77.963,"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":81.675,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"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":81.675,"y":11.984,"w":0.75,"l":3.789},{"oc":"#221f1f","x":77.963,"y":11.984,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":17.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":77.963,"y":17.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":24.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":77.963,"y":24.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":60.638,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":56.925,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.25,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":24.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.789},{"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":0.781},{"oc":"#221f1f","x":77.963,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"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":60.638,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":32.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":35.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.963,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":43.484,"w":0.75,"l":1.173},{"oc":"#221f1f","x":53.213,"y":44.626,"w":0.75,"l":1.139}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":5.25,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":20.25,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":24.75,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":32.25,"w":21.038,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.188,"y":34.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":35.25,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":39,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":13.857000000000006,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%20(Form%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.625,"y":2.009,"w":12.078000000000005,"clr":-1,"A":"left","R":[{"T":"Attachment%20Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.156,"y":2.009,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":10,"TS":[0,14,1,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]}]},{"oc":"#221f1f","x":5.938,"y":2.785,"w":9.297,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20with","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.779,"y":2.785,"w":8.224,"clr":-1,"A":"left","R":[{"T":"%20self-employment","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":26.582,"y":2.785,"w":15.134000000000004,"clr":-1,"A":"left","R":[{"T":"%20income%20(as%20shown%20on%20Form%201040)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.419,"y":2.777,"w":15.299000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20person%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.419,"y":3.4450000000000003,"w":2.129,"clr":-1,"A":"left","R":[{"T":"with%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.003,"y":3.4450000000000003,"w":7.946000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":74.505,"y":3.4450000000000003,"w":3.8349999999999995,"clr":-1,"A":"left","R":[{"T":"%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.637,"y":3.351,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.321,"w":14.226000000000003,"clr":-1,"A":"left","R":[{"T":"Section%20B%2C%20Long%20Schedule%20SE%20","S":10,"TS":[0,14,1,0]}]},{"x":6.836,"y":5.071,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.844,"y":5.071,"w":10.447000000000001,"clr":-1,"A":"left","R":[{"T":"Self-Employment%20Tax%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.902,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.102,"y":5.902,"w":23.876000000000005,"clr":-1,"A":"left","R":[{"T":"If%20your%20only%20income%20subject%20to%20self-employment%20tax%20is%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":42.954,"y":5.902,"w":12.560000000000002,"clr":-1,"A":"left","R":[{"T":"church%20employee%20income%2C%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":60.225,"y":5.902,"w":20.299,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20Also%20see%20instructions%20for%20the%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.589,"w":17.060000000000002,"clr":-1,"A":"left","R":[{"T":"definition%20of%20church%20employee%20income.","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":7.353,"y":7.385,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":7.401,"w":36.855999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20a%20minister%2C%20member%20of%20a%20religious%20order%2C%20or%20Christian%20Science%20practitioner%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.179,"y":7.401,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":65.159,"y":7.401,"w":13.098,"clr":-1,"A":"left","R":[{"T":"you%20filed%20Form%204361%2C%20but%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.875,"y":8.099,"w":9.374,"clr":-1,"A":"left","R":[{"T":"had%20%24400%20or%20more%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24,"y":8.099,"w":2.778,"clr":-1,"A":"left","R":[{"T":"other%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.811,"y":8.099,"w":31.95199999999999,"clr":-1,"A":"left","R":[{"T":"net%20earnings%20from%20self-employment%2C%20check%20here%20and%20continue%20with%20Part%20I","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.175,"y":8.099,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.525,"y":8.006,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.885,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":8.902,"w":44.60399999999998,"clr":-1,"A":"left","R":[{"T":"Net%20farm%20profit%20or%20(loss)%20from%20Schedule%20F%2C%20line%2034%2C%20and%20farm%20partnerships%2C%20Schedule%20K-1%20(Form%201065)%2C%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.885,"y":9.589,"w":7.354000000000001,"clr":-1,"A":"left","R":[{"T":"box%2014%2C%20code%20A.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":21.176,"y":9.589,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":25.169,"y":9.589,"w":34.696000000000005,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%201a%20and%201b%20if%20you%20use%20the%20farm%20optional%20method%20(see%20instructions)%20%20%20%20%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":78.695,"y":9.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":10.385,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":10.402,"w":46.949999999999974,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20social%20security%20retirement%20or%20disability%20benefits%2C%20enter%20the%20amount%20of%20Conservation%20Reserve%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.089,"w":47.977999999999966,"clr":-1,"A":"left","R":[{"T":"Program%20payments%20included%20on%20Schedule%20F%2C%20line%204b%2C%20or%20listed%20on%20Schedule%20K-1%20(Form%201065)%2C%20box%2020%2C%20code%20Z%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":78.666,"y":11.089,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.569,"y":11,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.862,"y":11,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":11.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.964,"w":42.34299999999998,"clr":-1,"A":"left","R":[{"T":"Net%20profit%20or%20(loss)%20from%20Schedule%20C%2C%20line%2031%3B%20Schedule%20C-EZ%2C%20line%203%3B%20Schedule%20K-1%20(Form%201065)%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":12.652,"w":38.88299999999999,"clr":-1,"A":"left","R":[{"T":"box%2014%2C%20code%20A%20(other%20than%20farming)%3B%20and%20Schedule%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J1.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":13.339,"w":40.85899999999997,"clr":-1,"A":"left","R":[{"T":"Ministers%20and%20members%20of%20religious%20orders%2C%20see%20instructions%20for%20types%20of%20income%20to%20report%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.026,"w":23.467000000000002,"clr":-1,"A":"left","R":[{"T":"this%20line.%20See%20instructions%20for%20other%20income%20to%20report.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.216,"y":14.026,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.274,"y":14.026,"w":15.912000000000004,"clr":-1,"A":"left","R":[{"T":"Skip%20this%20line%20if%20you%20use%20the%20nonfarm","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.714,"w":15.133000000000003,"clr":-1,"A":"left","R":[{"T":"optional%20method%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":14.714,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":14.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":15.588999999999999,"w":12.524000000000004,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201a%2C%201b%2C%20and%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":15.588999999999999,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":"......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":16.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":16.339,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.339,"w":42.919999999999966,"clr":-1,"A":"left","R":[{"T":"If%20line%203%20is%20more%20than%20zero%2C%20multiply%20line%203%20by%2092.35%25%20(.9235).%20Otherwise%2C%20enter%20amount%20from%20line%203","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":78.695,"y":16.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":14.288,"y":17.089,"w":46.362999999999964,"clr":-1,"A":"left","R":[{"T":"%20If%20line%204a%20is%20less%20than%20%24400%20due%20to%20Conservation%20Reserve%20Program%20payments%20on%20line%201b%2C%20see%20instructions.","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":8.413,"y":17.839,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.839,"w":38.454999999999984,"clr":-1,"A":"left","R":[{"T":"If%20you%20elect%20one%20or%20both%20of%20the%20optional%20methods%2C%20enter%20the%20total%20of%20lines%2015%20and%2017%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":17.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":17.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.666,"y":17.839,"w":1.445,"clr":-1,"A":"left","R":[{"T":"4b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":18.635,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":18.652,"w":19.582000000000004,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%204a%20and%204b.%20If%20less%20than%20%24400%2C%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":38.124,"y":18.652,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"stop","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#221f1f","x":41.013,"y":18.652,"w":17.467,"clr":-1,"A":"left","R":[{"T":"%3B%20you%20do%20not%20owe%20self-employment%20tax.%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.35,"w":5.335000000000001,"clr":-1,"A":"left","R":[{"T":"Exception.%20","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#221f1f","x":18.51,"y":19.35,"w":13.450000000000003,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%24400%20and%20you%20had%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":37.56,"y":19.35,"w":12.560000000000002,"clr":-1,"A":"left","R":[{"T":"church%20employee%20income%2C%20","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#221f1f","x":55.093,"y":19.35,"w":10.541000000000002,"clr":-1,"A":"left","R":[{"T":"enter%20-0-%20and%20continue%20%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":75.015,"y":19.257,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.93,0,0]}]},{"oc":"#221f1f","x":78.695,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.137,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":20.137,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.152,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.907,"y":20.152,"w":12.004000000000001,"clr":-1,"A":"left","R":[{"T":"church%20employee%20income","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":34.774,"y":20.152,"w":9.929000000000004,"clr":-1,"A":"left","R":[{"T":"%20from%20Form%20W-2.%20See%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":20.839,"w":23.72700000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20definition%20of%20church%20employee%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":20.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.375,"y":20.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.657,"y":20.839,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"5a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":21.589,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":21.589,"w":27.474000000000007,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205a%20by%2092.35%25%20(.9235).%20If%20less%20than%20%24100%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":21.589,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.666,"y":21.589,"w":1.445,"clr":-1,"A":"left","R":[{"T":"5b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"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.888,"y":22.339,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204c%20and%205b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":22.339,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"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.552,"y":23.135,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":23.152,"w":42.603999999999985,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20of%20combined%20wages%20and%20self-employment%20earnings%20subject%20to%20social%20security%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":23.84,"w":33.52499999999999,"clr":-1,"A":"left","R":[{"T":"tax%20or%20the%206.2%25%20portion%20of%20the%207.65%25%20railroad%20retirement%20(tier%201)%20tax%20for%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.693,"y":23.84,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":24.684,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":24.684,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":24.714,"w":27.892000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%20wages%20and%20tips%20(total%20of%20boxes%203%20and%207%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":25.402,"w":26.394000000000005,"clr":-1,"A":"left","R":[{"T":"Form(s)%20W-2)%20and%20railroad%20retirement%20(tier%201)%20compensation.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":26.089,"w":28.34500000000001,"clr":-1,"A":"left","R":[{"T":"If%20%24113%2C700%20or%20more%2C%20skip%20lines%208b%20through%2010%2C%20and%20go%20to%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.657,"y":26.09,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"8a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":26.839,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":31.72900000000001,"clr":-1,"A":"left","R":[{"T":"Unreported%20tips%20subject%20to%20social%20security%20tax%20(from%20Form%204137%2C%20line%2010)%20","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":57.629,"y":26.839,"w":1.445,"clr":-1,"A":"left","R":[{"T":"8b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":27.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":27.589,"w":27.802000000000007,"clr":-1,"A":"left","R":[{"T":"Wages%20subject%20to%20social%20security%20tax%20(from%20Form%208919%2C%20line%2010)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.657,"y":27.589,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"8c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":28.339,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":28.339,"w":10.838000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20lines%208a%2C%208b%2C%20and%208c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":28.339,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.666,"y":28.339,"w":1.445,"clr":-1,"A":"left","R":[{"T":"8d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":39.61999999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208d%20from%20line%207.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20line%2010%20and%20go%20to%20line%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":29.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.238,"y":28.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.139,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.839,"w":5.465,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.482,"y":29.839,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.718,"y":29.839,"w":14.968000000000007,"clr":-1,"A":"left","R":[{"T":"%20of%20line%206%20or%20line%209%20by%2012.4%25%20(.124)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":29.839,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":12.931000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%202.9%25%20(.029)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":30.589,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":30.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":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":31.339,"w":10.336000000000002,"clr":-1,"A":"left","R":[{"T":"Self-employment%20tax.%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":24.398,"y":31.339,"w":17.41400000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%20and%2011.%20Enter%20here%20and%20on","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":46.115,"y":31.339,"w":9.505000000000003,"clr":-1,"A":"left","R":[{"T":"%20Form%201040%2C%20line%2056%2C%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":58.335,"y":31.339,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":59.556,"y":31.339,"w":10.393000000000004,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2054","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":78.709,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":22.392,"clr":-1,"A":"left","R":[{"T":"Deduction%20for%20one-half%20of%20self-employment%20tax.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":57.671,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"x":6.582,"y":34.321,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.844,"y":34.321,"w":20.281000000000006,"clr":-1,"A":"left","R":[{"T":"Optional%20Methods%20To%20Figure%20Net%20Earnings%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.693,"y":34.321,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.152,"w":11.168000000000005,"clr":-1,"A":"left","R":[{"T":"Farm%20Optional%20Method.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.232,"y":35.152,"w":11.672,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20this%20method%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.533,"y":35.152,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.779,"y":35.152,"w":0.796,"clr":-1,"A":"left","R":[{"T":"if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.106,"y":35.152,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":44.436,"y":35.152,"w":10.576000000000002,"clr":-1,"A":"left","R":[{"T":"your%20gross%20farm%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.852,"y":34.964,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":59.665,"y":35.152,"w":6.371,"clr":-1,"A":"left","R":[{"T":"was%20not%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.937,"y":35.839,"w":5.856000000000002,"clr":-1,"A":"left","R":[{"T":"than%20%246%2C960%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.308,"y":35.839,"w":2.833,"clr":-1,"A":"left","R":[{"T":"or%20(b)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.404,"y":35.839,"w":9.056999999999999,"clr":-1,"A":"left","R":[{"T":"your%20net%20farm%20profits","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.867,"y":35.652,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":31.412,"y":35.839,"w":10.614000000000004,"clr":-1,"A":"left","R":[{"T":"%20were%20less%20than%20%245%2C024.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.589,"w":17.525000000000002,"clr":-1,"A":"left","R":[{"T":"Maximum%20income%20for%20optional%20methods","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":36.589,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":37.385,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.402,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.338,"y":37.402,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.719,"y":37.402,"w":6.518000000000001,"clr":-1,"A":"left","R":[{"T":"of%3A%20two-thirds%20(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.629,"y":37.402,"w":10.020000000000003,"clr":-1,"A":"left","R":[{"T":")%20of%20gross%20farm%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.475,"y":37.214,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":47.668,"y":37.402,"w":9.000000000000004,"clr":-1,"A":"left","R":[{"T":"%20(not%20less%20than%20zero)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.622,"y":37.402,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.4,"y":37.402,"w":6.114000000000001,"clr":-1,"A":"left","R":[{"T":"%20%244%2C640.%20Also%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":38.089,"w":16.432000000000002,"clr":-1,"A":"left","R":[{"T":"include%20this%20amount%20on%20line%204b%20above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.87,"y":38.089,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":38.875,"w":12.834000000000005,"clr":-1,"A":"left","R":[{"T":"Nonfarm%20Optional%20Method.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":23.033,"y":38.875,"w":11.394,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20this%20method","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":37.529,"y":38.875,"w":2.612,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":41.097,"y":38.875,"w":0.796,"clr":-1,"A":"left","R":[{"T":"if%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":42.242,"y":38.875,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":44.288,"y":38.875,"w":10.742999999999999,"clr":-1,"A":"left","R":[{"T":"your%20net%20nonfarm%20profits","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":57.635,"y":38.687,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":58.832,"y":38.875,"w":4.202,"clr":-1,"A":"left","R":[{"T":"were%20less","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":64.798,"y":38.875,"w":5.578000000000001,"clr":-1,"A":"left","R":[{"T":"than%20%245%2C024%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":5.937,"y":39.562,"w":26.378000000000007,"clr":-1,"A":"left","R":[{"T":"and%20also%20less%20than%2072.189%25%20of%20your%20gross%20nonfarm%20income%2C","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":39.274,"y":39.375,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":40.221,"y":39.562,"w":3.611,"clr":-1,"A":"left","R":[{"T":"and%20(b)%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":45.232,"y":39.562,"w":9.373000000000003,"clr":-1,"A":"left","R":[{"T":"you%20had%20net%20earnings","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":57.982,"y":39.562,"w":10.096,"clr":-1,"A":"left","R":[{"T":"from%20self-employment%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":5.936,"y":40.25,"w":18.301,"clr":-1,"A":"left","R":[{"T":"of%20at%20least%20%24400%20in%202%20of%20the%20prior%203%20years.%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":28.493,"y":40.25,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":34.061,"y":40.25,"w":22.713000000000005,"clr":-1,"A":"left","R":[{"T":"%20You%20may%20use%20this%20method%20no%20more%20than%20five%20times.","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":6.692,"y":41.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":41.089,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":41.089,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":41.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.902,"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":41.902,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.542,"y":41.902,"w":6.518000000000001,"clr":-1,"A":"left","R":[{"T":"of%3A%20two-thirds%20(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.281,"y":41.745,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":32.806,"y":41.902,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.322,"y":41.902,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":33.847,"y":41.902,"w":11.706000000000003,"clr":-1,"A":"left","R":[{"T":")%20of%20gross%20nonfarm%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.58,"y":41.714,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":51.535,"y":41.902,"w":8.444000000000003,"clr":-1,"A":"left","R":[{"T":"(not%20less%20than%20zero)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.32,"y":41.902,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.345,"y":41.902,"w":1.686,"clr":-1,"A":"left","R":[{"T":"the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":42.589,"w":27.21400000000001,"clr":-1,"A":"left","R":[{"T":"amount%20on%20line%2016.%20Also%20include%20this%20amount%20on%20line%204b%20above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":42.589,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":43.035,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":6.774,"y":43.223,"w":28.418000000000003,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20F%2C%20line%209%2C%20and%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C%20code%20B.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":43.723,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":6.798,"y":43.91,"w":27.45500000000001,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20F%2C%20line%2034%2C%20and%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C%20code","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":42.547,"y":43.91,"w":6.299000000000001,"clr":-1,"A":"left","R":[{"T":"A%E2%80%94minus%20the%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.796,"y":44.366,"w":24.89700000000001,"clr":-1,"A":"left","R":[{"T":"amount%20you%20would%20have%20entered%20on%20line%201b%20had%20you%20not%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":39.248,"y":44.366,"w":8.021,"clr":-1,"A":"left","R":[{"T":"used%20the%20optional%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.796,"y":44.897,"w":3.984,"clr":-1,"A":"left","R":[{"T":"method.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":53.65,"y":43.035,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":54.51,"y":43.223,"w":31.233000000000004,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20C%2C%20line%2031%3B%20Sch.%20C-EZ%2C%20line%203%3B%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":94.771,"y":43.223,"w":2.797,"clr":-1,"A":"left","R":[{"T":"%20code%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.51,"y":43.678,"w":21.286,"clr":-1,"A":"left","R":[{"T":"A%3B%20and%20Sch.%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J1.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":53.65,"y":44.177,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":54.367,"y":44.365,"w":33.474000000000004,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20C%2C%20line%207%3B%20Sch.%20C-EZ%2C%20line%201%3B%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C%20code%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":54.51,"y":44.82,"w":21.637999999999998,"clr":-1,"A":"left","R":[{"T":"C%3B%20and%20Sch.%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J2.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":81.457,"y":45.625,"w":14.506000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%20(Form%201040)%202013","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":11.131,"y":32.813,"w":26.157000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2012%20by%2050%25%20(.50).%20Enter%20the%20result%20here%20and%20on%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.131,"y":33.501,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2027%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.966,"y":33.501,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.369,"y":33.501,"w":10.671000000000005,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2027%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.125,"y":33.501,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":90.072,"y":36.55,"w":2.705,"clr":-1,"A":"left","R":[{"T":"4%2C640","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":96.578,"y":36.55,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":32.109,"y":37.245,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":32.635,"y":37.402,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.15,"y":37.402,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8938,"AM":1024,"x":6.229,"y":3.614,"w":54.285,"h":0.863,"TU":"Name of person with self-employment income (as shown on Form 1040)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8939,"AM":1024,"x":82.775,"y":3.586,"w":15.975,"h":0.833,"TU":"Social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8941,"AM":0,"x":81.628,"y":9.778,"w":13.427,"h":0.833,"TU":"Line 1a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONSRES","EN":0},"TI":8942,"AM":0,"x":82.528,"y":11.266,"w":12.678,"h":0.833,"TU":"Line 1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8943,"AM":0,"x":81.835,"y":15.016,"w":13.427,"h":0.833,"TU":"Line 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8944,"AM":1024,"x":81.739,"y":15.771,"w":13.427,"h":0.833,"TU":"Line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4A","EN":0},"TI":8945,"AM":1024,"x":81.778,"y":16.538,"w":13.427,"h":0.833,"TU":"Line 4a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4B","EN":0},"TI":8946,"AM":1024,"x":81.794,"y":17.996,"w":13.427,"h":0.833,"TU":"Line 4b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C","EN":0},"TI":8947,"AM":1024,"x":81.849,"y":19.513,"w":13.427,"h":0.833,"TU":"Line 4c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":8948,"AM":0,"x":60.761,"y":21.008,"w":13.386,"h":0.833,"TU":"Line 5a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5B","EN":0},"TI":8949,"AM":1024,"x":81.754,"y":21.684,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8950,"AM":1024,"x":81.778,"y":22.545,"w":13.427,"h":0.833,"TU":"Line 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":8951,"AM":0,"x":81.989,"y":23.946,"w":13.245,"h":0.833,"TU":"Line 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":8952,"AM":0,"x":60.823,"y":26.211,"w":13.262,"h":0.833,"TU":"Line 8a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":8953,"AM":1024,"x":60.741,"y":27.038,"w":13.427,"h":0.833,"TU":"Line 8b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8919","EN":0},"TI":8954,"AM":1024,"x":60.741,"y":27.788,"w":13.427,"h":0.833,"TU":"Line 8c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":8955,"AM":1024,"x":81.923,"y":28.406,"w":13.138,"h":0.833,"TU":"Line 8d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":8956,"AM":1024,"x":81.778,"y":29.295,"w":13.427,"h":0.833,"TU":"Line 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":8957,"AM":1024,"x":81.778,"y":30.038,"w":13.427,"h":0.833,"TU":"Line 10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":8958,"AM":1024,"x":81.778,"y":30.788,"w":13.427,"h":0.833,"TU":"Line 11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":8959,"AM":1024,"x":81.778,"y":31.545,"w":13.427,"h":0.833,"TU":"Line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":8960,"AM":1024,"x":60.761,"y":33.758,"w":13.386,"h":0.833,"TU":"Line 13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8961,"AM":0,"x":81.861,"y":38.221,"w":13.262,"h":0.833,"TU":"Line 15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8962,"AM":0,"x":81.923,"y":41.134,"w":13.138,"h":0.833,"TU":"Line 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8963,"AM":0,"x":81.936,"y":42.666,"w":13.262,"h":0.833,"TU":"Line 17"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AX","EN":0},"TI":8940,"AM":0,"x":95.83,"y":8.178,"w":1.671,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHSELT.content.txt b/test/data/fd/form/FSCHSELT.content.txt new file mode 100755 index 00000000..2abcb02f --- /dev/null +++ b/test/data/fd/form/FSCHSELT.content.txt @@ -0,0 +1,244 @@ +Schedule SE (Form 1040) 2013 +Attachment Sequence No. +17 +Page +2 +Name of person with + self-employment + income (as shown on Form 1040) +Social security number of person +with +self-employment + income +a +Section B, Long Schedule SE +Part I +Self-Employment Tax +Note. +If your only income subject to self-employment tax is +church employee income, +see instructions. Also see instructions for the +definition of church employee income. +A +If you are a minister, member of a religious order, or Christian Science practitioner +and +you filed Form 4361, but you +had $400 or more of +other +net earnings from self-employment, check here and continue with Part I +...... +a +1a +Net farm profit or (loss) from Schedule F, line 34, and farm partnerships, Schedule K-1 (Form 1065), +box 14, code A. +Note. +Skip lines 1a and 1b if you use the farm optional method (see instructions) +1a +b +If you received social security retirement or disability benefits, enter the amount of Conservation Reserve +Program payments included on Schedule F, line 4b, or listed on Schedule K-1 (Form 1065), box 20, code Z +1b +( +) +2 +Net profit or (loss) from Schedule C, line 31; Schedule C-EZ, line 3; Schedule K-1 (Form 1065), +box 14, code A (other than farming); and Schedule K-1 (Form 1065-B), box 9, code J1. +Ministers and members of religious orders, see instructions for types of income to report on +this line. See instructions for other income to report. +Note. +Skip this line if you use the nonfarm +optional method (see instructions) +.................... +2 +3 +Combine lines 1a, 1b, and 2 +...................... +3 +4 +a +If line 3 is more than zero, multiply line 3 by 92.35% (.9235). Otherwise, enter amount from line 3 +4a +Note. + If line 4a is less than $400 due to Conservation Reserve Program payments on line 1b, see instructions. +b +If you elect one or both of the optional methods, enter the total of lines 15 and 17 here . . +4b +c +Combine lines 4a and 4b. If less than $400, +stop +; you do not owe self-employment tax. +Exception. +If less than $400 and you had +church employee income, +enter -0- and continue +a +4c +5 +a +Enter your +church employee income + from Form W-2. See +instructions for definition of church employee income . . . +5a +b +Multiply line 5a by 92.35% (.9235). If less than $100, enter -0- +.......... +5b +6 +Add lines 4c and 5b +........................ +6 +7 +Maximum amount of combined wages and self-employment earnings subject to social security +tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax for 2013 +...... +7 +8 +a +Total social security wages and tips (total of boxes 3 and 7 on +Form(s) W-2) and railroad retirement (tier 1) compensation. +If $113,700 or more, skip lines 8b through 10, and go to line 11 +8a +b +Unreported tips subject to social security tax (from Form 4137, line 10) +8b +c +Wages subject to social security tax (from Form 8919, line 10) +8c +d +Add lines 8a, 8b, and 8c +....................... +8d +9 +Subtract line 8d from line 7. If zero or less, enter -0- here and on line 10 and go to line 11 . +a +9 +10 +Multiply the +smaller + of line 6 or line 9 by 12.4% (.124) +............. +10 +11 +Multiply line 6 by 2.9% (.029) +..................... +11 +12 +Self-employment tax. +Add lines 10 and 11. Enter here and on + Form 1040, line 56, +or + Form 1040NR, line 54 +12 +13 +Deduction for one-half of self-employment tax. +13 +Part II +Optional Methods To Figure Net Earnings +(see instructions) +Farm Optional Method. +You may use this method +only +if +(a) +your gross farm income +1 + +was not more +than $6,960, +or (b) +your net farm profits +2 + + were less than $5,024. +14 +Maximum income for optional methods +.................. +14 +15 +Enter the +smaller +of: two-thirds ( +) of gross farm income +1 + (not less than zero) +or + $4,640. Also +include this amount on line 4b above +................... +15 +Nonfarm Optional Method. +You may use this method + only +if +(a) +your net nonfarm profits +3 + +were less + +than $5,024 +and also less than 72.189% of your gross nonfarm income, +4 + +and (b) +you had net earnings + +from self-employment +of at least $400 in 2 of the prior 3 years. +Caution. + You may use this method no more than five times. +16 +Subtract line 15 from line 14 +...................... +16 +17 + +Enter the +smaller +of: two-thirds ( +2 +/ +3 +) of gross nonfarm income +4 + +(not less than zero) + +or + +the +amount on line 16. Also include this amount on line 4b above +........... +17 +1 + +From Sch. F, line 9, and Sch. K-1 (Form 1065), box 14, code B. +2 + +From Sch. F, line 34, and Sch. K-1 (Form 1065), box 14, code + +A—minus the +amount you would have entered on line 1b had you not + +used the optional +method. +3 + +From Sch. C, line 31; Sch. C-EZ, line 3; Sch. K-1 (Form 1065), box 14, + code +A; and Sch. K-1 (Form 1065-B), box 9, code J1. +4 +From Sch. C, line 7; Sch. C-EZ, line 1; Sch. K-1 (Form 1065), box 14, code +C; and Sch. K-1 (Form 1065-B), box 9, code J2. +Schedule SE (Form 1040) 2013 +Multiply line 12 by 50% (.50). Enter the result here and on +Form 1040, line 27, +or + Form 1040NR, line 27 +..... +4,640 00 +2 +/ +3 +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHSELT.fields.json b/test/data/fd/form/FSCHSELT.fields.json new file mode 100755 index 00000000..13d631c8 --- /dev/null +++ b/test/data/fd/form/FSCHSELT.fields.json @@ -0,0 +1 @@ +[{"id":"AX","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"CONSRES","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4A","type":"number","calc":true,"value":""},{"id":"L4B","type":"number","calc":true,"value":""},{"id":"L4C","type":"number","calc":true,"value":""},{"id":"L5A","type":"number","calc":false,"value":""},{"id":"L5B","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":true,"value":""},{"id":"L8919","type":"number","calc":true,"value":""},{"id":"L8C","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHSELT.json b/test/data/fd/form/FSCHSELT.json new file mode 100755 index 00000000..44247845 --- /dev/null +++ b/test/data/fd/form/FSCHSELT.json @@ -0,0 +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":3,"w":1.5,"l":17.427},{"oc":"#221f1f","x":23.47,"y":3,"w":1.5,"l":70.624},{"oc":"#221f1f","x":94.007,"y":3,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.145,"y":4.5,"w":1.125,"l":92.895},{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":6,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":5.25,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.332,"y":6,"w":0.75,"l":86.711},{"oc":"#221f1f","x":77.963,"y":10.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":77.963,"y":9.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":81.632,"y":9.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":81.632,"y":10.5,"w":0.75,"l":13.698},{"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":77.92,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":12,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":15.75,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":15.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":16.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":16.5,"w":0.75,"l":3.798},{"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.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":18.75,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":18.75,"w":1.125,"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":56.882,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":21.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":74.207,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":22.5,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":23.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":23.25,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":23.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":24.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":27,"w":0.75,"l":13.698},{"oc":"#221f1f","x":74.207,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":27.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":74.207,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":28.5,"w":1.125,"l":13.698},{"oc":"#221f1f","x":74.207,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":29.25,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":29.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":30,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"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":13.698},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":31.5,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":31.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":32.25,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.92,"y":34.5,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.145,"y":34.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.145,"y":35.25,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":34.5,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.332,"y":35.25,"w":0.75,"l":86.711},{"oc":"#221f1f","x":77.92,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.66,"y":37.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":39,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":39,"w":0.75,"l":71.861},{"oc":"#221f1f","x":77.92,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":42,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":43.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":45.75,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":60.638,"y":2.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":2.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":9.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":77.963,"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":81.675,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"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":81.675,"y":11.984,"w":0.75,"l":3.789},{"oc":"#221f1f","x":77.963,"y":11.984,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":17.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":77.963,"y":17.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":21.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":24.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":77.963,"y":24.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":60.638,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":56.925,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.25,"y":27.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":24.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.789},{"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":0.781},{"oc":"#221f1f","x":77.963,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"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":60.638,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":32.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":35.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.963,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":43.484,"w":0.75,"l":1.173},{"oc":"#221f1f","x":53.213,"y":44.626,"w":0.75,"l":1.139}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":5.25,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":20.25,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":24.75,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":32.25,"w":21.038,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.188,"y":34.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":35.25,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":39,"w":3.713,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":13.857000000000006,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%20(Form%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.625,"y":2.009,"w":12.078000000000005,"clr":-1,"A":"left","R":[{"T":"Attachment%20Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.156,"y":2.009,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":10,"TS":[0,14,1,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]}]},{"oc":"#221f1f","x":5.938,"y":2.785,"w":9.297,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20with","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.779,"y":2.785,"w":8.224,"clr":-1,"A":"left","R":[{"T":"%20self-employment","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":26.582,"y":2.785,"w":15.134000000000004,"clr":-1,"A":"left","R":[{"T":"%20income%20(as%20shown%20on%20Form%201040)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.419,"y":2.777,"w":15.299000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20person%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.419,"y":3.4450000000000003,"w":2.129,"clr":-1,"A":"left","R":[{"T":"with%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.003,"y":3.4450000000000003,"w":7.946000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":74.505,"y":3.4450000000000003,"w":3.8349999999999995,"clr":-1,"A":"left","R":[{"T":"%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.637,"y":3.351,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.321,"w":14.226000000000003,"clr":-1,"A":"left","R":[{"T":"Section%20B%2C%20Long%20Schedule%20SE%20","S":10,"TS":[0,14,1,0]}]},{"x":6.836,"y":5.071,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.844,"y":5.071,"w":10.447000000000001,"clr":-1,"A":"left","R":[{"T":"Self-Employment%20Tax%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.902,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.102,"y":5.902,"w":23.876000000000005,"clr":-1,"A":"left","R":[{"T":"If%20your%20only%20income%20subject%20to%20self-employment%20tax%20is%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":42.954,"y":5.902,"w":12.560000000000002,"clr":-1,"A":"left","R":[{"T":"church%20employee%20income%2C%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":60.225,"y":5.902,"w":20.299,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20Also%20see%20instructions%20for%20the%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.589,"w":17.060000000000002,"clr":-1,"A":"left","R":[{"T":"definition%20of%20church%20employee%20income.","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":7.353,"y":7.385,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":7.401,"w":36.855999999999995,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20a%20minister%2C%20member%20of%20a%20religious%20order%2C%20or%20Christian%20Science%20practitioner%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.179,"y":7.401,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":65.159,"y":7.401,"w":13.098,"clr":-1,"A":"left","R":[{"T":"you%20filed%20Form%204361%2C%20but%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.875,"y":8.099,"w":9.374,"clr":-1,"A":"left","R":[{"T":"had%20%24400%20or%20more%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24,"y":8.099,"w":2.778,"clr":-1,"A":"left","R":[{"T":"other%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.811,"y":8.099,"w":31.95199999999999,"clr":-1,"A":"left","R":[{"T":"net%20earnings%20from%20self-employment%2C%20check%20here%20and%20continue%20with%20Part%20I","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.175,"y":8.099,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.525,"y":8.006,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.885,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":8.902,"w":44.60399999999998,"clr":-1,"A":"left","R":[{"T":"Net%20farm%20profit%20or%20(loss)%20from%20Schedule%20F%2C%20line%2034%2C%20and%20farm%20partnerships%2C%20Schedule%20K-1%20(Form%201065)%2C%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.885,"y":9.589,"w":7.354000000000001,"clr":-1,"A":"left","R":[{"T":"box%2014%2C%20code%20A.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":21.176,"y":9.589,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":25.169,"y":9.589,"w":34.696000000000005,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%201a%20and%201b%20if%20you%20use%20the%20farm%20optional%20method%20(see%20instructions)%20%20%20%20%20%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":78.695,"y":9.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":10.385,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":10.402,"w":46.949999999999974,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20social%20security%20retirement%20or%20disability%20benefits%2C%20enter%20the%20amount%20of%20Conservation%20Reserve%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.089,"w":47.977999999999966,"clr":-1,"A":"left","R":[{"T":"Program%20payments%20included%20on%20Schedule%20F%2C%20line%204b%2C%20or%20listed%20on%20Schedule%20K-1%20(Form%201065)%2C%20box%2020%2C%20code%20Z%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":78.666,"y":11.089,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.569,"y":11,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.862,"y":11,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":11.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.964,"w":42.34299999999998,"clr":-1,"A":"left","R":[{"T":"Net%20profit%20or%20(loss)%20from%20Schedule%20C%2C%20line%2031%3B%20Schedule%20C-EZ%2C%20line%203%3B%20Schedule%20K-1%20(Form%201065)%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":12.652,"w":38.88299999999999,"clr":-1,"A":"left","R":[{"T":"box%2014%2C%20code%20A%20(other%20than%20farming)%3B%20and%20Schedule%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J1.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":13.339,"w":40.85899999999997,"clr":-1,"A":"left","R":[{"T":"Ministers%20and%20members%20of%20religious%20orders%2C%20see%20instructions%20for%20types%20of%20income%20to%20report%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.026,"w":23.467000000000002,"clr":-1,"A":"left","R":[{"T":"this%20line.%20See%20instructions%20for%20other%20income%20to%20report.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.216,"y":14.026,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":47.274,"y":14.026,"w":15.912000000000004,"clr":-1,"A":"left","R":[{"T":"Skip%20this%20line%20if%20you%20use%20the%20nonfarm","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.714,"w":15.133000000000003,"clr":-1,"A":"left","R":[{"T":"optional%20method%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":14.714,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":14.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":15.588999999999999,"w":12.524000000000004,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201a%2C%201b%2C%20and%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":15.588999999999999,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":"......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":15.588999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":16.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":16.339,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.339,"w":42.919999999999966,"clr":-1,"A":"left","R":[{"T":"If%20line%203%20is%20more%20than%20zero%2C%20multiply%20line%203%20by%2092.35%25%20(.9235).%20Otherwise%2C%20enter%20amount%20from%20line%203","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":78.695,"y":16.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,10.74,1,0]}]},{"oc":"#221f1f","x":14.288,"y":17.089,"w":46.362999999999964,"clr":-1,"A":"left","R":[{"T":"%20If%20line%204a%20is%20less%20than%20%24400%20due%20to%20Conservation%20Reserve%20Program%20payments%20on%20line%201b%2C%20see%20instructions.","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":8.413,"y":17.839,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.839,"w":38.454999999999984,"clr":-1,"A":"left","R":[{"T":"If%20you%20elect%20one%20or%20both%20of%20the%20optional%20methods%2C%20enter%20the%20total%20of%20lines%2015%20and%2017%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":17.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":17.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.666,"y":17.839,"w":1.445,"clr":-1,"A":"left","R":[{"T":"4b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":18.635,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":18.652,"w":19.582000000000004,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%204a%20and%204b.%20If%20less%20than%20%24400%2C%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":38.124,"y":18.652,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"stop","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#221f1f","x":41.013,"y":18.652,"w":17.467,"clr":-1,"A":"left","R":[{"T":"%3B%20you%20do%20not%20owe%20self-employment%20tax.%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.35,"w":5.335000000000001,"clr":-1,"A":"left","R":[{"T":"Exception.%20","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#221f1f","x":18.51,"y":19.35,"w":13.450000000000003,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%24400%20and%20you%20had%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":37.56,"y":19.35,"w":12.560000000000002,"clr":-1,"A":"left","R":[{"T":"church%20employee%20income%2C%20","S":-1,"TS":[0,11.91,1,0]}]},{"oc":"#221f1f","x":55.093,"y":19.35,"w":10.541000000000002,"clr":-1,"A":"left","R":[{"T":"enter%20-0-%20and%20continue%20%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":75.015,"y":19.257,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.93,0,0]}]},{"oc":"#221f1f","x":78.695,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"4c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":20.137,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":20.137,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.152,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.907,"y":20.152,"w":12.004000000000001,"clr":-1,"A":"left","R":[{"T":"church%20employee%20income","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":34.774,"y":20.152,"w":9.929000000000004,"clr":-1,"A":"left","R":[{"T":"%20from%20Form%20W-2.%20See%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.887,"y":20.839,"w":23.72700000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20definition%20of%20church%20employee%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":20.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":20.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.375,"y":20.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.657,"y":20.839,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"5a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":21.589,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":21.589,"w":27.474000000000007,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205a%20by%2092.35%25%20(.9235).%20If%20less%20than%20%24100%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.438,"y":21.589,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.666,"y":21.589,"w":1.445,"clr":-1,"A":"left","R":[{"T":"5b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"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.888,"y":22.339,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204c%20and%205b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.562,"y":22.339,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"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.552,"y":23.135,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":23.152,"w":42.603999999999985,"clr":-1,"A":"left","R":[{"T":"Maximum%20amount%20of%20combined%20wages%20and%20self-employment%20earnings%20subject%20to%20social%20security%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":23.84,"w":33.52499999999999,"clr":-1,"A":"left","R":[{"T":"tax%20or%20the%206.2%25%20portion%20of%20the%207.65%25%20railroad%20retirement%20(tier%201)%20tax%20for%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.693,"y":23.84,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":24.684,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":24.684,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":24.714,"w":27.892000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%20wages%20and%20tips%20(total%20of%20boxes%203%20and%207%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":25.402,"w":26.394000000000005,"clr":-1,"A":"left","R":[{"T":"Form(s)%20W-2)%20and%20railroad%20retirement%20(tier%201)%20compensation.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":26.089,"w":28.34500000000001,"clr":-1,"A":"left","R":[{"T":"If%20%24113%2C700%20or%20more%2C%20skip%20lines%208b%20through%2010%2C%20and%20go%20to%20line%2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.657,"y":26.09,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"8a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":26.839,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":31.72900000000001,"clr":-1,"A":"left","R":[{"T":"Unreported%20tips%20subject%20to%20social%20security%20tax%20(from%20Form%204137%2C%20line%2010)%20","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":57.629,"y":26.839,"w":1.445,"clr":-1,"A":"left","R":[{"T":"8b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":27.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":27.589,"w":27.802000000000007,"clr":-1,"A":"left","R":[{"T":"Wages%20subject%20to%20social%20security%20tax%20(from%20Form%208919%2C%20line%2010)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.657,"y":27.589,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"8c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":28.339,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":28.339,"w":10.838000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20lines%208a%2C%208b%2C%20and%208c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.626,"y":28.339,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.666,"y":28.339,"w":1.445,"clr":-1,"A":"left","R":[{"T":"8d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.089,"w":39.61999999999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208d%20from%20line%207.%20If%20zero%20or%20less%2C%20enter%20-0-%20here%20and%20on%20line%2010%20and%20go%20to%20line%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":29.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.238,"y":28.996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.139,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.839,"w":5.465,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.482,"y":29.839,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.718,"y":29.839,"w":14.968000000000007,"clr":-1,"A":"left","R":[{"T":"%20of%20line%206%20or%20line%209%20by%2012.4%25%20(.124)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":29.839,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":12.931000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%202.9%25%20(.029)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":30.589,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":30.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":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":31.339,"w":10.336000000000002,"clr":-1,"A":"left","R":[{"T":"Self-employment%20tax.%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":24.398,"y":31.339,"w":17.41400000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%20and%2011.%20Enter%20here%20and%20on","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":46.115,"y":31.339,"w":9.505000000000003,"clr":-1,"A":"left","R":[{"T":"%20Form%201040%2C%20line%2056%2C%20","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":58.335,"y":31.339,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":59.556,"y":31.339,"w":10.393000000000004,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2054","S":-1,"TS":[0,10.83,1,0]}]},{"oc":"#221f1f","x":78.709,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":32.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":22.392,"clr":-1,"A":"left","R":[{"T":"Deduction%20for%20one-half%20of%20self-employment%20tax.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":57.671,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"x":6.582,"y":34.321,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.844,"y":34.321,"w":20.281000000000006,"clr":-1,"A":"left","R":[{"T":"Optional%20Methods%20To%20Figure%20Net%20Earnings%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":48.693,"y":34.321,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.152,"w":11.168000000000005,"clr":-1,"A":"left","R":[{"T":"Farm%20Optional%20Method.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.232,"y":35.152,"w":11.672,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20this%20method%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.533,"y":35.152,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.779,"y":35.152,"w":0.796,"clr":-1,"A":"left","R":[{"T":"if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.106,"y":35.152,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":44.436,"y":35.152,"w":10.576000000000002,"clr":-1,"A":"left","R":[{"T":"your%20gross%20farm%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.852,"y":34.964,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":59.665,"y":35.152,"w":6.371,"clr":-1,"A":"left","R":[{"T":"was%20not%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.937,"y":35.839,"w":5.856000000000002,"clr":-1,"A":"left","R":[{"T":"than%20%246%2C960%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.308,"y":35.839,"w":2.833,"clr":-1,"A":"left","R":[{"T":"or%20(b)%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.404,"y":35.839,"w":9.056999999999999,"clr":-1,"A":"left","R":[{"T":"your%20net%20farm%20profits","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.867,"y":35.652,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":31.412,"y":35.839,"w":10.614000000000004,"clr":-1,"A":"left","R":[{"T":"%20were%20less%20than%20%245%2C024.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":36.589,"w":17.525000000000002,"clr":-1,"A":"left","R":[{"T":"Maximum%20income%20for%20optional%20methods","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":36.589,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":37.385,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.402,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.338,"y":37.402,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.719,"y":37.402,"w":6.518000000000001,"clr":-1,"A":"left","R":[{"T":"of%3A%20two-thirds%20(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.629,"y":37.402,"w":10.020000000000003,"clr":-1,"A":"left","R":[{"T":")%20of%20gross%20farm%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.475,"y":37.214,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":47.668,"y":37.402,"w":9.000000000000004,"clr":-1,"A":"left","R":[{"T":"%20(not%20less%20than%20zero)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.622,"y":37.402,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.4,"y":37.402,"w":6.114000000000001,"clr":-1,"A":"left","R":[{"T":"%20%244%2C640.%20Also%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":38.089,"w":16.432000000000002,"clr":-1,"A":"left","R":[{"T":"include%20this%20amount%20on%20line%204b%20above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.87,"y":38.089,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":38.875,"w":12.834000000000005,"clr":-1,"A":"left","R":[{"T":"Nonfarm%20Optional%20Method.%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":23.033,"y":38.875,"w":11.394,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20this%20method","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":37.529,"y":38.875,"w":2.612,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":41.097,"y":38.875,"w":0.796,"clr":-1,"A":"left","R":[{"T":"if%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":42.242,"y":38.875,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":44.288,"y":38.875,"w":10.742999999999999,"clr":-1,"A":"left","R":[{"T":"your%20net%20nonfarm%20profits","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":57.635,"y":38.687,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":58.832,"y":38.875,"w":4.202,"clr":-1,"A":"left","R":[{"T":"were%20less","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":64.798,"y":38.875,"w":5.578000000000001,"clr":-1,"A":"left","R":[{"T":"than%20%245%2C024%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":5.937,"y":39.562,"w":26.378000000000007,"clr":-1,"A":"left","R":[{"T":"and%20also%20less%20than%2072.189%25%20of%20your%20gross%20nonfarm%20income%2C","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":39.274,"y":39.375,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":40.221,"y":39.562,"w":3.611,"clr":-1,"A":"left","R":[{"T":"and%20(b)%20","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":45.232,"y":39.562,"w":9.373000000000003,"clr":-1,"A":"left","R":[{"T":"you%20had%20net%20earnings","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":57.982,"y":39.562,"w":10.096,"clr":-1,"A":"left","R":[{"T":"from%20self-employment%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":5.936,"y":40.25,"w":18.301,"clr":-1,"A":"left","R":[{"T":"of%20at%20least%20%24400%20in%202%20of%20the%20prior%203%20years.%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":28.493,"y":40.25,"w":3.9999999999999996,"clr":-1,"A":"left","R":[{"T":"Caution.","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#221f1f","x":34.061,"y":40.25,"w":22.713000000000005,"clr":-1,"A":"left","R":[{"T":"%20You%20may%20use%20this%20method%20no%20more%20than%20five%20times.","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":6.692,"y":41.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":41.089,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":41.089,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":41.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.902,"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":41.902,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.542,"y":41.902,"w":6.518000000000001,"clr":-1,"A":"left","R":[{"T":"of%3A%20two-thirds%20(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.281,"y":41.745,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":32.806,"y":41.902,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.322,"y":41.902,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":33.847,"y":41.902,"w":11.706000000000003,"clr":-1,"A":"left","R":[{"T":")%20of%20gross%20nonfarm%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.58,"y":41.714,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":51.535,"y":41.902,"w":8.444000000000003,"clr":-1,"A":"left","R":[{"T":"(not%20less%20than%20zero)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.32,"y":41.902,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.345,"y":41.902,"w":1.686,"clr":-1,"A":"left","R":[{"T":"the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":42.589,"w":27.21400000000001,"clr":-1,"A":"left","R":[{"T":"amount%20on%20line%2016.%20Also%20include%20this%20amount%20on%20line%204b%20above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.376,"y":42.589,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.709,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":43.035,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":6.774,"y":43.223,"w":28.418000000000003,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20F%2C%20line%209%2C%20and%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C%20code%20B.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":43.723,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":6.798,"y":43.91,"w":27.45500000000001,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20F%2C%20line%2034%2C%20and%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C%20code","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":42.547,"y":43.91,"w":6.299000000000001,"clr":-1,"A":"left","R":[{"T":"A%E2%80%94minus%20the%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.796,"y":44.366,"w":24.89700000000001,"clr":-1,"A":"left","R":[{"T":"amount%20you%20would%20have%20entered%20on%20line%201b%20had%20you%20not%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":39.248,"y":44.366,"w":8.021,"clr":-1,"A":"left","R":[{"T":"used%20the%20optional%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.796,"y":44.897,"w":3.984,"clr":-1,"A":"left","R":[{"T":"method.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":53.65,"y":43.035,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":54.51,"y":43.223,"w":31.233000000000004,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20C%2C%20line%2031%3B%20Sch.%20C-EZ%2C%20line%203%3B%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":94.771,"y":43.223,"w":2.797,"clr":-1,"A":"left","R":[{"T":"%20code%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.51,"y":43.678,"w":21.286,"clr":-1,"A":"left","R":[{"T":"A%3B%20and%20Sch.%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J1.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":53.65,"y":44.177,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":54.367,"y":44.365,"w":33.474000000000004,"clr":-1,"A":"left","R":[{"T":"From%20Sch.%20C%2C%20line%207%3B%20Sch.%20C-EZ%2C%20line%201%3B%20Sch.%20K-1%20(Form%201065)%2C%20box%2014%2C%20code%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":54.51,"y":44.82,"w":21.637999999999998,"clr":-1,"A":"left","R":[{"T":"C%3B%20and%20Sch.%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J2.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":81.457,"y":45.625,"w":14.506000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%20(Form%201040)%202013","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":11.131,"y":32.813,"w":26.157000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2012%20by%2050%25%20(.50).%20Enter%20the%20result%20here%20and%20on%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.131,"y":33.501,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2027%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.966,"y":33.501,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.369,"y":33.501,"w":10.671000000000005,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2027%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.125,"y":33.501,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":90.072,"y":36.55,"w":2.705,"clr":-1,"A":"left","R":[{"T":"4%2C640","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":96.578,"y":36.55,"w":1.264,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":32.109,"y":37.245,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":32.635,"y":37.402,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.15,"y":37.402,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8964,"AM":1024,"x":6.229,"y":3.614,"w":54.285,"h":0.863,"TU":"Name of person with self-employment income (as shown on Form 1040)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8965,"AM":1024,"x":82.775,"y":3.586,"w":15.975,"h":0.833,"TU":"Social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8967,"AM":0,"x":81.628,"y":9.778,"w":13.427,"h":0.833,"TU":"Line 1a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONSRES","EN":0},"TI":8968,"AM":0,"x":82.528,"y":11.266,"w":12.678,"h":0.833,"TU":"Line 1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8969,"AM":0,"x":81.835,"y":15.016,"w":13.427,"h":0.833,"TU":"Line 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8970,"AM":1024,"x":81.739,"y":15.771,"w":13.427,"h":0.833,"TU":"Line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4A","EN":0},"TI":8971,"AM":1024,"x":81.778,"y":16.538,"w":13.427,"h":0.833,"TU":"Line 4a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4B","EN":0},"TI":8972,"AM":1024,"x":81.794,"y":17.996,"w":13.427,"h":0.833,"TU":"Line 4b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4C","EN":0},"TI":8973,"AM":1024,"x":81.849,"y":19.513,"w":13.427,"h":0.833,"TU":"Line 4c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":8974,"AM":0,"x":60.761,"y":21.008,"w":13.386,"h":0.833,"TU":"Line 5a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5B","EN":0},"TI":8975,"AM":1024,"x":81.754,"y":21.684,"w":13.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8976,"AM":1024,"x":81.778,"y":22.545,"w":13.427,"h":0.833,"TU":"Line 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":8977,"AM":0,"x":81.989,"y":23.946,"w":13.245,"h":0.833,"TU":"Line 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":8978,"AM":0,"x":60.823,"y":26.211,"w":13.262,"h":0.833,"TU":"Line 8a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":8979,"AM":1024,"x":60.741,"y":27.038,"w":13.427,"h":0.833,"TU":"Line 8b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8919","EN":0},"TI":8980,"AM":1024,"x":60.741,"y":27.788,"w":13.427,"h":0.833,"TU":"Line 8c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":8981,"AM":1024,"x":81.923,"y":28.406,"w":13.138,"h":0.833,"TU":"Line 8d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":8982,"AM":1024,"x":81.778,"y":29.295,"w":13.427,"h":0.833,"TU":"Line 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":8983,"AM":1024,"x":81.778,"y":30.038,"w":13.427,"h":0.833,"TU":"Line 10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":8984,"AM":1024,"x":81.778,"y":30.788,"w":13.427,"h":0.833,"TU":"Line 11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":8985,"AM":1024,"x":81.778,"y":31.545,"w":13.427,"h":0.833,"TU":"Line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":8986,"AM":1024,"x":60.761,"y":33.758,"w":13.386,"h":0.833,"TU":"Line 13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8987,"AM":0,"x":81.861,"y":38.221,"w":13.262,"h":0.833,"TU":"Line 15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8988,"AM":0,"x":81.923,"y":41.134,"w":13.138,"h":0.833,"TU":"Line 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8989,"AM":0,"x":81.936,"y":42.666,"w":13.262,"h":0.833,"TU":"Line 17"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AX","EN":0},"TI":8966,"AM":0,"x":95.83,"y":8.178,"w":1.671,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHSESS.content.txt b/test/data/fd/form/FSCHSESS.content.txt new file mode 100755 index 00000000..fa71655e --- /dev/null +++ b/test/data/fd/form/FSCHSESS.content.txt @@ -0,0 +1,157 @@ +SCHEDULE SE +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Self-Employment Tax +a + +a + +Attach to Form 1040 or Form 1040NR. + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +17 +Name of person with +self-employment + income (as shown on Form 1040) +Social security number of person +with +self-employment + income +a + +Before you begin: + +To determine if you must file Schedule SE, see the instructions. +May I Use Short Schedule SE or Must I Use Long Schedule SE? +Note. +Use this flowchart +only if +you must file Schedule SE. If unsure, see +Who Must File Schedule SE +in the instructions. +No +Did you receive wages or tips in 2013? +Yes +d +d +d +Are you a minister, member of a religious order, or Christian +Science practitioner who received IRS approval +not +to be taxed +on earnings from these sources, +but +you owe self-employment +tax on other earnings? +Yes +a +No +d +Are you using one of the optional methods to figure your net +earnings (see instructions)? +Yes +a +No +d +Did you receive church employee income (see instructions) +reported on Form W-2 of $108.28 or more? +Yes +a +No +d +You may use Short Schedule SE below +Was the total of your wages and tips subject to social security +or railroad retirement (tier 1) tax +plus + your net earnings from +self-employment more than $113,700? +Yes +a +No +d +Did you receive tips subject to social security or Medicare tax +that you +did not +report to your employer? +Yes +a +No +d +No +` +Did you report any wages on Form 8919, Uncollected Social +Security and Medicare Tax on Wages? +Yes +a +a +You must use Long Schedule SE on page 2 +d +Section A, Short Schedule SE. Caution. +Read above to see if you can use Short Schedule SE. +1a +Net farm profit or (loss) from Schedule F, line 34, and farm partnerships, Schedule K-1 (Form +1065), box 14, code A +........................ +1a +b +If you received social security retirement or disability benefits, enter the amount of Conservation Reserve +Program payments included on Schedule F, line 4b, or listed on Schedule K-1 (Form 1065), box 20, code Z +1b +( +) +2 +Net profit or (loss) from Schedule C, line 31; Schedule C-EZ, line 3; Schedule K-1 (Form 1065), +box 14, code A (other than farming); and Schedule K-1 (Form 1065-B), box 9, code J1. +Ministers and members of religious orders, see instructions for types of income to report on +this line. See instructions for other income to report +.............. +2 +3 +Combine lines 1a, 1b, and 2 +..................... +3 +4 +Multiply line 3 by 92.35% (.9235). If less than $400, you do not owe self-employment tax; + do +not +file this schedule unless you have an amount on line 1b +........... +a +4 +Note. +If line 4 is less than $400 due to Conservation Reserve Program payments on line 1b, +see instructions. +If the amount on line 4 is: +• $113,700 or less, multiply line 4 by 15.3% (.153). Enter the result here and on +Form 1040, line 56, +or + Form 1040NR, line 54 +• More than $113,700, multiply line 4 by 2.9% (.029). Then, add $14,098.80 to the result. +Enter the total here and on +Form 1040, line 56, +or + Form 1040NR, line 54 +....... +5 +6 Deduction for one-half of self-employment tax. +Multiply line 5 by 50% (.50). Enter the result here and on + Form +1040, line 27, +or + Form 1040NR, line 27 +........ +6 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11358Z +Schedule SE (Form 1040) 2013 +Schedule SE Page 2 +Information about Schedule SE and its separate instructions is at www.irs.gov/schedulese. +5 + +Self-employment tax. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHSESS.fields.json b/test/data/fd/form/FSCHSESS.fields.json new file mode 100755 index 00000000..ce301784 --- /dev/null +++ b/test/data/fd/form/FSCHSESS.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"CONSRES","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"Add_SCHSE_Page_2","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHSESS.json b/test/data/fd/form/FSCHSESS.json new file mode 100755 index 00000000..ba6c4ed9 --- /dev/null +++ b/test/data/fd/form/FSCHSESS.json @@ -0,0 +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.201},{"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":54.536},{"oc":"#221f1f","x":60.595,"y":6.75,"w":1.125,"l":38.448},{"oc":"#221f1f","x":6.145,"y":8.25,"w":1.125,"l":92.899},{"oc":"#181616","x":26.025,"y":11.58,"w":1.2000000000000002,"l":11.296},{"oc":"#221f1f","x":37.427,"y":12.313,"w":0.75,"l":31.798},{"oc":"#221f1f","x":37.427,"y":11.25,"w":0.75,"l":31.798},{"oc":"#181616","x":69.245,"y":11.58,"w":1.2000000000000002,"l":4.427},{"oc":"#181616","x":40.281,"y":12.955,"w":1.2000000000000002,"l":11.241},{"oc":"#221f1f","x":8.029,"y":16.394,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":13.811,"w":0.75,"l":36.443},{"oc":"#221f1f","x":44.507,"y":15.178,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":8.029,"y":19.909,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":17.799,"w":0.75,"l":36.443},{"oc":"#221f1f","x":44.429,"y":19.112,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":8.029,"y":22.815,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":21.362,"w":0.75,"l":36.443},{"oc":"#221f1f","x":44.442,"y":22.197,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":8.029,"y":25.065,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":23.894,"w":0.75,"l":36.443},{"oc":"#221f1f","x":55.688,"y":16.44,"w":0.75,"l":36.224},{"oc":"#221f1f","x":55.688,"y":13.769,"w":0.75,"l":36.224},{"oc":"#221f1f","x":91.897,"y":15.144,"w":1.2000000000000002,"l":4.363},{"oc":"#221f1f","x":55.688,"y":19.55,"w":0.75,"l":36.224},{"oc":"#221f1f","x":55.688,"y":17.893,"w":0.75,"l":36.224},{"oc":"#221f1f","x":91.955,"y":18.849,"w":1.2000000000000002,"l":4.33},{"oc":"#221f1f","x":52.059,"y":21.841,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":55.688,"y":22.518,"w":0.75,"l":36.224},{"oc":"#221f1f","x":55.688,"y":20.956,"w":0.75,"l":36.224},{"oc":"#221f1f","x":91.945,"y":21.841,"w":1.2000000000000002,"l":4.271},{"oc":"#181616","x":49.035,"y":24.51,"w":1.2000000000000002,"l":5.5},{"oc":"#221f1f","x":55.688,"y":25.019,"w":0.75,"l":41.767},{"oc":"#221f1f","x":55.688,"y":23.956,"w":0.75,"l":41.767},{"oc":"#221f1f","x":6.145,"y":25.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":27,"w":0.75,"l":92.899},{"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":13.698},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":30,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":33,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":33,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":33,"w":1.125,"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":77.92,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":35.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":40.5,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.145,"y":42.75,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.17,"y":42.75,"w":1.5,"l":27.311},{"oc":"#221f1f","x":80.395,"y":42.75,"w":1.5,"l":18.617}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.031},{"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":84.15,"y":4.259,"w":1.5,"l":1.022},{"oc":"#221f1f","x":60.638,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.04,"y":11.562,"w":1.2000000000000002,"l":1.817},{"oc":"#221f1f","x":69.225,"y":11.25,"w":0.75,"l":1.063},{"oc":"#221f1f","x":37.427,"y":11.25,"w":0.75,"l":1.063},{"oc":"#221f1f","x":73.649,"y":11.562,"w":1.2000000000000002,"l":1.817},{"oc":"#181616","x":40.28,"y":12.955,"w":1.2000000000000002,"l":0.622},{"oc":"#181616","x":51.498,"y":12.961,"w":1.2000000000000002,"l":8.86},{"oc":"#221f1f","x":44.472,"y":13.811,"w":0.75,"l":2.583},{"oc":"#221f1f","x":8.029,"y":13.811,"w":0.75,"l":2.583},{"oc":"#221f1f","x":26.04,"y":16.398,"w":1.2000000000000002,"l":1.005},{"oc":"#221f1f","x":44.472,"y":17.799,"w":0.75,"l":2.11},{"oc":"#221f1f","x":8.029,"y":17.799,"w":0.75,"l":2.11},{"oc":"#221f1f","x":26.04,"y":19.906,"w":1.2000000000000002,"l":1.073},{"oc":"#221f1f","x":44.472,"y":21.362,"w":0.75,"l":1.453},{"oc":"#221f1f","x":8.029,"y":21.362,"w":0.75,"l":1.453},{"oc":"#221f1f","x":26.04,"y":22.83,"w":1.2000000000000002,"l":0.704},{"oc":"#221f1f","x":44.472,"y":23.894,"w":0.75,"l":1.171},{"oc":"#221f1f","x":8.029,"y":23.894,"w":0.75,"l":1.171},{"oc":"#221f1f","x":91.911,"y":13.769,"w":0.75,"l":2.672},{"oc":"#221f1f","x":55.688,"y":13.769,"w":0.75,"l":2.672},{"oc":"#181616","x":97.243,"y":15.124,"w":1.2000000000000002,"l":8.439},{"oc":"#221f1f","x":73.672,"y":16.422,"w":1.2000000000000002,"l":1.062},{"oc":"#221f1f","x":91.911,"y":17.893,"w":0.75,"l":1.657},{"oc":"#221f1f","x":55.688,"y":17.893,"w":0.75,"l":1.657},{"oc":"#221f1f","x":73.672,"y":19.556,"w":1.2000000000000002,"l":1.002},{"oc":"#221f1f","x":91.911,"y":20.956,"w":0.75,"l":1.562},{"oc":"#221f1f","x":55.688,"y":20.956,"w":0.75,"l":1.562},{"oc":"#181616","x":49.035,"y":15.17,"w":1.2000000000000002,"l":9.34},{"oc":"#221f1f","x":97.454,"y":23.956,"w":0.75,"l":1.063},{"oc":"#221f1f","x":55.688,"y":23.956,"w":0.75,"l":1.063},{"oc":"#221f1f","x":81.675,"y":26.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":26.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":29.984,"w":0.75,"l":3.039},{"oc":"#221f1f","x":77.963,"y":29.984,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":32.234,"w":0.75,"l":0.789},{"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.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":35.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":77.963,"y":35.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":40.484,"w":0.75,"l":2.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":77.963,"y":40.5,"w":21.038,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.009,"w":7.667999999999999,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20SE%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.7750000000000004,"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.275,"w":13.557000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":41.083,"y":2.469,"w":10.169,"clr":-1,"A":"left","R":[{"T":"Self-Employment%20Tax","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":23.421,"y":3.357,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.371,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.641,"y":4.242,"w":20.116999999999997,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20%20%20%20%20%20%20%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.33,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.998,"y":3.33,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":3.856,"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.302,"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.302,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.968,"w":9.575000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20with%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":17.286,"y":4.968,"w":7.946000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":26.754,"y":4.968,"w":15.134000000000004,"clr":-1,"A":"left","R":[{"T":"%20income%20(as%20shown%20on%20Form%201040)","S":2,"TS":[0,10,0,0]}]},{"oc":"#181616","x":61.419,"y":5.027,"w":15.299000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20person%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":61.419,"y":5.695,"w":2.129,"clr":-1,"A":"left","R":[{"T":"with%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":64.003,"y":5.695,"w":7.946000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#181616","x":74.333,"y":5.695,"w":3.8349999999999995,"clr":-1,"A":"left","R":[{"T":"%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":80.637,"y":5.601,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.833,"w":8.501,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.028,"y":6.833,"w":28.507,"clr":-1,"A":"left","R":[{"T":"To%20determine%20if%20you%20must%20file%20Schedule%20SE%2C%20see%20the%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.411,"w":30.06400000000001,"clr":-1,"A":"left","R":[{"T":"May%20I%20Use%20Short%20Schedule%20SE%20or%20Must%20I%20Use%20Long%20Schedule%20SE%3F","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":9.995,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.149,"y":9.995,"w":8.314,"clr":-1,"A":"left","R":[{"T":"Use%20this%20flowchart%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.635,"y":9.995,"w":3.2230000000000003,"clr":-1,"A":"left","R":[{"T":"only%20if%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.958,"y":9.995,"w":18.523000000000003,"clr":-1,"A":"left","R":[{"T":"you%20must%20file%20Schedule%20SE.%20If%20unsure%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.861,"y":9.995,"w":12.668000000000003,"clr":-1,"A":"left","R":[{"T":"Who%20Must%20File%20Schedule%20SE%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.91,"y":9.995,"w":8.484000000000002,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.477,"y":12.113,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":42.103,"y":11.129,"w":18.61900000000001,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20wages%20or%20tips%20in%202013%3F%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.743,"y":12.113,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.248,"y":12.944,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.494,"y":12.984,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.815,"y":12.898,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.81,"y":13.663,"w":26.930000000000003,"clr":-1,"A":"left","R":[{"T":"Are%20you%20a%20minister%2C%20member%20of%20a%20religious%20order%2C%20or%20Christian%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.806,"y":14.188,"w":21.481000000000005,"clr":-1,"A":"left","R":[{"T":"Science%20practitioner%20who%20received%20IRS%20approval%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":34.802,"y":14.188,"w":1.834,"clr":-1,"A":"left","R":[{"T":"not%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.033,"y":14.188,"w":5.353,"clr":-1,"A":"left","R":[{"T":"to%20be%20taxed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.809,"y":14.713,"w":14.651000000000005,"clr":-1,"A":"left","R":[{"T":"on%20earnings%20from%20these%20sources%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.851,"y":14.713,"w":1.833,"clr":-1,"A":"left","R":[{"T":"but%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":29.141,"y":14.713,"w":11.817,"clr":-1,"A":"left","R":[{"T":"you%20owe%20self-employment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.809,"y":15.238,"w":10.298,"clr":-1,"A":"left","R":[{"T":"tax%20on%20other%20earnings%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.644,"y":14.146,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":47.658,"y":14.529,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.477,"y":16.387,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.121,"y":16.931,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.81,"y":17.937,"w":27.136000000000003,"clr":-1,"A":"left","R":[{"T":"Are%20you%20using%20one%20of%20the%20optional%20methods%20to%20figure%20your%20net%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.808,"y":18.462,"w":12.483000000000002,"clr":-1,"A":"left","R":[{"T":"earnings%20(see%20instructions)%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.566,"y":18.081,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":47.658,"y":18.463,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.477,"y":19.962,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.121,"y":20.502,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.81,"y":21.173,"w":26.561000000000007,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20church%20employee%20income%20(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.814,"y":21.698,"w":19.896,"clr":-1,"A":"left","R":[{"T":"reported%20on%20Form%20%20W-2%20of%20%24108.28%20or%20more%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.579,"y":21.166,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":47.658,"y":21.548,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.477,"y":22.518,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.121,"y":23.056,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.916,"y":23.827,"w":18.784,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20Short%20Schedule%20SE%20below%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":56.469,"y":13.925,"w":27.966,"clr":-1,"A":"left","R":[{"T":"Was%20the%20total%20of%20your%20wages%20and%20tips%20subject%20to%20social%20security%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.466,"y":14.45,"w":14.315000000000005,"clr":-1,"A":"left","R":[{"T":"or%20railroad%20retirement%20(tier%201)%20tax%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.937,"y":14.45,"w":2.056,"clr":-1,"A":"left","R":[{"T":"plus","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":77.55,"y":14.45,"w":10.632,"clr":-1,"A":"left","R":[{"T":"%20your%20net%20earnings%20from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.47,"y":14.975,"w":17.305000000000007,"clr":-1,"A":"left","R":[{"T":"self-employment%20more%20than%20%24113%2C700%3F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.033,"y":14.113,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":95.977,"y":14.495,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.938,"y":16.593,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":72.815,"y":17.007,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.469,"y":17.803,"w":27.724999999999994,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20tips%20subject%20to%20social%20security%20or%20Medicare%20tax%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.472,"y":18.328,"w":3.9090000000000003,"clr":-1,"A":"left","R":[{"T":"that%20you%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.175,"y":18.328,"w":3.611,"clr":-1,"A":"left","R":[{"T":"did%20not%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":65.497,"y":18.328,"w":11.354000000000001,"clr":-1,"A":"left","R":[{"T":"report%20to%20your%20employer%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.092,"y":17.817,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":95.9,"y":18.199,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.938,"y":19.667,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":72.815,"y":20.059,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.783,"y":20.81,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.155,"y":21.179,"w":1,"clr":-1,"A":"left","R":[{"T":"%60","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.469,"y":20.822,"w":27.171000000000006,"clr":-1,"A":"left","R":[{"T":"Did%20you%20report%20any%20wages%20on%20Form%208919%2C%20Uncollected%20Social%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.471,"y":21.347,"w":17.28000000000001,"clr":-1,"A":"left","R":[{"T":"Security%20and%20Medicare%20Tax%20on%20Wages%3F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.082,"y":20.81,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":95.912,"y":21.192,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.091,"y":23.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.02,"y":23.835,"w":20.839000000000006,"clr":-1,"A":"left","R":[{"T":"You%20must%20use%20Long%20Schedule%20SE%20on%20page%202%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":96.281,"y":23.091,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":25.625,"w":19.783,"clr":-1,"A":"left","R":[{"T":"Section%20A%2C%20Short%20Schedule%20SE.%20%20%20Caution.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.756,"y":25.625,"w":24.133999999999997,"clr":-1,"A":"left","R":[{"T":"Read%20above%20to%20see%20if%20you%20can%20use%20Short%20Schedule%20SE.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.886,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.902,"w":41.56499999999999,"clr":-1,"A":"left","R":[{"T":"Net%20farm%20profit%20or%20(loss)%20from%20Schedule%20F%2C%20line%2034%2C%20and%20farm%20partnerships%2C%20Schedule%20K-1%20(Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":27.589,"w":9.837000000000003,"clr":-1,"A":"left","R":[{"T":"1065)%2C%20box%2014%2C%20code%20A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.557,"y":27.589,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.695,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":28.386,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":28.402,"w":46.949999999999974,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20social%20security%20retirement%20or%20disability%20benefits%2C%20enter%20the%20amount%20of%20Conservation%20Reserve%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.089,"w":47.977999999999966,"clr":-1,"A":"left","R":[{"T":"Program%20payments%20included%20on%20Schedule%20F%2C%20line%204b%2C%20or%20listed%20on%20Schedule%20K-1%20(Form%201065)%2C%20box%2020%2C%20code%20Z%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":78.666,"y":29.089,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.569,"y":29,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":98.206,"y":29,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":30.023,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":30.027,"w":42.34299999999998,"clr":-1,"A":"left","R":[{"T":"Net%20profit%20or%20(loss)%20from%20Schedule%20C%2C%20line%2031%3B%20Schedule%20C-EZ%2C%20line%203%3B%20Schedule%20K-1%20(Form%201065)%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.714,"w":38.88299999999999,"clr":-1,"A":"left","R":[{"T":"box%2014%2C%20code%20A%20(other%20than%20farming)%3B%20and%20Schedule%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J1.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.402,"w":40.85899999999997,"clr":-1,"A":"left","R":[{"T":"Ministers%20and%20members%20of%20religious%20orders%2C%20see%20instructions%20for%20types%20of%20income%20to%20report%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":23.189000000000004,"clr":-1,"A":"left","R":[{"T":"this%20line.%20See%20instructions%20for%20other%20income%20to%20report%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.189,"y":32.089,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":32.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":32.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":32.808,"w":12.802000000000005,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201a%2C%201b%2C%20and%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":32.808,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":32.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":33.635,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":33.605,"w":39.68000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%203%20by%2092.35%25%20(.9235).%20If%20less%20than%20%24400%2C%20you%20do%20not%20owe%20self-employment%20tax%3B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.149,"y":33.605,"w":1.778,"clr":-1,"A":"left","R":[{"T":"%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":34.303,"w":1.834,"clr":-1,"A":"left","R":[{"T":"not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.718,"y":34.303,"w":24.619000000000014,"clr":-1,"A":"left","R":[{"T":"file%20this%20schedule%20unless%20you%20have%20an%20amount%20on%20line%201b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.369,"y":34.303,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.238,"y":34.209,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.139,"y":34.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":35.152,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.428,"y":35.152,"w":38.231999999999985,"clr":-1,"A":"left","R":[{"T":"If%20line%204%20is%20less%20than%20%24400%20due%20to%20Conservation%20Reserve%20Program%20payments%20on%20line%201b%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":35.839,"w":7.316000000000001,"clr":-1,"A":"left","R":[{"T":"see%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.468,"y":36.589,"w":11.523000000000003,"clr":-1,"A":"left","R":[{"T":"If%20the%20amount%20on%20line%204%20is%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.402,"w":35.42099999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%24113%2C700%20or%20less%2C%20multiply%20line%204%20by%2015.3%25%20(.153).%20Enter%20the%20result%20here%20and%20on%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":60.05,"y":37.402,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2056%2C%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":10.889,"y":38.089,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":12.222,"y":38.089,"w":10.671000000000005,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2054%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":10.888,"y":38.839,"w":39.74199999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20More%20than%20%24113%2C700%2C%20multiply%20line%204%20by%202.9%25%20(.029).%20Then%2C%20add%20%2414%2C098.80%20to%20the%20result.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.59,"w":12.170000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20here%20and%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.822,"y":39.59,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2056%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.657,"y":39.59,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.232,"y":39.59,"w":10.393000000000004,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2054","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":61.625,"y":39.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":39.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":40.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":40.339,"w":22.392,"clr":-1,"A":"left","R":[{"T":"Deduction%20for%20one-half%20of%20self-employment%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.058,"w":25.045,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205%20by%2050%25%20(.50).%20Enter%20the%20result%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.986,"y":41.058,"w":3.056,"clr":-1,"A":"left","R":[{"T":"%20Form%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.746,"w":6.409000000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2027%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.942,"y":41.746,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.345,"y":41.746,"w":10.671000000000005,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2027%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.937,"y":41.746,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.101,"y":41.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.607,"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":62.14,"y":42.625,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011358Z","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.425,"y":42.625,"w":14.784000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"x":63.559,"y":43.844,"w":92.28000000000002,"clr":0,"A":"left","R":[{"T":"Schedule%20SE%20Page%202","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.835,"y":3.4509999999999996,"w":43.17999999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20SE%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fschedulese.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":7.559,"y":36.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.894,"y":36.589,"w":10.336000000000002,"clr":-1,"A":"left","R":[{"T":"Self-employment%20tax.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8990,"AM":1024,"x":6.453,"y":5.89,"w":54.21,"h":0.837,"TU":"Name of person with self-employment income (as shown on Form 1040)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8991,"AM":1024,"x":82.799,"y":5.829,"w":15.466,"h":0.899,"TU":"Social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8992,"AM":0,"x":81.636,"y":27.612,"w":13.636,"h":0.873,"TU":"Line 1a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONSRES","EN":0},"TI":8993,"AM":0,"x":81.652,"y":29.185,"w":13.654,"h":0.833,"TU":"Line 1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8994,"AM":0,"x":81.623,"y":32.077,"w":13.662,"h":0.873,"TU":"Line 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8995,"AM":0,"x":81.703,"y":33.045,"w":13.577,"h":0.833,"TU":"Line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":8996,"AM":1024,"x":81.636,"y":34.498,"w":13.711,"h":0.833,"TU":"Line 4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":8997,"AM":1024,"x":81.698,"y":39.641,"w":13.512,"h":0.844,"TU":"Line 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8998,"AM":1024,"x":60.673,"y":41.933,"w":13.487,"h":0.833,"TU":"Enter the total here and on Form 1040, line 56, or Form 1040NR, line 54"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHSELS"}},"id":{"Id":"Add_SCHSE_Page_2","EN":0},"TI":8999,"AM":0,"x":81.614,"y":43.801,"w":5.17,"h":0.936}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHSEST.content.txt b/test/data/fd/form/FSCHSEST.content.txt new file mode 100755 index 00000000..fa71655e --- /dev/null +++ b/test/data/fd/form/FSCHSEST.content.txt @@ -0,0 +1,157 @@ +SCHEDULE SE +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Self-Employment Tax +a + +a + +Attach to Form 1040 or Form 1040NR. + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +17 +Name of person with +self-employment + income (as shown on Form 1040) +Social security number of person +with +self-employment + income +a + +Before you begin: + +To determine if you must file Schedule SE, see the instructions. +May I Use Short Schedule SE or Must I Use Long Schedule SE? +Note. +Use this flowchart +only if +you must file Schedule SE. If unsure, see +Who Must File Schedule SE +in the instructions. +No +Did you receive wages or tips in 2013? +Yes +d +d +d +Are you a minister, member of a religious order, or Christian +Science practitioner who received IRS approval +not +to be taxed +on earnings from these sources, +but +you owe self-employment +tax on other earnings? +Yes +a +No +d +Are you using one of the optional methods to figure your net +earnings (see instructions)? +Yes +a +No +d +Did you receive church employee income (see instructions) +reported on Form W-2 of $108.28 or more? +Yes +a +No +d +You may use Short Schedule SE below +Was the total of your wages and tips subject to social security +or railroad retirement (tier 1) tax +plus + your net earnings from +self-employment more than $113,700? +Yes +a +No +d +Did you receive tips subject to social security or Medicare tax +that you +did not +report to your employer? +Yes +a +No +d +No +` +Did you report any wages on Form 8919, Uncollected Social +Security and Medicare Tax on Wages? +Yes +a +a +You must use Long Schedule SE on page 2 +d +Section A, Short Schedule SE. Caution. +Read above to see if you can use Short Schedule SE. +1a +Net farm profit or (loss) from Schedule F, line 34, and farm partnerships, Schedule K-1 (Form +1065), box 14, code A +........................ +1a +b +If you received social security retirement or disability benefits, enter the amount of Conservation Reserve +Program payments included on Schedule F, line 4b, or listed on Schedule K-1 (Form 1065), box 20, code Z +1b +( +) +2 +Net profit or (loss) from Schedule C, line 31; Schedule C-EZ, line 3; Schedule K-1 (Form 1065), +box 14, code A (other than farming); and Schedule K-1 (Form 1065-B), box 9, code J1. +Ministers and members of religious orders, see instructions for types of income to report on +this line. See instructions for other income to report +.............. +2 +3 +Combine lines 1a, 1b, and 2 +..................... +3 +4 +Multiply line 3 by 92.35% (.9235). If less than $400, you do not owe self-employment tax; + do +not +file this schedule unless you have an amount on line 1b +........... +a +4 +Note. +If line 4 is less than $400 due to Conservation Reserve Program payments on line 1b, +see instructions. +If the amount on line 4 is: +• $113,700 or less, multiply line 4 by 15.3% (.153). Enter the result here and on +Form 1040, line 56, +or + Form 1040NR, line 54 +• More than $113,700, multiply line 4 by 2.9% (.029). Then, add $14,098.80 to the result. +Enter the total here and on +Form 1040, line 56, +or + Form 1040NR, line 54 +....... +5 +6 Deduction for one-half of self-employment tax. +Multiply line 5 by 50% (.50). Enter the result here and on + Form +1040, line 27, +or + Form 1040NR, line 27 +........ +6 +For Paperwork Reduction Act Notice, see your tax return instructions. +Cat. No. 11358Z +Schedule SE (Form 1040) 2013 +Schedule SE Page 2 +Information about Schedule SE and its separate instructions is at www.irs.gov/schedulese. +5 + +Self-employment tax. +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FSCHSEST.fields.json b/test/data/fd/form/FSCHSEST.fields.json new file mode 100755 index 00000000..ce301784 --- /dev/null +++ b/test/data/fd/form/FSCHSEST.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"CONSRES","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"Add_SCHSE_Page_2","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FSCHSEST.json b/test/data/fd/form/FSCHSEST.json new file mode 100755 index 00000000..eca75d94 --- /dev/null +++ b/test/data/fd/form/FSCHSEST.json @@ -0,0 +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.201},{"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":54.536},{"oc":"#221f1f","x":60.595,"y":6.75,"w":1.125,"l":38.448},{"oc":"#221f1f","x":6.145,"y":8.25,"w":1.125,"l":92.899},{"oc":"#181616","x":26.025,"y":11.58,"w":1.2000000000000002,"l":11.296},{"oc":"#221f1f","x":37.427,"y":12.313,"w":0.75,"l":31.798},{"oc":"#221f1f","x":37.427,"y":11.25,"w":0.75,"l":31.798},{"oc":"#181616","x":69.245,"y":11.58,"w":1.2000000000000002,"l":4.427},{"oc":"#181616","x":40.281,"y":12.955,"w":1.2000000000000002,"l":11.241},{"oc":"#221f1f","x":8.029,"y":16.394,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":13.811,"w":0.75,"l":36.443},{"oc":"#221f1f","x":44.507,"y":15.178,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":8.029,"y":19.909,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":17.799,"w":0.75,"l":36.443},{"oc":"#221f1f","x":44.429,"y":19.112,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":8.029,"y":22.815,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":21.362,"w":0.75,"l":36.443},{"oc":"#221f1f","x":44.442,"y":22.197,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":8.029,"y":25.065,"w":0.75,"l":36.443},{"oc":"#221f1f","x":8.029,"y":23.894,"w":0.75,"l":36.443},{"oc":"#221f1f","x":55.688,"y":16.44,"w":0.75,"l":36.224},{"oc":"#221f1f","x":55.688,"y":13.769,"w":0.75,"l":36.224},{"oc":"#221f1f","x":91.897,"y":15.144,"w":1.2000000000000002,"l":4.363},{"oc":"#221f1f","x":55.688,"y":19.55,"w":0.75,"l":36.224},{"oc":"#221f1f","x":55.688,"y":17.893,"w":0.75,"l":36.224},{"oc":"#221f1f","x":91.955,"y":18.849,"w":1.2000000000000002,"l":4.33},{"oc":"#221f1f","x":52.059,"y":21.841,"w":1.2000000000000002,"l":3.574},{"oc":"#221f1f","x":55.688,"y":22.518,"w":0.75,"l":36.224},{"oc":"#221f1f","x":55.688,"y":20.956,"w":0.75,"l":36.224},{"oc":"#221f1f","x":91.945,"y":21.841,"w":1.2000000000000002,"l":4.271},{"oc":"#181616","x":49.035,"y":24.51,"w":1.2000000000000002,"l":5.5},{"oc":"#221f1f","x":55.688,"y":25.019,"w":0.75,"l":41.767},{"oc":"#221f1f","x":55.688,"y":23.956,"w":0.75,"l":41.767},{"oc":"#221f1f","x":6.145,"y":25.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":27,"w":0.75,"l":92.899},{"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":13.698},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":30,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":33,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":33,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":33,"w":1.125,"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":77.92,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":35.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":40.5,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.145,"y":42.75,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.17,"y":42.75,"w":1.5,"l":27.311},{"oc":"#221f1f","x":80.395,"y":42.75,"w":1.5,"l":18.617}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.031},{"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":84.15,"y":4.259,"w":1.5,"l":1.022},{"oc":"#221f1f","x":60.638,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":26.04,"y":11.562,"w":1.2000000000000002,"l":1.817},{"oc":"#221f1f","x":69.225,"y":11.25,"w":0.75,"l":1.063},{"oc":"#221f1f","x":37.427,"y":11.25,"w":0.75,"l":1.063},{"oc":"#221f1f","x":73.649,"y":11.562,"w":1.2000000000000002,"l":1.817},{"oc":"#181616","x":40.28,"y":12.955,"w":1.2000000000000002,"l":0.622},{"oc":"#181616","x":51.498,"y":12.961,"w":1.2000000000000002,"l":8.86},{"oc":"#221f1f","x":44.472,"y":13.811,"w":0.75,"l":2.583},{"oc":"#221f1f","x":8.029,"y":13.811,"w":0.75,"l":2.583},{"oc":"#221f1f","x":26.04,"y":16.398,"w":1.2000000000000002,"l":1.005},{"oc":"#221f1f","x":44.472,"y":17.799,"w":0.75,"l":2.11},{"oc":"#221f1f","x":8.029,"y":17.799,"w":0.75,"l":2.11},{"oc":"#221f1f","x":26.04,"y":19.906,"w":1.2000000000000002,"l":1.073},{"oc":"#221f1f","x":44.472,"y":21.362,"w":0.75,"l":1.453},{"oc":"#221f1f","x":8.029,"y":21.362,"w":0.75,"l":1.453},{"oc":"#221f1f","x":26.04,"y":22.83,"w":1.2000000000000002,"l":0.704},{"oc":"#221f1f","x":44.472,"y":23.894,"w":0.75,"l":1.171},{"oc":"#221f1f","x":8.029,"y":23.894,"w":0.75,"l":1.171},{"oc":"#221f1f","x":91.911,"y":13.769,"w":0.75,"l":2.672},{"oc":"#221f1f","x":55.688,"y":13.769,"w":0.75,"l":2.672},{"oc":"#181616","x":97.243,"y":15.124,"w":1.2000000000000002,"l":8.439},{"oc":"#221f1f","x":73.672,"y":16.422,"w":1.2000000000000002,"l":1.062},{"oc":"#221f1f","x":91.911,"y":17.893,"w":0.75,"l":1.657},{"oc":"#221f1f","x":55.688,"y":17.893,"w":0.75,"l":1.657},{"oc":"#221f1f","x":73.672,"y":19.556,"w":1.2000000000000002,"l":1.002},{"oc":"#221f1f","x":91.911,"y":20.956,"w":0.75,"l":1.562},{"oc":"#221f1f","x":55.688,"y":20.956,"w":0.75,"l":1.562},{"oc":"#181616","x":49.035,"y":15.17,"w":1.2000000000000002,"l":9.34},{"oc":"#221f1f","x":97.454,"y":23.956,"w":0.75,"l":1.063},{"oc":"#221f1f","x":55.688,"y":23.956,"w":0.75,"l":1.063},{"oc":"#221f1f","x":81.675,"y":26.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":26.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":29.984,"w":0.75,"l":3.039},{"oc":"#221f1f","x":77.963,"y":29.984,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":32.234,"w":0.75,"l":0.789},{"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.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":35.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":77.963,"y":35.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":40.484,"w":0.75,"l":2.281}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":77.963,"y":40.5,"w":21.038,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.009,"w":7.667999999999999,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20SE%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.7750000000000004,"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.275,"w":13.557000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":41.083,"y":2.469,"w":10.169,"clr":-1,"A":"left","R":[{"T":"Self-Employment%20Tax","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":23.421,"y":3.357,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":39.371,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.641,"y":4.242,"w":20.116999999999997,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.%20%20%20%20%20%20%20%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.33,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.998,"y":3.33,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":3.856,"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.302,"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.302,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.968,"w":9.575000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20with%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":17.286,"y":4.968,"w":7.946000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":26.754,"y":4.968,"w":15.134000000000004,"clr":-1,"A":"left","R":[{"T":"%20income%20(as%20shown%20on%20Form%201040)","S":2,"TS":[0,10,0,0]}]},{"oc":"#181616","x":61.419,"y":5.027,"w":15.299000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20of%20person%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":61.419,"y":5.695,"w":2.129,"clr":-1,"A":"left","R":[{"T":"with%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":64.003,"y":5.695,"w":7.946000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#181616","x":74.333,"y":5.695,"w":3.8349999999999995,"clr":-1,"A":"left","R":[{"T":"%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":80.637,"y":5.601,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.833,"w":8.501,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.028,"y":6.833,"w":28.507,"clr":-1,"A":"left","R":[{"T":"To%20determine%20if%20you%20must%20file%20Schedule%20SE%2C%20see%20the%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.411,"w":30.06400000000001,"clr":-1,"A":"left","R":[{"T":"May%20I%20Use%20Short%20Schedule%20SE%20or%20Must%20I%20Use%20Long%20Schedule%20SE%3F","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":9.995,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.149,"y":9.995,"w":8.314,"clr":-1,"A":"left","R":[{"T":"Use%20this%20flowchart%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.635,"y":9.995,"w":3.2230000000000003,"clr":-1,"A":"left","R":[{"T":"only%20if%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.958,"y":9.995,"w":18.523000000000003,"clr":-1,"A":"left","R":[{"T":"you%20must%20file%20Schedule%20SE.%20If%20unsure%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.861,"y":9.995,"w":12.668000000000003,"clr":-1,"A":"left","R":[{"T":"Who%20Must%20File%20Schedule%20SE%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.91,"y":9.995,"w":8.484000000000002,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.477,"y":12.113,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":42.103,"y":11.129,"w":18.61900000000001,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20wages%20or%20tips%20in%202013%3F%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":73.743,"y":12.113,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.248,"y":12.944,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.494,"y":12.984,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.815,"y":12.898,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.81,"y":13.663,"w":26.930000000000003,"clr":-1,"A":"left","R":[{"T":"Are%20you%20a%20minister%2C%20member%20of%20a%20religious%20order%2C%20or%20Christian%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.806,"y":14.188,"w":21.481000000000005,"clr":-1,"A":"left","R":[{"T":"Science%20practitioner%20who%20received%20IRS%20approval%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":34.802,"y":14.188,"w":1.834,"clr":-1,"A":"left","R":[{"T":"not%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.033,"y":14.188,"w":5.353,"clr":-1,"A":"left","R":[{"T":"to%20be%20taxed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.809,"y":14.713,"w":14.651000000000005,"clr":-1,"A":"left","R":[{"T":"on%20earnings%20from%20these%20sources%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.851,"y":14.713,"w":1.833,"clr":-1,"A":"left","R":[{"T":"but%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":29.141,"y":14.713,"w":11.817,"clr":-1,"A":"left","R":[{"T":"you%20owe%20self-employment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.809,"y":15.238,"w":10.298,"clr":-1,"A":"left","R":[{"T":"tax%20on%20other%20earnings%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.644,"y":14.146,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":47.658,"y":14.529,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.477,"y":16.387,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.121,"y":16.931,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.81,"y":17.937,"w":27.136000000000003,"clr":-1,"A":"left","R":[{"T":"Are%20you%20using%20one%20of%20the%20optional%20methods%20to%20figure%20your%20net%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.808,"y":18.462,"w":12.483000000000002,"clr":-1,"A":"left","R":[{"T":"earnings%20(see%20instructions)%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.566,"y":18.081,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":47.658,"y":18.463,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.477,"y":19.962,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.121,"y":20.502,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.81,"y":21.173,"w":26.561000000000007,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20church%20employee%20income%20(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.814,"y":21.698,"w":19.896,"clr":-1,"A":"left","R":[{"T":"reported%20on%20Form%20%20W-2%20of%20%24108.28%20or%20more%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.579,"y":21.166,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":47.658,"y":21.548,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.477,"y":22.518,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.121,"y":23.056,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.916,"y":23.827,"w":18.784,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20Short%20Schedule%20SE%20below%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":56.469,"y":13.925,"w":27.966,"clr":-1,"A":"left","R":[{"T":"Was%20the%20total%20of%20your%20wages%20and%20tips%20subject%20to%20social%20security%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.466,"y":14.45,"w":14.315000000000005,"clr":-1,"A":"left","R":[{"T":"or%20railroad%20retirement%20(tier%201)%20tax%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.937,"y":14.45,"w":2.056,"clr":-1,"A":"left","R":[{"T":"plus","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":77.55,"y":14.45,"w":10.632,"clr":-1,"A":"left","R":[{"T":"%20your%20net%20earnings%20from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.47,"y":14.975,"w":17.305000000000007,"clr":-1,"A":"left","R":[{"T":"self-employment%20more%20than%20%24113%2C700%3F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.033,"y":14.113,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":95.977,"y":14.495,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.938,"y":16.593,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":72.815,"y":17.007,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.469,"y":17.803,"w":27.724999999999994,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20tips%20subject%20to%20social%20security%20or%20Medicare%20tax%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.472,"y":18.328,"w":3.9090000000000003,"clr":-1,"A":"left","R":[{"T":"that%20you%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.175,"y":18.328,"w":3.611,"clr":-1,"A":"left","R":[{"T":"did%20not%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":65.497,"y":18.328,"w":11.354000000000001,"clr":-1,"A":"left","R":[{"T":"report%20to%20your%20employer%3F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.092,"y":17.817,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":95.9,"y":18.199,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.938,"y":19.667,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":72.815,"y":20.059,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.783,"y":20.81,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.155,"y":21.179,"w":1,"clr":-1,"A":"left","R":[{"T":"%60","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.469,"y":20.822,"w":27.171000000000006,"clr":-1,"A":"left","R":[{"T":"Did%20you%20report%20any%20wages%20on%20Form%208919%2C%20Uncollected%20Social%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.471,"y":21.347,"w":17.28000000000001,"clr":-1,"A":"left","R":[{"T":"Security%20and%20Medicare%20Tax%20on%20Wages%3F","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.082,"y":20.81,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":95.912,"y":21.192,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.091,"y":23.87,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.02,"y":23.835,"w":20.839000000000006,"clr":-1,"A":"left","R":[{"T":"You%20must%20use%20Long%20Schedule%20SE%20on%20page%202%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":96.281,"y":23.091,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":25.625,"w":19.783,"clr":-1,"A":"left","R":[{"T":"Section%20A%2C%20Short%20Schedule%20SE.%20%20%20Caution.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.756,"y":25.625,"w":24.133999999999997,"clr":-1,"A":"left","R":[{"T":"Read%20above%20to%20see%20if%20you%20can%20use%20Short%20Schedule%20SE.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.886,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.902,"w":41.56499999999999,"clr":-1,"A":"left","R":[{"T":"Net%20farm%20profit%20or%20(loss)%20from%20Schedule%20F%2C%20line%2034%2C%20and%20farm%20partnerships%2C%20Schedule%20K-1%20(Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":27.589,"w":9.837000000000003,"clr":-1,"A":"left","R":[{"T":"1065)%2C%20box%2014%2C%20code%20A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.557,"y":27.589,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.695,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":28.386,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":28.402,"w":46.949999999999974,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20social%20security%20retirement%20or%20disability%20benefits%2C%20enter%20the%20amount%20of%20Conservation%20Reserve%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.089,"w":47.977999999999966,"clr":-1,"A":"left","R":[{"T":"Program%20payments%20included%20on%20Schedule%20F%2C%20line%204b%2C%20or%20listed%20on%20Schedule%20K-1%20(Form%201065)%2C%20box%2020%2C%20code%20Z%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":78.666,"y":29.089,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":81.569,"y":29,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":98.206,"y":29,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":30.023,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":30.027,"w":42.34299999999998,"clr":-1,"A":"left","R":[{"T":"Net%20profit%20or%20(loss)%20from%20Schedule%20C%2C%20line%2031%3B%20Schedule%20C-EZ%2C%20line%203%3B%20Schedule%20K-1%20(Form%201065)%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.714,"w":38.88299999999999,"clr":-1,"A":"left","R":[{"T":"box%2014%2C%20code%20A%20(other%20than%20farming)%3B%20and%20Schedule%20K-1%20(Form%201065-B)%2C%20box%209%2C%20code%20J1.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.402,"w":40.85899999999997,"clr":-1,"A":"left","R":[{"T":"Ministers%20and%20members%20of%20religious%20orders%2C%20see%20instructions%20for%20types%20of%20income%20to%20report%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.089,"w":23.189000000000004,"clr":-1,"A":"left","R":[{"T":"this%20line.%20See%20instructions%20for%20other%20income%20to%20report%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.189,"y":32.089,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":32.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":32.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":32.808,"w":12.802000000000005,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201a%2C%201b%2C%20and%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":32.808,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":32.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":33.635,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":33.605,"w":39.68000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%203%20by%2092.35%25%20(.9235).%20If%20less%20than%20%24400%2C%20you%20do%20not%20owe%20self-employment%20tax%3B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.149,"y":33.605,"w":1.778,"clr":-1,"A":"left","R":[{"T":"%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":34.303,"w":1.834,"clr":-1,"A":"left","R":[{"T":"not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.718,"y":34.303,"w":24.619000000000014,"clr":-1,"A":"left","R":[{"T":"file%20this%20schedule%20unless%20you%20have%20an%20amount%20on%20line%201b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.369,"y":34.303,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.238,"y":34.209,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.139,"y":34.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":35.152,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.428,"y":35.152,"w":38.231999999999985,"clr":-1,"A":"left","R":[{"T":"If%20line%204%20is%20less%20than%20%24400%20due%20to%20Conservation%20Reserve%20Program%20payments%20on%20line%201b%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":35.839,"w":7.316000000000001,"clr":-1,"A":"left","R":[{"T":"see%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.468,"y":36.589,"w":11.523000000000003,"clr":-1,"A":"left","R":[{"T":"If%20the%20amount%20on%20line%204%20is%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.402,"w":35.42099999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%24113%2C700%20or%20less%2C%20multiply%20line%204%20by%2015.3%25%20(.153).%20Enter%20the%20result%20here%20and%20on%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":60.05,"y":37.402,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2056%2C%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":10.889,"y":38.089,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":12.222,"y":38.089,"w":10.671000000000005,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2054%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":10.888,"y":38.839,"w":39.74199999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20More%20than%20%24113%2C700%2C%20multiply%20line%204%20by%202.9%25%20(.029).%20Then%2C%20add%20%2414%2C098.80%20to%20the%20result.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.59,"w":12.170000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20here%20and%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.822,"y":39.59,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2056%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.657,"y":39.59,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.232,"y":39.59,"w":10.393000000000004,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2054","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":61.625,"y":39.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.139,"y":39.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.552,"y":40.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":40.339,"w":22.392,"clr":-1,"A":"left","R":[{"T":"Deduction%20for%20one-half%20of%20self-employment%20tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.058,"w":25.045,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%205%20by%2050%25%20(.50).%20Enter%20the%20result%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.986,"y":41.058,"w":3.056,"clr":-1,"A":"left","R":[{"T":"%20Form%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.746,"w":6.409000000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%2027%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.942,"y":41.746,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.345,"y":41.746,"w":10.671000000000005,"clr":-1,"A":"left","R":[{"T":"%20Form%201040NR%2C%20line%2027%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.937,"y":41.746,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.101,"y":41.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.607,"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":62.14,"y":42.625,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011358Z","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.425,"y":42.625,"w":14.784000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"x":63.559,"y":43.844,"w":92.28000000000002,"clr":0,"A":"left","R":[{"T":"Schedule%20SE%20Page%202","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.835,"y":3.4509999999999996,"w":43.17999999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20SE%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fschedulese.","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":7.559,"y":36.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.894,"y":36.589,"w":10.336000000000002,"clr":-1,"A":"left","R":[{"T":"Self-employment%20tax.%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":9000,"AM":1024,"x":6.453,"y":5.89,"w":54.21,"h":0.837,"TU":"Name of person with self-employment income (as shown on Form 1040)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":9001,"AM":1024,"x":82.799,"y":5.829,"w":15.466,"h":0.899,"TU":"Social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":9002,"AM":0,"x":81.636,"y":27.612,"w":13.636,"h":0.873,"TU":"Line 1a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONSRES","EN":0},"TI":9003,"AM":0,"x":81.652,"y":29.185,"w":13.654,"h":0.833,"TU":"Line 1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":9004,"AM":0,"x":81.623,"y":32.077,"w":13.662,"h":0.873,"TU":"Line 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":9005,"AM":0,"x":81.703,"y":33.045,"w":13.577,"h":0.833,"TU":"Line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":9006,"AM":1024,"x":81.636,"y":34.498,"w":13.711,"h":0.833,"TU":"Line 4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":9007,"AM":1024,"x":81.698,"y":39.641,"w":13.512,"h":0.844,"TU":"Line 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":9008,"AM":1024,"x":60.673,"y":41.933,"w":13.487,"h":0.833,"TU":"Enter the total here and on Form 1040, line 56, or Form 1040NR, line 54"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHSELT"}},"id":{"Id":"Add_SCHSE_Page_2","EN":0},"TI":9009,"AM":0,"x":81.614,"y":43.801,"w":5.17,"h":0.936}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/form/FW2G.content.txt b/test/data/fd/form/FW2G.content.txt new file mode 100755 index 00000000..bcb6f83d --- /dev/null +++ b/test/data/fd/form/FW2G.content.txt @@ -0,0 +1,92 @@ + +Form W-2G +20 +13 +Certain + Gambling + Winnings +Copy C + +For Winner's Records +Department of the Treasury - Internal Revenue Service +This is important tax +information and is +being +furnished to the +Internal +Revenue Service. If +you are required to +file a return, a +negligence penalty or +other sanction may +be imposed on you if +this income is taxable +and the IRS +determines that +it has not been +reported. +OMB No. 1545-0238 +CORRECTED (if checked) +Under penalties of perjury, I declare that, to the best of my knowledge and belief, the name, address, and taxpayer identificat +ion number that I have furnished +correctly identify me as the recipient of this payment and any payments from identical wagers, and that no other person is enti +tled to any part of these payments. +Signature + +a +Date + +a +Form +W-2G +www.irs.gov/w2g +PAYER’S name, street address, city or town, province or state, country, ZIP +or foreign postal code +Federal identification number Telephone number +WINNER’S name +Street address (including apt. no.) +City or town, province or state, country, and ZIP or foreign postal code +1 +Gross winnings +$ +2 +Date won +3 +Type of wager +4 +Federal income tax withheld +$ +5 +Transaction +6 +Race +7 +Winnings from identical wagers +$ +8 +Cashier +9 +Winner’s taxpayer identification no. +10 +Window +11 +First I.D. +12 +Second I.D. +13 +State/Payer’s state identification no. +14 + State winnings +$ +15 +State income tax withheld +$ +16 +Local winnings +$ +17 +Local income tax withheld +$ +18 +Name of locality +----------------Page (0) Break---------------- diff --git a/test/data/fd/form/FW2G.fields.json b/test/data/fd/form/FW2G.fields.json new file mode 100755 index 00000000..fc766f3b --- /dev/null +++ b/test/data/fd/form/FW2G.fields.json @@ -0,0 +1 @@ +[{"id":"CORRX","type":"box","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L4","type":"date","calc":false,"value":""},{"id":"L3","type":"alpha","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"PADD","type":"alpha","calc":false,"value":""},{"id":"PCTY","type":"alpha","calc":false,"value":""},{"id":"PST","type":"mask","calc":false,"value":""},{"id":"PZIP","type":"ssn","calc":false,"value":""},{"id":"L5","type":"alpha","calc":false,"value":""},{"id":"L6","type":"alpha","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"alpha","calc":false,"value":""},{"id":"PFIN","type":"mask","calc":false,"value":""},{"id":"PHONE","type":"alpha","calc":false,"value":""},{"id":"L9","type":"ssn","calc":false,"value":""},{"id":"L10","type":"alpha","calc":false,"value":""},{"id":"WNAM","type":"alpha","calc":false,"value":""},{"id":"L11","type":"alpha","calc":false,"value":""},{"id":"L12","type":"alpha","calc":false,"value":""},{"id":"WADD","type":"alpha","calc":false,"value":""},{"id":"L13B","type":"alpha","calc":false,"value":""},{"id":"L13A","type":"mask","calc":false,"value":""},{"id":"WCITY","type":"alpha","calc":false,"value":""},{"id":"WST","type":"mask","calc":false,"value":""},{"id":"WZIP","type":"zip","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/fd/form/FW2G.json b/test/data/fd/form/FW2G.json new file mode 100755 index 00000000..ac92f6fe --- /dev/null +++ b/test/data/fd/form/FW2G.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form W-2G","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":85.302,"y":9,"w":1.125,"l":13.741},{"oc":"#221f1f","x":85.302,"y":19.5,"w":1.5,"l":13.741},{"oc":"#221f1f","x":69.257,"y":22.5,"w":1.5,"l":29.786},{"oc":"#221f1f","x":85.302,"y":18,"w":1.125,"l":13.741},{"oc":"#221f1f","x":8.62,"y":22.5,"w":1.5,"l":8.748},{"oc":"#221f1f","x":17.282,"y":22.5,"w":1.5,"l":52.061},{"oc":"#221f1f","x":8.577,"y":2.25,"w":1.5,"l":42.204},{"oc":"#221f1f","x":8.577,"y":8.25,"w":0.75,"l":42.204},{"oc":"#221f1f","x":8.577,"y":9.75,"w":0.75,"l":42.204},{"oc":"#221f1f","x":8.577,"y":13.5,"w":1.2000000000000002,"l":42.204},{"oc":"#221f1f","x":8.577,"y":15,"w":0.75,"l":42.204},{"oc":"#221f1f","x":8.577,"y":17.25,"w":0.75,"l":42.204},{"oc":"#221f1f","x":8.577,"y":19.5,"w":1.5,"l":42.204},{"oc":"#221f1f","x":50.695,"y":2.25,"w":1.5,"l":17.411},{"oc":"#221f1f","x":50.695,"y":3.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":2.25,"w":1.5,"l":17.411},{"oc":"#221f1f","x":68.02,"y":3.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":50.695,"y":5.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":5.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":50.695,"y":6.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":6.762,"w":0.75,"l":17.411},{"oc":"#221f1f","x":50.695,"y":8.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":8.25,"w":0.75,"l":17.437},{"oc":"#221f1f","x":50.695,"y":10.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":10.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":50.695,"y":12.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":12.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":50.695,"y":15,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":15,"w":0.75,"l":17.411},{"oc":"#221f1f","x":50.695,"y":17.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":68.02,"y":17.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":50.695,"y":19.5,"w":1.5,"l":17.411},{"oc":"#221f1f","x":68.02,"y":19.5,"w":1.5,"l":17.411}],"VLines":[{"oc":"#221f1f","x":85.388,"y":4.484,"w":1.5,"l":0.781},{"oc":"#221f1f","x":85.388,"y":2.984,"w":1.5,"l":1.531},{"oc":"#221f1f","x":85.388,"y":5.234,"w":1.5,"l":3.789},{"oc":"#221f1f","x":85.388,"y":17.984,"w":1.5,"l":1.547},{"oc":"#221f1f","x":85.388,"y":8.984,"w":1.5,"l":9.039},{"oc":"#221f1f","x":85.388,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":8.662,"y":19.469,"w":1.5,"l":1.547},{"oc":"#221f1f","x":8.662,"y":20.984,"w":1.5,"l":1.547},{"oc":"#221f1f","x":8.662,"y":2.219,"w":1.5,"l":6.047},{"oc":"#221f1f","x":8.662,"y":8.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":8.662,"y":9.734,"w":1.5,"l":3.791},{"oc":"#221f1f","x":50.738,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.662,"y":13.485,"w":1.5,"l":1.531},{"oc":"#221f1f","x":8.662,"y":14.984,"w":1.5,"l":2.297},{"oc":"#221f1f","x":50.738,"y":17.234,"w":0.75,"l":2.297},{"oc":"#221f1f","x":8.662,"y":17.234,"w":1.5,"l":2.297},{"oc":"#221f1f","x":50.738,"y":2.219,"w":0.75,"l":0.797},{"oc":"#221f1f","x":50.738,"y":2.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.063,"y":2.219,"w":0.75,"l":1.547},{"oc":"#221f1f","x":50.738,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.063,"y":3.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.063,"y":4.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":68.063,"y":5.234,"w":0.75,"l":1.543},{"oc":"#221f1f","x":50.738,"y":6.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":50.738,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.063,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":8.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":68.063,"y":8.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.738,"y":10.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":68.063,"y":10.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.738,"y":12.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":68.063,"y":12.727,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.063,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":14.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":50.738,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.063,"y":14.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.063,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.063,"y":17.234,"w":0.75,"l":2.297}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":8.662,"y":17.25,"w":42.075,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":87.524,"y":4.329,"w":5.4430000000000005,"clr":-1,"A":"left","R":[{"T":"Form%20W-2G","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":89.813,"y":3.268,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":94.158,"y":3.268,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":92.169,"y":5.81,"w":3.759,"clr":-1,"A":"left","R":[{"T":"Certain%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":89.585,"y":6.56,"w":5.1259999999999994,"clr":-1,"A":"left","R":[{"T":"%20Gambling%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":89.931,"y":7.3100000000000005,"w":4.665,"clr":-1,"A":"left","R":[{"T":"%20Winnings","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":93.936,"y":17.946,"w":3.779,"clr":-1,"A":"left","R":[{"T":"Copy%20C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.963,"y":18.634,"w":10.333,"clr":-1,"A":"left","R":[{"T":"For%20Winner's%20Records","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":69.515,"y":22.375,"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":86.271,"y":9.157,"w":9.354000000000003,"clr":-1,"A":"left","R":[{"T":"This%20is%20important%20tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.748,"y":9.657,"w":8.280000000000003,"clr":-1,"A":"left","R":[{"T":"information%20and%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":95.338,"y":10.157,"w":2.7600000000000002,"clr":-1,"A":"left","R":[{"T":"being%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.123,"y":10.657,"w":7.279999999999999,"clr":-1,"A":"left","R":[{"T":"furnished%20to%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.192,"y":11.157,"w":3.5930000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.91,"y":11.657,"w":8.889000000000001,"clr":-1,"A":"left","R":[{"T":"Revenue%20Service.%20If%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.112,"y":12.157,"w":8.742000000000003,"clr":-1,"A":"left","R":[{"T":"you%20are%20required%20to%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":90.372,"y":12.657,"w":6.371,"clr":-1,"A":"left","R":[{"T":"file%20a%20return%2C%20a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.585,"y":13.157,"w":9.853000000000002,"clr":-1,"A":"left","R":[{"T":"negligence%20penalty%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.983,"y":13.657,"w":8.836000000000002,"clr":-1,"A":"left","R":[{"T":"other%20sanction%20may%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.836,"y":14.157,"w":9.67,"clr":-1,"A":"left","R":[{"T":"be%20imposed%20on%20you%20if%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.431,"y":14.657,"w":9.965,"clr":-1,"A":"left","R":[{"T":"this%20income%20is%20taxable%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":91.543,"y":15.157,"w":5.52,"clr":-1,"A":"left","R":[{"T":"and%20the%20IRS%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.147,"y":15.657,"w":7.262000000000002,"clr":-1,"A":"left","R":[{"T":"determines%20that%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.631,"y":16.157,"w":6.91,"clr":-1,"A":"left","R":[{"T":"it%20has%20not%20been%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":93.122,"y":16.657,"w":4.093,"clr":-1,"A":"left","R":[{"T":"reported.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.582,"y":1.8119999999999998,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0238","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.825,"y":1.384,"w":11.482000000000005,"clr":-1,"A":"left","R":[{"T":"CORRECTED%20(if%20checked)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.333,"w":55.75199999999997,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%2C%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20the%20name%2C%20address%2C%20and%20taxpayer%20identificat","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.35,"y":19.333,"w":14.709000000000003,"clr":-1,"A":"left","R":[{"T":"ion%20number%20that%20I%20have%20furnished%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.643,"y":19.858,"w":56.290999999999954,"clr":-1,"A":"left","R":[{"T":"correctly%20identify%20me%20as%20the%20recipient%20of%20this%20payment%20and%20any%20payments%20from%20identical%20wagers%2C%20and%20that%20no%20other%20person%20is%20enti","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.368,"y":19.858,"w":15.579000000000004,"clr":-1,"A":"left","R":[{"T":"tled%20to%20any%20part%20of%20these%20payments.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.65,"y":20.701,"w":4.592999999999999,"clr":-1,"A":"left","R":[{"T":"Signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.347,"y":20.607,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":62.863,"y":20.701,"w":2.2409999999999997,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.326,"y":20.607,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":8.413,"y":22.321,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.555,"y":22.321,"w":2.666,"clr":-1,"A":"left","R":[{"T":"W-2G","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":38.398,"y":22.375,"w":7.7540000000000004,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fw2g","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.65,"y":2,"w":34.041,"clr":-1,"A":"left","R":[{"T":"PAYER%E2%80%99S%20name%2C%20street%20address%2C%20city%20or%20town%2C%20province%20or%20state%2C%20country%2C%20ZIP%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":9.65,"y":2.525,"w":9.815000000000001,"clr":-1,"A":"left","R":[{"T":"or%20foreign%20postal%20code","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":9.65,"y":8,"w":13.021000000000003,"clr":-1,"A":"left","R":[{"T":"Federal%20identification%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":30.688,"y":8,"w":8.392000000000001,"clr":-1,"A":"left","R":[{"T":"Telephone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.65,"y":9.5,"w":7.611999999999999,"clr":-1,"A":"left","R":[{"T":"WINNER%E2%80%99S%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.25,"w":15.077000000000002,"clr":-1,"A":"left","R":[{"T":"Street%20address%20(including%20apt.%20no.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.75,"w":31.836000000000002,"clr":-1,"A":"left","R":[{"T":"City%20or%20town%2C%20province%20or%20state%2C%20country%2C%20and%20ZIP%20or%20foreign%20postal%20%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":2,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.857,"y":2,"w":6.888000000000001,"clr":-1,"A":"left","R":[{"T":"Gross%20winnings","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#221f1f","x":51.519,"y":2.857,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.844,"y":2,"w":1.112,"clr":-1,"A":"left","R":[{"T":"2%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.182,"y":2,"w":4.259,"clr":-1,"A":"left","R":[{"T":"Date%20won","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":3.5,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.857,"y":3.5,"w":6.369,"clr":-1,"A":"left","R":[{"T":"Type%20of%20wager","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.844,"y":3.5,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":70.075,"y":3.5,"w":12.575000000000003,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":68.844,"y":4.357,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.519,"y":5,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.857,"y":5,"w":5.241,"clr":-1,"A":"left","R":[{"T":"Transaction","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.844,"y":5,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.182,"y":5,"w":2.296,"clr":-1,"A":"left","R":[{"T":"Race","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":6.5,"w":1.112,"clr":-1,"A":"left","R":[{"T":"7%20%20","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":52.656,"y":6.5,"w":13.982000000000003,"clr":-1,"A":"left","R":[{"T":"Winnings%20from%20identical%20wagers","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":51.519,"y":7.356999999999999,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.844,"y":6.5,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.182,"y":6.5,"w":3.407,"clr":-1,"A":"left","R":[{"T":"Cashier","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":8,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9%20%20","S":-1,"TS":[0,8.6,0,0]}]},{"oc":"#221f1f","x":52.589,"y":8,"w":15.724,"clr":-1,"A":"left","R":[{"T":"Winner%E2%80%99s%20taxpayer%20identification%20no.","S":-1,"TS":[0,8.6,0,0]}]},{"oc":"#221f1f","x":68.844,"y":8,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.851,"y":8,"w":3.6290000000000004,"clr":-1,"A":"left","R":[{"T":"Window","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":10.25,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.526,"y":10.25,"w":3.741,"clr":-1,"A":"left","R":[{"T":"First%20I.D.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.844,"y":10.25,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"12%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.851,"y":10.25,"w":5.241999999999999,"clr":-1,"A":"left","R":[{"T":"Second%20I.D.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":12.5,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"13%20%20","S":-1,"TS":[0,7.9,0,0]}]},{"oc":"#221f1f","x":52.924,"y":12.5,"w":16.168000000000003,"clr":-1,"A":"left","R":[{"T":"State%2FPayer%E2%80%99s%20state%20identification%20no.","S":-1,"TS":[0,7.9,0,0]}]},{"oc":"#221f1f","x":68.844,"y":12.5,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.516,"y":12.5,"w":6.852,"clr":-1,"A":"left","R":[{"T":"%20State%20winnings","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.844,"y":14.107,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.519,"y":14.75,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"15%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.526,"y":14.75,"w":11.594000000000001,"clr":-1,"A":"left","R":[{"T":"State%20income%20tax%20withheld","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":16.357,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.844,"y":14.75,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"16%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.851,"y":14.75,"w":6.648000000000001,"clr":-1,"A":"left","R":[{"T":"Local%20winnings","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":68.844,"y":16.357,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.519,"y":17,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"17%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.526,"y":17,"w":11.668,"clr":-1,"A":"left","R":[{"T":"Local%20income%20tax%20withheld","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.519,"y":18.607,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.844,"y":17,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"18%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.851,"y":17,"w":7.2040000000000015,"clr":-1,"A":"left","R":[{"T":"Name%20of%20locality","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":9011,"AM":0,"x":10.032,"y":3.784,"w":39.856,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":9012,"AM":0,"x":53.081,"y":2.94,"w":14.925,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":9013,"AM":0,"x":68.207,"y":2.97,"w":17.016,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":9014,"AM":0,"x":53.203,"y":4.47,"w":14.811,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":9015,"AM":0,"x":70.45,"y":4.465,"w":14.851,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PADD","EN":0},"TI":9016,"AM":0,"x":10.032,"y":4.873,"w":40.156,"h":0.858},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCTY","EN":0},"TI":9017,"AM":0,"x":9.957,"y":6.018,"w":22.562,"h":0.856},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":9018,"AM":0,"x":32.492,"y":6.018,"w":5.193,"h":0.856,"MV":"AA"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PZIP","EN":0},"TI":9019,"AM":0,"x":37.583,"y":5.989,"w":12.455,"h":0.885},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":9020,"AM":0,"x":53.203,"y":5.943,"w":14.886,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":9021,"AM":0,"x":70.453,"y":5.998,"w":14.844,"h":0.833,"TU":" Race"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":9022,"AM":0,"x":53.156,"y":7.514,"w":14.776,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":9023,"AM":0,"x":70.528,"y":7.498,"w":14.919,"h":0.833,"TU":"Cashier"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PFIN","EN":0},"TI":9024,"AM":0,"x":9.882,"y":8.902,"w":19.268,"h":0.833,"MV":"00-0000000"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":9025,"AM":0,"x":31.145,"y":8.902,"w":19.642,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":9026,"AM":0,"x":53.156,"y":9.529,"w":14.925,"h":0.912},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":9027,"AM":0,"x":71.189,"y":9.593,"w":14.197,"h":0.864,"TU":"Window"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WNAM","EN":0},"TI":9028,"AM":0,"x":8.652,"y":12.468,"w":41.859,"h":0.901,"TU":"WINNER’S name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":9029,"AM":0,"x":53.864,"y":11.871,"w":14.238,"h":0.864,"TU":"First I.D."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":9030,"AM":0,"x":71.264,"y":11.843,"w":14.197,"h":0.892,"TU":"Second I.D."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WADD","EN":0},"TI":9031,"AM":0,"x":10.196,"y":14.248,"w":40.568,"h":0.833,"TU":"Street address (including apt. no.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":9032,"AM":0,"x":56.933,"y":14.148,"w":11.094,"h":0.837,"TU":"Payer’s state identification no."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":9033,"AM":0,"x":53.38,"y":14.102,"w":3.471,"h":0.858,"MV":"AA"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WCITY","EN":0},"TI":9034,"AM":0,"x":10.182,"y":16.309,"w":20.915,"h":0.856},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"WST","EN":0},"TI":9035,"AM":0,"x":31.145,"y":16.226,"w":4.744,"h":0.912,"MV":"AA"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"WZIP","EN":0},"TI":9036,"AM":0,"x":35.936,"y":16.253,"w":14.626,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":9037,"AM":0,"x":53.83,"y":16.362,"w":14.177,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CORRX","EN":0},"TI":9010,"AM":0,"x":39.23,"y":1.263,"w":2.57,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/fd/formselect.json b/test/data/fd/formselect.json new file mode 100755 index 00000000..0a2c335d --- /dev/null +++ b/test/data/fd/formselect.json @@ -0,0 +1,54 @@ +{ + "mainList": [ + { + "header": "Booklet 1040EZ", + "imgUrl": "/img/fd/mainform01.png", + "title": "Use Form 1040EZ if you have:", + "notes": [ + "Income from wages, tips, interest only", + "No Adjustments", + "No Dependents", + "Income is less than $100,000" + ], + "links": [ + {"id": "view1040EzInstructionsLink", "href": "/data/fd/inst/fd_ins_1040ez.pdf", "label": "View Instructions", "className": "fsViewLink", "target": "_blank"}, + {"id": "view1040EzSupportedFormsLink", "href": "/#/fd/forms.availability", "label": "View Supported Forms", "className": "fsViewLink", "target": "_blank"}, + {"id": "selectF1040EzButton", "href": "F1040EZ", "label": "Start 1040EZ", "className": "btn btn-small genericButton continueButton", "target": "_blank"} + ] + }, + { + "header": "Booklet 1040A", + "imgUrl": "/img/fd/mainform02.png", + "title": "Use Form 1040A if you have:", + "notes": [ + "Income from wages, interest, dividends, pensions", + "No investment transactions", + "No business income", + "Income is less than $100,000", + "Standard deduction only" + ], + "links": [ + {"id": "view1040AInstructionsLink", "href": "/data/fd/inst/fd_ins_1040a.pdf", "label": "View Instructions", "className": "fsViewLink", "target": "_blank"}, + {"id": "view1040ASupportedFormsLink", "href": "/#/fd/forms.availability", "label": "View Supported Forms", "className": "fsViewLink", "target": "_blank"}, + {"id": "selectF1040AButton", "href": "F1040A", "label": "Start 1040A", "className": "btn btn-small genericButton continueButton", "target": "_blank"} + ] + }, + { + "header": "Booklet 1040", + "imgUrl": "/img/fd/mainform03.png", + "title": "Use Form 1040 if you have:", + "notes": [ + "Income from wages, interest, dividends, pensions", + "Investment transactions", + "Business income", + "Itemized deductions", + "Any credits" + ], + "links": [ + {"id": "view1040InstructionsLink", "href": "/data/fd/inst/fd_ins_1040.pdf", "label": "View Instructions", "className": "fsViewLink", "target": "_blank"}, + {"id": "view1040SupportedFormsLink", "href": "/#/fd/forms.availability", "label": "View Supported Forms", "className": "fsViewLink", "target": "_blank"}, + {"id": "selectF1040Button", "href": "F1040", "label": "Start 1040", "className": "btn btn-small genericButton continueButton", "target": "_blank"} + ] + } + ] +} \ No newline at end of file diff --git a/test/data/fd/formset.json b/test/data/fd/formset.json new file mode 100755 index 00000000..035a1bee --- /dev/null +++ b/test/data/fd/formset.json @@ -0,0 +1,446 @@ +{ + "formset": [ + { + "id": "S2013FDD", + "version": "0.1.1", + "agency": "fd", + "main": "F1040EZ", + "forms": [ + {"id": "F1040EZ", "name":"Form 1040EZ - Income Tax Tax Return for Single and Joint Filers with No Dependents", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040ez", "efmid":"EFIFEZ", "cid": "1040EZ"}, + {"id": "F1040V", "name":"Form 1040V - Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040v", "cid": "1040V"}, + {"id": "F1310", "name":"Form 1310 - Statement of Person Claiming Refund Due a Deceased Taxpayer - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1310", "cid": "1310Taxpayer"}, + {"id": "F1310S", "name":"Form 1310 - Statement of Person Claiming Refund Due a Deceased Taxpayer - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1310", "cid": "1310Spouse"}, + {"id": "F4868", "name":"Form 4868 - Application for Automatic Extension of Time", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4868", "cid": "4868", "ext": "1"}, + {"id": "F8379", "name":"Form 8379 - Injured Spouse Allocation", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8379", "cid": "8379"}, + {"id": "F8888", "name":"Form 8888 - Allocation of Refund", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8888", "cid": "8888"}, + {"id": "F9465", "name":"Form 9465 - Installment Agreement Request", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_9465", "cid": "9465"}, + {"id": "F8453", "name":"Form 8453 - Individual Income Tax Declaration for Electronic Filing", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8453", "cid": "8453"}, + {"id": "FES1", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 1", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher1"}, + {"id": "FES2", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 2", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher2"}, + {"id": "FES3", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 3", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher3"}, + {"id": "FES4", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 4", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher4"}, + {"id": "F8453", "name":"Form 8453 - Individual Income Tax Declaration for Electronic Filing", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8453", "cid": "8453"} + ] + }, + { + "id": "S2013FDD", + "version": "0.1.1", + "agency": "fd", + "main": "F1040A", + "forms": [ + {"id": "F1040A", "name":"Form 1040A - U.S. Individual Income Tax Return", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040a", "efmid": "EFIFA", "cid": "1040A"}, + {"id": "FDEPENDA", "name":"Form 1040 Additional Dependents Statement", "mc": false, "max": 1, "parent": null, + "inst":"", "cid": "FDEPENDA"}, + {"id": "FES1", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 1", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher1"}, + {"id": "FES2", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 2", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher2"}, + {"id": "FES3", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 3", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher3"}, + {"id": "FES4", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 4", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher4"}, + {"id": "F1040V", "name":"Form 1040V - Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040v", "cid": "1040V"}, + {"id": "FSCHB", "name":"Schedule B - Interest & Ordinary Dividends", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_SchB", "cid": "ScheduleB"}, + {"id": "FSCHB2", "name":"Schedule B Part I - Additional Interest Statement", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_SchB", "cid": "ScheduleB"}, + {"id": "FSCHB3", "name":"Schedule B Part II - Additional Dividends Statement", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_SchB", "cid": "ScheduleB"}, + {"id": "FSCHEIC", "name":"Schedule EIC - Earned Income Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040a", "cid": "ScheduleEIC"}, + {"id": "FSCHR", "name":"Schedule R - Credit for the Elderly or the Disabled", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_SchR", "cid": "ScheduleR"}, + {"id": "F1310", "name":"Form 1310 - Statement of Person Claiming Refund Due a Deceased Taxpayer - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1310", "cid": "1310Taxpayer"}, + {"id": "F1310S", "name":"Form 1310 - Statement of Person Claiming Refund Due a Deceased Taxpayer - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1310", "cid": "1310Spouse"}, + {"id": "F2120", "name":"Form 2120 - Multiple Support Declaration", "mc": true, "max": 4, "parent": null, + "inst":"fd_ins_2120", "cid": "2120"}, + {"id": "F2210", "name":"Form 2210 - Underpayment of Estimated Tax by Individuals", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2210", "cid": "2210"}, + {"id": "F2210AI", "name":"Form 2210AI - Annualized Income", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2210", "cid": "2210AI"}, + {"id": "F2441", "name":"Form 2441 - Child & Dependent Care Expenses", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2441", "cid": "2441"}, + {"id": "F4868", "name":"Form 4868 - Application for Automatic Extension of Time", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4868", "ext": "1", "cid": "4868"}, + {"id": "F8379", "name":"Form 8379 - Injured Spouse Allocation", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8379", "cid": "8379"}, + {"id": "F8606T", "name":"Form 8606 - Nondeductible IRAs - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8606", "cid": "8606_Taxpayer"}, + {"id": "F8606S", "name":"Form 8606 - Nondeductible IRAs - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8606", "cid": "8606_Spouse"}, + {"id": "F8615", "name":"Form 8615 - Tax for Certain Children Who Have Unearned Income", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8615", "cid": "8615"}, + {"id": "F8812", "name":"Form 8812 - Child Tax Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8812", "cid": "8812"}, + {"id": "F8812SMT", "name":"Form 8812SMT - Child Tax Credit Statement", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8812", "cid": "8812"}, + {"id": "F8815", "name":"Form 8815 - Exclusion of Interest From Series EE and I, U.S. Savings Bonds Issued After 1989", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8815", "cid": "8815"}, + {"id": "F8862", "name":"Form 8862 - Information to Claim Earned Income Credit After Disallowance", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8862", "cid": "8862"}, + {"id": "F8863", "name":"Form 8863 - Education Credits", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8863", "cid": "8863"}, + {"id": "F8863P2", "name":"Form 8863 Page 2 - Student and Educational Institution Information", "mc": true, "max":25, "parent": null, + "inst":"fd_ins_8863", "cid": "8863"}, + {"id": "F8880", "name":"Form 8880 - Credit for Qualified Retirement Savings Contributions", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8880", "cid": "8880"}, + {"id": "F8888", "name":"Form 8888 - Allocation of Refund", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8888", "cid": "8888"}, + {"id": "F8917", "name":"Form 8917 - Tuition and Fees Deduction", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8917", "cid": "8917"}, + {"id": "F9465", "name":"Form 9465 - Installment Agreement Request", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_9465", "cid": "9465"}, + {"id": "F8453", "name":"Form 8453 - Individual Income Tax Declaration for Electronic Filing", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8453", "cid": "8453"} + ] + }, + { + "id": "S2013FDD", + "version": "0.1.1", + "agency": "fd", + "main": "F1040", + "forms": [ + {"id": "F1040", "name":"Form 1040 - U.S. Individual Income Tax Return", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040", "efmid":"EFIF", "cid": "1040"}, + {"id": "FDEPEND", "name":"Form 1040 Additional Dependents Statement", "mc": false, "max": 1, "parent": null, + "inst":"", "cid": "FDEPEND"}, + {"id": "FES1", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 1", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher1"}, + {"id": "FES2", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 2", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher2"}, + {"id": "FES3", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 3", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher3"}, + {"id": "FES4", "name":"Form 1040-ES - Individual Estimated Tax, Voucher 4", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040es", "cid": "1040ESVoucher4"}, + {"id": "F1040V", "name":"Form 1040V - Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040v", "cid": "1040V"}, + {"id": "FSCHA", "name":"Schedule A - Itemized Deductions", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchA", "cid": "ScheduleA"}, + {"id": "FSCHB", "name":"Schedule B - Interest & Ordinary Dividends", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_SchB", "cid": "ScheduleB"}, + {"id": "FSCHB2", "name":"Schedule B Part I - Additional Interest Statement", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_SchB", "cid": "ScheduleB"}, + {"id": "FSCHB3", "name":"Schedule B Part II - Additional Dividends Statement", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_SchB", "cid": "ScheduleB"}, + {"id": "FSCHC", "name":"Schedule C - Profit or Loss From Business", "mc": true, "max": 8, "parent": null, + "inst":"fd_ins_1040SchC", "cid": "ScheduleC"}, + {"id": "FSCHCEZT", "name":"Schedule C-EZ - Net Profit From Business - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchCEZ", "cid": "ScheduleCEZTaxpayer"}, + {"id": "FSCHCEZS", "name":"Schedule C-EZ - Net Profit From Business - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchCEZ", "cid": "ScheduleCEZSpouse"}, + {"id": "FSCHD", "name":"Schedule D - Capital Gains and Losses", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchD", "cid": "ScheduleD"}, + {"id": "FSCHE1", "name":"Schedule E - Supplemental Income and Loss", "mc": true, "max": 15, "parent": null, + "inst":"fd_ins_1040SchE", "cid": "ScheduleE"}, + {"id": "FSCHE2", "name":"Schedule E - Supplemental Income and Loss, page 2", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchE", "cid": "ScheduleE"}, + {"id": "FSCHEIC", "name":"Schedule EIC - Earned Income Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040", "cid": "ScheduleEIC"}, + {"id": "FSCHF", "name":"Schedule F - Profit or Loss From Farming", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_1040SchF", "cid": "ScheduleF"}, + {"id": "FSCHHT", "name":"Schedule H - Household Employment Taxes - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchH", "cid": "ScheduleH_Taxpayer"}, + {"id": "FSCHHS", "name":"Schedule H - Household Employment Taxes - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchH", "cid": "ScheduleH_Spouse"}, + {"id": "FSCHJ", "name":"Schedule J - Income Averaging for Farmers and Fishermen", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchJ", "cid": "ScheduleJ"}, + {"id": "FSCHR", "name":"Schedule R - Credit for the Elderly or the Disabled", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_SchR", "cid": "ScheduleR"}, + {"id": "FSCHSEST", "name":"Schedule SE - Self-Employment Tax - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchSE", "cid": "ScheduleSE_Taxpayer"}, + {"id": "FSCHSESS", "name":"Schedule SE - Self-Employment Tax - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchSE", "cid": "ScheduleSES_Spouse"}, + {"id": "FSCHSELT", "name":"Schedule SE - Self-Employment Tax Part B - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchSE", "cid": "ScheduleSE_Taxpayer"}, + {"id": "FSCHSELS", "name":"Schedule SE - Self-Employment Tax Part B - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1040SchSE", "cid": "ScheduleSES_Spouse"}, + {"id": "F982", "name":"Form 982 - Reduction of Tax Attributes Due to Discharge of Indebtedness (and Section 1082 Basis Adjustment)", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_982", "cid": "982"}, + {"id": "F1116", "name":"Form 1116 - Foreign Tax Credit", "mc": true, "max": 20, "parent": null, + "inst":"fd_ins_1116", "cid": "1116"}, + {"id": "F1310", "name":"Form 1310 - Statement of Person Claiming Refund Due a Deceased Taxpayer - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1310", "cid": "1310Taxpayer"}, + {"id": "F1310S", "name":"Form 1310 - Statement of Person Claiming Refund Due a Deceased Taxpayer - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_1310", "cid": "1310Spouse"}, + {"id": "F2106", "name":"Form 2106 - Employee Business Expenses - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2106", "cid": "2106Taxpayer"}, + {"id": "F2106S", "name":"Form 2106 - Employee Business Expenses - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2106", "cid": "2106Spouse"}, + {"id": "F2106EZ", "name":"Form 2106-EZ - Unreimbursed Employee Business Expenses - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2106EZ", "cid": "2106EZTaxpayer"}, + {"id": "F2106EZS", "name":"Form 2106-EZ - Unreimbursed Employee Business Expenses - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2106EZ", "cid": "2106EZSpouse"}, + {"id": "F2120", "name":"Form 2120 - Multiple Support Declaration", "mc": true, "max": 4, "parent": null, + "inst":"fd_ins_2120", "cid": "2120"}, + {"id": "F2210", "name":"Form 2210 - Underpayment of Estimated Tax by Individuals", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2210", "cid": "2210"}, + {"id": "F2210AI", "name":"Form 2210AI - Annualized Income", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2210", "cid": "2210"}, + {"id": "F2210F", "name":"Form 2210F - Underpayment of Estimated Tax by Farmers and Fishermen", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2210F", "cid": "2210F"}, + {"id": "F2439", "name":"Form 2439 - Notice to Shareholder of Undistributed Long-Term Capital Gains", "mc": true, "max": 4, "parent": null, + "inst":"fd_ins_2439", "cid": "2439"}, + {"id": "F2441", "name":"Form 2441 - Child & Dependent Care Expenses", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2441", "cid": "2441"}, + {"id": "F2441DEP", "name":"Additional Form 2441 Information Statement", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2441", "cid": "2441"}, + {"id": "F2555EZ", "name":"Form 2555EZ - Foreign Earned Income Exclusion - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2555EZ", "cid": "2555EZTaxpayer"}, + {"id": "F2555EZS", "name":"Form 2555EZ - Foreign Earned Income Exclusion - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2555EZ", "cid": "2555EZSpouse"}, + {"id": "F255512T", "name":"Form 2555 - Foreign Earned Income Exclusion, Pages 1, 2 - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2555", "cid": "2555Taxpayer"}, + {"id": "F25553T", "name":"Form 2555 - Foreign Earned Income Exclusion, Page 3 - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2555", "cid": "2555Taxpayer"}, + {"id": "F255512S", "name":"Form 2555 - Foreign Earned Income Exclusion, Pages 1, 2 - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2555", "cid": "2555Spouse"}, + {"id": "F25553S", "name":"Form 2555 - Foreign Earned Income Exclusion, Page 3 - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_2555", "cid": "2555Spouse"}, + {"id": "F3468", "name":"Form 3468 - Investment Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_3468", "cid": "3468"}, + {"id": "F3800", "name":"Form 3800 - General Business Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_3800", "cid": "3800"}, + {"id": "F3800MLT", "name":"Form 3800, page 2 - General Business Credits Or Eligible Small Business Credits", "mc": true, "max": 9, "parent": null, + "inst":"fd_ins_3800", "cid": "3800"}, + {"id": "F3903", "name":"Form 3903 - Moving Expenses", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_3903", "cid": "3903"}, + {"id": "F4136", "name":"Form 4136 - Credit for Federal Tax Paid On Fuels", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4136", "cid": "4136"}, + {"id": "F4137T", "name":"Form 4137 - Social Security and Medicare Tax on Unreported Tip Income - Taxpayer ", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4137", "cid": "4137Taxpayer"}, + {"id": "F4137S", "name":"Form 4137 - Social Security and Medicare Tax on Unreported Tip Income - Spouse ", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4137", "cid": "4137Spouse"}, + {"id": "F4255", "name":"Form 4255 - Recapture of Investment Credit ", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4255", "cid": "4255"}, + {"id": "F4562C", "name":"Schedule C - Form 4562: Depreciation and Amortization", "mc": false, "max":1, "parent": "FSCHC", + "inst":"fd_ins_4562", "cid": "4562C"}, + {"id": "F4562E", "name":"Schedule E - Form 4562: Depreciation and Amortization", "mc": false, "max":1, "parent": "FSCHE1", + "inst":"fd_ins_4562", "cid": "4562E"}, + {"id": "F4562F", "name":"Schedule F - Form 4562: Depreciation and Amortization", "mc": false, "max": 1, "parent": "FSCHF", + "inst":"fd_ins_4562", "cid": "4562F"}, + {"id": "F4562R", "name":"Form 4835 - Form 4562: Depreciation and Amortization", "mc": false, "max": 1, "parent": "F4835", + "inst":"fd_ins_4562", "cid": "4562R"}, + {"id": "F4684", "name":"Form 4684 - Casualties and Thefts Page 1", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_4684", "cid": "4684"}, + {"id": "F46842", "name":"Form 4684 - Casualties and Thefts Page 2", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_4684", "cid": "4684"}, + {"id": "F46843", "name":"Form 4684 - Casualties and Thefts Page 3", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_4684", "cid": "4684"}, + {"id": "F4797", "name":"Form 4797 - Sales of Business Property Page 1", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4797", "cid": "4797"}, + {"id": "F47972", "name":"Form 4797 - Sales of Business Property Page 2", "mc": true, "max": 5, "parent": null, + "inst":"fd_ins_4797", "cid": "4797"}, + {"id": "F4835", "name":"Form 4835 - Farm Rental Income and Expenses", "mc": true, "max": 4, "parent": null, + "inst":"fd_ins_4835", "cid": "4835"}, + {"id": "F4868", "name":"Form 4868 - Application for Automatic Extension of Time", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4868", "ext": "1", "cid": "4868"}, + {"id": "F4952", "name":"Form 4952 - Investment Interest Expense Deduction", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4952", "cid": "4952"}, + {"id": "F4972T", "name":"Form 4972 - Tax on Lump-Sum Distribution - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4972", "cid": "4972_Taxpayer"}, + {"id": "F4972S", "name":"Form 4972 - Tax on Lump-Sum Distribution - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_4972", "cid": "4972_Spouse"}, + {"id": "F5329T", "name":"Form 5329 - Additional Taxes on Qualified Plans (Including IRAs) and Other Tax-Favored Accounts - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_5329", "cid": "5329Taxpayer"}, + {"id": "F5329S", "name":"Form 5329 - Additional Taxes on Qualified Plans (Including IRAs) and Other Tax-Favored Accounts - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_5329", "cid": "5329Spouse"}, + {"id": "F5405", "name":"Form 5405 - Repayment of the First-Time Homebuyer Credit", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_5405", "cid": "5405"}, + {"id": "F5695", "name":"Form 5695 - Residential Energy Credits", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_5695", "cid": "5695"}, + {"id": "F5884", "name":"Form 5884 - Work Opportunity Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_5884", "cid": "5884"}, + {"id": "F6198C", "name":"Schedule C - Form 6198: At-Risk Limitations", "mc": false, "max": 1, "parent": "FSCHC", + "inst":"fd_ins_6198", "cid": "6198C"}, + {"id": "F6198E", "name":"Schedule E - Form 6198: At-Risk Limitations", "mc": false, "max": 1, "parent": "FSCHE1", + "inst":"fd_ins_6198", "cid": "6198E"}, + {"id": "F6198F", "name":"Schedule F - Form 6198: At-Risk Limitations", "mc": false, "max": 1, "parent": "FSCHF", + "inst":"fd_ins_6198", "cid": "6198F"}, + {"id": "F6198R", "name":"Form 4835 - Form 6198: At-Risk Limitations", "mc": false, "max": 1, "parent": "F4835", + "inst":"fd_ins_6198", "cid": "6198R"}, + {"id": "F6251", "name":"Form 6251 - Alternative Minimum Tax - Individuals", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_6251", "cid": "6251"}, + {"id": "F6252", "name":"Form 6252 - Installment Sale Income", "mc": true, "max": 25, "parent": null, + "inst":"fd_ins_6252", "cid": "6252"}, + {"id": "F6478", "name":"Form 6478 - Alcohol and Cellulosic Biofuel Fuels Credit (Including Second Generation Biofuel)", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_6478", "cid": "6478"}, + {"id": "F6765", "name":"Form 6765 - Credit for Increasing Research Activities", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_6765", "cid": "6765"}, + {"id": "F6765P2", "name":"Form 6765 - Credit for Increasing Research Activities - Page 2", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_6765", "cid": "6765"}, + {"id": "F6781", "name":"Form 6781 - Gains and Losses from Section 1256 Contracts and Straddles", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_6781", "cid": "6781"}, + {"id": "F8082", "name":"Form 8082 - Notice of Inconsistent Treatment or Administrative Adjustment Request (AAR)", "mc": true, "max": 4, "parent": null, + "inst":"fd_ins_8082", "cid": "8082"}, + {"id": "F8275", "name":"Form 8275 - Disclosure Statement", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_8275", "cid": "8275"}, + {"id": "F8275R", "name":"Form 8275-R - Regulation Disclosure Statement", "mc": true, "max": 2, "parent": null, + "inst":"fd_ins_8275R", "cid": "8275R"}, + {"id": "F8283", "name":"Form 8283 - Noncash Charitable Contributions", "mc": true, "max": 4, "parent": null, + "inst":"fd_ins_8283", "cid": "8283"}, + {"id": "F8379", "name":"Form 8379 - Injured Spouse Allocation", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8379", "cid": "8379"}, + {"id": "F8396", "name":"Form 8396 - Mortgage Interest Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8396", "cid": "8396"}, + {"id": "F8582", "name":"Form 8582 - Passive Activity Loss Limitations Worksheet Page 1", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8582", "cid": "8582"}, + {"id": "F8582W15", "name":"Form 8582 - Passive Activity Loss Limitations Worksheet Page 2", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8582", "cid": "8582"}, + {"id": "F8582W6", "name":"Form 8582 - Passive Activity Loss Limitations Worksheet Page 3", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_8582", "cid": "8582"}, + {"id": "F8582CR", "name":"Form 8582-CR - Passive Activity Credit Limitations", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8582CR", "cid": "8582CR"}, + {"id": "F8586", "name":"Form 8586 - Low-Income Housing Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8586", "cid": "8586"}, + {"id": "F8594", "name":"Form 8594 - Asset Acquisition Statement Under Section 1060", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8594", "cid": "8594"}, + {"id": "F8606T", "name":"Form 8606 - Nondeductible IRAs - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8606", "cid": "8606_Taxpayer"}, + {"id": "F8606S", "name":"Form 8606 - Nondeductible IRAs - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8606", "cid": "8606_Spouse"}, + {"id": "F8609A", "name":"Form 8609-A - Annual Statement for Low-Income Housing Credit", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_8609a", "cid": "8609a"}, + {"id": "F8611", "name":"Form 8611 - Recapture of Low-Income Housing Credit", "mc": false, "max":1, "parent": null, + "inst":"fd_ins_8611", "cid": "8611"}, + {"id": "F8615", "name":"Form 8615 - Tax for Certain Children Who Have Unearned Income", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8615", "cid": "8615"}, + {"id": "F8689", "name":"Form 8689 - Allocation of Individual Income Tax to the U.S. Virgin Islands", "mc": false, "max":1, "parent": null, + "inst":"fd_ins_8689", "cid": "8689"}, + {"id": "F8697", "name":"Form 8697 - Interest Computation Under the Look-Back Method for Completed Long-Term Contracts", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8697", "cid": "8697"}, + {"id": "F8801", "name":"Form 8801 - Credit for Prior Year Minimum Tax - Individuals, Estates and Trusts", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8801", "cid": "8801"}, + {"id": "F8812", "name":"Form 8812 - Child Tax Credit", "mc": false, "max": 1, "parent": null, + "inst":"", "cid": "8812"}, + {"id": "F8812SMT", "name":"Form 8812SMT - Child Tax Credit Statement", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8812", "cid": "8812"}, + {"id": "F8814", "name":"Form 8814 - Parents' Election to Report Child's Interest and Dividends", "mc": true, "max": 5, "parent": null, + "inst":"fd_ins_8814", "cid": "8814"}, + {"id": "F8815", "name":"Form 8815 - Exclusion of Interest From Series EE and I U.S. Savings Bonds Issued After 1989", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8815", "cid": "8815"}, + {"id": "F8820", "name":"Form 8820 - Orphan Drug Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8820", "cid": "8820"}, + {"id": "F8824", "name":"Form 8824 - Like-Kind Exchanges", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_8824", "cid": "8824"}, + {"id": "F8826", "name":"Form 8826 - Disabled Access Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8826", "cid": "8826"}, + {"id": "F8828", "name":"Form 8828 - Recapture of Federal Mortgage Subsidy", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8828", "cid": "8828"}, + {"id": "F8829", "name":"Schedule C - Form 8829: Expenses for Business Use of Your Home", "mc": false, "max": 1, "parent": "FSCHC", + "inst":"fd_ins_8829", "cid": "8829"}, + {"id": "F8833", "name":"Form 8833 - Treaty-Based Return Position Disclosure Under Section 6114 or 7701(b)", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_8833", "cid": "8833"}, + {"id": "F8834", "name":"Form 8834 - Qualified Plug-in Electric and Electric Vehicle Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8834", "cid": "8834"}, + {"id": "F8839", "name":"Form 8839 - Qualified Adoption Expenses", "mc": true, "max":3, "parent": null, + "inst":"fd_ins_8839", "cid": "8839"}, + {"id": "F8844", "name":"Form 8844 - Empowerment Zone Employment Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8844", "cid": "8844"}, + {"id": "F8845", "name":"Form 8845 - Indian Employment Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8845", "cid": "8845"}, + {"id": "F8846", "name":"Form 8846 - Credit for Employer Social Security and Medicare Taxes Paid on Certain Employee Tips", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8846", "cid": "8846"}, + {"id": "F8853", "name":"Form 8853 - Archer MSAs and Long-Term Care Insurance Contracts Page 1", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8853", "cid": "8853"}, + {"id": "F88532", "name":"Form 8853 - Archer MSAs and Long-Term Care Insurance Contracts Page 2", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8853", "cid": "8853_2"}, + {"id": "F8859", "name":"Form 8859 - District of Columbia First-Time Homebuyer Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8859", "cid": "8859"}, + {"id": "F8862", "name":"Form 8862 - Information to Claim Earned Income Credit After Disallowance", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8862", "cid": "8862"}, + {"id": "F8863", "name":"Form 8863 - Education Credits", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8863", "cid": "8863"}, + {"id": "F8863P2", "name":"Form 8863 Page 2 - Student and Educational Institution Information", "mc": true, "max": 25, "parent": null, + "inst":"fd_ins_8863", "cid": "8863"}, + {"id": "F8864", "name":"Form 8864 - Biodiesel and Renewable Diesel Fuels Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8864", "cid": "8864"}, + {"id": "F8874", "name":"Form 8874 - New Markets Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8874", "cid": "8874"}, + {"id": "F8880", "name":"Form 8880 - Credit for Qualified Retirement Savings Contributions", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8880", "cid": "8880"}, + {"id": "F8881", "name":"Form 8881 - Credit for Small Employer Pension Plan Startup Costs", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8881", "cid": "8881"}, + {"id": "F8882", "name":"Form 8882 - Credit for Employer-Provided Childcare Facilities and Services", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8882", "cid": "8882"}, + {"id": "F8885T", "name":"Form 8885 - Health Coverage Tax Credit - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8885", "cid": "8885_Taxpayer"}, + {"id": "F8885S", "name":"Form 8885 - Health Coverage Tax Credit - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8885", "cid": "8885_Spouse"}, + {"id": "F8886", "name":"Form 8886 - Reportable Transaction Disclosure Statement", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_8886", "cid": "8886"}, + {"id": "F8888", "name":"Form 8888 - Allocation of Refund", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8888", "cid": "8888"}, + {"id": "F8889T", "name":"Form 8889 - Health Savings Accounts (HSAs) - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8889", "cid": "8889_Taxpayer"}, + {"id": "F8889S", "name":"Form 8889 - Health Savings Accounts (HSAs) - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8889", "cid": "8889_Spouse"}, + {"id": "F8891", "name":"Form 8891 - U.S. Information Return for Beneficiaries of Certain Canadian Registered Retirement Plans", "mc": true, "max": 10, "parent": null, + "inst":"fd_ins_8891", "cid": "8891"}, + {"id": "F8903", "name":"Form 8903 - Domestic Production Activities Deduction", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8903", "cid": "8903"}, + {"id": "F8906", "name":"Form 8906 - Distilled Spirits Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8906", "cid": "8906"}, + {"id": "F8907", "name":"Form 8907 - Nonconventional Source Fuel Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8907", "cid": "8907"}, + {"id": "F8908", "name":"Form 8908 - Energy Efficient Home Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8908", "cid": "8908"}, + {"id": "F8909", "name":"Form 8909 - Energy Efficient Appliance Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8909", "cid": "8909"}, + {"id": "F8910", "name":"Form 8910 - Alternative Motor Vehicle Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8910", "cid": "8910"}, + {"id": "F8911", "name":"Form 8911 - Alternative Fuel Vehicle Refueling Property Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8911", "cid": "8911"}, + {"id": "F8917", "name":"Form 8917 - Tuition and Fees Deduction", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8917", "cid": "8917"}, + {"id": "F8919T", "name":"Form 8919 - Uncollected Social Security and Medicare Tax on Wages - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8919", "cid": "8919Taxpayer"}, + {"id": "F8919S", "name":"Form 8919 - Uncollected Social Security and Medicare Tax on Wages - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8919", "cid": "8919Spouse"}, + {"id": "F8931", "name":"Form 8931 - Agricultural Chemicals Security Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8931", "cid": "8931"}, + {"id": "F8932", "name":"Form 8932 - Credit for Employer Differential Wage Payments", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8932", "cid": "8932"}, + {"id": "F8933", "name":"Form 8933 - Carbon Dioxide Sequestration Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8919", "cid": "8933"}, + {"id": "F8936", "name":"Form 8936 - Qualified Plug-In Electric Drive Motor Vehicle Credit", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8936", "cid": "8936"}, + {"id": "F8938", "name":"Form 8938 - Statement of Specified Foreign Bank Accounts", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8938", "cid": "8938"}, + {"id": "F8941", "name":"Form 8941 - Credit for Small Employer Health Insurance Premiums - Taxpayer", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8941", "cid": "8941_Taxpayer"}, + {"id": "F8941S", "name":"Form 8941 - Credit for Small Employer Health Insurance Premiums - Spouse", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8941", "cid": "8941_Spouse"}, + {"id": "F8949ST", "name":"Form 8949 - Sales and Other Dispositions of Capital Assets - Page 1", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_8949", "cid": "8949Spouse"}, + {"id": "F8949LT", "name":"Form 8949 - Sales and Other Dispositions of Capital Assets - Page 2", "mc": true, "max": 50, "parent": null, + "inst":"fd_ins_8949", "cid": "8949Taxpayer"}, + {"id": "F8959", "name":"Form 8959 - Additional Medicare Tax", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8959", "cid": "8959"}, + {"id": "F8960", "name":"Form 8960 - Net Investment Tax - Individuals, Estates, and Trusts", "mc": false, "max": 1, "parent": null, + "inst":"", "cid": "8960"}, + {"id": "F9465", "name":"Form 9465 - Installment Agreement Request", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_9465", "cid": "9465"}, + {"id": "F8453", "name":"Form 8453 - Individual Income Tax Declaration for Electronic Filing", "mc": false, "max": 1, "parent": null, + "inst":"fd_ins_8453", "cid": "8453"} + ] + } + ] +} \ No newline at end of file diff --git a/test/data/fd/inst/fd_ins_1040ez.pdf b/test/data/fd/inst/fd_ins_1040ez.pdf new file mode 100755 index 00000000..c4873f07 Binary files /dev/null and b/test/data/fd/inst/fd_ins_1040ez.pdf differ diff --git a/test/data/fd/pageset.json b/test/data/fd/pageset.json new file mode 100755 index 00000000..fb279f90 --- /dev/null +++ b/test/data/fd/pageset.json @@ -0,0 +1,71 @@ +{ + "headerData" :{ + "valueLabel": [ + {"href": "#/fd/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "http://apps.irs.gov/app/picklist/list/publicationsNoticesPdf.html", "label": "IRS Publications", "target": "_blank", + "styleClass": "formImage"}, + {"href": "#/fd/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "stateTaxUrl":"http://www.irs.gov/", + "eFileLinkUrl":"http://www.irs.gov/efile/article/0,,id=226829,00.html", + "faqFooter":"View more of your IRS-specific
FAQs", + "howItWorksList": { + "item1":"It's free.", + "item2":"Create a password-protected login so you can sign in and out of your return.", + "item3":"Choose your form: 1040EZ, 1040A, or 1040.", + "item4":"Do the math using the provided calculation mechanism.", + "item5":"E-file your return (you'll need last year's AGI or your self-select PIN), or you may also print your return." + }, + "noteList": { + "item1":"", + "item2": "" + } + }, + + "landingData": { + "formNumber":"1040EZ, 1040A or 1040", + "makeSureList": {}, + "tipsList": { + "item1":"" + }, + "beforeList": { + "item1":"Enter the correct amount of your Adjusted Gross Income from your federal 2012 tax return to identify yourself for e-filing. Don't guess at this number.", + "item2":"Enter your exemption.", + "item3":"Enter your standard or itemized deductions." + } + }, + + "loginData": { + "signInHelpLink":"http://www.irs.gov/pub/irs-utl/2012_fillable_forms_tutorial.pdf" + }, + + "recoveryData": { + "forgotAnswerLink":"http://www.irs.gov/pub/irs-utl/General_FAQs.pdf" + }, + + "homeHeaderData": { + "href": "http://www.irs.gov/pub/irs-utl/General_FAQs.pdf" + }, + + "efileData": { + "efRefundLink":"http://www.irs.gov/individuals/article/0,,id=96596,00.html?portlet=105", + "efRequiredInfo":"", + "efPaymentDueDate":"April 15, 2014", + "customerServiceEmail":"customer_service@freefilefillableforms.com" + + }, + + "commonData": { + "state":"Federal", + "stateAbbr":"FD", + "departmentName":"IRS", + "siteName": "Free File Fillable Forms", + "url": "https://www.freefilefillableforms.com", + "currentTaxYear": "2013", + "filingYear": "2014" + } + +} \ No newline at end of file diff --git a/test/data/ia/availability.json b/test/data/ia/availability.json new file mode 100755 index 00000000..b9608733 --- /dev/null +++ b/test/data/ia/availability.json @@ -0,0 +1,23 @@ +{ + "formset": [ + { + "id": "S2013IAD", + "version": "0.1", + "agency": "ia", + "main": "ia_scr_1040", + "display_name": "Form 1040", + "forms": [ + {"id": "ia_scr_1040", "planned_date":"01-31-13", "actual_date": "01-15-13"}, + {"id": "ia_scr_1040scha", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_1040schb", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_1040v", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_130", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_148", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_4136", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_4562a", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_4562b", "planned_date":"01-31-13", "actual_date": ""}, + {"id": "ia_scr_6251", "planned_date":"01-31-13", "actual_date": ""} + ] + } +] +} diff --git a/test/data/ia/form/ia_scr_1040.content.txt b/test/data/ia/form/ia_scr_1040.content.txt new file mode 100644 index 00000000..46dc4fc9 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040.content.txt @@ -0,0 +1,868 @@ +1. +Wages, salaries, tips, etc. +................................................................. +1. +______________ +.00 +______________ +.00 +2. +Taxable interest income. If more than $1,500, complete Sch. B. +...... +2. +______________ +.00 +______________ +.00 +3. +Ordinary dividend income. If more than $1,500, complete Sch. B. +...... +3. +______________ +.00 +______________ +.00 +4. +Alimony received +.............................................................................. +4. +______________ +.00 +______________ +.00 +5. +Business income/(loss) from federal Schedule C or C-EZ +.............. +5. +______________ +.00 +______________ +.00 +6. +Capital gain/(loss) from federal Sch. D +if required for federal purposes +. +6. +______________ +.00 +______________ +.00 +7. +Other gains/(losses) from federal form 4797 +.................................... +7. +______________ +.00 +______________ +.00 +8. +Taxable IRA distributions +.................................................................. +8. +______________ +.00 +______________ +.00 +9. +Taxable pensions and annuities +....................................................... +9. +______________ +.00 +______________ +.00 +10. +Rents, royalties, partnerships, estates, etc. +..................................... +10. +______________ +.00 +______________ +.00 +11. +Farm income/(loss) from federal Schedule F +................................... +11. +______________ +.00 +______________ +.00 +12. +Unemployment compensation. See instructions. +............................. +12. +______________ +.00 +______________ +.00 +13. +Taxable Social Security benefits +...................................................... +13. +______________ +.00 +s +______________ +.00 +14. +Other income, gambling income, bonus depreciation/section 179 adjustment +... +14. +______________ +.00 +______________ +.00 +15. +GROSS INCOME. + ADD lines 1-14. +........................................................................................................................... +15. +_______________ +.00 +s +_______________ +.00 +16. +Payments to an IRA, Keogh, or SEP +............................................... +16. +______________ +.00 +______________ +.00 +17. +Deductible part of self-employment tax +............................................ +17. +______________ +.00 +______________ +.00 +18. +Health insurance deduction +.............................................................. +18. +______________ +.00 +______________ +.00 +19. +Penalty on early withdrawal of savings +............................................ +19. +______________ +.00 +______________ +.00 +20. +Alimony paid +..................................................................................... +20. +______________ +.00 +______________ +.00 +21. +Pension/retirement income exclusion +.............................................. +21. +______________ +.00 +s +______________ +.00 +22. +Moving expense deduction from federal form 3903 +......................... +22. +______________ +.00 +______________ +.00 +23. +Iowa capital gain deduction; +certain sales ONLY (see instructions). +...... +23. +______________ +.00 +s +______________ +.00 +24. +Other adjustments +............................................................................ +24. +______________ +.00 +______________ +.00 +25. +Total adjustments. ADD lines 16-24. +........................................................................................................................ +25. +_______________ +.00 +s +_______________ +.00 +26. + +NET INCOME. + SUBTRACT line 25 from line 15. +.................................................................................................... +26. +_______________ +.00 +s +_______________ +.00 +27. +Federal income tax refund / overpayment received in 2012 +............ +27. +______________ +.00 +s +______________ +.00 +28. +Self-employment/household employment taxes +.............................. +28. +______________ +.00 +s +______________ +.00 +29. +Addition for federal taxes. ADD lines 27 and 28. +...................................................................................................... +29. +_______________ +.00 +_______________ +.00 +30. +Total. ADD lines 26 and 29. +...................................................................................................................................... +30. +_______________ +.00 +_______________ +.00 +31. +Federal tax withheld +......................................................................... +31. +______________ +.00 +s +______________ +.00 +32. +Federal estimated tax payments made in 2012 +............................... +32. +______________ +.00 +s +______________ +.00 +33. +Additional federal tax paid in 2012 for 2011 and prior years +........... +33. +______________ +.00 +s +______________ +.00 +34. +Deduction for federal taxes. ADD lines 31, 32, and 33. +............................................................................................ +34. +_______________ +.00 +_______________ +.00 +35. +BALANCE. + SUBTRACT line 34 from line 30. Enter here and on line 36, side 2. +.................................................... +35. +_______________ +.00 +_______________ +.00 + B. + Spouse +(Filing Status 3 ONLY) + + A. + You or Joint +a. Personal Credit: + Col. A: Enter 1 (enter 2 if filing status 2 or 5); Col. B: Enter 1 if filing status 3 +b. +Enter 1 for each person who is +65 or older + and/or 1 for each person who is +blind +.............. + +c. Dependents: + Enter 1 for each dependent ................................................................... +d. + Enter first names of dependents here: +____________________________________ +s +STEP 6 +Federal +Tax +Addition +and +Deduc- +tion +STEP 4 +Gross +Income +STEP 5 +Adjust- +ments +to +Income +41-001a (10/11/12) +2012 +IA 1040 +Iowa Individual Income Tax Form +or fiscal year beginning __/__ 2012 and ending __/__ /__ +Spouse SSN +• + Your SSN +• +STEP 3 Exemptions + e. TOTAL $ +$ +s +s +STEP 1: Fill in all spaces. You MUST fill in your Social Security Number (SSN). +Your last name + Your first name/middle initial +Spouse’s last name + Spouse’s first name/middle initial +Current mailing address (number and street, apartment, lot, or suite number) or PO Box +City + +State + +ZIP +X $ 20 = $ X $ 20 = $ + B. + Spouse/Status 3 + A. + You or Joint + B. + Spouse/Status 3 + A. + You or Joint +s +s + X $ 40 = $ X $ 40 = $ +s +STEP 2 Filing Status: Mark one box only. +1 +Single: Were you claimed as a dependent on another person’s Iowa return? +YES +NO +2 +Married filing a joint return. (Two-income families may benefit by using status 3 or 4.) +3 +Married filing separately on this combined return. Spouse use column B. +4 +Married filing separate returns. Spouse’s name: + SSN: +Net Income: $ +5 +Head of household with qualifying person. If qualifying person is not claimed as a dependent on this return, enter the person’s name and SSN below. +How many do not have health care coverage? + + • +Check this box if you or your spouse were 65 or older as of 12/31/12. + Ho +w many have health care coverage?(including Medicaid or +hawk-i +) +• + Depen +dent children for whom an exemption is claimed in Step 3 + 6 + + Qualifying widow(er) with dependent child. Name: + + + +SSN: + X $ 40 = $ +X $ 40 = $ +s +s +NOTE: + Use only +blue or black ink, +no pencils or red ink. +s +• +Residence on 12/31/12: County No. +• + School District No. +• +E-Mail Address +DUALTT-HPOF-XQAE-KCIE-EMPJ +----------------Page (0) Break---------------- +B. + Spouse/Status 3 +A. + You or Joint +B. + Spouse/Status 3 +A. + You or Joint +36. +BALANCE. From side 1, line 35 +................................................................................................................................ +36. +_______________ +.00 +_______________ +.00 +37. +Total itemized deductions from federal Schedule A +................. +37. +______________ +.00 +______________ +.00 +Taxpayers with bonus depreciation/section 179 must use Iowa Schedule A. +38. +Iowa income tax if included in line 5 of federal Schedule A +..... +38. +______________ +.00 +______________ +.00 +39. +BALANCE. +S +ubtract line 38 from line 37 or enter the +.............. +39. +______________ +.00 +______________ +.00 +amount of itemized deductions from the Iowa Schedule A. +40. +Other deductions +....................................................................... +40. +______________ +.00 +______________ +.00 +41. +Deduction. Check one box. + Itemized. Add lines 39 and 40. +Standard +................................................... +41. +_______________ +.00 +s +_______________ +.00 +42. +TAXABLE INCOME. +SUBTRACT + line 41 from line 36. +........................................................................................... +42. +_______________ +.00 +_______________ +.00 +43. +Tax from tables or alternate tax +....................................................... +43. +______________ +.00 +s +______________ +.00 +44. +Iowa lump-sum tax. 25% of federal tax from form 4972 +.................. +44. +______________ +.00 +s +______________ +.00 +45. +Iowa minimum tax. Attach IA 6251. +................................................. +45. +______________ +.00 +s +______________ +.00 +46. +Total tax. ADD lines 43, 44, and 45. +......................................................................................................................... +46. +_______________ +.00 +_______________ +.00 +47. +Total exemption credit amount(s) from Step 3, side 1 +..................... +47. +______________ +.00 +______________ +.00 +48. +Tuition and textbook credit for dependents K-12 +............................. +48. +______________ +.00 +s +______________ +.00 +49. +Total credits. ADD lines 47 and 48. +........................................................................................................................... +49. +_______________ +.00 +_______________ +.00 +50. +BALANCE. SUBTRACT line 49 from line 46. If less than zero, enter zero. +............................................................. +50. +_______________ +.00 +s +_______________ +.00 +51. +Credit for nonresident or part-year resident. Attach IA 126 and federal return. +....................................................... +51. +_______________ +.00 +s +_______________ +.00 +52. +BALANCE. SUBTRACT line 51 from 50. If less than or equal to zero, enter zero. +................................................. +52. +_______________ +.00 +_______________ +.00 +53. +Other nonrefundable Iowa credits. Attach IA 148 Tax Credits Schedule. +................................................................ +53. +_______________ +.00 +s +_______________ +.00 +54. +BALANCE. SUBTRACT line 53 from line 52. +........................................................................................................... +54. +_______________ +.00 +_______________ +.00 +55. +School district surtax/EMS surtax. Take percentage from table; multiply by line 54. +.............................................. +55. +_______________ +.00 +s +_______________ +.00 +56. +Total Tax. ADD lines 54 and 55. +............................................................................................................................... +56. +_______________ +.00 +s +_______________ +.00 +57. +Total tax before contributions. ADD columns A & B on line 56 and enter here. +............................................................................................ +57. +_______________ +.00 +58. +Contributions. +Contributions will reduce your refund or add to the amount you owe. Amounts must be in whole dollars. +Fish/Wildlife + 58a: +s +StateFair + 58b: +s +Firefighters/Veterans + 5 +8c: + + +Child Abuse Prevention + 58d: + + +Enter total. +. +58. +_______________ +.00 +59. +TOTAL TAX AND CONTRIBUTIONS. +ADD lines 57 and 58. +........................................................................................................................ +59. +_______________ +.00 +60. +Iowa income tax withheld +................................................................. +60. +______________ +.00 +s +______________ +.00 +61. +Estimated and voucher payments made for tax year 2012 +............. +61. +______________ +.00 +s +______________ +.00 +62. +Out-of-state tax credit. Attach IA 130. +.............................................. +62. +______________ +.00 +s +______________ +.00 +63. +Motor fuel tax credit. Attach IA 4136. +............................................... +63. +______________ +.00 +s +______________ +.00 +64. +Check One: +Child and dependent care credit +OR +Early childhood development credit +...................... +64. +______________ +.00 +s +______________ +.00 +65. +Iowa earned income tax credit. + +See Instructions. +.......................... +65. +______________ +.00 +s +______________ +.00 +66. +Other refundable credits. Attach IA 148 Tax Credits Schedule. +...... +66. +______________ +.00 +s +______________ +.00 +67. +TOTAL. ADD lines 60 - 66. +............................................................... +67. +______________ +.00 +______________ +.00 +68. +TOTAL CREDITS. +ADD columns A and B on line 67 and enter here. +........................................................................................................... +68. +_______________ +.00 +69. +If line 68 is more than line 59, SUBTRACT line 59 from line 68. This is the amount you overpaid. +.............................................................. +69. +s +_______________ +.00 +70. +Amount of line 69 to be +REFUNDED +........................................................................................................................................... +REFUND +70. +s +_______________ +.00 +For a faster refund file electronically. Go to www.iowa.gov/tax for details or mail return to + Iowa Income Tax - Refund Processing, Hoover State Office Bldg, Des Moines IA 50319-0120 +71. +Amount of line 69 to be +applied to your 2013 estimated tax +....... +71. +______________ +.00 +s +______________ +.00 +72. +If line 68 is less than line 59, SUBTRACT line 68 from line 59. This is the AMOUNT OF TAX YOU OWE. +................................................. +72. +s +_______________ +.00 +73. +Penalty for underpayment of estimated tax from IA 2210 or IA 2210F + + + Check if annualized income method is used. +..................... +73. +s +_______________ +.00 +74. +Penalty and interest +............................ +74a. Penalty +______________ +.00 +s +74b. Interest +_______________ +.00 +s +ADD Enter total 74. +_______________ +.00 +75. +TOTAL AMOUNT DUE. +ADD lines 72, 73, and 74, and enter here. +........................................................................ +PAY THIS AMOUNT +75. +s +_______________ +.00 +You can pay online at www.iowa.gov/tax or pay by mail to Iowa Income Tax - Document Processing, + PO Box 9187, Des Moines IA 50306-9187. Make check payable to Treasurer, State of Iowa. +Complete lines 37-40 +ONLY if you itemize. +} +STEP 7 +Taxable +Income +STEP 8 +Tax, +Credits +and +Checkoff +Contribu- +tions +STEP 9 +Credits +STEP 10 +Refund +or +Amount +You Owe +2012 IA 1040 +, page 2 +This return is due April 30, 2013. Please sign, enclose W-2s, and verify SSNs. +MAILING ADDRESSES: See lines 70 and 75 above. +$1.50 t +o Republican Party +$1.50 to Democratic Party +$1.50 to Campaig +n Fund +$1.50 t +o Republican Party +$1.50 to Democratic Party +$1.50 to + Campaign Fund + Daytime Telephone Number Daytime Telephone Number + s + s +STEP 12 +I (We), the undersigned, declare under penalty of perjury that I (we) have examined this return, including all accompanying schedules +and statements, and, to the best of my (our) knowledge and belief, it is a true, correct, and complete return. Declaration of preparer +(other than taxpayer) is based on all information of which the preparer has any knowledge. +Your Signature Date Check if Deceased Date of Death +Spouse’s Signature Date Check if Deceased Date of Death +POLITICAL CHECKOFF. + This checkoff does not increase the +amount of tax you owe or decrease your refund. +STEP 11 +41-001b (09/24/12) + SPOUSE: + YOURSELF: +Preparer’s Signature Date +Preparer’s PTIN Firm’s FEIN + + PLEASE +SIGN HERE +SIGN HERE +s +s +s +s +s +s +s +----------------Page (1) Break---------------- diff --git a/test/data/ia/form/ia_scr_1040.fields.json b/test/data/ia/form/ia_scr_1040.fields.json new file mode 100644 index 00000000..81ac6b12 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040.fields.json @@ -0,0 +1 @@ +[{"id":"65CBX","type":"box","calc":false,"value":""},{"id":"FS","type":"radio","calc":false,"value":"1"},{"id":"FS","type":"radio","calc":false,"value":"2"},{"id":"FS","type":"radio","calc":false,"value":"3"},{"id":"FS","type":"radio","calc":false,"value":"4"},{"id":"FS","type":"radio","calc":false,"value":"5"},{"id":"FS","type":"radio","calc":false,"value":"6"},{"id":"ISDEPENDENTY","type":"box","calc":false,"value":""},{"id":"ISDEPENDENTN","type":"box","calc":false,"value":""},{"id":"FYDATEBEG","type":"date","calc":false,"value":""},{"id":"FYDATEEND","type":"date","calc":false,"value":""},{"id":"LASTNAME","type":"alpha","calc":false,"value":""},{"id":"FIRSTNAME","type":"alpha","calc":false,"value":""},{"id":"MIDINIT","type":"alpha","calc":false,"value":""},{"id":"SPLASTNAME","type":"alpha","calc":false,"value":""},{"id":"SPFIRSTNAME","type":"alpha","calc":false,"value":""},{"id":"SPMIDINIT","type":"alpha","calc":false,"value":""},{"id":"ADDRESS","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"COUNTYNUMBER","type":"number","calc":false,"value":""},{"id":"SCHOOLDISTRICTNUM","type":"number","calc":false,"value":""},{"id":"HEALTH1","type":"alpha","calc":false,"value":""},{"id":"HEALTH2","type":"alpha","calc":false,"value":""},{"id":"SPNAME_FS4","type":"alpha","calc":false,"value":""},{"id":"SPSSN_FS4","type":"ssn","calc":false,"value":""},{"id":"SPINCOME_FS4","type":"number","calc":false,"value":""},{"id":"DEPENDENTNAME_FS6","type":"alpha","calc":false,"value":""},{"id":"DEPENDENTSSN_FS6","type":"ssn","calc":false,"value":""},{"id":"SPPCREDIT","type":"alpha","calc":false,"value":""},{"id":"SPPCREDIT_TTL","type":"number","calc":false,"value":""},{"id":"SP65","type":"alpha","calc":false,"value":""},{"id":"SP65_TTL","type":"number","calc":false,"value":""},{"id":"SPDEPENDENTS","type":"alpha","calc":false,"value":""},{"id":"SPDEPENDENTS_TTL","type":"number","calc":false,"value":""},{"id":"YOUCREDIT","type":"alpha","calc":false,"value":""},{"id":"YOUCREDIT_TTL","type":"number","calc":false,"value":""},{"id":"YOU65","type":"alpha","calc":false,"value":""},{"id":"YOU65_TTL","type":"number","calc":false,"value":""},{"id":"YOUDEPENDENTS","type":"alpha","calc":false,"value":""},{"id":"YOUDEPENDENTS_TTL","type":"number","calc":false,"value":""},{"id":"NAMEDEPENDENTS","type":"alpha","calc":false,"value":""},{"id":"SPTTLEXEMPTIONS","type":"number","calc":false,"value":""},{"id":"YOUTTLEXEMPTIONS","type":"number","calc":false,"value":""},{"id":"1B","type":"number","calc":false,"value":""},{"id":"1A","type":"number","calc":false,"value":""},{"id":"2B","type":"number","calc":false,"value":""},{"id":"2A","type":"number","calc":false,"value":""},{"id":"3B","type":"number","calc":false,"value":""},{"id":"3A","type":"number","calc":false,"value":""},{"id":"4B","type":"number","calc":false,"value":""},{"id":"4A","type":"number","calc":false,"value":""},{"id":"5B","type":"number","calc":false,"value":""},{"id":"5A","type":"number","calc":false,"value":""},{"id":"6B","type":"number","calc":false,"value":""},{"id":"6A","type":"number","calc":false,"value":""},{"id":"7B","type":"number","calc":false,"value":""},{"id":"7A","type":"number","calc":false,"value":""},{"id":"8B","type":"number","calc":false,"value":""},{"id":"8A","type":"number","calc":false,"value":""},{"id":"9B","type":"number","calc":false,"value":""},{"id":"9A","type":"number","calc":false,"value":""},{"id":"10B","type":"number","calc":false,"value":""},{"id":"10A","type":"number","calc":false,"value":""},{"id":"11B","type":"number","calc":false,"value":""},{"id":"11A","type":"number","calc":false,"value":""},{"id":"12B","type":"number","calc":false,"value":""},{"id":"12A","type":"number","calc":false,"value":""},{"id":"13B","type":"number","calc":false,"value":""},{"id":"13A","type":"number","calc":false,"value":""},{"id":"14B","type":"number","calc":false,"value":""},{"id":"14A","type":"number","calc":false,"value":""},{"id":"15B","type":"number","calc":false,"value":""},{"id":"15A","type":"number","calc":false,"value":""},{"id":"16B","type":"number","calc":false,"value":""},{"id":"16A","type":"number","calc":false,"value":""},{"id":"17B","type":"number","calc":false,"value":""},{"id":"17A","type":"number","calc":false,"value":""},{"id":"18B","type":"number","calc":false,"value":""},{"id":"18A","type":"number","calc":false,"value":""},{"id":"19B","type":"number","calc":false,"value":""},{"id":"19A","type":"number","calc":false,"value":""},{"id":"20B","type":"number","calc":false,"value":""},{"id":"20A","type":"number","calc":false,"value":""},{"id":"21B","type":"number","calc":false,"value":""},{"id":"21A","type":"number","calc":false,"value":""},{"id":"22B","type":"number","calc":false,"value":""},{"id":"22A","type":"number","calc":false,"value":""},{"id":"23B","type":"number","calc":false,"value":""},{"id":"23A","type":"number","calc":false,"value":""},{"id":"24B","type":"number","calc":false,"value":""},{"id":"24A","type":"number","calc":false,"value":""},{"id":"25B","type":"number","calc":false,"value":""},{"id":"25A","type":"number","calc":false,"value":""},{"id":"26B","type":"number","calc":false,"value":""},{"id":"26A","type":"number","calc":false,"value":""},{"id":"27B","type":"number","calc":false,"value":""},{"id":"27A","type":"number","calc":false,"value":""},{"id":"28B","type":"number","calc":false,"value":""},{"id":"28A","type":"number","calc":false,"value":""},{"id":"29B","type":"number","calc":false,"value":""},{"id":"29A","type":"number","calc":false,"value":""},{"id":"30B","type":"number","calc":false,"value":""},{"id":"30A","type":"number","calc":false,"value":""},{"id":"31B","type":"number","calc":false,"value":""},{"id":"31A","type":"number","calc":false,"value":""},{"id":"32B","type":"number","calc":false,"value":""},{"id":"32A","type":"number","calc":false,"value":""},{"id":"33B","type":"number","calc":false,"value":""},{"id":"33A","type":"number","calc":false,"value":""},{"id":"34B","type":"number","calc":false,"value":""},{"id":"34A","type":"number","calc":false,"value":""},{"id":"35B","type":"number","calc":false,"value":""},{"id":"35A","type":"number","calc":false,"value":""},{"id":"DEDUCTIONTYPE","type":"radio","calc":false,"value":"I"},{"id":"DEDUCTIONTYPE","type":"radio","calc":false,"value":"S"},{"id":"64CBX1","type":"box","calc":false,"value":""},{"id":"64CBX2","type":"box","calc":false,"value":""},{"id":"73CBX","type":"box","calc":false,"value":""},{"id":"SPPOLR","type":"box","calc":false,"value":""},{"id":"SPPOLD","type":"box","calc":false,"value":""},{"id":"SPPOLC","type":"box","calc":false,"value":""},{"id":"YOUPOLR","type":"box","calc":false,"value":""},{"id":"YOUPOLD","type":"box","calc":false,"value":""},{"id":"YOUPOLC","type":"box","calc":false,"value":""},{"id":"YOUDEC","type":"box","calc":false,"value":""},{"id":"SPDEC","type":"box","calc":false,"value":""},{"id":"36B","type":"number","calc":false,"value":""},{"id":"36A","type":"number","calc":false,"value":""},{"id":"37B","type":"number","calc":false,"value":""},{"id":"37A","type":"number","calc":false,"value":""},{"id":"38B","type":"number","calc":false,"value":""},{"id":"38A","type":"number","calc":false,"value":""},{"id":"39B","type":"number","calc":false,"value":""},{"id":"39A","type":"number","calc":false,"value":""},{"id":"40B","type":"number","calc":false,"value":""},{"id":"40A","type":"number","calc":false,"value":""},{"id":"41B","type":"number","calc":false,"value":""},{"id":"41A","type":"number","calc":false,"value":""},{"id":"42B","type":"number","calc":false,"value":""},{"id":"42A","type":"number","calc":false,"value":""},{"id":"43B","type":"number","calc":false,"value":""},{"id":"43A","type":"number","calc":false,"value":""},{"id":"44B","type":"number","calc":false,"value":""},{"id":"44A","type":"number","calc":false,"value":""},{"id":"45B","type":"number","calc":false,"value":""},{"id":"45A","type":"number","calc":false,"value":""},{"id":"46B","type":"number","calc":false,"value":""},{"id":"46A","type":"number","calc":false,"value":""},{"id":"47B","type":"number","calc":false,"value":""},{"id":"47A","type":"number","calc":false,"value":""},{"id":"48B","type":"number","calc":false,"value":""},{"id":"48A","type":"number","calc":false,"value":""},{"id":"49B","type":"number","calc":false,"value":""},{"id":"49A","type":"number","calc":false,"value":""},{"id":"50B","type":"number","calc":false,"value":""},{"id":"50A","type":"number","calc":false,"value":""},{"id":"51B","type":"number","calc":false,"value":""},{"id":"51A","type":"number","calc":false,"value":""},{"id":"52B","type":"number","calc":false,"value":""},{"id":"52A","type":"number","calc":false,"value":""},{"id":"Add_IA_148","type":"link","calc":false,"value":""},{"id":"53B","type":"number","calc":false,"value":""},{"id":"53A","type":"number","calc":false,"value":""},{"id":"54B","type":"number","calc":false,"value":""},{"id":"54A","type":"number","calc":false,"value":""},{"id":"55B","type":"number","calc":false,"value":""},{"id":"55A","type":"number","calc":false,"value":""},{"id":"56B","type":"number","calc":false,"value":""},{"id":"56A","type":"number","calc":false,"value":""},{"id":"57","type":"number","calc":false,"value":""},{"id":"58A","type":"number","calc":false,"value":""},{"id":"58B","type":"number","calc":false,"value":""},{"id":"58C","type":"number","calc":false,"value":""},{"id":"58D","type":"number","calc":false,"value":""},{"id":"58","type":"number","calc":false,"value":""},{"id":"59","type":"number","calc":false,"value":""},{"id":"60B","type":"number","calc":false,"value":""},{"id":"60A","type":"number","calc":false,"value":""},{"id":"61B","type":"number","calc":false,"value":""},{"id":"61A","type":"number","calc":false,"value":""},{"id":"Add_IA_130","type":"link","calc":false,"value":""},{"id":"62B","type":"number","calc":false,"value":""},{"id":"62A","type":"number","calc":false,"value":""},{"id":"Add_IA_4136","type":"link","calc":false,"value":""},{"id":"63B","type":"number","calc":false,"value":""},{"id":"63A","type":"number","calc":false,"value":""},{"id":"64B","type":"number","calc":false,"value":""},{"id":"64A","type":"number","calc":false,"value":""},{"id":"65B","type":"number","calc":false,"value":""},{"id":"65A","type":"number","calc":false,"value":""},{"id":"66B","type":"number","calc":false,"value":""},{"id":"66A","type":"number","calc":false,"value":""},{"id":"67B","type":"number","calc":false,"value":""},{"id":"67A","type":"number","calc":false,"value":""},{"id":"68","type":"number","calc":false,"value":""},{"id":"69","type":"number","calc":false,"value":""},{"id":"70","type":"number","calc":false,"value":""},{"id":"71B","type":"number","calc":false,"value":""},{"id":"71A","type":"number","calc":false,"value":""},{"id":"72","type":"number","calc":false,"value":""},{"id":"73","type":"number","calc":false,"value":""},{"id":"74A","type":"number","calc":false,"value":""},{"id":"74B","type":"number","calc":false,"value":""},{"id":"74","type":"number","calc":false,"value":""},{"id":"75","type":"number","calc":false,"value":""},{"id":"YOUDATE","type":"date","calc":false,"value":""},{"id":"YOUDOD","type":"date","calc":false,"value":""},{"id":"PREPDATE","type":"date","calc":false,"value":""},{"id":"SPDATE","type":"date","calc":false,"value":""},{"id":"SPDOD","type":"date","calc":false,"value":""},{"id":"PREPID","type":"number","calc":false,"value":""},{"id":"FIRMFEIN","type":"number","calc":false,"value":""},{"id":"YOUPHONE","type":"phone","calc":false,"value":""},{"id":"PREPPHONE","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_1040.json b/test/data/ia/form/ia_scr_1040.json new file mode 100755 index 00000000..358964f2 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":10.416249937500002,"y":29.97632865,"w":1.4400864,"l":91.68362568750001},{"oc":"#2b2e34","x":10.416249937500002,"y":38.376832650000004,"w":1.4400864,"l":91.68362568750001},{"oc":"#2b2e34","x":3.0939356250000003,"y":18.90566445,"w":1.4400864,"l":99.00594000000001},{"oc":"#2b2e34","x":56.18587095000001,"y":16.798038000000002,"w":0.7200432,"l":10.436876174999995},{"oc":"#2b2e34","x":98.6965464375,"y":18.110616750000002,"w":0.7200432,"l":3.403329187499998},{"oc":"#2b2e34","x":74.50196985,"y":17.495579850000002,"w":0.7200432,"l":3.5889653250000015},{"oc":"#2b2e34","x":56.18587095000001,"y":17.450577149999997,"w":0.7200432,"l":10.395623699999998},{"oc":"#2b2e34","x":98.59341525,"y":17.480578949999998,"w":0.7200432,"l":3.506460374999993},{"oc":"#2b2e34","x":56.18587095000001,"y":18.0731145,"w":0.7200432,"l":10.106856375},{"oc":"#2b2e34","x":74.50196985,"y":18.0731145,"w":0.7200432,"l":3.6714702750000106},{"oc":"#2b2e34","x":70.6448634375,"y":18.763155899999997,"w":0.7200432,"l":7.693586587500003},{"oc":"#2b2e34","x":3.0939356250000003,"y":4.062273899999998,"w":1.4400864,"l":50.92618038750001},{"oc":"#2b2e34","x":3.0939356250000003,"y":5.5623638999999985,"w":1.4400864,"l":50.92618038750001},{"oc":"#2b2e34","x":3.0939356250000003,"y":6.837440399999996,"w":1.4400864,"l":50.92618038750001},{"oc":"#2b2e34","x":3.0939356250000003,"y":8.337530399999997,"w":1.4400864,"l":50.92618038750001},{"oc":"#2b2e34","x":95.39634843750001,"y":18.763155899999997,"w":0.7200432,"l":6.7035271875000015},{"oc":"#2b2e34","x":74.50196985,"y":16.798038000000002,"w":0.7200432,"l":3.5889653250000015},{"oc":"#2b2e34","x":98.59341525,"y":16.858041600000004,"w":0.7200432,"l":3.506460374999993},{"oc":"#2b2e34","x":80.31856882500001,"y":16.858041600000004,"w":0.7200432,"l":10.540007362500003},{"oc":"#2b2e34","x":80.40107377500001,"y":17.495579850000002,"w":0.7200432,"l":10.78752221249999},{"oc":"#2b2e34","x":80.21543763750002,"y":18.110616750000002,"w":0.7200432,"l":10.828774687500001},{"oc":"#2b2e34","x":3.2589799020625003,"y":10.280146949999997,"w":1.4400864,"l":54.22634401043751},{"oc":"#2b2e34","x":3.0939356250000003,"y":11.030191949999997,"w":0.7200432,"l":99.00594000000001},{"oc":"#2b2e34","x":3.0939356250000003,"y":11.757735600000004,"w":0.7200432,"l":99.00594000000001},{"oc":"#2b2e34","x":3.0106400025625,"y":12.499967631250001,"w":0.7200432,"l":54.65052258462501},{"oc":"#2b2e34","x":3.0939356250000003,"y":13.212822899999997,"w":0.7200432,"l":99.00594000000001},{"oc":"#2b2e34","x":3.0939356250000003,"y":13.940366550000002,"w":0.7200432,"l":99.00594000000001},{"oc":"#2b2e34","x":57.627988721875,"y":13.246574925,"w":3.0601836,"l":44.296563884375},{"oc":"#2b2e34","x":57.627988721875,"y":9.37385507575,"w":3.0601836,"l":44.296563884375},{"oc":"#2b2e34","x":57.712212525000005,"y":10.280146949999997,"w":1.4400864,"l":44.3876631},{"oc":"#2b2e34","x":57.69158628750001,"y":11.765236049999999,"w":0.7200432,"l":44.4082893375},{"oc":"#2b2e34","x":3.0939356250000003,"y":15.500460149999995,"w":1.4400864,"l":99.00594000000001},{"oc":"#2b2e34","x":3.0939356250000003,"y":9.342590699999997,"w":1.4400864,"l":54.494519475000004},{"oc":"#2b2e34","x":3.0939356250000003,"y":14.727913800000001,"w":1.4400864,"l":26.071564200000005},{"oc":"#2b2e34","x":80.68812224687501,"y":25.03103195,"w":1.4400864,"l":17.143875445812498},{"oc":"#2b2e34","x":80.68812224687501,"y":22.02836430075,"w":1.4400864,"l":17.143875445812498},{"clr":1,"x":57.794717475000006,"y":10.940186550000002,"w":1.4400864,"l":43.2119675625}],"VLines":[{"oc":"#2b2e34","x":4.2696655395625,"y":11.0826951,"w":0.7200432,"l":4.40276415},{"oc":"#2b2e34","x":5.837259589562501,"y":11.0826951,"w":0.7200432,"l":4.40276415},{"oc":"#2b2e34","x":30.341195362500002,"y":9.3125889,"w":1.4400864,"l":0.9975598500000018},{"oc":"#2b2e34","x":101.92455260625,"y":9.37385507575,"w":3.0601836,"l":3.872719849249999},{"oc":"#2b2e34","x":57.627988721875,"y":9.37385507575,"w":3.0601836,"l":3.872719849249999},{"oc":"#2b2e34","x":83.0618584125,"y":10.932686100000003,"w":0.7200432,"l":0.7500450000000001},{"oc":"#2b2e34","x":102.05862315000002,"y":13.227823800000001,"w":0.7200432,"l":2.220133199999997},{"oc":"#2b2e34","x":29.1861260625,"y":14.757915599999999,"w":1.4400864,"l":0.7425445499999958},{"oc":"#2b2e34","x":97.83199769268751,"y":22.02836430075,"w":1.4400864,"l":3.00266764925},{"oc":"#2b2e34","x":80.68812224687501,"y":22.02836430075,"w":1.4400864,"l":3.00266764925},{"clr":1,"x":29.082994875000004,"y":8.37503265,"w":1.4400864,"l":0.9375562500000001}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":10.763767187500001,"y":19.125,"w":6.163,"clr":-1,"A":"left","R":[{"T":"1.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393142187500002,"y":19.125,"w":82.25659999999998,"clr":-1,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20tips%2C%20etc.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":26.583142187500005,"y":19.125,"w":126.74349999999998,"clr":-1,"A":"left","R":[{"T":".................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.353142187500005,"y":19.125,"w":6.163,"clr":-1,"A":"left","R":[{"T":"1.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.044392187499994,"y":19.125,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.0885953125,"y":19.125,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.1310953125,"y":19.125,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98984531250001,"y":19.125,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.763595312499998,"y":19.8225,"w":6.163,"clr":-1,"A":"left","R":[{"T":"2.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392970312499997,"y":19.8225,"w":201.72000000000014,"clr":-1,"A":"left","R":[{"T":"Taxable%20interest%20income.%20If%20more%20than%20%241%2C500%2C%20complete%20Sch.%20B.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":47.02234531249999,"y":19.8225,"w":11.6346,"clr":-1,"A":"left","R":[{"T":"......","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.373595312499994,"y":19.8225,"w":5.923,"clr":-1,"A":"left","R":[{"T":"2.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.0442203125,"y":19.8225,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08842343750001,"y":19.8225,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13092343750002,"y":19.8225,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.9896734375,"y":19.8225,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.763423437500002,"y":20.5275,"w":5.923,"clr":-1,"A":"left","R":[{"T":"3.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.3515484375,"y":20.5275,"w":200.2434000000001,"clr":-1,"A":"left","R":[{"T":"Ordinary%20dividend%20income.%20If%20more%20than%20%241%2C500%2C%20complete%20Sch.%20B.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.362173437500005,"y":20.5275,"w":11.6346,"clr":-1,"A":"left","R":[{"T":"......","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.352798437500006,"y":20.5275,"w":6.163,"clr":-1,"A":"left","R":[{"T":"3.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.044048437499995,"y":20.5275,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.088251562500005,"y":20.5275,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13075156250001,"y":20.5275,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.9895015625,"y":20.5275,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.763251562499995,"y":21.232499999999998,"w":6.163,"clr":-1,"A":"left","R":[{"T":"4.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392626562499997,"y":21.232499999999998,"w":54.77579999999999,"clr":-1,"A":"left","R":[{"T":"Alimony%20received","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":22.230751562499997,"y":21.232499999999998,"w":152.06880000000012,"clr":-1,"A":"left","R":[{"T":"..............................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.3526265625,"y":21.232499999999998,"w":6.163,"clr":-1,"A":"left","R":[{"T":"4.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.043876562499996,"y":21.232499999999998,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.0880796875,"y":21.232499999999998,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13057968749999,"y":21.232499999999998,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98932968749999,"y":21.232499999999998,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.76307968749999,"y":21.937499999999996,"w":6.163,"clr":-1,"A":"left","R":[{"T":"5.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.39245468749999,"y":21.937499999999996,"w":180.97220000000007,"clr":-1,"A":"left","R":[{"T":"Business%20income%2F(loss)%20from%20federal%20Schedule%20C%20or%20C-EZ","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":43.680579687499986,"y":21.937499999999996,"w":27.244000000000007,"clr":-1,"A":"left","R":[{"T":"..............","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.352454687499986,"y":21.937499999999996,"w":6.163,"clr":-1,"A":"left","R":[{"T":"5.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04370468749999,"y":21.937499999999996,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.087907812499985,"y":21.937499999999996,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13040781249998,"y":21.937499999999996,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.9891578125,"y":21.937499999999996,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.762907812499984,"y":22.635,"w":6.163,"clr":-1,"A":"left","R":[{"T":"6.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392282812499985,"y":22.635,"w":124.052,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%2F(loss)%20from%20federal%20Sch.%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.65665781249999,"y":22.635,"w":81.04580000000004,"clr":-1,"A":"left","R":[{"T":"if%20required%20for%20federal%20purposes","S":43,"TS":[2,10,0,0]}]},{"oc":"#2b2e34","x":48.03228281249998,"y":22.635,"w":1.946,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.35228109374998,"y":22.635,"w":6.163,"clr":-1,"A":"left","R":[{"T":"6.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.043531093749976,"y":22.635,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08773421874998,"y":22.635,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13023421874998,"y":22.635,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98898421874998,"y":22.635,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.762734218749973,"y":23.339999999999993,"w":6.163,"clr":-1,"A":"left","R":[{"T":"7.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392109218749974,"y":23.339999999999993,"w":139.6069,"clr":-1,"A":"left","R":[{"T":"Other%20gains%2F(losses)%20from%20federal%20form%204797","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":36.29648421874998,"y":23.339999999999993,"w":70.21440000000003,"clr":-1,"A":"left","R":[{"T":"....................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.35210921874997,"y":23.339999999999993,"w":6.163,"clr":-1,"A":"left","R":[{"T":"7.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04335921874997,"y":23.339999999999993,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08773421874997,"y":23.339999999999993,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13023421874996,"y":23.339999999999993,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98898421874996,"y":23.339999999999993,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.762734218749964,"y":24.044999999999998,"w":6.163,"clr":-1,"A":"left","R":[{"T":"8.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392109218749964,"y":24.044999999999998,"w":80.1375,"clr":-1,"A":"left","R":[{"T":"Taxable%20IRA%20distributions","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":26.252109218749965,"y":24.044999999999998,"w":128.66039999999987,"clr":-1,"A":"left","R":[{"T":"..................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.35210921874997,"y":24.044999999999998,"w":6.163,"clr":-1,"A":"left","R":[{"T":"8.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04335921874997,"y":24.044999999999998,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08756234374997,"y":24.044999999999998,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13006234374997,"y":24.044999999999998,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98881234374998,"y":24.044999999999998,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.762562343749968,"y":24.74999999999999,"w":6.163,"clr":-1,"A":"left","R":[{"T":"9.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.391937343749968,"y":24.74999999999999,"w":101.249,"clr":-1,"A":"left","R":[{"T":"Taxable%20pensions%20and%20annuities","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":29.92318734374997,"y":24.74999999999999,"w":107.29950000000007,"clr":-1,"A":"left","R":[{"T":".......................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.35193734374998,"y":24.74999999999999,"w":6.163,"clr":-1,"A":"left","R":[{"T":"9.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04318734374998,"y":24.74999999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08739046874998,"y":24.74999999999999,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.12989046874998,"y":24.74999999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98864046874998,"y":24.74999999999999,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164265468749969,"y":25.447499999999994,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"10.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.47426546874997,"y":25.447499999999994,"w":136.61249999999998,"clr":-1,"A":"left","R":[{"T":"Rents%2C%20royalties%2C%20partnerships%2C%20estates%2C%20etc.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":35.96614046874998,"y":25.447499999999994,"w":72.13519999999997,"clr":-1,"A":"left","R":[{"T":".....................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69176546874998,"y":25.447499999999994,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"10.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04301546874998,"y":25.447499999999994,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08721859374998,"y":25.447499999999994,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.12971859374998,"y":25.447499999999994,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98846859374999,"y":25.447499999999994,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164093593749973,"y":26.152499999999993,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"11.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.474093593749974,"y":26.152499999999993,"w":140.6762,"clr":-1,"A":"left","R":[{"T":"Farm%20income%2F(loss)%20from%20federal%20Schedule%20F","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":36.62596859374998,"y":26.152499999999993,"w":68.29550000000006,"clr":-1,"A":"left","R":[{"T":"...................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69159359374998,"y":26.152499999999993,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"11.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.042843593749986,"y":26.152499999999993,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08704671874999,"y":26.152499999999993,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.12954671874998,"y":26.152499999999993,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98829671874998,"y":26.152499999999993,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.163921718749977,"y":26.85749999999999,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"12.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.473921718749978,"y":26.85749999999999,"w":152.4842,"clr":-1,"A":"left","R":[{"T":"Unemployment%20compensation.%20See%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":38.64704671874998,"y":26.85749999999999,"w":56.532599999999974,"clr":-1,"A":"left","R":[{"T":".............................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.691421718749986,"y":26.85749999999999,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"12.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.042671718749986,"y":26.85749999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08704671874999,"y":26.85749999999999,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.12954671874998,"y":26.85749999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98829671874998,"y":26.85749999999999,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.163921718749977,"y":27.60749999999999,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"13.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.473921718749978,"y":27.60749999999999,"w":102.6392,"clr":-1,"A":"left","R":[{"T":"Taxable%20Social%20Security%20benefits","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":30.273296718749975,"y":27.60749999999999,"w":105.2621999999999,"clr":-1,"A":"left","R":[{"T":"......................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.691421718749986,"y":27.60749999999999,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"13.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.042671718749986,"y":27.60749999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.04579671874998,"y":27.60749999999999,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.067046718749985,"y":27.60749999999999,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.12954671874998,"y":27.60749999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98829671874998,"y":27.60749999999999,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.163921718749977,"y":28.33499999999999,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"14.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.473921718749978,"y":28.33499999999999,"w":200.0212000000002,"clr":-1,"A":"left","R":[{"T":"Other%20income%2C%20gambling%20income%2C%20bonus%20depreciation%2Fsection%20179%20adjustment","S":43,"TS":[2,10,0,0]}]},{"oc":"#2b2e34","x":47.35079671874997,"y":28.33499999999999,"w":5.902200000000001,"clr":-1,"A":"left","R":[{"T":"...","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69142515624998,"y":28.33499999999999,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"14.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04267515624998,"y":28.33499999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08687828124998,"y":28.33499999999999,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.12937828124998,"y":28.33499999999999,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98812828124998,"y":28.33499999999999,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165625000000002,"y":29.0775,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"15.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475625,"y":29.0775,"w":58.32130000000001,"clr":-1,"A":"left","R":[{"T":"GROSS%20INCOME.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":22.298281250000002,"y":29.0775,"w":52.3824,"clr":-1,"A":"left","R":[{"T":"%20ADD%20lines%201-14.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":31.615625000000005,"y":29.0775,"w":239.92380000000034,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.05125000000001,"y":29.0775,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"15.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.17562500000001,"y":29.0775,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.79750000000001,"y":29.0775,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.81875000000002,"y":29.0775,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.26250343750003,"y":29.0775,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.92562843750002,"y":29.0775,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165628437500015,"y":29.8275,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"16.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475628437500015,"y":29.8275,"w":115.55000000000005,"clr":-1,"A":"left","R":[{"T":"Payments%20to%20an%20IRA%2C%20Keogh%2C%20or%20SEP","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.60562843750002,"y":29.8275,"w":91.69699999999992,"clr":-1,"A":"left","R":[{"T":"...............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.693128437500015,"y":29.8275,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"16.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.044378437500015,"y":29.8275,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08858156250002,"y":29.8275,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13108156250001,"y":29.8275,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98983156250003,"y":29.8275,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.16545656250001,"y":30.570000000000004,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"17.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.47545656250001,"y":30.570000000000004,"w":123.20739999999996,"clr":-1,"A":"left","R":[{"T":"Deductible%20part%20of%20self-employment%20tax","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.616081562500014,"y":30.570000000000004,"w":85.81760000000004,"clr":-1,"A":"left","R":[{"T":"............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.692956562500015,"y":30.570000000000004,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"17.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04420656250002,"y":30.570000000000004,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.088409687500025,"y":30.570000000000004,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13090968750002,"y":30.570000000000004,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98965968750002,"y":30.570000000000004,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165284687500014,"y":31.3125,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"18.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475284687500015,"y":31.3125,"w":87.3306,"clr":-1,"A":"left","R":[{"T":"Health%20insurance%20deduction","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":27.59340968750001,"y":31.3125,"w":120.86279999999988,"clr":-1,"A":"left","R":[{"T":"..............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.692784687500016,"y":31.3125,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"18.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.044034687500016,"y":31.3125,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08823781250001,"y":31.3125,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13073781250002,"y":31.3125,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98948781250002,"y":31.3125,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165112812500007,"y":32.055,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"19.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475112812500008,"y":32.055,"w":122.3126,"clr":-1,"A":"left","R":[{"T":"Penalty%20on%20early%20withdrawal%20of%20savings","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.615737812500015,"y":32.055,"w":85.81760000000004,"clr":-1,"A":"left","R":[{"T":"............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69261281250001,"y":32.055,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"19.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.0438628125,"y":32.055,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.088065937500005,"y":32.055,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13056593750001,"y":32.055,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98931593750001,"y":32.055,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164940937500003,"y":32.7975,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"20.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.474940937500003,"y":32.7975,"w":41.140800000000006,"clr":-1,"A":"left","R":[{"T":"Alimony%20paid","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":19.879315937500003,"y":32.7975,"w":165.74999999999991,"clr":-1,"A":"left","R":[{"T":".....................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.692440937499995,"y":32.7975,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"20.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.0436909375,"y":32.7975,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.088065937500005,"y":32.7975,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13056593750001,"y":32.7975,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.9893159375,"y":32.7975,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164940937499992,"y":33.555,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"21.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.474940937499992,"y":33.555,"w":117.69100000000003,"clr":-1,"A":"left","R":[{"T":"Pension%2Fretirement%20income%20exclusion","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.95556593749999,"y":33.555,"w":89.65860000000005,"clr":-1,"A":"left","R":[{"T":"..............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69244093749999,"y":33.555,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"21.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.043690937499996,"y":33.555,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.04681593749999,"y":33.555,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.06806593749999,"y":33.555,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.1305659375,"y":33.555,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.9893159375,"y":33.555,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164940937499983,"y":34.32,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"22.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.474940937499984,"y":34.32,"w":160.61730000000003,"clr":-1,"A":"left","R":[{"T":"Moving%20expense%20deduction%20from%20federal%20form%203903","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.98869093749999,"y":34.32,"w":48.72999999999999,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69244093749999,"y":34.32,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"22.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.043690937499996,"y":34.32,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.0878940625,"y":34.32,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13039406249999,"y":34.32,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98914406249999,"y":34.32,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164769062499987,"y":35.0775,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"23.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.474769062499988,"y":35.0775,"w":91.10130000000001,"clr":-1,"A":"left","R":[{"T":"Iowa%20capital%20gain%20deduction%3B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":28.067269062499985,"y":35.0775,"w":104.30040000000001,"clr":-1,"A":"left","R":[{"T":"certain%20sales%20ONLY%20(see%20instructions).","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":46.361644062499984,"y":35.0775,"w":11.6346,"clr":-1,"A":"left","R":[{"T":"......","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69226906249999,"y":35.0775,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"23.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04351906249999,"y":35.0775,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.04664406249998,"y":35.0775,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.06789406249998,"y":35.0775,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.13039406249997,"y":35.0775,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98914406249999,"y":35.0775,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164769062499976,"y":35.8425,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"24.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.474769062499977,"y":35.8425,"w":58.670700000000004,"clr":-1,"A":"left","R":[{"T":"Other%20adjustments","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":22.89039406249998,"y":35.8425,"w":148.22279999999992,"clr":-1,"A":"left","R":[{"T":"............................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.692269062499975,"y":35.8425,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"24.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.043519062499975,"y":35.8425,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.08789406249997,"y":35.8425,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.13039406249997,"y":35.8425,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98914406249997,"y":35.8425,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.164769062499968,"y":36.637499999999996,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"25.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.474769062499968,"y":36.637499999999996,"w":115.44399999999997,"clr":-1,"A":"left","R":[{"T":"Total%20adjustments.%20ADD%20lines%2016-24.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.60476906249997,"y":36.637499999999996,"w":234.03599999999986,"clr":-1,"A":"left","R":[{"T":"........................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.05039406249996,"y":36.637499999999996,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"25.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.17476906249998,"y":36.637499999999996,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.79664406249998,"y":36.637499999999996,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.81789406249997,"y":36.637499999999996,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.26163718749997,"y":36.637499999999996,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.92476218749997,"y":36.637499999999996,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165625000000002,"y":37.455000000000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"26.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.805625000000003,"y":37.455000000000005,"w":46.87100000000001,"clr":-1,"A":"left","R":[{"T":"NET%20INCOME.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":20.719076562500003,"y":37.455000000000005,"w":105.6296,"clr":-1,"A":"left","R":[{"T":"%20SUBTRACT%20line%2025%20from%20line%2015.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.30875,"y":37.455000000000005,"w":195.0299999999999,"clr":-1,"A":"left","R":[{"T":"....................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.05125000000001,"y":37.455000000000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"26.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.17562500000001,"y":37.455000000000005,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.79750000000001,"y":37.455000000000005,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.81875000000002,"y":37.455000000000005,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.26250343750003,"y":37.455000000000005,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.92562843750002,"y":37.455000000000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165628437500015,"y":38.2725,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"27.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475628437500015,"y":38.2725,"w":186.4590000000001,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20refund%20%2F%20overpayment%20received%20in%202012","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":44.34125343750002,"y":38.2725,"w":23.4084,"clr":-1,"A":"left","R":[{"T":"............","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69312843750002,"y":38.2725,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"27.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04437843750002,"y":38.2725,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.047503437500026,"y":38.2725,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.06875343750002,"y":38.2725,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.13125343750002,"y":38.2725,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.99000343750002,"y":38.2725,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165628437500015,"y":39.0525,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"28.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475628437500015,"y":39.0525,"w":149.37019999999995,"clr":-1,"A":"left","R":[{"T":"Self-employment%2Fhousehold%20employment%20taxes","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":38.31875343750002,"y":39.0525,"w":58.45199999999999,"clr":-1,"A":"left","R":[{"T":"..............................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69312843750002,"y":39.0525,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"28.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04437843750002,"y":39.0525,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.047503437500026,"y":39.0525,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.06875343750002,"y":39.0525,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.13125343750002,"y":39.0525,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.99000343750002,"y":39.0525,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165628437500015,"y":39.824999999999996,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"29.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475628437500015,"y":39.824999999999996,"w":152.09399999999994,"clr":-1,"A":"left","R":[{"T":"Addition%20for%20federal%20taxes.%20ADD%20lines%2027%20and%2028.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":38.64875343750001,"y":39.824999999999996,"w":198.8694000000005,"clr":-1,"A":"left","R":[{"T":"......................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.05108156250002,"y":39.824999999999996,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"29.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.17545656250003,"y":39.824999999999996,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.83858156250004,"y":39.824999999999996,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.26233156250004,"y":39.824999999999996,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.92545656250003,"y":39.824999999999996,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165456562500019,"y":40.5675,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"30.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.47545656250002,"y":40.5675,"w":88.17179999999996,"clr":-1,"A":"left","R":[{"T":"Total.%20ADD%20lines%2026%20and%2029.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":27.92358156250002,"y":40.5675,"w":261.28660000000093,"clr":-1,"A":"left","R":[{"T":"......................................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.05090968750004,"y":40.5675,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"30.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.17528468750002,"y":40.5675,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.83840968750003,"y":40.5675,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.26215968750003,"y":40.5675,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.92528468750004,"y":40.5675,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165284687500023,"y":41.3175,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"31.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475284687500023,"y":41.3175,"w":64.57000000000001,"clr":-1,"A":"left","R":[{"T":"Federal%20tax%20withheld","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":23.90153468750003,"y":41.3175,"w":142.3427000000001,"clr":-1,"A":"left","R":[{"T":".........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69278468750003,"y":41.3175,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"31.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04403468750003,"y":41.3175,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.047159687500034,"y":41.3175,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.06840968750003,"y":41.3175,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.13090968750004,"y":41.3175,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98965968750002,"y":41.3175,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165284687500023,"y":42.0975,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"32.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475284687500023,"y":42.0975,"w":148.24640000000005,"clr":-1,"A":"left","R":[{"T":"Federal%20estimated%20tax%20payments%20made%20in%202012","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":37.96778468750002,"y":42.0975,"w":60.493399999999994,"clr":-1,"A":"left","R":[{"T":"...............................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.69278468750002,"y":42.0975,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"32.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.04403468750002,"y":42.0975,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.04715968750002,"y":42.0975,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.06840968750002,"y":42.0975,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.13090968750002,"y":42.0975,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98965968750002,"y":42.0975,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165284687500014,"y":42.8775,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"33.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475284687500015,"y":42.8775,"w":187.5979999999999,"clr":-1,"A":"left","R":[{"T":"Additional%20federal%20tax%20paid%20in%202012%20for%202011%20and%20prior%20years","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":44.670909687500014,"y":42.8775,"w":21.4907,"clr":-1,"A":"left","R":[{"T":"...........","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.692784687500016,"y":42.8775,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"33.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.044034687500016,"y":42.8775,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.047159687500006,"y":42.8775,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":63.06840968750001,"y":42.8775,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.13090968750001,"y":42.8775,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.98965968750002,"y":42.8775,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165284687500003,"y":43.642500000000005,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"34.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475284687500004,"y":43.642500000000005,"w":172.48559999999992,"clr":-1,"A":"left","R":[{"T":"Deduction%20for%20federal%20taxes.%20ADD%20lines%2031%2C%2032%2C%20and%2033.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":41.98965968750001,"y":43.642500000000005,"w":179.4275999999999,"clr":-1,"A":"left","R":[{"T":"............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.05090968750001,"y":43.642500000000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"34.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.17528468750001,"y":43.642500000000005,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.83840968750002,"y":43.642500000000005,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.26215968750002,"y":43.642500000000005,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.92528468750001,"y":43.642500000000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.165284687500003,"y":44.385,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"35.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475284687500004,"y":44.385,"w":36.938,"clr":-1,"A":"left","R":[{"T":"BALANCE.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":18.638773750000006,"y":44.385,"w":214.1092000000002,"clr":-1,"A":"left","R":[{"T":"%20SUBTRACT%20line%2034%20from%20line%2030.%20Enter%20here%20and%20on%20line%2036%2C%20side%202.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":55.3959096875,"y":44.385,"w":101.42080000000006,"clr":-1,"A":"left","R":[{"T":"....................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.05090968750001,"y":44.385,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"35.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.17528468750001,"y":44.385,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.83840968750002,"y":44.385,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.26215968750002,"y":44.385,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.92528468750001,"y":44.385,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":43.73114875000001,"y":15.24,"w":99.10080000000002,"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%20%20%20%20B.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":60.28575343750001,"y":15.24,"w":28.3978,"clr":-1,"A":"left","R":[{"T":"%20Spouse%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.2134096875,"y":15.24,"w":98.56539999999995,"clr":-1,"A":"left","R":[{"T":"(Filing%20Status%203%20ONLY)%20%20%20%20%20%20%20%20%20%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":86.3437221875,"y":15.24,"w":27.576000000000008,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20A.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":90.97628625000002,"y":15.24,"w":40.49529999999999,"clr":-1,"A":"left","R":[{"T":"%20You%20or%20Joint","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":3.1940346875000034,"y":15.989999999999998,"w":69.60210000000001,"clr":-1,"A":"left","R":[{"T":"a.%20Personal%20Credit%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":15.218409687500003,"y":15.989999999999998,"w":232.9659999999997,"clr":-1,"A":"left","R":[{"T":"%20Col.%20A%3A%20Enter%201%20(enter%202%20if%20filing%20status%202%20or%205)%3B%20Col.%20B%3A%20Enter%201%20if%20filing%20status%203","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":3.1940346875000034,"y":16.62750625,"w":8.846400000000001,"clr":-1,"A":"left","R":[{"T":"b.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":4.679034687500003,"y":16.62750625,"w":102.85990000000001,"clr":-1,"A":"left","R":[{"T":"Enter%201%20for%20each%20person%20who%20is%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":22.210284687500003,"y":16.62750625,"w":37.8821,"clr":-1,"A":"left","R":[{"T":"65%20or%20older","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":28.532775312500004,"y":16.62750625,"w":110.55439999999999,"clr":-1,"A":"left","R":[{"T":"%20%20and%2For%201%20for%20each%20person%20who%20is%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":47.49653468750001,"y":16.62750625,"w":17.72,"clr":-1,"A":"left","R":[{"T":"blind","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":50.549034687500004,"y":16.62750625,"w":29.958600000000008,"clr":-1,"A":"left","R":[{"T":"..............","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":3.1940346875000034,"y":17.265006250000003,"w":56.116200000000006,"clr":-1,"A":"left","R":[{"T":"c.%20Dependents%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":12.464869062500004,"y":17.265006250000003,"w":289.0521999999996,"clr":-1,"A":"left","R":[{"T":"%20Enter%201%20for%20each%20dependent%20...................................................................%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":3.1940346875000034,"y":17.902506250000002,"w":6.977600000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":4.100142500000003,"y":17.902506250000002,"w":134.68860000000006,"clr":-1,"A":"left","R":[{"T":"%20Enter%20first%20names%20of%20dependents%20here%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":28.005909687500008,"y":17.902506250000002,"w":140.41440000000003,"clr":-1,"A":"left","R":[{"T":"____________________________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":83.343125,"y":13.064999999999998,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":4.163750000000001,"y":38.294999999999995,"w":24.857400000000005,"clr":-1,"A":"left","R":[{"T":"STEP%206","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.163750000000001,"y":38.917499375,"w":26.0709,"clr":-1,"A":"left","R":[{"T":"Federal","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.163750000000001,"y":39.5175,"w":12.347100000000001,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.163750000000001,"y":40.117500625,"w":29.8024,"clr":-1,"A":"left","R":[{"T":"Addition","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.163750000000001,"y":40.71750125,"w":12.708,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.163750000000001,"y":41.317501875,"w":24.4994,"clr":-1,"A":"left","R":[{"T":"Deduc-","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.163750000000001,"y":41.91750249999999,"w":13.5928,"clr":-1,"A":"left","R":[{"T":"tion","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.08125,"y":19.1925,"w":24.857400000000005,"clr":-1,"A":"left","R":[{"T":"STEP%204","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.08125,"y":19.792500625,"w":20.909000000000002,"clr":-1,"A":"left","R":[{"T":"Gross","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.08125,"y":20.445000624999995,"w":25.357800000000005,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.101875171875,"y":29.827500625,"w":24.857400000000005,"clr":-1,"A":"left","R":[{"T":"STEP%205","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.101875171875,"y":30.450001874999998,"w":25.357,"clr":-1,"A":"left","R":[{"T":"Adjust-","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.101875171875,"y":31.050000625,"w":21.4195,"clr":-1,"A":"left","R":[{"T":"ments","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.101875171875,"y":31.650003124999998,"w":7.0092,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":4.101875171875,"y":32.250001875,"w":25.357800000000005,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":91.118750171875,"y":47.805001874999995,"w":57.628799999999984,"clr":-1,"A":"left","R":[{"T":"41-001a%20(10%2F11%2F12)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":2.843750171875,"y":1.290064375000005,"w":40.9315,"clr":-1,"A":"left","R":[{"T":"2012%20","S":-1,"TS":[0,20,1,0]}]},{"oc":"#2b2e34","x":9.876875171875,"y":1.290064375000005,"w":60.231199999999994,"clr":-1,"A":"left","R":[{"T":"IA%201040%20","S":-1,"TS":[0,20,1,0]}]},{"oc":"#2b2e34","x":20.251250171875004,"y":1.290064375000005,"w":196.31900000000002,"clr":-1,"A":"left","R":[{"T":"Iowa%20Individual%20Income%20Tax%20Form","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":2.843750171875,"y":2.0850643750000017,"w":201.78079999999994,"clr":-1,"A":"left","R":[{"T":"or%20fiscal%20year%20beginning%20__%2F__%202012%20and%20ending%20__%2F__%20%2F__","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":2.843750171875,"y":9.247501875000003,"w":42.0552,"clr":-1,"A":"left","R":[{"T":"Spouse%20%20SSN%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":10.062500171875,"y":9.427502500000003,"w":4.9,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":29.578906421875,"y":9.247501875000003,"w":39.6908,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Your%20SSN%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":36.40062517187501,"y":9.427502500000003,"w":4.9,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":3.0087501718750014,"y":15.397502500000002,"w":68.31739999999999,"clr":-1,"A":"left","R":[{"T":"STEP%203%20Exemptions","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":60.48289062500001,"y":18,"w":54.414199999999994,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20e.%20TOTAL%20%24","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":94.06812500000001,"y":18.014999375,"w":3.842,"clr":-1,"A":"left","R":[{"T":"%24","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":55.78812500000001,"y":16.695000000000004,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":55.78812500000001,"y":17.325,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":3.0600000000000023,"w":275.08869999999996,"clr":-1,"A":"left","R":[{"T":"STEP%201%3A%20Fill%20in%20all%20spaces.%20You%20MUST%20fill%20in%20your%20Social%20Security%20Number%20(SSN).","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":3.734999999999995,"w":45.455799999999996,"clr":-1,"A":"left","R":[{"T":"Your%20last%20name","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":29.192187500000006,"y":3.734999999999995,"w":118.45019999999998,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Your%20first%20name%2Fmiddle%20initial","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":5.234999999999995,"w":58.873200000000004,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20last%20name","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":29.186721875000003,"y":5.234999999999995,"w":131.99700000000004,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Spouse%E2%80%99s%20first%20name%2Fmiddle%20initial","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":6.510000000000001,"w":263.5454000000001,"clr":-1,"A":"left","R":[{"T":"Current%20mailing%20address%20(number%20and%20street%2C%20apartment%2C%20lot%2C%20or%20suite%20number)%20or%20PO%20Box","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":8.01,"w":11.729600000000001,"clr":-1,"A":"left","R":[{"T":"City","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":30.635525,"y":8.01,"w":15.757,"clr":-1,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":43.654059375,"y":8.01,"w":10.3842,"clr":-1,"A":"left","R":[{"T":"ZIP","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":67.544375,"y":16.679999999999996,"w":180.78739999999996,"clr":-1,"A":"left","R":[{"T":"X%20%24%2020%20%3D%20%24%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%20X%20%24%2020%20%3D%20%24","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.066640625000005,"y":18.600000000000005,"w":11.2908,"clr":-1,"A":"left","R":[{"T":"%20%20B.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":49.98476562500001,"y":18.600000000000005,"w":54.8496,"clr":-1,"A":"left","R":[{"T":"%20Spouse%2FStatus%203","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":59.35410156250001,"y":18.600000000000005,"w":31.624599999999994,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20A.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":64.59843750000002,"y":18.600000000000005,"w":40.603199999999994,"clr":-1,"A":"left","R":[{"T":"%20You%20or%20Joint","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":71.52285156250001,"y":18.600000000000005,"w":31.624599999999994,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20B.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":76.78222656250001,"y":18.600000000000005,"w":67.0384,"clr":-1,"A":"left","R":[{"T":"%20Spouse%2FStatus%203%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":88.23296875000003,"y":18.600000000000005,"w":9.1029,"clr":-1,"A":"left","R":[{"T":"%20A.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":89.76093578125001,"y":18.600000000000005,"w":40.603199999999994,"clr":-1,"A":"left","R":[{"T":"%20You%20or%20Joint","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":79.919375,"y":16.095,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":79.87812671875001,"y":17.355,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":63.889695468750006,"y":17.28749875,"w":201.99799999999973,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20X%20%24%2040%20%3D%20%24%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%20X%20%24%2040%20%3D%20%24","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":55.788126718750014,"y":16.057498749999997,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":10.064999999999998,"w":143.07600000000002,"clr":-1,"A":"left","R":[{"T":"STEP%202%20Filing%20Status%3A%20Mark%20one%20box%20only.","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":10.807499999999996,"w":3.9832,"clr":-1,"A":"left","R":[{"T":"1","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":10.807499999999996,"w":241.23999999999992,"clr":-1,"A":"left","R":[{"T":"Single%3A%20Were%20you%20claimed%20as%20a%20dependent%20on%20another%20person%E2%80%99s%20Iowa%20return%3F","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.229375000000005,"y":10.807499999999996,"w":13.298399999999997,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":54.07625,"y":10.807499999999996,"w":9.930800000000001,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":11.534999999999997,"w":3.9829,"clr":-1,"A":"left","R":[{"T":"2","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":11.534999999999997,"w":270.3958,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20a%20joint%20return.%20(Two-income%20families%20may%20benefit%20by%20using%20status%203%20or%204.)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":12.262500000000003,"w":3.9828,"clr":-1,"A":"left","R":[{"T":"3","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":12.262500000000003,"w":230.13710000000012,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately%20on%20this%20combined%20return.%20Spouse%20use%20column%20B.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":12.99,"w":3.9832,"clr":-1,"A":"left","R":[{"T":"4","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":12.99,"w":159.84629999999996,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separate%20returns.%20%20%20%20%20Spouse%E2%80%99s%20name%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":36.05268125,"y":12.99,"w":143.2005999999999,"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%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20SSN%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":84.828125,"y":12.99,"w":44.829499999999996,"clr":-1,"A":"left","R":[{"T":"Net%20Income%3A%20%24","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":13.717500000000001,"w":3.9832,"clr":-1,"A":"left","R":[{"T":"5","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":13.717500000000001,"w":474.0049999999996,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household%20with%20qualifying%20person.%20If%20qualifying%20person%20is%20not%20claimed%20as%20a%20dependent%20on%20this%20return%2C%20enter%20the%20person%E2%80%99s%20name%20and%20SSN%20below.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":61.17125,"y":12.292499999999999,"w":129.92459999999997,"clr":-1,"A":"left","R":[{"T":"How%20many%20do%20not%20have%20health%20care%20coverage%3F","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":83.96358859375002,"y":12.472500624999995,"w":42.485,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":63.440000000000005,"y":9.982500000000002,"w":189.4379999999999,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20if%20you%20or%20your%20spouse%20were%2065%20or%20older%20as%20of%2012%2F31%2F12.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":59.43875,"y":11.850000000000003,"w":9.9126,"clr":-1,"A":"left","R":[{"T":"%20Ho","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":61.129999999999995,"y":11.850000000000003,"w":166.46480000000005,"clr":-1,"A":"left","R":[{"T":"w%20many%20have%20health%20care%20coverage%3F(including%20Medicaid%20or%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":89.819375,"y":11.850000000000003,"w":18.4224,"clr":-1,"A":"left","R":[{"T":"hawk-i","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":92.995625,"y":11.850000000000003,"w":1.998,"clr":-1,"A":"left","R":[{"T":")","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":99.36875000000002,"y":12.247499375000004,"w":4.9,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":55.72968750000001,"y":11.482499375000003,"w":44.40439999999999,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20Depen","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":63.29562500000001,"y":11.482499375000003,"w":202.4469999999999,"clr":-1,"A":"left","R":[{"T":"dent%20children%20for%20whom%20an%20exemption%20is%20claimed%20in%20Step%203","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":2.534375,"y":14.482500000000002,"w":5.923,"clr":-1,"A":"left","R":[{"T":"%206","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":3.896157812500001,"y":14.482500000000002,"w":179.23650000000015,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20Qualifying%20widow(er)%20with%20dependent%20child.%20%20%20%20%20%20%20Name%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":53.74625,"y":14.482500000000002,"w":16.3152,"clr":-1,"A":"left","R":[{"T":"SSN%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":67.05625000000002,"y":16.064999999999998,"w":38.6178,"clr":-1,"A":"left","R":[{"T":"%20X%20%24%2040%20%3D%20%24","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":91.94375000000002,"y":16.109998187499997,"w":36.157,"clr":-1,"A":"left","R":[{"T":"X%20%24%2040%20%3D%20%24","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":79.91937500000003,"y":16.7474981875,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":87.81875000000002,"y":44.399998187499996,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":82.84812500000001,"y":22.185,"w":31.6835,"clr":-1,"A":"left","R":[{"T":"NOTE%3A","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":88.0353125,"y":22.185,"w":40.897000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20Use%20only","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":83.05437500000001,"y":22.935,"w":70.1304,"clr":-1,"A":"left","R":[{"T":"blue%20or%20black%20ink%2C","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":81.77562499999999,"y":23.685,"w":84.89040000000003,"clr":-1,"A":"left","R":[{"T":"no%20pencils%20or%20red%20ink.","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":55.60249999999999,"y":10.8225,"w":8.92,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":58.221875,"y":10.200000000000003,"w":4.9,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":58.001875000000005,"y":10.777500000000003,"w":106.3488,"clr":-1,"A":"left","R":[{"T":"Residence%20on%2012%2F31%2F12%3A%20%20%20County%20No.%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":76.31687500000001,"y":10.957500625000003,"w":27.475000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20%20%20%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":81.13466875,"y":10.777500000000003,"w":69.05999999999999,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20School%20District%20No.%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":93.04375,"y":10.957500625000003,"w":4.9,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":58.001875,"y":9.225000624999998,"w":40.8126,"clr":-1,"A":"left","R":[{"T":"E-Mail%20Address","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYDATEBEG","EN":0},"TI":0,"AM":0,"x":17.1032640625,"y":2.349687499999997,"w":7.946657812500002,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYDATEEND","EN":0},"TI":1,"AM":0,"x":31.790515625,"y":2.349687499999997,"w":8.737437500000002,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LASTNAME","EN":0},"TI":2,"AM":0,"x":3.316053125,"y":4.788249999999995,"w":25.217603125000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FIRSTNAME","EN":0},"TI":3,"AM":0,"x":28.83684375,"y":4.788249999999995,"w":21.780171875000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MIDINIT","EN":0},"TI":4,"AM":0,"x":51.281656250000005,"y":4.788249999999995,"w":2.8739218750000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLASTNAME","EN":0},"TI":5,"AM":0,"x":3.316053125,"y":6.106312500000001,"w":25.217603125000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFIRSTNAME","EN":0},"TI":6,"AM":0,"x":28.782703125,"y":6.106312500000001,"w":21.780171875000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPMIDINIT","EN":0},"TI":7,"AM":0,"x":51.227515625,"y":6.106312500000001,"w":2.8739218750000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDRESS","EN":0},"TI":8,"AM":0,"x":3.316053125,"y":7.4799999999999995,"w":51.61107187500001,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":9,"AM":0,"x":5.2382515625,"y":8.536812500000005,"w":25.436451562500004,"h":0.8333333333333334,"TU":"Enter CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":10,"AM":0,"x":33.728578125,"y":8.536812500000005,"w":9.958953124999997,"h":0.8333333333333334,"TU":"Enter U.S. STATE with two characters (or enter country if address is foreign)"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":11,"AM":0,"x":45.763953125,"y":8.474312500000005,"w":11.139046875000002,"h":0.8333333333333334,"TU":"Enter ZIP CODE"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":12,"AM":0,"x":11.859254687500002,"y":9.522437500000004,"w":12.633620312499996,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":13,"AM":0,"x":37.937796875000004,"y":9.459937500000004,"w":12.633671875000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":14,"AM":0,"x":65.537828125,"y":9.445187500000003,"w":35.8868125,"h":0.8945624999999969},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COUNTYNUMBER","EN":0},"TI":19,"AM":0,"x":77.64728125,"y":10.9985625,"w":5.125140624999993,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCHOOLDISTRICTNUM","EN":0},"TI":20,"AM":0,"x":94.55737500000001,"y":10.9985625,"w":6.1302656249999865,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HEALTH1","EN":0},"TI":24,"AM":0,"x":96.074,"y":12.332562500000003,"w":3.2549687500000046,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HEALTH2","EN":0},"TI":25,"AM":0,"x":86.248078125,"y":12.6139375,"w":3.3452031249999945,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME_FS4","EN":0},"TI":26,"AM":0,"x":33.50582812500001,"y":13.236937500000002,"w":23.680249999999994,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN_FS4","EN":0},"TI":27,"AM":0,"x":60.481609375,"y":13.236937500000002,"w":19.143437500000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPINCOME_FS4","EN":0},"TI":30,"AM":0,"x":93.14146875,"y":13.236937500000002,"w":8.637062500000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPENDENTNAME_FS6","EN":0},"TI":31,"AM":0,"x":34.635046875,"y":14.615437499999999,"w":18.91071875,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPENDENTSSN_FS6","EN":0},"TI":32,"AM":0,"x":57.41140625,"y":14.609250000000003,"w":21.919562500000016,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPPCREDIT","EN":0},"TI":33,"AM":0,"x":60.2683125,"y":16.109250000000003,"w":3.549734375000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPPCREDIT_TTL","EN":0},"TI":34,"AM":0,"x":74.02845312500001,"y":16.171750000000003,"w":4.263187500000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SP65","EN":0},"TI":35,"AM":0,"x":60.2683125,"y":16.790187500000002,"w":3.549734375000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SP65_TTL","EN":0},"TI":36,"AM":0,"x":74.02845312500001,"y":16.852687500000002,"w":4.263187500000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPDEPENDENTS","EN":0},"TI":37,"AM":0,"x":60.2683125,"y":17.478625000000005,"w":3.549734375000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPDEPENDENTS_TTL","EN":0},"TI":38,"AM":0,"x":74.01779687500002,"y":17.541125000000005,"w":4.263187499999989,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOUCREDIT","EN":0},"TI":39,"AM":0,"x":84.7708125,"y":16.109250000000003,"w":3.256859374999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"YOUCREDIT_TTL","EN":0},"TI":40,"AM":0,"x":98.512046875,"y":16.171750000000003,"w":4.046968750000022,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOU65","EN":0},"TI":41,"AM":0,"x":84.7708125,"y":16.790187500000002,"w":3.256859374999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"YOU65_TTL","EN":0},"TI":42,"AM":0,"x":98.512046875,"y":16.852687500000002,"w":4.046968750000022,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOUDEPENDENTS","EN":0},"TI":43,"AM":0,"x":84.7708125,"y":17.478625000000005,"w":3.256859374999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"YOUDEPENDENTS_TTL","EN":0},"TI":44,"AM":0,"x":98.512046875,"y":17.541125000000005,"w":4.046968750000022,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEDEPENDENTS","EN":0},"TI":45,"AM":0,"x":27.737015624999998,"y":18.0624375,"w":30.17042187500001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPTTLEXEMPTIONS","EN":0},"TI":46,"AM":0,"x":70.54420312500001,"y":18.162625000000002,"w":7.7262968749999965,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"YOUTTLEXEMPTIONS","EN":0},"TI":47,"AM":0,"x":95.44734375000002,"y":18.1489375,"w":7.111671874999993,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1B","EN":0},"TI":48,"AM":0,"x":51.012671875,"y":19.271374999999995,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1A","EN":0},"TI":49,"AM":0,"x":65.136671875,"y":19.271374999999995,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2B","EN":0},"TI":50,"AM":0,"x":51.012671875,"y":19.9739375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2A","EN":0},"TI":51,"AM":0,"x":65.136671875,"y":19.9739375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"3B","EN":0},"TI":52,"AM":0,"x":51.012671875,"y":20.6765,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"3A","EN":0},"TI":53,"AM":0,"x":65.136671875,"y":20.6765,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"4B","EN":0},"TI":54,"AM":0,"x":51.012671875,"y":21.3790625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"4A","EN":0},"TI":55,"AM":0,"x":65.136671875,"y":21.3790625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"5B","EN":0},"TI":56,"AM":0,"x":51.012671875,"y":22.081625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"5A","EN":0},"TI":57,"AM":0,"x":65.136671875,"y":22.081625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"6B","EN":0},"TI":58,"AM":0,"x":51.012671875,"y":22.7841875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"6A","EN":0},"TI":59,"AM":0,"x":65.136671875,"y":22.7841875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"7B","EN":0},"TI":60,"AM":0,"x":51.012671875,"y":23.48675,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"7A","EN":0},"TI":61,"AM":0,"x":65.136671875,"y":23.48675,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"8B","EN":0},"TI":62,"AM":0,"x":51.012671875,"y":24.189375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"8A","EN":0},"TI":63,"AM":0,"x":65.136671875,"y":24.189375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"9B","EN":0},"TI":64,"AM":0,"x":51.012671875,"y":24.8919375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"9A","EN":0},"TI":65,"AM":0,"x":65.136671875,"y":24.8919375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"10B","EN":0},"TI":66,"AM":0,"x":51.012671875,"y":25.5945,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"10A","EN":0},"TI":67,"AM":0,"x":65.136671875,"y":25.5945,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"11B","EN":0},"TI":68,"AM":0,"x":51.012671875,"y":26.2970625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"11A","EN":0},"TI":69,"AM":0,"x":65.136671875,"y":26.2970625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"12B","EN":0},"TI":70,"AM":0,"x":51.012671875,"y":26.999624999999998,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"12A","EN":0},"TI":71,"AM":0,"x":65.136671875,"y":26.999624999999998,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"13B","EN":0},"TI":72,"AM":0,"x":51.012671875,"y":27.702187499999997,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"13A","EN":0},"TI":73,"AM":0,"x":65.136671875,"y":27.702187499999997,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"14B","EN":0},"TI":74,"AM":0,"x":51.012671875,"y":28.467249999999996,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"14A","EN":0},"TI":75,"AM":0,"x":65.136671875,"y":28.467249999999996,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"15B","EN":0},"TI":76,"AM":0,"x":75.625859375,"y":29.122312500000003,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"15A","EN":0},"TI":77,"AM":0,"x":89.716515625,"y":29.122312500000003,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"16B","EN":0},"TI":78,"AM":0,"x":51.012671875,"y":29.9808125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"16A","EN":0},"TI":79,"AM":0,"x":65.136671875,"y":29.9808125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"17B","EN":0},"TI":80,"AM":0,"x":51.012671875,"y":30.725000000000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"17A","EN":0},"TI":81,"AM":0,"x":65.136671875,"y":30.725000000000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"18B","EN":0},"TI":82,"AM":0,"x":51.012671875,"y":31.4691875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"18A","EN":0},"TI":83,"AM":0,"x":65.136671875,"y":31.4691875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"19B","EN":0},"TI":84,"AM":0,"x":51.012671875,"y":32.213375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"19A","EN":0},"TI":85,"AM":0,"x":65.136671875,"y":32.213375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"20B","EN":0},"TI":86,"AM":0,"x":51.012671875,"y":32.9575625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"20A","EN":0},"TI":87,"AM":0,"x":65.136671875,"y":32.9575625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"21B","EN":0},"TI":88,"AM":0,"x":51.012671875,"y":33.70175,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"21A","EN":0},"TI":89,"AM":0,"x":65.136671875,"y":33.70175,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"22B","EN":0},"TI":90,"AM":0,"x":51.012671875,"y":34.5084375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"22A","EN":0},"TI":91,"AM":0,"x":65.136671875,"y":34.5084375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"23B","EN":0},"TI":92,"AM":0,"x":51.012671875,"y":35.252625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"23A","EN":0},"TI":93,"AM":0,"x":65.136671875,"y":35.252625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"24B","EN":0},"TI":94,"AM":0,"x":51.012671875,"y":35.9968125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"24A","EN":0},"TI":95,"AM":0,"x":65.136671875,"y":35.9968125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"25B","EN":0},"TI":96,"AM":0,"x":75.90910937500001,"y":36.668124999999996,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"25A","EN":0},"TI":97,"AM":0,"x":89.888390625,"y":36.668124999999996,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"26B","EN":0},"TI":98,"AM":0,"x":75.90910937500001,"y":37.5081875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"26A","EN":0},"TI":99,"AM":0,"x":89.888390625,"y":37.5081875,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"27B","EN":0},"TI":100,"AM":0,"x":51.012671875,"y":38.4633125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"27A","EN":0},"TI":101,"AM":0,"x":65.136671875,"y":38.4633125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"28B","EN":0},"TI":102,"AM":0,"x":51.012671875,"y":39.220062500000004,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"28A","EN":0},"TI":103,"AM":0,"x":65.136671875,"y":39.220062500000004,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"29B","EN":0},"TI":104,"AM":0,"x":75.797734375,"y":39.858125,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"29A","EN":0},"TI":105,"AM":0,"x":89.888390625,"y":39.858125,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"30B","EN":0},"TI":106,"AM":0,"x":75.797734375,"y":40.6493125,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"30A","EN":0},"TI":107,"AM":0,"x":89.888390625,"y":40.6493125,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"31B","EN":0},"TI":108,"AM":0,"x":51.012671875,"y":41.4483125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"31A","EN":0},"TI":109,"AM":0,"x":65.136671875,"y":41.4483125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"32B","EN":0},"TI":110,"AM":0,"x":51.012671875,"y":42.2445625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"32A","EN":0},"TI":111,"AM":0,"x":65.136671875,"y":42.2445625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"33B","EN":0},"TI":112,"AM":0,"x":51.012671875,"y":43.017500000000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"33A","EN":0},"TI":113,"AM":0,"x":65.136671875,"y":43.017500000000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"34B","EN":0},"TI":114,"AM":0,"x":75.797734375,"y":43.712275,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"34A","EN":0},"TI":115,"AM":0,"x":89.888390625,"y":43.712275,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"35B","EN":0},"TI":116,"AM":0,"x":75.797734375,"y":44.4778,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"35A","EN":0},"TI":117,"AM":0,"x":89.888390625,"y":44.4778,"w":9.870609375000015,"h":0.8333333333333334}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"65CBX","EN":0},"TI":15,"AM":0,"x":60.8719375,"y":10.152312500000003,"w":2.2484687499999927,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"1","EN":0},"TI":16,"AM":0,"x":4.161196875,"y":10.858437499999999,"w":1.8548921874999993,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"2","EN":0},"TI":21,"AM":0,"x":4.161196875,"y":11.607437500000003,"w":1.8548921874999993,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"3","EN":0},"TI":22,"AM":0,"x":4.161196875,"y":12.32175,"w":1.8548921874999993,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"4","EN":0},"TI":23,"AM":0,"x":4.161196875,"y":13.105499999999997,"w":1.8548921874999993,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"5","EN":0},"TI":28,"AM":0,"x":4.161196875,"y":13.8545625,"w":1.8548921874999993,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"6","EN":0},"TI":29,"AM":0,"x":4.161196875,"y":14.6035625,"w":1.8548921874999993,"h":0.8333333333333334,"checked":false}],"id":{"Id":"FS","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISDEPENDENTY","EN":0},"TI":17,"AM":0,"x":47.255140625,"y":10.967437500000003,"w":1.8241093750000033,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ISDEPENDENTN","EN":0},"TI":18,"AM":0,"x":52.303796875,"y":10.94025,"w":1.67440625,"h":0.8333333333333334}]}]},{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":48.45103188750001,"y":7.523731574999999,"w":1.4400864,"l":1.4765309302906224},{"oc":"#2b2e34","x":48.45103188750001,"y":7.093068861787501,"w":1.4400864,"l":1.4765309302906224},{"oc":"#2b2e34","x":10.313118750000001,"y":8.435036250000001,"w":1.4400864,"l":92.034271725},{"oc":"#2b2e34","x":22.895123625000004,"y":21.553323300000002,"w":0.7200432,"l":2.8670470124999987},{"oc":"#2b2e34","x":35.1677349375,"y":21.545822850000004,"w":0.7200432,"l":3.238319287500006},{"oc":"#2b2e34","x":10.313118750000001,"y":22.460877749999998,"w":1.4400864,"l":92.034271725},{"oc":"#2b2e34","x":19.677430575000002,"y":26.499870075,"w":1.4400864,"l":1.4765292114374984},{"oc":"#2b2e34","x":19.677430575000002,"y":26.0692061117125,"w":1.4400864,"l":1.4765292114374984},{"oc":"#2b2e34","x":19.677430575000002,"y":27.1092816375,"w":1.4400864,"l":1.4765292114374984},{"oc":"#2b2e34","x":19.677430575000002,"y":26.6786176742125,"w":1.4400864,"l":1.4765292114374984},{"oc":"#2b2e34","x":10.313118750000001,"y":30.276346650000004,"w":1.4400864,"l":92.034271725},{"oc":"#2b2e34","x":91.91223315312502,"y":39.275636575,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":91.91223315312502,"y":38.84497323675,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":91.91223315312502,"y":39.988179325,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":91.91223315312502,"y":39.55751598675,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":91.91223315312502,"y":40.6913465125,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":91.91223315312502,"y":40.26068317425,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":48.88074516875001,"y":39.288137325,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":48.88074516875001,"y":38.85747398675,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":48.88074516875001,"y":39.9788037625,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":48.88074516875001,"y":39.54814042425,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":48.88074516875001,"y":40.6944717,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":48.88074516875001,"y":40.26380836175,"w":1.4400864,"l":2.4390869614374964},{"oc":"#2b2e34","x":53.05068285000001,"y":21.545822850000004,"w":0.7200432,"l":3.0939356250000007},{"oc":"#2b2e34","x":75.18263568750001,"y":21.545822850000004,"w":0.7200432,"l":3.1970668125000086},{"oc":"#2b2e34","x":12.5407867770625,"y":43.529623048875,"w":1.4400864,"l":52.4937400604375},{"oc":"#2b2e34","x":12.5407867770625,"y":44.759703099250004,"w":1.4400864,"l":52.4937400604375},{"oc":"#2b2e34","x":3.0939356250000003,"y":40.79197755,"w":1.4400864,"l":99.00594000000001},{"oc":"#2b2e34","x":3.0939356250000003,"y":38.46683805,"w":1.4400864,"l":99.00594000000001},{"oc":"#2b2e34","x":48.88074516875001,"y":44.688455074625004,"w":1.4400864,"l":2.3531443051874965},{"oc":"#2b2e34","x":48.88074516875001,"y":44.123408673875,"w":1.4400864,"l":2.3531443051874965},{"oc":"#2b2e34","x":46.4296606125,"y":45.93728625,"w":1.4400864,"l":18.56361375},{"oc":"#2b2e34","x":3.1764577635312503,"y":43.013360825,"w":1.4400864,"l":8.6957123364375},{"oc":"#2b2e34","x":3.1764577635312503,"y":42.12329492425,"w":1.4400864,"l":8.6957123364375},{"oc":"#2b2e34","x":48.88074516875001,"y":43.450880824624996,"w":1.4400864,"l":2.3531443051874965},{"oc":"#2b2e34","x":48.88074516875001,"y":42.854582548874994,"w":1.4400864,"l":2.3531443051874965},{"oc":"#2b2e34","x":66.622747125,"y":43.529623048875,"w":1.4400864,"l":35.4771285},{"oc":"#2b2e34","x":66.622747125,"y":44.759703099250004,"w":1.4400864,"l":35.4771285},{"oc":"#2b2e34","x":82.546202475,"y":45.93728625,"w":1.4400864,"l":19.553673150000005},{"oc":"#2b2e34","x":29.397544996875006,"y":7.542482699999998,"w":1.4400864,"l":1.476529211437495},{"oc":"#2b2e34","x":29.397544996875006,"y":7.111819986787499,"w":1.4400864,"l":1.476529211437495},{"oc":"#2b2e34","x":51.880143871875006,"y":35.3941537,"w":1.4400864,"l":1.4764604573125037},{"oc":"#2b2e34","x":51.880143871875006,"y":34.9353630492125,"w":1.4400864,"l":1.4764604573125037}],"VLines":[{"oc":"#2b2e34","x":49.92756281779063,"y":7.093068861787501,"w":1.4400864,"l":0.4306627132124987},{"oc":"#2b2e34","x":48.45103188750001,"y":7.093068861787501,"w":1.4400864,"l":0.4306627132124987},{"oc":"#2b2e34","x":21.1539597864375,"y":26.0692061117125,"w":1.4400864,"l":0.43066396328750045},{"oc":"#2b2e34","x":19.677430575000002,"y":26.0692061117125,"w":1.4400864,"l":0.43066396328750045},{"oc":"#2b2e34","x":21.1539597864375,"y":26.6786176742125,"w":1.4400864,"l":0.43066396328750045},{"oc":"#2b2e34","x":19.677430575000002,"y":26.6786176742125,"w":1.4400864,"l":0.43066396328750045},{"oc":"#2b2e34","x":94.35132011456251,"y":38.84497323675,"w":1.4400864,"l":0.4306633382500043},{"oc":"#2b2e34","x":91.91223315312502,"y":38.84497323675,"w":1.4400864,"l":0.4306633382500043},{"oc":"#2b2e34","x":94.35132011456251,"y":39.55751598675,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":91.91223315312502,"y":39.55751598675,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":94.35132011456251,"y":40.26068317425,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":91.91223315312502,"y":40.26068317425,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":51.31983213018751,"y":38.85747398675,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":48.88074516875001,"y":38.85747398675,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":51.31983213018751,"y":39.54814042425,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":48.88074516875001,"y":39.54814042425,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":51.31983213018751,"y":40.26380836175,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":48.88074516875001,"y":40.26380836175,"w":1.4400864,"l":0.4306633382499996},{"oc":"#2b2e34","x":51.23388947393751,"y":44.123408673875,"w":1.4400864,"l":0.5650464007500015},{"oc":"#2b2e34","x":48.88074516875001,"y":44.123408673875,"w":1.4400864,"l":0.5650464007500015},{"oc":"#2b2e34","x":11.87217009996875,"y":42.12329492425,"w":1.4400864,"l":0.8900659007499977},{"oc":"#2b2e34","x":3.1764577635312503,"y":42.12329492425,"w":1.4400864,"l":0.8900659007499977},{"oc":"#2b2e34","x":51.23388947393751,"y":42.854582548874994,"w":1.4400864,"l":0.5962982757500015},{"oc":"#2b2e34","x":48.88074516875001,"y":42.854582548874994,"w":1.4400864,"l":0.5962982757500015},{"oc":"#2b2e34","x":30.8740742083125,"y":7.111819986787499,"w":1.4400864,"l":0.4306627132124987},{"oc":"#2b2e34","x":29.397544996875006,"y":7.111819986787499,"w":1.4400864,"l":0.4306627132124987},{"oc":"#2b2e34","x":53.35660432918751,"y":34.9353630492125,"w":1.4400864,"l":0.4587906507875014},{"oc":"#2b2e34","x":51.880143871875006,"y":34.9353630492125,"w":1.4400864,"l":0.4587906507875014}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#2b2e34","x":3.1764577635312503,"y":42.12329492425,"w":8.6957123364375,"h":0.8900659007499977,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":48.73437500000001,"y":1.2075000000000007,"w":7.1608,"clr":-1,"A":"left","R":[{"T":"B.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":49.64101734375,"y":1.2075000000000007,"w":54.764799999999994,"clr":-1,"A":"left","R":[{"T":"%20Spouse%2FStatus%203","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.26437671875001,"y":1.2075000000000007,"w":7.1608,"clr":-1,"A":"left","R":[{"T":"A.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":63.301312343750006,"y":1.2075000000000007,"w":40.560300000000005,"clr":-1,"A":"left","R":[{"T":"%20You%20or%20Joint","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.24749828125,"y":1.2075000000000007,"w":7.1608,"clr":-1,"A":"left","R":[{"T":"B.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":75.15413546874998,"y":1.2075000000000007,"w":54.764799999999994,"clr":-1,"A":"left","R":[{"T":"%20Spouse%2FStatus%203","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.40624484375,"y":1.2075000000000007,"w":7.1608,"clr":-1,"A":"left","R":[{"T":"A.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":88.44317531249997,"y":1.2075000000000007,"w":40.560300000000005,"clr":-1,"A":"left","R":[{"T":"%20You%20or%20Joint","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062486249999987,"y":1.9500000000000077,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"36.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393111249999988,"y":1.9500000000000077,"w":100.70880000000001,"clr":-1,"A":"left","R":[{"T":"BALANCE.%20From%20side%201%2C%20line%2035","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":29.841861249999987,"y":1.9500000000000077,"w":249.63839999999985,"clr":-1,"A":"left","R":[{"T":"................................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96873624999999,"y":1.9500000000000077,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"36.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07248624999998,"y":1.9500000000000077,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73561124999999,"y":1.9500000000000077,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15936124999999,"y":1.9500000000000077,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84311124999999,"y":1.9500000000000077,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.537486249999983,"y":2.7000000000000077,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"37.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":14.868111249999984,"y":2.7000000000000077,"w":161.1343999999999,"clr":-1,"A":"left","R":[{"T":"Total%20itemized%20deductions%20from%20federal%20Schedule%20A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":42.56748624999999,"y":2.7000000000000077,"w":33.12789999999999,"clr":-1,"A":"left","R":[{"T":".................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58998624999999,"y":2.7000000000000077,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"37.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961861249999984,"y":2.7000000000000077,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.985611249999984,"y":2.7000000000000077,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.02811124999998,"y":2.7000000000000077,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88686125,"y":2.7000000000000077,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":14.950611249999977,"y":3.2249975000000006,"w":197.3025000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayers%20with%20bonus%20depreciation%2Fsection%20179%20must%20use%20Iowa%20Schedule%20A.","S":43,"TS":[2,10,0,0]}]},{"oc":"#2b2e34","x":12.537486249999978,"y":3.9674974999999977,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"38.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":14.868111249999977,"y":3.9674974999999977,"w":184.62819999999982,"clr":-1,"A":"left","R":[{"T":"Iowa%20income%20tax%20if%20included%20in%20line%205%20of%20federal%20Schedule%20A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.589361249999975,"y":3.9674974999999977,"w":9.7195,"clr":-1,"A":"left","R":[{"T":".....","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.589986249999974,"y":3.9674974999999977,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"38.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.96186124999998,"y":3.9674974999999977,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.98561124999997,"y":3.9674974999999977,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.02811124999997,"y":3.9674974999999977,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88686124999998,"y":3.9674974999999977,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.537486249999974,"y":4.7099975000000045,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"39.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":14.868111249999973,"y":4.7099975000000045,"w":37.315,"clr":-1,"A":"left","R":[{"T":"BALANCE.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":21.261861249999974,"y":4.7099975000000045,"w":4.769,"clr":-1,"A":"left","R":[{"T":"S","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":22.066234531249975,"y":4.7099975000000045,"w":124.24709999999999,"clr":-1,"A":"left","R":[{"T":"ubtract%20line%2038%20from%20line%2037%20or%20enter%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":43.57810953124998,"y":4.7099975000000045,"w":27.244000000000007,"clr":-1,"A":"left","R":[{"T":"..............","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58998453124998,"y":4.7099975000000045,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"39.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961859531249985,"y":4.7099975000000045,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.98543765624998,"y":4.7099975000000045,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.02793765624997,"y":4.7099975000000045,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88668765624999,"y":4.7099975000000045,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":14.950437656249976,"y":5.234998750000007,"w":184.2670000000001,"clr":-1,"A":"left","R":[{"T":"amount%20of%20itemized%20deductions%20from%20the%20Iowa%20Schedule%20A.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.537312656249977,"y":5.977498750000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"40.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":14.867937656249978,"y":5.977498750000005,"w":54.7114,"clr":-1,"A":"left","R":[{"T":"Other%20deductions","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":24.479187656249977,"y":5.977498750000005,"w":138.50679999999997,"clr":-1,"A":"left","R":[{"T":".......................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58981265624998,"y":5.977498750000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"40.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961687656249985,"y":5.977498750000005,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.98543765624998,"y":5.977498750000005,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.02793765624997,"y":5.977498750000005,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88668765624999,"y":5.977498750000005,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062312656249976,"y":6.772498750000001,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"41.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392937656249977,"y":6.772498750000001,"w":86.47199999999998,"clr":-1,"A":"left","R":[{"T":"Deduction.%20Check%20one%20box.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":28.794968906249977,"y":6.772498750000001,"w":113.41420000000005,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20Itemized.%20Add%20lines%2039%20and%2040.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.384375000000006,"y":6.772499999999998,"w":29.132400000000004,"clr":-1,"A":"left","R":[{"T":"Standard","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":55.64375000000001,"y":6.772499999999998,"w":99.50099999999989,"clr":-1,"A":"left","R":[{"T":"...................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96875000000001,"y":6.772499999999998,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"41.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07250000000002,"y":6.772499999999998,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.69437500000002,"y":6.772499999999998,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.71562500000002,"y":6.772499999999998,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15937328125001,"y":6.772499999999998,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84312328125002,"y":6.772499999999998,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0625,"y":7.537500000000003,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"42.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393125000000001,"y":7.537500000000003,"w":68.33360000000002,"clr":-1,"A":"left","R":[{"T":"TAXABLE%20INCOME.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":24.108125,"y":7.537500000000003,"w":38.4982,"clr":-1,"A":"left","R":[{"T":"SUBTRACT","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":30.563750000000002,"y":7.537500000000003,"w":65.14,"clr":-1,"A":"left","R":[{"T":"%20line%2041%20from%20line%2036.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":42.2375,"y":7.537500000000003,"w":177.5137000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96875,"y":7.537500000000003,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"42.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.0725,"y":7.537500000000003,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73562500000001,"y":7.537500000000003,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15937500000001,"y":7.537500000000003,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.843125,"y":7.537500000000003,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0625,"y":8.332500000000001,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"43.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393125000000001,"y":8.332500000000001,"w":99.99300000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20from%20tables%20or%20alternate%20tax","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":29.841875,"y":8.332500000000001,"w":107.29950000000007,"clr":-1,"A":"left","R":[{"T":".......................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.589999999999996,"y":8.332500000000001,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"43.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961875,"y":8.332500000000001,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.944375,"y":8.332500000000001,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.965624999999996,"y":8.332500000000001,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.028125,"y":8.332500000000001,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.886875,"y":8.332500000000001,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062499999999991,"y":9.150000000000006,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"44.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393124999999992,"y":9.150000000000006,"w":173.56139999999996,"clr":-1,"A":"left","R":[{"T":"Iowa%20lump-sum%20tax.%2025%25%20of%20federal%20tax%20from%20form%204972","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":42.23749999999999,"y":9.150000000000006,"w":35.04599999999999,"clr":-1,"A":"left","R":[{"T":"..................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58999999999999,"y":9.150000000000006,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"44.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.96187499999999,"y":9.150000000000006,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.94437499999999,"y":9.150000000000006,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.96562499999998,"y":9.150000000000006,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.02812499999999,"y":9.150000000000006,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88687499999999,"y":9.150000000000006,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.06249999999998,"y":9.975000000000009,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"45.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393124999999982,"y":9.975000000000009,"w":111.33489999999995,"clr":-1,"A":"left","R":[{"T":"Iowa%20minimum%20tax.%20Attach%20IA%206251.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":31.84249999999998,"y":9.975000000000009,"w":95.54019999999998,"clr":-1,"A":"left","R":[{"T":".................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58999999999998,"y":9.975000000000009,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"45.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961874999999985,"y":9.975000000000009,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.94437499999997,"y":9.975000000000009,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.96562499999998,"y":9.975000000000009,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.02812499999999,"y":9.975000000000009,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88687499999997,"y":9.975000000000009,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062499999999972,"y":10.740000000000009,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"46.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393124999999973,"y":10.740000000000009,"w":113.89319999999996,"clr":-1,"A":"left","R":[{"T":"Total%20tax.%20ADD%20lines%2043%2C%2044%2C%20and%2045.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.193124999999974,"y":10.740000000000009,"w":235.96209999999974,"clr":-1,"A":"left","R":[{"T":".........................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96874999999999,"y":10.740000000000009,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"46.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07249999999998,"y":10.740000000000009,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73562499999998,"y":10.740000000000009,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15937499999997,"y":10.740000000000009,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84312499999997,"y":10.740000000000009,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062499999999961,"y":11.482500000000007,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"47.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393124999999962,"y":11.482500000000007,"w":168.11020000000002,"clr":-1,"A":"left","R":[{"T":"Total%20exemption%20credit%20amount(s)%20from%20Step%203%2C%20side%201","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":41.226874999999964,"y":11.482500000000007,"w":40.928999999999974,"clr":-1,"A":"left","R":[{"T":".....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58999999999996,"y":11.482500000000007,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"47.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.96187499999996,"y":11.482500000000007,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.985453124999964,"y":11.482500000000007,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.02795312499997,"y":11.482500000000007,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88670312499997,"y":11.482500000000007,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328124999956,"y":12.277500000000012,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"48.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953124999957,"y":12.277500000000012,"w":152.00449999999998,"clr":-1,"A":"left","R":[{"T":"Tuition%20and%20textbook%20credit%20for%20dependents%20K-12","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":38.54545312499996,"y":12.277500000000012,"w":56.532599999999974,"clr":-1,"A":"left","R":[{"T":".............................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58982812499996,"y":12.277500000000012,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"48.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961703124999964,"y":12.277500000000012,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.944203124999966,"y":12.277500000000012,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.96545312499996,"y":12.277500000000012,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.02795312499997,"y":12.277500000000012,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88670312499997,"y":12.277500000000012,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328124999956,"y":13.050000000000011,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"49.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953124999957,"y":13.050000000000011,"w":111.46100000000004,"clr":-1,"A":"left","R":[{"T":"Total%20credits.%20ADD%20lines%2047%20and%2048.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":31.51232812499996,"y":13.050000000000011,"w":239.92380000000034,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96857812499995,"y":13.050000000000011,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"49.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07232812499996,"y":13.050000000000011,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73545312499996,"y":13.050000000000011,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15920312499996,"y":13.050000000000011,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84295312499995,"y":13.050000000000011,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328124999945,"y":13.837500000000015,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"50.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953124999947,"y":13.837500000000015,"w":232.70100000000022,"clr":-1,"A":"left","R":[{"T":"BALANCE.%20SUBTRACT%20line%2049%20from%20line%2046.%20If%20less%20than%20zero%2C%20enter%20zero.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":52.302328124999946,"y":13.837500000000015,"w":118.94389999999999,"clr":-1,"A":"left","R":[{"T":".............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96857812499995,"y":13.837500000000015,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"50.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07232812499996,"y":13.837500000000015,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.69420312499996,"y":13.837500000000015,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.71545312499995,"y":13.837500000000015,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15920656249996,"y":13.837500000000015,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84295656249995,"y":13.837500000000015,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062331562499937,"y":14.662500000000014,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"51.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392956562499938,"y":14.662500000000014,"w":245.02169999999995,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20nonresident%20or%20part-year%20resident.%20Attach%20IA%20126%20and%20federal%20return.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":54.302956562499936,"y":14.662500000000014,"w":107.29950000000007,"clr":-1,"A":"left","R":[{"T":".......................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96858156249993,"y":14.662500000000014,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"51.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07233156249995,"y":14.662500000000014,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.69420656249994,"y":14.662500000000014,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.71545656249994,"y":14.662500000000014,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15920999999994,"y":14.662500000000014,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84295999999993,"y":14.662500000000014,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062334999999928,"y":15.42750000000002,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"52.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.39295999999993,"y":15.42750000000002,"w":255.5434000000001,"clr":-1,"A":"left","R":[{"T":"BALANCE.%20SUBTRACT%20line%2051%20from%2050.%20If%20less%20than%20or%20equal%20to%20zero%2C%20enter%20zero.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":56.30358499999993,"y":15.42750000000002,"w":95.54019999999998,"clr":-1,"A":"left","R":[{"T":".................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96858499999993,"y":15.42750000000002,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"52.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07233499999992,"y":15.42750000000002,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73545999999993,"y":15.42750000000002,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15920999999992,"y":15.42750000000002,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84295999999992,"y":15.42750000000002,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062334999999909,"y":16.222500000000014,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"53.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.39295999999991,"y":16.222500000000014,"w":226.81639999999976,"clr":-1,"A":"left","R":[{"T":"Other%20nonrefundable%20Iowa%20credits.%20Attach%20IA%20148%20Tax%20Credits%20Schedule.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.29170999999991,"y":16.222500000000014,"w":124.82560000000008,"clr":-1,"A":"left","R":[{"T":"................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.96858499999992,"y":16.222500000000014,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"53.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07233499999991,"y":16.222500000000014,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.69420999999993,"y":16.222500000000014,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.71545999999992,"y":16.222500000000014,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15921343749991,"y":16.222500000000014,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84296343749992,"y":16.222500000000014,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0623384374999,"y":16.987506250000013,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"54.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392963437499901,"y":16.987506250000013,"w":140.96160000000003,"clr":-1,"A":"left","R":[{"T":"BALANCE.%20SUBTRACT%20line%2053%20from%20line%2052.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":36.8748384374999,"y":16.987506250000013,"w":208.7142000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.9685884374999,"y":16.987506250000013,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"54.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07233843749991,"y":16.987506250000013,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73546343749992,"y":16.987506250000013,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15921343749991,"y":16.987506250000013,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.84296343749992,"y":16.987506250000013,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0623384374999,"y":17.782506250000022,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"55.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392963437499901,"y":17.782506250000022,"w":261.62000000000006,"clr":-1,"A":"left","R":[{"T":"School%20district%20surtax%2FEMS%20surtax.%20Take%20percentage%20from%20table%3B%20multiply%20by%20line%2054.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":57.3142134374999,"y":17.782506250000022,"w":89.65860000000005,"clr":-1,"A":"left","R":[{"T":"..............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.9685884374999,"y":17.782506250000022,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"55.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07233843749991,"y":17.782506250000022,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.69421343749991,"y":17.782506250000022,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.7154634374999,"y":17.782506250000022,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.1592168749999,"y":17.782506250000022,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.8429668749999,"y":17.782506250000022,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062341874999891,"y":18.600006250000018,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"56.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392966874999892,"y":18.600006250000018,"w":102.19320000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Tax.%20ADD%20lines%2054%20and%2055.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":30.171716874999895,"y":18.600006250000018,"w":247.72620000000038,"clr":-1,"A":"left","R":[{"T":"...............................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":72.9685918749999,"y":18.600006250000018,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"56.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.07234187499989,"y":18.600006250000018,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.69421687499991,"y":18.600006250000018,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.7154668749999,"y":18.600006250000018,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.1592203124999,"y":18.600006250000018,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.8429703124999,"y":18.600006250000018,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062345312499883,"y":19.37250625000002,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"57.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392970312499884,"y":19.37250625000002,"w":245.76200000000028,"clr":-1,"A":"left","R":[{"T":"Total%20tax%20before%20contributions.%20ADD%20columns%20A%20%26%20B%20on%20line%2056%20and%20enter%20here.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":54.632970312499886,"y":19.37250625000002,"w":179.4275999999999,"clr":-1,"A":"left","R":[{"T":"............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73547031249988,"y":19.37250625000002,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"57.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15922031249987,"y":19.37250625000002,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63672031249988,"y":19.37250625000002,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062345312499883,"y":20.115006250000018,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"58.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392970312499884,"y":20.115006250000018,"w":46.623000000000005,"clr":-1,"A":"left","R":[{"T":"Contributions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":20.354220312499884,"y":20.115006250000018,"w":313.6203,"clr":-1,"A":"left","R":[{"T":"Contributions%20will%20reduce%20your%20refund%20or%20add%20to%20the%20amount%20you%20owe.%20Amounts%20must%20be%20in%20whole%20dollars.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.537345312499884,"y":20.797506250000016,"w":31.997700000000005,"clr":-1,"A":"left","R":[{"T":"Fish%2FWildlife","S":43,"TS":[2,10,0,0]}]},{"oc":"#2b2e34","x":18.044220312499885,"y":20.797506250000016,"w":16.0595,"clr":-1,"A":"left","R":[{"T":"%2058a%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":21.096720312499887,"y":20.797506250000016,"w":7.236,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":26.129375,"y":20.7975,"w":24.089100000000002,"clr":-1,"A":"left","R":[{"T":"StateFair","S":43,"TS":[2,10,0,0]}]},{"oc":"#2b2e34","x":30.214843750000004,"y":20.7975,"w":15.972,"clr":-1,"A":"left","R":[{"T":"%2058b%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.3275,"y":20.7975,"w":7.211,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":38.7725,"y":20.7975,"w":55.16700000000001,"clr":-1,"A":"left","R":[{"T":"Firefighters%2FVeterans","S":43,"TS":[2,10,0,0]}]},{"oc":"#2b2e34","x":48.179218750000004,"y":20.7975,"w":6.023,"clr":-1,"A":"left","R":[{"T":"%205","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.270625,"y":20.7975,"w":9.5516,"clr":-1,"A":"left","R":[{"T":"8c%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":56.922501718750006,"y":20.7975,"w":75.145,"clr":-1,"A":"left","R":[{"T":"Child%20Abuse%20Prevention","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.79855171875002,"y":20.7975,"w":15.9675,"clr":-1,"A":"left","R":[{"T":"%2058d%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":78.86750171875002,"y":20.7975,"w":34.944,"clr":-1,"A":"left","R":[{"T":"Enter%20total.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.13750171875002,"y":20.7975,"w":1.946,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.73563359375001,"y":20.7975,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"58.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15938359375002,"y":20.7975,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63688359375003,"y":20.7975,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0625,"y":21.570000000000004,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"59.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393125000000001,"y":21.570000000000004,"w":123.28870000000006,"clr":-1,"A":"left","R":[{"T":"TOTAL%20TAX%20AND%20CONTRIBUTIONS.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":33.471875,"y":21.570000000000004,"w":68.09100000000001,"clr":-1,"A":"left","R":[{"T":"ADD%20lines%2057%20and%2058.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":45.248749999999994,"y":21.570000000000004,"w":234.03599999999986,"clr":-1,"A":"left","R":[{"T":"........................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.735453125,"y":21.570000000000004,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"59.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15920312499999,"y":21.570000000000004,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.636703125,"y":21.570000000000004,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328125000004,"y":22.365,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"60.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953125000005,"y":22.365,"w":80.45779999999999,"clr":-1,"A":"left","R":[{"T":"Iowa%20income%20tax%20withheld","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":26.479828125000004,"y":22.365,"w":126.74349999999998,"clr":-1,"A":"left","R":[{"T":".................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.589828125000004,"y":22.365,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"60.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961703125,"y":22.365,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.944203125,"y":22.365,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.965453125,"y":22.365,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.027953125,"y":22.365,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.886703125,"y":22.365,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328124999995,"y":23.1825,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"61.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953124999996,"y":23.1825,"w":182.96919999999992,"clr":-1,"A":"left","R":[{"T":"Estimated%20and%20voucher%20payments%20made%20for%20tax%20year%202012","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":43.907953125,"y":23.1825,"w":25.3266,"clr":-1,"A":"left","R":[{"T":".............","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.589828125000004,"y":23.1825,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"61.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961703125,"y":23.1825,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.944203125,"y":23.1825,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.965453125,"y":23.1825,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.027953125,"y":23.1825,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.886703125,"y":23.1825,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328124999995,"y":24,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"62.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953124999996,"y":24,"w":118.94619999999998,"clr":-1,"A":"left","R":[{"T":"Out-of-state%20tax%20credit.%20Attach%20IA%20130.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.852953125000006,"y":24,"w":89.65860000000005,"clr":-1,"A":"left","R":[{"T":"..............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.589828125000004,"y":24,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"62.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961703125,"y":24,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.944203125,"y":24,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.965453125,"y":24,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.027953125,"y":24,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.886703125,"y":24,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328124999995,"y":24.8175,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"63.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953124999996,"y":24.8175,"w":116.9452,"clr":-1,"A":"left","R":[{"T":"Motor%20fuel%20tax%20credit.%20Attach%20IA%204136.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":32.522953125,"y":24.8175,"w":91.69699999999992,"clr":-1,"A":"left","R":[{"T":"...............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.589828125000004,"y":24.8175,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"63.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961703125,"y":24.8175,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.944203125,"y":24.8175,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.965453125,"y":24.8175,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.027953125,"y":24.8175,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.886703125,"y":24.8175,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062328124999995,"y":25.619999999999994,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"64.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.392953124999996,"y":25.619999999999994,"w":37.94,"clr":-1,"A":"left","R":[{"T":"Check%20One%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":21.612500000000004,"y":25.62,"w":104.1912,"clr":-1,"A":"left","R":[{"T":"Child%20and%20dependent%20care%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.30875,"y":25.62,"w":10.6208,"clr":-1,"A":"left","R":[{"T":"OR","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":21.612500000000004,"y":26.227500000000003,"w":112.1708,"clr":-1,"A":"left","R":[{"T":"Early%20childhood%20development%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":40.89687500000001,"y":26.227500000000003,"w":42.847200000000015,"clr":-1,"A":"left","R":[{"T":"......................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.59,"y":26.227500000000003,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"64.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.96187500000001,"y":26.227500000000003,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.94437500000001,"y":26.227500000000003,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.96562500000001,"y":26.227500000000003,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.02812500000002,"y":26.227500000000003,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.886875,"y":26.227500000000003,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0625,"y":27.0525,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"65.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393125000000001,"y":27.0525,"w":98.25300000000004,"clr":-1,"A":"left","R":[{"T":"Iowa%20earned%20income%20tax%20credit.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":29.71812671875,"y":27.0525,"w":53.7476,"clr":-1,"A":"left","R":[{"T":"See%20Instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.556251718750005,"y":27.0525,"w":50.65059999999997,"clr":-1,"A":"left","R":[{"T":"..........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.59000171875,"y":27.0525,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"65.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961876718750005,"y":27.0525,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.94437671875001,"y":27.0525,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.96562671875,"y":27.0525,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.02812671875,"y":27.0525,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88687671875,"y":27.0525,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062501718749996,"y":27.869999999999994,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"66.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393126718749997,"y":27.869999999999994,"w":197.71879999999996,"clr":-1,"A":"left","R":[{"T":"Other%20refundable%20credits.%20Attach%20IA%20148%20Tax%20Credits%20Schedule.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":46.259376718750005,"y":27.869999999999994,"w":11.6346,"clr":-1,"A":"left","R":[{"T":"......","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.59000171875,"y":27.869999999999994,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"66.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961876718750005,"y":27.869999999999994,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.94437671875001,"y":27.869999999999994,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.96562671875,"y":27.869999999999994,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.02812671875,"y":27.869999999999994,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88687671875,"y":27.869999999999994,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062501718749996,"y":28.635,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"67.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393126718749997,"y":28.635,"w":85.69350000000001,"clr":-1,"A":"left","R":[{"T":"TOTAL.%20ADD%20lines%2060%20-%2066.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":27.160626718750002,"y":28.635,"w":122.9067000000001,"clr":-1,"A":"left","R":[{"T":"...............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.59000171875,"y":28.635,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"67.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.961876718750005,"y":28.635,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.985626718750005,"y":28.635,"w":10.0762,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":65.02812671875,"y":28.635,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88687671875,"y":28.635,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0625,"y":29.3775,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"68.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393125000000001,"y":29.3775,"w":61.36050000000001,"clr":-1,"A":"left","R":[{"T":"TOTAL%20CREDITS.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":22.870625000000004,"y":29.3775,"w":155.80679999999995,"clr":-1,"A":"left","R":[{"T":"ADD%20columns%20A%20and%20B%20on%20line%2067%20and%20enter%20here.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":49.621249999999996,"y":29.3775,"w":208.7142000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.735625,"y":29.3775,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"68.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.159375,"y":29.3775,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.636875,"y":29.3775,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.0625,"y":30.172500000000003,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"69.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393125000000001,"y":30.172500000000003,"w":306.45959999999997,"clr":-1,"A":"left","R":[{"T":"If%20line%2068%20is%20more%20than%20line%2059%2C%20SUBTRACT%20line%2059%20from%20line%2068.%20This%20is%20the%20amount%20you%20overpaid.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":64.698125,"y":30.172500000000003,"w":120.86279999999988,"clr":-1,"A":"left","R":[{"T":"..............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.694375,"y":30.172500000000003,"w":11.9628,"clr":-1,"A":"left","R":[{"T":"69.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.715625,"y":30.172500000000003,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15937328125,"y":30.172500000000003,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63687328125,"y":30.172500000000003,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062498281250004,"y":30.99,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"70.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393123281250006,"y":30.99,"w":76.19000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2069%20to%20be%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":25.34562328125001,"y":30.99,"w":39.565799999999996,"clr":-1,"A":"left","R":[{"T":"REFUNDED","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":32.52312328125001,"y":30.99,"w":271.1195000000003,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":79.36249828125,"y":30.99,"w":29.7362,"clr":-1,"A":"left","R":[{"T":"REFUND","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.67374828125001,"y":30.99,"w":12.082799999999999,"clr":-1,"A":"left","R":[{"T":"70.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.71562328125,"y":30.99,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15936640625,"y":30.99,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63686640625001,"y":30.99,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475616406249998,"y":31.545000625000007,"w":307.2632000000002,"clr":-1,"A":"left","R":[{"T":"For%20a%20faster%20refund%20file%20electronically.%20%20Go%20to%20www.iowa.gov%2Ftax%20for%20details%20or%20mail%20return%20to","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":9.879014843749998,"y":32.175000625,"w":326.32880000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20Iowa%20Income%20Tax%20-%20Refund%20Processing%2C%20Hoover%20State%20Office%20Bldg%2C%20Des%20Moines%20IA%2050319-0120","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":10.062491406249997,"y":32.970000625000004,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"71.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393116406249996,"y":32.970000625000004,"w":76.27400000000002,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2069%20to%20be%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":25.304366406249997,"y":32.970000625000004,"w":117.81720000000004,"clr":-1,"A":"left","R":[{"T":"applied%20to%20your%202013%20estimated%20tax","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":45.92936640625,"y":32.970000625000004,"w":13.691999999999998,"clr":-1,"A":"left","R":[{"T":".......","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.58999140625,"y":32.970000625000004,"w":9.8962,"clr":-1,"A":"left","R":[{"T":"71.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.96186640625,"y":32.970000625000004,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":60.944366406250005,"y":32.970000625000004,"w":11.9628,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.96561640624999,"y":32.970000625000004,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":65.02811640624999,"y":32.970000625000004,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.88686640625001,"y":32.970000625000004,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062491406249993,"y":33.787500625,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"72.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393116406249995,"y":33.787500625,"w":331.0033999999997,"clr":-1,"A":"left","R":[{"T":"If%20line%2068%20is%20less%20than%20line%2059%2C%20SUBTRACT%20line%2068%20from%20line%2059.%20This%20is%20the%20AMOUNT%20OF%20TAX%20YOU%20OWE.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":69.04999140625,"y":33.787500625,"w":95.54019999999998,"clr":-1,"A":"left","R":[{"T":".................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.69436640625001,"y":33.787500625,"w":11.9628,"clr":-1,"A":"left","R":[{"T":"72.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.71561640624999,"y":33.787500625,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15935953125,"y":33.787500625,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63685953125001,"y":33.787500625,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.06248453125,"y":34.612500625,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"73.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393109531250001,"y":34.612500625,"w":218.5124000000001,"clr":-1,"A":"left","R":[{"T":"Penalty%20for%20underpayment%20of%20estimated%20tax%20from%20IA%202210%20or%20IA%202210F","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":50.4344903125,"y":34.612500625,"w":161.45720000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20Check%20if%20annualized%20income%20method%20is%20used.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":78.434354375,"y":34.612500625,"w":40.928999999999974,"clr":-1,"A":"left","R":[{"T":".....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.694354375,"y":34.612500625,"w":11.9628,"clr":-1,"A":"left","R":[{"T":"73.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.715604375,"y":34.612500625,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15934750000001,"y":34.612500625,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63684750000002,"y":34.612500625,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.06247250000001,"y":35.430000625,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"74.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393097500000012,"y":35.430000625,"w":63.854,"clr":-1,"A":"left","R":[{"T":"Penalty%20and%20interest","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":23.468722500000013,"y":35.430000625,"w":54.61399999999996,"clr":-1,"A":"left","R":[{"T":"............................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":33.26559750000001,"y":35.430000625,"w":40.101,"clr":-1,"A":"left","R":[{"T":"74a.%20Penalty","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":40.896847500000014,"y":35.430000625,"w":54.61119999999998,"clr":-1,"A":"left","R":[{"T":"______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.06497250000001,"y":35.430000625,"w":12.056000000000001,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":53.08622250000001,"y":35.430000625,"w":9.481200000000001,"clr":-1,"A":"left","R":[{"T":"s%20","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":54.67434578125001,"y":35.430000625,"w":40.190900000000006,"clr":-1,"A":"left","R":[{"T":"74b.%20Interest","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":62.34684578125001,"y":35.430000625,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.09247078125,"y":35.430000625,"w":11.9892,"clr":-1,"A":"left","R":[{"T":".00%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.13434578125,"y":35.430000625,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":76.86684578124999,"y":35.430000625,"w":62.10999999999999,"clr":-1,"A":"left","R":[{"T":"ADD%20Enter%20total%2074.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":89.15934578125001,"y":35.430000625,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63684578125002,"y":35.430000625,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062470781250015,"y":36.24750062500001,"w":10.0762,"clr":-1,"A":"left","R":[{"T":"75.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.393095781250016,"y":36.24750062500001,"w":78.36120000000003,"clr":-1,"A":"left","R":[{"T":"TOTAL%20AMOUNT%20DUE.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":25.758095781250017,"y":36.24750062500001,"w":133.19480000000004,"clr":-1,"A":"left","R":[{"T":"ADD%20lines%2072%2C%2073%2C%20and%2074%2C%20and%20enter%20here.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":48.61059578125001,"y":36.24750062500001,"w":140.42880000000008,"clr":-1,"A":"left","R":[{"T":"........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":73.19559578125002,"y":36.24750062500001,"w":65.562,"clr":-1,"A":"left","R":[{"T":"PAY%20THIS%20AMOUNT","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":85.65309578125002,"y":36.24750062500001,"w":11.993599999999999,"clr":-1,"A":"left","R":[{"T":"75.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.71559578125002,"y":36.24750062500001,"w":7.136,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":89.15934406250001,"y":36.24750062500001,"w":58.44750000000002,"clr":-1,"A":"left","R":[{"T":"_______________","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":99.63684406250002,"y":36.24750062500001,"w":9.8962,"clr":-1,"A":"left","R":[{"T":".00","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.475594062500015,"y":36.79500000000001,"w":341.3564999999998,"clr":-1,"A":"left","R":[{"T":"You%20can%20pay%20online%20at%20www.iowa.gov%2Ftax%20or%20pay%20by%20mail%20to%20Iowa%20Income%20Tax%20-%20Document%20Processing%2C","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":9.876225312500015,"y":37.320000625000006,"w":319.5664,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20PO%20Box%209187%2C%20Des%20Moines%20IA%2050306-9187.%20Make%20check%20payable%20to%20Treasurer%2C%20State%20of%20Iowa.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":81.03309406250001,"y":3.562500625000003,"w":85.03200000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%2037-40","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.03309406250001,"y":4.237500625000005,"w":82.044,"clr":-1,"A":"left","R":[{"T":"ONLY%20if%20you%20itemize.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":77.15555968750002,"y":4.829999375,"w":17.068,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,55,0,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":1.934999374999999,"w":30.2596,"clr":-1,"A":"left","R":[{"T":"STEP%207","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":2.5349981249999964,"w":32.977,"clr":-1,"A":"left","R":[{"T":"Taxable","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":3.135000624999994,"w":30.688200000000002,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":8.310000624999995,"w":30.2596,"clr":-1,"A":"left","R":[{"T":"STEP%208","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":8.909999374999993,"w":17.8652,"clr":-1,"A":"left","R":[{"T":"Tax%2C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":9.510001874999992,"w":30.689,"clr":-1,"A":"left","R":[{"T":"Credits","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":10.110000624999989,"w":15.5689,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":10.710003124999995,"w":37.764799999999994,"clr":-1,"A":"left","R":[{"T":"Checkoff","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":11.310001874999992,"w":40.052800000000005,"clr":-1,"A":"left","R":[{"T":"Contribu-","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":11.91000437499999,"w":21.4735,"clr":-1,"A":"left","R":[{"T":"tions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":22.37250437499999,"w":30.2596,"clr":-1,"A":"left","R":[{"T":"STEP%209","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":22.972504999999995,"w":30.689,"clr":-1,"A":"left","R":[{"T":"Credits","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":30.097504999999995,"w":35.1835,"clr":-1,"A":"left","R":[{"T":"STEP%2010","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":30.69750562499999,"w":30.202799999999996,"clr":-1,"A":"left","R":[{"T":"Refund","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":31.29750624999999,"w":8.8008,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":31.89750687499999,"w":32.838,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":32.49750749999999,"w":37.241299999999995,"clr":-1,"A":"left","R":[{"T":"You%20Owe","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":2.843684687500009,"y":1.027507499999994,"w":107.97359999999998,"clr":-1,"A":"left","R":[{"T":"2012%20IA%201040","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":21.36493468750001,"y":1.027507499999994,"w":51.970400000000005,"clr":-1,"A":"left","R":[{"T":"%2C%20page%202","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":44.87743468750001,"y":46.71000749999999,"w":329.08589999999987,"clr":-1,"A":"left","R":[{"T":"This%20return%20is%20due%20April%2030%2C%202013.%20%20Please%20sign%2C%20enclose%20W-2s%2C%20and%20verify%20SSNs.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":44.87743468750001,"y":47.58750749999999,"w":214.09839999999983,"clr":-1,"A":"left","R":[{"T":"MAILING%20ADDRESSES%3A%20%20See%20lines%2070%20and%2075%20above.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":76.53680968750001,"y":38.40000749999999,"w":22.1242,"clr":-1,"A":"left","R":[{"T":"%241.50%20t","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":80.29055968750001,"y":38.40000749999999,"w":60.8172,"clr":-1,"A":"left","R":[{"T":"o%20Republican%20Party","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":76.53687500000001,"y":39.0675,"w":83.34250000000002,"clr":-1,"A":"left","R":[{"T":"%241.50%20to%20Democratic%20Party","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":76.53687500000001,"y":39.765,"w":56.811,"clr":-1,"A":"left","R":[{"T":"%241.50%20to%20Campaig","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":86.21,"y":39.765,"w":22.355,"clr":-1,"A":"left","R":[{"T":"n%20Fund","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.4775,"y":38.4075,"w":22.0661,"clr":-1,"A":"left","R":[{"T":"%241.50%20t","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":55.231249999999996,"y":38.4075,"w":60.89099999999999,"clr":-1,"A":"left","R":[{"T":"o%20Republican%20Party","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.4775,"y":39.097500000000004,"w":83.36250000000001,"clr":-1,"A":"left","R":[{"T":"%241.50%20to%20Democratic%20Party","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":51.4775,"y":39.8175,"w":26.1596,"clr":-1,"A":"left","R":[{"T":"%241.50%20to","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":55.581015625,"y":39.8175,"w":53.087999999999994,"clr":-1,"A":"left","R":[{"T":"%20Campaign%20Fund","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":38.4951625,"y":45.6225,"w":326.989499999999,"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%20Daytime%20Telephone%20Number%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%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Daytime%20Telephone%20Number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":49.69017187500001,"y":20.7975,"w":13.601600000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20s","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":72.810625,"y":20.7975,"w":9.2612,"clr":-1,"A":"left","R":[{"T":"%20s","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":40.5675,"w":35.1835,"clr":-1,"A":"left","R":[{"T":"STEP%2012","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":13.424375000000001,"y":40.5675,"w":498.0704999999994,"clr":-1,"A":"left","R":[{"T":"I%20(We)%2C%20the%20undersigned%2C%20declare%20under%20penalty%20of%20perjury%20that%20I%20(we)%20have%20examined%20this%20return%2C%20including%20all%20accompanying%20schedules","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":13.424375000000001,"y":41.1675,"w":489.46780000000024,"clr":-1,"A":"left","R":[{"T":"and%20statements%2C%20and%2C%20to%20the%20best%20of%20my%20(our)%20knowledge%20and%20belief%2C%20it%20is%20a%20true%2C%20correct%2C%20and%20complete%20return.%20Declaration%20of%20preparer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":13.424375000000001,"y":41.767500000000005,"w":338.0729999999999,"clr":-1,"A":"left","R":[{"T":"(other%20than%20taxpayer)%20is%20based%20on%20all%20information%20of%20which%20the%20preparer%20has%20any%20knowledge.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.290034375000001,"y":43.199999999999996,"w":300.33239999999984,"clr":-1,"A":"left","R":[{"T":"Your%20Signature%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%20Date%20%20%20%20%20%20%20%20%20%20%20%20Check%20if%20Deceased%20%20%20Date%20of%20%20Death","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":12.290034375000001,"y":44.42998125,"w":299.6943999999997,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Signature%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%20Date%20%20%20%20%20%20%20%20%20%20%20%20Check%20if%20Deceased%20%20%20Date%20of%20%20Death","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":10.0625,"y":38.25,"w":81.53940000000003,"clr":-1,"A":"left","R":[{"T":"POLITICAL%20CHECKOFF.","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":23.785532812500005,"y":38.25,"w":115.52279999999995,"clr":-1,"A":"left","R":[{"T":"%20This%20checkoff%20does%20not%20increase%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.062500000000004,"y":38.774999375,"w":153.20800000000006,"clr":-1,"A":"left","R":[{"T":"amount%20of%20tax%20you%20owe%20or%20decrease%20your%20refund.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000027,"y":38.2275,"w":35.1835,"clr":-1,"A":"left","R":[{"T":"STEP%2011","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":91.94375,"y":47.76,"w":57.670200000000015,"clr":-1,"A":"left","R":[{"T":"41-001b%20(09%2F24%2F12)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":41.6354046875,"y":39.097500000000004,"w":33.8982,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20SPOUSE%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":67.81421875000001,"y":39.097500000000004,"w":42.5,"clr":-1,"A":"left","R":[{"T":"%20YOURSELF%3A","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":66.36875000000002,"y":43.199999999999996,"w":168.9560000000001,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20Signature%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%20Date","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":66.36875000000002,"y":44.42998125,"w":126.30989999999993,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20PTIN%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Firm%E2%80%99s%20FEIN","S":51,"TS":[0,9,0,0]}]},{"x":3.723801562500001,"y":42.06,"w":37.3337,"clr":1,"A":"left","R":[{"T":"%20PLEASE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":42.824999999999996,"w":48.0166,"clr":-1,"A":"left","R":[{"T":"SIGN%20HERE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":43.987500000000004,"w":48.0166,"clr":-1,"A":"left","R":[{"T":"SIGN%20HERE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":27.490625000000005,"y":6.772499999999994,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":17.487500000000004,"y":26.1375,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":50.178125,"y":34.68,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":47.249375,"y":43.949999999999996,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":47.146248968749994,"y":42.6975,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":66.86374896875,"y":39.165,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":41.412498968749986,"y":39.13500025,"w":7.086,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"36B","EN":0},"TI":118,"AM":0,"x":75.470828125,"y":2.117874999999998,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"36A","EN":0},"TI":119,"AM":0,"x":89.33993750000002,"y":2.113999999999995,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"37B","EN":0},"TI":120,"AM":0,"x":51.27340625,"y":2.8671250000000064,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"37A","EN":0},"TI":121,"AM":0,"x":65.332953125,"y":2.8671250000000064,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"38B","EN":0},"TI":122,"AM":0,"x":51.27340625,"y":4.0745000000000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"38A","EN":0},"TI":123,"AM":0,"x":65.332953125,"y":4.0745000000000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"39B","EN":0},"TI":124,"AM":0,"x":51.27340625,"y":4.884562499999997,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"39A","EN":0},"TI":125,"AM":0,"x":65.332953125,"y":4.884562499999997,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"40B","EN":0},"TI":126,"AM":0,"x":51.27340625,"y":6.144500000000003,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"40A","EN":0},"TI":127,"AM":0,"x":65.332953125,"y":6.144500000000003,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"41B","EN":0},"TI":130,"AM":0,"x":75.519125,"y":6.932625000000002,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"41A","EN":0},"TI":131,"AM":0,"x":89.511296875,"y":6.932625000000002,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"42B","EN":0},"TI":132,"AM":0,"x":75.519125,"y":7.689374999999998,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"42A","EN":0},"TI":133,"AM":0,"x":89.511296875,"y":7.689374999999998,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"43B","EN":0},"TI":134,"AM":0,"x":51.27340625,"y":8.499312500000002,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"43A","EN":0},"TI":135,"AM":0,"x":65.332953125,"y":8.4985625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"44B","EN":0},"TI":136,"AM":0,"x":51.27340625,"y":9.297937500000003,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"44A","EN":0},"TI":137,"AM":0,"x":65.332953125,"y":9.300624999999997,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"45B","EN":0},"TI":138,"AM":0,"x":51.27340625,"y":10.137312499999998,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"45A","EN":0},"TI":139,"AM":0,"x":65.332953125,"y":10.136875000000003,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"46B","EN":0},"TI":140,"AM":0,"x":75.519125,"y":10.887124999999997,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"46A","EN":0},"TI":141,"AM":0,"x":89.511296875,"y":10.880625,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"47B","EN":0},"TI":142,"AM":0,"x":51.278734375000006,"y":11.620562499999997,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"47A","EN":0},"TI":143,"AM":0,"x":65.322296875,"y":11.618562500000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"48B","EN":0},"TI":144,"AM":0,"x":51.19846875,"y":12.429124999999999,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"48A","EN":0},"TI":145,"AM":0,"x":65.32951562500001,"y":12.46875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"49B","EN":0},"TI":146,"AM":0,"x":75.519125,"y":13.180124999999995,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"49A","EN":0},"TI":147,"AM":0,"x":89.511296875,"y":13.180124999999995,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"50B","EN":0},"TI":148,"AM":0,"x":75.519125,"y":14.010874999999999,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"50A","EN":0},"TI":149,"AM":0,"x":89.511296875,"y":14.010874999999999,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"51B","EN":0},"TI":150,"AM":0,"x":75.519125,"y":14.803937500000004,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"51A","EN":0},"TI":151,"AM":0,"x":89.511296875,"y":14.803937500000004,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"52B","EN":0},"TI":152,"AM":0,"x":75.519125,"y":15.560375000000002,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"52A","EN":0},"TI":153,"AM":0,"x":89.511296875,"y":15.560375000000002,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ia_scr_148"}},"id":{"Id":"Add_IA_148","EN":0},"TI":154,"AM":0,"x":64.56742187500001,"y":16.032687499999998,"w":6.8239531249999965,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"53B","EN":0},"TI":155,"AM":0,"x":75.519125,"y":16.3871875,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"53A","EN":0},"TI":156,"AM":0,"x":89.511296875,"y":16.3871875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"54B","EN":0},"TI":157,"AM":0,"x":75.519125,"y":17.121812499999994,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"54A","EN":0},"TI":158,"AM":0,"x":89.511296875,"y":17.121812499999994,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"55B","EN":0},"TI":159,"AM":0,"x":75.519125,"y":17.8911875,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"55A","EN":0},"TI":160,"AM":0,"x":89.511296875,"y":17.8911875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"56B","EN":0},"TI":161,"AM":0,"x":75.519125,"y":18.75,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"56A","EN":0},"TI":162,"AM":0,"x":89.511296875,"y":18.75,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"57","EN":0},"TI":163,"AM":0,"x":89.511296875,"y":19.5209375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"58A","EN":0},"TI":164,"AM":0,"x":22.474031250000003,"y":20.898333333333337,"w":3.7800468750000027,"h":0.8382291666666646},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"58B","EN":0},"TI":165,"AM":0,"x":34.95937500000001,"y":20.898333333333337,"w":3.780046874999996,"h":0.8382291666666646},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"58C","EN":0},"TI":166,"AM":0,"x":52.9485,"y":20.898333333333337,"w":3.7800468750000027,"h":0.8382291666666646},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"58D","EN":0},"TI":167,"AM":0,"x":74.902265625,"y":20.898333333333337,"w":3.7800468750000027,"h":0.8382291666666646},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"58","EN":0},"TI":168,"AM":0,"x":89.511296875,"y":20.94,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"59","EN":0},"TI":169,"AM":0,"x":89.511296875,"y":21.722062500000003,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"60B","EN":0},"TI":170,"AM":0,"x":51.266875,"y":22.5241875,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"60A","EN":0},"TI":171,"AM":0,"x":65.30940625000001,"y":22.5241875,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"61B","EN":0},"TI":172,"AM":0,"x":51.266875,"y":23.338000000000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"61A","EN":0},"TI":173,"AM":0,"x":65.30940625000001,"y":23.33775,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ia_scr_130"}},"id":{"Id":"Add_IA_130","EN":0},"TI":174,"AM":0,"x":40.98428125000001,"y":23.7916875,"w":6.8239531249999965,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"62B","EN":0},"TI":175,"AM":0,"x":51.266875,"y":24.15925,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"62A","EN":0},"TI":176,"AM":0,"x":65.30940625000001,"y":24.158125,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ia_scr_4136"}},"id":{"Id":"Add_IA_4136","EN":0},"TI":177,"AM":0,"x":40.964171875,"y":24.628312500000003,"w":6.823953125000009,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"63B","EN":0},"TI":178,"AM":0,"x":51.266875,"y":24.981125000000002,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"63A","EN":0},"TI":179,"AM":0,"x":65.30940625000001,"y":24.979249999999997,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"64B","EN":0},"TI":182,"AM":0,"x":51.266875,"y":26.3129375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"64A","EN":0},"TI":183,"AM":0,"x":65.30940625000001,"y":26.3376875,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"65B","EN":0},"TI":184,"AM":0,"x":51.266875,"y":27.196,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"65A","EN":0},"TI":185,"AM":0,"x":65.30940625000001,"y":27.1945625,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"66B","EN":0},"TI":186,"AM":0,"x":51.266875,"y":28.013,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"66A","EN":0},"TI":187,"AM":0,"x":65.30940625000001,"y":28.013625,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"67B","EN":0},"TI":188,"AM":0,"x":51.266875,"y":28.788187500000003,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"67A","EN":0},"TI":189,"AM":0,"x":65.30940625000001,"y":28.786999999999995,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"68","EN":0},"TI":190,"AM":0,"x":89.510609375,"y":29.4974375,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"69","EN":0},"TI":191,"AM":0,"x":89.510609375,"y":30.3388125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"70","EN":0},"TI":192,"AM":0,"x":89.510609375,"y":31.136749999999996,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"71B","EN":0},"TI":193,"AM":0,"x":50.689546875,"y":33.125375,"w":9.870609375000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"71A","EN":0},"TI":194,"AM":0,"x":64.92750000000001,"y":33.1338125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"72","EN":0},"TI":195,"AM":0,"x":89.510609375,"y":33.943374999999996,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"73","EN":0},"TI":197,"AM":0,"x":89.510609375,"y":34.784937500000005,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"74A","EN":0},"TI":198,"AM":0,"x":40.843171875,"y":35.5883125,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"74B","EN":0},"TI":199,"AM":0,"x":62.28475000000001,"y":35.5730625,"w":9.87060937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"74","EN":0},"TI":200,"AM":0,"x":89.510609375,"y":35.5965,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"75","EN":0},"TI":201,"AM":0,"x":89.510609375,"y":36.3555,"w":9.870609375000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YOUDATE","EN":0},"TI":208,"AM":0,"x":36.450046875000005,"y":42.7480625,"w":10.518578125,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YOUDOD","EN":0},"TI":210,"AM":0,"x":55.287203125,"y":42.8105625,"w":10.518578125000012,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PREPDATE","EN":0},"TI":211,"AM":0,"x":91.504015625,"y":42.823,"w":10.518578125000012,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDATE","EN":0},"TI":212,"AM":0,"x":36.450046875000005,"y":44.01104375,"w":10.518578125,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOD","EN":0},"TI":214,"AM":0,"x":55.287203125,"y":43.9998625,"w":10.518578125000012,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREPID","EN":0},"TI":215,"AM":0,"x":66.616515625,"y":43.9998625,"w":14.315125000000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIRMFEIN","EN":0},"TI":216,"AM":0,"x":82.34771875,"y":43.9998625,"w":19.510046875,"h":0.8333333333333334},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"YOUPHONE","EN":0},"TI":217,"AM":0,"x":46.384078125,"y":45.219674999999995,"w":18.654625000000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PREPPHONE","EN":0},"TI":218,"AM":0,"x":82.34771875,"y":45.23513125,"w":19.578453125,"h":0.8333333333333334}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"I","EN":0},"TI":128,"AM":0,"x":29.289218750000003,"y":6.930750000000003,"w":1.6546406249999985,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"S","EN":0},"TI":129,"AM":0,"x":48.306328125,"y":6.930750000000003,"w":1.7613750000000017,"h":0.8333333333333334,"checked":false}],"id":{"Id":"DEDUCTIONTYPE","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"64CBX1","EN":0},"TI":180,"AM":0,"x":19.6075,"y":25.87875,"w":1.7135937499999983,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"64CBX2","EN":0},"TI":181,"AM":0,"x":19.532734375,"y":26.48175,"w":1.8632968750000016,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"73CBX","EN":0},"TI":196,"AM":0,"x":51.7715,"y":34.7394375,"w":1.7840624999999994,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPPOLR","EN":0},"TI":202,"AM":0,"x":48.59662500000001,"y":38.654562500000004,"w":2.9808281249999933,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPPOLD","EN":0},"TI":203,"AM":0,"x":48.59662500000001,"y":39.330062500000004,"w":2.9808281249999933,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPPOLC","EN":0},"TI":204,"AM":0,"x":48.59662500000001,"y":40.037187499999995,"w":2.9808281249999933,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YOUPOLR","EN":0},"TI":205,"AM":0,"x":91.61178125,"y":38.6384375,"w":2.980828125,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YOUPOLD","EN":0},"TI":206,"AM":0,"x":91.61178125,"y":39.338125,"w":2.980828125,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YOUPOLC","EN":0},"TI":207,"AM":0,"x":91.61178125,"y":40.0130625,"w":2.980828125,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YOUDEC","EN":0},"TI":209,"AM":0,"x":48.65214062500001,"y":42.634562499999994,"w":2.7310937499999977,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDEC","EN":0},"TI":213,"AM":0,"x":48.70421875,"y":43.9015,"w":2.7310937499999977,"h":0.8333333333333334}]}]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_1040scha.content.txt b/test/data/ia/form/ia_scr_1040scha.content.txt new file mode 100644 index 00000000..800bbcb5 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040scha.content.txt @@ -0,0 +1,266 @@ +If you itemize deductions, enclose a copy of this schedule or a copy of the federal Schedule A with your return. +2012 IA 1040 Schedule A +Iowa Itemized Deductions +Do not include health insurance premiums deducted on IA 1040, line 18 +. +1. +............................................................................................... +1. +_______________ +.00 +2. +Multiply the amount on federal form 1040*, line 38 as adjusted for disallowance of bonus + +depreciation/section 179, from line 14 of the IA 1040 by 7.5% (.075). Enter result here... +..... +2. +_______________ +.00 +3. +Subtract line 2 from line 1. If less than zero, enter zero. +........................................................................................................ +3. +_____________ +.00 + Include School District Surtax and EMS Surtax paid in 2012 +OR + .................4 +. +_______________ +.00 +5. +................................................................................................................... +5. +_______________ +.00 +6. +_______________ +.00 +7. +Other taxes. List the type and amount. +................................................................................. +7. +_______________ +.00 +8. +............................................................................................... +8. +_____________ +.00 +............................. +9a. +_______________ +.00 +.......................................... +9b. +_______________ +.00 +10. +......................................................................... +10. +_______________ +.00 +11. +Qualified mortgage insurance premiums +............................................................................. +11. +_______________ +.00 +12. +................................................ +12. +_______________ +.00 +13. +Add lines 9a-12. Enter total here. +........................................................................................................................................ +13. +_____________ +.00 +14. +Contributions by cash or check. +........................................................................................... +14. +_______________ +.00 +15. +..... +15. +_______________ +.00 +16. +Carryover from prior year as adjusted for disallowance of bonus depreciation +................ +16. +_______________ +.00 +17. +Add lines 14 through 16. Enter total here. +........................................................................................................................... +17. +_____________ +.00 +18. +......................................................................................................... +18. +_____________ +.00 +19. +Unreimbursed employee expenses. Attach federal form 2106 or 2106-EZ if required. +... +19. +_______________ +.00 +20. +............................................................................................................. +20. +_______________ +.00 +21. +Other expenses. List type and amount. +________________________________________ +21. +_______________ +.00 +22. +Add the amounts on lines 19, 20, and 21. Enter the total here. +......................................... +22. +_______________ +.00 +23. +Multiply the amount of federal form 1040*, line 38 as adjusted for disallowance of bonus + +  +23. +_______________ +.00 +24. +..................................................................... +24. +_____________ +.00 +25. +Other miscellaneous deductions not subject to 2% AGI Limit. List type and amount. +..................................................... +25. +_____________ +.00 + + + + + + + +.................................................................................. +26. +_____________ +. +0 +0 +If using filing statuses 1, 2, 5, or 6, enter the amount on Step 7, line 39 of the IA 1040. + SPOUSE +YOU +27. +Enter the Iowa net income of both spouses from IA 1040, line 26. +...................................... +27b. +_____________ +.00 +27a. +_____________ +.00 +28. +......................................................................... +28. +_____________ +.00 +29. +.................................................... +29. +______________ +% +30. +........................ + +(YOU) +30. +_____________ +.00 +31. +........................................ +(SPOUSE) +31. +_____________ +.00 +Medical and +Dental +Expenses +41-004a (02/07/13) +www.iowa.gov/tax +Iowa Department of Revenue +NOTE: +If you have federal bonus depreciation/section 179, please see the 2012 Expanded Instructions on our Web site. +* +If you filed federal 1040A, see line 21; if federal 1040EZ, see line 4. +Gifts +to +Charity +Casualty/Theft +Loss +Job Expenses +and +Misc. +Deductions +Other Misc. +Deductions +Total +Itemized +Deductions +Proration +of +Deductions +Between +Spouses +Taxes +You +Paid +Name(s) as shown on page 1 of the IA 1040 + Social Security Number +Interest +You +Paid +} +4. State and Local (Check only one box): + +Medical and dental e xpen se s +Real estate t a x e s +Personal p r op e r t y taxes, including annual vehicle registration........................................ 6. +Add amounts on lines 4, 5, 6, and 7. Enter the total here. +9a. Home mortgage interest and points r ep o r t e d on federal f o r m 1098 +9b. Home mortgage interest not r ep o r t e d on federal f o r m 1098 +Points not r ep o r t e d on federal f o r m 1098 +Investment interest. Attach federal f o r m 4952 if required. +Other than b y cash or check. You must attach federal form 8283 if more than $500. +Casualty or theft loss(es). Attach federal for m 4684. +Tax preparation fees +depreciation/section 179, from line 14 of the IA 1040* b y 2% (.02). +Enter the result he r e... +Subtract line 23 from line 22. Enter the total. If less than z er o, enter zero. +26. Add lines 3, 8, 13, 17, 18, 24, and 25, and enter the total here + Complete lines 27 throug h 31 ONLY if you are using filing status 3 or 4. +Total Iowa net income, add columns 27a and 2 7b . Enter the total here. +Divide the amount on line 27a b y the amount on line 28. Enter the percentage here. +Multiply line 26 b y the percentage on line 29. Enter here and on IA 1040, line 39, column A +Subtract line 30 from line 26. Enter here and on IA 1040, line 39, column B. If y o u are using +filing status 4, enter this amount on line 39, column A of y o u r spouse’s return. + +a + +Other state and local income taxes. Do not include Iowa Income Tax + +b + +General sales taxes only from line 5b of the Federal Schedule A. +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_1040scha.fields.json b/test/data/ia/form/ia_scr_1040scha.fields.json new file mode 100644 index 00000000..7aa023e6 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040scha.fields.json @@ -0,0 +1 @@ +[{"id":"A1_other","type":"box","calc":false,"value":""},{"id":"A1_sales","type":"box","calc":false,"value":""},{"id":"Names","type":"alpha","calc":false,"value":""},{"id":"SSN1","type":"ssn","calc":false,"value":""},{"id":"line_1","type":"number","calc":false,"value":""},{"id":"line_2","type":"number","calc":false,"value":""},{"id":"line_4","type":"number","calc":false,"value":""},{"id":"line_5","type":"number","calc":false,"value":""},{"id":"line_6","type":"number","calc":false,"value":""},{"id":"L7A","type":"alpha","calc":false,"value":""},{"id":"line_7","type":"number","calc":false,"value":""},{"id":"line_9a","type":"number","calc":false,"value":""},{"id":"line_9b","type":"number","calc":false,"value":""},{"id":"line_10","type":"number","calc":false,"value":""},{"id":"line_11","type":"number","calc":false,"value":""},{"id":"line_12","type":"number","calc":false,"value":""},{"id":"line_14","type":"number","calc":false,"value":""},{"id":"line_15","type":"number","calc":false,"value":""},{"id":"line_16","type":"number","calc":false,"value":""},{"id":"line_18","type":"number","calc":false,"value":""},{"id":"line_19","type":"number","calc":false,"value":""},{"id":"line_20","type":"number","calc":false,"value":""},{"id":"L20A","type":"alpha","calc":false,"value":""},{"id":"line_21","type":"number","calc":false,"value":""},{"id":"line_22","type":"number","calc":false,"value":""},{"id":"line_23","type":"number","calc":false,"value":""},{"id":"L24A","type":"alpha","calc":false,"value":""},{"id":"line_25","type":"number","calc":false,"value":""},{"id":"line_26","type":"number","calc":false,"value":""},{"id":"line_27b","type":"number","calc":false,"value":""},{"id":"line_27a","type":"number","calc":false,"value":""},{"id":"line_28","type":"number","calc":false,"value":""},{"id":"line_29","type":"number","calc":false,"value":""},{"id":"line_30","type":"number","calc":false,"value":""},{"id":"line_31","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_1040scha.json b/test/data/ia/form/ia_scr_1040scha.json new file mode 100755 index 00000000..6d2f1cf7 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040scha.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"Microsoft Word - Document6","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":15.406909375,"y":8.632500000000002,"w":1.4400000000000002,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":12.772499999999999,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":19.334999999999997,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":24.3225,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":27.735,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":28.785,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":34.56,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":35.61,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":15.406909375,"y":38.235,"w":0.7200000000000001,"l":87.14062500000001},{"oc":"#2b2e34","x":867.7625000000002,"y":-76.55,"w":14.399999999999999,"l":156.90503124999992},{"oc":"#2b2e34","x":867.7625000000002,"y":-88.606375,"w":14.399999999999999,"l":156.90503124999992},{"oc":"#2b2e34","x":28.05,"y":3.1162499999999986,"w":3.06,"l":74.88937500000002},{"oc":"#2b2e34","x":11.591284375,"y":3.330000000000003,"w":0.7200000000000001,"l":91.34812500000002},{"oc":"#2b2e34","x":3.877534375,"y":24.3225,"w":0.7200000000000001,"l":11.797465625000003},{"oc":"#2b2e34","x":3.5269265625,"y":27.765,"w":0.7200000000000001,"l":11.714965625000001},{"oc":"#2b2e34","x":3.50625,"y":28.785,"w":0.7200000000000001,"l":11.921284375000004},{"oc":"#2b2e34","x":3.4856421875000003,"y":34.5675,"w":0.7200000000000001,"l":11.859375},{"oc":"#2b2e34","x":3.4238015625000005,"y":35.64,"w":0.7200000000000001,"l":12.003732812500004},{"oc":"#2b2e34","x":3.5887671875000002,"y":38.2275,"w":0.7200000000000001,"l":11.756250000000001},{"oc":"#2b2e34","x":4.33125,"y":8.625,"w":1.4400000000000002,"l":11.591284375000003},{"oc":"#2b2e34","x":3.5269265625,"y":12.772499999999999,"w":0.7200000000000001,"l":11.714965625000001},{"oc":"#2b2e34","x":3.877534375,"y":5.572500000000001,"w":1.4400000000000002,"l":98.09250000000003},{"oc":"#2b2e34","x":3.877534375,"y":7.402500000000003,"w":1.4400000000000002,"l":98.09250000000003},{"oc":"#2b2e34","x":3.4856421875000003,"y":19.334999999999997,"w":0.7200000000000001,"l":11.941892187500002}],"VLines":[{"oc":"#2b2e34","x":1024.6675312500001,"y":-88.606375,"w":14.399999999999999,"l":12.056375000000003},{"oc":"#2b2e34","x":867.7625000000002,"y":-88.606375,"w":14.399999999999999,"l":12.056375000000003},{"oc":"#2b2e34","x":15.221284375,"y":8.625,"w":0.7200000000000001,"l":34.70250000000001},{"oc":"#2b2e34","x":17.572499999999998,"y":8.647499999999999,"w":0.7200000000000001,"l":34.71000000000001},{"oc":"#2b2e34","x":77.13750000000002,"y":6.202500000000005,"w":1.4400000000000002,"l":1.1774999999999995}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":4.6381250000000005,"y":4.260000000000001,"w":555.9150999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20itemize%20deductions%2C%20enclose%20a%20copy%20of%20this%20schedule%20or%20a%20copy%20of%20the%20federal%20Schedule%20A%20with%20your%20return.","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#2b2e34","x":62.429203124999994,"y":2.11499999999999,"w":225.11329999999998,"clr":-1,"A":"left","R":[{"T":"2012%20IA%201040%20Schedule%20A","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":72.019828125,"y":3.4499999999999984,"w":170.48520000000002,"clr":-1,"A":"left","R":[{"T":"Iowa%20Itemized%20Deductions","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":19.797500000000003,"y":8.4375,"w":259.8797999999998,"clr":-1,"A":"left","R":[{"T":"Do%20not%20include%20health%20insurance%20premiums%20deducted%20on%20IA%201040%2C%20line%2018","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":63.48125000000001,"y":8.4375,"w":2.085,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.796250000000004,"y":9.225000000000003,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":36.09125,"y":9.225000000000003,"w":199.48099999999968,"clr":-1,"A":"left","R":[{"T":"...............................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.2775,"y":9.225000000000003,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750171875,"y":9.225000000000003,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687671875,"y":9.225000000000003,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.79625171874999,"y":10.012500000000003,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.590626718749988,"y":10.012500000000003,"w":309.14249999999987,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20federal%20form%201040*%2C%20line%2038%20as%20adjusted%20for%20disallowance%20of%20bonus","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.30187671874999,"y":10.800000000000002,"w":307.0725000000001,"clr":-1,"A":"left","R":[{"T":"depreciation%2Fsection%20179%2C%20from%20line%2014%20of%20the%20IA%201040%20by%207.5%25%20(.075).%20Enter%20result%20here...","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":69.29750171875,"y":10.800000000000002,"w":10.445,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.36000171875,"y":10.800000000000002,"w":5.7456,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750171874998,"y":10.800000000000002,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687671874998,"y":10.800000000000002,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.79625,"y":11.587499999999997,"w":6.4656,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.590625,"y":11.587499999999997,"w":192.168,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20If%20less%20than%20zero%2C%20enter%20zero.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":49.806875000000005,"y":11.587499999999997,"w":218.44160000000014,"clr":-1,"A":"left","R":[{"T":"........................................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":88.293125,"y":11.587499999999997,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":11.587499999999997,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":11.587499999999997,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":14.543667968750007,"y":14.212499999999997,"w":272.8063000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Include%20School%20District%20Surtax%20and%20EMS%20Surtax%20paid%20in%202012%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":59.02607812500001,"y":14.212499999999997,"w":16.287599999999998,"clr":-1,"A":"left","R":[{"T":"OR%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":61.02953906250001,"y":14.212499999999997,"w":64.03649999999999,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20.................4","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.08170312500002,"y":14.212499999999997,"w":1.785,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92732984375002,"y":14.212499999999997,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45670484375,"y":14.212499999999997,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.796079843750004,"y":15.787500000000005,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":28.872329843750002,"y":15.787500000000005,"w":241.47699999999944,"clr":-1,"A":"left","R":[{"T":"...................................................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.25670484375,"y":15.787500000000005,"w":6.9456,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92732984375,"y":15.787500000000005,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45670484375,"y":15.787500000000005,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.796079843749993,"y":16.575000000000003,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92732984374999,"y":16.575000000000003,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45670484374999,"y":16.575000000000003,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.796079843749983,"y":17.3625,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.590454843749985,"y":17.3625,"w":134.43579999999997,"clr":-1,"A":"left","R":[{"T":"Other%20taxes.%20List%20the%20type%20and%20amount.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":41.14420484374998,"y":17.3625,"w":170.07570000000018,"clr":-1,"A":"left","R":[{"T":".................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.25670484374997,"y":17.3625,"w":6.9456,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92732984374999,"y":17.3625,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45670484374997,"y":17.3625,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.79625,"y":18.149999999999995,"w":6.7056,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":53.065625,"y":18.149999999999995,"w":199.48099999999968,"clr":-1,"A":"left","R":[{"T":"...............................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":88.2725,"y":18.149999999999995,"w":6.9456,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":18.149999999999995,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":18.149999999999995,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":59.191250000000004,"y":19.2,"w":60.85939999999997,"clr":-1,"A":"left","R":[{"T":".............................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.49375000000002,"y":19.2,"w":11.348099999999999,"clr":-1,"A":"left","R":[{"T":"9a.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":19.2,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000001,"y":19.2,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":54.86000000000001,"y":19.9875,"w":88.2252,"clr":-1,"A":"left","R":[{"T":"..........................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53500000000001,"y":19.9875,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"9b.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":19.9875,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000001,"y":19.9875,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":20.775000000000002,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":43.68125000000001,"y":20.775000000000002,"w":153.2708,"clr":-1,"A":"left","R":[{"T":".........................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53500000000001,"y":20.775000000000002,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":20.775000000000002,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000001,"y":20.775000000000002,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":21.562500000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000012,"y":21.562500000000004,"w":139.83089999999999,"clr":-1,"A":"left","R":[{"T":"Qualified%20mortgage%20insurance%20premiums","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":42.23750000000001,"y":21.562500000000004,"w":161.66920000000005,"clr":-1,"A":"left","R":[{"T":".............................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53500000000001,"y":21.562500000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":21.562500000000004,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000001,"y":21.562500000000004,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":22.350000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":52.694375000000015,"y":22.350000000000005,"w":100.8288,"clr":-1,"A":"left","R":[{"T":"................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53500000000001,"y":22.350000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":22.350000000000005,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000003,"y":22.350000000000005,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000001,"y":23.1375,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000005,"y":23.1375,"w":116.01069999999997,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209a-12.%20Enter%20total%20here.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":38.25687500000001,"y":23.1375,"w":285.65439999999995,"clr":-1,"A":"left","R":[{"T":"........................................................................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":23.1375,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":23.1375,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":23.1375,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":24.1875,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000012,"y":24.1875,"w":110.4623,"clr":-1,"A":"left","R":[{"T":"Contributions%20by%20cash%20or%20check.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":37.18437500000002,"y":24.1875,"w":191.0727000000003,"clr":-1,"A":"left","R":[{"T":"...........................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53500000000001,"y":24.1875,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":24.1875,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000001,"y":24.1875,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":24.975000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":68.22500000000001,"y":24.975000000000005,"w":10.445,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53500000000001,"y":24.975000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":24.975000000000005,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000001,"y":24.975000000000005,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":25.762500000000003,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000012,"y":25.762500000000003,"w":268.0646,"clr":-1,"A":"left","R":[{"T":"Carryover%20from%20prior%20year%20as%20adjusted%20for%20disallowance%20of%20bonus%20depreciation","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":64.244375,"y":25.762500000000003,"w":33.62080000000002,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53500000000001,"y":25.762500000000003,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92750000000002,"y":25.762500000000003,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687500000001,"y":25.762500000000003,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000001,"y":26.55,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000005,"y":26.55,"w":144.7149,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2014%20through%2016.%20Enter%20total%20here.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":42.95937500000001,"y":26.55,"w":258.2876999999996,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":26.55,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":26.55,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":26.55,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000001,"y":27.600000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":49.45625,"y":27.600000000000005,"w":220.47899999999956,"clr":-1,"A":"left","R":[{"T":".........................................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":27.600000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":27.600000000000005,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":27.600000000000005,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":28.650000000000002,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000012,"y":28.650000000000002,"w":294.3889999999998,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20employee%20expenses.%20Attach%20federal%20form%202106%20or%202106-EZ%20if%20required.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":68.94687500000002,"y":28.650000000000002,"w":6.233700000000001,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53499828125001,"y":28.650000000000002,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92749828125001,"y":28.650000000000002,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687328125001,"y":28.650000000000002,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156873281250004,"y":29.437500000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":30.687498281250008,"y":29.437500000000004,"w":228.8781999999995,"clr":-1,"A":"left","R":[{"T":".............................................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53499828125003,"y":29.437500000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92749828125002,"y":29.437500000000004,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687328125003,"y":29.437500000000004,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156873281250013,"y":30.225000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693748281250016,"y":30.225000000000005,"w":135.87589999999997,"clr":-1,"A":"left","R":[{"T":"Other%20expenses.%20List%20type%20and%20amount.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":41.55687328125002,"y":30.225000000000005,"w":165.94000000000008,"clr":-1,"A":"left","R":[{"T":"________________________________________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53499828125003,"y":30.225000000000005,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92749828125002,"y":30.225000000000005,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687328125003,"y":30.225000000000005,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156873281250013,"y":31.012500000000006,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693748281250016,"y":31.012500000000006,"w":216.48010000000008,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20lines%2019%2C%2020%2C%20and%2021.%C2%A0Enter%20the%20total%20here.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":55.23124828125002,"y":31.012500000000006,"w":86.06309999999993,"clr":-1,"A":"left","R":[{"T":".........................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53499828125003,"y":31.012500000000006,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92749828125004,"y":31.012500000000006,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687328125003,"y":31.012500000000006,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156873281250023,"y":31.800000000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693748281250024,"y":31.800000000000004,"w":307.11030000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20of%20federal%20form%201040*%2C%20line%2038%20as%20adjusted%20for%20disallowance%20of%20bonus","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":70.53499828125003,"y":32.58750000000001,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":72.92749828125004,"y":32.58750000000001,"w":62.26200000000003,"clr":-1,"A":"left","R":[{"T":"_______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.45687328125003,"y":32.58750000000001,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000001,"y":33.375,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":62.45000000000001,"y":33.375,"w":144.87239999999997,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":33.375,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":33.375,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":33.375,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000001,"y":34.425000000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000005,"y":34.425000000000004,"w":290.52000000000015,"clr":-1,"A":"left","R":[{"T":"Other%20miscellaneous%20deductions%20not%20subject%20to%202%25%20AGI%20Limit.%20List%20type%20and%20amount.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":68.225,"y":34.425000000000004,"w":111.26820000000009,"clr":-1,"A":"left","R":[{"T":".....................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":34.425000000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":34.425000000000004,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":34.425000000000004,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":56.30375000000001,"y":35.475,"w":172.23279999999997,"clr":-1,"A":"left","R":[{"T":"..................................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.4475,"y":35.475,"w":11.888100000000001,"clr":-1,"A":"left","R":[{"T":"26.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":35.475,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.8225,"y":35.475,"w":2.435,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":100.25562843750001,"y":35.475,"w":4.77,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":101.06000171875002,"y":35.475,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":25.469375,"y":37.050000000000004,"w":319.4043999999999,"clr":-1,"A":"left","R":[{"T":"If%20using%20filing%20statuses%201%2C%202%2C%205%2C%20or%206%2C%20enter%20the%20amount%20on%20Step%207%2C%20line%2039%20of%20the%20IA%201040.","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":75.05174609375,"y":37.987500000000004,"w":43.9268,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20SPOUSE","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":94.83125000000001,"y":37.987500000000004,"w":16.8945,"clr":-1,"A":"left","R":[{"T":"YOU","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":38.775,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"27.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000012,"y":38.775,"w":227.72059999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Iowa%20net%20income%20of%20both%20spouses%20from%20IA%201040%2C%20line%2026.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":57.39687500000001,"y":38.775,"w":79.8228,"clr":-1,"A":"left","R":[{"T":"......................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":71.31875000000001,"y":38.775,"w":15.4558,"clr":-1,"A":"left","R":[{"T":"27b.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":74.35062500000001,"y":38.775,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":84.20937500000001,"y":38.775,"w":11.168099999999999,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":86.78750000000001,"y":38.775,"w":15.4558,"clr":-1,"A":"left","R":[{"T":"27a.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":38.775,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":38.775,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":39.5625,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":61.00625000000001,"y":39.5625,"w":153.2708,"clr":-1,"A":"left","R":[{"T":".........................................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":39.5625,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":39.5625,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562500000001,"y":39.5625,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000008,"y":40.35,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":68.57562500000002,"y":40.35,"w":109.22599999999989,"clr":-1,"A":"left","R":[{"T":"....................................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":40.35,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04625,"y":40.35,"w":58.057999999999986,"clr":-1,"A":"left","R":[{"T":"______________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":100.62687500000003,"y":40.35,"w":6.7175,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156875000000019,"y":41.137499999999996,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":73.62875000000001,"y":41.137499999999996,"w":50.42160000000002,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":83.07499828125003,"y":41.137499999999996,"w":22.2895,"clr":-1,"A":"left","R":[{"T":"(YOU)","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":87.55062328125003,"y":41.137499999999996,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04624828125003,"y":41.137499999999996,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562328125004,"y":41.137499999999996,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156873281250032,"y":41.925000000000004,"w":10.988100000000001,"clr":-1,"A":"left","R":[{"T":"31.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":65.68812328125004,"y":42.487500000000004,"w":84.024,"clr":-1,"A":"left","R":[{"T":"........................................","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":80.33187328125004,"y":42.487500000000004,"w":38.159800000000004,"clr":-1,"A":"left","R":[{"T":"(SPOUSE)","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":87.52999828125004,"y":42.487500000000004,"w":11.168099999999999,"clr":-1,"A":"left","R":[{"T":"31.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":90.04624828125003,"y":42.487500000000004,"w":53.983799999999995,"clr":-1,"A":"left","R":[{"T":"_____________","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":99.92562328125004,"y":42.487500000000004,"w":10.9881,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":5.834373281250021,"y":8.692499999999995,"w":50.61,"clr":-1,"A":"left","R":[{"T":"Medical%20and","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.918123281250022,"y":9.442499999999995,"w":27.0802,"clr":-1,"A":"left","R":[{"T":"Dental","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":7.566873281250021,"y":10.192499999999995,"w":40.8832,"clr":-1,"A":"left","R":[{"T":"Expenses","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":92.15000000000002,"y":47.655,"w":55.18259999999998,"clr":-1,"A":"left","R":[{"T":"41-004a%20(02%2F07%2F13)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":11.238125000000002,"y":2.392500000000003,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":11.093750687500002,"y":1.4775000000000014,"w":136.51319999999998,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":3.9575000000000005,"y":7.439999999999998,"w":31.197000000000003,"clr":-1,"A":"left","R":[{"T":"NOTE%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":9.319484375000002,"y":7.439999999999998,"w":459.12599999999986,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20federal%20bonus%20depreciation%2Fsection%20179%2C%20please%20see%20the%202012%20Expanded%20Instructions%20on%20our%20Web%20site.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.416875000000005,"y":43.62,"w":3.701,"clr":-1,"A":"left","R":[{"T":"*","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.056250000000006,"y":43.62,"w":221.91149999999985,"clr":-1,"A":"left","R":[{"T":"If%20you%20filed%20federal%201040A%2C%20see%20line%2021%3B%20if%20federal%201040EZ%2C%20see%20line%204.","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":10.784375000000008,"y":24.0675,"w":20.4955,"clr":-1,"A":"left","R":[{"T":"Gifts","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":12.84687500000001,"y":24.8175,"w":8.5288,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.031250000000007,"y":25.5675,"w":30.689,"clr":-1,"A":"left","R":[{"T":"Charity","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":4.266875000000001,"y":27.51,"w":54.9264,"clr":-1,"A":"left","R":[{"T":"Casualty%2FTheft","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#2b2e34","x":10.536875,"y":28.050000625000006,"w":18.572400000000002,"clr":-1,"A":"left","R":[{"T":"Loss","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#2b2e34","x":3.9987500000000002,"y":28.515,"w":59.2036,"clr":-1,"A":"left","R":[{"T":"Job%20Expenses","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.485625,"y":29.265,"w":15.5689,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.330625000000001,"y":30.015,"w":22.449499999999997,"clr":-1,"A":"left","R":[{"T":"Misc.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.916875000000001,"y":30.765,"w":48.096000000000004,"clr":-1,"A":"left","R":[{"T":"Deductions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.6075,"y":34.29,"w":48.2705,"clr":-1,"A":"left","R":[{"T":"Other%20Misc.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.731250171875001,"y":34.8525,"w":48.096000000000004,"clr":-1,"A":"left","R":[{"T":"Deductions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.3925,"y":35.3775,"w":21.4735,"clr":-1,"A":"left","R":[{"T":"Total","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":7.938125000000001,"y":36.1275,"w":35.611999999999995,"clr":-1,"A":"left","R":[{"T":"Itemized","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.813750000000001,"y":36.8775,"w":48.096000000000004,"clr":-1,"A":"left","R":[{"T":"Deductions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":7.195625000000001,"y":37.905,"w":39.5668,"clr":-1,"A":"left","R":[{"T":"Proration","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":12.537500000000001,"y":38.655,"w":8.5288,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.731250000000001,"y":39.405,"w":48.096000000000004,"clr":-1,"A":"left","R":[{"T":"Deductions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":7.814375,"y":40.155,"w":35.9592,"clr":-1,"A":"left","R":[{"T":"Between","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":7.731875000000001,"y":40.905,"w":36.444300000000005,"clr":-1,"A":"left","R":[{"T":"Spouses","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.60875,"y":12.524999999999997,"w":24.932000000000002,"clr":-1,"A":"left","R":[{"T":"Taxes","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.052500000000002,"y":13.274999999999997,"w":16.3843,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.681250000000002,"y":14.024999999999997,"w":18.6888,"clr":-1,"A":"left","R":[{"T":"Paid","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":3.6275,"y":5.3325000000000005,"w":172.42430000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20page%201%20of%20the%20IA%201040","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":79.55843750000001,"y":5.3325000000000005,"w":99.18079999999998,"clr":-1,"A":"left","R":[{"T":"%20%20Social%20Security%20Number","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.453750000000001,"y":19.095,"w":32.492000000000004,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.196875,"y":19.845,"w":16.3843,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.825625,"y":20.595,"w":18.6888,"clr":-1,"A":"left","R":[{"T":"Paid","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":63.666875,"y":14.685000000000002,"w":9.969999999999999,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,33,0,0]}]},{"oc":"#2b2e34","x":15.796250000000004,"y":12.540000000000001,"w":145.31329999999997,"clr":-1,"A":"left","R":[{"T":"4.%20%20State%20and%20Local%20(Check%20only%20one%20box)%3A","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.590625000000003,"y":9.225000000000003,"w":101.99249999999999,"clr":-1,"A":"left","R":[{"T":"Medical%20and%20dental%20expenses","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.590451921875005,"y":15.787500000000005,"w":61.20900000000002,"clr":-1,"A":"left","R":[{"T":"Real%20estate%20taxes","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.590451921875005,"y":16.575000000000003,"w":312.55800000000033,"clr":-1,"A":"left","R":[{"T":"Personal%20property%20taxes%2C%20including%20annual%20vehicle%20registration........................................%206.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.590627578125,"y":18.150000000000002,"w":201.3865,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20on%20lines%204%2C%205%2C%206%2C%20and%207.%20%20Enter%20the%20total%20here.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.486877578125005,"y":19.200000000000003,"w":243.6172000000002,"clr":-1,"A":"left","R":[{"T":"9a.%20Home%20mortgage%20interest%20and%20points%20reported%20on%20federal%20form%201098","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.486877578125005,"y":19.9875,"w":218.19749999999993,"clr":-1,"A":"left","R":[{"T":"9b.%20Home%20mortgage%20interest%20not%20reported%20on%20federal%20form%201098","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693752578125004,"y":20.775000000000006,"w":142.15100000000004,"clr":-1,"A":"left","R":[{"T":"Points%20not%20reported%20on%20federal%20form%201098","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693752578125004,"y":22.350000000000005,"w":198.34659999999994,"clr":-1,"A":"left","R":[{"T":"Investment%20interest.%20Attach%20federal%20form%204952%20if%20required.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693742093750004,"y":24.975000000000005,"w":291.02039999999994,"clr":-1,"A":"left","R":[{"T":"Other%20than%20by%20cash%20or%20check.%20You%20must%20attach%20federal%20form%208283%20if%20more%20than%20%24500.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000005,"y":27.600000000000005,"w":181.38190000000006,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20theft%20loss(es).%20Attach%20federal%20form%204684.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693742093750004,"y":29.437500000000004,"w":72.4945,"clr":-1,"A":"left","R":[{"T":"Tax%20preparation%20fees","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.899992093750004,"y":32.5875,"w":233.7747999999998,"clr":-1,"A":"left","R":[{"T":"depreciation%2Fsection%20179%2C%20from%20line%2014%20of%20the%20IA%201040*%20by%202%25%20(.02).%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":58.324992093750005,"y":32.5875,"w":66.24059999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20result%20here...","S":-1,"TS":[2,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693742093750004,"y":33.375,"w":256.37970000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2023%20from%20line%2022.%20Enter%20the%20total.%20If%20less%20than%20zero%2C%20enter%20zero.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.156867093750002,"y":35.475,"w":65.87250000000002,"clr":-1,"A":"left","R":[{"T":"26.%20%20Add%20lines%203%2C%208%2C","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":26.86370303125,"y":35.475,"w":32.962500000000006,"clr":-1,"A":"left","R":[{"T":"13%2C17%2C18%2C","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":33.00345615625001,"y":35.475,"w":26.332500000000003,"clr":-1,"A":"left","R":[{"T":"24%2C%20and","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":38.03380771875,"y":35.475,"w":26.332500000000003,"clr":-1,"A":"left","R":[{"T":"25%2C%20and","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":43.043534281250004,"y":35.475,"w":18.03,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":46.661932718749995,"y":35.475,"w":46.40250000000001,"clr":-1,"A":"left","R":[{"T":"the%20total%20here","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":15.238859375,"y":37.987500000000004,"w":290.54590000000024,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20Complete%20lines%2027%20through%2031%20ONLY%20if%20you%20are%20using%20filing%20status%203%20or%204.%20%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":17.693750000000005,"y":39.5625,"w":246.77609999999976,"clr":-1,"A":"left","R":[{"T":"Total%20Iowa%20net%20income%2C%20add%20columns%2027a%20and%2027b.%20Enter%20the%20total%20here.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693750000000005,"y":40.35,"w":291.98679999999973,"clr":-1,"A":"left","R":[{"T":"Divide%20the%20amount%20on%20line%2027a%20by%20the%20amount%20on%20line%2028.%20Enter%20the%20percentage%20here.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.693744671875002,"y":41.137499999999996,"w":321.54,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2026%20by%20the%20percentage%20on%20line%2029.%20Enter%20here%20and%20on%20IA%201040%2C%20line%2039%2C%20column%20A%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.69373934375,"y":41.925000000000004,"w":320.4254999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2030%20from%20line%2026.%20Enter%20here%20and%20on%20IA%201040%2C%20line%2039%2C%20column%20B.%20If%20you%20are%20using","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":18.064991062500003,"y":42.487500000000004,"w":271.61299999999994,"clr":-1,"A":"left","R":[{"T":"filing%20status%204%2C%20enter%20this%20amount%20on%20line%2039%2C%20column%20A%20of%20your%20spouse%E2%80%99s%20return.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":17.7065285625,"y":13.424999999999997,"w":4.3643,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":21.325012937500002,"y":13.424999999999997,"w":239.5938000000001,"clr":-1,"A":"left","R":[{"T":"Other%20state%20and%20local%20income%20taxes.%20Do%20not%20include%20Iowa%20Income%20Tax","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":18.082298875000003,"y":15,"w":4.3633,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#2b2e34","x":21.107711375,"y":15,"w":226.63870000000009,"clr":-1,"A":"left","R":[{"T":"General%20sales%20taxes%20only%20from%20line%205b%20of%20the%20Federal%20Schedule%20A.","S":-1,"TS":[0,10.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Names","EN":0},"TI":219,"AM":0,"x":3.9619593750000006,"y":6.339020833333336,"w":72.76699375000001,"h":0.9546041666666648},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1","EN":0},"TI":220,"AM":0,"x":77.58025,"y":6.339833333333331,"w":23.788359374999995,"h":0.9537916666666698},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_1","EN":0},"TI":221,"AM":0,"x":73.21875,"y":9.065145833333332,"w":10.661578125000005,"h":0.8854166666666666},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_2","EN":0},"TI":222,"AM":0,"x":73.21875,"y":10.670145833333331,"w":10.661578125000005,"h":0.8854166666666666},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_4","EN":0},"TI":225,"AM":0,"x":73.174234375,"y":14.096645833333332,"w":10.661578125000005,"h":0.8854166666666666},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_5","EN":0},"TI":226,"AM":0,"x":73.174234375,"y":15.658083333333337,"w":10.661578125000005,"h":0.8854166666666666},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_6","EN":0},"TI":227,"AM":0,"x":73.174234375,"y":16.660874999999994,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":228,"AM":0,"x":42.225046875000004,"y":17.3691875,"w":28.823953125,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_7","EN":0},"TI":229,"AM":0,"x":73.174234375,"y":17.381812500000006,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_9a","EN":0},"TI":230,"AM":0,"x":73.21754687500001,"y":19.36475,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_9b","EN":0},"TI":231,"AM":0,"x":73.21754687500001,"y":20.120437499999998,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_10","EN":0},"TI":232,"AM":0,"x":73.21754687500001,"y":20.8803125,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_11","EN":0},"TI":233,"AM":0,"x":73.15464062500001,"y":21.698375,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12","EN":0},"TI":234,"AM":0,"x":73.21754687500001,"y":22.464375,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_14","EN":0},"TI":235,"AM":0,"x":73.37464062500001,"y":24.378875000000004,"w":10.661578124999991,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_15","EN":0},"TI":236,"AM":0,"x":73.37464062500001,"y":25.0450625,"w":10.661578124999991,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_16","EN":0},"TI":237,"AM":0,"x":73.37464062500001,"y":25.8340625,"w":10.661578124999991,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_18","EN":0},"TI":238,"AM":0,"x":90.16940625000001,"y":27.764875,"w":9.297406250000009,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_19","EN":0},"TI":239,"AM":0,"x":73.219953125,"y":28.8150625,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_20","EN":0},"TI":240,"AM":0,"x":73.219953125,"y":29.5295625,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20A","EN":0},"TI":241,"AM":0,"x":42.272828125000004,"y":30.296562500000004,"w":27.990015625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_21","EN":0},"TI":242,"AM":0,"x":73.219953125,"y":30.322125,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_22","EN":0},"TI":243,"AM":0,"x":73.219953125,"y":31.0901875,"w":10.661578125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_23","EN":0},"TI":244,"AM":0,"x":73.331328125,"y":32.45695833333333,"w":10.661578125000005,"h":0.8854166666666666},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L24A","EN":0},"TI":245,"AM":0,"x":68.74553125000001,"y":34.548562499999996,"w":18.941312500000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_25","EN":0},"TI":246,"AM":0,"x":90.18659375,"y":34.614625,"w":9.297406250000009,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_26","EN":0},"TI":247,"AM":0,"x":90.18659375,"y":35.629062499999996,"w":9.297406250000009,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_27b","EN":0},"TI":248,"AM":0,"x":74.61214062500001,"y":38.7854375,"w":9.302734375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_27a","EN":0},"TI":249,"AM":0,"x":90.32512500000001,"y":38.744125000000004,"w":9.297406249999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_28","EN":0},"TI":250,"AM":0,"x":90.32512500000001,"y":39.6613125,"w":9.297406249999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_29","EN":0},"TI":251,"AM":0,"x":90.32512500000001,"y":40.46475,"w":9.297406249999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_30","EN":0},"TI":252,"AM":0,"x":90.32512500000001,"y":41.2443125,"w":9.297406249999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_31","EN":0},"TI":253,"AM":0,"x":90.32512500000001,"y":42.438625,"w":9.297406249999996,"h":0.8333333333333334}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A1_other","EN":0},"TI":223,"AM":0,"x":19.338,"y":13.704999999999998,"w":1.2725624999999994,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"A1_sales","EN":0},"TI":224,"AM":0,"x":19.502828125,"y":15.216,"w":1.1230312499999986,"h":0.8333333333333334}]}]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_1040schb.content.txt b/test/data/ia/form/ia_scr_1040schb.content.txt new file mode 100644 index 00000000..7da60775 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040schb.content.txt @@ -0,0 +1,181 @@ +2012 IA 1040 Schedule B +Interest and Dividend Income +www.iowa.gov/tax +Iowa Department of Revenue +PART I: INTEREST INCOME +Name(s) as shown on page 1 of the IA 1040 + Social Security Number +41-004b (09/17/12) +You must complete this part if you received more than $1,500 in interest in 2012. Interest income which should be reported includes +earnings from savings and loan associations, mutual savings banks, cooperative banks, credit unions, and bank deposits; state and +municipal bonds (see instructions for IA 1040, line 2, Taxable Interest Income), and interest from tax refunds. Report both exempt and +taxable interest. +Total Taxable Interest: +If + filing status 1, 2, 5, or 6 +– report total taxable interest on line 2, column A on the IA 1040; none should be +reported in column B. If + filing status 3 +– the taxpayer will enter on line 2, column A on the IA 1040, the total taxable interest from +accounts owned by the taxpayer, plus 50% of any amount from a joint account. The spouse will enter in Column B on the IA 1040, the +total taxable interest from accounts owned by the spouse, plus 50% of any amount from a joint account. If + filing status 4 + – the amount +entered on line 2, column A on the IA 1040 will be the total taxable interest from accounts owned by the taxpayer, plus 50% of any +amount from a joint account; nothing is reported in column B. +Account Ownership: +For each payer, indicate the type of account ownership. If the interest was earned by you, check “Taxpayer.” +For interest earned by your spouse, check “Spouse.” If the interest was earned jointly, check “Joint.” Check only one for each payer. +PART II: DIVIDEND INCOME +You must complete this part if you received more than $1,500 in gross dividends in 2012. Report both exempt and taxable dividends. +Total Taxable Dividends: +If + filing status 1, 2, 5, or 6 +– report total taxable dividends on line 3, column A on the IA 1040; none should +be reported in column B. If + filing status 3 +– the taxpayer will enter on line 3, column A on the IA 1040, the total taxable dividends from +accounts owned by the taxpayer, plus 50% of any amount from a joint account. The spouse will enter in Column B on the IA 1040, the +total taxable dividends from accounts owned by the spouse, plus 50% of any amount from a joint account. If + filing status 4 + – the +amount entered on line 3, column A on the IA 1040 will be the total taxable dividends from accounts owned by the taxpayer, plus 50% +of any amount from a joint account; nothing is reported in column B. +Account Ownership: +For each payer, indicate the type of account ownership. If the dividend was earned by you, check “Taxpayer.” +For dividends earned by your spouse, check “Spouse.” If the dividend was earned jointly, check “Joint.” Check only one for each +payer. +NOTE: +You must report all taxable interest and dividends on IA 1040, even if you are not required to complete Schedule B. +Check one for each payer +(list names of all payers) + TOTALS +(must equal the +total of Exempt & +Taxable Interest) +$ + $ +$ + Taxpayer Spouse Joint +Iowa Tax +12345678901234567890123456789012 +12345678901234567890123456789012 +12345678901234567890123456789012 +12345678901234567890123456789012 +12345678901234567890123456789012 +12345678901234567890123456789012 + Name of Payer +Total Dividends +(list names of all payers) + TOTALS +(must equal the +total of Exempt & +Taxable Dividends) +$ + $ +$ + Taxpayer Spouse Joint +Iowa Tax +12345678901234567890123456789012 +12345678901234567890123456789012 +12345678901234567890123456789012 +12345678901234567890123456789012 +12345678901234567890123456789012 + Account Ownership +Check one for each payer + + + + $ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +$ + +Exempt from + +Dividends + +Dividends + +Taxable + Name of Payer + +Total Interest + +Interest + +Taxable + +Exempt from + +Interest + +Account Ownership +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_1040schb.fields.json b/test/data/ia/form/ia_scr_1040schb.fields.json new file mode 100644 index 00000000..6eb4ee5b --- /dev/null +++ b/test/data/ia/form/ia_scr_1040schb.fields.json @@ -0,0 +1 @@ +[{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"j","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"t3","type":"box","calc":false,"value":""},{"id":"s3","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"Yes","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"TP","type":"box","calc":false,"value":""},{"id":"SP","type":"box","calc":false,"value":""},{"id":"J","type":"box","calc":false,"value":""},{"id":"Names","type":"alpha","calc":false,"value":""},{"id":"SSN1","type":"ssn","calc":false,"value":""},{"id":"Payer1","type":"alpha","calc":false,"value":""},{"id":"Amount1","type":"number","calc":false,"value":""},{"id":"Amount1i","type":"number","calc":false,"value":""},{"id":"Amount1ti","type":"number","calc":false,"value":""},{"id":"Payer2","type":"alpha","calc":false,"value":""},{"id":"Amount2","type":"number","calc":false,"value":""},{"id":"Amount2i","type":"number","calc":false,"value":""},{"id":"Amount2ti","type":"number","calc":false,"value":""},{"id":"Payer3","type":"alpha","calc":false,"value":""},{"id":"Amount3","type":"number","calc":false,"value":""},{"id":"Amount3i","type":"number","calc":false,"value":""},{"id":"Amount3ti","type":"number","calc":false,"value":""},{"id":"Payer4","type":"alpha","calc":false,"value":""},{"id":"Amount4","type":"number","calc":false,"value":""},{"id":"Amount4i","type":"number","calc":false,"value":""},{"id":"Amount4ti","type":"number","calc":false,"value":""},{"id":"Payer5","type":"alpha","calc":false,"value":""},{"id":"Amount5","type":"number","calc":false,"value":""},{"id":"Amount5s","type":"number","calc":false,"value":""},{"id":"Amount5ti","type":"number","calc":false,"value":""},{"id":"Payer6","type":"alpha","calc":false,"value":""},{"id":"Amount6","type":"number","calc":false,"value":""},{"id":"Amount6i","type":"number","calc":false,"value":""},{"id":"Amount6ti","type":"number","calc":false,"value":""},{"id":"AmountSum","type":"number","calc":false,"value":""},{"id":"AmountSum2","type":"number","calc":false,"value":""},{"id":"AmountSum3","type":"number","calc":false,"value":""},{"id":"Payer15","type":"alpha","calc":false,"value":""},{"id":"Amount15","type":"number","calc":false,"value":""},{"id":"Amount15d","type":"number","calc":false,"value":""},{"id":"Amount15td","type":"number","calc":false,"value":""},{"id":"Payer16","type":"alpha","calc":false,"value":""},{"id":"Amount16","type":"number","calc":false,"value":""},{"id":"Amount16d","type":"number","calc":false,"value":""},{"id":"Amount16td","type":"number","calc":false,"value":""},{"id":"Payer17","type":"alpha","calc":false,"value":""},{"id":"Amount17","type":"number","calc":false,"value":""},{"id":"Amount17d","type":"number","calc":false,"value":""},{"id":"Amount17td","type":"number","calc":false,"value":""},{"id":"Payer18","type":"alpha","calc":false,"value":""},{"id":"Amount18","type":"number","calc":false,"value":""},{"id":"Amount18d","type":"number","calc":false,"value":""},{"id":"Amount18td","type":"number","calc":false,"value":""},{"id":"Payer19","type":"alpha","calc":false,"value":""},{"id":"Amount19","type":"number","calc":false,"value":""},{"id":"Amount19d","type":"number","calc":false,"value":""},{"id":"Amount19td","type":"number","calc":false,"value":""},{"id":"Payer20","type":"alpha","calc":false,"value":""},{"id":"Amount20","type":"number","calc":false,"value":""},{"id":"Amount20d","type":"number","calc":false,"value":""},{"id":"Amount20td","type":"number","calc":false,"value":""},{"id":"AmountSum4","type":"number","calc":false,"value":""},{"id":"AmountSum5","type":"number","calc":false,"value":""},{"id":"AmountSum6","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_1040schb.json b/test/data/ia/form/ia_scr_1040schb.json new file mode 100755 index 00000000..8035b7a6 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040schb.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"Microsoft Word - Document6","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":27.451875,"y":2.8312499999999923,"w":3.06,"l":73.34250000000003},{"oc":"#2b2e34","x":11.096284375,"y":3.0750000000000077,"w":0.7200000000000001,"l":89.69812500000002},{"oc":"#2b2e34","x":5.3625,"y":4.297499999999995,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":6.127499999999998,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.4863015625000005,"y":20.7525,"w":1.4400000000000002,"l":94.33875000000002},{"oc":"#2b2e34","x":5.3625,"y":18.4725,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":21.524999999999995,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":22.334999999999997,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":23.1375,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":23.9475,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":24.757500000000004,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":25.5675,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":26.5275,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":72.08093750000002,"y":26.469999999999995,"w":1.4400000000000002,"l":9.889721875},{"oc":"#2b2e34","x":72.08093750000002,"y":25.623737499999994,"w":1.4400000000000002,"l":9.889721875},{"oc":"#2b2e34","x":5.4863015625000005,"y":38.527499999999996,"w":1.4400000000000002,"l":94.33875000000002},{"oc":"#2b2e34","x":5.3625,"y":36.2475,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":39.300000000000004,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":40.11,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":40.919999999999995,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":41.73,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":42.54,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":43.35,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":5.3625,"y":44.3099875,"w":1.4400000000000002,"l":94.46250000000002},{"oc":"#2b2e34","x":72.17546875000002,"y":44.25124374999999,"w":1.4400000000000002,"l":9.795190625000007},{"oc":"#2b2e34","x":72.17546875000002,"y":43.40498125,"w":1.4400000000000002,"l":9.795190625000007}],"VLines":[{"oc":"#2b2e34","x":77.09625000000001,"y":4.912500000000004,"w":1.4400000000000002,"l":1.1625000000000003},{"oc":"#2b2e34","x":99.78375,"y":4.912500000000004,"w":1.4400000000000002,"l":1.1625000000000003},{"oc":"#2b2e34","x":82.12875000000001,"y":18.5025,"w":1.4400000000000002,"l":8.0625},{"oc":"#2b2e34","x":49.80937500000001,"y":18.5025,"w":1.4400000000000002,"l":7.995},{"oc":"#2b2e34","x":61.1325,"y":18.5025,"w":1.4400000000000002,"l":8.0625},{"oc":"#2b2e34","x":71.98125000000002,"y":18.4575,"w":1.4400000000000002,"l":8.092500000000001},{"oc":"#2b2e34","x":5.4450171875,"y":18.435,"w":1.4400000000000002,"l":8.13},{"oc":"#2b2e34","x":88.213125,"y":19.845,"w":1.4400000000000002,"l":6.705000000000003},{"oc":"#2b2e34","x":94.13250000000001,"y":19.845,"w":1.4400000000000002,"l":6.705000000000003},{"oc":"#2b2e34","x":99.9075,"y":18.4725,"w":1.4400000000000002,"l":8.092500000000001},{"oc":"#2b2e34","x":81.97065937500003,"y":25.623737499999994,"w":1.4400000000000002,"l":0.8462624999999994},{"oc":"#2b2e34","x":72.08093750000002,"y":25.623737499999994,"w":1.4400000000000002,"l":0.8462624999999994},{"oc":"#2b2e34","x":82.12875000000001,"y":36.277499999999996,"w":1.4400000000000002,"l":8.062500000000005},{"oc":"#2b2e34","x":49.80937500000001,"y":36.277499999999996,"w":1.4400000000000002,"l":8.002500000000003},{"oc":"#2b2e34","x":61.1325,"y":36.277499999999996,"w":1.4400000000000002,"l":8.062500000000005},{"oc":"#2b2e34","x":71.98125000000002,"y":36.24,"w":1.4400000000000002,"l":8.092500000000001},{"oc":"#2b2e34","x":5.4450171875,"y":36.2175,"w":1.4400000000000002,"l":8.122500000000002},{"oc":"#2b2e34","x":88.213125,"y":37.6275,"w":1.4400000000000002,"l":6.705000000000003},{"oc":"#2b2e34","x":94.13250000000001,"y":37.6275,"w":1.4400000000000002,"l":6.705000000000003},{"oc":"#2b2e34","x":99.9075,"y":36.2475,"w":1.4400000000000002,"l":8.092500000000001},{"oc":"#2b2e34","x":81.97065937500003,"y":43.40498125,"w":1.4400000000000002,"l":0.8462624999999946},{"oc":"#2b2e34","x":72.17546875000002,"y":43.40498125,"w":1.4400000000000002,"l":0.8462624999999946}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":82.24218750000001,"y":25.612524999999994,"w":17.582812500000006,"h":0.8874749999999997,"clr":1},{"x":82.24218750000001,"y":43.393724999999996,"w":17.582812500000006,"h":0.8875250000000013,"clr":1}],"Texts":[{"oc":"#2b2e34","x":61.74875000000001,"y":1.8974999999999986,"w":225.10410000000005,"clr":-1,"A":"left","R":[{"T":"2012%20IA%201040%20Schedule%20B","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":67.09062500000002,"y":3.119999999999995,"w":194.48520000000002,"clr":-1,"A":"left","R":[{"T":"Interest%20and%20Dividend%20Income","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":10.64,"y":2.107499999999997,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":10.516249828125,"y":1.192500000000005,"w":135.99320000000003,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.1125,"y":7.409999999999997,"w":169.8698,"clr":-1,"A":"left","R":[{"T":"PART%20I%3A%20INTEREST%20INCOME","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":5.1125,"y":4.057499999999995,"w":173.7773,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20page%201%20of%20the%20IA%201040","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":80.936875,"y":4.057499999999995,"w":99.8792,"clr":-1,"A":"left","R":[{"T":"%20%20Social%20Security%20Number","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":87.839375,"y":47.385,"w":67.9824,"clr":-1,"A":"left","R":[{"T":"41-004b%20(09%2F17%2F12)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":8.294999999999996,"w":532.8897999999999,"clr":-1,"A":"left","R":[{"T":"You%20must%20complete%20this%20part%20if%20you%20received%20more%20than%20%241%2C500%20in%20interest%20in%202012.%20Interest%20income%20which%20should%20be%20reported%20includes","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":9.074999999999998,"w":531.8118000000006,"clr":-1,"A":"left","R":[{"T":"earnings%20from%20savings%20and%20loan%20associations%2C%20mutual%20savings%20banks%2C%20cooperative%20banks%2C%20credit%20unions%2C%20and%20bank%20deposits%3B%20state%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":9.847499999999997,"w":541.1806000000009,"clr":-1,"A":"left","R":[{"T":"municipal%20bonds%20(see%20instructions%20for%20IA%201040%2C%20line%202%2C%20Taxable%20Interest%20Income)%2C%20and%20interest%20from%20tax%20refunds.%20Report%20both%20exempt%20and","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":10.619999999999996,"w":64.6802,"clr":-1,"A":"left","R":[{"T":"taxable%20interest.","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":11.399999999999997,"w":99.68160000000003,"clr":-1,"A":"left","R":[{"T":"Total%20Taxable%20Interest%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":22.437499999999993,"y":11.399999999999997,"w":5.0762,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":23.50798906249999,"y":11.399999999999997,"w":106.52179999999998,"clr":-1,"A":"left","R":[{"T":"%20filing%20status%201%2C%202%2C%205%2C%20or%206%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":41.80437499999999,"y":11.399999999999997,"w":326.37879999999984,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20report%20total%20taxable%20interest%20on%20line%202%2C%20column%20A%20on%20the%20IA%201040%3B%20none%20should%20be","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":12.1725,"w":94.73400000000002,"clr":-1,"A":"left","R":[{"T":"reported%20in%20column%20B.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":21.805859374999997,"y":12.1725,"w":64.1264,"clr":-1,"A":"left","R":[{"T":"%20filing%20status%203%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":32.729375,"y":12.1725,"w":362.62890000000027,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20the%20taxpayer%20will%20enter%20on%20line%202%2C%20column%20A%20on%20the%20IA%201040%2C%20the%20total%20taxable%20interest%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":12.945000000000002,"w":540.8869999999995,"clr":-1,"A":"left","R":[{"T":"accounts%20owned%20by%20the%20taxpayer%2C%20plus%2050%25%20of%20any%20amount%20from%20a%20joint%20account.%20The%20spouse%20will%20enter%20in%20Column%20B%20on%20the%20IA%201040%2C%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":13.725000000000003,"w":427.07549999999935,"clr":-1,"A":"left","R":[{"T":"total%20taxable%20interest%20from%20accounts%20owned%20by%20the%20spouse%2C%20plus%2050%25%20of%20any%20amount%20from%20a%20joint%20account.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":79.30578125000001,"y":13.725000000000003,"w":61.6632,"clr":-1,"A":"left","R":[{"T":"%20filing%20status%204","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":89.98953125,"y":13.725000000000003,"w":55.89690000000001,"clr":-1,"A":"left","R":[{"T":"%20%E2%80%93%20the%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":14.497500000000002,"w":526.3879999999994,"clr":-1,"A":"left","R":[{"T":"entered%20on%20line%202%2C%20column%20A%20on%20the%20IA%201040%20will%20be%20the%20total%20taxable%20interest%20from%20accounts%20owned%20by%20the%20taxpayer%2C%20plus%2050%25%20of%20any","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":15.27,"w":246.82810000000018,"clr":-1,"A":"left","R":[{"T":"amount%20from%20a%20joint%20account%3B%20nothing%20is%20reported%20in%20column%20B.","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":16.05,"w":91.75750000000001,"clr":-1,"A":"left","R":[{"T":"Account%20Ownership%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":21.076249999999995,"y":16.05,"w":438.31799999999964,"clr":-1,"A":"left","R":[{"T":"For%20each%20payer%2C%20indicate%20the%20type%20of%20account%20ownership.%20If%20the%20interest%20was%20earned%20by%20you%2C%20check%20%E2%80%9CTaxpayer.%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":16.822500000000005,"w":533.5153999999998,"clr":-1,"A":"left","R":[{"T":"For%20interest%20earned%20by%20your%20spouse%2C%20check%20%E2%80%9CSpouse.%E2%80%9D%20If%20the%20interest%20was%20earned%20jointly%2C%20check%20%E2%80%9CJoint.%E2%80%9D%20Check%20only%20one%20for%20each%20payer.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.112500171874993,"y":27.31500000000001,"w":171.61440000000002,"clr":-1,"A":"left","R":[{"T":"PART%20II%3A%20DIVIDEND%20INCOME","S":-1,"TS":[0,16,1,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":28.140000000000004,"w":536.8729999999996,"clr":-1,"A":"left","R":[{"T":"You%20must%20complete%20this%20part%20if%20you%20received%20more%20than%20%241%2C500%20in%20gross%20dividends%20in%202012.%20Report%20both%20exempt%20and%20taxable%20dividends.","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":28.912500000000005,"w":110.24100000000004,"clr":-1,"A":"left","R":[{"T":"Total%20Taxable%20Dividends%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":24.252499999999994,"y":28.912500000000005,"w":5.0762,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":25.332734374999994,"y":28.912500000000005,"w":106.5943,"clr":-1,"A":"left","R":[{"T":"%20filing%20status%201%2C%202%2C%205%2C%20or%206%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":43.64,"y":28.912500000000005,"w":322.2509999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20report%20total%20taxable%20dividends%20on%20line%203%2C%20column%20A%20on%20the%20IA%201040%3B%20none%20should","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":29.692500000000006,"w":107.42309999999999,"clr":-1,"A":"left","R":[{"T":"be%20reported%20in%20column%20B.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":24.012734374999997,"y":29.692500000000006,"w":64.1264,"clr":-1,"A":"left","R":[{"T":"%20filing%20status%203%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":34.936249999999994,"y":29.692500000000006,"w":371.2407999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20the%20taxpayer%20will%20enter%20on%20line%203%2C%20column%20A%20on%20the%20IA%201040%2C%20the%20total%20taxable%20dividends%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":30.465000000000007,"w":540.8869999999995,"clr":-1,"A":"left","R":[{"T":"accounts%20owned%20by%20the%20taxpayer%2C%20plus%2050%25%20of%20any%20amount%20from%20a%20joint%20account.%20The%20spouse%20will%20enter%20in%20Column%20B%20on%20the%20IA%201040%2C%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":31.237500000000008,"w":435.6929999999997,"clr":-1,"A":"left","R":[{"T":"total%20taxable%20dividends%20from%20accounts%20owned%20by%20the%20spouse%2C%20plus%2050%25%20of%20any%20amount%20from%20a%20joint%20account.%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":80.81140625,"y":31.237500000000008,"w":61.6632,"clr":-1,"A":"left","R":[{"T":"%20filing%20status%204","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":91.53382812500001,"y":31.237500000000008,"w":22.869000000000003,"clr":-1,"A":"left","R":[{"T":"%20%E2%80%93%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":32.017500000000005,"w":540.4096999999998,"clr":-1,"A":"left","R":[{"T":"amount%20entered%20on%20line%203%2C%20column%20A%20on%20the%20IA%201040%20will%20be%20the%20total%20taxable%20dividends%20from%20accounts%20owned%20by%20the%20taxpayer%2C%20plus%2050%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":32.79000000000001,"w":274.3433999999999,"clr":-1,"A":"left","R":[{"T":"of%20any%20amount%20from%20a%20joint%20account%3B%20nothing%20is%20reported%20in%20column%20B.","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":33.56250000000001,"w":91.75750000000001,"clr":-1,"A":"left","R":[{"T":"Account%20Ownership%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#05050a","x":21.076249999999995,"y":33.56250000000001,"w":442.2473999999999,"clr":-1,"A":"left","R":[{"T":"For%20each%20payer%2C%20indicate%20the%20type%20of%20account%20ownership.%20If%20the%20dividend%20was%20earned%20by%20you%2C%20check%20%E2%80%9CTaxpayer.%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":34.34250000000001,"w":518.1190000000004,"clr":-1,"A":"left","R":[{"T":"For%20dividends%20earned%20by%20your%20spouse%2C%20check%20%E2%80%9CSpouse.%E2%80%9D%20If%20the%20dividend%20was%20earned%20jointly%2C%20check%20%E2%80%9CJoint.%E2%80%9D%20Check%20only%20one%20for%20each","S":3,"TS":[0,12,0,0]}]},{"oc":"#05050a","x":5.236249999999993,"y":35.11500000000001,"w":25.6704,"clr":-1,"A":"left","R":[{"T":"payer.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.112500171874993,"y":6.022500000000008,"w":32.025000000000006,"clr":-1,"A":"left","R":[{"T":"NOTE%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":10.640000171874993,"y":6.022500000000008,"w":486.4900000000005,"clr":-1,"A":"left","R":[{"T":"You%20must%20report%20all%20taxable%20interest%20and%20dividends%20on%20IA%201040%2C%20even%20if%20you%20are%20not%20required%20to%20complete%20Schedule%20B.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.425625171875,"y":18.825000000000006,"w":90.89220000000002,"clr":-1,"A":"left","R":[{"T":"Check%20one%20for%20each%20payer","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":5.731250171874992,"y":19.124999375000005,"w":179.93679999999986,"clr":-1,"A":"left","R":[{"T":"(list%20names%20of%20all%20payers)%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,0,0]}]},{"oc":"#2b2e34","x":5.073828125,"y":25.537500000000005,"w":41.51520000000001,"clr":-1,"A":"left","R":[{"T":"%20%20TOTALS","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":51.498125,"y":18.915000000000003,"w":40.675,"clr":-1,"A":"left","R":[{"T":"(must%20equal%20the","S":-1,"TS":[0,8.5,1,0]}]},{"oc":"#2b2e34","x":51.08562671875,"y":19.327500625000003,"w":45.308099999999996,"clr":-1,"A":"left","R":[{"T":"total%20of%20Exempt%20%26","S":-1,"TS":[0,8.5,1,0]}]},{"oc":"#2b2e34","x":51.250625171875,"y":19.740001250000002,"w":43.59630000000001,"clr":-1,"A":"left","R":[{"T":"Taxable%20Interest)","S":-1,"TS":[0,8.5,1,0]}]},{"oc":"#2b2e34","x":61.748750171875,"y":25.545001250000002,"w":5.054,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.193593921875,"y":25.545001250000002,"w":7.514200000000001,"clr":-1,"A":"left","R":[{"T":"%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.28812517187501,"y":25.545001250000002,"w":5.054,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.85296875,"y":19.7925,"w":92.39640000000001,"clr":-1,"A":"left","R":[{"T":"%20%20Taxpayer%20%20%20%20%20Spouse%20%20%20%20%20%20%20Joint","S":52,"TS":[0,9,1,0]}]},{"oc":"#2b2e34","x":62.8625,"y":19.814999062500004,"w":37.2656,"clr":-1,"A":"left","R":[{"T":"Iowa%20Tax","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.9681625,"y":36.2475,"w":248.6928000000005,"clr":-1,"A":"left","R":[{"T":"%20Name%20of%20Payer%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%20%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":49.78625,"y":36.2475,"w":62.24849999999999,"clr":-1,"A":"left","R":[{"T":"Total%20Dividends","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#2b2e34","x":5.834375000000001,"y":36.9975,"w":179.88549999999987,"clr":-1,"A":"left","R":[{"T":"(list%20names%20of%20all%20payers)%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,0,0]}]},{"oc":"#2b2e34","x":5.073828125,"y":43.3125,"w":41.51520000000001,"clr":-1,"A":"left","R":[{"T":"%20%20TOTALS","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":51.498125,"y":36.690000000000005,"w":40.675,"clr":-1,"A":"left","R":[{"T":"(must%20equal%20the","S":-1,"TS":[0,8.5,1,0]}]},{"oc":"#2b2e34","x":51.08562671875,"y":37.102500625,"w":45.308099999999996,"clr":-1,"A":"left","R":[{"T":"total%20of%20Exempt%20%26","S":-1,"TS":[0,8.5,1,0]}]},{"oc":"#2b2e34","x":50.69375171875,"y":37.515001250000005,"w":50.081999999999994,"clr":-1,"A":"left","R":[{"T":"Taxable%20Dividends)","S":-1,"TS":[0,8.5,1,0]}]},{"oc":"#2b2e34","x":61.74875171875001,"y":43.327501250000005,"w":5.054,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.193595468750004,"y":43.327501250000005,"w":7.514200000000001,"clr":-1,"A":"left","R":[{"T":"%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.28812671875001,"y":43.327501250000005,"w":5.054,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.85296875,"y":37.574999999999996,"w":92.39640000000001,"clr":-1,"A":"left","R":[{"T":"%20%20Taxpayer%20%20%20%20%20Spouse%20%20%20%20%20%20%20Joint","S":52,"TS":[0,9,1,0]}]},{"oc":"#2b2e34","x":62.8625,"y":37.590000374999995,"w":37.2656,"clr":-1,"A":"left","R":[{"T":"Iowa%20Tax","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":81.67078125,"y":36.135,"w":89.8656,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20Account%20Ownership","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":83.32249999999999,"y":36.570000625,"w":90.8802,"clr":-1,"A":"left","R":[{"T":"Check%20one%20for%20each%20payer","S":8,"TS":[0,10,1,0]}]},{"oc":"#2b2e34","x":50.22728124999999,"y":20.580000625,"w":7.6466,"clr":-1,"A":"left","R":[{"T":"%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.71288656249998,"y":20.580000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31544453124998,"y":20.580000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66796015624999,"y":21.390000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.71282124999999,"y":21.390000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31537921875,"y":21.390000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66789484375,"y":22.200000624999998,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.7127559375,"y":22.200000624999998,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31531390625,"y":22.200000624999998,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66782953125001,"y":23.010000624999993,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.71269062500001,"y":23.010000624999993,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31524859375001,"y":23.010000624999993,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.667764218750015,"y":23.812500624999995,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.712625312500016,"y":23.812500624999995,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31518328125001,"y":23.812500624999995,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.667698906250024,"y":24.622500624999997,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.712560000000025,"y":24.622500624999997,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31511796875003,"y":24.622500624999997,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66797734375003,"y":38.362500624999996,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.712838437500025,"y":38.362500624999996,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31539640625003,"y":38.362500624999996,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66791203125003,"y":39.165000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.712773125000034,"y":39.165000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31533109375003,"y":39.165000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66784671875004,"y":39.975000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.71270781250004,"y":39.975000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31526578125005,"y":39.975000625,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66778140625005,"y":40.785000624999995,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.71264250000005,"y":40.785000624999995,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31520046875005,"y":40.785000624999995,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66771609375006,"y":41.59500062499999,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.71257718750006,"y":41.59500062499999,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31513515625007,"y":41.59500062499999,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.66765078125007,"y":42.40500062499999,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.71251187500007,"y":42.40500062499999,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.31506984375007,"y":42.40500062499999,"w":5.0743,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.43727296875007,"y":36.997500624999994,"w":53.5413,"clr":-1,"A":"left","R":[{"T":"Exempt%20from","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":73.49103859375008,"y":36.997500624999994,"w":42.0327,"clr":-1,"A":"left","R":[{"T":"Dividends","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":62.384252656250084,"y":36.247500624999994,"w":42.105599999999995,"clr":-1,"A":"left","R":[{"T":"Dividends","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":73.88186515625007,"y":36.247500624999994,"w":32.8048,"clr":-1,"A":"left","R":[{"T":"Taxable","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.873093281250077,"y":18.375000625,"w":63.7192,"clr":-1,"A":"left","R":[{"T":"%20Name%20of%20Payer","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":50.29473703125008,"y":18.375000625,"w":56.1512,"clr":-1,"A":"left","R":[{"T":"Total%20Interest","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":63.27203859375008,"y":18.375000625,"w":32.2784,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":74.49174640625009,"y":18.375000625,"w":32.751599999999996,"clr":-1,"A":"left","R":[{"T":"Taxable","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":61.78691828125008,"y":19.125000625,"w":53.5171,"clr":-1,"A":"left","R":[{"T":"Exempt%20from","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":74.30620734375007,"y":19.125000625,"w":32.2568,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":85.11619953125007,"y":18.382500624999995,"w":70.1612,"clr":-1,"A":"left","R":[{"T":"Account%20Ownership","S":8,"TS":[0,10,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Names","EN":0},"TI":254,"AM":0,"x":5.4713140625,"y":5.0560833333333335,"w":71.24268593750001,"h":0.9780416666666648},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1","EN":0},"TI":255,"AM":0,"x":77.867796875,"y":5.0560833333333335,"w":21.223296875,"h":0.9780416666666648},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer1","EN":0},"TI":256,"AM":0,"x":5.725345312500001,"y":20.8340625,"w":43.675826562500006,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount1","EN":0},"TI":257,"AM":0,"x":51.92446875,"y":20.8233125,"w":8.768718750000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount1i","EN":0},"TI":258,"AM":0,"x":63.031890625,"y":20.8233125,"w":8.544078125000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount1ti","EN":0},"TI":259,"AM":0,"x":73.70532812500001,"y":20.8233125,"w":7.945093750000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer2","EN":0},"TI":263,"AM":0,"x":5.725345312500001,"y":21.586312500000002,"w":43.7507640625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount2","EN":0},"TI":264,"AM":0,"x":51.92446875,"y":21.63625,"w":8.768718750000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount2i","EN":0},"TI":265,"AM":0,"x":63.049078125,"y":21.63625,"w":8.469140625000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount2ti","EN":0},"TI":266,"AM":0,"x":73.70532812500001,"y":21.586249999999996,"w":7.945093750000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer3","EN":0},"TI":270,"AM":0,"x":5.725345312500001,"y":22.399125,"w":43.7507640625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount3","EN":0},"TI":271,"AM":0,"x":52.07915625,"y":22.45175,"w":8.61884375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount3i","EN":0},"TI":272,"AM":0,"x":63.169390625000005,"y":22.45175,"w":8.244671874999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount3ti","EN":0},"TI":273,"AM":0,"x":73.688140625,"y":22.45175,"w":8.020031249999994,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer4","EN":0},"TI":277,"AM":0,"x":5.725345312500001,"y":23.1960625,"w":43.7507640625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount4","EN":0},"TI":278,"AM":0,"x":52.07915625,"y":23.2549375,"w":8.544078124999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount4i","EN":0},"TI":279,"AM":0,"x":63.186578125000004,"y":23.2549375,"w":8.394375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount4ti","EN":0},"TI":280,"AM":0,"x":73.84282812500001,"y":23.2549375,"w":7.945093750000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer5","EN":0},"TI":284,"AM":0,"x":5.725345312500001,"y":24.020687499999998,"w":43.7507640625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount5","EN":0},"TI":285,"AM":0,"x":52.07915625,"y":24.059,"w":8.544078124999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount5s","EN":0},"TI":286,"AM":0,"x":63.186578125000004,"y":24.059,"w":8.394375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount5ti","EN":0},"TI":287,"AM":0,"x":73.688140625,"y":24.059,"w":8.020031249999994,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer6","EN":0},"TI":291,"AM":0,"x":5.725345312500001,"y":24.8273125,"w":43.7507640625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount6","EN":0},"TI":292,"AM":0,"x":52.07915625,"y":24.867437500000005,"w":8.61884375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount6i","EN":0},"TI":293,"AM":0,"x":63.186578125000004,"y":24.867437500000005,"w":8.3194375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount6ti","EN":0},"TI":294,"AM":0,"x":73.688140625,"y":24.867437500000005,"w":8.020031249999994,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AmountSum","EN":0},"TI":298,"AM":0,"x":52.08053125000001,"y":25.803,"w":8.54407812500001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AmountSum2","EN":0},"TI":299,"AM":0,"x":63.187953125,"y":25.803,"w":8.3194375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AmountSum3","EN":0},"TI":300,"AM":0,"x":73.517640625,"y":25.7405,"w":8.020031250000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer15","EN":0},"TI":301,"AM":0,"x":5.492626562500001,"y":38.6090625,"w":44.0850609375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount15","EN":0},"TI":302,"AM":0,"x":52.01521875000001,"y":38.5475,"w":8.795359375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount15d","EN":0},"TI":303,"AM":0,"x":62.98015625,"y":38.61,"w":8.570890625000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount15td","EN":0},"TI":304,"AM":0,"x":73.636578125,"y":38.61,"w":8.196375000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer16","EN":0},"TI":308,"AM":0,"x":5.492626562500001,"y":39.3724375,"w":44.0850609375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount16","EN":0},"TI":309,"AM":0,"x":52.01521875000001,"y":39.31225,"w":8.720421874999989,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount16d","EN":0},"TI":310,"AM":0,"x":62.98015625,"y":39.37475,"w":8.570890625000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount16td","EN":0},"TI":311,"AM":0,"x":73.636578125,"y":39.37475,"w":8.046671875000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer17","EN":0},"TI":315,"AM":0,"x":5.492626562500001,"y":40.17425,"w":44.0850609375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount17","EN":0},"TI":316,"AM":0,"x":52.01521875000001,"y":40.115125,"w":8.795359375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount17d","EN":0},"TI":317,"AM":0,"x":62.98015625,"y":40.177625,"w":8.496125000000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount17td","EN":0},"TI":318,"AM":0,"x":73.636578125,"y":40.177625,"w":8.121609375000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer18","EN":0},"TI":322,"AM":0,"x":5.492626562500001,"y":40.9921875,"w":44.0850609375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount18","EN":0},"TI":323,"AM":0,"x":52.01521875000001,"y":40.925000000000004,"w":8.720421874999989,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount18d","EN":0},"TI":324,"AM":0,"x":62.98015625,"y":40.987500000000004,"w":8.496125000000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount18td","EN":0},"TI":325,"AM":0,"x":73.636578125,"y":40.987500000000004,"w":8.196375000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer19","EN":0},"TI":329,"AM":0,"x":5.492626562500001,"y":41.8155,"w":44.0850609375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount19","EN":0},"TI":330,"AM":0,"x":52.01521875000001,"y":41.757125,"w":8.645656249999998,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount19d","EN":0},"TI":331,"AM":0,"x":62.98015625,"y":41.819625,"w":8.570890625000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount19td","EN":0},"TI":332,"AM":0,"x":73.636578125,"y":41.819625,"w":8.121609375000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Payer20","EN":0},"TI":336,"AM":0,"x":5.492626562500001,"y":42.593625,"w":44.0850609375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount20","EN":0},"TI":337,"AM":0,"x":52.01521875000001,"y":42.589625000000005,"w":8.645656249999998,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount20d","EN":0},"TI":338,"AM":0,"x":62.98015625,"y":42.6440625,"w":8.496125000000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount20td","EN":0},"TI":339,"AM":0,"x":73.636578125,"y":42.616875,"w":8.196375000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AmountSum4","EN":0},"TI":343,"AM":0,"x":52.007140625000005,"y":43.57821875,"w":8.693781250000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AmountSum5","EN":0},"TI":344,"AM":0,"x":63.033265625,"y":43.57821875,"w":8.394375000000013,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AmountSum6","EN":0},"TI":345,"AM":0,"x":73.534828125,"y":43.51571875,"w":8.169734374999997,"h":0.8333333333333334}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":260,"AM":0,"x":83.02129687500002,"y":20.6081875,"w":4.551937499999987,"h":0.8333333333333334,"checked":false}],"id":{"Id":"1","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":261,"AM":0,"x":89.05771875,"y":20.6081875,"w":4.5519375000000135,"h":0.8333333333333334,"checked":false}],"id":{"Id":"1s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"j","EN":0},"TI":262,"AM":0,"x":94.69710937500001,"y":20.6081875,"w":4.551937499999987,"h":0.8333333333333334,"checked":false}],"id":{"Id":"1j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":267,"AM":0,"x":83.004109375,"y":21.421125,"w":4.5519375,"h":0.8333333333333334,"checked":false}],"id":{"Id":"2","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":268,"AM":0,"x":89.05428125,"y":21.483625,"w":4.5519375000000135,"h":0.8333333333333334,"checked":false}],"id":{"Id":"2s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":269,"AM":0,"x":94.69435937499999,"y":21.421125,"w":4.5519375000000135,"h":0.8333333333333334,"checked":false}],"id":{"Id":"2j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"t3","EN":0},"TI":274,"AM":0,"x":83.00359375000001,"y":22.226250000000004,"w":4.4414218750000085,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"s3","EN":0},"TI":275,"AM":0,"x":89.04242187500002,"y":22.221875,"w":4.441421874999982,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":276,"AM":0,"x":94.68387500000001,"y":22.236625,"w":4.551937499999987,"h":0.8333333333333334,"checked":false}],"id":{"Id":"3j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":281,"AM":0,"x":82.98692187500001,"y":23.0398125,"w":4.5519375,"h":0.8333333333333334,"checked":false}],"id":{"Id":"4","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":282,"AM":0,"x":89.03709375,"y":23.0398125,"w":4.5519375000000135,"h":0.8333333333333334,"checked":false}],"id":{"Id":"4s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":283,"AM":0,"x":94.68387500000001,"y":23.0398125,"w":4.551937499999987,"h":0.8333333333333334,"checked":false}],"id":{"Id":"4j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":288,"AM":0,"x":82.98692187500001,"y":23.843875,"w":4.5519375,"h":0.8333333333333334,"checked":false}],"id":{"Id":"5","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":289,"AM":0,"x":89.04035937500001,"y":23.843875,"w":4.5519375,"h":0.8333333333333334,"checked":false}],"id":{"Id":"5s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":290,"AM":0,"x":94.69710937500001,"y":23.843875,"w":4.551937499999987,"h":0.8333333333333334,"checked":false}],"id":{"Id":"5j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":295,"AM":0,"x":82.98692187500001,"y":24.714812500000004,"w":4.5519375,"h":0.8333333333333334,"checked":false}],"id":{"Id":"6","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":296,"AM":0,"x":89.03915625000002,"y":24.714812500000004,"w":4.551937499999987,"h":0.8333333333333334,"checked":false}],"id":{"Id":"6s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":297,"AM":0,"x":94.681984375,"y":24.714812500000004,"w":4.5519375000000135,"h":0.8333333333333334,"checked":false}],"id":{"Id":"6j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":305,"AM":0,"x":82.84289062500001,"y":38.45675,"w":4.898265624999992,"h":0.8333333333333334,"checked":false}],"id":{"Id":"15","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":306,"AM":0,"x":88.816921875,"y":38.4771875,"w":4.898093749999996,"h":0.8333333333333334,"checked":false}],"id":{"Id":"15s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":307,"AM":0,"x":94.60378125000001,"y":38.4771875,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"15j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Yes","EN":0},"TI":312,"AM":0,"x":82.825703125,"y":39.262375,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"16","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":313,"AM":0,"x":88.816921875,"y":39.2419375,"w":4.898093749999996,"h":0.8333333333333334,"checked":false}],"id":{"Id":"16s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":314,"AM":0,"x":94.60378125000001,"y":39.2215,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"16j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":319,"AM":0,"x":82.825703125,"y":40.0675625,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"17","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":320,"AM":0,"x":88.816921875,"y":40.026625,"w":4.898093749999996,"h":0.8333333333333334,"checked":false}],"id":{"Id":"17s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":321,"AM":0,"x":94.60378125000001,"y":40.0675625,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"17j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":326,"AM":0,"x":82.825703125,"y":40.875125000000004,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"18","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":327,"AM":0,"x":88.816921875,"y":40.854687500000004,"w":4.898093749999996,"h":0.8333333333333334,"checked":false}],"id":{"Id":"18s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":328,"AM":0,"x":94.60378125000001,"y":40.813812500000004,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"18j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":333,"AM":0,"x":82.825703125,"y":41.6879375,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"19","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":334,"AM":0,"x":88.816921875,"y":41.6675,"w":4.898093749999996,"h":0.8333333333333334,"checked":false}],"id":{"Id":"19s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":335,"AM":0,"x":94.60378125000001,"y":41.6675,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"19j","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP","EN":0},"TI":340,"AM":0,"x":82.825703125,"y":42.519312500000005,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"20","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP","EN":0},"TI":341,"AM":0,"x":88.816921875,"y":42.496625,"w":4.898093749999996,"h":0.8333333333333334,"checked":false}],"id":{"Id":"20s","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"J","EN":0},"TI":342,"AM":0,"x":94.60378125000001,"y":42.4954375,"w":4.898265625000004,"h":0.8333333333333334,"checked":false}],"id":{"Id":"20j","EN":0}}]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_1040v.content.txt b/test/data/ia/form/ia_scr_1040v.content.txt new file mode 100644 index 00000000..8bf0d118 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040v.content.txt @@ -0,0 +1,37 @@ +Iowa Individual Income Tax Payment Voucher +www.iowa.gov/tax +Iowa Department of Revenue +Instructions +Individual Income Tax Payment Voucher +If payment is not made on or before April 30, 2013, +the tax due may be subject to penalty and interest. +If you owe additional tax, +send this voucher and your payment to: +Iowa Department of Revenue +Iowa Income Tax - Document Processing +PO Box 9187 +Des Moines, Iowa 50306-9187 +Mail to: +Iowa Income Tax +Iowa Department of Revenue +PO Box 9187 +Des Moines, IA 50306-9187 +ePay (direct debit) through eFile & Pay is FREE! +Instead of mailing a check, use ePay! +www.iowa.gov/tax + Make check payable to + +Treasurer - State of Iowa. +Enclose payment with your voucher - DO NOT STAPLE to the IA 1040V + + 41-137 (10/17/12) +Iowa Department of Revenue +PRINT name (last, first, middle initial) Social Security Number + Spouse's name (last, first, middle initial) Spouse's Social Security Number + Address (number and street, including apartment) Payment Amount + City, State, ZIP Daytime Telephone Number +2012 IA 1040V +Make check payable to: Treasurer - State of Iowa +When you pay by check, you authorize the Department of Revenue +to convert your check to a one-time electronic banking transaction. +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_1040v.fields.json b/test/data/ia/form/ia_scr_1040v.fields.json new file mode 100644 index 00000000..b5c146f8 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040v.fields.json @@ -0,0 +1 @@ +[{"id":"YourName","type":"alpha","calc":false,"value":""},{"id":"SSN1","type":"ssn","calc":false,"value":""},{"id":"SpouseName","type":"alpha","calc":false,"value":""},{"id":"SSN1s","type":"ssn","calc":false,"value":""},{"id":"Add1","type":"alpha","calc":false,"value":""},{"id":"Pay","type":"number","calc":false,"value":""},{"id":"Add2","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"alpha","calc":false,"value":""},{"id":"Phone3","type":"phone","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_1040v.json b/test/data/ia/form/ia_scr_1040v.json new file mode 100755 index 00000000..fcb47258 --- /dev/null +++ b/test/data/ia/form/ia_scr_1040v.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"Iowa 1040V income tax payment voucher","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":30.133125000000003,"y":3.6187499999999964,"w":3.06,"l":68.84625000000001},{"oc":"#2b2e34","x":13.674409375,"y":3.8024999999999998,"w":0.7200000000000001,"l":85.32562500000002},{"oc":"#2b2e34","x":3.0936812500000004,"y":32.97,"w":1.4400000000000002,"l":1.7118406250000004},{"oc":"#2b2e34","x":5.3623625000000015,"y":32.97,"w":1.4400000000000002,"l":1.7118406250000004},{"oc":"#2b2e34","x":7.631043750000003,"y":32.97,"w":1.4400000000000002,"l":1.7118406249999987},{"oc":"#2b2e34","x":9.899725000000002,"y":32.97,"w":1.4400000000000002,"l":1.711840625000002},{"oc":"#2b2e34","x":12.168406250000004,"y":32.97,"w":1.4400000000000002,"l":1.7118406249999987},{"oc":"#2b2e34","x":14.437104687500003,"y":32.97,"w":1.4400000000000002,"l":1.7118234374999999},{"oc":"#2b2e34","x":16.705785937500004,"y":32.97,"w":1.4400000000000002,"l":1.711823437500003},{"oc":"#2b2e34","x":18.974484375000007,"y":32.97,"w":1.4400000000000002,"l":1.7118062500000009},{"oc":"#2b2e34","x":21.242993750000007,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999998},{"oc":"#2b2e34","x":23.511743750000008,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999967},{"oc":"#2b2e34","x":25.780493750000005,"y":32.97,"w":1.4400000000000002,"l":1.7117031250000008},{"oc":"#2b2e34","x":28.04907187500001,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":30.317821875000003,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999998},{"oc":"#2b2e34","x":32.586571875000004,"y":32.97,"w":1.4400000000000002,"l":1.7117031249999974},{"oc":"#2b2e34","x":34.85515,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999998},{"oc":"#2b2e34","x":37.123900000000006,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999998},{"oc":"#2b2e34","x":39.392478125000004,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":41.66122812500001,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":43.929978125000005,"y":32.97,"w":1.4400000000000002,"l":1.7117031249999974},{"oc":"#2b2e34","x":46.19855625,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999998},{"oc":"#2b2e34","x":48.46730625000001,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999998},{"oc":"#2b2e34","x":50.735884375000005,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":53.00463437500001,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":55.273384375000006,"y":32.97,"w":1.4400000000000002,"l":1.7117031249999974},{"oc":"#2b2e34","x":57.54196250000001,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999998},{"oc":"#2b2e34","x":59.81071250000001,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":62.079290625000006,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":64.34804062500002,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":66.61679062500001,"y":32.97,"w":1.4400000000000002,"l":1.7117031250000105},{"oc":"#2b2e34","x":68.88536875000003,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":71.15411875000002,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":73.40224375000003,"y":32.97,"w":1.4400000000000002,"l":1.7117031250000105},{"oc":"#2b2e34","x":75.65019687500002,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":77.89832187500002,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":80.14644687500001,"y":32.97,"w":1.4400000000000002,"l":1.7117031250000105},{"oc":"#2b2e34","x":82.39440000000002,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":84.64252500000002,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":86.89065000000002,"y":32.97,"w":1.4400000000000002,"l":1.7117031250000105},{"oc":"#2b2e34","x":89.13860312500002,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":91.38672812500002,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":93.63485312500002,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":95.88280625000003,"y":32.97,"w":1.4400000000000002,"l":1.7118749999999934},{"oc":"#2b2e34","x":98.13093125000002,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":100.37905625000002,"y":32.97,"w":1.4400000000000002,"l":1.7118750000000065},{"oc":"#2b2e34","x":10.250659375000001,"y":39.06,"w":1.4400000000000002,"l":81.30375000000001},{"oc":"#2b2e34","x":10.250659375000001,"y":40.7175,"w":1.4400000000000002,"l":81.22125000000003},{"oc":"#2b2e34","x":10.3950171875,"y":42.464999999999996,"w":1.4400000000000002,"l":81.34500000000003},{"oc":"#2b2e34","x":10.3125,"y":46.09499374999999,"w":1.4400000000000002,"l":50.490000000000016},{"oc":"#2b2e34","x":10.353784375,"y":44.3099875,"w":1.4400000000000002,"l":81.20062500000002}],"VLines":[{"oc":"#2b2e34","x":60.8025,"y":39.06,"w":1.4400000000000002,"l":7.027500000000003},{"oc":"#2b2e34","x":10.333176562500002,"y":39.06,"w":1.4400000000000002,"l":7.012499999999998},{"oc":"#2b2e34","x":91.595625,"y":39.03,"w":1.4400000000000002,"l":5.279987500000004},{"oc":"#2b2e34","x":40.610625000000006,"y":44.3399875,"w":1.4400000000000002,"l":1.7624999999999982}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":42.588125000000005,"y":2.5725000000000002,"w":326.8216,"clr":-1,"A":"left","R":[{"T":"Iowa%20Individual%20Income%20Tax%20Payment%20Voucher","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":13.321250000000001,"y":2.895000000000001,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.197499828125,"y":1.979999999999999,"w":135.99320000000003,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":83.90000000000002,"y":3.8699999999999948,"w":86.9728,"clr":-1,"A":"left","R":[{"T":"Instructions","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":67.626875,"y":34.425,"w":197.08720000000005,"clr":-1,"A":"left","R":[{"T":"Individual%20Income%20Tax%20Payment%20Voucher","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":20.04500000000001,"y":27.24,"w":376.29600000000005,"clr":-1,"A":"left","R":[{"T":"If%20payment%20is%20not%20made%20on%20or%20before%20April%2030%2C%202013%2C","S":-1,"TS":[0,20,1,0]}]},{"oc":"#2b2e34","x":19.98312482812501,"y":28.4475,"w":377.1199,"clr":-1,"A":"left","R":[{"T":"the%20tax%20due%20may%20be%20subject%20to%20penalty%20and%20interest.","S":-1,"TS":[0,20,1,0]}]},{"oc":"#2b2e34","x":39.14374982812501,"y":13.560000000000002,"w":164.76679999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20owe%20additional%20tax%2C","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":32.41999982812501,"y":15.135000000000005,"w":242.93720000000002,"clr":-1,"A":"left","R":[{"T":"send%20this%20voucher%20and%20your%20payment%20to%3A","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":39.04062482812501,"y":16.260000000000005,"w":143.17000000000002,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":39.04062482812501,"y":17.287500000000005,"w":201.37560000000008,"clr":-1,"A":"left","R":[{"T":"Iowa%20Income%20Tax%20-%20Document%20Processing","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":39.04062482812501,"y":18.322500000000005,"w":65.40050000000001,"clr":-1,"A":"left","R":[{"T":"PO%20Box%209187","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":39.04062482812501,"y":19.350000000000005,"w":152.41360000000003,"clr":-1,"A":"left","R":[{"T":"Des%20Moines%2C%20Iowa%20%2050306-9187","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":67.81249982812501,"y":35.400000000000006,"w":25.678399999999996,"clr":-1,"A":"left","R":[{"T":"Mail%20to%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.81249982812501,"y":36.000000625000006,"w":60.90300000000001,"clr":-1,"A":"left","R":[{"T":"Iowa%20Income%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.81249982812501,"y":36.600001250000005,"w":103.97520000000002,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.81249982812501,"y":37.200001875000005,"w":47.53780000000001,"clr":-1,"A":"left","R":[{"T":"PO%20Box%209187","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.81249982812501,"y":37.800002500000005,"w":99.13500000000002,"clr":-1,"A":"left","R":[{"T":"Des%20Moines%2C%20IA%2050306-9187","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":16.435624828125007,"y":7.650002500000008,"w":416.8079999999998,"clr":-1,"A":"left","R":[{"T":"ePay%20(direct%20debit)%20through%20eFile%20%26%20Pay%20is%20FREE!","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":27.449374828125006,"y":8.902502500000006,"w":289.4402999999999,"clr":-1,"A":"left","R":[{"T":"Instead%20of%20mailing%20a%20check%2C%20use%20ePay!","S":-1,"TS":[0,20,1,0]}]},{"oc":"#2b2e34","x":40.23687482812501,"y":10.102502500000005,"w":141.0896,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,20,1,0]}]},{"oc":"#2b2e34","x":28.872499828125004,"y":22.53000250000001,"w":122.41240000000002,"clr":-1,"A":"left","R":[{"T":"%20Make%20check%20payable%20to","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":50.466874828125015,"y":22.53000250000001,"w":131.779,"clr":-1,"A":"left","R":[{"T":"Treasurer%20-%20State%20of%20Iowa.","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":18.126874828125008,"y":23.94750250000001,"w":381.89099999999985,"clr":-1,"A":"left","R":[{"T":"Enclose%20payment%20with%20your%20voucher%20-%20DO%20NOT%20STAPLE%20to%20the%20IA%201040V","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":51.22309045312502,"y":45.922496250000016,"w":51.08510000000001,"clr":-1,"A":"left","R":[{"T":"%2041-137%20%20(10%2F17%2F12)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.453750000000001,"y":32.835,"w":121.32060000000003,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.35125,"y":38.82,"w":377.79369999999966,"clr":-1,"A":"left","R":[{"T":"PRINT%20name%20(last%2C%20first%2C%20middle%20initial)%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%20%20%20%20%20%20Social%20Security%20Number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":10.140875000000001,"y":40.4775,"w":417.7319999999996,"clr":-1,"A":"left","R":[{"T":"%20Spouse's%20name%20(last%2C%20first%2C%20middle%20initial)%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%20%20%20Spouse's%20Social%20Security%20Number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":10.2946,"y":42.225,"w":358.32529999999974,"clr":-1,"A":"left","R":[{"T":"%20Address%20(number%20and%20street%2C%20including%20apartment)%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%20Payment%20Amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":10.251975000000002,"y":44.07,"w":280.0379999999997,"clr":-1,"A":"left","R":[{"T":"%20City%2C%20State%2C%20ZIP%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%20Daytime%20Telephone%20Number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.68875000000001,"y":33.637499999999996,"w":159.5281,"clr":-1,"A":"left","R":[{"T":"2012%20IA%201040V","S":-1,"TS":[0,28,1,0]}]},{"oc":"#2b2e34","x":9.897500000000004,"y":45.975,"w":231.36760000000004,"clr":-1,"A":"left","R":[{"T":"Make%20check%20payable%20to%3A%20Treasurer%20-%20State%20of%20Iowa","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":9.897500000000004,"y":46.67250000000001,"w":237.59219999999976,"clr":-1,"A":"left","R":[{"T":"When%20you%20pay%20by%20check%2C%20you%20authorize%20the%20Department%20of%20Revenue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.897500000000004,"y":47.2725,"w":234.84749999999994,"clr":-1,"A":"left","R":[{"T":"to%20convert%20your%20check%20to%20a%20one-time%20electronic%20banking%20transaction.","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YourName","EN":0},"TI":346,"AM":0,"x":10.51551875,"y":39.846875000000004,"w":50.006996875000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1","EN":0},"TI":347,"AM":0,"x":62.043609375,"y":39.744125000000004,"w":29.298328124999998,"h":0.8609375000000009},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SpouseName","EN":0},"TI":348,"AM":0,"x":10.49296875,"y":41.53125,"w":50.00685937500001,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1s","EN":0},"TI":349,"AM":0,"x":62.043609375,"y":41.4851875,"w":29.298328124999998,"h":0.8609375000000009},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Add1","EN":0},"TI":350,"AM":0,"x":10.481143750000001,"y":43.40936875,"w":50.00699687499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Pay","EN":0},"TI":351,"AM":0,"x":62.043609375,"y":43.355075,"w":29.298328124999998,"h":0.8609374999999962},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Add2","EN":0},"TI":352,"AM":0,"x":10.4658640625,"y":45.23593125,"w":16.099823437500003,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":353,"AM":0,"x":26.930062500000002,"y":45.24335,"w":5.094203125000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":354,"AM":0,"x":32.191328125000005,"y":45.24335,"w":8.238656250000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"Phone3","EN":0},"TI":355,"AM":0,"x":41.00800000000001,"y":45.20429375,"w":19.289531249999992,"h":0.8333333333333334}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_130.content.txt b/test/data/ia/form/ia_scr_130.content.txt new file mode 100644 index 00000000..2938961c --- /dev/null +++ b/test/data/ia/form/ia_scr_130.content.txt @@ -0,0 +1,210 @@ +2012 IA 130 +Iowa Out-of-state Credit Computation +41-130 (09/05/12) +GENERAL INSTRUCTIONS: +Also see instructions for line 62, IA 1040. +• +Nonresidents of Iowa may not claim this credit. +• +Part-year residents of Iowa may claim this credit +ONLY if any income earned while an Iowa resident +was also taxed by another state or foreign country. +• +The tax imposed on your income is the tax shown +on the income tax return you filed with that state or +foreign country. +• +You must complete a separate IA 130 for each +state or foreign country. Separate IA 130s are not +required for foreign taxes paid by mutual funds or +other regulated investment companies. +Name of State / Country that taxed income also taxed by +Iowa: + Spouse: You: +Enclose the following with your Iowa return: +• +This schedule: IA 130 +• +The income tax return you filed with the other state +• +If you are claiming the credit for taxes paid to a foreign +country, include federal form 1116, Foreign Tax Credit, if +it is required with your federal return. +If you were assessed a minimum tax or a special tax on a +lump-sum distribution by another state, see our Expanded +Instructions on our Web site, www.iowa.gov/tax +www.iowa.gov/tax +Iowa Department of Revenue +Name(s) as shown on page 1 of the IA 1040 + Social Security Number +Column B Column A +Spouse +Status 3 Only +You or Joint +1. +Amount of gross income you received +while you were an Iowa resident +that was taxed by Iowa and taxed by the other state/foreign country +..................................... +1. +__________________ +.00 +_________________ +.00 +2. +Gross taxable income for part-year residents from line 15, IA 126 +.......................................... +2. +__________________ +.00 +_________________ +.00 +3. +Divide line 1 by line 2 and enter the percentage. Do not exceed 100.0%. +............................. +3. +___________________ +% +__________________ +% +4. +Tax from line 54, IA 1040, less lump-sum tax and minimum tax +.............................................. +4. +__________________ +.00 +_________________ +.00 +5. +Multiply line 4 by the percentage on line 3. +................................................................................... +5. +__________________ +.00 +_________________ +.00 +6. +Enter the tax imposed by the other state or foreign country. +.................................................... +6. +__________________ +.00 +_________________ +.00 +7. +Enter the total amount of gross income taxed by the other state/foreign country. +............... +7. +__________________ +.00 +_________________ +.00 +8. +Divide line 1 by line 7 and enter the percentage. Do not exceed 100.0%. +............................. +8. +___________________ +% +__________________ +% +9. +Multiply line 6 by the percentage on line 8. +................................................................................... +9. +__________________ +.00 +_________________ +.00 +10. +Enter the SMALLER of lines 5 or 9. This is your Out-of-state Tax Credit +Enter this amount on line 62, IA 1040. +........................................................................................ +10. +__________________ +.00 +_________________ +.00 +s +s +s +Column B Column A +Spouse +Status 3 Only +You or Joint +SECTION I – +FULL +-YEAR IOWA RESIDENTS ONLY +1. +Amount of gross income you received that was taxed by Iowa and +taxed by the other state/foreign country +......................................................................................... +1. +__________________ +.00 +_________________ +.00 +2. +Gross taxable income for residents from line 15, IA 1040 +......................................................... +2. +__________________ +.00 +_________________ +.00 +3. +Divide line 1 by line 2 and enter the percentage. Do not exceed 100.0%. +............................. +3. +___________________ +% +__________________ +% +4. +Tax from line 54, IA 1040, less lump sum tax and minimum tax +............................................... +4. +__________________ +.00 +_________________ +.00 +5. +Multiply line 4 by the percentage on line 3. +................................................................................... +5. +__________________ +.00 +_________________ +.00 +6. +Enter the tax imposed by the other state or foreign country. +.................................................... +6. +__________________ +.00 +_________________ +.00 +7. +Enter the SMALLER of lines 5 or 6. This is your Out-of-state Tax Credit. +Enter this amount on line 62, IA 1040. +........................................................................................... +7. +__________________ +.00 +_________________ +.00 +s +s +Shareholders of S corporations + who have income from the +corporation that was apportioned outside Iowa and not taxed by +Iowa +cannot + claim an out-of-state credit on this income. +SECTION II – +PART +-YEAR IOWA RESIDENTS ONLY +NOTE: + The credit or portion of the credit must not exceed the +amount of the Iowa tax imposed on the same income that was +taxed by the other state or foreign country. +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_130.fields.json b/test/data/ia/form/ia_scr_130.fields.json new file mode 100644 index 00000000..22d1d945 --- /dev/null +++ b/test/data/ia/form/ia_scr_130.fields.json @@ -0,0 +1 @@ +[{"id":"Names","type":"alpha","calc":false,"value":""},{"id":"SSN1","type":"ssn","calc":false,"value":""},{"id":"SpouseState","type":"alpha","calc":false,"value":""},{"id":"YouState","type":"alpha","calc":false,"value":""},{"id":"1_1S","type":"number","calc":false,"value":""},{"id":"1_1Y","type":"number","calc":false,"value":""},{"id":"1_2S","type":"number","calc":false,"value":""},{"id":"1_2Y","type":"number","calc":false,"value":""},{"id":"1_3S","type":"number","calc":false,"value":""},{"id":"1_3Y","type":"number","calc":false,"value":""},{"id":"1_4S","type":"number","calc":false,"value":""},{"id":"1_4Y","type":"number","calc":false,"value":""},{"id":"1_5S","type":"number","calc":false,"value":""},{"id":"1_5Y","type":"number","calc":false,"value":""},{"id":"1_6S","type":"number","calc":false,"value":""},{"id":"1_6Y","type":"number","calc":false,"value":""},{"id":"1_7S","type":"number","calc":false,"value":""},{"id":"1_7Y","type":"number","calc":false,"value":""},{"id":"2_1S","type":"number","calc":false,"value":""},{"id":"2_1Y","type":"number","calc":false,"value":""},{"id":"2_2S","type":"number","calc":false,"value":""},{"id":"2_2Y","type":"number","calc":false,"value":""},{"id":"2_3S","type":"number","calc":false,"value":""},{"id":"2_3Y","type":"number","calc":false,"value":""},{"id":"2_4S","type":"number","calc":false,"value":""},{"id":"2_4Y","type":"number","calc":false,"value":""},{"id":"2_5S","type":"number","calc":false,"value":""},{"id":"2_5Y","type":"number","calc":false,"value":""},{"id":"2_6S","type":"number","calc":false,"value":""},{"id":"2_6Y","type":"number","calc":false,"value":""},{"id":"2_7S","type":"number","calc":false,"value":""},{"id":"2_7Y","type":"number","calc":false,"value":""},{"id":"2_8S","type":"number","calc":false,"value":""},{"id":"2_8Y","type":"number","calc":false,"value":""},{"id":"2_9S","type":"number","calc":false,"value":""},{"id":"2_9Y","type":"number","calc":false,"value":""},{"id":"2_10S","type":"number","calc":false,"value":""},{"id":"2_10Y","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_130.json b/test/data/ia/form/ia_scr_130.json new file mode 100755 index 00000000..2156aba5 --- /dev/null +++ b/test/data/ia/form/ia_scr_130.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"Iowa IA130 out-of-state credit for income tax","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":29.514375,"y":2.4862487499999966,"w":3.06,"l":72.57937500000001},{"oc":"#2b2e34","x":13.055659375000001,"y":2.7075012499999977,"w":0.7200000000000001,"l":89.03809062500002},{"oc":"#2b2e34","x":5.671875,"y":3.8850006250000035,"w":1.4400000000000002,"l":96.42187500000001},{"oc":"#2b2e34","x":5.671875,"y":5.7149993750000005,"w":1.4400000000000002,"l":96.42187500000001},{"oc":"#2b2e34","x":68.94593750000003,"y":44.188112499999995,"w":0.7200000000000001,"l":33.10656250000001},{"oc":"#2b2e34","x":68.94593750000003,"y":31.5618625,"w":0.7200000000000001,"l":33.10656250000001},{"oc":"#2b2e34","x":68.908125,"y":34.762499999999996,"w":0.7200000000000001,"l":33.185625},{"oc":"#2b2e34","x":68.94593750000003,"y":31.40375,"w":0.7200000000000001,"l":33.10656250000001},{"oc":"#2b2e34","x":68.94593750000003,"y":20.874374999999997,"w":0.7200000000000001,"l":33.10656250000001},{"oc":"#2b2e34","x":68.908125,"y":23.40750125,"w":0.7200000000000001,"l":33.185625},{"oc":"#2b2e34","x":75.09562843750001,"y":19.289999374999997,"w":1.4400000000000002,"l":9.673124999999995},{"oc":"#2b2e34","x":89.96624828125,"y":19.222500625,"w":1.4400000000000002,"l":10.6425}],"VLines":[{"oc":"#2b2e34","x":77.44687500000002,"y":4.514999375000002,"w":1.4400000000000002,"l":1.1774999999999995},{"oc":"#2b2e34","x":102.05250000000004,"y":31.5618625,"w":0.7200000000000001,"l":12.626249999999999},{"oc":"#2b2e34","x":68.94593750000003,"y":31.5618625,"w":0.7200000000000001,"l":12.626249999999999},{"oc":"#2b2e34","x":85.7175034375,"y":31.5825,"w":0.7200000000000001,"l":3.1650000000000014},{"oc":"#2b2e34","x":102.05250000000004,"y":20.874374999999997,"w":0.7200000000000001,"l":10.529375000000002},{"oc":"#2b2e34","x":68.94593750000003,"y":20.874374999999997,"w":0.7200000000000001,"l":10.529375000000002},{"oc":"#2b2e34","x":85.7175034375,"y":20.895001249999996,"w":0.7200000000000001,"l":2.4975000000000023}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":85.034375,"y":1.4849999999999945,"w":97.99580000000002,"clr":-1,"A":"left","R":[{"T":"2012%20IA%20130","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":58.448750000000004,"y":2.7374999999999923,"w":251.81090000000006,"clr":-1,"A":"left","R":[{"T":"Iowa%20%20Out-of-state%20Credit%20Computation","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":90.29375,"y":47.595,"w":67.6431,"clr":-1,"A":"left","R":[{"T":"41-130%20(09%2F05%2F12)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.455624999999992,"y":5.774999999999996,"w":140.36770000000004,"clr":-1,"A":"left","R":[{"T":"GENERAL%20INSTRUCTIONS%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":9.134374999999991,"y":6.524999999999996,"w":202.70860000000008,"clr":-1,"A":"left","R":[{"T":"Also%20see%20instructions%20for%20line%2062%2C%20IA%201040.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.318749999999992,"y":7.3874999999999975,"w":4,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":6.865624999999992,"y":7.3874999999999975,"w":230.2494000000001,"clr":-1,"A":"left","R":[{"T":"Nonresidents%20of%20Iowa%20may%20not%20claim%20this%20credit.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.318749999999992,"y":8.362499999999997,"w":4,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":6.865624999999992,"y":8.362499999999997,"w":237.49189999999987,"clr":-1,"A":"left","R":[{"T":"Part-year%20residents%20of%20Iowa%20may%20claim%20this%20credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.174999999999992,"y":9.112499999999997,"w":248.4200000000001,"clr":-1,"A":"left","R":[{"T":"ONLY%20if%20any%20income%20earned%20while%20an%20Iowa%20resident","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.174999999999992,"y":9.862499999999997,"w":249.61219999999983,"clr":-1,"A":"left","R":[{"T":"was%20also%20taxed%20by%20another%20state%20or%20foreign%20country.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.318749999999992,"y":10.837499999999997,"w":4,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":6.865624999999992,"y":10.837499999999997,"w":243.10109999999983,"clr":-1,"A":"left","R":[{"T":"The%20tax%20imposed%20on%20your%20income%20is%20the%20tax%20shown","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.174999999999992,"y":11.587499999999997,"w":250.60600000000025,"clr":-1,"A":"left","R":[{"T":"on%20the%20income%20tax%20return%20you%20filed%20with%20that%20state%20or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.174999999999992,"y":12.337499999999997,"w":76.93440000000002,"clr":-1,"A":"left","R":[{"T":"foreign%20country.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.318749999999992,"y":13.3125,"w":4,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":6.865624999999992,"y":13.3125,"w":228.2815999999999,"clr":-1,"A":"left","R":[{"T":"You%20must%20complete%20a%20separate%20IA%20130%20for%20each","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.174999999999992,"y":14.0625,"w":244.17499999999995,"clr":-1,"A":"left","R":[{"T":"state%20or%20foreign%20country.%20Separate%20IA%20130s%20are%20not","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.174999999999992,"y":14.8125,"w":242.96500000000006,"clr":-1,"A":"left","R":[{"T":"required%20for%20foreign%20taxes%20paid%20by%20mutual%20funds%20or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.174999999999992,"y":15.5625,"w":190.7667,"clr":-1,"A":"left","R":[{"T":"other%20regulated%20investment%20companies.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":58.22187499999999,"y":16.575000000000003,"w":244.5264999999999,"clr":-1,"A":"left","R":[{"T":"Name%20of%20State%20%2F%20Country%20that%20taxed%20income%20also%20taxed%20by","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":58.22187499999999,"y":17.250000000000004,"w":23.3495,"clr":-1,"A":"left","R":[{"T":"Iowa%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":58.36074999999999,"y":18.435000000000002,"w":177.38129999999998,"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%20Spouse%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20You%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.73625,"y":5.955000000000003,"w":210.2248000000001,"clr":-1,"A":"left","R":[{"T":"Enclose%20the%20following%20with%20your%20Iowa%20return%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":58.160000000000004,"y":7.079999999999998,"w":3.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":59.624375,"y":7.079999999999998,"w":96.05919999999999,"clr":-1,"A":"left","R":[{"T":"This%20schedule%3A%20IA%20130","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":58.160000000000004,"y":8.204999999999998,"w":3.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":59.624375,"y":8.204999999999998,"w":224.6852000000001,"clr":-1,"A":"left","R":[{"T":"The%20income%20tax%20return%20you%20filed%20with%20the%20other%20state","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":58.160000000000004,"y":9.329999999999998,"w":3.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":59.624375,"y":9.329999999999998,"w":240.83820000000026,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20claiming%20the%20credit%20for%20taxes%20paid%20to%20a%20foreign","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":59.37687499999999,"y":10.454999999999998,"w":250.2160000000002,"clr":-1,"A":"left","R":[{"T":"country%2C%20include%20federal%20form%201116%2C%20Foreign%20Tax%20Credit%2C%20if","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":59.37687499999999,"y":11.579999999999998,"w":162.35200000000006,"clr":-1,"A":"left","R":[{"T":"it%20is%20required%20with%20your%20federal%20return.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":57.21124999999999,"y":12.704999999999998,"w":254.12439999999987,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20assessed%20a%20minimum%20tax%20or%20a%20special%20tax%20on%20a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":57.21124999999999,"y":13.829999999999998,"w":256.31399999999985,"clr":-1,"A":"left","R":[{"T":"lump-sum%20distribution%20by%20another%20state%2C%20see%20our%20Expanded","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":57.21124999999999,"y":14.954999999999998,"w":209.5384,"clr":-1,"A":"left","R":[{"T":"Instructions%20on%20our%20Web%20site%2C%20www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":12.7025,"y":1.770000000000001,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":12.578750000000001,"y":0.8549999999999993,"w":136.51319999999998,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.421875,"y":3.6450000000000005,"w":181.8953,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20page%201%20of%20the%20IA%201040","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":80.49000000000001,"y":3.6450000000000005,"w":104.6792,"clr":-1,"A":"left","R":[{"T":"%20%20Social%20Security%20Number","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":72.55625000000002,"y":32.28,"w":51.244800000000005,"clr":-1,"A":"left","R":[{"T":"Column%20B","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":88.99520000000003,"y":32.28,"w":51.244800000000005,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":73.79375000000002,"y":33.03,"w":36.7072,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":71.23625,"y":33.78,"w":66.5326,"clr":-1,"A":"left","R":[{"T":"Status%203%20Only","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":88.293125,"y":33.78,"w":59.384,"clr":-1,"A":"left","R":[{"T":"You%20or%20Joint","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":3.792671874999993,"y":34.005,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772671874999992,"y":34.005,"w":151.6836,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20gross%20income%20you%20received%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.090171874999996,"y":34.005,"w":135.19740000000004,"clr":-1,"A":"left","R":[{"T":"while%20you%20were%20an%20Iowa%20resident","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.855171874999994,"y":34.830000000000005,"w":266.9564999999999,"clr":-1,"A":"left","R":[{"T":"that%20was%20taxed%20by%20Iowa%20and%20taxed%20by%20the%20other%20state%2Fforeign%20country","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":52.63249999999999,"y":34.830000000000005,"w":81.34080000000004,"clr":-1,"A":"left","R":[{"T":".....................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82249999999999,"y":34.830000000000005,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88499999999999,"y":34.830000000000005,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312499999999,"y":34.830000000000005,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.694375,"y":34.830000000000005,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625,"y":34.830000000000005,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.792499999999997,"y":35.655,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772499999999996,"y":35.655,"w":257.60799999999995,"clr":-1,"A":"left","R":[{"T":"Gross%20taxable%20income%20for%20part-year%20residents%20from%20line%2015%2C%20IA%20126","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":50.755625,"y":35.655,"w":92.3832000000001,"clr":-1,"A":"left","R":[{"T":"..........................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.8225,"y":35.655,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.885,"y":35.655,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.013125,"y":35.655,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000001,"y":35.655,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000001,"y":35.655,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000164,"y":36.48,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000016,"y":36.48,"w":285.85630000000015,"clr":-1,"A":"left","R":[{"T":"Divide%20line%201%20by%20line%202%20and%20enter%20the%20percentage.%20Do%20not%20exceed%20100.0%25.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":55.664375000000014,"y":36.48,"w":63.82029999999998,"clr":-1,"A":"left","R":[{"T":".............................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000002,"y":36.48,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000002,"y":36.48,"w":84.61080000000001,"clr":-1,"A":"left","R":[{"T":"___________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.85875000000001,"y":36.48,"w":7.112,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000002,"y":36.48,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":99.82250000000002,"y":36.48,"w":7.112,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000164,"y":37.305,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000016,"y":37.305,"w":247.44800000000006,"clr":-1,"A":"left","R":[{"T":"Tax%20from%20line%2054%2C%20IA%201040%2C%20less%20lump-sum%20tax%20and%20minimum%20tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":49.229375000000026,"y":37.305,"w":101.14020000000006,"clr":-1,"A":"left","R":[{"T":"..............................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000002,"y":37.305,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000002,"y":37.305,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000003,"y":37.305,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000002,"y":37.305,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000003,"y":37.305,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.792500000000036,"y":38.129999999999995,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.7725000000000355,"y":38.129999999999995,"w":168.62720000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%20the%20percentage%20on%20line%203.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.24562500000004,"y":38.129999999999995,"w":182.63320000000013,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000005,"y":38.129999999999995,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000005,"y":38.129999999999995,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000004,"y":38.129999999999995,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000005,"y":38.129999999999995,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000005,"y":38.129999999999995,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000555,"y":38.95499999999999,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000055,"y":38.95499999999999,"w":234.43600000000015,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20imposed%20by%20the%20other%20state%20or%20foreign%20country.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":46.96062500000005,"y":38.95499999999999,"w":114.34279999999993,"clr":-1,"A":"left","R":[{"T":"....................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000006,"y":38.95499999999999,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000006,"y":38.95499999999999,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000006,"y":38.95499999999999,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000005,"y":38.95499999999999,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000005,"y":38.95499999999999,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000555,"y":39.779999999999994,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000055,"y":39.779999999999994,"w":315.15200000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20gross%20income%20taxed%20by%20the%20other%20state%2Fforeign%20country.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":60.94437500000005,"y":39.779999999999994,"w":32.97749999999999,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000006,"y":39.779999999999994,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000006,"y":39.779999999999994,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000006,"y":39.779999999999994,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000005,"y":39.779999999999994,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000005,"y":39.779999999999994,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000555,"y":40.605,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000055,"y":40.605,"w":285.85630000000015,"clr":-1,"A":"left","R":[{"T":"Divide%20line%201%20by%20line%207%20and%20enter%20the%20percentage.%20Do%20not%20exceed%20100.0%25.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":55.66437500000005,"y":40.605,"w":63.82029999999998,"clr":-1,"A":"left","R":[{"T":".............................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000006,"y":40.605,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000006,"y":40.605,"w":84.61080000000001,"clr":-1,"A":"left","R":[{"T":"___________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.85875000000006,"y":40.605,"w":7.112,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000005,"y":40.605,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":99.82250000000008,"y":40.605,"w":7.112,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000555,"y":41.43,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000055,"y":41.43,"w":168.62720000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20the%20percentage%20on%20line%208.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.24562500000006,"y":41.43,"w":182.63320000000013,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000008,"y":41.43,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000008,"y":41.43,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000007,"y":41.43,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000006,"y":41.43,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000008,"y":41.43,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.1118750000000692,"y":42.254999999999995,"w":12.441200000000002,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.916875000000069,"y":42.254999999999995,"w":282.1214,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20SMALLER%20of%20lines%205%20or%209.%20This%20is%20your%20Out-of-state%20Tax%20Credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.855000000000069,"y":43.07999999999999,"w":150.43540000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20this%20amount%20on%20line%2062%2C%20IA%201040.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.213750000000076,"y":43.07999999999999,"w":193.5471999999998,"clr":-1,"A":"left","R":[{"T":"........................................................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":65.99750000000007,"y":43.07999999999999,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000008,"y":43.07999999999999,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000007,"y":43.07999999999999,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000008,"y":43.07999999999999,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000008,"y":43.07999999999999,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.46750000000002,"y":39.0525,"w":12.538,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":85.46750000000002,"y":39.862500000000004,"w":12.538,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":85.46750000000002,"y":34.875,"w":12.538,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":73.13375,"y":21.022499999999997,"w":51.244800000000005,"clr":-1,"A":"left","R":[{"T":"Column%20B","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":89.469575,"y":21.022499999999997,"w":51.244800000000005,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":74.35062500000001,"y":21.772499999999997,"w":36.7072,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":71.81375000000001,"y":22.522499999999997,"w":66.5326,"clr":-1,"A":"left","R":[{"T":"Status%203%20Only","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":88.76750000000001,"y":22.522499999999997,"w":59.384,"clr":-1,"A":"left","R":[{"T":"You%20or%20Joint","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":3.1118750000000106,"y":21.99,"w":61.209199999999996,"clr":-1,"A":"left","R":[{"T":"SECTION%20I%20%E2%80%93%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.610000000000012,"y":21.99,"w":25.4044,"clr":-1,"A":"left","R":[{"T":"FULL","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":18.00312500000001,"y":21.99,"w":149.87749999999997,"clr":-1,"A":"left","R":[{"T":"-YEAR%20IOWA%20RESIDENTS%20ONLY","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000093,"y":23.625000000000004,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000009,"y":23.625000000000004,"w":259.9700000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20gross%20income%20you%20received%20that%20was%20taxed%20by%20Iowa%20and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.5043750000000085,"y":24.225000000000005,"w":156.08399999999997,"clr":-1,"A":"left","R":[{"T":"taxed%20by%20the%20other%20state%2Fforeign%20country","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.976875000000014,"y":24.225000000000005,"w":195.8266999999999,"clr":-1,"A":"left","R":[{"T":".........................................................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.8225,"y":24.225000000000005,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.885,"y":24.225000000000005,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.013125,"y":24.225000000000005,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000001,"y":24.225000000000005,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000001,"y":24.225000000000005,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000164,"y":25.05,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000016,"y":25.05,"w":224.03919999999997,"clr":-1,"A":"left","R":[{"T":"Gross%20taxable%20income%20for%20residents%20from%20line%2015%2C%20IA%201040","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":45.08375000000002,"y":25.05,"w":125.38859999999994,"clr":-1,"A":"left","R":[{"T":".........................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000002,"y":25.05,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000002,"y":25.05,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000003,"y":25.05,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000002,"y":25.05,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000003,"y":25.05,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.792500000000036,"y":25.875000000000004,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.7725000000000355,"y":25.875000000000004,"w":285.85630000000015,"clr":-1,"A":"left","R":[{"T":"Divide%20line%201%20by%20line%202%20and%20enter%20the%20percentage.%20Do%20not%20exceed%20100.0%25.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":55.664375000000035,"y":25.875000000000004,"w":63.82029999999998,"clr":-1,"A":"left","R":[{"T":".............................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000003,"y":25.875000000000004,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000003,"y":25.875000000000004,"w":84.61080000000001,"clr":-1,"A":"left","R":[{"T":"___________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.85875000000004,"y":25.875000000000004,"w":7.112,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000004,"y":25.875000000000004,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":99.82250000000005,"y":25.875000000000004,"w":7.112,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.792500000000036,"y":26.700000000000003,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.7725000000000355,"y":26.700000000000003,"w":246.98999999999998,"clr":-1,"A":"left","R":[{"T":"Tax%20from%20line%2054%2C%20IA%201040%2C%20less%20lump%20sum%20tax%20and%20minimum%20tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":48.85812500000004,"y":26.700000000000003,"w":103.42350000000008,"clr":-1,"A":"left","R":[{"T":"...............................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000003,"y":26.700000000000003,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000003,"y":26.700000000000003,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000004,"y":26.700000000000003,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000004,"y":26.700000000000003,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000003,"y":26.700000000000003,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.792500000000036,"y":27.525000000000002,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.7725000000000355,"y":27.525000000000002,"w":168.62720000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%20the%20percentage%20on%20line%203.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.24562500000004,"y":27.525000000000002,"w":182.63320000000013,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000005,"y":27.525000000000002,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000005,"y":27.525000000000002,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000004,"y":27.525000000000002,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000005,"y":27.525000000000002,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000005,"y":27.525000000000002,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000555,"y":28.350000000000005,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000055,"y":28.350000000000005,"w":234.43600000000015,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20imposed%20by%20the%20other%20state%20or%20foreign%20country.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":46.96062500000005,"y":28.350000000000005,"w":114.34279999999993,"clr":-1,"A":"left","R":[{"T":"....................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000006,"y":28.350000000000005,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000006,"y":28.350000000000005,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000006,"y":28.350000000000005,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000005,"y":28.350000000000005,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000005,"y":28.350000000000005,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.7925000000000555,"y":29.175,"w":7.489000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.772500000000055,"y":29.175,"w":284.6871999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20SMALLER%20of%20lines%205%20or%206.%20This%20is%20your%20Out-of-state%20Tax%20Credit.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.504375000000055,"y":30,"w":150.37460000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20this%20amount%20on%20line%2062%2C%20IA%201040.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.21375000000006,"y":30,"w":200.1545,"clr":-1,"A":"left","R":[{"T":"...........................................................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.82250000000008,"y":30,"w":7.729000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.88500000000008,"y":30,"w":80.0442,"clr":-1,"A":"left","R":[{"T":"__________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":83.01312500000007,"y":30,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.69437500000006,"y":30,"w":75.60580000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":98.95625000000008,"y":30,"w":12.621200000000002,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":85.46750000000002,"y":28.4025,"w":12.538,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":85.46750000000002,"y":24.2925,"w":12.538,"clr":-1,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":19.350000000000005,"w":164.49800000000008,"clr":-1,"A":"left","R":[{"T":"Shareholders%20of%20S%20corporations","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":30.6909375,"y":19.350000000000005,"w":132.61750000000006,"clr":-1,"A":"left","R":[{"T":"%20who%20have%20income%20from%20the","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":20.100000000000005,"w":312.2514,"clr":-1,"A":"left","R":[{"T":"corporation%20that%20was%20apportioned%20outside%20Iowa%20and%20not%20taxed%20by","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":20.850000000000005,"w":26.401500000000006,"clr":-1,"A":"left","R":[{"T":"Iowa%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":7.360625000000001,"y":20.850000000000005,"w":35.781800000000004,"clr":-1,"A":"left","R":[{"T":"cannot","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":13.249062499999999,"y":20.850000000000005,"w":213.24249999999995,"clr":-1,"A":"left","R":[{"T":"%20claim%20an%20out-of-state%20credit%20on%20this%20income.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":3.297499999999999,"y":32.28,"w":63.96719999999999,"clr":-1,"A":"left","R":[{"T":"SECTION%20II%20%E2%80%93%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":14.290625,"y":32.28,"w":27.087199999999996,"clr":-1,"A":"left","R":[{"T":"PART","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":18.951875,"y":32.28,"w":149.87749999999997,"clr":-1,"A":"left","R":[{"T":"-YEAR%20IOWA%20RESIDENTS%20ONLY","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":16.8150625,"w":33.624,"clr":-1,"A":"left","R":[{"T":"NOTE%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":8.376578125000002,"y":16.8150625,"w":268.3495999999999,"clr":-1,"A":"left","R":[{"T":"%20The%20credit%20or%20portion%20of%20the%20credit%20must%20not%20exceed%20the","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":17.5650625,"w":303.7134,"clr":-1,"A":"left","R":[{"T":"amount%20of%20the%20Iowa%20tax%20imposed%20on%20the%20same%20income%20that%20was","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":2.8437500000000004,"y":18.3150625,"w":210.0648,"clr":-1,"A":"left","R":[{"T":"taxed%20by%20the%20other%20state%20or%20foreign%20country.","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Names","EN":0},"TI":356,"AM":0,"x":5.830739062500001,"y":4.713583333333332,"w":71.39974531250002,"h":1.0119791666666724},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1","EN":0},"TI":357,"AM":0,"x":77.530578125,"y":4.711895833333339,"w":24.026578125000004,"h":1.0169791666666583},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SpouseState","EN":0},"TI":358,"AM":0,"x":75.4661875,"y":18.21625,"w":9.307531249999997,"h":0.9528125000000026,"PL":{"V":[" ","AL","AK","AR","AS","AZ","CA","CO","CT","DE","DC","FL","FM","GA","GU","HI","ID","IL","IN","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","MP","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","Alabama","Alaska","Arkansas","American Samoa","Arizona","California","Colorado","Connecticut","Delaware","District of Columbia","Florida","Federated States of Micronesia","Georgia","Guam","Hawaii","Idaho","Illinois","Indiana","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","Northern Marianas","Ohio","Oklahoma","Oregon","Palau","Pennsylvania","Puerto Rico","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Virginia","Virgin Islands","Vermont","Washington","West Virginia","Wisconsin","Wyoming","Armed Forces the Americas","Armed Forces Europe","Armed Forces Pacific"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YouState","EN":0},"TI":359,"AM":0,"x":90.402125,"y":18.1315,"w":9.307703125000005,"h":0.9528125000000026,"PL":{"V":[" ","AL","AK","AR","AS","AZ","CA","CO","CT","DE","DC","FL","FM","GA","GU","HI","ID","IL","IN","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","MP","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VA","VI","VT","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","Alabama","Alaska","Arkansas","American Samoa","Arizona","California","Colorado","Connecticut","Delaware","District of Columbia","Florida","Federated States of Micronesia","Georgia","Guam","Hawaii","Idaho","Illinois","Indiana","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","Northern Marianas","Ohio","Oklahoma","Oregon","Palau","Pennsylvania","Puerto Rico","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Virginia","Virgin Islands","Vermont","Washington","West Virginia","Wisconsin","Wyoming","Armed Forces the Americas","Armed Forces Europe","Armed Forces Pacific"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_1S","EN":0},"TI":360,"AM":0,"x":69.282984375,"y":24.303375,"w":13.713734375000012,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_1Y","EN":0},"TI":361,"AM":0,"x":87.98917187500001,"y":24.2843125,"w":10.946374999999993,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_2S","EN":0},"TI":362,"AM":0,"x":69.2883125,"y":25.063625,"w":13.705656250000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_2Y","EN":0},"TI":363,"AM":0,"x":87.98384375,"y":25.104625,"w":10.957031249999988,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_3S","EN":0},"TI":364,"AM":0,"x":69.27490625,"y":25.887874999999998,"w":13.724562500000017,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_3Y","EN":0},"TI":365,"AM":0,"x":87.98917187500001,"y":25.928875,"w":10.942249999999985,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_4S","EN":0},"TI":366,"AM":0,"x":69.27490625,"y":26.713062499999996,"w":13.72868750000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_4Y","EN":0},"TI":367,"AM":0,"x":87.98521875,"y":26.7555,"w":10.950328125000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_5S","EN":0},"TI":368,"AM":0,"x":69.29106250000001,"y":27.53725,"w":13.712359374999993,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_5Y","EN":0},"TI":369,"AM":0,"x":87.991921875,"y":27.5768125,"w":10.940875000000018,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_6S","EN":0},"TI":370,"AM":0,"x":69.2835,"y":28.360937499999995,"w":13.709781250000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_6Y","EN":0},"TI":371,"AM":0,"x":87.98521875,"y":28.4039375,"w":10.950328125000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_7S","EN":0},"TI":372,"AM":0,"x":69.29106250000001,"y":30.094875,"w":13.704281250000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1_7Y","EN":0},"TI":373,"AM":0,"x":87.98521875,"y":30.0894375,"w":10.955656249999993,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_1S","EN":0},"TI":374,"AM":0,"x":69.296390625,"y":34.8585625,"w":13.700328125000016,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_1Y","EN":0},"TI":375,"AM":0,"x":88.09246875000001,"y":34.868375,"w":10.945171875000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_2S","EN":0},"TI":376,"AM":0,"x":69.29106250000001,"y":35.671625,"w":13.704281250000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_2Y","EN":0},"TI":377,"AM":0,"x":88.103296875,"y":35.6730625,"w":10.938125000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_3S","EN":0},"TI":378,"AM":0,"x":69.29106250000001,"y":36.5001875,"w":13.704281250000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_3Y","EN":0},"TI":379,"AM":0,"x":88.09659375000001,"y":36.5001875,"w":10.95032812499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_4S","EN":0},"TI":380,"AM":0,"x":69.28573437500002,"y":37.3225,"w":13.713734375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_4Y","EN":0},"TI":381,"AM":0,"x":88.09659375000001,"y":37.324000000000005,"w":10.936921874999994,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_5S","EN":0},"TI":382,"AM":0,"x":69.28573437500002,"y":38.14775,"w":13.713734375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_5Y","EN":0},"TI":383,"AM":0,"x":88.09934375,"y":38.1471875,"w":10.942078125000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_6S","EN":0},"TI":384,"AM":0,"x":69.28023437499999,"y":38.972812499999996,"w":13.727312500000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_6Y","EN":0},"TI":385,"AM":0,"x":88.09659375000001,"y":38.9709375,"w":10.947578124999977,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_7S","EN":0},"TI":386,"AM":0,"x":69.2855625,"y":39.7975625,"w":13.709953124999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_7Y","EN":0},"TI":387,"AM":0,"x":88.097796875,"y":39.7975,"w":10.941046875000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_8S","EN":0},"TI":388,"AM":0,"x":69.29106250000001,"y":40.6218125,"w":13.707031250000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_8Y","EN":0},"TI":389,"AM":0,"x":88.09917187500001,"y":40.624249999999996,"w":10.949124999999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_9S","EN":0},"TI":390,"AM":0,"x":69.28023437499999,"y":41.448437500000004,"w":13.715281250000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_9Y","EN":0},"TI":391,"AM":0,"x":88.09659375000001,"y":41.448437500000004,"w":10.954453124999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_10S","EN":0},"TI":392,"AM":0,"x":69.29106250000001,"y":43.10274999999999,"w":13.700328125000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2_10Y","EN":0},"TI":393,"AM":0,"x":88.09659375000001,"y":43.103375,"w":11.01426562499999,"h":0.8333333333333334}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_148.content.txt b/test/data/ia/form/ia_scr_148.content.txt new file mode 100644 index 00000000..1f1de4ff --- /dev/null +++ b/test/data/ia/form/ia_scr_148.content.txt @@ -0,0 +1,126 @@ +Part I — Nonrefundable Credits + A B +C +D +E +F +G +H + Tax +Certificate +Amount Carried +Current Year +Total Credit +Amount +Expired +Amount Carried +Credit +Number +Forward From +Amount (earned by +Available +Applied Current Year +Credit +Forward to +Code +(if applicable) +Prior Years +taxpayer or received +(C+D=E) +(may not exceed +Amount +Future Years + (see instr.) +from pass-through +total tax liability) +(E-F-G=H) + entity) + 1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +www.iowa.gov/tax +Iowa Department of Revenue +2012 IA 148 Tax Credits Schedule +Part I Total +(Sum of column F; +enter amount on line 53 of IA 1040, +line 10, of IA 1040C, or line 2 of +schedule C1 of IA + 1 +120 or line 13 +of IA + 1 +120A) +Part III — Total Credits +(Does not apply to individual income tax) +(Sum of +T +otals Part I and Part II; +enter amount on line 17 + of IA + 1 +120F +, line 30 of +IA 1041, or the miscellaneous line of the Iowa +Insurance Premium +T +ax Return) +Part II — Refundable Credits +I +J +K + +Tax +Certificate Number +Current Year Amount + Credit +(if applicable) +(earned by taxpayer or + Code +received from pass-through entity) + (see instr.) +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +Part II Total +(Sum of column K; enter amount +on line 66 of IA 1040, line 14 of IA 1040C, or line 3 +of schedule C1 of IA + 1 +120 or line 14 of IA + 1 +120A) +41-148a (08/30/12) +Name(s) +SSN or FEIN +Part IV — Pass -Through Entity Schedule +L +M +N +O +Line Number +Pass-Through Entity +Pass-Through Entity +Taxpayer’s Percentage Share +from Part I or +Name +FEIN + of Credit Earned +Part II Above +by Pass-Through Entity + +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_148.fields.json b/test/data/ia/form/ia_scr_148.fields.json new file mode 100644 index 00000000..e3b4a8f2 --- /dev/null +++ b/test/data/ia/form/ia_scr_148.fields.json @@ -0,0 +1 @@ +[{"id":"Names","type":"alpha","calc":false,"value":""},{"id":"SSN_or_FEIN","type":"ssn","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr1","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable1","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years1","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity1","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE1","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability1","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount1","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years1","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr2","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable2","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years2","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity2","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE2","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability2","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount2","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years2","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr3","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable3","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years3","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity3","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE3","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability3","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount3","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years3","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr4","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable4","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years4","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity4","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE4","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability4","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount4","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years4","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr5","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable5","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years5","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity5","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE5","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability5","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount5","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years5","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr6","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable6","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years6","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity6","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE6","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability6","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount6","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years6","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr7","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable7","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years7","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity7","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE7","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability7","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount7","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years7","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr8","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable8","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years8","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity8","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE8","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability8","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount8","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years8","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr9","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable9","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years9","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity9","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE9","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability9","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount9","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years9","type":"number","calc":false,"value":""},{"id":"A_Tax_Credit_Code_see_instr10","type":"alpha","calc":false,"value":""},{"id":"B_Certificate_Number_if_applicable10","type":"alpha","calc":false,"value":""},{"id":"C_Amount_Carried_Forward_From_Prior_Years10","type":"number","calc":false,"value":""},{"id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity10","type":"number","calc":false,"value":""},{"id":"E_Total_Credit_Available_CDE10","type":"number","calc":false,"value":""},{"id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability10","type":"number","calc":false,"value":""},{"id":"G_Expired_Credit_Amount10","type":"number","calc":false,"value":""},{"id":"Amount_Carried_Forward_Future_Years10","type":"number","calc":false,"value":""},{"id":"Part_I_Total_Sum_of_column_F","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code11","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable11","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity11","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code12","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable12","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity12","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code13","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable13","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity13","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code14","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable14","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity14","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code15","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable15","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity15","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code16","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable16","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity16","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code17","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable17","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity17","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code18","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable18","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity18","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code19","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable19","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity19","type":"number","calc":false,"value":""},{"id":"I_Tax_Credit_Code20","type":"alpha","calc":false,"value":""},{"id":"J_Certificate_Number_if_applicable20","type":"alpha","calc":false,"value":""},{"id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity20","type":"number","calc":false,"value":""},{"id":"K_Total_Current_Year_Amount","type":"number","calc":false,"value":""},{"id":"Does_not_apply_to_individual_income_tax","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow1","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name1","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN1","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow1","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow2","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name2","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN2","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow2","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow3","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name3","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN3","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow3","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow4","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name4","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN4","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow4","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow5","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name5","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN5","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow5","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow6","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name6","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN6","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow6","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow7","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name7","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN7","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow7","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow8","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name8","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN8","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow8","type":"number","calc":false,"value":""},{"id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow9","type":"alpha","calc":false,"value":""},{"id":"M_Pass_Through_Entity_Name9","type":"alpha","calc":false,"value":""},{"id":"N_Pass_Through_Entity_FEIN9","type":"zip","calc":false,"value":""},{"id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow9","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_148.json b/test/data/ia/form/ia_scr_148.json new file mode 100755 index 00000000..d888c3cc --- /dev/null +++ b/test/data/ia/form/ia_scr_148.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"41148 (IA 148).pmd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":3.712500000000001,"y":5.835000625000002,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":10.3125,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":11.212499999999997,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":12.112499999999997,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":13.012500000000003,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":13.912500000000003,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":14.8125,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":15.712499999999997,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":16.612499999999997,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":17.5125,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":18.435000625,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":26.709375000000005,"y":2.748748749999995,"w":3.06,"l":74.76562500000001},{"oc":"#2b2e34","x":10.477534375000001,"y":2.8950012499999977,"w":0.7200000000000001,"l":90.99746562500002},{"oc":"#2b2e34","x":62.63468750000002,"y":21.101874999999996,"w":3.06,"l":12.746215624999998},{"oc":"#2b2e34","x":62.63468750000002,"y":19.945012499999994,"w":3.06,"l":12.746215624999998},{"oc":"#2b2e34","x":3.712500000000001,"y":19.814999375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":23.227499374999997,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":24.127499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":25.027499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":25.927499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":26.827499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":27.727499374999997,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":28.627499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":29.527499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":30.427499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":31.327499375,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":3.712500000000001,"y":32.25,"w":1.4400000000000002,"l":57.89437500000002},{"oc":"#2b2e34","x":36.51828125000001,"y":33.42375,"w":3.06,"l":24.992171875000007},{"oc":"#2b2e34","x":36.51828125000001,"y":32.266887499999996,"w":3.06,"l":24.992171875000007},{"oc":"#2b2e34","x":64.95671875000002,"y":30.838749999999994,"w":1.4400000000000002,"l":34.966250000000024},{"oc":"#2b2e34","x":64.95671875000002,"y":24.042499999999993,"w":1.4400000000000002,"l":34.966250000000024},{"oc":"#2b2e34","x":70.36906250000001,"y":27.23625,"w":3.06,"l":23.239218749999996},{"oc":"#2b2e34","x":70.36906250000001,"y":26.079387499999996,"w":3.06,"l":23.239218749999996},{"oc":"#2b2e34","x":3.712500000000001,"y":3.1200012500000014,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":4.860000624999998,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":34.852499375,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":37.589999999999996,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":38.3775,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":39.1725,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":39.96,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":40.755,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":41.5425,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":42.3375,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":43.125,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":43.9125,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":44.70749375,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":9.524999999999997,"w":1.4400000000000002,"l":97.76250000000003}],"VLines":[{"oc":"#2b2e34","x":50.675623281250004,"y":34.9125,"w":1.4400000000000002,"l":9.802487499999998},{"oc":"#2b2e34","x":15.097534375,"y":34.875,"w":1.4400000000000002,"l":9.809987499999997},{"oc":"#2b2e34","x":77.13750000000002,"y":34.875,"w":1.4400000000000002,"l":9.839987499999998},{"oc":"#2b2e34","x":101.5574965625,"y":34.875,"w":1.4400000000000002,"l":9.734987499999997},{"oc":"#2b2e34","x":3.712500000000001,"y":34.8375,"w":1.4400000000000002,"l":9.772487500000006},{"oc":"#2b2e34","x":50.180626718750005,"y":5.857501250000003,"w":1.4400000000000002,"l":12.600000000000001},{"oc":"#2b2e34","x":36.939375000000005,"y":5.850000000000004,"w":1.4400000000000002,"l":12.570000000000002},{"oc":"#2b2e34","x":23.739375000000003,"y":5.872500625000005,"w":1.4400000000000002,"l":12.547500000000001},{"oc":"#2b2e34","x":62.24625171875,"y":5.850000000000004,"w":1.4400000000000002,"l":12.540000000000001},{"oc":"#2b2e34","x":3.7950171875000005,"y":5.850000000000004,"w":1.4400000000000002,"l":12.645000000000003},{"oc":"#2b2e34","x":75.59062500000002,"y":5.857501250000003,"w":1.4400000000000002,"l":12.562500000000002},{"oc":"#2b2e34","x":88.54312671875002,"y":5.850000000000004,"w":1.4400000000000002,"l":12.570000000000002},{"oc":"#2b2e34","x":101.5574965625,"y":5.9100006249999995,"w":1.4400000000000002,"l":12.51},{"oc":"#2b2e34","x":12.045017187500001,"y":5.835000625000002,"w":1.4400000000000002,"l":12.555000000000001},{"oc":"#2b2e34","x":75.38090312500002,"y":19.945012499999994,"w":3.06,"l":1.1568625000000026},{"oc":"#2b2e34","x":62.63468750000002,"y":19.945012499999994,"w":3.06,"l":1.1568625000000026},{"oc":"#2b2e34","x":36.46500171875,"y":19.785000625,"w":1.4400000000000002,"l":12.487500000000002},{"oc":"#2b2e34","x":12.210034375000001,"y":19.82999875,"w":1.4400000000000002,"l":12.405000000000001},{"oc":"#2b2e34","x":61.627501718750004,"y":19.792498750000004,"w":1.4400000000000002,"l":12.465000000000003},{"oc":"#2b2e34","x":3.7950171875000005,"y":19.822500625,"w":1.4400000000000002,"l":12.4125},{"oc":"#2b2e34","x":61.51045312500001,"y":32.266887499999996,"w":3.06,"l":1.1568625000000026},{"oc":"#2b2e34","x":36.51828125000001,"y":32.266887499999996,"w":3.06,"l":1.1568625000000026},{"oc":"#2b2e34","x":99.92296875000004,"y":24.042499999999993,"w":1.4400000000000002,"l":6.796250000000001},{"oc":"#2b2e34","x":64.95671875000002,"y":24.042499999999993,"w":1.4400000000000002,"l":6.796250000000001},{"oc":"#2b2e34","x":93.60828125000002,"y":26.079387499999996,"w":3.06,"l":1.1568625000000026},{"oc":"#2b2e34","x":70.36906250000001,"y":26.079387499999996,"w":3.06,"l":1.1568625000000026},{"oc":"#2b2e34","x":59.02874828125,"y":3.1124999999999923,"w":1.4400000000000002,"l":1.6500000000000004},{"oc":"#2b2e34","x":6.022534375,"y":5.872500625000005,"w":1.4400000000000002,"l":12.600000000000001}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":3.462500000000001,"y":4.784999999999997,"w":163.58,"clr":-1,"A":"left","R":[{"T":"Part%20I%20%E2%80%94%20Nonrefundable%20Credits","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":7.319375000000001,"y":5.7299999999999995,"w":9.82,"clr":-1,"A":"left","R":[{"T":"%20A","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":16.915156250000003,"y":5.7299999999999995,"w":6.72,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":29.346874999999997,"y":5.7299999999999995,"w":7.22,"clr":-1,"A":"left","R":[{"T":"C","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":42.299375000000005,"y":5.7299999999999995,"w":7.22,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":55.478750000000005,"y":5.7299999999999995,"w":6.62,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":68.28687500000001,"y":5.7299999999999995,"w":6.11,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":81.30125000000001,"y":5.7299999999999995,"w":7.680000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":93.86187500000003,"y":5.7299999999999995,"w":7.78,"clr":-1,"A":"left","R":[{"T":"H","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":6.7083593750000095,"y":6.4799999999999995,"w":13.9195,"clr":-1,"A":"left","R":[{"T":"%20Tax","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":14.641250000000008,"y":6.4799999999999995,"w":31.973,"clr":-1,"A":"left","R":[{"T":"Certificate","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":25.69625000000001,"y":6.4799999999999995,"w":50.050200000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20Carried","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":39.411875000000016,"y":6.4799999999999995,"w":40.95140000000001,"clr":-1,"A":"left","R":[{"T":"Current%20Year","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":52.90062500000002,"y":6.4799999999999995,"w":37.0898,"clr":-1,"A":"left","R":[{"T":"Total%20Credit","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":66.71937500000003,"y":6.4799999999999995,"w":24.2838,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":79.89875000000002,"y":6.4799999999999995,"w":24.0605,"clr":-1,"A":"left","R":[{"T":"Expired","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":90.27312500000002,"y":6.4799999999999995,"w":50.050200000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20Carried","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":6.473921875000007,"y":7.087499999999996,"w":18.891299999999998,"clr":-1,"A":"left","R":[{"T":"Credit","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":15.218921875000007,"y":7.087499999999996,"w":25.140599999999996,"clr":-1,"A":"left","R":[{"T":"Number","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":26.15017187500001,"y":7.087499999999996,"w":44.767199999999995,"clr":-1,"A":"left","R":[{"T":"Forward%20From","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":37.74142187500001,"y":7.087499999999996,"w":60.809000000000005,"clr":-1,"A":"left","R":[{"T":"Amount%20(earned%20by","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":53.58142187500001,"y":7.087499999999996,"w":28.86,"clr":-1,"A":"left","R":[{"T":"Available","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":63.110171875000006,"y":7.087499999999996,"w":66.83049999999999,"clr":-1,"A":"left","R":[{"T":"Applied%20Current%20Year","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":80.33204687500002,"y":7.087499999999996,"w":18.891299999999998,"clr":-1,"A":"left","R":[{"T":"Credit","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":91.634546875,"y":7.087499999999996,"w":34.157500000000006,"clr":-1,"A":"left","R":[{"T":"Forward%20to","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":6.659546875000005,"y":7.612499999999997,"w":16.848399999999998,"clr":-1,"A":"left","R":[{"T":"Code","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":13.754546875000004,"y":7.612499999999997,"w":42.719500000000004,"clr":-1,"A":"left","R":[{"T":"(if%20applicable)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":26.892671875000005,"y":7.612499999999997,"w":35.6978,"clr":-1,"A":"left","R":[{"T":"Prior%20Years","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":37.390796875000014,"y":7.612499999999997,"w":64.8805,"clr":-1,"A":"left","R":[{"T":"taxpayer%20or%20received","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":53.64329687500001,"y":7.612499999999997,"w":28.184199999999997,"clr":-1,"A":"left","R":[{"T":"(C%2BD%3DE)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":64.32704687500001,"y":7.612499999999997,"w":52.83200000000001,"clr":-1,"A":"left","R":[{"T":"(may%20not%20exceed","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":79.878296875,"y":7.612499999999997,"w":24.2838,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":91.015796875,"y":7.612499999999997,"w":41.3592,"clr":-1,"A":"left","R":[{"T":"Future%20Years","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":3.3438976562500002,"y":8.144999999999996,"w":48.1357,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20(see%20instr.)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":37.968296875,"y":8.144999999999996,"w":57.93769999999999,"clr":-1,"A":"left","R":[{"T":"from%20pass-through","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":64.45079687500001,"y":8.144999999999996,"w":51.2665,"clr":-1,"A":"left","R":[{"T":"total%20tax%20liability)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":91.67579687500002,"y":8.144999999999996,"w":33.3105,"clr":-1,"A":"left","R":[{"T":"(E-F-G%3DH)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":3.3869953125,"y":8.677499999999995,"w":244.52969999999965,"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%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%20%20%20%20%20%20%20entity)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":3.5013437500000006,"y":9.307499999999996,"w":10.221300000000001,"clr":-1,"A":"left","R":[{"T":"%20%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":10.207500000000001,"w":5.054,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":11.107500000000002,"w":5.054,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":12.007500000000002,"w":5.054,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":12.907499999999999,"w":5.054,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":13.807499999999996,"w":5.054,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":14.707500000000001,"w":5.054,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":15.607500000000002,"w":5.054,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.535,"y":16.507500000000004,"w":5.054,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.50375,"y":17.4075,"w":10.961,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":10.330625000000001,"y":1.9949999999999952,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":10.206875000000002,"y":1.080000000000003,"w":136.51319999999998,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":48.73437500000001,"y":1.7250000000000036,"w":305.7696,"clr":-1,"A":"left","R":[{"T":"2012%20IA%20148%20Tax%20Credits%20Schedule","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":76.124375,"y":19.59,"w":54.74470000000001,"clr":-1,"A":"left","R":[{"T":"Part%20I%20Total%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":85.52937500000002,"y":19.59,"w":75.8434,"clr":-1,"A":"left","R":[{"T":"(Sum%20of%20column%20F%3B","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":76.124375,"y":20.34,"w":144.5,"clr":-1,"A":"left","R":[{"T":"enter%20amount%20on%20line%2053%20of%20IA%201040%2C","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":76.124375,"y":21.09,"w":133.23340000000005,"clr":-1,"A":"left","R":[{"T":"line%2010%2C%20of%20IA%201040C%2C%20or%20line%202%20of","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":76.124375,"y":21.84,"w":73.84920000000001,"clr":-1,"A":"left","R":[{"T":"schedule%20C1%20of%20IA","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":88.72625000000002,"y":21.84,"w":7.619999999999999,"clr":-1,"A":"left","R":[{"T":"%201","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":89.96375000000002,"y":21.84,"w":56.4446,"clr":-1,"A":"left","R":[{"T":"120%20or%20line%2013","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":76.12437500000003,"y":22.59,"w":21.656,"clr":-1,"A":"left","R":[{"T":"of%20IA","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":79.75437500000004,"y":22.59,"w":7.619999999999999,"clr":-1,"A":"left","R":[{"T":"%201","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":80.99187500000004,"y":22.59,"w":25.863,"clr":-1,"A":"left","R":[{"T":"120A)","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":66.74000000000001,"y":24.1275,"w":118.215,"clr":-1,"A":"left","R":[{"T":"Part%20III%20%E2%80%94%20Total%20Credits","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":66.74000000000001,"y":24.9525,"w":181.48450000000005,"clr":-1,"A":"left","R":[{"T":"(Does%20not%20apply%20to%20individual%20income%20tax)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":66.74000000000001,"y":27.3,"w":35.184000000000005,"clr":-1,"A":"left","R":[{"T":"(Sum%20of%20","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":72.76250000000002,"y":27.3,"w":6.1524,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":73.71125,"y":27.3,"w":92.09500000000003,"clr":-1,"A":"left","R":[{"T":"otals%20Part%20I%20and%20Part%20II%3B","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":66.74000000000001,"y":28.05,"w":91.28010000000005,"clr":-1,"A":"left","R":[{"T":"enter%20amount%20on%20line%2017","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":82.435625,"y":28.05,"w":26.544500000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20%20IA","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":86.91125000000001,"y":28.05,"w":7.380000000000001,"clr":-1,"A":"left","R":[{"T":"%201","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":88.14875,"y":28.05,"w":20.666800000000002,"clr":-1,"A":"left","R":[{"T":"120F","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":91.5725,"y":28.05,"w":43.7128,"clr":-1,"A":"left","R":[{"T":"%2C%20line%2030%20of","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":66.74000000000001,"y":28.8,"w":186.62339999999995,"clr":-1,"A":"left","R":[{"T":"IA%201041%2C%20or%20the%20miscellaneous%20line%20of%20the%20Iowa","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":66.74000000000001,"y":29.55,"w":80.77579999999999,"clr":-1,"A":"left","R":[{"T":"Insurance%20Premium%20","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":80.6,"y":29.55,"w":6.1261,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":81.528125,"y":29.55,"w":42.747,"clr":-1,"A":"left","R":[{"T":"ax%20Return)","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":3.4624999999999946,"y":18.757500000000004,"w":148.81580000000002,"clr":-1,"A":"left","R":[{"T":"Part%20II%20%E2%80%94%20Refundable%20Credits","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":7.422500000000001,"y":19.709999999999997,"w":3.8400000000000003,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":21.591875,"y":19.709999999999997,"w":5.05,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":48.033125000000005,"y":19.709999999999997,"w":7.78,"clr":-1,"A":"left","R":[{"T":"K","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":7.154375000000004,"y":20.459999999999997,"w":11.8286,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":16.951250000000005,"y":20.459999999999997,"w":59.0965,"clr":-1,"A":"left","R":[{"T":"Certificate%20Number","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":42.95937500000001,"y":20.459999999999997,"w":66.89920000000001,"clr":-1,"A":"left","R":[{"T":"Current%20Year%20Amount","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":5.628125000000008,"y":21.060000000000002,"w":24.8958,"clr":-1,"A":"left","R":[{"T":"%20%20%20Credit","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":18.39500000000001,"y":21.060000000000002,"w":42.292,"clr":-1,"A":"left","R":[{"T":"(if%20applicable)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":42.58812500000001,"y":21.060000000000002,"w":71.3328,"clr":-1,"A":"left","R":[{"T":"(earned%20by%20taxpayer%20or","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":5.978750000000007,"y":21.5925,"w":20.806599999999996,"clr":-1,"A":"left","R":[{"T":"%20%20Code","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":39.45312500000001,"y":21.5925,"w":107.5658,"clr":-1,"A":"left","R":[{"T":"received%20from%20pass-through%20entity)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":4.040000000000006,"y":22.2225,"w":43.4894,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20(see%20instr.)","S":-1,"TS":[2,11.5,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":23.1225,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":24.015,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":24.915000000000003,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":25.815,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":26.715,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":27.615,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":28.515,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":29.415000000000003,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":30.315,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.648125,"y":31.215,"w":10.3924,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.78000000000001,"y":31.387499999999996,"w":57.5018,"clr":-1,"A":"left","R":[{"T":"Part%20II%20Total%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":72.65937500000001,"y":31.387499999999996,"w":132.733,"clr":-1,"A":"left","R":[{"T":"(Sum%20of%20column%20K%3B%20enter%20amount","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":62.78000000000001,"y":32.137499999999996,"w":214.23419999999993,"clr":-1,"A":"left","R":[{"T":"on%20line%2066%20of%20%20IA%201040%2C%20line%2014%20of%20IA%201040C%2C%20or%20line%203","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":62.78000000000001,"y":32.887499999999996,"w":84.76599999999999,"clr":-1,"A":"left","R":[{"T":"of%20schedule%20C1%20of%20IA","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":77.25875,"y":32.887499999999996,"w":7.619999999999999,"clr":-1,"A":"left","R":[{"T":"%201","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":78.49625,"y":32.887499999999996,"w":80.69000000000003,"clr":-1,"A":"left","R":[{"T":"120%20or%20line%2014%20of%20IA","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":92.27375,"y":32.887499999999996,"w":7.619999999999999,"clr":-1,"A":"left","R":[{"T":"%201","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":93.51125000000003,"y":32.887499999999996,"w":25.863,"clr":-1,"A":"left","R":[{"T":"120A)","S":-1,"TS":[2,13,0,0]}]},{"oc":"#2b2e34","x":89.2625,"y":47.1975,"w":69.3792,"clr":-1,"A":"left","R":[{"T":"41-148a%20(08%2F30%2F12)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":4.32875,"y":3.0150000000000055,"w":43.4071,"clr":-1,"A":"left","R":[{"T":"Name(s)","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":59.15,"y":3.0150000000000055,"w":64.39120000000001,"clr":-1,"A":"left","R":[{"T":"SSN%20or%20FEIN","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":33.794999999999995,"w":211.73530000000002,"clr":-1,"A":"left","R":[{"T":"Part%20IV%20%E2%80%94%20Pass%20-Through%20Entity%20Schedule","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":8.701250000000002,"y":34.7475,"w":6.62,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":31.63625,"y":34.7475,"w":9.59,"clr":-1,"A":"left","R":[{"T":"M","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":62.09920312500001,"y":34.7475,"w":7.22,"clr":-1,"A":"left","R":[{"T":"N","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":87.571078125,"y":34.7475,"w":7.78,"clr":-1,"A":"left","R":[{"T":"O","S":-1,"TS":[2,14,1,0]}]},{"oc":"#2b2e34","x":5.009203124999998,"y":35.4975,"w":49.3888,"clr":-1,"A":"left","R":[{"T":"Line%20Number","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":25.737328125,"y":35.4975,"w":78.31250000000001,"clr":-1,"A":"left","R":[{"T":"Pass-Through%20Entity","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":55.9936875,"y":35.4975,"w":78.31250000000001,"clr":-1,"A":"left","R":[{"T":"Pass-Through%20Entity","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":78.434203125,"y":35.4975,"w":114.18990000000004,"clr":-1,"A":"left","R":[{"T":"Taxpayer%E2%80%99s%20Percentage%20Share","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":4.8854531249999935,"y":36.097500000000004,"w":50.78609999999998,"clr":-1,"A":"left","R":[{"T":"from%20Part%20I%20or","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":30.50170312499999,"y":36.097500000000004,"w":22.844300000000004,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":61.047328125,"y":36.097500000000004,"w":19.627000000000002,"clr":-1,"A":"left","R":[{"T":"FEIN","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":82.600453125,"y":36.097500000000004,"w":65.60300000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20Credit%20Earned","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":4.967953124999997,"y":36.63,"w":50.06280000000001,"clr":-1,"A":"left","R":[{"T":"Part%20II%20Above","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":80.537953125,"y":36.63,"w":89.82990000000002,"clr":-1,"A":"left","R":[{"T":"by%20Pass-Through%20Entity","S":-1,"TS":[0,11.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Names","EN":0},"TI":394,"AM":0,"x":3.795,"y":3.930020833333335,"w":55.06875000000001,"h":0.8399791666666658,"TU":"Name(s)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN_or_FEIN","EN":0},"TI":395,"AM":0,"x":59.214375000000004,"y":3.873874999999998,"w":42.19875,"h":0.8961250000000026,"TU":"SSN or FEIN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr1","EN":0},"TI":396,"AM":0,"x":6.187500000000001,"y":9.584999999999999,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable1","EN":0},"TI":397,"AM":0,"x":12.21,"y":9.584999999999999,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years1","EN":0},"TI":398,"AM":0,"x":23.904375,"y":9.584999999999999,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity1","EN":0},"TI":399,"AM":0,"x":37.104375000000005,"y":9.584999999999999,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE1","EN":0},"TI":400,"AM":0,"x":50.345625000000005,"y":9.584999999999999,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability1","EN":0},"TI":401,"AM":0,"x":62.41125000000001,"y":9.584999999999999,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount1","EN":0},"TI":402,"AM":0,"x":75.75562500000001,"y":9.584999999999999,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years1","EN":0},"TI":403,"AM":0,"x":88.75985937500002,"y":9.622937499999997,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr2","EN":0},"TI":404,"AM":0,"x":6.187500000000001,"y":10.372500000000002,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable2","EN":0},"TI":405,"AM":0,"x":12.21,"y":10.372500000000002,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years2","EN":0},"TI":406,"AM":0,"x":23.904375,"y":10.372500000000002,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity2","EN":0},"TI":407,"AM":0,"x":37.104375000000005,"y":10.372500000000002,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE2","EN":0},"TI":408,"AM":0,"x":50.345625000000005,"y":10.372500000000002,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability2","EN":0},"TI":409,"AM":0,"x":62.41125000000001,"y":10.372500000000002,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount2","EN":0},"TI":410,"AM":0,"x":75.75562500000001,"y":10.372500000000002,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years2","EN":0},"TI":411,"AM":0,"x":88.75985937500002,"y":10.410499999999999,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr3","EN":0},"TI":412,"AM":0,"x":6.187500000000001,"y":11.272499999999999,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable3","EN":0},"TI":413,"AM":0,"x":12.21,"y":11.272499999999999,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years3","EN":0},"TI":414,"AM":0,"x":23.904375,"y":11.272499999999999,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity3","EN":0},"TI":415,"AM":0,"x":37.104375000000005,"y":11.272499999999999,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE3","EN":0},"TI":416,"AM":0,"x":50.345625000000005,"y":11.272499999999999,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability3","EN":0},"TI":417,"AM":0,"x":62.41125000000001,"y":11.272499999999999,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount3","EN":0},"TI":418,"AM":0,"x":75.75562500000001,"y":11.272499999999999,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years3","EN":0},"TI":419,"AM":0,"x":88.75985937500002,"y":11.310437499999997,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr4","EN":0},"TI":420,"AM":0,"x":6.187500000000001,"y":12.1725,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable4","EN":0},"TI":421,"AM":0,"x":12.21,"y":12.1725,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years4","EN":0},"TI":422,"AM":0,"x":23.904375,"y":12.1725,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity4","EN":0},"TI":423,"AM":0,"x":37.104375000000005,"y":12.1725,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE4","EN":0},"TI":424,"AM":0,"x":50.345625000000005,"y":12.1725,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability4","EN":0},"TI":425,"AM":0,"x":62.41125000000001,"y":12.1725,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount4","EN":0},"TI":426,"AM":0,"x":75.75562500000001,"y":12.1725,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years4","EN":0},"TI":427,"AM":0,"x":88.75985937500002,"y":12.210437499999998,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr5","EN":0},"TI":428,"AM":0,"x":6.187500000000001,"y":13.0725,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable5","EN":0},"TI":429,"AM":0,"x":12.21,"y":13.0725,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years5","EN":0},"TI":430,"AM":0,"x":23.904375,"y":13.0725,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity5","EN":0},"TI":431,"AM":0,"x":37.104375000000005,"y":13.0725,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE5","EN":0},"TI":432,"AM":0,"x":50.345625000000005,"y":13.0725,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability5","EN":0},"TI":433,"AM":0,"x":62.41125000000001,"y":13.0725,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount5","EN":0},"TI":434,"AM":0,"x":75.75562500000001,"y":13.0725,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years5","EN":0},"TI":435,"AM":0,"x":88.75985937500002,"y":13.110500000000002,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr6","EN":0},"TI":436,"AM":0,"x":6.187500000000001,"y":13.972499999999997,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable6","EN":0},"TI":437,"AM":0,"x":12.21,"y":13.972499999999997,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years6","EN":0},"TI":438,"AM":0,"x":23.904375,"y":13.972499999999997,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity6","EN":0},"TI":439,"AM":0,"x":37.104375000000005,"y":13.972499999999997,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE6","EN":0},"TI":440,"AM":0,"x":50.345625000000005,"y":13.972499999999997,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability6","EN":0},"TI":441,"AM":0,"x":62.41125000000001,"y":13.972499999999997,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount6","EN":0},"TI":442,"AM":0,"x":75.75562500000001,"y":13.972499999999997,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years6","EN":0},"TI":443,"AM":0,"x":88.75985937500002,"y":14.010437500000004,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr7","EN":0},"TI":444,"AM":0,"x":6.187500000000001,"y":14.872500000000002,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable7","EN":0},"TI":445,"AM":0,"x":12.21,"y":14.872500000000002,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years7","EN":0},"TI":446,"AM":0,"x":23.904375,"y":14.872500000000002,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity7","EN":0},"TI":447,"AM":0,"x":37.104375000000005,"y":14.872500000000002,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE7","EN":0},"TI":448,"AM":0,"x":50.345625000000005,"y":14.872500000000002,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability7","EN":0},"TI":449,"AM":0,"x":62.41125000000001,"y":14.872500000000002,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount7","EN":0},"TI":450,"AM":0,"x":75.75562500000001,"y":14.872500000000002,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years7","EN":0},"TI":451,"AM":0,"x":88.75985937500002,"y":14.910499999999999,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr8","EN":0},"TI":452,"AM":0,"x":6.187500000000001,"y":15.772499999999999,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable8","EN":0},"TI":453,"AM":0,"x":12.21,"y":15.772499999999999,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years8","EN":0},"TI":454,"AM":0,"x":23.904375,"y":15.772499999999999,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity8","EN":0},"TI":455,"AM":0,"x":37.104375000000005,"y":15.772499999999999,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE8","EN":0},"TI":456,"AM":0,"x":50.345625000000005,"y":15.772499999999999,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability8","EN":0},"TI":457,"AM":0,"x":62.41125000000001,"y":15.772499999999999,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount8","EN":0},"TI":458,"AM":0,"x":75.75562500000001,"y":15.772499999999999,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years8","EN":0},"TI":459,"AM":0,"x":88.75985937500002,"y":15.810437499999997,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr9","EN":0},"TI":460,"AM":0,"x":6.187500000000001,"y":16.6725,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable9","EN":0},"TI":461,"AM":0,"x":12.21,"y":16.6725,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years9","EN":0},"TI":462,"AM":0,"x":23.904375,"y":16.6725,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity9","EN":0},"TI":463,"AM":0,"x":37.104375000000005,"y":16.6725,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE9","EN":0},"TI":464,"AM":0,"x":50.345625000000005,"y":16.6725,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability9","EN":0},"TI":465,"AM":0,"x":62.41125000000001,"y":16.6725,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount9","EN":0},"TI":466,"AM":0,"x":75.75562500000001,"y":16.6725,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years9","EN":0},"TI":467,"AM":0,"x":88.75985937500002,"y":16.710437499999998,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A_Tax_Credit_Code_see_instr10","EN":0},"TI":468,"AM":0,"x":6.187500000000001,"y":17.5725,"w":5.713124999999999,"h":0.8333333333333334,"TU":"A Tax Credit Code (see instr.)_10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"B_Certificate_Number_if_applicable10","EN":0},"TI":469,"AM":0,"x":12.21,"y":17.5725,"w":11.385000000000002,"h":0.8333333333333334,"TU":"B Certificate Number (if applicable)_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C_Amount_Carried_Forward_From_Prior_Years10","EN":0},"TI":470,"AM":0,"x":23.904375,"y":17.5725,"w":12.890625000000002,"h":0.8333333333333334,"TU":"C Amount Carried Forward From Prior Years_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity10","EN":0},"TI":471,"AM":0,"x":37.104375000000005,"y":17.5725,"w":12.931875000000003,"h":0.8333333333333334,"TU":"D Current Year Amount (earned by taxpayer or received from pass-through entity)_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E_Total_Credit_Available_CDE10","EN":0},"TI":472,"AM":0,"x":50.345625000000005,"y":17.5725,"w":11.756250000000003,"h":0.8333333333333334,"TU":"E Total Credit Available (C+D=E)_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F_Amount_Applied_Current_Year_may_not_exceed_total_tax_liability10","EN":0},"TI":473,"AM":0,"x":62.41125000000001,"y":17.5725,"w":13.034999999999988,"h":0.8333333333333334,"TU":"F Amount Applied Current Year (may not exceed total tax liability)_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G_Expired_Credit_Amount10","EN":0},"TI":474,"AM":0,"x":75.75562500000001,"y":17.5725,"w":12.643125000000005,"h":0.8333333333333334,"TU":"G Expired Credit Amount_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Amount_Carried_Forward_Future_Years10","EN":0},"TI":475,"AM":0,"x":88.75985937500002,"y":17.6104375,"w":12.643124999999992,"h":0.8333333333333334,"TU":"Amount Carried Forward Future Years_10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Part_I_Total_Sum_of_column_F","EN":0},"TI":476,"AM":0,"x":62.90625000000001,"y":20.040000000000003,"w":12.230625000000002,"h":0.9158124999999965,"TU":"Part I Total (Sum of column F"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code11","EN":0},"TI":477,"AM":0,"x":6.3525,"y":23.287500000000005,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_11"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable11","EN":0},"TI":478,"AM":0,"x":12.375000000000002,"y":23.287500000000005,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity11","EN":0},"TI":479,"AM":0,"x":36.63,"y":23.287500000000005,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_11"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code12","EN":0},"TI":480,"AM":0,"x":6.3525,"y":24.1875,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable12","EN":0},"TI":481,"AM":0,"x":12.375000000000002,"y":24.1875,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity12","EN":0},"TI":482,"AM":0,"x":36.63,"y":24.1875,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_12"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code13","EN":0},"TI":483,"AM":0,"x":6.3525,"y":25.087499999999995,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_13"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable13","EN":0},"TI":484,"AM":0,"x":12.375000000000002,"y":25.087499999999995,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity13","EN":0},"TI":485,"AM":0,"x":36.63,"y":25.087499999999995,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_13"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code14","EN":0},"TI":486,"AM":0,"x":6.3525,"y":25.9875,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_14"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable14","EN":0},"TI":487,"AM":0,"x":12.375000000000002,"y":25.9875,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity14","EN":0},"TI":488,"AM":0,"x":36.63,"y":25.9875,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_14"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code15","EN":0},"TI":489,"AM":0,"x":6.3525,"y":26.8875,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_15"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable15","EN":0},"TI":490,"AM":0,"x":12.375000000000002,"y":26.8875,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity15","EN":0},"TI":491,"AM":0,"x":36.63,"y":26.8875,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_15"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code16","EN":0},"TI":492,"AM":0,"x":6.3525,"y":27.787500000000005,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_16"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable16","EN":0},"TI":493,"AM":0,"x":12.375000000000002,"y":27.787500000000005,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity16","EN":0},"TI":494,"AM":0,"x":36.63,"y":27.787500000000005,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_16"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code17","EN":0},"TI":495,"AM":0,"x":6.3525,"y":28.6875,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable17","EN":0},"TI":496,"AM":0,"x":12.375000000000002,"y":28.6875,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity17","EN":0},"TI":497,"AM":0,"x":36.63,"y":28.6875,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code18","EN":0},"TI":498,"AM":0,"x":6.3525,"y":29.587499999999995,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_18"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable18","EN":0},"TI":499,"AM":0,"x":12.375000000000002,"y":29.587499999999995,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_18"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity18","EN":0},"TI":500,"AM":0,"x":36.63,"y":29.587499999999995,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_18"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code19","EN":0},"TI":501,"AM":0,"x":6.3525,"y":30.4875,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_19"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable19","EN":0},"TI":502,"AM":0,"x":12.375000000000002,"y":30.4875,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_19"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity19","EN":0},"TI":503,"AM":0,"x":36.63,"y":30.4875,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_19"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"I_Tax_Credit_Code20","EN":0},"TI":504,"AM":0,"x":6.3525,"y":31.3875,"w":5.713125000000002,"h":0.8333333333333334,"TU":"I Tax Credit Code_20"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"J_Certificate_Number_if_applicable20","EN":0},"TI":505,"AM":0,"x":12.375000000000002,"y":31.3875,"w":23.945625000000003,"h":0.8333333333333334,"TU":"J Certificate Number (if applicable)_20"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Current_Year_Amount_earned_by_taxpayer_or_received_from_passthrough_entity20","EN":0},"TI":506,"AM":0,"x":36.62346875,"y":31.3905,"w":24.853125000000006,"h":0.8333333333333334,"TU":"K Current Year Amount (earned by taxpayer or received from pass-through entity)_20"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K_Total_Current_Year_Amount","EN":0},"TI":507,"AM":0,"x":36.91720312500001,"y":32.5348125,"w":24.215640625000002,"h":0.8333333333333334,"TU":"K Total Current Year Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"Does_not_apply_to_individual_income_tax","EN":0},"TI":508,"AM":0,"x":70.640625,"y":26.2566875,"w":22.72875,"h":0.8333333333333334,"TU":"Does not apply to individual income tax"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow1","EN":0},"TI":509,"AM":0,"x":3.8775,"y":37.65,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name1","EN":0},"TI":510,"AM":0,"x":15.2934546875,"y":37.6695,"w":35.1131859375,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_1"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN1","EN":0},"TI":511,"AM":0,"x":50.93721875000001,"y":37.6558125,"w":25.88815625,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow1","EN":0},"TI":512,"AM":0,"x":77.30250000000001,"y":37.65,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow2","EN":0},"TI":513,"AM":0,"x":3.8775,"y":38.4375,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name2","EN":0},"TI":514,"AM":0,"x":15.2747203125,"y":38.44675,"w":35.113185937500006,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_2"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN2","EN":0},"TI":515,"AM":0,"x":50.93721875000001,"y":38.460375,"w":25.88815625,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow2","EN":0},"TI":516,"AM":0,"x":77.30250000000001,"y":38.4375,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow3","EN":0},"TI":517,"AM":0,"x":3.8775,"y":39.232499999999995,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name3","EN":0},"TI":518,"AM":0,"x":15.287215625,"y":39.2421875,"w":35.113065625,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_3"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN3","EN":0},"TI":519,"AM":0,"x":50.912296875,"y":39.2421875,"w":25.88815625000001,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow3","EN":0},"TI":520,"AM":0,"x":77.30250000000001,"y":39.232499999999995,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow4","EN":0},"TI":521,"AM":0,"x":3.8775,"y":40.02,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name4","EN":0},"TI":522,"AM":0,"x":15.337214062500003,"y":40.037625,"w":35.1130828125,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_4"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN4","EN":0},"TI":523,"AM":0,"x":50.962312499999996,"y":40.024,"w":25.88815625,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow4","EN":0},"TI":524,"AM":0,"x":77.30250000000001,"y":40.02,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow5","EN":0},"TI":525,"AM":0,"x":3.8775,"y":40.815,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name5","EN":0},"TI":526,"AM":0,"x":15.349709375,"y":40.8058125,"w":35.113134375,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_5"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN5","EN":0},"TI":527,"AM":0,"x":50.899750000000004,"y":40.833125,"w":25.88815625,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow5","EN":0},"TI":528,"AM":0,"x":77.30250000000001,"y":40.815,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow6","EN":0},"TI":529,"AM":0,"x":3.8775,"y":41.6025,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name6","EN":0},"TI":530,"AM":0,"x":15.349709375,"y":41.6115,"w":35.113134375,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_6"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN6","EN":0},"TI":531,"AM":0,"x":50.912296875,"y":41.6149375,"w":25.88815625000001,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow6","EN":0},"TI":532,"AM":0,"x":77.30250000000001,"y":41.6025,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow7","EN":0},"TI":533,"AM":0,"x":3.8775,"y":42.3975,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name7","EN":0},"TI":534,"AM":0,"x":15.312206250000003,"y":42.4263125,"w":35.11316875000001,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_7"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN7","EN":0},"TI":535,"AM":0,"x":51.012328125,"y":42.401312499999996,"w":25.887984375000006,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow7","EN":0},"TI":536,"AM":0,"x":77.30250000000001,"y":42.3975,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow8","EN":0},"TI":537,"AM":0,"x":3.8775,"y":43.185,"w":11.075625,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name8","EN":0},"TI":538,"AM":0,"x":15.362204687500002,"y":43.1933125,"w":35.113185937500006,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_8"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN8","EN":0},"TI":539,"AM":0,"x":50.9746875,"y":43.2013125,"w":25.88815625,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow8","EN":0},"TI":540,"AM":0,"x":77.30250000000001,"y":43.185,"w":24.110625,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L_Line_Number_from_Part_I_or_Part_II_AboveRow9","EN":0},"TI":541,"AM":0,"x":3.855946875,"y":43.983112500000004,"w":11.075625000000002,"h":0.8333333333333334,"TU":"L Line Number from Part I or Part II Above_Row_9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"M_Pass_Through_Entity_Name9","EN":0},"TI":542,"AM":0,"x":15.393451562500001,"y":43.999018750000005,"w":35.11322031250001,"h":0.8333333333333334,"TU":"M Pass Through Entity Name_9"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"N_Pass_Through_Entity_FEIN9","EN":0},"TI":543,"AM":0,"x":50.98723437500001,"y":43.985381249999996,"w":25.888156249999987,"h":0.8333333333333334,"TU":"N Pass Through Entity FEIN_9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"O_Taxpayers_Percentage_Share_of_Credit_Earned_by_PassThrough_EntityRow9","EN":0},"TI":544,"AM":0,"x":77.40098437500001,"y":43.983112500000004,"w":23.923109375000013,"h":0.8333333333333334,"TU":"O Taxpayer’s Percentage Share of Credit Earned by Pass-Through Entity_Row_9"}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_4136.content.txt b/test/data/ia/form/ia_scr_4136.content.txt new file mode 100644 index 00000000..f3708678 --- /dev/null +++ b/test/data/ia/form/ia_scr_4136.content.txt @@ -0,0 +1,99 @@ +www.iowa.gov/tax +Iowa Department of Revenue +Name(s) +SSN or FEIN +2012 IA 4136 +Computation of Iowa Motor Fuel Tax Credit +For calendar year 2012 or fiscal year ended +______________________ +, 20 +_____ +Enclose this form with your Iowa income tax return. See reverse side for instructions. +41-005a (09/20/12) +FUEL USED FOR: [Please check the appropriate box(es)] + +s + +1) +Farming +2) +1. You made no claims for a fuel tax refund on fuel purchased during this tax year. +2. You do not have an active Motor Fuel Tax Refund Permit for this tax year. +3. All information requested on this form must be accurately entered. +4. You must have and maintain records verifying nonhighway gallons purchased. +5. All gallons claimed for credit were paid for in the tax period. +6. The gallons claimed were or will be consumed in other than a registered vehicle. + +7. Gasoline used in a boat does not qualify for credit unless the boat +was used for commercial fishing. +8. Fuel used in motor vehicles for off-loading procedures does not +qualify for the credit. See instructions for additional information. +9. Sales tax (nonfarm usage) must be computed correctly. See +instructions for additional information. +10. Invoices showing gallons must be issued in the name of the + individual, estate, trust, or corporation claiming the credit. See + instructions for partners or S corporation shareholders. +11. A copy of the federal 4136 must also be enclosed with your Iowa + income tax return. +THE FOLLOWING REQUIREMENTS MUST BE MET FOR THIS CLAIM TO BE HONORED: + NOTE: Enclose a copy of federal 4136 +A +B +C +D +E +Fuel Type +Gasoline +Gasohol +E85 +Undyed +Special Fuel +Diesel Fuel +(LPG) +Iowa Fuel Tax Rate Per Gallon +21¢ 19¢ 19¢ +22.5¢ +20¢ +Credit Computation +1. Number of gallons +from original invoices +2. Gallons used on highway +3. Gallons claimed. +Subtract line 2 from line 1. +s s s s +s +4. Credit. +Multiply line 3 by the fuel tax +rate +shown above. +$ +$ $ $ +$ +5. Less Sales Tax. Non-farm use only. +See instructions on reverse side. +$ +s +$ +s +$ +s +$ +s +$ +s +6. Net Amount of Credit. + +Subtract line 5 from line 4. +$ +$ $ $ +$ +7. Total Credit. +Add line 6, columns A - E +s +$ +Commercial + +3) Commercial Fishing + +4) Other (specify) +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_4136.fields.json b/test/data/ia/form/ia_scr_4136.fields.json new file mode 100644 index 00000000..56042867 --- /dev/null +++ b/test/data/ia/form/ia_scr_4136.fields.json @@ -0,0 +1 @@ +[{"id":"Check1","type":"box","calc":false,"value":""},{"id":"Check2","type":"box","calc":false,"value":""},{"id":"Check3","type":"box","calc":false,"value":""},{"id":"Check4","type":"box","calc":false,"value":""},{"id":"FY1","type":"date","calc":false,"value":""},{"id":"FY2","type":"date","calc":false,"value":""},{"id":"Names","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"Other","type":"alpha","calc":false,"value":""},{"id":"1A","type":"number","calc":false,"value":""},{"id":"1B","type":"number","calc":false,"value":""},{"id":"1C","type":"number","calc":false,"value":""},{"id":"1D","type":"number","calc":false,"value":""},{"id":"1E","type":"number","calc":false,"value":""},{"id":"2A","type":"number","calc":false,"value":""},{"id":"2B","type":"number","calc":false,"value":""},{"id":"2C","type":"number","calc":false,"value":""},{"id":"2D","type":"number","calc":false,"value":""},{"id":"2E","type":"number","calc":false,"value":""},{"id":"3A","type":"number","calc":false,"value":""},{"id":"3B","type":"number","calc":false,"value":""},{"id":"3C","type":"number","calc":false,"value":""},{"id":"3D","type":"number","calc":false,"value":""},{"id":"3E","type":"number","calc":false,"value":""},{"id":"4A","type":"number","calc":false,"value":""},{"id":"4B","type":"number","calc":false,"value":""},{"id":"4C","type":"number","calc":false,"value":""},{"id":"4D","type":"number","calc":false,"value":""},{"id":"4E","type":"number","calc":false,"value":""},{"id":"5A","type":"number","calc":false,"value":""},{"id":"5B","type":"number","calc":false,"value":""},{"id":"5C","type":"number","calc":false,"value":""},{"id":"5D","type":"number","calc":false,"value":""},{"id":"5E","type":"number","calc":false,"value":""},{"id":"6A","type":"number","calc":false,"value":""},{"id":"6B","type":"number","calc":false,"value":""},{"id":"6C","type":"number","calc":false,"value":""},{"id":"6D","type":"number","calc":false,"value":""},{"id":"6E","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_4136.json b/test/data/ia/form/ia_scr_4136.json new file mode 100755 index 00000000..0b727b20 --- /dev/null +++ b/test/data/ia/form/ia_scr_4136.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"41005.pmd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":38.25,"HLines":[{"x":29.699999999999996,"y":3.6187499999999964,"w":3.06,"l":100.23750000000001},{"x":13.19999999999998,"y":3.832500000000001,"w":0.7200000000000001,"l":116.73750000000003},{"x":6.4762499999999985,"y":5.549999999999997,"w":1.4400000000000002,"l":123.46125000000004},{"x":6.4762499999999985,"y":7.559999999999998,"w":1.4400000000000002,"l":123.46125000000004},{"x":6.4762499999999985,"y":7.559999999999998,"w":1.4400000000000002,"l":123.46125000000004},{"x":13.055625000000008,"y":12.135,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":13.462499999999997,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":14.5725,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":15.824999999999998,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":17.085,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":19.02,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":20.955,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":22.89,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":24.87,"w":1.4400000000000002,"l":103.72312500000002},{"x":13.055625000000008,"y":25.98,"w":1.4400000000000002,"l":103.72312500000002},{"x":12.993750000000011,"y":8.662500000000003,"w":1.4400000000000002,"l":103.70250000000003},{"x":117.37687500000003,"y":8.49,"w":0.7200000000000001,"l":12.56062499999999}],"VLines":[{"x":83.61375000000001,"y":5.534999999999997,"w":1.4400000000000002,"l":2.0025},{"x":13.096875000000022,"y":8.632500000000002,"w":1.4400000000000002,"l":17.385},{"x":44.36437500000001,"y":8.699999999999998,"w":1.4400000000000002,"l":17.265000000000004},{"x":58.183125000000004,"y":8.684999999999997,"w":1.4400000000000002,"l":17.310000000000002},{"x":72.20812500000001,"y":8.699999999999998,"w":1.4400000000000002,"l":17.295},{"x":86.91375000000001,"y":8.684999999999997,"w":1.4400000000000002,"l":17.280000000000005},{"x":116.67562500000001,"y":8.617499999999998,"w":1.4400000000000002,"l":17.3625},{"x":101.784375,"y":8.684999999999997,"w":1.4400000000000002,"l":17.295}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d8d8d8","x":44.378296875,"y":24.890625,"w":57.423265625000006,"h":1.0718749999999961,"clr":-1},{"oc":"#d8d8d8","x":44.47265624999999,"y":13.534374999999997,"w":72.11875000000002,"h":1.021874999999999,"clr":-1}],"Texts":[{"x":12.846875000000022,"y":2.895000000000001,"w":82.98800000000003,"clr":0,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"x":12.702495359375016,"y":1.980000000000004,"w":136.51319999999998,"clr":0,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"x":6.2262499999999985,"y":5.489999999999999,"w":41.7733,"clr":0,"A":"left","R":[{"T":"Name(s)","S":-1,"TS":[0,13,0,0]}]},{"x":85.11687500000001,"y":5.489999999999999,"w":63.18220000000001,"clr":0,"A":"left","R":[{"T":"SSN%20or%20FEIN","S":-1,"TS":[0,13,0,0]}]},{"x":109.990625,"y":2.4000000000000057,"w":115.4136,"clr":0,"A":"left","R":[{"T":"2012%20IA%204136","S":-1,"TS":[0,22,1,0]}]},{"x":76.51625000000001,"y":4.012500000000003,"w":309.1466,"clr":0,"A":"left","R":[{"T":"Computation%20of%20Iowa%20Motor%20Fuel%20Tax%20Credit","S":11,"TS":[0,18,1,0]}]},{"x":13.197500000000016,"y":3.802500625000003,"w":187.52260000000007,"clr":0,"A":"left","R":[{"T":"For%20calendar%20year%202012%20or%20fiscal%20year%20ended","S":9,"TS":[0,12,1,0]}]},{"x":45.84687500000001,"y":3.802500625000003,"w":110.03960000000004,"clr":0,"A":"left","R":[{"T":"______________________","S":9,"TS":[0,12,1,0]}]},{"x":65.399375,"y":3.802500625000003,"w":15.183200000000003,"clr":0,"A":"left","R":[{"T":"%2C%2020","S":9,"TS":[0,12,1,0]}]},{"x":69.05000000000001,"y":3.802500625000003,"w":24.945500000000003,"clr":0,"A":"left","R":[{"T":"_____","S":9,"TS":[0,12,1,0]}]},{"x":13.197500000000016,"y":4.477500624999995,"w":371.65320000000037,"clr":0,"A":"left","R":[{"T":"Enclose%20this%20form%20with%20your%20Iowa%20income%20tax%20return.%20See%20reverse%20side%20for%20instructions.","S":9,"TS":[0,12,1,0]}]},{"x":118.15812500000003,"y":36.179981250000004,"w":67.9824,"clr":0,"A":"left","R":[{"T":"41-005a%20(09%2F20%2F12)","S":-1,"TS":[0,11,0,0]}]},{"x":6.2262499999999985,"y":7.672499999999999,"w":246.6739000000001,"clr":0,"A":"left","R":[{"T":"FUEL%20USED%20FOR%3A%20%5BPlease%20check%20the%20appropriate%20box(es)%5D","S":9,"TS":[0,12,1,0]}]},{"x":49.064373281250006,"y":7.672499999999999,"w":8.97,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"x":53.519373281250004,"y":7.672499999999999,"w":9.111,"clr":0,"A":"left","R":[{"T":"1)","S":-1,"TS":[0,13,0,0]}]},{"x":55.91187328125001,"y":7.672499999999999,"w":42.64850000000001,"clr":0,"A":"left","R":[{"T":"Farming%20%20","S":-1,"TS":[0,13,0,0]}]},{"x":65.66749828125,"y":7.672499999999999,"w":9.111,"clr":0,"A":"left","R":[{"T":"2)","S":-1,"TS":[0,13,0,0]}]},{"x":11.815451406250004,"y":27.2925,"w":332.49889999999976,"clr":0,"A":"left","R":[{"T":"1.%20You%20made%20no%20claims%20for%20a%20fuel%20tax%20refund%20on%20fuel%20purchased%20during%20this%20tax%20year.","S":3,"TS":[0,12,0,0]}]},{"x":11.815451406250004,"y":28.080000000000002,"w":308.92400000000015,"clr":0,"A":"left","R":[{"T":"2.%20You%20do%20not%20have%20an%20active%20Motor%20Fuel%20Tax%20Refund%20Permit%20for%20this%20tax%20year.","S":3,"TS":[0,12,0,0]}]},{"x":11.815451406250004,"y":28.867499999999996,"w":277.4145000000001,"clr":0,"A":"left","R":[{"T":"3.%20All%20information%20requested%20on%20this%20form%20must%20be%20accurately%20entered.","S":3,"TS":[0,12,0,0]}]},{"x":11.815451406250004,"y":29.655,"w":326.53700000000026,"clr":0,"A":"left","R":[{"T":"4.%20You%20must%20have%20and%20maintain%20records%20verifying%20nonhighway%20gallons%20purchased.","S":3,"TS":[0,12,0,0]}]},{"x":11.815451406250004,"y":30.4425,"w":250.24739999999983,"clr":0,"A":"left","R":[{"T":"5.%20All%20gallons%20claimed%20for%20credit%20were%20paid%20for%20in%20the%20tax%20period.","S":3,"TS":[0,12,0,0]}]},{"x":11.815451406250004,"y":31.23,"w":335.4191,"clr":0,"A":"left","R":[{"T":"6.%20The%20gallons%20claimed%20were%20or%20will%20be%20consumed%20in%20other%20than%20a%20registered%20vehicle.","S":3,"TS":[0,12,0,0]}]},{"x":77.58841484375,"y":27.2925,"w":275.98900000000015,"clr":0,"A":"left","R":[{"T":"7.%20Gasoline%20used%20in%20a%20boat%20does%20not%20qualify%20for%20credit%20unless%20the%20boat","S":3,"TS":[0,12,0,0]}]},{"x":80.06341484375,"y":27.9675,"w":132.856,"clr":0,"A":"left","R":[{"T":"was%20used%20for%20commercial%20fishing.","S":3,"TS":[0,12,0,0]}]},{"x":77.58841484375,"y":28.755,"w":266.3004000000003,"clr":0,"A":"left","R":[{"T":"8.%20Fuel%20used%20in%20motor%20vehicles%20for%20off-loading%20procedures%20does%20not","S":3,"TS":[0,12,0,0]}]},{"x":80.06341484375,"y":29.429999999999996,"w":255.83499999999992,"clr":0,"A":"left","R":[{"T":"qualify%20for%20the%20credit.%20See%20instructions%20for%20additional%20information.","S":3,"TS":[0,12,0,0]}]},{"x":77.58841484375,"y":30.2175,"w":253.76399999999998,"clr":0,"A":"left","R":[{"T":"9.%20Sales%20tax%20(nonfarm%20usage)%20must%20be%20computed%20correctly.%20See","S":3,"TS":[0,12,0,0]}]},{"x":80.06341484375,"y":30.8925,"w":151.82600000000008,"clr":0,"A":"left","R":[{"T":"instructions%20for%20additional%20information.","S":3,"TS":[0,12,0,0]}]},{"x":77.58841484375,"y":31.68,"w":256.43499999999995,"clr":0,"A":"left","R":[{"T":"10.%20Invoices%20showing%20gallons%20must%20be%20issued%20in%20the%20name%20of%20the","S":3,"TS":[0,12,0,0]}]},{"x":80.39862265625001,"y":32.355,"w":253.3706999999999,"clr":0,"A":"left","R":[{"T":"%20individual%2C%20estate%2C%20trust%2C%20or%20corporation%20claiming%20the%20credit.%20See","S":3,"TS":[0,12,0,0]}]},{"x":80.43899609374999,"y":33.03,"w":224.0930999999999,"clr":0,"A":"left","R":[{"T":"%20instructions%20for%20partners%20or%20S%20corporation%20shareholders.","S":3,"TS":[0,12,0,0]}]},{"x":77.58841484375,"y":33.8175,"w":276.8386999999998,"clr":0,"A":"left","R":[{"T":"11.%20A%20copy%20of%20the%20federal%204136%20must%20also%20be%20enclosed%20with%20your%20Iowa","S":3,"TS":[0,12,0,0]}]},{"x":80.29544609375,"y":34.4925,"w":75.81909999999999,"clr":0,"A":"left","R":[{"T":"%20income%20tax%20return.","S":3,"TS":[0,12,0,0]}]},{"x":36.15278984375001,"y":26.385,"w":378.9192000000002,"clr":0,"A":"left","R":[{"T":"THE%20FOLLOWING%20REQUIREMENTS%20MUST%20BE%20MET%20%20FOR%20THIS%20CLAIM%20TO%20BE%20HONORED%3A","S":9,"TS":[0,12,1,0]}]},{"x":77.53231484375002,"y":35.58,"w":238.6836,"clr":0,"A":"left","R":[{"T":"%20NOTE%3A%20Enclose%20a%20copy%20of%20federal%204136","S":-1,"TS":[0,16,1,0]}]},{"x":47.599999999999994,"y":9.315000000000003,"w":6.003,"clr":0,"A":"left","R":[{"T":"A","S":3,"TS":[0,12,0,0]}]},{"x":61.62500000000001,"y":9.315000000000003,"w":6.003,"clr":0,"A":"left","R":[{"T":"B","S":3,"TS":[0,12,0,0]}]},{"x":75.44375,"y":9.315000000000003,"w":6.498,"clr":0,"A":"left","R":[{"T":"%20C%20","S":3,"TS":[0,12,0,0]}]},{"x":88.994375,"y":9.315000000000003,"w":6.498,"clr":0,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"x":102.91625,"y":9.315000000000003,"w":6.003,"clr":0,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"x":13.671875000000002,"y":10.222500000000002,"w":47.04270000000001,"clr":0,"A":"left","R":[{"T":"Fuel%20Type","S":10,"TS":[0,14,1,0]}]},{"x":47.31125000000001,"y":10.222500000000002,"w":42.3792,"clr":0,"A":"left","R":[{"T":"Gasoline","S":10,"TS":[0,14,1,0]}]},{"x":61.93437500000001,"y":10.222500000000002,"w":40.234,"clr":0,"A":"left","R":[{"T":"Gasohol","S":10,"TS":[0,14,1,0]}]},{"x":78.82625000000002,"y":10.222500000000002,"w":17.7459,"clr":0,"A":"left","R":[{"T":"E85","S":10,"TS":[0,14,1,0]}]},{"x":91.11875000000002,"y":10.222500000000002,"w":36.7318,"clr":0,"A":"left","R":[{"T":"Undyed","S":10,"TS":[0,14,1,0]}]},{"x":103.16375000000001,"y":10.222500000000002,"w":58.963600000000014,"clr":0,"A":"left","R":[{"T":"Special%20Fuel","S":10,"TS":[0,14,1,0]}]},{"x":89.71625,"y":10.972500000000002,"w":53.375299999999996,"clr":0,"A":"left","R":[{"T":"Diesel%20Fuel","S":10,"TS":[0,14,1,0]}]},{"x":105.824375,"y":10.972500000000002,"w":27.5465,"clr":0,"A":"left","R":[{"T":"(LPG)","S":10,"TS":[0,14,1,0]}]},{"x":13.56874999999999,"y":12.255,"w":144.41339999999997,"clr":0,"A":"left","R":[{"T":"Iowa%20Fuel%20Tax%20Rate%20Per%20Gallon","S":10,"TS":[0,14,1,0]}]},{"x":49.53875,"y":12.255,"w":16.501200000000004,"clr":0,"A":"left","R":[{"T":"21%C2%A2","S":-1,"TS":[0,13,0,0]}]},{"x":63.976456249999984,"y":12.255,"w":16.501200000000004,"clr":0,"A":"left","R":[{"T":"19%C2%A2","S":-1,"TS":[0,13,0,0]}]},{"x":78.92978749999999,"y":12.255,"w":16.501200000000004,"clr":0,"A":"left","R":[{"T":"19%C2%A2","S":-1,"TS":[0,13,0,0]}]},{"x":92.129375,"y":12.255,"w":24.9465,"clr":0,"A":"left","R":[{"T":"22.5%C2%A2","S":-1,"TS":[0,13,0,0]}]},{"x":106.77312500000001,"y":12.255,"w":16.501200000000004,"clr":0,"A":"left","R":[{"T":"20%C2%A2","S":-1,"TS":[0,13,0,0]}]},{"x":17.961875000000006,"y":13.402499999999998,"w":93.30300000000001,"clr":0,"A":"left","R":[{"T":"Credit%20Computation","S":10,"TS":[0,14,1,0]}]},{"x":13.56874999999999,"y":14.684999999999997,"w":84.39999999999999,"clr":0,"A":"left","R":[{"T":"1.%20Number%20of%20gallons","S":3,"TS":[0,12,0,0]}]},{"x":28.625000000000004,"y":14.684999999999997,"w":86.136,"clr":0,"A":"left","R":[{"T":"from%20original%20invoices","S":3,"TS":[0,12,0,0]}]},{"x":13.56874999999999,"y":15.945000000000004,"w":112.40460000000004,"clr":0,"A":"left","R":[{"T":"2.%20Gallons%20used%20on%20highway","S":3,"TS":[0,12,0,0]}]},{"x":13.56874999999999,"y":17.205,"w":77.8304,"clr":0,"A":"left","R":[{"T":"3.%20Gallons%20claimed.","S":3,"TS":[0,12,0,0]}]},{"x":15.507499999999999,"y":17.88,"w":95.0308,"clr":0,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.","S":-1,"TS":[0,11,0,0]}]},{"x":56.28312499999999,"y":17.88,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":70.720109375,"y":17.88,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":85.15709375,"y":17.88,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":99.59407812500001,"y":17.88,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":114.0324375,"y":17.88,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":13.56874999999999,"y":19.14,"w":39.72560000000001,"clr":0,"A":"left","R":[{"T":"4.%20Credit.%20","S":3,"TS":[0,12,0,0]}]},{"x":20.478125000000013,"y":19.14,"w":102.91530000000003,"clr":0,"A":"left","R":[{"T":"Multiply%20line%203%20by%20the%20fuel%20tax","S":-1,"TS":[0,11,0,0]}]},{"x":14.868125000000008,"y":19.815,"w":14.1268,"clr":0,"A":"left","R":[{"T":"rate","S":-1,"TS":[0,11,0,0]}]},{"x":17.631875000000022,"y":19.815,"w":50.323600000000006,"clr":0,"A":"left","R":[{"T":"shown%20above.","S":-1,"TS":[0,11,0,0]}]},{"x":44.506250000000016,"y":19.815,"w":5.104,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":58.69625000000002,"y":19.815,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":73.13409375000003,"y":19.815,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":87.57193750000002,"y":19.815,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":102.00875000000002,"y":19.815,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":13.56874999999999,"y":21.075,"w":157.5614,"clr":0,"A":"left","R":[{"T":"5.%20Less%20Sales%20Tax.%20Non-farm%20use%20only.%20","S":3,"TS":[0,12,0,0]}]},{"x":15.11562499999999,"y":21.75,"w":118.6253,"clr":0,"A":"left","R":[{"T":"See%20instructions%20on%20reverse%20side.","S":-1,"TS":[0,11,0,0]}]},{"x":44.506249999999994,"y":21.75,"w":5.104,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":56.28312499999999,"y":21.75,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":58.69625,"y":21.75,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":70.720625,"y":21.75,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":73.13374999999999,"y":21.75,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":85.158125,"y":21.75,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":87.57125,"y":21.75,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":99.595625,"y":21.75,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":102.00875,"y":21.75,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":114.033125,"y":21.75,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":13.56874999999999,"y":23.01,"w":98.211,"clr":0,"A":"left","R":[{"T":"6.%20Net%20Amount%20of%20Credit.","S":3,"TS":[0,12,0,0]}]},{"x":15.198121562500003,"y":23.685000000000002,"w":94.9916,"clr":0,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204.","S":-1,"TS":[0,11,0,0]}]},{"x":44.50624656249999,"y":23.685000000000002,"w":5.104,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":58.696246562499994,"y":23.685000000000002,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":73.13409031249999,"y":23.685000000000002,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":87.57193406249998,"y":23.685000000000002,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":102.0087465625,"y":23.685000000000002,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":13.56874999999999,"y":24.810000000000002,"w":62.6477,"clr":0,"A":"left","R":[{"T":"7.%20Total%20Credit.%20","S":3,"TS":[0,12,0,0]}]},{"x":24.39687499999999,"y":24.810000000000002,"w":91.71100000000003,"clr":0,"A":"left","R":[{"T":"Add%20line%206%2C%20columns%20A%20-%20E","S":-1,"TS":[0,11,0,0]}]},{"x":114.11562500000001,"y":24.945000000000004,"w":8.028,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":44,"TS":[2,12,0,0]}]},{"x":102.05,"y":24.97499975,"w":5.054,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":68.05982812500001,"y":7.672499999999999,"w":53.84700000000001,"clr":0,"A":"left","R":[{"T":"Commercial","S":-1,"TS":[0,13,0,0]}]},{"x":80.7216703125,"y":7.672499999999999,"w":103.92739999999999,"clr":0,"A":"left","R":[{"T":"3)%20%20Commercial%20Fishing","S":-1,"TS":[0,13,0,0]}]},{"x":101.99101250000001,"y":7.672499999999999,"w":78.17059999999998,"clr":0,"A":"left","R":[{"T":"4)%20Other%20(specify)","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FY1","EN":0},"TI":545,"AM":0,"x":45.87550000000001,"y":3.715625000000003,"w":19.533765624999987,"h":0.90625,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FY2","EN":0},"TI":546,"AM":0,"x":68.82528125,"y":3.7194999999999965,"w":5.199046875000017,"h":0.906312500000008,"MV":"yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Names","EN":0},"TI":547,"AM":0,"x":6.080078125000001,"y":6.323708333333333,"w":77.07528125,"h":1.2596666666666654},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":548,"AM":0,"x":85.013671875,"y":6.3964583333333325,"w":44.837890625,"h":1.1869166666666662},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Other","EN":0},"TI":553,"AM":0,"x":116.685078125,"y":7.627124999999997,"w":13.166484375000005,"h":0.8643125000000017},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1A","EN":0},"TI":554,"AM":0,"x":46.745875,"y":14.865937500000001,"w":10.516687500000005,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1B","EN":0},"TI":555,"AM":0,"x":60.696109375000006,"y":14.8698125,"w":10.914234374999996,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1C","EN":0},"TI":556,"AM":0,"x":75.314765625,"y":14.867875000000003,"w":10.903234374999997,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1D","EN":0},"TI":557,"AM":0,"x":90.20721875,"y":14.815437500000002,"w":10.77432812500001,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"1E","EN":0},"TI":558,"AM":0,"x":104.434515625,"y":14.867875000000003,"w":11.171703125000004,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2A","EN":0},"TI":559,"AM":0,"x":46.74054687500001,"y":16.127625,"w":10.516515624999997,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2B","EN":0},"TI":560,"AM":0,"x":60.68545312500001,"y":16.1256875,"w":10.903406249999993,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2C","EN":0},"TI":561,"AM":0,"x":75.320265625,"y":16.127625,"w":10.903234374999997,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2D","EN":0},"TI":562,"AM":0,"x":90.20171875000001,"y":16.0751875,"w":10.78515625,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"2E","EN":0},"TI":563,"AM":0,"x":104.456,"y":16.127625,"w":11.16104687500001,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"3A","EN":0},"TI":564,"AM":0,"x":46.745875,"y":18.0593125,"w":10.516687500000005,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"3B","EN":0},"TI":565,"AM":0,"x":60.68545312500001,"y":18.0631875,"w":10.892578125,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"3C","EN":0},"TI":566,"AM":0,"x":75.3094375,"y":18.0631875,"w":10.9140625,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"3D","EN":0},"TI":567,"AM":0,"x":90.22320312500001,"y":18.01075,"w":10.763671875,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"3E","EN":0},"TI":568,"AM":0,"x":104.46115625000002,"y":18.06125,"w":11.150390625,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"4A","EN":0},"TI":569,"AM":0,"x":46.73521875,"y":19.99875,"w":10.52734375,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"4B","EN":0},"TI":570,"AM":0,"x":60.69078125,"y":20.0343125,"w":10.903406250000005,"h":0.9101250000000007},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"4C","EN":0},"TI":571,"AM":0,"x":75.3039375,"y":20.002625,"w":10.9140625,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"4D","EN":0},"TI":572,"AM":0,"x":90.1910625,"y":19.9444375,"w":10.79581250000001,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"4E","EN":0},"TI":573,"AM":0,"x":104.81040625000001,"y":19.99675,"w":10.795812499999997,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"5A","EN":0},"TI":574,"AM":0,"x":46.72971874999999,"y":21.9265,"w":10.527343750000014,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"5B","EN":0},"TI":575,"AM":0,"x":60.68545312500001,"y":21.9265,"w":10.903406249999993,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"5C","EN":0},"TI":576,"AM":0,"x":75.330921875,"y":21.9284375,"w":10.892578125,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"5D","EN":0},"TI":577,"AM":0,"x":90.212546875,"y":21.874062499999997,"w":10.774500000000005,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"5E","EN":0},"TI":578,"AM":0,"x":105.20778125000001,"y":21.926437500000002,"w":10.3984375,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"6A","EN":0},"TI":579,"AM":0,"x":46.72971874999999,"y":23.910812500000002,"w":10.527343750000014,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"6B","EN":0},"TI":580,"AM":0,"x":60.68545312500001,"y":23.908875,"w":10.903406249999993,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"6C","EN":0},"TI":581,"AM":0,"x":75.320265625,"y":23.910812500000002,"w":10.903234374999997,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"6D","EN":0},"TI":582,"AM":0,"x":90.212546875,"y":23.858375,"w":10.77432812500001,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"6E","EN":0},"TI":583,"AM":0,"x":104.84787500000002,"y":23.908937499999997,"w":10.763671875,"h":0.90625},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":584,"AM":0,"x":105.0823125,"y":25.0601875,"w":10.667078125000005,"h":0.90625}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Check1","EN":0},"TI":549,"AM":0,"x":51.14003125,"y":7.713125000000001,"w":2.139843750000008,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Check2","EN":0},"TI":550,"AM":0,"x":63.30207812500001,"y":7.650625000000001,"w":2.1400156250000038,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Check3","EN":0},"TI":551,"AM":0,"x":78.329453125,"y":7.672312499999999,"w":2.255515625000008,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Check4","EN":0},"TI":552,"AM":0,"x":99.716546875,"y":7.650625000000001,"w":2.0243437499999906,"h":0.8333333333333334}]}]}],"Width":136.125}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_4562a.content.txt b/test/data/ia/form/ia_scr_4562a.content.txt new file mode 100644 index 00000000..2d630890 --- /dev/null +++ b/test/data/ia/form/ia_scr_4562a.content.txt @@ -0,0 +1,127 @@ +2012 IA 4562A +Iowa Depreciation Adjustment Schedule +www.iowa.gov/tax +Iowa Department of Revenue +Enclose this form with your Iowa income tax return. +1234567890123456 +1234567890123456 +1234567890123456 +123456789012345678 +123456789012345678 +123456789012345678 +C +Total amounts in columns E, F, H, and I +Description +Date Placed +Life of +Cost or +Federal Federal +Accumulated +Iowa 179 Expense +MACRS Iowa +Accumulated +of Property +in Service +Asset +Other Basis +179 Expense +Depreciation Deduction +Federal Depreciation +Depreciation Deduction +Iowa Depreciation +J +I +H +G +F +E +D +B +A +41-105a (09/20/12) +PART I - Computation of Iowa depreciation adjustment +PART II - Disposition adjustments + +If you have not +sold or disposed of any bonus depreciation or section 179 property, skip to Part III of this form. +I +f you have +disposed of bonus depreciation or section 179 property, and an Iowa depreciation adjustment applied to this property in a prior year, continue to Part II. +1234567890123456789012345678901212345678901234567890123456789012123456789012345678901234567890 +1234567890123456789012345678901212345678901234567890123456789012123456789012345678901234567890 +1234567890123456789012345678901212345678901234567890123456789012123456789012345678901234567890 +1234567890123456789012345678901212345678901234567890123456789012123456789012345678901234567890 +Description of Property +sold or disposed +A +Date placed in +service - mo/day/yr +B +Date sold +or disposed +C +Total Iowa depreciation ++ Sec. 179 expense taken +Adjustment (subtract +column E from column D) +E +F +Total amounts in column F +D +Total federal depreciation ++ Sec. 179 expense taken +1. Enter the sum of amounts from +Part I, columns E & F. +.............. +1. +______________________ +2. Enter the sum of amounts from +Part I, columns H & I. +............... +2. +______________________ +3. Adjustment to depreciation. +Subtract line 2 from line 1. +....... +3. +______________________ +4. Enter amount from +Part II, column F. +..................... +4. +______________________ +5. Add lines 3 and 4. +...................... +5. +______________________ +PART III - Summary of adjustments to net income + + Name(s) +SSN + + Name of Partnership or Corporation (if applicable) +FEIN + +For Iowa Form: Enter positive amounts from line 5 on: + Enter negative amounts from line 5 on: +1040 Other Income, line 14 + Other Income, line 14 +1041 +Other Income, line 8 + Other Income, line 8 +1065 +Part I, line 3 + Part I, line 6 +1120 +Schedule A, depreciation adj., line 8 + Schedule A, depreciation adj., line 8 +1120A +Schedule A, other additions, line 4 + Schedule A, other reductions, line 4 +1120S +Schedule S, line 3 + Schedule S, line 7 +1120F +Schedule A, line 7 + Schedule D, line 7 +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_4562a.fields.json b/test/data/ia/form/ia_scr_4562a.fields.json new file mode 100644 index 00000000..5124ba11 --- /dev/null +++ b/test/data/ia/form/ia_scr_4562a.fields.json @@ -0,0 +1 @@ +[{"id":"name","type":"alpha","calc":false,"value":""},{"id":"Text2","type":"ssn","calc":false,"value":""},{"id":"name_corp","type":"alpha","calc":false,"value":""},{"id":"fed_ID","type":"mask","calc":false,"value":""},{"id":"H1","type":"number","calc":false,"value":""},{"id":"A1","type":"alpha","calc":false,"value":""},{"id":"B1","type":"date","calc":false,"value":""},{"id":"C1","type":"alpha","calc":false,"value":""},{"id":"D1","type":"number","calc":false,"value":""},{"id":"E1","type":"number","calc":false,"value":""},{"id":"F1","type":"number","calc":false,"value":""},{"id":"G1","type":"number","calc":false,"value":""},{"id":"I1","type":"number","calc":false,"value":""},{"id":"J1","type":"number","calc":false,"value":""},{"id":"A2","type":"alpha","calc":false,"value":""},{"id":"B2","type":"date","calc":false,"value":""},{"id":"C2","type":"alpha","calc":false,"value":""},{"id":"D2","type":"number","calc":false,"value":""},{"id":"E2","type":"number","calc":false,"value":""},{"id":"F2","type":"number","calc":false,"value":""},{"id":"G2","type":"number","calc":false,"value":""},{"id":"H2","type":"number","calc":false,"value":""},{"id":"I2","type":"number","calc":false,"value":""},{"id":"J2","type":"number","calc":false,"value":""},{"id":"A3","type":"alpha","calc":false,"value":""},{"id":"B3","type":"date","calc":false,"value":""},{"id":"C3","type":"alpha","calc":false,"value":""},{"id":"D3","type":"number","calc":false,"value":""},{"id":"E3","type":"number","calc":false,"value":""},{"id":"F3","type":"number","calc":false,"value":""},{"id":"G3","type":"number","calc":false,"value":""},{"id":"H3","type":"number","calc":false,"value":""},{"id":"I3","type":"number","calc":false,"value":""},{"id":"J3","type":"number","calc":false,"value":""},{"id":"A4","type":"alpha","calc":false,"value":""},{"id":"B4","type":"date","calc":false,"value":""},{"id":"C4","type":"alpha","calc":false,"value":""},{"id":"D4","type":"number","calc":false,"value":""},{"id":"E4","type":"number","calc":false,"value":""},{"id":"F4","type":"number","calc":false,"value":""},{"id":"G4","type":"number","calc":false,"value":""},{"id":"H4","type":"number","calc":false,"value":""},{"id":"I4","type":"number","calc":false,"value":""},{"id":"J4","type":"number","calc":false,"value":""},{"id":"A5","type":"alpha","calc":false,"value":""},{"id":"C5","type":"alpha","calc":false,"value":""},{"id":"B5","type":"date","calc":false,"value":""},{"id":"D5","type":"number","calc":false,"value":""},{"id":"E5","type":"number","calc":false,"value":""},{"id":"F5","type":"number","calc":false,"value":""},{"id":"G5","type":"number","calc":false,"value":""},{"id":"H5","type":"number","calc":false,"value":""},{"id":"I5","type":"number","calc":false,"value":""},{"id":"J5","type":"number","calc":false,"value":""},{"id":"A1_2","type":"alpha","calc":false,"value":""},{"id":"B1_2","type":"date","calc":false,"value":""},{"id":"C1_2","type":"date","calc":false,"value":""},{"id":"D1_2","type":"number","calc":false,"value":""},{"id":"E1_2","type":"number","calc":false,"value":""},{"id":"A2_2","type":"alpha","calc":false,"value":""},{"id":"B2_2","type":"date","calc":false,"value":""},{"id":"C2_2","type":"date","calc":false,"value":""},{"id":"D2_2","type":"number","calc":false,"value":""},{"id":"E2_2","type":"number","calc":false,"value":""},{"id":"A3_2","type":"alpha","calc":false,"value":""},{"id":"B3_2","type":"date","calc":false,"value":""},{"id":"C3_2","type":"date","calc":false,"value":""},{"id":"D3_2","type":"number","calc":false,"value":""},{"id":"E3_2","type":"number","calc":false,"value":""},{"id":"A4_2","type":"alpha","calc":false,"value":""},{"id":"B4_2","type":"date","calc":false,"value":""},{"id":"C4_2","type":"date","calc":false,"value":""},{"id":"D4_2","type":"number","calc":false,"value":""},{"id":"E4_2","type":"number","calc":false,"value":""},{"id":"A5_2","type":"alpha","calc":false,"value":""},{"id":"B5_2","type":"date","calc":false,"value":""},{"id":"C5_2","type":"date","calc":false,"value":""},{"id":"D5_2","type":"number","calc":false,"value":""},{"id":"E5_2","type":"number","calc":false,"value":""},{"id":"P3_1","type":"number","calc":false,"value":""},{"id":"P3_2","type":"number","calc":false,"value":""},{"id":"P3_3","type":"number","calc":false,"value":""},{"id":"P3_4","type":"number","calc":false,"value":""},{"id":"P3_5","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_4562a.json b/test/data/ia/form/ia_scr_4562a.json new file mode 100755 index 00000000..8a7ced33 --- /dev/null +++ b/test/data/ia/form/ia_scr_4562a.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"41105.pmd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":38.25,"HLines":[{"oc":"#2b2e34","x":30.0300034375,"y":3.6187499999999964,"w":3.06,"l":99.90750000000003},{"oc":"#2b2e34","x":13.571251718750016,"y":3.8024993749999965,"w":0.7200000000000001,"l":116.36625000000001},{"oc":"#2b2e34","x":24.729340624999978,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":24.729340624999978,"y":10.813749999999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":6.187500000000001,"y":9.682501250000001,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":10.814999375,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":11.647500625000001,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":12.435000625,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":13.229999999999999,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":14.017499999999998,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":14.8125,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":15.600000000000003,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":116.759809375,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":116.759809375,"y":10.788749999999993,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":101.144965625,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":101.144965625,"y":10.788749999999993,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":87.309028125,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":87.309028125,"y":10.788749999999993,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":72.81996562499998,"y":9.679987499999996,"w":1.4400000000000002,"l":1.9662843750000139},{"oc":"#2b2e34","x":72.81996562499998,"y":10.819999999999993,"w":1.4400000000000002,"l":1.9662843750000139},{"oc":"#2b2e34","x":57.60043437499999,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":57.60043437499999,"y":10.798124999999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":43.76449687499999,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":43.76449687499999,"y":10.798124999999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":32.11996562499998,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":32.11996562499998,"y":10.798124999999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":15.559809374999992,"y":9.679987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":15.559809374999992,"y":10.823124999999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":6.269965624999986,"y":9.692487499999993,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":6.269965624999986,"y":10.826249999999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":6.269965624999986,"y":17.854987499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":6.269965624999986,"y":18.998124999999998,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":25.949653124999987,"y":17.851862499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":25.949653124999987,"y":18.994999999999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":47.07309062499999,"y":17.864362499999995,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":47.07309062499999,"y":18.994999999999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":68.82387187499998,"y":17.873737499999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":68.82387187499998,"y":19.026249999999994,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":90.48012187499998,"y":17.839362499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":90.48012187499998,"y":19.007499999999997,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":110.409028125,"y":17.851862499999996,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":110.409028125,"y":18.969999999999995,"w":1.4400000000000002,"l":1.966284375000001},{"oc":"#2b2e34","x":6.187500000000001,"y":17.8425,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":19.0125,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":19.8,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":20.595,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":21.382500000000004,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":22.177499375,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":22.964999375,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":23.752499375,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":5.137500000000003,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":6.832501249999997,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":6.187500000000001,"y":8.512499999999998,"w":1.4400000000000002,"l":123.75000000000003},{"oc":"#2b2e34","x":57.502501718750004,"y":23.797500624999998,"w":1.4400000000000002,"l":72.43500000000002},{"oc":"#2b2e34","x":57.502501718750004,"y":25.747500000000002,"w":1.4400000000000002,"l":72.43500000000002},{"oc":"#2b2e34","x":57.502501718750004,"y":26.872500000000002,"w":1.4400000000000002,"l":72.43500000000002},{"oc":"#2b2e34","x":57.502501718750004,"y":27.997500000000002,"w":1.4400000000000002,"l":72.43500000000002},{"oc":"#2b2e34","x":57.502501718750004,"y":29.122500000000002,"w":1.4400000000000002,"l":72.43500000000002},{"oc":"#2b2e34","x":57.502501718750004,"y":30.247500000000002,"w":1.4400000000000002,"l":72.43500000000002},{"oc":"#2b2e34","x":57.502501718750004,"y":31.372500000000002,"w":1.4400000000000002,"l":72.43500000000002},{"oc":"#2b2e34","x":57.502501718750004,"y":32.4375,"w":1.4400000000000002,"l":72.43500000000002}],"VLines":[{"oc":"#2b2e34","x":87.28499828125001,"y":9.652499375,"w":1.4400000000000002,"l":5.940000000000002},{"oc":"#2b2e34","x":72.88875,"y":9.652499375,"w":1.4400000000000002,"l":5.955000000000001},{"oc":"#2b2e34","x":43.89000171875001,"y":9.652499375,"w":1.4400000000000002,"l":5.977500000000002},{"oc":"#2b2e34","x":32.278124999999996,"y":9.652499375,"w":1.4400000000000002,"l":5.1674999999999995},{"oc":"#2b2e34","x":24.543749999999996,"y":9.652499375,"w":1.4400000000000002,"l":5.1674999999999995},{"oc":"#2b2e34","x":101.10375,"y":9.652499375,"w":1.4400000000000002,"l":5.940000000000002},{"oc":"#2b2e34","x":15.530626718750005,"y":9.652499375,"w":1.4400000000000002,"l":5.1674999999999995},{"oc":"#2b2e34","x":26.69562499999998,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1337624999999985},{"oc":"#2b2e34","x":24.729340624999978,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1337624999999985},{"oc":"#2b2e34","x":57.54375000000001,"y":9.652499375,"w":1.4400000000000002,"l":5.940000000000002},{"oc":"#2b2e34","x":116.758125,"y":9.652499375,"w":1.4400000000000002,"l":5.940000000000002},{"oc":"#2b2e34","x":118.72609375,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1087624999999974},{"oc":"#2b2e34","x":116.759809375,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1087624999999974},{"oc":"#2b2e34","x":103.11125,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1087624999999974},{"oc":"#2b2e34","x":101.144965625,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1087624999999974},{"oc":"#2b2e34","x":89.2753125,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1087624999999974},{"oc":"#2b2e34","x":87.309028125,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1087624999999974},{"oc":"#2b2e34","x":74.78625,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1400124999999974},{"oc":"#2b2e34","x":72.81996562499998,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1400124999999974},{"oc":"#2b2e34","x":59.56671874999999,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1181374999999985},{"oc":"#2b2e34","x":57.60043437499999,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1181374999999985},{"oc":"#2b2e34","x":45.73078124999999,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1181374999999985},{"oc":"#2b2e34","x":43.76449687499999,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1181374999999985},{"oc":"#2b2e34","x":34.08624999999998,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1181374999999985},{"oc":"#2b2e34","x":32.11996562499998,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1181374999999985},{"oc":"#2b2e34","x":17.526093749999994,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1431374999999993},{"oc":"#2b2e34","x":15.559809374999992,"y":9.679987499999996,"w":1.4400000000000002,"l":1.1431374999999993},{"oc":"#2b2e34","x":8.236249999999988,"y":9.692487499999993,"w":1.4400000000000002,"l":1.1337625000000031},{"oc":"#2b2e34","x":6.269965624999986,"y":9.692487499999993,"w":1.4400000000000002,"l":1.1337625000000031},{"oc":"#2b2e34","x":90.48187328125,"y":17.88,"w":1.4400000000000002,"l":5.070000000000003},{"oc":"#2b2e34","x":68.784375,"y":17.895,"w":1.4400000000000002,"l":5.055000000000002},{"oc":"#2b2e34","x":46.963123281250006,"y":17.872500625,"w":1.4400000000000002,"l":5.077500000000001},{"oc":"#2b2e34","x":110.30250000000001,"y":17.85,"w":1.4400000000000002,"l":5.902500000000001},{"oc":"#2b2e34","x":8.236249999999988,"y":17.854987499999996,"w":1.4400000000000002,"l":1.1431375000000017},{"oc":"#2b2e34","x":6.269965624999986,"y":17.854987499999996,"w":1.4400000000000002,"l":1.1431375000000017},{"oc":"#2b2e34","x":27.915937499999988,"y":17.851862499999996,"w":1.4400000000000002,"l":1.1431374999999993},{"oc":"#2b2e34","x":25.949653124999987,"y":17.851862499999996,"w":1.4400000000000002,"l":1.1431374999999993},{"oc":"#2b2e34","x":49.03937499999999,"y":17.864362499999995,"w":1.4400000000000002,"l":1.1306374999999989},{"oc":"#2b2e34","x":47.07309062499999,"y":17.864362499999995,"w":1.4400000000000002,"l":1.1306374999999989},{"oc":"#2b2e34","x":70.79015624999998,"y":17.873737499999994,"w":1.4400000000000002,"l":1.1525125000000003},{"oc":"#2b2e34","x":68.82387187499998,"y":17.873737499999994,"w":1.4400000000000002,"l":1.1525125000000003},{"oc":"#2b2e34","x":92.44640624999998,"y":17.839362499999996,"w":1.4400000000000002,"l":1.1681375000000003},{"oc":"#2b2e34","x":90.48012187499998,"y":17.839362499999996,"w":1.4400000000000002,"l":1.1681375000000003},{"oc":"#2b2e34","x":112.3753125,"y":17.851862499999996,"w":1.4400000000000002,"l":1.1181375000000007},{"oc":"#2b2e34","x":110.409028125,"y":17.851862499999996,"w":1.4400000000000002,"l":1.1181375000000007},{"oc":"#2b2e34","x":25.98750000000001,"y":17.872500625,"w":1.4400000000000002,"l":5.077500000000001},{"oc":"#2b2e34","x":84.975,"y":5.137500000000003,"w":1.4400000000000002,"l":3.375},{"oc":"#2b2e34","x":68.82562328125,"y":23.767500000000002,"w":1.4400000000000002,"l":8.594999999999999},{"oc":"#2b2e34","x":99.99000171875001,"y":23.767500000000002,"w":1.4400000000000002,"l":8.632500000000002},{"oc":"#2b2e34","x":57.52312156250001,"y":23.767500000000002,"w":1.4400000000000002,"l":8.594999999999999},{"oc":"#2b2e34","x":129.834375,"y":23.7375,"w":1.4400000000000002,"l":8.662500000000003}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":116.69453125,"y":14.818724999999995,"w":13.242968750000006,"h":0.7750249999999994,"clr":1},{"x":72.7975875,"y":14.818724999999995,"w":14.50631875,"h":0.7750249999999994,"clr":1},{"oc":"#2b2e34","x":24.729340624999978,"y":9.679987499999996,"w":1.966284375000001,"h":1.1337624999999985,"clr":-1},{"oc":"#2b2e34","x":116.759809375,"y":9.679987499999996,"w":1.966284375000001,"h":1.1087624999999974,"clr":-1},{"oc":"#2b2e34","x":101.144965625,"y":9.679987499999996,"w":1.966284375000001,"h":1.1087624999999974,"clr":-1},{"oc":"#2b2e34","x":87.309028125,"y":9.679987499999996,"w":1.966284375000001,"h":1.1087624999999974,"clr":-1},{"oc":"#2b2e34","x":72.81996562499998,"y":9.679987499999996,"w":1.9662843750000139,"h":1.1400124999999974,"clr":-1},{"oc":"#2b2e34","x":57.60043437499999,"y":9.679987499999996,"w":1.966284375000001,"h":1.1181374999999985,"clr":-1},{"oc":"#2b2e34","x":43.76449687499999,"y":9.679987499999996,"w":1.966284375000001,"h":1.1181374999999985,"clr":-1},{"oc":"#2b2e34","x":32.11996562499998,"y":9.679987499999996,"w":1.966284375000001,"h":1.1181374999999985,"clr":-1},{"oc":"#2b2e34","x":15.559809374999992,"y":9.679987499999996,"w":1.966284375000001,"h":1.1431374999999993,"clr":-1},{"oc":"#2b2e34","x":6.269965624999986,"y":9.692487499999993,"w":1.966284375000001,"h":1.1337625000000031,"clr":-1},{"x":25.893140624999987,"y":22.946849999999998,"w":84.41623437500002,"h":0.8093999999999966,"clr":1},{"oc":"#2b2e34","x":6.269965624999986,"y":17.854987499999996,"w":1.966284375000001,"h":1.1431375000000017,"clr":-1},{"oc":"#2b2e34","x":25.949653124999987,"y":17.851862499999996,"w":1.966284375000001,"h":1.1431374999999993,"clr":-1},{"oc":"#2b2e34","x":47.07309062499999,"y":17.864362499999995,"w":1.966284375000001,"h":1.1306374999999989,"clr":-1},{"oc":"#2b2e34","x":68.82387187499998,"y":17.873737499999994,"w":1.966284375000001,"h":1.1525125000000003,"clr":-1},{"oc":"#2b2e34","x":90.48012187499998,"y":17.839362499999996,"w":1.966284375000001,"h":1.1681375000000003,"clr":-1},{"oc":"#2b2e34","x":110.409028125,"y":17.851862499999996,"w":1.966284375000001,"h":1.1181375000000007,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":107.45375000000001,"y":2.5799999999999983,"w":129.02400000000003,"clr":-1,"A":"left","R":[{"T":"2012%20IA%204562A","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":80.29062500000002,"y":3.997499999999998,"w":287.412,"clr":-1,"A":"left","R":[{"T":"Iowa%20Depreciation%20Adjustment%20Schedule","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":13.218124999999997,"y":2.895000000000001,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.094374999999998,"y":1.9800000000000004,"w":136.51319999999998,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.094375000000005,"y":4.049999999999997,"w":271.43660000000017,"clr":-1,"A":"left","R":[{"T":"Enclose%20this%20form%20with%20your%20Iowa%20income%20tax%20return.","S":-1,"TS":[0,15,1,0]}]},{"x":24.603125000000013,"y":9.847500000000002,"w":7.892,"clr":1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":15.672500000000012,"y":14.662500000000001,"w":152.2813,"clr":-1,"A":"left","R":[{"T":"Total%20amounts%20in%20columns%20E%2C%20F%2C%20H%2C%20and%20I","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.010624999999994,"y":9.352500000000001,"w":31.9816,"clr":-1,"A":"left","R":[{"T":"Description","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":17.67312499999999,"y":9.352500000000001,"w":34.616899999999994,"clr":-1,"A":"left","R":[{"T":"Date%20Placed","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":27.634999999999994,"y":9.352500000000001,"w":17.5998,"clr":-1,"A":"left","R":[{"T":"Life%20of","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":36.668749999999996,"y":9.352500000000001,"w":20.601499999999998,"clr":-1,"A":"left","R":[{"T":"Cost%20or","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":49.724374999999995,"y":9.352500000000001,"w":21.6714,"clr":-1,"A":"left","R":[{"T":"Federal","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":64.038021875,"y":9.352500000000001,"w":21.6714,"clr":-1,"A":"left","R":[{"T":"Federal","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":77.815625,"y":9.352500000000001,"w":36.6611,"clr":-1,"A":"left","R":[{"T":"Accumulated","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":90.396875,"y":9.352500000000001,"w":52.2084,"clr":-1,"A":"left","R":[{"T":"Iowa%20179%20Expense","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":106.36062499999998,"y":9.352500000000001,"w":37.601,"clr":-1,"A":"left","R":[{"T":"MACRS%20Iowa","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":121.12812499999998,"y":9.352500000000001,"w":36.6611,"clr":-1,"A":"left","R":[{"T":"Accumulated","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":9.051875000000008,"y":9.87,"w":31.298500000000004,"clr":-1,"A":"left","R":[{"T":"of%20Property","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":18.230000000000008,"y":9.87,"w":28.007999999999996,"clr":-1,"A":"left","R":[{"T":"in%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":27.80000000000001,"y":9.87,"w":15.898499999999999,"clr":-1,"A":"left","R":[{"T":"Asset","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":35.57562500000001,"y":9.87,"w":33.3207,"clr":-1,"A":"left","R":[{"T":"Other%20Basis","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":48.404375,"y":9.87,"w":37.0229,"clr":-1,"A":"left","R":[{"T":"179%20Expense","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":60.18125,"y":9.87,"w":66.30259999999997,"clr":-1,"A":"left","R":[{"T":"Depreciation%20Deduction","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":75.876875,"y":9.87,"w":59.29399999999999,"clr":-1,"A":"left","R":[{"T":"Federal%20Depreciation","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":103.88562500000002,"y":9.87,"w":66.30259999999997,"clr":-1,"A":"left","R":[{"T":"Depreciation%20Deduction","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":119.89062500000001,"y":9.87,"w":51.18850000000001,"clr":-1,"A":"left","R":[{"T":"Iowa%20Depreciation","S":51,"TS":[0,9,0,0]}]},{"x":117.003125,"y":9.87,"w":6.1160000000000005,"clr":1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,15,1,0]}]},{"x":101.61687500000001,"y":9.87,"w":3.108,"clr":1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,15,1,0]}]},{"x":87.40625,"y":9.87,"w":7.892,"clr":1,"A":"left","R":[{"T":"H","S":-1,"TS":[0,15,1,0]}]},{"x":72.80375000000001,"y":9.8025,"w":8.508,"clr":1,"A":"left","R":[{"T":"%20G%20","S":-1,"TS":[0,15,1,0]}]},{"x":57.768125000000005,"y":9.87,"w":6.721,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,15,1,0]}]},{"x":43.84624999999999,"y":9.87,"w":7.287,"clr":1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,15,1,0]}]},{"x":32.25500000000001,"y":9.87,"w":7.892,"clr":1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,15,1,0]}]},{"x":15.63124999999999,"y":9.87,"w":7.892,"clr":1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,15,1,0]}]},{"x":6.411874999999986,"y":9.87,"w":7.542,"clr":1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":116.67312499999998,"y":35.6475,"w":75.85920000000003,"clr":-1,"A":"left","R":[{"T":"41-105a%20(09%2F20%2F12)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.937499999999988,"y":8.617499999999998,"w":285.25919999999996,"clr":-1,"A":"left","R":[{"T":"PART%20I%20-%20Computation%20of%20Iowa%20depreciation%20adjustment","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":5.937499999999988,"y":15.809999999999999,"w":220.56390000000013,"clr":-1,"A":"left","R":[{"T":"PART%20%20II%20-%20Disposition%20adjustments%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":44.898124999999986,"y":15.809999999999999,"w":70.67609999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20not%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#2b2e34","x":57.04624999999999,"y":15.809999999999999,"w":402.5434999999999,"clr":-1,"A":"left","R":[{"T":"sold%20or%20disposed%20of%20any%20bonus%20depreciation%20or%20section%20179%20property%2C%20skip%20to%20Part%20III%20of%20this%20form.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#2b2e34","x":5.937499999999988,"y":16.634999999999998,"w":2.691,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#2b2e34","x":6.411874999999988,"y":16.634999999999998,"w":50.4255,"clr":-1,"A":"left","R":[{"T":"f%20you%20have%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#2b2e34","x":15.07437499999999,"y":16.634999999999998,"w":643.8851000000009,"clr":-1,"A":"left","R":[{"T":"disposed%20of%20bonus%20depreciation%20or%20section%20179%20property%2C%20and%20an%20Iowa%20depreciation%20adjustment%20applied%20to%20this%20property%20in%20a%20prior%20year%2C%20continue%20to%20Part%20II.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#2b2e34","x":10.88749999999998,"y":17.52,"w":69.4081,"clr":-1,"A":"left","R":[{"T":"Description%20of%20Property","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":12.59937499999998,"y":18.0375,"w":49.516400000000004,"clr":-1,"A":"left","R":[{"T":"sold%20or%20disposed","S":51,"TS":[0,9,0,0]}]},{"x":6.411874999999986,"y":18.03,"w":7.542,"clr":1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":33.40999999999999,"y":17.535,"w":43.574,"clr":-1,"A":"left","R":[{"T":"Date%20placed%20in","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":32.17249999999999,"y":18.052500000000002,"w":57.6167,"clr":-1,"A":"left","R":[{"T":"service%20-%20mo%2Fday%2Fyr","S":51,"TS":[0,9,0,0]}]},{"x":26.005625000000002,"y":18.03,"w":7.892,"clr":1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":56.118125,"y":17.5275,"w":28.692899999999995,"clr":-1,"A":"left","R":[{"T":"Date%20sold","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":55.581875000000004,"y":18.045,"w":35.1247,"clr":-1,"A":"left","R":[{"T":"or%20disposed","S":51,"TS":[0,9,0,0]}]},{"x":47.084374999999994,"y":18.03,"w":7.892,"clr":1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":74.35062500000001,"y":17.535,"w":70.41840000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Iowa%20depreciation","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":73.67,"y":18.052500000000002,"w":78.234,"clr":-1,"A":"left","R":[{"T":"%2B%20Sec.%20179%20expense%20taken","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":115.60062500000002,"y":17.5125,"w":62.222000000000016,"clr":-1,"A":"left","R":[{"T":"Adjustment%20(subtract","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":114.42500000000001,"y":18.03,"w":76.0267,"clr":-1,"A":"left","R":[{"T":"column%20E%20from%20column%20D)","S":51,"TS":[0,9,0,0]}]},{"x":90.60312500000002,"y":18.03,"w":7.287,"clr":1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,15,1,0]}]},{"x":110.63000000000001,"y":18.03,"w":6.721,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":6.7212499999999915,"y":22.8075,"w":103.65949999999998,"clr":-1,"A":"left","R":[{"T":"Total%20amounts%20in%20column%20F","S":-1,"TS":[0,11,1,0]}]},{"x":68.946875,"y":18.03,"w":7.892,"clr":1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":94.5425,"y":17.5275,"w":77.2088,"clr":-1,"A":"left","R":[{"T":"Total%20federal%20depreciation","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":94.46,"y":18.045,"w":78.234,"clr":-1,"A":"left","R":[{"T":"%2B%20Sec.%20179%20expense%20taken","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":24.6375,"w":151.8268,"clr":-1,"A":"left","R":[{"T":"1.%20%20Enter%20the%20sum%20of%20amounts%20from","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":9.03125,"y":25.3875,"w":98.08280000000002,"clr":-1,"A":"left","R":[{"T":"Part%20I%2C%20columns%20E%20%26%20F.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":26.15,"y":25.3875,"w":39.26860000000001,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":33.389375,"y":25.3875,"w":8.2212,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":35.51375,"y":25.3875,"w":122.03179999999995,"clr":-1,"A":"left","R":[{"T":"______________________","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.937499999999996,"y":26.362499999999997,"w":151.8268,"clr":-1,"A":"left","R":[{"T":"2.%20%20Enter%20the%20sum%20of%20amounts%20from","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":9.031249999999996,"y":27.112499999999997,"w":95.19720000000004,"clr":-1,"A":"left","R":[{"T":"Part%20I%2C%20columns%20H%20%26%20I.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":25.675624999999997,"y":27.112499999999997,"w":42.027,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":33.389374999999994,"y":27.112499999999997,"w":8.2212,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":35.51375,"y":27.112499999999997,"w":122.03179999999995,"clr":-1,"A":"left","R":[{"T":"______________________","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.937499999999996,"y":28.087499999999995,"w":135.87289999999996,"clr":-1,"A":"left","R":[{"T":"3.%20%20Adjustment%20to%20depreciation.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":9.031249999999996,"y":28.837499999999995,"w":117.03920000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":29.511874999999996,"y":28.837499999999995,"w":19.579,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":33.389374999999994,"y":28.837499999999995,"w":8.2212,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":35.51375,"y":28.837499999999995,"w":122.03179999999995,"clr":-1,"A":"left","R":[{"T":"______________________","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.937499999999996,"y":29.8125,"w":96.97879999999999,"clr":-1,"A":"left","R":[{"T":"4.%20%20Enter%20amount%20from","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":9.031249999999996,"y":30.5625,"w":76.716,"clr":-1,"A":"left","R":[{"T":"Part%20II%2C%20column%20F.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":22.788124999999997,"y":30.5625,"w":58.82729999999999,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":33.389374999999994,"y":30.5625,"w":8.2212,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":35.51375,"y":30.5625,"w":122.03179999999995,"clr":-1,"A":"left","R":[{"T":"______________________","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.937499999999996,"y":31.5375,"w":91.58370000000002,"clr":-1,"A":"left","R":[{"T":"5.%20Add%20lines%203%20and%204.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":22.293124999999996,"y":31.5375,"w":61.58679999999998,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":33.389374999999994,"y":31.5375,"w":8.2212,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":35.51375,"y":31.5375,"w":122.03179999999995,"clr":-1,"A":"left","R":[{"T":"______________________","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.937499999999996,"y":23.894999999999996,"w":262.15379999999993,"clr":-1,"A":"left","R":[{"T":"PART%20%20III%20-%20Summary%20of%20adjustments%20to%20net%20income","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":6.539062500000001,"y":5.070000000000003,"w":45.0892,"clr":-1,"A":"left","R":[{"T":"%20Name(s)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":85.59125,"y":5.070000000000003,"w":21.7603,"clr":-1,"A":"left","R":[{"T":"SSN","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":6.453125000000001,"y":6.772499999999998,"w":247.44120000000015,"clr":-1,"A":"left","R":[{"T":"%20Name%20of%20Partnership%20or%20Corporation%20(if%20applicable)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":85.59125,"y":6.772499999999998,"w":24.5676,"clr":-1,"A":"left","R":[{"T":"FEIN","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":57.706250000000004,"y":23.9175,"w":216.92000000000002,"clr":-1,"A":"left","R":[{"T":"For%20Iowa%20Form%3A%20%20%20Enter%20positive%20amounts%20from%20line%205%20on%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.62625000000001,"y":23.9175,"w":161.94120000000004,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Enter%20negative%20amounts%20from%20line%205%20on%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.799375000000005,"y":24.742499999999996,"w":149.01540000000003,"clr":-1,"A":"left","R":[{"T":"1040%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Other%20Income%2C%20line%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.736696875,"y":24.742499999999996,"w":97.8555,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Other%20Income%2C%20line%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.799375000000005,"y":25.867499999999996,"w":20.5284,"clr":-1,"A":"left","R":[{"T":"1041","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.60687500000002,"y":25.867499999999996,"w":82.42200000000001,"clr":-1,"A":"left","R":[{"T":"Other%20Income%2C%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.7257140625,"y":25.867499999999996,"w":92.74319999999999,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Other%20Income%2C%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.799375000000005,"y":26.992499999999996,"w":20.5284,"clr":-1,"A":"left","R":[{"T":"1065","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.60687500000002,"y":26.992499999999996,"w":48.969,"clr":-1,"A":"left","R":[{"T":"Part%20I%2C%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.69245625000002,"y":26.992499999999996,"w":59.292,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Part%20I%2C%20line%206","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.799375000000005,"y":28.117499999999996,"w":20.5284,"clr":-1,"A":"left","R":[{"T":"1120","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.60687500000002,"y":28.117499999999996,"w":146.18550000000002,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%2C%20depreciation%20adj.%2C%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.8411109375,"y":28.117499999999996,"w":156.5042,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Schedule%20A%2C%20depreciation%20adj.%2C%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.799375000000005,"y":29.242499999999996,"w":26.646,"clr":-1,"A":"left","R":[{"T":"1120A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.60687500000002,"y":29.242499999999996,"w":138.96199999999996,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%2C%20other%20additions%2C%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.823940625,"y":29.242499999999996,"w":154.92600000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Schedule%20A%2C%20other%20reductions%2C%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.799375000000005,"y":30.367499999999996,"w":26.646,"clr":-1,"A":"left","R":[{"T":"1120S","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.60687500000002,"y":30.367499999999996,"w":73.7496,"clr":-1,"A":"left","R":[{"T":"Schedule%20S%2C%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.75881718750001,"y":30.367499999999996,"w":84.07260000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Schedule%20S%2C%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.799375000000005,"y":31.492481249999997,"w":24.372,"clr":-1,"A":"left","R":[{"T":"1120F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.60687500000002,"y":31.492481249999997,"w":71.3358,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%2C%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":98.62625000000001,"y":31.492481249999997,"w":82.163,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Schedule%20D%2C%20line%207","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"name","EN":0},"TI":585,"AM":0,"x":6.323968750000004,"y":5.949062499999997,"w":78.251078125,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"Text2","EN":0},"TI":586,"AM":0,"x":90.35675,"y":5.915750000000003,"w":39.732876562499996,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"name_corp","EN":0},"TI":587,"AM":0,"x":6.190078125000005,"y":7.639562500000001,"w":78.460765625,"h":0.8333333333333334},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"fed_ID","EN":0},"TI":588,"AM":0,"x":90.2103125,"y":7.6374375,"w":39.731639062499994,"h":0.8333333333333334,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"H1","EN":0},"TI":589,"AM":0,"x":87.61310937500001,"y":10.869125000000002,"w":13.251734374999995,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1","EN":0},"TI":590,"AM":0,"x":6.198500000000001,"y":10.874500000000003,"w":9.149078124999987,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B1","EN":0},"TI":591,"AM":0,"x":15.702499999999997,"y":10.8764375,"w":8.415171875000016,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C1","EN":0},"TI":592,"AM":0,"x":24.878390625,"y":10.874500000000003,"w":7.174578125000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D1","EN":0},"TI":593,"AM":0,"x":32.54917187499999,"y":10.870624999999999,"w":11.139218750000017,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E1","EN":0},"TI":594,"AM":0,"x":44.184421875000005,"y":10.875312499999998,"w":13.121453125,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F1","EN":0},"TI":595,"AM":0,"x":57.78575000000001,"y":10.8764375,"w":14.864093749999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G1","EN":0},"TI":596,"AM":0,"x":72.99634375000001,"y":10.878437499999999,"w":13.861718750000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"I1","EN":0},"TI":597,"AM":0,"x":101.344546875,"y":10.868375,"w":15.231390625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"J1","EN":0},"TI":598,"AM":0,"x":117.068703125,"y":10.868375,"w":12.876359375000012,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2","EN":0},"TI":599,"AM":0,"x":6.19317187500001,"y":11.673999999999998,"w":9.157499999999983,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B2","EN":0},"TI":600,"AM":0,"x":15.696999999999997,"y":11.673999999999998,"w":8.422906250000002,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C2","EN":0},"TI":601,"AM":0,"x":24.87306250000001,"y":11.672062500000001,"w":7.185234374999985,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D2","EN":0},"TI":602,"AM":0,"x":32.55673437500001,"y":11.6700625,"w":11.129421874999988,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E2","EN":0},"TI":603,"AM":0,"x":44.179093750000014,"y":11.67125,"w":13.123687499999987,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F2","EN":0},"TI":604,"AM":0,"x":57.796406250000004,"y":11.673999999999998,"w":14.848109374999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G2","EN":0},"TI":605,"AM":0,"x":72.99634375000001,"y":11.67125,"w":13.861718750000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"H2","EN":0},"TI":606,"AM":0,"x":87.61087500000001,"y":11.663937499999998,"w":13.251734374999995,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"I2","EN":0},"TI":607,"AM":0,"x":101.35537500000001,"y":11.663937499999998,"w":15.22915625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"J2","EN":0},"TI":608,"AM":0,"x":117.0750625,"y":11.661999999999997,"w":12.870000000000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A3","EN":0},"TI":609,"AM":0,"x":6.190937499999998,"y":12.457125,"w":9.159734374999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B3","EN":0},"TI":610,"AM":0,"x":15.699234375000009,"y":12.462187499999999,"w":8.421703124999992,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C3","EN":0},"TI":611,"AM":0,"x":24.867734374999994,"y":12.460187499999998,"w":7.185234375000012,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D3","EN":0},"TI":612,"AM":0,"x":32.545906249999994,"y":12.469999999999999,"w":11.143515625000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E3","EN":0},"TI":613,"AM":0,"x":44.179093750000014,"y":12.460187499999998,"w":13.126781249999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F3","EN":0},"TI":614,"AM":0,"x":57.78575000000001,"y":12.458250000000001,"w":14.864093749999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G3","EN":0},"TI":615,"AM":0,"x":72.99634375000001,"y":12.462187499999999,"w":13.856218750000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"H3","EN":0},"TI":616,"AM":0,"x":87.61310937500001,"y":12.452125,"w":13.249499999999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"I3","EN":0},"TI":617,"AM":0,"x":101.353140625,"y":12.450125,"w":15.226062500000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"J3","EN":0},"TI":618,"AM":0,"x":117.07196875000001,"y":12.450125,"w":12.870876562499996,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A4","EN":0},"TI":619,"AM":0,"x":6.190937499999998,"y":13.255,"w":9.161968750000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B4","EN":0},"TI":620,"AM":0,"x":15.702499999999997,"y":13.253062499999999,"w":8.415171875000016,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C4","EN":0},"TI":621,"AM":0,"x":24.87306250000001,"y":13.255,"w":7.179906249999994,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D4","EN":0},"TI":622,"AM":0,"x":32.55673437500001,"y":13.255,"w":11.13165625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E4","EN":0},"TI":623,"AM":0,"x":44.179093750000014,"y":13.253062499999999,"w":13.126781249999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F4","EN":0},"TI":624,"AM":0,"x":57.791078125,"y":13.256937500000001,"w":14.856703125000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G4","EN":0},"TI":625,"AM":0,"x":73.001671875,"y":13.251062499999998,"w":13.856390625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"H4","EN":0},"TI":626,"AM":0,"x":87.61310937500001,"y":13.2449375,"w":13.251734374999995,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"I4","EN":0},"TI":627,"AM":0,"x":101.353140625,"y":13.246874999999998,"w":15.222796875000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"J4","EN":0},"TI":628,"AM":0,"x":117.069734375,"y":13.243,"w":12.872165624999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5","EN":0},"TI":629,"AM":0,"x":6.194203125000011,"y":14.047125000000003,"w":9.15423437499997,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C5","EN":0},"TI":630,"AM":0,"x":24.862234375000007,"y":14.043187499999997,"w":7.19606249999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B5","EN":0},"TI":631,"AM":0,"x":15.688578125000001,"y":14.052937499999999,"w":8.429093750000012,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D5","EN":0},"TI":632,"AM":0,"x":32.55673437500001,"y":14.043187499999997,"w":11.129421874999988,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E5","EN":0},"TI":633,"AM":0,"x":44.17600000000001,"y":14.047125000000003,"w":13.129874999999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F5","EN":0},"TI":634,"AM":0,"x":57.793312500000006,"y":14.043187499999997,"w":14.848968750000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"G5","EN":0},"TI":635,"AM":0,"x":72.99410937500001,"y":14.04125,"w":13.861718750000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"H5","EN":0},"TI":636,"AM":0,"x":87.61104687500001,"y":14.03225,"w":13.251562499999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"I5","EN":0},"TI":637,"AM":0,"x":101.345578125,"y":14.03225,"w":15.232593749999998,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"J5","EN":0},"TI":638,"AM":0,"x":117.07196875000001,"y":14.031187500000001,"w":12.870876562499996,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1_2","EN":0},"TI":639,"AM":0,"x":6.216374999999995,"y":18.9788125,"w":19.55696875,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B1_2","EN":0},"TI":640,"AM":0,"x":26.519453124999988,"y":19.0429375,"w":20.55539062500002,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"C1_2","EN":0},"TI":641,"AM":0,"x":47.273875000000004,"y":18.9831875,"w":21.281046875,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D1_2","EN":0},"TI":642,"AM":0,"x":68.90898437500002,"y":19.0409375,"w":21.16503125,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E1_2","EN":0},"TI":643,"AM":0,"x":90.97360937500001,"y":18.9776875,"w":19.191562500000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2_2","EN":0},"TI":644,"AM":0,"x":6.224109375000007,"y":19.776375,"w":19.549234374999987,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B2_2","EN":0},"TI":645,"AM":0,"x":26.52804687500001,"y":19.8369375,"w":20.54146875000001,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"C2_2","EN":0},"TI":646,"AM":0,"x":47.273875000000004,"y":19.7825625,"w":21.286375000000007,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D2_2","EN":0},"TI":647,"AM":0,"x":68.91207812500001,"y":19.8113125,"w":21.164171875000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E2_2","EN":0},"TI":648,"AM":0,"x":90.97893750000001,"y":19.8015,"w":19.191734375,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A3_2","EN":0},"TI":649,"AM":0,"x":6.229437499999999,"y":20.563375,"w":19.543906249999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B3_2","EN":0},"TI":650,"AM":0,"x":26.519453124999988,"y":20.622,"w":20.550062500000028,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"C3_2","EN":0},"TI":651,"AM":0,"x":47.26837499999999,"y":20.5706875,"w":21.29187500000002,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D3_2","EN":0},"TI":652,"AM":0,"x":68.91431250000001,"y":20.615,"w":21.159703125000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E3_2","EN":0},"TI":653,"AM":0,"x":90.98203125000002,"y":20.613875,"w":19.185374999999993,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A4_2","EN":0},"TI":654,"AM":0,"x":6.216546875000004,"y":21.4109375,"w":19.55679687499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B4_2","EN":0},"TI":655,"AM":0,"x":26.524781250000007,"y":21.410125000000004,"w":20.54473437500001,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"C4_2","EN":0},"TI":656,"AM":0,"x":47.273875000000004,"y":21.421000000000003,"w":21.289468749999997,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D4_2","EN":0},"TI":657,"AM":0,"x":68.90675,"y":21.398125000000004,"w":21.16726562500001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E4_2","EN":0},"TI":658,"AM":0,"x":90.97360937500001,"y":21.3961875,"w":19.19912499999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A5_2","EN":0},"TI":659,"AM":0,"x":6.221875000000021,"y":22.2049375,"w":19.551468749999973,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"B5_2","EN":0},"TI":660,"AM":0,"x":26.52804687500001,"y":22.206875,"w":20.535968749999995,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"C5_2","EN":0},"TI":661,"AM":0,"x":47.271640625,"y":22.214187499999998,"w":21.291703124999998,"h":0.8333333333333334,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"D5_2","EN":0},"TI":662,"AM":0,"x":68.90142187500001,"y":22.197625,"w":21.17035937499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"E5_2","EN":0},"TI":663,"AM":0,"x":90.97670312500001,"y":22.194875,"w":19.193968749999996,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P3_1","EN":0},"TI":664,"AM":0,"x":35.756874999999994,"y":25.409750000000003,"w":20.975796875000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P3_2","EN":0},"TI":665,"AM":0,"x":35.7644375,"y":27.134562499999998,"w":20.968234375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P3_3","EN":0},"TI":666,"AM":0,"x":35.75137500000001,"y":28.872937500000003,"w":20.98129687499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P3_4","EN":0},"TI":667,"AM":0,"x":35.75910937500001,"y":30.6009375,"w":20.973562499999993,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"P3_5","EN":0},"TI":668,"AM":0,"x":35.759281249999994,"y":31.5546875,"w":20.973390625000008,"h":0.8333333333333334}],"Boxsets":[]}],"Width":136.125}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_4562b.content.txt b/test/data/ia/form/ia_scr_4562b.content.txt new file mode 100644 index 00000000..5687bf2b --- /dev/null +++ b/test/data/ia/form/ia_scr_4562b.content.txt @@ -0,0 +1,33 @@ +www.iowa.gov/tax +Iowa Department of Revenue +IA 4562B +Iowa Depreciation Accumulated Adjustment Schedule +Name(s) +SSN +Name of Partnership or Corporation (if applicable) +FEIN +Use this form to record the cumulative effect +of the Bonus Depreciation Adjustment computed on form IA 4562A. +IA 4562A +Adjustment +TAX PERIOD +Amount from +ENDING DATE +Part III, Line 5 +BALANCE +INSTRUCTIONS +In the Tax Period Ending Date column, start with the tax period when you first made an adjustment for bonus +depreciation on the Iowa return. Continue entering each subsequent tax period up to, and including, the +current period. +In the IA 4562A Adjustment column, enter the amount added/deducted on the Iowa return for each tax period. +This should be the amount entered in Part III, line 5 of the IA 4562A. Enter negative numbers in parenthesis. If +the IA 4562A adjustment was changed from the amount originally claimed, place an asterisk (*) after the tax +period. If requested by the Department, failure to provide copies of the prior tax periods’ IA 4562As will delay +the processing of your return or cause the denial of your adjustment. Do not send copies of the asset listings +that are required with the IA 4562A. +In the Balance column, the balance amount for the first tax period should be the same as the amount of the +adjustment. For each subsequent tax period, the balance amount should be changed by the amount of that tax +period’s IA 4562A adjustment. +Include this form with your Iowa individual or corporation income tax return. +41-106 (06/13/11) +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_4562b.fields.json b/test/data/ia/form/ia_scr_4562b.fields.json new file mode 100644 index 00000000..3a94a9c0 --- /dev/null +++ b/test/data/ia/form/ia_scr_4562b.fields.json @@ -0,0 +1 @@ +[{"id":"Name1","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"Name2","type":"alpha","calc":false,"value":""},{"id":"FEIN","type":"mask","calc":false,"value":""},{"id":"TP1","type":"date","calc":false,"value":""},{"id":"A1","type":"number","calc":false,"value":""},{"id":"B1","type":"number","calc":false,"value":""},{"id":"TP2","type":"date","calc":false,"value":""},{"id":"A2","type":"number","calc":false,"value":""},{"id":"B2","type":"number","calc":false,"value":""},{"id":"TP3","type":"date","calc":false,"value":""},{"id":"A3","type":"number","calc":false,"value":""},{"id":"B3","type":"number","calc":false,"value":""},{"id":"TP4","type":"date","calc":false,"value":""},{"id":"A4","type":"number","calc":false,"value":""},{"id":"B4","type":"number","calc":false,"value":""},{"id":"TP5","type":"date","calc":false,"value":""},{"id":"A5","type":"number","calc":false,"value":""},{"id":"B5","type":"number","calc":false,"value":""},{"id":"TP6","type":"date","calc":false,"value":""},{"id":"A6","type":"number","calc":false,"value":""},{"id":"B6","type":"number","calc":false,"value":""},{"id":"TP7","type":"date","calc":false,"value":""},{"id":"A7","type":"number","calc":false,"value":""},{"id":"B7","type":"number","calc":false,"value":""},{"id":"TP8","type":"date","calc":false,"value":""},{"id":"A8","type":"number","calc":false,"value":""},{"id":"B8","type":"number","calc":false,"value":""},{"id":"TP9","type":"date","calc":false,"value":""},{"id":"A9","type":"number","calc":false,"value":""},{"id":"B9","type":"number","calc":false,"value":""},{"id":"TP10","type":"date","calc":false,"value":""},{"id":"A10","type":"number","calc":false,"value":""},{"id":"B10","type":"number","calc":false,"value":""},{"id":"TP11","type":"date","calc":false,"value":""},{"id":"A11","type":"number","calc":false,"value":""},{"id":"B11","type":"number","calc":false,"value":""},{"id":"TP12","type":"date","calc":false,"value":""},{"id":"A12","type":"number","calc":false,"value":""},{"id":"B12","type":"number","calc":false,"value":""},{"id":"TP13","type":"date","calc":false,"value":""},{"id":"A13","type":"number","calc":false,"value":""},{"id":"B13","type":"number","calc":false,"value":""},{"id":"TP14","type":"date","calc":false,"value":""},{"id":"A14","type":"number","calc":false,"value":""},{"id":"B14","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_4562b.json b/test/data/ia/form/ia_scr_4562b.json new file mode 100755 index 00000000..d196db75 --- /dev/null +++ b/test/data/ia/form/ia_scr_4562b.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"Iowa Depreciation Accumulated Adjustment Schedule IA 4562B","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":30.03,"y":3.6187499999999964,"w":3.06,"l":68.84625000000003},{"oc":"#2b2e34","x":13.571284375000001,"y":3.8024999999999998,"w":0.7200000000000001,"l":85.32562500000002},{"oc":"#2b2e34","x":6.187500000000001,"y":5.227500000000002,"w":1.4400000000000002,"l":92.81250000000001},{"oc":"#2b2e34","x":6.187500000000001,"y":7.380000000000005,"w":1.4400000000000002,"l":92.81250000000001},{"oc":"#2b2e34","x":6.187500000000001,"y":9.75,"w":1.4400000000000002,"l":92.81250000000001},{"oc":"#2b2e34","x":27.658125000000002,"y":12.165000000000001,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":16.064999999999998,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":17.189999999999998,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":18.315,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":19.44,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":20.565,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":21.69,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":22.815,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":23.94,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":25.065,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":26.19,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":27.315,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":28.44,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":29.565,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":30.69,"w":1.4400000000000002,"l":49.500000000000014},{"oc":"#2b2e34","x":27.658125000000002,"y":31.815,"w":1.4400000000000002,"l":49.500000000000014}],"VLines":[{"oc":"#2b2e34","x":66.2475,"y":5.227500000000002,"w":1.4400000000000002,"l":4.530000000000001},{"oc":"#2b2e34","x":99.08250000000001,"y":5.159999999999997,"w":1.4400000000000002,"l":4.597500000000001},{"oc":"#2b2e34","x":6.270017187500001,"y":5.159999999999997,"w":1.4400000000000002,"l":4.597500000000001},{"oc":"#2b2e34","x":27.740625000000005,"y":12.135,"w":1.4400000000000002,"l":19.635},{"oc":"#2b2e34","x":77.240625,"y":12.135,"w":1.4400000000000002,"l":19.635},{"oc":"#2b2e34","x":46.303125,"y":12.149999999999997,"w":1.4400000000000002,"l":19.620000000000005},{"oc":"#2b2e34","x":61.771874999999994,"y":12.149999999999997,"w":1.4400000000000002,"l":19.620000000000005}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":13.218125,"y":2.895000000000001,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.094374828125002,"y":1.979999999999999,"w":135.99320000000003,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":85.94187500000001,"y":2.669999999999997,"w":74.42,"clr":-1,"A":"left","R":[{"T":"IA%204562B","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":37.57625000000001,"y":3.959999999999998,"w":355.0512,"clr":-1,"A":"left","R":[{"T":"Iowa%20Depreciation%20Accumulated%20Adjustment%20Schedule","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":7.793749999999999,"y":5.347499999999997,"w":46.0961,"clr":-1,"A":"left","R":[{"T":"Name(s)","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.626875,"y":5.347499999999997,"w":24.7449,"clr":-1,"A":"left","R":[{"T":"SSN","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":7.793749999999999,"y":7.5,"w":264.29099999999994,"clr":-1,"A":"left","R":[{"T":"Name%20of%20Partnership%20or%20Corporation%20(if%20applicable)","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":67.626875,"y":7.5,"w":27.3692,"clr":-1,"A":"left","R":[{"T":"FEIN","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":32.193125,"y":10.005000000000004,"w":234.58050000000003,"clr":-1,"A":"left","R":[{"T":"Use%20this%20form%20to%20record%20the%20cumulative%20effect","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":21.591874999999998,"y":10.905000000000001,"w":357.09389999999996,"clr":-1,"A":"left","R":[{"T":"of%20the%20Bonus%20Depreciation%20Adjustment%20computed%20on%20form%20IA%204562A.","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":49.33250000000001,"y":12.284999999999997,"w":50.5432,"clr":-1,"A":"left","R":[{"T":"IA%204562A","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":48.033125000000005,"y":13.184999999999993,"w":65.869,"clr":-1,"A":"left","R":[{"T":"Adjustment","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":30.914375000000003,"y":14.084999999999994,"w":67.566,"clr":-1,"A":"left","R":[{"T":"TAX%20PERIOD","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":47.76500000000001,"y":14.084999999999994,"w":69.3495,"clr":-1,"A":"left","R":[{"T":"Amount%20from","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":30.171875000000004,"y":14.984999999999994,"w":76.1343,"clr":-1,"A":"left","R":[{"T":"ENDING%20DATE","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":47.558749999999996,"y":14.984999999999994,"w":71.94900000000001,"clr":-1,"A":"left","R":[{"T":"Part%20III%2C%20Line%205","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":64.55375,"y":14.984999999999994,"w":53.62030000000001,"clr":-1,"A":"left","R":[{"T":"BALANCE","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":31.86,"w":82.3068,"clr":-1,"A":"left","R":[{"T":"INSTRUCTIONS","S":-1,"TS":[0,15,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":33.044999999999995,"w":530.7995999999994,"clr":-1,"A":"left","R":[{"T":"In%20the%20Tax%20Period%20Ending%20Date%20column%2C%20start%20with%20the%20tax%20period%20when%20you%20first%20made%20an%20adjustment%20for%20bonus","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":33.87,"w":504.9816999999994,"clr":-1,"A":"left","R":[{"T":"depreciation%20on%20the%20Iowa%20return.%20Continue%20entering%20each%20subsequent%20tax%20period%20up%20to%2C%20and%20including%2C%20the","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":34.695,"w":71.235,"clr":-1,"A":"left","R":[{"T":"current%20period.","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":35.88,"w":534.9189999999994,"clr":-1,"A":"left","R":[{"T":"In%20the%20IA%204562A%20Adjustment%20column%2C%20enter%20the%20amount%20added%2Fdeducted%20on%20the%20Iowa%20return%20for%20each%20tax%20period.","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":36.705,"w":537.6051999999996,"clr":-1,"A":"left","R":[{"T":"This%20should%20be%20the%20amount%20entered%20in%20Part%20III%2C%20line%205%20of%20the%20IA%204562A.%20Enter%20negative%20numbers%20in%20parenthesis.%20If","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":37.529999999999994,"w":525.9684999999992,"clr":-1,"A":"left","R":[{"T":"the%20IA%204562A%20adjustment%20was%20changed%20from%20the%20amount%20originally%20claimed%2C%20place%20an%20asterisk%20(*)%20after%20the%20tax","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":38.355,"w":529.7428000000006,"clr":-1,"A":"left","R":[{"T":"period.%20If%20requested%20by%20the%20Department%2C%20failure%20to%20provide%20copies%20of%20the%20prior%20tax%20periods%E2%80%99%20IA%204562As%20will%20delay","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":39.18,"w":529.0120000000004,"clr":-1,"A":"left","R":[{"T":"the%20processing%20of%20your%20return%20or%20cause%20the%20denial%20of%20your%20adjustment.%20Do%20not%20send%20copies%20of%20the%20asset%20listings","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":40.004999999999995,"w":173.89420000000007,"clr":-1,"A":"left","R":[{"T":"that%20are%20required%20with%20the%20IA%204562A.","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":41.19,"w":522.7608000000005,"clr":-1,"A":"left","R":[{"T":"In%20the%20Balance%20column%2C%20the%20balance%20amount%20for%20the%20first%20tax%20period%20should%20be%20the%20same%20as%20the%20amount%20of%20the","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":42.01499999999999,"w":539.8139999999996,"clr":-1,"A":"left","R":[{"T":"adjustment.%20For%20each%20subsequent%20tax%20period%2C%20the%20balance%20amount%20should%20be%20changed%20by%20the%20amount%20of%20that%20tax","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":42.839999999999996,"w":147.39020000000005,"clr":-1,"A":"left","R":[{"T":"period%E2%80%99s%20IA%204562A%20adjustment.","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":44.025,"w":366.86320000000035,"clr":-1,"A":"left","R":[{"T":"Include%20this%20form%20with%20your%20Iowa%20individual%20or%20corporation%20income%20tax%20return.","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":87.55062500000001,"y":46.29749999999999,"w":64.8177,"clr":-1,"A":"left","R":[{"T":"41-106%20(06%2F13%2F11)","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Name1","EN":0},"TI":669,"AM":0,"x":7.937857812500001,"y":6.392958333333335,"w":57.5511578125,"h":0.8703541666666629},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":670,"AM":0,"x":67.33375000000001,"y":6.329395833333336,"w":31.325078125000008,"h":0.9792291666666605},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Name2","EN":0},"TI":671,"AM":0,"x":8.056451562500001,"y":8.670145833333331,"w":57.551157812499994,"h":0.9792291666666699},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEIN","EN":0},"TI":672,"AM":0,"x":67.330140625,"y":8.671895833333338,"w":31.325078125000008,"h":0.9766041666666609,"MV":"99-9999999"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP1","EN":0},"TI":673,"AM":0,"x":28.004453125,"y":16.209208333333333,"w":17.707078125000002,"h":0.8711041666666688,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1","EN":0},"TI":674,"AM":0,"x":46.84487500000001,"y":16.213083333333334,"w":14.484421874999992,"h":0.8672291666666657},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1","EN":0},"TI":675,"AM":0,"x":62.249171875,"y":16.213145833333332,"w":14.727968750000011,"h":0.8671666666666672},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP2","EN":0},"TI":676,"AM":0,"x":28.0115,"y":17.342020833333333,"w":17.700031250000002,"h":0.8581041666666683,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2","EN":0},"TI":677,"AM":0,"x":46.85553125,"y":17.33939583333333,"w":14.480984375000014,"h":0.8633541666666673},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2","EN":0},"TI":678,"AM":0,"x":62.245562500000005,"y":17.336895833333333,"w":14.731578125000004,"h":0.8672291666666657},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP3","EN":0},"TI":679,"AM":0,"x":28.007890625,"y":18.468395833333332,"w":17.692984375000005,"h":0.8581041666666683,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A3","EN":0},"TI":680,"AM":0,"x":46.841265625000005,"y":18.468395833333332,"w":14.491640624999997,"h":0.8646041666666662},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B3","EN":0},"TI":681,"AM":0,"x":62.260000000000005,"y":18.459333333333333,"w":14.71353125,"h":0.865854166666665},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP4","EN":0},"TI":682,"AM":0,"x":28.007890625,"y":19.584270833333335,"w":17.700203124999998,"h":0.8646041666666662,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A4","EN":0},"TI":683,"AM":0,"x":46.841265625000005,"y":19.584270833333335,"w":14.488031249999992,"h":0.8672291666666657},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B4","EN":0},"TI":684,"AM":0,"x":62.245562500000005,"y":19.584333333333333,"w":14.731578125000004,"h":0.865854166666665},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP5","EN":0},"TI":685,"AM":0,"x":28.0115,"y":20.71064583333333,"w":17.696593749999998,"h":0.8684791666666692,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A5","EN":0},"TI":686,"AM":0,"x":46.84487500000001,"y":20.706708333333335,"w":14.484421874999992,"h":0.8659166666666636},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B5","EN":0},"TI":687,"AM":0,"x":62.256390625,"y":20.709395833333332,"w":14.717140625000006,"h":0.864604166666671},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP6","EN":0},"TI":688,"AM":0,"x":28.007890625,"y":21.838270833333336,"w":17.696593749999998,"h":0.8619791666666666,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A6","EN":0},"TI":689,"AM":0,"x":46.84487500000001,"y":21.839583333333337,"w":14.491640625000004,"h":0.8619791666666666},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B6","EN":0},"TI":690,"AM":0,"x":62.249171875,"y":21.842208333333332,"w":14.724359375000004,"h":0.8658541666666698},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP7","EN":0},"TI":691,"AM":0,"x":28.00084375,"y":22.956770833333337,"w":17.707250000000002,"h":0.8685416666666631,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A7","EN":0},"TI":692,"AM":0,"x":46.83765625,"y":22.959395833333332,"w":14.484421875000011,"h":0.8632916666666688},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B7","EN":0},"TI":693,"AM":0,"x":62.256390625,"y":22.95945833333333,"w":14.717140625000006,"h":0.8659166666666683},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP8","EN":0},"TI":694,"AM":0,"x":28.004453125,"y":24.085708333333333,"w":17.707078125000002,"h":0.8659166666666636,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A8","EN":0},"TI":695,"AM":0,"x":46.83765625,"y":24.085708333333333,"w":14.484421875000011,"h":0.8646041666666662},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B8","EN":0},"TI":696,"AM":0,"x":62.2634375,"y":24.07795833333333,"w":14.710093750000004,"h":0.8684791666666646},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP9","EN":0},"TI":697,"AM":0,"x":28.007890625,"y":25.204270833333336,"w":17.703640625000002,"h":0.8684791666666646,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A9","EN":0},"TI":698,"AM":0,"x":46.841265625000005,"y":25.19514583333333,"w":14.495250000000004,"h":0.8737291666666683},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B9","EN":0},"TI":699,"AM":0,"x":62.252781250000005,"y":25.213395833333333,"w":14.738796875000002,"h":0.8620416666666699},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP10","EN":0},"TI":700,"AM":0,"x":28.01871875,"y":26.334520833333332,"w":17.685765625000002,"h":0.8659166666666683,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A10","EN":0},"TI":701,"AM":0,"x":46.841265625000005,"y":26.342333333333332,"w":14.480812500000006,"h":0.8619791666666666},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B10","EN":0},"TI":702,"AM":0,"x":62.245562500000005,"y":26.331958333333333,"w":14.735187499999997,"h":0.8619791666666666},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP11","EN":0},"TI":703,"AM":0,"x":28.00084375,"y":27.462145833333334,"w":17.707250000000002,"h":0.8646041666666662,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A11","EN":0},"TI":704,"AM":0,"x":46.841265625000005,"y":27.459520833333332,"w":14.484421874999986,"h":0.8659166666666683},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B11","EN":0},"TI":705,"AM":0,"x":62.260000000000005,"y":27.462145833333334,"w":14.720749999999999,"h":0.8606666666666692},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP12","EN":0},"TI":706,"AM":0,"x":28.00084375,"y":28.581958333333333,"w":17.72151562500001,"h":0.8685416666666678,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A12","EN":0},"TI":707,"AM":0,"x":46.841265625000005,"y":28.585833333333337,"w":14.466546874999992,"h":0.8685416666666631},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B12","EN":0},"TI":708,"AM":0,"x":62.27065625,"y":28.58983333333333,"w":14.710093750000004,"h":0.864604166666671},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP13","EN":0},"TI":709,"AM":0,"x":28.00084375,"y":29.712208333333336,"w":17.707250000000002,"h":0.8646041666666614,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A13","EN":0},"TI":710,"AM":0,"x":46.83765625,"y":29.710895833333336,"w":14.495250000000004,"h":0.8646041666666662},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B13","EN":0},"TI":711,"AM":0,"x":62.2634375,"y":29.709645833333337,"w":14.717312500000002,"h":0.863291666666664},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP14","EN":0},"TI":712,"AM":0,"x":28.01871875,"y":30.838520833333334,"w":17.689375000000002,"h":0.8633541666666673,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A14","EN":0},"TI":713,"AM":0,"x":46.84487500000001,"y":30.833333333333332,"w":14.488031249999999,"h":0.8646041666666662},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B14","EN":0},"TI":714,"AM":0,"x":62.245562500000005,"y":30.83339583333333,"w":14.735187499999997,"h":0.8672291666666657}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_6251.content.txt b/test/data/ia/form/ia_scr_6251.content.txt new file mode 100644 index 00000000..f12c8ad5 --- /dev/null +++ b/test/data/ia/form/ia_scr_6251.content.txt @@ -0,0 +1,222 @@ + Name(s) as shown on IA 1040 or IA 1041 +SSN or FEIN +Iowa Minimum Tax Computation +PART 1: Adjustments and Preferences. See instructions. +If you itemized deductions on Schedule A, start on line 1. If you did not itemize on your IA 1040, start on line 7. +1. Medical and dental from line 2, federal form 6251 +........................................................................................ +1. +__________________ +2. Taxes from line 3, federal form 6251, less any Iowa income tax included on that line +.......................... +2. +__________________ +3. +Certain interest on a home mortgage not used to build, buy, or improve your home, from line 4, federal form 6251 +. +3. +__________________ +4. Miscellaneous itemized deductions from line 5, federal form 6251 +........................................................... +4. +__________________ +5. Refund of taxes from line 7, federal form 6251, less any Iowa income tax included on that line +........ +5. +__________________ +6. Investment interest from line 8, federal form 6251, less interest and expense related to private +activity bonds issued +after 08/07/86 +............................................................................................................... +6. +__________________ +7. Post - 1986 depreciation from line 18, federal form 6251 +........................................................................... +7. +__________________ +8. Adjusted gain or loss from line 17, federal form 6251 +.................................................................................. +8. +__________________ +9. Incentive stock options from line 14, federal form 6251 +.............................................................................. +9. +__________________ +10. Passive activities from line 19, federal form 6251 +........................................................................................ +10. +__________________ +11. Beneficiaries of estates and trusts from line 15, federal form 6251 +.......................................................... +11. +__________________ +12. +Enter the amount for each corresponding item from federal form 6251. Enter total on line 12. +a. +Circulation expenditures (line 21) +. +a. +___________ +h. +Patron’s adjustment +................................ +h. +__________ +b. +Depreciation (pre-1987) +............. +b. +___________ +i. +Pollution control facilities +....................... +i. +__________ +c. +Installment sales (line 25) +......... +c. +___________ +j. +Research and experimental (line 24) +... +j. +__________ +d. +Large partnerships (line 16) +...... +d. +___________ +k. +Section 1202 exclusion (line 13) +.......... +k. +__________ +e. +Long-term contracts (line 22) +.... +e. +___________ +l. +Tax shelter farm activities +...................... +l. +__________ +f. +Loss limitations (line 20) +............. +f. +___________ +m. +Related adjustments (see inst.) (line 27) +. +m. +___________ +g. +Mining costs (line 23) +................. +g. +___________ +12. +__________________ +13. + Total Adjustments and Preferences. + Combine lines 1 through 12. +........................................................ +13. +__________________ +PART II: Alternative Minimum Taxable Income +14. Taxable income from IA 1040, line 42; or IA 1041, line 22 +......................................................................... +14. +__________________ +15. Net operating loss deduction. Do not enter as a negative amount. +........................................................... +15. +__________________ +16. Combine lines 14 and 15. +.................................................................................................................................. +16. +__________________ +17. Add lines 13 and 16. +........................................................................................................................................... +17. +__________________ +18. Alternative tax net operating loss deduction. See instructions. +................................................................. +18. +__________________ +19. Alternative Minimum Taxable Income. Subtract line 18 from line 17. +....................................................... +19. +__________________ +PART III: Exemption Amount and Alternative Minimum Tax +20. +Enter $35,000 (*$17,500 if filing status 3 or 4; $26,000 if single, head of household or qualifying widow(er +) +... +20. +__________________ +21. +Enter $150,000 (*$75,000 if filing status 3 or 4; $112,500 if single, head of household or qualifying widow(er) +....... +21. +__________________ +22. Subtract line 21 from line 19. If the result is zero or less, enter zero. +...................................................... +22. +__________________ +23. Multiply line 22 by 25% (0.25). +......................................................................................................................... +23. +__________________ +24. Subtract line 23 from line 20. If the result is zero or less, enter zero. +...................................................... +24. +__________________ +25. Subtract line 24 from line 19. +If the result is zero or less, enter zero. +.............................................................. +25. +__________________ +26. Multiply line 25 by 6.7% (0.067). +...................................................................................................................... +26. +__________________ +27. Regular tax after credits. See instructions. +.................................................................................................... +27. +__________________ +28. Iowa Minimum Tax. Subtract line 27 from line 26, enter here and on IA 1040, line 45, or IA 1041, +line 25. See instructions for Minimum Tax Limited to Net Worth. If less than zero, enter zero. +......... +28. +__________________ +PART IV: NONRESIDENTS AND PART-YEAR RESIDENTS ONLY - Complete lines 29 - 32. +29 +. + Enter Iowa net income plus Iowa adjustments and preferences. See instructions. If less than zero, enter zero. +...... +29. +__________________ +30. Total net income plus total adjustments and preferences. See instructions. +.......................................... +30. +__________________ +31. Divide line 29 by line 30 and enter the result to three (3) decimal places. +.............................................. +31. +__________________ +32. Iowa Minimum Tax. Multiply line 28 by line 31. Enter here and on IA 1040, line 45, or IA 1041, +line 25. See instructions for Minimum Tax Limited to Net Worth. If less than zero, enter zero. +......... +32. +__________________ + * +Exemption levels of $17,500 and $75,000 on lines 20 and 21, + respectively, also apply to an estate or trust. +2012 IA 6251 +41-131a (08/08/12) +www.iowa.gov/tax +Iowa Department of Revenue +----------------Page (0) Break---------------- diff --git a/test/data/ia/form/ia_scr_6251.fields.json b/test/data/ia/form/ia_scr_6251.fields.json new file mode 100644 index 00000000..7d13c2cd --- /dev/null +++ b/test/data/ia/form/ia_scr_6251.fields.json @@ -0,0 +1 @@ +[{"id":"name","type":"alpha","calc":false,"value":""},{"id":"soc_security","type":"ssn","calc":false,"value":""},{"id":"line_1","type":"number","calc":false,"value":""},{"id":"line_2","type":"number","calc":false,"value":""},{"id":"line_3","type":"number","calc":false,"value":""},{"id":"line_4","type":"number","calc":false,"value":""},{"id":"line_5","type":"number","calc":false,"value":""},{"id":"line_6","type":"number","calc":false,"value":""},{"id":"line_7","type":"number","calc":false,"value":""},{"id":"line_8","type":"number","calc":false,"value":""},{"id":"line_9","type":"number","calc":false,"value":""},{"id":"line_10","type":"number","calc":false,"value":""},{"id":"line_11","type":"number","calc":false,"value":""},{"id":"line_12a","type":"number","calc":false,"value":""},{"id":"line_12h","type":"number","calc":false,"value":""},{"id":"line_12b","type":"number","calc":false,"value":""},{"id":"line_12i","type":"number","calc":false,"value":""},{"id":"line_12c","type":"number","calc":false,"value":""},{"id":"line_12j","type":"number","calc":false,"value":""},{"id":"line_12d","type":"number","calc":false,"value":""},{"id":"line_12k","type":"number","calc":false,"value":""},{"id":"line_12e","type":"number","calc":false,"value":""},{"id":"line_12l","type":"number","calc":false,"value":""},{"id":"line_12f","type":"number","calc":false,"value":""},{"id":"line_12m","type":"number","calc":false,"value":""},{"id":"line_12g","type":"number","calc":false,"value":""},{"id":"line_12","type":"number","calc":false,"value":""},{"id":"line_13","type":"number","calc":false,"value":""},{"id":"line_14","type":"number","calc":false,"value":""},{"id":"line_15","type":"number","calc":false,"value":""},{"id":"line_16","type":"number","calc":false,"value":""},{"id":"line_17","type":"number","calc":false,"value":""},{"id":"line_18","type":"number","calc":false,"value":""},{"id":"line_19","type":"number","calc":false,"value":""},{"id":"line_20","type":"number","calc":false,"value":""},{"id":"line_21","type":"number","calc":false,"value":""},{"id":"line_22","type":"number","calc":false,"value":""},{"id":"line_23","type":"number","calc":false,"value":""},{"id":"line_24","type":"number","calc":false,"value":""},{"id":"line_25","type":"number","calc":false,"value":""},{"id":"line_26","type":"number","calc":false,"value":""},{"id":"line_27","type":"number","calc":false,"value":""},{"id":"line_28","type":"number","calc":false,"value":""},{"id":"line_29","type":"number","calc":false,"value":""},{"id":"line_30","type":"number","calc":false,"value":""},{"id":"line_31","type":"number","calc":false,"value":""},{"id":"line_32","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/ia/form/ia_scr_6251.json b/test/data/ia/form/ia_scr_6251.json new file mode 100755 index 00000000..2b90279c --- /dev/null +++ b/test/data/ia/form/ia_scr_6251.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"IA 6251 minimum tax computation","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":3.712500000000001,"y":3.8250000000000077,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":5.3850006250000035,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":5.354998750000003,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":6.2399993749999965,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":24.4875,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":25.372500625,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":30.622500625,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":31.507500000000004,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":40.012499999999996,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":3.712500000000001,"y":40.89,"w":1.4400000000000002,"l":97.76250000000003},{"oc":"#2b2e34","x":27.555,"y":2.5837493749999965,"w":3.06,"l":73.92000000000002},{"oc":"#2b2e34","x":11.116892187500001,"y":2.7600006250000035,"w":0.7200000000000001,"l":90.35810781250001}],"VLines":[{"oc":"#2b2e34","x":66.4125,"y":3.8999999999999964,"w":1.4400000000000002,"l":1.4775000000000003}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":3.584737500000001,"y":3.765000000000005,"w":165.84310000000002,"clr":-1,"A":"left","R":[{"T":"%20Name(s)%20as%20shown%20on%20IA%201040%20or%20IA%201041","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":66.88437500000002,"y":3.765000000000005,"w":51.028000000000006,"clr":-1,"A":"left","R":[{"T":"SSN%20or%20FEIN","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.11125,"y":2.744999999999995,"w":199.28000000000003,"clr":-1,"A":"left","R":[{"T":"Iowa%20Minimum%20Tax%20Computation","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":5.294999999999997,"w":267.83279999999996,"clr":-1,"A":"left","R":[{"T":"PART%201%3A%20Adjustments%20and%20Preferences.%20See%20instructions.","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":6.285000000000006,"w":526.3210000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20itemized%20deductions%20on%20Schedule%20A%2C%20start%20on%20line%201.%20If%20you%20did%20not%20itemize%20on%20your%20IA%201040%2C%20start%20on%20line%207.","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":4.246250000000001,"y":7.095000000000009,"w":230.30119999999997,"clr":-1,"A":"left","R":[{"T":"1.%20Medical%20and%20dental%20from%20line%202%2C%20federal%20form%206251","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.279375,"y":7.095000000000009,"w":219.96479999999954,"clr":-1,"A":"left","R":[{"T":"........................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":7.095000000000009,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":7.095000000000009,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":7.9125000000000085,"w":384.0081000000004,"clr":-1,"A":"left","R":[{"T":"2.%20Taxes%20from%20line%203%2C%20federal%20form%206251%2C%20less%20any%20Iowa%20income%20tax%20included%20on%20that%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.926875,"y":7.9125000000000085,"w":65.04160000000005,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":7.9125000000000085,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":7.9125000000000085,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":8.72250000000001,"w":11.481300000000001,"clr":-1,"A":"left","R":[{"T":"3.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.205624999999994,"y":8.72250000000001,"w":439.33700000000005,"clr":-1,"A":"left","R":[{"T":"Certain%20interest%20on%20a%20home%20mortgage%20not%20used%20to%20build%2C%20buy%2C%20or%20improve%20your%20home%2C%20from%20line%204%2C%20federal%20form%206251","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":82.25,"y":8.72250000000001,"w":2.3907999999999996,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":8.72250000000001,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":8.72250000000001,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":9.532500000000013,"w":300.9809,"clr":-1,"A":"left","R":[{"T":"4.%20Miscellaneous%20itemized%20deductions%20from%20line%205%2C%20federal%20form%206251","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.736875,"y":9.532500000000013,"w":147.4823,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":9.532500000000013,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":9.532500000000013,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":10.350000000000014,"w":427.24160000000006,"clr":-1,"A":"left","R":[{"T":"5.%20Refund%20of%20taxes%20from%20line%207%2C%20federal%20form%206251%2C%20less%20any%20Iowa%20income%20tax%20included%20on%20that%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.66125,"y":10.350000000000014,"w":20.044,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":10.350000000000014,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":10.350000000000014,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":11.160000000000016,"w":429.7149000000003,"clr":-1,"A":"left","R":[{"T":"6.%20Investment%20interest%20from%20line%208%2C%20federal%20form%206251%2C%20less%20interest%20and%20expense%20related%20to%20private","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.556249999999995,"y":11.970000000000018,"w":96.03,"clr":-1,"A":"left","R":[{"T":"activity%20bonds%20issued%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.344999999999995,"y":11.970000000000018,"w":62.2072,"clr":-1,"A":"left","R":[{"T":"after%2008%2F07%2F86","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.4,"y":11.970000000000018,"w":277.44450000000063,"clr":-1,"A":"left","R":[{"T":"...............................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":11.970000000000018,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":11.970000000000018,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":12.787500000000023,"w":260.5800000000001,"clr":-1,"A":"left","R":[{"T":"7.%20Post%20-%201986%20depreciation%20from%20line%2018%2C%20federal%20form%206251","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":49.86875,"y":12.787500000000023,"w":187.4400000000001,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":12.787500000000023,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":12.787500000000023,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":13.597500000000025,"w":245.2737999999999,"clr":-1,"A":"left","R":[{"T":"8.%20Adjusted%20gain%20or%20loss%20from%20line%2017%2C%20federal%20form%206251","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.85749999999999,"y":13.597500000000025,"w":204.9590000000003,"clr":-1,"A":"left","R":[{"T":"..................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":13.597500000000025,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":13.597500000000025,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":4.2462499999999945,"y":14.407500000000027,"w":253.69180000000006,"clr":-1,"A":"left","R":[{"T":"9.%20Incentive%20stock%20options%20from%20line%2014%2C%20federal%20form%206251","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.589999999999996,"y":14.407500000000027,"w":195.00000000000003,"clr":-1,"A":"left","R":[{"T":"..............................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.11625,"y":14.407500000000027,"w":9.5342,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":14.407500000000027,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4624999999999946,"y":15.225000000000032,"w":234.25019999999998,"clr":-1,"A":"left","R":[{"T":"10.%20Passive%20activities%20from%20line%2019%2C%20federal%20form%206251","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.27937499999999,"y":15.225000000000032,"w":219.96479999999954,"clr":-1,"A":"left","R":[{"T":"........................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312499999999,"y":15.225000000000032,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09624999999998,"y":15.225000000000032,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.462499999999985,"y":16.035000000000036,"w":308.8550000000001,"clr":-1,"A":"left","R":[{"T":"11.%20Beneficiaries%20of%20estates%20and%20trusts%20from%20line%2015%2C%20federal%20form%206251","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57.169999999999995,"y":16.035000000000036,"w":144.95940000000016,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312499999999,"y":16.035000000000036,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09624999999998,"y":16.035000000000036,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.462499999999985,"y":16.84500000000003,"w":16.8764,"clr":-1,"A":"left","R":[{"T":"12.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.391249999999985,"y":16.84500000000003,"w":386.41200000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20for%20each%20corresponding%20item%20from%20federal%20form%206251.%20Enter%20total%20on%20line%2012.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.937499999999984,"y":17.662500000000033,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.103124999999984,"y":17.662500000000033,"w":119.66839999999999,"clr":-1,"A":"left","R":[{"T":"Circulation%20expenditures%20(line%2021)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.181874999999984,"y":17.662500000000033,"w":2.224,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":30.006874999999983,"y":17.662500000000033,"w":7.6142,"clr":-1,"A":"left","R":[{"T":"a.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.821874999999984,"y":17.662500000000033,"w":54.9527,"clr":-1,"A":"left","R":[{"T":"___________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":43.84624999999998,"y":17.662500000000033,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"h.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.01187499999999,"y":17.662500000000033,"w":78.98150000000001,"clr":-1,"A":"left","R":[{"T":"Patron%E2%80%99s%20adjustment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.80999999999999,"y":17.662500000000033,"w":70.42239999999998,"clr":-1,"A":"left","R":[{"T":"................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":72.081875,"y":17.662500000000033,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"h.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.938125,"y":17.662500000000033,"w":50.041000000000004,"clr":-1,"A":"left","R":[{"T":"__________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.937499999999991,"y":18.47250000000003,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.103124999999991,"y":18.47250000000003,"w":94.54370000000004,"clr":-1,"A":"left","R":[{"T":"Depreciation%20(pre-1987)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":24.644374999999993,"y":18.47250000000003,"w":28.533700000000003,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.924374999999994,"y":18.47250000000003,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.82187499999999,"y":18.47250000000003,"w":54.9527,"clr":-1,"A":"left","R":[{"T":"___________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.36187499999999,"y":18.47250000000003,"w":5.5808,"clr":-1,"A":"left","R":[{"T":"i.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.011874999999996,"y":18.47250000000003,"w":100.01040000000003,"clr":-1,"A":"left","R":[{"T":"Pollution%20control%20facilities","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":63.584374999999994,"y":18.47250000000003,"w":50.620699999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":72.59750000000001,"y":18.47250000000003,"w":5.5808,"clr":-1,"A":"left","R":[{"T":"i.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.93812500000001,"y":18.47250000000003,"w":50.041000000000004,"clr":-1,"A":"left","R":[{"T":"__________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.040624999999995,"y":19.282500000000027,"w":8.118,"clr":-1,"A":"left","R":[{"T":"c.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.103124999999995,"y":19.282500000000027,"w":102.54629999999999,"clr":-1,"A":"left","R":[{"T":"Installment%20sales%20(line%2025)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":26.149999999999995,"y":19.282500000000027,"w":19.7748,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":30.006874999999997,"y":19.282500000000027,"w":8.118,"clr":-1,"A":"left","R":[{"T":"c.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.821875,"y":19.282500000000027,"w":54.9527,"clr":-1,"A":"left","R":[{"T":"___________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.36187499999999,"y":19.282500000000027,"w":5.5808,"clr":-1,"A":"left","R":[{"T":"j.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.011874999999996,"y":19.282500000000027,"w":144.33949999999996,"clr":-1,"A":"left","R":[{"T":"Research%20and%20experimental%20(line%2024)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":71.15374999999999,"y":19.282500000000027,"w":6.5649000000000015,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":72.5975,"y":19.282500000000027,"w":5.5808,"clr":-1,"A":"left","R":[{"T":"j.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.938125,"y":19.282500000000027,"w":50.041000000000004,"clr":-1,"A":"left","R":[{"T":"__________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.937499999999991,"y":20.100000000000026,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.103124999999991,"y":20.100000000000026,"w":110.06600000000005,"clr":-1,"A":"left","R":[{"T":"Large%20partnerships%20(line%2016)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":27.28437499999999,"y":20.100000000000026,"w":13.1724,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.924374999999994,"y":20.100000000000026,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.82187499999999,"y":20.100000000000026,"w":54.9527,"clr":-1,"A":"left","R":[{"T":"___________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":43.928749999999994,"y":20.100000000000026,"w":8.118,"clr":-1,"A":"left","R":[{"T":"k.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.011874999999996,"y":20.100000000000026,"w":127.5184,"clr":-1,"A":"left","R":[{"T":"Section%201202%20exclusion%20(line%2013)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":68.121875,"y":20.100000000000026,"w":21.931000000000008,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":72.16437499999999,"y":20.100000000000026,"w":8.118,"clr":-1,"A":"left","R":[{"T":"k.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.938125,"y":20.100000000000026,"w":50.041000000000004,"clr":-1,"A":"left","R":[{"T":"__________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.937499999999991,"y":20.910000000000025,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"e.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.103124999999991,"y":20.910000000000025,"w":114.77820000000001,"clr":-1,"A":"left","R":[{"T":"Long-term%20contracts%20(line%2022)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":28.047499999999992,"y":20.910000000000025,"w":8.7156,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.924374999999994,"y":20.910000000000025,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"e.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.82187499999999,"y":20.910000000000025,"w":54.9527,"clr":-1,"A":"left","R":[{"T":"___________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.36187499999999,"y":20.910000000000025,"w":5.5808,"clr":-1,"A":"left","R":[{"T":"l.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.011874999999996,"y":20.910000000000025,"w":102.54370000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20shelter%20farm%20activities","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":63.955625,"y":20.910000000000025,"w":48.33619999999999,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":72.5975,"y":20.910000000000025,"w":5.5808,"clr":-1,"A":"left","R":[{"T":"l.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.938125,"y":20.910000000000025,"w":50.041000000000004,"clr":-1,"A":"left","R":[{"T":"__________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.391249999999989,"y":21.720000000000024,"w":6.036200000000001,"clr":-1,"A":"left","R":[{"T":"f.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.103124999999988,"y":21.720000000000024,"w":97.2452,"clr":-1,"A":"left","R":[{"T":"Loss%20limitations%20(line%2020)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":25.015624999999993,"y":21.720000000000024,"w":28.533700000000003,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":30.35749999999999,"y":21.720000000000024,"w":6.036200000000001,"clr":-1,"A":"left","R":[{"T":"f.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.82187499999999,"y":21.720000000000024,"w":54.9527,"clr":-1,"A":"left","R":[{"T":"___________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":43.43374999999999,"y":21.720000000000024,"w":10.8814,"clr":-1,"A":"left","R":[{"T":"m.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.011874999999996,"y":21.720000000000024,"w":144.4877,"clr":-1,"A":"left","R":[{"T":"Related%20adjustments%20(see%20inst.)%20(line%2027)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":71.15374999999999,"y":21.720000000000024,"w":2.224,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":71.89625,"y":21.720000000000024,"w":9.353,"clr":-1,"A":"left","R":[{"T":"m.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":73.83499999999998,"y":21.720000000000024,"w":48.9676,"clr":-1,"A":"left","R":[{"T":"___________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.937499999999981,"y":22.537500000000023,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"g.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.103124999999983,"y":22.537500000000023,"w":85.223,"clr":-1,"A":"left","R":[{"T":"Mining%20costs%20(line%2023)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":23.11812499999998,"y":22.537500000000023,"w":37.4204,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.92437499999998,"y":22.537500000000023,"w":8.574200000000001,"clr":-1,"A":"left","R":[{"T":"g.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.821874999999977,"y":22.537500000000023,"w":54.9527,"clr":-1,"A":"left","R":[{"T":"___________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312499999999,"y":22.537500000000023,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09624999999998,"y":22.537500000000023,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.462499999999985,"y":23.34750000000002,"w":13.9053,"clr":-1,"A":"left","R":[{"T":"13.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.106367187499985,"y":23.34750000000002,"w":172.62850000000003,"clr":-1,"A":"left","R":[{"T":"%20Total%20Adjustments%20and%20Preferences.","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":35.93656249999999,"y":23.34750000000002,"w":128.33640000000003,"clr":-1,"A":"left","R":[{"T":"%20Combine%20lines%201%20through%2012.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.03624999999999,"y":23.34750000000002,"w":140.03919999999988,"clr":-1,"A":"left","R":[{"T":"........................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312499999999,"y":23.34750000000002,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"13.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09624999999998,"y":23.34750000000002,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":24.4275,"w":216.48059999999998,"clr":-1,"A":"left","R":[{"T":"PART%20II%3A%20Alternative%20Minimum%20Taxable%20Income","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":25.4175,"w":271.1141999999999,"clr":-1,"A":"left","R":[{"T":"14.%20Taxable%20income%20from%20IA%201040%2C%20line%2042%3B%20or%20IA%201041%2C%20line%2022","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.73500000000001,"y":25.4175,"w":182.52190000000013,"clr":-1,"A":"left","R":[{"T":".........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":25.4175,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"14.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":25.4175,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":26.227499999999996,"w":306.9530000000001,"clr":-1,"A":"left","R":[{"T":"15.%20Net%20operating%20loss%20deduction.%20Do%20not%20enter%20as%20a%20negative%20amount.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.736875000000005,"y":26.227499999999996,"w":147.4823,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":26.227499999999996,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"15.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":26.227499999999996,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":27.044999999999998,"w":130.37980000000002,"clr":-1,"A":"left","R":[{"T":"16.%20Combine%20lines%2014%20and%2015.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.2325,"y":27.044999999999998,"w":324.96100000000007,"clr":-1,"A":"left","R":[{"T":"..................................................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":27.044999999999998,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"16.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":27.044999999999998,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":27.854999999999993,"w":108.39540000000005,"clr":-1,"A":"left","R":[{"T":"17.%20Add%20lines%2013%20and%2016.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.37562500000001,"y":27.854999999999993,"w":347.52780000000075,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":27.854999999999993,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"17.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":27.854999999999993,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":28.664999999999992,"w":290.5316999999999,"clr":-1,"A":"left","R":[{"T":"18.%20Alternative%20tax%20net%20operating%20loss%20deduction.%20See%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.158750000000005,"y":28.664999999999992,"w":162.48049999999995,"clr":-1,"A":"left","R":[{"T":".................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":28.664999999999992,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"18.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":28.664999999999992,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":29.48249999999999,"w":315.894,"clr":-1,"A":"left","R":[{"T":"19.%20Alternative%20Minimum%20Taxable%20Income.%20Subtract%20line%2018%20from%20line%2017.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.46937500000001,"y":29.48249999999999,"w":137.52200000000002,"clr":-1,"A":"left","R":[{"T":".......................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":29.48249999999999,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"19.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":29.48249999999999,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":30.5625,"w":275.76359999999994,"clr":-1,"A":"left","R":[{"T":"PART%20III%3A%20Exemption%20Amount%20and%20Alternative%20Minimum%20Tax","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":31.552500000000002,"w":16.8764,"clr":-1,"A":"left","R":[{"T":"20.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.39125,"y":31.552500000000002,"w":424.7711999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20%2435%2C000%20(*%2417%2C500%20if%20filing%20status%203%20or%204%3B%20%2426%2C000%20if%20single%2C%20head%20of%20household%20or%20qualifying%20widow(er","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":79.98125000000002,"y":31.552500000000002,"w":2.997,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.80625000000002,"y":31.552500000000002,"w":7.4073,"clr":-1,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":31.552500000000002,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":31.552500000000002,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":32.3625,"w":16.916400000000003,"clr":-1,"A":"left","R":[{"T":"21.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.370006250000005,"y":32.3625,"w":420.7628000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20%24150%2C000%20(*%2475%2C000%20if%20filing%20status%203%20or%204%3B%20%24112%2C500%20if%20single%2C%20head%20of%20household%20or%20qualifying%20widow(er)","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":78.95000000000002,"y":32.3625,"w":16.811899999999998,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":32.3625,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"21.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":32.3625,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":33.18,"w":319.2405,"clr":-1,"A":"left","R":[{"T":"22.%20Subtract%20line%2021%20from%20line%2019.%20If%20the%20result%20is%20zero%20or%20less%2C%20enter%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.88187500000001,"y":33.18,"w":135.00000000000003,"clr":-1,"A":"left","R":[{"T":"......................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":33.18,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"22.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":33.18,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":33.99,"w":152.19,"clr":-1,"A":"left","R":[{"T":"23.%20Multiply%20line%2022%20by%2025%25%20(0.25).","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.110000000000007,"y":33.99,"w":302.52420000000063,"clr":-1,"A":"left","R":[{"T":".........................................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":33.99,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"23.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":33.99,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":34.800000000000004,"w":319.2405,"clr":-1,"A":"left","R":[{"T":"24.%20Subtract%20line%2023%20from%20line%2020.%20If%20the%20result%20is%20zero%20or%20less%2C%20enter%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.88187500000001,"y":34.800000000000004,"w":135.00000000000003,"clr":-1,"A":"left","R":[{"T":"......................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":34.800000000000004,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"24.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":34.800000000000004,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":35.6175,"w":145.66639999999995,"clr":-1,"A":"left","R":[{"T":"25.%20Subtract%20line%2024%20from%20line%2019.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.645040625000004,"y":35.6175,"w":153.4842,"clr":-1,"A":"left","R":[{"T":"If%20the%20result%20is%20zero%20or%20less%2C%20enter%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.458125,"y":35.6175,"w":155.04339999999985,"clr":-1,"A":"left","R":[{"T":"..............................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":35.6175,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"25.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":35.6175,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":36.4275,"w":160.6612,"clr":-1,"A":"left","R":[{"T":"26.%20Multiply%20line%2025%20by%206.7%25%20(0.067).","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.38875,"y":36.4275,"w":294.96459999999985,"clr":-1,"A":"left","R":[{"T":"......................................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":36.4275,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"26.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":36.4275,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":37.237500000000004,"w":204.93179999999998,"clr":-1,"A":"left","R":[{"T":"27.%20Regular%20tax%20after%20credits.%20See%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.123125,"y":37.237500000000004,"w":249.95999999999938,"clr":-1,"A":"left","R":[{"T":"....................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":37.237500000000004,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"27.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":37.237500000000004,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4625000000000044,"y":38.055,"w":445.15099999999967,"clr":-1,"A":"left","R":[{"T":"28.%20Iowa%20Minimum%20Tax.%20Subtract%20line%2027%20from%20line%2026%2C%20enter%20here%20and%20on%20IA%201040%2C%20line%2045%2C%20or%20IA%201041%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.556250000000005,"y":38.865,"w":410.80679999999944,"clr":-1,"A":"left","R":[{"T":"line%2025.%20See%20instructions%20for%20Minimum%20Tax%20Limited%20to%20Net%20Worth.%20If%20less%20than%20zero%2C%20enter%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.22812500000002,"y":38.865,"w":22.4307,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.35312500000002,"y":38.865,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"28.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625000000001,"y":38.865,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":39.945,"w":412.2168000000003,"clr":-1,"A":"left","R":[{"T":"PART%20IV%3A%20NONRESIDENTS%20AND%20PART-YEAR%20RESIDENTS%20ONLY%20-%20Complete%20lines%2029%20-%2032.","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":3.462500000000001,"y":40.935,"w":10.8724,"clr":-1,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.339375,"y":40.935,"w":3.0020000000000002,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.141979687500001,"y":40.935,"w":423.5840000000001,"clr":-1,"A":"left","R":[{"T":"%20Enter%20Iowa%20net%20income%20plus%20Iowa%20adjustments%20and%20preferences.%20See%20instructions.%20If%20less%20than%20zero%2C%20enter%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":79.506875,"y":40.935,"w":14.998200000000002,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.353125,"y":40.935,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"29.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":40.935,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4624999999999946,"y":41.7525,"w":347.2145999999997,"clr":-1,"A":"left","R":[{"T":"30.%20Total%20net%20income%20plus%20total%20adjustments%20and%20preferences.%20See%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.038125,"y":41.7525,"w":105.00000000000001,"clr":-1,"A":"left","R":[{"T":"..........................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.353125,"y":41.7525,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"30.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":41.7525,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4624999999999946,"y":42.5625,"w":338.7123999999999,"clr":-1,"A":"left","R":[{"T":"31.%20Divide%20line%2029%20by%20line%2030%20and%20enter%20the%20result%20to%20three%20(3)%20decimal%20places.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.32625,"y":42.5625,"w":114.95859999999995,"clr":-1,"A":"left","R":[{"T":"..............................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.353125,"y":42.5625,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"31.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":42.5625,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4624999999999946,"y":43.3725,"w":433.77819999999974,"clr":-1,"A":"left","R":[{"T":"32.%20Iowa%20Minimum%20Tax.%20Multiply%20line%2028%20by%20line%2031.%20Enter%20here%20and%20on%20IA%201040%2C%20line%2045%2C%20or%20IA%201041%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.556249999999995,"y":44.19,"w":410.80679999999944,"clr":-1,"A":"left","R":[{"T":"line%2025.%20See%20instructions%20for%20Minimum%20Tax%20Limited%20to%20Net%20Worth.%20If%20less%20than%20zero%2C%20enter%20zero.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.228125,"y":44.19,"w":22.4307,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.353125,"y":44.19,"w":14.085300000000002,"clr":-1,"A":"left","R":[{"T":"32.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.09625,"y":44.19,"w":89.99819999999997,"clr":-1,"A":"left","R":[{"T":"__________________","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.4923546874999944,"y":45,"w":289.74860000000007,"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%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":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.61134531249989,"y":45,"w":272.0767000000003,"clr":-1,"A":"left","R":[{"T":"Exemption%20levels%20of%20%2417%2C500%20and%20%2475%2C000%20on%20lines%2020%20and%2021%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":3.482454687499994,"y":45.675000000000004,"w":510.47580000000005,"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%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%20respectively%2C%20also%20apply%20to%20an%20estate%20or%20trust.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.528125,"y":1.5600000000000023,"w":115.4136,"clr":-1,"A":"left","R":[{"T":"2012%20IA%206251","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":88.21062500000001,"y":47.4075,"w":75.85920000000003,"clr":-1,"A":"left","R":[{"T":"41-131a%20(08%2F08%2F12)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":10.743125000000001,"y":1.8599999999999945,"w":82.98800000000003,"clr":-1,"A":"left","R":[{"T":"www.iowa.gov%2Ftax","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":10.619375000000002,"y":0.9450000000000027,"w":136.51319999999998,"clr":-1,"A":"left","R":[{"T":"Iowa%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"name","EN":0},"TI":715,"AM":0,"x":4.121287500000001,"y":4.632687500000003,"w":61.61608749999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"soc_security","EN":0},"TI":716,"AM":0,"x":67.35884375,"y":4.632687500000003,"w":34.018874999999994,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_1","EN":0},"TI":717,"AM":0,"x":85.366359375,"y":7.2414375000000035,"w":15.239468750000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_2","EN":0},"TI":718,"AM":0,"x":85.35020312500001,"y":8.043562499999998,"w":15.255625,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_3","EN":0},"TI":719,"AM":0,"x":85.38251562500001,"y":8.861874999999998,"w":15.239468750000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_4","EN":0},"TI":720,"AM":0,"x":85.38251562500001,"y":9.6268125,"w":15.266281249999995,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_5","EN":0},"TI":721,"AM":0,"x":85.384234375,"y":10.4699375,"w":15.250124999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_6","EN":0},"TI":722,"AM":0,"x":85.402625,"y":12.050375000000003,"w":15.241874999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_7","EN":0},"TI":723,"AM":0,"x":85.37357812500001,"y":12.897624999999996,"w":15.271437500000017,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_8","EN":0},"TI":724,"AM":0,"x":85.3771875,"y":13.733562499999996,"w":15.251843749999985,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_9","EN":0},"TI":725,"AM":0,"x":85.37890625,"y":14.531750000000002,"w":15.266109375000012,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_10","EN":0},"TI":726,"AM":0,"x":85.38646875,"y":15.349249999999998,"w":15.241874999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_11","EN":0},"TI":727,"AM":0,"x":85.39317187500001,"y":16.1716875,"w":15.219703125000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12a","EN":0},"TI":728,"AM":0,"x":31.915125,"y":17.749687500000004,"w":9.676390625000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12h","EN":0},"TI":729,"AM":0,"x":74.352609375,"y":17.7541875,"w":8.556109375000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12b","EN":0},"TI":730,"AM":0,"x":31.929218750000004,"y":18.5461875,"w":9.64734375,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12i","EN":0},"TI":731,"AM":0,"x":74.35965625,"y":18.562124999999998,"w":8.556281250000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12c","EN":0},"TI":732,"AM":0,"x":31.913062500000002,"y":19.377124999999996,"w":9.662296874999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12j","EN":0},"TI":733,"AM":0,"x":74.38303125000002,"y":19.372,"w":8.539953124999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12d","EN":0},"TI":734,"AM":0,"x":31.913062500000002,"y":20.2030625,"w":9.662296874999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12k","EN":0},"TI":735,"AM":0,"x":74.35810937500001,"y":20.244375,"w":8.572093749999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12e","EN":0},"TI":736,"AM":0,"x":31.913062500000002,"y":21.010562500000002,"w":9.662296874999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12l","EN":0},"TI":737,"AM":0,"x":74.37409375,"y":21.0620625,"w":8.561437499999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12f","EN":0},"TI":738,"AM":0,"x":31.89690625,"y":21.8184375,"w":9.679656250000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12m","EN":0},"TI":739,"AM":0,"x":74.35810937500001,"y":21.806249999999995,"w":8.507640624999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12g","EN":0},"TI":740,"AM":0,"x":31.89690625,"y":22.620500000000003,"w":9.678453125,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_12","EN":0},"TI":741,"AM":0,"x":85.37357812500001,"y":22.636625,"w":15.239296875000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_13","EN":0},"TI":742,"AM":0,"x":85.38079687500002,"y":23.4451875,"w":15.239296875000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_14","EN":0},"TI":743,"AM":0,"x":85.39506250000001,"y":25.5271875,"w":15.239296875000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_15","EN":0},"TI":744,"AM":0,"x":85.38784375,"y":26.3936875,"w":15.235687500000015,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_16","EN":0},"TI":745,"AM":0,"x":85.51709375,"y":27.1460625,"w":15.050062500000028,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_17","EN":0},"TI":746,"AM":0,"x":85.49096875000001,"y":27.981000000000005,"w":15.223312500000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_18","EN":0},"TI":747,"AM":0,"x":85.39506250000001,"y":28.7936875,"w":15.239296875000008,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_19","EN":0},"TI":748,"AM":0,"x":85.3771875,"y":29.5830625,"w":15.255453125000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_20","EN":0},"TI":749,"AM":0,"x":85.39506250000001,"y":31.690375,"w":15.25545312499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_21","EN":0},"TI":750,"AM":0,"x":85.38440625000001,"y":32.4691875,"w":15.243937500000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_22","EN":0},"TI":751,"AM":0,"x":85.28128125,"y":33.3020625,"w":15.243937500000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_23","EN":0},"TI":752,"AM":0,"x":85.36825,"y":34.146687500000006,"w":15.276250000000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_24","EN":0},"TI":753,"AM":0,"x":85.45521875000001,"y":34.9354375,"w":15.22571874999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_25","EN":0},"TI":754,"AM":0,"x":85.3703125,"y":35.7738125,"w":15.258031250000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_26","EN":0},"TI":755,"AM":0,"x":85.2974375,"y":36.537625,"w":15.227781250000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_27","EN":0},"TI":756,"AM":0,"x":85.402625,"y":37.351375,"w":15.225718750000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_28","EN":0},"TI":757,"AM":0,"x":85.402625,"y":38.978,"w":15.225718750000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_29","EN":0},"TI":758,"AM":0,"x":85.46140625000001,"y":41.061,"w":15.225718750000004,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_30","EN":0},"TI":759,"AM":0,"x":85.38784375,"y":41.86025,"w":15.255625000000013,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_31","EN":0},"TI":760,"AM":0,"x":85.27578125,"y":42.698375,"w":15.271609375000013,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"line_32","EN":0},"TI":761,"AM":0,"x":85.39506250000001,"y":44.30096875,"w":15.219703125000002,"h":0.8333333333333334}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/ia/formset.json b/test/data/ia/formset.json new file mode 100755 index 00000000..9878569c --- /dev/null +++ b/test/data/ia/formset.json @@ -0,0 +1,30 @@ +{ + "formset" :{ + "id": "S2013IAD", + "version": "0.1", + "agency": "ia", + "main": "ia_scr_1040", + "forms": [ + {"id": "ia_scr_1040", "name":"Iowa Individual Income Tax Form", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_1040"}, + {"id": "ia_scr_1040scha", "name":"Iowa Itemized Deductions", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_1040"}, + {"id": "ia_scr_1040schb", "name":"Interest and Dividend Income", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_1040"}, + {"id": "ia_scr_1040v", "name":"Iowa Individual Income Tax Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_1040v"}, + {"id": "ia_scr_130", "name":"Iowa Out-of-state Credit Computation", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_130"}, + {"id": "ia_scr_148", "name":"Tax Credits Schedule", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_148"}, + {"id": "ia_scr_4136", "name":"Computation of Iowa Motor Fuel Tax Credit", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_4136"}, + {"id": "ia_scr_4562a", "name":"Iowa Depreciation Adjustment Schedule", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_4562a"}, + {"id": "ia_scr_4562b", "name":"Iowa Depreciation Accumulated Adjustment Schedule", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_4562b"}, + {"id": "ia_scr_6251", "name":"Iowa Minimum Tax Computation", "mc": false, "max": 1, "parent": null, + "inst":"ia_ins_6251"} + ] + } +} \ No newline at end of file diff --git a/test/data/ia/pageset.json b/test/data/ia/pageset.json new file mode 100755 index 00000000..f908e564 --- /dev/null +++ b/test/data/ia/pageset.json @@ -0,0 +1,66 @@ +{ + "headerData": { + "valueLabel": [ + {"href": "#/ia/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "http://www.iowa.gov/tax/contact/contact.html", "target": "_blank", "label": "Contact IA Tax", + "styleClass": "formImage"}, + {"href": "#/ia/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "state":"Iowa", + "stateAbbr":"IA", + "departmentName":"Iowa Department of Revenue", + "stateTaxUrl":"http://www.iowa.gov/tax/", + "eFileLinkUrl":"http://www.iowa.gov/tax/elf/elfchoic.html#filefree", + "faqFooter":"View more of your state-specific FAQs", + "howItWorksList": {}, + "noteList": { + "item1": "This program does not support prior-year returns, part-year, non-resident or amended returns." + } + }, + + "landingData": { + "formNumber":"IA1040", + "makeSureList": {}, + "tipsList": { + "item1":"Complete your federal return first." + }, + "beforeList": { + "item1":"Enter your exemption credits." + } + }, + + "loginData": { + "stateAbbr":"IA", + "signInHelpLink":"" + }, + + "recoveryData": { + "forgotAnswerLink":"" + }, + + "homeHeaderData": { + "href": "http://www.iowa.gov/tax/educate/faqhome.html" + }, + + "efileData": { + "efRefundLink":"", + "efRequiredInfo":"", + "efPaymentDueDate":"", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + + "commonData": { + "state":"Iowa", + "stateAbbr":"IA", + "departmentName":"Iowa Department of Revenue", + "siteName": "Iowa State Fillable Forms", + "url": "https://www.statefillableforms.com/ia", + "currentTaxYear": "2013" + + } + +} \ No newline at end of file diff --git a/test/data/nd/availability.json b/test/data/nd/availability.json new file mode 100755 index 00000000..1554903e --- /dev/null +++ b/test/data/nd/availability.json @@ -0,0 +1,30 @@ +{ + "formset": [ + { + "id": "S2013NDD", + "version": "0.1", + "agency": "nd", + "main": "ND1", + "display_name": "Form ND-1", + "forms": [ + {"id": "ND1", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "ND1CR", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "ND1SA", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "ND1TC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + }, + { + "id": "S2013NDD", + "version": "0.1", + "agency": "nd", + "main": "NDEZ", + "display_name": "Form ND-EZ", + "forms": [ + {"id": "NDEZ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + } + + ] +} diff --git a/test/data/nd/form/ND1.content.txt b/test/data/nd/form/ND1.content.txt new file mode 100755 index 00000000..3e171426 --- /dev/null +++ b/test/data/nd/form/ND1.content.txt @@ -0,0 +1,314 @@ +Attach a copy of your 2013 +7. +1 +. +Federal taxable income +from line 43 of Form 1040, line 27 of Form 1040A, +or l +ine 6 of Form 1040EZ +A. +on federal return: +B. + School district code: +C. +Income source code: +D +. +Federal adjusted gross income +from line 37 of Form 1040, line 21 of Form 1040A, + or line 4 of Form 1040EZ +2. +L +ump-sum distribution from Federal Form 4972 +3. +Adj +ustment for loss from an S corporation that elected +5. +T +otal additions. Add lines 2 through 4b + 8. + +9. +10. +11. +12. +exclusion +16. +T +otal other subtractions +18. North Dakota taxable income. + Subtract line 17 from line 6. +If less than zero, enter 0 +Subtractions +Ci +t +y +State +ZIP code +Extension +2013 +13. +14. + +17. +4. + +a. +Planned gift or endowment tax credit adjustment to income +Deceased +Deceased +Yo +ur social security number +5 +Apt N +o. +17 +6. +6 +15. + + b. + +Date of death +federal income tax return +ND-1 Individual income tax return +North Dakota Office of State Tax Commissioner +Please type or print in black or blue ink. +If a fiscal year filer, enter +fiscal year end: +(See page 11) +MI +La +st name +Your first name +MI +Last name +If joint return, spouse's first name +Spouse's social security number +Mailing address +F + Filing status used +(Fill in only one) +with dependent child +(If zero, see page 12 of instructions) +taxation under N.D.C.C. § 57-38-01.35 +Housing incentive fund tax credit adjustment to income +Net long-term capital gain exclusion +(From worksheet on page 13 of instructions) +taxation under N.D.C.C. § 57-38-01.35 +National Guard/Reserve member federal active duty pay +(Attach copy of Title 10 orders) +Nonresident only: Servicemembers Civil Relief Act adjustment +(Attach copy of Form W-2 showing this compensation) (Not Supported) +College SAVE account deduction +Qualified dividend exclusion +(Attach Schedule ND-1SA) + Total subtractions. Add lines 7 through 16 +(SX) D +(SS) 1 +(NA) 2 +(NB) 3 +(NK) 4a +(AP) 4b +(SN) 7 +(NC) 8 +(S4) 9 +(S5) 10 +(S6) 11 +(NI) 12 +(NJ) 13 +(AA) 14 +(AO) 15 +(AB) 16 +(ND) 18 +(See page 19) +Amended return:General (Not Supported) +Additions +Form +ill in only if applicable: +(See page 11) +Amended return:Federal NOL (Not supported) +(See page 11) +MN/MT Reciprocity (Not Supported) +(See page 11) +3. +Married filing separately +1. +Single +2. +Married filing jointly +4. +Head of household +5. +Qualifying widow(er) +Add lines 1 and 5 +Interest from U.S. obligations +Exempt income of an eligible Native American +Benefits received from U.S. Railroad Retirement Board +Adjustment for income from an S corporation that elected +State (Not Supported) +Date of death +----------------Page (0) Break---------------- +Checking Savings +For a complete return, you must attach a copy of your 2013 federal income tax return + - If a +i +(AK) +(AL) +a. +19. +21. +22. +26. +If less than zero, enter 0 +28. +29. +30. +32. +If less than $5.00, enter 0 +35. Tax due - +If line 30 is LESS than line 27, subtract line 30 from line 27. +If less than $5.00, enter 0 +38 +. +Balance due. + +39. +To +* +Tax Due +Date +Phone number (land line) +Paid preparer signature +PTIN +Date +discuss this return with the paid preparer. +Phone n +o. +i +36. +Enter total +19 +36 +(SO) 39 +38 +37 +33. +Watchable +(SP) +(SW) +total +33 +26 +23. +24. + +c +redit +25. +Total other credits +37. +Watchable +(SU) +(SY) +total +If a +or +, enter amount from Schedule ND-1NR, +Date +b. +Account number: +Type of account: +c. +IIT +Routing number: + from line 18 of page 1 +, enter amount from Tax Table on page 20 of instructions; however, +full-year resident +OR +full-year nonresident +part-year resident +line 21; however, if you sold a research tax credit, see page 13 of instructions + Credit for income tax paid to another state +(Attach Schedule ND-1CR) + Marriage penalty credit for joint filers +(From worksheet on page 14 of instructions) +Carryover of unused 2008 residential/agricultural +property tax credit +Carryover of unused 2008 commercial property tax +(Attach Schedule ND-1TC) + Total credits. Add lines 21 through 25 + Estimated tax paid on 2013 Forms ND-1ES and ND-1EXT +plus an overpayment, if any, applied from your 2012 return + Total payments. Add lines 28 and 29 +otherwise, go to line 35. +If less than $5.00, enter 0 + Amount of line 31 that you want applied to your 2014 estimated tax +Voluntary +Penalty +Voluntary +Add lines 35, 36, 37, and, if applicable, line 39. +Interest on underpaid estimated tax from Schedule ND-1UT +Cell phone number +(SZ) 35 +(SR) 34 +(SG) 31 +(SQ) 32 +(AJ) 30 +(S&) 29 +(SF) 28 +(SE) 27 +(AE) 25 +(AN) 24 +(AM) 23 +(AC) 22 +(SD) 21 +(SB) 20 +(See page 15) +2013 Form ND-1, page 2 +North Dakota Office of State Tax Commissioner + Enter your +North Dakota taxable income +Tax calculation +20. +Tax +f you have farm income or sold a research tax credit, see page 13 of instructions; +Subtract line 26 from line 20. +27. +Net tax liability. +Tax paid + North Dakota withholding(Attach W-2s, 1099s, and/or N.D. K-1s) +If line 30 is MORE than line 27, subtract line 27 from line 30; +31. +Overpayment - +Program Trust Fund +Trees For ND +Subtract lines 32 and 33 from line 31. +34. +Refund. +your refund, +direct deposit +complete items a, b, and c. +Enter +Program Trust Fund +Pay to: +I authorize the ND Office of State Tax Commissioner to +This Space Is For Tax Department Use Only +Mail to: State Tax Commissioner, PO Box 5621, +Bismarck, ND 58506-5621 +Spouse's signature + ND State Tax Commissioner +Privacy Act - See inside front cover of booklet. +Your signature +I declare that this return is correct and complete to the best of my knowledge and belief. +Trees For ND +Credits +Refund +contribution to: + +Wildlife Fund +Interest +Enter +contribution to: +Wildlife Fund +----------------Page (1) Break---------------- diff --git a/test/data/nd/form/ND1.fields.json b/test/data/nd/form/ND1.fields.json new file mode 100755 index 00000000..7b255357 --- /dev/null +++ b/test/data/nd/form/ND1.fields.json @@ -0,0 +1 @@ +[{"id":"TPDECD","type":"box","calc":false,"value":""},{"id":"SPDECD","type":"box","calc":false,"value":""},{"id":"AMENDRB","type":"radio","calc":true,"value":"NOLX"},{"id":"AMENDRB","type":"radio","calc":true,"value":"GENX"},{"id":"RXE","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"MNMT","type":"box","calc":true,"value":""},{"id":"ENDDAT","type":"date","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"TPINIT","type":"mask","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"TPDOD","type":"date","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SPINIT","type":"mask","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"SPDOD","type":"date","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"APTNO","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"RECSTATE","type":"alpha","calc":true,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"SCHID1","type":"mask","calc":false,"value":""},{"id":"SCHID2","type":"mask","calc":false,"value":""},{"id":"INCSRC","type":"alpha","calc":false,"value":""},{"id":"Fed_Attach","type":"link","calc":false,"value":""},{"id":"FEDAGI","type":"number","calc":true,"value":""},{"id":"FEDINC","type":"number","calc":false,"value":""},{"id":"LUMPSUM","type":"number","calc":false,"value":""},{"id":"PASSLOSS","type":"number","calc":false,"value":""},{"id":"PGCRDADJ","type":"number","calc":false,"value":""},{"id":"HOUSECR","type":"number","calc":false,"value":""},{"id":"TOTINC","type":"number","calc":true,"value":""},{"id":"TOTLADD","type":"number","calc":true,"value":""},{"id":"INTUSOBL","type":"number","calc":false,"value":""},{"id":"CAPGAIN","type":"number","calc":false,"value":""},{"id":"NAEXEINC","type":"number","calc":false,"value":""},{"id":"RRBBEN","type":"number","calc":false,"value":""},{"id":"PASSINC","type":"number","calc":false,"value":""},{"id":"NIAMNT","type":"number","calc":false,"value":""},{"id":"NRSVCMBR","type":"number","calc":true,"value":""},{"id":"SAVEACCT","type":"number","calc":false,"value":""},{"id":"QUALDIVD","type":"number","calc":false,"value":""},{"id":"Add_ND_1SA","type":"link","calc":false,"value":""},{"id":"SUBNS","type":"number","calc":true,"value":""},{"id":"TOTSUBNS","type":"number","calc":true,"value":""},{"id":"TAXINC","type":"number","calc":true,"value":""},{"id":"ACCTRB","type":"radio","calc":false,"value":"CHECKING"},{"id":"ACCTRB","type":"radio","calc":false,"value":"SAVINGS"},{"id":"AUTHX","type":"box","calc":true,"value":""},{"id":"TAX2","type":"number","calc":true,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"TAX1","type":"number","calc":false,"value":""},{"id":"Add_ND_1CR","type":"link","calc":false,"value":""},{"id":"OOSCRED","type":"number","calc":true,"value":""},{"id":"MFJCR","type":"number","calc":false,"value":""},{"id":"AGPROPCR","type":"number","calc":false,"value":""},{"id":"COPROPCR","type":"number","calc":false,"value":""},{"id":"Add_ND_1TC","type":"link","calc":false,"value":""},{"id":"TOTALCR","type":"number","calc":true,"value":""},{"id":"CRDSTOT","type":"number","calc":true,"value":""},{"id":"NETTAX","type":"number","calc":true,"value":""},{"id":"WITHHOLD","type":"number","calc":false,"value":""},{"id":"ESTTAX","type":"number","calc":false,"value":""},{"id":"TOTPAY","type":"number","calc":true,"value":""},{"id":"OVERPAY","type":"number","calc":true,"value":""},{"id":"APPLY","type":"number","calc":false,"value":""},{"id":"WILDFUN1","type":"number","calc":false,"value":""},{"id":"TREEFUN1","type":"number","calc":false,"value":""},{"id":"FUNDTOT1","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"ROUTNUM","type":"mask","calc":false,"value":""},{"id":"ACCTNUM","type":"mask","calc":false,"value":""},{"id":"TAXDUE","type":"number","calc":true,"value":""},{"id":"TAXINT","type":"number","calc":false,"value":""},{"id":"TAXPEN","type":"number","calc":false,"value":""},{"id":"PENINTOT","type":"number","calc":true,"value":""},{"id":"WILDFUN2","type":"number","calc":false,"value":""},{"id":"TREEFUN2","type":"number","calc":false,"value":""},{"id":"FUNDTOT2","type":"number","calc":true,"value":""},{"id":"Add_ND_1V","type":"link","calc":false,"value":""},{"id":"BALDUE","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"INTEREST","type":"number","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":false,"value":""},{"id":"CELLPHO","type":"phone","calc":false,"value":""},{"id":"PREPNAME","type":"alpha","calc":true,"value":"Self- Prepared"}] \ No newline at end of file diff --git a/test/data/nd/form/ND1.json b/test/data/nd/form/ND1.json new file mode 100755 index 00000000..180af93a --- /dev/null +++ b/test/data/nd/form/ND1.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"28702.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":59.078,"y":45.426,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":51.375,"y":10.894,"w":2.1495,"l":10.372},{"oc":"#231f20","x":59.026,"y":36.785,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":4.289,"y":10.894,"w":2.1495,"l":47.117},{"oc":"#231f20","x":4.289,"y":9.4,"w":2.1495,"l":57.407},{"oc":"#231f20","x":4.289,"y":7.907,"w":2.1495,"l":57.407},{"dsh":1,"clr":1,"x":35.488,"y":29.693,"w":0.09,"l":43.974},{"dsh":1,"oc":"#231f20","x":35.488,"y":29.693,"w":0.09,"l":43.974},{"dsh":1,"clr":1,"x":39.452,"y":34.342,"w":0.09,"l":13.043},{"dsh":1,"oc":"#231f20","x":39.452,"y":34.342,"w":0.09,"l":13.043},{"dsh":1,"clr":1,"x":39.206,"y":35.545,"w":0.09,"l":12.847},{"dsh":1,"oc":"#231f20","x":39.206,"y":35.545,"w":0.09,"l":12.847},{"dsh":1,"clr":1,"x":24.52,"y":21.373,"w":0.09,"l":51.143},{"dsh":1,"oc":"#231f20","x":24.52,"y":21.373,"w":0.09,"l":51.143},{"dsh":1,"clr":1,"x":51.119,"y":23.214,"w":0.09,"l":24.801},{"dsh":1,"oc":"#231f20","x":51.119,"y":23.214,"w":0.09,"l":24.801},{"dsh":1,"clr":1,"x":41.26,"y":25.032,"w":0.09,"l":11.04},{"dsh":1,"oc":"#231f20","x":41.26,"y":25.032,"w":0.09,"l":11.04},{"dsh":1,"clr":1,"x":35.098,"y":26.422,"w":0.09,"l":17.202},{"dsh":1,"oc":"#231f20","x":35.098,"y":26.422,"w":0.09,"l":17.202},{"dsh":1,"clr":1,"x":35.611,"y":38.286,"w":0.09,"l":16.698},{"dsh":1,"oc":"#231f20","x":35.611,"y":38.286,"w":0.09,"l":16.698},{"oc":"#231f20","x":4.289,"y":13.763,"w":2.1495,"l":39.743},{"oc":"#231f20","x":4.289,"y":15.256,"w":2.1495,"l":39.743},{"oc":"#231f20","x":44.074,"y":13.763,"w":2.1495,"l":7.384},{"oc":"#231f20","x":44.074,"y":15.256,"w":2.1495,"l":7.384},{"oc":"#231f20","x":51.499,"y":13.763,"w":2.1495,"l":10.372},{"oc":"#231f20","x":51.499,"y":15.256,"w":2.1495,"l":10.372},{"dsh":1,"clr":1,"x":29.326,"y":32.811,"w":0.09,"l":23.055},{"dsh":1,"oc":"#231f20","x":29.326,"y":32.811,"w":0.09,"l":23.055},{"dsh":1,"clr":1,"x":37.255,"y":40.078,"w":0.09,"l":14.922},{"dsh":1,"oc":"#231f20","x":37.255,"y":40.078,"w":0.09,"l":14.922},{"dsh":1,"clr":1,"x":46.087,"y":41.762,"w":0.09,"l":6.264},{"dsh":1,"oc":"#231f20","x":46.087,"y":41.762,"w":0.09,"l":6.264},{"dsh":1,"clr":1,"x":30.477,"y":42.957,"w":0.09,"l":21.649},{"dsh":1,"oc":"#231f20","x":30.477,"y":42.957,"w":0.09,"l":21.649},{"dsh":1,"clr":1,"x":71.617,"y":47.681,"w":0.09,"l":3.871},{"dsh":1,"oc":"#231f20","x":71.617,"y":47.681,"w":0.09,"l":3.871},{"dsh":1,"clr":1,"x":37.665,"y":46.49,"w":0.09,"l":42.321},{"dsh":1,"oc":"#231f20","x":37.665,"y":46.49,"w":0.09,"l":42.321},{"oc":"#231f20","x":3.262,"y":19.92,"w":2.1495,"l":97.171},{"oc":"#231f20","x":61.696,"y":15.252,"w":2.1495,"l":39.024},{"oc":"#231f20","x":3.386,"y":21.761,"w":2.1495,"l":97.314},{"oc":"#231f20","x":61.799,"y":7.903,"w":2.1495,"l":8},{"oc":"#231f20","x":61.799,"y":9.415,"w":2.1495,"l":8},{"oc":"#231f20","x":61.778,"y":10.902,"w":2.1495,"l":7.99},{"oc":"#231f20","x":61.881,"y":16.865,"w":2.1495,"l":39.024},{"dsh":1,"clr":1,"x":45.655,"y":36.59,"w":0.09,"l":6.491},{"dsh":1,"oc":"#231f20","x":45.655,"y":36.59,"w":0.09,"l":6.491},{"oc":"#231f20","x":82.205,"y":21.474,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":79.925,"y":7.907,"w":2.1495,"l":20.94},{"oc":"#231f20","x":79.925,"y":9.427,"w":2.1495,"l":20.94},{"oc":"#231f20","x":79.904,"y":10.905,"w":2.1495,"l":20.94},{"oc":"#231f20","x":80.105,"y":7.523,"w":1.6124999999999998,"l":14.071},{"oc":"#231f20","x":55.124,"y":19.696,"w":1.6124999999999998,"l":4.293},{"oc":"#231f20","x":21.11,"y":19.696,"w":1.6124999999999998,"l":4.303},{"oc":"#231f20","x":27.908,"y":19.696,"w":1.6124999999999998,"l":6.151},{"oc":"#231f20","x":25.988,"y":19.099,"w":1.6124999999999998,"l":1.284},{"oc":"#231f20","x":81.958,"y":23.438,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.975,"y":25.115,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.975,"y":26.466,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.852,"y":27.59,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":81.896,"y":29.779,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":59.108,"y":32.811,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.903,"y":35.567,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.903,"y":38.368,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.852,"y":40.093,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":59.078,"y":42.013,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.975,"y":43.092,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":82.944,"y":47.801,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":83.067,"y":46.632,"w":1.6124999999999998,"l":18.475},{"dsh":1,"clr":1,"x":43.519,"y":45.325,"w":0.09,"l":8.996},{"dsh":1,"oc":"#231f20","x":43.519,"y":45.325,"w":0.09,"l":8.996},{"dsh":1,"clr":1,"x":20.587,"y":30.802,"w":0.09,"l":58.886},{"dsh":1,"oc":"#231f20","x":20.587,"y":30.802,"w":0.09,"l":58.886},{"oc":"#231f20","x":81.958,"y":30.858,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.975,"y":44.257,"w":1.6124999999999998,"l":18.475},{"dsh":1,"clr":1,"x":27.396,"y":44.141,"w":0.09,"l":24.996},{"dsh":1,"oc":"#231f20","x":27.396,"y":44.141,"w":0.09,"l":24.996},{"dsh":1,"clr":1,"x":48.839,"y":28.528,"w":0.09,"l":3.266},{"dsh":1,"oc":"#231f20","x":48.839,"y":28.528,"w":0.09,"l":3.266},{"oc":"#231f20","x":58.852,"y":28.666,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":58.975,"y":34.409,"w":1.6124999999999998,"l":18.475},{"oc":"#231f20","x":69.974,"y":7.903,"w":2.1495,"l":9.838},{"oc":"#231f20","x":69.974,"y":9.423,"w":2.1495,"l":9.838},{"oc":"#231f20","x":70.015,"y":10.905,"w":2.1495,"l":9.848},{"clr":1,"x":3.93,"y":1.424,"w":0.09,"l":4.293},{"clr":1,"x":3.93,"y":2.981,"w":0.09,"l":4.293},{"oc":"#231f20","x":4.546,"y":1.648,"w":3.2235,"l":3.071},{"clr":1,"x":96.911,"y":1.409,"w":0.09,"l":4.293},{"clr":1,"x":96.911,"y":2.97,"w":0.09,"l":4.293},{"oc":"#231f20","x":97.527,"y":1.633,"w":3.2235,"l":3.071},{"clr":1,"x":3.879,"y":47.879,"w":0.09,"l":4.293},{"clr":1,"x":3.879,"y":49.44,"w":0.09,"l":4.293},{"oc":"#231f20","x":4.495,"y":49.22,"w":3.2235,"l":3.071},{"clr":1,"x":96.911,"y":47.879,"w":0.09,"l":4.293},{"clr":1,"x":96.911,"y":49.44,"w":0.09,"l":4.293},{"oc":"#231f20","x":97.527,"y":49.22,"w":3.2235,"l":3.071},{"clr":1,"x":77.809,"y":1.297,"w":0.09,"l":18.465},{"clr":1,"x":77.809,"y":3.082,"w":0.09,"l":18.465},{"clr":1,"x":77.809,"y":1.517,"w":0.09,"l":18.465},{"clr":1,"x":77.809,"y":2.858,"w":0.09,"l":18.465},{"oc":"#231f20","x":79.504,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":79.504,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":79.842,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":79.842,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":80.192,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":80.192,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":80.787,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":80.787,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":81.126,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":81.126,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":81.465,"y":1.517,"w":0.09,"l":0.411},{"oc":"#231f20","x":81.465,"y":2.858,"w":0.09,"l":0.411},{"oc":"#231f20","x":82.317,"y":1.517,"w":0.09,"l":0.411},{"oc":"#231f20","x":82.317,"y":2.858,"w":0.09,"l":0.411},{"oc":"#231f20","x":82.913,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":82.913,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":83.252,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":83.252,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":83.848,"y":1.517,"w":0.09,"l":0.421},{"oc":"#231f20","x":83.848,"y":2.858,"w":0.09,"l":0.421},{"oc":"#231f20","x":84.443,"y":1.517,"w":0.09,"l":0.421},{"oc":"#231f20","x":84.443,"y":2.858,"w":0.09,"l":0.421},{"oc":"#231f20","x":85.296,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":85.296,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":85.645,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":85.645,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":85.984,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":85.984,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":86.323,"y":1.517,"w":0.09,"l":0.411},{"oc":"#231f20","x":86.323,"y":2.858,"w":0.09,"l":0.411},{"oc":"#231f20","x":86.918,"y":1.517,"w":0.09,"l":0.411},{"oc":"#231f20","x":86.918,"y":2.858,"w":0.09,"l":0.411},{"oc":"#231f20","x":87.771,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":87.771,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":88.366,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":88.366,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":88.705,"y":1.517,"w":0.09,"l":0.421},{"oc":"#231f20","x":88.705,"y":2.858,"w":0.09,"l":0.421},{"oc":"#231f20","x":89.558,"y":1.517,"w":0.09,"l":0.421},{"oc":"#231f20","x":89.558,"y":2.858,"w":0.09,"l":0.421},{"oc":"#231f20","x":90.153,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":90.153,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":90.492,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":90.492,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":91.098,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":91.098,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":91.694,"y":1.517,"w":0.09,"l":0.411},{"oc":"#231f20","x":91.694,"y":2.858,"w":0.09,"l":0.411},{"oc":"#231f20","x":92.289,"y":1.517,"w":0.09,"l":0.411},{"oc":"#231f20","x":92.289,"y":2.858,"w":0.09,"l":0.411},{"oc":"#231f20","x":93.142,"y":1.517,"w":0.09,"l":0.154},{"oc":"#231f20","x":93.142,"y":2.858,"w":0.09,"l":0.154},{"oc":"#231f20","x":93.481,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":93.481,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":93.819,"y":1.517,"w":0.09,"l":0.421},{"oc":"#231f20","x":93.819,"y":2.858,"w":0.09,"l":0.421},{"oc":"#231f20","x":94.415,"y":1.517,"w":0.09,"l":0.164},{"oc":"#231f20","x":94.415,"y":2.858,"w":0.09,"l":0.164},{"oc":"#231f20","x":4.289,"y":12.388,"w":2.1495,"l":39.743},{"oc":"#231f20","x":44.074,"y":12.388,"w":2.1495,"l":7.384}],"VLines":[{"oc":"#231f20","x":51.406,"y":10.894,"w":2.1495,"l":1.4},{"oc":"#231f20","x":44.032,"y":13.763,"w":2.1495,"l":1.43},{"oc":"#231f20","x":51.457,"y":13.763,"w":2.1495,"l":1.43},{"oc":"#231f20","x":79.812,"y":7.903,"w":2.1495,"l":1.52},{"oc":"#231f20","x":79.863,"y":9.475,"w":2.1495,"l":1.43},{"oc":"#231f20","x":61.811,"y":7.914,"w":2.1495,"l":11.923},{"oc":"#231f20","x":69.881,"y":8.4,"w":1.0739999999999998,"l":1.027},{"oc":"#231f20","x":69.891,"y":9.878,"w":1.0739999999999998,"l":1.027},{"oc":"#231f20","x":88.556,"y":15.846,"w":1.0739999999999998,"l":1.027},{"clr":1,"x":3.93,"y":1.424,"w":0.09,"l":1.557},{"clr":1,"x":8.223,"y":1.424,"w":0.09,"l":1.557},{"oc":"#231f20","x":4.546,"y":1.648,"w":3.2235,"l":1.113},{"clr":1,"x":96.911,"y":1.409,"w":0.09,"l":1.561},{"clr":1,"x":101.203,"y":1.409,"w":0.09,"l":1.561},{"oc":"#231f20","x":100.597,"y":1.633,"w":3.2235,"l":1.117},{"clr":1,"x":3.879,"y":47.879,"w":0.09,"l":1.561},{"clr":1,"x":8.171,"y":47.879,"w":0.09,"l":1.561},{"oc":"#231f20","x":4.495,"y":48.103,"w":3.2235,"l":1.117},{"clr":1,"x":96.911,"y":47.879,"w":0.09,"l":1.561},{"clr":1,"x":101.203,"y":47.879,"w":0.09,"l":1.561},{"oc":"#231f20","x":100.597,"y":48.103,"w":3.2235,"l":1.117},{"clr":1,"x":77.809,"y":1.297,"w":0.09,"l":1.785},{"clr":1,"x":96.274,"y":1.297,"w":0.09,"l":1.785},{"clr":1,"x":77.809,"y":1.517,"w":0.09,"l":1.341},{"clr":1,"x":96.274,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":79.504,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":79.668,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":79.842,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":80.007,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":80.192,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":80.346,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":80.787,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":80.941,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":81.126,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":81.28,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":81.465,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":81.876,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":82.317,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":82.728,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":82.913,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":83.078,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":83.252,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":83.416,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":83.848,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":84.269,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":84.443,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":84.864,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":85.296,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":85.46,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":85.645,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":85.799,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":85.984,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":86.138,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":86.323,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":86.733,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":86.918,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":87.329,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":87.771,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":87.925,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":88.366,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":88.531,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":88.705,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":89.126,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":89.558,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":89.979,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":90.153,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":90.317,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":90.492,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":90.656,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":91.098,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":91.252,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":91.694,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":92.104,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":92.289,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":92.7,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":93.142,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":93.296,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":93.481,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":93.645,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":93.819,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":94.24,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":94.415,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":94.579,"y":1.517,"w":0.09,"l":1.341},{"oc":"#231f20","x":51.457,"y":12.388,"w":2.1495,"l":1.43}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":19.899,"y":15.79,"w":1.222,"h":0.444,"clr":1},{"x":19.899,"y":16.619,"w":1.222,"h":0.444,"clr":1},{"x":41.67,"y":15.849,"w":1.222,"h":0.444,"clr":1},{"x":41.67,"y":16.645,"w":1.222,"h":0.444,"clr":1},{"x":98.112,"y":13.112,"w":1.222,"h":0.444,"clr":1},{"oc":"#231f20","x":79.514,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":79.853,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":80.202,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":80.798,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":81.137,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":81.475,"y":1.521,"w":0.4,"h":1.337,"clr":-1},{"oc":"#231f20","x":82.328,"y":1.521,"w":0.4,"h":1.337,"clr":-1},{"oc":"#231f20","x":82.923,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":83.262,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":83.858,"y":1.521,"w":0.411,"h":1.337,"clr":-1},{"oc":"#231f20","x":84.454,"y":1.521,"w":0.411,"h":1.337,"clr":-1},{"oc":"#231f20","x":85.306,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":85.655,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":85.994,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":86.333,"y":1.521,"w":0.401,"h":1.337,"clr":-1},{"oc":"#231f20","x":86.929,"y":1.521,"w":0.4,"h":1.337,"clr":-1},{"oc":"#231f20","x":87.781,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":88.377,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":88.715,"y":1.521,"w":0.411,"h":1.337,"clr":-1},{"oc":"#231f20","x":89.568,"y":1.521,"w":0.411,"h":1.337,"clr":-1},{"oc":"#231f20","x":90.163,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":90.502,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":91.108,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":91.704,"y":1.521,"w":0.4,"h":1.337,"clr":-1},{"oc":"#231f20","x":92.299,"y":1.521,"w":0.401,"h":1.337,"clr":-1},{"oc":"#231f20","x":93.152,"y":1.521,"w":0.144,"h":1.337,"clr":-1},{"oc":"#231f20","x":93.491,"y":1.521,"w":0.154,"h":1.337,"clr":-1},{"oc":"#231f20","x":93.83,"y":1.521,"w":0.411,"h":1.337,"clr":-1},{"oc":"#231f20","x":94.425,"y":1.521,"w":0.154,"h":1.337,"clr":-1}],"Texts":[{"oc":"#231f20","x":68.686,"y":17.333,"w":12.645399999999999,"clr":-1,"A":"left","R":[{"T":"Attach%20a%20copy%20of%20your%202013","S":-1,"TS":[0,13.9661,1,0]}]},{"oc":"#231f20","x":4.943,"y":32.035,"w":0.8540000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":4.614,"y":21.814,"w":0.5533,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":5.598,"y":21.814,"w":0.27530000000000004,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":6.778,"y":21.814,"w":11.0006,"clr":-1,"A":"left","R":[{"T":"Federal%20taxable%20income","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":21.482,"y":21.814,"w":26.0441,"clr":-1,"A":"left","R":[{"T":"from%20line%2043%20of%20Form%201040%2C%20line%2027%20of%20Form%201040A%2C","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.048,"y":22.426,"w":1.698,"clr":-1,"A":"left","R":[{"T":"or%20l","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":9.351,"y":22.426,"w":11.5005,"clr":-1,"A":"left","R":[{"T":"ine%206%20of%20Form%201040EZ%20","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":4.183,"y":15.457999999999998,"w":1.0072,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":6.267,"y":16.056,"w":9.1408,"clr":-1,"A":"left","R":[{"T":"on%20federal%20return%3A","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":4.142,"y":18.113,"w":1.0094,"clr":-1,"A":"left","R":[{"T":"B.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":5.699,"y":18.113,"w":10.549400000000002,"clr":-1,"A":"left","R":[{"T":"%20School%20district%20code%3A","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":37.662,"y":18.102,"w":1.0826,"clr":-1,"A":"left","R":[{"T":"C.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":39.613,"y":18.102,"w":10.5059,"clr":-1,"A":"left","R":[{"T":"Income%20source%20code%3A","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":4.173,"y":20.048,"w":0.7316,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":5.312,"y":20.048,"w":0.3706,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":6.153,"y":20.048,"w":15.292999999999997,"clr":-1,"A":"left","R":[{"T":"Federal%20adjusted%20gross%20income%20","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":25.668,"y":20.048,"w":26.019599999999986,"clr":-1,"A":"left","R":[{"T":"from%20line%2037%20of%20Form%201040%2C%20line%2021%20of%20Form%201040A%2C","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":3.639,"y":20.664,"w":14.653199999999996,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20or%20line%204%20of%20Form%201040EZ","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":4.871,"y":24.331,"w":0.8540000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":7.317,"y":24.331,"w":0.5659000000000001,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":8.078,"y":24.331,"w":23.806700000000003,"clr":-1,"A":"left","R":[{"T":"ump-sum%20distribution%20from%20Federal%20Form%204972","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":4.87,"y":25.123,"w":0.8540000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":7.317,"y":25.122,"w":1.6759,"clr":-1,"A":"left","R":[{"T":"Adj","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":9.599,"y":25.122,"w":26.312299999999997,"clr":-1,"A":"left","R":[{"T":"ustment%20for%20loss%20from%20an%20S%20corporation%20that%20elected","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":4.687,"y":28.999,"w":0.8540000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":7.154,"y":28.999,"w":0.6244999999999999,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.996,"y":28.999,"w":19.298,"clr":-1,"A":"left","R":[{"T":"otal%20additions.%20Add%20lines%202%20through%204b","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":4.401,"y":33.088,"w":1.1420000000000001,"clr":-1,"A":"left","R":[{"T":"%208.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":4.748,"y":34.787,"w":0.8540000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":3.795,"y":35.87,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":3.7,"y":36.93,"w":1.7080000000000002,"clr":-1,"A":"left","R":[{"T":"11.%20","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":3.711,"y":38.734,"w":1.4203000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":7.063,"y":39.331,"w":5.458399999999999,"clr":-1,"A":"left","R":[{"T":"exclusion%20%20","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":3.917,"y":44.597,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":7.37,"y":44.598,"w":0.6239,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":8.201,"y":44.598,"w":11.927600000000002,"clr":-1,"A":"left","R":[{"T":"otal%20other%20subtractions%20","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":3.7720000000000002,"y":46.973,"w":1.4146,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":6.679,"y":46.973,"w":14.288599999999995,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20taxable%20income.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":24.534,"y":46.973,"w":15.159600000000001,"clr":-1,"A":"left","R":[{"T":"%20Subtract%20line%2017%20from%20line%206.%20%20","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":40.431,"y":46.973,"w":11.419000000000002,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20zero%2C%20enter%200","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":6.668,"y":31.287999999999997,"w":6.056799999999999,"clr":-1,"A":"left","R":[{"T":"Subtractions","S":-1,"TS":[0,11.9625,1,0]}]},{"oc":"#231f20","x":4.296,"y":13.487,"w":0.9602,"clr":-1,"A":"left","R":[{"T":"Ci","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":5.311,"y":13.487,"w":0.3881,"clr":-1,"A":"left","R":[{"T":"t","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":5.722,"y":13.487,"w":0.5861,"clr":-1,"A":"left","R":[{"T":"y","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":44.214,"y":13.387,"w":2.669,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":51.321,"y":13.432,"w":4.4008,"clr":-1,"A":"left","R":[{"T":"ZIP%20code","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":89.701,"y":12.788,"w":4.882,"clr":-1,"A":"left","R":[{"T":"Extension","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":88.485,"y":4.427,"w":2.2324,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,25.9401,1,0]}]},{"oc":"#231f20","x":3.7720000000000002,"y":40.464,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":3.7720000000000002,"y":42.189,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":3.9160000000000004,"y":45.74,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":4.686,"y":26.807,"w":0.8500000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":7.097,"y":26.807,"w":1.395,"clr":-1,"A":"left","R":[{"T":"a.%20","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":8.989,"y":26.807,"w":30.541099999999993,"clr":-1,"A":"left","R":[{"T":"Planned%20gift%20or%20endowment%20tax%20credit%20adjustment%20to%20income","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":62.083,"y":7.657,"w":4.8298000000000005,"clr":-1,"A":"left","R":[{"T":"Deceased","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":61.98,"y":9.136,"w":4.8298000000000005,"clr":-1,"A":"left","R":[{"T":"Deceased","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":80.096,"y":7.564,"w":1.2246,"clr":-1,"A":"left","R":[{"T":"Yo","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":81.348,"y":7.564,"w":12.7895,"clr":-1,"A":"left","R":[{"T":"ur%20social%20security%20number","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":80.178,"y":28.932,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":51.454,"y":10.611,"w":2.845,"clr":-1,"A":"left","R":[{"T":"Apt%20N","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":54.341,"y":10.611,"w":0.9885999999999999,"clr":-1,"A":"left","R":[{"T":"o.","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":80.506,"y":45.789,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":4.902,"y":30.078,"w":0.8540000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":80.24,"y":30.015,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":3.9880000000000004,"y":43.361,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":6.599,"y":27.815,"w":1.7516000000000003,"clr":-1,"A":"left","R":[{"T":"%20b.%20","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":71.038,"y":9.158,"w":7.0059,"clr":-1,"A":"left","R":[{"T":"Date%20of%20death","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":69.353,"y":18.079,"w":11.858000000000002,"clr":-1,"A":"left","R":[{"T":"federal%20income%20tax%20return","S":-1,"TS":[0,13.9661,1,0]}]},{"oc":"#231f20","x":5.436,"y":4.401,"w":2.6175,"clr":-1,"A":"left","R":[{"T":"ND-1%20","S":-1,"TS":[0,25.9401,1,0]}]},{"oc":"#231f20","x":17.183,"y":4.401,"w":13.373399999999998,"clr":-1,"A":"left","R":[{"T":"Individual%20income%20tax%20return","S":-1,"TS":[0,25.9401,1,0]}]},{"oc":"#231f20","x":19.521,"y":2.862,"w":23.833500000000008,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":-1,"TS":[0,14.9738,0,0]}]},{"oc":"#231f20","x":4.162,"y":6.772,"w":19.055600000000005,"clr":-1,"A":"left","R":[{"T":"Please%20type%20or%20print%20in%20black%20or%20blue%20ink.","S":-1,"TS":[0,10.9586,1,0]}]},{"oc":"#231f20","x":56.722,"y":6.122,"w":13.087000000000002,"clr":-1,"A":"left","R":[{"T":"If%20a%20fiscal%20year%20filer%2C%20enter","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":56.722,"y":6.716,"w":8.456800000000001,"clr":-1,"A":"left","R":[{"T":"fiscal%20year%20end%3A%20%20","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":65.831,"y":6.716,"w":7.202,"clr":-1,"A":"left","R":[{"T":"(See%20page%2011)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":32.438,"y":7.555,"w":1.2636,"clr":-1,"A":"left","R":[{"T":"MI","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":40.725,"y":7.586,"w":1.1576,"clr":-1,"A":"left","R":[{"T":"La","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":41.929,"y":7.586,"w":4.0686,"clr":-1,"A":"left","R":[{"T":"st%20name","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":4.419,"y":7.579000000000001,"w":8.259400000000001,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":32.281,"y":9.088,"w":1.2624,"clr":-1,"A":"left","R":[{"T":"MI","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":40.732,"y":9.067,"w":5.2208000000000006,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":4.296,"y":9.114,"w":17.292199999999994,"clr":-1,"A":"left","R":[{"T":"If%20joint%20return%2C%20spouse's%20first%20name","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":80.096,"y":9.099,"w":16.151,"clr":-1,"A":"left","R":[{"T":"Spouse's%20social%20security%20number","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":4.42,"y":10.563,"w":8.176,"clr":-1,"A":"left","R":[{"T":"Mailing%20address","S":-1,"TS":[0,8.951,0,0]}]},{"oc":"#231f20","x":64.681,"y":10.76,"w":0.5707000000000001,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":5.764,"y":15.457999999999998,"w":9.0529,"clr":-1,"A":"left","R":[{"T":"%20Filing%20status%20used","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.202,"y":16.653,"w":8.209000000000001,"clr":-1,"A":"left","R":[{"T":"(Fill%20in%20only%20one)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":45.227,"y":16.937,"w":10.626999999999997,"clr":-1,"A":"left","R":[{"T":"with%20dependent%20child","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":22.594,"y":22.426,"w":18.53,"clr":-1,"A":"left","R":[{"T":"(If%20zero%2C%20see%20page%2012%20of%20instructions)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.269,"y":25.735,"w":20.1234,"clr":-1,"A":"left","R":[{"T":"taxation%20under%20N.D.C.C.%20%C2%A7%2057-38-01.35","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":8.989,"y":27.815,"w":27.8802,"clr":-1,"A":"left","R":[{"T":"Housing%20incentive%20fund%20tax%20credit%20adjustment%20to%20income","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.305,"y":33.088,"w":18.020599999999998,"clr":-1,"A":"left","R":[{"T":"Net%20long-term%20capital%20gain%20exclusion","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.377,"y":33.686,"w":22.525999999999996,"clr":-1,"A":"left","R":[{"T":"(From%20worksheet%20on%20page%2013%20of%20instructions)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.052,"y":37.525,"w":20.138200000000005,"clr":-1,"A":"left","R":[{"T":"taxation%20under%20N.D.C.C.%20%C2%A7%2057-38-01.35","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.034,"y":38.735,"w":28.950000000000003,"clr":-1,"A":"left","R":[{"T":"National%20Guard%2FReserve%20member%20federal%20active%20duty%20pay","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":13.159,"y":39.332,"w":15.821999999999997,"clr":-1,"A":"left","R":[{"T":"(Attach%20copy%20of%20Title%2010%20orders)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.096,"y":40.464,"w":31.957000000000015,"clr":-1,"A":"left","R":[{"T":"Nonresident%20only%3A%20Servicemembers%20Civil%20Relief%20Act%20adjustment","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.223,"y":41.061,"w":36.04499999999999,"clr":-1,"A":"left","R":[{"T":"(Attach%20copy%20of%20Form%20W-2%20showing%20this%20compensation)%20(Not%20Supported)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.182,"y":42.189,"w":16.128999999999994,"clr":-1,"A":"left","R":[{"T":"College%20SAVE%20account%20deduction","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.387,"y":43.361,"w":14.007000000000001,"clr":-1,"A":"left","R":[{"T":"Qualified%20dividend%20exclusion","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":21.131,"y":44.597,"w":13.369,"clr":-1,"A":"left","R":[{"T":"(Attach%20Schedule%20ND-1SA)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":6.399,"y":45.74,"w":21.726600000000005,"clr":-1,"A":"left","R":[{"T":"%20%20Total%20subtractions.%20Add%20lines%207%20through%2016","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":76.46,"y":20.63,"w":3.2731,"clr":-1,"A":"left","R":[{"T":"(SX)%20%20D","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":76.42,"y":22.591,"w":3.0763,"clr":-1,"A":"left","R":[{"T":"(SS)%20%201","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":53.19,"y":24.268,"w":3.1961000000000004,"clr":-1,"A":"left","R":[{"T":"(NA)%20%202","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":53.211,"y":25.623,"w":3.1947,"clr":-1,"A":"left","R":[{"T":"(NB)%20%203","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":52.266,"y":26.747,"w":3.7380000000000004,"clr":-1,"A":"left","R":[{"T":"(NK)%20%204a","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":52.349,"y":27.823,"w":3.7436,"clr":-1,"A":"left","R":[{"T":"(AP)%20%204b","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":53.407,"y":31.968000000000004,"w":3.1362,"clr":-1,"A":"left","R":[{"T":"(SN)%20%207","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":53.252,"y":33.563,"w":3.2009999999999996,"clr":-1,"A":"left","R":[{"T":"(NC)%20%208","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":53.366,"y":34.724,"w":2.9758,"clr":-1,"A":"left","R":[{"T":"(S4)%20%209","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":53.058,"y":35.938,"w":3.2412000000000005,"clr":-1,"A":"left","R":[{"T":"(S5)%2010","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":52.935,"y":37.525,"w":3.2412000000000005,"clr":-1,"A":"left","R":[{"T":"(S6)%2011","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":52.903,"y":39.25,"w":3.0231,"clr":-1,"A":"left","R":[{"T":"(NI)%2012","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":53.12,"y":41.166,"w":3.3010999999999995,"clr":-1,"A":"left","R":[{"T":"(NJ)%2013","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":52.842,"y":42.248,"w":3.4670999999999994,"clr":-1,"A":"left","R":[{"T":"(AA)%2014","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":52.76,"y":43.413,"w":3.5538999999999996,"clr":-1,"A":"left","R":[{"T":"(AO)%2015","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":52.966,"y":44.582,"w":3.4664,"clr":-1,"A":"left","R":[{"T":"(AB)%2016","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":76.668,"y":46.957,"w":3.4664,"clr":-1,"A":"left","R":[{"T":"(ND)%2018","S":-1,"TS":[0,9.954799999999999,1,0]}]},{"oc":"#231f20","x":20.224,"y":18.108,"w":7.202,"clr":-1,"A":"left","R":[{"T":"(See%20page%2019)","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":72.161,"y":11.462,"w":21.071399999999997,"clr":-1,"A":"left","R":[{"T":"Amended%20return%3AGeneral%20(Not%20Supported)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":6.514,"y":23.633,"w":4.577699999999999,"clr":-1,"A":"left","R":[{"T":"Additions","S":-1,"TS":[0,11.9625,1,0]}]},{"oc":"#231f20","x":5.436,"y":2.862,"w":2.5751999999999997,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,14.9738,0,0]}]},{"oc":"#231f20","x":65.484,"y":10.76,"w":11.568900000000001,"clr":-1,"A":"left","R":[{"T":"ill%20in%20only%20if%20applicable%3A%20","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":77.701,"y":10.76,"w":7.2904,"clr":-1,"A":"left","R":[{"T":"(See%20page%2011)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":69.566,"y":12.095,"w":23.125000000000004,"clr":-1,"A":"left","R":[{"T":"Amended%20return%3AFederal%20NOL%20(Not%20supported)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":63.121,"y":15.831,"w":7.202,"clr":-1,"A":"left","R":[{"T":"(See%20page%2011)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":63.121,"y":15.234,"w":17.716699999999996,"clr":-1,"A":"left","R":[{"T":"MN%2FMT%20Reciprocity%20(Not%20Supported)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":39.634,"y":18.699,"w":7.202,"clr":-1,"A":"left","R":[{"T":"(See%20page%2011)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":21.498,"y":17.135,"w":0.9972000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":22.862,"y":17.135,"w":12.115,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":21.498,"y":15.462,"w":1.0004,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":22.866,"y":15.462,"w":3.0852000000000004,"clr":-1,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":21.498,"y":16.291,"w":0.9972000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":23.387,"y":16.291,"w":10.0122,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":43.269,"y":15.524999999999999,"w":0.9984,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":45.16,"y":15.524999999999999,"w":9.347399999999999,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":43.269,"y":16.321,"w":0.998,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":45.19,"y":16.321,"w":10.446,"clr":-1,"A":"left","R":[{"T":"Qualifying%20widow(er)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.37,"y":30.078,"w":8.9095,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%205","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.411,"y":32.035,"w":15.230000000000004,"clr":-1,"A":"left","R":[{"T":"Interest%20from%20U.S.%20obligations","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.161,"y":34.787,"w":22.991,"clr":-1,"A":"left","R":[{"T":"Exempt%20income%20of%20an%20eligible%20Native%20American","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.247,"y":35.87,"w":27.982400000000002,"clr":-1,"A":"left","R":[{"T":"Benefits%20received%20from%20U.S.%20Railroad%20Retirement%20Board","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":7.132,"y":36.931,"w":29.730599999999995,"clr":-1,"A":"left","R":[{"T":"Adjustment%20for%20income%20from%20an%20S%20corporation%20that%20elected","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":88.901,"y":15.196,"w":11.4059,"clr":-1,"A":"left","R":[{"T":"State%20(Not%20Supported)","S":-1,"TS":[0,10.9586,0,0]}]},{"oc":"#231f20","x":70.935,"y":7.59,"w":7.0059,"clr":-1,"A":"left","R":[{"T":"Date%20of%20death","S":-1,"TS":[0,8.951,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ENDDAT","EN":0},"TI":0,"AM":0,"x":79.015,"y":6.561,"w":21.612,"h":0.886,"TU":"If fiscal year end filer, enter fiscal year end: (See page 11).","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":1,"AM":0,"x":4.419,"y":8.403,"w":27.354,"h":0.912,"TU":"Your first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":2,"AM":0,"x":32.762,"y":8.409,"w":2.346,"h":0.833,"TU":"Middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":3,"AM":0,"x":35.801,"y":8.377,"w":23.077,"h":0.867,"TU":"Last name."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOD","EN":0},"TI":5,"AM":0,"x":70.226,"y":8.521,"w":9.161,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":6,"AM":0,"x":80.062,"y":8.494,"w":21.231,"h":0.833,"TU":"Your social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":7,"AM":0,"x":4.395,"y":10.014,"w":27.428,"h":0.833,"TU":"If joint return, spouse's first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":8,"AM":0,"x":32.917,"y":9.983,"w":2.256,"h":0.833,"TU":"Middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":9,"AM":0,"x":35.891,"y":9.851,"w":23.167,"h":0.916,"TU":"Last name."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOD","EN":0},"TI":11,"AM":0,"x":70.362,"y":9.998,"w":9.161,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":12,"AM":0,"x":80.286,"y":10.011,"w":20.857,"h":0.833,"TU":"Spouse's social security number*"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":13,"AM":0,"x":4.038,"y":11.519,"w":47.304,"h":0.834,"TU":"Mailing address_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":15,"AM":0,"x":4.163,"y":12.847,"w":47.005,"h":0.859,"TU":"Mailing address 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APTNO","EN":0},"TI":16,"AM":0,"x":51.693,"y":12.825,"w":9.645,"h":0.833,"TU":"Apt No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":19,"AM":0,"x":4.419,"y":14.357,"w":39.332,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":20,"AM":0,"x":44.503,"y":14.29,"w":6.088,"h":0.871,"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":21,"AM":0,"x":51.706,"y":14.256,"w":9.769,"h":0.885,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RECSTATE","EN":0},"TI":28,"AM":1024,"x":93.676,"y":16.061,"w":5.417,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NDSchCode"}},"id":{"Id":"Look_Up","EN":0},"TI":29,"AM":0,"x":6.448,"y":18.901,"w":5.562,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCHID1","EN":0},"TI":30,"AM":0,"x":20.717,"y":19.094,"w":4.755,"h":0.833,"TU":"Line B. School district code.","MV":"99"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCHID2","EN":0},"TI":31,"AM":0,"x":27.959,"y":19.075,"w":6.291,"h":0.833,"TU":"School district code continued.","MV":"999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INCSRC","EN":0},"TI":32,"AM":0,"x":54.66,"y":18.952,"w":4.292,"h":0.833,"PL":{"V":[" ","1 Farming, ranching, or agricultural production","2 Retail, wholesale trade, and eating and drinking places","3 Federal, state, county, or city government service","4 Public or private education","5 Accounting, legal, health, motel, and other personal or professional services not classified elsewhere","6 Construction","7 Manufacturing","8 Transportation, communication, and public utilities","9 Exploration, development, and extraction of coal, oil, and natural gas","10 Banking, insurance, real estate, and other financial services","11 Military service","12 Retirement (Pensions, annuities, IRAs, etc.)"],"D":["no entry","1","2","3","4","5","6","7","8","9","10","11","12"]}},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"popup:fedattach"}},"id":{"Id":"Fed_Attach","EN":0},"TI":33,"AM":0,"x":65.644,"y":20.515,"w":6.311,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDAGI","EN":0},"TI":34,"AM":1024,"x":82.19,"y":20.491,"w":18.55,"h":0.885,"TU":"D. Federal adjusted gross income from line 37 of Form 1040, line 21 of Form 1040A or line 4 of From 1040EZ."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDINC","EN":0},"TI":35,"AM":16,"x":82.116,"y":22.414,"w":18.7,"h":0.886,"TU":"1. Federal taxable income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LUMPSUM","EN":0},"TI":36,"AM":0,"x":59.078,"y":24.153,"w":18.176,"h":0.886,"TU":"Line 2. Lump-sum distribution from Federal Form 4972."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PASSLOSS","EN":0},"TI":37,"AM":0,"x":59.153,"y":25.626,"w":18.251,"h":0.833,"TU":"Line 3. Adjustment for loss from an S corporation that elected taxation under the N.D.C.C. Section 7-38-01.35."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PGCRDADJ","EN":0},"TI":38,"AM":0,"x":59.377,"y":26.744,"w":17.868,"h":0.838,"TU":"Planned gift or endowment tax credit adjustment to income Line 4a. Planned gift or endowment tax credit adjustment to income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOUSECR","EN":0},"TI":39,"AM":0,"x":59.258,"y":27.755,"w":18.026,"h":0.903,"TU":"Housing incentive fund tax credit adjustment to income Line 4b. Housing incentive fund tax credit adjustment to income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTINC","EN":0},"TI":40,"AM":1024,"x":81.925,"y":28.944,"w":18.741,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTLADD","EN":0},"TI":41,"AM":1024,"x":82.149,"y":29.954,"w":18.666,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTUSOBL","EN":0},"TI":42,"AM":0,"x":58.986,"y":31.916,"w":18.625,"h":0.858,"TU":"Line 7. Interest from U.S. Obligations."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CAPGAIN","EN":0},"TI":43,"AM":0,"x":58.986,"y":33.541,"w":18.475,"h":0.858,"TU":"Line 8. Net long-term capital gain exclusion."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NAEXEINC","EN":0},"TI":44,"AM":0,"x":59.061,"y":34.717,"w":18.4,"h":0.858,"TU":"Line 9. Exempt income from an eligible Native American."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RRBBEN","EN":0},"TI":45,"AM":0,"x":59.211,"y":35.888,"w":18.251,"h":0.872,"TU":"Line 10. Benefits received from U.S. Railroad Retirement Board."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PASSINC","EN":0},"TI":46,"AM":0,"x":59.189,"y":37.392,"w":18.325,"h":0.966,"TU":"Line 11. Adjustment for income from and S corporation that elected taxation under N.D.C.C. Section 7-38-01.35."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NIAMNT","EN":0},"TI":47,"AM":0,"x":58.911,"y":39.163,"w":18.55,"h":0.938,"TU":"Line 12. National Guard/Reserve member federal active duty pay exclusion (Attach copy of Title 10 orders)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NRSVCMBR","EN":0},"TI":48,"AM":1024,"x":58.911,"y":41.066,"w":18.7,"h":0.938,"TU":"NJ) 13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SAVEACCT","EN":0},"TI":49,"AM":0,"x":59.136,"y":42.243,"w":18.475,"h":0.833,"TU":"Line 14. College SAVE account deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVD","EN":0},"TI":50,"AM":0,"x":59.319,"y":43.305,"w":18.251,"h":0.913,"TU":"Line 15. Qualified dividend exclusion."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ND1SA"}},"id":{"Id":"Add_ND_1SA","EN":0},"TI":51,"AM":0,"x":46.276,"y":44.415,"w":6.386,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBNS","EN":0},"TI":52,"AM":1024,"x":59.469,"y":44.482,"w":18.026,"h":0.886,"TU":"16. Total other subtractions (Attach Schedule ND-1SA"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTSUBNS","EN":0},"TI":53,"AM":1024,"x":83.274,"y":45.754,"w":18.4,"h":0.833,"TU":"17. Total subtractions. Add lines 7 through 16 "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXINC","EN":0},"TI":54,"AM":1024,"x":83.327,"y":46.898,"w":18.251,"h":0.844,"TU":"18. North Dakota taxable income. Subtract line 17 from line 6. If less than zero, enter 0 . . . . . . . . . . . . . . . . . . . (ND) 18"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPDECD","EN":0},"TI":4,"AM":0,"x":64.854,"y":8.468,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDECD","EN":0},"TI":10,"AM":0,"x":64.976,"y":9.948,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOLX","EN":0},"TI":14,"AM":1024,"x":98.059,"y":12.224,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GENX","EN":0},"TI":17,"AM":1024,"x":98.109,"y":11.521,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"AMENDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RXE","EN":0},"TI":18,"AM":0,"x":98.183,"y":12.972,"w":1.821,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":22,"AM":0,"x":19.845,"y":15.629,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":23,"AM":0,"x":41.637,"y":15.678,"w":1.597,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":24,"AM":0,"x":19.87,"y":16.455,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":25,"AM":0,"x":41.691,"y":16.514,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":26,"AM":0,"x":19.85,"y":17.291,"w":1.597,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MNMT","EN":0},"TI":27,"AM":1024,"x":76.516,"y":16.01,"w":1.821,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#231f20","x":59.719,"y":15.844,"w":1.6215,"l":18.582},{"oc":"#231f20","x":82.857,"y":25.944,"w":1.6215,"l":18.582},{"oc":"#231f20","x":17.059,"y":35.387,"w":1.6215,"l":16.093},{"oc":"#231f20","x":44.844,"y":35.353,"w":1.6215,"l":16.103},{"dsh":1,"clr":1,"x":33.792,"y":22.2,"w":0.09,"l":42.144},{"dsh":1,"oc":"#231f20","x":33.792,"y":22.2,"w":0.09,"l":42.144},{"oc":"#231f20","x":3.961,"y":41.367,"w":1.08,"l":36.049},{"oc":"#231f20","x":3.961,"y":42.708,"w":1.08,"l":36.049},{"oc":"#231f20","x":39.876,"y":41.36,"w":1.08,"l":7.974},{"oc":"#231f20","x":39.876,"y":42.704,"w":1.08,"l":7.974},{"oc":"#231f20","x":47.654,"y":41.367,"w":1.08,"l":16.186},{"oc":"#231f20","x":47.654,"y":42.674,"w":1.08,"l":16.186},{"oc":"#231f20","x":3.982,"y":42.663,"w":1.08,"l":36.049},{"oc":"#231f20","x":3.982,"y":44.011,"w":1.08,"l":36.049},{"oc":"#231f20","x":47.512,"y":44.016,"w":1.08,"l":16.093},{"oc":"#231f20","x":55.629,"y":45.371,"w":1.08,"l":8.047},{"oc":"#231f20","x":3.961,"y":44.026,"w":1.08,"l":37.165},{"oc":"#231f20","x":3.961,"y":45.367,"w":1.08,"l":37.165},{"dsh":1,"clr":1,"x":54.761,"y":4.392,"w":0.09,"l":23.716},{"dsh":1,"oc":"#231f20","x":54.761,"y":4.392,"w":0.09,"l":23.716},{"dsh":1,"clr":1,"x":39.163,"y":12.054,"w":0.09,"l":11.807},{"dsh":1,"oc":"#231f20","x":39.163,"y":12.054,"w":0.09,"l":11.807},{"dsh":1,"clr":1,"x":62.405,"y":17.82,"w":0.09,"l":13.542},{"dsh":1,"oc":"#231f20","x":62.405,"y":17.82,"w":0.09,"l":13.542},{"dsh":1,"clr":1,"x":46.704,"y":24.814,"w":0.09,"l":29.439},{"dsh":1,"oc":"#231f20","x":46.704,"y":24.814,"w":0.09,"l":29.439},{"dsh":1,"clr":1,"x":56.31,"y":25.922,"w":0.09,"l":19.936},{"dsh":1,"oc":"#231f20","x":56.31,"y":25.922,"w":0.09,"l":19.936},{"dsh":1,"clr":1,"x":29.144,"y":34.26,"w":0.09,"l":46.678},{"dsh":1,"oc":"#231f20","x":29.144,"y":34.26,"w":0.09,"l":46.678},{"oc":"#231f20","x":3.321,"y":40.533,"w":1.08,"l":99.141},{"oc":"#231f20","x":63.758,"y":41.367,"w":1.6215,"l":38.714},{"dsh":1,"clr":1,"x":63.024,"y":28.87,"w":0.09,"l":13.624},{"dsh":1,"oc":"#231f20","x":63.024,"y":28.87,"w":0.09,"l":13.624},{"dsh":1,"clr":1,"x":49.803,"y":39.41,"w":0.09,"l":2.19},{"dsh":1,"oc":"#231f20","x":49.803,"y":39.41,"w":0.09,"l":2.19},{"dsh":1,"clr":1,"x":26.871,"y":10.616,"w":0.09,"l":24.099},{"dsh":1,"oc":"#231f20","x":26.871,"y":10.616,"w":0.09,"l":24.099},{"oc":"#231f20","x":63.758,"y":42.674,"w":1.6215,"l":38.714},{"oc":"#231f20","x":47.747,"y":45.345,"w":1.08,"l":15.979},{"oc":"#231f20","x":47.747,"y":46.693,"w":1.08,"l":15.979},{"oc":"#231f20","x":3.961,"y":45.341,"w":1.08,"l":43.796},{"oc":"#231f20","x":3.961,"y":46.686,"w":1.08,"l":43.796},{"dsh":1,"clr":1,"x":34.928,"y":16.806,"w":0.09,"l":44.323},{"dsh":1,"oc":"#231f20","x":34.928,"y":16.806,"w":0.09,"l":44.323},{"dsh":1,"clr":1,"x":14.889,"y":14.916,"w":0.09,"l":36.174},{"dsh":1,"oc":"#231f20","x":14.889,"y":14.916,"w":0.09,"l":36.174},{"oc":"#231f20","x":82.722,"y":4.497,"w":1.6215,"l":18.582},{"oc":"#231f20","x":59.853,"y":10.721,"w":1.6215,"l":18.582},{"oc":"#231f20","x":59.822,"y":12.039,"w":1.6215,"l":18.572},{"oc":"#231f20","x":82.764,"y":35.297,"w":1.6215,"l":18.582},{"dsh":1,"clr":1,"x":70.761,"y":35.267,"w":0.09,"l":9.049},{"dsh":1,"oc":"#231f20","x":70.761,"y":35.267,"w":0.09,"l":9.049},{"oc":"#231f20","x":82.784,"y":34.324,"w":1.6215,"l":18.582},{"oc":"#231f20","x":59.925,"y":39.455,"w":1.6215,"l":18.583},{"oc":"#231f20","x":82.753,"y":38.422,"w":1.6215,"l":18.572},{"oc":"#231f20","x":82.764,"y":36.815,"w":1.6215,"l":18.582},{"dsh":1,"clr":1,"x":35.651,"y":38.355,"w":0.09,"l":43.383},{"dsh":1,"oc":"#231f20","x":35.651,"y":38.355,"w":0.09,"l":43.383},{"oc":"#231f20","x":82.836,"y":28.915,"w":1.6215,"l":18.582},{"oc":"#231f20","x":33.255,"y":27.736,"w":1.6215,"l":9.906},{"oc":"#231f20","x":62.818,"y":27.736,"w":1.6215,"l":9.906},{"oc":"#231f20","x":82.857,"y":27.736,"w":1.6215,"l":18.582},{"oc":"#231f20","x":82.722,"y":24.915,"w":1.6215,"l":18.582},{"oc":"#231f20","x":82.774,"y":22.331,"w":1.6215,"l":18.582},{"oc":"#231f20","x":59.822,"y":21.362,"w":1.6215,"l":18.572},{"oc":"#231f20","x":59.822,"y":19.852,"w":1.6215,"l":18.572},{"oc":"#231f20","x":82.857,"y":17.91,"w":1.6215,"l":18.582},{"oc":"#231f20","x":82.857,"y":16.825,"w":1.6215,"l":18.582},{"oc":"#231f20","x":59.853,"y":14.853,"w":1.6215,"l":18.582},{"oc":"#231f20","x":59.853,"y":13.451,"w":1.6215,"l":18.582},{"dsh":1,"clr":1,"x":39.37,"y":15.78,"w":0.09,"l":12.168},{"dsh":1,"oc":"#231f20","x":39.37,"y":15.78,"w":0.09,"l":12.168},{"oc":"#231f20","x":32.635,"y":36.908,"w":1.6215,"l":9.906},{"oc":"#231f20","x":61.826,"y":36.908,"w":1.6215,"l":9.906},{"dsh":1,"clr":1,"x":77.382,"y":36.818,"w":0.09,"l":2.407},{"dsh":1,"oc":"#231f20","x":77.382,"y":36.818,"w":0.09,"l":2.407},{"dsh":1,"clr":1,"x":21.294,"y":13.421,"w":0.09,"l":29.769},{"dsh":1,"oc":"#231f20","x":21.294,"y":13.421,"w":0.09,"l":29.769},{"oc":"#231f20","x":82.764,"y":8.276,"w":1.6215,"l":18.582},{"oc":"#231f20","x":39.876,"y":42.667,"w":1.08,"l":7.809},{"oc":"#231f20","x":39.876,"y":44.011,"w":1.08,"l":7.809},{"oc":"#231f20","x":48.15,"y":30.963,"w":1.6215,"l":23.541},{"dsh":1,"clr":1,"x":77.692,"y":27.653,"w":0.09,"l":2.407},{"dsh":1,"oc":"#231f20","x":77.692,"y":27.653,"w":0.09,"l":2.407},{"dsh":1,"clr":1,"x":63.231,"y":8.133,"w":0.09,"l":12.602},{"dsh":1,"oc":"#231f20","x":63.231,"y":8.133,"w":0.09,"l":12.602},{"oc":"#231f20","x":48.15,"y":30.046,"w":1.6215,"l":18.582},{"clr":1,"x":3.94,"y":1.394,"w":0.09,"l":4.318},{"clr":1,"x":3.94,"y":2.964,"w":0.09,"l":4.318},{"oc":"#231f20","x":4.56,"y":1.62,"w":3.243,"l":3.088},{"clr":1,"x":97.514,"y":1.394,"w":0.09,"l":4.318},{"clr":1,"x":97.514,"y":2.964,"w":0.09,"l":4.318},{"oc":"#231f20","x":98.134,"y":1.62,"w":3.243,"l":3.088},{"clr":1,"x":3.94,"y":46.689,"w":0.09,"l":4.318},{"clr":1,"x":3.94,"y":48.26,"w":0.09,"l":4.318},{"oc":"#231f20","x":4.56,"y":48.038,"w":3.243,"l":3.088},{"clr":1,"x":97.514,"y":46.689,"w":0.09,"l":4.318},{"clr":1,"x":97.514,"y":48.26,"w":0.09,"l":4.318},{"oc":"#231f20","x":98.134,"y":48.038,"w":3.243,"l":3.088},{"clr":1,"x":78.301,"y":1.282,"w":0.09,"l":18.572},{"clr":1,"x":78.301,"y":3.077,"w":0.09,"l":18.572},{"clr":1,"x":78.301,"y":1.503,"w":0.09,"l":18.572},{"clr":1,"x":78.301,"y":2.852,"w":0.09,"l":18.572},{"oc":"#231f20","x":80.006,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":80.006,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":80.347,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":80.347,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":80.698,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":80.698,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":81.039,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":81.039,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":81.638,"y":1.503,"w":0.09,"l":0.413},{"oc":"#231f20","x":81.638,"y":2.852,"w":0.09,"l":0.413},{"oc":"#231f20","x":82.495,"y":1.503,"w":0.09,"l":0.413},{"oc":"#231f20","x":82.495,"y":2.852,"w":0.09,"l":0.413},{"oc":"#231f20","x":83.094,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":83.094,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":83.435,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":83.435,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.034,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.034,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.375,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.375,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.974,"y":1.503,"w":0.09,"l":0.423},{"oc":"#231f20","x":84.974,"y":2.852,"w":0.09,"l":0.423},{"oc":"#231f20","x":85.573,"y":1.503,"w":0.09,"l":0.423},{"oc":"#231f20","x":85.573,"y":2.852,"w":0.09,"l":0.423},{"oc":"#231f20","x":86.183,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":86.183,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":86.524,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":86.524,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":86.864,"y":1.503,"w":0.09,"l":0.413},{"oc":"#231f20","x":86.864,"y":2.852,"w":0.09,"l":0.413},{"oc":"#231f20","x":87.464,"y":1.503,"w":0.09,"l":0.413},{"oc":"#231f20","x":87.464,"y":2.852,"w":0.09,"l":0.413},{"oc":"#231f20","x":88.321,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":88.321,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":88.92,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":88.92,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":89.261,"y":1.503,"w":0.09,"l":0.423},{"oc":"#231f20","x":89.261,"y":2.852,"w":0.09,"l":0.423},{"oc":"#231f20","x":90.118,"y":1.503,"w":0.09,"l":0.423},{"oc":"#231f20","x":90.118,"y":2.852,"w":0.09,"l":0.423},{"oc":"#231f20","x":90.717,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":90.717,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":91.058,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":91.058,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":91.668,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":91.668,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":92.008,"y":1.503,"w":0.09,"l":0.413},{"oc":"#231f20","x":92.008,"y":2.852,"w":0.09,"l":0.413},{"oc":"#231f20","x":92.866,"y":1.503,"w":0.09,"l":0.413},{"oc":"#231f20","x":92.866,"y":2.852,"w":0.09,"l":0.413},{"oc":"#231f20","x":93.465,"y":1.503,"w":0.09,"l":0.155},{"oc":"#231f20","x":93.465,"y":2.852,"w":0.09,"l":0.155},{"oc":"#231f20","x":94.064,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":94.064,"y":2.852,"w":0.09,"l":0.165},{"oc":"#231f20","x":94.405,"y":1.503,"w":0.09,"l":0.423},{"oc":"#231f20","x":94.405,"y":2.852,"w":0.09,"l":0.423},{"oc":"#231f20","x":95.004,"y":1.503,"w":0.09,"l":0.165},{"oc":"#231f20","x":95.004,"y":2.852,"w":0.09,"l":0.165}],"VLines":[{"oc":"#231f20","x":3.961,"y":41.367,"w":1.08,"l":1.341},{"oc":"#231f20","x":40.01,"y":41.367,"w":1.08,"l":1.341},{"oc":"#231f20","x":39.876,"y":41.36,"w":1.08,"l":1.345},{"oc":"#231f20","x":47.851,"y":41.36,"w":1.08,"l":1.345},{"oc":"#231f20","x":47.654,"y":41.367,"w":1.08,"l":1.307},{"oc":"#231f20","x":63.84,"y":41.367,"w":1.08,"l":1.307},{"oc":"#231f20","x":3.982,"y":42.663,"w":1.08,"l":1.348},{"oc":"#231f20","x":55.629,"y":44.026,"w":1.08,"l":1.345},{"oc":"#231f20","x":3.961,"y":44.026,"w":1.08,"l":1.341},{"oc":"#231f20","x":41.126,"y":44.026,"w":1.08,"l":1.341},{"oc":"#231f20","x":63.789,"y":40.518,"w":1.6215,"l":6.149},{"oc":"#231f20","x":47.747,"y":45.345,"w":1.08,"l":1.348},{"oc":"#231f20","x":3.961,"y":45.341,"w":1.08,"l":1.345},{"oc":"#231f20","x":47.758,"y":45.341,"w":1.08,"l":1.345},{"oc":"#231f20","x":39.876,"y":42.667,"w":1.08,"l":1.345},{"oc":"#231f20","x":47.685,"y":42.667,"w":1.08,"l":1.345},{"clr":1,"x":3.94,"y":1.394,"w":0.09,"l":1.57},{"clr":1,"x":8.258,"y":1.394,"w":0.09,"l":1.57},{"oc":"#231f20","x":4.56,"y":1.62,"w":3.243,"l":1.123},{"clr":1,"x":97.514,"y":1.394,"w":0.09,"l":1.57},{"clr":1,"x":101.832,"y":1.394,"w":0.09,"l":1.57},{"oc":"#231f20","x":101.222,"y":1.62,"w":3.243,"l":1.123},{"clr":1,"x":3.94,"y":46.689,"w":0.09,"l":1.57},{"clr":1,"x":8.258,"y":46.689,"w":0.09,"l":1.57},{"oc":"#231f20","x":4.56,"y":46.915,"w":3.243,"l":1.123},{"clr":1,"x":97.514,"y":46.689,"w":0.09,"l":1.57},{"clr":1,"x":101.832,"y":46.689,"w":0.09,"l":1.57},{"oc":"#231f20","x":101.222,"y":46.915,"w":3.243,"l":1.123},{"clr":1,"x":78.301,"y":1.282,"w":0.09,"l":1.795},{"clr":1,"x":96.874,"y":1.282,"w":0.09,"l":1.795},{"clr":1,"x":78.301,"y":1.503,"w":0.09,"l":1.348},{"clr":1,"x":96.874,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":80.006,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":80.171,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":80.347,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":80.512,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":80.698,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":80.853,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":81.039,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":81.194,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":81.638,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":82.051,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":82.495,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":82.908,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":83.094,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":83.249,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":83.435,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":83.6,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":84.034,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":84.2,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":84.375,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":84.54,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":84.974,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":85.398,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":85.573,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":85.997,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":86.183,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":86.338,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":86.524,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":86.678,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":86.864,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":87.278,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":87.464,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":87.877,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":88.321,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":88.476,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":88.92,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":89.085,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":89.261,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":89.684,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":90.118,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":90.542,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":90.717,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":90.883,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":91.058,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":91.223,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":91.668,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":91.823,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":92.008,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":92.422,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":92.866,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":93.279,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":93.465,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":93.62,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":94.064,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":94.229,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":94.405,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":94.828,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":95.004,"y":1.503,"w":0.09,"l":1.348},{"oc":"#231f20","x":95.169,"y":1.503,"w":0.09,"l":1.348}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":80.016,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":80.357,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":80.708,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":81.049,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":81.648,"y":1.507,"w":0.403,"h":1.345,"clr":-1},{"oc":"#231f20","x":82.506,"y":1.507,"w":0.403,"h":1.345,"clr":-1},{"oc":"#231f20","x":83.104,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":83.445,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":84.044,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":84.385,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":84.984,"y":1.507,"w":0.413,"h":1.345,"clr":-1},{"oc":"#231f20","x":85.584,"y":1.507,"w":0.413,"h":1.345,"clr":-1},{"oc":"#231f20","x":86.193,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":86.534,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":86.875,"y":1.507,"w":0.403,"h":1.345,"clr":-1},{"oc":"#231f20","x":87.474,"y":1.507,"w":0.403,"h":1.345,"clr":-1},{"oc":"#231f20","x":88.331,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":88.93,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":89.271,"y":1.507,"w":0.413,"h":1.345,"clr":-1},{"oc":"#231f20","x":90.129,"y":1.507,"w":0.413,"h":1.345,"clr":-1},{"oc":"#231f20","x":90.728,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":91.068,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":91.678,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":92.019,"y":1.507,"w":0.403,"h":1.345,"clr":-1},{"oc":"#231f20","x":92.876,"y":1.507,"w":0.403,"h":1.345,"clr":-1},{"oc":"#231f20","x":93.475,"y":1.507,"w":0.145,"h":1.345,"clr":-1},{"oc":"#231f20","x":94.074,"y":1.507,"w":0.155,"h":1.345,"clr":-1},{"oc":"#231f20","x":94.415,"y":1.507,"w":0.413,"h":1.345,"clr":-1},{"oc":"#231f20","x":95.014,"y":1.507,"w":0.155,"h":1.345,"clr":-1}],"Texts":[{"oc":"#231f20","x":49.449,"y":31.005,"w":4.5716,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":61.989,"y":31.005,"w":3.9294,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":12.418,"y":39.614,"w":40.56339999999996,"clr":-1,"A":"left","R":[{"T":"For%20a%20complete%20return%2C%20you%20must%20attach%20a%20copy%20of%20your%202013%20federal%20income%20tax%20return","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":8.995,"y":5.43,"w":3.2232,"clr":-1,"A":"left","R":[{"T":"%20-%20If%20a%20","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.255,"y":6.031,"w":0.2836,"clr":-1,"A":"left","R":[{"T":"i","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":12.987,"y":34.543,"w":2.1084,"clr":-1,"A":"left","R":[{"T":"(AK)","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":40.948,"y":34.506,"w":1.9965999999999997,"clr":-1,"A":"left","R":[{"T":"(AL)","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":32.871,"y":29.157,"w":0.8494000000000002,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.8040000000000003,"y":3.66,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.732,"y":9.227,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.763,"y":10.68,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.732,"y":16.063,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"26.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":32.899,"y":17.077,"w":11.309800000000001,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20zero%2C%20enter%200","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.732,"y":19.049,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"28.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.732,"y":19.943,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"29.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.628,"y":21.528,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"30.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.835,"y":25.187,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"32.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":33.135,"y":28.147,"w":12.092800000000002,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%245.00%2C%20enter%200","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.763,"y":32.91,"w":1.4164,"clr":-1,"A":"left","R":[{"T":"35.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.67,"y":32.91,"w":4.756000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20due%20-%20","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":12.382,"y":32.91,"w":30.201500000000003,"clr":-1,"A":"left","R":[{"T":"If%20line%2030%20is%20LESS%20than%20line%2027%2C%20subtract%20line%2030%20from%20line%2027.","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":6.856,"y":33.507,"w":11.947000000000005,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%245.00%2C%20enter%200","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.742,"y":37.026,"w":1.1062,"clr":-1,"A":"left","R":[{"T":"38","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":5.726,"y":37.026,"w":0.3581,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.211,"y":37.026,"w":6.409300000000001,"clr":-1,"A":"left","R":[{"T":"Balance%20due.%20","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.835,"y":38.709,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"39.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.451,"y":29.134,"w":1.5494999999999999,"clr":-1,"A":"left","R":[{"T":"To%20","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":67.835,"y":40.328,"w":0.7654000000000001,"clr":-1,"A":"left","R":[{"T":"*%20","S":-1,"TS":[0,9.9953,0,0]}]},{"oc":"#231f20","x":6.519,"y":32.091,"w":3.8718,"clr":-1,"A":"left","R":[{"T":"Tax%20Due","S":-1,"TS":[0,13.0147,1,0]}]},{"oc":"#231f20","x":40.005,"y":41.011,"w":2.4,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":47.993,"y":41.011,"w":13.056999999999999,"clr":-1,"A":"left","R":[{"T":"Phone%20number%20(land%20line)","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":4.166,"y":43.671,"w":11.9144,"clr":-1,"A":"left","R":[{"T":"Paid%20preparer%20signature","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":41.136,"y":43.671,"w":2.4032,"clr":-1,"A":"left","R":[{"T":"PTIN","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":55.773,"y":43.671,"w":2.3772,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":67.98,"y":41.699,"w":20.947,"clr":-1,"A":"left","R":[{"T":"discuss%20this%20return%20with%20the%20paid%20preparer.","S":-1,"TS":[0,9.9953,0,0]}]},{"oc":"#231f20","x":47.828,"y":44.978,"w":4.0479,"clr":-1,"A":"left","R":[{"T":"Phone%20n","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":52.037,"y":44.978,"w":0.9683999999999999,"clr":-1,"A":"left","R":[{"T":"o.","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":4.723,"y":45.462,"w":0.274,"clr":-1,"A":"left","R":[{"T":"i","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":3.763,"y":34.558,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"36.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":61.772,"y":34.555,"w":5.0594,"clr":-1,"A":"left","R":[{"T":"Enter%20total","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":80.148,"y":3.649,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":80.179,"y":34.453,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"36","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.757,"y":38.608,"w":3.4716000000000005,"clr":-1,"A":"left","R":[{"T":"(SO)%2039","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":80.169,"y":37.575,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"38","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":80.179,"y":35.967,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":3.835,"y":26.314,"w":1.7080000000000002,"clr":-1,"A":"left","R":[{"T":"33.%20","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":18.572,"y":26.314,"w":5.236499999999999,"clr":-1,"A":"left","R":[{"T":"Watchable","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":29.307,"y":26.888,"w":1.9984000000000002,"clr":-1,"A":"left","R":[{"T":"(SP)","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":58.426,"y":26.888,"w":2.2738,"clr":-1,"A":"left","R":[{"T":"(SW)","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":73.155,"y":26.967,"w":2.1630000000000003,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":80.283,"y":26.888,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":80.283,"y":15.977,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":3.763,"y":12.089,"w":1.9960000000000002,"clr":-1,"A":"left","R":[{"T":"23.%20%20","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":3.867,"y":13.539,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.391,"y":14.14,"w":0.5305,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":8.103,"y":14.14,"w":2.3615,"clr":-1,"A":"left","R":[{"T":"redit","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":3.732,"y":15.049,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"25.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.151,"y":15.049,"w":9.475,"clr":-1,"A":"left","R":[{"T":"Total%20other%20credits%20","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":3.732,"y":35.516,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":"37.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":18.812,"y":35.486,"w":5.237400000000001,"clr":-1,"A":"left","R":[{"T":"Watchable","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":28.615,"y":36.061,"w":2.6064000000000007,"clr":-1,"A":"left","R":[{"T":"(SU)","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":57.878,"y":36.061,"w":1.9992,"clr":-1,"A":"left","R":[{"T":"(SY)","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":72.165,"y":36.14,"w":2.1630000000000003,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.243,"y":6.894,"w":2.1515,"clr":-1,"A":"left","R":[{"T":"If%20a%20","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":22.777,"y":6.894,"w":1.4139,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":34.994,"y":6.894,"w":19.8884,"clr":-1,"A":"left","R":[{"T":"%2C%20enter%20amount%20from%20Schedule%20ND-1NR%2C","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":39.802,"y":42.277,"w":2.4164,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":32.871,"y":30.107,"w":0.8862000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":35.277,"y":30.111,"w":8.666,"clr":-1,"A":"left","R":[{"T":"Account%20number%3A","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":35.247,"y":31.005,"w":8.4428,"clr":-1,"A":"left","R":[{"T":"Type%20of%20account%3A","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":32.871,"y":31.02,"w":0.8268,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":64.169,"y":45.759,"w":1.7821000000000002,"clr":-1,"A":"left","R":[{"T":"IIT","S":-1,"TS":[0,22.0294,1,0]}]},{"oc":"#231f20","x":35.401,"y":29.198,"w":8.529,"clr":-1,"A":"left","R":[{"T":"Routing%20number%3A","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":31.07,"y":3.66,"w":11.788,"clr":-1,"A":"left","R":[{"T":"%20from%20line%2018%20of%20page%201","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":22.667,"y":5.43,"w":35.028,"clr":-1,"A":"left","R":[{"T":"%2C%20enter%20amount%20from%20Tax%20Table%20on%20page%2020%20of%20instructions%3B%20however%2C","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":12.472,"y":5.43,"w":8.13,"clr":-1,"A":"left","R":[{"T":"full-year%20resident","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":61.877,"y":6.03,"w":1.5,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":9.468,"y":6.894,"w":10.0023,"clr":-1,"A":"left","R":[{"T":"full-year%20nonresident","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":24.259,"y":6.894,"w":8.447000000000001,"clr":-1,"A":"left","R":[{"T":"part-year%20resident","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.243,"y":7.494999999999999,"w":39.187000000000005,"clr":-1,"A":"left","R":[{"T":"line%2021%3B%20however%2C%20if%20you%20sold%20a%20research%20tax%20credit%2C%20see%20page%2013%20of%20instructions","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":6.226,"y":9.227,"w":22.168000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20Credit%20for%20income%20tax%20paid%20to%20another%20state","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.353,"y":9.824,"w":13.395000000000001,"clr":-1,"A":"left","R":[{"T":"(Attach%20Schedule%20ND-1CR)","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":6.24,"y":10.681,"w":19.884999999999998,"clr":-1,"A":"left","R":[{"T":"%20%20Marriage%20penalty%20credit%20for%20joint%20filers","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.06,"y":11.282,"w":22.525999999999996,"clr":-1,"A":"left","R":[{"T":"(From%20worksheet%20on%20page%2014%20of%20instructions)","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.18,"y":12.089,"w":25.262900000000005,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20unused%202008%20residential%2Fagricultural","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.232,"y":12.686,"w":9.415000000000001,"clr":-1,"A":"left","R":[{"T":"property%20tax%20credit","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.284,"y":13.539,"w":26.252799999999993,"clr":-1,"A":"left","R":[{"T":"Carryover%20of%20unused%202008%20commercial%20property%20tax","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":17.44,"y":15.049,"w":13.316,"clr":-1,"A":"left","R":[{"T":"(Attach%20Schedule%20ND-1TC)","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":6.229,"y":16.063,"w":19.558,"clr":-1,"A":"left","R":[{"T":"%20%20Total%20credits.%20Add%20lines%2021%20through%2025","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":6.238,"y":19.943,"w":28.853399999999997,"clr":-1,"A":"left","R":[{"T":"%20%20Estimated%20tax%20paid%20on%202013%20Forms%20ND-1ES%20and%20ND-1EXT","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.202,"y":20.544,"w":30.152999999999995,"clr":-1,"A":"left","R":[{"T":"plus%20an%20overpayment%2C%20if%20any%2C%20applied%20from%20your%202012%20return","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":6.106,"y":21.528,"w":19.589200000000005,"clr":-1,"A":"left","R":[{"T":"%20%20Total%20payments.%20Add%20lines%2028%20and%2029","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.1,"y":24.131,"w":12.514500000000004,"clr":-1,"A":"left","R":[{"T":"otherwise%2C%20go%20to%20line%2035.","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":20.693,"y":24.131,"w":11.839000000000002,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%245.00%2C%20enter%200","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.311,"y":25.187,"w":35.851,"clr":-1,"A":"left","R":[{"T":"%20%20Amount%20of%20line%2031%20that%20you%20want%20applied%20to%20your%202014%20estimated%20tax","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.303,"y":26.314,"w":4.8288,"clr":-1,"A":"left","R":[{"T":"Voluntary","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.014,"y":34.559,"w":3.755300000000001,"clr":-1,"A":"left","R":[{"T":"Penalty","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.155,"y":35.517,"w":4.8207,"clr":-1,"A":"left","R":[{"T":"Voluntary","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":15.701,"y":37.027,"w":24.38800000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2035%2C%2036%2C%2037%2C%20and%2C%20if%20applicable%2C%20line%2039.","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.343,"y":38.71,"w":30.635600000000007,"clr":-1,"A":"left","R":[{"T":"Interest%20on%20underpaid%20estimated%20tax%20from%20Schedule%20ND-1UT","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":47.704,"y":42.33,"w":9.965,"clr":-1,"A":"left","R":[{"T":"Cell%20phone%20number","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":76.802,"y":33.48,"w":3.2990000000000004,"clr":-1,"A":"left","R":[{"T":"(SZ)%2035","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":76.75,"y":28.072,"w":3.4142,"clr":-1,"A":"left","R":[{"T":"(SR)%2034","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":76.595,"y":24.068,"w":3.4667,"clr":-1,"A":"left","R":[{"T":"(SG)%2031","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":76.687,"y":25.101,"w":3.4716000000000005,"clr":-1,"A":"left","R":[{"T":"(SQ)%2032","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":76.874,"y":21.484,"w":3.3010999999999995,"clr":-1,"A":"left","R":[{"T":"(AJ)%2030","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.633,"y":20.515,"w":3.4107,"clr":-1,"A":"left","R":[{"T":"(S%26)%2029","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.881,"y":19.004,"w":3.2955,"clr":-1,"A":"left","R":[{"T":"(SF)%2028","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":76.874,"y":17.062,"w":3.3543,"clr":-1,"A":"left","R":[{"T":"(SE)%2027","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.653,"y":15,"w":3.4128000000000003,"clr":-1,"A":"left","R":[{"T":"(AE)%2025","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.602,"y":14.008,"w":3.4678,"clr":-1,"A":"left","R":[{"T":"(AN)%2024","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.478,"y":12.604,"w":3.5809000000000006,"clr":-1,"A":"left","R":[{"T":"(AM)%2023","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.705,"y":11.195,"w":3.472,"clr":-1,"A":"left","R":[{"T":"(AC)%2022","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":53.705,"y":9.873,"w":3.4086000000000003,"clr":-1,"A":"left","R":[{"T":"(SD)%2021","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":76.698,"y":7.432,"w":3.4079,"clr":-1,"A":"left","R":[{"T":"(SB)%2020","S":-1,"TS":[0,9.9953,1,0]}]},{"oc":"#231f20","x":7.451,"y":30.333,"w":7.202,"clr":-1,"A":"left","R":[{"T":"(See%20page%2015)","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":8.483,"y":2.601,"w":11.253400000000003,"clr":-1,"A":"left","R":[{"T":"2013%20Form%20ND-1%2C%20page%202","S":-1,"TS":[0,15.0339,1,0]}]},{"oc":"#231f20","x":8.483,"y":1.79,"w":23.8155,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":-1,"TS":[0,12.0147,0,0]}]},{"oc":"#231f20","x":6.283,"y":3.66,"w":6.1122000000000005,"clr":-1,"A":"left","R":[{"T":"%20%20Enter%20your","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":13.462,"y":3.66,"w":13.7081,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20taxable%20income","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.417,"y":4.596,"w":7.1035,"clr":-1,"A":"left","R":[{"T":"Tax%20calculation","S":-1,"TS":[0,13.0147,1,0]}]},{"oc":"#231f20","x":3.732,"y":5.43,"w":1.4185,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.659,"y":5.43,"w":1.7515,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.625,"y":6.03,"w":42.071200000000005,"clr":-1,"A":"left","R":[{"T":"f%20you%20have%20farm%20income%20or%20sold%20a%20research%20tax%20credit%2C%20see%20page%2013%20of%20instructions%3B","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":16.513,"y":17.077,"w":14.75,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2026%20from%20line%2020.","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":3.835,"y":17.077,"w":1.4134000000000002,"clr":-1,"A":"left","R":[{"T":"27.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.758,"y":17.077,"w":7.476400000000002,"clr":-1,"A":"left","R":[{"T":"Net%20tax%20liability.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.416,"y":18.31,"w":4.0482,"clr":-1,"A":"left","R":[{"T":"Tax%20paid","S":-1,"TS":[0,13.0147,1,0]}]},{"oc":"#231f20","x":6.227,"y":19.049,"w":32.874399999999994,"clr":-1,"A":"left","R":[{"T":"%20%20North%20Dakota%20withholding(Attach%20W-2s%2C%201099s%2C%20and%2For%20N.D.%20K-1s)","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":16.063,"y":23.534,"w":30.62220000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2030%20is%20MORE%20than%20line%2027%2C%20subtract%20line%2027%20from%20line%2030%3B","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":3.833,"y":23.534,"w":1.4071000000000002,"clr":-1,"A":"left","R":[{"T":"31.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.711,"y":23.534,"w":7.3598,"clr":-1,"A":"left","R":[{"T":"Overpayment%20-%20","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":43.705,"y":26.922,"w":9.976799999999999,"clr":-1,"A":"left","R":[{"T":"Program%20Trust%20Fund","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":43.706,"y":26.321,"w":6.7068,"clr":-1,"A":"left","R":[{"T":"Trees%20For%20ND","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":12.308,"y":28.147,"w":19.5616,"clr":-1,"A":"left","R":[{"T":"Subtract%20lines%2032%20and%2033%20from%20line%2031.","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":3.9480000000000004,"y":28.147,"w":1.4128000000000003,"clr":-1,"A":"left","R":[{"T":"34.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":6.871,"y":28.147,"w":3.7752000000000003,"clr":-1,"A":"left","R":[{"T":"Refund.","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":18.572,"y":29.135,"w":6.239,"clr":-1,"A":"left","R":[{"T":"your%20refund%2C","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":9.458,"y":29.134,"w":6.5444,"clr":-1,"A":"left","R":[{"T":"direct%20deposit","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.451,"y":29.735,"w":13.715000000000003,"clr":-1,"A":"left","R":[{"T":"complete%20items%20a%2C%20b%2C%20and%20c.","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":72.164,"y":35.539,"w":2.594,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":43.086,"y":36.095,"w":9.976799999999999,"clr":-1,"A":"left","R":[{"T":"Program%20Trust%20Fund","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":7.511,"y":37.627,"w":3.5862000000000003,"clr":-1,"A":"left","R":[{"T":"Pay%20to%3A","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":67.98,"y":41.165,"w":28.044800000000006,"clr":-1,"A":"left","R":[{"T":"I%20authorize%20the%20ND%20Office%20of%20State%20Tax%20Commissioner%20to","S":-1,"TS":[0,9.9953,0,0]}]},{"oc":"#231f20","x":70.862,"y":42.352,"w":20.77,"clr":-1,"A":"left","R":[{"T":"This%20Space%20Is%20For%20Tax%20Department%20Use%20Only","S":-1,"TS":[0,8.9857,1,0]}]},{"oc":"#231f20","x":11.789,"y":46.638,"w":22.773999999999994,"clr":-1,"A":"left","R":[{"T":"Mail%20to%3A%20State%20Tax%20Commissioner%2C%20PO%20Box%205621%2C","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":11.789,"y":47.235,"w":12.261900000000004,"clr":-1,"A":"left","R":[{"T":"Bismarck%2C%20ND%2058506-5621","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":4.169,"y":42.369,"w":9.697,"clr":-1,"A":"left","R":[{"T":"Spouse's%20signature","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":11.652,"y":37.627,"w":13.378800000000004,"clr":-1,"A":"left","R":[{"T":"%20ND%20State%20Tax%20Commissioner","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":68.703,"y":40.328,"w":26.580599999999997,"clr":-1,"A":"left","R":[{"T":"Privacy%20Act%20-%20See%20inside%20front%20cover%20of%20booklet.","S":-1,"TS":[0,8.9857,1,0]}]},{"oc":"#231f20","x":4.186,"y":41.011,"w":7.469,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":-1,"TS":[0,8.9857,0,0]}]},{"oc":"#231f20","x":4.186,"y":40.328,"w":44.43399999999999,"clr":-1,"A":"left","R":[{"T":"I%20declare%20that%20this%20return%20is%20correct%20and%20complete%20to%20the%20best%20of%20my%20knowledge%20and%20belief.","S":-1,"TS":[0,9.9953,0,0]}]},{"oc":"#231f20","x":43.086,"y":35.494,"w":6.7068,"clr":-1,"A":"left","R":[{"T":"Trees%20For%20ND","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":6.417,"y":8.506,"w":3.4205000000000005,"clr":-1,"A":"left","R":[{"T":"Credits","S":-1,"TS":[0,13.0147,1,0]}]},{"oc":"#231f20","x":6.934,"y":22.817,"w":4.0108,"clr":-1,"A":"left","R":[{"T":"Refund","S":-1,"TS":[0,13.0147,1,0]}]},{"oc":"#231f20","x":7.444,"y":26.915,"w":7.9742,"clr":-1,"A":"left","R":[{"T":"contribution%20to%3A","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":18.959,"y":26.915,"w":6.5916,"clr":-1,"A":"left","R":[{"T":"Wildlife%20Fund","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":34.751,"y":34.555,"w":4.0996,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":73.155,"y":26.366,"w":2.594,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,11.0049,1,0]}]},{"oc":"#231f20","x":7.255,"y":36.117,"w":8.3388,"clr":-1,"A":"left","R":[{"T":"contribution%20to%3A%20","S":-1,"TS":[0,11.0049,0,0]}]},{"oc":"#231f20","x":18.9,"y":36.117,"w":6.5942,"clr":-1,"A":"left","R":[{"T":"Wildlife%20Fund","S":-1,"TS":[0,11.0049,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX2","EN":0},"TI":55,"AM":1024,"x":82.732,"y":3.624,"w":18.55,"h":0.833,"TU":"19. Enter your North Dakota taxable income from line 18 of page 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:nd_ins_taxtable"}},"id":{"Id":"Look_Up","EN":0},"TI":56,"AM":0,"x":71.036,"y":6.141,"w":6.161,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX1","EN":0},"TI":57,"AM":0,"x":83.106,"y":7.302,"w":18.101,"h":0.859,"TU":"Line 20. Tax."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ND1CR"}},"id":{"Id":"Add_ND_1CR","EN":0},"TI":58,"AM":0,"x":47.012,"y":9.7,"w":6.386,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OOSCRED","EN":0},"TI":59,"AM":1024,"x":59.902,"y":9.705,"w":18.251,"h":0.834,"TU":"Attach Schedule ND-1CR) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (SD) 21"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MFJCR","EN":0},"TI":60,"AM":0,"x":59.678,"y":11.023,"w":18.475,"h":0.915,"TU":"Line 22. Marriage penalty credit for joint filers (From worksheet on page 14 of instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGPROPCR","EN":0},"TI":61,"AM":0,"x":59.752,"y":12.387,"w":18.55,"h":0.915,"TU":"Line 23. Carryover of unused 2008 residential/agricultural property tax credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COPROPCR","EN":0},"TI":62,"AM":0,"x":59.902,"y":13.832,"w":18.325,"h":0.888,"TU":"Line 24. Carryover of unused 2008 commercial property tax credit."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ND1TC"}},"id":{"Id":"Add_ND_1TC","EN":0},"TI":63,"AM":0,"x":47.03,"y":14.903,"w":6.386,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALCR","EN":0},"TI":64,"AM":1024,"x":59.775,"y":14.932,"w":18.475,"h":0.833,"TU":"25. Total other tax credits (Attach Schedule ND-1TC) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (AE) 25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDSTOT","EN":0},"TI":65,"AM":1024,"x":83.032,"y":15.803,"w":18.625,"h":0.888,"TU":"26. Total credits. Add lines 21 through 25 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETTAX","EN":0},"TI":66,"AM":1024,"x":82.829,"y":16.949,"w":18.625,"h":0.846,"TU":"27. Net tax liability. Subtract line 26 from line 20. If less than zero, enter 0 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (SE) 27"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WITHHOLD","EN":0},"TI":67,"AM":0,"x":59.769,"y":18.852,"w":18.625,"h":0.888,"TU":"Line 28. North Dakota withholding."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTAX","EN":0},"TI":68,"AM":0,"x":59.769,"y":20.379,"w":18.7,"h":0.888,"TU":"Line 29. Estimated tax paid on 2013 Forms ND-1ES and ND-1EXT, plus an overpayment, if any, applied from your 2012 return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPAY","EN":0},"TI":69,"AM":1024,"x":82.882,"y":21.294,"w":18.625,"h":0.941,"TU":"30. Total payments. Add lines 28 and 29 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (AJ) 30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPAY","EN":0},"TI":70,"AM":1024,"x":82.882,"y":23.831,"w":18.475,"h":0.915},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"APPLY","EN":0},"TI":71,"AM":0,"x":82.882,"y":24.952,"w":18.4,"h":0.861,"TU":"32. Amount of line 31 that you want to applied to your 2014 eatimated tax Line 32. Amount of line 31 that you want applied to your 2014 estimated tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WILDFUN1","EN":0},"TI":72,"AM":0,"x":32.986,"y":26.774,"w":10.515,"h":0.861,"TU":"Line 33. Voluntary contribution to Watchable Wildlife Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TREEFUN1","EN":0},"TI":73,"AM":0,"x":62.573,"y":26.807,"w":10.515,"h":0.861,"TU":"Trees For ND Program Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUNDTOT1","EN":0},"TI":74,"AM":1024,"x":82.957,"y":26.734,"w":18.325,"h":0.854,"TU":"32. Amount of line 31 that you want applied to your 2014 estimated tax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (SQ) 32"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":75,"AM":1024,"x":82.957,"y":27.947,"w":18.325,"h":0.859,"TU":"34. Refund. Subtract lines 32 and 33 from line 31. If less than $5.00, enter 0. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (SR) 34"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNUM","EN":0},"TI":76,"AM":0,"x":48.025,"y":29.123,"w":19.006,"h":0.877,"TU":"Line 34a. Routing number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCTNUM","EN":0},"TI":77,"AM":0,"x":47.977,"y":30.079,"w":24.134,"h":0.833,"TU":"Line 34b. Account number.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":80,"AM":1024,"x":82.882,"y":33.304,"w":18.4,"h":0.888,"TU":"35"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXINT","EN":0},"TI":81,"AM":0,"x":44.706,"y":34.412,"w":15.974,"h":0.858,"TU":"Interest."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPEN","EN":0},"TI":82,"AM":0,"x":17.056,"y":34.452,"w":15.974,"h":0.858,"TU":"Line 36. Penalty."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENINTOT","EN":0},"TI":83,"AM":1024,"x":82.957,"y":34.431,"w":18.325,"h":0.833,"TU":"Enter total . . . . . . . . . . . . 36"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WILDFUN2","EN":0},"TI":84,"AM":0,"x":32.462,"y":35.949,"w":10.515,"h":0.861,"TU":"Line 37. Voluntary contribution to Watchable Wildlife Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TREEFUN2","EN":0},"TI":85,"AM":0,"x":61.75,"y":35.942,"w":10.133,"h":0.834,"TU":"Trees For ND Program Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUNDTOT2","EN":0},"TI":86,"AM":1024,"x":83.181,"y":35.798,"w":18.176,"h":0.861,"TU":"total . . . . 37"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VOUCHEF"}},"id":{"Id":"Add_ND_1V","EN":0},"TI":87,"AM":0,"x":73.832,"y":37.445,"w":6.385,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BALDUE","EN":0},"TI":88,"AM":1024,"x":83.256,"y":37.439,"w":18.101,"h":0.859,"TU":"Pay to: ND State Tax Commissioner . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:EXPL01"}},"id":{"Id":"Add","EN":0},"TI":89,"AM":0,"x":49.8,"y":38.382,"w":6.386,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTEREST","EN":0},"TI":90,"AM":1024,"x":59.591,"y":38.459,"w":19.216,"h":0.888,"TU":"39. Interest on underpaid estimated tax from Schedule ND-1UT . . . . . . . . . . . . . . . . . . . . . . (SO) 39"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":91,"AM":0,"x":48.096,"y":41.857,"w":15.375,"h":0.833,"TU":"Phone number (land line)."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"CELLPHO","EN":0},"TI":93,"AM":0,"x":47.91,"y":43.233,"w":15.525,"h":0.833,"TU":"Cell phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPNAME","EN":0},"TI":94,"AM":1024,"x":4.131,"y":45.922,"w":43.151,"h":0.833,"TU":"This Space Is For Tax Department Use Only","V":"Self- Prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CHECKING","EN":0},"TI":78,"AM":0,"x":47.4,"y":31.005,"w":1.971,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SAVINGS","EN":0},"TI":79,"AM":0,"x":59.943,"y":30.889,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"ACCTRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AUTHX","EN":0},"TI":92,"AM":1024,"x":64.822,"y":41.386,"w":2.495,"h":0.962}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/nd/form/ND1CR.content.txt b/test/data/nd/form/ND1CR.content.txt new file mode 100755 index 00000000..1699541d --- /dev/null +++ b/test/data/nd/form/ND1CR.content.txt @@ -0,0 +1,305 @@ +.. Credit - +10. +11. +Credit - +go line 7.(If married filing jointly, this applies if +full-year resident, +credit . +Part-year resident (Not Supported): +North Dakota Office of State Tax Commissioner + + + + +2013 + + + + + + + + + + + + +state and complete lines 1a through 6. + + + + + + + + + +1 + +a. + + + + +1a + + + + + +b +. + + + + + + + + +c +. + + + + + + + +1b + + + + + + + +( +S8 +) + +1 +c + + + + + +2 +. + + + + + +( +SJ +) + +2 + + + + + + + + + + + + + + + + +3 +. + + +3 + + + + + +4 +. + + + +4 + + + + + +5 +. + + + +6 +. + + + + +(S +L) + +5 + + + + + + +(S +M +) + +6 + + + + + + + + + + + +either + + + + + +7 + + + + + + +7 + + + + + + +either + + +8 +. + + + +( +SK +) + +8 + + + + + +9 +. + + +9 + + + + + + + + +( +S9 +) + +1 +0 + + + + + + + +11 + + + + +Schedule +Credit for income tax paid to +another state +Attach to Form ND-1 +Please type or print in black or blue ink. See separate instructions. +Your name (First, MI, Last name) +Your social security number +Full-year resident and part-year resident +All eligible taxpayers using this form must enter the name of the other +All taxpayers: +Enter the name of the other state to which you paid tax on income that is also taxed by +North Dakota +Federal adjusted gross income from Form ND-1, line D +How much of the amount on line 1a has its source in the other state? If none, to here; +you are not eligible for this credit. +See instructions for proper amount to enter here +How much of the amount on line 1b did you (and your spouse, if filing jointly) receive or +earn while a resident of North Dakota? If none, stop here; you are not eligible for this +See instructions for proper amount to enter here +Enter the applicable amount for your residency status as follows +Full-year resident - +If you (and your spouse, if filing jointly) were full-year residents, +enter the amount from Form ND-1, line D, less the amoun from Form ND-1, line 7. +Part-year resident (Not Supported) - +Divide line 1c by line 2. Round to nearest four decimal places. If line 1c is equal to or more +than line 2, enter 1.0000 +Enter the amount of your North Dakota tax from Form ND-1, line 20 +Multiply line 4 by line 3 +Enter the amount of income tax paid to the other state. +See instructions for proper +amount to enter here +If you were a +both +spouses were full-year residents.) +If you were a +part-year resident, +skip line 7 and go to line 8. (If married filing jointly, +this applies if +spouse was a part-year resident.) (Not Supported) +Full-year resident only - +Complete line 7 only if you were a full-year resident. +(If married filing jointly, this applies only if +both +spouses were full-year residents.) +Enter the smaller of line 5 or line 6. Enter this amounton Form ND-1, line 21 +Part-year resident (Not Supported) - +Enter the amount from line 1b (Not Supported) +Divide line 1c by line 8. Round to nearest four decimal places. If line 1c is equal to or more than +line 8, enter 1.0000 (Not Supported) +Multiply line 6 by line 9 (Not Supported) +Enter the smaller ofline 5 or line10. Enter this amount on Form ND-1, line 21 (Not Supported) +ND-1CR +If you were a part-year resident, this credit is +allowed only if you reported income to North Dakota on Schedule ND-1NR, line 16, that +(1) has its source in another state and (2) was received or earned while you were a resident +of North Dakota. +If you (or your spouse, if filing jointly) was a part-year +resident, enter the amount from Schedule ND-1NR, line 16. +Complete lines 8 through 11 only if +you were apart-year resident. (If married filing jointly, this applies if +spouse was +a part-year resident.) +----------------Page (0) Break---------------- diff --git a/test/data/nd/form/ND1CR.fields.json b/test/data/nd/form/ND1CR.fields.json new file mode 100755 index 00000000..1a4b2ecb --- /dev/null +++ b/test/data/nd/form/ND1CR.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"STATEID","type":"alpha","calc":false,"value":""},{"id":"FEDLNE","type":"number","calc":true,"value":""},{"id":"OTHRSTAT","type":"number","calc":false,"value":""},{"id":"STFEDAGI","type":"number","calc":false,"value":""},{"id":"FEDAGI","type":"number","calc":true,"value":""},{"id":"AGIRATIO","type":"alpha","calc":true,"value":""},{"id":"NDTAX","type":"number","calc":true,"value":""},{"id":"NDTAXRED","type":"number","calc":true,"value":""},{"id":"OOSTAX","type":"number","calc":false,"value":""},{"id":"RESCRED","type":"number","calc":true,"value":""},{"id":"PYFEDAGI","type":"alpha","calc":true,"value":""},{"id":"PYRATIO","type":"alpha","calc":true,"value":""},{"id":"OOSTAXRD","type":"alpha","calc":true,"value":""},{"id":"PYRESCRD","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/nd/form/ND1CR.json b/test/data/nd/form/ND1CR.json new file mode 100755 index 00000000..8a9d320f --- /dev/null +++ b/test/data/nd/form/ND1CR.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"ND1CR_Fi_d1.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":5.921,"y":6.888,"w":1.0785,"l":70.503},{"oc":"#221f1f","x":5.921,"y":8.366,"w":1.0785,"l":70.503},{"oc":"#221f1f","x":76.476,"y":6.888,"w":1.0785,"l":24.398},{"oc":"#221f1f","x":76.476,"y":8.369,"w":1.0785,"l":24.398},{"oc":"#221f1f","x":82.328,"y":15.406,"w":0.18,"l":18.623},{"oc":"#221f1f","x":5.156,"y":34.066,"w":4.5600000000000005,"l":71.93},{"oc":"#221f1f","x":19.912,"y":34.066,"w":4.5600000000000005,"l":15.89},{"oc":"#221f1f","x":4.898,"y":37.675,"w":4.47,"l":71.947},{"oc":"#221f1f","x":22.077,"y":37.675,"w":4.47,"l":3.773},{"oc":"#221f1f","x":4.641,"y":1.688,"w":3.237,"l":3.085},{"oc":"#221f1f","x":97.754,"y":1.575,"w":3.237,"l":3.085},{"oc":"#221f1f","x":4.331,"y":47.891,"w":3.237,"l":3.085},{"oc":"#221f1f","x":97.754,"y":47.891,"w":3.237,"l":3.085}],"VLines":[{"oc":"#221f1f","x":5.921,"y":6.888,"w":1.0785,"l":1.478},{"oc":"#221f1f","x":76.424,"y":6.888,"w":1.0785,"l":1.478},{"oc":"#221f1f","x":100.873,"y":6.888,"w":1.0785,"l":1.481},{"oc":"#221f1f","x":8.559,"y":31.028,"w":0.18,"l":0.084},{"oc":"#221f1f","x":9.376,"y":31.084,"w":0.18,"l":0.044},{"oc":"#221f1f","x":8.405,"y":32.291,"w":0.18,"l":0.088},{"oc":"#221f1f","x":9.221,"y":32.347,"w":0.18,"l":0.044},{"oc":"#221f1f","x":4.641,"y":1.688,"w":3.237,"l":1.122},{"oc":"#221f1f","x":100.839,"y":1.575,"w":3.237,"l":1.122},{"oc":"#221f1f","x":4.331,"y":46.769,"w":3.237,"l":1.122},{"oc":"#221f1f","x":100.839,"y":46.769,"w":3.237,"l":1.122}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":73.726,"y":18.416,"w":0.507,"h":0.006,"clr":-1},{"oc":"#221f1f","x":75.711,"y":18.416,"w":0.507,"h":0.006,"clr":-1},{"oc":"#221f1f","x":76.699,"y":18.416,"w":0.507,"h":0.006,"clr":-1},{"oc":"#221f1f","x":77.688,"y":18.416,"w":0.507,"h":0.006,"clr":-1},{"oc":"#221f1f","x":78.676,"y":18.416,"w":0.507,"h":0.006,"clr":-1},{"oc":"#221f1f","x":54.261,"y":20.606,"w":0.507,"h":0.006,"clr":-1},{"oc":"#221f1f","x":8.559,"y":30.934,"w":0.816,"h":0.303,"clr":-1},{"oc":"#221f1f","x":8.405,"y":32.197,"w":0.816,"h":0.303,"clr":-1},{"oc":"#221f1f","x":81.737,"y":16.77,"w":19.058,"h":0.045,"clr":-1},{"oc":"#221f1f","x":82.356,"y":18.502,"w":18.459,"h":0.045,"clr":-1},{"oc":"#221f1f","x":82.314,"y":20.565,"w":18.48,"h":0.045,"clr":-1},{"oc":"#221f1f","x":82.335,"y":21.697,"w":18.48,"h":0.045,"clr":-1},{"oc":"#221f1f","x":89.843,"y":26.025,"w":11.055,"h":0.045,"clr":-1},{"oc":"#221f1f","x":81.902,"y":27.274,"w":18.996,"h":0.045,"clr":-1},{"oc":"#221f1f","x":82.356,"y":28.507,"w":18.439,"h":0.045,"clr":-1},{"oc":"#221f1f","x":82.418,"y":30.255,"w":18.542,"h":0.045,"clr":-1},{"oc":"#221f1f","x":81.902,"y":36.997,"w":18.831,"h":0.045,"clr":-1},{"oc":"#221f1f","x":81.943,"y":41.122,"w":18.789,"h":0.045,"clr":-1},{"oc":"#221f1f","x":89.162,"y":42.892,"w":11.571,"h":0.045,"clr":-1},{"oc":"#221f1f","x":82.067,"y":44.28,"w":18.501,"h":0.045,"clr":-1},{"oc":"#221f1f","x":81.572,"y":45.72,"w":18.975,"h":0.045,"clr":-1}],"Texts":[{"oc":"#221f1f","x":6.212,"y":36.217,"w":4.528,"clr":-1,"A":"left","R":[{"T":"..%20Credit%20-%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":5.283,"y":43.538,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":5.394,"y":44.94,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":8.296,"y":44.94,"w":3.715,"clr":-1,"A":"left","R":[{"T":"Credit%20-%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":28.29,"y":30.547,"w":23.843000000000004,"clr":-1,"A":"left","R":[{"T":"go%20line%207.(If%20married%20filing%20jointly%2C%20this%20applies%20if","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":17.398,"y":30.547,"w":8.336,"clr":-1,"A":"left","R":[{"T":"full-year%20resident%2C","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.589,"y":19.883,"w":2.835,"clr":-1,"A":"left","R":[{"T":"credit","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.009,"y":19.883,"w":1.068,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.733,"y":11.278,"w":16.583999999999996,"clr":-1,"A":"left","R":[{"T":"Part-year%20resident%20(Not%20Supported)%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":24.686,"y":2.272,"w":23.775,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":-1,"TS":[0,14.04,0,0]}]},{"oc":"#221f1f","x":84.787,"y":3.4720000000000004,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,21.04,1,0]}]},{"oc":"#221f1f","x":9.734,"y":10.155,"w":19.696,"clr":-1,"A":"left","R":[{"T":"state%20and%20complete%20lines%201a%20through%206.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.061,"y":16.035,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.545,"y":16.035,"w":0.8420000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":79.569,"y":15.989999999999998,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":7.423,"y":17.047,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":8.391,"y":17.047,"w":0.6970000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.567,"y":18.683,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":8.371,"y":18.683,"w":0.6970000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":80.105,"y":17.722,"w":1.203,"clr":-1,"A":"left","R":[{"T":"1b","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":76.826,"y":19.785,"w":0.334,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":77.464,"y":19.785,"w":1.225,"clr":-1,"A":"left","R":[{"T":"S8","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":79.135,"y":19.785,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":80.208,"y":19.785,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":81.053,"y":19.785,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":5.937,"y":20.963,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":6.948,"y":20.963,"w":0.55,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":77.713,"y":20.917,"w":0.334,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":78.352,"y":20.917,"w":1.225,"clr":-1,"A":"left","R":[{"T":"SJ","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":79.837,"y":20.917,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":80.909,"y":20.917,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":6.103,"y":24.697,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.113,"y":24.697,"w":0.55,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":88.437,"y":25.245,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":6.103,"y":26.513,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.113,"y":26.513,"w":0.55,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":80.518,"y":26.453,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":6.103,"y":27.772,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.113,"y":27.772,"w":0.55,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":6.185,"y":28.853,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.195,"y":28.853,"w":0.55,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":77.609,"y":27.727,"w":1.016,"clr":-1,"A":"left","R":[{"T":"(S","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":79.094,"y":27.727,"w":0.96,"clr":-1,"A":"left","R":[{"T":"L)","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":80.93,"y":27.727,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":77.341,"y":29.475,"w":1.016,"clr":-1,"A":"left","R":[{"T":"(S","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":78.826,"y":29.475,"w":0.841,"clr":-1,"A":"left","R":[{"T":"M","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":79.92,"y":29.475,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":81.013,"y":29.475,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":18.798,"y":32.34,"w":2.723,"clr":-1,"A":"left","R":[{"T":"either","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":6.061,"y":36.217,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":80.518,"y":36.218,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":48.749,"y":38.562,"w":3.001,"clr":-1,"A":"left","R":[{"T":"either%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":6.081,"y":40.402,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.092,"y":40.402,"w":0.55,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":77.073,"y":40.342,"w":0.334,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":77.713,"y":40.342,"w":1.391,"clr":-1,"A":"left","R":[{"T":"SK","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":79.446,"y":40.342,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":80.538,"y":40.342,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":6.082,"y":41.542,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":7.092,"y":41.542,"w":0.55,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":87.757,"y":42.113,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":76.434,"y":43.5,"w":0.334,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":77.073,"y":43.5,"w":1.225,"clr":-1,"A":"left","R":[{"T":"S9","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":78.744,"y":43.5,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":79.816,"y":43.5,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":80.661,"y":43.5,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":79.342,"y":44.94,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,9.7491,1,0]}]},{"oc":"#221f1f","x":8.186,"y":2.272,"w":4.8759999999999994,"clr":-1,"A":"left","R":[{"T":"Schedule%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":24.809,"y":3.293,"w":13.836000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20income%20tax%20paid%20to%20","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":24.812,"y":4.35,"w":6.265999999999999,"clr":-1,"A":"left","R":[{"T":"another%20state","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#221f1f","x":77.981,"y":4.395,"w":11.620999999999999,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%20ND-1","S":-1,"TS":[0,13.96,1,0]}]},{"oc":"#221f1f","x":29.512,"y":5.527,"w":31.83000000000001,"clr":-1,"A":"left","R":[{"T":"Please%20type%20or%20print%20in%20black%20or%20blue%20ink.%20See%20separate%20instructions.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":6.062,"y":6.622,"w":16.812000000000005,"clr":-1,"A":"left","R":[{"T":"Your%20name%20(First%2C%20MI%2C%20Last%20name)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":76.414,"y":6.622,"w":13.979,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":6.267,"y":8.468,"w":19.198999999999998,"clr":-1,"A":"left","R":[{"T":"Full-year%20resident%20and%20part-year%20resident","S":-1,"TS":[0,15.04,1,0]}]},{"oc":"#221f1f","x":19.886,"y":9.472,"w":35.698,"clr":-1,"A":"left","R":[{"T":"All%20eligible%20taxpayers%20using%20this%20form%20must%20enter%20the%20name%20of%20the%20other%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.733,"y":9.472,"w":6.791,"clr":-1,"A":"left","R":[{"T":"All%20taxpayers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.908,"y":14.137,"w":43.77199999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20name%20of%20the%20other%20state%20to%20which%20you%20paid%20tax%20on%20income%20that%20is%20also%20taxed%20by","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.908,"y":14.73,"w":6.703,"clr":-1,"A":"left","R":[{"T":"North%20Dakota","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.937,"y":16.035,"w":27.660000000000004,"clr":-1,"A":"left","R":[{"T":"Federal%20adjusted%20gross%20income%20from%20Form%20ND-1%2C%20line%20D","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.896,"y":17.017,"w":42.888999999999974,"clr":-1,"A":"left","R":[{"T":"How%20much%20of%20the%20amount%20on%20line%201a%20has%20its%20source%20in%20the%20other%20state%3F%20If%20none%2C%20to%20here%3B","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.914,"y":17.625,"w":17.495000000000005,"clr":-1,"A":"left","R":[{"T":"you%20are%20not%20eligible%20for%20this%20credit.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":28.949,"y":17.625,"w":24.171999999999993,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20proper%20amount%20to%20enter%20here%20%20%20%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.876,"y":18.683,"w":44.12200000000001,"clr":-1,"A":"left","R":[{"T":"How%20much%20of%20the%20amount%20on%20line%201b%20did%20you%20(and%20your%20spouse%2C%20if%20filing%20jointly)%20receive%20or%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.586,"y":19.283,"w":43.66899999999997,"clr":-1,"A":"left","R":[{"T":"earn%20while%20a%20resident%20of%20North%20Dakota%3F%20%20If%20none%2C%20stop%20here%3B%20you%20are%20not%20eligible%20for%20this","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":13.747,"y":19.883,"w":23.06,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20proper%20amount%20to%20enter%20here","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":8.434,"y":20.962,"w":33.112000000000016,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20amount%20for%20your%20residency%20status%20as%20follows%20%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.464,"y":21.87,"w":9.635000000000005,"clr":-1,"A":"left","R":[{"T":"Full-year%20resident%20-%20%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":21.716,"y":21.87,"w":32.777,"clr":-1,"A":"left","R":[{"T":"If%20you%20(and%20your%20spouse%2C%20if%20filing%20jointly)%20were%20full-year%20residents%2C","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.463,"y":22.462,"w":42.240999999999985,"clr":-1,"A":"left","R":[{"T":"enter%20the%20amount%20from%20Form%20ND-1%2C%20line%20D%2C%20less%20the%20amoun%20from%20Form%20ND-1%2C%20line%207.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.459,"y":23.062,"w":17.482,"clr":-1,"A":"left","R":[{"T":"Part-year%20resident%20(Not%20Supported)%20-%20%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":8.536,"y":24.698,"w":45.95199999999997,"clr":-1,"A":"left","R":[{"T":"Divide%20line%201c%20by%20line%202.%20Round%20to%20nearest%20four%20decimal%20places.%20If%20line%201c%20is%20equal%20to%20or%20more","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.598,"y":25.275,"w":12.987999999999998,"clr":-1,"A":"left","R":[{"T":"than%20line%202%2C%20enter%201.0000%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.598,"y":26.513,"w":35.22900000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20your%20North%20Dakota%20tax%20from%20Form%20ND-1%2C%20line%2020%20%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.557,"y":27.772,"w":11.708000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%20line%203","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.639,"y":28.852,"w":28.159999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20income%20tax%20paid%20to%20the%20other%20state.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":39.1,"y":28.852,"w":13.114000000000003,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20proper%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":8.552,"y":29.452,"w":10.026000000000002,"clr":-1,"A":"left","R":[{"T":"amount%20to%20enter%20here","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.795,"y":30.547,"w":7.051,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20a%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.796,"y":31.14,"w":2.4539999999999997,"clr":-1,"A":"left","R":[{"T":"both%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":13.171,"y":31.14,"w":17.121000000000006,"clr":-1,"A":"left","R":[{"T":"spouses%20were%20full-year%20residents.)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.791,"y":31.732,"w":7.051,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20a%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":17.909,"y":31.732,"w":8.763,"clr":-1,"A":"left","R":[{"T":"part-year%20resident%2C","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":29.613,"y":31.732,"w":26.924000000000003,"clr":-1,"A":"left","R":[{"T":"skip%20line%207%20and%20go%20to%20line%208.%20%20(If%20married%20filing%20jointly%2C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.793,"y":32.34,"w":6.919999999999999,"clr":-1,"A":"left","R":[{"T":"this%20applies%20if%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":23.032,"y":32.34,"w":25.666999999999994,"clr":-1,"A":"left","R":[{"T":"spouse%20was%20a%20part-year%20resident.)%20(Not%20Supported)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":6.144,"y":34.275,"w":11.610999999999997,"clr":-1,"A":"left","R":[{"T":"Full-year%20resident%20only%20-%20","S":-1,"TS":[0,15.04,1,0]}]},{"oc":"#221f1f","x":25.353,"y":34.275,"w":26.927,"clr":-1,"A":"left","R":[{"T":"Complete%20line%207%20only%20if%20you%20were%20a%20full-year%20resident.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.142,"y":34.995,"w":21.942,"clr":-1,"A":"left","R":[{"T":"(If%20married%20filing%20jointly%2C%20this%20applies%20only%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.448,"y":34.995,"w":2.444,"clr":-1,"A":"left","R":[{"T":"both%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":35.823,"y":34.995,"w":17.121000000000006,"clr":-1,"A":"left","R":[{"T":"spouses%20were%20full-year%20residents.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.249,"y":36.217,"w":38.161,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%205%20or%20line%206.%20Enter%20this%20amounton%20Form%20ND-1%2C%20line%2021","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":6.226,"y":37.875,"w":17.095,"clr":-1,"A":"left","R":[{"T":"Part-year%20resident%20(Not%20Supported)%20-%20","S":-1,"TS":[0,15.04,1,0]}]},{"oc":"#221f1f","x":8.577,"y":40.465,"w":23.646999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%201b%20(Not%20Supported)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.536,"y":41.542,"w":48.91699999999997,"clr":-1,"A":"left","R":[{"T":"Divide%20line%201c%20by%20line%208.%20Round%20to%20nearest%20four%20decimal%20places.%20%20If%20line%201c%20is%20equal%20to%20or%20more%20than","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.556,"y":42.142,"w":18.378000000000007,"clr":-1,"A":"left","R":[{"T":"line%208%2C%20enter%201.0000%20(Not%20Supported)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":8.638,"y":43.6,"w":20.033000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20line%209%20(Not%20Supported)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.6,"y":44.94,"w":46.91999999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20ofline%205%20or%20line10.%20Enter%20this%20amount%20on%20Form%20ND-1%2C%20line%2021%20(Not%20Supported)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":7.917999999999999,"y":3.5700000000000003,"w":3.7649999999999997,"clr":-1,"A":"left","R":[{"T":"ND-1CR","S":-1,"TS":[0,24.04,1,0]}]},{"oc":"#221f1f","x":35.727,"y":11.277,"w":23.406000000000006,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20a%20part-year%20resident%2C%20this%20credit%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.661,"y":11.956,"w":44.56099999999997,"clr":-1,"A":"left","R":[{"T":"allowed%20only%20if%20you%20reported%20income%20to%20North%20Dakota%20on%20Schedule%20ND-1NR%2C%20line%2016%2C%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.481,"y":12.626,"w":47.03799999999996,"clr":-1,"A":"left","R":[{"T":"(1)%20has%20its%20source%20in%20another%20state%20and%20(2)%20was%20received%20or%20earned%20while%20you%20were%20a%20resident%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.764,"y":13.32,"w":8.402000000000001,"clr":-1,"A":"left","R":[{"T":"of%20North%20Dakota.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.459,"y":23.062,"w":27.973,"clr":-1,"A":"left","R":[{"T":"If%20you%20(or%20your%20spouse%2C%20if%20filing%20jointly)%20was%20a%20part-year%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.39,"y":23.677,"w":30.102000000000007,"clr":-1,"A":"left","R":[{"T":"resident%2C%20enter%20the%20amount%20from%20Schedule%20ND-1NR%2C%20line%2016.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":36.21,"y":37.875,"w":18.113,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%208%20through%2011%20only%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.261,"y":38.558,"w":34.905,"clr":-1,"A":"left","R":[{"T":"you%20were%20apart-year%20resident.%20(If%20married%20filing%20jointly%2C%20this%20applies%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.575,"y":38.54,"w":6.1450000000000005,"clr":-1,"A":"left","R":[{"T":"spouse%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.192,"y":39.259,"w":10.902000000000003,"clr":-1,"A":"left","R":[{"T":"a%20part-year%20resident.)","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":95,"AM":1024,"x":6.043,"y":7.466,"w":69.992,"h":0.858,"TU":"Your name (First, MI, Last name)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":96,"AM":1024,"x":76.56,"y":7.536,"w":24.173,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATEID","EN":0},"TI":97,"AM":0,"x":82.391,"y":14.415,"w":17.842,"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":"number","TypeInfo":{}},"id":{"Id":"FEDLNE","EN":0},"TI":98,"AM":1024,"x":82.251,"y":15.809,"w":18.595,"h":0.912,"TU":"1a. Federal adjusted gross income from Form ND-2, Line D"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHRSTAT","EN":0},"TI":99,"AM":0,"x":82.495,"y":17.523,"w":18.48,"h":0.917,"TU":"Line 1b. How much of the amount on line 1a has its source in the other state? If non, to here your are not eligible for this credit. See instructions for proper amount to enter here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STFEDAGI","EN":0},"TI":100,"AM":0,"x":82.378,"y":19.568,"w":18.501,"h":0.915,"TU":"Line 1c. How much of the amount on line 1b did you ( and your spouse, if filing jointly), receive or earn while a resident of the North Dakota? If non, stop here; you are not eligible for this credit. See instructions for proper amount to enter here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDAGI","EN":0},"TI":101,"AM":1024,"x":82.41,"y":20.762,"w":18.501,"h":0.835,"TU":"2. Enter the applicable amount for your residency atatus as follows"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AGIRATIO","EN":0},"TI":102,"AM":1024,"x":89.843,"y":25.091,"w":11.076,"h":0.888,"TU":"3. Divide line 1c by line 2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NDTAX","EN":0},"TI":103,"AM":1024,"x":82.201,"y":26.345,"w":18.717,"h":0.888,"TU":"4. Enter the amount of your North Dakota tax from Form ND-1, line 20"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NDTAXRED","EN":0},"TI":104,"AM":1024,"x":82.356,"y":27.509,"w":18.459,"h":0.917,"TU":"5. Multiply line 4 by line 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OOSTAX","EN":0},"TI":105,"AM":0,"x":82.418,"y":29.258,"w":18.563,"h":0.915,"TU":"6. Enter the amount of income tax paid to the other state.LIne 6. Enter the amount of incomet ax paid to the other state. See instructions for proper amount to enter here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESCRED","EN":0},"TI":106,"AM":1024,"x":81.902,"y":36.001,"w":18.851,"h":0.888,"TU":"Line 7. Credit. Enter the smaller of line 5 or line 6. Enter this amount on Form ND-1, line 21."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PYFEDAGI","EN":0},"TI":107,"AM":1024,"x":81.943,"y":40.126,"w":18.81,"h":0.888,"TU":"SK) 8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PYRATIO","EN":0},"TI":108,"AM":1024,"x":89.162,"y":41.896,"w":11.591,"h":0.861},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OOSTAXRD","EN":0},"TI":109,"AM":1024,"x":82.067,"y":43.283,"w":18.521,"h":0.888,"TU":"S9) 10"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PYRESCRD","EN":0},"TI":110,"AM":1024,"x":81.572,"y":44.723,"w":18.996,"h":0.888,"TU":"11"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/nd/form/ND1SA.content.txt b/test/data/nd/form/ND1SA.content.txt new file mode 100755 index 00000000..0f080957 --- /dev/null +++ b/test/data/nd/form/ND1SA.content.txt @@ -0,0 +1,499 @@ +Employee workforce recruitment exclusion + + + + + + + + + + + + + + + + + + + +2013 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +(S7) + + +1 + + + + + + +2 +. + + + + + + + + + + + + + + +(NH) + +2 + + + + + + +3 +. + + + + + + + + + +(NL) + +3 + + + + + + +4 +. + + + + + + + + +4 + + + + + + +5 +. + + + + + + + + + + + + + + + + + + +5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Schedule +North Dakota Office of State Tax Commissioner +Statutory Adjustments +Attach to Form ND-1 +Please type or print in black or blue ink. +Your name (First, MI, Last name) +Your social security number +Complete and attach this schedule to Form ND-1if any of the adjustments listed on this schedule apply to you +Attach any required schedule (as indicated in parentheses) +Renaissance zone income exemption (Attach Schedule RZ) +New or expanding business income exemption under N.D.C.C.ch.40-57.1 +Human organ donor expense deduction +Total subtractions. Add lines 1 through 4. Enter result on Form ND-1, line 16 +ND-1SA +(CA) +1. +----------------Page (0) Break---------------- diff --git a/test/data/nd/form/ND1SA.fields.json b/test/data/nd/form/ND1SA.fields.json new file mode 100755 index 00000000..3ffef8cf --- /dev/null +++ b/test/data/nd/form/ND1SA.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"SA1","type":"number","calc":true,"value":""},{"id":"SA2","type":"number","calc":false,"value":""},{"id":"SA3","type":"number","calc":false,"value":""},{"id":"SA4","type":"number","calc":false,"value":""},{"id":"SA5","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/nd/form/ND1SA.json b/test/data/nd/form/ND1SA.json new file mode 100755 index 00000000..1717861b --- /dev/null +++ b/test/data/nd/form/ND1SA.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":6.067,"y":7.403,"w":1.0785,"l":63.895},{"x":6.067,"y":8.881,"w":1.0785,"l":63.895},{"x":70.03,"y":7.403,"w":1.0785,"l":30.929},{"x":70.03,"y":8.884,"w":1.0785,"l":30.929},{"x":5.277,"y":19.462,"w":3.237,"l":96.302},{"x":4.641,"y":1.688,"w":3.237,"l":3.085},{"x":97.754,"y":1.575,"w":3.237,"l":3.085},{"x":4.331,"y":47.866,"w":3.237,"l":3.085},{"x":97.754,"y":47.919,"w":3.237,"l":3.085}],"VLines":[{"x":6.067,"y":7.403,"w":1.0785,"l":1.478},{"x":69.962,"y":7.403,"w":1.0785,"l":1.478},{"x":100.959,"y":7.403,"w":1.0785,"l":1.481},{"x":4.641,"y":1.688,"w":3.237,"l":1.122},{"x":100.839,"y":1.575,"w":3.237,"l":1.122},{"x":4.331,"y":46.744,"w":3.237,"l":1.122},{"x":100.839,"y":46.797,"w":3.237,"l":1.122}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":76.684,"y":13.057,"w":24.049,"h":0.068,"clr":0},{"x":76.931,"y":14.437,"w":23.801,"h":0.068,"clr":0},{"x":76.869,"y":15.81,"w":23.863,"h":0.068,"clr":0},{"x":77.096,"y":17.16,"w":23.636,"h":0.068,"clr":0},{"x":76.642,"y":18.518,"w":24.09,"h":0.067,"clr":0}],"Texts":[{"x":8,"y":16.47,"w":21.415,"clr":0,"A":"left","R":[{"T":"Employee%20workforce%20recruitment%20exclusion","S":-1,"TS":[0,10.921800000000001,0,0]}]},{"x":86.561,"y":4.365,"w":2.232,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,22,1,0]}]},{"x":71.772,"y":12.307,"w":2.236,"clr":0,"A":"left","R":[{"T":"(S7)","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":75.073,"y":12.307,"w":0.636,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":5.546,"y":13.718,"w":0.636,"clr":0,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11.04,0,0]}]},{"x":6.556,"y":13.718,"w":0.71,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"x":71.772,"y":13.688,"w":2.359,"clr":0,"A":"left","R":[{"T":"(NH)","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":75.299,"y":13.688,"w":0.636,"clr":0,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":5.546,"y":15.12,"w":0.636,"clr":0,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.04,0,0]}]},{"x":6.556,"y":15.12,"w":0.71,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"x":71.937,"y":15.06,"w":2.165,"clr":0,"A":"left","R":[{"T":"(NL)","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":75.258,"y":15.06,"w":0.636,"clr":0,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":5.546,"y":16.47,"w":0.636,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.04,0,0]}]},{"x":6.556,"y":16.47,"w":1.059,"clr":0,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"x":75.506,"y":16.41,"w":0.636,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":5.546,"y":17.828,"w":0.636,"clr":0,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11.04,0,0]}]},{"x":6.556,"y":17.828,"w":0.71,"clr":0,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"x":75.031,"y":17.767,"w":0.636,"clr":0,"A":"left","R":[{"T":"5","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":5.401,"y":3.188,"w":4.528,"clr":0,"A":"left","R":[{"T":"Schedule","S":-1,"TS":[0,15,0,0]}]},{"x":25.531,"y":3.188,"w":23.91,"clr":0,"A":"left","R":[{"T":"North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":3,"TS":[0,12,0,0]}]},{"x":25.592,"y":4.342,"w":10.722999999999999,"clr":0,"A":"left","R":[{"T":"Statutory%20Adjustments","S":-1,"TS":[0,24.04,1,0]}]},{"x":82.312,"y":5.287,"w":9.722000000000001,"clr":0,"A":"left","R":[{"T":"Attach%20to%20Form%20ND-1","S":9,"TS":[0,12,1,0]}]},{"x":34.978,"y":5.325,"w":19.022000000000006,"clr":0,"A":"left","R":[{"T":"Please%20type%20or%20print%20in%20black%20or%20blue%20ink.","S":-1,"TS":[0,9.96,1,0]}]},{"x":6.185,"y":7.147,"w":16.812000000000005,"clr":0,"A":"left","R":[{"T":"Your%20name%20(First%2C%20MI%2C%20Last%20name)","S":-1,"TS":[0,9.96,0,0]}]},{"x":70.223,"y":7.147,"w":13.979,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,9.96,0,0]}]},{"x":7.629,"y":9.105,"w":52.12199999999991,"clr":0,"A":"left","R":[{"T":"Complete%20and%20attach%20this%20schedule%20to%20Form%20ND-1if%20any%20of%20the%20adjustments%20listed%20on%20this%20schedule%20apply%20to%20you","S":-1,"TS":[0,11.04,1,0]}]},{"x":7.607,"y":9.975,"w":28.064000000000007,"clr":0,"A":"left","R":[{"T":"Attach%20any%20required%20schedule%20(as%20indicated%20in%20parentheses)","S":-1,"TS":[0,11.04,1,0]}]},{"x":7.978999999999999,"y":12.368,"w":29.984,"clr":0,"A":"left","R":[{"T":"Renaissance%20zone%20income%20exemption%20(Attach%20Schedule%20RZ)%20","S":-1,"TS":[0,11.04,0,0]}]},{"x":8.041,"y":13.718,"w":36.871000000000016,"clr":0,"A":"left","R":[{"T":"New%20or%20expanding%20business%20income%20exemption%20under%20N.D.C.C.ch.40-57.1","S":-1,"TS":[0,10.921800000000001,0,0]}]},{"x":8.041,"y":15.12,"w":19.847999999999995,"clr":0,"A":"left","R":[{"T":"Human%20organ%20donor%20expense%20deduction","S":-1,"TS":[0,11.04,0,0]}]},{"x":8.041,"y":17.828,"w":38.76599999999999,"clr":0,"A":"left","R":[{"T":"Total%20subtractions.%20Add%20lines%201%20through%204.%20Enter%20result%20on%20Form%20ND-1%2C%20line%2016","S":-1,"TS":[0,11.04,0,0]}]},{"x":5.277,"y":4.387,"w":3.722,"clr":0,"A":"left","R":[{"T":"ND-1SA","S":-1,"TS":[0,24.04,1,0]}]},{"x":72.123,"y":16.41,"w":2.314,"clr":0,"A":"left","R":[{"T":"(CA)","S":-1,"TS":[0,8.892900000000001,0,0]}]},{"x":5.546,"y":12.367,"w":1.7039999999999997,"clr":0,"A":"left","R":[{"T":"1.%20%20","S":-1,"TS":[0,11.04,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":111,"AM":1024,"x":6.487,"y":8.006,"w":63.125,"h":0.859,"TU":"Your name (First, MI, Last name)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":112,"AM":1024,"x":70.104,"y":8.034,"w":30.711,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:EXPL01"}},"id":{"Id":"Add","EN":0},"TI":113,"AM":0,"x":65.353,"y":12.325,"w":6.386,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SA1","EN":0},"TI":114,"AM":1024,"x":77.058,"y":12.21,"w":23.47,"h":0.833,"TU":"Line 1. Renaissance zone income exemption."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SA2","EN":0},"TI":115,"AM":0,"x":76.931,"y":13.645,"w":23.822,"h":0.833,"TU":"Line 2. New or expanding business income exemption under N.D.C.C. ch. 40-57.1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SA3","EN":0},"TI":116,"AM":0,"x":76.869,"y":14.99,"w":23.884,"h":0.833,"TU":"Line 3. Human organ donor expense deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SA4","EN":0},"TI":117,"AM":0,"x":77.096,"y":16.34,"w":23.657,"h":0.833,"TU":"Line 4. Employee workforce recruitment exclusion."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SA5","EN":0},"TI":118,"AM":1024,"x":77.092,"y":17.67,"w":23.661,"h":0.833,"TU":"Line 5. Total subtractions. Add lines 1 through 4. Enter result on Form ND-1, line 16."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/nd/form/ND1TC.content.txt b/test/data/nd/form/ND1TC.content.txt new file mode 100755 index 00000000..31975720 --- /dev/null +++ b/test/data/nd/form/ND1TC.content.txt @@ -0,0 +1,114 @@ +Sc +he +dule +2013 +A +1. +Tax Credits +ND-1TC +2. +3. +5. +4. +(NQ) 8b +(NR) 8c +(NT) 9b +(NU) 9c +(OB) 13b +(OC) 13c +6. +7. +12. +Enter the result on Form ND-1, line 25 +Your social security number +14. +15. +16. +(OD) 14a +17. + + + +18. +19. + +Complete and attach this schedule to Form ND-1 if you are claiming any of the tax credits listed on this schedule +Attach any required schedule (as indicated in parentheses) + Agricultural commodity investment tax credit +Seed capital investment tax credit + Biodiesel or green diesel fuel supplier (wholesaler) tax credit + Biodiesel or green diesel fuel seller (retailer) tax credit +Endowment fund tax credit from passthrough entity + month of employment ended in 2012 tax year + ment to eligible employees included on line 13b + enter as follows: mm/dd/yyyy + "Partnership plan" long-term care insurance tax credit + Add lines 1 through 8a, 9a, 10a through 13a, and 14b through 20. + Carryover of unused 2009 retroactive property tax relief income tax credit +(S2) 1 +(S3) 2 +(NE) 3 +(NG) 4 +(NM) 5 +(NN) 6 +(NO) 7 +(NP) 8a +(NS) 9a +(NY) 12 +(OJ) 11b +(OE) 14b +(OF) 15 +(OG) 16 +(OI) 17 +(OK) 18 +(OL) 19 +(OM) 20 +(NZ) 21 +(NX) 11a +(NW) 10b +(NV) 10a +(OA) 13a +Please type or print in black or blue ink. See separate instructions. +Name(s) shown on return + Family member care tax credit (Attach Schedule ND-1FC) + Renaissance zone tax credit (Attach Schedule RZ) + Planned gift tax credit (Attach Schedule ND-1PG) + Geothermal energy device tax credit(only for devices installed on or after January 1, 2009): + Tax credit for wages paid to a mobilized employee (Attach Schedule ME) + Endowment fund contribution tax credit (Attach Schedule ND-1QEC) +Housing incentive fund tax credit (Attach credit certificate from ND Housing Finance Agency) +Automation tax credit +North Dakota Office of State Tax Commissioner +ttach to Form ND-1 +13. + +11. + +10. + +9. + +8. + +20. + +NEW! +21. + +Total other credits. +a. Employer internship program tax credit +b. Number of eligible interns hired in 2013 +c. Total compensation paid to eligible interns in 2013 +a. Microbusiness tax credit +b. Amount of qualifying new investment in 2013 +c. Amount of qualifying new employment in 2013 +a. Research expense tax credit +b. Research expense tax credit purchased from another taxpayer in 2013 +a. Angel fund investment tax credit +b. Carryover of angel fund investment tax credit purchased from another taxpayer +a. Workforce recruitment tax credit +b. Number of eligible employees whose 12th +c. Total compensation paid for first 12 months of employ- +a. Date on which installation of device was completed- +b. Amount of credit +----------------Page (0) Break---------------- diff --git a/test/data/nd/form/ND1TC.fields.json b/test/data/nd/form/ND1TC.fields.json new file mode 100755 index 00000000..f293132f --- /dev/null +++ b/test/data/nd/form/ND1TC.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"TC1","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"TC2","type":"number","calc":true,"value":""},{"id":"TC3","type":"number","calc":false,"value":""},{"id":"TC4","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"TC5","type":"number","calc":true,"value":""},{"id":"TC6","type":"number","calc":false,"value":""},{"id":"TC7","type":"number","calc":false,"value":""},{"id":"TC8A","type":"number","calc":false,"value":""},{"id":"TC8B","type":"number","calc":false,"value":""},{"id":"TC8C","type":"number","calc":false,"value":""},{"id":"TC9A","type":"number","calc":false,"value":""},{"id":"TC9B","type":"number","calc":false,"value":""},{"id":"TC9C","type":"number","calc":false,"value":""},{"id":"TC10A","type":"number","calc":false,"value":""},{"id":"TC10B","type":"number","calc":false,"value":""},{"id":"TC11","type":"number","calc":false,"value":""},{"id":"AFIC","type":"number","calc":false,"value":""},{"id":"TC12","type":"number","calc":false,"value":""},{"id":"TC13A","type":"number","calc":false,"value":""},{"id":"TC13B","type":"number","calc":false,"value":""},{"id":"TC13C","type":"number","calc":false,"value":""},{"id":"INSTDATE","type":"date","calc":false,"value":""},{"id":"TC14","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"TC15","type":"number","calc":true,"value":""},{"id":"TC16","type":"number","calc":false,"value":""},{"id":"TC17","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"CCEF","type":"number","calc":true,"value":""},{"id":"HIFC","type":"number","calc":false,"value":""},{"id":"ATC","type":"number","calc":false,"value":""},{"id":"TC18","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/nd/form/ND1TC.json b/test/data/nd/form/ND1TC.json new file mode 100755 index 00000000..7bb33eb3 --- /dev/null +++ b/test/data/nd/form/ND1TC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"ND1TC_Fi_f1.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"dsh":1,"clr":1,"x":50.408,"y":10.961,"w":0.09,"l":25.266},{"dsh":1,"oc":"#231f20","x":50.408,"y":10.961,"w":0.09,"l":25.266},{"dsh":1,"clr":1,"x":44.602,"y":11.996,"w":0.09,"l":31.072},{"dsh":1,"oc":"#231f20","x":44.602,"y":11.996,"w":0.09,"l":31.072},{"dsh":1,"clr":1,"x":41.126,"y":13.133,"w":0.09,"l":34.671},{"dsh":1,"oc":"#231f20","x":41.126,"y":13.133,"w":0.09,"l":34.671},{"oc":"#231f20","x":6.064,"y":6.518,"w":1.0785,"l":63.896},{"oc":"#231f20","x":6.064,"y":7.991,"w":1.0785,"l":63.896},{"oc":"#231f20","x":70.032,"y":6.518,"w":1.0785,"l":30.927},{"oc":"#231f20","x":70.032,"y":7.995,"w":1.0785,"l":30.927},{"oc":"#231f20","x":82.376,"y":11.01,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.376,"y":12.086,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.376,"y":13.166,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.376,"y":14.246,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.376,"y":15.322,"w":1.6185,"l":18.552},{"dsh":1,"clr":1,"x":33.268,"y":14.201,"w":0.09,"l":42.405},{"dsh":1,"oc":"#231f20","x":33.268,"y":14.201,"w":0.09,"l":42.405},{"dsh":1,"clr":1,"x":44.344,"y":15.214,"w":0.09,"l":31.33},{"dsh":1,"oc":"#231f20","x":44.344,"y":15.214,"w":0.09,"l":31.33},{"oc":"#231f20","x":82.366,"y":17.479,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.376,"y":16.403,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.366,"y":18.559,"w":1.6185,"l":18.552},{"oc":"#231f20","x":56.575,"y":19.733,"w":1.6185,"l":6.177},{"oc":"#231f20","x":56.575,"y":20.858,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.242,"y":22.076,"w":1.6185,"l":18.552},{"oc":"#231f20","x":56.203,"y":23.246,"w":1.6185,"l":18.552},{"oc":"#231f20","x":56.193,"y":24.323,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.366,"y":30.934,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.366,"y":29.858,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.521,"y":27.701,"w":1.6185,"l":18.542},{"oc":"#231f20","x":82.5,"y":26.621,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.521,"y":25.541,"w":1.6185,"l":18.542},{"oc":"#231f20","x":56.327,"y":32.58,"w":1.6185,"l":6.177},{"oc":"#231f20","x":56.327,"y":34.226,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.119,"y":46.455,"w":1.6185,"l":18.552},{"dsh":1,"clr":1,"x":39.053,"y":18.533,"w":0.09,"l":36.61},{"dsh":1,"oc":"#231f20","x":39.053,"y":18.533,"w":0.09,"l":36.61},{"dsh":1,"clr":1,"x":47.561,"y":17.475,"w":0.09,"l":28.236},{"dsh":1,"oc":"#231f20","x":47.561,"y":17.475,"w":0.09,"l":28.236},{"dsh":1,"clr":1,"x":51.686,"y":16.41,"w":0.09,"l":23.987},{"dsh":1,"oc":"#231f20","x":51.686,"y":16.41,"w":0.09,"l":23.987},{"dsh":1,"clr":1,"x":40.343,"y":19.665,"w":0.09,"l":9.539},{"dsh":1,"oc":"#231f20","x":40.343,"y":19.665,"w":0.09,"l":9.539},{"dsh":1,"clr":1,"x":28.875,"y":22.054,"w":0.09,"l":45.375},{"dsh":1,"oc":"#231f20","x":28.875,"y":22.054,"w":0.09,"l":45.375},{"dsh":1,"clr":1,"x":31.845,"y":25.5,"w":0.09,"l":44.086},{"dsh":1,"oc":"#231f20","x":31.845,"y":25.5,"w":0.09,"l":44.086},{"dsh":1,"clr":1,"x":61.751,"y":26.603,"w":0.09,"l":14.046},{"dsh":1,"oc":"#231f20","x":61.751,"y":26.603,"w":0.09,"l":14.046},{"dsh":1,"clr":1,"x":34.815,"y":27.638,"w":0.09,"l":41.116},{"dsh":1,"oc":"#231f20","x":34.815,"y":27.638,"w":0.09,"l":41.116},{"dsh":1,"clr":1,"x":45.901,"y":29.794,"w":0.09,"l":29.896},{"dsh":1,"oc":"#231f20","x":45.901,"y":29.794,"w":0.09,"l":29.896},{"dsh":1,"clr":1,"x":35.063,"y":30.821,"w":0.09,"l":40.992},{"dsh":1,"oc":"#231f20","x":35.063,"y":30.821,"w":0.09,"l":40.992},{"dsh":1,"clr":1,"x":43.828,"y":32.531,"w":0.09,"l":6.064},{"dsh":1,"oc":"#231f20","x":43.828,"y":32.531,"w":0.09,"l":6.064},{"dsh":1,"clr":1,"x":35.836,"y":46.388,"w":0.09,"l":39.837},{"dsh":1,"oc":"#231f20","x":35.836,"y":46.388,"w":0.09,"l":39.837},{"dsh":1,"clr":1,"x":32.866,"y":36.998,"w":0.09,"l":16.634},{"dsh":1,"oc":"#231f20","x":32.866,"y":36.998,"w":0.09,"l":16.634},{"dsh":1,"clr":1,"x":60.205,"y":39.083,"w":0.09,"l":15.603},{"dsh":1,"oc":"#231f20","x":60.205,"y":39.083,"w":0.09,"l":15.603},{"dsh":1,"clr":1,"x":47.572,"y":40.125,"w":0.09,"l":28.236},{"dsh":1,"oc":"#231f20","x":47.572,"y":40.125,"w":0.09,"l":28.236},{"oc":"#231f20","x":56.069,"y":37.043,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.242,"y":39.188,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.242,"y":40.26,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.108,"y":38.111,"w":1.6185,"l":18.552},{"dsh":1,"clr":1,"x":24.111,"y":38.018,"w":0.09,"l":51.563},{"dsh":1,"oc":"#231f20","x":24.111,"y":38.018,"w":0.09,"l":51.563},{"oc":"#231f20","x":82.253,"y":41.34,"w":1.6185,"l":18.552},{"dsh":1,"clr":1,"x":61.751,"y":41.205,"w":0.09,"l":14.056},{"dsh":1,"oc":"#231f20","x":61.751,"y":41.205,"w":0.09,"l":14.056},{"dsh":1,"clr":1,"x":67.681,"y":28.669,"w":0.09,"l":8.25},{"dsh":1,"oc":"#231f20","x":67.681,"y":28.669,"w":0.09,"l":8.25},{"oc":"#231f20","x":82.521,"y":28.778,"w":1.6185,"l":18.542},{"dsh":1,"clr":1,"x":57.111,"y":42.281,"w":0.09,"l":18.697},{"dsh":1,"oc":"#231f20","x":57.111,"y":42.281,"w":0.09,"l":18.697},{"oc":"#231f20","x":82.253,"y":42.416,"w":1.6185,"l":18.552},{"oc":"#231f20","x":82.242,"y":43.496,"w":1.6185,"l":18.552},{"dsh":1,"clr":1,"x":43.828,"y":23.198,"w":0.09,"l":5.806},{"dsh":1,"oc":"#231f20","x":43.828,"y":23.198,"w":0.09,"l":5.806},{"dsh":1,"clr":1,"x":44.591,"y":24.255,"w":0.09,"l":5.033},{"dsh":1,"oc":"#231f20","x":44.591,"y":24.255,"w":0.09,"l":5.033},{"dsh":1,"clr":1,"x":46.788,"y":20.768,"w":0.09,"l":3.217},{"dsh":1,"oc":"#231f20","x":46.788,"y":20.768,"w":0.09,"l":3.217},{"oc":"#231f20","x":82.242,"y":44.576,"w":1.6185,"l":18.552},{"dsh":1,"clr":1,"x":29.133,"y":44.46,"w":0.09,"l":46.922},{"dsh":1,"oc":"#231f20","x":29.133,"y":44.46,"w":0.09,"l":46.922},{"clr":1,"x":4.022,"y":1.462,"w":0.09,"l":4.311},{"clr":1,"x":4.022,"y":3.03,"w":0.09,"l":4.311},{"oc":"#231f20","x":4.641,"y":1.688,"w":3.237,"l":3.083},{"clr":1,"x":97.134,"y":1.35,"w":0.09,"l":4.311},{"clr":1,"x":97.134,"y":2.917,"w":0.09,"l":4.311},{"oc":"#231f20","x":97.752,"y":1.575,"w":3.237,"l":3.083},{"clr":1,"x":3.713,"y":46.571,"w":0.09,"l":4.311},{"clr":1,"x":3.713,"y":48.139,"w":0.09,"l":4.311},{"oc":"#231f20","x":4.331,"y":47.918,"w":3.237,"l":3.083},{"clr":1,"x":97.134,"y":46.571,"w":0.09,"l":4.311},{"clr":1,"x":97.134,"y":48.139,"w":0.09,"l":4.311},{"oc":"#231f20","x":97.752,"y":47.918,"w":3.237,"l":3.083},{"clr":1,"x":96.076,"y":1.237,"w":0.09,"l":0.419},{"clr":1,"x":96.076,"y":3.03,"w":0.09,"l":0.419},{"clr":1,"x":96.076,"y":1.459,"w":0.09,"l":0.419},{"clr":1,"x":96.076,"y":2.805,"w":0.09,"l":0.419}],"VLines":[{"oc":"#231f20","x":6.064,"y":6.518,"w":1.0785,"l":1.474},{"oc":"#231f20","x":69.96,"y":6.518,"w":1.0785,"l":1.474},{"oc":"#231f20","x":100.96,"y":6.518,"w":1.0785,"l":1.478},{"clr":1,"x":4.022,"y":1.462,"w":0.09,"l":1.568},{"clr":1,"x":8.333,"y":1.462,"w":0.09,"l":1.568},{"oc":"#231f20","x":4.641,"y":1.688,"w":3.237,"l":1.121},{"clr":1,"x":97.134,"y":1.35,"w":0.09,"l":1.567},{"clr":1,"x":101.444,"y":1.35,"w":0.09,"l":1.567},{"oc":"#231f20","x":100.836,"y":1.575,"w":3.237,"l":1.121},{"clr":1,"x":3.713,"y":46.571,"w":0.09,"l":1.568},{"clr":1,"x":8.023,"y":46.571,"w":0.09,"l":1.568},{"oc":"#231f20","x":4.331,"y":46.796,"w":3.237,"l":1.121},{"clr":1,"x":97.134,"y":46.571,"w":0.09,"l":1.568},{"clr":1,"x":101.444,"y":46.571,"w":0.09,"l":1.568},{"oc":"#231f20","x":100.836,"y":46.796,"w":3.237,"l":1.121},{"clr":1,"x":96.494,"y":1.238,"w":0.09,"l":1.792},{"clr":1,"x":96.494,"y":1.459,"w":0.09,"l":1.346}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":82.376,"y":9.938,"w":18.542,"h":1.069,"clr":1},{"x":82.366,"y":16.403,"w":18.542,"h":1.072,"clr":1}],"Texts":[{"oc":"#231f20","x":8.639,"y":1.924,"w":1.1974,"clr":-1,"A":"left","R":[{"T":"Sc","S":-1,"TS":[0,15.0239,0,0]}]},{"oc":"#231f20","x":11.117,"y":1.924,"w":1.2214,"clr":-1,"A":"left","R":[{"T":"he","S":-1,"TS":[0,15.0239,0,0]}]},{"oc":"#231f20","x":13.654,"y":1.924,"w":7.333800000000002,"clr":-1,"A":"left","R":[{"T":"dule%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,15.0239,0,0]}]},{"oc":"#231f20","x":86.489,"y":3.5620000000000003,"w":2.2308000000000003,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,22,1,0]}]},{"oc":"#231f20","x":82.24,"y":4.492,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.938,"y":10.208,"w":1.0198,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":28.625,"y":3.217,"w":5.468,"clr":-1,"A":"left","R":[{"T":"Tax%20Credits","S":-1,"TS":[0,24.0159,1,0]}]},{"oc":"#231f20","x":8.516,"y":3.128,"w":3.672,"clr":-1,"A":"left","R":[{"T":"ND-1TC","S":-1,"TS":[0,24.0159,1,0]}]},{"oc":"#231f20","x":5.938,"y":11.284,"w":1.0198,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":6.061,"y":12.364,"w":1.0198,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":5.938,"y":14.52,"w":1.0198,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":6.061,"y":13.444,"w":1.0198,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":51.024,"y":18.908,"w":4.5343,"clr":-1,"A":"left","R":[{"T":"(NQ)%208b","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":51.22,"y":20.033,"w":4.3546000000000005,"clr":-1,"A":"left","R":[{"T":"(NR)%208c","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":50.838,"y":22.421,"w":4.367,"clr":-1,"A":"left","R":[{"T":"(NT)%209b","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":50.797,"y":23.498,"w":4.386,"clr":-1,"A":"left","R":[{"T":"(NU)%209c","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":50.106,"y":31.755000000000003,"w":5.169,"clr":-1,"A":"left","R":[{"T":"(OB)%2013b","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":50.281,"y":33.401,"w":5.0176,"clr":-1,"A":"left","R":[{"T":"(OC)%2013c","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":5.938,"y":15.690000000000001,"w":0.38380000000000003,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":6.061,"y":16.714,"w":0.38380000000000003,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":5.154,"y":29.055,"w":2.3895,"clr":-1,"A":"left","R":[{"T":"12.%20%20","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.904,"y":45.63,"w":19.8076,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20result%20on%20Form%20ND-1%2C%20line%2025","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":69.988,"y":6.251,"w":13.806199999999999,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":4.896,"y":34.493,"w":1.6657000000000002,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":5.029,"y":38.333,"w":1.6657000000000002,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":5.03,"y":39.405,"w":1.0297,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":49.456,"y":36.218,"w":5.5517,"clr":-1,"A":"left","R":[{"T":"(OD)%20%2014a","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":5.03,"y":40.489,"w":1.0297,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":5.03,"y":41.565,"w":2.0276,"clr":-1,"A":"left","R":[{"T":"18.%20","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":4.896,"y":42.694,"w":2.3895,"clr":-1,"A":"left","R":[{"T":"19.%20%20","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.618,"y":8.002,"w":63.028499999999994,"clr":-1,"A":"left","R":[{"T":"Complete%20and%20attach%20this%20schedule%20to%20Form%20ND-1%20if%20you%20are%20claiming%20any%20of%20the%20tax%20credits%20listed%20on%20this%20schedule","S":-1,"TS":[0,10.991900000000001,1,0]}]},{"oc":"#231f20","x":7.557,"y":8.707,"w":33.855599999999995,"clr":-1,"A":"left","R":[{"T":"Attach%20any%20required%20schedule%20(as%20indicated%20in%20parentheses)","S":-1,"TS":[0,10.991900000000001,1,0]}]},{"oc":"#231f20","x":7.546,"y":12.364,"w":23.892200000000003,"clr":-1,"A":"left","R":[{"T":"%20%20Agricultural%20commodity%20investment%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.454,"y":13.443,"w":17.522199999999994,"clr":-1,"A":"left","R":[{"T":"Seed%20capital%20investment%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.44,"y":15.690000000000001,"w":30.993999999999982,"clr":-1,"A":"left","R":[{"T":"%20%20Biodiesel%20or%20green%20diesel%20fuel%20supplier%20(wholesaler)%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.564,"y":16.714,"w":27.96979999999999,"clr":-1,"A":"left","R":[{"T":"%20%20Biodiesel%20or%20green%20diesel%20fuel%20seller%20(retailer)%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.577,"y":29.055,"w":26.583000000000002,"clr":-1,"A":"left","R":[{"T":"Endowment%20fund%20tax%20credit%20from%20passthrough%20entity","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.811,"y":31.804000000000002,"w":25.422600000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20month%20of%20employment%20ended%20in%202012%20tax%20year","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.774,"y":33.402,"w":26.290000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20ment%20to%20eligible%20employees%20included%20on%20line%2013b","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.564,"y":36.124,"w":17.236200000000004,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20enter%20as%20follows%3A%20mm%2Fdd%2Fyyyy","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.522,"y":39.405,"w":27.832799999999988,"clr":-1,"A":"left","R":[{"T":"%20%20%22Partnership%20plan%22%20long-term%20care%20insurance%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":18.605,"y":45.034,"w":34.889800000000015,"clr":-1,"A":"left","R":[{"T":"%20%20Add%20lines%201%20through%208a%2C%209a%2C%2010a%20through%2013a%2C%20and%2014b%20through%2020.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.505,"y":40.489,"w":38.836600000000004,"clr":-1,"A":"left","R":[{"T":"%20%20Carryover%20of%20unused%202009%20retroactive%20property%20tax%20relief%20income%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":77.455,"y":10.185,"w":3.5606,"clr":-1,"A":"left","R":[{"T":"(S2)%201","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":77.455,"y":11.261,"w":3.5606,"clr":-1,"A":"left","R":[{"T":"(S3)%202","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":77.383,"y":12.341,"w":3.6684,"clr":-1,"A":"left","R":[{"T":"(NE)%203","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":77.228,"y":13.422,"w":3.7927999999999997,"clr":-1,"A":"left","R":[{"T":"(NG)%204","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":77.283,"y":14.498,"w":3.9232,"clr":-1,"A":"left","R":[{"T":"(NM)%205","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":77.379,"y":15.578,"w":3.8755999999999995,"clr":-1,"A":"left","R":[{"T":"(NN)%206","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":77.355,"y":16.655,"w":3.8324,"clr":-1,"A":"left","R":[{"T":"(NO)%207","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":77.314,"y":17.735,"w":4.3870000000000005,"clr":-1,"A":"left","R":[{"T":"(NP)%208a","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.867,"y":21.252,"w":4.363300000000001,"clr":-1,"A":"left","R":[{"T":"(NS)%209a","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.393,"y":29.034,"w":4.434699999999999,"clr":-1,"A":"left","R":[{"T":"(NY)%2012","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.671,"y":27.954,"w":4.965199999999999,"clr":-1,"A":"left","R":[{"T":"(OJ)%2011b","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.479,"y":37.287,"w":5.0884,"clr":-1,"A":"left","R":[{"T":"(OE)%2014b","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.667,"y":38.364,"w":4.3563,"clr":-1,"A":"left","R":[{"T":"(OF)%2015","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.502,"y":39.436,"w":4.518,"clr":-1,"A":"left","R":[{"T":"(OG)%2016","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.811,"y":40.516,"w":4.251600000000001,"clr":-1,"A":"left","R":[{"T":"(OI)%2017","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.564,"y":41.593,"w":4.478,"clr":-1,"A":"left","R":[{"T":"(OK)%2018","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.859,"y":42.673,"w":4.3475,"clr":-1,"A":"left","R":[{"T":"(OL)%2019","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.464,"y":43.753,"w":5.0012,"clr":-1,"A":"left","R":[{"T":"(OM)%20%2020","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.701,"y":45.632,"w":4.3883,"clr":-1,"A":"left","R":[{"T":"(NZ)%2021","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.515,"y":26.878,"w":5.1290000000000004,"clr":-1,"A":"left","R":[{"T":"(NX)%2011a","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.271,"y":25.798,"w":5.5232,"clr":-1,"A":"left","R":[{"T":"(NW)%2010b","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.694,"y":24.718,"w":5.1290000000000004,"clr":-1,"A":"left","R":[{"T":"(NV)%2010a","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":76.337,"y":30.11,"w":5.1576,"clr":-1,"A":"left","R":[{"T":"(OA)%2013a","S":-1,"TS":[0,8.9759,1,0]}]},{"oc":"#231f20","x":6.061,"y":5.411,"w":31.795499999999976,"clr":-1,"A":"left","R":[{"T":"Please%20type%20or%20print%20in%20black%20or%20blue%20ink.%20See%20separate%20instructions.","S":-1,"TS":[0,9.9839,1,0]}]},{"oc":"#231f20","x":6.061,"y":6.251,"w":12.801699999999999,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":7.425,"y":10.208,"w":30.57420000000001,"clr":-1,"A":"left","R":[{"T":"%20%20Family%20member%20care%20tax%20credit%20%20(Attach%20Schedule%20ND-1FC)","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.438,"y":11.284,"w":25.431,"clr":-1,"A":"left","R":[{"T":"%20%20Renaissance%20zone%20tax%20credit%20%20(Attach%20Schedule%20RZ)","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.423,"y":14.52,"w":26.311499999999995,"clr":-1,"A":"left","R":[{"T":"%20%20Planned%20gift%20tax%20credit%20%20(Attach%20Schedule%20ND-1PG)","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.371,"y":34.493,"w":47.53500000000001,"clr":-1,"A":"left","R":[{"T":"%20%20Geothermal%20energy%20device%20tax%20credit(only%20for%20devices%20installed%20on%20or%20after%20January%201%2C%202009)%3A","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.52,"y":38.333,"w":37.11839999999998,"clr":-1,"A":"left","R":[{"T":"%20%20Tax%20credit%20for%20wages%20paid%20to%20a%20mobilized%20employee%20(Attach%20Schedule%20ME)","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.994999999999999,"y":41.565,"w":33.873,"clr":-1,"A":"left","R":[{"T":"%20Endowment%20fund%20contribution%20tax%20credit%20(Attach%20Schedule%20ND-1QEC)","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.309,"y":42.694,"w":46.506400000000006,"clr":-1,"A":"left","R":[{"T":"Housing%20incentive%20fund%20tax%20credit%20(Attach%20credit%20certificate%20from%20ND%20Housing%20Finance%20Agency)","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":11.84,"y":43.774,"w":10.835700000000003,"clr":-1,"A":"left","R":[{"T":"Automation%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":28.78,"y":1.924,"w":23.833500000000008,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.446,"y":4.492,"w":8.9712,"clr":-1,"A":"left","R":[{"T":"ttach%20to%20Form%20ND-1","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.276,"y":30.128,"w":1.6633,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":5.297,"y":26.903,"w":1.663,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":5.297,"y":24.784,"w":1.6633,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":6.059,"y":21.361,"w":1.0178,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":6.059,"y":17.791,"w":1.0178,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":4.894,"y":43.775,"w":1.6696,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.165,"y":43.775,"w":2.777,"clr":-1,"A":"left","R":[{"T":"NEW!%20","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":4.894,"y":45.035,"w":1.6591,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.8919999999999995,"y":45.035,"w":9.727000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20other%20credits.","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.434,"y":17.791,"w":21.885800000000003,"clr":-1,"A":"left","R":[{"T":"a.%20%20Employer%20internship%20program%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.639,"y":18.934,"w":21.72519999999999,"clr":-1,"A":"left","R":[{"T":"b.%20%20Number%20of%20eligible%20interns%20hired%20in%202013","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.639,"y":20.055,"w":26.93700000000001,"clr":-1,"A":"left","R":[{"T":"c.%20%20Total%20compensation%20paid%20to%20eligible%20interns%20in%202013","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.434,"y":21.361,"w":14.0382,"clr":-1,"A":"left","R":[{"T":"a.%20%20Microbusiness%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.511,"y":22.433,"w":24.61259999999999,"clr":-1,"A":"left","R":[{"T":"b.%20%20Amount%20of%20qualifying%20new%20investment%20in%202013","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.636,"y":23.513,"w":25.0716,"clr":-1,"A":"left","R":[{"T":"c.%20%20Amount%20of%20qualifying%20new%20employment%20in%202013","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.538,"y":24.784,"w":16.176099999999998,"clr":-1,"A":"left","R":[{"T":"a.%20%20Research%20expense%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.601,"y":25.819,"w":37.24779999999997,"clr":-1,"A":"left","R":[{"T":"b.%20%20Research%20expense%20tax%20credit%20purchased%20from%20another%20taxpayer%20in%202013","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.537,"y":26.903,"w":18.480000000000004,"clr":-1,"A":"left","R":[{"T":"a.%20%20Angel%20fund%20investment%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.684,"y":27.979,"w":41.711600000000004,"clr":-1,"A":"left","R":[{"T":"b.%20%20Carryover%20of%20angel%20fund%20investment%20tax%20credit%20purchased%20from%20another%20taxpayer","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.538,"y":30.128,"w":18.4606,"clr":-1,"A":"left","R":[{"T":"a.%20%20Workforce%20recruitment%20tax%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.639,"y":31.204,"w":22.74439999999999,"clr":-1,"A":"left","R":[{"T":"b.%20%20Number%20of%20eligible%20employees%20whose%2012th","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.601,"y":32.801,"w":29.2804,"clr":-1,"A":"left","R":[{"T":"c.%20%20Total%20compensation%20paid%20for%20first%2012%20months%20of%20employ-","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.392,"y":35.524,"w":28.279500000000013,"clr":-1,"A":"left","R":[{"T":"a.%20%20Date%20on%20which%20installation%20of%20device%20was%20completed-","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":8.516,"y":37.26,"w":10.088999999999999,"clr":-1,"A":"left","R":[{"T":"b.%20%20Amount%20of%20credit","S":-1,"TS":[0,10.991900000000001,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":119,"AM":1024,"x":6.188,"y":7.114,"w":63.05,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":120,"AM":1024,"x":70.703,"y":7.141,"w":29.662,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:EXPL01"}},"id":{"Id":"Add","EN":0},"TI":121,"AM":0,"x":69.092,"y":10.026,"w":6.535,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC1","EN":0},"TI":122,"AM":1024,"x":82.001,"y":10.043,"w":19.318,"h":0.914,"TU":"1. Family member care tax credit (Attach Schedule ND-1FC"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:EXPL01"}},"id":{"Id":"Add","EN":0},"TI":123,"AM":0,"x":69.105,"y":11.103,"w":6.535,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC2","EN":0},"TI":124,"AM":1024,"x":82.175,"y":11.21,"w":18.845,"h":0.833,"TU":"2. Renaissance zone tax credit (Attach Schedule RZ"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC3","EN":0},"TI":125,"AM":0,"x":82.228,"y":12.29,"w":18.915,"h":0.833,"TU":"3. Agricultural commodity investment tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC4","EN":0},"TI":126,"AM":0,"x":82.156,"y":13.351,"w":18.938,"h":0.846,"TU":"4. Seed capital investment tax credit"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:EXPL01"}},"id":{"Id":"Add","EN":0},"TI":127,"AM":0,"x":69.093,"y":14.26,"w":6.535,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC5","EN":0},"TI":128,"AM":1024,"x":82.301,"y":14.512,"w":18.943,"h":0.833,"TU":"5. Planned gift tax credit (Attach Schedule ND-1PG"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC6","EN":0},"TI":129,"AM":0,"x":82.457,"y":15.513,"w":18.638,"h":0.834,"TU":"6. Biodiesel or green diesel fuel supplier (wholesaler) tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC7","EN":0},"TI":130,"AM":0,"x":82.15,"y":16.592,"w":18.918,"h":0.833,"TU":"7. Biodiesel or green diesel fuel seller (retailer) tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC8A","EN":0},"TI":131,"AM":0,"x":82.316,"y":17.647,"w":18.703,"h":0.859,"TU":"8. a. Employer internshipprogram tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC8B","EN":0},"TI":132,"AM":0,"x":56.439,"y":18.751,"w":6.521,"h":0.914,"TU":"b. Number of eligible interns hired in 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC8C","EN":0},"TI":133,"AM":0,"x":56.456,"y":19.925,"w":18.906,"h":0.833,"TU":"c. Total compensation paid to eligible interns in 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC9A","EN":0},"TI":134,"AM":0,"x":82.106,"y":21.142,"w":18.689,"h":0.834,"TU":"9. a. Microbusiness tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC9B","EN":0},"TI":135,"AM":0,"x":56.331,"y":22.328,"w":18.435,"h":0.833,"TU":"b. Amount of qualifying new investment in 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC9C","EN":0},"TI":136,"AM":0,"x":56.196,"y":23.448,"w":18.475,"h":0.833,"TU":"c. Amount of qualifying new employment in 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC10A","EN":0},"TI":137,"AM":0,"x":82.68,"y":24.538,"w":18.458,"h":0.889,"TU":"10. a. Research expense tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC10B","EN":0},"TI":138,"AM":0,"x":82.49,"y":25.687,"w":18.729,"h":0.834,"TU":"b. Research expense tax credit purchased from another taxpayer in 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC11","EN":0},"TI":139,"AM":0,"x":82.431,"y":26.833,"w":18.408,"h":0.833,"TU":"11. a. Angel fund investment tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AFIC","EN":0},"TI":140,"AM":0,"x":82.59,"y":27.893,"w":18.248,"h":0.833,"TU":"b. Carryover of angel fund investment tax credit purchased from another taxpayer"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC12","EN":0},"TI":141,"AM":0,"x":82.426,"y":28.993,"w":18.568,"h":0.833,"TU":"12. Endowment fund tax credit from passthrough entity"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC13A","EN":0},"TI":142,"AM":0,"x":82.528,"y":30.12,"w":18.434,"h":0.833,"TU":"13. a. Workforce recruitment tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC13B","EN":0},"TI":143,"AM":0,"x":56.406,"y":31.566,"w":6.105,"h":0.914,"TU":"month of employment ended in 2012 tax year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC13C","EN":0},"TI":144,"AM":0,"x":56.244,"y":33.331,"w":18.769,"h":0.833,"TU":"Total compensation paid for first 12 months of employment to eligible employees included on line 13b"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"INSTDATE","EN":0},"TI":145,"AM":0,"x":56.139,"y":36.075,"w":18.857,"h":0.868,"TU":"enter as follows: mm/dd/yyyy","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC14","EN":0},"TI":146,"AM":0,"x":82.282,"y":37.216,"w":18.438,"h":0.833,"TU":"b. Amount of credit"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:EXPL01"}},"id":{"Id":"Add","EN":0},"TI":147,"AM":0,"x":69.036,"y":38.142,"w":6.535,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC15","EN":0},"TI":148,"AM":1024,"x":82.215,"y":38.322,"w":18.424,"h":0.833,"TU":"15. Tax credit for wages paid to a mobilized employee (Attach Schedule ME"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC16","EN":0},"TI":149,"AM":0,"x":82.245,"y":39.534,"w":18.694,"h":0.833,"TU":"16. \"Partnershipplan\" long-term care insurance tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC17","EN":0},"TI":150,"AM":0,"x":82.265,"y":40.616,"w":18.45,"h":0.833,"TU":"17. Carryover of unused 2009 retroactive property tax relief income tax credit"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:EXPL01"}},"id":{"Id":"Add","EN":0},"TI":151,"AM":0,"x":69.092,"y":41.321,"w":6.535,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CCEF","EN":0},"TI":152,"AM":1024,"x":82.191,"y":41.694,"w":18.748,"h":0.833,"TU":"18. Endowment fund contribution tax credit (Attach Schedule ND-1QEC"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HIFC","EN":0},"TI":153,"AM":0,"x":82.17,"y":42.772,"w":18.748,"h":0.833,"TU":"Housing incentive fund credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ATC","EN":0},"TI":154,"AM":0,"x":82.278,"y":43.572,"w":18.534,"h":0.915,"TU":"20. NEW! Automation tax credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TC18","EN":0},"TI":155,"AM":1024,"x":81.944,"y":45.64,"w":18.926,"h":0.833,"TU":"Enter the result on Form ND-1, line 25"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/nd/form/NDEZ.content.txt b/test/data/nd/form/NDEZ.content.txt new file mode 100755 index 00000000..9771a57f --- /dev/null +++ b/test/data/nd/form/NDEZ.content.txt @@ -0,0 +1,155 @@ +1. Single +2. Married filing jointly +3. Married filing separately +4. Head of household +5. Qualifying widow(er) + 7. Tax due - +If line 3 is LESS than line 2, subtract line 3 from line 2. + + 1. Federal taxable income +from line 43 of Form 1040, line 27 of Form 1040A, + or line 6 of Form 1040EZ. +A. +from line 37 of Form 1040, + 3. +9. Balance due. +ND State Tax Commissioner +Mailing address +City +State +Zip code +2013 +If line 3 is MORE than line 2, subtract line 2 from line 3; +Deceased +(SX) D +Your social security number* +Spouse's social security number* +(ND) 1 +(SF) 3 +(SZ) 7 +9 +Apt No. + 2. Tax - +(SB) 2 +(SG) 4 +5 +5. + contribution to: +Watchable +Wildlife Fund +(SP) +Trees For ND +(SW) +Enter +total +6. Refund. +Subtract line 5 from line 4. +To +8 +(SU) +(SY) +Enter +total +I declare that this return is correct and complete to the best of my knowledge and belief. +* +Privacy Act - See inside front cover of booklet. +This Space Is For Tax Department Use Only +Phone number +( +land line +) +Spouse's signature +Paid +p +re +p +arer si +g +nature PTIN Date +I authorize the ND Office of State Tax Commissioner to +discuss this return with the paid preparer. +Phone no. +Print name of paid preparer +it +Date +Type of account +Checking +Savings +c. +C. +Income source code: + +Tax calculation +Refund +Tax due +Form +ND- +North Dakota Office of State Tax Commissioner +Individual income tax return +for full-year residents with no adjustments or credits +Cell +p +hone no. +Mail to: Office of State Tax Commissioner, +PO Box 5621, Bismarck, ND 58506-5621 +B. +School district code: + +For a complete return, you must complete Line D. If zero, enter 0. +Deceased +Extension +extension of time to file +Routing number: +a. +b. +Account number: +8. + contribution to: +Watchable +Wildlife Fund +Trees For ND +IIT +Date of death +Date of death +MI +Last name +Your first name +MI +Last name +If joint return, spouse's first name +Fill in if you obtained an +your return: (See page 9) +Filing status used on federal return: +(Fill in only one) +(See page 19) +(See page 9) +with dependent child +Federal adjusted gross income + D. +Federal adjusted gross income +line 21 of Form 1040A, or line 4 of Form 1040EZ +This is your North Dakota taxable income +Enter tax on amount on line 1 from Tax Table on page 20 of instructions +North Dakota withholding(Attach W-2s, 1099s, and/or North Dakota K-1s) +Tax paid + 4. +Overpayment - +otherwise, go to line 7. +If less than $5.00, enter 0 +Voluntary +Program Trust Fund +If less than $5.00, enter 0 +direct deposit +refund, complete items +If less than $5.00, enter 0 +Program Trust Fund +Add lines 7 and 8. Pay to: +For a complete return, you must attach a copy of your 2013 federal tax return +Your signature +Date +(SR) +6 +Voluntary +EZ +a, b, and c. (See page 9) +----------------Page (0) Break---------------- diff --git a/test/data/nd/form/NDEZ.fields.json b/test/data/nd/form/NDEZ.fields.json new file mode 100755 index 00000000..3d1f6687 --- /dev/null +++ b/test/data/nd/form/NDEZ.fields.json @@ -0,0 +1 @@ +[{"id":"TPDECD","type":"box","calc":false,"value":""},{"id":"SPDECD","type":"box","calc":false,"value":""},{"id":"RXE","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"ACCTRB","type":"radio","calc":false,"value":"CHECKING"},{"id":"ACCTRB","type":"radio","calc":false,"value":"SAVINGS"},{"id":"AUTHX","type":"box","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"TPINIT","type":"mask","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"TPDOD","type":"date","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SPINIT","type":"mask","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"SPDOD","type":"date","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"APTNO","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"SCHID1","type":"mask","calc":false,"value":""},{"id":"SCHID2","type":"mask","calc":false,"value":""},{"id":"Fed_Attach","type":"link","calc":false,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"INCSRC","type":"alpha","calc":false,"value":""},{"id":"FEDAGI","type":"number","calc":true,"value":""},{"id":"FEDINC","type":"number","calc":false,"value":""},{"id":"TAX1","type":"number","calc":false,"value":""},{"id":"WITHHOLD","type":"number","calc":false,"value":""},{"id":"OVERPAY","type":"number","calc":true,"value":""},{"id":"WILDFUN1","type":"number","calc":false,"value":""},{"id":"TREEFUN1","type":"number","calc":false,"value":""},{"id":"FUNDTOT1","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"ROUTNUM","type":"mask","calc":false,"value":""},{"id":"ACCTNUM","type":"mask","calc":false,"value":""},{"id":"TAXDUE","type":"number","calc":true,"value":""},{"id":"WILDFUN2","type":"number","calc":false,"value":""},{"id":"TREEFUN2","type":"number","calc":false,"value":""},{"id":"FUNDTOT2","type":"number","calc":true,"value":""},{"id":"BALDUE","type":"number","calc":true,"value":""},{"id":"Add_ND_1V","type":"link","calc":false,"value":""},{"id":"DPHONE","type":"phone","calc":false,"value":""},{"id":"CELL","type":"phone","calc":false,"value":""},{"id":"PREPNAME","type":"alpha","calc":true,"value":"Self- Prepared"}] \ No newline at end of file diff --git a/test/data/nd/form/NDEZ.json b/test/data/nd/form/NDEZ.json new file mode 100755 index 00000000..ca43eca9 --- /dev/null +++ b/test/data/nd/form/NDEZ.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"28702.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":3.98,"y":34.344,"w":0.09,"l":8.334},{"oc":"#231f20","x":3.98,"y":35.17,"w":0.09,"l":8.334},{"oc":"#231f20","x":4.093,"y":25.959,"w":0.09,"l":7.84},{"oc":"#231f20","x":4.093,"y":26.846,"w":0.09,"l":7.84},{"oc":"#231f20","x":3.857,"y":23.808,"w":0.09,"l":8.684},{"oc":"#231f20","x":3.857,"y":24.691,"w":0.09,"l":8.684},{"oc":"#231f20","x":4.124,"y":19.644,"w":0.09,"l":14.528},{"oc":"#231f20","x":4.124,"y":20.497,"w":0.09,"l":14.528},{"oc":"#231f20","x":4.495,"y":8.836,"w":2.154,"l":55.734},{"oc":"#231f20","x":4.495,"y":5.97,"w":2.154,"l":55.734},{"oc":"#231f20","x":4.495,"y":7.4,"w":2.154,"l":55.734},{"dsh":1,"clr":1,"x":46.287,"y":19.386,"w":0.09,"l":27.532},{"dsh":1,"oc":"#231f20","x":46.287,"y":19.386,"w":0.09,"l":27.532},{"dsh":1,"clr":1,"x":65.064,"y":22.222,"w":0.09,"l":8.92},{"dsh":1,"oc":"#231f20","x":65.064,"y":22.222,"w":0.09,"l":8.92},{"dsh":1,"clr":1,"x":66.484,"y":25.529,"w":0.09,"l":7.377},{"dsh":1,"oc":"#231f20","x":66.484,"y":25.529,"w":0.09,"l":7.377},{"oc":"#231f20","x":4.669,"y":11.854,"w":2.154,"l":34.56},{"oc":"#231f20","x":4.669,"y":13.474,"w":2.154,"l":34.56},{"oc":"#231f20","x":39.229,"y":11.858,"w":2.154,"l":9.558},{"oc":"#231f20","x":39.229,"y":13.478,"w":2.154,"l":9.558},{"oc":"#231f20","x":4.727,"y":10.266,"w":2.154,"l":43.656},{"oc":"#231f20","x":48.859,"y":13.474,"w":2.154,"l":11.41},{"dsh":1,"clr":1,"x":31.78,"y":36.749,"w":0.09,"l":41.854},{"dsh":1,"oc":"#231f20","x":31.78,"y":36.749,"w":0.09,"l":41.854},{"dsh":1,"clr":1,"x":66.35,"y":39.63,"w":0.09,"l":12.439},{"dsh":1,"oc":"#231f20","x":66.35,"y":39.63,"w":0.09,"l":12.439},{"oc":"#231f20","x":3.98,"y":16.954,"w":2.154,"l":95.036},{"oc":"#231f20","x":60.249,"y":13.471,"w":2.154,"l":38.336},{"oc":"#231f20","x":4.073,"y":19.7,"w":2.154,"l":94.82},{"dsh":1,"clr":1,"x":51.174,"y":28.387,"w":0.09,"l":22.861},{"dsh":1,"oc":"#231f20","x":51.174,"y":28.387,"w":0.09,"l":22.861},{"oc":"#231f20","x":60.393,"y":5.959,"w":2.154,"l":8.005},{"oc":"#231f20","x":60.393,"y":7.392,"w":2.154,"l":8.005},{"oc":"#231f20","x":60.393,"y":8.836,"w":2.154,"l":8.005},{"oc":"#231f20","x":80.898,"y":19.449,"w":1.6155,"l":18.509},{"oc":"#231f20","x":77.493,"y":5.959,"w":2.154,"l":20.968},{"oc":"#231f20","x":77.493,"y":7.392,"w":2.154,"l":20.968},{"oc":"#231f20","x":77.554,"y":8.847,"w":2.154,"l":20.968},{"oc":"#231f20","x":80.836,"y":22.244,"w":1.6155,"l":18.509},{"oc":"#231f20","x":80.795,"y":25.619,"w":1.6155,"l":18.509},{"oc":"#231f20","x":80.888,"y":36.757,"w":1.6155,"l":18.499},{"oc":"#231f20","x":80.764,"y":39.765,"w":1.6155,"l":18.499},{"dsh":1,"clr":1,"x":69.313,"y":23.352,"w":0.09,"l":4.846},{"dsh":1,"oc":"#231f20","x":69.313,"y":23.352,"w":0.09,"l":4.846},{"oc":"#231f20","x":80.641,"y":23.382,"w":1.6155,"l":18.499},{"oc":"#231f20","x":80.826,"y":28.406,"w":1.6155,"l":18.499},{"oc":"#231f20","x":80.919,"y":30.262,"w":1.6155,"l":18.509},{"oc":"#231f20","x":35.741,"y":30.329,"w":1.6155,"l":7.398},{"oc":"#231f20","x":63.788,"y":30.34,"w":1.6155,"l":7.387},{"dsh":1,"clr":1,"x":77.03,"y":30.243,"w":0.09,"l":1.893},{"dsh":1,"oc":"#231f20","x":77.03,"y":30.243,"w":0.09,"l":1.893},{"dsh":1,"clr":1,"x":61.082,"y":31.216,"w":0.09,"l":14.312},{"dsh":1,"oc":"#231f20","x":61.082,"y":31.216,"w":0.09,"l":14.312},{"oc":"#231f20","x":80.836,"y":31.336,"w":1.6155,"l":18.509},{"oc":"#231f20","x":80.898,"y":38.586,"w":1.6155,"l":18.509},{"oc":"#231f20","x":35.36,"y":38.598,"w":1.6155,"l":7.398},{"oc":"#231f20","x":63.397,"y":38.613,"w":1.6155,"l":7.398},{"dsh":1,"clr":1,"x":76.515,"y":38.541,"w":0.09,"l":2.15},{"dsh":1,"oc":"#231f20","x":76.515,"y":38.541,"w":0.09,"l":2.15},{"oc":"#231f20","x":3.599,"y":42.373,"w":1.0755,"l":35.897},{"oc":"#231f20","x":3.599,"y":43.712,"w":1.0755,"l":35.897},{"oc":"#231f20","x":39.363,"y":42.365,"w":1.0755,"l":7.943},{"oc":"#231f20","x":39.363,"y":43.704,"w":1.0755,"l":7.943},{"oc":"#231f20","x":47.12,"y":42.365,"w":1.0755,"l":16.122},{"oc":"#231f20","x":47.12,"y":43.708,"w":1.0755,"l":16.122},{"oc":"#231f20","x":3.61,"y":45.01,"w":1.0755,"l":35.918},{"oc":"#231f20","x":55.053,"y":45.021,"w":1.0755,"l":8.015},{"oc":"#231f20","x":55.053,"y":46.364,"w":1.0755,"l":8.015},{"oc":"#231f20","x":3.599,"y":45.021,"w":1.0755,"l":37.008},{"oc":"#231f20","x":3.599,"y":46.361,"w":1.0755,"l":37.008},{"oc":"#231f20","x":2.951,"y":41.527,"w":2.154,"l":96.549},{"oc":"#231f20","x":63.15,"y":42.373,"w":1.6155,"l":36.35},{"oc":"#231f20","x":63.15,"y":43.652,"w":1.6155,"l":36.442},{"oc":"#231f20","x":47.203,"y":46.338,"w":1.0755,"l":15.916},{"oc":"#231f20","x":47.203,"y":47.681,"w":1.0755,"l":15.916},{"oc":"#231f20","x":3.6,"y":46.335,"w":1.0755,"l":43.613},{"oc":"#231f20","x":3.6,"y":47.674,"w":1.0755,"l":43.613},{"oc":"#231f20","x":39.352,"y":43.671,"w":1.0755,"l":7.953},{"oc":"#231f20","x":39.352,"y":45.014,"w":1.0755,"l":7.953},{"oc":"#231f20","x":82.534,"y":16.599,"w":1.6155,"l":4.311},{"oc":"#231f20","x":47.069,"y":43.671,"w":1.0755,"l":16.122},{"oc":"#231f20","x":47.069,"y":45.014,"w":1.0755,"l":16.122},{"oc":"#231f20","x":61.329,"y":16.557,"w":1.6155,"l":4.311},{"oc":"#231f20","x":68.14,"y":16.557,"w":1.6155,"l":6.163},{"oc":"#231f20","x":66.216,"y":15.962,"w":1.6155,"l":1.286},{"oc":"#231f20","x":3.846,"y":16.931,"w":0.09,"l":27.749},{"oc":"#231f20","x":3.846,"y":17.818,"w":0.09,"l":27.749},{"oc":"#231f20","x":48.993,"y":32.552,"w":1.6155,"l":18.509},{"oc":"#231f20","x":49.25,"y":33.771,"w":1.6155,"l":23.448},{"oc":"#231f20","x":68.49,"y":8.847,"w":2.154,"l":8.941},{"oc":"#231f20","x":68.428,"y":5.959,"w":2.154,"l":8.941},{"oc":"#231f20","x":68.428,"y":7.392,"w":2.154,"l":8.941},{"oc":"#231f20","x":3.98,"y":1.57,"w":3.2295,"l":3.076},{"oc":"#231f20","x":97.134,"y":1.556,"w":3.2295,"l":3.076},{"clr":1,"x":3.311,"y":48.198,"w":0.09,"l":4.301},{"clr":1,"x":3.311,"y":49.762,"w":0.09,"l":4.301},{"oc":"#231f20","x":3.929,"y":49.541,"w":3.2295,"l":3.076},{"clr":1,"x":96.516,"y":48.198,"w":0.09,"l":4.301},{"clr":1,"x":96.516,"y":49.762,"w":0.09,"l":4.301},{"oc":"#231f20","x":97.134,"y":49.541,"w":3.2295,"l":3.076},{"oc":"#231f20","x":79.077,"y":1.44,"w":0.09,"l":0.165},{"oc":"#231f20","x":79.077,"y":2.783,"w":0.09,"l":0.165},{"oc":"#231f20","x":79.417,"y":1.44,"w":0.09,"l":0.164},{"oc":"#231f20","x":79.417,"y":2.783,"w":0.09,"l":0.164},{"oc":"#231f20","x":79.766,"y":1.44,"w":0.09,"l":0.411},{"oc":"#231f20","x":79.766,"y":2.783,"w":0.09,"l":0.411},{"oc":"#231f20","x":80.62,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":80.62,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":80.96,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":80.96,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":81.299,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":81.299,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":81.639,"y":1.44,"w":0.09,"l":0.411},{"oc":"#231f20","x":81.639,"y":2.783,"w":0.09,"l":0.411},{"oc":"#231f20","x":82.493,"y":1.44,"w":0.09,"l":0.422},{"oc":"#231f20","x":82.493,"y":2.783,"w":0.09,"l":0.422},{"oc":"#231f20","x":83.09,"y":1.44,"w":0.09,"l":0.165},{"oc":"#231f20","x":83.09,"y":2.783,"w":0.09,"l":0.165},{"oc":"#231f20","x":83.686,"y":1.44,"w":0.09,"l":0.422},{"oc":"#231f20","x":83.686,"y":2.783,"w":0.09,"l":0.422},{"oc":"#231f20","x":84.283,"y":1.44,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.283,"y":2.783,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.622,"y":1.44,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.622,"y":2.783,"w":0.09,"l":0.165},{"oc":"#231f20","x":85.23,"y":1.44,"w":0.09,"l":0.412},{"oc":"#231f20","x":85.23,"y":2.783,"w":0.09,"l":0.412},{"oc":"#231f20","x":85.826,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":85.826,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":86.166,"y":1.44,"w":0.09,"l":0.411},{"oc":"#231f20","x":86.166,"y":2.783,"w":0.09,"l":0.411},{"oc":"#231f20","x":87.02,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":87.02,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":87.617,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":87.617,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":87.956,"y":1.44,"w":0.09,"l":0.165},{"oc":"#231f20","x":87.956,"y":2.783,"w":0.09,"l":0.165},{"oc":"#231f20","x":88.296,"y":1.44,"w":0.09,"l":0.422},{"oc":"#231f20","x":88.296,"y":2.783,"w":0.09,"l":0.422},{"oc":"#231f20","x":89.149,"y":1.44,"w":0.09,"l":0.422},{"oc":"#231f20","x":89.149,"y":2.783,"w":0.09,"l":0.422},{"oc":"#231f20","x":89.746,"y":1.44,"w":0.09,"l":0.165},{"oc":"#231f20","x":89.746,"y":2.783,"w":0.09,"l":0.165},{"oc":"#231f20","x":90.343,"y":1.44,"w":0.09,"l":0.165},{"oc":"#231f20","x":90.343,"y":2.783,"w":0.09,"l":0.165},{"oc":"#231f20","x":90.693,"y":1.44,"w":0.09,"l":0.412},{"oc":"#231f20","x":90.693,"y":2.783,"w":0.09,"l":0.412},{"oc":"#231f20","x":91.29,"y":1.44,"w":0.09,"l":0.412},{"oc":"#231f20","x":91.29,"y":2.783,"w":0.09,"l":0.412},{"oc":"#231f20","x":92.144,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":92.144,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":92.483,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":92.483,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":92.823,"y":1.44,"w":0.09,"l":0.154},{"oc":"#231f20","x":92.823,"y":2.783,"w":0.09,"l":0.154},{"oc":"#231f20","x":93.419,"y":1.44,"w":0.09,"l":0.422},{"oc":"#231f20","x":93.419,"y":2.783,"w":0.09,"l":0.422},{"oc":"#231f20","x":94.016,"y":1.44,"w":0.09,"l":0.164},{"oc":"#231f20","x":94.016,"y":2.783,"w":0.09,"l":0.164},{"oc":"#231f20","x":48.559,"y":11.859,"w":2.154,"l":11.42}],"VLines":[{"oc":"#231f20","x":3.98,"y":34.344,"w":0.09,"l":0.827},{"oc":"#231f20","x":12.314,"y":34.344,"w":0.09,"l":0.827},{"oc":"#231f20","x":4.093,"y":25.959,"w":0.09,"l":0.887},{"oc":"#231f20","x":11.933,"y":25.959,"w":0.09,"l":0.887},{"oc":"#231f20","x":3.857,"y":23.808,"w":0.09,"l":0.883},{"oc":"#231f20","x":12.54,"y":23.808,"w":0.09,"l":0.883},{"oc":"#231f20","x":4.124,"y":19.644,"w":0.09,"l":0.853},{"oc":"#231f20","x":18.652,"y":19.644,"w":0.09,"l":0.853},{"oc":"#231f20","x":60.199,"y":8.945,"w":2.154,"l":4.516},{"oc":"#231f20","x":48.727,"y":9.012,"w":2.154,"l":4.383},{"oc":"#231f20","x":60.228,"y":7.407,"w":2.154,"l":1.429},{"oc":"#231f20","x":60.228,"y":5.97,"w":2.154,"l":1.429},{"oc":"#231f20","x":39.229,"y":11.917,"w":2.154,"l":1.433},{"oc":"#231f20","x":77.493,"y":5.959,"w":2.154,"l":1.433},{"oc":"#231f20","x":77.554,"y":7.459,"w":2.154,"l":1.388},{"oc":"#231f20","x":79.231,"y":13.519,"w":1.0755,"l":3.412},{"oc":"#231f20","x":3.599,"y":42.373,"w":1.0755,"l":1.339},{"oc":"#231f20","x":39.496,"y":42.373,"w":1.0755,"l":1.339},{"oc":"#231f20","x":39.363,"y":42.365,"w":1.0755,"l":1.339},{"oc":"#231f20","x":47.306,"y":42.365,"w":1.0755,"l":1.339},{"oc":"#231f20","x":47.12,"y":42.365,"w":1.0755,"l":1.343},{"oc":"#231f20","x":3.61,"y":43.667,"w":1.0755,"l":1.343},{"oc":"#231f20","x":55.053,"y":45.021,"w":1.0755,"l":1.343},{"oc":"#231f20","x":3.599,"y":45.021,"w":1.0755,"l":1.339},{"oc":"#231f20","x":40.608,"y":45.021,"w":1.0755,"l":1.339},{"oc":"#231f20","x":63.181,"y":42.373,"w":1.6155,"l":5.283},{"oc":"#231f20","x":47.203,"y":46.338,"w":1.0755,"l":1.343},{"oc":"#231f20","x":3.6,"y":46.335,"w":1.0755,"l":1.339},{"oc":"#231f20","x":47.213,"y":46.335,"w":1.0755,"l":1.339},{"oc":"#231f20","x":39.352,"y":43.671,"w":1.0755,"l":1.343},{"oc":"#231f20","x":56.977,"y":13.471,"w":1.0755,"l":3.461},{"oc":"#231f20","x":47.069,"y":43.671,"w":1.0755,"l":1.343},{"oc":"#231f20","x":3.846,"y":16.931,"w":0.09,"l":0.887},{"oc":"#231f20","x":31.595,"y":16.931,"w":0.09,"l":0.887},{"oc":"#231f20","x":66.433,"y":6.378,"w":1.0755,"l":1.029},{"oc":"#231f20","x":66.484,"y":7.819,"w":1.0755,"l":1.029},{"oc":"#231f20","x":3.98,"y":1.57,"w":3.2295,"l":1.115},{"oc":"#231f20","x":100.21,"y":1.556,"w":3.2295,"l":1.119},{"clr":1,"x":3.311,"y":48.198,"w":0.09,"l":1.564},{"clr":1,"x":7.612,"y":48.198,"w":0.09,"l":1.564},{"oc":"#231f20","x":3.929,"y":48.422,"w":3.2295,"l":1.119},{"clr":1,"x":96.516,"y":48.198,"w":0.09,"l":1.564},{"clr":1,"x":100.817,"y":48.198,"w":0.09,"l":1.564},{"oc":"#231f20","x":100.21,"y":48.422,"w":3.2295,"l":1.119},{"oc":"#231f20","x":79.077,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":79.242,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":79.417,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":79.581,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":79.766,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":80.178,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":80.62,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":80.775,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":80.96,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":81.114,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":81.299,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":81.454,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":81.639,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":82.05,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":82.493,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":82.915,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":83.09,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":83.254,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":83.686,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":84.108,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":84.283,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":84.448,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":84.622,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":84.787,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":85.23,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":85.641,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":85.826,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":85.981,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":86.166,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":86.577,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":87.02,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":87.174,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":87.617,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":87.771,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":87.956,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":88.121,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":88.296,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":88.717,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":89.149,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":89.571,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":89.746,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":89.911,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":90.343,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":90.508,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":90.693,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":91.104,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":91.29,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":91.701,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":92.144,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":92.298,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":92.483,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":92.637,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":92.823,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":92.977,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":93.419,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":93.841,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":94.016,"y":1.44,"w":0.09,"l":1.343},{"oc":"#231f20","x":94.181,"y":1.44,"w":0.09,"l":1.343}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":3.99,"y":34.347,"w":8.324,"h":0.823,"clr":-1},{"oc":"#231f20","x":4.104,"y":25.963,"w":7.83,"h":0.883,"clr":-1},{"oc":"#231f20","x":3.867,"y":23.812,"w":8.673,"h":0.879,"clr":-1},{"oc":"#231f20","x":4.134,"y":19.648,"w":14.517,"h":0.849,"clr":-1},{"x":7.447,"y":14.589,"w":1.224,"h":0.445,"clr":1},{"x":7.447,"y":15.368,"w":1.224,"h":0.445,"clr":1},{"x":65.486,"y":6.696,"w":1.224,"h":0.445,"clr":1},{"x":75.97,"y":32.78,"w":1.224,"h":0.445,"clr":1},{"oc":"#231f20","x":3.857,"y":16.935,"w":27.738,"h":0.883,"clr":-1},{"x":65.424,"y":8.148,"w":1.224,"h":0.445,"clr":1},{"x":94.438,"y":10.587,"w":1.224,"h":0.445,"clr":1},{"x":3.321,"y":48.202,"w":4.29,"h":1.56,"clr":1},{"x":96.527,"y":48.202,"w":4.29,"h":1.56,"clr":1},{"oc":"#231f20","x":79.087,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":79.427,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":79.777,"y":1.443,"w":0.401,"h":1.339,"clr":-1},{"oc":"#231f20","x":80.631,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":80.97,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":81.31,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":81.649,"y":1.443,"w":0.401,"h":1.339,"clr":-1},{"oc":"#231f20","x":82.503,"y":1.443,"w":0.411,"h":1.339,"clr":-1},{"oc":"#231f20","x":83.1,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":83.697,"y":1.443,"w":0.411,"h":1.339,"clr":-1},{"oc":"#231f20","x":84.293,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":84.633,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":85.24,"y":1.443,"w":0.401,"h":1.339,"clr":-1},{"oc":"#231f20","x":85.837,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":86.176,"y":1.443,"w":0.401,"h":1.339,"clr":-1},{"oc":"#231f20","x":87.03,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":87.627,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":87.966,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":88.306,"y":1.443,"w":0.411,"h":1.339,"clr":-1},{"oc":"#231f20","x":89.16,"y":1.443,"w":0.412,"h":1.339,"clr":-1},{"oc":"#231f20","x":89.757,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":90.353,"y":1.443,"w":0.154,"h":1.339,"clr":-1},{"oc":"#231f20","x":90.703,"y":1.443,"w":0.401,"h":1.339,"clr":-1},{"oc":"#231f20","x":91.3,"y":1.443,"w":0.401,"h":1.339,"clr":-1},{"oc":"#231f20","x":92.154,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":92.493,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":92.833,"y":1.443,"w":0.144,"h":1.339,"clr":-1},{"oc":"#231f20","x":93.43,"y":1.443,"w":0.412,"h":1.339,"clr":-1},{"oc":"#231f20","x":94.026,"y":1.443,"w":0.154,"h":1.339,"clr":-1}],"Texts":[{"oc":"#231f20","x":9.049,"y":14.262,"w":4.4207,"clr":-1,"A":"left","R":[{"T":"1.%20Single","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":9.049,"y":15.044,"w":11.354999999999999,"clr":-1,"A":"left","R":[{"T":"2.%20Married%20filing%20jointly","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":9.049,"y":15.841000000000001,"w":13.4544,"clr":-1,"A":"left","R":[{"T":"3.%20Married%20filing%20separately","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":34.925,"y":14.322,"w":10.697,"clr":-1,"A":"left","R":[{"T":"4.%20Head%20of%20household","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":34.925,"y":15.07,"w":11.795,"clr":-1,"A":"left","R":[{"T":"5.%20Qualifying%20widow(er)","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":4.493,"y":35.315,"w":6.1196,"clr":-1,"A":"left","R":[{"T":"%207.%20%20Tax%20due%20-","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":12.845,"y":35.315,"w":28.074600000000007,"clr":-1,"A":"left","R":[{"T":"If%20line%203%20is%20LESS%20than%20line%202%2C%20subtract%20line%203%20from%20line%202.","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":4.63,"y":20.776,"w":12.882800000000005,"clr":-1,"A":"left","R":[{"T":"%201.%20%20Federal%20taxable%20income%20","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":22.52,"y":20.776,"w":25.803999999999988,"clr":-1,"A":"left","R":[{"T":"from%20line%2043%20of%20Form%201040%2C%20line%2027%20of%20Form%201040A%2C","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":4.601,"y":21.457,"w":15.227599999999999,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20or%20line%206%20of%20Form%201040EZ.","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":4.738,"y":13.383,"w":1.0056,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":28.192,"y":17.97,"w":13.741800000000001,"clr":-1,"A":"left","R":[{"T":"from%20line%2037%20of%20Form%201040%2C","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":4.382,"y":24.798,"w":1.0799,"clr":-1,"A":"left","R":[{"T":"%203.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":5.016,"y":38.921,"w":7.439000000000001,"clr":-1,"A":"left","R":[{"T":"9.%20%20Balance%20due.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":32.846,"y":38.921,"w":13.289499999999999,"clr":-1,"A":"left","R":[{"T":"ND%20State%20Tax%20Commissioner","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":5.161,"y":8.546,"w":7.5235,"clr":-1,"A":"left","R":[{"T":"Mailing%20address","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":4.851,"y":11.594,"w":1.9812000000000003,"clr":-1,"A":"left","R":[{"T":"City","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":39.225,"y":11.572,"w":2.6835,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":48.866,"y":11.594,"w":4.2418,"clr":-1,"A":"left","R":[{"T":"Zip%20code","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":88.015,"y":3.383,"w":2.232,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23.9696,1,0]}]},{"oc":"#231f20","x":18.027,"y":26.942,"w":28.55870000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%203%20is%20MORE%20than%20line%202%2C%20subtract%20line%202%20from%20line%203%3B","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":60.193,"y":5.632,"w":4.8298000000000005,"clr":-1,"A":"left","R":[{"T":"Deceased","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":75.144,"y":18.606,"w":3.2738,"clr":-1,"A":"left","R":[{"T":"(SX)%20%20D","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":77.551,"y":5.658,"w":14.452600000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number*","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":77.551,"y":7.158,"w":16.601399999999998,"clr":-1,"A":"left","R":[{"T":"Spouse's%20social%20security%20number*","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":74.979,"y":21.397,"w":3.2136000000000005,"clr":-1,"A":"left","R":[{"T":"(ND)%20%201","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":75.308,"y":24.772,"w":3.0202999999999998,"clr":-1,"A":"left","R":[{"T":"(SF)%20%203","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":75.349,"y":35.913,"w":3.0252000000000003,"clr":-1,"A":"left","R":[{"T":"(SZ)%20%207","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":79.043,"y":38.921,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":48.928,"y":8.543,"w":3.7916000000000003,"clr":-1,"A":"left","R":[{"T":"Apt%20No.","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":4.491,"y":22.632,"w":4.055000000000001,"clr":-1,"A":"left","R":[{"T":"%202.%20%20Tax%20-","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":75.03,"y":22.538,"w":3.1425000000000005,"clr":-1,"A":"left","R":[{"T":"(SB)%20%202","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":75.154,"y":27.563,"w":3.2139,"clr":-1,"A":"left","R":[{"T":"(SG)%20%204","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":79.197,"y":29.415,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":4.996,"y":28.861,"w":0.8288,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":4.995,"y":29.542,"w":9.8554,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20contribution%20to%3A","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":21.087,"y":28.913,"w":5.2527,"clr":-1,"A":"left","R":[{"T":"Watchable","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":21.087,"y":29.598,"w":6.5383,"clr":-1,"A":"left","R":[{"T":"Wildlife%20Fund","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":31.817999999999998,"y":29.482,"w":2.5274000000000005,"clr":-1,"A":"left","R":[{"T":"(SP)","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":43.331,"y":28.771,"w":6.6372,"clr":-1,"A":"left","R":[{"T":"Trees%20For%20ND","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":59.412,"y":29.497,"w":2.2738,"clr":-1,"A":"left","R":[{"T":"(SW)","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":71.501,"y":28.913,"w":2.5395000000000003,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":71.501,"y":29.598,"w":2.0985,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":5.14,"y":30.503,"w":4.978899999999999,"clr":-1,"A":"left","R":[{"T":"6.%20%20Refund.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":12.513,"y":30.503,"w":13.711999999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204.","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":10.53,"y":31.487000000000002,"w":1.5651000000000002,"clr":-1,"A":"left","R":[{"T":"To%20","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":79.177,"y":37.739,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":31.355,"y":37.754,"w":2.6064000000000007,"clr":-1,"A":"left","R":[{"T":"(SU)","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":59.474,"y":37.765,"w":2.5322000000000005,"clr":-1,"A":"left","R":[{"T":"(SY)","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":71.172,"y":37.193,"w":2.5405,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":71.172,"y":37.873,"w":2.137,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":3.8120000000000003,"y":41.391,"w":45.684999999999995,"clr":-1,"A":"left","R":[{"T":"I%20declare%20that%20this%20return%20is%20correct%20and%20complete%20to%20the%20best%20of%20my%20knowledge%20and%20belief.","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":66.604,"y":41.391,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":67.469,"y":41.391,"w":22.247600000000002,"clr":-1,"A":"left","R":[{"T":"Privacy%20Act%20-%20See%20inside%20front%20cover%20of%20booklet.","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":70.226,"y":43.351,"w":20.6839,"clr":-1,"A":"left","R":[{"T":"This%20Space%20Is%20For%20Tax%20Department%20Use%20Only","S":-1,"TS":[0,8.9621,1,0]}]},{"oc":"#231f20","x":47.19,"y":42.079,"w":7.7688999999999995,"clr":-1,"A":"left","R":[{"T":"Phone%20number%20","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":55.101,"y":42.079,"w":0.454,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":55.575,"y":42.079,"w":4.494,"clr":-1,"A":"left","R":[{"T":"land%20line","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":60.05,"y":42.079,"w":0.454,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":3.72,"y":43.325,"w":9.497199999999998,"clr":-1,"A":"left","R":[{"T":"Spouse's%20signature","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":3.7910000000000004,"y":44.668,"w":2.458,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":6.343,"y":44.668,"w":0.623,"clr":-1,"A":"left","R":[{"T":"p","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":6.992,"y":44.668,"w":1.0135999999999998,"clr":-1,"A":"left","R":[{"T":"re","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":8.041,"y":44.668,"w":0.623,"clr":-1,"A":"left","R":[{"T":"p","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":8.679,"y":44.668,"w":3.2232000000000003,"clr":-1,"A":"left","R":[{"T":"arer%20si","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":11.992,"y":44.668,"w":0.623,"clr":-1,"A":"left","R":[{"T":"g","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":12.63,"y":44.668,"w":3.3464,"clr":-1,"A":"left","R":[{"T":"nature","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":40.645,"y":44.668,"w":2.4295999999999998,"clr":-1,"A":"left","R":[{"T":"PTIN","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":55.24,"y":44.668,"w":2.4036,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":67.262,"y":42.113,"w":28.331000000000003,"clr":-1,"A":"left","R":[{"T":"I%20authorize%20the%20ND%20Office%20of%20State%20Tax%20Commissioner%20to","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":67.262,"y":42.562,"w":21.140500000000007,"clr":-1,"A":"left","R":[{"T":"discuss%20this%20return%20with%20the%20paid%20preparer.","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":47.282,"y":45.97,"w":5.007300000000001,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":3.8120000000000003,"y":46,"w":14.644,"clr":-1,"A":"left","R":[{"T":"Print%20name%20of%20paid%20preparer","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":4.347,"y":46.449,"w":4.455,"clr":-1,"A":"left","R":[{"T":"it","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":39.349,"y":43.388,"w":2.4164,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":75.72,"y":31.566000000000003,"w":7.992500000000002,"clr":-1,"A":"left","R":[{"T":"Type%20of%20account","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":77.572,"y":32.475,"w":4.5716,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":77.572,"y":33.279,"w":3.9294,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":73.601,"y":31.645000000000003,"w":0.8156000000000001,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":79.856,"y":13.619,"w":0.9944,"clr":-1,"A":"left","R":[{"T":"C.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":81.996,"y":13.619,"w":10.5268,"clr":-1,"A":"left","R":[{"T":"Income%20source%20code%3A","S":-1,"TS":[0,11.9792,0,0]}]},{"x":4.615,"y":19.53,"w":8.3835,"clr":1,"A":"left","R":[{"T":"Tax%20calculation","S":-1,"TS":[0,11.9792,1,0]}]},{"x":4.491,"y":25.864,"w":4.0138,"clr":1,"A":"left","R":[{"T":"Refund","S":-1,"TS":[0,11.9792,1,0]}]},{"x":4.357,"y":34.189,"w":4.4094,"clr":1,"A":"left","R":[{"T":"Tax%20due","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":7.959,"y":1.947,"w":2.5612000000000004,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,14.9961,0,0]}]},{"oc":"#231f20","x":7.959,"y":3.3499999999999996,"w":1.7746,"clr":-1,"A":"left","R":[{"T":"ND-","S":-1,"TS":[0,23.9696,1,0]}]},{"oc":"#231f20","x":24.678,"y":1.9580000000000002,"w":23.887500000000003,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":-1,"TS":[0,12.9846,0,0]}]},{"oc":"#231f20","x":24.42,"y":3.192,"w":13.365000000000002,"clr":-1,"A":"left","R":[{"T":"Individual%20income%20tax%20return","S":-1,"TS":[0,23.9696,1,0]}]},{"oc":"#231f20","x":24.544,"y":4.016,"w":24.719800000000003,"clr":-1,"A":"left","R":[{"T":"for%20full-year%20residents%20with%20no%20adjustments%20or%20credits","S":-1,"TS":[0,13.9846,1,0]}]},{"oc":"#231f20","x":47.189,"y":43.34,"w":2.3240000000000003,"clr":-1,"A":"left","R":[{"T":"Cell%20","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":49.504,"y":43.34,"w":0.623,"clr":-1,"A":"left","R":[{"T":"p","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":50.152,"y":43.34,"w":4.505,"clr":-1,"A":"left","R":[{"T":"hone%20no.","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":8.967,"y":47.534,"w":19.91720000000001,"clr":-1,"A":"left","R":[{"T":"Mail%20to%3A%20Office%20of%20State%20Tax%20Commissioner%2C","S":-1,"TS":[0,10.9734,1,0]}]},{"oc":"#231f20","x":8.967,"y":48.129,"w":19.089399999999994,"clr":-1,"A":"left","R":[{"T":"PO%20Box%205621%2C%20Bismarck%2C%20ND%2058506-5621","S":-1,"TS":[0,10.9734,1,0]}]},{"oc":"#231f20","x":58.908,"y":13.675,"w":0.9978,"clr":-1,"A":"left","R":[{"T":"B.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":61.13,"y":13.675,"w":10.217,"clr":-1,"A":"left","R":[{"T":"School%20district%20code%3A","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":32.826,"y":16.795,"w":31.014200000000006,"clr":-1,"A":"left","R":[{"T":"For%20a%20complete%20return%2C%20you%20must%20complete%20Line%20D.%20%20If%20zero%2C%20enter%200.","S":-1,"TS":[0,10.9734,1,0]}]},{"oc":"#231f20","x":60.131,"y":7.08,"w":4.8298000000000005,"clr":-1,"A":"left","R":[{"T":"Deceased","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":86.883,"y":10.26,"w":4.882,"clr":-1,"A":"left","R":[{"T":"Extension","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":64.937,"y":9.59,"w":11.8545,"clr":-1,"A":"left","R":[{"T":"extension%20of%20time%20to%20file","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":34.863,"y":31.677999999999997,"w":8.553,"clr":-1,"A":"left","R":[{"T":"Routing%20number%3A","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":32.621,"y":31.625999999999998,"w":0.8180000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":32.517,"y":32.901,"w":0.8897999999999999,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":34.997,"y":32.901,"w":8.687000000000001,"clr":-1,"A":"left","R":[{"T":"Account%20number%3A","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":4.872,"y":37.043,"w":0.8288,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":4.872,"y":37.728,"w":9.5072,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20contribution%20to%3A","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":20.964,"y":37.099,"w":5.2527,"clr":-1,"A":"left","R":[{"T":"Watchable","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":20.964,"y":37.78,"w":6.5383,"clr":-1,"A":"left","R":[{"T":"Wildlife%20Fund","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":43.331,"y":37.144,"w":6.6372,"clr":-1,"A":"left","R":[{"T":"Trees%20For%20ND","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":63.785,"y":46.681,"w":1.17,"clr":-1,"A":"left","R":[{"T":"IIT","S":-1,"TS":[0,21.9584,1,0]}]},{"oc":"#231f20","x":68.106,"y":5.658,"w":6.897999999999999,"clr":-1,"A":"left","R":[{"T":"Date%20of%20death","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":68.229,"y":7.087,"w":6.897999999999999,"clr":-1,"A":"left","R":[{"T":"Date%20of%20death","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":34.186,"y":5.706,"w":1.2532,"clr":-1,"A":"left","R":[{"T":"MI","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":36.185,"y":5.722,"w":5.179400000000001,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":4.584,"y":5.722,"w":7.676,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":34.3,"y":7.158,"w":1.2524,"clr":-1,"A":"left","R":[{"T":"MI","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":36.215,"y":7.158,"w":5.175800000000001,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":4.749,"y":7.158,"w":17.458399999999997,"clr":-1,"A":"left","R":[{"T":"If%20joint%20return%2C%20spouse's%20first%20name%20","S":-1,"TS":[0,9.9677,0,0]}]},{"oc":"#231f20","x":64.937,"y":8.995,"w":11.990000000000006,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20if%20you%20obtained%20an","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":64.937,"y":10.189,"w":13.094,"clr":-1,"A":"left","R":[{"T":"your%20return%3A%20(See%20page%209)","S":-1,"TS":[0,10.9734,0,0]}]},{"oc":"#231f20","x":7.434,"y":13.383,"w":18.6574,"clr":-1,"A":"left","R":[{"T":"Filing%20status%20used%20on%20federal%20return%3A%20","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":35.862,"y":13.383,"w":8.209000000000001,"clr":-1,"A":"left","R":[{"T":"(Fill%20in%20only%20one)","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":59.156,"y":14.359,"w":7.203,"clr":-1,"A":"left","R":[{"T":"(See%20page%2019)","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":82.51,"y":14.3,"w":6.567,"clr":-1,"A":"left","R":[{"T":"(See%20page%209)","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":36.52,"y":15.706,"w":10.626999999999997,"clr":-1,"A":"left","R":[{"T":"with%20dependent%20child","S":-1,"TS":[0,10.9734,0,0]}]},{"x":4.234,"y":16.795,"w":18.661300000000004,"clr":1,"A":"left","R":[{"T":"Federal%20adjusted%20gross%20income%20%20%20%20","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":4.03,"y":17.97,"w":1.8215000000000003,"clr":-1,"A":"left","R":[{"T":"%20D.%20%20","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":7.446,"y":17.97,"w":14.654499999999997,"clr":-1,"A":"left","R":[{"T":"Federal%20adjusted%20gross%20income","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":7.465,"y":18.651,"w":24.776599999999995,"clr":-1,"A":"left","R":[{"T":"line%2021%20of%20Form%201040A%2C%20or%20line%204%20of%20Form%201040EZ","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":22.677,"y":21.457,"w":19.560000000000002,"clr":-1,"A":"left","R":[{"T":"This%20is%20your%20North%20Dakota%20taxable%20income","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":10.554,"y":22.632,"w":36.95260000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20tax%20on%20amount%20on%20line%201%20from%20Tax%20Table%20on%20page%2020%20of%20instructions","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":7.516,"y":24.798,"w":37.781,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20withholding(Attach%20W-2s%2C%201099s%2C%20and%2For%20North%20Dakota%20K-1s)","S":-1,"TS":[0,11.9792,0,0]}]},{"x":4.183,"y":23.717,"w":4.7602,"clr":1,"A":"left","R":[{"T":"Tax%20paid","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":4.616,"y":26.942,"w":1.6915,"clr":-1,"A":"left","R":[{"T":"%204.%20%20","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":7.856999999999999,"y":26.942,"w":7.0631,"clr":-1,"A":"left","R":[{"T":"Overpayment%20-","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":7.880000000000001,"y":27.626,"w":11.5428,"clr":-1,"A":"left","R":[{"T":"otherwise%2C%20go%20to%20line%207.","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":22.419,"y":27.626,"w":11.839000000000002,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%245.00%2C%20enter%200","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":7.67,"y":28.861,"w":4.8332999999999995,"clr":-1,"A":"left","R":[{"T":"Voluntary","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":43.331,"y":29.452,"w":9.994800000000003,"clr":-1,"A":"left","R":[{"T":"Program%20Trust%20Fund","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":29.258,"y":30.503,"w":11.839000000000002,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%245.00%2C%20enter%200","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":12.614,"y":31.487000000000002,"w":6.5542,"clr":-1,"A":"left","R":[{"T":"direct%20deposit","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":10.531,"y":32.168,"w":11.658600000000002,"clr":-1,"A":"left","R":[{"T":"refund%2C%20complete%20items","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":7.65,"y":35.999,"w":11.839000000000002,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%245.00%2C%20enter%200","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":43.331,"y":37.825,"w":9.994800000000003,"clr":-1,"A":"left","R":[{"T":"Program%20Trust%20Fund","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":16.044,"y":38.921,"w":13.541300000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%208.%20%20Pay%20to%3A","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":17.218,"y":39.995,"w":37.24360000000001,"clr":-1,"A":"left","R":[{"T":"For%20a%20complete%20return%2C%20you%20must%20attach%20a%20copy%20of%20your%202013%20federal%20tax%20return","S":-1,"TS":[0,11.9792,1,0]}]},{"oc":"#231f20","x":3.8120000000000003,"y":42.019,"w":7.572599999999999,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":39.562,"y":42.019,"w":2.4296,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,8.9621,0,0]}]},{"oc":"#231f20","x":75.607,"y":30.488,"w":2.3155,"clr":-1,"A":"left","R":[{"T":"(SR)%20","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":79.1,"y":30.488,"w":0.5525000000000001,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,9.9677,1,0]}]},{"oc":"#231f20","x":7.547,"y":37.043,"w":4.8332999999999995,"clr":-1,"A":"left","R":[{"T":"Voluntary","S":-1,"TS":[0,11.9792,0,0]}]},{"oc":"#231f20","x":13.061,"y":3.2729999999999997,"w":1.278,"clr":-1,"A":"left","R":[{"T":"EZ","S":-1,"TS":[0,39.9168,1,0]}]},{"oc":"#231f20","x":10.531,"y":32.853,"w":12.614000000000003,"clr":-1,"A":"left","R":[{"T":"a%2C%20b%2C%20and%20c.%20(See%20page%209)","S":-1,"TS":[0,11.9792,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":156,"AM":0,"x":4.382,"y":6.622,"w":28.551,"h":0.833,"TU":"Taxpayer's First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":157,"AM":0,"x":34.09,"y":6.486,"w":2.348,"h":0.833,"TU":"Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":158,"AM":0,"x":36.943,"y":6.575,"w":21.738,"h":0.833,"TU":"Taxpayer's Last Name"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOD","EN":0},"TI":160,"AM":0,"x":66.782,"y":6.561,"w":10.134,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":161,"AM":0,"x":77.826,"y":6.576,"w":20.897,"h":0.833,"TU":"Your social security number*"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":162,"AM":0,"x":4.518,"y":8.058,"w":28.551,"h":0.833,"TU":"Spouse's First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":163,"AM":0,"x":34.107,"y":7.922,"w":2.123,"h":0.833,"TU":"Spouse's Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":164,"AM":0,"x":36.736,"y":8.011,"w":21.738,"h":0.833,"TU":"Spouse's Last Name"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOD","EN":0},"TI":166,"AM":0,"x":66.843,"y":7.956,"w":10.583,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":167,"AM":0,"x":77.826,"y":8.076,"w":20.972,"h":0.833,"TU":"Spouse's social security number*"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":168,"AM":0,"x":4.754,"y":9.452,"w":43.653,"h":0.834,"TU":"Mailing address_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":169,"AM":0,"x":4.829,"y":10.832,"w":43.503,"h":0.861,"TU":"Mailing address_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APTNO","EN":0},"TI":170,"AM":0,"x":48.934,"y":10.878,"w":10.957,"h":0.877,"TU":"Apt No."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":171,"AM":0,"x":4.774,"y":12.536,"w":34.065,"h":0.938,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":172,"AM":0,"x":39.415,"y":12.504,"w":8.559,"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":173,"AM":0,"x":48.962,"y":12.536,"w":11.006,"h":0.856,"TU":"Zip Code"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCHID1","EN":0},"TI":180,"AM":0,"x":61.006,"y":15.79,"w":5.018,"h":0.833,"TU":"Line B. School district code: (See page 19). Two digits.","MV":"99"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCHID2","EN":0},"TI":181,"AM":0,"x":68.191,"y":15.818,"w":6.291,"h":0.833,"TU":"Line B. School district code continued. Three digits.","MV":"999"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"popup:fedattach"}},"id":{"Id":"Fed_Attach","EN":0},"TI":182,"AM":0,"x":64.19,"y":18.681,"w":6.311,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NDSchCode"}},"id":{"Id":"Look_Up","EN":0},"TI":183,"AM":0,"x":70.676,"y":14.543,"w":4.664,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:nd_ins_taxtable"}},"id":{"Id":"Look_Up","EN":0},"TI":184,"AM":0,"x":68.393,"y":22.186,"w":6.161,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INCSRC","EN":0},"TI":185,"AM":0,"x":82.469,"y":15.797,"w":4.292,"h":0.833,"PL":{"V":[" ","1 Farming, ranching, or agricultural production","2 Retail, wholesale trade, and eating and drinking places","3 Federal, state, county, or city government service","4 Public or private education","5 Accounting, legal, health, motel, and other personal or professional services not classified elsewhere","6 Construction","7 Manufacturing","8 Transportation, communication, and public utilities","9 Exploration, development, and extraction of coal, oil, and natural gas","10 Banking, insurance, real estate, and other financial services","11 Military service","12 Retirement (Pensions, annuities, IRAs, etc.)"],"D":["no entry","1","2","3","4","5","6","7","8","9","10","11","12"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDAGI","EN":0},"TI":186,"AM":1024,"x":80.83,"y":18.58,"w":18.7,"h":0.886,"TU":"D. Federal adjusted gross income from line 37 of Form 1040, line 21 of Form 1040A or line 4 of From 1040EZ."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDINC","EN":0},"TI":187,"AM":16,"x":80.98,"y":21.374,"w":18.55,"h":0.911,"TU":"Line 1. Federal taxable income from line 43 of Form 1040, line 27 of Form 1040A, or line 6 of Form 1040EZ. This is your North Dakota taxable income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX1","EN":0},"TI":188,"AM":0,"x":81.145,"y":22.571,"w":18.176,"h":0.859,"TU":"Line 2. Tax. Enter amount from Tax Table on page 20 of instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WITHHOLD","EN":0},"TI":189,"AM":0,"x":80.681,"y":24.708,"w":18.774,"h":0.968,"TU":"Line 3. North Dakota withholding."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPAY","EN":0},"TI":190,"AM":1024,"x":81.204,"y":27.51,"w":18.176,"h":0.914,"TU":"Line 4. Overpayment. If line 3 is more than line 2, subtract line 2 from line 3: otherwise go to line 7. If less than $5.00, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WILDFUN1","EN":0},"TI":191,"AM":0,"x":35.556,"y":29.447,"w":7.82,"h":0.861,"TU":"Line 5. Voluntary contribution to Watchable Wildlife Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TREEFUN1","EN":0},"TI":192,"AM":0,"x":63.88,"y":29.48,"w":7.52,"h":0.861,"TU":"Line 5. Voluntary contribution to Trees for ND Program Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUNDTOT1","EN":0},"TI":193,"AM":1024,"x":81.133,"y":29.45,"w":18.475,"h":0.854,"TU":"32. Amount of line 31 that you want applied to your 2014 estimated tax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (SQ) 32"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":194,"AM":1024,"x":81.167,"y":30.448,"w":18.325,"h":0.886,"TU":"34. Refund. Subtract lines 32 and 33 from line 31. If less than $5.00, enter 0. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . (SR) 34"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNUM","EN":0},"TI":195,"AM":0,"x":48.855,"y":31.664,"w":18.857,"h":0.877,"TU":"Line 6a. Routing number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCTNUM","EN":0},"TI":196,"AM":0,"x":49.128,"y":32.849,"w":23.76,"h":0.856,"TU":"Line 6b. Account number.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":199,"AM":1024,"x":80.942,"y":35.893,"w":18.625,"h":0.888,"TU":"35"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WILDFUN2","EN":0},"TI":200,"AM":0,"x":35.182,"y":37.724,"w":7.67,"h":0.861,"TU":"Line 8. Voluntary contribution to Watchable Wildlife Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TREEFUN2","EN":0},"TI":201,"AM":0,"x":63.418,"y":37.768,"w":7.513,"h":0.834,"TU":"Line 8. Voluntary contributions to Trees for ND Program Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUNDTOT2","EN":0},"TI":202,"AM":1024,"x":81.109,"y":37.643,"w":18.475,"h":0.861,"TU":"total . . . . 37"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BALDUE","EN":0},"TI":203,"AM":1024,"x":81.055,"y":38.917,"w":18.475,"h":0.859,"TU":"Pay to: ND State Tax Commissioner . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VOUCHEF"}},"id":{"Id":"Add_ND_1V","EN":0},"TI":204,"AM":0,"x":72.538,"y":38.854,"w":6.385,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":205,"AM":0,"x":47.153,"y":42.95,"w":15.824,"h":0.833,"TU":"Phone number (land line)"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"CELL","EN":0},"TI":207,"AM":0,"x":47.353,"y":44.237,"w":15.824,"h":0.833,"TU":"Cell phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPNAME","EN":0},"TI":208,"AM":1024,"x":4.008,"y":46.883,"w":33.112,"h":0.833,"TU":"Signature of Paid Preparer Date","V":"Self- Prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPDECD","EN":0},"TI":159,"AM":0,"x":63.381,"y":6.54,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDECD","EN":0},"TI":165,"AM":0,"x":63.6,"y":7.824,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RXE","EN":0},"TI":174,"AM":0,"x":94.073,"y":10.335,"w":1.971,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":175,"AM":0,"x":7.168,"y":14.46,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":176,"AM":0,"x":33.047,"y":14.509,"w":1.597,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":177,"AM":0,"x":7.28,"y":15.232,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":178,"AM":0,"x":33.101,"y":15.291,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":179,"AM":0,"x":7.335,"y":15.951,"w":1.597,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CHECKING","EN":0},"TI":197,"AM":0,"x":75.792,"y":32.598,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SAVINGS","EN":0},"TI":198,"AM":0,"x":75.896,"y":33.409,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"ACCTRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AUTHX","EN":0},"TI":206,"AM":1024,"x":63.741,"y":42.488,"w":2.345,"h":0.853}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/nd/form/VOUCHEF.content.txt b/test/data/nd/form/VOUCHEF.content.txt new file mode 100755 index 00000000..2d54aac9 --- /dev/null +++ b/test/data/nd/form/VOUCHEF.content.txt @@ -0,0 +1,38 @@ +For Tax +De +p +artment +use onl +y +Do Not use this voucher if paying electronically +Social Security Number +Name +City, State and ZIP Code +2013 +Spouse's Name +Spouse's Social Security Number +Address +Preparer's Name +Preparer's Telephone Number +Amount of Payment +• +• +PO Box 5622 +Bismarck, ND 58506-5622 +ND-1V +Form ND-1V Electronic Return Payment Voucher +North Dakota Office of State Tax Commissioner +28726 +• +Detach here and mail with your payment + + + + + + +Address +Due 15th day of 4th month following end of tax year. +Make check or money order payable to "ND State Tax Commissioner." +Mail payment and voucher to: Office of State Tax Commissioner +----------------Page (0) Break---------------- diff --git a/test/data/nd/form/VOUCHEF.fields.json b/test/data/nd/form/VOUCHEF.fields.json new file mode 100755 index 00000000..39150900 --- /dev/null +++ b/test/data/nd/form/VOUCHEF.fields.json @@ -0,0 +1 @@ +[{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPINIT","type":"mask","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPINIT","type":"mask","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"APTNO","type":"alpha","calc":true,"value":""},{"id":"ADDR2","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"PMTAMT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/nd/form/VOUCHEF.json b/test/data/nd/form/VOUCHEF.json new file mode 100755 index 00000000..ca387e81 --- /dev/null +++ b/test/data/nd/form/VOUCHEF.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form ND-1V - Electronic Return Payment Voucher","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":63.805,"y":13.505,"w":1.8345000000000002,"l":36.486},{"oc":"#231f20","x":5.065,"y":5.242,"w":1.6185,"l":68.052},{"oc":"#231f20","x":73.097,"y":5.242,"w":1.6185,"l":27.215},{"oc":"#231f20","x":5.086,"y":6.611,"w":1.0785,"l":95.298},{"oc":"#231f20","x":4.962,"y":9.39,"w":1.0785,"l":95.298},{"oc":"#231f20","x":4.972,"y":7.987,"w":1.0785,"l":95.308},{"oc":"#231f20","x":5.065,"y":12.129,"w":1.0785,"l":95.174},{"oc":"#231f20","x":5.034,"y":13.501,"w":1.6185,"l":40.827},{"oc":"#231f20","x":45.965,"y":13.49,"w":1.6185,"l":27.215},{"oc":"#231f20","x":73.086,"y":13.49,"w":1.6185,"l":27.215},{"oc":"#231f20","x":4.457,"y":2.04,"w":3.237,"l":3.083},{"oc":"#231f20","x":97.878,"y":2.04,"w":3.237,"l":3.083},{"clr":1,"x":3.838,"y":15.63,"w":0.09,"l":4.311},{"clr":1,"x":3.838,"y":17.197,"w":0.09,"l":4.311},{"oc":"#231f20","x":4.457,"y":18.226,"w":3.237,"l":3.083},{"oc":"#231f20","x":97.878,"y":18.226,"w":3.237,"l":3.083},{"clr":1,"x":78.078,"y":1.924,"w":0.09,"l":18.542},{"clr":1,"x":78.078,"y":3.27,"w":0.09,"l":18.542},{"oc":"#231f20","x":79.779,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":79.779,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":80.12,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":80.12,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":80.47,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":80.47,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":80.81,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":80.81,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":81.151,"y":1.924,"w":0.09,"l":0.412},{"oc":"#231f20","x":81.151,"y":3.27,"w":0.09,"l":0.412},{"oc":"#231f20","x":81.749,"y":1.924,"w":0.09,"l":0.412},{"oc":"#231f20","x":81.749,"y":3.27,"w":0.09,"l":0.412},{"oc":"#231f20","x":82.605,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":82.605,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":83.203,"y":1.924,"w":0.09,"l":0.423},{"oc":"#231f20","x":83.203,"y":3.27,"w":0.09,"l":0.423},{"oc":"#231f20","x":84.059,"y":1.924,"w":0.09,"l":0.423},{"oc":"#231f20","x":84.059,"y":3.27,"w":0.09,"l":0.423},{"oc":"#231f20","x":84.657,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.657,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.997,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":84.997,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":85.338,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":85.338,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":85.946,"y":1.924,"w":0.09,"l":0.412},{"oc":"#231f20","x":85.946,"y":3.27,"w":0.09,"l":0.412},{"oc":"#231f20","x":86.802,"y":1.924,"w":0.09,"l":0.412},{"oc":"#231f20","x":86.802,"y":3.27,"w":0.09,"l":0.412},{"oc":"#231f20","x":87.4,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":87.4,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":87.74,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":87.74,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":88.339,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":88.339,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":88.679,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":88.679,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":89.277,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":89.277,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":89.617,"y":1.924,"w":0.09,"l":0.423},{"oc":"#231f20","x":89.617,"y":3.27,"w":0.09,"l":0.423},{"oc":"#231f20","x":90.473,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":90.473,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":90.814,"y":1.924,"w":0.09,"l":0.423},{"oc":"#231f20","x":90.814,"y":3.27,"w":0.09,"l":0.423},{"oc":"#231f20","x":91.422,"y":1.924,"w":0.09,"l":0.413},{"oc":"#231f20","x":91.422,"y":3.27,"w":0.09,"l":0.413},{"oc":"#231f20","x":92.02,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":92.02,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":92.618,"y":1.924,"w":0.09,"l":0.413},{"oc":"#231f20","x":92.618,"y":3.27,"w":0.09,"l":0.413},{"oc":"#231f20","x":93.474,"y":1.924,"w":0.09,"l":0.155},{"oc":"#231f20","x":93.474,"y":3.27,"w":0.09,"l":0.155},{"oc":"#231f20","x":93.815,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":93.815,"y":3.27,"w":0.09,"l":0.165},{"oc":"#231f20","x":94.155,"y":1.924,"w":0.09,"l":0.423},{"oc":"#231f20","x":94.155,"y":3.27,"w":0.09,"l":0.423},{"oc":"#231f20","x":94.753,"y":1.924,"w":0.09,"l":0.165},{"oc":"#231f20","x":94.753,"y":3.27,"w":0.09,"l":0.165},{"dsh":1,"oc":"#231f20","x":4.348,"y":18.625,"w":1.5,"l":96.938},{"oc":"#231f20","x":4.962,"y":10.765,"w":1.0785,"l":95.298}],"VLines":[{"oc":"#231f20","x":63.805,"y":13.505,"w":1.8345000000000002,"l":4.496},{"oc":"#231f20","x":5.024,"y":8.021,"w":1.6185,"l":1.346},{"oc":"#231f20","x":100.301,"y":8.021,"w":1.6185,"l":1.346},{"oc":"#231f20","x":5.027,"y":9.452,"w":1.6185,"l":2.706},{"oc":"#231f20","x":100.289,"y":9.457,"w":1.6185,"l":2.741},{"oc":"#231f20","x":5.065,"y":5.242,"w":1.6185,"l":1.346},{"oc":"#231f20","x":100.311,"y":5.242,"w":1.6185,"l":1.346},{"oc":"#231f20","x":5.065,"y":6.611,"w":1.6185,"l":1.346},{"oc":"#231f20","x":100.311,"y":6.622,"w":1.6185,"l":1.343},{"oc":"#231f20","x":5.034,"y":12.155,"w":1.6185,"l":1.346},{"oc":"#231f20","x":45.965,"y":12.144,"w":1.6185,"l":1.346},{"oc":"#231f20","x":73.179,"y":12.144,"w":1.6185,"l":1.346},{"oc":"#231f20","x":73.138,"y":12.121,"w":1.0785,"l":1.361},{"oc":"#231f20","x":73.097,"y":5.261,"w":1.0785,"l":2.749},{"oc":"#231f20","x":100.301,"y":12.144,"w":1.6185,"l":1.346},{"oc":"#231f20","x":4.457,"y":2.04,"w":3.237,"l":1.121},{"oc":"#231f20","x":100.961,"y":2.04,"w":3.237,"l":1.121},{"clr":1,"x":3.838,"y":15.63,"w":0.09,"l":1.568},{"clr":1,"x":8.149,"y":15.63,"w":0.09,"l":1.568},{"oc":"#231f20","x":4.457,"y":17.105,"w":3.237,"l":1.121},{"oc":"#231f20","x":100.961,"y":17.105,"w":3.237,"l":1.121},{"clr":1,"x":78.078,"y":1.924,"w":0.09,"l":1.346},{"clr":1,"x":96.62,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":79.779,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":79.944,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":80.12,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":80.285,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":80.47,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":80.625,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":80.81,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":80.965,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":81.151,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":81.563,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":81.749,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":82.161,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":82.605,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":82.76,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":83.203,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":83.626,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":84.059,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":84.482,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":84.657,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":84.822,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":84.997,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":85.162,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":85.338,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":85.503,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":85.946,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":86.359,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":86.802,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":87.215,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":87.4,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":87.555,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":87.74,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":87.895,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":88.339,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":88.493,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":88.679,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":88.844,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":89.277,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":89.442,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":89.617,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":90.04,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":90.473,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":90.638,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":90.814,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":91.236,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":91.422,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":91.835,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":92.02,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":92.175,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":92.618,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":93.031,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":93.474,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":93.629,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":93.815,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":93.98,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":94.155,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":94.578,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":94.753,"y":1.924,"w":0.09,"l":1.346},{"oc":"#231f20","x":94.918,"y":1.924,"w":0.09,"l":1.346}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":79.79,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":80.13,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":80.48,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":80.821,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":81.161,"y":1.927,"w":0.402,"h":1.343,"clr":-1},{"oc":"#231f20","x":81.759,"y":1.927,"w":0.402,"h":1.343,"clr":-1},{"oc":"#231f20","x":82.615,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":83.213,"y":1.927,"w":0.412,"h":1.343,"clr":-1},{"oc":"#231f20","x":84.069,"y":1.927,"w":0.412,"h":1.343,"clr":-1},{"oc":"#231f20","x":84.667,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":85.008,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":85.348,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":85.956,"y":1.927,"w":0.402,"h":1.343,"clr":-1},{"oc":"#231f20","x":86.812,"y":1.927,"w":0.402,"h":1.343,"clr":-1},{"oc":"#231f20","x":87.41,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":87.751,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":88.349,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":88.689,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":89.287,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":89.628,"y":1.927,"w":0.413,"h":1.343,"clr":-1},{"oc":"#231f20","x":90.484,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":90.824,"y":1.927,"w":0.413,"h":1.343,"clr":-1},{"oc":"#231f20","x":91.432,"y":1.927,"w":0.402,"h":1.343,"clr":-1},{"oc":"#231f20","x":92.03,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":92.629,"y":1.927,"w":0.402,"h":1.343,"clr":-1},{"oc":"#231f20","x":93.485,"y":1.927,"w":0.144,"h":1.343,"clr":-1},{"oc":"#231f20","x":93.825,"y":1.927,"w":0.155,"h":1.343,"clr":-1},{"oc":"#231f20","x":94.165,"y":1.927,"w":0.413,"h":1.343,"clr":-1},{"oc":"#231f20","x":94.763,"y":1.927,"w":0.155,"h":1.343,"clr":-1}],"Texts":[{"oc":"#231f20","x":64.081,"y":13.224,"w":3.7412999999999994,"clr":-1,"A":"left","R":[{"T":"For%20Tax","S":-1,"TS":[0,8.9759,0,0]}]},{"oc":"#231f20","x":64.081,"y":13.674,"w":1.3932,"clr":-1,"A":"left","R":[{"T":"De","S":-1,"TS":[0,8.9759,0,0]}]},{"oc":"#231f20","x":65.504,"y":13.674,"w":0.623,"clr":-1,"A":"left","R":[{"T":"p","S":-1,"TS":[0,8.9759,0,0]}]},{"oc":"#231f20","x":66.144,"y":13.674,"w":4.0621,"clr":-1,"A":"left","R":[{"T":"artment","S":-1,"TS":[0,8.9759,0,0]}]},{"oc":"#231f20","x":64.081,"y":14.124,"w":3.6096999999999997,"clr":-1,"A":"left","R":[{"T":"use%20onl","S":-1,"TS":[0,8.9759,0,0]}]},{"oc":"#231f20","x":67.835,"y":14.124,"w":0.592,"clr":-1,"A":"left","R":[{"T":"y","S":-1,"TS":[0,8.9759,0,0]}]},{"oc":"#231f20","x":8.033,"y":4.211,"w":26.263400000000004,"clr":-1,"A":"left","R":[{"T":"Do%20Not%20use%20this%20voucher%20if%20paying%20electronically","S":-1,"TS":[0,14.0078,1,0]}]},{"oc":"#231f20","x":73.135,"y":4.954,"w":11.6342,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":5.114,"y":4.954,"w":2.8811999999999998,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":5.073,"y":10.478,"w":12.3498,"clr":-1,"A":"left","R":[{"T":"City%2C%20State%20and%20ZIP%20Code","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":85.201,"y":4.012,"w":2.8516,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,24.0159,1,0]}]},{"oc":"#231f20","x":5.145,"y":6.3,"w":7.9073,"clr":-1,"A":"left","R":[{"T":"Spouse's%20Name","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":73.177,"y":6.345,"w":16.415299999999995,"clr":-1,"A":"left","R":[{"T":"Spouse's%20Social%20Security%20Number","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":5.114,"y":7.702,"w":3.9635000000000002,"clr":-1,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":5.021,"y":11.844,"w":8.345,"clr":-1,"A":"left","R":[{"T":"Preparer's%20Name","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":46.024,"y":11.836,"w":15.081399999999999,"clr":-1,"A":"left","R":[{"T":"Preparer's%20Telephone%20Number","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":73.218,"y":11.859,"w":11.173399999999999,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Payment","S":-1,"TS":[0,9.9839,1,0]}]},{"oc":"#231f20","x":7.744,"y":14.836,"w":0.35000000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13.0078,0,0]}]},{"oc":"#231f20","x":7.61,"y":15.729,"w":0.35000000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13.0078,0,0]}]},{"oc":"#231f20","x":30.809,"y":16.291,"w":6.6242,"clr":-1,"A":"left","R":[{"T":"PO%20Box%205622","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":30.895,"y":16.891,"w":13.571599999999993,"clr":-1,"A":"left","R":[{"T":"Bismarck%2C%20ND%2058506-5622","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":63.854,"y":16.726,"w":3.641,"clr":-1,"A":"left","R":[{"T":"ND-1V","S":-1,"TS":[0,19.9839,1,0]}]},{"oc":"#231f20","x":8.239,"y":1.9649999999999999,"w":27.55160000000001,"clr":-1,"A":"left","R":[{"T":"Form%20ND-1V%20Electronic%20Return%20Payment%20Voucher","S":-1,"TS":[0,16.023899999999998,1,0]}]},{"oc":"#231f20","x":8.239,"y":2.647,"w":23.883000000000003,"clr":-1,"A":"left","R":[{"T":"North%20Dakota%20Office%20of%20State%20Tax%20Commissioner","S":-1,"TS":[0,13.0078,0,0]}]},{"oc":"#231f20","x":8.239,"y":3.221,"w":3.231,"clr":-1,"A":"left","R":[{"T":"28726","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":7.868,"y":13.996,"w":0.35000000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,13.0078,0,0]}]},{"oc":"#010202","x":36.793,"y":18.477,"w":21.346,"clr":-1,"A":"left","R":[{"T":"Detach%20here%20and%20mail%20with%20your%20payment%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.114,"y":9.077,"w":3.9635000000000002,"clr":-1,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,9.9839,0,0]}]},{"oc":"#231f20","x":9.239,"y":13.947,"w":30.319,"clr":-1,"A":"left","R":[{"T":"Due%2015th%20day%20of%204th%20month%20following%20end%20of%20tax%20year.","S":-1,"TS":[0,10.991900000000001,1,0]}]},{"oc":"#231f20","x":9.177,"y":14.829,"w":35.346,"clr":-1,"A":"left","R":[{"T":"Make%20check%20or%20money%20order%20payable%20to%20%22ND%20State%20Tax%20Commissioner.%22","S":-1,"TS":[0,10.991900000000001,0,0]}]},{"oc":"#231f20","x":9.067,"y":15.690999999999999,"w":32.4882,"clr":-1,"A":"left","R":[{"T":"Mail%20payment%20and%20voucher%20to%3A%20%20Office%20of%20State%20Tax%20Commissioner","S":-1,"TS":[0,10.991900000000001,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":209,"AM":1024,"x":5.498,"y":5.783,"w":27.789,"h":0.833,"TU":"Taxpayer's last name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":210,"AM":1024,"x":34.95,"y":5.694,"w":2.347,"h":0.833,"TU":"Taxpayer's MI","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":211,"AM":1024,"x":41.596,"y":5.698,"w":29.332,"h":0.833,"TU":"Taxpayer's last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":212,"AM":1024,"x":73.204,"y":5.755,"w":26.717,"h":0.833,"TU":"Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":213,"AM":1024,"x":41.82,"y":7.137,"w":29.409,"h":0.833,"TU":"Spouse's Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":214,"AM":1024,"x":5.573,"y":7.228,"w":27.638,"h":0.833,"TU":"Spouse's Last Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":215,"AM":1024,"x":35.064,"y":7.103,"w":2.347,"h":0.833,"TU":"Spouse's MI","MV":"maxl:1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":216,"AM":1024,"x":73.413,"y":7.235,"w":26.68,"h":0.833,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":217,"AM":1024,"x":5.38,"y":8.642,"w":63.228,"h":0.833,"TU":"Address Apt No._Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APTNO","EN":0},"TI":218,"AM":1024,"x":73.44,"y":8.55,"w":12.979,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":219,"AM":1024,"x":5.453,"y":9.988,"w":81.071,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":220,"AM":1024,"x":32.803,"y":11.287,"w":6.84,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":221,"AM":1024,"x":22.228,"y":11.382,"w":9.535,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":222,"AM":1024,"x":5.562,"y":11.394,"w":14.893,"h":0.833,"TU":"City, State and Zip Code"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PMTAMT","EN":0},"TI":223,"AM":0,"x":73.499,"y":12.654,"w":14.842,"h":0.833,"TU":"Amount of Payment."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/nd/formselect.json b/test/data/nd/formselect.json new file mode 100755 index 00000000..56579245 --- /dev/null +++ b/test/data/nd/formselect.json @@ -0,0 +1,34 @@ +{ + "mainList": [ + { + "header": "Form ND-EZ", + "imgUrl": "/img/nd/mainform01.png", + "title": "Use Form ND-EZ if you have:", + "notes": [ + "No North Dakota income adjustments", + "No North Dakota tax credits to claim", + "Not paid 2013 North Dakota estimated tax payments" + ], + "links": [ + {"id":"viewNdEzInstructionsLink", "href": "/data/nd/inst/nd_ins_nd1.pdf", "label": "View Instructions", "className": "fsViewLink", "target": "_blank"}, + {"id":"viewNdEzSupportedFormsLink", "href": "/#/nd/forms.availability", "label": "View Supported Forms", "className": "fsViewLink", "target": "_blank"}, + {"id":"selectNdEzButton", "href": "NDEZ", "label": "Start ND-EZ", "className": "btn btn-small genericButton continueButton"} + ] + }, + { + "header": "Form ND-1", + "imgUrl": "/img/nd/mainform02.png", + "title": "Use Form ND-1 if you have:", + "notes": [ + "North Dakota income adjustments", + "North Dakota tax credits to claim", + "Paid 2013 North Dakota estimated tax payments" + ], + "links": [ + {"id":"viewNd1InstructionsLink", "href": "/data/nd/inst/nd_ins_nd1.pdf", "label": "View Instructions", "className": "fsViewLink", "target": "_blank"}, + {"id":"viewNdEzSupportedFormsLink", "href": "/#/nd/forms.availability", "label": "View Supported Forms", "className": "fsViewLink", "target": "_blank"}, + {"id":"selectNd1Button", "href": "ND1", "label": "Start ND-1", "className": "btn btn-small genericButton continueButton", "target": "_blank"} + ] + } + ] +} \ No newline at end of file diff --git a/test/data/nd/formset.json b/test/data/nd/formset.json new file mode 100755 index 00000000..9d3956ec --- /dev/null +++ b/test/data/nd/formset.json @@ -0,0 +1,34 @@ +{ + "formset": [ + { + "id": "S2013NDD", + "version": "0.1", + "agency": "nd", + "main": "ND1", + "forms": [ + {"id": "ND1", "name":"ND-1 Individual income tax return", "mc": false, "max": 1, "parent": null, + "inst":"nd_ins_nd1", "efmid":"EFINFOND", "cid": "ND_1"}, + {"id": "ND1CR", "name":"ND-1CR Credit for income tax paid to another state", "mc": true, "max": 50, "parent": null, + "inst":"nd_ins_cr", "efmid":"", "cid": "ND1CR"}, + {"id": "ND1SA", "name":"ND-1SA Statutory Adjustments", "mc": false, "max": 1, "parent": null, + "inst":"nd_ins_sa", "cid": "ND1SA"}, + {"id": "ND1TC", "name":"ND-1TC Tax Credits", "mc": false, "max": 1, "parent": null, + "inst":"nd_ins_tc", "cid": "ND1TC"}, + {"id": "VOUCHEF", "name":"Form ND-1V Electronic Return Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"nd_ins_1v", "cid": "ND1V"} + ] + }, + { + "id": "S2013NDD", + "version": "0.1", + "agency": "nd", + "main": "NDEZ", + "forms": [ + {"id": "NDEZ", "name":"ND-EZ Individual income tax return", "mc": false, "max": 1, "parent": null, + "inst":"nd_ins_nd1", "efmid":"EFINDEZ", "cid": "NDEZ"}, + {"id": "VOUCHEF", "name":"Form ND-1V Electronic Return Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"nd_ins_1v", "cid": "ND1V"} + ] + } + ] +} \ No newline at end of file diff --git a/test/data/nd/inst/NDSchCode.pdf b/test/data/nd/inst/NDSchCode.pdf new file mode 100755 index 00000000..80f40f75 Binary files /dev/null and b/test/data/nd/inst/NDSchCode.pdf differ diff --git a/test/data/nd/pageset.json b/test/data/nd/pageset.json new file mode 100755 index 00000000..39b29b1f --- /dev/null +++ b/test/data/nd/pageset.json @@ -0,0 +1,67 @@ +{ + "headerData": { + "valueLabel": [ + {"href": "#/nd/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "http://www.nd.gov/tax/indincome/elecfiling/formsupport.html", "label": "ND Support", "target": "_blank", + "styleClass": "formImage"}, + {"href": "#/nd/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "stateTaxUrl":"http://www.nd.gov/tax/indincome/elecfiling/", + "eFileLinkUrl":"http://www.nd.gov/tax/indincome/elecfiling/individual6-income-tax.html", + "faqFooter":"View more of your state-specific FAQs", + "howItWorksList": { + "item1":"Either e-file your return, or print your return and mail it in." + }, + "noteList": { + "item1":"Using this program will only file your North Dakota return and not your federal return.", + "item2":"This program does not support first-time filers in North Dakota and cannot be used to file prior-year returns or amended returns. Both you and your spouse (if married filing jointly) must be full year North Dakota residents, as this program does not support Schedule ND-1NR. In addition, other schedules are not supported, including ND-1FA, ND-1UT, and various schedules for certain tax credits (Renaissance Zone, Planned Gift, Qualified Endowment, Family Care, and Mobilized Employee)." + } + }, + + "landingData": { + "formNumber":"ND-1 or ND-EZ", + "makeSureList": { + "item1": "" + }, + "tipsList": { + "item1":"You will need last year's tax return. In order to e-file you will need to enter the exact amount of last year's North Dakota taxable income." + }, + "beforeList": { + "item1":"Add information for the 2013 1040 Form you filed (1040, 1040A, or 1040EZ). Make sure the information matches your filed federal return exactly.", + "item2":"Enter the exact amount of taxable income from your 2012 North Dakota tax return to identify yourself for e-filing (Form ND-1, line 18 or ND-EZ, line 1)." + } + }, + + "loginData": { + "signInHelpLink":"http://www.nd.gov/tax/indincome/elecfiling/formsupport.html" + }, + + "recoveryData": { + "forgotAnswerLink":"http://www.nd.gov/tax/indincome/elecfiling/formsupport.html" + }, + + "homeHeaderData": { + "href": "http://www.nd.gov/tax/indincome/elecfiling/formsupport.html" + }, + + "efileData": { + "efRefundLink":"http://www.nd.gov/tax/indincome/refundinfo/", + "efRequiredInfo":"Social Security number, filing status, and anticipated refund amount", + "efPaymentDueDate":"April 15, 2014", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + + "commonData": { + "state":"North Dakota", + "stateAbbr":"ND", + "departmentName":"North Dakota Office of State Tax Commissioner", + "siteName": "North Dakota State Fillable Forms", + "url": "https://www.statefillableforms.com/nd", + "currentTaxYear": "2013" + + } +} \ No newline at end of file diff --git a/test/data/or/availability.json b/test/data/or/availability.json new file mode 100755 index 00000000..f051c9db --- /dev/null +++ b/test/data/or/availability.json @@ -0,0 +1,20 @@ +{ + "formset": [ + { + "id": "S2013ORD", + "version": "0.1", + "agency": "or", + "main": "OR40", + "display_name": "Form 40", + "forms": [ + {"id": "OR40", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "ORWFC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "ORASC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "OR529", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "OR10", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCH", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "ORSCHA", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + } + ] +} diff --git a/test/data/or/form/OR10.content.txt b/test/data/or/form/OR10.content.txt new file mode 100755 index 00000000..3d61cb82 --- /dev/null +++ b/test/data/or/form/OR10.content.txt @@ -0,0 +1,771 @@ +Enter the smaller of line 5 or line 8 +150-101-031 (Rev. 12-13) + +7 + +EXCEPTION TO PAYING INTEREST + +1. + +I am claiming an exception to the imposition of estimated payment interest because I qualified + +for relief under ORS 316.573 or 316.587. Write in the exception number you are claiming here + +and on Form 40, box 51a; or Form 40N or Form 40P, box 69a + +........................................................................ +1 + +2013 + FORM +10 +Underpayment of + +Oregon Estimated Tax +File with your 2013 Oregon individual income tax return +Name +Social Security number +– + +– +Exception No._______ + +2. + +2013 + net income tax from Form 40, line 41; or Form 40N or Form 40P, line 58 + +............................................... +2 + +3. + +2013 + refundable tax credit amounts you claimed on Form 40, lines 44–46; or + +Form 40N or Form 40P, lines 62–64 + +......................................................................................................................... +3 + +4. + +Line 2 minus line 3 + +............................................................................................................................... +.............. +4 + +5. + +Multiply line 4 by 90% (0.90) + +............................................................................................ +5 + +6. + +2013 + Oregon income tax withheld from income + +................................................................................................ +6 + +7. + +Line 4 minus line 6. +If less than $1,000, stop here! +You do not owe underpayment interest + +.......................... +7 + +8. + +Enter your 2012 Oregon tax after all credits (include refundable). You must have filed an Oregon return + +........ +8 + +9. + +Required annual payment. + +9 +Note: + If line 6 is equal to or more than line 9, +stop here! +You do not owe underpayment interest. Attach this form to your return. +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +A +April 15, 2013 +B +June 17, 2013 +C +Sept. 16, 2013 +D +Jan. 15, 2014 + +10. + +Payment period due date + +............................................................ +10 + +11. + +Divide the amount on line 9 by four and enter the amount + + in each column, or if you use the Annualized Income + +Worksheet on the back of this form, enter the amounts + +from line 31 here (see instructions), and check box 51b on + +Form 40 or 69b on Form 40N or 40P + +.......................................... +11 + + + + + +No. of + +Monthly + +No. of + +Daily + +Interest + + +Date + +Event + +Amount + +Running balance + +months + +rate + +days + +rate + +due +12. + +4/15/13 + +Req. Pymt. + + + + + +13. + +4/15/ +13 + +Withholding + + + +0.003333 + +0.000110 + + +14. + +Payment + + + +0.003333 + +0.000110 + + +15. + +Payment + + + +0.003333 + +0.000110 + + +16. + +Payment + + + +0.003333 + +0.000110 + + +17. + +6/17/ +13 + +Req. Pymt. + + + + +18. + +6/17/ +13 + +Withholding + + + +0.003333 + +0.000110 + + +19. + +Payment + + + +0.003333 + +0.000110 + + +20. + +Payment + + + +0.003333 + +0.000110 + + +21. + +Payment + + + +0.003333 + +0.000110 + + +22. + +9/16/ +13 + +Req. Pymt. + + + +23. + +9/16/ +13 + +Withholding + + + +0.003333 + +0.000110 + + +24. + +Payment + + + +0.003333 + +0.000110 + + +25. + +Payment + + + +0.003333 + +0.000110 + + +26. + +Payment + + + +0.003333 + +0.000110 + + +27. + +1/15/ +14 + +Rate Chg. + + + +28. + +1/ +15 +/ +14 + +Req. Pymt. + + + +29. + +1/ +15 +/ +14 + +Withholding + + + +0.003333 + +0.000110 + + +30. + +Payment + + + +0.003333 + +0.000110 + + +31. + +Payment + + + +0.003333 + +0.000110 + + +32. + +Payment + + + +0.003333 + +0.000110 + + +33. + +4/ +15 +/ +14 + +34. + +Total interest due. +Add the amounts in the interest column. Round to the nearest + +whole dollar and enter here and on Form 40, line 51; or Form 40N or Form 40P, line 69 + +.............................. +34 +.00 +(See page 3 of the instructions) +— +PART A +— +Figure your required annual payment +PART B +— +Figure your required installment payment +PART C +— +Figure your interest +— + Do not calculate interest after April 15, 2014 +— +................................................................................................ +----------------Page (0) Break---------------- +150-101-031 (Rev. 12-13) + +8 + +1. + + +(see instructions) + +.......................................................................... +1 + +2. + +Oregon additions for each period (see instructions) + +.................... +2 + +3. + +Add lines 1 and 2 + +.......................................................................... +3 + +4. + +Annualization multiplier + +................................................................ +4 + +5. + +Annualized Oregon income. Multiply line 3 by line 4 + +.................... +5 + +6. + +Oregon subtractions for each period (except federal tax) + +............ +6 + +7. + +Annualization multiplier + +................................................................ +7 + +8 + +Annualized Oregon subtractions. Multiply line 6 by line 7 + +............ +8 + +9. + +Federal tax from the worksheet on page 5 of the instructions + +..... +9 + +10. + +Total subtractions. Add lines 8 and 9 + +......................................... +10 + +11. + +Enter your net Oregon itemized deductions for each + +period. If you do not itemize, enter -0- and skip to line 14 + +(see instructions) + +........................................................................ +11 + +12. + +Annualization multiplier + +.............................................................. +12 + +13. + +Annualized net Oregon itemized deductions. + +Multiply line 11 by line 12 + +........................................................... +13 + +14. + +In each column, enter the full amount of your Oregon + +standard deduction + +.................................................................... +14 + +15. + +Enter line 13 or 14, whichever is larger + +...................................... +15 + +16. + +Total deductions. Add lines 10 and 15 + +....................................... +16 + +17. + +Annualized Oregon taxable income. Line 5 minus line 16 + +.......... +17 + +18. + +Oregon tax for the amount on line 17 (see tax tables or + +tax rate chart in the 2013 tax booklet) + +........................................ +18 + +19. + +Exemption credit (not annualized) from Form 40, line 33; + +Form 40N, line 54; or Form 40P, line 53 + +..................................... +19 + +20. + +Enter the credits for each period. Do not include + +exemption credits (see instructions) + +........................................... +20 + +21. + +Total credits. Add lines 19 and 20 + +.............................................. +21 + +22. + +Net annualized income tax. Line 18 minus line 21 + +..................... +22 + +23. + +Percentage that applies for each period + +.................................... +23 + +24. + +Multiply line 22 by line 23 + +........................................................... +24 + +25. + +Enter the sum of all amounts from the prior columns of + +line 31 below (i.e., column A, line 31 amount goes in + +column B, line 25) + +....................................................................... +25 + +26. + +Line 24 minus line 25. If less than zero, enter -0- + +...................... +26 + +27. + + +... +27 + +28. + +Enter the amount from the previous column of line 30 below + +(i.e., column A, line 30 amount goes in column B, line 28) + +......... +28 + +29. + +Add lines 27 and 28 + +.................................................................... +29 + +30. + +If line 29 is +more +than line 26, line 29 minus line 26. + +If line 29 is +less +than line 26, enter -0- + +....................................... +30 + +31. + +Enter the smaller of line 26 or line 29 here and on Part B, + +line 11 (see front of the form). Go to line 1 in next column + +........ +31 +4 +2.4 +1.5 +1 +4 +2.4 +1.5 +1 +( + +) +( + +) +( + +) +( + +) +( + +) +( + +) +( + +) +( + +) +22.5% +45% +67.5% +90% +2013 + +Form 10 +Page 2 +Annualized Income Worksheet +Read the instructions on page 5 +before + completing this worksheet. +Note: +Start with column A. Work down the column, +and complete lines 1 through 31 before going on to columns B, C, and D. +File this form with your 2013 Oregon Individual Income Tax Return +Have questions? See page 6 of the instructions for numbers to call. +* If you are a part-year filer, divide by the number of periods you resided in Oregon, if less than 4. (See instructions for Part B, line 11.) +( + +) +( + +) +( + +) +1 +4 +2.4 +1.5 +A +1/1/13 +to +3/31/13 +B +1/1/13 +to +5/31/13 +C +1/1/13 +to +8/31/13 +D +1/1/13 +to +12/31/13 +Enter your adjusted gross income for each period +*Divide line 9, Part A, by four and enter results in each column +----------------Page (1) Break---------------- diff --git a/test/data/or/form/OR10.fields.json b/test/data/or/form/OR10.fields.json new file mode 100755 index 00000000..2c30a3cd --- /dev/null +++ b/test/data/or/form/OR10.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"EXCEPTNO","type":"number","calc":false,"value":""},{"id":"L2PA","type":"number","calc":true,"value":""},{"id":"L3PA","type":"number","calc":true,"value":""},{"id":"L4PA","type":"number","calc":true,"value":""},{"id":"L5PA","type":"number","calc":true,"value":""},{"id":"L6PA","type":"number","calc":true,"value":""},{"id":"L7PA","type":"number","calc":true,"value":""},{"id":"L8PA","type":"number","calc":false,"value":""},{"id":"L9PA","type":"number","calc":true,"value":""},{"id":"A221_L11PB_1_","type":"number","calc":false,"value":""},{"id":"A221_L11PB_2_","type":"number","calc":false,"value":""},{"id":"A221_L11PB_3_","type":"number","calc":false,"value":""},{"id":"A221_L11PB_4_","type":"number","calc":false,"value":""},{"id":"DUE415","type":"number","calc":false,"value":""},{"id":"RBALA","type":"number","calc":false,"value":""},{"id":"WH415","type":"number","calc":false,"value":""},{"id":"RBALB","type":"number","calc":false,"value":""},{"id":"MONTHSA","type":"alpha","calc":false,"value":""},{"id":"DAYSA","type":"alpha","calc":false,"value":""},{"id":"INTDUEA","type":"number","calc":false,"value":""},{"id":"A424_DATE415_1_","type":"date","calc":false,"value":""},{"id":"A424_PMT415_1_","type":"number","calc":false,"value":""},{"id":"A424_BAL415_1_","type":"number","calc":false,"value":""},{"id":"A424_MON415_1_","type":"alpha","calc":false,"value":""},{"id":"A424_DAYS415_1_","type":"alpha","calc":false,"value":""},{"id":"A424_PEN415_1_","type":"number","calc":false,"value":""},{"id":"A424_DATE415_2_","type":"date","calc":false,"value":""},{"id":"A424_PMT415_2_","type":"number","calc":false,"value":""},{"id":"A424_BAL415_2_","type":"number","calc":false,"value":""},{"id":"A424_MON415_2_","type":"alpha","calc":false,"value":""},{"id":"A424_DAYS415_2_","type":"alpha","calc":false,"value":""},{"id":"A424_PEN415_2_","type":"number","calc":false,"value":""},{"id":"A424_DATE415_3_","type":"date","calc":false,"value":""},{"id":"A424_PMT415_3_","type":"number","calc":false,"value":""},{"id":"A424_BAL415_3_","type":"number","calc":false,"value":""},{"id":"A424_MON415_3_","type":"alpha","calc":false,"value":""},{"id":"A424_DAYS415_3_","type":"alpha","calc":false,"value":""},{"id":"A424_PEN415_3_","type":"number","calc":false,"value":""},{"id":"DUE615","type":"number","calc":false,"value":""},{"id":"RBALF","type":"number","calc":false,"value":""},{"id":"WH615","type":"number","calc":false,"value":""},{"id":"RBALG","type":"number","calc":false,"value":""},{"id":"MONTHSE","type":"alpha","calc":false,"value":""},{"id":"DAYSE","type":"alpha","calc":false,"value":""},{"id":"INTDUEE","type":"number","calc":false,"value":""},{"id":"A425_DATE615_1_","type":"date","calc":false,"value":""},{"id":"A425_PMT615_1_","type":"number","calc":false,"value":""},{"id":"A425_BAL615_1_","type":"number","calc":false,"value":""},{"id":"A425_MON615_1_","type":"alpha","calc":false,"value":""},{"id":"A425_DAYS615_1_","type":"alpha","calc":false,"value":""},{"id":"A425_PEN615_1_","type":"number","calc":false,"value":""},{"id":"A425_DATE615_2_","type":"date","calc":false,"value":""},{"id":"A425_PMT615_2_","type":"number","calc":false,"value":""},{"id":"A425_BAL615_2_","type":"number","calc":false,"value":""},{"id":"A425_MON615_2_","type":"alpha","calc":false,"value":""},{"id":"A425_DAYS615_2_","type":"alpha","calc":false,"value":""},{"id":"A425_PEN615_2_","type":"number","calc":false,"value":""},{"id":"A425_DATE615_3_","type":"date","calc":false,"value":""},{"id":"A425_PMT615_3_","type":"number","calc":false,"value":""},{"id":"A425_BAL615_3_","type":"number","calc":false,"value":""},{"id":"A425_MON615_3_","type":"alpha","calc":false,"value":""},{"id":"A425_DAYS615_3_","type":"alpha","calc":false,"value":""},{"id":"A425_PEN615_3_","type":"number","calc":false,"value":""},{"id":"DUE915","type":"number","calc":false,"value":""},{"id":"RBALK","type":"number","calc":false,"value":""},{"id":"WH915","type":"number","calc":false,"value":""},{"id":"RBALL","type":"number","calc":false,"value":""},{"id":"MONTHSI","type":"alpha","calc":false,"value":""},{"id":"DAYSI","type":"alpha","calc":false,"value":""},{"id":"INTDUEI","type":"number","calc":false,"value":""},{"id":"A426_DATE915_1_","type":"date","calc":false,"value":""},{"id":"A426_PMT915_1_","type":"number","calc":false,"value":""},{"id":"A426_BAL915_1_","type":"number","calc":false,"value":""},{"id":"A426_MON915_1_","type":"alpha","calc":false,"value":""},{"id":"A426_DAYS915_1_","type":"alpha","calc":false,"value":""},{"id":"A426_PEN915_1_","type":"number","calc":false,"value":""},{"id":"A426_DATE915_2_","type":"date","calc":false,"value":""},{"id":"A426_PMT915_2_","type":"number","calc":false,"value":""},{"id":"A426_BAL915_2_","type":"number","calc":false,"value":""},{"id":"A426_MON915_2_","type":"alpha","calc":false,"value":""},{"id":"A426_DAYS915_2_","type":"alpha","calc":false,"value":""},{"id":"A426_PEN915_2_","type":"number","calc":false,"value":""},{"id":"A426_DATE915_3_","type":"date","calc":false,"value":""},{"id":"A426_PMT915_3_","type":"number","calc":false,"value":""},{"id":"A426_BAL915_3_","type":"number","calc":false,"value":""},{"id":"A426_MON915_3_","type":"alpha","calc":false,"value":""},{"id":"A426_DAYS915_3_","type":"alpha","calc":false,"value":""},{"id":"A426_PEN915_3_","type":"number","calc":false,"value":""},{"id":"RBALP","type":"number","calc":false,"value":""},{"id":"DUE115","type":"number","calc":false,"value":""},{"id":"RBALQ","type":"number","calc":false,"value":""},{"id":"WH115","type":"number","calc":false,"value":""},{"id":"RBALR","type":"number","calc":false,"value":""},{"id":"MONTHSM","type":"alpha","calc":false,"value":""},{"id":"DAYSM","type":"alpha","calc":false,"value":""},{"id":"INTDUEM","type":"number","calc":false,"value":""},{"id":"A427_DATE115_1_","type":"date","calc":false,"value":""},{"id":"A427_PMT115_1_","type":"number","calc":false,"value":""},{"id":"A427_BAL115_1_","type":"number","calc":false,"value":""},{"id":"A427_MON115_1_","type":"alpha","calc":false,"value":""},{"id":"A427_DAYS115_1_","type":"alpha","calc":false,"value":""},{"id":"A427_PEN115_1_","type":"number","calc":false,"value":""},{"id":"A427_DATE115_2_","type":"date","calc":false,"value":""},{"id":"A427_PMT115_2_","type":"number","calc":false,"value":""},{"id":"A427_BAL115_2_","type":"number","calc":false,"value":""},{"id":"A427_MON115_2_","type":"alpha","calc":false,"value":""},{"id":"A427_DAYS115_2_","type":"alpha","calc":false,"value":""},{"id":"A427_PEN115_2_","type":"number","calc":false,"value":""},{"id":"A427_DATE115_3_","type":"date","calc":false,"value":""},{"id":"A427_PMT115_3_","type":"number","calc":false,"value":""},{"id":"A427_BAL115_3_","type":"number","calc":false,"value":""},{"id":"A427_MON115_3_","type":"alpha","calc":false,"value":""},{"id":"A427_DAYS115_3_","type":"alpha","calc":false,"value":""},{"id":"A427_PEN115_3_","type":"number","calc":false,"value":""},{"id":"L27PC","type":"number","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"A169_L1_1_","type":"number","calc":false,"value":""},{"id":"A169_L1_2_","type":"number","calc":false,"value":""},{"id":"A169_L1_3_","type":"number","calc":false,"value":""},{"id":"A169_L1_4_","type":"number","calc":false,"value":""},{"id":"A170_L2_1_","type":"number","calc":false,"value":""},{"id":"A170_L2_2_","type":"number","calc":false,"value":""},{"id":"A170_L2_3_","type":"number","calc":false,"value":""},{"id":"A170_L2_4_","type":"number","calc":false,"value":""},{"id":"A171_L3_1_","type":"number","calc":false,"value":""},{"id":"A171_L3_2_","type":"number","calc":false,"value":""},{"id":"A171_L3_3_","type":"number","calc":false,"value":""},{"id":"A171_L3_4_","type":"number","calc":false,"value":""},{"id":"A172_L5_1_","type":"number","calc":false,"value":""},{"id":"A172_L5_2_","type":"number","calc":false,"value":""},{"id":"A172_L5_3_","type":"number","calc":false,"value":""},{"id":"A172_L5_4_","type":"number","calc":false,"value":""},{"id":"A173_L6_1_","type":"number","calc":false,"value":""},{"id":"A173_L6_2_","type":"number","calc":false,"value":""},{"id":"A173_L6_3_","type":"number","calc":false,"value":""},{"id":"A173_L6_4_","type":"number","calc":false,"value":""},{"id":"A174_L8_1_","type":"number","calc":false,"value":""},{"id":"A174_L8_2_","type":"number","calc":false,"value":""},{"id":"A174_L8_3_","type":"number","calc":false,"value":""},{"id":"A174_L8_4_","type":"number","calc":false,"value":""},{"id":"A175_L9_1_","type":"number","calc":false,"value":""},{"id":"A175_L9_2_","type":"number","calc":false,"value":""},{"id":"A175_L9_3_","type":"number","calc":false,"value":""},{"id":"A175_L9_4_","type":"number","calc":false,"value":""},{"id":"A176_L10_1_","type":"number","calc":false,"value":""},{"id":"A176_L10_2_","type":"number","calc":false,"value":""},{"id":"A176_L10_3_","type":"number","calc":false,"value":""},{"id":"A176_L10_4_","type":"number","calc":false,"value":""},{"id":"A177_L11_1_","type":"number","calc":false,"value":""},{"id":"A177_L11_2_","type":"number","calc":false,"value":""},{"id":"A177_L11_3_","type":"number","calc":false,"value":""},{"id":"A177_L11_4_","type":"number","calc":false,"value":""},{"id":"A178_L13_1_","type":"number","calc":false,"value":""},{"id":"A178_L13_2_","type":"number","calc":false,"value":""},{"id":"A178_L13_3_","type":"number","calc":false,"value":""},{"id":"A178_L13_4_","type":"number","calc":false,"value":""},{"id":"A179_L14_1_","type":"number","calc":false,"value":""},{"id":"A179_L14_2_","type":"number","calc":false,"value":""},{"id":"A179_L14_3_","type":"number","calc":false,"value":""},{"id":"A179_L14_4_","type":"number","calc":false,"value":""},{"id":"A180_L15_1_","type":"number","calc":false,"value":""},{"id":"A180_L15_2_","type":"number","calc":false,"value":""},{"id":"A180_L15_3_","type":"number","calc":false,"value":""},{"id":"A180_L15_4_","type":"number","calc":false,"value":""},{"id":"A181_L16_1_","type":"number","calc":false,"value":""},{"id":"A181_L16_2_","type":"number","calc":false,"value":""},{"id":"A181_L16_3_","type":"number","calc":false,"value":""},{"id":"A181_L16_4_","type":"number","calc":false,"value":""},{"id":"A182_L17_1_","type":"number","calc":false,"value":""},{"id":"A182_L17_2_","type":"number","calc":false,"value":""},{"id":"A182_L17_3_","type":"number","calc":false,"value":""},{"id":"A182_L17_4_","type":"number","calc":false,"value":""},{"id":"A183_L18_1_","type":"number","calc":false,"value":""},{"id":"A183_L18_2_","type":"number","calc":false,"value":""},{"id":"A183_L18_3_","type":"number","calc":false,"value":""},{"id":"A183_L18_4_","type":"number","calc":false,"value":""},{"id":"A184_L19_1_","type":"number","calc":false,"value":""},{"id":"A184_L19_2_","type":"number","calc":false,"value":""},{"id":"A184_L19_3_","type":"number","calc":false,"value":""},{"id":"A184_L19_4_","type":"number","calc":false,"value":""},{"id":"A185_L20_1_","type":"number","calc":false,"value":""},{"id":"A185_L20_2_","type":"number","calc":false,"value":""},{"id":"A185_L20_3_","type":"number","calc":false,"value":""},{"id":"A185_L20_4_","type":"number","calc":false,"value":""},{"id":"A186_L21_1_","type":"number","calc":false,"value":""},{"id":"A186_L21_2_","type":"number","calc":false,"value":""},{"id":"A186_L21_3_","type":"number","calc":false,"value":""},{"id":"A186_L21_4_","type":"number","calc":false,"value":""},{"id":"A187_L22_1_","type":"number","calc":false,"value":""},{"id":"A187_L22_2_","type":"number","calc":false,"value":""},{"id":"A187_L22_3_","type":"number","calc":false,"value":""},{"id":"A187_L22_4_","type":"number","calc":false,"value":""},{"id":"A188_L24_1_","type":"number","calc":false,"value":""},{"id":"A188_L24_2_","type":"number","calc":false,"value":""},{"id":"A188_L24_3_","type":"number","calc":false,"value":""},{"id":"A188_L24_4_","type":"number","calc":false,"value":""},{"id":"A189_L25_1_","type":"number","calc":false,"value":""},{"id":"A189_L25_2_","type":"number","calc":false,"value":""},{"id":"A189_L25_3_","type":"number","calc":false,"value":""},{"id":"A190_L26_1_","type":"number","calc":false,"value":""},{"id":"A190_L26_2_","type":"number","calc":false,"value":""},{"id":"A190_L26_3_","type":"number","calc":false,"value":""},{"id":"A190_L26_4_","type":"number","calc":false,"value":""},{"id":"A191_L27_1_","type":"number","calc":false,"value":""},{"id":"A191_L27_2_","type":"number","calc":false,"value":""},{"id":"A191_L27_3_","type":"number","calc":false,"value":""},{"id":"A191_L27_4_","type":"number","calc":false,"value":""},{"id":"A192_L28_1_","type":"number","calc":false,"value":""},{"id":"A192_L28_2_","type":"number","calc":false,"value":""},{"id":"A192_L28_3_","type":"number","calc":false,"value":""},{"id":"A193_L29_1_","type":"number","calc":false,"value":""},{"id":"A193_L29_2_","type":"number","calc":false,"value":""},{"id":"A193_L29_3_","type":"number","calc":false,"value":""},{"id":"A193_L29_4_","type":"number","calc":false,"value":""},{"id":"A194_L30_1_","type":"number","calc":false,"value":""},{"id":"A194_L30_2_","type":"number","calc":false,"value":""},{"id":"A194_L30_3_","type":"number","calc":false,"value":""},{"id":"A194_L30_4_","type":"number","calc":false,"value":""},{"id":"A195_L31_1_","type":"number","calc":false,"value":""},{"id":"A195_L31_2_","type":"number","calc":false,"value":""},{"id":"A195_L31_3_","type":"number","calc":false,"value":""},{"id":"A195_L31_4_","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/OR10.json b/test/data/or/form/OR10.json new file mode 100755 index 00000000..d342bfbf --- /dev/null +++ b/test/data/or/form/OR10.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 10, Underpayment of Oregon Estimated Tax, 150-101-031","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":6.256,"y":5.206,"w":1.2000000000000002,"l":92.756},{"oc":"#2b2e34","x":6.256,"y":2.256,"w":1.2000000000000002,"l":92.756},{"oc":"#2b2e34","x":6.188,"y":5.712,"w":0.75,"l":92.813},{"oc":"#2b2e34","x":6.188,"y":5.837,"w":0.75,"l":92.813},{"oc":"#2b2e34","x":6.188,"y":7.341,"w":0.75,"l":92.813},{"oc":"#2b2e34","x":6.188,"y":7.466,"w":0.75,"l":92.813},{"oc":"#2b2e34","x":6.188,"y":11.172,"w":0.75,"l":92.813},{"oc":"#2b2e34","x":84.219,"y":10.466,"w":1.5,"l":14.747},{"oc":"#2b2e34","x":84.219,"y":9.028,"w":1.5,"l":14.747},{"oc":"#2b2e34","x":6.239,"y":46.735,"w":0.75,"l":92.813},{"oc":"#2b2e34","x":6.239,"y":46.86,"w":0.75,"l":92.813},{"oc":"#2b2e34","x":84.176,"y":16.478,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":15.728,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":17.228,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":16.478,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":17.978,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":17.228,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":18.728,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":17.978,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":69.352,"y":15.728,"w":0.75,"l":14.824},{"oc":"#2b2e34","x":69.352,"y":14.978,"w":0.75,"l":14.824},{"oc":"#2b2e34","x":84.176,"y":12.741,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":11.991,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":14.241,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":13.491,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":14.991,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.176,"y":14.241,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":54.45,"y":25.519,"w":0.75,"l":44.599},{"oc":"#2b2e34","x":54.453,"y":20.266,"w":0.75,"l":44.616},{"oc":"#2b2e34","x":54.51,"y":21.025,"w":0.75,"l":44.516},{"oc":"#2b2e34","x":54.539,"y":21.775,"w":0.75,"l":44.516},{"oc":"#2b2e34","x":8.799,"y":38.238,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.799,"y":38.988,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.799,"y":39.738,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.799,"y":40.488,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.799,"y":41.238,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.799,"y":41.988,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.821,"y":42.739,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.662,"y":43.489,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.724,"y":27.172,"w":1.125,"l":90.338},{"oc":"#2b2e34","x":8.662,"y":28.486,"w":1.5,"l":90.338},{"oc":"#2b2e34","x":8.787,"y":29.236,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.787,"y":29.986,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.786,"y":30.736,"w":0.75,"l":90.295},{"oc":"#2b2e34","x":8.787,"y":31.486,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.787,"y":32.236,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.787,"y":32.987,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.787,"y":33.737,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.787,"y":34.487,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.662,"y":35.237,"w":0.75,"l":90.338},{"oc":"#2b2e34","x":8.799,"y":35.987,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.799,"y":36.737,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":8.799,"y":37.488,"w":0.75,"l":90.315},{"oc":"#2b2e34","x":84.193,"y":46.474,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":84.193,"y":45.724,"w":0.75,"l":14.781},{"oc":"#2b2e34","x":8.724,"y":44.989,"w":1.125,"l":90.338},{"oc":"#2b2e34","x":8.662,"y":44.239,"w":0.75,"l":90.338}],"VLines":[{"oc":"#2b2e34","x":99.012,"y":2.256,"w":1.2000000000000002,"l":2.95},{"oc":"#2b2e34","x":6.256,"y":2.256,"w":1.2000000000000002,"l":2.95},{"oc":"#2b2e34","x":74.293,"y":5.828,"w":0.75,"l":1.5},{"oc":"#2b2e34","x":98.966,"y":9.028,"w":1.5,"l":1.438},{"oc":"#2b2e34","x":84.219,"y":9.028,"w":1.5,"l":1.438},{"oc":"#2b2e34","x":98.957,"y":15.728,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.176,"y":15.728,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":95.416,"y":15.719,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":98.957,"y":16.478,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.176,"y":16.478,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":95.416,"y":16.469,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":98.957,"y":17.228,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.176,"y":17.228,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":95.416,"y":17.219,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":98.957,"y":17.978,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.176,"y":17.978,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":95.416,"y":17.969,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":84.176,"y":14.978,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":69.352,"y":14.978,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":80.446,"y":14.969,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":98.957,"y":11.991,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.176,"y":11.991,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":95.356,"y":11.981,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":98.957,"y":13.491,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.176,"y":13.491,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":95.356,"y":13.481,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":98.957,"y":14.241,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.176,"y":14.241,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":95.356,"y":14.231,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":99.017,"y":20.25,"w":0.75,"l":5.271},{"oc":"#2b2e34","x":87.88,"y":20.269,"w":0.75,"l":5.252},{"oc":"#2b2e34","x":76.811,"y":20.269,"w":0.75,"l":5.257},{"oc":"#2b2e34","x":54.496,"y":20.269,"w":0.75,"l":5.247},{"oc":"#2b2e34","x":65.553,"y":20.285,"w":0.75,"l":5.241},{"oc":"#2b2e34","x":18.986,"y":27.177,"w":0.75,"l":17.795},{"oc":"#2b2e34","x":27.784,"y":27.177,"w":0.75,"l":17.062},{"oc":"#2b2e34","x":39.695,"y":27.177,"w":0.75,"l":17.03},{"oc":"#2b2e34","x":53.393,"y":27.182,"w":1.5,"l":17.038},{"oc":"#2b2e34","x":8.705,"y":27.172,"w":1.125,"l":17.801},{"oc":"#2b2e34","x":59.409,"y":27.172,"w":0.75,"l":17.058},{"oc":"#2b2e34","x":69.24,"y":27.167,"w":0.75,"l":17.041},{"oc":"#2b2e34","x":75.599,"y":27.182,"w":0.75,"l":17.025},{"oc":"#2b2e34","x":85.444,"y":27.187,"w":0.75,"l":17.02},{"oc":"#2b2e34","x":99.043,"y":27.151,"w":1.125,"l":17.819},{"oc":"#2b2e34","x":95.387,"y":45.708,"w":0.75,"l":0.747},{"oc":"#2b2e34","x":98.974,"y":45.724,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":84.193,"y":45.724,"w":0.75,"l":0.75}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#9a9b9f","x":53.325,"y":40.497,"w":45.675,"h":0.731,"clr":-1},{"oc":"#9a9b9f","x":53.325,"y":39.753,"w":45.675,"h":0.72,"clr":-1},{"oc":"#9a9b9f","x":27.805,"y":39.766,"w":11.937,"h":0.718,"clr":-1},{"oc":"#9a9b9f","x":53.325,"y":28.506,"w":45.675,"h":0.718,"clr":-1},{"oc":"#9a9b9f","x":53.325,"y":35.997,"w":45.675,"h":0.761,"clr":-1},{"oc":"#9a9b9f","x":53.325,"y":32.243,"w":45.675,"h":0.728,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":26.861,"y":17.918,"w":15.151000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%205%20or%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":46.906,"w":10.309000000000001,"clr":-1,"A":"left","R":[{"T":"150-101-031%20(Rev.%2012-13)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":52.038,"y":47.531,"w":0.513,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":7.4399999999999995,"w":16.758,"clr":-1,"A":"left","R":[{"T":"EXCEPTION%20TO%20PAYING%20INTEREST","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":6.538,"y":8.115,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.532,"y":8.115,"w":42.27100000000001,"clr":-1,"A":"left","R":[{"T":"I%20am%20claiming%20an%20exception%20to%20the%20imposition%20of%20estimated%20payment%20interest%20because%20I%20qualified%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.533,"y":8.79,"w":41.65999999999999,"clr":-1,"A":"left","R":[{"T":"for%20relief%20under%20ORS%20316.573%20or%20316.587.%20Write%20in%20the%20exception%20number%20you%20are%20claiming%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.533,"y":9.465,"w":27.732000000000006,"clr":-1,"A":"left","R":[{"T":"and%20on%20Form%2040%2C%20box%2051a%3B%20or%20Form%2040N%20or%20Form%2040P%2C%20box%2069a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":51.52,"y":9.465,"w":20.016000000000002,"clr":-1,"A":"left","R":[{"T":"........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":9.465,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":3.777,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,41,0,0]}]},{"oc":"#2b2e34","x":7.542,"y":2.222,"w":3.278,"clr":-1,"A":"left","R":[{"T":"%20FORM","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.752,"y":4.029,"w":0.9720000000000001,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,37,0,0]}]},{"oc":"#2b2e34","x":42.45,"y":2.39,"w":8.536999999999999,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":39.734,"y":3.3280000000000003,"w":10.646000000000003,"clr":-1,"A":"left","R":[{"T":"Oregon%20Estimated%20Tax","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":33.333,"y":4.19,"w":24.653000000000002,"clr":-1,"A":"left","R":[{"T":"File%20with%20your%202013%20Oregon%20individual%20income%20tax%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.359,"y":5.447,"w":2.649,"clr":-1,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":74.369,"y":5.466,"w":10.372000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":81.004,"y":6.195,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":87.191,"y":6.195,"w":0.5,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.246,"y":9.401,"w":10.149999999999999,"clr":-1,"A":"left","R":[{"T":"Exception%20No._______","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":11.918,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":11.918,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.093,"y":11.918,"w":32.493,"clr":-1,"A":"left","R":[{"T":"%20net%20income%20tax%20from%20Form%2040%2C%20line%2041%3B%20or%20Form%2040N%20or%20Form%2040P%2C%20line%2058%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.272,"y":11.918,"w":13.066000000000015,"clr":-1,"A":"left","R":[{"T":"...............................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":11.918,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":12.668,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":12.668,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.093,"y":12.668,"w":31.124999999999996,"clr":-1,"A":"left","R":[{"T":"%20refundable%20tax%20credit%20amounts%20you%20claimed%20on%20Form%2040%2C%20lines%2044%E2%80%9346%3B%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":13.418,"w":15.546,"clr":-1,"A":"left","R":[{"T":"Form%2040N%20or%20Form%2040P%2C%20lines%2062%E2%80%9364","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.47,"y":13.418,"w":32.428000000000054,"clr":-1,"A":"left","R":[{"T":".........................................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":13.418,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":14.168,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.652,"y":14.168,"w":8.319000000000003,"clr":-1,"A":"left","R":[{"T":"Line%202%20minus%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.849,"y":14.125,"w":35.30599999999993,"clr":-1,"A":"left","R":[{"T":"...............................................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.463,"y":14.125,"w":3.8920000000000003,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":14.125,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":14.918,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.652,"y":14.918,"w":12.653000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%2090%25%20(0.90)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.3,"y":14.918,"w":25.575999999999976,"clr":-1,"A":"left","R":[{"T":"............................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.984,"y":14.918,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":15.668,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":15.668,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.093,"y":15.668,"w":18.745000000000005,"clr":-1,"A":"left","R":[{"T":"%20Oregon%20income%20tax%20withheld%20from%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.201,"y":15.668,"w":26.68799999999997,"clr":-1,"A":"left","R":[{"T":"................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":15.668,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":16.418,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.652,"y":16.418,"w":8.597000000000003,"clr":-1,"A":"left","R":[{"T":"Line%204%20minus%20line%206.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.092,"y":16.418,"w":13.891000000000004,"clr":-1,"A":"left","R":[{"T":"If%20less%20than%20%241%2C000%2C%20stop%20here!","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":40.891,"y":16.418,"w":17.43,"clr":-1,"A":"left","R":[{"T":"You%20do%20not%20owe%20underpayment%20interest","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.302,"y":16.418,"w":7.228000000000005,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":16.418,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":17.168,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.652,"y":17.168,"w":45.56499999999996,"clr":-1,"A":"left","R":[{"T":"Enter%20your%202012%20Oregon%20tax%20after%20all%20credits%20(include%20refundable).%20You%20must%20have%20filed%20an%20Oregon%20return","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":79.042,"y":17.168,"w":2.224,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":17.168,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.813,"y":17.918,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.644,"y":17.918,"w":12.48,"clr":-1,"A":"left","R":[{"T":"Required%20annual%20payment.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":82.765,"y":17.918,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.937,"y":18.668,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.891,"y":18.668,"w":17.301,"clr":-1,"A":"left","R":[{"T":"%20If%20line%206%20is%20equal%20to%20or%20more%20than%20line%209%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.134,"y":18.668,"w":4.797000000000001,"clr":-1,"A":"left","R":[{"T":"stop%20here!","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.07,"y":18.668,"w":31.692999999999998,"clr":-1,"A":"left","R":[{"T":"You%20do%20not%20owe%20underpayment%20interest.%20Attach%20this%20form%20to%20your%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":95.648,"y":15.565000000000001,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":95.648,"y":16.315,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":95.648,"y":17.065,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":95.648,"y":17.815,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":80.909,"y":14.815,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":95.648,"y":11.828,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":95.648,"y":13.328,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":95.648,"y":14.078,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":59.107,"y":20.112,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":56.154,"y":20.817,"w":6.188000000000001,"clr":-1,"A":"left","R":[{"T":"April%2015%2C%202013","S":-1,"TS":[0,9.7,0,0]}]},{"oc":"#2b2e34","x":70.361,"y":20.112,"w":0.704,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":67.24,"y":20.817,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"June%2017%2C%202013","S":-1,"TS":[0,9.7,0,0]}]},{"oc":"#2b2e34","x":81.403,"y":20.112,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":78.312,"y":20.817,"w":6.541,"clr":-1,"A":"left","R":[{"T":"Sept.%2016%2C%202013","S":-1,"TS":[0,9.7,0,0]}]},{"oc":"#2b2e34","x":92.527,"y":20.112,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":89.662,"y":20.817,"w":6.0600000000000005,"clr":-1,"A":"left","R":[{"T":"Jan.%2015%2C%202014","S":-1,"TS":[0,9.7,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":20.881,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":20.881,"w":11.300000000000002,"clr":-1,"A":"left","R":[{"T":"Payment%20period%20due%20date","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.149,"y":20.881,"w":16.680000000000017,"clr":-1,"A":"left","R":[{"T":"............................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.17,"y":20.881,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":21.631,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.652,"y":21.631,"w":25.751,"clr":-1,"A":"left","R":[{"T":"Divide%20the%20amount%20on%20line%209%20by%20four%20and%20enter%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":22.381,"w":23.858000000000004,"clr":-1,"A":"left","R":[{"T":"%20in%20each%20column%2C%20or%20if%20you%20use%20the%20Annualized%20Income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":23.131,"w":24.675,"clr":-1,"A":"left","R":[{"T":"Worksheet%20on%20the%20back%20of%20this%20form%2C%20enter%20the%20amounts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":23.881,"w":26.174,"clr":-1,"A":"left","R":[{"T":"from%20line%2031%20here%20(see%20instructions)%2C%20and%20check%20box%2051b%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.653,"y":24.631,"w":16.247000000000003,"clr":-1,"A":"left","R":[{"T":"Form%2040%20or%2069b%20on%20Form%2040N%20or%2040P","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.89,"y":24.631,"w":11.676000000000013,"clr":-1,"A":"left","R":[{"T":"..........................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.171,"y":24.631,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.149,"y":27.02,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"No.%20of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":61.453,"y":27.02,"w":3.8329999999999997,"clr":-1,"A":"left","R":[{"T":"Monthly","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.39,"y":27.02,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"No.%20of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":78.468,"y":27.02,"w":2.35,"clr":-1,"A":"left","R":[{"T":"Daily","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":89.64,"y":27.02,"w":3.666,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":10.75,"y":27.52,"w":2.2409999999999997,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":21.005,"y":27.52,"w":2.687,"clr":-1,"A":"left","R":[{"T":"Event","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":30.688,"y":27.52,"w":3.7399999999999998,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":40.656,"y":27.52,"w":7.998999999999999,"clr":-1,"A":"left","R":[{"T":"Running%20balance","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":53.719,"y":27.52,"w":3.5919999999999996,"clr":-1,"A":"left","R":[{"T":"months","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":62.484,"y":27.52,"w":1.889,"clr":-1,"A":"left","R":[{"T":"rate","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.391,"y":27.52,"w":2.241,"clr":-1,"A":"left","R":[{"T":"days","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":78.641,"y":27.52,"w":1.889,"clr":-1,"A":"left","R":[{"T":"rate","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":90.672,"y":27.52,"w":1.778,"clr":-1,"A":"left","R":[{"T":"due","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":28.457,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.719,"y":28.395,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"4%2F15%2F13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":28.395,"w":4.965,"clr":-1,"A":"left","R":[{"T":"Req.%20Pymt.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":29.145,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.718,"y":29.145,"w":2.3340000000000005,"clr":-1,"A":"left","R":[{"T":"4%2F15%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.329,"y":29.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":29.145,"w":5.316,"clr":-1,"A":"left","R":[{"T":"Withholding","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.937,"y":29.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.921,"y":29.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":29.895,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":29.895,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.937,"y":29.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.921,"y":29.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":30.645,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":30.645,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":30.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":30.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":31.395000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":31.395000000000003,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":31.395000000000003,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":31.395000000000003,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":32.145,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.718,"y":32.145,"w":2.3340000000000005,"clr":-1,"A":"left","R":[{"T":"6%2F17%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":32.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":32.145,"w":4.965,"clr":-1,"A":"left","R":[{"T":"Req.%20Pymt.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":32.895,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.718,"y":32.895,"w":2.3340000000000005,"clr":-1,"A":"left","R":[{"T":"6%2F17%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":32.895,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":32.895,"w":5.316,"clr":-1,"A":"left","R":[{"T":"Withholding","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":32.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":32.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.953,"y":33.645,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":33.645,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":33.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":33.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":34.395,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":34.395,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":34.395,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":34.395,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":35.145,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":35.145,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":35.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":35.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":35.895,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.719,"y":35.895,"w":2.3340000000000005,"clr":-1,"A":"left","R":[{"T":"9%2F16%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":35.895,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.116,"y":35.895,"w":4.965,"clr":-1,"A":"left","R":[{"T":"Req.%20Pymt.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":36.645,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.719,"y":36.645,"w":2.3340000000000005,"clr":-1,"A":"left","R":[{"T":"9%2F16%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":36.645,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.116,"y":36.645,"w":5.316,"clr":-1,"A":"left","R":[{"T":"Withholding","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":36.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":36.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":37.395,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":37.395,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":37.395,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":37.395,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":38.145,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":38.145,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":38.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":38.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":38.895,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":38.895,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":38.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":38.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":39.645,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.719,"y":39.645,"w":2.3340000000000005,"clr":-1,"A":"left","R":[{"T":"1%2F15%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":39.645,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.116,"y":39.645,"w":4.481999999999999,"clr":-1,"A":"left","R":[{"T":"Rate%20Chg.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":40.395,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.719,"y":40.395,"w":0.889,"clr":-1,"A":"left","R":[{"T":"1%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.095,"y":40.395,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.815,"y":40.395,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":40.395,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.116,"y":40.395,"w":4.965,"clr":-1,"A":"left","R":[{"T":"Req.%20Pymt.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":41.145,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.719,"y":41.145,"w":0.889,"clr":-1,"A":"left","R":[{"T":"1%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.095,"y":41.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.815,"y":41.145,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":41.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.116,"y":41.145,"w":5.316,"clr":-1,"A":"left","R":[{"T":"Withholding","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":41.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":41.145,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":41.895,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":41.895,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":41.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":41.895,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":42.645,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":42.645,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.938,"y":42.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":42.645,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":43.395,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.115,"y":43.395,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.939,"y":43.395,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.003333","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":43.395,"w":4.17,"clr":-1,"A":"left","R":[{"T":"0.000110","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.954,"y":44.145,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.719,"y":44.145,"w":0.889,"clr":-1,"A":"left","R":[{"T":"4%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.095,"y":44.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.815,"y":44.145,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":13.33,"y":44.145,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.939,"y":44.957,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.654,"y":44.957,"w":8.647,"clr":-1,"A":"left","R":[{"T":"Total%20interest%20due.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.658,"y":44.957,"w":27.844,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20in%20the%20interest%20column.%20Round%20to%20the%20nearest%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.654,"y":45.707,"w":38.529,"clr":-1,"A":"left","R":[{"T":"whole%20dollar%20and%20enter%20here%20and%20on%20Form%2040%2C%20line%2051%3B%20or%20Form%2040N%20or%20Form%2040P%2C%20line%2069","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":68.293,"y":45.707,"w":8.340000000000007,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.562,"y":45.707,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":95.618,"y":45.554,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":30.816,"y":26.207,"w":13.891000000000002,"clr":-1,"A":"left","R":[{"T":"(See%20page%203%20of%20the%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"x":1.469,"y":0.5,"w":12.780000000000001,"clr":0,"A":"left","R":[{"T":"%E2%80%94%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":11.168,"w":3.6479999999999997,"clr":-1,"A":"left","R":[{"T":"PART%20A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":12.049,"y":11.168,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%80%94","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.768,"y":11.168,"w":17.555000000000003,"clr":-1,"A":"left","R":[{"T":"Figure%20your%20required%20annual%20payment","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":20.131,"w":3.667,"clr":-1,"A":"left","R":[{"T":"PART%20B","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":12.082,"y":20.131,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%80%94","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":13.801,"y":20.131,"w":19.625,"clr":-1,"A":"left","R":[{"T":"Figure%20your%20required%20installment%20payment","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":26.207,"w":3.9819999999999998,"clr":-1,"A":"left","R":[{"T":"PART%20C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":12.623,"y":26.207,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%E2%80%94%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":14.82,"y":26.207,"w":9.593000000000002,"clr":-1,"A":"left","R":[{"T":"Figure%20your%20interest%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":38.164,"y":44.145,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%80%94","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.711,"y":44.145,"w":21.129,"clr":-1,"A":"left","R":[{"T":"%20Do%20not%20calculate%20interest%20after%20April%2015%2C%202014","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.589,"y":44.145,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%80%94","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.475,"y":17.891,"w":26.68799999999997,"clr":-1,"A":"left","R":[{"T":"................................................................................................","S":-1,"TS":[0,9.94143,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":0,"AM":1024,"x":6.611,"y":6.439,"w":66.841,"h":0.833,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1,"AM":1024,"x":74.546,"y":6.466,"w":24.052,"h":0.833,"TU":"Social Security number – –"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXCEPTNO","EN":0},"TI":2,"AM":0,"x":93.894,"y":9.532,"w":4.549,"h":0.833,"TU":"Line 1. Exception No."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2PA","EN":0},"TI":3,"AM":1024,"x":84.301,"y":12.006,"w":11.032,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3PA","EN":0},"TI":4,"AM":1024,"x":84.324,"y":13.496,"w":11.032,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4PA","EN":0},"TI":5,"AM":1024,"x":84.304,"y":14.224,"w":11.032,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5PA","EN":0},"TI":6,"AM":1024,"x":69.444,"y":15.015,"w":10.89,"h":0.833,"TU":"3 4_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6PA","EN":0},"TI":7,"AM":1024,"x":84.274,"y":15.765,"w":11.034,"h":0.833,"TU":"6 .......................... 7 ........ 8 ............. 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7PA","EN":0},"TI":8,"AM":1024,"x":84.274,"y":16.515,"w":11.034,"h":0.833,"TU":"6 .......................... 7 ........ 8 ............. 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8PA","EN":0},"TI":9,"AM":0,"x":84.274,"y":17.265,"w":11.034,"h":0.833,"TU":"Line 8. Enter your 2012 Oregon tax after all credits (including refundable). You must have filed an Oregon return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9PA","EN":0},"TI":10,"AM":1024,"x":84.274,"y":18.015,"w":11.034,"h":0.833,"TU":"6 .......................... 7 ........ 8 ............. 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A221_L11PB_1_","EN":0},"TI":11,"AM":0,"x":54.512,"y":21.878,"w":10.968,"h":3.629,"TU":"Line 11A. Divide the amount on line 9 by four and enter the amount in each column, or if you use the Annualized Income Worksheet on the back of this form, enter the amounts from line 31 here (see instructions) and check box 51b on Form 40."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A221_L11PB_2_","EN":0},"TI":12,"AM":0,"x":65.737,"y":21.872,"w":10.968,"h":3.629,"TU":"Line 11B. Divide the amount on line 9 by four and enter the amount in each column, or if you use the Annualized Income Worksheet on the back of this form, enter the amounts from line 31 here (see instructions) and check box 51b on Form 40."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A221_L11PB_3_","EN":0},"TI":13,"AM":0,"x":76.883,"y":21.902,"w":10.968,"h":3.629,"TU":"Line 11C Divide the amount on line 9 by four and enter the amount in each column, or if you use the Annualized Income Worksheet on the back of this form, enter the amounts from line 31 here (see instructions) and check box 51b on Form 40."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A221_L11PB_4_","EN":0},"TI":14,"AM":0,"x":87.937,"y":21.895,"w":10.968,"h":3.629,"TU":"Line 11D Divide the amount on line 9 by four and enter the amount in each column, or if you use the Annualized Income Worksheet on the back of this form, enter the amounts from line 31 here (see instructions) and check box 51b on Form 40."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DUE415","EN":0},"TI":15,"AM":0,"x":27.765,"y":28.523,"w":11.725,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALA","EN":0},"TI":16,"AM":0,"x":39.674,"y":28.57,"w":13.373,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WH415","EN":0},"TI":17,"AM":0,"x":27.892,"y":29.258,"w":11.501,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALB","EN":0},"TI":18,"AM":0,"x":39.632,"y":29.298,"w":13.298,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MONTHSA","EN":0},"TI":19,"AM":0,"x":53.543,"y":29.272,"w":5.775,"h":0.833,"TU":"No. of months_."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DAYSA","EN":0},"TI":20,"AM":0,"x":69.341,"y":29.272,"w":6.167,"h":0.833,"TU":"No. of days_0.003333"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTDUEA","EN":0},"TI":21,"AM":0,"x":85.588,"y":29.258,"w":13.148,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A424_DATE415_1_","EN":0},"TI":22,"AM":0,"x":8.656,"y":30.022,"w":10.255,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_PMT415_1_","EN":0},"TI":23,"AM":0,"x":27.84,"y":30.047,"w":11.651,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_BAL415_1_","EN":0},"TI":24,"AM":0,"x":39.694,"y":30.047,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A424_MON415_1_","EN":0},"TI":25,"AM":0,"x":53.543,"y":30.022,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A424_DAYS415_1_","EN":0},"TI":26,"AM":0,"x":69.359,"y":30.02,"w":6.075,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_PEN415_1_","EN":0},"TI":27,"AM":0,"x":85.513,"y":30.02,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A424_DATE415_2_","EN":0},"TI":28,"AM":0,"x":8.763,"y":30.785,"w":10.105,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_PMT415_2_","EN":0},"TI":29,"AM":0,"x":27.775,"y":30.81,"w":11.576,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_BAL415_2_","EN":0},"TI":30,"AM":0,"x":39.63,"y":30.81,"w":13.373,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A424_MON415_2_","EN":0},"TI":31,"AM":0,"x":53.478,"y":30.785,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A424_DAYS415_2_","EN":0},"TI":32,"AM":0,"x":69.295,"y":30.782,"w":6.075,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_PEN415_2_","EN":0},"TI":33,"AM":0,"x":85.448,"y":30.782,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A424_DATE415_3_","EN":0},"TI":34,"AM":0,"x":8.743,"y":31.513,"w":10.03,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_PMT415_3_","EN":0},"TI":35,"AM":0,"x":27.755,"y":31.537,"w":11.651,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_BAL415_3_","EN":0},"TI":36,"AM":0,"x":39.61,"y":31.537,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A424_MON415_3_","EN":0},"TI":37,"AM":0,"x":53.458,"y":31.513,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A424_DAYS415_3_","EN":0},"TI":38,"AM":0,"x":69.275,"y":31.51,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A424_PEN415_3_","EN":0},"TI":39,"AM":0,"x":85.428,"y":31.51,"w":13.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DUE615","EN":0},"TI":40,"AM":0,"x":27.787,"y":32.253,"w":11.725,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALF","EN":0},"TI":41,"AM":0,"x":39.844,"y":32.239,"w":12.998,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WH615","EN":0},"TI":42,"AM":0,"x":27.67,"y":33.021,"w":11.725,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALG","EN":0},"TI":43,"AM":0,"x":39.749,"y":33.021,"w":13.148,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MONTHSE","EN":0},"TI":44,"AM":0,"x":53.637,"y":33.028,"w":5.775,"h":0.833,"TU":"No. of months_."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DAYSE","EN":0},"TI":45,"AM":0,"x":69.313,"y":33.015,"w":6.167,"h":0.833,"TU":"No. of days_0.003333"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTDUEE","EN":0},"TI":46,"AM":0,"x":85.588,"y":33.015,"w":13.148,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A425_DATE615_1_","EN":0},"TI":47,"AM":0,"x":8.688,"y":33.78,"w":10.18,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_PMT615_1_","EN":0},"TI":48,"AM":0,"x":27.925,"y":33.804,"w":11.576,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_BAL615_1_","EN":0},"TI":49,"AM":0,"x":39.779,"y":33.804,"w":13.223,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A425_MON615_1_","EN":0},"TI":50,"AM":0,"x":53.628,"y":33.78,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A425_DAYS615_1_","EN":0},"TI":51,"AM":0,"x":69.445,"y":33.777,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_PEN615_1_","EN":0},"TI":52,"AM":0,"x":85.598,"y":33.777,"w":13.073,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A425_DATE615_2_","EN":0},"TI":53,"AM":0,"x":8.838,"y":34.515,"w":9.955,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_PMT615_2_","EN":0},"TI":54,"AM":0,"x":27.85,"y":34.539,"w":11.576,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_BAL615_2_","EN":0},"TI":55,"AM":0,"x":39.705,"y":34.539,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A425_MON615_2_","EN":0},"TI":56,"AM":0,"x":53.553,"y":34.515,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A425_DAYS615_2_","EN":0},"TI":57,"AM":0,"x":69.37,"y":34.512,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_PEN615_2_","EN":0},"TI":58,"AM":0,"x":85.523,"y":34.512,"w":13.073,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A425_DATE615_3_","EN":0},"TI":59,"AM":0,"x":8.893,"y":35.27,"w":9.955,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_PMT615_3_","EN":0},"TI":60,"AM":0,"x":27.83,"y":35.294,"w":11.651,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_BAL615_3_","EN":0},"TI":61,"AM":0,"x":39.684,"y":35.294,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A425_MON615_3_","EN":0},"TI":62,"AM":0,"x":53.533,"y":35.27,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A425_DAYS615_3_","EN":0},"TI":63,"AM":0,"x":69.35,"y":35.267,"w":6.075,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A425_PEN615_3_","EN":0},"TI":64,"AM":0,"x":85.503,"y":35.267,"w":13.073,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DUE915","EN":0},"TI":65,"AM":0,"x":27.745,"y":36.029,"w":11.651,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALK","EN":0},"TI":66,"AM":0,"x":39.966,"y":35.986,"w":13.073,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WH915","EN":0},"TI":67,"AM":0,"x":27.765,"y":36.785,"w":11.576,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALL","EN":0},"TI":68,"AM":0,"x":39.871,"y":36.768,"w":13.148,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MONTHSI","EN":0},"TI":69,"AM":0,"x":53.617,"y":36.751,"w":5.775,"h":0.833,"TU":"No. of months_."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DAYSI","EN":0},"TI":70,"AM":0,"x":69.293,"y":36.764,"w":6.167,"h":0.833,"TU":"No. of days_0.003333"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTDUEI","EN":0},"TI":71,"AM":0,"x":85.567,"y":36.819,"w":13.073,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A426_DATE915_1_","EN":0},"TI":72,"AM":0,"x":8.763,"y":37.536,"w":10.03,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_PMT915_1_","EN":0},"TI":73,"AM":0,"x":27.727,"y":37.534,"w":11.501,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_BAL915_1_","EN":0},"TI":74,"AM":0,"x":39.679,"y":37.534,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A426_MON915_1_","EN":0},"TI":75,"AM":0,"x":53.43,"y":37.509,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A426_DAYS915_1_","EN":0},"TI":76,"AM":0,"x":69.247,"y":37.507,"w":6.075,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_PEN915_1_","EN":0},"TI":77,"AM":0,"x":85.4,"y":37.507,"w":13.223,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A426_DATE915_2_","EN":0},"TI":78,"AM":0,"x":8.699,"y":38.237,"w":10.03,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_PMT915_2_","EN":0},"TI":79,"AM":0,"x":27.76,"y":38.262,"w":11.501,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_BAL915_2_","EN":0},"TI":80,"AM":0,"x":39.614,"y":38.262,"w":13.373,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A426_MON915_2_","EN":0},"TI":81,"AM":0,"x":53.463,"y":38.237,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A426_DAYS915_2_","EN":0},"TI":82,"AM":0,"x":69.28,"y":38.235,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_PEN915_2_","EN":0},"TI":83,"AM":0,"x":85.433,"y":38.235,"w":13.148,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A426_DATE915_3_","EN":0},"TI":84,"AM":0,"x":8.741,"y":39.034,"w":9.955,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_PMT915_3_","EN":0},"TI":85,"AM":0,"x":27.925,"y":39.059,"w":11.351,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_BAL915_3_","EN":0},"TI":86,"AM":0,"x":39.779,"y":39.059,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A426_MON915_3_","EN":0},"TI":87,"AM":0,"x":53.628,"y":39.034,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A426_DAYS915_3_","EN":0},"TI":88,"AM":0,"x":69.445,"y":39.031,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A426_PEN915_3_","EN":0},"TI":89,"AM":0,"x":85.598,"y":39.031,"w":12.773,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALP","EN":0},"TI":90,"AM":0,"x":39.918,"y":39.698,"w":12.998,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DUE115","EN":0},"TI":91,"AM":0,"x":27.724,"y":40.514,"w":11.726,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALQ","EN":0},"TI":92,"AM":0,"x":39.946,"y":40.506,"w":13.223,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WH115","EN":0},"TI":93,"AM":0,"x":27.799,"y":41.263,"w":11.501,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RBALR","EN":0},"TI":94,"AM":0,"x":39.851,"y":41.288,"w":13.373,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MONTHSM","EN":0},"TI":95,"AM":0,"x":53.597,"y":41.236,"w":5.775,"h":0.833,"TU":"No. of months_."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DAYSM","EN":0},"TI":96,"AM":0,"x":69.423,"y":41.249,"w":6.167,"h":0.833,"TU":"No. of days_0.003333"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTDUEM","EN":0},"TI":97,"AM":0,"x":85.547,"y":41.304,"w":13.073,"h":0.833,"TU":"._Rate Chg."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A427_DATE115_1_","EN":0},"TI":98,"AM":0,"x":8.765,"y":42.027,"w":10.03,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_PMT115_1_","EN":0},"TI":99,"AM":0,"x":27.901,"y":42.025,"w":11.426,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_BAL115_1_","EN":0},"TI":100,"AM":0,"x":39.755,"y":42.025,"w":13.223,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A427_MON115_1_","EN":0},"TI":101,"AM":0,"x":53.604,"y":42,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A427_DAYS115_1_","EN":0},"TI":102,"AM":0,"x":69.421,"y":41.998,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_PEN115_1_","EN":0},"TI":103,"AM":0,"x":85.574,"y":41.998,"w":12.923,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A427_DATE115_2_","EN":0},"TI":104,"AM":0,"x":8.765,"y":42.817,"w":10.03,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_PMT115_2_","EN":0},"TI":105,"AM":0,"x":27.901,"y":42.814,"w":11.426,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_BAL115_2_","EN":0},"TI":106,"AM":0,"x":39.755,"y":42.814,"w":13.223,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A427_MON115_2_","EN":0},"TI":107,"AM":0,"x":53.604,"y":42.79,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A427_DAYS115_2_","EN":0},"TI":108,"AM":0,"x":69.421,"y":42.787,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_PEN115_2_","EN":0},"TI":109,"AM":0,"x":85.574,"y":42.787,"w":12.923,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A427_DATE115_3_","EN":0},"TI":110,"AM":0,"x":8.745,"y":43.545,"w":9.88,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_PMT115_3_","EN":0},"TI":111,"AM":0,"x":27.881,"y":43.542,"w":11.501,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_BAL115_3_","EN":0},"TI":112,"AM":0,"x":39.735,"y":43.542,"w":13.298,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A427_MON115_3_","EN":0},"TI":113,"AM":0,"x":53.584,"y":43.517,"w":5.775,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A427_DAYS115_3_","EN":0},"TI":114,"AM":0,"x":69.401,"y":43.515,"w":6.074,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A427_PEN115_3_","EN":0},"TI":115,"AM":0,"x":85.554,"y":43.515,"w":12.923,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27PC","EN":0},"TI":116,"AM":0,"x":84.398,"y":45.783,"w":11.034,"h":0.833,"TU":"Line 34. Total interest due. Add the amounts in the interest column. Round to the nearest whole dollar and enter here and on Forn 40, line 51."}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":54.57,"y":41.969,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.656,"y":9.719,"w":0.75,"l":44.434},{"oc":"#2b2e34","x":54.586,"y":10.469,"w":0.75,"l":44.414},{"oc":"#2b2e34","x":54.586,"y":11.219,"w":0.75,"l":44.414},{"oc":"#2b2e34","x":54.586,"y":11.969,"w":0.75,"l":44.414},{"oc":"#2b2e34","x":6.13,"y":7.474,"w":0.75,"l":92.864},{"oc":"#2b2e34","x":54.619,"y":12.719,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.586,"y":13.469,"w":0.75,"l":44.414},{"oc":"#2b2e34","x":54.586,"y":14.219,"w":0.75,"l":44.414},{"oc":"#2b2e34","x":54.696,"y":14.969,"w":0.75,"l":44.414},{"oc":"#2b2e34","x":54.57,"y":15.719,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.57,"y":16.469,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.57,"y":17.219,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":6.394,"y":45.222,"w":1.5,"l":92.77},{"oc":"#2b2e34","x":6.394,"y":44.059,"w":1.5,"l":92.77},{"oc":"#2b2e34","x":54.57,"y":19.469,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.667,"y":20.219,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.671,"y":21.719,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.609,"y":23.219,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.644,"y":23.953,"w":0.75,"l":44.344},{"oc":"#2b2e34","x":54.642,"y":24.703,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.599,"y":25.469,"w":0.75,"l":44.516},{"oc":"#2b2e34","x":54.656,"y":26.969,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.656,"y":28.469,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.656,"y":29.969,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.57,"y":30.719,"w":0.75,"l":44.33},{"oc":"#2b2e34","x":54.584,"y":31.469,"w":0.75,"l":44.416},{"oc":"#2b2e34","x":54.584,"y":32.219,"w":0.75,"l":44.416},{"oc":"#2b2e34","x":54.584,"y":32.969,"w":0.75,"l":44.416},{"oc":"#2b2e34","x":54.584,"y":35.219,"w":0.75,"l":44.416},{"oc":"#2b2e34","x":54.584,"y":35.969,"w":0.75,"l":44.416},{"oc":"#2b2e34","x":54.584,"y":36.719,"w":0.75,"l":44.416},{"oc":"#2b2e34","x":54.711,"y":38.219,"w":0.75,"l":44.416},{"oc":"#2b2e34","x":54.57,"y":38.969,"w":0.75,"l":44.43},{"oc":"#2b2e34","x":54.57,"y":40.469,"w":0.75,"l":44.43}],"VLines":[{"oc":"#2b2e34","x":54.613,"y":7.487,"w":0.75,"l":34.45},{"oc":"#2b2e34","x":76.725,"y":7.487,"w":0.75,"l":34.481},{"oc":"#2b2e34","x":87.948,"y":7.458,"w":0.75,"l":34.51},{"oc":"#2b2e34","x":99.043,"y":7.458,"w":0.75,"l":34.51},{"oc":"#2b2e34","x":99.163,"y":44.059,"w":1.5,"l":1.163},{"oc":"#2b2e34","x":6.394,"y":44.059,"w":1.5,"l":1.163},{"oc":"#2b2e34","x":65.588,"y":7.469,"w":0.75,"l":34.438}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c4c4c6","x":54.599,"y":32.972,"w":10.943,"h":2.237,"clr":-1},{"oc":"#c4c4c6","x":54.599,"y":36.712,"w":10.943,"h":1.494,"clr":-1},{"oc":"#d8d8da","x":6.394,"y":44.059,"w":92.77,"h":1.163,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":5.938,"y":46.906,"w":10.309000000000001,"clr":-1,"A":"left","R":[{"T":"150-101-031%20(Rev.%2012-13)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":52.038,"y":47.531,"w":0.513,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":8.852,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":9.602,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.936,"y":9.602,"w":20.572,"clr":-1,"A":"left","R":[{"T":"..........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":9.602,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":10.352,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":10.352,"w":22.614000000000008,"clr":-1,"A":"left","R":[{"T":"Oregon%20additions%20for%20each%20period%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.159,"y":10.352,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":10.352,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":11.102,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":11.102,"w":7.781,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.936,"y":11.102,"w":20.572,"clr":-1,"A":"left","R":[{"T":"..........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":11.102,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":11.853,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":11.853,"w":10.334,"clr":-1,"A":"left","R":[{"T":"Annualization%20multiplier","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.238,"y":11.853,"w":17.792000000000012,"clr":-1,"A":"left","R":[{"T":"................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":11.853,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":12.603,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":12.603,"w":22.802,"clr":-1,"A":"left","R":[{"T":"Annualized%20Oregon%20income.%20Multiply%20line%203%20by%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.159,"y":12.603,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":12.603,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":13.353,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":13.353,"w":25.019999999999996,"clr":-1,"A":"left","R":[{"T":"Oregon%20subtractions%20for%20each%20period%20(except%20federal%20tax)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.599,"y":13.353,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":13.353,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":14.103,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":14.103,"w":10.334,"clr":-1,"A":"left","R":[{"T":"Annualization%20multiplier","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.238,"y":14.103,"w":17.792000000000012,"clr":-1,"A":"left","R":[{"T":"................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":14.103,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":14.853,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":14.853,"w":25.061000000000007,"clr":-1,"A":"left","R":[{"T":"Annualized%20Oregon%20subtractions.%20Multiply%20line%206%20by%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.599,"y":14.853,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":14.853,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.882,"y":15.602,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":15.602,"w":26.96700000000001,"clr":-1,"A":"left","R":[{"T":"Federal%20tax%20from%20the%20worksheet%20on%20page%205%20of%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.61,"y":15.602,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.979,"y":15.602,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":16.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":16.352,"w":16.375000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20subtractions.%20Add%20lines%208%20and%209","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.269,"y":16.352,"w":11.398000000000012,"clr":-1,"A":"left","R":[{"T":".........................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":16.352,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":17.102,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":17.102,"w":23.393,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20net%20Oregon%20itemized%20deductions%20for%20each%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":17.852,"w":25.655,"clr":-1,"A":"left","R":[{"T":"period.%20If%20you%20do%20not%20itemize%2C%20enter%20-0-%20and%20skip%20to%20line%2014%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":18.602,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.936,"y":18.602,"w":20.016000000000002,"clr":-1,"A":"left","R":[{"T":"........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":18.602,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":19.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":19.352,"w":10.334,"clr":-1,"A":"left","R":[{"T":"Annualization%20multiplier","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.238,"y":19.352,"w":17.236000000000015,"clr":-1,"A":"left","R":[{"T":"..............................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":19.352,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":20.102,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":20.102,"w":20.059000000000005,"clr":-1,"A":"left","R":[{"T":"Annualized%20net%20Oregon%20itemized%20deductions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":20.852,"w":11.282000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2011%20by%20line%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.528,"y":20.852,"w":16.40200000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":20.852,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":21.602,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":21.602,"w":23.878000000000007,"clr":-1,"A":"left","R":[{"T":"In%20each%20column%2C%20enter%20the%20full%20amount%20of%20your%20Oregon%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":22.352,"w":8.725000000000001,"clr":-1,"A":"left","R":[{"T":"standard%20deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.656,"y":22.352,"w":18.904000000000007,"clr":-1,"A":"left","R":[{"T":"....................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":22.352,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":23.102,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":23.102,"w":17.038000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20line%2013%20or%2014%2C%20whichever%20is%20larger","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.559,"y":23.102,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":23.102,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":23.852,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":23.852,"w":16.932000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20deductions.%20Add%20lines%2010%20and%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.129,"y":23.852,"w":10.842000000000011,"clr":-1,"A":"left","R":[{"T":".......................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":23.852,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":24.602,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":24.602,"w":25.04400000000001,"clr":-1,"A":"left","R":[{"T":"Annualized%20Oregon%20taxable%20income.%20Line%205%20minus%20line%2016","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.599,"y":24.602,"w":2.7800000000000002,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":24.602,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":25.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":25.352,"w":24.634999999999998,"clr":-1,"A":"left","R":[{"T":"Oregon%20tax%20for%20the%20amount%20on%20line%2017%20(see%20tax%20tables%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":26.102,"w":16.689000000000007,"clr":-1,"A":"left","R":[{"T":"tax%20rate%20chart%20in%20the%202013%20tax%20booklet)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.698,"y":26.102,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"........................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":26.102,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":26.852,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":26.852,"w":25.28400000000001,"clr":-1,"A":"left","R":[{"T":"Exemption%20credit%20(not%20annualized)%20from%20Form%2040%2C%20line%2033%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":27.602,"w":17.525000000000006,"clr":-1,"A":"left","R":[{"T":"Form%2040N%2C%20line%2054%3B%20or%20Form%2040P%2C%20line%2053","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.989,"y":27.602,"w":10.28600000000001,"clr":-1,"A":"left","R":[{"T":".....................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":27.602,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":28.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":28.352,"w":21.74500000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20credits%20for%20each%20period.%20Do%20not%20include%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":29.102,"w":15.854000000000006,"clr":-1,"A":"left","R":[{"T":"exemption%20credits%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.408,"y":29.102,"w":11.954000000000013,"clr":-1,"A":"left","R":[{"T":"...........................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":29.102,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":29.852,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":29.852,"w":14.986000000000008,"clr":-1,"A":"left","R":[{"T":"Total%20credits.%20Add%20lines%2019%20and%2020","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.118,"y":29.852,"w":12.788000000000014,"clr":-1,"A":"left","R":[{"T":"..............................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":29.852,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":30.602,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":30.602,"w":21.84000000000001,"clr":-1,"A":"left","R":[{"T":"Net%20annualized%20income%20tax.%20Line%2018%20minus%20line%2021","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.869,"y":30.602,"w":5.838000000000003,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":30.602,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":31.351999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":31.351999999999997,"w":17.650000000000006,"clr":-1,"A":"left","R":[{"T":"Percentage%20that%20applies%20for%20each%20period","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":36.418,"y":31.351999999999997,"w":10.00800000000001,"clr":-1,"A":"left","R":[{"T":"....................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":31.351999999999997,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":32.102,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":32.102,"w":11.282000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2022%20by%20line%2023","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.528,"y":32.102,"w":16.40200000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":32.102,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":32.852,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":32.852,"w":24.656,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20sum%20of%20all%20amounts%20from%20the%20prior%20columns%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":33.602,"w":23.470000000000006,"clr":-1,"A":"left","R":[{"T":"line%2031%20below%20(i.e.%2C%20column%20A%2C%20line%2031%20amount%20goes%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":34.352,"w":8.003000000000002,"clr":-1,"A":"left","R":[{"T":"column%20B%2C%20line%2025)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.366,"y":34.352,"w":19.738000000000003,"clr":-1,"A":"left","R":[{"T":".......................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":34.352,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":35.102,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":35.102,"w":21.469,"clr":-1,"A":"left","R":[{"T":"Line%2024%20minus%20line%2025.%20If%20less%20than%20zero%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.439,"y":35.102,"w":6.116000000000003,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":35.102,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":35.852,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.61,"y":35.852,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":35.852,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":36.602,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":36.602,"w":26.71100000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20the%20previous%20column%20of%20line%2030%20below","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":37.352,"w":25.30600000000001,"clr":-1,"A":"left","R":[{"T":"(i.e.%2C%20column%20A%2C%20line%2030%20amount%20goes%20in%20column%20B%2C%20line%2028)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.029,"y":37.352,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":37.352,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":38.102,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":38.102,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2027%20and%2028","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.656,"y":38.102,"w":18.904000000000007,"clr":-1,"A":"left","R":[{"T":"....................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":38.102,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":38.852,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":38.852,"w":4.760000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2029%20is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.3,"y":38.852,"w":2.48,"clr":-1,"A":"left","R":[{"T":"more","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.28,"y":38.852,"w":15.100000000000007,"clr":-1,"A":"left","R":[{"T":"than%20line%2026%2C%20line%2029%20minus%20line%2026.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.85,"y":39.602,"w":4.760000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2029%20is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.3,"y":39.602,"w":1.9060000000000001,"clr":-1,"A":"left","R":[{"T":"less","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.42,"y":39.602,"w":9.615000000000002,"clr":-1,"A":"left","R":[{"T":"than%20line%2026%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.128,"y":39.602,"w":10.842000000000011,"clr":-1,"A":"left","R":[{"T":".......................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":39.602,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.022,"y":40.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":40.352,"w":25.505999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2026%20or%20line%2029%20here%20and%20on%20Part%20B%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":41.102,"w":25.35800000000001,"clr":-1,"A":"left","R":[{"T":"line%2011%20(see%20front%20of%20the%20form).%20Go%20to%20line%201%20in%20next%20column","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.459,"y":41.102,"w":2.224,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.119,"y":41.102,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.424,"y":14.004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.936,"y":14.004,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2.4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":81.067,"y":14.004,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1.5","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.828,"y":14.004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.409,"y":19.21,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.951,"y":19.21,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2.4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":81.094,"y":19.21,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1.5","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.856,"y":19.21,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.836,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":63.888999999999996,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":65.807,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":74.86,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":76.979,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":86.032,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":88.266,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":97.318,"y":23.744,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":54.807,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":63.86,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":65.807,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":74.86,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":76.979,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":86.032,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":88.208,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":97.261,"y":29.76,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":57.766,"y":31.229,"w":2.946,"clr":-1,"A":"left","R":[{"T":"22.5%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.454,"y":31.229,"w":2.112,"clr":-1,"A":"left","R":[{"T":"45%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":80.053,"y":31.229,"w":2.946,"clr":-1,"A":"left","R":[{"T":"67.5%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.787,"y":31.229,"w":2.112,"clr":-1,"A":"left","R":[{"T":"90%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.058,"y":2.07,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":11.218,"y":2.07,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"Form%2010%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":92.873,"y":2.07,"w":3.1300000000000003,"clr":-1,"A":"left","R":[{"T":"Page%202","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":37.534,"y":3.6260000000000003,"w":14.515,"clr":-1,"A":"left","R":[{"T":"Annualized%20Income%20Worksheet","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":5.817,"y":5.159,"w":14.263000000000005,"clr":-1,"A":"left","R":[{"T":"Read%20the%20instructions%20on%20page%205","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":27.143,"y":5.159,"w":3.0919999999999996,"clr":-1,"A":"left","R":[{"T":"before","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":32.655,"y":5.159,"w":12.595,"clr":-1,"A":"left","R":[{"T":"%20completing%20this%20worksheet.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":51.123,"y":5.159,"w":2.5559999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":56.289,"y":5.159,"w":20.264000000000003,"clr":-1,"A":"left","R":[{"T":"Start%20with%20column%20A.%20Work%20down%20the%20column%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":5.817,"y":5.909,"w":32.733000000000004,"clr":-1,"A":"left","R":[{"T":"and%20complete%20lines%201%20through%2031%20before%20going%20on%20to%20columns%20B%2C%20C%2C%20and%20D.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":16.206,"y":44.212,"w":31.42000000000001,"clr":-1,"A":"left","R":[{"T":"File%20this%20form%20with%20your%202013%20Oregon%20Individual%20Income%20Tax%20Return","S":-1,"TS":[0,16.5,0,0]}]},{"oc":"#2b2e34","x":23.866,"y":45.456,"w":30.062000000000012,"clr":-1,"A":"left","R":[{"T":"Have%20questions%3F%20See%20page%206%20of%20the%20instructions%20for%20numbers%20to%20call.","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":42.652,"w":59.52899999999993,"clr":-1,"A":"left","R":[{"T":"*%20If%20you%20are%20a%20part-year%20filer%2C%20divide%20by%20the%20number%20of%20periods%20you%20resided%20in%20Oregon%2C%20if%20less%20than%204.%20(See%20instructions%20for%20Part%20B%2C%20line%2011.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.865,"y":34.232,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":74.917,"y":34.232,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":76.922,"y":34.232,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":85.975,"y":34.232,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":88.208,"y":34.232,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":97.261,"y":34.232,"w":0.333,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":92.828,"y":11.745,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.51,"y":11.745,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.938,"y":11.745,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2.4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":81.122,"y":11.745,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1.5","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.362,"y":7.188,"w":0.648,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.023,"y":7.757,"w":3.244,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":59.273,"y":8.282,"w":1.167,"clr":-1,"A":"left","R":[{"T":"to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":57.734,"y":8.807,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"3%2F31%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":70.461,"y":7.188,"w":0.685,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.148,"y":7.757,"w":3.244,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":70.397,"y":8.282,"w":1.167,"clr":-1,"A":"left","R":[{"T":"to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":68.859,"y":8.807,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"5%2F31%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":81.582,"y":7.188,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":80.294,"y":7.757,"w":2.966,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":81.543,"y":8.282,"w":1.167,"clr":-1,"A":"left","R":[{"T":"to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":80.005,"y":8.807,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"8%2F31%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":92.749,"y":7.188,"w":0.704,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.449,"y":7.757,"w":2.966,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":92.698,"y":8.282,"w":1.167,"clr":-1,"A":"left","R":[{"T":"to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":90.825,"y":8.807,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"12%2F31%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":8.852,"w":22.373999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20adjusted%20gross%20income%20for%20each%20period%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.851,"y":35.852,"w":27.618000000000002,"clr":-1,"A":"left","R":[{"T":"*Divide%20line%209%2C%20Part%20A%2C%20by%20four%20and%20enter%20results%20in%20each%20column","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":117,"AM":1024,"x":18.617,"y":2.105,"w":44.381,"h":0.833,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":118,"AM":1024,"x":77.418,"y":2.133,"w":15.292,"h":0.833,"TU":"Social Security number – –"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A169_L1_1_","EN":0},"TI":119,"AM":0,"x":54.718,"y":9.758,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A169_L1_2_","EN":0},"TI":120,"AM":0,"x":65.678,"y":9.764,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A169_L1_3_","EN":0},"TI":121,"AM":0,"x":76.908,"y":9.751,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A169_L1_4_","EN":0},"TI":122,"AM":0,"x":87.913,"y":9.751,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A170_L2_1_","EN":0},"TI":123,"AM":0,"x":54.725,"y":10.5,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A170_L2_2_","EN":0},"TI":124,"AM":0,"x":65.684,"y":10.506,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A170_L2_3_","EN":0},"TI":125,"AM":0,"x":76.914,"y":10.493,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A170_L2_4_","EN":0},"TI":126,"AM":0,"x":87.92,"y":10.493,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A171_L3_1_","EN":0},"TI":127,"AM":0,"x":54.65,"y":11.263,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A171_L3_2_","EN":0},"TI":128,"AM":0,"x":65.609,"y":11.269,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A171_L3_3_","EN":0},"TI":129,"AM":0,"x":76.839,"y":11.256,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A171_L3_4_","EN":0},"TI":130,"AM":0,"x":87.845,"y":11.256,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A172_L5_1_","EN":0},"TI":131,"AM":0,"x":54.762,"y":12.733,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A172_L5_2_","EN":0},"TI":132,"AM":0,"x":65.722,"y":12.712,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A172_L5_3_","EN":0},"TI":133,"AM":0,"x":76.952,"y":12.726,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A172_L5_4_","EN":0},"TI":134,"AM":0,"x":87.957,"y":12.726,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A173_L6_1_","EN":0},"TI":135,"AM":0,"x":54.688,"y":13.495,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A173_L6_2_","EN":0},"TI":136,"AM":0,"x":65.647,"y":13.501,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A173_L6_3_","EN":0},"TI":137,"AM":0,"x":76.877,"y":13.488,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A173_L6_4_","EN":0},"TI":138,"AM":0,"x":87.882,"y":13.488,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A174_L8_1_","EN":0},"TI":139,"AM":0,"x":54.837,"y":14.992,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A174_L8_2_","EN":0},"TI":140,"AM":0,"x":65.797,"y":14.998,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A174_L8_3_","EN":0},"TI":141,"AM":0,"x":77.027,"y":14.986,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A174_L8_4_","EN":0},"TI":142,"AM":0,"x":88.032,"y":14.986,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A175_L9_1_","EN":0},"TI":143,"AM":0,"x":54.762,"y":15.754,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A175_L9_2_","EN":0},"TI":144,"AM":0,"x":65.722,"y":15.761,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A175_L9_3_","EN":0},"TI":145,"AM":0,"x":76.952,"y":15.748,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A175_L9_4_","EN":0},"TI":146,"AM":0,"x":87.957,"y":15.748,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A176_L10_1_","EN":0},"TI":147,"AM":0,"x":54.892,"y":16.482,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A176_L10_2_","EN":0},"TI":148,"AM":0,"x":65.851,"y":16.488,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A176_L10_3_","EN":0},"TI":149,"AM":0,"x":77.081,"y":16.476,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A176_L10_4_","EN":0},"TI":150,"AM":0,"x":88.087,"y":16.476,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A177_L11_1_","EN":0},"TI":151,"AM":0,"x":54.667,"y":18.796,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A177_L11_2_","EN":0},"TI":152,"AM":0,"x":65.627,"y":18.802,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A177_L11_3_","EN":0},"TI":153,"AM":0,"x":76.857,"y":18.79,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A177_L11_4_","EN":0},"TI":154,"AM":0,"x":87.862,"y":18.79,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A178_L13_1_","EN":0},"TI":155,"AM":0,"x":54.66,"y":20.999,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A178_L13_2_","EN":0},"TI":156,"AM":0,"x":65.619,"y":21.005,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A178_L13_3_","EN":0},"TI":157,"AM":0,"x":76.85,"y":20.992,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A178_L13_4_","EN":0},"TI":158,"AM":0,"x":87.855,"y":20.992,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A179_L14_1_","EN":0},"TI":159,"AM":0,"x":54.715,"y":22.489,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A179_L14_2_","EN":0},"TI":160,"AM":0,"x":65.674,"y":22.495,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A179_L14_3_","EN":0},"TI":161,"AM":0,"x":76.904,"y":22.482,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A179_L14_4_","EN":0},"TI":162,"AM":0,"x":87.91,"y":22.482,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A180_L15_1_","EN":0},"TI":163,"AM":0,"x":54.735,"y":23.231,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A180_L15_2_","EN":0},"TI":164,"AM":0,"x":65.694,"y":23.237,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A180_L15_3_","EN":0},"TI":165,"AM":0,"x":76.924,"y":23.225,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A180_L15_4_","EN":0},"TI":166,"AM":0,"x":87.93,"y":23.225,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A181_L16_1_","EN":0},"TI":167,"AM":0,"x":55.547,"y":23.976,"w":8.092,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A181_L16_2_","EN":0},"TI":168,"AM":0,"x":66.506,"y":23.982,"w":8.017,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A181_L16_3_","EN":0},"TI":169,"AM":0,"x":77.736,"y":23.97,"w":7.942,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A181_L16_4_","EN":0},"TI":170,"AM":0,"x":89.257,"y":23.97,"w":8.092,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A182_L17_1_","EN":0},"TI":171,"AM":0,"x":54.742,"y":24.767,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A182_L17_2_","EN":0},"TI":172,"AM":0,"x":65.702,"y":24.773,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A182_L17_3_","EN":0},"TI":173,"AM":0,"x":76.932,"y":24.76,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A182_L17_4_","EN":0},"TI":174,"AM":0,"x":87.937,"y":24.76,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A183_L18_1_","EN":0},"TI":175,"AM":0,"x":54.762,"y":26.31,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A183_L18_2_","EN":0},"TI":176,"AM":0,"x":65.722,"y":26.316,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A183_L18_3_","EN":0},"TI":177,"AM":0,"x":76.952,"y":26.303,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A183_L18_4_","EN":0},"TI":178,"AM":0,"x":87.957,"y":26.303,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A184_L19_1_","EN":0},"TI":179,"AM":0,"x":54.725,"y":27.733,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A184_L19_2_","EN":0},"TI":180,"AM":0,"x":65.684,"y":27.739,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A184_L19_3_","EN":0},"TI":181,"AM":0,"x":76.914,"y":27.727,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A184_L19_4_","EN":0},"TI":182,"AM":0,"x":87.92,"y":27.727,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A185_L20_1_","EN":0},"TI":183,"AM":0,"x":54.695,"y":29.179,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A185_L20_2_","EN":0},"TI":184,"AM":0,"x":65.654,"y":29.185,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A185_L20_3_","EN":0},"TI":185,"AM":0,"x":76.884,"y":29.172,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A185_L20_4_","EN":0},"TI":186,"AM":0,"x":87.89,"y":29.172,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A186_L21_1_","EN":0},"TI":187,"AM":0,"x":55.479,"y":29.941,"w":8.241,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A186_L21_2_","EN":0},"TI":188,"AM":0,"x":66.439,"y":29.947,"w":8.316,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A186_L21_3_","EN":0},"TI":189,"AM":0,"x":77.669,"y":29.934,"w":8.241,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A186_L21_4_","EN":0},"TI":190,"AM":0,"x":88.674,"y":29.934,"w":8.316,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A187_L22_1_","EN":0},"TI":191,"AM":0,"x":54.75,"y":30.669,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A187_L22_2_","EN":0},"TI":192,"AM":0,"x":65.709,"y":30.675,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A187_L22_3_","EN":0},"TI":193,"AM":0,"x":76.939,"y":30.662,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A187_L22_4_","EN":0},"TI":194,"AM":0,"x":87.944,"y":30.662,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A188_L24_1_","EN":0},"TI":195,"AM":0,"x":54.655,"y":32.227,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A188_L24_2_","EN":0},"TI":196,"AM":0,"x":65.805,"y":32.225,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A188_L24_3_","EN":0},"TI":197,"AM":0,"x":77.035,"y":32.212,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A188_L24_4_","EN":0},"TI":198,"AM":0,"x":88.041,"y":32.212,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A189_L25_1_","EN":0},"TI":199,"AM":0,"x":66.568,"y":34.458,"w":8.241,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A189_L25_2_","EN":0},"TI":200,"AM":0,"x":77.798,"y":34.444,"w":8.017,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A189_L25_3_","EN":0},"TI":201,"AM":0,"x":89.105,"y":34.464,"w":8.017,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A190_L26_1_","EN":0},"TI":202,"AM":0,"x":54.58,"y":35.276,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A190_L26_2_","EN":0},"TI":203,"AM":0,"x":65.666,"y":35.319,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A190_L26_3_","EN":0},"TI":204,"AM":0,"x":76.743,"y":35.297,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A190_L26_4_","EN":0},"TI":205,"AM":0,"x":87.829,"y":35.34,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A191_L27_1_","EN":0},"TI":206,"AM":0,"x":54.709,"y":36.004,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A191_L27_2_","EN":0},"TI":207,"AM":0,"x":65.795,"y":36.047,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A191_L27_3_","EN":0},"TI":208,"AM":0,"x":76.873,"y":36.025,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A191_L27_4_","EN":0},"TI":209,"AM":0,"x":87.959,"y":36.068,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A192_L28_1_","EN":0},"TI":210,"AM":0,"x":65.731,"y":37.48,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A192_L28_2_","EN":0},"TI":211,"AM":0,"x":76.96,"y":37.466,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A192_L28_3_","EN":0},"TI":212,"AM":0,"x":88.096,"y":37.486,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A193_L29_1_","EN":0},"TI":213,"AM":0,"x":54.675,"y":38.251,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A193_L29_2_","EN":0},"TI":214,"AM":0,"x":65.778,"y":38.269,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A193_L29_3_","EN":0},"TI":215,"AM":0,"x":76.997,"y":38.26,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A193_L29_4_","EN":0},"TI":216,"AM":0,"x":88.025,"y":38.251,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A194_L30_1_","EN":0},"TI":217,"AM":0,"x":54.729,"y":39.741,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A194_L30_2_","EN":0},"TI":218,"AM":0,"x":65.833,"y":39.759,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A194_L30_3_","EN":0},"TI":219,"AM":0,"x":77.051,"y":39.75,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A194_L30_4_","EN":0},"TI":220,"AM":0,"x":88.155,"y":39.768,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A195_L31_1_","EN":0},"TI":221,"AM":0,"x":54.675,"y":41.191,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A195_L31_2_","EN":0},"TI":222,"AM":0,"x":65.778,"y":41.209,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A195_L31_3_","EN":0},"TI":223,"AM":0,"x":76.997,"y":41.2,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A195_L31_4_","EN":0},"TI":224,"AM":0,"x":88.1,"y":41.218,"w":10.787,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/OR40.content.txt b/test/data/or/form/OR40.content.txt new file mode 100755 index 00000000..4a2af8de --- /dev/null +++ b/test/data/or/form/OR40.content.txt @@ -0,0 +1,1033 @@ +Deceased +Deceased +If you filed a return last year, and your +Married fiing separately: +Married filing jointly +NOW GO TO THE BACK OF THE FORM +➛ + +8 Federal adjusted gross income. Federal Form 1040, line 37; 1040A, line 21; 1040EZ, line 4; + 1040NR, line 36; or 1040NR-EZ, line 10. See instructions, page 13 + +........................................................... +• + 8 + +9 Interest and dividends on state and local government bonds outside of Oregon + +... +• + 9 +10 +• + +10x + + +• + +10y + + +$ + + +Schedule included + + +10z + + +• + +10 + +............................................................................................................. +• + 11 +12 + Income after additions. Add lines 8 and 11 + +................................................................................................. +• + +..... +• + 13 +1 + +... +• + 14 +15 + Oregon income tax refund included in federal income + +............................................ +• + 15 +16 + Interest from U.S. government, such as Series EE, HH, and I bonds ..................... +• + 16 + + +% + +17b + +% + +... +• + 17 +18 +• + +18x + + +• + +18y + + +$ + + +Schedule included + + +18z + + + +18 +19 + Total subtractions. Add lines 13 through 18 + +................................................................................................ +• + 19 +20 + Income after subtractions. Line 12 minus line 19 + +........................................................................................ +• + 20 +21 Itemized deductions from federal Schedule A, line 29 + +............................................ +• + 21 +22 +Do not complete line 22 + +• + 22 +23 + Total Oregon itemized deductions. Add lines 21 and 22 + +......................................... +• + 23 +24 +State income tax claimed as an itemized deduction + +.......................................... +• + 24 +• + 25 + + OR +26 Standard deduction from page 19 + +........................................................................... +• + 26 + +......................................................................... +• + 27 +28 + +......................... +• + +28 +29 + Tax. See instructions, page 19. Enter tax here + +........................................................ +• + +29 + + + Check if tax is from: 29a + + Tax tables or charts + +or + +• + +29b + + Form FIA-40 + +or + +• + +29c Worksheet FCG +30 + + Interest on certain installment sales + +......................................................................... +• + +30 +31 + Total tax before credits. Add lines 29 and 30 + +................................... +OREGON TAX BEFORE CREDITS +• + +31 +ADDITIONS +DEDUCTIONS +TA +X +SUBTRACTIONS +Inc +lude +proof of +withholding +(W-2s, +1099s), +payment, +and payment +voucher +Either line 25 or 26 + + +7d + +• + Someone else +can claim you +as a dependent +7c + +• + +Y +ou have +federal +Form 8886 +7b + +• + +Y +ou +filed an +extension +Fiscal year ending +Spouse’ +s/RDP’s first name and initial if joint return +Date of birth +(mm/dd/yyyy) +Date of birth +(mm/dd/yyyy) +Last name +Social Security No. (SSN) +Spouse’ +s/RDP’s last name if joint return +Spouse’s/RDP’s SSN if joint return +T +elephone number +City +State ZIP code +name +or +Country +• + +1 + + +Single + +2a + + + +2b + + +Registered domestic partners (RDP) filing jointly + +3a + + + + +Spouse’ +s name + + +Spouse’ +s SSN + + +3b + + +Registered domestic partner filing separately: + + +Partner’ +s name + + +Partner’ +s SSN + + +4 + + +Head of household: +Person who qualifes you + + +5 + + +Qualifying widow(er) with dependent child +Filing +Status +Check +only +one + +box +Exemptions +6a + +Y +ourself + +........... +Regular + + +...... +Sever +ely disabled + + +.... +6a + +6b + +Spouse/RDP + +... +Regular + + +...... +Sever +ely disabled + + +...... +b + +6c + +All dependents + +First names + +__________________________________ +• + +c +6d + +Disabled + + +First names + +__________________________________ +• + +d + +childr +en only + +(see instructions) +T +otal +T +otal +6e +• +• +Check +all + that apply +➛ +7a + +• + + +• +Y +ou were: + + 65 or older + + Blind + +Spouse/RDP was: + + 65 or older + + Blind +.00 +.00 +.00 +.00 +• +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +Form +40 +2013 +OREGON +150-101-040 (Rev +. 12-13) +Amended Return +K F P J +25 + Net Oregon itemized deductions. Line 23 minus line 24......................................... +27 Total deductions. Line 25 or line 26, whichever is larger +Oregon taxable income. Line 20 minus line 27. If line 27 is more than line 20, enter -0- +13 + 2013 federal tax liability ($0–$6,250; see instructions for the correct amount) +Other additions. +Identify: +INDIVIDUAL INCOME TAX RETURN +Full-Year Residents Only +Current mailing address +(Not Supported) +For office use only +Round to the nearest dollar +Other subtractions. +Identify: +0 +• +If you are claiming itemized deductions, fill in lines 21 and 23–25. If you are claiming the standard deduction, fill in line 26 only. + 12 +Enter all dependents +• + address is different, check here +11 + +Total additions. Add lines 9 and 10 +4 + +Social Security included on federal Form 1040, line 20b; or Form 1040A, line 14b +17 + +Federal pension income. See instructions, page 15. 17a +First name +Initial +(Not Supported) +(Not Supported) +----------------Page (0) Break---------------- +C +HARIT +ABLE + +C +HEC +k +OFF + +DONA +TIONS, +PAGE 26 +I want to donate +part of my tax +refund to the +following fund(s) +32 + Total tax before credits from front of form, line 31 + +.......................................................................................... +32 +33 + + total exemptions on line 6e by $188. Otherwise, see instructions on page 20 + +....... +• + +33 +34 + Retirement income credit. See instructions, page 20 + +.............................................. +• + +34 +35 + Child and dependent care credit. See instructions, page 21 + +................................... +• + +35 +36 + Credit for the elderly or the disabled. See instructions, page 21 + +............................. +• + +36 +37 + Political contribution credit. See limits, page 21 + +...................................................... +• + +37 +38 +• + +38y + + +Schedule included + +38z + +• + +38 +• + +39x + + +• + +39y + + +$ + +Schedule included + +39z + + + +• + +39 +40 + Total non-refundable credits. Add lines 33 through 39 + +................................................................................ +• + + +40 +41 + Net income tax. Line 32 minus line 40. If line 40 is more than line 32, enter -0- + +......................................... +• + + +41 + + +.............................. +• + + +42 +43 + +............. +• + + +43 + +• + +43a + + + W +olf depredation + +• + +43b + + Claim of right +44 + Earned income credit. See instructions, page 23 + +.................................................... +• + +44 +45 +W +orking family child care credit + +fr +om WFC, line 18 + +.............................................. +• + +45 +46 +Mobile home park closure credit. Include Schedule MPC + +....................................... +• + +46 +47 + Total payments and refundable credits. Add lines 42 through 46 + +................................................................ +• + + +47 +48 + + +.... +OVERP +AYMENT +➛ + +• + + +48 +49 +T +ax to pay. + + +.... +T +AX TO PAY +➛ + +• + + +49 +50 + Penalty and interest for filing or paying late. See instructions, page 23 + +..................... + + +50 + + +• + + +51 + + Exception # from Form 10, line 1 + +• + +51a + + +Check box if you annualized +• + +51b +52 + Total penalty and interest due. Add lines 50 and 51 + +....................................................................................... + + +52 +53 + +Line 49 plus line 52 + +............................................................... +AMOUNT YOU OWE +➛ + +• + +53 + + 54 +Refund. + +.......................................... +REFUND +➛ + +• + +54 +55 +Estimated tax. + + +... +• + +55 + +American Diabetes Assoc. + +• + +56 + +Or +egon Coast Aquarium + +• + +57 + +SMAR +T + +• + +58 + +SOL +V + +• + +59 + +The Natur +e Conservancy + +• + +60 + +St. Vincent DePaul Soc. of OR + +• + +61 + +Or +egon Humane Society + +• + +62 + +The Salvation Army + +• + +63 + +Doer +nbecher Children’s Hosp. + +• + +64 + +Or +egon Veteran’s Home + +• + +65 + +Charity code +• + +66a + + +• + +66b + +Charity code +• + +67a + + +• + +67b + 68 + +• + +68a + + + +You + +• + +68b + +Spouse/RDP +........ +• + +68 +69 + +.......... + +• + +69 +70 + Total. Add lines 55 through 69. Total can’t be more than your refund on line 54 + +......................................... +• + + +70 +71 +NET REFUND. + + +..................................... + +NET REFUND +➛ +• + + +71 +72 + For direct deposit of your refund, see instructions, page 27. + +• + T +ype of account: + + +or + + +Sa +vings + Will this refund go to an account outside the United States? +• + + Ye +s +Page 2 — 2013 Form 40 +NONREFUNDABLE +CREDITS +ADD TOGETHER +Important: Include a copy of your federal Form 1040, 1040A, 1040EZ, 1040NR, or 1040NR-EZ. +P +AYMENTS AND +REFUNDABLE +CREDITS +Inc +lude Schedule +WFC if you claim +this credit +ADD TOGETHER +These will +r +educe +your refund +• + +Routing No. +• + +Account No. +DIRECT +DEPOSIT +Your signature +Date +Address +Telephone no. +X +X +Spouse’ +s/RDP’s signature (if filing jointly, BOTH must sign) +Date +X +• + +Pr +eparer license no. +Oregon Department of Revenue. + +Include your payment, along with the payment voucher +on page 23, with this return. +See instructions +.00 +.00 +.00 +.00 +.00 +.00 +.00 +PO Box 14555 +Salem OR 97309-0940 +Mail + +REFUND + +r +eturns +and + +NO +- +T +AX +- +DUE + +r +eturns to +Mail + +T +AX +- +TO +- +P +AY +r +eturns to + +REFUND +PO Box 14700 +Salem OR 97309-0930 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +.00 +150-101-040 (Rev +. 12-13) +.00 +42 Oregon income tax withheld.Include Form(s) W-2 and 1099 +If line 41 is less than line 47, you overpaid. Line 47 minus line 41 +If line 41 is more than line 47, you have tax to pay. Line 41 minus line 47 +Fill in the part of line 54 you want applied to 2014 estimated tax +W +rite your daytime telephone number and “2013 Oregon Form 40” on your check or money order. +51 + Interest on underpayment of estimated tax. Include Form 10 and check box +39 Other credits. Identify: +Exemption credit. If the amount on line 8 is less than $100,000, multiply your +Credit for income taxes paid to another state. +State: +Include proof +Estimated tax payments for 2013 and payments made with your extension +Overpayment. +Amount you owe. +Line 54 minus line 70. This is your net refund +Under penalty for false swearing, I declare that the information in this return is true, correct, and complete. +If you owe, make your check or money order payable to the +Oregon Department of Revenue +Is line 48 more than line 52? If so, line 48 minus line 52 + Total Oregon 529 College Savings Plan deposits. + +See instructions, page 26 +Political party $3 checkoff. Party code: +Checking +Signature of preparer other than taxpayer +----------------Page (1) Break---------------- diff --git a/test/data/or/form/OR40.fields.json b/test/data/or/form/OR40.fields.json new file mode 100755 index 00000000..5e5fc9ea --- /dev/null +++ b/test/data/or/form/OR40.fields.json @@ -0,0 +1 @@ +[{"id":"AMENDBX","type":"box","calc":true,"value":""},{"id":"PDECD","type":"box","calc":true,"value":""},{"id":"SDECD","type":"box","calc":true,"value":""},{"id":"NWADD","type":"box","calc":false,"value":""},{"id":"FSBXRB","type":"radio","calc":false,"value":"FSSNG"},{"id":"FSBXRB","type":"radio","calc":false,"value":"FSRDP"},{"id":"FSBXRB","type":"radio","calc":false,"value":"FSMFJ"},{"id":"FSBXRB","type":"radio","calc":false,"value":"FSMFS"},{"id":"FSBXRB","type":"radio","calc":false,"value":"FSRDPMFS"},{"id":"FSBXRB","type":"radio","calc":false,"value":"FSHOH"},{"id":"FSBXRB","type":"radio","calc":false,"value":"FSQW"},{"id":"TPBX","type":"box","calc":false,"value":""},{"id":"TPDISBX","type":"box","calc":false,"value":""},{"id":"SPBX","type":"box","calc":false,"value":""},{"id":"SPDISBX","type":"box","calc":false,"value":""},{"id":"TP65BX","type":"box","calc":false,"value":""},{"id":"TPBLNDBX","type":"box","calc":false,"value":""},{"id":"EXF","type":"box","calc":false,"value":""},{"id":"FEDX","type":"box","calc":false,"value":""},{"id":"DEPCLAIM","type":"box","calc":false,"value":""},{"id":"SP65BX","type":"box","calc":false,"value":""},{"id":"SPBLNDBX","type":"box","calc":false,"value":""},{"id":"L10TC","type":"box","calc":false,"value":""},{"id":"L18TC","type":"box","calc":false,"value":""},{"id":"ORTAXBRB","type":"radio","calc":false,"value":"BXTAX"},{"id":"ORTAXBRB","type":"radio","calc":false,"value":"BXTAX2"},{"id":"FMTH","type":"date","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"PI","type":"mask","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"TPAGE","type":"date","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SI","type":"mask","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"SPAGE","type":"date","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"HPHONE","type":"phone","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"L6A","type":"number","calc":true,"value":""},{"id":"SPNM","type":"alpha","calc":false,"value":""},{"id":"SPSN","type":"ssn","calc":false,"value":""},{"id":"Add_DEP","type":"link","calc":false,"value":""},{"id":"L6B","type":"number","calc":true,"value":""},{"id":"PARTNER","type":"alpha","calc":false,"value":""},{"id":"PASSN","type":"ssn","calc":false,"value":""},{"id":"DEPNM","type":"alpha","calc":true,"value":""},{"id":"L6C","type":"number","calc":true,"value":""},{"id":"QUALNAM","type":"alpha","calc":false,"value":""},{"id":"DISNM","type":"alpha","calc":true,"value":""},{"id":"L6D","type":"number","calc":true,"value":""},{"id":"L6E","type":"number","calc":true,"value":""},{"id":"Fed_Attach","type":"link","calc":false,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"ADD_ASC_ADD","type":"link","calc":false,"value":""},{"id":"L10T","type":"mask","calc":false,"value":""},{"id":"L10TB","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"FEDTAX","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17A","type":"mask","calc":false,"value":""},{"id":"L17B","type":"mask","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"ADD_ASC_SUB","type":"link","calc":false,"value":""},{"id":"L18T","type":"mask","calc":false,"value":""},{"id":"L18TB","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"ITEMDED","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":true,"value":""},{"id":"STATETAX","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"STDDED","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"ORTAX","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"INSTALL","type":"number","calc":false,"value":""},{"id":"TOTALTAX","type":"number","calc":true,"value":""},{"id":"BX38Z","type":"box","calc":false,"value":""},{"id":"L41TC","type":"box","calc":false,"value":""},{"id":"WOLF","type":"box","calc":false,"value":""},{"id":"CLMOFRT","type":"box","calc":false,"value":""},{"id":"UNDBOX","type":"box","calc":true,"value":""},{"id":"ANBX","type":"box","calc":true,"value":""},{"id":"TARB","type":"radio","calc":false,"value":"CACCTX"},{"id":"TARB","type":"radio","calc":false,"value":"SACCTX"},{"id":"OUTUSBX","type":"box","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"TOTTAX2","type":"number","calc":true,"value":""},{"id":"EXEMPTNS","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"CHLDCARE","type":"number","calc":false,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"L39","type":"number","calc":false,"value":""},{"id":"ADD_ASC_OST","type":"link","calc":false,"value":""},{"id":"L40ST","type":"alpha","calc":false,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"ADD_ASC_OCR","type":"link","calc":false,"value":""},{"id":"L41T","type":"mask","calc":false,"value":""},{"id":"L41TB","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":false,"value":""},{"id":"L42","type":"number","calc":true,"value":""},{"id":"NIT","type":"number","calc":true,"value":""},{"id":"WTHHLD","type":"number","calc":false,"value":""},{"id":"ESTPAY","type":"number","calc":false,"value":""},{"id":"EIC","type":"number","calc":false,"value":""},{"id":"ADD_WFC","type":"link","calc":false,"value":""},{"id":"WFC","type":"number","calc":true,"value":""},{"id":"MH","type":"number","calc":false,"value":""},{"id":"L46","type":"number","calc":true,"value":""},{"id":"L47","type":"number","calc":true,"value":""},{"id":"L48","type":"number","calc":true,"value":""},{"id":"L49","type":"number","calc":false,"value":""},{"id":"ADD_OR10","type":"link","calc":false,"value":""},{"id":"L50","type":"number","calc":true,"value":""},{"id":"EXNUM","type":"number","calc":true,"value":""},{"id":"L51","type":"number","calc":true,"value":""},{"id":"AMTOWED","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"TOESTTAX","type":"number","calc":false,"value":""},{"id":"DIABETES","type":"number","calc":false,"value":""},{"id":"COAST","type":"number","calc":false,"value":""},{"id":"SMART","type":"number","calc":false,"value":""},{"id":"SOLV","type":"number","calc":false,"value":""},{"id":"NATURE","type":"number","calc":false,"value":""},{"id":"DEPAUL","type":"number","calc":false,"value":""},{"id":"HUMANE","type":"number","calc":false,"value":""},{"id":"SARMY","type":"number","calc":false,"value":""},{"id":"HOSP","type":"number","calc":false,"value":""},{"id":"VET","type":"number","calc":false,"value":""},{"id":"CHARCODE","type":"alpha","calc":false,"value":""},{"id":"CD68B","type":"number","calc":false,"value":""},{"id":"CD69A","type":"alpha","calc":false,"value":""},{"id":"CHARITY","type":"number","calc":false,"value":""},{"id":"TPPARTY","type":"alpha","calc":false,"value":""},{"id":"SPPARTY","type":"alpha","calc":false,"value":""},{"id":"CONTRIB","type":"number","calc":true,"value":""},{"id":"ADD_529","type":"link","calc":false,"value":""},{"id":"CSP","type":"number","calc":true,"value":""},{"id":"DONATE","type":"number","calc":true,"value":""},{"id":"NETREFND","type":"number","calc":true,"value":""},{"id":"RTNO","type":"mask","calc":false,"value":""},{"id":"ACCTNO","type":"mask","calc":false,"value":""},{"id":"PREPSIGN","type":"alpha","calc":true,"value":""},{"id":"PREPEIN","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/OR40.json b/test/data/or/form/OR40.json new file mode 100755 index 00000000..c2f86ab5 --- /dev/null +++ b/test/data/or/form/OR40.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":85.43,"y":22.479,"w":0.75,"l":13.527},{"x":85.43,"y":21.732,"w":0.75,"l":13.527},{"x":6.188,"y":23.232,"w":0.75,"l":92.813},{"x":71.792,"y":23.979,"w":0.75,"l":13.655},{"x":71.792,"y":23.232,"w":0.75,"l":13.655},{"x":85.43,"y":26.229,"w":0.75,"l":13.552},{"x":85.43,"y":25.482,"w":0.75,"l":13.552},{"x":85.43,"y":25.479,"w":0.75,"l":13.552},{"x":85.43,"y":24.732,"w":0.75,"l":13.552},{"x":6.188,"y":33.716,"w":0.75,"l":92.813},{"x":6.188,"y":26.966,"w":0.75,"l":92.813},{"x":85.43,"y":32.229,"w":0.75,"l":13.552},{"x":85.43,"y":31.482,"w":0.75,"l":13.552},{"x":85.43,"y":32.979,"w":0.75,"l":13.552},{"x":85.43,"y":32.232,"w":0.75,"l":13.552},{"x":71.792,"y":31.479,"w":0.75,"l":13.655},{"x":71.792,"y":30.732,"w":0.75,"l":13.655},{"x":71.792,"y":30.729,"w":0.75,"l":13.655},{"x":71.792,"y":29.982,"w":0.75,"l":13.655},{"x":71.792,"y":29.979,"w":0.75,"l":13.655},{"x":71.792,"y":29.232,"w":0.75,"l":13.655},{"x":71.792,"y":27.729,"w":0.75,"l":13.655},{"x":71.792,"y":26.982,"w":0.75,"l":13.655},{"x":71.792,"y":28.479,"w":0.75,"l":13.655},{"x":71.792,"y":27.732,"w":0.75,"l":13.655},{"x":71.792,"y":29.229,"w":0.75,"l":13.655},{"x":71.792,"y":28.482,"w":0.75,"l":13.655},{"x":6.188,"y":41.976,"w":0.75,"l":92.813},{"x":71.784,"y":35.979,"w":0.75,"l":13.655},{"x":71.784,"y":35.232,"w":0.75,"l":13.655},{"x":71.784,"y":35.229,"w":0.75,"l":13.655},{"x":71.784,"y":34.482,"w":0.75,"l":13.655},{"x":71.784,"y":35.979,"w":0.75,"l":13.655},{"x":71.784,"y":35.232,"w":0.75,"l":13.655},{"x":71.784,"y":36.729,"w":0.75,"l":13.655},{"x":71.784,"y":35.982,"w":0.75,"l":13.655},{"x":71.784,"y":37.479,"w":0.75,"l":13.655},{"x":71.784,"y":36.732,"w":0.75,"l":13.655},{"x":71.809,"y":38.22,"w":1.2000000000000002,"l":13.604},{"x":71.809,"y":37.491,"w":1.2000000000000002,"l":13.604},{"x":71.809,"y":39.72,"w":1.2000000000000002,"l":13.604},{"x":71.809,"y":38.991,"w":1.2000000000000002,"l":13.604},{"x":85.43,"y":40.479,"w":0.75,"l":13.552},{"x":85.43,"y":39.732,"w":0.75,"l":13.552},{"x":71.88,"y":42.738,"w":0.75,"l":13.578},{"x":71.88,"y":41.992,"w":0.75,"l":13.578},{"x":71.88,"y":44.239,"w":0.75,"l":13.578},{"x":71.88,"y":43.492,"w":0.75,"l":13.578},{"x":85.467,"y":44.985,"w":0.75,"l":13.527},{"x":85.467,"y":44.238,"w":0.75,"l":13.527},{"x":85.43,"y":41.229,"w":0.75,"l":13.552},{"x":85.43,"y":40.482,"w":0.75,"l":13.552},{"x":71.792,"y":24.729,"w":0.75,"l":13.655},{"x":71.792,"y":23.982,"w":0.75,"l":13.655},{"oc":"#00adef","x":6.291,"y":7.491,"w":1.5,"l":65.453},{"oc":"#00adef","x":6.291,"y":2.284,"w":1.5,"l":65.453},{"oc":"#00adef","x":55.778,"y":7.506,"w":0.75,"l":15.923},{"oc":"#00adef","x":55.778,"y":6.016,"w":0.75,"l":15.923},{"x":6.196,"y":20.987,"w":0.75,"l":92.718},{"x":6.188,"y":19.131,"w":0.75,"l":92.727},{"x":83.985,"y":7.525,"w":2.25,"l":15.015},{"x":6.256,"y":13.489,"w":0.75,"l":92.744},{"x":60.72,"y":9.007,"w":0.75,"l":23.059},{"x":6.256,"y":11.977,"w":0.75,"l":92.707},{"x":6.109,"y":9,"w":0.75,"l":55.844},{"x":6.211,"y":10.5,"w":0.75,"l":58.219},{"x":84.15,"y":9.008,"w":0.75,"l":14.823},{"x":83.985,"y":10.504,"w":0.75,"l":14.987},{"oc":"#00adef","x":64.752,"y":10.457,"w":3,"l":19.254},{"oc":"#00adef","x":64.752,"y":7.543,"w":3,"l":19.254},{"x":71.792,"y":24.729,"w":0.75,"l":13.655},{"x":71.792,"y":23.982,"w":0.75,"l":13.655},{"x":71.83,"y":3.756,"w":2.25,"l":27.17},{"x":71.775,"y":4.456,"w":0.75,"l":27.225},{"x":71.775,"y":6.016,"w":0.75,"l":27.225},{"x":94.263,"y":14.972,"w":1.5,"l":3.674},{"x":94.263,"y":18.966,"w":1.5,"l":3.674},{"oc":"#808284","x":18.532,"y":35.672,"w":18,"l":67.092}],"VLines":[{"x":98.957,"y":21.732,"w":0.75,"l":0.747},{"x":85.43,"y":21.732,"w":0.75,"l":0.747},{"x":95.287,"y":21.735,"w":0.75,"l":0.747},{"x":85.448,"y":23.232,"w":0.75,"l":0.747},{"x":71.792,"y":23.232,"w":0.75,"l":0.747},{"x":81.649,"y":23.235,"w":0.75,"l":0.747},{"x":98.983,"y":25.482,"w":0.75,"l":0.747},{"x":85.43,"y":25.482,"w":0.75,"l":0.747},{"x":95.313,"y":25.485,"w":0.75,"l":0.747},{"x":98.983,"y":24.732,"w":0.75,"l":0.747},{"x":85.43,"y":24.732,"w":0.75,"l":0.747},{"x":95.313,"y":24.735,"w":0.75,"l":0.747},{"x":98.983,"y":31.482,"w":0.75,"l":0.747},{"x":85.43,"y":31.482,"w":0.75,"l":0.747},{"x":95.313,"y":31.485,"w":0.75,"l":0.747},{"x":98.983,"y":32.232,"w":0.75,"l":0.747},{"x":85.43,"y":32.232,"w":0.75,"l":0.747},{"x":95.313,"y":32.235,"w":0.75,"l":0.747},{"x":85.448,"y":30.732,"w":0.75,"l":0.747},{"x":71.792,"y":30.732,"w":0.75,"l":0.747},{"x":85.448,"y":29.982,"w":0.75,"l":0.747},{"x":71.792,"y":29.982,"w":0.75,"l":0.747},{"x":81.658,"y":29.985,"w":0.75,"l":0.747},{"x":81.658,"y":30.738,"w":0.75,"l":0.747},{"x":85.448,"y":29.232,"w":0.75,"l":0.747},{"x":71.792,"y":29.232,"w":0.75,"l":0.747},{"x":81.658,"y":29.235,"w":0.75,"l":0.747},{"x":85.448,"y":26.982,"w":0.75,"l":0.747},{"x":71.792,"y":26.982,"w":0.75,"l":0.747},{"x":81.658,"y":26.985,"w":0.75,"l":0.747},{"x":85.448,"y":27.732,"w":0.75,"l":0.747},{"x":71.792,"y":27.732,"w":0.75,"l":0.747},{"x":81.658,"y":27.735,"w":0.75,"l":0.747},{"x":85.448,"y":28.482,"w":0.75,"l":0.747},{"x":71.792,"y":28.482,"w":0.75,"l":0.747},{"x":81.658,"y":28.485,"w":0.75,"l":0.747},{"x":85.439,"y":35.232,"w":0.75,"l":0.747},{"x":71.784,"y":35.232,"w":0.75,"l":0.747},{"x":81.641,"y":35.235,"w":0.75,"l":0.747},{"x":85.439,"y":34.482,"w":0.75,"l":0.747},{"x":71.784,"y":34.482,"w":0.75,"l":0.747},{"x":81.649,"y":34.485,"w":0.75,"l":0.747},{"x":85.439,"y":35.232,"w":0.75,"l":0.747},{"x":71.784,"y":35.232,"w":0.75,"l":0.747},{"x":85.439,"y":35.982,"w":0.75,"l":0.747},{"x":71.784,"y":35.982,"w":0.75,"l":0.747},{"x":81.641,"y":35.985,"w":0.75,"l":0.747},{"x":85.439,"y":36.732,"w":0.75,"l":0.747},{"x":71.784,"y":36.732,"w":0.75,"l":0.747},{"x":81.641,"y":36.735,"w":0.75,"l":0.747},{"x":85.413,"y":37.491,"w":1.2000000000000002,"l":0.728},{"x":71.809,"y":37.491,"w":1.2000000000000002,"l":0.728},{"x":81.641,"y":37.485,"w":0.75,"l":0.747},{"x":85.413,"y":38.991,"w":1.2000000000000002,"l":0.728},{"x":71.809,"y":38.991,"w":1.2000000000000002,"l":0.728},{"x":81.641,"y":38.985,"w":0.75,"l":0.747},{"x":98.983,"y":39.732,"w":0.75,"l":0.747},{"x":85.43,"y":39.732,"w":0.75,"l":0.747},{"x":95.313,"y":39.735,"w":0.75,"l":0.747},{"x":85.458,"y":41.992,"w":0.75,"l":0.747},{"x":71.88,"y":41.992,"w":0.75,"l":0.747},{"x":85.458,"y":43.492,"w":0.75,"l":0.747},{"x":71.88,"y":43.492,"w":0.75,"l":0.747},{"x":98.993,"y":44.238,"w":0.75,"l":0.747},{"x":85.467,"y":44.238,"w":0.75,"l":0.747},{"x":95.324,"y":44.241,"w":0.75,"l":0.747},{"x":81.788,"y":43.495,"w":0.75,"l":0.747},{"x":81.788,"y":41.995,"w":0.75,"l":0.747},{"x":98.983,"y":40.482,"w":0.75,"l":0.747},{"x":85.43,"y":40.482,"w":0.75,"l":0.747},{"x":95.313,"y":40.485,"w":0.75,"l":0.747},{"x":85.448,"y":23.982,"w":0.75,"l":0.747},{"x":71.792,"y":23.982,"w":0.75,"l":0.747},{"x":81.649,"y":23.985,"w":0.75,"l":0.747},{"oc":"#00adef","x":71.744,"y":2.284,"w":1.5,"l":5.207},{"oc":"#00adef","x":6.291,"y":2.284,"w":1.5,"l":5.207},{"x":6.248,"y":7.492,"w":0.75,"l":13.509},{"x":33.49,"y":7.502,"w":0.75,"l":2.997},{"oc":"#00adef","x":71.701,"y":6.016,"w":0.75,"l":1.491},{"oc":"#00adef","x":55.778,"y":6.016,"w":0.75,"l":1.491},{"x":98.951,"y":7.472,"w":0.75,"l":13.496},{"x":70.58,"y":10.517,"w":0.75,"l":1.456},{"x":70.575,"y":11.983,"w":0.75,"l":1.522},{"x":36.008,"y":11.967,"w":0.75,"l":1.5},{"x":42.195,"y":11.967,"w":0.75,"l":1.5},{"x":55.73,"y":11.967,"w":0.75,"l":7.164},{"x":55.414,"y":19.14,"w":0.75,"l":1.862},{"x":68.427,"y":19.131,"w":0.75,"l":1.862},{"x":26.495,"y":19.133,"w":0.75,"l":1.862},{"x":82.302,"y":19.131,"w":0.75,"l":1.862},{"oc":"#00adef","x":84.006,"y":7.543,"w":3,"l":2.914},{"oc":"#00adef","x":64.752,"y":7.543,"w":3,"l":2.914},{"x":85.448,"y":23.982,"w":0.75,"l":0.747},{"x":71.792,"y":23.982,"w":0.75,"l":0.747},{"x":81.649,"y":23.985,"w":0.75,"l":0.747},{"x":98.909,"y":3.708,"w":2.25,"l":3.85},{"x":94.449,"y":6.004,"w":0.75,"l":1.517},{"x":89.98,"y":6.004,"w":0.75,"l":1.517},{"x":97.937,"y":14.972,"w":1.5,"l":3.994},{"x":94.263,"y":14.972,"w":1.5,"l":3.994},{"x":49.414,"y":7.531,"w":0.75,"l":1.5},{"x":49.371,"y":9.438,"w":0.75,"l":0.998}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":85.864,"y":38.964,"w":0.442,"h":0.679,"clr":0},{"x":86.205,"y":38.273,"w":0.447,"h":0.692,"clr":0},{"x":85.863,"y":37.598,"w":0.442,"h":0.675,"clr":0}],"Texts":[{"x":54.787,"y":7.85,"w":3.628,"clr":0,"A":"left","R":[{"T":"Deceased","S":2,"TS":[0,10,0,0]}]},{"x":54.852,"y":9.226,"w":3.628,"clr":0,"A":"left","R":[{"T":"Deceased","S":2,"TS":[0,10,0,0]}]},{"x":70.695,"y":11.852,"w":17.132,"clr":0,"A":"left","R":[{"T":"If%20you%20filed%20a%20return%20last%20year%2C%20and%20your%20","S":-1,"TS":[0,11,0,0]}]},{"x":16.044,"y":15.169,"w":10.741000000000001,"clr":0,"A":"left","R":[{"T":"Married%20fiing%20separately%3A","S":2,"TS":[0,10,0,0]}]},{"x":16.044,"y":13.956,"w":8.685,"clr":0,"A":"left","R":[{"T":"Married%20filing%20jointly","S":2,"TS":[0,10,0,0]}]},{"x":71.521,"y":46.422,"w":18.244999999999997,"clr":0,"A":"left","R":[{"T":"NOW%20GO%20TO%20THE%20BACK%20OF%20THE%20FORM%20","S":-1,"TS":[0,11,0,0]}]},{"x":96.607,"y":46.547,"w":0.918,"clr":0,"A":"left","R":[{"T":"%E2%9E%9B","S":-1,"TS":[2,17.7,0,0]}]},{"x":16.705,"y":20.907,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":20.907,"w":40.66199999999997,"clr":0,"A":"left","R":[{"T":"Federal%20adjusted%20gross%20income.%20Federal%20Form%201040%2C%20line%2037%3B%201040A%2C%20line%2021%3B%201040EZ%2C%20line%204%3B%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":21.657,"w":29.509000000000004,"clr":0,"A":"left","R":[{"T":"1040NR%2C%20line%2036%3B%20or%201040NR-EZ%2C%20line%2010.%20See%20instructions%2C%20page%2013","S":-1,"TS":[0,11,0,0]}]},{"x":59.118,"y":21.657,"w":16.40200000000002,"clr":0,"A":"left","R":[{"T":"...........................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":21.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.458,"y":21.657,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"%208","S":-1,"TS":[0,11,0,0]}]},{"x":16.705,"y":23.157,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":23.157,"w":35.176,"clr":0,"A":"left","R":[{"T":"Interest%20and%20dividends%20on%20state%20and%20local%20government%20bonds%20outside%20of%20Oregon","S":-1,"TS":[0,11,0,0]}]},{"x":66.763,"y":23.157,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"...","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":23.247,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.845,"y":23.157,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"%209","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":23.907,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"10%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.609,"y":23.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":37.612,"y":23.907,"w":1.366,"clr":0,"A":"left","R":[{"T":"10x","S":-1,"TS":[0,11,0,0]}]},{"x":42.394,"y":23.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":43.397,"y":23.907,"w":1.366,"clr":0,"A":"left","R":[{"T":"10y","S":-1,"TS":[0,11,0,0]}]},{"x":45.383,"y":23.83,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":54.704,"y":23.899,"w":6.777,"clr":-1,"A":"left","R":[{"T":"Schedule%20included","S":2,"TS":[0,10,0,0]}]},{"x":64.422,"y":23.907,"w":1.589,"clr":0,"A":"left","R":[{"T":"10z%20","S":-1,"TS":[0,11,0,0]}]},{"x":68.192,"y":23.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.463,"y":23.907,"w":1.112,"clr":0,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11,0,0]}]},{"x":40.006,"y":24.657,"w":30.301999999999953,"clr":0,"A":"left","R":[{"T":".............................................................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":24.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":82.693,"y":24.657,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2011","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":25.407,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":25.407,"w":18.895000000000003,"clr":0,"A":"left","R":[{"T":"Income%20after%20additions.%20Add%20lines%208%20and%2011","S":-1,"TS":[0,11,0,0]}]},{"x":44.592,"y":25.407,"w":26.96599999999997,"clr":0,"A":"left","R":[{"T":".................................................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":25.497,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":66,"y":26.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":26.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":26.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2013","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":27.657,"w":0.546,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"x":66.763,"y":27.657,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"...","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":27.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":27.657,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2014","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":28.407,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":28.407,"w":23.728000000000005,"clr":0,"A":"left","R":[{"T":"Oregon%20income%20tax%20refund%20included%20in%20federal%20income","S":-1,"TS":[0,11,0,0]}]},{"x":51.09,"y":28.407,"w":12.232000000000014,"clr":0,"A":"left","R":[{"T":"............................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":28.497,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":28.407,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2015","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":29.157,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":29.157,"w":36.066999999999965,"clr":0,"A":"left","R":[{"T":"Interest%20from%20U.S.%20government%2C%20such%20as%20Series%20EE%2C%20HH%2C%20and%20I%20bonds%20.....................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":29.247,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":29.157,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2016","S":-1,"TS":[0,11,0,0]}]},{"x":56.546,"y":29.853,"w":1,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11,0,0]}]},{"x":58.703,"y":29.907,"w":1.983,"clr":0,"A":"left","R":[{"T":"17b%20","S":-1,"TS":[0,11,0,0]}]},{"x":65.258,"y":29.828,"w":1,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,10.76,0,0]}]},{"x":66.762,"y":29.907,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"...","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":29.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":29.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2017","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":30.657,"w":1.588,"clr":0,"A":"left","R":[{"T":"18%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":37.13,"y":30.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":38.15,"y":30.657,"w":1.306,"clr":0,"A":"left","R":[{"T":"18x","S":-1,"TS":[0,11,0,0]}]},{"x":43.396,"y":30.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":44.417,"y":30.657,"w":1.306,"clr":0,"A":"left","R":[{"T":"18y","S":-1,"TS":[0,11,0,0]}]},{"x":46.5,"y":30.58,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":54.713,"y":30.649,"w":6.436999999999999,"clr":-1,"A":"left","R":[{"T":"Schedule%20included","S":2,"TS":[0,10,0,0]}]},{"x":64.398,"y":30.657,"w":1.289,"clr":0,"A":"left","R":[{"T":"18z","S":-1,"TS":[0,11,0,0]}]},{"x":69.463,"y":30.657,"w":1.112,"clr":0,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":31.406999999999996,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":31.406999999999996,"w":19.265000000000008,"clr":0,"A":"left","R":[{"T":"Total%20subtractions.%20Add%20lines%2013%20through%2018","S":-1,"TS":[0,11,0,0]}]},{"x":44.974,"y":31.406999999999996,"w":26.68799999999997,"clr":0,"A":"left","R":[{"T":"................................................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":31.497,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":82.693,"y":31.406999999999996,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2019","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":32.157,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":32.157,"w":21.41500000000001,"clr":0,"A":"left","R":[{"T":"Income%20after%20subtractions.%20Line%2012%20minus%20line%2019","S":-1,"TS":[0,11,0,0]}]},{"x":48.032,"y":32.157,"w":24.46399999999998,"clr":0,"A":"left","R":[{"T":"........................................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":32.247,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":82.693,"y":32.157,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2020","S":-1,"TS":[0,11,0,0]}]},{"x":15.924,"y":34.407,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"21%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.695,"y":34.407,"w":23.597000000000005,"clr":0,"A":"left","R":[{"T":"Itemized%20deductions%20from%20federal%20Schedule%20A%2C%20line%2029","S":-1,"TS":[0,11,0,0]}]},{"x":51.09,"y":34.407,"w":12.232000000000014,"clr":0,"A":"left","R":[{"T":"............................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":34.497,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":34.407,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2021","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":35.157,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.578,"y":35,"w":10.652000000000005,"clr":1,"A":"left","R":[{"T":"Do%20not%20complete%20line%2022","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":35.247,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":35.157,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2022","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":35.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":35.907,"w":24.581000000000007,"clr":0,"A":"left","R":[{"T":"Total%20Oregon%20itemized%20deductions.%20Add%20lines%2021%20and%2022","S":-1,"TS":[0,11,0,0]}]},{"x":52.237,"y":35.907,"w":11.398000000000012,"clr":0,"A":"left","R":[{"T":".........................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":35.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":35.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2023","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":36.657,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"24%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.33,"y":36.657,"w":24.288000000000007,"clr":0,"A":"left","R":[{"T":"State%20income%20tax%20claimed%20as%20an%20itemized%20deduction","S":-1,"TS":[0,11,0,0]}]},{"x":51.855,"y":36.657,"w":11.676000000000013,"clr":0,"A":"left","R":[{"T":"..........................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":36.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":36.657,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2024","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":37.497,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":37.407,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2025","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":38.157,"w":4.28,"clr":0,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20OR","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":38.907,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"26%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.693,"y":38.907,"w":15.116000000000003,"clr":0,"A":"left","R":[{"T":"Standard%20deduction%20from%20page%2019","S":-1,"TS":[0,11,0,0]}]},{"x":39.241,"y":38.907,"w":20.849999999999998,"clr":0,"A":"left","R":[{"T":"...........................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":38.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.081,"y":38.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2026","S":-1,"TS":[0,11,0,0]}]},{"x":53.766,"y":39.657,"w":20.294,"clr":0,"A":"left","R":[{"T":".........................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":39.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":82.693,"y":39.657,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2027","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":40.407,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"28%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":72.114,"y":40.407,"w":6.950000000000005,"clr":0,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":40.497,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.076,"y":40.407,"w":1.112,"clr":0,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":41.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":41.907,"w":20.355000000000004,"clr":0,"A":"left","R":[{"T":"Tax.%20See%20instructions%2C%20page%2019.%20Enter%20tax%20here","S":-1,"TS":[0,11,0,0]}]},{"x":46.503,"y":41.907,"w":15.56800000000002,"clr":0,"A":"left","R":[{"T":"........................................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":41.997,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.463,"y":41.907,"w":1.112,"clr":0,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":42.613,"w":11.410000000000004,"clr":0,"A":"left","R":[{"T":"Check%20if%20tax%20is%20from%3A%20%2029a%20","S":-1,"TS":[0,11,0,0]}]},{"x":35.638,"y":42.613,"w":9.129999999999999,"clr":0,"A":"left","R":[{"T":"%20Tax%20tables%20or%20charts","S":-1,"TS":[0,11,0,0]}]},{"x":48.88,"y":42.613,"w":0.907,"clr":0,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"x":51.35,"y":42.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":52.639,"y":42.613,"w":1.705,"clr":0,"A":"left","R":[{"T":"29b","S":-1,"TS":[0,11,0,0]}]},{"x":56.684,"y":42.613,"w":5.872000000000001,"clr":0,"A":"left","R":[{"T":"%20Form%20FIA-40","S":-1,"TS":[0,11,0,0]}]},{"x":70.43,"y":42.613,"w":0.907,"clr":0,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"x":72.543,"y":42.747,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":73.832,"y":42.613,"w":1.927,"clr":0,"A":"left","R":[{"T":"29c%20","S":-1,"TS":[0,11,0,0]}]},{"x":77.742,"y":42.613,"w":7.964000000000002,"clr":0,"A":"left","R":[{"T":"%20Worksheet%20FCG%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.924,"y":43.363,"w":1.112,"clr":0,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":43.407,"w":15.762000000000002,"clr":0,"A":"left","R":[{"T":"Interest%20on%20certain%20installment%20sales","S":-1,"TS":[0,11,0,0]}]},{"x":40.005,"y":43.407,"w":20.294,"clr":0,"A":"left","R":[{"T":".........................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.105,"y":43.497,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.463,"y":43.407,"w":1.112,"clr":0,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":44.157,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"31%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":44.157,"w":20.06,"clr":0,"A":"left","R":[{"T":"Total%20tax%20before%20credits.%20Add%20lines%2029%20and%2030%20","S":-1,"TS":[0,11,0,0]}]},{"x":46.121,"y":44.157,"w":9.73000000000001,"clr":0,"A":"left","R":[{"T":"...................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":59.716,"y":44.157,"w":16.000999999999998,"clr":-1,"A":"left","R":[{"T":"OREGON%20TAX%20BEFORE%20CREDITS%20","S":-1,"TS":[0,11,0,0]}]},{"x":81.717,"y":44.247,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.076,"y":44.157,"w":1.112,"clr":0,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.066,"y":23.153,"w":5.5360000000000005,"clr":-1,"A":"left","R":[{"T":"ADDITIONS","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.066,"y":33.595,"w":6.685999999999999,"clr":-1,"A":"left","R":[{"T":"DEDUCTIONS","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.098,"y":41.875,"w":1.1480000000000001,"clr":-1,"A":"left","R":[{"T":"TA","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":7.568,"y":41.876,"w":0.5930000000000001,"clr":-1,"A":"left","R":[{"T":"X","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.066,"y":26.9,"w":7.687000000000001,"clr":-1,"A":"left","R":[{"T":"SUBTRACTIONS","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.969,"y":27.638,"w":1.221,"clr":-1,"A":"left","R":[{"T":"Inc","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":8.62,"y":27.638,"w":2.183,"clr":-1,"A":"left","R":[{"T":"lude%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.969,"y":28.2,"w":3.3449999999999998,"clr":-1,"A":"left","R":[{"T":"proof%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.969,"y":28.763,"w":4.94,"clr":-1,"A":"left","R":[{"T":"withholding%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.969,"y":29.325,"w":3.0700000000000003,"clr":-1,"A":"left","R":[{"T":"(W-2s%2C%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.969,"y":29.888,"w":2.8999999999999995,"clr":-1,"A":"left","R":[{"T":"1099s)%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.969,"y":30.45,"w":4.162,"clr":-1,"A":"left","R":[{"T":"payment%2C%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.969,"y":31.013,"w":5.4030000000000005,"clr":-1,"A":"left","R":[{"T":"and%20payment%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":6.969,"y":31.575000000000003,"w":3.1830000000000003,"clr":-1,"A":"left","R":[{"T":"voucher","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":86.71,"y":38.081,"w":8.833000000000002,"clr":-1,"A":"left","R":[{"T":"Either%20line%2025%20or%2026","S":-1,"TS":[0,10.504999999999999,0,0]}]},{"oc":"#00adef","x":83.149,"y":19,"w":1.167,"clr":-1,"A":"left","R":[{"T":"7d","S":-1,"TS":[0,11,0,0]}]},{"x":85.136,"y":19.126,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":87.542,"y":19,"w":6.908999999999999,"clr":0,"A":"left","R":[{"T":"%20Someone%20else%20","S":-1,"TS":[0,11,0,0]}]},{"x":87.962,"y":19.563,"w":6.465,"clr":0,"A":"left","R":[{"T":"can%20claim%20you%20","S":-1,"TS":[0,11,0,0]}]},{"x":87.962,"y":20.125,"w":6.947,"clr":0,"A":"left","R":[{"T":"as%20a%20dependent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":69.311,"y":18.956,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"7c","S":-1,"TS":[0,11,0,0]}]},{"x":71.202,"y":19.081,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":74.124,"y":18.956,"w":0.648,"clr":0,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,11,0,0]}]},{"x":74.862,"y":18.956,"w":3.8160000000000003,"clr":0,"A":"left","R":[{"T":"ou%20have%20","S":-1,"TS":[0,11,0,0]}]},{"x":74.124,"y":19.518,"w":3.333,"clr":0,"A":"left","R":[{"T":"federal%20","S":-1,"TS":[0,11,0,0]}]},{"x":74.124,"y":20.081,"w":5.001,"clr":0,"A":"left","R":[{"T":"Form%208886","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":56.153,"y":18.956,"w":1.167,"clr":-1,"A":"left","R":[{"T":"7b","S":-1,"TS":[0,11,0,0]}]},{"x":58.043,"y":19.081,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":60.793,"y":18.956,"w":0.648,"clr":0,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,11,0,0]}]},{"x":61.531,"y":18.956,"w":1.6860000000000002,"clr":0,"A":"left","R":[{"T":"ou%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.793,"y":19.518,"w":3.797,"clr":0,"A":"left","R":[{"T":"filed%20an%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.793,"y":20.081,"w":4.629,"clr":0,"A":"left","R":[{"T":"extension","S":-1,"TS":[0,11,0,0]}]},{"x":58.171,"y":5.68,"w":8.646,"clr":0,"A":"left","R":[{"T":"Fiscal%20year%20ending","S":-1,"TS":[0,10.2,0,0]}]},{"x":33.489,"y":8.689,"w":3.6160000000000005,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99","S":2,"TS":[0,10,0,0]}]},{"x":37.751,"y":8.689,"w":18.301999999999996,"clr":0,"A":"left","R":[{"T":"s%2FRDP%E2%80%99s%20first%20name%20and%20initial%20if%20joint%20return","S":2,"TS":[0,10,0,0]}]},{"x":84.16,"y":7.208,"w":5.816000000000001,"clr":0,"A":"left","R":[{"T":"Date%20of%20birth%20","S":2,"TS":[0,10,0,0]}]},{"x":91.157,"y":7.208,"w":5.998,"clr":0,"A":"left","R":[{"T":"(mm%2Fdd%2Fyyyy)","S":-1,"TS":[0,9.5,0,0]}]},{"x":84.16,"y":8.689,"w":5.816000000000001,"clr":0,"A":"left","R":[{"T":"Date%20of%20birth%20","S":2,"TS":[0,10,0,0]}]},{"x":91.157,"y":8.689,"w":5.998,"clr":0,"A":"left","R":[{"T":"(mm%2Fdd%2Fyyyy)","S":-1,"TS":[0,9.5,0,0]}]},{"x":6.47,"y":7.208,"w":4.669,"clr":0,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"x":64.76,"y":7.257,"w":11.332,"clr":0,"A":"left","R":[{"T":"Social%20Security%20No.%20(SSN)","S":2,"TS":[0,10,0,0]}]},{"x":6.47,"y":8.689,"w":3.6860000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99","S":2,"TS":[0,10,0,0]}]},{"x":10.816,"y":8.689,"w":14.131999999999998,"clr":0,"A":"left","R":[{"T":"s%2FRDP%E2%80%99s%20last%20name%20if%20joint%20return","S":2,"TS":[0,10,0,0]}]},{"x":64.76,"y":8.689,"w":15.500999999999998,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20SSN%20if%20joint%20return","S":2,"TS":[0,10,0,0]}]},{"x":70.7,"y":10.205,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"T","S":2,"TS":[0,10,0,0]}]},{"x":71.257,"y":10.205,"w":7.8180000000000005,"clr":0,"A":"left","R":[{"T":"elephone%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.471,"y":11.642,"w":1.759,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":36.24,"y":11.642,"w":2.352,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":42.307,"y":11.642,"w":4.037,"clr":0,"A":"left","R":[{"T":"ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"x":70.695,"y":12.477,"w":2.761,"clr":0,"A":"left","R":[{"T":"name%20","S":-1,"TS":[0,11,0,0]}]},{"x":74.491,"y":12.477,"w":1,"clr":0,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"x":55.903,"y":11.642,"w":3.5560000000000005,"clr":0,"A":"left","R":[{"T":"Country","S":2,"TS":[0,10,0,0]}]},{"x":6.039,"y":13.447,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":12.701,"y":13.35,"w":0.556,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"x":16.044,"y":13.35,"w":2.759,"clr":0,"A":"left","R":[{"T":"Single","S":2,"TS":[0,10,0,0]}]},{"x":11.963,"y":13.956,"w":1.093,"clr":0,"A":"left","R":[{"T":"2a","S":-1,"TS":[0,11,0,0]}]},{"x":11.919,"y":14.563,"w":1.149,"clr":0,"A":"left","R":[{"T":"2b","S":-1,"TS":[0,11,0,0]}]},{"x":16.044,"y":14.562,"w":21.316000000000013,"clr":0,"A":"left","R":[{"T":"Registered%20domestic%20partners%20(RDP)%20filing%20jointly","S":2,"TS":[0,10,0,0]}]},{"x":11.963,"y":15.169,"w":1.093,"clr":0,"A":"left","R":[{"T":"3a","S":-1,"TS":[0,11,0,0]}]},{"x":16.044,"y":15.774999999999999,"w":3.6860000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99","S":51,"TS":[0,9,0,0]}]},{"x":19.769,"y":15.774999999999999,"w":3.261,"clr":0,"A":"left","R":[{"T":"s%20name","S":51,"TS":[0,9,0,0]}]},{"x":38.731,"y":15.774999999999999,"w":3.6860000000000004,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99","S":51,"TS":[0,9,0,0]}]},{"x":42.456,"y":15.774999999999999,"w":2.7960000000000003,"clr":0,"A":"left","R":[{"T":"s%20SSN","S":51,"TS":[0,9,0,0]}]},{"x":11.919,"y":16.381,"w":1.149,"clr":0,"A":"left","R":[{"T":"3b","S":-1,"TS":[0,11,0,0]}]},{"x":16.044,"y":16.381,"w":20.260999999999996,"clr":0,"A":"left","R":[{"T":"Registered%20domestic%20partner%20filing%20separately%3A","S":2,"TS":[0,10,0,0]}]},{"x":16.044,"y":16.987,"w":3.5370000000000004,"clr":0,"A":"left","R":[{"T":"Partner%E2%80%99","S":51,"TS":[0,9,0,0]}]},{"x":19.615,"y":16.987,"w":3.261,"clr":0,"A":"left","R":[{"T":"s%20name","S":51,"TS":[0,9,0,0]}]},{"x":38.731,"y":16.987,"w":3.5370000000000004,"clr":0,"A":"left","R":[{"T":"Partner%E2%80%99","S":51,"TS":[0,9,0,0]}]},{"x":42.302,"y":16.987,"w":2.7960000000000003,"clr":0,"A":"left","R":[{"T":"s%20SSN","S":51,"TS":[0,9,0,0]}]},{"x":12.701,"y":17.594,"w":0.556,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"x":16.044,"y":17.594,"w":9.039000000000001,"clr":0,"A":"left","R":[{"T":"Head%20of%20household%3A%20","S":2,"TS":[0,10,0,0]}]},{"x":26.919,"y":17.594,"w":10.963000000000001,"clr":0,"A":"left","R":[{"T":"Person%20who%20qualifes%20you","S":51,"TS":[0,9,0,0]}]},{"x":12.701,"y":18.2,"w":0.556,"clr":0,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11,0,0]}]},{"x":16.044,"y":18.2,"w":18.648000000000007,"clr":0,"A":"left","R":[{"T":"Qualifying%20widow(er)%20with%20dependent%20child","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":7.072,"y":13.347,"w":2.5709999999999997,"clr":-1,"A":"left","R":[{"T":"Filing","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":7.072,"y":13.909,"w":3.057,"clr":-1,"A":"left","R":[{"T":"Status","S":-1,"TS":[0,11,0,0]}]},{"x":7.072,"y":14.622,"w":3.149,"clr":0,"A":"left","R":[{"T":"Check%20","S":2,"TS":[0,10,0,0]}]},{"x":7.072,"y":15.09,"w":2.13,"clr":0,"A":"left","R":[{"T":"only%20","S":2,"TS":[0,10,0,0]}]},{"x":7.072,"y":15.559000000000001,"w":1.778,"clr":0,"A":"left","R":[{"T":"one","S":2,"TS":[0,10,0,0]}]},{"x":7.072,"y":16.027,"w":1.685,"clr":0,"A":"left","R":[{"T":"box","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":55.754,"y":13.416,"w":5.627,"clr":-1,"A":"left","R":[{"T":"Exemptions","S":-1,"TS":[0,11,0,0]}]},{"x":56.84,"y":14.531,"w":1.093,"clr":0,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,11,0,0]}]},{"x":58.944,"y":14.531,"w":0.648,"clr":0,"A":"left","R":[{"T":"Y","S":2,"TS":[0,10,0,0]}]},{"x":59.591,"y":14.531,"w":3.018,"clr":0,"A":"left","R":[{"T":"ourself","S":2,"TS":[0,10,0,0]}]},{"x":63.53,"y":14.531,"w":3.0580000000000003,"clr":0,"A":"left","R":[{"T":"...........","S":2,"TS":[0,10,0,0]}]},{"x":67.324,"y":14.531,"w":3.4440000000000004,"clr":0,"A":"left","R":[{"T":"Regular","S":-1,"TS":[0,9.5,0,0]}]},{"x":75.475,"y":14.531,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,9.5,0,0]}]},{"x":77.466,"y":14.531,"w":2.555,"clr":0,"A":"left","R":[{"T":"Sever","S":-1,"TS":[0,9.5,0,0]}]},{"x":80.3,"y":14.531,"w":5.334,"clr":0,"A":"left","R":[{"T":"ely%20disabled","S":-1,"TS":[0,9.5,0,0]}]},{"x":90.694,"y":14.531,"w":1.112,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[0,9.5,0,0]}]},{"x":91.947,"y":14.531,"w":1.093,"clr":0,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,11,0,0]}]},{"x":56.84,"y":15.280999999999999,"w":1.149,"clr":0,"A":"left","R":[{"T":"6b","S":-1,"TS":[0,11,0,0]}]},{"x":59.021,"y":15.280999999999999,"w":5.778,"clr":0,"A":"left","R":[{"T":"Spouse%2FRDP","S":2,"TS":[0,10,0,0]}]},{"x":66.205,"y":15.280999999999999,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"...","S":2,"TS":[0,10,0,0]}]},{"x":67.324,"y":15.280999999999999,"w":3.4440000000000004,"clr":0,"A":"left","R":[{"T":"Regular","S":-1,"TS":[0,9.5,0,0]}]},{"x":75.475,"y":15.280999999999999,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,9.5,0,0]}]},{"x":77.466,"y":15.280999999999999,"w":2.555,"clr":0,"A":"left","R":[{"T":"Sever","S":-1,"TS":[0,9.5,0,0]}]},{"x":80.3,"y":15.280999999999999,"w":5.612,"clr":0,"A":"left","R":[{"T":"ely%20disabled%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":90.694,"y":15.280999999999999,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"......","S":-1,"TS":[0,9.5,0,0]}]},{"x":92.634,"y":15.280999999999999,"w":0.593,"clr":0,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,0,0]}]},{"x":56.792,"y":16.46,"w":1.093,"clr":0,"A":"left","R":[{"T":"6c","S":-1,"TS":[0,11,0,0]}]},{"x":58.896,"y":16.46,"w":6.687,"clr":0,"A":"left","R":[{"T":"All%20dependents","S":2,"TS":[0,10,0,0]}]},{"x":67.62,"y":16.46,"w":5.205,"clr":0,"A":"left","R":[{"T":"First%20names","S":51,"TS":[0,9,0,0]}]},{"x":73.292,"y":16.46,"w":17,"clr":0,"A":"left","R":[{"T":"__________________________________","S":51,"TS":[0,9,0,0]}]},{"x":90.906,"y":16.585,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":92.663,"y":16.46,"w":0.537,"clr":0,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"x":56.792,"y":17.22,"w":1.149,"clr":0,"A":"left","R":[{"T":"6d","S":-1,"TS":[0,11,0,0]}]},{"x":58.854,"y":17.22,"w":4.164,"clr":0,"A":"left","R":[{"T":"Disabled","S":2,"TS":[0,10,0,0]}]},{"x":67.62,"y":17.22,"w":5.205,"clr":0,"A":"left","R":[{"T":"First%20names","S":51,"TS":[0,9,0,0]}]},{"x":73.292,"y":17.22,"w":17,"clr":0,"A":"left","R":[{"T":"__________________________________","S":51,"TS":[0,9,0,0]}]},{"x":90.906,"y":17.345,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":92.586,"y":17.22,"w":0.593,"clr":0,"A":"left","R":[{"T":"d","S":-1,"TS":[0,11,0,0]}]},{"x":58.854,"y":17.72,"w":2.463,"clr":0,"A":"left","R":[{"T":"childr","S":2,"TS":[0,10,0,0]}]},{"x":61.795,"y":17.72,"w":3.2230000000000003,"clr":0,"A":"left","R":[{"T":"en%20only","S":2,"TS":[0,10,0,0]}]},{"x":58.854,"y":18.22,"w":7.556000000000001,"clr":0,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"x":94.501,"y":13.66,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"T","S":51,"TS":[0,9,0,0]}]},{"x":94.979,"y":13.66,"w":1.6480000000000001,"clr":0,"A":"left","R":[{"T":"otal","S":51,"TS":[0,9,0,0]}]},{"x":87.617,"y":17.933,"w":0.611,"clr":0,"A":"left","R":[{"T":"T","S":2,"TS":[0,10,0,0]}]},{"x":88.219,"y":17.933,"w":1.795,"clr":0,"A":"left","R":[{"T":"otal","S":2,"TS":[0,10,0,0]}]},{"x":92.068,"y":17.974,"w":1.093,"clr":0,"A":"left","R":[{"T":"6e","S":-1,"TS":[0,11,0,0]}]},{"x":90.911,"y":18.047,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":87.819,"y":13.698,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":9.289,"y":19.491,"w":3.149,"clr":0,"A":"left","R":[{"T":"Check%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":13.348,"y":19.491,"w":1.09,"clr":0,"A":"left","R":[{"T":"all","S":-1,"TS":[0,10.5,0,0]}]},{"x":14.753,"y":19.491,"w":5.002000000000001,"clr":0,"A":"left","R":[{"T":"%20that%20apply%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":21.201,"y":19.616,"w":0.918,"clr":0,"A":"left","R":[{"T":"%E2%9E%9B","S":45,"TS":[2,14,0,0]}]},{"oc":"#00adef","x":27.319,"y":18.923,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"7a","S":-1,"TS":[0,11,0,0]}]},{"x":40.209,"y":18.986,"w":0.347,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":49.577,"y":18.986,"w":0.347,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.319,"y":19.46,"w":0.667,"clr":0,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,11,0,0]}]},{"x":28.109,"y":19.46,"w":4.111000000000001,"clr":0,"A":"left","R":[{"T":"ou%20were%3A","S":-1,"TS":[0,11,0,0]}]},{"x":41.413,"y":19.46,"w":5.112000000000001,"clr":0,"A":"left","R":[{"T":"%2065%20or%20older","S":-1,"TS":[0,11,0,0]}]},{"x":50.866,"y":19.46,"w":2.556,"clr":0,"A":"left","R":[{"T":"%20Blind","S":-1,"TS":[0,11,0,0]}]},{"x":27.319,"y":20.061,"w":8.557,"clr":0,"A":"left","R":[{"T":"Spouse%2FRDP%20was%3A","S":-1,"TS":[0,11,0,0]}]},{"x":41.413,"y":20.061,"w":5.112000000000001,"clr":0,"A":"left","R":[{"T":"%2065%20or%20older","S":-1,"TS":[0,11,0,0]}]},{"x":50.866,"y":20.061,"w":2.556,"clr":0,"A":"left","R":[{"T":"%20Blind","S":-1,"TS":[0,11,0,0]}]},{"x":82.164,"y":23.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":21.604,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":24.604,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":25.354,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":72.838,"y":13.698,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":82.164,"y":30.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":31.354,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":32.104,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":26.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":27.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":28.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":29.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":29.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":34.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":35.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":35.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":36.606,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":37.356,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":38.856,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":39.603,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":40.353,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":41.862,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":43.363,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":44.104,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":23.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":11.739,"y":4.094,"w":2.499,"clr":0,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,11,0,0]}]},{"x":10.017,"y":5.813,"w":1.112,"clr":0,"A":"left","R":[{"T":"40","S":-1,"TS":[0,39,0,0]}]},{"x":55.223,"y":4.269,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,39,0,0]}]},{"x":29.791,"y":3.21,"w":4.426,"clr":0,"A":"left","R":[{"T":"OREGON","S":-1,"TS":[0,22,0,0]}]},{"x":5.886,"y":46.452,"w":8.041,"clr":0,"A":"left","R":[{"T":"150-101-040%20(Rev","S":51,"TS":[0,9,0,0]}]},{"x":14.102,"y":46.452,"w":3.4280000000000004,"clr":0,"A":"left","R":[{"T":".%2012-13)","S":51,"TS":[0,9,0,0]}]},{"x":7.182,"y":2.445,"w":8.333,"clr":0,"A":"left","R":[{"T":"Amended%20Return%20","S":-1,"TS":[0,13,0,0]}]},{"x":75.892,"y":6.241,"w":5.7440000000000015,"clr":0,"A":"left","R":[{"T":"K%20%20%20%20F%20%20%20%20P%20%20%20%20J","S":4,"TS":[0,14,0,0]}]},{"x":15.922999999999998,"y":37.407,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":37.407,"w":36.146999999999956,"clr":0,"A":"left","R":[{"T":"Net%20Oregon%20itemized%20deductions.%20Line%2023%20minus%20line%2024.........................................%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.922999999999998,"y":39.657,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"27%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":39.657,"w":24.596000000000004,"clr":0,"A":"left","R":[{"T":"Total%20deductions.%20Line%2025%20or%20line%2026%2C%20whichever%20is%20larger","S":-1,"TS":[0,11,0,0]}]},{"x":18.329,"y":40.407,"w":40.65899999999997,"clr":0,"A":"left","R":[{"T":"Oregon%20taxable%20income.%20Line%2020%20minus%20line%2027.%20If%20line%2027%20is%20more%20than%20line%2020%2C%20enter%20-0-%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.859000000000002,"y":26.907,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.266,"y":26.907,"w":33.378,"clr":0,"A":"left","R":[{"T":"2013%20federal%20tax%20liability%20(%240-%246%2C250%3B%20see%20instructions%20for%20the%20correct%20amount)","S":-1,"TS":[0,11,0,0]}]},{"x":18.33,"y":23.907,"w":5.849,"clr":0,"A":"left","R":[{"T":"Other%20additions.","S":-1,"TS":[0,11,0,0]}]},{"x":32.217,"y":23.907,"w":3.1820000000000004,"clr":0,"A":"left","R":[{"T":"Identify%3A%20","S":-1,"TS":[0,11,0,0]}]},{"x":21.16,"y":4.335,"w":16.849,"clr":0,"A":"left","R":[{"T":"INDIVIDUAL%20INCOME%20TAX%20RETURN","S":4,"TS":[0,14,0,0]}]},{"x":24.763,"y":5.819,"w":11.775,"clr":0,"A":"left","R":[{"T":"Full-Year%20Residents%20Only","S":-1,"TS":[0,15,0,0]}]},{"x":6.47,"y":10.205,"w":10.687000000000001,"clr":0,"A":"left","R":[{"T":"Current%20mailing%20address","S":2,"TS":[0,10,0,0]}]},{"x":22.137,"y":2.422,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"x":79.091,"y":3.5069999999999997,"w":8.795,"clr":0,"A":"left","R":[{"T":"For%20office%20use%20only","S":-1,"TS":[0,11,0,0]}]},{"x":80.566,"y":20.805,"w":13.017999999999999,"clr":0,"A":"left","R":[{"T":"Round%20to%20the%20nearest%20dollar","S":-1,"TS":[0,11,0,0]}]},{"x":18.33,"y":30.657,"w":6.653,"clr":0,"A":"left","R":[{"T":"Other%20subtractions.","S":-1,"TS":[0,11,0,0]}]},{"x":32.893,"y":30.657,"w":2.9820000000000007,"clr":0,"A":"left","R":[{"T":"Identify%3A%20","S":-1,"TS":[0,11,0,0]}]},{"x":79.784,"y":35.159,"w":0.556,"clr":0,"A":"left","R":[{"T":"0","S":-1,"TS":[0,12.5,0,0]}]},{"x":68.105,"y":30.685,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"oc":"#00adef","x":15.922999999999998,"y":33.594,"w":59.77499999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20claiming%20itemized%20deductions%2C%20fill%20in%20lines%2021%20and%2023%E2%80%9325.%20If%20you%20are%20claiming%20the%20standard%20deduction%2C%20fill%20in%20line%2026%20only.","S":-1,"TS":[0,11,0,0]}]},{"x":82.693,"y":25.344,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%2012","S":-1,"TS":[0,11,0,0]}]},{"x":58.896,"y":15.896999999999998,"w":9.206,"clr":0,"A":"left","R":[{"T":"Enter%20all%20dependents","S":2,"TS":[0,10,0,0]}]},{"x":57.177,"y":16.036,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":75.866,"y":12.477,"w":14.317000000000009,"clr":0,"A":"left","R":[{"T":"%20address%20is%20different%2C%20check%20here","S":-1,"TS":[0,11,0,0]}]},{"x":15.924,"y":24.657,"w":1.112,"clr":0,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,0,0]}]},{"x":18.33,"y":24.657,"w":15.505000000000006,"clr":0,"A":"left","R":[{"T":"Total%20additions.%20Add%20lines%209%20and%2010","S":-1,"TS":[0,11,0,0]}]},{"x":16.689,"y":27.657,"w":0.546,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"x":18.273,"y":27.657,"w":35.192,"clr":0,"A":"left","R":[{"T":"Social%20Security%20included%20on%20federal%20Form%201040%2C%20line%2020b%3B%20or%20Form%201040A%2C%20line%2014b","S":-1,"TS":[0,11,0,0]}]},{"x":15.924,"y":29.907,"w":1.112,"clr":0,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,0,0]}]},{"x":18.159,"y":29.907,"w":25.118000000000006,"clr":0,"A":"left","R":[{"T":"Federal%20pension%20income.%20See%20instructions%2C%20page%2015.%2017a%20","S":-1,"TS":[0,11,0,0]}]},{"x":33.489,"y":7.208,"w":4.705,"clr":0,"A":"left","R":[{"T":"First%20name","S":2,"TS":[0,10,0,0]}]},{"x":49.639,"y":7.208,"w":2.333,"clr":0,"A":"left","R":[{"T":"Initial","S":2,"TS":[0,10,0,0]}]},{"x":54.879,"y":8.172,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"x":54.879,"y":9.609,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FMTH","EN":0},"TI":226,"AM":0,"x":56.118,"y":6.7,"w":15.076,"h":0.833,"TU":"Fiscal year ending.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":227,"AM":0,"x":6.755,"y":8.094,"w":26.392,"h":0.872,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":228,"AM":0,"x":33.649,"y":8.076,"w":15.337,"h":0.872,"TU":"First name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PI","EN":0},"TI":229,"AM":0,"x":49.64,"y":8.092,"w":3.595,"h":0.872,"TU":"Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":231,"AM":0,"x":65.247,"y":8.139,"w":18.377,"h":0.847,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPAGE","EN":0},"TI":232,"AM":0,"x":84.553,"y":8.148,"w":14.133,"h":0.844,"TU":"Date of birth (mm/dd/yyyy)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":233,"AM":0,"x":6.68,"y":9.627,"w":26.466,"h":0.892,"TU":"Spouse’s/RDP’s last name if joint return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":234,"AM":0,"x":33.702,"y":9.624,"w":15.422,"h":0.872,"TU":"Spouse's/RDP's first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SI","EN":0},"TI":235,"AM":0,"x":49.563,"y":9.624,"w":3.596,"h":0.872,"TU":"Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":237,"AM":0,"x":65.269,"y":9.527,"w":18.318,"h":0.847,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPAGE","EN":0},"TI":238,"AM":0,"x":84.421,"y":9.61,"w":14.133,"h":0.844,"TU":"Date of birth (mm/dd/yyyy)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":239,"AM":0,"x":6.905,"y":11.121,"w":63.326,"h":0.842,"TU":"Current mailing address."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"HPHONE","EN":0},"TI":240,"AM":0,"x":71.157,"y":11.054,"w":27.635,"h":0.897,"TU":"Telephone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":241,"AM":0,"x":6.83,"y":12.581,"w":28.758,"h":0.897,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":242,"AM":0,"x":36.612,"y":12.583,"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":243,"AM":0,"x":42.567,"y":12.612,"w":12.68,"h":0.883,"TU":"Zip code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":251,"AM":1024,"x":94.547,"y":15.054,"w":2.866,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":252,"AM":0,"x":23.662,"y":16.025,"w":14.953,"h":0.833,"TU":"Spouse’s name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSN","EN":0},"TI":253,"AM":0,"x":45.6,"y":16.023,"w":10.234,"h":0.833,"TU":"Spouse's social security number. 9 digits."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"OR40DEP"}},"id":{"Id":"Add_DEP","EN":0},"TI":257,"AM":0,"x":70.186,"y":16.067,"w":2.343,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":258,"AM":1024,"x":94.569,"y":15.789,"w":3.091,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PARTNER","EN":0},"TI":259,"AM":0,"x":23.587,"y":17.196,"w":14.803,"h":0.833,"TU":"Partner’s name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PASSN","EN":0},"TI":260,"AM":0,"x":45.412,"y":17.245,"w":10.326,"h":0.833,"TU":"Partner's social security number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNM","EN":0},"TI":261,"AM":1024,"x":74.672,"y":16.688,"w":16.109,"h":0.833,"TU":"Line 6c. All dependents First names."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6C","EN":0},"TI":262,"AM":1024,"x":94.527,"y":16.794,"w":3.091,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUALNAM","EN":0},"TI":264,"AM":0,"x":39.056,"y":17.929,"w":16.35,"h":0.833,"TU":"Head of household: Person who qualifies you."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DISNM","EN":0},"TI":265,"AM":1024,"x":74.672,"y":17.445,"w":16.034,"h":0.833,"TU":"Line 6d. Disabled children only (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6D","EN":0},"TI":266,"AM":1024,"x":94.656,"y":17.549,"w":2.941,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6E","EN":0},"TI":268,"AM":1024,"x":94.711,"y":18.331,"w":3.016,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"popup:fedattach"}},"id":{"Id":"Fed_Attach","EN":0},"TI":276,"AM":0,"x":73.125,"y":21.669,"w":6.644,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":277,"AM":1024,"x":85.892,"y":21.829,"w":8.721,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":278,"AM":0,"x":71.878,"y":23.272,"w":9.694,"h":0.833,"TU":"Line 9. Interest and dividends on state and local government bonds outside of Oregon."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ORASC"}},"id":{"Id":"ADD_ASC_ADD","EN":0},"TI":279,"AM":0,"x":27.739,"y":24.043,"w":2.343,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L10T","EN":0},"TI":280,"AM":0,"x":39.856,"y":24.181,"w":2.866,"h":0.833,"MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10TB","EN":0},"TI":281,"AM":0,"x":46.375,"y":24.161,"w":7.529,"h":0.833,"TU":"9 Interest and dividends on state and local government bonds outside of Oregon... 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":283,"AM":0,"x":71.942,"y":24.015,"w":9.694,"h":0.833,"TU":"Line 10. Other Additions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":284,"AM":1024,"x":85.532,"y":24.765,"w":9.694,"h":0.833,"TU":"00"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":285,"AM":1024,"x":85.532,"y":25.515,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDTAX","EN":0},"TI":286,"AM":0,"x":71.878,"y":27.015,"w":9.694,"h":0.833,"TU":"Line 13. 2013 federal tax liability."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":287,"AM":0,"x":71.878,"y":27.765,"w":9.694,"h":0.833,"TU":"Line 14. Social Security included on federal Form 1040, line 20b; or Form 1040A, line 14b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":288,"AM":0,"x":71.878,"y":28.515,"w":9.694,"h":0.833,"TU":"Line 15. Oregon income tax refund included in federal income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":289,"AM":0,"x":71.878,"y":29.265,"w":9.694,"h":0.833,"TU":"Line 16. Interest from U.S. government, such as Series EE, HH and I bonds."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L17A","EN":0},"TI":290,"AM":0,"x":53.026,"y":30.062,"w":3.465,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L17B","EN":0},"TI":291,"AM":0,"x":61.691,"y":30.055,"w":3.465,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":292,"AM":0,"x":71.878,"y":30.015,"w":9.694,"h":0.833,"TU":"Line 17. Federal pension income."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ORASC"}},"id":{"Id":"ADD_ASC_SUB","EN":0},"TI":293,"AM":0,"x":28.871,"y":30.76,"w":2.268,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L18T","EN":0},"TI":294,"AM":0,"x":40.396,"y":30.864,"w":3.016,"h":0.833,"TU":"18y","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18TB","EN":0},"TI":295,"AM":0,"x":47.698,"y":30.884,"w":6.874,"h":0.833,"TU":"17 Federal pension income. See instructions, page 15. 17a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":297,"AM":0,"x":71.878,"y":30.765,"w":9.694,"h":0.833,"TU":"Line 18. Other subtractions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":298,"AM":1024,"x":85.532,"y":31.515,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":299,"AM":1024,"x":85.532,"y":32.265,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ITEMDED","EN":0},"TI":300,"AM":0,"x":71.892,"y":34.526,"w":9.694,"h":0.833,"TU":"Line 21. Itemized deductions from federal Schedule A, line 29."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":301,"AM":1024,"x":71.852,"y":36.036,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STATETAX","EN":0},"TI":302,"AM":0,"x":71.907,"y":36.791,"w":9.694,"h":0.833,"TU":"Line 24. State income tax claimed as an itemized deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":303,"AM":1024,"x":71.887,"y":37.546,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STDDED","EN":0},"TI":304,"AM":0,"x":71.941,"y":39.008,"w":9.694,"h":0.833,"TU":"Line 26. Standard deduction from page 19."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":305,"AM":1024,"x":85.511,"y":39.765,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":306,"AM":1024,"x":85.511,"y":40.515,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ORTAX","EN":0},"TI":307,"AM":0,"x":71.961,"y":42.023,"w":9.735,"h":0.833,"TU":"Line 29. Tax. See instructions, page 19. Enter tax here."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":309,"AM":0,"x":65.198,"y":42.809,"w":2.268,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INSTALL","EN":0},"TI":310,"AM":0,"x":71.996,"y":43.52,"w":9.694,"h":0.833,"TU":"Line 30. Interest on certain installment sales."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALTAX","EN":0},"TI":312,"AM":1024,"x":85.573,"y":44.273,"w":9.653,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMENDBX","EN":0},"TI":225,"AM":1024,"x":19.762,"y":2.647,"w":1.305,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDECD","EN":0},"TI":230,"AM":1024,"x":53.429,"y":8.253,"w":1.613,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SDECD","EN":0},"TI":236,"AM":1024,"x":53.547,"y":9.754,"w":1.538,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NWADD","EN":0},"TI":244,"AM":0,"x":96.36,"y":12.49,"w":1.939,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSSNG","EN":0},"TI":245,"AM":0,"x":14.225,"y":13.542,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSRDP","EN":0},"TI":246,"AM":0,"x":14.155,"y":14.728,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSMFJ","EN":0},"TI":247,"AM":0,"x":14.272,"y":14.191,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSMFS","EN":0},"TI":250,"AM":0,"x":14.21,"y":15.428,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSRDPMFS","EN":0},"TI":256,"AM":0,"x":14.19,"y":16.537,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSHOH","EN":0},"TI":263,"AM":0,"x":14.245,"y":17.755,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FSQW","EN":0},"TI":267,"AM":0,"x":14.299,"y":18.374,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"FSBXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPBX","EN":0},"TI":248,"AM":0,"x":71.987,"y":14.7,"w":1.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPDISBX","EN":0},"TI":249,"AM":0,"x":86.984,"y":14.706,"w":1.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBX","EN":0},"TI":254,"AM":0,"x":72.075,"y":15.462,"w":1.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDISBX","EN":0},"TI":255,"AM":0,"x":87.072,"y":15.469,"w":1.599,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP65BX","EN":0},"TI":269,"AM":0,"x":40.109,"y":19.645,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPBLNDBX","EN":0},"TI":270,"AM":0,"x":49.675,"y":19.667,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EXF","EN":0},"TI":271,"AM":0,"x":59.318,"y":19.142,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FEDX","EN":0},"TI":272,"AM":0,"x":72.476,"y":19.142,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPCLAIM","EN":0},"TI":273,"AM":0,"x":86.419,"y":19.188,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP65BX","EN":0},"TI":274,"AM":0,"x":40.261,"y":20.246,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBLNDBX","EN":0},"TI":275,"AM":0,"x":49.784,"y":20.252,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L10TC","EN":0},"TI":282,"AM":0,"x":66.866,"y":24.093,"w":1.196,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L18TC","EN":0},"TI":296,"AM":0,"x":66.694,"y":30.843,"w":1.196,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXTAX","EN":0},"TI":308,"AM":0,"x":34.594,"y":42.837,"w":1.447,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXTAX2","EN":0},"TI":311,"AM":0,"x":76.799,"y":42.83,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"ORTAXBRB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#d4eefc","x":52.125,"y":27.74,"w":0.40179460704444503,"l":19.577},{"oc":"#d4eefc","x":52.125,"y":23.278,"w":0.40179460704444503,"l":19.577},{"oc":"#d4eefc","x":6.261,"y":27.743,"w":0.40179460704444503,"l":32.08},{"oc":"#d4eefc","x":6.261,"y":23.281,"w":0.40179460704444503,"l":32.08},{"x":6.188,"y":3.759,"w":0.75,"l":92.813},{"x":71.749,"y":5.25,"w":0.75,"l":13.655},{"x":71.749,"y":4.503,"w":0.75,"l":13.655},{"x":71.749,"y":6,"w":0.75,"l":13.655},{"x":71.749,"y":5.253,"w":0.75,"l":13.655},{"x":71.749,"y":6.75,"w":0.75,"l":13.655},{"x":71.749,"y":6.003,"w":0.75,"l":13.655},{"x":71.749,"y":7.5,"w":0.75,"l":13.655},{"x":71.749,"y":6.753,"w":0.75,"l":13.655},{"x":71.749,"y":8.25,"w":0.75,"l":13.655},{"x":71.749,"y":7.503,"w":0.75,"l":13.655},{"x":71.749,"y":9,"w":0.75,"l":13.655},{"x":71.749,"y":8.253,"w":0.75,"l":13.655},{"x":85.43,"y":3.753,"w":0.75,"l":13.527},{"x":85.43,"y":3.006,"w":0.75,"l":13.527},{"oc":"#00adef","x":6.23,"y":35.234,"w":0.75,"l":92.804},{"oc":"#00adef","x":6.23,"y":34.516,"w":0.75,"l":92.804},{"x":6.248,"y":45.746,"w":1.0499999999999998,"l":92.778},{"x":6.248,"y":39.727,"w":1.0499999999999998,"l":92.778},{"x":6.291,"y":42.01,"w":1.0499999999999998,"l":92.709},{"x":6.188,"y":11.247,"w":0.75,"l":92.813},{"x":85.43,"y":11.253,"w":0.75,"l":13.527},{"x":85.43,"y":10.506,"w":0.75,"l":13.527},{"x":85.43,"y":10.503,"w":0.75,"l":13.527},{"x":85.43,"y":9.756,"w":0.75,"l":13.527},{"x":71.749,"y":9.75,"w":0.75,"l":13.655},{"x":71.749,"y":9.003,"w":0.75,"l":13.655},{"x":71.766,"y":12.005,"w":0.75,"l":13.655},{"x":71.766,"y":11.258,"w":0.75,"l":13.655},{"x":71.766,"y":12.755,"w":0.75,"l":13.655},{"x":71.766,"y":12.008,"w":0.75,"l":13.655},{"x":71.766,"y":14.255,"w":0.75,"l":13.655},{"x":71.766,"y":13.508,"w":0.75,"l":13.655},{"x":71.766,"y":15.005,"w":0.75,"l":13.655},{"x":71.766,"y":14.258,"w":0.75,"l":13.655},{"x":85.43,"y":16.51,"w":0.75,"l":13.527},{"x":85.43,"y":15.763,"w":0.75,"l":13.527},{"x":85.43,"y":17.26,"w":0.75,"l":13.527},{"x":85.43,"y":16.513,"w":0.75,"l":13.527},{"x":85.43,"y":18.01,"w":0.75,"l":13.527},{"x":85.43,"y":17.263,"w":0.75,"l":13.527},{"x":71.741,"y":18.76,"w":0.75,"l":13.681},{"x":71.741,"y":18.013,"w":0.75,"l":13.681},{"x":71.741,"y":19.51,"w":0.75,"l":13.681},{"x":71.741,"y":18.763,"w":0.75,"l":13.681},{"x":85.43,"y":21.004,"w":0.75,"l":13.527},{"x":85.43,"y":20.257,"w":0.75,"l":13.527},{"x":85.43,"y":21.754,"w":0.75,"l":13.527},{"x":85.43,"y":21.007,"w":0.75,"l":13.527},{"x":85.43,"y":22.504,"w":0.75,"l":13.527},{"x":85.43,"y":21.757,"w":0.75,"l":13.527},{"x":71.741,"y":23.254,"w":0.75,"l":13.681},{"x":71.741,"y":22.507,"w":0.75,"l":13.681},{"x":71.766,"y":15.755,"w":0.75,"l":13.655},{"x":71.766,"y":15.008,"w":0.75,"l":13.655},{"x":96.569,"y":32.972,"w":0.75,"l":2.431},{"x":96.569,"y":32.253,"w":0.75,"l":2.431},{"x":94.094,"y":32.972,"w":0.75,"l":2.431},{"x":94.094,"y":32.253,"w":0.75,"l":2.431},{"x":91.619,"y":32.972,"w":0.75,"l":2.431},{"x":91.619,"y":32.253,"w":0.75,"l":2.431},{"x":89.144,"y":32.972,"w":0.75,"l":2.431},{"x":89.144,"y":32.253,"w":0.75,"l":2.431},{"x":86.669,"y":32.972,"w":0.75,"l":2.431},{"x":86.669,"y":32.253,"w":0.75,"l":2.431},{"x":84.194,"y":32.972,"w":0.75,"l":2.431},{"x":84.194,"y":32.253,"w":0.75,"l":2.431},{"x":81.719,"y":32.972,"w":0.75,"l":2.431},{"x":81.719,"y":32.253,"w":0.75,"l":2.431},{"x":79.244,"y":32.972,"w":0.75,"l":2.431},{"x":79.244,"y":32.253,"w":0.75,"l":2.431},{"x":76.769,"y":32.972,"w":0.75,"l":2.431},{"x":76.769,"y":32.253,"w":0.75,"l":2.431},{"x":44.593,"y":32.972,"w":0.75,"l":2.431},{"x":44.593,"y":32.253,"w":0.75,"l":2.431},{"x":74.294,"y":32.972,"w":0.75,"l":2.431},{"x":74.294,"y":32.253,"w":0.75,"l":2.431},{"x":42.118,"y":32.972,"w":0.75,"l":2.431},{"x":42.118,"y":32.253,"w":0.75,"l":2.431},{"x":71.819,"y":32.972,"w":0.75,"l":2.431},{"x":71.819,"y":32.253,"w":0.75,"l":2.431},{"x":39.643,"y":32.972,"w":0.75,"l":2.431},{"x":39.643,"y":32.253,"w":0.75,"l":2.431},{"x":69.344,"y":32.972,"w":0.75,"l":2.431},{"x":69.344,"y":32.253,"w":0.75,"l":2.431},{"x":37.168,"y":32.972,"w":0.75,"l":2.431},{"x":37.168,"y":32.253,"w":0.75,"l":2.431},{"x":66.869,"y":32.972,"w":0.75,"l":2.431},{"x":66.869,"y":32.253,"w":0.75,"l":2.431},{"x":34.693,"y":32.972,"w":0.75,"l":2.431},{"x":34.693,"y":32.253,"w":0.75,"l":2.431},{"x":64.394,"y":32.972,"w":0.75,"l":2.431},{"x":64.394,"y":32.253,"w":0.75,"l":2.431},{"x":32.218,"y":32.972,"w":0.75,"l":2.431},{"x":32.218,"y":32.253,"w":0.75,"l":2.431},{"x":61.919,"y":32.972,"w":0.75,"l":2.431},{"x":61.919,"y":32.253,"w":0.75,"l":2.431},{"x":29.743,"y":32.972,"w":0.75,"l":2.431},{"x":29.743,"y":32.253,"w":0.75,"l":2.431},{"x":59.444,"y":32.972,"w":0.75,"l":2.431},{"x":59.444,"y":32.253,"w":0.75,"l":2.431},{"x":27.268,"y":32.972,"w":0.75,"l":2.431},{"x":27.268,"y":32.253,"w":0.75,"l":2.431},{"x":56.969,"y":32.972,"w":0.75,"l":2.431},{"x":56.969,"y":32.253,"w":0.75,"l":2.431},{"x":24.793,"y":32.972,"w":0.75,"l":2.431},{"x":24.793,"y":32.253,"w":0.75,"l":2.431},{"x":6.188,"y":31.484,"w":0.75,"l":92.813},{"x":85.508,"y":30.012,"w":0.75,"l":13.527},{"x":85.508,"y":29.265,"w":0.75,"l":13.527},{"x":85.508,"y":30.765,"w":0.75,"l":13.527},{"x":85.508,"y":30.018,"w":0.75,"l":13.527},{"x":6.23,"y":39.709,"w":0.75,"l":92.778},{"x":6.23,"y":35.236,"w":0.75,"l":92.778},{"x":6.239,"y":35.993,"w":0.75,"l":92.761},{"x":54.698,"y":37.465,"w":0.75,"l":44.303},{"x":6.284,"y":37.854,"w":0.75,"l":48.249},{"x":55.785,"y":38.965,"w":0.75,"l":41.977},{"x":71.766,"y":23.983,"w":0.75,"l":13.655},{"x":71.766,"y":23.236,"w":0.75,"l":13.655},{"x":71.766,"y":24.733,"w":0.75,"l":13.655},{"x":71.766,"y":23.986,"w":0.75,"l":13.655},{"x":71.766,"y":25.483,"w":0.75,"l":13.655},{"x":71.766,"y":24.736,"w":0.75,"l":13.655},{"x":71.766,"y":26.233,"w":0.75,"l":13.655},{"x":71.766,"y":25.486,"w":0.75,"l":13.655},{"x":71.766,"y":26.983,"w":0.75,"l":13.655},{"x":71.766,"y":26.236,"w":0.75,"l":13.655},{"x":71.766,"y":27.733,"w":0.75,"l":13.655},{"x":71.766,"y":26.986,"w":0.75,"l":13.655},{"x":71.766,"y":28.484,"w":0.75,"l":13.655},{"x":71.766,"y":27.737,"w":0.75,"l":13.655},{"x":38.405,"y":23.983,"w":0.75,"l":13.655},{"x":38.405,"y":23.236,"w":0.75,"l":13.655},{"x":38.405,"y":24.733,"w":0.75,"l":13.655},{"x":38.405,"y":23.986,"w":0.75,"l":13.655},{"x":38.405,"y":25.483,"w":0.75,"l":13.655},{"x":38.405,"y":24.736,"w":0.75,"l":13.655},{"x":38.405,"y":26.233,"w":0.75,"l":13.655},{"x":38.405,"y":25.486,"w":0.75,"l":13.655},{"x":38.405,"y":26.983,"w":0.75,"l":13.655},{"x":38.405,"y":26.236,"w":0.75,"l":13.655},{"x":38.405,"y":27.734,"w":0.75,"l":13.655},{"x":38.405,"y":26.987,"w":0.75,"l":13.655},{"x":6.284,"y":42,"w":1.5,"l":92.694},{"x":6.284,"y":39.727,"w":1.5,"l":92.694},{"x":71.766,"y":29.234,"w":0.75,"l":13.655},{"x":71.766,"y":28.487,"w":0.75,"l":13.655}],"VLines":[{"oc":"#d4eefc","x":71.702,"y":23.278,"w":0.40179460704444503,"l":4.462},{"oc":"#d4eefc","x":52.125,"y":23.278,"w":0.40179460704444503,"l":4.462},{"oc":"#d4eefc","x":38.341,"y":23.281,"w":0.40179460704444503,"l":4.462},{"oc":"#d4eefc","x":6.261,"y":23.281,"w":0.40179460704444503,"l":4.462},{"x":81.735,"y":6.008,"w":0.75,"l":0.747},{"x":85.405,"y":4.503,"w":0.75,"l":0.747},{"x":71.749,"y":4.503,"w":0.75,"l":0.747},{"x":81.735,"y":4.506,"w":0.75,"l":0.747},{"x":85.405,"y":5.253,"w":0.75,"l":0.747},{"x":71.749,"y":5.253,"w":0.75,"l":0.747},{"x":81.735,"y":5.256,"w":0.75,"l":0.747},{"x":85.405,"y":6.003,"w":0.75,"l":0.747},{"x":71.749,"y":6.003,"w":0.75,"l":0.747},{"x":81.735,"y":6.006,"w":0.75,"l":0.747},{"x":85.405,"y":6.753,"w":0.75,"l":0.747},{"x":71.749,"y":6.753,"w":0.75,"l":0.747},{"x":81.735,"y":6.756,"w":0.75,"l":0.747},{"x":85.405,"y":7.503,"w":0.75,"l":0.747},{"x":71.749,"y":7.503,"w":0.75,"l":0.747},{"x":81.735,"y":7.506,"w":0.75,"l":0.747},{"x":85.405,"y":8.253,"w":0.75,"l":0.747},{"x":71.749,"y":8.253,"w":0.75,"l":0.747},{"x":81.735,"y":8.256,"w":0.75,"l":0.747},{"x":98.957,"y":3.006,"w":0.75,"l":0.747},{"x":85.43,"y":3.006,"w":0.75,"l":0.747},{"x":95.287,"y":3.009,"w":0.75,"l":0.747},{"oc":"#00adef","x":99.034,"y":34.516,"w":0.75,"l":0.719},{"oc":"#00adef","x":6.23,"y":34.516,"w":0.75,"l":0.719},{"x":99.026,"y":39.727,"w":1.0499999999999998,"l":6.019},{"x":6.248,"y":39.727,"w":1.0499999999999998,"l":6.019},{"x":53.17,"y":42.022,"w":1.0499999999999998,"l":3.729},{"x":98.957,"y":10.506,"w":0.75,"l":0.747},{"x":85.43,"y":10.506,"w":0.75,"l":0.747},{"x":95.287,"y":10.509,"w":0.75,"l":0.747},{"x":98.957,"y":9.756,"w":0.75,"l":0.747},{"x":85.43,"y":9.756,"w":0.75,"l":0.747},{"x":95.287,"y":9.759,"w":0.75,"l":0.747},{"x":85.405,"y":9.003,"w":0.75,"l":0.747},{"x":71.749,"y":9.003,"w":0.75,"l":0.747},{"x":81.735,"y":9.006,"w":0.75,"l":0.747},{"x":85.422,"y":11.258,"w":0.75,"l":0.747},{"x":71.766,"y":11.258,"w":0.75,"l":0.747},{"x":81.692,"y":11.261,"w":0.75,"l":0.747},{"x":81.692,"y":12.011,"w":0.75,"l":0.747},{"x":85.422,"y":12.008,"w":0.75,"l":0.747},{"x":71.766,"y":12.008,"w":0.75,"l":0.747},{"x":85.422,"y":13.508,"w":0.75,"l":0.747},{"x":71.766,"y":13.508,"w":0.75,"l":0.747},{"x":81.692,"y":13.511,"w":0.75,"l":0.747},{"x":85.422,"y":14.258,"w":0.75,"l":0.747},{"x":71.766,"y":14.258,"w":0.75,"l":0.747},{"x":81.692,"y":14.261,"w":0.75,"l":0.747},{"x":98.957,"y":15.763,"w":0.75,"l":0.747},{"x":85.43,"y":15.763,"w":0.75,"l":0.747},{"x":95.287,"y":15.766,"w":0.75,"l":0.747},{"x":98.957,"y":16.513,"w":0.75,"l":0.747},{"x":85.43,"y":16.513,"w":0.75,"l":0.747},{"x":95.287,"y":16.516,"w":0.75,"l":0.747},{"x":98.957,"y":17.263,"w":0.75,"l":0.747},{"x":85.43,"y":17.263,"w":0.75,"l":0.747},{"x":95.287,"y":17.266,"w":0.75,"l":0.747},{"x":85.422,"y":18.013,"w":0.75,"l":0.747},{"x":71.741,"y":18.013,"w":0.75,"l":0.747},{"x":81.727,"y":18.016,"w":0.75,"l":0.747},{"x":85.422,"y":18.763,"w":0.75,"l":0.747},{"x":71.741,"y":18.763,"w":0.75,"l":0.747},{"x":81.727,"y":18.763,"w":0.75,"l":0.747},{"x":98.957,"y":20.257,"w":0.75,"l":0.747},{"x":85.43,"y":20.257,"w":0.75,"l":0.747},{"x":95.287,"y":20.26,"w":0.75,"l":0.747},{"x":98.957,"y":21.007,"w":0.75,"l":0.747},{"x":85.43,"y":21.007,"w":0.75,"l":0.747},{"x":95.287,"y":21.01,"w":0.75,"l":0.747},{"x":98.957,"y":21.757,"w":0.75,"l":0.747},{"x":85.43,"y":21.757,"w":0.75,"l":0.747},{"x":95.287,"y":21.76,"w":0.75,"l":0.747},{"x":85.422,"y":22.507,"w":0.75,"l":0.747},{"x":71.741,"y":22.507,"w":0.75,"l":0.747},{"x":81.727,"y":22.51,"w":0.75,"l":0.747},{"x":85.422,"y":15.008,"w":0.75,"l":0.747},{"x":71.766,"y":15.008,"w":0.75,"l":0.747},{"x":81.692,"y":15.011,"w":0.75,"l":0.747},{"x":99,"y":32.253,"w":0.75,"l":0.719},{"x":96.569,"y":32.253,"w":0.75,"l":0.719},{"x":96.525,"y":32.253,"w":0.75,"l":0.719},{"x":94.094,"y":32.253,"w":0.75,"l":0.719},{"x":94.05,"y":32.253,"w":0.75,"l":0.719},{"x":91.619,"y":32.253,"w":0.75,"l":0.719},{"x":91.575,"y":32.253,"w":0.75,"l":0.719},{"x":89.144,"y":32.253,"w":0.75,"l":0.719},{"x":89.1,"y":32.253,"w":0.75,"l":0.719},{"x":86.669,"y":32.253,"w":0.75,"l":0.719},{"x":86.625,"y":32.253,"w":0.75,"l":0.719},{"x":84.194,"y":32.253,"w":0.75,"l":0.719},{"x":84.15,"y":32.253,"w":0.75,"l":0.719},{"x":81.719,"y":32.253,"w":0.75,"l":0.719},{"x":81.675,"y":32.253,"w":0.75,"l":0.719},{"x":79.244,"y":32.253,"w":0.75,"l":0.719},{"x":79.2,"y":32.253,"w":0.75,"l":0.719},{"x":76.769,"y":32.253,"w":0.75,"l":0.719},{"x":47.024,"y":32.253,"w":0.75,"l":0.719},{"x":44.593,"y":32.253,"w":0.75,"l":0.719},{"x":76.725,"y":32.253,"w":0.75,"l":0.719},{"x":74.294,"y":32.253,"w":0.75,"l":0.719},{"x":44.549,"y":32.253,"w":0.75,"l":0.719},{"x":42.118,"y":32.253,"w":0.75,"l":0.719},{"x":74.25,"y":32.253,"w":0.75,"l":0.719},{"x":71.819,"y":32.253,"w":0.75,"l":0.719},{"x":42.074,"y":32.253,"w":0.75,"l":0.719},{"x":39.643,"y":32.253,"w":0.75,"l":0.719},{"x":71.775,"y":32.253,"w":0.75,"l":0.719},{"x":69.344,"y":32.253,"w":0.75,"l":0.719},{"x":39.599,"y":32.253,"w":0.75,"l":0.719},{"x":37.168,"y":32.253,"w":0.75,"l":0.719},{"x":69.3,"y":32.253,"w":0.75,"l":0.719},{"x":66.869,"y":32.253,"w":0.75,"l":0.719},{"x":37.124,"y":32.253,"w":0.75,"l":0.719},{"x":34.693,"y":32.253,"w":0.75,"l":0.719},{"x":66.825,"y":32.253,"w":0.75,"l":0.719},{"x":64.394,"y":32.253,"w":0.75,"l":0.719},{"x":34.649,"y":32.253,"w":0.75,"l":0.719},{"x":32.218,"y":32.253,"w":0.75,"l":0.719},{"x":64.35,"y":32.253,"w":0.75,"l":0.719},{"x":61.919,"y":32.253,"w":0.75,"l":0.719},{"x":32.174,"y":32.253,"w":0.75,"l":0.719},{"x":29.743,"y":32.253,"w":0.75,"l":0.719},{"x":61.875,"y":32.253,"w":0.75,"l":0.719},{"x":59.444,"y":32.253,"w":0.75,"l":0.719},{"x":29.699,"y":32.253,"w":0.75,"l":0.719},{"x":27.268,"y":32.253,"w":0.75,"l":0.719},{"x":59.4,"y":32.253,"w":0.75,"l":0.719},{"x":56.969,"y":32.253,"w":0.75,"l":0.719},{"x":27.224,"y":32.253,"w":0.75,"l":0.719},{"x":24.793,"y":32.253,"w":0.75,"l":0.719},{"x":99.034,"y":29.265,"w":0.75,"l":0.747},{"x":85.508,"y":29.265,"w":0.75,"l":0.747},{"x":95.365,"y":29.268,"w":0.75,"l":0.747},{"x":95.365,"y":30.012,"w":0.75,"l":0.747},{"x":99.034,"y":30.018,"w":0.75,"l":0.747},{"x":85.508,"y":30.018,"w":0.75,"l":0.747},{"x":99.009,"y":35.236,"w":0.75,"l":4.474},{"x":6.23,"y":35.236,"w":0.75,"l":4.474},{"x":54.658,"y":35.977,"w":0.75,"l":3.748},{"x":81.759,"y":35.998,"w":0.75,"l":1.462},{"x":85.422,"y":23.236,"w":0.75,"l":0.747},{"x":71.766,"y":23.236,"w":0.75,"l":0.747},{"x":81.752,"y":23.24,"w":0.75,"l":0.747},{"x":85.422,"y":23.986,"w":0.75,"l":0.747},{"x":71.766,"y":23.986,"w":0.75,"l":0.747},{"x":81.752,"y":23.99,"w":0.75,"l":0.747},{"x":85.422,"y":24.736,"w":0.75,"l":0.747},{"x":71.766,"y":24.736,"w":0.75,"l":0.747},{"x":81.752,"y":24.74,"w":0.75,"l":0.747},{"x":85.422,"y":25.486,"w":0.75,"l":0.747},{"x":71.766,"y":25.486,"w":0.75,"l":0.747},{"x":81.752,"y":25.49,"w":0.75,"l":0.747},{"x":85.422,"y":26.236,"w":0.75,"l":0.747},{"x":71.766,"y":26.236,"w":0.75,"l":0.747},{"x":81.752,"y":26.24,"w":0.75,"l":0.747},{"x":85.422,"y":26.986,"w":0.75,"l":0.747},{"x":71.766,"y":26.986,"w":0.75,"l":0.747},{"x":85.422,"y":27.737,"w":0.75,"l":0.747},{"x":71.766,"y":27.737,"w":0.75,"l":0.747},{"x":81.752,"y":26.99,"w":0.75,"l":0.747},{"x":81.752,"y":27.74,"w":0.75,"l":0.747},{"x":52.061,"y":23.236,"w":0.75,"l":0.747},{"x":38.405,"y":23.236,"w":0.75,"l":0.747},{"x":48.391,"y":23.24,"w":0.75,"l":0.747},{"x":52.061,"y":23.986,"w":0.75,"l":0.747},{"x":38.405,"y":23.986,"w":0.75,"l":0.747},{"x":48.391,"y":23.99,"w":0.75,"l":0.747},{"x":52.061,"y":24.736,"w":0.75,"l":0.747},{"x":38.405,"y":24.736,"w":0.75,"l":0.747},{"x":48.391,"y":24.74,"w":0.75,"l":0.747},{"x":52.061,"y":25.486,"w":0.75,"l":0.747},{"x":38.405,"y":25.486,"w":0.75,"l":0.747},{"x":48.391,"y":25.49,"w":0.75,"l":0.747},{"x":52.061,"y":26.236,"w":0.75,"l":0.747},{"x":38.405,"y":26.236,"w":0.75,"l":0.747},{"x":52.061,"y":26.987,"w":0.75,"l":0.747},{"x":38.405,"y":26.987,"w":0.75,"l":0.747},{"x":48.391,"y":26.24,"w":0.75,"l":0.747},{"x":48.391,"y":26.99,"w":0.75,"l":0.747},{"x":98.979,"y":39.727,"w":1.5,"l":2.273},{"x":6.284,"y":39.727,"w":1.5,"l":2.273},{"x":85.422,"y":28.487,"w":0.75,"l":0.747},{"x":71.766,"y":28.487,"w":0.75,"l":0.747},{"x":81.752,"y":28.49,"w":0.75,"l":0.747}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e1f3fc","x":52.125,"y":23.278,"w":19.577,"h":4.462,"clr":-1},{"oc":"#e1f3fc","x":6.261,"y":23.281,"w":32.08,"h":4.462,"clr":-1},{"x":29.681,"y":27.003,"w":3.603,"h":0.733,"clr":1},{"x":63.07,"y":26.99,"w":3.669,"h":0.747,"clr":1},{"x":85.681,"y":7.993,"w":0.611,"h":1.666,"clr":0},{"x":86.154,"y":6.295,"w":0.619,"h":1.698,"clr":0},{"x":85.681,"y":4.638,"w":0.611,"h":1.658,"clr":0},{"x":15.411,"y":15.008,"w":0.344,"h":0.526,"clr":0},{"x":15.677,"y":14.472,"w":0.348,"h":0.535,"clr":0},{"x":15.411,"y":13.95,"w":0.344,"h":0.523,"clr":0},{"oc":"#e1f3fc","x":6.23,"y":34.516,"w":92.804,"h":0.719,"clr":-1},{"x":85.69,"y":14.257,"w":0.665,"h":1.421,"clr":0},{"x":86.204,"y":12.809,"w":0.674,"h":1.448,"clr":0},{"x":85.689,"y":11.396,"w":0.665,"h":1.414,"clr":0},{"x":85.884,"y":26.962,"w":0.87,"h":2.144,"clr":0},{"x":86.556,"y":24.778,"w":0.881,"h":2.185,"clr":0},{"x":85.884,"y":22.644,"w":0.87,"h":2.133,"clr":0},{"oc":"#00adef","x":22.325,"y":43.352,"w":1.546,"h":1.254,"clr":-1},{"oc":"#00adef","x":75.659,"y":43.352,"w":1.546,"h":1.254,"clr":-1}],"Texts":[{"oc":"#00adef","x":6.53,"y":23.079,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":7.422,"y":23.079,"w":3.0540000000000003,"clr":-1,"A":"left","R":[{"T":"HARIT","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":11.008,"y":23.079,"w":2.63,"clr":-1,"A":"left","R":[{"T":"ABLE","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.53,"y":23.581,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":7.422,"y":23.581,"w":2.13,"clr":-1,"A":"left","R":[{"T":"HEC","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":9.985,"y":23.581,"w":0.722,"clr":-1,"A":"left","R":[{"T":"k","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":10.853,"y":23.581,"w":1.964,"clr":-1,"A":"left","R":[{"T":"OFF","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.53,"y":24.083,"w":2.9450000000000003,"clr":-1,"A":"left","R":[{"T":"DONA","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":9.985,"y":24.083,"w":3.63,"clr":-1,"A":"left","R":[{"T":"TIONS%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.531,"y":24.585,"w":4.149000000000001,"clr":-1,"A":"left","R":[{"T":"PAGE%2026","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.531,"y":25.303,"w":7.503,"clr":-1,"A":"left","R":[{"T":"I%20want%20to%20donate%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.531,"y":25.805,"w":6.390000000000001,"clr":-1,"A":"left","R":[{"T":"part%20of%20my%20tax%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.531,"y":26.308,"w":6.002000000000001,"clr":-1,"A":"left","R":[{"T":"refund%20to%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.531,"y":26.81,"w":7.277000000000002,"clr":-1,"A":"left","R":[{"T":"following%20fund(s)","S":2,"TS":[0,10,0,0]}]},{"x":15.872,"y":2.919,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":2.919,"w":21.983999999999998,"clr":0,"A":"left","R":[{"T":"Total%20tax%20before%20credits%20from%20front%20of%20form%2C%20line%2031","S":-1,"TS":[0,11,0,0]}]},{"x":48.363,"y":2.919,"w":25.01999999999998,"clr":0,"A":"left","R":[{"T":"..........................................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":83.024,"y":2.876,"w":1.112,"clr":0,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":3.67,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"33%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":4.42,"w":33.897999999999996,"clr":0,"A":"left","R":[{"T":"total%20exemptions%20on%20line%206e%20by%20%24188.%20Otherwise%2C%20see%20instructions%20on%20page%2020","S":-1,"TS":[0,11,0,0]}]},{"x":65.182,"y":4.42,"w":1.9460000000000002,"clr":0,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":4.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":4.419,"w":1.112,"clr":0,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":5.169,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":5.169,"w":23.191000000000006,"clr":0,"A":"left","R":[{"T":"Retirement%20income%20credit.%20See%20instructions%2C%20page%2020","S":-1,"TS":[0,11,0,0]}]},{"x":50.274,"y":5.169,"w":12.788000000000014,"clr":0,"A":"left","R":[{"T":"..............................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":5.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":5.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":5.919,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":5.919,"w":26.340000000000007,"clr":0,"A":"left","R":[{"T":"Child%20and%20dependent%20care%20credit.%20See%20instructions%2C%20page%2021","S":-1,"TS":[0,11,0,0]}]},{"x":54.479,"y":5.919,"w":9.73000000000001,"clr":0,"A":"left","R":[{"T":"...................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":6.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":5.919,"w":1.112,"clr":0,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":6.669,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":6.669,"w":27.986,"clr":0,"A":"left","R":[{"T":"Credit%20for%20the%20elderly%20or%20the%20disabled.%20See%20instructions%2C%20page%2021","S":-1,"TS":[0,11,0,0]}]},{"x":56.771,"y":6.669,"w":8.062000000000006,"clr":0,"A":"left","R":[{"T":".............................","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":6.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":6.669,"w":1.112,"clr":0,"A":"left","R":[{"T":"36","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":7.4190000000000005,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":7.4190000000000005,"w":21.022000000000006,"clr":0,"A":"left","R":[{"T":"Political%20contribution%20credit.%20See%20limits%2C%20page%2021","S":-1,"TS":[0,11,0,0]}]},{"x":47.216,"y":7.4190000000000005,"w":15.012000000000018,"clr":0,"A":"left","R":[{"T":"......................................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":7.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":7.4190000000000005,"w":1.112,"clr":0,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":8.169,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"38%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":49.258,"y":8.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":50.346,"y":8.169,"w":1.366,"clr":0,"A":"left","R":[{"T":"38y","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#00adef","x":56.247,"y":8.194,"w":6.322941000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20included","S":-1,"TS":[0,8.4877194,0,0]}]},{"x":64.237,"y":8.169,"w":1.349,"clr":0,"A":"left","R":[{"T":"38z","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":8.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":8.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"38","S":-1,"TS":[0,11,0,0]}]},{"x":36.625,"y":9.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":37.662,"y":8.919,"w":1.585,"clr":0,"A":"left","R":[{"T":"39x","S":-1,"TS":[0,11,0,0]}]},{"x":44.046,"y":9.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":45.083,"y":8.919,"w":1.5670000000000002,"clr":0,"A":"left","R":[{"T":"39y","S":-1,"TS":[0,11,0,0]}]},{"x":47.533,"y":8.817,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":56.121,"y":8.92,"w":6.322941000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20included","S":-1,"TS":[0,8.7046419,0,0]}]},{"x":64.316,"y":8.919,"w":1.349,"clr":0,"A":"left","R":[{"T":"39z","S":-1,"TS":[0,11,0,0]}]},{"x":68.097,"y":9.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":8.919,"w":1.112,"clr":0,"A":"left","R":[{"T":"39","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":9.669,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"40%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":9.669,"w":23.877000000000006,"clr":0,"A":"left","R":[{"T":"Total%20non-refundable%20credits.%20Add%20lines%2033%20through%2039","S":-1,"TS":[0,11,0,0]}]},{"x":51.039,"y":9.669,"w":22.23999999999999,"clr":0,"A":"left","R":[{"T":"................................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.666,"y":9.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.079,"y":9.67,"w":1.112,"clr":0,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":10.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":10.357,"w":34.550000000000004,"clr":0,"A":"left","R":[{"T":"Net%20income%20tax.%20Line%2032%20minus%20line%2040.%20If%20line%2040%20is%20more%20than%20line%2032%2C%20enter%20-0-","S":-1,"TS":[0,11,0,0]}]},{"x":65.947,"y":10.357,"w":11.398000000000012,"clr":0,"A":"left","R":[{"T":".........................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.666,"y":10.42,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.079,"y":10.357,"w":1.112,"clr":0,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11,0,0]}]},{"x":56.39,"y":11.169,"w":8.340000000000007,"clr":0,"A":"left","R":[{"T":"..............................","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":11.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.467,"y":11.17,"w":1.112,"clr":0,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":11.92,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"43%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":62.888,"y":11.919,"w":3.6140000000000003,"clr":0,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":12.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.467,"y":11.92,"w":1.112,"clr":0,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":12.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":19.367,"y":12.669,"w":1.649,"clr":0,"A":"left","R":[{"T":"43a","S":-1,"TS":[0,11,0,0]}]},{"x":23.248,"y":12.669,"w":1.2040000000000002,"clr":0,"A":"left","R":[{"T":"%20W","S":-1,"TS":[0,11,0,0]}]},{"x":24.825,"y":12.669,"w":6.760000000000001,"clr":0,"A":"left","R":[{"T":"olf%20depredation","S":-1,"TS":[0,11,0,0]}]},{"x":35.47,"y":12.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":36.559,"y":12.669,"w":1.705,"clr":0,"A":"left","R":[{"T":"43b","S":-1,"TS":[0,11,0,0]}]},{"x":40.613,"y":12.669,"w":6.260000000000001,"clr":0,"A":"left","R":[{"T":"%20Claim%20of%20right","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":13.419,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":13.419,"w":21.468,"clr":0,"A":"left","R":[{"T":"Earned%20income%20credit.%20See%20instructions%2C%20page%2023","S":-1,"TS":[0,11,0,0]}]},{"x":47.981,"y":13.419,"w":14.456000000000017,"clr":0,"A":"left","R":[{"T":"....................................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":13.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":13.419,"w":1.112,"clr":0,"A":"left","R":[{"T":"44","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":14.169,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"45%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":18.278,"y":14.169,"w":0.9440000000000001,"clr":-1,"A":"left","R":[{"T":"W","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":19.525,"y":14.169,"w":14.158999999999999,"clr":-1,"A":"left","R":[{"T":"orking%20family%20child%20care%20credit","S":-1,"TS":[0,11,0,0]}]},{"x":37.26,"y":14.169,"w":0.629,"clr":0,"A":"left","R":[{"T":"fr","S":-1,"TS":[0,10.92,0,0]}]},{"x":38.092,"y":14.169,"w":7.410000000000002,"clr":0,"A":"left","R":[{"T":"om%20WFC%2C%20line%2018","S":-1,"TS":[0,10.92,0,0]}]},{"x":50.309,"y":14.169,"w":12.788000000000014,"clr":0,"A":"left","R":[{"T":"..............................................","S":-1,"TS":[0,10.92,0,0]}]},{"x":68.053,"y":14.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":14.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"45","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":14.919,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"46%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":14.919,"w":25.228,"clr":0,"A":"left","R":[{"T":"Mobile%20home%20park%20closure%20credit.%20Include%20Schedule%20MPC","S":-1,"TS":[0,11,0,0]}]},{"x":52.95,"y":14.919,"w":10.842000000000011,"clr":0,"A":"left","R":[{"T":".......................................","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":15.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":14.919,"w":1.112,"clr":0,"A":"left","R":[{"T":"46","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":15.669,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"47%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":15.669,"w":28.435000000000013,"clr":0,"A":"left","R":[{"T":"Total%20payments%20and%20refundable%20credits.%20Add%20lines%2042%20through%2046","S":-1,"TS":[0,11,0,0]}]},{"x":57.155,"y":15.669,"w":17.792000000000012,"clr":0,"A":"left","R":[{"T":"................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.872,"y":15.760000000000002,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.285,"y":15.670000000000002,"w":1.112,"clr":0,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":16.42,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"48%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":67.476,"y":16.42,"w":1.112,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":69.299,"y":16.42,"w":3.4450000000000003,"clr":-1,"A":"left","R":[{"T":"OVERP","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":73.934,"y":16.419,"w":4.259,"clr":-1,"A":"left","R":[{"T":"AYMENT","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":79.707,"y":16.544,"w":0.918,"clr":-1,"A":"left","R":[{"T":"%E2%9E%9B","S":-1,"TS":[2,16.72,0,0]}]},{"x":81.872,"y":16.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.285,"y":16.42,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"48%20%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":17.17,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"49%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":18.278,"y":17.17,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":18.966,"y":17.169,"w":4.612,"clr":-1,"A":"left","R":[{"T":"ax%20to%20pay.","S":-1,"TS":[0,11,0,0]}]},{"x":69.769,"y":17.17,"w":1.112,"clr":0,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":71.643,"y":17.126,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":72.382,"y":17.126,"w":5.316000000000001,"clr":-1,"A":"left","R":[{"T":"AX%20TO%20PAY","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":79.707,"y":17.294,"w":0.918,"clr":-1,"A":"left","R":[{"T":"%E2%9E%9B","S":-1,"TS":[2,16.72,0,0]}]},{"x":81.872,"y":17.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.285,"y":17.126,"w":1.112,"clr":0,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":17.919,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"50%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":17.92,"w":30.986000000000004,"clr":0,"A":"left","R":[{"T":"Penalty%20and%20interest%20for%20filing%20or%20paying%20late.%20See%20instructions%2C%20page%2023","S":-1,"TS":[0,11,0,0]}]},{"x":60.977,"y":17.919,"w":5.838000000000003,"clr":0,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"x":69.467,"y":17.919,"w":1.112,"clr":0,"A":"left","R":[{"T":"50","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":18.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.467,"y":18.67,"w":1.112,"clr":0,"A":"left","R":[{"T":"51","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":19.42,"w":14.560000000000002,"clr":0,"A":"left","R":[{"T":"Exception%20%23%20from%20Form%2010%2C%20line%201","S":-1,"TS":[0,11,0,0]}]},{"x":39.359,"y":19.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":40.506,"y":19.419,"w":1.649,"clr":0,"A":"left","R":[{"T":"51a","S":-1,"TS":[0,11,0,0]}]},{"x":47.432,"y":19.419,"w":12.890000000000006,"clr":0,"A":"left","R":[{"T":"Check%20box%20if%20you%20annualized%20","S":-1,"TS":[0,11,0,0]}]},{"x":65.142,"y":19.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":66.289,"y":19.419,"w":1.983,"clr":0,"A":"left","R":[{"T":"51b%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":20.169,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"52%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":20.169,"w":22.730000000000008,"clr":0,"A":"left","R":[{"T":"Total%20penalty%20and%20interest%20due.%20Add%20lines%2050%20and%2051","S":-1,"TS":[0,11,0,0]}]},{"x":49.51,"y":20.169,"w":24.185999999999982,"clr":0,"A":"left","R":[{"T":".......................................................................................","S":-1,"TS":[0,11,0,0]}]},{"x":83.285,"y":20.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"52","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":20.919,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"53%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":29.695,"y":20.919,"w":8.615000000000002,"clr":0,"A":"left","R":[{"T":"Line%2049%20plus%20line%2052","S":-1,"TS":[0,11,0,0]}]},{"x":42.247,"y":20.919,"w":17.514000000000014,"clr":0,"A":"left","R":[{"T":"...............................................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":66.498,"y":20.919,"w":9.575000000000001,"clr":-1,"A":"left","R":[{"T":"AMOUNT%20YOU%20OWE","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":79.663,"y":20.963,"w":0.918,"clr":-1,"A":"left","R":[{"T":"%E2%9E%9B","S":-1,"TS":[2,17,0,0]}]},{"x":81.872,"y":21.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.285,"y":20.92,"w":1.112,"clr":0,"A":"left","R":[{"T":"53","S":-1,"TS":[0,11,0,0]}]},{"x":15.508,"y":21.67,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"%2054%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":18.278,"y":21.67,"w":3.704,"clr":-1,"A":"left","R":[{"T":"Refund.","S":-1,"TS":[0,11,0,0]}]},{"x":57.537,"y":21.67,"w":11.676000000000013,"clr":0,"A":"left","R":[{"T":"..........................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":73.77,"y":21.626,"w":4.186,"clr":-1,"A":"left","R":[{"T":"REFUND","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":79.663,"y":21.713,"w":0.918,"clr":-1,"A":"left","R":[{"T":"%E2%9E%9B","S":-1,"TS":[2,17,0,0]}]},{"x":81.872,"y":21.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.285,"y":21.67,"w":1.112,"clr":0,"A":"left","R":[{"T":"54","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":22.388,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"55%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":18.278,"y":22.388,"w":6.747000000000001,"clr":-1,"A":"left","R":[{"T":"Estimated%20tax.","S":-1,"TS":[0,11,0,0]}]},{"x":66.711,"y":22.388,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"...","S":-1,"TS":[0,11,0,0]}]},{"x":68.053,"y":22.479,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.412,"y":22.388,"w":1.112,"clr":0,"A":"left","R":[{"T":"55","S":-1,"TS":[0,11,0,0]}]},{"x":20.113,"y":23.17,"w":11.761000000000001,"clr":0,"A":"left","R":[{"T":"American%20Diabetes%20Assoc.","S":2,"TS":[0,10,0,0]}]},{"x":34.606,"y":23.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":35.827,"y":23.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"56","S":-1,"TS":[0,11,0,0]}]},{"x":54.935,"y":23.17,"w":1.093,"clr":0,"A":"left","R":[{"T":"Or","S":2,"TS":[0,10,0,0]}]},{"x":56.228,"y":23.169,"w":9.743,"clr":0,"A":"left","R":[{"T":"egon%20Coast%20Aquarium","S":2,"TS":[0,10,0,0]}]},{"x":68.294,"y":23.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.515,"y":23.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"57","S":-1,"TS":[0,11,0,0]}]},{"x":30.162,"y":23.92,"w":2.8520000000000003,"clr":0,"A":"left","R":[{"T":"SMAR","S":2,"TS":[0,10,0,0]}]},{"x":33.572,"y":23.92,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"T","S":2,"TS":[0,10,0,0]}]},{"x":34.606,"y":24.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":35.827,"y":23.919,"w":1.112,"clr":0,"A":"left","R":[{"T":"58","S":-1,"TS":[0,11,0,0]}]},{"x":64.963,"y":23.92,"w":1.964,"clr":0,"A":"left","R":[{"T":"SOL","S":2,"TS":[0,10,0,0]}]},{"x":67.215,"y":23.92,"w":0.611,"clr":0,"A":"left","R":[{"T":"V","S":2,"TS":[0,10,0,0]}]},{"x":68.294,"y":24.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.515,"y":23.919,"w":1.112,"clr":0,"A":"left","R":[{"T":"59","S":-1,"TS":[0,11,0,0]}]},{"x":20.96,"y":24.669,"w":4.408,"clr":0,"A":"left","R":[{"T":"The%20Natur","S":2,"TS":[0,10,0,0]}]},{"x":26.242,"y":24.67,"w":6.667,"clr":0,"A":"left","R":[{"T":"e%20Conservancy","S":2,"TS":[0,10,0,0]}]},{"x":34.606,"y":24.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":35.827,"y":24.669,"w":1.112,"clr":0,"A":"left","R":[{"T":"60","S":-1,"TS":[0,11,0,0]}]},{"x":52.032,"y":24.669,"w":13.231000000000003,"clr":0,"A":"left","R":[{"T":"St.%20Vincent%20DePaul%20Soc.%20of%20OR","S":2,"TS":[0,10,0,0]}]},{"x":68.294,"y":24.76,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.515,"y":24.669,"w":1.112,"clr":0,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,0,0]}]},{"x":21.069,"y":25.419,"w":1.093,"clr":0,"A":"left","R":[{"T":"Or","S":2,"TS":[0,10,0,0]}]},{"x":22.363,"y":25.419,"w":9.891,"clr":0,"A":"left","R":[{"T":"egon%20Humane%20Society","S":2,"TS":[0,10,0,0]}]},{"x":34.606,"y":25.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":35.827,"y":25.419,"w":1.112,"clr":0,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,0,0]}]},{"x":57.521,"y":25.419,"w":8.668000000000001,"clr":0,"A":"left","R":[{"T":"The%20Salvation%20Army","S":2,"TS":[0,10,0,0]}]},{"x":68.294,"y":25.51,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.515,"y":25.419,"w":1.112,"clr":0,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,0,0]}]},{"x":18.063,"y":26.169,"w":2.148,"clr":0,"A":"left","R":[{"T":"Doer","S":2,"TS":[0,10,0,0]}]},{"x":20.669,"y":26.169,"w":11.391000000000002,"clr":0,"A":"left","R":[{"T":"nbecher%20Children%E2%80%99s%20Hosp.","S":2,"TS":[0,10,0,0]}]},{"x":34.606,"y":26.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":35.827,"y":26.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"64","S":-1,"TS":[0,11,0,0]}]},{"x":55.157,"y":26.169,"w":1.093,"clr":0,"A":"left","R":[{"T":"Or","S":2,"TS":[0,10,0,0]}]},{"x":56.451,"y":26.169,"w":9.687000000000001,"clr":0,"A":"left","R":[{"T":"egon%20Veteran%E2%80%99s%20Home","S":2,"TS":[0,10,0,0]}]},{"x":68.294,"y":26.26,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.515,"y":26.169,"w":1.112,"clr":0,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":26.919,"w":5.981999999999999,"clr":0,"A":"left","R":[{"T":"Charity%20code%20","S":2,"TS":[0,10,0,0]}]},{"x":25.86,"y":27.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":26.949,"y":26.92,"w":1.649,"clr":0,"A":"left","R":[{"T":"66a","S":-1,"TS":[0,11,0,0]}]},{"x":33.923,"y":27.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":35.012,"y":26.92,"w":1.705,"clr":0,"A":"left","R":[{"T":"66b","S":-1,"TS":[0,11,0,0]}]},{"x":52.052,"y":26.919,"w":5.981999999999999,"clr":0,"A":"left","R":[{"T":"Charity%20code%20","S":2,"TS":[0,10,0,0]}]},{"x":59.249,"y":27.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":60.338,"y":26.92,"w":1.649,"clr":0,"A":"left","R":[{"T":"67a","S":-1,"TS":[0,11,0,0]}]},{"x":67.611,"y":27.01,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":68.7,"y":26.92,"w":1.705,"clr":0,"A":"left","R":[{"T":"67b","S":-1,"TS":[0,11,0,0]}]},{"x":15.508,"y":27.732,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"%2068%20","S":-1,"TS":[0,11,0,0]}]},{"x":39.3,"y":27.823,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":40.389,"y":27.732,"w":1.649,"clr":0,"A":"left","R":[{"T":"68a","S":-1,"TS":[0,11,0,0]}]},{"x":49.04,"y":27.732,"w":1.445,"clr":0,"A":"left","R":[{"T":"You","S":2,"TS":[0,10,0,0]}]},{"x":51.009,"y":27.823,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":52.098,"y":27.732,"w":1.983,"clr":0,"A":"left","R":[{"T":"68b%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.778,"y":27.732,"w":5.778,"clr":0,"A":"left","R":[{"T":"Spouse%2FRDP","S":2,"TS":[0,10,0,0]}]},{"x":66.708,"y":27.73,"w":2.224,"clr":0,"A":"left","R":[{"T":"........","S":-1,"TS":[0,6.826090000000001,0,0]}]},{"x":68.426,"y":27.823,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.515,"y":27.732,"w":1.112,"clr":0,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":28.482,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"69%20","S":-1,"TS":[0,11,0,0]}]},{"x":67.618,"y":28.481,"w":2.7800000000000002,"clr":0,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,3.827586,0,0]}]},{"x":68.466,"y":28.573,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":69.555,"y":28.482,"w":1.112,"clr":0,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":29.232,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"70%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":29.232,"w":34.95599999999999,"clr":0,"A":"left","R":[{"T":"Total.%20Add%20lines%2055%20through%2069.%20Total%20can%E2%80%99t%20be%20more%20than%20your%20refund%20on%20line%2054","S":-1,"TS":[0,11,0,0]}]},{"x":65.947,"y":29.232,"w":11.398000000000012,"clr":0,"A":"left","R":[{"T":".........................................","S":-1,"TS":[0,11,0,0]}]},{"x":81.666,"y":29.323,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.079,"y":29.232,"w":1.112,"clr":0,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":29.982,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"71%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":18.278,"y":29.982,"w":6.741999999999999,"clr":-1,"A":"left","R":[{"T":"NET%20REFUND.","S":-1,"TS":[0,11,0,0]}]},{"x":55.626,"y":29.982,"w":10.28600000000001,"clr":0,"A":"left","R":[{"T":".....................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":70.404,"y":29.982,"w":6.463999999999999,"clr":-1,"A":"left","R":[{"T":"NET%20REFUND","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":79.457,"y":30.026,"w":0.918,"clr":-1,"A":"left","R":[{"T":"%E2%9E%9B","S":-1,"TS":[2,17,0,0]}]},{"x":81.666,"y":30.073,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":83.079,"y":29.982,"w":1.112,"clr":0,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":31.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"72%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":31.357,"w":26.505000000000003,"clr":0,"A":"left","R":[{"T":"For%20direct%20deposit%20of%20your%20refund%2C%20see%20instructions%2C%20page%2027.","S":-1,"TS":[0,11,0,0]}]},{"x":67.275,"y":31.448,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":68.307,"y":31.357,"w":0.889,"clr":0,"A":"left","R":[{"T":"%20T","S":-1,"TS":[0,11,0,0]}]},{"x":69.402,"y":31.357,"w":7.353,"clr":0,"A":"left","R":[{"T":"ype%20of%20account%3A","S":-1,"TS":[0,11,0,0]}]},{"x":88.619,"y":31.357,"w":1,"clr":0,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"x":93.592,"y":31.357,"w":1.217,"clr":0,"A":"left","R":[{"T":"Sa","S":-1,"TS":[0,11,0,0]}]},{"x":95.241,"y":31.357,"w":2.4320000000000004,"clr":0,"A":"left","R":[{"T":"vings","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":32.857,"w":26.914000000000005,"clr":0,"A":"left","R":[{"T":"Will%20this%20refund%20go%20to%20an%20account%20outside%20the%20United%20States%3F%20","S":-1,"TS":[0,11,0,0]}]},{"x":55.26,"y":32.948,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":58.033,"y":32.857,"w":1.1300000000000001,"clr":0,"A":"left","R":[{"T":"%20Ye","S":-1,"TS":[0,11,0,0]}]},{"x":59.74,"y":32.857,"w":0.389,"clr":0,"A":"left","R":[{"T":"s","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":5.938,"y":1.859,"w":11.190000000000001,"clr":-1,"A":"left","R":[{"T":"Page%202%20%E2%80%94%202013%20%20Form%2040","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":5.937,"y":3.633,"w":9.076,"clr":-1,"A":"left","R":[{"T":"NONREFUNDABLE","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#00adef","x":5.937,"y":4.158,"w":4.407,"clr":-1,"A":"left","R":[{"T":"CREDITS","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#00adef","x":87.028,"y":6.575,"w":7.962999999999999,"clr":-1,"A":"left","R":[{"T":"ADD%20TOGETHER","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#00adef","x":16.171,"y":34.313,"w":42.161999999999985,"clr":-1,"A":"left","R":[{"T":"Important%3A%20Include%20a%20copy%20of%20your%20federal%20Form%201040%2C%201040A%2C%201040EZ%2C%201040NR%2C%20or%201040NR-EZ.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":5.938,"y":11.172,"w":0.657,"clr":-1,"A":"left","R":[{"T":"P","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.639,"y":11.172,"w":7.510999999999999,"clr":-1,"A":"left","R":[{"T":"AYMENTS%20AND%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":5.938,"y":11.691,"w":6.984,"clr":-1,"A":"left","R":[{"T":"REFUNDABLE%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":5.938,"y":12.21,"w":4.337,"clr":-1,"A":"left","R":[{"T":"CREDITS","S":2,"TS":[0,10,0,0]}]},{"x":6.256,"y":13.658,"w":1.093,"clr":0,"A":"left","R":[{"T":"Inc","S":-1,"TS":[0,10.8,0,0]}]},{"x":7.695,"y":13.658,"w":5.461,"clr":0,"A":"left","R":[{"T":"lude%20Schedule%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":6.346,"y":14.19,"w":6.420999999999999,"clr":0,"A":"left","R":[{"T":"WFC%20if%20you%20claim%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":8.019,"y":14.721,"w":3.665,"clr":0,"A":"left","R":[{"T":"this%20credit","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#00adef","x":87.114,"y":12.949,"w":7.962999999999999,"clr":-1,"A":"left","R":[{"T":"ADD%20TOGETHER","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#00adef","x":88.37,"y":24.741,"w":4.755000000000001,"clr":-1,"A":"left","R":[{"T":"These%20will","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":89.372,"y":25.304,"w":0.389,"clr":-1,"A":"left","R":[{"T":"r","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":89.883,"y":25.303,"w":2.926,"clr":-1,"A":"left","R":[{"T":"educe","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":87.882,"y":25.866,"w":5.483,"clr":-1,"A":"left","R":[{"T":"your%20refund","S":-1,"TS":[0,11,0,0]}]},{"x":15.597,"y":32.194,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":17.01,"y":32.103,"w":5.334,"clr":0,"A":"left","R":[{"T":"Routing%20No.","S":2,"TS":[0,10,0,0]}]},{"x":47.849,"y":32.194,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":49.263,"y":32.103,"w":5.575000000000001,"clr":0,"A":"left","R":[{"T":"Account%20No.","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.092,"y":31.545,"w":4.036,"clr":-1,"A":"left","R":[{"T":"DIRECT%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.092,"y":32.07,"w":4.389,"clr":-1,"A":"left","R":[{"T":"DEPOSIT","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":6.303,"y":35.665,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"x":43.239,"y":35.665,"w":2.093,"clr":0,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":54.71,"y":37.133,"w":3.704,"clr":0,"A":"left","R":[{"T":"Address","S":2,"TS":[0,10,0,0]}]},{"x":76.449,"y":37.133,"w":6.372,"clr":0,"A":"left","R":[{"T":"Telephone%20no.","S":2,"TS":[0,10,0,0]}]},{"x":6.622,"y":37.001,"w":0.611,"clr":0,"A":"left","R":[{"T":"X","S":3,"TS":[0,12,0,0]}]},{"x":54.881,"y":36.591,"w":0.611,"clr":0,"A":"left","R":[{"T":"X","S":3,"TS":[0,12,0,0]}]},{"oc":"#00adef","x":6.304,"y":37.552,"w":3.6860000000000004,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":10.649,"y":37.552,"w":22.558000000000007,"clr":-1,"A":"left","R":[{"T":"s%2FRDP%E2%80%99s%20signature%20(if%20filing%20jointly%2C%20BOTH%20must%20sign)","S":2,"TS":[0,10,0,0]}]},{"x":43.239,"y":37.552,"w":2.093,"clr":0,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":6.579,"y":38.81,"w":0.611,"clr":0,"A":"left","R":[{"T":"X","S":3,"TS":[0,12,0,0]}]},{"x":81.817,"y":35.724,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":82.999,"y":35.633,"w":0.9810000000000001,"clr":0,"A":"left","R":[{"T":"Pr","S":2,"TS":[0,10,0,0]}]},{"x":84.158,"y":35.633,"w":7.945,"clr":0,"A":"left","R":[{"T":"eparer%20license%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#00adef","x":57.387,"y":39.65,"w":15.428,"clr":-1,"A":"left","R":[{"T":"Oregon%20Department%20of%20Revenue.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":20.198,"y":41.025,"w":24.544,"clr":-1,"A":"left","R":[{"T":"Include%20your%20payment%2C%20along%20with%20the%20payment%20voucher","S":-1,"TS":[0,13,0,0]}]},{"x":57.141,"y":41.025,"w":12.503000000000002,"clr":0,"A":"left","R":[{"T":"on%20page%2023%2C%20with%20this%20return.","S":-1,"TS":[0,13,0,0]}]},{"x":6.092,"y":27.717,"w":7.7219999999999995,"clr":0,"A":"left","R":[{"T":"See%20instructions","S":-1,"TS":[0,9.65,0,0]}]},{"x":95.793,"y":2.824,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":4.354,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":5.104,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":5.854,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":6.604,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":7.353999999999999,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":8.104,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":24.505,"y":43.431,"w":6.521000000000001,"clr":0,"A":"left","R":[{"T":"PO%20Box%2014555","S":-1,"TS":[0,13,0,0]}]},{"x":24.505,"y":44.181,"w":10.191000000000003,"clr":0,"A":"left","R":[{"T":"Salem%20OR%2097309-0940","S":-1,"TS":[0,13,0,0]}]},{"x":57.797,"y":42.687,"w":1.8519999999999999,"clr":0,"A":"left","R":[{"T":"Mail","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":61.458,"y":42.687,"w":4.186,"clr":-1,"A":"left","R":[{"T":"REFUND","S":-1,"TS":[0,13,0,0]}]},{"x":68.529,"y":42.687,"w":0.333,"clr":0,"A":"left","R":[{"T":"r","S":-1,"TS":[0,13,0,0]}]},{"x":69.071,"y":42.687,"w":3.075,"clr":0,"A":"left","R":[{"T":"eturns%20","S":-1,"TS":[0,13,0,0]}]},{"x":60.217,"y":43.437,"w":1.686,"clr":0,"A":"left","R":[{"T":"and","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":63.593,"y":43.437,"w":1.5190000000000001,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":66.204,"y":43.437,"w":0.40700000000000003,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":66.903,"y":43.437,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":67.826,"y":43.437,"w":1.352,"clr":-1,"A":"left","R":[{"T":"AX","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":70.15,"y":43.437,"w":0.40700000000000003,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":70.849,"y":43.437,"w":2.13,"clr":-1,"A":"left","R":[{"T":"DUE","S":-1,"TS":[0,13,0,0]}]},{"x":67.125,"y":44.187,"w":0.333,"clr":0,"A":"left","R":[{"T":"r","S":-1,"TS":[0,13,0,0]}]},{"x":67.666,"y":44.187,"w":3.9640000000000004,"clr":0,"A":"left","R":[{"T":"eturns%20to","S":-1,"TS":[0,13,0,0]}]},{"x":17.792,"y":42.672,"w":1.8519999999999999,"clr":0,"A":"left","R":[{"T":"Mail","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":10.726,"y":43.422,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":11.649,"y":43.422,"w":1.352,"clr":-1,"A":"left","R":[{"T":"AX","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":13.972,"y":43.422,"w":0.40700000000000003,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":14.672,"y":43.422,"w":1.389,"clr":-1,"A":"left","R":[{"T":"TO","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":17.059,"y":43.422,"w":0.40700000000000003,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":17.759,"y":43.422,"w":0.667,"clr":-1,"A":"left","R":[{"T":"P","S":-1,"TS":[0,13,0,0]}]},{"oc":"#00adef","x":18.778,"y":43.422,"w":1.352,"clr":-1,"A":"left","R":[{"T":"AY","S":-1,"TS":[0,13,0,0]}]},{"x":13.589,"y":44.172,"w":0.333,"clr":0,"A":"left","R":[{"T":"r","S":-1,"TS":[0,13,0,0]}]},{"x":14.131,"y":44.172,"w":3.9640000000000004,"clr":0,"A":"left","R":[{"T":"eturns%20to","S":-1,"TS":[0,13,0,0]}]},{"x":77.706,"y":42.687,"w":4.018,"clr":0,"A":"left","R":[{"T":"REFUND","S":-1,"TS":[0,13,0,0]}]},{"x":77.706,"y":43.437,"w":6.521000000000001,"clr":0,"A":"left","R":[{"T":"PO%20Box%2014700","S":-1,"TS":[0,13,0,0]}]},{"x":77.706,"y":44.187,"w":10.191000000000003,"clr":0,"A":"left","R":[{"T":"Salem%20OR%2097309-0930","S":-1,"TS":[0,13,0,0]}]},{"x":82.164,"y":14.106,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":13.356,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":11.856,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":9.601,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":8.854,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":10.351,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":11.105,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":15.604,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":17.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":16.354,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":18.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":17.104,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":20.139,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":22.392,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":20.889,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.793,"y":21.638,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.2,"y":23.07,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":48.89,"y":23.072,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.2,"y":23.822,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":48.89,"y":23.822,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.2,"y":24.572,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":48.89,"y":24.572,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.2,"y":25.322,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":48.89,"y":25.324,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.2,"y":26.074,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":48.89,"y":26.074,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.2,"y":26.824,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":48.89,"y":26.822,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.2,"y":27.572,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":82.164,"y":14.855,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.871,"y":29.88,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":95.871,"y":29.13,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.886,"y":46.452,"w":8.041,"clr":0,"A":"left","R":[{"T":"150-101-040%20(Rev","S":51,"TS":[0,9,0,0]}]},{"x":14.102,"y":46.452,"w":3.4280000000000004,"clr":0,"A":"left","R":[{"T":".%2012-13)","S":51,"TS":[0,9,0,0]}]},{"x":82.2,"y":28.323,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":-1,"TS":[0,12.5,0,0]}]},{"x":15.872,"y":11.169,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"42%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.643,"y":11.169,"w":26.359,"clr":0,"A":"left","R":[{"T":"Oregon%20income%20tax%20withheld.Include%20Form(s)%20W-2%20and%201099","S":-1,"TS":[0,11,0,0]}]},{"x":27.141,"y":16.419,"w":28.584000000000007,"clr":0,"A":"left","R":[{"T":"If%20line%2041%20is%20less%20than%20line%2047%2C%20you%20overpaid.%20Line%2047%20minus%20line%2041","S":-1,"TS":[0,11,0,0]}]},{"x":25.013,"y":17.169,"w":32.086000000000006,"clr":0,"A":"left","R":[{"T":"If%20line%2041%20is%20more%20than%20line%2047%2C%20you%20have%20tax%20to%20pay.%20Line%2041%20minus%20line%2047","S":-1,"TS":[0,11,0,0]}]},{"x":27.328,"y":22.389,"w":28.198000000000004,"clr":0,"A":"left","R":[{"T":"Fill%20in%20the%20part%20of%20line%2054%20you%20want%20applied%20to%202014%20estimated%20tax%20","S":-1,"TS":[0,11,0,0]}]},{"x":14.386,"y":40.337,"w":0.926,"clr":0,"A":"left","R":[{"T":"W","S":-1,"TS":[0,13,0,0]}]},{"x":15.946000000000002,"y":40.337,"w":42.55199999999998,"clr":0,"A":"left","R":[{"T":"rite%20your%20daytime%20telephone%20number%20and%20%222013%20Oregon%20Form%2040%22%20on%20your%20check%20or%20money%20order.%20%20","S":-1,"TS":[0,13,0,0]}]},{"x":15.806999999999999,"y":18.669,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"51%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.214,"y":18.67,"w":26.805,"clr":0,"A":"left","R":[{"T":"Interest%20on%20underpayment%20of%20estimated%20tax.%20Include%20Form%2010","S":-1,"TS":[0,11,0,0]}]},{"x":56.617,"y":18.67,"w":6.890999999999999,"clr":0,"A":"left","R":[{"T":"%20and%20check%20box","S":-1,"TS":[0,11,0,0]}]},{"x":15.872,"y":8.919,"w":1.608,"clr":0,"A":"left","R":[{"T":"39%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.581,"y":8.919,"w":5.8839999999999995,"clr":0,"A":"left","R":[{"T":"Other%20credits.","S":-1,"TS":[0,11,0,0]}]},{"x":32.171,"y":8.919,"w":3.4209999999999994,"clr":0,"A":"left","R":[{"T":"Identify%3A","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":3.6689999999999996,"w":36.086999999999996,"clr":0,"A":"left","R":[{"T":"Exemption%20credit.%20If%20the%20amount%20on%20line%208%20is%20less%20than%20%24100%2C000%2C%20multiply%20your","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":8.169,"w":14.586250000000009,"clr":0,"A":"left","R":[{"T":"Credit%20for%20income%20taxes%20paid%20to%20another%20state.","S":2,"TS":[0,10,0,0]}]},{"x":46.046,"y":8.169,"w":2.386,"clr":0,"A":"left","R":[{"T":"State%3A%20","S":-1,"TS":[0,10.92,0,0]}]},{"x":5.938,"y":8.103,"w":6.3309999999999995,"clr":0,"A":"left","R":[{"T":"Include%20proof","S":2,"TS":[0,10,0,0]}]},{"x":18.278,"y":11.919,"w":32.486999999999995,"clr":0,"A":"left","R":[{"T":"Estimated%20tax%20payments%20for%202013%20and%20payments%20made%20with%20your%20extension","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#00adef","x":18.278,"y":16.42,"w":6.667999999999999,"clr":-1,"A":"left","R":[{"T":"Overpayment.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":18.278,"y":20.92,"w":8.296000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20owe.","S":-1,"TS":[0,11,0,0]}]},{"x":27.328,"y":29.982,"w":19.915000000000003,"clr":0,"A":"left","R":[{"T":"Line%2054%20minus%20line%2070.%20This%20is%20your%20net%20refund","S":-1,"TS":[0,11,0,0]}]},{"x":6.556,"y":35.023,"w":47.636999999999965,"clr":0,"A":"left","R":[{"T":"Under%20penalty%20for%20false%20swearing%2C%20I%20declare%20that%20the%20information%20in%20this%20return%20is%20true%2C%20correct%2C%20and%20complete.%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.951,"y":39.65,"w":26.597999999999995,"clr":0,"A":"left","R":[{"T":"If%20you%20owe%2C%20make%20your%20check%20or%20money%20order%20payable%20to%20the","S":-1,"TS":[0,13,0,0]}]},{"x":24.505,"y":42.681,"w":14.226000000000004,"clr":0,"A":"left","R":[{"T":"Oregon%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"x":23.286,"y":21.67,"w":24.38000000000001,"clr":0,"A":"left","R":[{"T":"Is%20line%2048%20more%20than%20line%2052%3F%20If%20so%2C%20line%2048%20minus%20line%2052","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":28.482,"w":21.892000000000003,"clr":0,"A":"left","R":[{"T":"Total%20Oregon%20529%20College%20Savings%20Plan%20deposits.","S":-1,"TS":[0,11,0,0]}]},{"x":51.678,"y":28.482,"w":11.373000000000005,"clr":0,"A":"left","R":[{"T":"See%20instructions%2C%20page%2026","S":-1,"TS":[0,11,0,0]}]},{"x":18.278,"y":27.732,"w":17.261000000000003,"clr":0,"A":"left","R":[{"T":"Political%20party%20%243%20checkoff.%20Party%20code%3A","S":2,"TS":[0,10,0,0]}]},{"x":82.295,"y":31.357,"w":4.609,"clr":0,"A":"left","R":[{"T":"Checking%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#00adef","x":54.71,"y":35.687,"w":18.483000000000004,"clr":-1,"A":"left","R":[{"T":"Signature%20of%20preparer%20other%20than%20taxpayer","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":313,"AM":1024,"x":22.666,"y":2.001,"w":46.681,"h":0.872},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":314,"AM":1024,"x":76.629,"y":1.972,"w":22.53,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTAX2","EN":0},"TI":315,"AM":1024,"x":85.593,"y":3.041,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMPTNS","EN":0},"TI":316,"AM":0,"x":71.797,"y":4.504,"w":9.694,"h":0.833,"TU":"Line 33. Exemption credit. If the amount on line 8 is less than $100,000 multiply your total exemptions on line 6e by $188. Otherwise, see instructions on page 20."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":317,"AM":0,"x":71.852,"y":5.286,"w":9.694,"h":0.833,"TU":"Line 34. Retirement income credit. See instructions, page 21."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHLDCARE","EN":0},"TI":318,"AM":0,"x":71.907,"y":6.014,"w":9.694,"h":0.833,"TU":"Line 35. Child and dependent care credit. See instructions, page 21."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":319,"AM":0,"x":71.812,"y":6.796,"w":9.694,"h":0.833,"TU":"Line 36. Credit for the elderly or the disabled. See instructions, page 21."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":320,"AM":0,"x":71.866,"y":7.551,"w":9.694,"h":0.833,"TU":"Line 37. Political contribution credit. See limits, page 21."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ORASC"}},"id":{"Id":"ADD_ASC_OST","EN":0},"TI":321,"AM":0,"x":41.915,"y":8.3,"w":2.268,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L40ST","EN":0},"TI":322,"AM":0,"x":52.669,"y":8.331,"w":3.169,"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"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":324,"AM":0,"x":71.921,"y":8.278,"w":9.694,"h":0.833,"TU":"Line 38. Credit for income taxes paid to another state."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ORASC"}},"id":{"Id":"ADD_ASC_OCR","EN":0},"TI":325,"AM":0,"x":26.563,"y":9.027,"w":1.744,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L41T","EN":0},"TI":326,"AM":0,"x":40.175,"y":9.127,"w":3.444,"h":0.833,"TU":"39 Other credits. Identify: 39x","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41TB","EN":0},"TI":327,"AM":0,"x":48.743,"y":9.146,"w":7.147,"h":0.833,"TU":"39y"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":329,"AM":0,"x":71.892,"y":9.057,"w":9.694,"h":0.833,"TU":"Line 39. Other credits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":330,"AM":1024,"x":85.511,"y":9.788,"w":9.694,"h":0.833,"TU":"ADD TOGETHER_40 Total non-refundable credits. Add lines 33 through 39 ................................................................................ 40 41 Net income tax. Line 32 minus line 40. If line 40 is mor"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NIT","EN":0},"TI":331,"AM":1024,"x":85.511,"y":10.538,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WTHHLD","EN":0},"TI":332,"AM":0,"x":71.892,"y":11.29,"w":9.694,"h":0.833,"TU":"Line 42. Oregon income tax withheld."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTPAY","EN":0},"TI":333,"AM":0,"x":71.803,"y":12.045,"w":9.714,"h":0.833,"TU":"Line 43. Estimated tax payments for 2013 and payments made with your extension."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EIC","EN":0},"TI":336,"AM":0,"x":71.872,"y":13.542,"w":9.694,"h":0.833,"TU":"Line 44. Earned income credit. See instructions, page 23."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ORWFC"}},"id":{"Id":"ADD_WFC","EN":0},"TI":337,"AM":0,"x":48.656,"y":14.361,"w":2.642,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WFC","EN":0},"TI":338,"AM":1024,"x":71.852,"y":14.297,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MH","EN":0},"TI":339,"AM":0,"x":71.907,"y":14.998,"w":9.694,"h":0.833,"TU":"Line 46. Mobile home park closure credit. Include Schedule MPC."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":340,"AM":1024,"x":85.511,"y":15.795,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":341,"AM":1024,"x":85.511,"y":16.545,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":342,"AM":1024,"x":85.511,"y":17.295,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":343,"AM":0,"x":71.816,"y":18.045,"w":9.817,"h":0.833,"TU":"Line 50. Penalty and interest for filing or paying late. See instructions, page 23."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"OR10"}},"id":{"Id":"ADD_OR10","EN":0},"TI":344,"AM":0,"x":52.747,"y":18.827,"w":1.669,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":346,"AM":1024,"x":71.816,"y":18.795,"w":9.817,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXNUM","EN":0},"TI":347,"AM":1024,"x":43.313,"y":19.593,"w":3.547,"h":0.833,"TU":"Exception # from Form 10, line 1 51a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":349,"AM":1024,"x":85.518,"y":20.274,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTOWED","EN":0},"TI":350,"AM":1024,"x":85.498,"y":21.056,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":351,"AM":1024,"x":85.478,"y":21.784,"w":9.694,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOESTTAX","EN":0},"TI":352,"AM":0,"x":71.816,"y":22.538,"w":9.817,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIABETES","EN":0},"TI":353,"AM":0,"x":38.514,"y":23.268,"w":9.817,"h":0.833,"TU":"Line 56. American Diabetes Association."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COAST","EN":0},"TI":354,"AM":0,"x":71.858,"y":23.28,"w":9.817,"h":0.833,"TU":"Line 57. Oregon Coast Aquarium."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SMART","EN":0},"TI":355,"AM":0,"x":38.514,"y":24.003,"w":9.817,"h":0.833,"TU":"Line 58. SMART."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SOLV","EN":0},"TI":356,"AM":0,"x":71.878,"y":24.022,"w":9.776,"h":0.833,"TU":"Line 59. SOLV."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NATURE","EN":0},"TI":357,"AM":0,"x":38.494,"y":24.786,"w":9.818,"h":0.833,"TU":"Line 60. The Nature Conservancy."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPAUL","EN":0},"TI":358,"AM":0,"x":71.878,"y":24.772,"w":9.776,"h":0.833,"TU":"Line 61. St. Vincent DePaul Society of Oregon."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HUMANE","EN":0},"TI":359,"AM":0,"x":38.399,"y":25.514,"w":9.818,"h":0.833,"TU":"Line 62. Oregon Humane Society."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SARMY","EN":0},"TI":360,"AM":0,"x":71.878,"y":25.522,"w":9.776,"h":0.833,"TU":"Line 63. The Salvation Army."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOSP","EN":0},"TI":361,"AM":0,"x":38.454,"y":26.241,"w":9.817,"h":0.833,"TU":"Line 64. Doernbecher Children's Hospital."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VET","EN":0},"TI":362,"AM":0,"x":71.878,"y":26.272,"w":9.776,"h":0.833,"TU":"Line 65. Oregon Veteran's Home."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CHARCODE","EN":0},"TI":363,"AM":0,"x":29.837,"y":27.084,"w":3.444,"h":0.833,"TU":"Line 66a. Charity code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CD68B","EN":0},"TI":364,"AM":0,"x":38.509,"y":26.996,"w":9.817,"h":0.833,"TU":"Line 66b. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CD69A","EN":0},"TI":365,"AM":0,"x":63.229,"y":27.077,"w":3.506,"h":0.833,"TU":"Line 67a. Charity code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHARITY","EN":0},"TI":366,"AM":0,"x":71.878,"y":27.022,"w":9.776,"h":0.833,"TU":"Line 67b. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPPARTY","EN":0},"TI":367,"AM":0,"x":43.337,"y":27.991,"w":4.689,"h":0.833,"PL":{"V":[null,"500","501","502","503","504","505","506","507"],"D":[" ","500","501","502","503","504","505","506","507"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPPARTY","EN":0},"TI":368,"AM":0,"x":54.817,"y":27.989,"w":4.389,"h":0.833,"PL":{"V":[" ","500","501","502","503","504","505","506","507"],"D":[" ","500","501","502","503","504","505","506","507"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIB","EN":0},"TI":369,"AM":1024,"x":71.878,"y":27.772,"w":9.776,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"OR529"}},"id":{"Id":"ADD_529","EN":0},"TI":370,"AM":0,"x":47.201,"y":28.635,"w":2.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CSP","EN":0},"TI":371,"AM":1024,"x":71.878,"y":28.522,"w":9.776,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DONATE","EN":0},"TI":372,"AM":1024,"x":85.614,"y":29.302,"w":9.652,"h":0.833,"TU":"These will reduce your refund_70"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETREFND","EN":0},"TI":373,"AM":1024,"x":85.614,"y":30.052,"w":9.652,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTNO","EN":0},"TI":376,"AM":0,"x":24.866,"y":32.246,"w":22.234,"h":0.833,"TU":"Routing number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCTNO","EN":0},"TI":377,"AM":0,"x":56.966,"y":32.265,"w":42.034,"h":0.833,"TU":"Account number.","MV":"maxl:17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIGN","EN":0},"TI":379,"AM":1024,"x":56.315,"y":36.631,"w":24.773,"h":0.846},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPEIN","EN":0},"TI":380,"AM":1024,"x":82.162,"y":36.623,"w":16.08,"h":0.846}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX38Z","EN":0},"TI":323,"AM":0,"x":66.677,"y":8.358,"w":1.196,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L41TC","EN":0},"TI":328,"AM":0,"x":66.784,"y":9.108,"w":1.196,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WOLF","EN":0},"TI":334,"AM":0,"x":22.346,"y":12.868,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CLMOFRT","EN":0},"TI":335,"AM":0,"x":39.717,"y":12.861,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"UNDBOX","EN":0},"TI":345,"AM":1024,"x":66.763,"y":18.858,"w":1.196,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ANBX","EN":0},"TI":348,"AM":1024,"x":69.259,"y":19.608,"w":1.217,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CACCTX","EN":0},"TI":374,"AM":0,"x":80.472,"y":31.534,"w":1.293,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SACCTX","EN":0},"TI":375,"AM":0,"x":91.59,"y":31.534,"w":1.293,"h":0.833,"checked":false}],"id":{"Id":"TARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OUTUSBX","EN":0},"TI":378,"AM":0,"x":56.775,"y":33.102,"w":1.196,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/OR40DEP.content.txt b/test/data/or/form/OR40DEP.content.txt new file mode 100755 index 00000000..46436284 --- /dev/null +++ b/test/data/or/form/OR40DEP.content.txt @@ -0,0 +1,15 @@ +Form 40 +Dependents Statement +2013 +Line 6c and Line 6d +Attach to your return +Statement +Name(s) shown on return +Social Security number (SSN) +6c All dependents: 6d Disabled children only: +Check the boxes if +your dependents First names First names +are disabled children +Total number of dependents: +Total number of disabled children: +----------------Page (0) Break---------------- diff --git a/test/data/or/form/OR40DEP.fields.json b/test/data/or/form/OR40DEP.fields.json new file mode 100755 index 00000000..8dfd41a6 --- /dev/null +++ b/test/data/or/form/OR40DEP.fields.json @@ -0,0 +1 @@ +[{"id":"DEPFNM_DISDEPX_1_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_2_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_3_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_4_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_5_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_6_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_7_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_8_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_9_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_10_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_11_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_12_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_13_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_14_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_15_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_16_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_17_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_18_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_19_","type":"box","calc":false,"value":""},{"id":"DEPFNM_DISDEPX_20_","type":"box","calc":false,"value":""},{"id":"STMT","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DEPFNM_DEPNM_1_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_1_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_2_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_2_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_3_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_3_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_4_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_4_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_5_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_5_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_6_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_6_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_7_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_7_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_8_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_8_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_9_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_9_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_10_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_10_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_11_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_11_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_12_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_12_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_13_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_13_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_14_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_14_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_15_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_15_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_16_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_16_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_17_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_17_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_18_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_18_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_19_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_19_","type":"alpha","calc":true,"value":""},{"id":"DEPFNM_DEPNM_20_","type":"alpha","calc":false,"value":""},{"id":"DSBLFNM_DISNM_20_","type":"alpha","calc":true,"value":""},{"id":"TOTDEP","type":"number","calc":true,"value":""},{"id":"TOTDISBL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/OR40DEP.json b/test/data/or/form/OR40DEP.json new file mode 100755 index 00000000..644bf17c --- /dev/null +++ b/test/data/or/form/OR40DEP.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"oridepstmt.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":1.031,"y":1.5,"w":98.309,"h":0.124,"clr":0},{"x":90.75,"y":3.75,"w":8.333,"h":0.03,"clr":0},{"x":1.031,"y":4.5,"w":98.309,"h":0.124,"clr":0},{"x":1.031,"y":6,"w":98.051,"h":0.03,"clr":0},{"x":58.781,"y":10.5,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":11.25,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":11.25,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":12,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":12,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":12.75,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":12.75,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":13.5,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":13.5,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":14.25,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":14.25,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":15,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":15,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":15.75,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":15.75,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":16.5,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":16.5,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":17.25,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":17.25,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":18,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":18,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":18.75,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":18.75,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":19.5,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":19.5,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":20.25,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":20.25,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":21,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":21,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":21.75,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":21.75,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":22.5,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":22.5,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":23.25,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":23.25,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":24,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":24,"w":24.833,"h":0.03,"clr":0},{"x":22.688,"y":24.75,"w":24.833,"h":0.03,"clr":0},{"x":58.781,"y":24.75,"w":24.833,"h":0.03,"clr":0},{"x":1.031,"y":1.5,"w":0.34,"h":3.124,"clr":0},{"x":99,"y":1.5,"w":0.34,"h":3.124,"clr":0},{"x":1.031,"y":4.5,"w":0.082,"h":1.53,"clr":0},{"x":77.344,"y":4.5,"w":0.083,"h":1.53,"clr":0},{"x":99,"y":4.5,"w":0.083,"h":1.53,"clr":0},{"x":22.688,"y":10.5,"w":24.833,"h":0.03,"clr":0}],"Texts":[{"x":2.153,"y":2.126,"w":3.89,"clr":0,"A":"left","R":[{"T":"Form%2040","S":-1,"TS":[2,11.9829,1,0]}]},{"x":40.309,"y":2.126,"w":10.834999999999999,"clr":0,"A":"left","R":[{"T":"Dependents%20Statement","S":-1,"TS":[2,15.9773,1,0]}]},{"x":88.231,"y":2.126,"w":2.4,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[3,17.9535,1,0]}]},{"x":5.247,"y":2.876,"w":9.280999999999999,"clr":0,"A":"left","R":[{"T":"Line%206c%20and%20Line%206d","S":-1,"TS":[2,11.9829,1,0]}]},{"x":43.578,"y":2.876,"w":9.558,"clr":0,"A":"left","R":[{"T":"Attach%20to%20your%20return","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.59,"y":2.876,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,13.941,1,0]}]},{"x":1.122,"y":4.376,"w":11.798000000000002,"clr":0,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[2,11.9829,0,0]}]},{"x":77.434,"y":4.376,"w":13.938999999999997,"clr":0,"A":"left","R":[{"T":"Social%20Security%20number%20(SSN)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.664,"y":6.626,"w":8.891,"clr":0,"A":"left","R":[{"T":"6c%20All%20dependents%3A","S":-1,"TS":[2,13.941,1,0]}]},{"x":58.872,"y":6.626,"w":12.448000000000006,"clr":0,"A":"left","R":[{"T":"6d%20Disabled%20children%20only%3A","S":-1,"TS":[2,13.941,1,0]}]},{"x":6.278,"y":7.3759999999999994,"w":8.575999999999999,"clr":0,"A":"left","R":[{"T":"Check%20the%20boxes%20if","S":-1,"TS":[2,11.9829,0,0]}]},{"x":7.381,"y":8.126,"w":7.700999999999999,"clr":0,"A":"left","R":[{"T":"your%20dependents","S":-1,"TS":[2,11.9829,0,0]}]},{"x":30.245,"y":8.126,"w":5.462999999999999,"clr":0,"A":"left","R":[{"T":"First%20names","S":-1,"TS":[2,11.9829,0,0]}]},{"x":66.34,"y":8.126,"w":5.462999999999999,"clr":0,"A":"left","R":[{"T":"First%20names","S":-1,"TS":[2,11.9829,0,0]}]},{"x":6.36,"y":8.876,"w":9.659,"clr":0,"A":"left","R":[{"T":"are%20disabled%20children","S":-1,"TS":[2,11.9829,0,0]}]},{"x":22.778,"y":26.501,"w":13.779000000000005,"clr":0,"A":"left","R":[{"T":"Total%20number%20of%20dependents%3A","S":-1,"TS":[2,11.9829,1,0]}]},{"x":58.873,"y":26.501,"w":16.392000000000003,"clr":0,"A":"left","R":[{"T":"Total%20number%20of%20disabled%20children%3A","S":-1,"TS":[2,11.9829,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":381,"AM":0,"x":91.404,"y":3.083,"w":7.354,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":382,"AM":1024,"x":1.196,"y":5.278,"w":76.086,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":383,"AM":1024,"x":77.509,"y":5.278,"w":21.429,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_1_","EN":0},"TI":385,"AM":0,"x":22.688,"y":9.788,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_1_","EN":0},"TI":386,"AM":1024,"x":58.781,"y":9.788,"w":24.853,"h":0.833,"TU":"Line 6d. Disabled children only. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_2_","EN":0},"TI":388,"AM":0,"x":22.684,"y":10.581,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_2_","EN":0},"TI":389,"AM":1024,"x":58.777,"y":10.581,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_3_","EN":0},"TI":391,"AM":0,"x":22.783,"y":11.3,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_3_","EN":0},"TI":392,"AM":1024,"x":58.876,"y":11.3,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_4_","EN":0},"TI":394,"AM":0,"x":22.779,"y":12.093,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_4_","EN":0},"TI":395,"AM":1024,"x":58.873,"y":12.093,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_5_","EN":0},"TI":397,"AM":0,"x":22.735,"y":12.839,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_5_","EN":0},"TI":398,"AM":1024,"x":58.829,"y":12.839,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_6_","EN":0},"TI":400,"AM":0,"x":22.731,"y":13.569,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_6_","EN":0},"TI":401,"AM":1024,"x":58.825,"y":13.569,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_7_","EN":0},"TI":403,"AM":0,"x":22.658,"y":14.289,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_7_","EN":0},"TI":404,"AM":1024,"x":58.752,"y":14.289,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_8_","EN":0},"TI":406,"AM":0,"x":22.654,"y":15.082,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_8_","EN":0},"TI":407,"AM":1024,"x":58.748,"y":15.082,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_9_","EN":0},"TI":409,"AM":0,"x":22.578,"y":15.801,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_9_","EN":0},"TI":410,"AM":1024,"x":58.672,"y":15.801,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_10_","EN":0},"TI":412,"AM":0,"x":22.574,"y":16.594,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_10_","EN":0},"TI":413,"AM":1024,"x":58.668,"y":16.594,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_11_","EN":0},"TI":415,"AM":0,"x":22.673,"y":17.314,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_11_","EN":0},"TI":416,"AM":1024,"x":58.767,"y":17.314,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_12_","EN":0},"TI":418,"AM":0,"x":22.669,"y":18.107,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_12_","EN":0},"TI":419,"AM":1024,"x":58.763,"y":18.107,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_13_","EN":0},"TI":421,"AM":0,"x":22.625,"y":18.852,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_13_","EN":0},"TI":422,"AM":1024,"x":58.719,"y":18.852,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_14_","EN":0},"TI":424,"AM":0,"x":22.622,"y":19.583,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_14_","EN":0},"TI":425,"AM":1024,"x":58.715,"y":19.583,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_15_","EN":0},"TI":427,"AM":0,"x":22.549,"y":20.303,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_15_","EN":0},"TI":428,"AM":1024,"x":58.642,"y":20.303,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_16_","EN":0},"TI":430,"AM":0,"x":22.545,"y":21.096,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_16_","EN":0},"TI":431,"AM":1024,"x":58.638,"y":21.096,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_17_","EN":0},"TI":433,"AM":0,"x":22.596,"y":21.8,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_17_","EN":0},"TI":434,"AM":1024,"x":58.69,"y":21.8,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_18_","EN":0},"TI":436,"AM":0,"x":22.552,"y":22.545,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_18_","EN":0},"TI":437,"AM":1024,"x":58.646,"y":22.545,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_19_","EN":0},"TI":439,"AM":0,"x":22.549,"y":23.276,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_19_","EN":0},"TI":440,"AM":1024,"x":58.642,"y":23.276,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPFNM_DEPNM_20_","EN":0},"TI":442,"AM":0,"x":22.476,"y":23.996,"w":24.853,"h":0.833,"TU":"Line 6c. All dependents. First names."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DSBLFNM_DISNM_20_","EN":0},"TI":443,"AM":1024,"x":58.569,"y":23.996,"w":24.853,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDEP","EN":0},"TI":444,"AM":1024,"x":44.687,"y":26.66,"w":11.098,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDISBL","EN":0},"TI":445,"AM":1024,"x":86.987,"y":26.606,"w":11.098,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_1_","EN":0},"TI":384,"AM":0,"x":13.401,"y":9.676,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_2_","EN":0},"TI":387,"AM":0,"x":13.397,"y":10.469,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_3_","EN":0},"TI":390,"AM":0,"x":13.496,"y":11.189,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_4_","EN":0},"TI":393,"AM":0,"x":13.492,"y":11.982,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_5_","EN":0},"TI":396,"AM":0,"x":13.449,"y":12.665,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_6_","EN":0},"TI":399,"AM":0,"x":13.445,"y":13.458,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_7_","EN":0},"TI":402,"AM":0,"x":13.372,"y":14.177,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_8_","EN":0},"TI":405,"AM":0,"x":13.368,"y":14.971,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_9_","EN":0},"TI":408,"AM":0,"x":13.292,"y":15.689,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_10_","EN":0},"TI":411,"AM":0,"x":13.288,"y":16.483,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_11_","EN":0},"TI":414,"AM":0,"x":13.387,"y":17.202,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_12_","EN":0},"TI":417,"AM":0,"x":13.383,"y":17.995,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_13_","EN":0},"TI":420,"AM":0,"x":13.275,"y":18.678,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_14_","EN":0},"TI":423,"AM":0,"x":13.335,"y":19.471,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_15_","EN":0},"TI":426,"AM":0,"x":13.262,"y":20.191,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_16_","EN":0},"TI":429,"AM":0,"x":13.258,"y":20.984,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_17_","EN":0},"TI":432,"AM":0,"x":13.31,"y":21.688,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_18_","EN":0},"TI":435,"AM":0,"x":13.266,"y":22.344,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_19_","EN":0},"TI":438,"AM":0,"x":13.262,"y":23.164,"w":2.27,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPFNM_DISDEPX_20_","EN":0},"TI":441,"AM":0,"x":13.189,"y":23.884,"w":2.27,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/OR529.content.txt b/test/data/or/form/OR529.content.txt new file mode 100755 index 00000000..0a9e38d1 --- /dev/null +++ b/test/data/or/form/OR529.content.txt @@ -0,0 +1,189 @@ +150-101-068 (Rev. 12-13) +Would you like to deposit all or a portion of your refund into an Oregon 529 College Savings Plan account? If so, follow the instructions below. +Requirements +• + +information below. +• + +Deposits must be a minimum of $25 per account. +• + +If your refund is used to pay a debt you owe or the amount you elect to deposit exceeds your available refund, your deposit will be +Instructions +You may deposit all or a portion of your refund in up to four accounts. Complete all the fields below for each account. +• + +Select the account manager--Oregon College Savings Plan or MFS 529 Savings Plan; +• + +Enter the four-digit portfolio number (for more information on portfolio options, contact your account manager); +• + +Enter the nine or ten-digit account number; +• + +Enter the amount to be deposited; and +• + +Total the amounts to be deposited. +69a. + +Check one: + +• + + +Oregon College Savings Plan + +or + +• + + +MFS 529 Savings Plan + +• + Portfolio No. + + +• + Account No. + + +• + Amount + +$ + +.00 +69b. + +Check one: + +• + + +Oregon College Savings Plan + +or + +• + + +MFS 529 Savings Plan + +• + Portfolio No. + + +• + Account No. + + +• + Amount + +$ + +.00 +69c. + +Check one: + +• + + +Oregon College Savings Plan + +or + +• + + +MFS 529 Savings Plan + +• + Portfolio No. + + +• + Account No. + + +• + Amount + +$ + +.00 +69d. + +Check one: + +• + + +Oregon College Savings Plan + +or + +• + + +MFS 529 Savings Plan + +• + Portfolio No. + + +• + Account No. + + +• + Amount + +$ + +.00 +Add lines 69a–69d and enter the total on line 69 of Form 40. + +Total + +$ + +.00 +Contact information +Oregon 529 College Savings Network +www.oregon529network.com +Phone: 503-373-1903 +Email: college.savings@ost.state.or.us +Oregon College Savings Plan +www.oregoncollegesavings.com/ +Phone: 1-866-772-8464 +MFS 529 Savings Plan +https://annex.mfs.com/subs/oregon/index.html +Phone: 1-866-529-1637 +—YOU MUST INCLUDE THIS SCHEDULE WITH YOUR OREGON INCOME TAX RETURN— +Schedule + +OR-529 +Oregon 529 College Savings Plan +Direct Deposit for Form 40 Filers +Last name +Spouse’s/RDP’s last name +Social Security number (SSN) +Spouse’s/RDP’s SSN +First name and initial +Spouse’s/RDP’s first name and initial +– + +– +– + +– +Tax year +To make this choice, you must have an open Oregon 529 College Savings Plan account. For more information, see contact +cancelled. Any remaining refund will be refunded by paper check or direct deposit. +----------------Page (0) Break---------------- diff --git a/test/data/or/form/OR529.fields.json b/test/data/or/form/OR529.fields.json new file mode 100755 index 00000000..ab2aa45f --- /dev/null +++ b/test/data/or/form/OR529.fields.json @@ -0,0 +1 @@ +[{"id":"A33RB_1_","type":"radio","calc":false,"value":"COLPL"},{"id":"A33RB_1_","type":"radio","calc":false,"value":"MSFPL"},{"id":"A33RB_2_","type":"radio","calc":false,"value":"COLPL"},{"id":"A33RB_2_","type":"radio","calc":false,"value":"MSFPL"},{"id":"A33RB_3_","type":"radio","calc":false,"value":"COLPL"},{"id":"A33RB_3_","type":"radio","calc":false,"value":"MSFPL"},{"id":"A33RB_4_","type":"radio","calc":false,"value":"COLPL"},{"id":"A33RB_4_","type":"radio","calc":false,"value":"MSFPL"},{"id":"TAXYEAR","type":"alpha","calc":false,"value":""},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAM","type":"alpha","calc":true,"value":""},{"id":"TPINIT","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAM","type":"alpha","calc":true,"value":""},{"id":"SPINIT","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"A33_PORTNUM_1_","type":"mask","calc":false,"value":""},{"id":"A33_ACCNUM_1_","type":"mask","calc":false,"value":""},{"id":"A33_AMT_1_","type":"number","calc":false,"value":""},{"id":"A33_PORTNUM_2_","type":"mask","calc":false,"value":""},{"id":"A33_ACCNUM_2_","type":"mask","calc":false,"value":""},{"id":"A33_AMT_2_","type":"number","calc":false,"value":""},{"id":"A33_PORTNUM_3_","type":"mask","calc":false,"value":""},{"id":"A33_ACCNUM_3_","type":"mask","calc":false,"value":""},{"id":"A33_AMT_3_","type":"number","calc":false,"value":""},{"id":"A33_PORTNUM_4_","type":"mask","calc":false,"value":""},{"id":"A33_ACCNUM_4_","type":"mask","calc":false,"value":""},{"id":"A33_AMT_4_","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/OR529.json b/test/data/or/form/OR529.json new file mode 100755 index 00000000..493bd6bc --- /dev/null +++ b/test/data/or/form/OR529.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Schedule OR-529, Oregon 529 College Savings Plan Direct Deposit for Form 40 Filers, 150-101-068","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":6.188,"y":21.525,"w":0.75,"l":92.832},{"x":6.188,"y":25.65,"w":0.75,"l":92.832},{"x":6.188,"y":29.775,"w":0.75,"l":92.832},{"x":6.188,"y":33.9,"w":0.75,"l":92.832},{"x":6.188,"y":37.65,"w":0.75,"l":92.832},{"x":6.188,"y":40.388,"w":0.75,"l":92.832},{"x":19.121,"y":24.525,"w":0.75,"l":1.977},{"x":19.121,"y":23.619,"w":0.75,"l":1.977},{"x":21.098,"y":24.525,"w":0.75,"l":1.977},{"x":21.098,"y":23.619,"w":0.75,"l":1.977},{"x":23.074,"y":24.525,"w":0.75,"l":1.977},{"x":23.074,"y":23.619,"w":0.75,"l":1.977},{"x":25.051,"y":24.525,"w":0.75,"l":1.977},{"x":25.051,"y":23.619,"w":0.75,"l":1.977},{"x":41.809,"y":24.525,"w":0.75,"l":1.977},{"x":41.809,"y":23.619,"w":0.75,"l":1.977},{"x":43.785,"y":24.525,"w":0.75,"l":1.977},{"x":43.785,"y":23.619,"w":0.75,"l":1.977},{"x":45.762,"y":24.525,"w":0.75,"l":1.977},{"x":45.762,"y":23.619,"w":0.75,"l":1.977},{"x":47.738,"y":24.525,"w":0.75,"l":1.977},{"x":47.738,"y":23.619,"w":0.75,"l":1.977},{"x":49.715,"y":24.525,"w":0.75,"l":1.977},{"x":49.715,"y":23.619,"w":0.75,"l":1.977},{"x":51.691,"y":24.525,"w":0.75,"l":1.977},{"x":51.691,"y":23.619,"w":0.75,"l":1.977},{"x":53.668,"y":24.525,"w":0.75,"l":1.977},{"x":53.668,"y":23.619,"w":0.75,"l":1.977},{"x":55.645,"y":24.525,"w":0.75,"l":1.977},{"x":55.645,"y":23.619,"w":0.75,"l":1.977},{"x":57.621,"y":24.525,"w":0.75,"l":1.977},{"x":57.621,"y":23.619,"w":0.75,"l":1.977},{"x":59.598,"y":24.525,"w":0.75,"l":1.977},{"x":59.598,"y":23.619,"w":0.75,"l":1.977},{"x":81.209,"y":24.636,"w":0.75,"l":17.748},{"x":81.209,"y":23.729,"w":0.75,"l":17.748},{"x":19.121,"y":28.65,"w":0.75,"l":1.977},{"x":19.121,"y":27.744,"w":0.75,"l":1.977},{"x":21.098,"y":28.65,"w":0.75,"l":1.977},{"x":21.098,"y":27.744,"w":0.75,"l":1.977},{"x":23.074,"y":28.65,"w":0.75,"l":1.977},{"x":23.074,"y":27.744,"w":0.75,"l":1.977},{"x":25.051,"y":28.65,"w":0.75,"l":1.977},{"x":25.051,"y":27.744,"w":0.75,"l":1.977},{"x":41.809,"y":28.65,"w":0.75,"l":1.977},{"x":41.809,"y":27.744,"w":0.75,"l":1.977},{"x":43.785,"y":28.65,"w":0.75,"l":1.977},{"x":43.785,"y":27.744,"w":0.75,"l":1.977},{"x":45.762,"y":28.65,"w":0.75,"l":1.977},{"x":45.762,"y":27.744,"w":0.75,"l":1.977},{"x":47.738,"y":28.65,"w":0.75,"l":1.977},{"x":47.738,"y":27.744,"w":0.75,"l":1.977},{"x":49.715,"y":28.65,"w":0.75,"l":1.977},{"x":49.715,"y":27.744,"w":0.75,"l":1.977},{"x":51.691,"y":28.65,"w":0.75,"l":1.977},{"x":51.691,"y":27.744,"w":0.75,"l":1.977},{"x":53.668,"y":28.65,"w":0.75,"l":1.977},{"x":53.668,"y":27.744,"w":0.75,"l":1.977},{"x":55.645,"y":28.65,"w":0.75,"l":1.977},{"x":55.645,"y":27.744,"w":0.75,"l":1.977},{"x":57.621,"y":28.65,"w":0.75,"l":1.977},{"x":57.621,"y":27.744,"w":0.75,"l":1.977},{"x":59.598,"y":28.65,"w":0.75,"l":1.977},{"x":59.598,"y":27.744,"w":0.75,"l":1.977},{"x":81.209,"y":28.761,"w":0.75,"l":17.748},{"x":81.209,"y":27.854,"w":0.75,"l":17.748},{"x":19.121,"y":32.775,"w":0.75,"l":1.977},{"x":19.121,"y":31.869,"w":0.75,"l":1.977},{"x":21.098,"y":32.775,"w":0.75,"l":1.977},{"x":21.098,"y":31.869,"w":0.75,"l":1.977},{"x":23.074,"y":32.775,"w":0.75,"l":1.977},{"x":23.074,"y":31.869,"w":0.75,"l":1.977},{"x":25.051,"y":32.775,"w":0.75,"l":1.977},{"x":25.051,"y":31.869,"w":0.75,"l":1.977},{"x":41.809,"y":32.775,"w":0.75,"l":1.977},{"x":41.809,"y":31.869,"w":0.75,"l":1.977},{"x":43.785,"y":32.775,"w":0.75,"l":1.977},{"x":43.785,"y":31.869,"w":0.75,"l":1.977},{"x":45.762,"y":32.775,"w":0.75,"l":1.977},{"x":45.762,"y":31.869,"w":0.75,"l":1.977},{"x":47.738,"y":32.775,"w":0.75,"l":1.977},{"x":47.738,"y":31.869,"w":0.75,"l":1.977},{"x":49.715,"y":32.775,"w":0.75,"l":1.977},{"x":49.715,"y":31.869,"w":0.75,"l":1.977},{"x":51.691,"y":32.775,"w":0.75,"l":1.977},{"x":51.691,"y":31.869,"w":0.75,"l":1.977},{"x":53.668,"y":32.775,"w":0.75,"l":1.977},{"x":53.668,"y":31.869,"w":0.75,"l":1.977},{"x":55.645,"y":32.775,"w":0.75,"l":1.977},{"x":55.645,"y":31.869,"w":0.75,"l":1.977},{"x":57.621,"y":32.775,"w":0.75,"l":1.977},{"x":57.621,"y":31.869,"w":0.75,"l":1.977},{"x":59.598,"y":32.775,"w":0.75,"l":1.977},{"x":59.598,"y":31.869,"w":0.75,"l":1.977},{"x":81.209,"y":32.886,"w":0.75,"l":17.748},{"x":81.209,"y":31.979,"w":0.75,"l":17.748},{"x":19.121,"y":36.9,"w":0.75,"l":1.977},{"x":19.121,"y":35.994,"w":0.75,"l":1.977},{"x":21.098,"y":36.9,"w":0.75,"l":1.977},{"x":21.098,"y":35.994,"w":0.75,"l":1.977},{"x":23.074,"y":36.9,"w":0.75,"l":1.977},{"x":23.074,"y":35.994,"w":0.75,"l":1.977},{"x":25.051,"y":36.9,"w":0.75,"l":1.977},{"x":25.051,"y":35.994,"w":0.75,"l":1.977},{"x":41.809,"y":36.9,"w":0.75,"l":1.977},{"x":41.809,"y":35.994,"w":0.75,"l":1.977},{"x":43.785,"y":36.9,"w":0.75,"l":1.977},{"x":43.785,"y":35.994,"w":0.75,"l":1.977},{"x":45.762,"y":36.9,"w":0.75,"l":1.977},{"x":45.762,"y":35.994,"w":0.75,"l":1.977},{"x":47.738,"y":36.9,"w":0.75,"l":1.977},{"x":47.738,"y":35.994,"w":0.75,"l":1.977},{"x":49.715,"y":36.9,"w":0.75,"l":1.977},{"x":49.715,"y":35.994,"w":0.75,"l":1.977},{"x":51.691,"y":36.9,"w":0.75,"l":1.977},{"x":51.691,"y":35.994,"w":0.75,"l":1.977},{"x":53.668,"y":36.9,"w":0.75,"l":1.977},{"x":53.668,"y":35.994,"w":0.75,"l":1.977},{"x":55.645,"y":36.9,"w":0.75,"l":1.977},{"x":55.645,"y":35.994,"w":0.75,"l":1.977},{"x":57.621,"y":36.9,"w":0.75,"l":1.977},{"x":57.621,"y":35.994,"w":0.75,"l":1.977},{"x":59.598,"y":36.9,"w":0.75,"l":1.977},{"x":59.598,"y":35.994,"w":0.75,"l":1.977},{"x":81.209,"y":37.011,"w":0.75,"l":17.748},{"x":81.209,"y":36.104,"w":0.75,"l":17.748},{"x":81.209,"y":39.448,"w":0.75,"l":17.748},{"x":81.209,"y":38.542,"w":0.75,"l":17.748},{"x":6.188,"y":2.297,"w":2.25,"l":20.066},{"x":26.254,"y":2.297,"w":2.25,"l":53.009},{"x":79.263,"y":2.297,"w":2.25,"l":19.737},{"x":6.188,"y":5.297,"w":2.25,"l":20.066},{"x":26.254,"y":5.297,"w":2.25,"l":53.009},{"x":79.263,"y":5.297,"w":2.25,"l":19.737},{"x":6.23,"y":6.754,"w":0.75,"l":92.727},{"x":6.23,"y":8.25,"w":0.75,"l":92.727},{"x":84.365,"y":5.085,"w":1.5,"l":13.312},{"x":84.365,"y":3.522,"w":1.5,"l":13.312}],"VLines":[{"x":21.098,"y":23.619,"w":0.75,"l":0.906},{"x":19.121,"y":23.619,"w":0.75,"l":0.906},{"x":23.074,"y":23.619,"w":0.75,"l":0.906},{"x":21.098,"y":23.619,"w":0.75,"l":0.906},{"x":25.051,"y":23.619,"w":0.75,"l":0.906},{"x":23.074,"y":23.619,"w":0.75,"l":0.906},{"x":27.027,"y":23.619,"w":0.75,"l":0.906},{"x":25.051,"y":23.619,"w":0.75,"l":0.906},{"x":43.785,"y":23.619,"w":0.75,"l":0.906},{"x":41.809,"y":23.619,"w":0.75,"l":0.906},{"x":45.762,"y":23.619,"w":0.75,"l":0.906},{"x":43.785,"y":23.619,"w":0.75,"l":0.906},{"x":47.738,"y":23.619,"w":0.75,"l":0.906},{"x":45.762,"y":23.619,"w":0.75,"l":0.906},{"x":49.715,"y":23.619,"w":0.75,"l":0.906},{"x":47.738,"y":23.619,"w":0.75,"l":0.906},{"x":51.691,"y":23.619,"w":0.75,"l":0.906},{"x":49.715,"y":23.619,"w":0.75,"l":0.906},{"x":53.668,"y":23.619,"w":0.75,"l":0.906},{"x":51.691,"y":23.619,"w":0.75,"l":0.906},{"x":55.645,"y":23.619,"w":0.75,"l":0.906},{"x":53.668,"y":23.619,"w":0.75,"l":0.906},{"x":57.621,"y":23.619,"w":0.75,"l":0.906},{"x":55.645,"y":23.619,"w":0.75,"l":0.906},{"x":59.598,"y":23.619,"w":0.75,"l":0.906},{"x":57.621,"y":23.619,"w":0.75,"l":0.906},{"x":61.574,"y":23.619,"w":0.75,"l":0.906},{"x":59.598,"y":23.619,"w":0.75,"l":0.906},{"x":95.287,"y":23.737,"w":0.75,"l":0.892},{"x":98.957,"y":23.729,"w":0.75,"l":0.906},{"x":81.209,"y":23.729,"w":0.75,"l":0.906},{"x":21.098,"y":27.744,"w":0.75,"l":0.906},{"x":19.121,"y":27.744,"w":0.75,"l":0.906},{"x":23.074,"y":27.744,"w":0.75,"l":0.906},{"x":21.098,"y":27.744,"w":0.75,"l":0.906},{"x":25.051,"y":27.744,"w":0.75,"l":0.906},{"x":23.074,"y":27.744,"w":0.75,"l":0.906},{"x":27.027,"y":27.744,"w":0.75,"l":0.906},{"x":25.051,"y":27.744,"w":0.75,"l":0.906},{"x":43.785,"y":27.744,"w":0.75,"l":0.906},{"x":41.809,"y":27.744,"w":0.75,"l":0.906},{"x":45.762,"y":27.744,"w":0.75,"l":0.906},{"x":43.785,"y":27.744,"w":0.75,"l":0.906},{"x":47.738,"y":27.744,"w":0.75,"l":0.906},{"x":45.762,"y":27.744,"w":0.75,"l":0.906},{"x":49.715,"y":27.744,"w":0.75,"l":0.906},{"x":47.738,"y":27.744,"w":0.75,"l":0.906},{"x":51.691,"y":27.744,"w":0.75,"l":0.906},{"x":49.715,"y":27.744,"w":0.75,"l":0.906},{"x":53.668,"y":27.744,"w":0.75,"l":0.906},{"x":51.691,"y":27.744,"w":0.75,"l":0.906},{"x":55.645,"y":27.744,"w":0.75,"l":0.906},{"x":53.668,"y":27.744,"w":0.75,"l":0.906},{"x":57.621,"y":27.744,"w":0.75,"l":0.906},{"x":55.645,"y":27.744,"w":0.75,"l":0.906},{"x":59.598,"y":27.744,"w":0.75,"l":0.906},{"x":57.621,"y":27.744,"w":0.75,"l":0.906},{"x":61.574,"y":27.744,"w":0.75,"l":0.906},{"x":59.598,"y":27.744,"w":0.75,"l":0.906},{"x":95.287,"y":27.862,"w":0.75,"l":0.892},{"x":98.957,"y":27.854,"w":0.75,"l":0.906},{"x":81.209,"y":27.854,"w":0.75,"l":0.906},{"x":21.098,"y":31.869,"w":0.75,"l":0.906},{"x":19.121,"y":31.869,"w":0.75,"l":0.906},{"x":23.074,"y":31.869,"w":0.75,"l":0.906},{"x":21.098,"y":31.869,"w":0.75,"l":0.906},{"x":25.051,"y":31.869,"w":0.75,"l":0.906},{"x":23.074,"y":31.869,"w":0.75,"l":0.906},{"x":27.027,"y":31.869,"w":0.75,"l":0.906},{"x":25.051,"y":31.869,"w":0.75,"l":0.906},{"x":43.785,"y":31.869,"w":0.75,"l":0.906},{"x":41.809,"y":31.869,"w":0.75,"l":0.906},{"x":45.762,"y":31.869,"w":0.75,"l":0.906},{"x":43.785,"y":31.869,"w":0.75,"l":0.906},{"x":47.738,"y":31.869,"w":0.75,"l":0.906},{"x":45.762,"y":31.869,"w":0.75,"l":0.906},{"x":49.715,"y":31.869,"w":0.75,"l":0.906},{"x":47.738,"y":31.869,"w":0.75,"l":0.906},{"x":51.691,"y":31.869,"w":0.75,"l":0.906},{"x":49.715,"y":31.869,"w":0.75,"l":0.906},{"x":53.668,"y":31.869,"w":0.75,"l":0.906},{"x":51.691,"y":31.869,"w":0.75,"l":0.906},{"x":55.645,"y":31.869,"w":0.75,"l":0.906},{"x":53.668,"y":31.869,"w":0.75,"l":0.906},{"x":57.621,"y":31.869,"w":0.75,"l":0.906},{"x":55.645,"y":31.869,"w":0.75,"l":0.906},{"x":59.598,"y":31.869,"w":0.75,"l":0.906},{"x":57.621,"y":31.869,"w":0.75,"l":0.906},{"x":61.574,"y":31.869,"w":0.75,"l":0.906},{"x":59.598,"y":31.869,"w":0.75,"l":0.906},{"x":95.287,"y":31.987,"w":0.75,"l":0.892},{"x":98.957,"y":31.979,"w":0.75,"l":0.906},{"x":81.209,"y":31.979,"w":0.75,"l":0.906},{"x":21.098,"y":35.994,"w":0.75,"l":0.906},{"x":19.121,"y":35.994,"w":0.75,"l":0.906},{"x":23.074,"y":35.994,"w":0.75,"l":0.906},{"x":21.098,"y":35.994,"w":0.75,"l":0.906},{"x":25.051,"y":35.994,"w":0.75,"l":0.906},{"x":23.074,"y":35.994,"w":0.75,"l":0.906},{"x":27.027,"y":35.994,"w":0.75,"l":0.906},{"x":25.051,"y":35.994,"w":0.75,"l":0.906},{"x":43.785,"y":35.994,"w":0.75,"l":0.906},{"x":41.809,"y":35.994,"w":0.75,"l":0.906},{"x":45.762,"y":35.994,"w":0.75,"l":0.906},{"x":43.785,"y":35.994,"w":0.75,"l":0.906},{"x":47.738,"y":35.994,"w":0.75,"l":0.906},{"x":45.762,"y":35.994,"w":0.75,"l":0.906},{"x":49.715,"y":35.994,"w":0.75,"l":0.906},{"x":47.738,"y":35.994,"w":0.75,"l":0.906},{"x":51.691,"y":35.994,"w":0.75,"l":0.906},{"x":49.715,"y":35.994,"w":0.75,"l":0.906},{"x":53.668,"y":35.994,"w":0.75,"l":0.906},{"x":51.691,"y":35.994,"w":0.75,"l":0.906},{"x":55.645,"y":35.994,"w":0.75,"l":0.906},{"x":53.668,"y":35.994,"w":0.75,"l":0.906},{"x":57.621,"y":35.994,"w":0.75,"l":0.906},{"x":55.645,"y":35.994,"w":0.75,"l":0.906},{"x":59.598,"y":35.994,"w":0.75,"l":0.906},{"x":57.621,"y":35.994,"w":0.75,"l":0.906},{"x":61.574,"y":35.994,"w":0.75,"l":0.906},{"x":59.598,"y":35.994,"w":0.75,"l":0.906},{"x":95.287,"y":36.112,"w":0.75,"l":0.892},{"x":98.957,"y":36.104,"w":0.75,"l":0.906},{"x":81.209,"y":36.104,"w":0.75,"l":0.906},{"x":95.287,"y":38.55,"w":0.75,"l":0.892},{"x":98.957,"y":38.542,"w":0.75,"l":0.906},{"x":81.209,"y":38.542,"w":0.75,"l":0.906},{"x":6.316,"y":2.344,"w":2.25,"l":2.906},{"x":98.871,"y":2.344,"w":2.25,"l":2.906},{"x":77.325,"y":5.254,"w":0.75,"l":1.5},{"x":77.325,"y":6.75,"w":0.75,"l":1.5},{"x":46.571,"y":5.254,"w":0.75,"l":1.5},{"x":46.571,"y":6.75,"w":0.75,"l":1.5},{"x":98.957,"y":5.254,"w":0.75,"l":1.5},{"x":6.23,"y":5.254,"w":0.75,"l":1.5},{"x":98.957,"y":6.75,"w":0.75,"l":1.5},{"x":6.23,"y":6.75,"w":0.75,"l":1.5},{"x":97.677,"y":3.522,"w":1.5,"l":1.563},{"x":84.365,"y":3.522,"w":1.5,"l":1.563}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":5.938,"y":46.768,"w":11.469000000000005,"clr":0,"A":"left","R":[{"T":"150-101-068%20(Rev.%2012-13)","S":51,"TS":[0,9,0,0]}]},{"x":5.937,"y":8.641,"w":61.95700000000006,"clr":0,"A":"left","R":[{"T":"Would%20you%20like%20to%20deposit%20all%20or%20a%20portion%20of%20your%20refund%20into%20an%20Oregon%20529%20College%20Savings%20Plan%20account%3F%20If%20so%2C%20follow%20the%20instructions%20below.","S":-1,"TS":[0,11.73,0,0]}]},{"x":5.937,"y":10.066,"w":6.683,"clr":0,"A":"left","R":[{"T":"Requirements","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":11.116,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":11.791,"w":8.278,"clr":0,"A":"left","R":[{"T":"information%20below.","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":12.466,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":12.466,"w":22.066,"clr":0,"A":"left","R":[{"T":"Deposits%20must%20be%20a%20minimum%20of%20%2425%20per%20account.","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":13.141,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":13.141,"w":58.45399999999995,"clr":0,"A":"left","R":[{"T":"If%20your%20refund%20is%20used%20to%20pay%20a%20debt%20you%20owe%20or%20the%20amount%20you%20elect%20to%20deposit%20exceeds%20your%20available%20refund%2C%20your%20deposit%20will%20be%20","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":15.241,"w":5.683999999999999,"clr":0,"A":"left","R":[{"T":"Instructions","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":16.291,"w":52.43499999999996,"clr":0,"A":"left","R":[{"T":"You%20may%20deposit%20all%20or%20a%20portion%20of%20your%20refund%20in%20up%20to%20four%20accounts.%20Complete%20all%20the%20fields%20below%20for%20each%20account.","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":17.341,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":17.341,"w":38.24700000000001,"clr":0,"A":"left","R":[{"T":"Select%20the%20account%20manager--Oregon%20College%20Savings%20Plan%20or%20MFS%20529%20Savings%20Plan%3B","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":18.016,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":18.016,"w":49.50899999999996,"clr":0,"A":"left","R":[{"T":"Enter%20the%20four-digit%20portfolio%20number%20(for%20more%20information%20on%20portfolio%20options%2C%20contact%20your%20account%20manager)%3B","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":18.691,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":18.691,"w":19.247000000000003,"clr":0,"A":"left","R":[{"T":"Enter%20the%20nine%20or%20ten-digit%20account%20number%3B","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":19.366,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":19.366,"w":17.266000000000005,"clr":0,"A":"left","R":[{"T":"Enter%20the%20amount%20to%20be%20deposited%3B%20and","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":20.041,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":20.041,"w":15.672000000000002,"clr":0,"A":"left","R":[{"T":"Total%20the%20amounts%20to%20be%20deposited.","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.938,"y":22.291,"w":1.927,"clr":0,"A":"left","R":[{"T":"69a.","S":3,"TS":[0,12,0,0]}]},{"x":9.546,"y":22.291,"w":5.093999999999999,"clr":0,"A":"left","R":[{"T":"Check%20one%3A","S":3,"TS":[0,12,0,0]}]},{"x":18.313,"y":22.381,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":21.921,"y":22.291,"w":13.056000000000001,"clr":0,"A":"left","R":[{"T":"Oregon%20College%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":45.124,"y":22.291,"w":1,"clr":0,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":49.25,"y":22.381,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":52.859,"y":22.291,"w":10.094999999999999,"clr":0,"A":"left","R":[{"T":"MFS%20529%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":23.881,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":9.031,"y":23.791,"w":5.888,"clr":0,"A":"left","R":[{"T":"%20Portfolio%20No.","S":3,"TS":[0,12,0,0]}]},{"x":30.172,"y":23.881,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":31.203,"y":23.791,"w":5.853,"clr":0,"A":"left","R":[{"T":"%20Account%20No.","S":3,"TS":[0,12,0,0]}]},{"x":70.906,"y":23.881,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":71.938,"y":23.791,"w":3.78,"clr":0,"A":"left","R":[{"T":"%20Amount","S":3,"TS":[0,12,0,0]}]},{"x":79.329,"y":23.791,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":95.853,"y":23.667,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":26.416,"w":1.983,"clr":0,"A":"left","R":[{"T":"69b.","S":3,"TS":[0,12,0,0]}]},{"x":9.547,"y":26.416,"w":5.093999999999999,"clr":0,"A":"left","R":[{"T":"Check%20one%3A","S":3,"TS":[0,12,0,0]}]},{"x":18.313,"y":26.506,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":21.921,"y":26.416,"w":13.056000000000001,"clr":0,"A":"left","R":[{"T":"Oregon%20College%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":45.124,"y":26.416,"w":1,"clr":0,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":49.25,"y":26.506,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":52.859,"y":26.416,"w":10.094999999999999,"clr":0,"A":"left","R":[{"T":"MFS%20529%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":28.006,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":9.031,"y":27.916,"w":5.888,"clr":0,"A":"left","R":[{"T":"%20Portfolio%20No.","S":3,"TS":[0,12,0,0]}]},{"x":30.172,"y":28.006,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":31.203,"y":27.916,"w":5.853,"clr":0,"A":"left","R":[{"T":"%20Account%20No.","S":3,"TS":[0,12,0,0]}]},{"x":70.906,"y":28.006,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":71.938,"y":27.916,"w":3.78,"clr":0,"A":"left","R":[{"T":"%20Amount","S":3,"TS":[0,12,0,0]}]},{"x":79.329,"y":27.916,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":95.853,"y":27.792,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":30.541,"w":1.927,"clr":0,"A":"left","R":[{"T":"69c.","S":3,"TS":[0,12,0,0]}]},{"x":9.547,"y":30.541,"w":5.093999999999999,"clr":0,"A":"left","R":[{"T":"Check%20one%3A","S":3,"TS":[0,12,0,0]}]},{"x":18.313,"y":30.631,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":21.921,"y":30.541,"w":13.056000000000001,"clr":0,"A":"left","R":[{"T":"Oregon%20College%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":45.124,"y":30.541,"w":1,"clr":0,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":49.25,"y":30.631,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":52.859,"y":30.541,"w":10.094999999999999,"clr":0,"A":"left","R":[{"T":"MFS%20529%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":32.131,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":9.031,"y":32.041,"w":5.888,"clr":0,"A":"left","R":[{"T":"%20Portfolio%20No.","S":3,"TS":[0,12,0,0]}]},{"x":30.172,"y":32.131,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":31.203,"y":32.041,"w":5.853,"clr":0,"A":"left","R":[{"T":"%20Account%20No.","S":3,"TS":[0,12,0,0]}]},{"x":70.906,"y":32.131,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":71.938,"y":32.041,"w":3.78,"clr":0,"A":"left","R":[{"T":"%20Amount","S":3,"TS":[0,12,0,0]}]},{"x":79.329,"y":32.041,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":95.853,"y":31.917,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":34.666,"w":1.983,"clr":0,"A":"left","R":[{"T":"69d.","S":3,"TS":[0,12,0,0]}]},{"x":9.547,"y":34.666,"w":5.093999999999999,"clr":0,"A":"left","R":[{"T":"Check%20one%3A","S":3,"TS":[0,12,0,0]}]},{"x":18.313,"y":34.756,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":21.921,"y":34.666,"w":13.056000000000001,"clr":0,"A":"left","R":[{"T":"Oregon%20College%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":45.124,"y":34.666,"w":1,"clr":0,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":49.25,"y":34.756,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":52.859,"y":34.666,"w":10.094999999999999,"clr":0,"A":"left","R":[{"T":"MFS%20529%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":36.256,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":9.031,"y":36.166,"w":5.888,"clr":0,"A":"left","R":[{"T":"%20Portfolio%20No.","S":3,"TS":[0,12,0,0]}]},{"x":30.172,"y":36.256,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":31.203,"y":36.166,"w":5.853,"clr":0,"A":"left","R":[{"T":"%20Account%20No.","S":3,"TS":[0,12,0,0]}]},{"x":70.906,"y":36.256,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":71.938,"y":36.166,"w":3.78,"clr":0,"A":"left","R":[{"T":"%20Amount","S":3,"TS":[0,12,0,0]}]},{"x":79.329,"y":36.166,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":95.853,"y":36.042,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":38.791,"w":26.76900000000001,"clr":0,"A":"left","R":[{"T":"Add%20lines%2069a%E2%80%9369d%20and%20enter%20the%20total%20on%20line%2069%20of%20Form%2040.","S":3,"TS":[0,12,0,0]}]},{"x":71.078,"y":38.791,"w":2.4059999999999997,"clr":0,"A":"left","R":[{"T":"Total","S":3,"TS":[0,12,0,0]}]},{"x":79.156,"y":38.791,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":95.853,"y":38.48,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":".00","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":40.966,"w":9.553,"clr":0,"A":"left","R":[{"T":"Contact%20information","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":41.992,"w":16.703000000000003,"clr":0,"A":"left","R":[{"T":"Oregon%20529%20College%20Savings%20Network","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":42.667,"w":13.202,"clr":0,"A":"left","R":[{"T":"www.oregon529network.com","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":43.342,"w":9.765000000000004,"clr":0,"A":"left","R":[{"T":"Phone%3A%20503-373-1903","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":44.017,"w":17.061000000000003,"clr":0,"A":"left","R":[{"T":"Email%3A%20college.savings%40ost.state.or.us","S":3,"TS":[0,12,0,0]}]},{"x":37.081,"y":41.992,"w":12.980999999999998,"clr":0,"A":"left","R":[{"T":"Oregon%20College%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":37.081,"y":42.667,"w":14.867000000000004,"clr":0,"A":"left","R":[{"T":"www.oregoncollegesavings.com%2F","S":3,"TS":[0,12,0,0]}]},{"x":37.081,"y":43.342,"w":10.710000000000004,"clr":0,"A":"left","R":[{"T":"Phone%3A%201-866-772-8464","S":3,"TS":[0,12,0,0]}]},{"x":64.925,"y":41.992,"w":10.02,"clr":0,"A":"left","R":[{"T":"MFS%20529%20Savings%20Plan","S":3,"TS":[0,12,0,0]}]},{"x":64.925,"y":42.667,"w":21.042000000000005,"clr":0,"A":"left","R":[{"T":"https%3A%2F%2Fannex.mfs.com%2Fsubs%2Foregon%2Findex.html","S":3,"TS":[0,12,0,0]}]},{"x":64.925,"y":43.342,"w":10.710000000000004,"clr":0,"A":"left","R":[{"T":"Phone%3A%201-866-529-1637","S":3,"TS":[0,12,0,0]}]},{"x":16.019,"y":45.455,"w":42.355000000000004,"clr":0,"A":"left","R":[{"T":"%E2%80%94YOU%20MUST%20INCLUDE%20THIS%20SCHEDULE%20WITH%20YOUR%20OREGON%20INCOME%20TAX%20RETURN%E2%80%94","S":-1,"TS":[0,13,0,0]}]},{"x":10.71,"y":2.806,"w":4.426,"clr":0,"A":"left","R":[{"T":"Schedule","S":-1,"TS":[0,17,0,0]}]},{"x":9.889,"y":4.056,"w":3.575,"clr":0,"A":"left","R":[{"T":"OR-529","S":-1,"TS":[0,23,0,0]}]},{"x":33.525,"y":2.834,"w":16.353000000000005,"clr":0,"A":"left","R":[{"T":"Oregon%20529%20College%20Savings%20Plan%20%20","S":-1,"TS":[0,17,0,0]}]},{"x":33.864,"y":3.8840000000000003,"w":15.515000000000004,"clr":0,"A":"left","R":[{"T":"Direct%20Deposit%20for%20Form%2040%20Filers","S":-1,"TS":[0,17,0,0]}]},{"x":6.298,"y":4.975,"w":4.669,"clr":0,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"x":6.298,"y":6.471,"w":11.947000000000001,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20last%20name","S":2,"TS":[0,10,0,0]}]},{"x":77.695,"y":4.975,"w":13.186000000000002,"clr":0,"A":"left","R":[{"T":"Social%20Security%20number%20(SSN)","S":2,"TS":[0,10,0,0]}]},{"x":77.695,"y":6.471,"w":9.629999999999999,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20SSN","S":2,"TS":[0,10,0,0]}]},{"x":46.93,"y":4.975,"w":9.243000000000002,"clr":0,"A":"left","R":[{"T":"First%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"x":46.93,"y":6.471,"w":16.577000000000005,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20first%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"x":82.869,"y":5.682,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":88.025,"y":5.682,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":82.869,"y":7.178,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":88.025,"y":7.178,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":86.641,"y":2.419,"w":3.4720000000000004,"clr":0,"A":"left","R":[{"T":"Tax%20year","S":-1,"TS":[0,15,0,0]}]},{"x":7.484,"y":11.116,"w":55.143999999999956,"clr":0,"A":"left","R":[{"T":"To%20make%20this%20choice%2C%20you%20must%20have%20an%20open%20Oregon%20529%20College%20Savings%20Plan%20account.%20For%20more%20information%2C%20see%20contact%20","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.484,"y":13.816,"w":36.839999999999975,"clr":0,"A":"left","R":[{"T":"cancelled.%20Any%20remaining%20refund%20will%20be%20refunded%20by%20paper%20check%20or%20direct%20deposit.","S":-1,"TS":[0,11.91,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TAXYEAR","EN":0},"TI":446,"AM":0,"x":84.562,"y":3.654,"w":12.911,"h":1.372,"TU":"Tax year."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":447,"AM":1024,"x":6.242,"y":5.933,"w":40.085,"h":0.833,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAM","EN":0},"TI":448,"AM":1024,"x":46.69,"y":5.96,"w":24.1,"h":0.833,"TU":"First name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":449,"AM":1024,"x":70.967,"y":5.949,"w":6.177,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":450,"AM":1024,"x":77.202,"y":5.902,"w":21.707,"h":0.847,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":451,"AM":1024,"x":6.435,"y":7.478,"w":40.085,"h":0.833,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAM","EN":0},"TI":452,"AM":1024,"x":46.621,"y":7.492,"w":24.099,"h":0.833,"TU":"First name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":453,"AM":1024,"x":70.93,"y":7.46,"w":6.177,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":454,"AM":1024,"x":77.315,"y":7.372,"w":21.707,"h":0.847,"TU":"spouse social security number. 9 digits."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_PORTNUM_1_","EN":0},"TI":455,"AM":0,"x":19.194,"y":23.666,"w":7.899,"h":0.877,"TU":"Portfolio number.","MV":"9999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_ACCNUM_1_","EN":0},"TI":458,"AM":0,"x":41.807,"y":23.666,"w":19.759,"h":0.877,"TU":"Account number.","MV":"maxl:10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A33_AMT_1_","EN":0},"TI":459,"AM":0,"x":81.192,"y":23.756,"w":14.003,"h":0.878,"TU":"Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_PORTNUM_2_","EN":0},"TI":462,"AM":0,"x":19.235,"y":27.804,"w":7.899,"h":0.877,"TU":"Portfolio number.","MV":"9999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_ACCNUM_2_","EN":0},"TI":463,"AM":0,"x":41.923,"y":27.804,"w":19.759,"h":0.877,"TU":"Account number.","MV":"maxl:10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A33_AMT_2_","EN":0},"TI":464,"AM":0,"x":81.308,"y":27.895,"w":14.003,"h":0.878,"TU":"Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_PORTNUM_3_","EN":0},"TI":465,"AM":0,"x":19.027,"y":31.915,"w":7.899,"h":0.878,"TU":"Portfolio number.","MV":"9999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_ACCNUM_3_","EN":0},"TI":468,"AM":0,"x":41.779,"y":31.868,"w":19.759,"h":0.878,"TU":"Account number.","MV":"maxl:10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A33_AMT_3_","EN":0},"TI":469,"AM":0,"x":81.1,"y":32.005,"w":14.003,"h":0.878,"TU":"Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_PORTNUM_4_","EN":0},"TI":470,"AM":0,"x":19.143,"y":36.054,"w":7.899,"h":0.877,"TU":"Portfolio number.","MV":"9999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A33_ACCNUM_4_","EN":0},"TI":473,"AM":0,"x":41.831,"y":36.03,"w":19.759,"h":0.901,"TU":"Account number.","MV":"maxl:10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A33_AMT_4_","EN":0},"TI":474,"AM":0,"x":81.216,"y":36.144,"w":14.003,"h":0.877,"TU":"Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":475,"AM":1024,"x":81.223,"y":38.539,"w":14.003,"h":0.878}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLPL","EN":0},"TI":456,"AM":0,"x":20.139,"y":22.387,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MSFPL","EN":0},"TI":457,"AM":0,"x":51.047,"y":22.377,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"A33RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLPL","EN":0},"TI":460,"AM":0,"x":20.255,"y":26.526,"w":1.521,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MSFPL","EN":0},"TI":461,"AM":0,"x":51.163,"y":26.516,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"A33RB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLPL","EN":0},"TI":466,"AM":0,"x":20.047,"y":30.637,"w":1.521,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MSFPL","EN":0},"TI":467,"AM":0,"x":50.955,"y":30.627,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"A33RB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COLPL","EN":0},"TI":471,"AM":0,"x":20.163,"y":34.775,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"MSFPL","EN":0},"TI":472,"AM":0,"x":51.071,"y":34.765,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"A33RB_4_","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/ORASC.content.txt b/test/data/or/form/ORASC.content.txt new file mode 100755 index 00000000..c3c2196e --- /dev/null +++ b/test/data/or/form/ORASC.content.txt @@ -0,0 +1,152 @@ +150-101-063 (Rev. 12-13) +Schedule + +OR-ASC +Oregon Adjustments +for Form 40 Filers +2013 +Last name +Spouse’s/RDP’s last name +Social Security number (SSN) +Spouse’s/RDP’s SSN +First name and initial +Spouse’s/RDP’s first name and initial +—YOU MUST INCLUDE THIS SCHEDULE WITH YOUR OREGON INCOME TAX RETURN— + + +Identify the code and amount for each item you are claiming. If you are not claiming more than one of each item, do not use this form; +instead identify the item on your return. If you have more items than will fit on a single schedule, provide the codes and amounts on + + + + + + + + + + + +to another state, or other credits you claim below +. +Other additions +(codes 100–131) +Code +Amount +• +10a +• +10b +• +10c +• +10d +• +10e +• +10f +• +10g +• +10h +• +10i +• +10j +Enter total on Form 40, line 10 +$ +Other subtractions +(codes 300–352) +Code +Amount +• +18a +• +18b +• +18c +• +18d +• +18e +• +18f +• +18g +• +18h +• +18i +• +18j +Enter total on Form 40, line 18 +$ +Credit for income taxes paid to another state +State abbreviation +Amount +• +38a +• +38b +• +38c +• +38d +• +38e +• +38f +• +38g +• +38h +• +38i +• +38j +Enter total on Form 40, line 38 +$ +Other credits +(codes 700–753) +Code +Amount +• +39a +• +39b +• +39c +• +39d +• +39e +• +39f +• +39g +• +39h +• +39i +• +39j +Enter total on Form 40, line 39 +$ +– + +– +– + +– +• +Other additions. +• +Other subtractions. +• +• +Other credits. +Credits for income taxes paid to another state. +additional schedules and add the total to your tax return. Include this schedule with your Form 40. +Instructions: Use this form to claim more than one of the following on your return: +Remember: Check the “Schedule Included” box on your Form 40 for other additions, other subtractions, credit for income taxes paid +----------------Page (0) Break---------------- diff --git a/test/data/or/form/ORASC.fields.json b/test/data/or/form/ORASC.fields.json new file mode 100755 index 00000000..0a1cf5fd --- /dev/null +++ b/test/data/or/form/ORASC.fields.json @@ -0,0 +1 @@ +[{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAM","type":"alpha","calc":true,"value":""},{"id":"TPINIT","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAM","type":"alpha","calc":true,"value":""},{"id":"SPINIT","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"ADDITION_CODE10_1_","type":"mask","calc":false,"value":""},{"id":"ADDITION_AMT10_1_","type":"number","calc":false,"value":""},{"id":"STATE_ST38_1_","type":"alpha","calc":false,"value":""},{"id":"STATE_AMT38_1_","type":"number","calc":false,"value":""},{"id":"ADDITION_CODE10_2_","type":"mask","calc":false,"value":""},{"id":"ADDITION_AMT10_2_","type":"number","calc":false,"value":""},{"id":"STATE_ST38_2_","type":"alpha","calc":false,"value":""},{"id":"STATE_AMT38_2_","type":"number","calc":false,"value":""},{"id":"ADDITION_CODE10_3_","type":"mask","calc":false,"value":""},{"id":"ADDITION_AMT10_3_","type":"number","calc":false,"value":""},{"id":"STATE_ST38_3_","type":"alpha","calc":false,"value":""},{"id":"STATE_AMT38_3_","type":"number","calc":false,"value":""},{"id":"ADDITION_CODE10_4_","type":"mask","calc":false,"value":""},{"id":"ADDITION_AMT10_4_","type":"number","calc":false,"value":""},{"id":"STATE_ST38_4_","type":"alpha","calc":false,"value":""},{"id":"STATE_AMT38_4_","type":"number","calc":false,"value":""},{"id":"ADDITION_CODE10_5_","type":"mask","calc":false,"value":""},{"id":"ADDITION_AMT10_5_","type":"number","calc":false,"value":""},{"id":"STATE_ST38_5_","type":"alpha","calc":false,"value":""},{"id":"STATE_AMT38_5_","type":"number","calc":false,"value":""},{"id":"TOTAMT10","type":"number","calc":true,"value":""},{"id":"TOTAMT38","type":"number","calc":true,"value":""},{"id":"SUBTRACT_CODE18_1_","type":"mask","calc":false,"value":""},{"id":"SUBTRACT_AMT18_1_","type":"number","calc":false,"value":""},{"id":"CREDITS_CODE39_1_","type":"mask","calc":false,"value":""},{"id":"CREDITS_AMT39_1_","type":"number","calc":false,"value":""},{"id":"SUBTRACT_CODE18_2_","type":"mask","calc":false,"value":""},{"id":"SUBTRACT_AMT18_2_","type":"number","calc":false,"value":""},{"id":"CREDITS_CODE39_2_","type":"mask","calc":false,"value":""},{"id":"CREDITS_AMT39_2_","type":"number","calc":false,"value":""},{"id":"SUBTRACT_CODE18_3_","type":"mask","calc":false,"value":""},{"id":"SUBTRACT_AMT18_3_","type":"number","calc":false,"value":""},{"id":"CREDITS_CODE39_3_","type":"mask","calc":false,"value":""},{"id":"CREDITS_AMT39_3_","type":"number","calc":false,"value":""},{"id":"SUBTRACT_CODE18_4_","type":"mask","calc":false,"value":""},{"id":"SUBTRACT_AMT18_4_","type":"number","calc":false,"value":""},{"id":"CREDITS_CODE39_4_","type":"mask","calc":false,"value":""},{"id":"CREDITS_AMT39_4_","type":"number","calc":false,"value":""},{"id":"SUBTRACT_CODE18_5_","type":"mask","calc":false,"value":""},{"id":"SUBTRACT_AMT18_5_","type":"number","calc":false,"value":""},{"id":"CREDITS_CODE39_5_","type":"mask","calc":false,"value":""},{"id":"CREDITS_AMT39_5_","type":"number","calc":false,"value":""},{"id":"TOTAMT18","type":"number","calc":true,"value":""},{"id":"TOTAMT39","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/ORASC.json b/test/data/or/form/ORASC.json new file mode 100755 index 00000000..e8e99293 --- /dev/null +++ b/test/data/or/form/ORASC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":6.188,"y":2.297,"w":2.25,"l":20.066},{"x":26.254,"y":2.297,"w":2.25,"l":53.009},{"x":79.263,"y":2.297,"w":2.25,"l":19.737},{"x":6.188,"y":5.297,"w":2.25,"l":20.066},{"x":26.254,"y":5.297,"w":2.25,"l":53.009},{"x":79.263,"y":5.297,"w":2.25,"l":19.737},{"x":6.23,"y":6.754,"w":0.75,"l":92.727},{"x":6.23,"y":8.25,"w":0.75,"l":92.727},{"x":6.188,"y":20.248,"w":0.75,"l":4.168},{"x":10.355,"y":20.248,"w":0.75,"l":16.163},{"x":26.518,"y":20.248,"w":0.75,"l":4.125},{"x":30.643,"y":20.248,"w":0.75,"l":19.888},{"x":6.188,"y":20.998,"w":0.75,"l":4.168},{"x":10.355,"y":20.998,"w":0.75,"l":16.163},{"x":26.518,"y":20.998,"w":0.75,"l":4.125},{"x":30.643,"y":20.998,"w":0.75,"l":19.888},{"x":6.188,"y":21.748,"w":0.75,"l":4.168},{"x":10.355,"y":21.748,"w":0.75,"l":16.163},{"x":26.518,"y":21.748,"w":0.75,"l":4.125},{"x":30.643,"y":21.748,"w":0.75,"l":19.888},{"x":6.188,"y":22.498,"w":0.75,"l":4.168},{"x":10.355,"y":22.498,"w":0.75,"l":16.163},{"x":26.518,"y":22.498,"w":0.75,"l":4.125},{"x":30.643,"y":22.498,"w":0.75,"l":19.888},{"x":6.188,"y":23.248,"w":0.75,"l":4.168},{"x":10.355,"y":23.248,"w":0.75,"l":16.163},{"x":26.518,"y":23.248,"w":0.75,"l":4.125},{"x":30.643,"y":23.248,"w":0.75,"l":19.888},{"x":30.6,"y":23.998,"w":0.75,"l":19.931},{"x":6.188,"y":18.748,"w":0.75,"l":4.168},{"x":10.355,"y":18.748,"w":0.75,"l":16.163},{"x":26.518,"y":18.748,"w":0.75,"l":4.125},{"x":30.643,"y":18.748,"w":0.75,"l":19.888},{"x":6.188,"y":19.498,"w":0.75,"l":4.168},{"x":10.355,"y":19.498,"w":0.75,"l":16.163},{"x":26.518,"y":19.498,"w":0.75,"l":4.125},{"x":30.643,"y":19.498,"w":0.75,"l":19.888},{"x":6.188,"y":27.042,"w":0.75,"l":4.168},{"x":10.355,"y":27.042,"w":0.75,"l":16.163},{"x":26.518,"y":27.042,"w":0.75,"l":4.125},{"x":30.643,"y":27.042,"w":0.75,"l":19.888},{"x":6.188,"y":27.792,"w":0.75,"l":4.168},{"x":10.355,"y":27.792,"w":0.75,"l":16.163},{"x":26.518,"y":27.792,"w":0.75,"l":4.125},{"x":30.643,"y":27.792,"w":0.75,"l":19.888},{"x":6.188,"y":28.542,"w":0.75,"l":4.168},{"x":10.355,"y":28.542,"w":0.75,"l":16.163},{"x":26.518,"y":28.542,"w":0.75,"l":4.125},{"x":30.643,"y":28.542,"w":0.75,"l":19.888},{"x":6.188,"y":29.292,"w":0.75,"l":4.168},{"x":10.355,"y":29.292,"w":0.75,"l":16.163},{"x":26.518,"y":29.292,"w":0.75,"l":4.125},{"x":30.643,"y":29.292,"w":0.75,"l":19.888},{"x":6.188,"y":30.042,"w":0.75,"l":4.168},{"x":10.355,"y":30.042,"w":0.75,"l":16.163},{"x":26.518,"y":30.042,"w":0.75,"l":4.125},{"x":30.643,"y":30.042,"w":0.75,"l":19.888},{"x":30.6,"y":30.792,"w":0.75,"l":19.931},{"x":6.188,"y":25.542,"w":0.75,"l":4.168},{"x":10.355,"y":25.542,"w":0.75,"l":16.163},{"x":26.518,"y":25.542,"w":0.75,"l":4.125},{"x":30.643,"y":25.542,"w":0.75,"l":19.888},{"x":6.188,"y":26.292,"w":0.75,"l":4.168},{"x":10.355,"y":26.292,"w":0.75,"l":16.163},{"x":26.518,"y":26.292,"w":0.75,"l":4.125},{"x":30.643,"y":26.292,"w":0.75,"l":19.888},{"x":54.656,"y":20.248,"w":0.75,"l":4.168},{"x":58.824,"y":20.248,"w":0.75,"l":16.163},{"x":74.987,"y":20.248,"w":0.75,"l":4.125},{"x":79.112,"y":20.248,"w":0.75,"l":19.888},{"x":54.656,"y":20.998,"w":0.75,"l":4.168},{"x":58.824,"y":20.998,"w":0.75,"l":16.163},{"x":74.987,"y":20.998,"w":0.75,"l":4.125},{"x":79.112,"y":20.998,"w":0.75,"l":19.888},{"x":54.656,"y":21.748,"w":0.75,"l":4.168},{"x":58.824,"y":21.748,"w":0.75,"l":16.163},{"x":74.987,"y":21.748,"w":0.75,"l":4.125},{"x":79.112,"y":21.748,"w":0.75,"l":19.888},{"x":54.656,"y":22.498,"w":0.75,"l":4.168},{"x":58.824,"y":22.498,"w":0.75,"l":16.163},{"x":74.987,"y":22.498,"w":0.75,"l":4.125},{"x":79.112,"y":22.498,"w":0.75,"l":19.888},{"x":54.656,"y":23.248,"w":0.75,"l":4.168},{"x":58.824,"y":23.248,"w":0.75,"l":16.163},{"x":74.987,"y":23.248,"w":0.75,"l":4.125},{"x":79.112,"y":23.248,"w":0.75,"l":19.888},{"x":79.069,"y":23.998,"w":0.75,"l":19.931},{"x":54.656,"y":18.748,"w":0.75,"l":4.168},{"x":58.824,"y":18.748,"w":0.75,"l":16.163},{"x":74.987,"y":18.748,"w":0.75,"l":4.125},{"x":79.112,"y":18.748,"w":0.75,"l":19.888},{"x":54.656,"y":19.498,"w":0.75,"l":4.168},{"x":58.824,"y":19.498,"w":0.75,"l":16.163},{"x":74.987,"y":19.498,"w":0.75,"l":4.125},{"x":79.112,"y":19.498,"w":0.75,"l":19.888},{"x":54.656,"y":27.042,"w":0.75,"l":4.168},{"x":58.824,"y":27.042,"w":0.75,"l":16.163},{"x":74.987,"y":27.042,"w":0.75,"l":4.125},{"x":79.112,"y":27.042,"w":0.75,"l":19.888},{"x":54.656,"y":27.792,"w":0.75,"l":4.168},{"x":58.824,"y":27.792,"w":0.75,"l":16.163},{"x":74.987,"y":27.792,"w":0.75,"l":4.125},{"x":79.112,"y":27.792,"w":0.75,"l":19.888},{"x":54.656,"y":28.542,"w":0.75,"l":4.168},{"x":58.824,"y":28.542,"w":0.75,"l":16.163},{"x":74.987,"y":28.542,"w":0.75,"l":4.125},{"x":79.112,"y":28.542,"w":0.75,"l":19.888},{"x":54.656,"y":29.292,"w":0.75,"l":4.168},{"x":58.824,"y":29.292,"w":0.75,"l":16.163},{"x":74.987,"y":29.292,"w":0.75,"l":4.125},{"x":79.112,"y":29.292,"w":0.75,"l":19.888},{"x":54.656,"y":30.042,"w":0.75,"l":4.168},{"x":58.824,"y":30.042,"w":0.75,"l":16.163},{"x":74.987,"y":30.042,"w":0.75,"l":4.125},{"x":79.112,"y":30.042,"w":0.75,"l":19.888},{"x":79.069,"y":30.792,"w":0.75,"l":19.931},{"x":54.656,"y":25.542,"w":0.75,"l":4.168},{"x":58.824,"y":25.542,"w":0.75,"l":16.163},{"x":74.987,"y":25.542,"w":0.75,"l":4.125},{"x":79.112,"y":25.542,"w":0.75,"l":19.888},{"x":54.656,"y":26.292,"w":0.75,"l":4.168},{"x":58.824,"y":26.292,"w":0.75,"l":16.163},{"x":74.987,"y":26.292,"w":0.75,"l":4.125},{"x":79.112,"y":26.292,"w":0.75,"l":19.888},{"x":6.188,"y":17.215,"w":0.75,"l":92.813},{"x":6.188,"y":31.502,"w":0.501,"l":92.813},{"x":6.188,"y":31.606,"w":0.501,"l":92.813}],"VLines":[{"x":6.316,"y":2.344,"w":2.25,"l":2.906},{"x":98.871,"y":2.344,"w":2.25,"l":2.906},{"x":77.325,"y":5.254,"w":0.75,"l":1.5},{"x":77.325,"y":6.75,"w":0.75,"l":1.5},{"x":46.571,"y":5.254,"w":0.75,"l":1.5},{"x":46.571,"y":6.75,"w":0.75,"l":1.5},{"x":98.957,"y":5.254,"w":0.75,"l":1.5},{"x":6.23,"y":5.254,"w":0.75,"l":1.5},{"x":98.957,"y":6.75,"w":0.75,"l":1.5},{"x":6.23,"y":6.75,"w":0.75,"l":1.5},{"x":6.23,"y":19.513,"w":0.75,"l":0.719},{"x":10.355,"y":19.513,"w":0.75,"l":0.719},{"x":26.518,"y":19.513,"w":0.75,"l":0.719},{"x":30.643,"y":19.513,"w":0.75,"l":0.719},{"x":50.488,"y":19.513,"w":0.75,"l":0.719},{"x":6.23,"y":20.263,"w":0.75,"l":0.719},{"x":10.355,"y":20.263,"w":0.75,"l":0.719},{"x":26.518,"y":20.263,"w":0.75,"l":0.719},{"x":30.643,"y":20.263,"w":0.75,"l":0.719},{"x":50.488,"y":20.263,"w":0.75,"l":0.719},{"x":6.23,"y":21.013,"w":0.75,"l":0.719},{"x":10.355,"y":21.013,"w":0.75,"l":0.719},{"x":26.518,"y":21.013,"w":0.75,"l":0.719},{"x":30.643,"y":21.013,"w":0.75,"l":0.719},{"x":50.488,"y":21.013,"w":0.75,"l":0.719},{"x":6.23,"y":21.763,"w":0.75,"l":0.719},{"x":10.355,"y":21.763,"w":0.75,"l":0.719},{"x":26.518,"y":21.763,"w":0.75,"l":0.719},{"x":30.643,"y":21.763,"w":0.75,"l":0.719},{"x":50.488,"y":21.763,"w":0.75,"l":0.719},{"x":6.23,"y":22.513,"w":0.75,"l":0.719},{"x":10.355,"y":22.513,"w":0.75,"l":0.719},{"x":26.518,"y":22.513,"w":0.75,"l":0.719},{"x":30.643,"y":22.513,"w":0.75,"l":0.719},{"x":50.488,"y":22.513,"w":0.75,"l":0.719},{"x":30.643,"y":23.263,"w":0.75,"l":0.719},{"x":50.488,"y":23.263,"w":0.75,"l":0.719},{"x":6.23,"y":18.763,"w":0.75,"l":0.719},{"x":26.518,"y":18.763,"w":0.75,"l":0.719},{"x":50.488,"y":18.763,"w":0.75,"l":0.719},{"x":6.23,"y":26.307,"w":0.75,"l":0.719},{"x":10.355,"y":26.307,"w":0.75,"l":0.719},{"x":26.518,"y":26.307,"w":0.75,"l":0.719},{"x":30.643,"y":26.307,"w":0.75,"l":0.719},{"x":50.488,"y":26.307,"w":0.75,"l":0.719},{"x":6.23,"y":27.057,"w":0.75,"l":0.719},{"x":10.355,"y":27.057,"w":0.75,"l":0.719},{"x":26.518,"y":27.057,"w":0.75,"l":0.719},{"x":30.643,"y":27.057,"w":0.75,"l":0.719},{"x":50.488,"y":27.057,"w":0.75,"l":0.719},{"x":6.23,"y":27.807,"w":0.75,"l":0.719},{"x":10.355,"y":27.807,"w":0.75,"l":0.719},{"x":26.518,"y":27.807,"w":0.75,"l":0.719},{"x":30.643,"y":27.807,"w":0.75,"l":0.719},{"x":50.488,"y":27.807,"w":0.75,"l":0.719},{"x":6.23,"y":28.557,"w":0.75,"l":0.719},{"x":10.355,"y":28.557,"w":0.75,"l":0.719},{"x":26.518,"y":28.557,"w":0.75,"l":0.719},{"x":30.643,"y":28.557,"w":0.75,"l":0.719},{"x":50.488,"y":28.557,"w":0.75,"l":0.719},{"x":6.23,"y":29.307,"w":0.75,"l":0.719},{"x":10.355,"y":29.307,"w":0.75,"l":0.719},{"x":26.518,"y":29.307,"w":0.75,"l":0.719},{"x":30.643,"y":29.307,"w":0.75,"l":0.719},{"x":50.488,"y":29.307,"w":0.75,"l":0.719},{"x":30.643,"y":30.057,"w":0.75,"l":0.719},{"x":50.488,"y":30.057,"w":0.75,"l":0.719},{"x":6.23,"y":25.557,"w":0.75,"l":0.719},{"x":26.518,"y":25.557,"w":0.75,"l":0.719},{"x":50.488,"y":25.557,"w":0.75,"l":0.719},{"x":54.699,"y":19.513,"w":0.75,"l":0.719},{"x":58.824,"y":19.513,"w":0.75,"l":0.719},{"x":74.987,"y":19.513,"w":0.75,"l":0.719},{"x":79.112,"y":19.513,"w":0.75,"l":0.719},{"x":98.957,"y":19.513,"w":0.75,"l":0.719},{"x":54.699,"y":20.263,"w":0.75,"l":0.719},{"x":58.824,"y":20.263,"w":0.75,"l":0.719},{"x":74.987,"y":20.263,"w":0.75,"l":0.719},{"x":79.112,"y":20.263,"w":0.75,"l":0.719},{"x":98.957,"y":20.263,"w":0.75,"l":0.719},{"x":54.699,"y":21.013,"w":0.75,"l":0.719},{"x":58.824,"y":21.013,"w":0.75,"l":0.719},{"x":74.987,"y":21.013,"w":0.75,"l":0.719},{"x":79.112,"y":21.013,"w":0.75,"l":0.719},{"x":98.957,"y":21.013,"w":0.75,"l":0.719},{"x":54.699,"y":21.763,"w":0.75,"l":0.719},{"x":58.824,"y":21.763,"w":0.75,"l":0.719},{"x":74.987,"y":21.763,"w":0.75,"l":0.719},{"x":79.112,"y":21.763,"w":0.75,"l":0.719},{"x":98.957,"y":21.763,"w":0.75,"l":0.719},{"x":54.699,"y":22.513,"w":0.75,"l":0.719},{"x":58.824,"y":22.513,"w":0.75,"l":0.719},{"x":74.987,"y":22.513,"w":0.75,"l":0.719},{"x":79.112,"y":22.513,"w":0.75,"l":0.719},{"x":98.957,"y":22.513,"w":0.75,"l":0.719},{"x":79.112,"y":23.263,"w":0.75,"l":0.719},{"x":98.957,"y":23.263,"w":0.75,"l":0.719},{"x":54.699,"y":18.763,"w":0.75,"l":0.719},{"x":74.987,"y":18.763,"w":0.75,"l":0.719},{"x":98.957,"y":18.763,"w":0.75,"l":0.719},{"x":54.699,"y":26.307,"w":0.75,"l":0.719},{"x":58.824,"y":26.307,"w":0.75,"l":0.719},{"x":74.987,"y":26.307,"w":0.75,"l":0.719},{"x":79.112,"y":26.307,"w":0.75,"l":0.719},{"x":98.957,"y":26.307,"w":0.75,"l":0.719},{"x":54.699,"y":27.057,"w":0.75,"l":0.719},{"x":58.824,"y":27.057,"w":0.75,"l":0.719},{"x":74.987,"y":27.057,"w":0.75,"l":0.719},{"x":79.112,"y":27.057,"w":0.75,"l":0.719},{"x":98.957,"y":27.057,"w":0.75,"l":0.719},{"x":54.699,"y":27.807,"w":0.75,"l":0.719},{"x":58.824,"y":27.807,"w":0.75,"l":0.719},{"x":74.987,"y":27.807,"w":0.75,"l":0.719},{"x":79.112,"y":27.807,"w":0.75,"l":0.719},{"x":98.957,"y":27.807,"w":0.75,"l":0.719},{"x":54.699,"y":28.557,"w":0.75,"l":0.719},{"x":58.824,"y":28.557,"w":0.75,"l":0.719},{"x":74.987,"y":28.557,"w":0.75,"l":0.719},{"x":79.112,"y":28.557,"w":0.75,"l":0.719},{"x":98.957,"y":28.557,"w":0.75,"l":0.719},{"x":54.699,"y":29.307,"w":0.75,"l":0.719},{"x":58.824,"y":29.307,"w":0.75,"l":0.719},{"x":74.987,"y":29.307,"w":0.75,"l":0.719},{"x":79.112,"y":29.307,"w":0.75,"l":0.719},{"x":98.957,"y":29.307,"w":0.75,"l":0.719},{"x":79.112,"y":30.057,"w":0.75,"l":0.719},{"x":98.957,"y":30.057,"w":0.75,"l":0.719},{"x":54.699,"y":25.557,"w":0.75,"l":0.719},{"x":74.987,"y":25.557,"w":0.75,"l":0.719},{"x":98.957,"y":25.557,"w":0.75,"l":0.719}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":5.938,"y":46.768,"w":11.469000000000005,"clr":0,"A":"left","R":[{"T":"150-101-063%20(Rev.%2012-13)","S":51,"TS":[0,9,0,0]}]},{"x":10.71,"y":2.806,"w":4.426,"clr":0,"A":"left","R":[{"T":"Schedule","S":-1,"TS":[0,17,0,0]}]},{"x":9.191,"y":4.056,"w":3.982,"clr":0,"A":"left","R":[{"T":"OR-ASC","S":-1,"TS":[0,23,0,0]}]},{"x":41.021,"y":2.834,"w":10.13,"clr":0,"A":"left","R":[{"T":"Oregon%20Adjustments%20","S":-1,"TS":[0,17,0,0]}]},{"x":42.417,"y":3.8840000000000003,"w":8.387,"clr":0,"A":"left","R":[{"T":"for%20Form%2040%20Filers","S":-1,"TS":[0,17,0,0]}]},{"x":80.045,"y":3.8499999999999996,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,39,0,0]}]},{"x":6.298,"y":4.975,"w":4.669,"clr":0,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"x":6.298,"y":6.471,"w":11.947000000000001,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20last%20name","S":2,"TS":[0,10,0,0]}]},{"x":77.695,"y":4.975,"w":13.186000000000002,"clr":0,"A":"left","R":[{"T":"Social%20Security%20number%20(SSN)","S":2,"TS":[0,10,0,0]}]},{"x":77.695,"y":6.471,"w":9.629999999999999,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20SSN","S":2,"TS":[0,10,0,0]}]},{"x":46.93,"y":4.975,"w":9.243000000000002,"clr":0,"A":"left","R":[{"T":"First%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"x":46.93,"y":6.471,"w":16.577000000000005,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20first%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"x":16.028,"y":38.074,"w":42.355000000000004,"clr":0,"A":"left","R":[{"T":"%E2%80%94YOU%20MUST%20INCLUDE%20THIS%20SCHEDULE%20WITH%20YOUR%20OREGON%20INCOME%20TAX%20RETURN%E2%80%94","S":-1,"TS":[0,13,0,0]}]},{"x":5.937,"y":12.81,"w":59.906999999999925,"clr":0,"A":"left","R":[{"T":"Identify%20the%20code%20and%20amount%20for%20each%20item%20you%20are%20claiming.%20If%20you%20are%20not%20claiming%20more%20than%20one%20of%20each%20item%2C%20do%20not%20use%20this%20form%3B%20","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":13.485,"w":58.84899999999994,"clr":0,"A":"left","R":[{"T":"instead%20identify%20the%20item%20on%20your%20return.%20If%20you%20have%20more%20items%20than%20will%20fit%20on%20a%20single%20schedule%2C%20provide%20the%20codes%20and%20amounts%20on%20","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.938,"y":15.885000000000002,"w":21.947000000000006,"clr":0,"A":"left","R":[{"T":"to%20another%20state%2C%20or%20other%20credits%20you%20claim%20below","S":-1,"TS":[0,11.91,0,0]}]},{"x":39.435,"y":15.885000000000002,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.938,"y":17.732,"w":7.647,"clr":0,"A":"left","R":[{"T":"Other%20additions%20","S":4,"TS":[0,14,0,0]}]},{"x":20.682,"y":17.732,"w":7.373000000000001,"clr":0,"A":"left","R":[{"T":"(codes%20100%E2%80%93131)","S":4,"TS":[0,14,0,0]}]},{"x":14.338,"y":18.551,"w":2.601,"clr":0,"A":"left","R":[{"T":"Code","S":-1,"TS":[0,11,0,0]}]},{"x":35.605,"y":18.551,"w":3.854,"clr":0,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"x":6.394,"y":19.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.425,"y":19.299,"w":1.649,"clr":0,"A":"left","R":[{"T":"10a","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":19.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":19.299,"w":1.705,"clr":0,"A":"left","R":[{"T":"10b","S":-1,"TS":[0,11,0,0]}]},{"x":6.394,"y":20.111,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.425,"y":20.049,"w":1.649,"clr":0,"A":"left","R":[{"T":"10c","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":20.111,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":20.049,"w":1.705,"clr":0,"A":"left","R":[{"T":"10d","S":-1,"TS":[0,11,0,0]}]},{"x":6.394,"y":20.861,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.425,"y":20.799,"w":1.649,"clr":0,"A":"left","R":[{"T":"10e","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":20.861,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":20.799,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"10f","S":-1,"TS":[0,11,0,0]}]},{"x":6.368,"y":21.611,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.399,"y":21.549,"w":1.6860000000000002,"clr":0,"A":"left","R":[{"T":"10g","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":21.611,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":21.549,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"10h","S":-1,"TS":[0,11,0,0]}]},{"x":6.61,"y":22.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.641,"y":22.299,"w":1.334,"clr":0,"A":"left","R":[{"T":"10i","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":22.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":22.299,"w":1.334,"clr":0,"A":"left","R":[{"T":"10j","S":-1,"TS":[0,11,0,0]}]},{"x":9.928,"y":23.051,"w":14.259000000000004,"clr":0,"A":"left","R":[{"T":"Enter%20total%20on%20Form%2040%2C%20line%2010","S":-1,"TS":[0,11,0,0]}]},{"x":30.737,"y":23.051,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":24.526,"w":9.223,"clr":0,"A":"left","R":[{"T":"Other%20subtractions%20","S":4,"TS":[0,14,0,0]}]},{"x":23.375,"y":24.526,"w":7.373000000000001,"clr":0,"A":"left","R":[{"T":"(codes%20300%E2%80%93352)","S":4,"TS":[0,14,0,0]}]},{"x":14.338,"y":25.345,"w":2.601,"clr":0,"A":"left","R":[{"T":"Code","S":-1,"TS":[0,11,0,0]}]},{"x":35.605,"y":25.345,"w":3.854,"clr":0,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"x":6.394,"y":26.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.425,"y":26.093,"w":1.649,"clr":0,"A":"left","R":[{"T":"18a","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":26.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":26.093,"w":1.705,"clr":0,"A":"left","R":[{"T":"18b","S":-1,"TS":[0,11,0,0]}]},{"x":6.394,"y":26.905,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.425,"y":26.843,"w":1.649,"clr":0,"A":"left","R":[{"T":"18c","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":26.905,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":26.843,"w":1.705,"clr":0,"A":"left","R":[{"T":"18d","S":-1,"TS":[0,11,0,0]}]},{"x":6.394,"y":27.655,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.425,"y":27.593,"w":1.649,"clr":0,"A":"left","R":[{"T":"18e","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":27.655,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":27.593,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"18f","S":-1,"TS":[0,11,0,0]}]},{"x":6.368,"y":28.405,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.399,"y":28.343,"w":1.6860000000000002,"clr":0,"A":"left","R":[{"T":"18g","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":28.405,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":28.343,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"18h","S":-1,"TS":[0,11,0,0]}]},{"x":6.61,"y":29.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":7.641,"y":29.093,"w":1.334,"clr":0,"A":"left","R":[{"T":"18i","S":-1,"TS":[0,11,0,0]}]},{"x":26.612,"y":29.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":27.643,"y":29.093,"w":1.334,"clr":0,"A":"left","R":[{"T":"18j","S":-1,"TS":[0,11,0,0]}]},{"x":9.928,"y":29.845,"w":14.259000000000004,"clr":0,"A":"left","R":[{"T":"Enter%20total%20on%20Form%2040%2C%20line%2018","S":-1,"TS":[0,11,0,0]}]},{"x":30.737,"y":29.845,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"x":54.406,"y":17.732,"w":21.386000000000006,"clr":0,"A":"left","R":[{"T":"Credit%20for%20income%20taxes%20paid%20to%20another%20state","S":4,"TS":[0,14,0,0]}]},{"x":58.374,"y":18.551,"w":9.100000000000001,"clr":0,"A":"left","R":[{"T":"State%20abbreviation","S":-1,"TS":[0,11,0,0]}]},{"x":84.074,"y":18.551,"w":3.854,"clr":0,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"x":54.862,"y":19.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.894,"y":19.299,"w":1.649,"clr":0,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,11,0,0]}]},{"x":75.111,"y":19.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.143,"y":19.299,"w":1.705,"clr":0,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,11,0,0]}]},{"x":54.862,"y":20.111,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.894,"y":20.049,"w":1.649,"clr":0,"A":"left","R":[{"T":"38c","S":-1,"TS":[0,11,0,0]}]},{"x":75.111,"y":20.111,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.143,"y":20.049,"w":1.705,"clr":0,"A":"left","R":[{"T":"38d","S":-1,"TS":[0,11,0,0]}]},{"x":54.862,"y":20.861,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.894,"y":20.799,"w":1.649,"clr":0,"A":"left","R":[{"T":"38e","S":-1,"TS":[0,11,0,0]}]},{"x":75.316,"y":20.861,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.347,"y":20.799,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"38f","S":-1,"TS":[0,11,0,0]}]},{"x":54.837,"y":21.611,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.868,"y":21.549,"w":1.6860000000000002,"clr":0,"A":"left","R":[{"T":"38g","S":-1,"TS":[0,11,0,0]}]},{"x":75.137,"y":21.611,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.168,"y":21.549,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"38h","S":-1,"TS":[0,11,0,0]}]},{"x":55.079,"y":22.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":56.11,"y":22.299,"w":1.334,"clr":0,"A":"left","R":[{"T":"38i","S":-1,"TS":[0,11,0,0]}]},{"x":75.367,"y":22.361,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.398,"y":22.299,"w":1.334,"clr":0,"A":"left","R":[{"T":"38j","S":-1,"TS":[0,11,0,0]}]},{"x":58.396,"y":23.051,"w":14.259000000000004,"clr":0,"A":"left","R":[{"T":"Enter%20total%20on%20Form%2040%2C%20line%2038","S":-1,"TS":[0,11,0,0]}]},{"x":79.206,"y":23.051,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"x":54.406,"y":24.526,"w":6.537000000000001,"clr":0,"A":"left","R":[{"T":"Other%20credits%20","S":4,"TS":[0,14,0,0]}]},{"x":66.731,"y":24.526,"w":7.373000000000001,"clr":0,"A":"left","R":[{"T":"(codes%20700%E2%80%93753)","S":4,"TS":[0,14,0,0]}]},{"x":62.806,"y":25.345,"w":2.601,"clr":0,"A":"left","R":[{"T":"Code","S":-1,"TS":[0,11,0,0]}]},{"x":84.074,"y":25.345,"w":3.854,"clr":0,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"x":54.862,"y":26.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.894,"y":26.093,"w":1.649,"clr":0,"A":"left","R":[{"T":"39a","S":-1,"TS":[0,11,0,0]}]},{"x":75.111,"y":26.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.143,"y":26.093,"w":1.705,"clr":0,"A":"left","R":[{"T":"39b","S":-1,"TS":[0,11,0,0]}]},{"x":54.862,"y":26.905,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.894,"y":26.843,"w":1.649,"clr":0,"A":"left","R":[{"T":"39c","S":-1,"TS":[0,11,0,0]}]},{"x":75.111,"y":26.905,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.143,"y":26.843,"w":1.705,"clr":0,"A":"left","R":[{"T":"39d","S":-1,"TS":[0,11,0,0]}]},{"x":54.862,"y":27.655,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.894,"y":27.593,"w":1.649,"clr":0,"A":"left","R":[{"T":"39e","S":-1,"TS":[0,11,0,0]}]},{"x":75.316,"y":27.655,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.347,"y":27.593,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"39f","S":-1,"TS":[0,11,0,0]}]},{"x":54.837,"y":28.405,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":55.868,"y":28.343,"w":1.6860000000000002,"clr":0,"A":"left","R":[{"T":"39g","S":-1,"TS":[0,11,0,0]}]},{"x":75.137,"y":28.405,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.168,"y":28.343,"w":1.6680000000000001,"clr":0,"A":"left","R":[{"T":"39h","S":-1,"TS":[0,11,0,0]}]},{"x":55.079,"y":29.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":56.11,"y":29.093,"w":1.334,"clr":0,"A":"left","R":[{"T":"39i","S":-1,"TS":[0,11,0,0]}]},{"x":75.367,"y":29.155,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,15,0,0]}]},{"x":76.398,"y":29.093,"w":1.334,"clr":0,"A":"left","R":[{"T":"39j","S":-1,"TS":[0,11,0,0]}]},{"x":58.396,"y":29.845,"w":14.259000000000004,"clr":0,"A":"left","R":[{"T":"Enter%20total%20on%20Form%2040%2C%20line%2039","S":-1,"TS":[0,11,0,0]}]},{"x":79.206,"y":29.845,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"x":82.869,"y":5.682,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":88.025,"y":5.682,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":82.869,"y":7.178,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":88.025,"y":7.178,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":9.734,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.527,"y":9.781,"w":63.53099999999999,"clr":0,"A":"left","R":[{"T":"Other%20additions.","S":3,"TS":[0,12,0,0]}]},{"x":5.937,"y":10.422,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.398,"y":10.422,"w":76.032,"clr":0,"A":"left","R":[{"T":"Other%20subtractions.","S":3,"TS":[0,12,0,0]}]},{"x":5.937,"y":11.047,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.937,"y":11.672,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,11.91,0,0]}]},{"x":7.516,"y":11.74,"w":54.017999999999994,"clr":0,"A":"left","R":[{"T":"Other%20credits.","S":3,"TS":[0,12,0,0]}]},{"x":7.441,"y":11.047,"w":184.086,"clr":0,"A":"left","R":[{"T":"Credits%20for%20income%20taxes%20paid%20to%20another%20state.","S":3,"TS":[0,12,0,0]}]},{"x":6.066,"y":14.141,"w":387.6930000000003,"clr":0,"A":"left","R":[{"T":"additional%20schedules%20and%20add%20the%20total%20to%20your%20tax%20return.%20Include%20this%20schedule%20with%20your%20Form%2040.","S":3,"TS":[0,12,0,0]}]},{"x":5.937,"y":8.684,"w":37.827,"clr":0,"A":"left","R":[{"T":"Instructions%3A%20Use%20this%20form%20to%20claim%20more%20than%20one%20of%20the%20following%20on%20your%20return%3A%20","S":-1,"TS":[0,11.91,0,0]}]},{"x":5.938,"y":15.21,"w":61.066999999999936,"clr":0,"A":"left","R":[{"T":"Remember%3A%20Check%20the%20%22Schedule%20Included%22%20box%20on%20your%20Form%2040%20for%20other%20additions%2C%20other%20subtractions%2C%20credit%20for%20income%20taxes%20paid","S":-1,"TS":[0,11.91,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":476,"AM":1024,"x":6.267,"y":5.937,"w":40.085,"h":0.833,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAM","EN":0},"TI":477,"AM":1024,"x":46.715,"y":5.964,"w":24.1,"h":0.833,"TU":"First name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":478,"AM":1024,"x":70.993,"y":5.954,"w":6.177,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":479,"AM":1024,"x":77.228,"y":5.906,"w":21.707,"h":0.847,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":480,"AM":1024,"x":6.461,"y":7.483,"w":40.085,"h":0.833,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAM","EN":0},"TI":481,"AM":1024,"x":46.646,"y":7.496,"w":24.099,"h":0.833,"TU":"First name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":482,"AM":1024,"x":70.955,"y":7.465,"w":6.177,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":483,"AM":1024,"x":77.34,"y":7.377,"w":21.707,"h":0.847,"TU":"spouse social security number. 9 digits."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ADDITION_CODE10_1_","EN":0},"TI":484,"AM":0,"x":10.457,"y":19.538,"w":15.984,"h":0.833,"TU":"Line 10a. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDITION_AMT10_1_","EN":0},"TI":485,"AM":0,"x":30.752,"y":19.546,"w":19.656,"h":0.833,"TU":"Line 10b. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_ST38_1_","EN":0},"TI":486,"AM":0,"x":58.727,"y":19.496,"w":15.693000000000001,"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":"STATE_AMT38_1_","EN":0},"TI":487,"AM":0,"x":79.114,"y":19.539,"w":19.656,"h":0.833,"TU":"Line 38b. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ADDITION_CODE10_2_","EN":0},"TI":488,"AM":0,"x":10.421,"y":20.297,"w":15.984,"h":0.833,"TU":"Line 10c. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDITION_AMT10_2_","EN":0},"TI":489,"AM":0,"x":30.716,"y":20.305,"w":19.656,"h":0.833,"TU":"Line 10d. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_ST38_2_","EN":0},"TI":490,"AM":0,"x":58.779,"y":20.276,"w":15.693000000000001,"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":"STATE_AMT38_2_","EN":0},"TI":491,"AM":0,"x":79.114,"y":20.301,"w":19.656,"h":0.833,"TU":"Line 38d. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ADDITION_CODE10_3_","EN":0},"TI":492,"AM":0,"x":10.439,"y":21.061,"w":15.984,"h":0.833,"TU":"Line 10e. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDITION_AMT10_3_","EN":0},"TI":493,"AM":0,"x":30.734,"y":21.069,"w":19.656,"h":0.833,"TU":"Line 10f. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_ST38_3_","EN":0},"TI":494,"AM":0,"x":58.779,"y":21.029,"w":15.693000000000001,"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":"STATE_AMT38_3_","EN":0},"TI":495,"AM":0,"x":79.169,"y":21.029,"w":19.656,"h":0.833,"TU":"Line 38f. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ADDITION_CODE10_4_","EN":0},"TI":496,"AM":0,"x":10.403,"y":21.82,"w":15.984,"h":0.833,"TU":"Line 10g. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDITION_AMT10_4_","EN":0},"TI":497,"AM":0,"x":30.698,"y":21.828,"w":19.656,"h":0.833,"TU":"Line 10h. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_ST38_4_","EN":0},"TI":498,"AM":0,"x":58.769,"y":21.761,"w":15.693000000000001,"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":"STATE_AMT38_4_","EN":0},"TI":499,"AM":0,"x":79.074,"y":21.784,"w":19.655,"h":0.833,"TU":"Line 38h. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ADDITION_CODE10_5_","EN":0},"TI":500,"AM":0,"x":10.496,"y":22.529,"w":15.984,"h":0.833,"TU":"Line 10i. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDITION_AMT10_5_","EN":0},"TI":501,"AM":0,"x":30.791,"y":22.537,"w":19.656,"h":0.833,"TU":"Line 10j. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE_ST38_5_","EN":0},"TI":502,"AM":0,"x":58.805,"y":22.51,"w":15.693000000000001,"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":"STATE_AMT38_5_","EN":0},"TI":503,"AM":0,"x":79.129,"y":22.512,"w":19.656,"h":0.833,"TU":"Line 38j. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAMT10","EN":0},"TI":504,"AM":1024,"x":31.618,"y":23.288,"w":18.789,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAMT38","EN":0},"TI":505,"AM":1024,"x":80.147,"y":23.323,"w":18.789,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SUBTRACT_CODE18_1_","EN":0},"TI":506,"AM":0,"x":10.346,"y":26.341,"w":15.984,"h":0.833,"TU":"Line 18a. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT_AMT18_1_","EN":0},"TI":507,"AM":0,"x":30.641,"y":26.349,"w":19.656,"h":0.833,"TU":"Line 18b. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CREDITS_CODE39_1_","EN":0},"TI":508,"AM":0,"x":58.86,"y":26.341,"w":15.984,"h":0.833,"TU":"Line 39a. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDITS_AMT39_1_","EN":0},"TI":509,"AM":0,"x":79.155,"y":26.322,"w":19.655,"h":0.833,"TU":"Line 39b. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SUBTRACT_CODE18_2_","EN":0},"TI":510,"AM":0,"x":10.346,"y":27.076,"w":15.984,"h":0.833,"TU":"Line 18c. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT_AMT18_2_","EN":0},"TI":511,"AM":0,"x":30.641,"y":27.084,"w":19.656,"h":0.833,"TU":"Line 18d. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CREDITS_CODE39_2_","EN":0},"TI":512,"AM":0,"x":58.785,"y":27.076,"w":15.984,"h":0.833,"TU":"Line 39c. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDITS_AMT39_2_","EN":0},"TI":513,"AM":0,"x":79.08,"y":27.084,"w":19.656,"h":0.833,"TU":"Line 39d. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SUBTRACT_CODE18_3_","EN":0},"TI":514,"AM":0,"x":10.496,"y":27.797,"w":15.984,"h":0.833,"TU":"Line 18e. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT_AMT18_3_","EN":0},"TI":515,"AM":0,"x":30.791,"y":27.805,"w":19.656,"h":0.833,"TU":"Line 18f. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CREDITS_CODE39_3_","EN":0},"TI":516,"AM":0,"x":58.897,"y":27.811,"w":15.984,"h":0.833,"TU":"Line 39e. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDITS_AMT39_3_","EN":0},"TI":517,"AM":0,"x":79.192,"y":27.819,"w":19.656,"h":0.833,"TU":"Line 39f. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SUBTRACT_CODE18_4_","EN":0},"TI":518,"AM":0,"x":10.496,"y":28.549,"w":15.984,"h":0.833,"TU":"Line 18g. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT_AMT18_4_","EN":0},"TI":519,"AM":0,"x":30.791,"y":28.54,"w":19.656,"h":0.833,"TU":"Line 18h. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CREDITS_CODE39_4_","EN":0},"TI":520,"AM":0,"x":58.823,"y":28.573,"w":15.984,"h":0.833,"TU":"Line 39g. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDITS_AMT39_4_","EN":0},"TI":521,"AM":0,"x":79.118,"y":28.581,"w":19.656,"h":0.833,"TU":"Line 39h. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SUBTRACT_CODE18_5_","EN":0},"TI":522,"AM":0,"x":10.421,"y":29.308,"w":15.984,"h":0.833,"TU":"Line 18i. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBTRACT_AMT18_5_","EN":0},"TI":523,"AM":0,"x":30.716,"y":29.316,"w":19.656,"h":0.833,"TU":"Line 18j. Amount."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CREDITS_CODE39_5_","EN":0},"TI":524,"AM":0,"x":58.763,"y":29.349,"w":15.984,"h":0.833,"TU":"Line 39i. Code.","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDITS_AMT39_5_","EN":0},"TI":525,"AM":0,"x":79.23,"y":29.33,"w":19.656,"h":0.833,"TU":"Line 39j. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAMT18","EN":0},"TI":526,"AM":1024,"x":31.762,"y":30.095,"w":18.789,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAMT39","EN":0},"TI":527,"AM":1024,"x":80.256,"y":30.087,"w":18.789,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/ORSCHA.content.txt b/test/data/or/form/ORSCHA.content.txt new file mode 100755 index 00000000..efbe2da5 --- /dev/null +++ b/test/data/or/form/ORSCHA.content.txt @@ -0,0 +1,554 @@ +SCHEDULE A +(Form 1040) +Department of the Treasury +Internal Revenue Service (99) +Itemized Deductions +▶ + +Information about Schedule A and its separate instructions is at +www.irs.gov/schedulea +. + +▶ + +Attach to Form 1040. + + +OMB No. 1545-0074 +20 +13 +Attachment +Sequence No. +07 + +Name(s) shown on Form 1040 +Your social security number +Medical +and +Dental +Expenses +Caution. +Do not include expenses reimbursed or paid by others. +1 +Medical and dental expenses (see instructions) +. +. +. +. +. + +1 +2 +Enter amount from Form 1040, line 38 +2 +3 +Multiply +line +2 +by +10% +(.10). +But +if +either +you +or +your +spouse +was +born before January 2, 1949, multiply line 2 by 7.5% (.075) instead + + +3 +4 +Subtract line 3 from line 1. If line 3 is more than line 1, enter -0- +. +. +. +. +. +. +. +. +4 +Taxes You +Paid + +5 +State and local +(check only one box): +a +Income taxes, +or +b +General sales taxes +} +. +. +. +. +. +. +. +. +. +. +. +5 +6 +Real estate taxes (see instructions) +. +. +. +. +. +. +. +. +. +6 +7 +Personal property taxes +. +. +. +. +. +. +. +. +. +. +. +. +. +7 +8 +Other taxes. List type and amount +▶ +8 +9 +Add lines 5 through 8 +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +9 +Interest +You Paid +Note. + +Your mortgage +interest +deduction may +be limited (see +instructions). +10 +Home mortgage interest and points reported to you on Form 1098 +10 +11 + + +Home +mortgage +interest +not +reported +to +you +on +Form +1098. +If +paid +to +the +person +from +whom +you +bought +the +home, +see +instructions +and show that person’s name, identifying no., and address +▶ +11 +12 + +Points +not +reported +to +you +on +Form +1098. +See +instructions +for +special rules +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. + +12 +13 +Mortgage insurance premiums (see instructions) +. +. +. +. +. +13 +14 +Investment interest. Attach Form 4952 if required. (See instructions.) + +14 +15 +Add lines 10 through 14 +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +15 +Gifts to +Charity +If you made a +gift and got a +benefit for it, +see instructions. +16 + +Gifts +by +cash +or +check. +If +you +made +any +gift +of +$250 +or +more, +see instructions +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. + +16 +17 + +Other +than +by +cash +or +check. +If +any +gift +of +$250 +or +more, +see +instructions. You +must +attach Form 8283 if over $500 +. +. +. +17 +18 +Carryover from prior year +. +. +. +. +. +. +. +. +. +. +. +. +18 +19 +Add lines 16 through 18 +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +19 +Casualty and +Theft Losses +20 +Casualty or theft loss(es). Attach Form 4684. (See instructions.) +. +. +. +. +. +. +. +. + +20 +Job Expenses +and Certain +Miscellaneous +Deductions + +21 + + +Unreimbursed +employee +expenses—job +travel, +union +dues, +job +education, +etc. +Attach +Form +2106 +or +2106-EZ +if +required. +(See instructions.) + + +▶ +21 +22 +Tax preparation fees +. +. +. +. +. +. +. +. +. +. +. +. +. + +22 +23 + +Other +expenses—investment, +safe +deposit +box, +etc. +List +type +and amount + +▶ +23 +24 +Add lines 21 through 23 +. +. +. +. +. +. +. +. +. +. +. +. + +24 +25 +Enter amount from Form 1040, line 38 +25 +26 +Multiply line 25 by 2% (.02) +. +. +. +. +. +. +. +. +. +. +. + +26 +27 +Subtract line 26 from line 24. If line 26 is more than line 24, enter -0- +. +. +. +. +. +. +27 +Other +Miscellaneous +Deductions +28 +Other—from list in instructions. List type and amount +▶ +28 +Total +Itemized +Deductions +29 + +Is Form 1040, line 38, over $150,000? +29 +No. + Your deduction is not limited. Add the amounts in the far right column + +for lines 4 through 28. Also, enter this amount on Form 1040, line 40. +} +. +. +Yes. + Your deduction may be limited. See the Itemized Deductions + +Worksheet in the instructions to figure the amount to enter. +30 + +If +you +elect +to +itemize +deductions +even +though +they +are +less +than +your +standard +deduction, check here +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +. +▶ +For Paperwork Reduction Act Notice, see Form 1040 instructions. +Cat. No. 17145C +Schedule A (Form 1040) 2013 +NAME +EIN +or SSN +ADDRESS +----------------Page (0) Break---------------- diff --git a/test/data/or/form/ORSCHA.fields.json b/test/data/or/form/ORSCHA.fields.json new file mode 100755 index 00000000..ea10dba3 --- /dev/null +++ b/test/data/or/form/ORSCHA.fields.json @@ -0,0 +1 @@ +[{"id":"TAXRB","type":"radio","calc":false,"value":"IT"},{"id":"TAXRB","type":"radio","calc":false,"value":"ST"},{"id":"L28BOXRB","type":"radio","calc":false,"value":"L28N"},{"id":"L28BOXRB","type":"radio","calc":false,"value":"L28Y"},{"id":"ITDED","type":"box","calc":false,"value":""},{"id":"TEXTOO","type":"alpha","calc":true,"value":"Oregon Only"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"L2","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"LINE8_L8A_1_","type":"alpha","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"LINE11_L11BX_1_","type":"alpha","calc":false,"value":""},{"id":"LINE11_L11BX1_1_","type":"mask","calc":false,"value":""},{"id":"LINE11_L11BX2_1_","type":"ssn","calc":false,"value":""},{"id":"LINE11_L11BY_1_","type":"alpha","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"QUALMORT","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"EMPEXP_L20A_1_","type":"alpha","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"INVEXP_L22A_1_","type":"alpha","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"L26","type":"number","calc":true,"value":""},{"id":"OTHEXP_L27A_1_","type":"alpha","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/ORSCHA.json b/test/data/or/form/ORSCHA.json new file mode 100755 index 00000000..2996b04a --- /dev/null +++ b/test/data/or/form/ORSCHA.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1040 (Schedule A)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":6.145,"y":5.25,"w":1.5,"l":14.979},{"x":20.995,"y":5.25,"w":1.5,"l":63.198},{"x":84.064,"y":3,"w":0.75,"l":14.979},{"x":84.064,"y":5.25,"w":1.5,"l":14.979},{"x":6.145,"y":6.75,"w":1.125,"l":75.573},{"x":81.632,"y":6.75,"w":1.125,"l":17.411},{"x":64.307,"y":6.75,"w":0.75,"l":2.561},{"x":81.632,"y":6.75,"w":0.75,"l":2.561},{"x":66.782,"y":8.25,"w":0.75,"l":12.461},{"x":79.157,"y":8.25,"w":0.75,"l":2.561},{"x":46.982,"y":9,"w":0.75,"l":2.561},{"x":49.457,"y":9,"w":0.75,"l":12.461},{"x":61.832,"y":9,"w":0.75,"l":2.561},{"x":64.307,"y":8.25,"w":0.75,"l":2.561},{"x":64.307,"y":10.5,"w":1.125,"l":2.561},{"x":66.782,"y":10.5,"w":1.125,"l":12.461},{"x":79.157,"y":10.5,"w":1.125,"l":2.561},{"x":81.632,"y":11.25,"w":1.125,"l":2.561},{"x":84.107,"y":11.25,"w":1.125,"l":12.461},{"x":96.482,"y":11.25,"w":1.125,"l":2.561},{"x":6.188,"y":11.25,"w":1.125,"l":75.487},{"x":81.632,"y":11.25,"w":1.125,"l":2.561},{"x":64.307,"y":12.75,"w":0.75,"l":2.561},{"x":66.782,"y":12.75,"w":0.75,"l":12.461},{"x":79.157,"y":12.75,"w":0.75,"l":2.561},{"x":64.307,"y":14.25,"w":0.75,"l":2.561},{"x":66.782,"y":14.25,"w":0.75,"l":12.461},{"x":79.157,"y":14.25,"w":0.75,"l":2.561},{"x":66.782,"y":15,"w":0.75,"l":12.461},{"x":79.157,"y":15,"w":0.75,"l":2.561},{"dsh":1,"x":45.745,"y":15.75,"w":0.75,"l":17.411},{"x":64.307,"y":15,"w":0.75,"l":2.561},{"dsh":1,"x":19.757,"y":16.5,"w":0.75,"l":43.398},{"x":64.307,"y":16.5,"w":1.125,"l":2.561},{"x":66.782,"y":16.5,"w":1.125,"l":12.461},{"x":79.157,"y":16.5,"w":1.125,"l":2.561},{"x":81.632,"y":17.25,"w":1.125,"l":2.561},{"x":84.107,"y":17.25,"w":1.125,"l":12.461},{"x":96.482,"y":17.25,"w":1.125,"l":2.561},{"x":6.188,"y":17.25,"w":1.125,"l":75.487},{"x":64.307,"y":18,"w":0.75,"l":2.561},{"x":66.782,"y":18,"w":0.75,"l":12.461},{"x":79.157,"y":18,"w":0.75,"l":2.561},{"x":81.632,"y":17.25,"w":1.125,"l":2.561},{"x":64.307,"y":18,"w":0.75,"l":2.561},{"x":64.307,"y":21.75,"w":0.75,"l":2.561},{"x":66.782,"y":21.75,"w":0.75,"l":12.461},{"x":79.157,"y":21.75,"w":0.75,"l":2.561},{"x":64.307,"y":23.25,"w":0.75,"l":2.561},{"x":66.782,"y":23.25,"w":0.75,"l":12.461},{"x":79.157,"y":23.25,"w":0.75,"l":2.561},{"x":64.307,"y":24,"w":0.75,"l":2.561},{"x":66.782,"y":24,"w":0.75,"l":12.461},{"x":79.157,"y":24,"w":0.75,"l":2.561},{"x":64.307,"y":24.75,"w":1.125,"l":2.561},{"x":66.782,"y":24.75,"w":1.125,"l":12.461},{"x":79.157,"y":24.75,"w":1.125,"l":2.561},{"x":19.757,"y":25.5,"w":1.125,"l":60.723},{"x":81.632,"y":25.5,"w":1.125,"l":2.561},{"x":84.107,"y":25.5,"w":1.125,"l":12.461},{"x":96.482,"y":25.5,"w":0.75,"l":2.561},{"x":6.188,"y":25.5,"w":1.125,"l":75.487},{"x":6.145,"y":30,"w":1.125,"l":9.986},{"x":64.307,"y":25.5,"w":1.125,"l":2.561},{"x":81.632,"y":25.5,"w":1.125,"l":2.561},{"x":64.307,"y":27,"w":0.75,"l":2.561},{"x":66.782,"y":27,"w":0.75,"l":12.461},{"x":79.157,"y":27,"w":0.75,"l":2.561},{"x":64.307,"y":28.5,"w":0.75,"l":2.561},{"x":66.782,"y":28.5,"w":0.75,"l":12.461},{"x":79.157,"y":28.5,"w":0.75,"l":2.561},{"x":64.307,"y":29.25,"w":1.125,"l":2.561},{"x":66.782,"y":29.25,"w":1.125,"l":12.461},{"x":79.157,"y":29.25,"w":1.125,"l":2.561},{"x":81.632,"y":30,"w":1.125,"l":2.561},{"x":84.107,"y":30,"w":1.125,"l":12.461},{"x":96.482,"y":30,"w":1.125,"l":2.561},{"x":6.188,"y":30,"w":1.125,"l":75.487},{"x":84.107,"y":31.5,"w":1.125,"l":12.461},{"x":96.482,"y":31.5,"w":1.125,"l":2.561},{"x":6.188,"y":31.5,"w":1.125,"l":75.487},{"x":6.145,"y":39.75,"w":1.125,"l":9.986},{"x":64.307,"y":31.5,"w":1.125,"l":2.561},{"x":81.632,"y":31.5,"w":1.125,"l":2.561},{"x":64.307,"y":33.75,"w":0.75,"l":2.561},{"x":66.782,"y":33.75,"w":0.75,"l":12.461},{"x":79.157,"y":33.75,"w":0.75,"l":2.561},{"x":66.782,"y":34.5,"w":0.75,"l":12.461},{"x":79.157,"y":34.5,"w":0.75,"l":2.561},{"x":64.307,"y":34.5,"w":0.75,"l":2.561},{"dsh":1,"x":30.895,"y":36,"w":0.75,"l":32.261},{"dsh":1,"x":19.757,"y":36.75,"w":0.75,"l":43.398},{"x":64.307,"y":36.75,"w":1.125,"l":2.561},{"x":66.782,"y":36.75,"w":1.125,"l":12.461},{"x":79.157,"y":36.75,"w":1.125,"l":2.561},{"x":66.782,"y":37.5,"w":0.75,"l":12.461},{"x":79.157,"y":37.5,"w":0.75,"l":2.561},{"x":46.982,"y":38.25,"w":0.75,"l":2.561},{"x":49.457,"y":38.25,"w":0.75,"l":12.461},{"x":61.832,"y":38.25,"w":0.75,"l":2.561},{"x":64.307,"y":37.5,"w":0.75,"l":2.561},{"x":64.307,"y":39,"w":1.125,"l":2.561},{"x":66.782,"y":39,"w":1.125,"l":12.461},{"x":79.157,"y":39,"w":1.125,"l":2.561},{"x":81.632,"y":39.75,"w":1.125,"l":2.561},{"x":84.107,"y":39.75,"w":1.125,"l":12.461},{"x":96.482,"y":39.75,"w":1.125,"l":2.561},{"x":6.188,"y":39.75,"w":1.125,"l":75.487},{"dsh":1,"x":59.357,"y":40.5,"w":0.75,"l":21.123},{"x":81.632,"y":39.75,"w":1.125,"l":2.561},{"dsh":1,"x":19.757,"y":41.25,"w":0.75,"l":60.723},{"x":81.632,"y":42,"w":1.125,"l":2.561},{"x":84.107,"y":42,"w":1.125,"l":12.461},{"x":96.482,"y":42,"w":1.125,"l":2.561},{"x":6.188,"y":42,"w":1.125,"l":75.487},{"x":81.632,"y":44.25,"w":0.75,"l":2.561},{"x":81.632,"y":47.25,"w":1.5,"l":2.561},{"x":84.107,"y":44.25,"w":0.75,"l":12.461},{"x":84.107,"y":47.25,"w":1.5,"l":12.461},{"x":96.482,"y":44.25,"w":0.75,"l":2.561},{"x":96.482,"y":47.25,"w":1.5,"l":2.561},{"x":6.145,"y":47.25,"w":1.5,"l":43.398},{"x":49.457,"y":47.25,"w":1.5,"l":32.261},{"x":81.632,"y":47.25,"w":1.5,"l":17.411}],"VLines":[{"x":21.038,"y":2.234,"w":1.5,"l":1.547},{"x":21.038,"y":3.734,"w":1.5,"l":1.547},{"x":84.15,"y":2.234,"w":1.5,"l":0.781},{"x":84.15,"y":2.984,"w":1.5,"l":2.281},{"x":81.675,"y":5.234,"w":0.75,"l":1.539},{"x":66.825,"y":6.734,"w":0.75,"l":0.781},{"x":64.35,"y":6.734,"w":0.75,"l":0.781},{"x":79.2,"y":6.734,"w":0.75,"l":0.781},{"x":84.15,"y":6.734,"w":0.75,"l":3.781},{"x":81.675,"y":6.734,"w":0.75,"l":3.781},{"x":96.525,"y":6.734,"w":0.75,"l":3.781},{"x":66.825,"y":7.484,"w":0.75,"l":0.781},{"x":64.35,"y":7.484,"w":0.75,"l":0.781},{"x":79.2,"y":7.484,"w":0.75,"l":0.781},{"x":49.5,"y":8.234,"w":0.75,"l":0.781},{"x":47.025,"y":8.234,"w":0.75,"l":0.781},{"x":61.875,"y":8.234,"w":0.75,"l":0.781},{"x":66.825,"y":8.234,"w":0.75,"l":1.531},{"x":64.35,"y":8.234,"w":0.75,"l":1.531},{"x":79.2,"y":8.234,"w":0.75,"l":1.531},{"x":66.825,"y":9.734,"w":0.75,"l":0.789},{"x":64.35,"y":9.734,"w":0.75,"l":0.789},{"x":79.2,"y":9.734,"w":0.75,"l":0.789},{"x":84.15,"y":10.484,"w":0.75,"l":0.789},{"x":81.675,"y":10.484,"w":0.75,"l":0.789},{"x":96.525,"y":10.484,"w":0.75,"l":0.789},{"x":79.2,"y":11.235,"w":0.75,"l":0.781},{"x":84.15,"y":11.227,"w":0.75,"l":5.289},{"x":81.675,"y":11.227,"w":0.75,"l":5.289},{"x":96.525,"y":11.235,"w":0.75,"l":5.281},{"x":66.825,"y":11.235,"w":0.75,"l":1.531},{"x":64.35,"y":11.235,"w":0.75,"l":1.531},{"x":79.2,"y":11.984,"w":0.75,"l":0.781},{"x":66.825,"y":12.734,"w":0.75,"l":1.531},{"x":64.35,"y":12.734,"w":0.75,"l":1.531},{"x":79.2,"y":12.734,"w":0.75,"l":0.781},{"x":79.2,"y":13.485,"w":0.75,"l":0.781},{"x":66.825,"y":14.234,"w":0.75,"l":0.781},{"x":64.35,"y":14.234,"w":0.75,"l":0.781},{"x":79.2,"y":14.234,"w":0.75,"l":0.781},{"x":66.825,"y":14.984,"w":0.75,"l":0.781},{"x":64.35,"y":14.984,"w":0.75,"l":0.781},{"x":79.2,"y":14.984,"w":0.75,"l":0.781},{"x":66.825,"y":15.734,"w":0.75,"l":0.789},{"x":64.35,"y":15.734,"w":0.75,"l":0.789},{"x":79.2,"y":15.734,"w":0.75,"l":0.789},{"x":84.15,"y":16.484,"w":0.75,"l":0.789},{"x":81.675,"y":16.484,"w":0.75,"l":0.789},{"x":96.525,"y":16.484,"w":0.75,"l":0.789},{"x":66.825,"y":17.234,"w":0.75,"l":0.781},{"x":64.35,"y":17.234,"w":0.75,"l":0.781},{"x":66.825,"y":17.234,"w":0.75,"l":0.781},{"x":79.2,"y":17.234,"w":0.75,"l":0.781},{"x":84.15,"y":17.227,"w":0.75,"l":7.539},{"x":81.675,"y":17.227,"w":0.75,"l":7.539},{"x":96.525,"y":17.234,"w":0.75,"l":7.531},{"x":66.825,"y":17.984,"w":0.75,"l":3.031},{"x":64.35,"y":17.984,"w":0.75,"l":3.031},{"x":79.2,"y":17.984,"w":0.75,"l":3.031},{"x":66.825,"y":20.985,"w":0.75,"l":0.781},{"x":64.35,"y":20.985,"w":0.75,"l":0.781},{"x":79.2,"y":20.985,"w":0.75,"l":0.781},{"x":66.825,"y":21.734,"w":0.75,"l":1.531},{"x":64.35,"y":21.734,"w":0.75,"l":1.531},{"x":79.2,"y":21.734,"w":0.75,"l":0.781},{"x":66.825,"y":22.484,"w":0.75,"l":0.781},{"x":79.2,"y":22.484,"w":0.75,"l":0.781},{"x":66.825,"y":23.235,"w":0.75,"l":0.781},{"x":64.35,"y":23.235,"w":0.75,"l":0.781},{"x":66.825,"y":23.235,"w":0.75,"l":0.781},{"x":79.2,"y":23.235,"w":0.75,"l":0.781},{"x":66.825,"y":23.984,"w":0.75,"l":0.789},{"x":64.35,"y":23.984,"w":0.75,"l":0.789},{"x":66.825,"y":23.984,"w":0.75,"l":0.789},{"x":79.2,"y":23.984,"w":0.75,"l":0.789},{"x":84.15,"y":24.734,"w":0.75,"l":0.789},{"x":81.675,"y":24.734,"w":0.75,"l":0.789},{"x":96.525,"y":24.727,"w":0.75,"l":0.789},{"x":66.825,"y":25.477,"w":0.75,"l":0.789},{"x":64.35,"y":25.477,"w":0.75,"l":0.789},{"x":79.2,"y":25.484,"w":0.75,"l":0.781},{"x":84.15,"y":25.477,"w":0.75,"l":3.789},{"x":81.675,"y":25.477,"w":0.75,"l":3.789},{"x":96.525,"y":25.484,"w":0.75,"l":3.781},{"x":66.825,"y":26.234,"w":0.75,"l":0.781},{"x":64.35,"y":26.234,"w":0.75,"l":0.781},{"x":79.2,"y":26.234,"w":0.75,"l":0.781},{"x":66.825,"y":26.984,"w":0.75,"l":1.531},{"x":64.35,"y":26.984,"w":0.75,"l":1.531},{"x":79.2,"y":26.984,"w":0.75,"l":0.781},{"x":66.825,"y":27.734,"w":0.75,"l":0.781},{"x":79.2,"y":27.734,"w":0.75,"l":0.781},{"x":66.825,"y":28.484,"w":0.75,"l":0.789},{"x":64.35,"y":28.484,"w":0.75,"l":0.789},{"x":66.825,"y":28.484,"w":0.75,"l":0.789},{"x":79.2,"y":28.484,"w":0.75,"l":0.789},{"x":84.15,"y":29.234,"w":0.75,"l":0.789},{"x":81.675,"y":29.234,"w":0.75,"l":0.789},{"x":96.525,"y":29.234,"w":0.75,"l":0.789},{"x":84.15,"y":29.985,"w":0.75,"l":1.539},{"x":81.675,"y":29.985,"w":0.75,"l":1.539},{"x":96.525,"y":29.985,"w":0.75,"l":0.781},{"x":96.525,"y":30.734,"w":0.75,"l":0.789},{"x":66.825,"y":31.477,"w":0.75,"l":1.539},{"x":64.35,"y":31.477,"w":0.75,"l":1.539},{"x":79.2,"y":31.484,"w":0.75,"l":1.531},{"x":84.15,"y":31.477,"w":0.75,"l":7.539},{"x":81.675,"y":31.477,"w":0.75,"l":7.539},{"x":96.525,"y":31.484,"w":0.75,"l":7.531},{"x":66.825,"y":32.984,"w":0.75,"l":0.781},{"x":64.35,"y":32.984,"w":0.75,"l":0.781},{"x":79.2,"y":32.984,"w":0.75,"l":0.781},{"x":66.825,"y":33.734,"w":0.75,"l":0.781},{"x":64.35,"y":33.734,"w":0.75,"l":0.781},{"x":66.825,"y":33.734,"w":0.75,"l":0.781},{"x":79.2,"y":33.734,"w":0.75,"l":0.781},{"x":66.825,"y":34.484,"w":0.75,"l":1.531},{"x":64.35,"y":34.484,"w":0.75,"l":1.531},{"x":79.2,"y":34.484,"w":0.75,"l":1.531},{"x":66.825,"y":35.984,"w":0.75,"l":0.789},{"x":64.35,"y":35.984,"w":0.75,"l":0.789},{"x":79.2,"y":35.984,"w":0.75,"l":0.789},{"x":66.825,"y":36.735,"w":0.75,"l":0.781},{"x":64.35,"y":36.735,"w":0.75,"l":0.781},{"x":66.825,"y":36.735,"w":0.75,"l":0.781},{"x":79.2,"y":36.735,"w":0.75,"l":0.781},{"x":49.5,"y":37.484,"w":0.75,"l":0.781},{"x":47.025,"y":37.484,"w":0.75,"l":0.781},{"x":61.875,"y":37.484,"w":0.75,"l":0.781},{"x":66.825,"y":37.484,"w":0.75,"l":0.781},{"x":64.35,"y":37.484,"w":0.75,"l":0.781},{"x":79.2,"y":37.484,"w":0.75,"l":0.781},{"x":66.825,"y":38.234,"w":0.75,"l":0.789},{"x":64.35,"y":38.234,"w":0.75,"l":0.789},{"x":79.2,"y":38.234,"w":0.75,"l":0.789},{"x":84.15,"y":38.984,"w":0.75,"l":0.789},{"x":81.675,"y":38.984,"w":0.75,"l":0.789},{"x":96.525,"y":38.984,"w":0.75,"l":0.789},{"x":84.15,"y":39.727,"w":0.75,"l":1.539},{"x":81.675,"y":39.727,"w":0.75,"l":1.539},{"x":96.525,"y":39.734,"w":0.75,"l":1.531},{"x":84.15,"y":41.234,"w":0.75,"l":0.789},{"x":81.675,"y":41.234,"w":0.75,"l":0.789},{"x":96.525,"y":41.234,"w":0.75,"l":0.789},{"x":84.15,"y":41.984,"w":0.75,"l":2.281},{"x":81.675,"y":41.984,"w":0.75,"l":2.281},{"x":96.525,"y":41.984,"w":0.75,"l":1.531},{"x":96.525,"y":43.484,"w":0.75,"l":0.781},{"x":84.15,"y":44.234,"w":0.75,"l":3.047},{"x":81.675,"y":44.234,"w":0.75,"l":3.047},{"x":96.525,"y":44.234,"w":0.75,"l":3.047},{"x":84.15,"y":44.234,"w":0.75,"l":3.047},{"x":96.525,"y":44.234,"w":0.75,"l":3.047}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":64.35,"y":6.75,"w":2.475,"h":0.75,"clr":5},{"x":81.675,"y":6.75,"w":2.475,"h":3.75,"clr":5},{"x":64.35,"y":8.25,"w":2.475,"h":1.5,"clr":5},{"x":81.675,"y":11.25,"w":2.475,"h":5.25,"clr":5},{"x":64.35,"y":15,"w":2.475,"h":0.75,"clr":5},{"x":81.675,"y":17.25,"w":2.475,"h":7.5,"clr":5},{"x":64.35,"y":18,"w":2.475,"h":3,"clr":5},{"x":64.35,"y":25.5,"w":2.475,"h":0.75,"clr":5},{"x":81.675,"y":25.5,"w":2.475,"h":3.75,"clr":5},{"x":64.35,"y":31.5,"w":2.475,"h":1.5,"clr":5},{"x":81.675,"y":31.5,"w":2.475,"h":7.5,"clr":5},{"x":64.35,"y":34.5,"w":2.475,"h":1.5,"clr":5},{"x":64.35,"y":37.5,"w":2.475,"h":0.75,"clr":5},{"x":81.675,"y":39.75,"w":2.475,"h":1.5,"clr":5},{"x":81.675,"y":44.25,"w":2.475,"h":3,"clr":5},{"x":84.15,"y":44.25,"w":12.375,"h":3,"clr":5},{"x":96.525,"y":44.25,"w":2.475,"h":3,"clr":5}],"Texts":[{"x":5.938,"y":2.009,"w":7.021000000000001,"clr":0,"A":"left","R":[{"T":"SCHEDULE%20A%20%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":2.696,"w":5.871,"clr":0,"A":"left","R":[{"T":"(Form%201040)%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.937,"y":3.7750000000000004,"w":12.818000000000003,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":5.937,"y":4.275,"w":13.279000000000005,"clr":0,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":36.979,"y":2.505,"w":9.440000000000001,"clr":0,"A":"left","R":[{"T":"Itemized%20Deductions%20","S":-1,"TS":[0,20.8428,0,0]}]},{"x":22.785,"y":3.4269999999999996,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[3,9,0,0]}]},{"x":24.055,"y":3.521,"w":30.624999999999996,"clr":0,"A":"left","R":[{"T":"Information%20about%20Schedule%20A%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"x":66.164,"y":3.521,"w":11.169000000000002,"clr":0,"A":"left","R":[{"T":"www.irs.gov%2Fschedulea","S":-1,"TS":[0,11,0,0]}]},{"x":81.522,"y":3.521,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":44.883,"y":4.177,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[3,9,0,0]}]},{"x":46.153,"y":4.271,"w":9.927999999999999,"clr":0,"A":"left","R":[{"T":"Attach%20to%20Form%201040.","S":-1,"TS":[0,11,0,0]}]},{"x":85.741,"y":1.972,"w":9.283000000000001,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"x":86.856,"y":3.33,"w":1.264,"clr":0,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":91.201,"y":3.33,"w":1.336,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":85.963,"y":3.9189999999999996,"w":6.003000000000002,"clr":0,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"x":85.963,"y":4.365,"w":6.631,"clr":0,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"x":93.94,"y":4.365,"w":1.112,"clr":0,"A":"left","R":[{"T":"07","S":-1,"TS":[0,13,0,0]}]},{"oc":"#211f1f","x":5.938,"y":4.937,"w":13.689000000000005,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040%20","S":2,"TS":[0,10,0,0]}]},{"x":82.112,"y":4.937,"w":13.368000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#211f1f","x":5.938,"y":7.259,"w":4.034000000000001,"clr":-1,"A":"left","R":[{"T":"Medical%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#211f1f","x":5.938,"y":8.009,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#211f1f","x":5.938,"y":8.759,"w":3.6479999999999997,"clr":-1,"A":"left","R":[{"T":"Dental%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#211f1f","x":5.938,"y":9.509,"w":4.888999999999999,"clr":-1,"A":"left","R":[{"T":"Expenses%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#211f1f","x":19.55,"y":6.589,"w":4.555999999999999,"clr":-1,"A":"left","R":[{"T":"Caution.%20%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#211f1f","x":26.316,"y":6.589,"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":"#211f1f","x":17.452,"y":7.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":19.55,"y":7.339,"w":20.911000000000012,"clr":-1,"A":"left","R":[{"T":"Medical%20and%20dental%20expenses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":53.376,"y":7.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":55.438,"y":7.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":57.499,"y":7.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":59.561,"y":7.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":61.623,"y":7.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":64.907,"y":7.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":17.452,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":19.55,"y":8.089,"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":"#211f1f","x":47.582,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":17.452,"y":8.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":19.55,"y":8.902,"w":3.779,"clr":-1,"A":"left","R":[{"T":"Multiply%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#211f1f","x":25.139,"y":8.902,"w":1.815,"clr":-1,"A":"left","R":[{"T":"line%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#211f1f","x":27.902,"y":8.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#211f1f","x":29.255,"y":8.902,"w":1.371,"clr":-1,"A":"left","R":[{"T":"by%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":31.379,"y":8.902,"w":2.39,"clr":0,"A":"left","R":[{"T":"10%25%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":34.97,"y":8.902,"w":2.464,"clr":0,"A":"left","R":[{"T":"(.10).%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":38.667,"y":8.902,"w":1.834,"clr":0,"A":"left","R":[{"T":"But%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":41.458,"y":8.902,"w":0.796,"clr":0,"A":"left","R":[{"T":"if%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":42.756,"y":8.902,"w":2.7780000000000005,"clr":0,"A":"left","R":[{"T":"either%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":46.905,"y":8.902,"w":1.9080000000000001,"clr":0,"A":"left","R":[{"T":"you%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":49.802,"y":8.902,"w":1.185,"clr":0,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":51.659,"y":8.902,"w":2.241,"clr":0,"A":"left","R":[{"T":"your%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":55.036,"y":8.902,"w":3.538,"clr":0,"A":"left","R":[{"T":"spouse%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":60.278,"y":8.902,"w":2.073,"clr":0,"A":"left","R":[{"T":"was%20","S":-1,"TS":[0,11.37,0,0]}]},{"x":19.547,"y":9.589,"w":29.641000000000002,"clr":0,"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":"#211f1f","x":64.907,"y":9.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":17.452,"y":10.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":19.55,"y":10.339,"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":"#211f1f","x":63.687,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":65.749,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":67.811,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":69.873,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":71.935,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":73.997,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":76.059,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":78.121,"y":10.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":82.232,"y":10.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":11.134,"w":5.26,"clr":0,"A":"left","R":[{"T":"Taxes%20You%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":11.884,"w":2.1100000000000003,"clr":0,"A":"left","R":[{"T":"Paid","S":-1,"TS":[0,13,0,0]}]},{"x":17.452,"y":11.089,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":11.089,"w":6.964,"clr":0,"A":"left","R":[{"T":"State%20and%20local%20","S":3,"TS":[0,12,0,0]}]},{"x":30.322,"y":11.089,"w":10.111,"clr":0,"A":"left","R":[{"T":"(check%20only%20one%20box)%3A","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":11.839,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":23.95,"y":11.839,"w":6.557,"clr":-1,"A":"left","R":[{"T":"Income%20taxes%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":34.093,"y":11.839,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":12.589,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#211f1f","x":23.95,"y":12.589,"w":8.74,"clr":-1,"A":"left","R":[{"T":"General%20sales%20taxes","S":3,"TS":[0,12,0,0]}]},{"x":38.36,"y":12.4,"w":0.48,"clr":0,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,15,0,0]}]},{"x":41,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.062,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.124,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.186,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.248,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.31,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.372,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.434,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.496,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.558,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.62,"y":11.839,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.907,"y":11.839,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"x":17.452,"y":13.339,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":13.339,"w":15.519000000000005,"clr":0,"A":"left","R":[{"T":"Real%20estate%20taxes%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"x":45.124,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.186,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.248,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.31,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.372,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.434,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.496,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.558,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.62,"y":13.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.907,"y":13.339,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":17.452,"y":14.089,"w":0.556,"clr":0,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":14.089,"w":10.926000000000002,"clr":0,"A":"left","R":[{"T":"Personal%20property%20taxes%20","S":3,"TS":[0,12,0,0]}]},{"x":36.875,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.619,"y":14.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.907,"y":14.089,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"x":17.452,"y":14.808,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":14.777,"w":15.747000000000005,"clr":0,"A":"left","R":[{"T":"Other%20taxes.%20List%20type%20and%20amount%20%20","S":3,"TS":[0,12,0,0]}]},{"x":43.908,"y":14.683,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":48,"TS":[3,10,0,0]}]},{"x":64.907,"y":15.588999999999999,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"x":17.452,"y":16.339,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":16.339,"w":9.559000000000001,"clr":0,"A":"left","R":[{"T":"Add%20lines%205%20through%208","S":3,"TS":[0,12,0,0]}]},{"x":34.813,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":36.875,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.619,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":63.681,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":65.743,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":67.805,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":69.867,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":71.929,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":73.991,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":76.053,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":78.115,"y":16.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":82.232,"y":16.339,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":17.134,"w":3.944,"clr":0,"A":"left","R":[{"T":"Interest%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":17.884,"w":4.2589999999999995,"clr":0,"A":"left","R":[{"T":"You%20Paid","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":19.107,"w":2.5559999999999996,"clr":0,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":19.707,"w":6.964,"clr":0,"A":"left","R":[{"T":"Your%20mortgage%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":20.307,"w":3.593,"clr":0,"A":"left","R":[{"T":"interest%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":20.907,"w":6.9289999999999985,"clr":0,"A":"left","R":[{"T":"deduction%20may%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":21.507,"w":6.761000000000001,"clr":0,"A":"left","R":[{"T":"be%20limited%20(see%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":22.107,"w":6.001000000000001,"clr":0,"A":"left","R":[{"T":"instructions).%20","S":-1,"TS":[0,11,0,0]}]},{"x":16.592,"y":17.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":17.089,"w":29.824000000000005,"clr":0,"A":"left","R":[{"T":"Home%20mortgage%20interest%20and%20points%20reported%20to%20you%20on%20Form%201098%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":64.477,"y":17.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":17.777,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":17.777,"w":2.964,"clr":0,"A":"left","R":[{"T":"Home%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":23.885,"y":17.777,"w":4.574999999999999,"clr":0,"A":"left","R":[{"T":"mortgage%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":30.562,"y":17.777,"w":3.593,"clr":0,"A":"left","R":[{"T":"interest%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":35.811,"y":17.777,"w":1.723,"clr":0,"A":"left","R":[{"T":"not%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":38.341,"y":17.777,"w":4.093,"clr":0,"A":"left","R":[{"T":"reported%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":44.317,"y":17.777,"w":1.167,"clr":0,"A":"left","R":[{"T":"to%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":46.039,"y":17.777,"w":1.9080000000000001,"clr":0,"A":"left","R":[{"T":"you%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":48.838,"y":17.777,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"on%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":50.91,"y":17.777,"w":2.612,"clr":0,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":54.733,"y":17.777,"w":2.7800000000000002,"clr":0,"A":"left","R":[{"T":"1098.%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":58.8,"y":17.777,"w":0.833,"clr":0,"A":"left","R":[{"T":"If%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":60.036,"y":17.777,"w":2.223,"clr":0,"A":"left","R":[{"T":"paid%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":19.552,"y":18.464,"w":1.167,"clr":0,"A":"left","R":[{"T":"to%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":21.403,"y":18.464,"w":1.686,"clr":0,"A":"left","R":[{"T":"the%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":24.008,"y":18.464,"w":3.371,"clr":0,"A":"left","R":[{"T":"person%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":29.064,"y":18.464,"w":2.334,"clr":0,"A":"left","R":[{"T":"from%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":32.612,"y":18.464,"w":3.019,"clr":0,"A":"left","R":[{"T":"whom%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":37.156,"y":18.464,"w":1.9080000000000001,"clr":0,"A":"left","R":[{"T":"you%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":40.084,"y":18.464,"w":3.446,"clr":0,"A":"left","R":[{"T":"bought%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":45.249,"y":18.464,"w":1.686,"clr":0,"A":"left","R":[{"T":"the%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":47.855,"y":18.464,"w":3.076,"clr":0,"A":"left","R":[{"T":"home%2C%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":52.482,"y":18.464,"w":1.8519999999999999,"clr":0,"A":"left","R":[{"T":"see%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":55.329,"y":18.464,"w":5.464,"clr":0,"A":"left","R":[{"T":"instructions%20","S":-1,"TS":[0,11.46,0,0]}]},{"x":19.557,"y":19.162,"w":26.489,"clr":0,"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]}]},{"x":58.065,"y":19.069,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":48,"TS":[3,10,0,0]}]},{"x":64.477,"y":20.839,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":21.652,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":21.652,"w":3.093,"clr":0,"A":"left","R":[{"T":"Points%20","S":3,"TS":[0,12,0,0]}]},{"x":24.42,"y":21.652,"w":1.723,"clr":0,"A":"left","R":[{"T":"not%20","S":3,"TS":[0,12,0,0]}]},{"x":27.17,"y":21.652,"w":4.093,"clr":0,"A":"left","R":[{"T":"reported%20","S":3,"TS":[0,12,0,0]}]},{"x":33.586,"y":21.652,"w":1.167,"clr":0,"A":"left","R":[{"T":"to%20","S":3,"TS":[0,12,0,0]}]},{"x":35.477,"y":21.652,"w":1.9080000000000001,"clr":0,"A":"left","R":[{"T":"you%20","S":3,"TS":[0,12,0,0]}]},{"x":38.513,"y":21.652,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"on%20","S":3,"TS":[0,12,0,0]}]},{"x":40.776,"y":21.652,"w":2.612,"clr":0,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"x":44.902,"y":21.652,"w":2.7800000000000002,"clr":0,"A":"left","R":[{"T":"1098.%20","S":3,"TS":[0,12,0,0]}]},{"x":49.287,"y":21.652,"w":2,"clr":0,"A":"left","R":[{"T":"See%20","S":3,"TS":[0,12,0,0]}]},{"x":52.466,"y":21.652,"w":5.464,"clr":0,"A":"left","R":[{"T":"instructions%20","S":3,"TS":[0,12,0,0]}]},{"x":61.003,"y":21.652,"w":1.481,"clr":0,"A":"left","R":[{"T":"for%20","S":3,"TS":[0,12,0,0]}]},{"x":19.552,"y":22.339,"w":5.574,"clr":0,"A":"left","R":[{"T":"special%20rules","S":3,"TS":[0,12,0,0]}]},{"x":28.627,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":30.689,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":32.751,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":34.813,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":36.875,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.619,"y":22.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":22.339,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":23.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":23.089,"w":21.48600000000001,"clr":0,"A":"left","R":[{"T":"Mortgage%20insurance%20premiums%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"x":53.376,"y":23.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.438,"y":23.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.499,"y":23.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.561,"y":23.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.623,"y":23.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":23.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":23.839,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":23.839,"w":30.692999999999998,"clr":0,"A":"left","R":[{"T":"Investment%20interest.%20Attach%20Form%204952%20if%20required.%20(See%20instructions.)%20","S":-1,"TS":[0,11.19,0,0]}]},{"x":64.477,"y":23.839,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":24.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":24.589,"w":10.671,"clr":0,"A":"left","R":[{"T":"Add%20lines%2010%20through%2014","S":3,"TS":[0,12,0,0]}]},{"x":36.875,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.619,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":63.681,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":65.743,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":67.805,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":69.867,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":71.929,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":73.991,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":76.053,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":78.115,"y":24.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":81.802,"y":24.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":25.384,"w":3.7579999999999996,"clr":0,"A":"left","R":[{"T":"Gifts%20to%20","S":-1,"TS":[0,12.7,0,0]}]},{"x":5.938,"y":26.134,"w":3.426,"clr":0,"A":"left","R":[{"T":"Charity","S":-1,"TS":[0,12.7,0,0]}]},{"x":5.938,"y":26.982,"w":6.353999999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20made%20a%20","S":-1,"TS":[0,10.76,0,0]}]},{"x":5.938,"y":27.582,"w":6.205,"clr":0,"A":"left","R":[{"T":"gift%20and%20got%20a%20","S":-1,"TS":[0,10.76,0,0]}]},{"x":5.938,"y":28.182,"w":5.908000000000001,"clr":0,"A":"left","R":[{"T":"benefit%20for%20it%2C%20","S":-1,"TS":[0,10.76,0,0]}]},{"x":5.938,"y":28.782,"w":7.594000000000001,"clr":0,"A":"left","R":[{"T":"see%20instructions.%20","S":-1,"TS":[0,10.76,0,0]}]},{"x":16.592,"y":25.402,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":25.402,"w":2.3699999999999997,"clr":0,"A":"left","R":[{"T":"Gifts%20","S":3,"TS":[0,12,0,0]}]},{"x":23.326,"y":25.402,"w":1.371,"clr":0,"A":"left","R":[{"T":"by%20","S":3,"TS":[0,12,0,0]}]},{"x":25.557,"y":25.402,"w":2.408,"clr":0,"A":"left","R":[{"T":"cash%20","S":3,"TS":[0,12,0,0]}]},{"x":29.391,"y":25.402,"w":1.185,"clr":0,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"x":31.334,"y":25.402,"w":3.242,"clr":0,"A":"left","R":[{"T":"check.%20","S":3,"TS":[0,12,0,0]}]},{"x":36.459,"y":25.402,"w":0.833,"clr":0,"A":"left","R":[{"T":"If%20","S":3,"TS":[0,12,0,0]}]},{"x":37.857,"y":25.402,"w":1.9080000000000001,"clr":0,"A":"left","R":[{"T":"you%20","S":3,"TS":[0,12,0,0]}]},{"x":40.919,"y":25.402,"w":2.798,"clr":0,"A":"left","R":[{"T":"made%20","S":3,"TS":[0,12,0,0]}]},{"x":45.357,"y":25.402,"w":1.871,"clr":0,"A":"left","R":[{"T":"any%20","S":3,"TS":[0,12,0,0]}]},{"x":48.361,"y":25.402,"w":1.685,"clr":0,"A":"left","R":[{"T":"gift%20","S":3,"TS":[0,12,0,0]}]},{"x":51.077,"y":25.402,"w":1.1480000000000001,"clr":0,"A":"left","R":[{"T":"of%20","S":3,"TS":[0,12,0,0]}]},{"x":52.962,"y":25.402,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"%24250%20","S":3,"TS":[0,12,0,0]}]},{"x":56.943,"y":25.402,"w":1.185,"clr":0,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"x":58.885,"y":25.402,"w":2.853,"clr":0,"A":"left","R":[{"T":"more%2C%20","S":3,"TS":[0,12,0,0]}]},{"x":19.556,"y":26.089,"w":7.038,"clr":0,"A":"left","R":[{"T":"see%20instructions","S":3,"TS":[0,12,0,0]}]},{"x":30.694,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":32.756,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":34.818,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":36.88,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.942,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":41.004,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.066,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.128,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.19,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.252,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.314,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.376,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.437,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.499,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.561,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.623,"y":26.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":26.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":26.902,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":26.902,"w":2.7790000000000004,"clr":0,"A":"left","R":[{"T":"Other%20","S":3,"TS":[0,12,0,0]}]},{"x":23.982,"y":26.902,"w":2.242,"clr":0,"A":"left","R":[{"T":"than%20","S":3,"TS":[0,12,0,0]}]},{"x":27.583,"y":26.902,"w":1.371,"clr":0,"A":"left","R":[{"T":"by%20","S":3,"TS":[0,12,0,0]}]},{"x":29.837,"y":26.902,"w":2.408,"clr":0,"A":"left","R":[{"T":"cash%20","S":3,"TS":[0,12,0,0]}]},{"x":33.695,"y":26.902,"w":1.185,"clr":0,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"x":35.661,"y":26.902,"w":3.242,"clr":0,"A":"left","R":[{"T":"check.%20","S":3,"TS":[0,12,0,0]}]},{"x":40.809,"y":26.902,"w":0.833,"clr":0,"A":"left","R":[{"T":"If%20","S":3,"TS":[0,12,0,0]}]},{"x":42.23,"y":26.902,"w":1.871,"clr":0,"A":"left","R":[{"T":"any%20","S":3,"TS":[0,12,0,0]}]},{"x":45.258,"y":26.902,"w":1.685,"clr":0,"A":"left","R":[{"T":"gift%20","S":3,"TS":[0,12,0,0]}]},{"x":47.997,"y":26.902,"w":1.1480000000000001,"clr":0,"A":"left","R":[{"T":"of%20","S":3,"TS":[0,12,0,0]}]},{"x":49.906,"y":26.902,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"%24250%20","S":3,"TS":[0,12,0,0]}]},{"x":53.909,"y":26.902,"w":1.185,"clr":0,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"x":55.875,"y":26.902,"w":2.853,"clr":0,"A":"left","R":[{"T":"more%2C%20","S":3,"TS":[0,12,0,0]}]},{"x":60.422,"y":26.902,"w":1.8519999999999999,"clr":0,"A":"left","R":[{"T":"see%20","S":3,"TS":[0,12,0,0]}]},{"x":19.544,"y":27.589,"w":7.798,"clr":0,"A":"left","R":[{"T":"instructions.%20You%20","S":3,"TS":[0,12,0,0]}]},{"x":31.606,"y":27.589,"w":2.666,"clr":0,"A":"left","R":[{"T":"must%20","S":3,"TS":[0,12,0,0]}]},{"x":35.73,"y":27.589,"w":13.431000000000004,"clr":0,"A":"left","R":[{"T":"attach%20Form%208283%20if%20over%20%24500","S":3,"TS":[0,12,0,0]}]},{"x":57.493,"y":27.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.555,"y":27.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.617,"y":27.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":27.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":28.339,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":28.339,"w":11.221000000000002,"clr":0,"A":"left","R":[{"T":"Carryover%20from%20prior%20year","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.619,"y":28.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":28.339,"w":1.112,"clr":0,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":29.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":29.089,"w":10.671,"clr":0,"A":"left","R":[{"T":"Add%20lines%2016%20through%2018","S":3,"TS":[0,12,0,0]}]},{"x":36.875,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.619,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":63.681,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":65.743,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":67.805,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":69.867,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":71.929,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":73.991,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":76.053,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":78.115,"y":29.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":81.802,"y":29.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":29.79,"w":5.3839999999999995,"clr":0,"A":"left","R":[{"T":"Casualty%20and%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":30.54,"w":5.253000000000001,"clr":0,"A":"left","R":[{"T":"Theft%20Losses%20","S":-1,"TS":[0,13,0,0]}]},{"x":16.592,"y":30.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":30.589,"w":28.11600000000001,"clr":0,"A":"left","R":[{"T":"Casualty%20or%20theft%20loss(es).%20Attach%20Form%204684.%20(See%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":63.687,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":65.749,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":67.811,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":69.873,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":71.935,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":73.997,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":76.059,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":78.121,"y":30.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":81.802,"y":30.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":31.360999999999997,"w":5.680000000000001,"clr":0,"A":"left","R":[{"T":"Job%20Expenses%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.938,"y":32.074,"w":5.051,"clr":0,"A":"left","R":[{"T":"and%20Certain%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.938,"y":32.786,"w":6.178,"clr":0,"A":"left","R":[{"T":"Miscellaneous%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.938,"y":33.499,"w":4.7,"clr":0,"A":"left","R":[{"T":"Deductions%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":16.592,"y":31.464,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":31.464,"w":6.6129999999999995,"clr":0,"A":"left","R":[{"T":"Unreimbursed%20","S":3,"TS":[0,12,0,0]}]},{"x":30.276,"y":31.464,"w":4.631,"clr":0,"A":"left","R":[{"T":"employee%20","S":3,"TS":[0,12,0,0]}]},{"x":37.936,"y":31.464,"w":6.945,"clr":0,"A":"left","R":[{"T":"expenses%E2%80%94job%20","S":3,"TS":[0,12,0,0]}]},{"x":49.176,"y":31.464,"w":3,"clr":0,"A":"left","R":[{"T":"travel%2C%20","S":3,"TS":[0,12,0,0]}]},{"x":54.313,"y":31.464,"w":2.7420000000000004,"clr":0,"A":"left","R":[{"T":"union%20","S":3,"TS":[0,12,0,0]}]},{"x":59.051,"y":31.464,"w":2.742,"clr":0,"A":"left","R":[{"T":"dues%2C%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":32.151,"w":1.667,"clr":0,"A":"left","R":[{"T":"job%20","S":3,"TS":[0,12,0,0]}]},{"x":22.305,"y":32.151,"w":4.9830000000000005,"clr":0,"A":"left","R":[{"T":"education%2C%20","S":3,"TS":[0,12,0,0]}]},{"x":30.189,"y":32.151,"w":1.9450000000000003,"clr":0,"A":"left","R":[{"T":"etc.%20","S":3,"TS":[0,12,0,0]}]},{"x":33.374,"y":32.151,"w":3.186,"clr":0,"A":"left","R":[{"T":"Attach%20","S":3,"TS":[0,12,0,0]}]},{"x":38.479,"y":32.151,"w":2.612,"clr":0,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"x":42.696,"y":32.151,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"2106%20","S":3,"TS":[0,12,0,0]}]},{"x":46.743,"y":32.151,"w":1.185,"clr":0,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"x":48.752,"y":32.151,"w":4.1129999999999995,"clr":0,"A":"left","R":[{"T":"2106-EZ%20","S":3,"TS":[0,12,0,0]}]},{"x":55.291,"y":32.151,"w":0.796,"clr":0,"A":"left","R":[{"T":"if%20","S":3,"TS":[0,12,0,0]}]},{"x":56.698,"y":32.151,"w":4.26,"clr":0,"A":"left","R":[{"T":"required.%20","S":3,"TS":[0,12,0,0]}]},{"x":19.545,"y":32.85,"w":7.982000000000001,"clr":0,"A":"left","R":[{"T":"(See%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":32.561,"y":32.756,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":48,"TS":[3,10,0,0]}]},{"x":64.477,"y":32.839,"w":1.112,"clr":0,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":33.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":33.589,"w":9.185000000000002,"clr":0,"A":"left","R":[{"T":"Tax%20preparation%20fees","S":3,"TS":[0,12,0,0]}]},{"x":34.813,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":36.875,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":33.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":33.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":34.402,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":34.402,"w":2.7790000000000004,"clr":0,"A":"left","R":[{"T":"Other%20","S":3,"TS":[0,12,0,0]}]},{"x":24.011,"y":34.402,"w":10.725000000000003,"clr":0,"A":"left","R":[{"T":"expenses%E2%80%94investment%2C%20","S":3,"TS":[0,12,0,0]}]},{"x":40.764,"y":34.402,"w":2.148,"clr":0,"A":"left","R":[{"T":"safe%20","S":3,"TS":[0,12,0,0]}]},{"x":44.249,"y":34.402,"w":3.6119999999999997,"clr":0,"A":"left","R":[{"T":"deposit%20","S":3,"TS":[0,12,0,0]}]},{"x":49.999,"y":34.402,"w":2.241,"clr":0,"A":"left","R":[{"T":"box%2C%20","S":3,"TS":[0,12,0,0]}]},{"x":53.628,"y":34.402,"w":1.9450000000000003,"clr":0,"A":"left","R":[{"T":"etc.%20","S":3,"TS":[0,12,0,0]}]},{"x":56.799,"y":34.402,"w":1.871,"clr":0,"A":"left","R":[{"T":"List%20","S":3,"TS":[0,12,0,0]}]},{"x":59.855,"y":34.402,"w":2.223,"clr":0,"A":"left","R":[{"T":"type%20","S":3,"TS":[0,12,0,0]}]},{"x":19.552,"y":35.1,"w":5.633000000000001,"clr":0,"A":"left","R":[{"T":"and%20amount%20","S":3,"TS":[0,12,0,0]}]},{"x":28.55,"y":35.006,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":48,"TS":[3,10,0,0]}]},{"x":64.477,"y":35.839,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":36.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":36.589,"w":10.671,"clr":0,"A":"left","R":[{"T":"Add%20lines%2021%20through%2023","S":3,"TS":[0,12,0,0]}]},{"x":36.875,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":36.589,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":36.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":37.339,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":37.339,"w":17.230000000000008,"clr":0,"A":"left","R":[{"T":"Enter%20amount%20from%20Form%201040%2C%20line%2038%20","S":-1,"TS":[0,11.82,0,0]}]},{"x":47.152,"y":37.339,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":38.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":38.089,"w":12.097000000000005,"clr":0,"A":"left","R":[{"T":"Multiply%20line%2025%20by%202%25%20(.02)","S":3,"TS":[0,12,0,0]}]},{"x":38.937,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.999,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.061,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.123,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.185,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.247,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.309,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.371,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.433,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.495,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.557,"y":38.089,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":64.477,"y":38.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"x":16.592,"y":38.839,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":38.777,"w":30.362000000000005,"clr":0,"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]}]},{"x":67.813,"y":38.777,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":69.874,"y":38.777,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":71.936,"y":38.777,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":73.998,"y":38.777,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":76.06,"y":38.777,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":78.122,"y":38.777,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":81.802,"y":38.839,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":39.544,"w":2.628,"clr":0,"A":"left","R":[{"T":"Other%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.938,"y":40.256,"w":6.178,"clr":0,"A":"left","R":[{"T":"Miscellaneous%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.938,"y":40.969,"w":4.7,"clr":0,"A":"left","R":[{"T":"Deductions%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":16.592,"y":39.589,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":39.6,"w":24.175,"clr":0,"A":"left","R":[{"T":"Other%E2%80%94from%20list%20in%20instructions.%20List%20type%20and%20amount%20%20","S":3,"TS":[0,12,0,0]}]},{"x":56.945,"y":39.506,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":48,"TS":[3,10,0,0]}]},{"x":81.803,"y":41.089,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":41.884,"w":2.6839999999999997,"clr":0,"A":"left","R":[{"T":"Total%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":42.634,"w":4.645000000000001,"clr":0,"A":"left","R":[{"T":"Itemized%20%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":43.384,"w":5.7219999999999995,"clr":0,"A":"left","R":[{"T":"Deductions%20","S":-1,"TS":[0,13,0,0]}]},{"x":16.593,"y":41.902,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":41.839,"w":17.13800000000001,"clr":0,"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]}]},{"x":81.803,"y":43.339,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"x":22.025,"y":42.652,"w":1.63,"clr":0,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"x":24.547,"y":42.652,"w":31.678000000000008,"clr":0,"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]}]},{"x":22.025,"y":43.339,"w":30.641000000000012,"clr":0,"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]}]},{"x":74,"y":44.208,"w":0.48,"clr":0,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,19,0,0]}]},{"x":76.063,"y":43.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.5,0,0]}]},{"x":78.125,"y":43.339,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,7.5,0,0]}]},{"x":22.025,"y":44.152,"w":2.056,"clr":0,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":25.206,"y":44.152,"w":27.656000000000006,"clr":0,"A":"left","R":[{"T":"%20Your%20deduction%20may%20be%20limited.%20See%20the%20Itemized%20Deductions%20","S":3,"TS":[0,12,0,0]}]},{"x":22.025,"y":44.839,"w":26.322000000000003,"clr":0,"A":"left","R":[{"T":"Worksheet%20in%20the%20instructions%20to%20figure%20the%20amount%20to%20enter.","S":3,"TS":[0,12,0,0]}]},{"x":16.593,"y":45.651,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"x":19.55,"y":45.651,"w":0.833,"clr":0,"A":"left","R":[{"T":"If%20","S":3,"TS":[0,12,0,0]}]},{"x":21.027,"y":45.651,"w":1.9080000000000001,"clr":0,"A":"left","R":[{"T":"you%20","S":3,"TS":[0,12,0,0]}]},{"x":24.168,"y":45.651,"w":2.426,"clr":0,"A":"left","R":[{"T":"elect%20","S":3,"TS":[0,12,0,0]}]},{"x":28.109,"y":45.651,"w":1.167,"clr":0,"A":"left","R":[{"T":"to%20","S":3,"TS":[0,12,0,0]}]},{"x":30.103,"y":45.651,"w":3.444,"clr":0,"A":"left","R":[{"T":"itemize%20","S":3,"TS":[0,12,0,0]}]},{"x":35.619,"y":45.651,"w":5.260999999999999,"clr":0,"A":"left","R":[{"T":"deductions%20","S":3,"TS":[0,12,0,0]}]},{"x":43.946,"y":45.651,"w":2.408,"clr":0,"A":"left","R":[{"T":"even%20","S":3,"TS":[0,12,0,0]}]},{"x":47.86,"y":45.651,"w":3.4090000000000003,"clr":0,"A":"left","R":[{"T":"though%20","S":3,"TS":[0,12,0,0]}]},{"x":53.322,"y":45.651,"w":2.186,"clr":0,"A":"left","R":[{"T":"they%20","S":3,"TS":[0,12,0,0]}]},{"x":56.892,"y":45.651,"w":1.685,"clr":0,"A":"left","R":[{"T":"are%20","S":3,"TS":[0,12,0,0]}]},{"x":59.687,"y":45.651,"w":2.037,"clr":0,"A":"left","R":[{"T":"less%20","S":3,"TS":[0,12,0,0]}]},{"x":63.027,"y":45.651,"w":2.242,"clr":0,"A":"left","R":[{"T":"than%20","S":3,"TS":[0,12,0,0]}]},{"x":66.683,"y":45.651,"w":2.241,"clr":0,"A":"left","R":[{"T":"your%20","S":3,"TS":[0,12,0,0]}]},{"x":70.339,"y":45.651,"w":4.242,"clr":0,"A":"left","R":[{"T":"standard%20","S":3,"TS":[0,12,0,0]}]},{"x":19.546,"y":46.349,"w":9.966000000000003,"clr":0,"A":"left","R":[{"T":"deduction%2C%20check%20here","S":3,"TS":[0,12,0,0]}]},{"x":36.871,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":38.932,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":40.994,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":43.056,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":45.118,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":47.18,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":49.242,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":51.304,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":53.366,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":55.428,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":57.49,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":59.552,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":61.614,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":63.676,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":65.738,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":67.8,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":69.862,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":71.924,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":73.986,"y":46.349,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":75.238,"y":46.256,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":48,"TS":[3,10,0,0]}]},{"x":5.938,"y":47.144,"w":31.518,"clr":0,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20Form%201040%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.836,"y":47.125,"w":7.7620000000000005,"clr":0,"A":"left","R":[{"T":"Cat.%20No.%2017145C%20","S":2,"TS":[0,10,0,0]}]},{"x":82.193,"y":47.125,"w":14.040000000000008,"clr":0,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]},{"x":19.712,"y":19.802,"w":20.223000000000003,"clr":0,"A":"left","R":[{"T":"NAME","S":2,"TS":[0,10,0,0]}]},{"x":19.773,"y":20.406,"w":11.669,"clr":0,"A":"left","R":[{"T":"EIN","S":2,"TS":[0,10,0,0]}]},{"x":42.117,"y":20.312,"w":22.561,"clr":0,"A":"left","R":[{"T":"or%20SSN","S":2,"TS":[0,10,0,0]}]},{"x":19.859,"y":20.969,"w":33.83800000000001,"clr":0,"A":"left","R":[{"T":"ADDRESS","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXTOO","EN":0},"TI":528,"AM":1024,"x":44.771,"y":1.191,"w":13.802,"h":1.292,"V":"Oregon Only"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":529,"AM":1024,"x":6.188,"y":5.859,"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":530,"AM":1024,"x":81.675,"y":5.875,"w":17.325,"h":0.875,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":531,"AM":0,"x":66.825,"y":7.5,"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":532,"AM":0,"x":49.5,"y":8.25,"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":533,"AM":0,"x":66.825,"y":9.75,"w":12.375,"h":0.833,"TU":"Line 3. Multiply line 2 by 10% (.10). But if either you or your spouse was born before January 2, 1949, ,multiply line 2 by 7.5% (.075) instead."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":534,"AM":1024,"x":84.15,"y":10.5,"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":536,"AM":0,"x":66.825,"y":12,"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":538,"AM":0,"x":66.825,"y":13.5,"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":539,"AM":0,"x":66.825,"y":14.25,"w":12.375,"h":0.833,"TU":"Line 7. Personal property taxes. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE8_L8A_1_","EN":0},"TI":540,"AM":0,"x":19.8,"y":15.75,"w":43.313,"h":0.833,"TU":"Line 8. Other taxes. List type"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":541,"AM":0,"x":66.825,"y":15.75,"w":12.375,"h":0.833,"TU":"Line 8. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":542,"AM":1024,"x":84.15,"y":16.5,"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":543,"AM":0,"x":66.825,"y":17.25,"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":544,"AM":0,"x":23.842,"y":20.044,"w":39.12,"h":0.833,"TU":"name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE11_L11BX1_1_","EN":0},"TI":545,"AM":0,"x":22.299,"y":20.662,"w":19.58,"h":0.833,"TU":"EIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"LINE11_L11BX2_1_","EN":0},"TI":546,"AM":0,"x":47.259,"y":20.642,"w":15.761,"h":0.833,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BY_1_","EN":0},"TI":547,"AM":0,"x":26.405,"y":21.281,"w":36.724,"h":0.833,"TU":"ADDRESS"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":548,"AM":0,"x":66.825,"y":21,"w":12.375,"h":0.833,"TU":"Line 11. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":549,"AM":0,"x":66.825,"y":22.5,"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":550,"AM":0,"x":66.825,"y":23.25,"w":12.375,"h":0.833,"TU":"Line 13. Mortgage insurance premiums (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":551,"AM":0,"x":66.825,"y":24,"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":552,"AM":1024,"x":84.15,"y":24.75,"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":553,"AM":0,"x":66.825,"y":26.25,"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":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":554,"AM":0,"x":66.825,"y":27.75,"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":555,"AM":0,"x":66.825,"y":28.5,"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":556,"AM":0,"x":84.15,"y":29.25,"w":12.375,"h":0.833,"TU":"Line 19. Add lines 16 through 18. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":557,"AM":0,"x":84.15,"y":30.75,"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":"EMPEXP_L20A_1_","EN":0},"TI":558,"AM":0,"x":34.192,"y":32.956,"w":28.687,"h":0.833,"TU":"Line 21. Unreimbursed employee expenses. (See instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":559,"AM":0,"x":66.825,"y":33,"w":12.375,"h":0.833,"TU":"Line 21. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":560,"AM":0,"x":66.825,"y":33.75,"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":561,"AM":0,"x":30.88,"y":35.23,"w":32.399,"h":0.833,"TU":"Line 23. Other expenses. List tyoe."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":562,"AM":0,"x":66.825,"y":36,"w":12.375,"h":0.833,"TU":"Line 23. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":563,"AM":0,"x":66.825,"y":36.75,"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":564,"AM":0,"x":49.5,"y":37.5,"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":565,"AM":1024,"x":66.825,"y":38.25,"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":566,"AM":1024,"x":84.15,"y":39,"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":567,"AM":0,"x":19.873,"y":40.441,"w":60.787,"h":0.833,"TU":"Line 28. Other. List type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":568,"AM":0,"x":84.15,"y":41.25,"w":12.375,"h":0.833,"TU":"Line 28. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":570,"AM":0,"x":84.15,"y":43.5,"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":535,"AM":0,"x":22.31,"y":11.963,"w":1.372,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":537,"AM":0,"x":22.149,"y":12.721,"w":1.372,"h":0.833,"checked":false}],"id":{"Id":"TAXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28N","EN":0},"TI":569,"AM":0,"x":20.289,"y":42.781,"w":1.222,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28Y","EN":0},"TI":571,"AM":0,"x":20.202,"y":44.274,"w":1.222,"h":0.833,"checked":false}],"id":{"Id":"L28BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ITDED","EN":0},"TI":572,"AM":0,"x":79.063,"y":46.5,"w":1.375,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/ORWFC.content.txt b/test/data/or/form/ORWFC.content.txt new file mode 100755 index 00000000..4d329cee --- /dev/null +++ b/test/data/or/form/ORWFC.content.txt @@ -0,0 +1,228 @@ +—YOU MUST INCLUDE THIS SCHEDULE WITH YOUR OREGON TAX RETURN TO RECEIVE THIS CREDIT — +Household Size Calculation + + +1. + +Enter the number of exemptions +you claimed on your federal return + +............................ +1 + +2. + +Enter the number of exemptions you did not + + + +.................. +2 + +3. + +Add lines 1 and 2 + +....................................................... +3 + + +4. + +Enter the number of exemptions you claimed on your + + +household during 2013, including exemptions released + + + +............ +4 + +5. + +Household size. Line 3 minus line 4 + +........................... +5 +Schedule +WFC +2013 +Oregon Working Family Child Care Credit +for Full-Year Residents +$ + 9. + + +9 +$ +$ +$ +$ + +First and Last Name of Child +Child’s SSN +Child’s +Date of Birth +Relationship + +10. + +11. + +12. + +13. +Qualifying Expenses +You Paid for Child +Last name +Spouse’s/RDP’s last name if joint return +First name and initial +Spouse’s/RDP’s first name and initial if joint return +Social Security number (SSN) +Spouse’s/RDP’s SSN if joint return +Attending school +Attending school +Form WFC-DP is included +Form WFC-DP is included +Provider’s full name and complete address +Amount You Paid to Provider +$ +Child to Provider + +Provider’s SSN or + +6. + +Name + +__________________________________________________________________________________________ + +Addr +ess + +_______________________________________________________________________________________ + +City, State, ZIP Code +Provider’s Telephone No. +.............. 6 +$ + +14. + + +................. +14 +Computation of Credit + +15. + +Enter your federal adjusted gross income (Form 40, line 8) + +................................................................................................ +15 + +16. + + +............................................................ +16 + +17. + + +matches your household size on line 5 above). For example, if the amount on line 5 is 4, use Table 4 + +............................ +17 + +18. + + + +...................................................................................................................... +18 +x + + + +Provider’s full name and complete address +Amount You Paid to Provider +$ + +7. + +Name + +__________________________________________________________________________________________ + +Addr +ess + +_______________________________________________________________________________________ + +City, State, ZIP Code +Provider’s Telephone No. +.............. 7 +PA +YMENT OF YOUR CHILD CARE EXPENSES +Child to Provider + +Provider’s full name and complete address +Amount You Paid to Provider +$ + +8. + +Name + +__________________________________________________________________________________________ + +Addr +ess + +_______________________________________________________________________________________ + +City, State, ZIP Code +Provider’s Telephone No. +.............. 8 +Child to Provider + +150-101-169 (Rev. 12-13) + - - + - - +FOR COMPUTER USE ONLY +YOU MAY BE REQUIRED TO PROvIDE PROOF OF YOUR +claim on your federal return because you released +the exemption to the child’s other parent +federal return for people who did not live in your +to you by your child’s other parent, or who are not +related by blood, marriage, RDP, or adoption +Qualifying Child Care Expenses Paid in 2013. Complete all information for each child care provider you paid in 2013. +Enter the total qualifying child care expenses you paid in 2013 from line 9 above +Enter the decimal amount from the working family child care credit table on the back (use the table that +Multiply the amount on line 16 by the decimal amount on line 17. Enter the result here and on Form 40, line 45. +This is your working family child care credit +Add amounts on lines 6 through 8 and enter the result here. + +If you have more than three providers, enter additional qualifying providers + +and check here 9a +Add amounts on lines 10 through 13 and enter the result here. + +If you have more than four qualifying children, enter additional qualifying children +and check here 14a +................. +Provider’s FEIN +Provider’s SSN or +Provider’s FEIN +Provider’s SSN or +Provider’s FEIN +Relationship +Relationship +Relationship +Qualifying Child Information--Complete all information + +for each child +Child to Taxpayer +----------------Page (0) Break---------------- diff --git a/test/data/or/form/ORWFC.fields.json b/test/data/or/form/ORWFC.fields.json new file mode 100755 index 00000000..266b55c5 --- /dev/null +++ b/test/data/or/form/ORWFC.fields.json @@ -0,0 +1 @@ +[{"id":"SKL1","type":"box","calc":false,"value":""},{"id":"WFCDP1","type":"box","calc":false,"value":""},{"id":"SKL2","type":"box","calc":false,"value":""},{"id":"WFCDP2","type":"box","calc":false,"value":""},{"id":"TOTBX9","type":"box","calc":true,"value":""},{"id":"TOTBX14","type":"box","calc":true,"value":""},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAM","type":"alpha","calc":true,"value":""},{"id":"TPINIT","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAM","type":"alpha","calc":true,"value":""},{"id":"SPINIT","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"EXCLM","type":"number","calc":false,"value":""},{"id":"EXNOCLM","type":"number","calc":false,"value":""},{"id":"EXTOT","type":"number","calc":true,"value":""},{"id":"EXNR","type":"number","calc":false,"value":""},{"id":"TOTHHSZ","type":"number","calc":true,"value":""},{"id":"PROV_PROVNM_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_1_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_1_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_1_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_1_","type":"number","calc":false,"value":""},{"id":"PROV_PROVNM_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_2_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_2_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_2_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_2_","type":"number","calc":false,"value":""},{"id":"PROV_PROVNM_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_3_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_3_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_3_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_3_","type":"number","calc":false,"value":""},{"id":"ADD_WFCDEP_P","type":"link","calc":false,"value":""},{"id":"TOTCREXP","type":"number","calc":true,"value":""},{"id":"QCHILD_NCPNAME_1_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_1_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_1_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_1_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_2_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_2_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_2_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_2_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_3_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_3_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_3_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_3_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_4_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_4_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_4_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_4_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_4_","type":"number","calc":false,"value":""},{"id":"ADD_WFCDEP_C","type":"link","calc":false,"value":""},{"id":"TOTCCEXP","type":"number","calc":true,"value":""},{"id":"AGI","type":"number","calc":true,"value":""},{"id":"QCCEXP","type":"number","calc":true,"value":""},{"id":"WORKCR","type":"alpha","calc":false,"value":""},{"id":"WFCCCRED","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/ORWFC.json b/test/data/or/form/ORWFC.json new file mode 100755 index 00000000..e622d427 --- /dev/null +++ b/test/data/or/form/ORWFC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":50.957,"y":19.455,"w":0.75,"l":48.177},{"x":50.957,"y":8.986,"w":0.75,"l":48.177},{"dsh":1,"x":53.177,"y":18.862,"w":1.125,"l":43.684},{"dsh":1,"x":52.922,"y":9.615,"w":1.125,"l":43.684},{"x":6.316,"y":5.237,"w":2.25,"l":92.606},{"x":6.316,"y":2.278,"w":2.25,"l":92.606},{"x":44.655,"y":14.98,"w":0.75,"l":4.802},{"x":44.655,"y":14.228,"w":0.75,"l":4.802},{"x":44.655,"y":19.494,"w":0.75,"l":4.802},{"x":44.655,"y":18.742,"w":0.75,"l":4.802},{"x":6.239,"y":20.16,"w":0.501,"l":92.813},{"x":6.239,"y":20.264,"w":0.501,"l":92.813},{"x":85.476,"y":33.791,"w":0.75,"l":13.543},{"x":85.476,"y":33.048,"w":0.75,"l":13.543},{"x":6.188,"y":39.706,"w":0.75,"l":92.813},{"x":6.188,"y":36.7,"w":0.75,"l":92.813},{"x":6.188,"y":37.452,"w":0.75,"l":92.813},{"x":6.188,"y":38.203,"w":0.75,"l":92.813},{"x":6.188,"y":38.955,"w":0.75,"l":92.813},{"x":44.655,"y":18.737,"w":0.75,"l":4.802},{"x":44.655,"y":17.985,"w":0.75,"l":4.802},{"x":6.188,"y":34.583,"w":0.501,"l":92.813},{"x":6.188,"y":34.687,"w":0.501,"l":92.813},{"x":6.188,"y":6.734,"w":0.75,"l":92.813},{"x":6.188,"y":8.22,"w":0.75,"l":92.813},{"x":6.188,"y":24.742,"w":0.75,"l":92.813},{"x":85.476,"y":24.745,"w":0.75,"l":13.543},{"x":85.476,"y":24.002,"w":0.75,"l":13.543},{"x":6.23,"y":24.745,"w":0.75,"l":55.602},{"x":6.23,"y":22.526,"w":0.75,"l":55.602},{"x":63.217,"y":24.746,"w":0.75,"l":14.764},{"x":63.217,"y":24.004,"w":0.75,"l":14.764},{"x":6.188,"y":41.094,"w":0.501,"l":92.813},{"x":6.188,"y":41.199,"w":0.501,"l":92.813},{"x":88.218,"y":44.813,"w":0.75,"l":10.479},{"x":88.218,"y":44.062,"w":0.75,"l":10.479},{"x":87.936,"y":42.568,"w":0.75,"l":11.02},{"x":87.936,"y":41.816,"w":0.75,"l":11.02},{"x":87.936,"y":43.32,"w":0.75,"l":11.02},{"x":87.936,"y":42.568,"w":0.75,"l":11.02},{"x":87.967,"y":46.326,"w":0.75,"l":10.99},{"x":87.967,"y":45.574,"w":0.75,"l":10.99},{"x":6.239,"y":46.601,"w":0.501,"l":92.813},{"x":6.239,"y":46.705,"w":0.501,"l":92.813},{"x":44.642,"y":11.972,"w":0.75,"l":4.802},{"x":44.642,"y":11.221,"w":0.75,"l":4.802},{"x":44.655,"y":14.222,"w":0.75,"l":4.802},{"x":44.655,"y":13.471,"w":0.75,"l":4.802},{"x":6.188,"y":28.533,"w":0.75,"l":92.813},{"x":85.476,"y":28.536,"w":0.75,"l":13.543},{"x":85.476,"y":27.793,"w":0.75,"l":13.543},{"x":6.23,"y":28.536,"w":0.75,"l":55.602},{"x":6.23,"y":26.318,"w":0.75,"l":55.602},{"x":63.217,"y":28.538,"w":0.75,"l":14.764},{"x":63.217,"y":27.795,"w":0.75,"l":14.764},{"x":6.188,"y":32.283,"w":0.75,"l":92.813},{"x":85.476,"y":32.286,"w":0.75,"l":13.543},{"x":85.476,"y":31.543,"w":0.75,"l":13.543},{"x":6.23,"y":32.286,"w":0.75,"l":55.602},{"x":6.23,"y":30.068,"w":0.75,"l":55.602},{"x":63.217,"y":32.288,"w":0.75,"l":14.764},{"x":63.217,"y":31.545,"w":0.75,"l":14.764}],"VLines":[{"x":99.134,"y":8.986,"w":0.75,"l":10.469},{"x":50.957,"y":8.986,"w":0.75,"l":10.469},{"dsh":1,"x":52.411,"y":9.892,"w":1.125,"l":8.785},{"dsh":1,"x":97.372,"y":9.8,"w":1.125,"l":8.785},{"x":98.923,"y":2.278,"w":2.25,"l":2.959},{"x":6.316,"y":2.278,"w":2.25,"l":2.959},{"x":49.457,"y":14.228,"w":0.75,"l":0.752},{"x":44.655,"y":14.228,"w":0.75,"l":0.752},{"x":49.457,"y":18.742,"w":0.75,"l":0.752},{"x":44.655,"y":18.742,"w":0.75,"l":0.752},{"x":99.019,"y":33.048,"w":0.75,"l":0.743},{"x":85.476,"y":33.048,"w":0.75,"l":0.743},{"x":85.465,"y":34.652,"w":0.75,"l":6.353},{"x":42.565,"y":34.693,"w":0.75,"l":5.009},{"x":56.366,"y":34.693,"w":0.75,"l":5.025},{"x":68.679,"y":34.693,"w":0.75,"l":5.009},{"x":49.457,"y":17.985,"w":0.75,"l":0.752},{"x":44.655,"y":17.985,"w":0.75,"l":0.752},{"x":37.082,"y":5.242,"w":0.75,"l":1.478},{"x":37.082,"y":6.728,"w":0.75,"l":1.478},{"x":61.746,"y":5.242,"w":0.75,"l":1.478},{"x":61.746,"y":6.728,"w":0.75,"l":1.478},{"x":80.48,"y":5.242,"w":0.75,"l":1.478},{"x":80.48,"y":6.728,"w":0.75,"l":1.478},{"x":99.019,"y":24.002,"w":0.75,"l":0.743},{"x":85.476,"y":24.002,"w":0.75,"l":0.743},{"x":61.832,"y":22.526,"w":0.75,"l":2.219},{"x":6.23,"y":22.526,"w":0.75,"l":2.219},{"x":77.981,"y":24.004,"w":0.75,"l":0.743},{"x":63.217,"y":24.004,"w":0.75,"l":0.743},{"x":98.696,"y":44.062,"w":0.75,"l":0.752},{"x":88.218,"y":44.062,"w":0.75,"l":0.752},{"x":98.957,"y":41.816,"w":0.75,"l":0.752},{"x":87.936,"y":41.816,"w":0.75,"l":0.752},{"x":98.957,"y":42.568,"w":0.75,"l":0.752},{"x":87.936,"y":42.568,"w":0.75,"l":0.752},{"x":98.957,"y":45.574,"w":0.75,"l":0.752},{"x":87.967,"y":45.574,"w":0.75,"l":0.752},{"x":49.445,"y":11.221,"w":0.75,"l":0.752},{"x":44.642,"y":11.221,"w":0.75,"l":0.752},{"x":49.457,"y":13.471,"w":0.75,"l":0.752},{"x":44.655,"y":13.471,"w":0.75,"l":0.752},{"x":6.23,"y":4.538,"w":0.75,"l":2.181},{"x":6.23,"y":6.023,"w":0.75,"l":2.181},{"x":99.012,"y":5.288,"w":0.75,"l":1.462},{"x":99.012,"y":6.773,"w":0.75,"l":1.462},{"x":99.019,"y":27.793,"w":0.75,"l":0.743},{"x":85.476,"y":27.793,"w":0.75,"l":0.743},{"x":61.832,"y":26.318,"w":0.75,"l":2.219},{"x":6.23,"y":26.318,"w":0.75,"l":2.219},{"x":77.981,"y":27.795,"w":0.75,"l":0.743},{"x":63.217,"y":27.795,"w":0.75,"l":0.743},{"x":99.019,"y":31.543,"w":0.75,"l":0.743},{"x":85.476,"y":31.543,"w":0.75,"l":0.743},{"x":61.832,"y":30.068,"w":0.75,"l":2.219},{"x":6.23,"y":30.068,"w":0.75,"l":2.219},{"x":77.981,"y":31.545,"w":0.75,"l":0.743},{"x":63.217,"y":31.545,"w":0.75,"l":0.743}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":8.344,"y":46.734,"w":507.83000000000015,"clr":0,"A":"left","R":[{"T":"%E2%80%94YOU%20MUST%20INCLUDE%20THIS%20SCHEDULE%20WITH%20YOUR%20OREGON%20TAX%20RETURN%20TO%20RECEIVE%20THIS%20CREDIT%20%E2%80%94","S":-1,"TS":[0,13,0,0]}]},{"x":5.972,"y":9.702,"w":13.071000000000002,"clr":0,"A":"left","R":[{"T":"Household%20Size%20Calculation","S":3,"TS":[0,12,0,0]}]},{"x":6.681,"y":10.452,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"x":8.447,"y":10.452,"w":15.209000000000001,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20of%20exemptions%20%20%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.447,"y":11.202,"w":15.299,"clr":0,"A":"left","R":[{"T":"you%20claimed%20on%20your%20federal%20return","S":-1,"TS":[0,11.5,0,0]}]},{"x":31.153,"y":11.202,"w":7.784000000000006,"clr":0,"A":"left","R":[{"T":"............................","S":-1,"TS":[0,11.5,0,0]}]},{"x":42.801,"y":11.202,"w":0.556,"clr":0,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.61,"y":11.952,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.448,"y":11.952,"w":19.970000000000002,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20of%20exemptions%20you%20did%20not%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":35.216,"y":13.452,"w":5.004000000000001,"clr":0,"A":"left","R":[{"T":"..................","S":-1,"TS":[0,11.5,0,0]}]},{"x":42.802,"y":13.452,"w":0.556,"clr":0,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.612,"y":14.202,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.45,"y":14.202,"w":7.781,"clr":0,"A":"left","R":[{"T":"Add%20lines%201%20and%202","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.19,"y":14.202,"w":15.290000000000019,"clr":0,"A":"left","R":[{"T":".......................................................","S":-1,"TS":[0,11.5,0,0]}]},{"x":42.804,"y":14.202,"w":0.556,"clr":0,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.613,"y":14.952,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.451,"y":14.952,"w":23.711000000000002,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20of%20exemptions%20you%20claimed%20on%20your","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.451,"y":16.453,"w":24.433000000000003,"clr":0,"A":"left","R":[{"T":"household%20during%202013%2C%20including%20exemptions%20released","S":-1,"TS":[0,11.5,0,0]}]},{"x":37.655,"y":17.953,"w":3.3360000000000003,"clr":0,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11.5,0,0]}]},{"x":42.805,"y":17.953,"w":0.556,"clr":0,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.615,"y":18.703,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.453,"y":18.703,"w":15.726000000000003,"clr":0,"A":"left","R":[{"T":"Household%20size.%20Line%203%20minus%20line%204","S":-1,"TS":[0,11.5,0,0]}]},{"x":31.565,"y":18.703,"w":7.506000000000006,"clr":0,"A":"left","R":[{"T":"...........................","S":-1,"TS":[0,11.5,0,0]}]},{"x":42.807,"y":18.703,"w":0.556,"clr":0,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.17,"y":2.758,"w":4.982000000000001,"clr":0,"A":"left","R":[{"T":"Schedule%20%20","S":-1,"TS":[0,23,0,0]}]},{"x":11.862,"y":4.133,"w":2.556,"clr":0,"A":"left","R":[{"T":"WFC%20","S":-1,"TS":[0,23,0,0]}]},{"x":82.663,"y":3.7779999999999996,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,39,0,0]}]},{"x":28.462,"y":2.678,"w":19.698,"clr":0,"A":"left","R":[{"T":"Oregon%20Working%20Family%20Child%20Care%20Credit","S":-1,"TS":[0,17.5,0,0]}]},{"x":39.35,"y":3.928,"w":10.96,"clr":0,"A":"left","R":[{"T":"for%20Full-Year%20Residents","S":-1,"TS":[0,17.5,0,0]}]},{"x":85.385,"y":32.866,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":6.086,"y":32.344,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"%20%209.","S":-1,"TS":[0,11,0,0]}]},{"x":83.696,"y":32.969,"w":0.556,"clr":0,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,0,0]}]},{"x":85.389,"y":36.555,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":85.389,"y":37.306,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":85.389,"y":38.058,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":85.389,"y":38.809,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":5.938,"y":35.869,"w":12.762,"clr":0,"A":"left","R":[{"T":"First%20and%20Last%20Name%20of%20Child","S":-1,"TS":[0,11,0,0]}]},{"x":45.652,"y":35.869,"w":5.388999999999999,"clr":0,"A":"left","R":[{"T":"Child%E2%80%99s%20SSN","S":-1,"TS":[0,11,0,0]}]},{"x":60.189,"y":35.27,"w":3.093,"clr":0,"A":"left","R":[{"T":"Child%E2%80%99s","S":-1,"TS":[0,11,0,0]}]},{"x":58.394,"y":35.869,"w":5.630000000000002,"clr":0,"A":"left","R":[{"T":"Date%20of%20Birth","S":-1,"TS":[0,11,0,0]}]},{"x":73.237,"y":35.842,"w":5.797000000000001,"clr":0,"A":"left","R":[{"T":"Relationship%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":5.937,"y":36.531,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.061,"y":37.283,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.937,"y":38.034,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.937,"y":38.789,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.5,0,0]}]},{"x":85.715,"y":35.27,"w":9.353000000000002,"clr":0,"A":"left","R":[{"T":"Qualifying%20Expenses%20","S":-1,"TS":[0,11,0,0]}]},{"x":86.441,"y":35.869,"w":8.129999999999999,"clr":0,"A":"left","R":[{"T":"You%20Paid%20for%20Child","S":-1,"TS":[0,11,0,0]}]},{"x":6.298,"y":4.975,"w":4.669,"clr":0,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"x":6.298,"y":6.461,"w":17.818,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20last%20name%20if%20joint%20return","S":2,"TS":[0,10,0,0]}]},{"x":37.15,"y":4.975,"w":9.243000000000002,"clr":0,"A":"left","R":[{"T":"First%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"x":37.15,"y":6.438,"w":21.388,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20first%20name%20and%20initial%20if%20joint%20return","S":-1,"TS":[0,9.5,0,0]}]},{"x":61.797,"y":4.975,"w":13.186000000000002,"clr":0,"A":"left","R":[{"T":"Social%20Security%20number%20(SSN)","S":2,"TS":[0,10,0,0]}]},{"x":61.797,"y":6.461,"w":15.161,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20SSN%20if%20joint%20return","S":2,"TS":[0,10,0,0]}]},{"x":83.694,"y":5.052,"w":7.5569999999999995,"clr":0,"A":"left","R":[{"T":"Attending%20school","S":2,"TS":[0,10,0,0]}]},{"x":83.694,"y":6.54,"w":7.5569999999999995,"clr":0,"A":"left","R":[{"T":"Attending%20school","S":2,"TS":[0,10,0,0]}]},{"x":83.694,"y":5.771,"w":11.669000000000002,"clr":0,"A":"left","R":[{"T":"Form%20WFC-DP%20is%20included","S":2,"TS":[0,10,0,0]}]},{"x":83.694,"y":7.257999999999999,"w":11.669000000000002,"clr":0,"A":"left","R":[{"T":"Form%20WFC-DP%20is%20included","S":2,"TS":[0,10,0,0]}]},{"x":5.968,"y":21.58,"w":19.412000000000003,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20full%20name%20and%20complete%20address%20","S":-1,"TS":[0,10.84,0,0]}]},{"x":85.33,"y":23.086,"w":13.021,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":51,"TS":[0,9,0,0]}]},{"x":85.435,"y":23.819,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":87.668,"y":21.11,"w":7.7780000000000005,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":63.012,"y":21.62,"w":7.9990000000000006,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20SSN%20or","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":6.647,"y":22.407,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"x":8,"y":22.407,"w":2.649,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,9.5,0,0]}]},{"x":10.965,"y":22.407,"w":45,"clr":0,"A":"left","R":[{"T":"__________________________________________________________________________________________","S":-1,"TS":[0,9.5,0,0]}]},{"x":8,"y":23.157,"w":2.1670000000000003,"clr":0,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,9.5,0,0]}]},{"x":10.401,"y":23.157,"w":1.537,"clr":0,"A":"left","R":[{"T":"ess","S":-1,"TS":[0,9.5,0,0]}]},{"x":12.641,"y":23.157,"w":43.5,"clr":0,"A":"left","R":[{"T":"_______________________________________________________________________________________","S":-1,"TS":[0,9.5,0,0]}]},{"x":8,"y":23.844,"w":9.445,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20Code","S":-1,"TS":[0,9.5,0,0]}]},{"x":63.012,"y":23.1,"w":11.334000000000001,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20Telephone%20No.","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":77.978,"y":23.842,"w":4.726,"clr":0,"A":"left","R":[{"T":"..............%206","S":-1,"TS":[0,11,0,0]}]},{"x":85.389,"y":40.187,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":5.937,"y":39.535,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11.5,0,0]}]},{"x":71.375,"y":40.199,"w":4.726000000000001,"clr":0,"A":"left","R":[{"T":".................","S":-1,"TS":[0,16.8793,0,0]}]},{"x":82.784,"y":40.245,"w":1.112,"clr":0,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":41.026,"w":10.626999999999999,"clr":0,"A":"left","R":[{"T":"Computation%20of%20Credit","S":3,"TS":[0,12,0,0]}]},{"x":5.937,"y":41.776,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.412,"y":41.776,"w":25.820000000000007,"clr":0,"A":"left","R":[{"T":"Enter%20your%20federal%20adjusted%20gross%20income%20(Form%2040%2C%20line%208)","S":-1,"TS":[0,11.5,0,0]}]},{"x":46.145,"y":41.776,"w":26.68799999999997,"clr":0,"A":"left","R":[{"T":"................................................................................................","S":-1,"TS":[0,11.5,0,0]}]},{"x":85.437,"y":41.776,"w":1.112,"clr":0,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.937,"y":42.526,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11.5,0,0]}]},{"x":60.766,"y":42.526,"w":16.680000000000017,"clr":0,"A":"left","R":[{"T":"............................................................","S":-1,"TS":[0,11.5,0,0]}]},{"x":85.437,"y":42.526,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.937,"y":43.276,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.412,"y":44.026,"w":44.52999999999995,"clr":0,"A":"left","R":[{"T":"matches%20your%20household%20size%20on%20line%205%20above).%20For%20example%2C%20if%20the%20amount%20on%20line%205%20is%204%2C%20use%20Table%204","S":-1,"TS":[0,11.5,0,0]}]},{"x":73.357,"y":44.026,"w":7.784000000000006,"clr":0,"A":"left","R":[{"T":"............................","S":-1,"TS":[0,11.5,0,0]}]},{"x":85.437,"y":44.026,"w":1.112,"clr":0,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.936,"y":44.776,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11.5,0,0]}]},{"x":37.209,"y":45.526,"w":32.803999999999945,"clr":0,"A":"left","R":[{"T":"......................................................................................................................","S":-1,"TS":[0,11.5,0,0]}]},{"x":85.436,"y":45.526,"w":1.112,"clr":0,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11.5,0,0]}]},{"x":88.252,"y":43.935,"w":0.796,"clr":0,"A":"left","R":[{"T":"x%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.968,"y":25.371,"w":19.412000000000003,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20full%20name%20and%20complete%20address%20","S":-1,"TS":[0,10.84,0,0]}]},{"x":85.33,"y":26.877,"w":13.021,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":51,"TS":[0,9,0,0]}]},{"x":85.435,"y":27.611,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":6.647,"y":26.198,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"x":8,"y":26.198,"w":2.649,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,9.5,0,0]}]},{"x":10.965,"y":26.198,"w":45,"clr":0,"A":"left","R":[{"T":"__________________________________________________________________________________________","S":-1,"TS":[0,9.5,0,0]}]},{"x":8,"y":26.948,"w":2.1670000000000003,"clr":0,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,9.5,0,0]}]},{"x":10.401,"y":26.948,"w":1.537,"clr":0,"A":"left","R":[{"T":"ess","S":-1,"TS":[0,9.5,0,0]}]},{"x":12.641,"y":26.948,"w":43.5,"clr":0,"A":"left","R":[{"T":"_______________________________________________________________________________________","S":-1,"TS":[0,9.5,0,0]}]},{"x":8,"y":27.636,"w":9.445,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20Code","S":-1,"TS":[0,9.5,0,0]}]},{"x":63.012,"y":26.891,"w":11.334000000000001,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20Telephone%20No.","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":77.978,"y":27.633,"w":4.726,"clr":0,"A":"left","R":[{"T":"..............%207","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":8.889,"w":1.352,"clr":0,"A":"left","R":[{"T":"PA","S":3,"TS":[0,12,0,0]}]},{"x":7.800000000000001,"y":8.889,"w":20.467000000000002,"clr":0,"A":"left","R":[{"T":"YMENT%20OF%20YOUR%20CHILD%20CARE%20EXPENSES","S":3,"TS":[0,12,0,0]}]},{"x":87.668,"y":24.895,"w":7.7780000000000005,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":5.968,"y":29.121,"w":19.412000000000003,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20full%20name%20and%20complete%20address%20","S":-1,"TS":[0,10.84,0,0]}]},{"x":85.33,"y":30.627,"w":13.021,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":51,"TS":[0,9,0,0]}]},{"x":85.435,"y":31.360999999999997,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"x":6.647,"y":29.948,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11,0,0]}]},{"x":8,"y":29.948,"w":2.649,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,9.5,0,0]}]},{"x":10.965,"y":29.948,"w":45,"clr":0,"A":"left","R":[{"T":"__________________________________________________________________________________________","S":-1,"TS":[0,9.5,0,0]}]},{"x":8,"y":30.698,"w":2.1670000000000003,"clr":0,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,9.5,0,0]}]},{"x":10.401,"y":30.698,"w":1.537,"clr":0,"A":"left","R":[{"T":"ess","S":-1,"TS":[0,9.5,0,0]}]},{"x":12.641,"y":30.698,"w":43.5,"clr":0,"A":"left","R":[{"T":"_______________________________________________________________________________________","S":-1,"TS":[0,9.5,0,0]}]},{"x":8,"y":31.386000000000003,"w":9.445,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20Code","S":-1,"TS":[0,9.5,0,0]}]},{"x":63.012,"y":30.641,"w":11.334000000000001,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20Telephone%20No.","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":77.978,"y":31.383000000000003,"w":4.726,"clr":0,"A":"left","R":[{"T":"..............%208","S":-1,"TS":[0,11,0,0]}]},{"x":87.668,"y":28.645,"w":7.7780000000000005,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":5.938,"y":47.393,"w":11.469000000000005,"clr":0,"A":"left","R":[{"T":"150-101-169%20(Rev.%2012-13)","S":51,"TS":[0,9,0,0]}]},{"x":61.872,"y":5.781,"w":5.005,"clr":0,"A":"left","R":[{"T":"%20%20%20-%20%20-","S":-1,"TS":[0,13,0,0]}]},{"x":61.872,"y":7.281000000000001,"w":5.005,"clr":0,"A":"left","R":[{"T":"%20%20%20-%20%20-","S":-1,"TS":[0,13,0,0]}]},{"x":57.347,"y":13.666,"w":13.559,"clr":0,"A":"left","R":[{"T":"FOR%20COMPUTER%20USE%20ONLY","S":5,"TS":[0,18,0,0]}]},{"x":5.938,"y":8.214,"w":27.28099999999999,"clr":0,"A":"left","R":[{"T":"YOU%20MAY%20BE%20REQUIRED%20TO%20PROvIDE%20PROOF%20OF%20YOUR%20","S":3,"TS":[0,12,0,0]}]},{"x":8.448,"y":12.702,"w":22.596,"clr":0,"A":"left","R":[{"T":"claim%20on%20your%20federal%20return%20because%20you%20released%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.448,"y":13.452,"w":18.172000000000004,"clr":0,"A":"left","R":[{"T":"the%20exemption%20to%20the%20child%E2%80%99s%20other%20parent","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.451,"y":15.702000000000002,"w":21.40900000000001,"clr":0,"A":"left","R":[{"T":"federal%20return%20for%20people%20who%20did%20not%20live%20in%20your","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.451,"y":17.203,"w":22.374,"clr":0,"A":"left","R":[{"T":"to%20you%20by%20your%20child%E2%80%99s%20other%20parent%2C%20or%20who%20are%20not","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.451,"y":17.953,"w":20.05900000000001,"clr":0,"A":"left","R":[{"T":"related%20by%20blood%2C%20marriage%2C%20RDP%2C%20or%20adoption","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.938,"y":20.114,"w":54.412999999999954,"clr":0,"A":"left","R":[{"T":"Qualifying%20Child%20Care%20Expenses%20Paid%20in%202013.%20Complete%20all%20information%20for%20each%20child%20care%20provider%20you%20paid%20in%202013.","S":3,"TS":[0,12,0,0]}]},{"x":8.412,"y":42.526,"w":35.711999999999996,"clr":0,"A":"left","R":[{"T":"Enter%20the%20total%20qualifying%20child%20care%20expenses%20you%20paid%20in%202013%20from%20line%209%20above","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.412,"y":43.276,"w":46.28999999999996,"clr":0,"A":"left","R":[{"T":"Enter%20the%20decimal%20amount%20from%20the%20working%20family%20child%20care%20credit%20table%20on%20the%20back%20(use%20the%20table%20that%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.411,"y":44.776,"w":49.29799999999995,"clr":0,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20line%2016%20by%20the%20decimal%20amount%20on%20line%2017.%20Enter%20the%20result%20here%20and%20on%20Form%2040%2C%20line%2045.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.411,"y":45.526,"w":19.538,"clr":0,"A":"left","R":[{"T":"This%20is%20your%20working%20family%20child%20care%20credit%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.561,"y":32.344,"w":26.601999999999997,"clr":0,"A":"left","R":[{"T":"Add%20amounts%20on%20lines%206%20through%208%20and%20enter%20the%20result%20here.","S":-1,"TS":[0,11,0,0]}]},{"x":8.436,"y":32.969,"w":33.209,"clr":0,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20three%20providers%2C%20enter%20additional%20qualifying%20providers","S":-1,"TS":[0,11,0,0]}]},{"x":56.62,"y":32.969,"w":9.096000000000004,"clr":0,"A":"left","R":[{"T":"and%20check%20here%20%20%209a%20","S":-1,"TS":[0,11,0,0]}]},{"x":8.412,"y":39.535,"w":23.069999999999993,"clr":0,"A":"left","R":[{"T":"Add%20amounts%20on%20lines%2010%20through%2013%20and%20enter%20the%20result%20here.","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.266,"y":40.201,"w":29.98,"clr":0,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20four%20qualifying%20children%2C%20enter%20additional%20qualifying%20children","S":-1,"TS":[0,11.5,0,0]}]},{"x":59.375,"y":40.201,"w":7.824000000000001,"clr":0,"A":"left","R":[{"T":"and%20check%20here%20%20%2014a","S":-1,"TS":[0,11.5,0,0]}]},{"x":72.194,"y":32.992,"w":4.726000000000001,"clr":0,"A":"left","R":[{"T":".................","S":-1,"TS":[0,16.8793,0,0]}]},{"x":75.473,"y":21.62,"w":6.9620000000000015,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20FEIN","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":63.012,"y":25.433,"w":7.9990000000000006,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20SSN%20or","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":75.473,"y":25.433,"w":6.9620000000000015,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20FEIN","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":63.012,"y":29.151,"w":7.9990000000000006,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20SSN%20or","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":75.473,"y":29.151,"w":6.9620000000000015,"clr":0,"A":"left","R":[{"T":"Provider%E2%80%99s%20FEIN","S":-1,"TS":[0,9.629999999999999,0,0]}]},{"x":87.668,"y":21.548,"w":5.519,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,9.5,0,0]}]},{"x":87.668,"y":25.36,"w":5.519,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,9.5,0,0]}]},{"x":87.668,"y":29.048,"w":5.519,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,9.5,0,0]}]},{"x":5.938,"y":34.5,"w":25.872,"clr":0,"A":"left","R":[{"T":"Qualifying%20Child%20Information--Complete%20all%20information","S":-1,"TS":[0,11,0,0]}]},{"x":25.222,"y":35,"w":6.498,"clr":0,"A":"left","R":[{"T":"for%20each%20child","S":-1,"TS":[0,11,0,0]}]},{"x":71.747,"y":35.342,"w":8.167,"clr":0,"A":"left","R":[{"T":"Child%20to%20Taxpayer%20","S":-1,"TS":[0,10.2,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":574,"AM":1024,"x":6.716,"y":5.924,"w":29.998,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAM","EN":0},"TI":575,"AM":1024,"x":37.388,"y":5.897,"w":18.978,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":576,"AM":1024,"x":56.885,"y":5.901,"w":4.595,"h":0.833,"TU":"Taxpayer middle initial"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":577,"AM":1024,"x":62.067,"y":5.934,"w":17.814,"h":0.833,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":579,"AM":1024,"x":6.598,"y":7.398,"w":30.063,"h":0.833,"TU":"Spouse’s/RDP’s last name if joint return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAM","EN":0},"TI":581,"AM":1024,"x":37.528,"y":7.43,"w":18.859,"h":0.833,"TU":"Spouse’s/RDP’s first name and initial if joint return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":582,"AM":1024,"x":56.641,"y":7.445,"w":4.894,"h":0.833,"TU":"Spouse middle initial"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":583,"AM":1024,"x":62.122,"y":7.424,"w":17.889,"h":0.833,"TU":"spouse social security number. 9 digits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXCLM","EN":0},"TI":585,"AM":0,"x":44.736,"y":11.258,"w":4.599,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXNOCLM","EN":0},"TI":586,"AM":0,"x":44.792,"y":13.522,"w":4.599,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXTOT","EN":0},"TI":587,"AM":1024,"x":44.847,"y":14.25,"w":4.599,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXNR","EN":0},"TI":588,"AM":0,"x":44.752,"y":18.027,"w":4.599,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTHHSZ","EN":0},"TI":589,"AM":1024,"x":44.806,"y":18.809,"w":4.599,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_1_","EN":0},"TI":590,"AM":0,"x":11.22,"y":22.545,"w":50.263,"h":0.833,"TU":"6. Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_1_","EN":0},"TI":591,"AM":0,"x":62.289,"y":22.505,"w":12.506,"h":0.833,"TU":"SSN"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_1_","EN":0},"TI":592,"AM":0,"x":75.322,"y":22.52,"w":12.506,"h":0.833,"TU":"FEIN","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_1_","EN":0},"TI":593,"AM":0,"x":88.136,"y":22.476,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_1_","EN":0},"TI":594,"AM":0,"x":12.891,"y":23.295,"w":48.593,"h":0.833,"TU":"address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_1_","EN":0},"TI":595,"AM":0,"x":18.977,"y":24.057,"w":28.079,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_1_","EN":0},"TI":596,"AM":0,"x":47.331,"y":24.026,"w":4.891,"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_PROVZIP_1_","EN":0},"TI":597,"AM":0,"x":53.179,"y":24.087,"w":8.263,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_1_","EN":0},"TI":598,"AM":0,"x":63.373,"y":24.031,"w":14.378,"h":0.833,"TU":"PHONE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_1_","EN":0},"TI":599,"AM":0,"x":86.419,"y":24.03,"w":12.519,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_2_","EN":0},"TI":600,"AM":0,"x":11.318,"y":26.356,"w":50.263,"h":0.833,"TU":"6. Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_2_","EN":0},"TI":601,"AM":0,"x":62.248,"y":26.351,"w":12.506,"h":0.833,"TU":"SSN"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_2_","EN":0},"TI":602,"AM":0,"x":75.28,"y":26.366,"w":12.506,"h":0.833,"TU":"FEIN","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_2_","EN":0},"TI":603,"AM":0,"x":87.996,"y":26.327,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_2_","EN":0},"TI":604,"AM":0,"x":12.989,"y":27.106,"w":48.593,"h":0.833,"TU":"address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_2_","EN":0},"TI":605,"AM":0,"x":18.977,"y":27.828,"w":28.079,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_2_","EN":0},"TI":606,"AM":0,"x":47.541,"y":27.837,"w":4.891,"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_PROVZIP_2_","EN":0},"TI":607,"AM":0,"x":53.277,"y":27.898,"w":8.263,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_2_","EN":0},"TI":608,"AM":0,"x":63.472,"y":27.842,"w":14.378,"h":0.833,"TU":"PHONE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_2_","EN":0},"TI":609,"AM":0,"x":86.517,"y":27.841,"w":12.519,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_3_","EN":0},"TI":610,"AM":0,"x":11.243,"y":30.053,"w":50.263,"h":0.833,"TU":"6. Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_3_","EN":0},"TI":611,"AM":0,"x":62.153,"y":30.019,"w":12.506,"h":0.833,"TU":"SSN"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_3_","EN":0},"TI":612,"AM":0,"x":75.185,"y":30.034,"w":12.506,"h":0.833,"TU":"FEIN","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_3_","EN":0},"TI":613,"AM":0,"x":87.975,"y":29.968,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_3_","EN":0},"TI":614,"AM":0,"x":12.914,"y":30.803,"w":48.592,"h":0.833,"TU":"address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_3_","EN":0},"TI":615,"AM":0,"x":19.182,"y":31.577,"w":28.079,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_3_","EN":0},"TI":616,"AM":0,"x":47.67,"y":31.587,"w":4.891,"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_PROVZIP_3_","EN":0},"TI":617,"AM":0,"x":53.203,"y":31.594,"w":8.263,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_3_","EN":0},"TI":618,"AM":0,"x":63.397,"y":31.538,"w":14.378,"h":0.833,"TU":"PHONE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_3_","EN":0},"TI":619,"AM":0,"x":86.442,"y":31.538,"w":12.519,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ORWFCDEP"}},"id":{"Id":"ADD_WFCDEP_P","EN":0},"TI":620,"AM":0,"x":52.101,"y":33.172,"w":2.343,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCREXP","EN":0},"TI":622,"AM":1024,"x":86.378,"y":33.075,"w":12.561,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_1_","EN":0},"TI":623,"AM":0,"x":8.559,"y":36.771,"w":33.792,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_1_","EN":0},"TI":624,"AM":0,"x":42.859,"y":36.742,"w":13.406,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_1_","EN":0},"TI":625,"AM":0,"x":56.492,"y":36.742,"w":12.086,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_1_","EN":0},"TI":626,"AM":0,"x":68.829,"y":36.754,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_1_","EN":0},"TI":627,"AM":0,"x":86.398,"y":36.742,"w":12.561,"h":0.833,"TU":"You Paid for Child"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_2_","EN":0},"TI":628,"AM":0,"x":8.555,"y":37.508,"w":33.792,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_2_","EN":0},"TI":629,"AM":0,"x":42.855,"y":37.48,"w":13.406,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_2_","EN":0},"TI":630,"AM":0,"x":56.488,"y":37.48,"w":12.086,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_2_","EN":0},"TI":631,"AM":0,"x":68.755,"y":37.517,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_2_","EN":0},"TI":632,"AM":0,"x":86.394,"y":37.48,"w":12.561,"h":0.833,"TU":"You Paid for Child"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_3_","EN":0},"TI":633,"AM":0,"x":8.54,"y":38.291,"w":33.792,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_3_","EN":0},"TI":634,"AM":0,"x":42.84,"y":38.263,"w":13.406,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_3_","EN":0},"TI":635,"AM":0,"x":56.473,"y":38.263,"w":12.086,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_3_","EN":0},"TI":636,"AM":0,"x":68.68,"y":38.224,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_3_","EN":0},"TI":637,"AM":0,"x":86.379,"y":38.263,"w":12.561,"h":0.833,"TU":"You Paid for Child"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_4_","EN":0},"TI":638,"AM":0,"x":8.536,"y":39.028,"w":33.792,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_4_","EN":0},"TI":639,"AM":0,"x":42.836,"y":39,"w":13.406,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_4_","EN":0},"TI":640,"AM":0,"x":56.469,"y":39,"w":12.086,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_4_","EN":0},"TI":641,"AM":0,"x":68.66,"y":39.007,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_4_","EN":0},"TI":642,"AM":0,"x":86.375,"y":39,"w":12.561,"h":0.833,"TU":"You Paid for Child"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"ORWFCDEP"}},"id":{"Id":"ADD_WFCDEP_C","EN":0},"TI":643,"AM":0,"x":55.183,"y":40.288,"w":2.343,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCCEXP","EN":0},"TI":645,"AM":1024,"x":86.398,"y":40.348,"w":12.561,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGI","EN":0},"TI":646,"AM":1024,"x":88.052,"y":41.8,"w":10.914,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCCEXP","EN":0},"TI":647,"AM":1024,"x":88.052,"y":42.589,"w":10.914,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"WORKCR","EN":0},"TI":648,"AM":0,"x":89.986,"y":44.084,"w":8.136,"h":0.833,"PL":{"V":[null,"0.40","0.36","0.32","0.24","0.16","0.08","0.00"],"D":[" ","0.40","0.36","0.32","0.24","0.16","0.08","0.00"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WFCCCRED","EN":0},"TI":649,"AM":1024,"x":88.069,"y":45.583,"w":10.787,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SKL1","EN":0},"TI":573,"AM":0,"x":81.366,"y":5.23,"w":1.609,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WFCDP1","EN":0},"TI":578,"AM":0,"x":81.366,"y":5.927,"w":1.609,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SKL2","EN":0},"TI":580,"AM":0,"x":81.366,"y":6.722,"w":1.609,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"WFCDP2","EN":0},"TI":584,"AM":0,"x":81.366,"y":7.413,"w":1.609,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TOTBX9","EN":0},"TI":621,"AM":1024,"x":68.242,"y":33.217,"w":1.299,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TOTBX14","EN":0},"TI":644,"AM":1024,"x":71.596,"y":40.404,"w":1.279,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/ORWFCDEP.content.txt b/test/data/or/form/ORWFCDEP.content.txt new file mode 100755 index 00000000..9712ad4c --- /dev/null +++ b/test/data/or/form/ORWFCDEP.content.txt @@ -0,0 +1,115 @@ +Additional Schedule WFC Information Statement +Attach to your return +Statement +Name(s) shown on return +Social Security number (SSN) +Additional Qualifying Providers Information - complete all information for each provider +Child to Provider +Name +City, State, ZIP code +. . . . . . . . +$ +Name +City, State, ZIP code +. . . . . . . . +$ +Name +City, State, ZIP code +. . . . . . . . +$ +Name +City, State, ZIP code +. . . . . . . . +$ +Name +City, State, ZIP code +. . . . . . . . +$ +Name +City, State, ZIP code +. +. . . . . . . . +$ +Total. + Enter the total amount on Schedule WFC line 9 +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +$ +Additional Qualifying Children Information +- Complete all information for each child +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +Total. + Enter the total amount on Schedule WFC line 14 +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +$ +2013 +Provider's full name and complete address +Provider's full name and complete address +Provider's full name and complete address +Provider's SSN or +Provider's full name and complete address +Provider's full name and complete address +Provider's full name and complete address +Provider's FEIN +Address +Provider's Telephone No. +Address +Provider's Telephone No. +Address +Provider's Telephone No. +Address +Provider's Telephone No. +Address +Provider's Telephone No. +Address +Provider's Telephone No. +Amount You Paid to Provider +Child to Provider +Amount You Paid to Provider +Child to Provider +Amount You Paid to Provider +Child to Provider +Amount You Paid to Provider +Child to Provider +Amount You Paid to Provider +Child to Provider +Amount You Paid to Provider +Provider's SSN or +Provider's FEIN +Provider's SSN or +Provider's FEIN +Provider's SSN or +Provider's FEIN +Provider's SSN or +Provider's FEIN +Provider's SSN or +Provider's FEIN +Relationship +Relationship +Relationship +Relationship +Relationship +Relationship +First and Last Name of Child +Child's SSN +Date of Birth +You Paid for Child +Child's +Relationship +Expenses +Child toTaxpayer +Qualifying +----------------Page (0) Break---------------- diff --git a/test/data/or/form/ORWFCDEP.fields.json b/test/data/or/form/ORWFCDEP.fields.json new file mode 100755 index 00000000..32b1a0ba --- /dev/null +++ b/test/data/or/form/ORWFCDEP.fields.json @@ -0,0 +1 @@ +[{"id":"STMT","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"PROV_PROVNM_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_1_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_1_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_1_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_1_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_1_","type":"number","calc":false,"value":""},{"id":"PROV_PROVNM_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_2_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_2_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_2_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_2_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_2_","type":"number","calc":false,"value":""},{"id":"PROV_PROVNM_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_3_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_3_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_3_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_3_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_3_","type":"number","calc":false,"value":""},{"id":"PROV_PROVNM_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_4_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_4_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_4_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_4_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_4_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_4_","type":"number","calc":false,"value":""},{"id":"PROV_PROVNM_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_5_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_5_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_5_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_5_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_5_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_5_","type":"number","calc":false,"value":""},{"id":"PROV_PROVNM_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_TEMPSSN_6_","type":"ssn","calc":false,"value":""},{"id":"PROV_PROVEIN_6_","type":"mask","calc":false,"value":""},{"id":"PROV_PROVREL_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVADDR_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVCTY_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVST_6_","type":"alpha","calc":false,"value":""},{"id":"PROV_PROVZIP_6_","type":"zip","calc":false,"value":""},{"id":"PROV_PROVPHN_6_","type":"phone","calc":false,"value":""},{"id":"PROV_PROVAMT_6_","type":"number","calc":false,"value":""},{"id":"TOTAL1","type":"number","calc":true,"value":""},{"id":"QCHILD_NCPNAME_1_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_1_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_1_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_1_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_2_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_2_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_2_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_2_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_3_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_3_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_3_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_3_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_4_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_4_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_4_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_4_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_4_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_5_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_5_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_5_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_5_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_5_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_6_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_6_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_6_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_6_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_6_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_7_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_7_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_7_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_7_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_7_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_8_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_8_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_8_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_8_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_8_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_9_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_9_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_9_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_9_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_9_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_10_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_10_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_10_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_10_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_10_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_11_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_11_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_11_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_11_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_11_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_12_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_12_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_12_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_12_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_12_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_13_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_13_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_13_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_13_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_13_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_14_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_14_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_14_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_14_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_14_","type":"number","calc":false,"value":""},{"id":"QCHILD_NCPNAME_15_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_NCPSSN_15_","type":"ssn","calc":false,"value":""},{"id":"QCHILD_NCPDOB_15_","type":"date","calc":false,"value":""},{"id":"QCHILD_NCPREL_15_","type":"alpha","calc":false,"value":""},{"id":"QCHILD_CHILDEXP_15_","type":"number","calc":false,"value":""},{"id":"TOTAL2","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/ORWFCDEP.json b/test/data/or/form/ORWFCDEP.json new file mode 100755 index 00000000..70c8ef09 --- /dev/null +++ b/test/data/or/form/ORWFCDEP.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"oridepcare.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":1.031,"y":1.5,"w":98.309,"h":0.124,"clr":0},{"x":90.75,"y":3.75,"w":8.333,"h":0.03,"clr":0},{"x":1.031,"y":4.5,"w":98.309,"h":0.124,"clr":0},{"x":1.031,"y":6,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":7.938,"w":53.708,"h":0.03,"clr":0},{"x":9.281,"y":8.688,"w":45.458,"h":0.03,"clr":0},{"x":11.344,"y":9.438,"w":43.395,"h":0.03,"clr":0},{"x":1.031,"y":10.188,"w":53.708,"h":0.03,"clr":0},{"x":55.688,"y":9.438,"w":17.614,"h":0.03,"clr":0},{"x":55.688,"y":10.188,"w":17.614,"h":0.03,"clr":0},{"x":84.563,"y":9.438,"w":14.52,"h":0.03,"clr":0},{"x":84.563,"y":10.188,"w":14.52,"h":0.03,"clr":0},{"x":1.031,"y":11.75,"w":53.708,"h":0.03,"clr":0},{"x":9.281,"y":12.5,"w":45.458,"h":0.03,"clr":0},{"x":11.344,"y":13.25,"w":43.395,"h":0.03,"clr":0},{"x":1.031,"y":14,"w":53.708,"h":0.03,"clr":0},{"x":55.688,"y":13.25,"w":17.614,"h":0.03,"clr":0},{"x":55.688,"y":14,"w":17.614,"h":0.03,"clr":0},{"x":84.563,"y":13.25,"w":14.52,"h":0.03,"clr":0},{"x":84.563,"y":14,"w":14.52,"h":0.03,"clr":0},{"x":1.031,"y":15.5,"w":53.708,"h":0.03,"clr":0},{"x":9.281,"y":16.25,"w":45.458,"h":0.03,"clr":0},{"x":11.344,"y":17,"w":43.395,"h":0.03,"clr":0},{"x":1.031,"y":17.75,"w":53.708,"h":0.03,"clr":0},{"x":55.688,"y":17,"w":17.614,"h":0.03,"clr":0},{"x":55.688,"y":17.75,"w":17.614,"h":0.03,"clr":0},{"x":84.563,"y":17,"w":14.52,"h":0.03,"clr":0},{"x":84.563,"y":17.75,"w":14.52,"h":0.03,"clr":0},{"x":1.031,"y":19.25,"w":53.708,"h":0.03,"clr":0},{"x":9.281,"y":20,"w":45.458,"h":0.03,"clr":0},{"x":11.344,"y":20.75,"w":43.395,"h":0.03,"clr":0},{"x":1.031,"y":21.5,"w":53.708,"h":0.03,"clr":0},{"x":55.688,"y":20.75,"w":17.614,"h":0.03,"clr":0},{"x":55.688,"y":21.5,"w":17.614,"h":0.03,"clr":0},{"x":84.563,"y":20.75,"w":14.52,"h":0.03,"clr":0},{"x":84.563,"y":21.5,"w":14.52,"h":0.03,"clr":0},{"x":1.031,"y":22.937,"w":53.708,"h":0.03,"clr":0},{"x":9.281,"y":23.687,"w":45.458,"h":0.03,"clr":0},{"x":11.344,"y":24.437,"w":43.395,"h":0.03,"clr":0},{"x":1.031,"y":25.187,"w":53.708,"h":0.03,"clr":0},{"x":55.688,"y":24.437,"w":17.614,"h":0.03,"clr":0},{"x":55.688,"y":25.187,"w":17.614,"h":0.03,"clr":0},{"x":84.563,"y":24.437,"w":14.52,"h":0.03,"clr":0},{"x":84.563,"y":25.187,"w":14.52,"h":0.03,"clr":0},{"x":1.031,"y":26.562,"w":53.708,"h":0.03,"clr":0},{"x":9.281,"y":27.312,"w":45.458,"h":0.03,"clr":0},{"x":11.344,"y":28.062,"w":43.395,"h":0.03,"clr":0},{"x":1.031,"y":28.812,"w":98.051,"h":0.03,"clr":0},{"x":55.688,"y":28.062,"w":17.614,"h":0.03,"clr":0},{"x":84.563,"y":28.062,"w":14.52,"h":0.03,"clr":0},{"x":84.563,"y":29.187,"w":14.52,"h":0.03,"clr":0},{"x":84.563,"y":29.937,"w":14.52,"h":0.03,"clr":0},{"x":1.031,"y":30.375,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":30.75,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":33.75,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":34.5,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":35.25,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":36,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":36.75,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":37.5,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":38.25,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":39,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":39.75,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":40.5,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":41.25,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":42,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":42.75,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":43.5,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":44.25,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":45,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":1.5,"w":0.34,"h":3.124,"clr":0},{"x":1.031,"y":4.5,"w":0.082,"h":1.53,"clr":0},{"x":76.313,"y":4.5,"w":0.083,"h":1.53,"clr":0},{"x":1.031,"y":7.938,"w":0.082,"h":2.28,"clr":0},{"x":54.656,"y":7.938,"w":0.083,"h":2.28,"clr":0},{"x":36.094,"y":9.438,"w":0.082,"h":0.78,"clr":0},{"x":41.25,"y":9.438,"w":0.082,"h":0.78,"clr":0},{"x":42.281,"y":9.438,"w":0.082,"h":0.78,"clr":0},{"x":55.688,"y":9.438,"w":0.083,"h":0.78,"clr":0},{"x":73.219,"y":9.438,"w":0.083,"h":0.78,"clr":0},{"x":84.563,"y":9.438,"w":0.083,"h":0.78,"clr":0},{"x":1.031,"y":11.75,"w":0.082,"h":2.28,"clr":0},{"x":54.656,"y":11.75,"w":0.083,"h":2.28,"clr":0},{"x":36.094,"y":13.25,"w":0.082,"h":0.78,"clr":0},{"x":41.25,"y":13.25,"w":0.082,"h":0.78,"clr":0},{"x":42.281,"y":13.25,"w":0.082,"h":0.78,"clr":0},{"x":55.688,"y":13.25,"w":0.083,"h":0.78,"clr":0},{"x":73.219,"y":13.25,"w":0.083,"h":0.78,"clr":0},{"x":84.563,"y":13.25,"w":0.083,"h":0.78,"clr":0},{"x":1.031,"y":15.5,"w":0.082,"h":2.28,"clr":0},{"x":54.656,"y":15.5,"w":0.083,"h":2.28,"clr":0},{"x":36.094,"y":17,"w":0.082,"h":0.78,"clr":0},{"x":41.25,"y":17,"w":0.082,"h":0.78,"clr":0},{"x":42.281,"y":17,"w":0.082,"h":0.78,"clr":0},{"x":55.688,"y":17,"w":0.083,"h":0.78,"clr":0},{"x":73.219,"y":17,"w":0.083,"h":0.78,"clr":0},{"x":84.563,"y":17,"w":0.083,"h":0.78,"clr":0},{"x":1.031,"y":19.25,"w":0.082,"h":2.28,"clr":0},{"x":54.656,"y":19.25,"w":0.083,"h":2.28,"clr":0},{"x":36.094,"y":20.75,"w":0.082,"h":0.78,"clr":0},{"x":41.25,"y":20.75,"w":0.082,"h":0.78,"clr":0},{"x":42.281,"y":20.75,"w":0.082,"h":0.78,"clr":0},{"x":55.688,"y":20.75,"w":0.083,"h":0.78,"clr":0},{"x":73.219,"y":20.75,"w":0.083,"h":0.78,"clr":0},{"x":84.563,"y":20.75,"w":0.083,"h":0.78,"clr":0},{"x":1.031,"y":22.938,"w":0.082,"h":2.28,"clr":0},{"x":54.656,"y":22.938,"w":0.083,"h":2.28,"clr":0},{"x":36.094,"y":24.438,"w":0.082,"h":0.78,"clr":0},{"x":41.25,"y":24.438,"w":0.082,"h":0.78,"clr":0},{"x":42.281,"y":24.438,"w":0.082,"h":0.78,"clr":0},{"x":55.688,"y":24.438,"w":0.083,"h":0.78,"clr":0},{"x":73.219,"y":24.438,"w":0.083,"h":0.78,"clr":0},{"x":84.563,"y":24.438,"w":0.083,"h":0.78,"clr":0},{"x":1.031,"y":26.563,"w":0.082,"h":2.28,"clr":0},{"x":54.656,"y":26.563,"w":0.083,"h":2.28,"clr":0},{"x":36.094,"y":28.063,"w":0.082,"h":0.78,"clr":0},{"x":41.25,"y":28.063,"w":0.082,"h":0.78,"clr":0},{"x":42.281,"y":28.063,"w":0.082,"h":0.78,"clr":0},{"x":55.688,"y":28.063,"w":0.083,"h":0.78,"clr":0},{"x":73.219,"y":28.063,"w":0.083,"h":0.78,"clr":0},{"x":84.563,"y":28.063,"w":0.083,"h":0.78,"clr":0},{"x":84.563,"y":29.188,"w":0.083,"h":0.78,"clr":0},{"x":40.391,"y":30.75,"w":0.083,"h":14.28,"clr":0},{"x":53.281,"y":30.75,"w":0.083,"h":14.28,"clr":0},{"x":67.719,"y":30.75,"w":0.083,"h":14.28,"clr":0},{"x":84.563,"y":30.75,"w":0.083,"h":14.28,"clr":0},{"x":99,"y":1.5,"w":0.34,"h":3.124,"clr":0},{"x":99.172,"y":9.438,"w":0.082,"h":0.78,"clr":0},{"x":99.172,"y":13.25,"w":0.082,"h":0.78,"clr":0},{"x":99.172,"y":17,"w":0.082,"h":0.78,"clr":0},{"x":99.172,"y":20.75,"w":0.082,"h":0.78,"clr":0},{"x":99.172,"y":24.438,"w":0.082,"h":0.78,"clr":0},{"x":99.172,"y":28,"w":0.082,"h":0.78,"clr":0},{"x":99.172,"y":29.188,"w":0.082,"h":0.78,"clr":0},{"x":84.477,"y":46.641,"w":14.52,"h":0.03,"clr":0},{"x":1.031,"y":47.813,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":48.188,"w":98.051,"h":0.03,"clr":0},{"x":99.174,"y":4.438,"w":0.082,"h":1.53,"clr":0},{"x":84.563,"y":25.125,"w":14.52,"h":0.03,"clr":0},{"x":0,"y":48.767,"w":16.568,"h":0.733,"clr":0},{"x":0,"y":48.767,"w":16.568,"h":0.733,"clr":0},{"x":0,"y":48.767,"w":16.568,"h":0.733,"clr":0}],"Texts":[{"x":25.119,"y":2.126,"w":23.058,"clr":0,"A":"left","R":[{"T":"Additional%20Schedule%20WFC%20Information%20Statement","S":-1,"TS":[2,15.9773,1,0]}]},{"x":41.516,"y":2.876,"w":9.558,"clr":0,"A":"left","R":[{"T":"Attach%20to%20your%20return","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.59,"y":2.876,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,13.941,1,0]}]},{"x":1.122,"y":4.376,"w":11.798000000000002,"clr":0,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[2,11.9829,0,0]}]},{"x":76.403,"y":4.376,"w":13.938999999999997,"clr":0,"A":"left","R":[{"T":"Social%20Security%20number%20(SSN)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.122,"y":6.126,"w":41.61999999999996,"clr":0,"A":"left","R":[{"T":"Additional%20Qualifying%20Providers%20Information%20-%20complete%20all%20information%20for%20each%20provider","S":-1,"TS":[2,11.9829,1,0]}]},{"x":86.372,"y":6.251,"w":7.730999999999998,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":7.814,"w":2.7039999999999997,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":9.314,"w":9.628,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":75.774,"y":9.314,"w":5.271999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.653,"y":9.314,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":11.626,"w":2.7039999999999997,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":13.126,"w":9.628,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":75.774,"y":13.126,"w":5.271999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.653,"y":13.126,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":15.376000000000001,"w":2.7039999999999997,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":16.876,"w":9.628,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":75.774,"y":16.876,"w":5.271999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.653,"y":16.876,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":19.126,"w":2.7039999999999997,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":20.626,"w":9.628,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":75.774,"y":20.626,"w":5.271999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.653,"y":20.626,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":22.814,"w":2.7039999999999997,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":24.314,"w":9.628,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":75.774,"y":24.314,"w":5.271999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.653,"y":24.314,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":26.439,"w":2.7039999999999997,"clr":0,"A":"left","R":[{"T":"Name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":27.939,"w":9.628,"clr":0,"A":"left","R":[{"T":"City%2C%20State%2C%20ZIP%20code","S":-1,"TS":[2,11.9829,0,0]}]},{"x":74.34,"y":27.939,"w":0.319,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.9829,0,0]}]},{"x":75.774,"y":27.939,"w":5.271999999999999,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.653,"y":27.939,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.121,"y":29.064,"w":2.667,"clr":0,"A":"left","R":[{"T":"Total.","S":-1,"TS":[2,11.9829,1,0]}]},{"x":5.257,"y":29.064,"w":22.251,"clr":0,"A":"left","R":[{"T":"%20Enter%20the%20total%20amount%20on%20Schedule%20WFC%20line%209","S":-1,"TS":[2,11.9829,0,0]}]},{"x":40.381,"y":29.064,"w":39.54000000000005,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.653,"y":29.064,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.121,"y":30.626,"w":20.169000000000004,"clr":0,"A":"left","R":[{"T":"Additional%20Qualifying%20Children%20Information","S":-1,"TS":[2,11.9829,1,0]}]},{"x":1.121,"y":31.375999999999998,"w":19.115000000000002,"clr":0,"A":"left","R":[{"T":"-%20Complete%20all%20information%20for%20each%20child","S":-1,"TS":[2,11.9829,1,0]}]},{"x":84.653,"y":33.626,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":34.376,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":35.126,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":35.876,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":36.626,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":37.376,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":38.126,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":38.876,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":39.626,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":40.376,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":41.126,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":41.876,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":42.626,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":43.376,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":44.126,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.036,"y":45.767,"w":2.667,"clr":0,"A":"left","R":[{"T":"Total.","S":-1,"TS":[2,11.9829,1,0]}]},{"x":5.171,"y":45.767,"w":22.808,"clr":0,"A":"left","R":[{"T":"%20Enter%20the%20total%20amount%20on%20Schedule%20WFC%20line%2014","S":-1,"TS":[2,11.9829,0,0]}]},{"x":40.976,"y":45.767,"w":38.88100000000004,"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","S":-1,"TS":[2,8.9885,0,0]}]},{"x":84.567,"y":45.767,"w":0.592,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[2,11.9829,0,0]}]},{"x":85.509,"y":2.143,"w":33.36,"clr":0,"A":"left","R":[{"T":"2013","S":5,"TS":[0,18,0,0]}]},{"x":1.121,"y":22.064,"w":19.828000000000003,"clr":0,"A":"left","R":[{"T":"Provider's%20full%20name%20and%20complete%20address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.121,"y":25.689,"w":19.828000000000003,"clr":0,"A":"left","R":[{"T":"Provider's%20full%20name%20and%20complete%20address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.122,"y":7.064,"w":19.828000000000003,"clr":0,"A":"left","R":[{"T":"Provider's%20full%20name%20and%20complete%20address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":56.126,"y":7.064,"w":8.269,"clr":0,"A":"left","R":[{"T":"Provider's%20SSN%20or","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.121,"y":10.876,"w":19.828000000000003,"clr":0,"A":"left","R":[{"T":"Provider's%20full%20name%20and%20complete%20address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.121,"y":14.626,"w":19.828000000000003,"clr":0,"A":"left","R":[{"T":"Provider's%20full%20name%20and%20complete%20address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.121,"y":18.376,"w":19.828000000000003,"clr":0,"A":"left","R":[{"T":"Provider's%20full%20name%20and%20complete%20address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":72.669,"y":7.048,"w":7.209999999999999,"clr":0,"A":"left","R":[{"T":"Provider's%20FEIN","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":8.564,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.778,"y":8.564,"w":11.674,"clr":0,"A":"left","R":[{"T":"Provider's%20Telephone%20No.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":12.376,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.778,"y":12.376,"w":11.674,"clr":0,"A":"left","R":[{"T":"Provider's%20Telephone%20No.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":16.126,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.778,"y":16.126,"w":11.674,"clr":0,"A":"left","R":[{"T":"Provider's%20Telephone%20No.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":19.876,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.778,"y":19.876,"w":11.674,"clr":0,"A":"left","R":[{"T":"Provider's%20Telephone%20No.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":23.564,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.778,"y":23.564,"w":11.674,"clr":0,"A":"left","R":[{"T":"Provider's%20Telephone%20No.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":4.215,"y":27.189,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.778,"y":27.189,"w":11.674,"clr":0,"A":"left","R":[{"T":"Provider's%20Telephone%20No.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.484,"y":8.457,"w":19.531499999999998,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":3,"TS":[0,12,0,0]}]},{"x":86.372,"y":10.126,"w":7.730999999999998,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.484,"y":12.333,"w":19.531499999999998,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":3,"TS":[0,12,0,0]}]},{"x":86.372,"y":13.876,"w":7.730999999999998,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.484,"y":16.083,"w":19.531499999999998,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":3,"TS":[0,12,0,0]}]},{"x":86.372,"y":17.564,"w":7.730999999999998,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.484,"y":19.77,"w":19.531499999999998,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":3,"TS":[0,12,0,0]}]},{"x":86.372,"y":21.314,"w":7.730999999999998,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.484,"y":23.52,"w":19.531499999999998,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":3,"TS":[0,12,0,0]}]},{"x":86.372,"y":25.001,"w":7.730999999999998,"clr":0,"A":"left","R":[{"T":"Child%20to%20Provider","S":-1,"TS":[2,11.9829,0,0]}]},{"x":82.484,"y":27.145,"w":19.531499999999998,"clr":0,"A":"left","R":[{"T":"Amount%20You%20Paid%20to%20Provider","S":3,"TS":[0,12,0,0]}]},{"x":56.126,"y":10.939,"w":8.269,"clr":0,"A":"left","R":[{"T":"Provider's%20SSN%20or","S":-1,"TS":[2,11.9829,0,0]}]},{"x":72.669,"y":10.923,"w":7.209999999999999,"clr":0,"A":"left","R":[{"T":"Provider's%20FEIN","S":-1,"TS":[2,11.9829,0,0]}]},{"x":56.126,"y":14.689,"w":8.269,"clr":0,"A":"left","R":[{"T":"Provider's%20SSN%20or","S":-1,"TS":[2,11.9829,0,0]}]},{"x":72.669,"y":14.673,"w":7.209999999999999,"clr":0,"A":"left","R":[{"T":"Provider's%20FEIN","S":-1,"TS":[2,11.9829,0,0]}]},{"x":56.126,"y":18.376,"w":8.269,"clr":0,"A":"left","R":[{"T":"Provider's%20SSN%20or","S":-1,"TS":[2,11.9829,0,0]}]},{"x":72.669,"y":18.361,"w":7.209999999999999,"clr":0,"A":"left","R":[{"T":"Provider's%20FEIN","S":-1,"TS":[2,11.9829,0,0]}]},{"x":56.126,"y":22.126,"w":8.269,"clr":0,"A":"left","R":[{"T":"Provider's%20SSN%20or","S":-1,"TS":[2,11.9829,0,0]}]},{"x":72.669,"y":22.111,"w":7.209999999999999,"clr":0,"A":"left","R":[{"T":"Provider's%20FEIN","S":-1,"TS":[2,11.9829,0,0]}]},{"x":56.126,"y":25.751,"w":8.269,"clr":0,"A":"left","R":[{"T":"Provider's%20SSN%20or","S":-1,"TS":[2,11.9829,0,0]}]},{"x":72.669,"y":25.736,"w":7.209999999999999,"clr":0,"A":"left","R":[{"T":"Provider's%20FEIN","S":-1,"TS":[2,11.9829,0,0]}]},{"x":86.372,"y":7.001,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":86.372,"y":10.689,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":86.372,"y":14.439,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":86.372,"y":18.251,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":86.372,"y":21.939,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":86.372,"y":25.564,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":1.122,"y":32.876,"w":13.275999999999996,"clr":0,"A":"left","R":[{"T":"First%20and%20Last%20Name%20of%20Child","S":-1,"TS":[2,11.9829,0,0]}]},{"x":42.375,"y":32.876,"w":5.486000000000001,"clr":0,"A":"left","R":[{"T":"Child's%20SSN","S":-1,"TS":[2,11.9829,0,0]}]},{"x":55.266,"y":32.876,"w":5.852999999999999,"clr":0,"A":"left","R":[{"T":"Date%20of%20Birth","S":-1,"TS":[2,11.9829,0,0]}]},{"x":85.689,"y":32.876,"w":8.463999999999999,"clr":0,"A":"left","R":[{"T":"You%20Paid%20for%20Child","S":-1,"TS":[2,11.9829,0,0]}]},{"x":57.668,"y":32.126,"w":3.0730000000000004,"clr":0,"A":"left","R":[{"T":"Child's","S":-1,"TS":[2,11.9829,0,0]}]},{"x":71.591,"y":32.814,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":87.749,"y":32.126,"w":4.512,"clr":0,"A":"left","R":[{"T":"Expenses","S":-1,"TS":[2,11.9829,0,0]}]},{"x":69.872,"y":32.064,"w":7.802999999999998,"clr":0,"A":"left","R":[{"T":"Child%20toTaxpayer","S":-1,"TS":[2,11.9829,0,0]}]},{"x":87.748,"y":31.375999999999998,"w":4.635000000000001,"clr":0,"A":"left","R":[{"T":"Qualifying","S":-1,"TS":[2,11.9829,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":650,"AM":0,"x":91.561,"y":3.135,"w":7.416,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":651,"AM":1024,"x":1.022,"y":5.265,"w":75.368,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":652,"AM":1024,"x":76.442,"y":5.226,"w":22.53,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_1_","EN":0},"TI":653,"AM":0,"x":9.072,"y":7.97,"w":45.547,"h":0.833,"TU":"Provider's full name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_1_","EN":0},"TI":654,"AM":0,"x":56.433,"y":7.955,"w":12.506,"h":0.833,"TU":"Provider's SSN."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_1_","EN":0},"TI":655,"AM":0,"x":72.657,"y":7.924,"w":12.506,"h":0.833,"TU":"Provider's FEIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_1_","EN":0},"TI":656,"AM":0,"x":86.543,"y":7.951,"w":16.067,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_1_","EN":0},"TI":657,"AM":0,"x":10.743,"y":8.775,"w":43.876,"h":0.833,"TU":"Provider's street address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_1_","EN":0},"TI":658,"AM":0,"x":19.579,"y":9.556,"w":15.833,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_1_","EN":0},"TI":659,"AM":0,"x":36.236,"y":9.542,"w":4.891,"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_PROVZIP_1_","EN":0},"TI":660,"AM":0,"x":42.347,"y":9.512,"w":12.231,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_1_","EN":0},"TI":661,"AM":0,"x":55.822,"y":9.475,"w":17.223,"h":0.833,"TU":"Provider's Telephone number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_1_","EN":0},"TI":662,"AM":0,"x":86.505,"y":9.474,"w":12.744,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_2_","EN":0},"TI":663,"AM":0,"x":9.018,"y":11.771,"w":45.546,"h":0.833,"TU":"Provider's full name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_2_","EN":0},"TI":664,"AM":0,"x":56.367,"y":11.801,"w":12.506,"h":0.833,"TU":"Provider's SSN."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_2_","EN":0},"TI":665,"AM":0,"x":72.7,"y":11.8,"w":12.506,"h":0.833,"TU":"Provider's FEIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_2_","EN":0},"TI":666,"AM":0,"x":86.498,"y":11.789,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_2_","EN":0},"TI":667,"AM":0,"x":10.689,"y":12.575,"w":43.876,"h":0.833,"TU":"Provider's street address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_2_","EN":0},"TI":668,"AM":0,"x":19.525,"y":13.356,"w":16.09,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_2_","EN":0},"TI":669,"AM":0,"x":36.161,"y":13.326,"w":4.891,"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_PROVZIP_2_","EN":0},"TI":670,"AM":0,"x":42.293,"y":13.312,"w":12.231,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_2_","EN":0},"TI":671,"AM":0,"x":55.769,"y":13.276,"w":17.522,"h":0.833,"TU":"Provider's Telephone number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_2_","EN":0},"TI":672,"AM":0,"x":86.451,"y":13.275,"w":12.744,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_3_","EN":0},"TI":673,"AM":0,"x":8.992,"y":15.519,"w":45.547,"h":0.833,"TU":"Provider's full name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_3_","EN":0},"TI":674,"AM":0,"x":56.444,"y":15.557,"w":12.506,"h":0.833,"TU":"Provider's SSN."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_3_","EN":0},"TI":675,"AM":0,"x":72.582,"y":15.529,"w":12.506,"h":0.833,"TU":"Provider's FEIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_3_","EN":0},"TI":676,"AM":0,"x":86.703,"y":15.566,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_3_","EN":0},"TI":677,"AM":0,"x":10.663,"y":16.323,"w":43.876,"h":0.833,"TU":"Provider's street address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_3_","EN":0},"TI":678,"AM":0,"x":19.5,"y":17.104,"w":15.769,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_3_","EN":0},"TI":679,"AM":0,"x":36.216,"y":17.041,"w":4.891,"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_PROVZIP_3_","EN":0},"TI":680,"AM":0,"x":42.267,"y":17.061,"w":12.231,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_3_","EN":0},"TI":681,"AM":0,"x":55.743,"y":17.024,"w":17.522,"h":0.833,"TU":"Provider's Telephone number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_3_","EN":0},"TI":682,"AM":0,"x":86.426,"y":17.023,"w":12.744,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_4_","EN":0},"TI":683,"AM":0,"x":8.939,"y":19.257,"w":45.547,"h":0.833,"TU":"Provider's full name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_4_","EN":0},"TI":684,"AM":0,"x":56.378,"y":19.216,"w":12.506,"h":0.833,"TU":"Provider's SSN."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_4_","EN":0},"TI":685,"AM":0,"x":72.453,"y":19.233,"w":12.506,"h":0.833,"TU":"Provider's FEIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_4_","EN":0},"TI":686,"AM":0,"x":86.533,"y":19.262,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_4_","EN":0},"TI":687,"AM":0,"x":10.609,"y":20.061,"w":43.876,"h":0.833,"TU":"Provider's street address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_4_","EN":0},"TI":688,"AM":0,"x":19.446,"y":20.842,"w":16.026,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_4_","EN":0},"TI":689,"AM":0,"x":36.046,"y":20.79,"w":4.891,"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_PROVZIP_4_","EN":0},"TI":690,"AM":0,"x":42.213,"y":20.798,"w":12.231,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_4_","EN":0},"TI":691,"AM":0,"x":55.689,"y":20.762,"w":17.522,"h":0.833,"TU":"Provider's Telephone number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_4_","EN":0},"TI":692,"AM":0,"x":86.372,"y":20.761,"w":12.744,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_5_","EN":0},"TI":693,"AM":0,"x":9.067,"y":22.976,"w":45.546,"h":0.833,"TU":"Provider's full name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_5_","EN":0},"TI":694,"AM":0,"x":56.499,"y":22.963,"w":12.506,"h":0.833,"TU":"Provider's SSN."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_5_","EN":0},"TI":695,"AM":0,"x":72.659,"y":22.981,"w":12.506,"h":0.833,"TU":"Provider's FEIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_5_","EN":0},"TI":696,"AM":0,"x":86.588,"y":23.038,"w":16.067,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_5_","EN":0},"TI":697,"AM":0,"x":10.738,"y":23.781,"w":43.876,"h":0.833,"TU":"Provider's street address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_5_","EN":0},"TI":698,"AM":0,"x":19.574,"y":24.562,"w":15.705,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_5_","EN":0},"TI":699,"AM":0,"x":36.25,"y":24.521,"w":4.891,"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_PROVZIP_5_","EN":0},"TI":700,"AM":0,"x":42.342,"y":24.518,"w":12.231,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_5_","EN":0},"TI":701,"AM":0,"x":55.818,"y":24.481,"w":17.522,"h":0.833,"TU":"Provider's Telephone number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_5_","EN":0},"TI":702,"AM":0,"x":86.5,"y":24.48,"w":12.744,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVNM_6_","EN":0},"TI":703,"AM":0,"x":9.014,"y":26.589,"w":45.546,"h":0.833,"TU":"Provider's full name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_TEMPSSN_6_","EN":0},"TI":704,"AM":0,"x":56.432,"y":26.559,"w":12.506,"h":0.833,"TU":"Provider's SSN."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_PROVEIN_6_","EN":0},"TI":705,"AM":0,"x":72.53,"y":26.622,"w":12.506,"h":0.833,"TU":"Provider's FEIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVREL_6_","EN":0},"TI":706,"AM":0,"x":85.894,"y":26.598,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVADDR_6_","EN":0},"TI":707,"AM":0,"x":10.684,"y":27.393,"w":43.876,"h":0.833,"TU":"Provider's street address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVCTY_6_","EN":0},"TI":708,"AM":0,"x":19.521,"y":28.175,"w":15.449,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_PROVST_6_","EN":0},"TI":709,"AM":0,"x":36.155,"y":28.134,"w":4.891,"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_PROVZIP_6_","EN":0},"TI":710,"AM":0,"x":42.288,"y":28.131,"w":12.231,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PROV_PROVPHN_6_","EN":0},"TI":711,"AM":0,"x":55.764,"y":28.094,"w":17.522,"h":0.833,"TU":"Provider's Telephone number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_PROVAMT_6_","EN":0},"TI":712,"AM":0,"x":85.997,"y":28.093,"w":13.193,"h":0.833,"TU":"Amount You Paid to Provider"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL1","EN":0},"TI":713,"AM":1024,"x":86.389,"y":29.231,"w":12.669,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_1_","EN":0},"TI":714,"AM":0,"x":0.843,"y":33.751,"w":39.557,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_1_","EN":0},"TI":715,"AM":0,"x":40.757,"y":33.75,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_1_","EN":0},"TI":716,"AM":0,"x":53.245,"y":33.723,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_1_","EN":0},"TI":717,"AM":0,"x":68.006,"y":33.752,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_1_","EN":0},"TI":718,"AM":0,"x":85.901,"y":33.75,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_2_","EN":0},"TI":719,"AM":0,"x":0.907,"y":34.484,"w":39.557,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_2_","EN":0},"TI":720,"AM":0,"x":40.746,"y":34.483,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_2_","EN":0},"TI":721,"AM":0,"x":53.234,"y":34.51,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_2_","EN":0},"TI":722,"AM":0,"x":68.061,"y":34.542,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_2_","EN":0},"TI":723,"AM":0,"x":85.891,"y":34.51,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_3_","EN":0},"TI":724,"AM":0,"x":0.967,"y":35.228,"w":39.407,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_3_","EN":0},"TI":725,"AM":0,"x":40.687,"y":35.235,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_3_","EN":0},"TI":726,"AM":0,"x":53.347,"y":35.235,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_3_","EN":0},"TI":727,"AM":0,"x":67.992,"y":35.276,"w":16.067,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_3_","EN":0},"TI":728,"AM":0,"x":85.929,"y":35.235,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_4_","EN":0},"TI":729,"AM":0,"x":0.86,"y":35.996,"w":39.482,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_4_","EN":0},"TI":730,"AM":0,"x":40.663,"y":35.985,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_4_","EN":0},"TI":731,"AM":0,"x":53.165,"y":35.995,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_4_","EN":0},"TI":732,"AM":0,"x":67.931,"y":36.019,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_4_","EN":0},"TI":733,"AM":0,"x":85.993,"y":35.995,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_5_","EN":0},"TI":734,"AM":0,"x":1.029,"y":36.753,"w":39.332,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_5_","EN":0},"TI":735,"AM":0,"x":40.701,"y":36.737,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_5_","EN":0},"TI":736,"AM":0,"x":53.334,"y":36.752,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_5_","EN":0},"TI":737,"AM":0,"x":68.006,"y":36.809,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_5_","EN":0},"TI":738,"AM":0,"x":85.915,"y":36.752,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_6_","EN":0},"TI":739,"AM":0,"x":0.959,"y":37.488,"w":39.407,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_6_","EN":0},"TI":740,"AM":0,"x":40.69,"y":37.497,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_6_","EN":0},"TI":741,"AM":0,"x":53.323,"y":37.512,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_6_","EN":0},"TI":742,"AM":0,"x":67.986,"y":37.536,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_6_","EN":0},"TI":743,"AM":0,"x":85.904,"y":37.512,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_7_","EN":0},"TI":744,"AM":0,"x":1.056,"y":38.238,"w":39.258,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_7_","EN":0},"TI":745,"AM":0,"x":40.701,"y":38.237,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_7_","EN":0},"TI":746,"AM":0,"x":53.361,"y":38.237,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_7_","EN":0},"TI":747,"AM":0,"x":67.966,"y":38.264,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_7_","EN":0},"TI":748,"AM":0,"x":85.942,"y":38.237,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_8_","EN":0},"TI":749,"AM":0,"x":0.925,"y":38.987,"w":39.332,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_8_","EN":0},"TI":750,"AM":0,"x":40.69,"y":38.997,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_8_","EN":0},"TI":751,"AM":0,"x":53.35,"y":38.997,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_8_","EN":0},"TI":752,"AM":0,"x":67.871,"y":39.046,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_8_","EN":0},"TI":753,"AM":0,"x":85.931,"y":38.997,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_9_","EN":0},"TI":754,"AM":0,"x":0.989,"y":39.775,"w":39.332,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_9_","EN":0},"TI":755,"AM":0,"x":40.742,"y":39.736,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_9_","EN":0},"TI":756,"AM":0,"x":53.305,"y":39.764,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_9_","EN":0},"TI":757,"AM":0,"x":67.851,"y":39.774,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_9_","EN":0},"TI":758,"AM":0,"x":86.058,"y":39.764,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_10_","EN":0},"TI":759,"AM":0,"x":0.871,"y":40.53,"w":39.482,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_10_","EN":0},"TI":760,"AM":0,"x":40.731,"y":40.496,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_10_","EN":0},"TI":761,"AM":0,"x":53.294,"y":40.524,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_10_","EN":0},"TI":762,"AM":0,"x":67.906,"y":40.556,"w":16.067,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_10_","EN":0},"TI":763,"AM":0,"x":86.047,"y":40.524,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_11_","EN":0},"TI":764,"AM":0,"x":1.016,"y":41.26,"w":39.407,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_11_","EN":0},"TI":765,"AM":0,"x":40.769,"y":41.221,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_11_","EN":0},"TI":766,"AM":0,"x":53.332,"y":41.248,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_11_","EN":0},"TI":767,"AM":0,"x":67.908,"y":41.284,"w":16.067,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_11_","EN":0},"TI":768,"AM":0,"x":86.085,"y":41.248,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_12_","EN":0},"TI":769,"AM":0,"x":1.013,"y":42.017,"w":39.333,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_12_","EN":0},"TI":770,"AM":0,"x":40.756,"y":41.926,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_12_","EN":0},"TI":771,"AM":0,"x":53.321,"y":42.008,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_12_","EN":0},"TI":772,"AM":0,"x":67.94,"y":42.012,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_12_","EN":0},"TI":773,"AM":0,"x":86.074,"y":42.008,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_13_","EN":0},"TI":774,"AM":0,"x":1.002,"y":42.777,"w":39.407,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_13_","EN":0},"TI":775,"AM":0,"x":40.758,"y":42.731,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_13_","EN":0},"TI":776,"AM":0,"x":53.318,"y":42.766,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_13_","EN":0},"TI":777,"AM":0,"x":67.995,"y":42.767,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_13_","EN":0},"TI":778,"AM":0,"x":86.072,"y":42.766,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_14_","EN":0},"TI":779,"AM":0,"x":1.041,"y":43.501,"w":39.407,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_14_","EN":0},"TI":780,"AM":0,"x":40.745,"y":43.499,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_14_","EN":0},"TI":781,"AM":0,"x":53.307,"y":43.526,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_14_","EN":0},"TI":782,"AM":0,"x":67.975,"y":43.522,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_14_","EN":0},"TI":783,"AM":0,"x":86.061,"y":43.526,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPNAME_15_","EN":0},"TI":784,"AM":0,"x":1.102,"y":44.229,"w":39.258,"h":0.833,"TU":"Child's Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QCHILD_NCPSSN_15_","EN":0},"TI":785,"AM":0,"x":40.783,"y":44.223,"w":12.433,"h":0.833,"TU":"Child’s SSN"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"QCHILD_NCPDOB_15_","EN":0},"TI":786,"AM":0,"x":53.271,"y":44.25,"w":14.407,"h":0.833,"TU":"Child’s Date of Birth","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCHILD_NCPREL_15_","EN":0},"TI":787,"AM":0,"x":67.88,"y":44.25,"w":16.068,"h":0.833,"PL":{"V":[null,"Son","Daughter","Stepson","Stepdaughter","Grandchild","Niece","Nephew ","Sister/Brother","Eligible foster child","Aunt","Uncle","Cousin","Sister-in-law","Brother-in-law","Other relative","None"],"D":[" ","S","D","SS","SD","GC","NC","NW","SB","EF","A","U","CS","SL","BL","O","N"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QCHILD_CHILDEXP_15_","EN":0},"TI":788,"AM":0,"x":86.099,"y":44.25,"w":13.085,"h":0.833,"TU":"Qualifying Expenses You Paid for Child."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL2","EN":0},"TI":789,"AM":1024,"x":86.276,"y":45.892,"w":12.669,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/form/VOUCH.content.txt b/test/data/or/form/VOUCH.content.txt new file mode 100755 index 00000000..dc6b0d8e --- /dev/null +++ b/test/data/or/form/VOUCH.content.txt @@ -0,0 +1,57 @@ +150-101-172 (Rev. 12-13) +Oregon Income Tax Payment Voucher, Form 40-V +OREGON INCOME TAX PAYMENT VOUCHER +Department of Revenue Use Only +• +FORM +40-V +Enter Payment Amount +$ +. +0 0 +• +Fiscal Year Ending +Payment Type +(check only one): +2013 +Return +Amended--Tax Year: +Last name +First name and initial +Spouse’s/RDP’s last name if joint payment +Spouse’s/RDP’s first name and initial +Current mailing address +City +SSN +Spouse’s/RDP’s SSN if joint payment +State ZIP code +First time Oregon filer +New name or address +Daytime telephone number: +Check if: +Detach Here +➤ +Detach Here +➤ +Where to mail +If you filed your return: Mail to: +On paper +PO Box 14555 +Salem OR 97309-0940 +With a 2-D barcode or +electronically +PO Box 14720 +Salem OR 97309-0463 +Don’t use Form 40-V if you are using an electronic payment option. +Use the voucher only if you are paying by check or money order. +Complete the form below using your computer. +After you have printed it, cut along the dotted line and +mail to the Department of Revenue at the addresses shown above. +Note: +If, when typing, you see a solid box instead of letters or numbers, +adjust the view size to 100 percent. If the letters or numbers still are not visible, +press the tab key. +(Not Supported) +Prior Tax Year: +(Not Supported) +----------------Page (0) Break---------------- diff --git a/test/data/or/form/VOUCH.fields.json b/test/data/or/form/VOUCH.fields.json new file mode 100755 index 00000000..f47ddd83 --- /dev/null +++ b/test/data/or/form/VOUCH.fields.json @@ -0,0 +1 @@ +[{"id":"FILERBX","type":"box","calc":false,"value":""},{"id":"PMTBX1","type":"box","calc":true,"value":""},{"id":"ADDRBX","type":"box","calc":false,"value":""},{"id":"TYEND","type":"date","calc":true,"value":""},{"id":"PHONE","type":"phone","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPMI","type":"alpha","calc":true,"value":""},{"id":"TPSSN1","type":"ssn","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPMI","type":"alpha","calc":true,"value":""},{"id":"SPSSN1","type":"ssn","calc":true,"value":""},{"id":"AMT1","type":"number","calc":false,"value":""},{"id":"ADDR1","type":"alpha","calc":true,"value":""},{"id":"CITY1","type":"alpha","calc":true,"value":""},{"id":"ST1","type":"alpha","calc":true,"value":""},{"id":"ZIP1","type":"zip","calc":true,"value":""},{"id":"SCAN","type":"alpha","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/or/form/VOUCH.json b/test/data/or/form/VOUCH.json new file mode 100755 index 00000000..229ce565 --- /dev/null +++ b/test/data/or/form/VOUCH.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":79.243,"y":35.991,"w":0.75,"l":19.74},{"x":79.243,"y":33.747,"w":0.75,"l":19.74},{"x":79.2,"y":34.481,"w":0.75,"l":19.8},{"x":21.088,"y":36.026,"w":0.75,"l":14.834},{"x":6.241,"y":44.974,"w":0.75,"l":92.765},{"x":6.28,"y":41.959,"w":0.75,"l":63.037},{"x":6.258,"y":43.463,"w":0.75,"l":92.742},{"x":6.236,"y":40.46,"w":0.75,"l":63.098},{"x":24.88,"y":39.759,"w":0.75,"l":17.195},{"dsh":1,"x":0,"y":33,"w":0.30000000000000004,"l":105.213},{"x":29.691,"y":5.288,"w":1.5,"l":24.836},{"x":54.527,"y":5.288,"w":1.5,"l":20.969},{"x":29.691,"y":6.413,"w":1.5,"l":24.836},{"x":54.527,"y":6.413,"w":1.5,"l":20.969},{"x":29.691,"y":8.375,"w":1.5,"l":24.836},{"x":54.527,"y":8.375,"w":1.5,"l":20.969},{"x":29.691,"y":10.337,"w":1.5,"l":24.836},{"x":54.527,"y":10.337,"w":1.5,"l":20.969}],"VLines":[{"x":98.983,"y":33.747,"w":0.75,"l":2.244},{"x":79.243,"y":33.747,"w":0.75,"l":2.244},{"x":29.771,"y":35.509,"w":0.75,"l":0.52},{"x":26.076,"y":35.509,"w":0.75,"l":0.52},{"x":30.921,"y":40.477,"w":0.75,"l":2.997},{"x":6.284,"y":40.458,"w":0.75,"l":4.529},{"x":50.745,"y":40.477,"w":0.75,"l":2.997},{"x":50.747,"y":43.476,"w":0.75,"l":1.5},{"x":69.284,"y":40.47,"w":0.75,"l":2.997},{"x":82.894,"y":43.458,"w":0.75,"l":1.5},{"x":77.981,"y":43.458,"w":0.75,"l":1.5},{"x":98.957,"y":43.458,"w":0.75,"l":1.5},{"x":29.777,"y":5.319,"w":1.5,"l":1.063},{"x":54.527,"y":5.319,"w":1.5,"l":1.063},{"x":75.41,"y":5.319,"w":1.5,"l":1.063},{"x":29.777,"y":6.444,"w":1.5,"l":1.9},{"x":54.527,"y":6.444,"w":1.5,"l":1.9},{"x":75.41,"y":6.444,"w":1.5,"l":1.9},{"x":29.777,"y":8.406,"w":1.5,"l":1.9},{"x":54.527,"y":8.406,"w":1.5,"l":1.9},{"x":75.41,"y":8.406,"w":1.5,"l":1.9}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c6eafb","x":74.452,"y":40.484,"w":24.513,"h":1.512,"clr":-1},{"x":82.844,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"x":85.559,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"x":77.722,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"x":80.283,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"x":88.12,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"x":90.681,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"x":75.015,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"oc":"#c6eafb","x":76.149,"y":41.4,"w":2.509,"h":0.4,"clr":-1},{"oc":"#c6eafb","x":83.97,"y":41.4,"w":2.509,"h":0.4,"clr":-1},{"x":93.715,"y":40.734,"w":2.123,"h":1.034,"clr":1},{"x":96.276,"y":40.734,"w":2.123,"h":1.034,"clr":1}],"Texts":[{"x":5.938,"y":34.011,"w":11.469000000000005,"clr":0,"A":"left","R":[{"T":"150-101-172%20(Rev.%2012-13)","S":-1,"TS":[0,8.8086,0,0]}]},{"x":19.841,"y":3.694,"w":19.185000000000006,"clr":0,"A":"left","R":[{"T":"Oregon%20Income%20Tax%20Payment%20Voucher%2C%20Form%2040-V","S":-1,"TS":[0,22,1,0]}]},{"x":5.938,"y":33.522,"w":21.537999999999997,"clr":0,"A":"left","R":[{"T":"OREGON%20INCOME%20TAX%20PAYMENT%20VOUCHER","S":-1,"TS":[0,13.6491,0,0]}]},{"x":79.834,"y":33.537,"w":14.967000000000004,"clr":0,"A":"left","R":[{"T":"Department%20of%20Revenue%20Use%20Only","S":2,"TS":[0,10,0,0]}]},{"x":78.4,"y":34.715,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,17,0,0]}]},{"x":70.088,"y":33.312,"w":2.89,"clr":0,"A":"left","R":[{"T":"FORM","S":2,"TS":[0,10,0,0]}]},{"x":67.764,"y":34.587,"w":2.149,"clr":0,"A":"left","R":[{"T":"40-V","S":-1,"TS":[0,25,0,0]}]},{"x":79.291,"y":39.5,"w":11.037000000000003,"clr":0,"A":"left","R":[{"T":"Enter%20Payment%20Amount","S":-1,"TS":[0,10.5,0,0]}]},{"x":72.195,"y":40.795,"w":0.556,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,19,0,0]}]},{"x":92.666,"y":40.953,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"x":93.869,"y":40.757,"w":0.556,"clr":0,"A":"left","R":[{"T":"0","S":-1,"TS":[0,15,0,0]}]},{"x":96.344,"y":40.757,"w":0.556,"clr":0,"A":"left","R":[{"T":"0","S":-1,"TS":[0,15,0,0]}]},{"x":39.085,"y":36.04,"w":0.5,"clr":0,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[0,17,0,0]}]},{"x":5.869,"y":35.259,"w":8.868,"clr":0,"A":"left","R":[{"T":"Fiscal%20Year%20Ending","S":3,"TS":[0,12,0,0]}]},{"x":40.485,"y":35.964,"w":7.056000000000001,"clr":0,"A":"left","R":[{"T":"Payment%20Type%20","S":3,"TS":[0,12,0,0]}]},{"x":51.257,"y":35.964,"w":7.557000000000002,"clr":0,"A":"left","R":[{"T":"(check%20only%20one)%3A","S":3,"TS":[0,12,0,0]}]},{"x":42.452,"y":36.699,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"2013%20","S":-1,"TS":[0,13,0,0]}]},{"x":46.753,"y":36.699,"w":3.2600000000000002,"clr":0,"A":"left","R":[{"T":"Return%20","S":-1,"TS":[0,13,0,0]}]},{"x":53.515,"y":36.694,"w":9.335000000000003,"clr":0,"A":"left","R":[{"T":"Amended--Tax%20Year%3A","S":3,"TS":[0,12,0,0]}]},{"x":6.287,"y":40.122,"w":4.669,"clr":0,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"x":31.016,"y":40.122,"w":9.243000000000002,"clr":0,"A":"left","R":[{"T":"First%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"x":6.287,"y":41.623,"w":19.079,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20last%20name%20if%20joint%20payment","S":2,"TS":[0,10,0,0]}]},{"x":30.844,"y":41.623,"w":16.094999999999995,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"x":6.287,"y":43.13,"w":10.687000000000001,"clr":0,"A":"left","R":[{"T":"Current%20mailing%20address","S":2,"TS":[0,10,0,0]}]},{"x":50.87,"y":43.13,"w":1.759,"clr":0,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"x":50.87,"y":40.122,"w":2.018,"clr":0,"A":"left","R":[{"T":"SSN","S":2,"TS":[0,10,0,0]}]},{"x":50.647,"y":41.6,"w":16.062,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%2FRDP%E2%80%99s%20SSN%20if%20joint%20payment","S":-1,"TS":[0,9.5,0,0]}]},{"x":78.128,"y":43.13,"w":2.352,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":82.972,"y":43.13,"w":4.037,"clr":0,"A":"left","R":[{"T":"ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"x":14.17,"y":36.66,"w":9.649,"clr":0,"A":"left","R":[{"T":"First%20time%20Oregon%20filer","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.17,"y":37.408,"w":9.834,"clr":0,"A":"left","R":[{"T":"New%20name%20or%20address","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.869,"y":38.929,"w":12.357000000000003,"clr":0,"A":"left","R":[{"T":"Daytime%20telephone%20number%3A","S":-1,"TS":[0,11.5,0,0]}]},{"x":5.869,"y":36.66,"w":3.945,"clr":0,"A":"left","R":[{"T":"Check%20if%3A","S":-1,"TS":[0,11.5,0,0]}]},{"x":7.422,"y":31.997,"w":5.593,"clr":0,"A":"left","R":[{"T":"Detach%20Here","S":2,"TS":[0,10,0,0]}]},{"x":5.939,"y":31.561999999999998,"w":0.917,"clr":0,"A":"left","R":[{"T":"%E2%9E%A4","S":49,"TS":[3,12,0,0],"RA":90}]},{"x":90.295,"y":31.997,"w":5.593,"clr":0,"A":"left","R":[{"T":"Detach%20Here","S":2,"TS":[0,10,0,0]}]},{"x":97.655,"y":31.561999999999998,"w":0.917,"clr":0,"A":"left","R":[{"T":"%E2%9E%A4","S":49,"TS":[3,12,0,0],"RA":90}]},{"x":42.793,"y":2.344,"w":6.396999999999999,"clr":0,"A":"left","R":[{"T":"Where%20to%20mail%20","S":-1,"TS":[0,22,1,0]}]},{"x":30.215,"y":5.35,"w":9.474,"clr":0,"A":"left","R":[{"T":"If%20you%20filed%20your%20return%3A","S":-1,"TS":[0,15,0,0]}]},{"x":54.998,"y":5.35,"w":3.0549999999999997,"clr":0,"A":"left","R":[{"T":"Mail%20to%3A","S":-1,"TS":[0,15,0,0]}]},{"x":30.215,"y":6.475,"w":3.9040000000000004,"clr":0,"A":"left","R":[{"T":"On%20paper","S":-1,"TS":[0,15,0,0]}]},{"x":54.965,"y":6.475,"w":5.976,"clr":0,"A":"left","R":[{"T":"PO%20Box%2014555%20","S":-1,"TS":[0,15,0,0]}]},{"x":54.965,"y":7.375,"w":9.121,"clr":0,"A":"left","R":[{"T":"Salem%20OR%2097309-0940","S":-1,"TS":[0,15,0,0]}]},{"x":30.215,"y":8.438,"w":9.31,"clr":0,"A":"left","R":[{"T":"With%20a%202-D%20barcode%20or%20","S":-1,"TS":[0,15,0,0]}]},{"x":30.215,"y":9.338,"w":5.555,"clr":0,"A":"left","R":[{"T":"electronically","S":-1,"TS":[0,15,0,0]}]},{"x":54.965,"y":8.438,"w":5.764,"clr":0,"A":"left","R":[{"T":"PO%20Box%2014720","S":-1,"TS":[0,15,0,0]}]},{"x":54.965,"y":9.338,"w":9.121,"clr":0,"A":"left","R":[{"T":"Salem%20OR%2097309-0463","S":-1,"TS":[0,15,0,0]}]},{"x":21.932,"y":13.269,"w":29.62099999999999,"clr":0,"A":"left","R":[{"T":"Don%E2%80%99t%20use%20Form%2040-V%20if%20you%20are%20using%20an%20electronic%20payment%20option.","S":-1,"TS":[0,16,1,0]}]},{"x":24.931,"y":14.544,"w":26.697000000000006,"clr":0,"A":"left","R":[{"T":"Use%20the%20voucher%20only%20if%20you%20are%20paying%20by%20check%20or%20money%20order.","S":-1,"TS":[0,15,0,0]}]},{"x":30.782,"y":18.444,"w":21.044999999999998,"clr":0,"A":"left","R":[{"T":"Complete%20the%20form%20below%20using%20your%20computer.","S":-1,"TS":[0,16,1,0]}]},{"x":27.445,"y":19.907,"w":24.416,"clr":0,"A":"left","R":[{"T":"After%20you%20have%20printed%20it%2C%20cut%20along%20the%20dotted%20line%20and%20","S":-1,"TS":[0,16,1,0]}]},{"x":22.091,"y":20.807,"w":29.411000000000005,"clr":0,"A":"left","R":[{"T":"mail%20to%20the%20Department%20of%20Revenue%20at%20the%20addresses%20shown%20above.","S":-1,"TS":[0,16,1,0]}]},{"x":49.856,"y":24.707,"w":2.4219999999999997,"clr":0,"A":"left","R":[{"T":"Note%3A","S":-1,"TS":[0,16,1,0]}]},{"x":24.675,"y":25.982,"w":27.333000000000006,"clr":0,"A":"left","R":[{"T":"If%2C%20when%20typing%2C%20you%20see%20a%20solid%20box%20instead%20of%20letters%20or%20numbers%2C%20%20","S":-1,"TS":[0,15,0,0]}]},{"x":18.692,"y":26.882,"w":33.11300000000002,"clr":0,"A":"left","R":[{"T":"adjust%20the%20view%20size%20to%20100%20percent.%20If%20the%20letters%20or%20numbers%20still%20are%20not%20visible%2C%20%20","S":-1,"TS":[0,15,0,0]}]},{"x":44.929,"y":27.782,"w":7.242000000000001,"clr":0,"A":"left","R":[{"T":"press%20the%20tab%20key.","S":-1,"TS":[0,15,0,0]}]},{"x":67.426,"y":36.641,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"x":80.563,"y":36.694,"w":6.628,"clr":0,"A":"left","R":[{"T":"Prior%20Tax%20Year%3A","S":3,"TS":[0,12,0,0]}]},{"x":90.457,"y":36.641,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TYEND","EN":0},"TI":790,"AM":1024,"x":19.983,"y":35.424,"w":16.001,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":794,"AM":1024,"x":24.874,"y":39.12,"w":17.222,"h":0.833,"TU":"Daytime telephone number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":795,"AM":1024,"x":6.435,"y":41.045,"w":24.358,"h":0.903,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":796,"AM":1024,"x":31.061,"y":41.074,"w":15.345,"h":0.874,"TU":"First name and initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPMI","EN":0},"TI":797,"AM":1024,"x":46.701,"y":41.088,"w":4.006,"h":0.874},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN1","EN":0},"TI":798,"AM":1024,"x":50.882,"y":41.103,"w":18.194,"h":0.845,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":799,"AM":1024,"x":6.435,"y":42.548,"w":24.438,"h":0.899,"TU":"Spouse’s/RDP’s last name if joint payment"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":800,"AM":1024,"x":31.061,"y":42.548,"w":15.028,"h":0.899,"TU":"Spouse’s/RDP’s first name and initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPMI","EN":0},"TI":801,"AM":1024,"x":46.701,"y":42.618,"w":4.006,"h":0.874},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN1","EN":0},"TI":802,"AM":1024,"x":50.882,"y":42.609,"w":18.274,"h":0.838,"TU":"Spouse’s/RDP’s SSN if joint payment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT1","EN":0},"TI":803,"AM":0,"x":74.973,"y":40.815,"w":18.115,"h":0.925,"TU":"Enter payment amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR1","EN":0},"TI":804,"AM":1024,"x":6.435,"y":44.085,"w":43.861,"h":0.87,"TU":"Current mailing address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY1","EN":0},"TI":805,"AM":1024,"x":50.882,"y":44.088,"w":27.136,"h":0.867,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST1","EN":0},"TI":806,"AM":1024,"x":78.128,"y":44.056,"w":4.799,"h":0.899,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP1","EN":0},"TI":807,"AM":1024,"x":83.036,"y":44.11,"w":15.799,"h":0.845,"TU":"ZIP code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCAN","EN":0},"TI":808,"AM":1024,"x":6.159,"y":45.739,"w":24.437,"h":0.899}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FILERBX","EN":0},"TI":791,"AM":0,"x":12.375,"y":36.843,"w":1.382,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PMTBX1","EN":0},"TI":792,"AM":1024,"x":40.803,"y":36.819,"w":1.297,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADDRBX","EN":0},"TI":793,"AM":0,"x":12.375,"y":37.593,"w":1.382,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/or/formset.json b/test/data/or/formset.json new file mode 100755 index 00000000..c1c1360a --- /dev/null +++ b/test/data/or/formset.json @@ -0,0 +1,29 @@ +{ + "formset" :{ + "id": "S2013ORD", + "version": "0.1", + "agency": "or", + "main": "OR40", + "forms": [ + {"id": "OR40", "name":"Form 40 - Oregon Individual Income Tax Return (Full-Year Residents)", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_40", "efmid":"EFINFOOR", "cid": "40"}, + {"id": "OR40DEP", "name":"Dependents Statement", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_40", "cid": "40"}, + {"id": "ORWFC", "name":"Schedule WFC - Oregon Working Family Child Care Credit for Full-Year Residents", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_WFC", "cid": "SchWFC","mpf":"ORWFC"}, + {"id": "ORWFCDEP", "name":"Additional Providers and Children Statement", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_WFC", "cid": "SchWFC","mpf":"ORWFC"}, + {"id": "ORASC", "name":"Schedule OR-ASC - Oregon Adjustments for Form 40 Filers", "mc": true, "max": 4, "parent": null, + "inst":"or_ins_40", "cid": "40"}, + {"id": "OR529", "name":"Schedule OR-529 - Oregon 529 College Savings Plan Direct Deposit for Form 40 Filers", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_40", "cid": "SchORASC_pg2"}, + {"id": "OR10", "name":"Form 10 - Underpayment of Oregon Estimated Tax", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_10", "cid": "10"}, + {"id": "VOUCH", "name":"Form 40-V - Oregon Income Tax Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_40", "cid": "40V"}, + {"id": "ORSCHA", "name":"Oregon Only Schedule A", "mc": false, "max": 1, "parent": null, + "inst":"or_ins_ORSCHA", "cid": "OROnlySchA"} + + ] + } +} \ No newline at end of file diff --git a/test/data/or/inst/or_ins_10.pdf b/test/data/or/inst/or_ins_10.pdf new file mode 100755 index 00000000..6c28d821 Binary files /dev/null and b/test/data/or/inst/or_ins_10.pdf differ diff --git a/test/data/or/pageset.json b/test/data/or/pageset.json new file mode 100755 index 00000000..96faacda --- /dev/null +++ b/test/data/or/pageset.json @@ -0,0 +1,63 @@ +{ + "headerData": { + "valueLabel": [ + {"href": "#/or/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "http://www.oregon.gov/dor/PERTAX/Pages/formspit.aspx", "label": "OR Tax Forms", "target": "_blank", + "styleClass": "formImage"}, + {"href": "#/or/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "stateTaxUrl":"http://www.oregon.gov/DOR/Pages/index.aspx", + "eFileLinkUrl":"http://www.oregon.gov/dor/ESERV/Pages/online.aspx", + "faqFooter":"View more of your state-specific FAQs", + "howItWorksList": { + "item1":"Either e-file your return, or print your return and mail it in." + }, + "noteList": { + "item1": "This program does not support prior-year returns, part-year, non-resident or amended returns." + } + }, + + "landingData": { + "formNumber":"40", + "makeSureList": {}, + "tipsList": {}, + "beforeList": { + "item1":"Add information for all Forms W-2 and Forms 1099 you received.", + "item2":"Add information for the 2013 1040 Form you filed (1040, 1040A, or 1040EZ). Make sure the information matches your filed federal return exactly." + } + }, + + "loginData": { + "stateAbbr":"OR", + "signInHelpLink":"http://www.oregon.gov/dor/ESERV/Pages/free-fillable-forms-faq.aspx" + }, + + "recoveryData": { + "forgotAnswerLink":"http://www.oregon.gov/dor/ESERV/Pages/free-fillable-forms-faq.aspx" + }, + + "homeHeaderData": { + "href": "http://www.oregon.gov/dor/ESERV/Pages/free-fillable-forms-faq.aspx" + }, + + "efileData": { + "efRefundLink":"https://secure.dor.state.or.us/refund/index.cfm", + "efRequiredInfo":"Social Security number, filing status, and the exact amount of refund on your return", + "efPaymentDueDate":"April 15, 2014", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + + "commonData": { + "state":"Oregon", + "stateAbbr":"OR", + "departmentName":"Oregon Department of Revenue", + "siteName": "Oregon State Fillable Forms", + "url": "https://www.statefillableforms.com/or", + "currentTaxYear": "2013" + + } +} \ No newline at end of file diff --git a/test/data/pa/availability.json b/test/data/pa/availability.json new file mode 100755 index 00000000..8971e082 --- /dev/null +++ b/test/data/pa/availability.json @@ -0,0 +1,27 @@ +{ + "formset": [ + { + "id": "S2013PAD", + "version": "0.2", + "agency": "pa", + "main": "PA40", + "display_name": "Form 40", + "forms": [ + {"id": "PA40", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "SCHABT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "PAC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "SCHDT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "SE", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "SCHJT", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "SCHO", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "PASCHOC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "SSP", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "SUE", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "PA19", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8453", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCH", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "W2S", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + } +] +} diff --git a/test/data/pa/form/DEP.content.txt b/test/data/pa/form/DEP.content.txt new file mode 100755 index 00000000..ebb0548c --- /dev/null +++ b/test/data/pa/form/DEP.content.txt @@ -0,0 +1,880 @@ +1. + + + +Age + +Relationship + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Dependent’s Name +Social Security No. +Dependents Statement +2013 +Attach to your return +Statement +PA Schedule SP +Part B. Dependent Children +Name of taxpayer claiming Tax Forgiveness (if filing a PA-40 jointly, enter the name shown first) +Social Security Number (shown first) +Spouse’s Name (even if filing separately) +Spouse’s Social Security Number +Provide all the information for each dependent child. +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/DEP.fields.json b/test/data/pa/form/DEP.fields.json new file mode 100755 index 00000000..e472ff66 --- /dev/null +++ b/test/data/pa/form/DEP.fields.json @@ -0,0 +1 @@ +[{"id":"STMT","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SPNAM","type":"alpha","calc":true,"value":""},{"id":"SPSS","type":"ssn","calc":true,"value":""},{"id":"DEPNAME_1_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_1_","type":"mask","calc":false,"value":""},{"id":"RELAT_1_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_2_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_2_","type":"mask","calc":false,"value":""},{"id":"RELAT_2_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_3_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_3_","type":"mask","calc":false,"value":""},{"id":"RELAT_3_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_4_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_4_","type":"mask","calc":false,"value":""},{"id":"RELAT_4_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_4_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_5_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_5_","type":"mask","calc":false,"value":""},{"id":"RELAT_5_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_5_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_6_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_6_","type":"mask","calc":false,"value":""},{"id":"RELAT_6_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_6_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_7_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_7_","type":"mask","calc":false,"value":""},{"id":"RELAT_7_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_7_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_8_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_8_","type":"mask","calc":false,"value":""},{"id":"RELAT_8_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_8_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_9_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_9_","type":"mask","calc":false,"value":""},{"id":"RELAT_9_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_9_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_10_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_10_","type":"mask","calc":false,"value":""},{"id":"RELAT_10_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_10_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_11_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_11_","type":"mask","calc":false,"value":""},{"id":"RELAT_11_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_11_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_12_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_12_","type":"mask","calc":false,"value":""},{"id":"RELAT_12_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_12_","type":"ssn","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/DEP.json b/test/data/pa/form/DEP.json new file mode 100755 index 00000000..d3ef1ba1 --- /dev/null +++ b/test/data/pa/form/DEP.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule SP - Special Tax Forgiveness - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[],"VLines":[{"oc":"#221f1f","x":69.008,"y":4.935,"w":0.75,"l":2.88}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.12,"y":9.329,"w":38.908,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.996,"y":9.329,"w":48.297,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":9.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":53.983,"y":9.35,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":71.837,"y":9.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":96.305,"y":9.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":9.077,"y":9.969,"w":39.596,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.06,"y":9.985,"w":48.17,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":10.16,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":53.983,"y":10.16,"w":0.082,"h":0.653,"clr":-1},{"oc":"#221f1f","x":71.837,"y":10.16,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":96.305,"y":10.16,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":8.97,"y":10.766,"w":39.036,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.188,"y":10.782,"w":47.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":10.842,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":53.983,"y":10.842,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":71.837,"y":10.842,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":96.305,"y":10.842,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.018,"y":11.485,"w":28.285,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.927,"y":11.487,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.221,"y":11.487,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.058,"y":11.485,"w":48.173,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":11.518,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":53.983,"y":11.518,"w":0.082,"h":0.667,"clr":-1},{"oc":"#221f1f","x":71.837,"y":11.518,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":96.305,"y":11.518,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":9.032,"y":12.188,"w":39.085,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.125,"y":12.188,"w":48.04,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.931,"y":12.891,"w":39.029,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":12.215,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":53.983,"y":12.215,"w":0.082,"h":0.667,"clr":-1},{"oc":"#221f1f","x":71.837,"y":12.215,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":48.19,"y":12.891,"w":48.167,"h":0.03,"clr":-1},{"oc":"#221f1f","x":96.305,"y":12.215,"w":0.083,"h":0.667,"clr":-1},{"x":3.609,"y":1.828,"w":98.309,"h":0.124,"clr":0},{"x":93.328,"y":4.078,"w":8.333,"h":0.03,"clr":0},{"x":3.609,"y":4.828,"w":98.309,"h":0.124,"clr":0},{"x":3.609,"y":6.328,"w":98.051,"h":0.03,"clr":0},{"x":3.609,"y":1.828,"w":0.34,"h":3.124,"clr":0},{"x":101.578,"y":1.828,"w":0.34,"h":3.124,"clr":0},{"x":3.609,"y":7.828,"w":98.051,"h":0.03,"clr":0},{"oc":"#221f1f","x":8.821,"y":9.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":8.821,"y":10.16,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":8.821,"y":10.842,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":8.821,"y":11.518,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":8.821,"y":12.215,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":48.063,"y":12.972,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":53.983,"y":12.972,"w":0.082,"h":0.653,"clr":-1},{"oc":"#221f1f","x":71.837,"y":12.972,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":96.305,"y":12.972,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":9.018,"y":13.594,"w":28.285,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.927,"y":13.625,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.221,"y":13.625,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.188,"y":13.594,"w":47.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":13.655,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":53.983,"y":13.655,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":71.837,"y":13.655,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":96.305,"y":13.655,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.035,"y":14.282,"w":39.164,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.058,"y":14.297,"w":48.173,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":14.33,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":53.983,"y":14.33,"w":0.082,"h":0.667,"clr":-1},{"oc":"#221f1f","x":71.837,"y":14.33,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":96.305,"y":14.33,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":9.032,"y":15.001,"w":39.085,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.125,"y":15.001,"w":48.04,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":15.028,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":53.983,"y":15.028,"w":0.082,"h":0.667,"clr":-1},{"oc":"#221f1f","x":71.837,"y":15.028,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":96.305,"y":15.028,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":8.821,"y":12.972,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":8.821,"y":13.655,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":8.821,"y":14.33,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":8.821,"y":15.028,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":8.931,"y":15.766,"w":39.029,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.19,"y":15.766,"w":48.167,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":15.847,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":53.983,"y":15.847,"w":0.082,"h":0.653,"clr":-1},{"oc":"#221f1f","x":71.837,"y":15.847,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":96.305,"y":15.847,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":8.97,"y":16.438,"w":39.036,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.188,"y":16.469,"w":47.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":16.53,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":53.983,"y":16.53,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":71.837,"y":16.53,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":96.305,"y":16.53,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.018,"y":17.172,"w":28.285,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.927,"y":17.175,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.221,"y":17.175,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.058,"y":17.172,"w":48.173,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":17.205,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":53.983,"y":17.205,"w":0.082,"h":0.667,"clr":-1},{"oc":"#221f1f","x":71.837,"y":17.205,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":96.305,"y":17.205,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":9.032,"y":17.876,"w":39.085,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.125,"y":17.876,"w":48.04,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.931,"y":18.579,"w":39.029,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.063,"y":17.902,"w":0.083,"h":0.668,"clr":-1},{"oc":"#221f1f","x":53.983,"y":17.902,"w":0.082,"h":0.668,"clr":-1},{"oc":"#221f1f","x":71.837,"y":17.902,"w":0.083,"h":0.668,"clr":-1},{"oc":"#221f1f","x":48.19,"y":18.579,"w":48.167,"h":0.03,"clr":-1},{"oc":"#221f1f","x":96.305,"y":17.902,"w":0.083,"h":0.668,"clr":-1},{"oc":"#221f1f","x":8.821,"y":15.847,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":8.821,"y":16.53,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":8.821,"y":17.205,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":8.821,"y":17.902,"w":0.083,"h":0.668,"clr":-1}],"Texts":[{"oc":"#221f1f","x":9.994,"y":9.095,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":49.718,"y":9.095,"w":1.7670000000000001,"clr":-1,"A":"left","R":[{"T":"Age","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":58.497,"y":9.095,"w":5.453999999999999,"clr":-1,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":13.314,"y":9.095,"w":8.495000000000001,"clr":-1,"A":"left","R":[{"T":"Dependent%E2%80%99s%20Name","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.214,"y":9.095,"w":8.371000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20No.","S":-1,"TS":[0,9.96,0,0]}]},{"x":42.887,"y":2.454,"w":10.834999999999999,"clr":0,"A":"left","R":[{"T":"Dependents%20Statement","S":-1,"TS":[2,15.9773,1,0]}]},{"x":90.809,"y":2.454,"w":2.4,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[3,17.9535,1,0]}]},{"x":46.156,"y":3.204,"w":9.558,"clr":0,"A":"left","R":[{"T":"Attach%20to%20your%20return","S":-1,"TS":[2,11.9829,0,0]}]},{"x":85.169,"y":3.204,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,13.941,1,0]}]},{"oc":"#221f1f","x":4.879,"y":2.475,"w":11.438550339999999,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20SP%20","S":-1,"TS":[0,13.999988799999999,1,0]}]},{"oc":"#221f1f","x":8.801,"y":3.4130000000000003,"w":16.7088862,"clr":-1,"A":"left","R":[{"T":"Part%20B.%20Dependent%20Children","S":-1,"TS":[0,11.999976,1,0]}]},{"oc":"#221f1f","x":3.545,"y":4.57,"w":41.96000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20taxpayer%20claiming%20Tax%20Forgiveness%20(if%20filing%20a%20PA-40%20jointly%2C%20enter%20the%20name%20shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":69.526,"y":4.568,"w":16.026000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":3.545,"y":6.006,"w":18.009000000000004,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Name%20(even%20if%20filing%20separately)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":69.522,"y":5.975,"w":14.714000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":38.25,"y":7.84,"w":26.617443350000016,"clr":-1,"A":"left","R":[{"T":"Provide%20all%20the%20information%20for%20each%20dependent%20child.%20","S":-1,"TS":[0,11.0000328,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":0,"AM":0,"x":94.455,"y":3.458,"w":6.69,"h":0.833,"TU":"Statement Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1,"AM":1024,"x":3.921,"y":5.448,"w":61.133,"h":0.833,"TU":"Name of Taxpayer Claiming Tax Forgiveness"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2,"AM":1024,"x":69.775,"y":5.51,"w":23.808,"h":0.855,"TU":"Taxpayer Social Security Number (shown first)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAM","EN":0},"TI":3,"AM":1024,"x":4.001,"y":6.964,"w":61.108,"h":0.833,"TU":"Spouse’s Name (even if filing separately)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSS","EN":0},"TI":4,"AM":1024,"x":69.925,"y":6.954,"w":23.808,"h":0.851,"TU":"Spouse's Social Security Number "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_1_","EN":0},"TI":5,"AM":0,"x":10.515,"y":10.111,"w":36.322,"h":0.833,"TU":"Dependent's Name Row 1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_1_","EN":0},"TI":6,"AM":0,"x":48.521,"y":10.092,"w":5.085,"h":0.833,"TU":"Dependent's Age Row 1","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_1_","EN":0},"TI":7,"AM":0,"x":54.923,"y":10.191,"w":16.162,"h":0.833,"TU":"Relationship to Dependent Row 1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_1_","EN":0},"TI":8,"AM":0,"x":72.604,"y":10.143,"w":22.369,"h":0.833,"TU":"Dependent Child Social Security Number_Row 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_2_","EN":0},"TI":9,"AM":0,"x":10.515,"y":10.849,"w":36.322,"h":0.833,"TU":"Dependent's Name Row 2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_2_","EN":0},"TI":10,"AM":0,"x":48.499,"y":10.83,"w":5.01,"h":0.833,"TU":"Dependent's Age Row 2","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_2_","EN":0},"TI":11,"AM":0,"x":54.945,"y":10.866,"w":16.012,"h":0.833,"TU":"Relationship to Dependent Row 2"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_2_","EN":0},"TI":12,"AM":0,"x":72.604,"y":10.9,"w":22.294,"h":0.833,"TU":"Dependent Child Social Security Number_Row 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_3_","EN":0},"TI":13,"AM":0,"x":10.515,"y":11.531,"w":36.173,"h":0.833,"TU":"Dependent's Name Row 3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_3_","EN":0},"TI":14,"AM":0,"x":48.596,"y":11.575,"w":5.16,"h":0.833,"TU":"Dependent's Age Row 3","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_3_","EN":0},"TI":15,"AM":0,"x":54.945,"y":11.611,"w":15.937,"h":0.833,"TU":"Relationship to Dependent Row 3"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_3_","EN":0},"TI":16,"AM":0,"x":72.679,"y":11.553,"w":22.219,"h":0.833,"TU":"Dependent Child Social Security Number_Row 3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_4_","EN":0},"TI":17,"AM":0,"x":10.515,"y":12.291,"w":36.247,"h":0.833,"TU":"Dependent's Name Row 4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_4_","EN":0},"TI":18,"AM":0,"x":48.499,"y":12.299,"w":5.235,"h":0.833,"TU":"Dependent's Age Row 4","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_4_","EN":0},"TI":19,"AM":0,"x":54.945,"y":12.308,"w":15.937,"h":0.833,"TU":"Relationship to Dependent Row 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_4_","EN":0},"TI":20,"AM":0,"x":72.778,"y":12.281,"w":22.144,"h":0.833,"TU":"Dependent Child Social Security Number_Row 4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_5_","EN":0},"TI":21,"AM":0,"x":10.328,"y":13.007,"w":36.323,"h":0.833,"TU":"Dependent's Name Row 1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_5_","EN":0},"TI":22,"AM":0,"x":48.333,"y":12.988,"w":5.085,"h":0.833,"TU":"Dependent's Age Row 1","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_5_","EN":0},"TI":23,"AM":0,"x":54.736,"y":13.086,"w":16.162,"h":0.833,"TU":"Relationship to Dependent Row 1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_5_","EN":0},"TI":24,"AM":0,"x":72.417,"y":13.039,"w":22.369,"h":0.833,"TU":"Dependent Child Social Security Number_Row 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_6_","EN":0},"TI":25,"AM":0,"x":10.328,"y":13.744,"w":36.323,"h":0.833,"TU":"Dependent's Name Row 2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_6_","EN":0},"TI":26,"AM":0,"x":48.311,"y":13.725,"w":5.01,"h":0.833,"TU":"Dependent's Age Row 2","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_6_","EN":0},"TI":27,"AM":0,"x":54.758,"y":13.761,"w":16.012,"h":0.833,"TU":"Relationship to Dependent Row 2"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_6_","EN":0},"TI":28,"AM":0,"x":72.417,"y":13.795,"w":22.294,"h":0.833,"TU":"Dependent Child Social Security Number_Row 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_7_","EN":0},"TI":29,"AM":0,"x":10.328,"y":14.427,"w":36.173,"h":0.833,"TU":"Dependent's Name Row 3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_7_","EN":0},"TI":30,"AM":0,"x":48.408,"y":14.47,"w":5.16,"h":0.833,"TU":"Dependent's Age Row 3","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_7_","EN":0},"TI":31,"AM":0,"x":54.758,"y":14.506,"w":15.937,"h":0.833,"TU":"Relationship to Dependent Row 3"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_7_","EN":0},"TI":32,"AM":0,"x":72.491,"y":14.449,"w":22.219,"h":0.833,"TU":"Dependent Child Social Security Number_Row 3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_8_","EN":0},"TI":33,"AM":0,"x":10.328,"y":15.187,"w":36.248,"h":0.833,"TU":"Dependent's Name Row 4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_8_","EN":0},"TI":34,"AM":0,"x":48.311,"y":15.195,"w":5.235,"h":0.833,"TU":"Dependent's Age Row 4","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_8_","EN":0},"TI":35,"AM":0,"x":54.758,"y":15.204,"w":15.937,"h":0.833,"TU":"Relationship to Dependent Row 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_8_","EN":0},"TI":36,"AM":0,"x":72.591,"y":15.177,"w":22.144,"h":0.833,"TU":"Dependent Child Social Security Number_Row 4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_9_","EN":0},"TI":37,"AM":0,"x":10.328,"y":15.819,"w":36.323,"h":0.833,"TU":"Dependent's Name Row 1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_9_","EN":0},"TI":38,"AM":0,"x":48.333,"y":15.8,"w":5.085,"h":0.833,"TU":"Dependent's Age Row 1","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_9_","EN":0},"TI":39,"AM":0,"x":54.736,"y":15.899,"w":16.162,"h":0.833,"TU":"Relationship to Dependent Row 1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_9_","EN":0},"TI":40,"AM":0,"x":72.417,"y":15.851,"w":22.369,"h":0.833,"TU":"Dependent Child Social Security Number_Row 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_10_","EN":0},"TI":41,"AM":0,"x":10.328,"y":16.557,"w":36.323,"h":0.833,"TU":"Dependent's Name Row 2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_10_","EN":0},"TI":42,"AM":0,"x":48.311,"y":16.538,"w":5.01,"h":0.833,"TU":"Dependent's Age Row 2","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_10_","EN":0},"TI":43,"AM":0,"x":54.758,"y":16.574,"w":16.012,"h":0.833,"TU":"Relationship to Dependent Row 2"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_10_","EN":0},"TI":44,"AM":0,"x":72.417,"y":16.608,"w":22.294,"h":0.833,"TU":"Dependent Child Social Security Number_Row 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_11_","EN":0},"TI":45,"AM":0,"x":10.328,"y":17.239,"w":36.173,"h":0.833,"TU":"Dependent's Name Row 3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_11_","EN":0},"TI":46,"AM":0,"x":48.408,"y":17.283,"w":5.16,"h":0.833,"TU":"Dependent's Age Row 3","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_11_","EN":0},"TI":47,"AM":0,"x":54.758,"y":17.319,"w":15.937,"h":0.833,"TU":"Relationship to Dependent Row 3"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_11_","EN":0},"TI":48,"AM":0,"x":72.491,"y":17.261,"w":22.219,"h":0.833,"TU":"Dependent Child Social Security Number_Row 3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_12_","EN":0},"TI":49,"AM":0,"x":10.328,"y":17.999,"w":36.248,"h":0.833,"TU":"Dependent's Name Row 4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_12_","EN":0},"TI":50,"AM":0,"x":48.311,"y":18.008,"w":5.235,"h":0.833,"TU":"Dependent's Age Row 4","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_12_","EN":0},"TI":51,"AM":0,"x":54.758,"y":18.016,"w":15.937,"h":0.833,"TU":"Relationship to Dependent Row 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_12_","EN":0},"TI":52,"AM":0,"x":72.591,"y":17.989,"w":22.144,"h":0.833,"TU":"Dependent Child Social Security Number_Row 4"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/F8453.content.txt b/test/data/pa/form/F8453.content.txt new file mode 100755 index 00000000..444c061c --- /dev/null +++ b/test/data/pa/form/F8453.content.txt @@ -0,0 +1,145 @@ +Primary Taxpayer’s Last Name +Secondary Taxpayer’s First Name, Initial +Part III +Declaration of Taxpayers +(Sign only after Part I is complete.) +10. +I +I am not receiving a refund or I do not want direct deposit of my refund. +Primary Taxpayer Date Secondary Taxpayer Date +Part +IV +Declaration of Electronic Return Originator (ERO) and Paid Preparer +(See instructions.) +➧ +Sign +Here +ERO’s +Use +Only +ERO’s signature Date EIN/SSN or PTIN +Daytime Telephone Number ( ) +Part II +Direct Deposit of Refund or Electronic Funds Withdrawal of Tax Due +(Optional – See instructions.) +6. Routing transit number (RTN) +7. Depositor account number (DAN) +8. Type of account: +Checking +Savings +9 +. +Debit date +Declaration Control Number/Submission ID +Form +PA-8453 +2013 +PENNSYLVANIA INDIVIDUAL INCOME TAX +DECLARATION FOR ELECTRONIC FILING +Primary Taxpayer’s Social Security Number Secondary Taxpayer’s Social Security Number +Home Address (Number and Street including Rural Route or P.O. Box) +City, Town or Post Office +State ZIP Code +Part I +Tax Return Information +(Enter whole dollars only.) +For the year Jan. 1 – Dec. 31, 2013 +Check +Proper +S +Single +J +Married, Filing Jointly +D +Deceased Daytime Telephone Number +Filing Status +M +Married, Filing Separately +F +Print +or +Type +KEEP THIS FORM AND THE REQUIRED ATTACHMENTS FOR THREE YEARS. Please DO NOT mail this form. +➧ +➧ +The first two numbers of the RTN must +be 01 through 12 or 21 through 32. +➧ +Check if also +paid preparer +Check if +self-employed +Firm’s name (or yours, +if self-employed) and +address +➧ +➧ +➧ +Paid +Preparer’s +Use Only +Check if +self-employed +Firm’s name (or yours, +if self-employed) and +address +STAPLE COPY OF +STATE W-2(s), W-2G +and 1099(s) HERE +P +E +N +N +S +Y +L +V +A +N +I +A +PA DEPARTMENT OF REVENUE USE ONLY – DO NOT WRITE OR STAPLE IN THIS SPACE +The above information must match that on the electronic return exactly. +a. +b. +c. +Preparer’s signature Date EIN/SSN or PTIN +Daytime Telephone Number ( ) +Check if also +paid preparer +2. PA tax liability (Form PA-40, Line 12) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +2. +3. Total PA tax withheld (Form PA-40, Line 13) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +3. +4. Amount to be refunded (Form PA-40, Line 30) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +4. +5. Total payment (tax due) (Form PA-40, Line 28) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +5. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +1. +1. Adjusted PA taxable income (Form PA-40, Line 11) +PA Tax Return (PA-40). To the best of my knowledge, my return is true and complete. I consent my return and accompanying schedules and statements may be sent to the Internal +I declare I have received the above-named taxpayer’s return and the entries on this form are complete and correct to the best of my knowledge. I obtained the taxpayer’s signature on +this form before submitting this return to the PA Department of Revenue. I provided the taxpayer with a copy of all forms and information to be filed with the IRS and the PA Department +of Revenue and followed all other requirements specified by the PA Department of Revenue and described in the IRS Publication 1345, Handbook for Electronic Filers of Individual Tax +Returns (Tax Year 2013). If I am the preparer, under penalty of perjury I declare I examined the above-named taxpayer’s return and accompanying schedules and statements, and to +the best of my knowledge, they are true and complete. I understand I am required to keep this form and supporting documents for three years. +Primary Taxpayer’s First Name, Initial +Secondary Taxpayer’s Last Name (only if different) +Final Return +consent for my refund to be directly deposited as designated in Part II and declare all information shown on Lines 6 through 8 is correct. I certify +the ultimate destination of the funds is within the U.S. or one of its territories. If I have filed a joint return, this is an irrevocable appointment of +the other Taxpayer as an agent to receive the refund. +I authorize the Pennsylvania Department of Revenue and its designated financial agents to initiate an electronic funds withdrawal entry to my +designated account for Pennsylvania taxes owed. I also authorize my financial institution to debit the entry to my account and the financial +institutions involved in the processing of my electronic payment of taxes to receive confidential information necessary to answer inquiries and +resolve issues related to my payment. I certify the funds for this withdraw are originating from an account within the U.S. or one of its territories. +I may revoke this authorization by notifying the Pennsylvania Department of Revenue no later than two business days prior to the payment (settlement) + +date. I understand notification must be made in writing by email to ra-achrevok@state.pa.us or fax to 717-772-9310. +If I have filed a balance-due return, I understand that if the PA Department of Revenue does not receive full and timely payment of my tax liability, I will remain liable for the tax +and all applicable interest and penalties. If I have filed a joint federal and state tax return and there is an error on my state return, I understand my federal return will be rejected. +I declare under penalties of perjury compared the information on my return with the information I provided to my electronic return originator and the amounts match those on my +2013 RevenueService (IRS) by my electronic return originator, and subsequently by the IRS to the PA Department of Revenue. If I am filing from a home computer, I understand I +am required to keep this form and supporting documents for three years. +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/F8453.fields.json b/test/data/pa/form/F8453.fields.json new file mode 100755 index 00000000..6ea70003 --- /dev/null +++ b/test/data/pa/form/F8453.fields.json @@ -0,0 +1 @@ +[{"id":"BOXRB","type":"radio","calc":true,"value":"BOXS"},{"id":"BOXRB","type":"radio","calc":true,"value":"BOXJ"},{"id":"BOXRB","type":"radio","calc":true,"value":"BOXD"},{"id":"BOXRB","type":"radio","calc":true,"value":"BOXM"},{"id":"BOXRB","type":"radio","calc":true,"value":"BOXF"},{"id":"BX8RB","type":"radio","calc":true,"value":"BX81"},{"id":"BX8RB","type":"radio","calc":true,"value":"BX82"},{"id":"BX9RB","type":"radio","calc":false,"value":"BOX9A"},{"id":"BX9RB","type":"radio","calc":false,"value":"BOX9B"},{"id":"BX9RB","type":"radio","calc":false,"value":"BOX9C"},{"id":"SUBID","type":"alpha","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"PHONE","type":"phone","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"alpha","calc":true,"value":""},{"id":"L7","type":"mask","calc":true,"value":""},{"id":"DEBDATE","type":"date","calc":true,"value":""},{"id":"SPREP","type":"alpha","calc":true,"value":"SELF-PREPARED"}] \ No newline at end of file diff --git a/test/data/pa/form/F8453.json b/test/data/pa/form/F8453.json new file mode 100755 index 00000000..85e46109 --- /dev/null +++ b/test/data/pa/form/F8453.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 PA Individual Income Tax Declaration for Electronic Filing (PA-8453)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":4.223,"y":25.219,"w":18,"l":8.299},{"oc":"#2b2e34","x":4.223,"y":25.599,"w":1.5,"l":92.174},{"oc":"#2b2e34","x":4.223,"y":36.685,"w":18,"l":8.441},{"oc":"#2b2e34","x":4.223,"y":37.066,"w":1.5,"l":92.316},{"oc":"#2b2e34","x":12.817,"y":41.424,"w":0.75,"l":83.722},{"oc":"#2b2e34","x":30.348,"y":42.206,"w":0.75,"l":66.191},{"oc":"#2b2e34","x":4.125,"y":19.558,"w":18,"l":8.52},{"oc":"#2b2e34","x":4.125,"y":19.961,"w":1.5,"l":92.395},{"oc":"#2b2e34","x":11.798,"y":7.156,"w":0.75,"l":84.749},{"oc":"#2b2e34","x":11.798,"y":8.656,"w":0.75,"l":84.749},{"oc":"#2b2e34","x":11.798,"y":10.156,"w":0.75,"l":84.749},{"oc":"#2b2e34","x":4.125,"y":14.362,"w":18,"l":8.441},{"oc":"#2b2e34","x":4.125,"y":14.764,"w":1.5,"l":92.316},{"oc":"#2b2e34","x":78.719,"y":15.658,"w":0.75,"l":17.722},{"oc":"#2b2e34","x":78.719,"y":16.354,"w":0.75,"l":17.722},{"oc":"#2b2e34","x":78.719,"y":17.104,"w":0.75,"l":17.722},{"oc":"#2b2e34","x":78.719,"y":17.854,"w":0.75,"l":17.722},{"oc":"#2b2e34","x":78.719,"y":18.604,"w":0.75,"l":17.722},{"oc":"#2b2e34","x":4.125,"y":19.188,"w":1.5,"l":92.193},{"oc":"#2b2e34","x":4.127,"y":13.96,"w":1.5,"l":92.344},{"oc":"#2b2e34","x":4.051,"y":42.863,"w":1.5,"l":92.66},{"oc":"#2b2e34","x":3.953,"y":46.149,"w":1.5,"l":92.758},{"oc":"#2b2e34","x":4.226,"y":24.817,"w":1.5,"l":92.049},{"oc":"#2b2e34","x":22.095,"y":24.479,"w":0.75,"l":19.183},{"oc":"#2b2e34","x":4.226,"y":36.31,"w":1.5,"l":92.344},{"oc":"#2b2e34","x":12.943,"y":35.528,"w":0.75,"l":36.714},{"oc":"#2b2e34","x":54.071,"y":35.528,"w":0.75,"l":42.474},{"oc":"#2b2e34","x":12.817,"y":44.111,"w":0.75,"l":83.722},{"oc":"#2b2e34","x":30.348,"y":44.921,"w":0.75,"l":66.191}],"VLines":[{"oc":"#2b2e34","x":39.409,"y":34.587,"w":0.75,"l":0.929},{"oc":"#2b2e34","x":86.829,"y":34.587,"w":0.75,"l":0.929},{"oc":"#2b2e34","x":39.409,"y":40.203,"w":0.75,"l":1.228},{"oc":"#2b2e34","x":52.275,"y":40.203,"w":0.75,"l":1.228},{"oc":"#2b2e34","x":63.766,"y":42.863,"w":0.75,"l":1.25},{"oc":"#2b2e34","x":75.322,"y":42.899,"w":0.75,"l":1.214},{"oc":"#2b2e34","x":75.322,"y":40.203,"w":0.75,"l":1.228},{"oc":"#2b2e34","x":9.846,"y":19.953,"w":0.75,"l":4.828},{"oc":"#2b2e34","x":63.766,"y":40.203,"w":0.75,"l":1.228},{"oc":"#2b2e34","x":52.373,"y":42.21,"w":0.75,"l":1.904},{"oc":"#2b2e34","x":52.275,"y":44.934,"w":0.75,"l":1.215},{"oc":"#2b2e34","x":54.076,"y":5.71,"w":0.75,"l":2.924},{"oc":"#2b2e34","x":39.408,"y":42.855,"w":0.75,"l":1.259}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#ebecec","x":55.516,"y":-0.002,"w":41.348,"h":2.788,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":13.688,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":15.375,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":17.063,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":18.75,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":20.438,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":22.125,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":23.813,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":25.5,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":27.188,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":28.875,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":30.563,"w":4.125,"h":1.5,"clr":-1},{"oc":"#2b2e34","x":100.129,"y":32.25,"w":4.125,"h":1.5,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":11.419,"y":6.838,"w":13.724999999999998,"clr":-1,"A":"left","R":[{"T":"Primary%20Taxpayer%E2%80%99s%20Last%20Name","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":53.962,"y":6.846,"w":18.005000000000003,"clr":-1,"A":"left","R":[{"T":"Secondary%20Taxpayer%E2%80%99s%20First%20Name%2C%20Initial","S":-1,"TS":[0,9.65,0,0]}]},{"x":4.621,"y":24.658,"w":3.4702000000000006,"clr":1,"A":"left","R":[{"T":"Part%20III","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":14.286,"y":24.658,"w":13.203600000000002,"clr":-1,"A":"left","R":[{"T":"Declaration%20of%20Taxpayers","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":35.408,"y":24.658,"w":15.338999999999997,"clr":-1,"A":"left","R":[{"T":"(Sign%20only%20after%20Part%20I%20is%20complete.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.32,"y":25.528,"w":1.5234999999999999,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":18.411,"y":25.517,"w":0.27799999999999997,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,10.125,0,0]}]},{"oc":"#2b2e34","x":18.411,"y":27.126,"w":31.34899999999999,"clr":-1,"A":"left","R":[{"T":"I%20am%20not%20receiving%20a%20refund%20or%20I%20do%20not%20want%20direct%20deposit%20of%20my%20refund.","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":12.518,"y":35.216,"w":8.602,"clr":-1,"A":"left","R":[{"T":"Primary%20Taxpayer","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.561,"y":35.216,"w":2.29,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":53.999,"y":35.216,"w":10.027,"clr":-1,"A":"left","R":[{"T":"Secondary%20Taxpayer","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":87.131,"y":35.216,"w":2.29,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":4.621,"y":36.124,"w":2.4985000000000004,"clr":1,"A":"left","R":[{"T":"Part%20","S":10,"TS":[0,14,1,0]}]},{"x":9.005,"y":36.124,"w":1.085,"clr":1,"A":"left","R":[{"T":"IV","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":14.286,"y":36.124,"w":35.5842,"clr":-1,"A":"left","R":[{"T":"Declaration%20of%20Electronic%20Return%20Originator%20(ERO)%20and%20Paid%20Preparer%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":69.775,"y":36.124,"w":8.057999999999998,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.783,"y":35.324,"w":0.463,"clr":-1,"A":"left","R":[{"T":"%E2%9E%A7","S":-1,"TS":[3,23,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":34.727,"w":2.3449999999999998,"clr":-1,"A":"left","R":[{"T":"Sign","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":3.974,"y":35.289,"w":2.401,"clr":-1,"A":"left","R":[{"T":"Here","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":3.8760000000000003,"y":39.986,"w":3.223499999999999,"clr":-1,"A":"left","R":[{"T":"ERO%E2%80%99s","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":3.8760000000000003,"y":40.548,"w":1.9674999999999998,"clr":-1,"A":"left","R":[{"T":"Use","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":3.8760000000000003,"y":41.111,"w":2.401,"clr":-1,"A":"left","R":[{"T":"Only","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":12.518,"y":39.845,"w":7.947500000000001,"clr":-1,"A":"left","R":[{"T":"ERO%E2%80%99s%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.45,"y":39.845,"w":2.29,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.494,"y":39.845,"w":8.3915,"clr":-1,"A":"left","R":[{"T":"EIN%2FSSN%20or%20PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":52.442,"y":41.958,"w":18.19700000000001,"clr":-1,"A":"left","R":[{"T":"Daytime%20Telephone%20Number%20(%20%20%20%20%20%20%20%20%20%20%20)","S":2,"TS":[0,10,0,0]}]},{"x":4.523,"y":18.998,"w":3.1463000000000005,"clr":1,"A":"left","R":[{"T":"Part%20II","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":14.187,"y":18.998,"w":35.2674,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit%20of%20Refund%20or%20Electronic%20Funds%20Withdrawal%20of%20Tax%20Due","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":69.937,"y":18.998,"w":12.893999999999997,"clr":-1,"A":"left","R":[{"T":"(Optional%20%E2%80%93%20See%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":20.288,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":20.288,"w":14.6825,"clr":-1,"A":"left","R":[{"T":"Routing%20transit%20number%20(RTN)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":21.413,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":21.413,"w":16.439500000000002,"clr":-1,"A":"left","R":[{"T":"Depositor%20account%20number%20(DAN)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":22.538,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":22.538,"w":8.105,"clr":-1,"A":"left","R":[{"T":"Type%20of%20account%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":44.286,"y":22.538,"w":4.523999999999999,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":57.5,"y":22.538,"w":3.868499999999999,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.063,"y":23.663,"w":0.5559999999999999,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.889,"y":23.704,"w":0.27799999999999997,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":23.663,"w":5.002999999999999,"clr":-1,"A":"left","R":[{"T":"Debit%20date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.068,"y":0.45999999999999996,"w":20.452,"clr":-1,"A":"left","R":[{"T":"Declaration%20Control%20Number%2FSubmission%20ID","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":3.22,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#2b2e34","x":7.446,"y":3.22,"w":5.7119,"clr":-1,"A":"left","R":[{"T":"PA-8453","S":-1,"TS":[0,20.2,1,0]}]},{"oc":"#2b2e34","x":87.388,"y":3.274,"w":3.1276,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,20.2,1,0]}]},{"oc":"#2b2e34","x":28.787,"y":2.975,"w":23.693000000000005,"clr":-1,"A":"left","R":[{"T":"PENNSYLVANIA%20INDIVIDUAL%20INCOME%20TAX%20","S":-1,"TS":[0,14.8,1,0]}]},{"oc":"#2b2e34","x":29.061,"y":3.7249999999999996,"w":21.442999999999994,"clr":-1,"A":"left","R":[{"T":"DECLARATION%20FOR%20ELECTRONIC%20FILING","S":-1,"TS":[0,14.8,1,0]}]},{"oc":"#2b2e34","x":11.898,"y":5.346,"w":19.058999999999997,"clr":-1,"A":"left","R":[{"T":"Primary%20Taxpayer%E2%80%99sSocial%20Security%20Number","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":54.12,"y":5.346,"w":20.394999999999992,"clr":-1,"A":"left","R":[{"T":"Secondary%20Taxpayer%E2%80%99sSocial%20Security%20Number","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":11.898,"y":8.346,"w":31.289,"clr":-1,"A":"left","R":[{"T":"Home%20Address%20(Number%20and%20Street%20including%20Rural%20Route%20or%20P.O.%20Box)","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":11.898,"y":9.846,"w":11.059,"clr":-1,"A":"left","R":[{"T":"City%2C%20Town%20or%20Post%20Office","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":65.174,"y":9.846,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":82.705,"y":9.846,"w":4.224,"clr":-1,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,9.65,0,0]}]},{"x":4.661,"y":13.801,"w":2.8224000000000005,"clr":1,"A":"left","R":[{"T":"Part%20I","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":14.187,"y":13.801,"w":12.520699999999998,"clr":-1,"A":"left","R":[{"T":"Tax%20Return%20Information%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":33.599,"y":13.801,"w":11.558999999999997,"clr":-1,"A":"left","R":[{"T":"(Enter%20whole%20dollars%20only.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.46,"y":4.634,"w":16.900000000000002,"clr":-1,"A":"left","R":[{"T":"For%20the%20year%20Jan.%201%20%E2%80%93%20Dec.%2031%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":4.247,"y":11.676,"w":2.461,"clr":-1,"A":"left","R":[{"T":"Check","S":32,"TS":[1,10,1,0]}]},{"oc":"#2b2e34","x":4.247,"y":12.239,"w":2.643,"clr":-1,"A":"left","R":[{"T":"Proper","S":32,"TS":[1,10,1,0]}]},{"oc":"#2b2e34","x":13.013,"y":12.239,"w":0.6669999999999999,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":16.622,"y":12.239,"w":2.779,"clr":-1,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":38.279,"y":12.239,"w":0.5559999999999999,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":41.926,"y":12.239,"w":9.445999999999998,"clr":-1,"A":"left","R":[{"T":"Married%2C%20Filing%20Jointly","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.935,"y":12.239,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":63.544,"y":12.239,"w":4.502,"clr":-1,"A":"left","R":[{"T":"Deceased","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":78.496,"y":12.239,"w":12.503999999999996,"clr":-1,"A":"left","R":[{"T":"Daytime%20Telephone%20Number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":4.247,"y":12.801,"w":4.920999999999999,"clr":-1,"A":"left","R":[{"T":"Filing%20Status","S":32,"TS":[1,10,1,0]}]},{"oc":"#2b2e34","x":13.013,"y":12.801,"w":0.8330000000000001,"clr":-1,"A":"left","R":[{"T":"M","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":16.661,"y":12.801,"w":11.391999999999996,"clr":-1,"A":"left","R":[{"T":"Married%2C%20Filing%20Separately","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.935,"y":12.801,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":4.986,"y":7.101,"w":2.445,"clr":-1,"A":"left","R":[{"T":"Print","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":6.407,"y":7.976000000000001,"w":1.0668,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":5.039,"y":8.851,"w":2.4676,"clr":-1,"A":"left","R":[{"T":"Type","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":3.875,"y":46.431,"w":38.796500000000016,"clr":-1,"A":"left","R":[{"T":"KEEP%20THIS%20FORM%20AND%20THE%20REQUIRED%20ATTACHMENTSFOR%20THREE%20YEARS.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":74.423,"y":46.431,"w":15.015499999999998,"clr":-1,"A":"left","R":[{"T":"Please%20DO%20NOT%20mail%20this%20form.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#2b2e34","x":50.885,"y":35.324,"w":0.463,"clr":-1,"A":"left","R":[{"T":"%E2%9E%A7","S":-1,"TS":[3,23,0,0]}]},{"oc":"#2b2e34","x":10.543,"y":12.933,"w":0.463,"clr":-1,"A":"left","R":[{"T":"%E2%9E%A7","S":-1,"TS":[3,23,0,0]}]},{"oc":"#2b2e34","x":61.987,"y":19.77,"w":19.678099999999997,"clr":-1,"A":"left","R":[{"T":"The%20first%20two%20numbers%20of%20the%20RTN%20must","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#2b2e34","x":61.987,"y":20.27,"w":17.525199999999998,"clr":-1,"A":"left","R":[{"T":"be%2001%20through%2012%20or%2021%20through%2032.","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#2b2e34","x":26.366,"y":41.92,"w":0.463,"clr":-1,"A":"left","R":[{"T":"%E2%9E%A7","S":-1,"TS":[3,21,0,0]}]},{"oc":"#2b2e34","x":52.54,"y":39.816,"w":6.302499999999999,"clr":-1,"A":"left","R":[{"T":"Check%20if%20also","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":52.54,"y":40.253,"w":7.1705,"clr":-1,"A":"left","R":[{"T":"paid%20preparer%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":64.031,"y":39.807,"w":4.290499999999999,"clr":-1,"A":"left","R":[{"T":"Check%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":64.031,"y":40.244,"w":7.4475,"clr":-1,"A":"left","R":[{"T":"self-employed%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.714,"y":41.119,"w":10.98,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20name%20(or%20yours%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.714,"y":41.557,"w":10.2155,"clr":-1,"A":"left","R":[{"T":"if%20self-employed)%20and","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.714,"y":41.994,"w":3.8685,"clr":-1,"A":"left","R":[{"T":"address","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":26.366,"y":44.616,"w":0.463,"clr":-1,"A":"left","R":[{"T":"%E2%9E%A7","S":-1,"TS":[3,21,0,0]}]},{"oc":"#2b2e34","x":12.42,"y":40.6,"w":0.463,"clr":-1,"A":"left","R":[{"T":"%E2%9E%A7","S":-1,"TS":[3,15,0,0]}]},{"oc":"#2b2e34","x":12.42,"y":43.306,"w":0.463,"clr":-1,"A":"left","R":[{"T":"%E2%9E%A7","S":-1,"TS":[3,15,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":43.28,"w":2.29,"clr":-1,"A":"left","R":[{"T":"Paid","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":3.974,"y":43.843,"w":5.3919999999999995,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":3.974,"y":44.405,"w":4.691,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":-1,"TS":[0,11.1,1,0]}]},{"oc":"#2b2e34","x":64.031,"y":42.584,"w":3.967999999999999,"clr":-1,"A":"left","R":[{"T":"Check%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":64.031,"y":43.021,"w":7.4475,"clr":-1,"A":"left","R":[{"T":"self-employed%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.714,"y":43.78,"w":10.98,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20name%20(or%20yours%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.714,"y":44.218,"w":10.2155,"clr":-1,"A":"left","R":[{"T":"if%20self-employed)%20and","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.714,"y":44.655,"w":3.8685,"clr":-1,"A":"left","R":[{"T":"address","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":5.563,"y":23.508,"w":7.665,"clr":-1,"A":"left","R":[{"T":"STAPLE%20COPY%20OF","S":-1,"TS":[1,11,1,0],"RA":90}]},{"oc":"#2b2e34","x":7.281,"y":23.743,"w":8.674999999999999,"clr":-1,"A":"left","R":[{"T":"STATE%20W-2(s)%2C%20W-2G","S":-1,"TS":[1,11,1,0],"RA":90}]},{"oc":"#2b2e34","x":9,"y":23.519,"w":7.601999999999998,"clr":-1,"A":"left","R":[{"T":"and%201099(s)%20HERE","S":-1,"TS":[1,11,1,0],"RA":90}]},{"x":100.796,"y":14.074,"w":0.6669999999999999,"clr":1,"A":"left","R":[{"T":"P","S":-1,"TS":[0,24,1,0]}]},{"x":100.796,"y":15.761,"w":0.6669999999999999,"clr":1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,24,1,0]}]},{"x":100.701,"y":17.448,"w":0.722,"clr":1,"A":"left","R":[{"T":"N","S":-1,"TS":[0,24,1,0]}]},{"x":100.701,"y":19.136,"w":0.722,"clr":1,"A":"left","R":[{"T":"N","S":-1,"TS":[0,24,1,0]}]},{"x":100.796,"y":20.823,"w":0.6669999999999999,"clr":1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,24,1,0]}]},{"x":100.796,"y":22.511,"w":0.6669999999999999,"clr":1,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,24,1,0]}]},{"x":100.892,"y":24.198,"w":0.611,"clr":1,"A":"left","R":[{"T":"L","S":-1,"TS":[0,24,1,0]}]},{"x":100.796,"y":25.886,"w":0.6669999999999999,"clr":1,"A":"left","R":[{"T":"V","S":-1,"TS":[0,24,1,0]}]},{"x":100.701,"y":27.574,"w":0.722,"clr":1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,24,1,0]}]},{"x":100.701,"y":29.261,"w":0.722,"clr":1,"A":"left","R":[{"T":"N","S":-1,"TS":[0,24,1,0]}]},{"x":101.465,"y":30.948,"w":0.27799999999999997,"clr":1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,24,1,0]}]},{"x":100.701,"y":32.636,"w":0.722,"clr":1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,24,1,0]}]},{"oc":"#2b2e34","x":55.639,"y":1.505,"w":44.43739999999997,"clr":-1,"A":"left","R":[{"T":"PA%20DEPARTMENT%20OF%E2%80%88REVENUE%20USE%E2%80%88ONLY%20%E2%80%93%20DO%E2%80%88NOT%E2%80%88WRITE%E2%80%88OR%E2%80%88STAPLE%E2%80%88IN%20THIS%E2%80%88SPACE","S":-1,"TS":[0,8.355,1,0]}]},{"oc":"#2b2e34","x":11.476,"y":11.44,"w":35.6952,"clr":-1,"A":"left","R":[{"T":"The%20above%20information%20must%20match%20that%20on%20the%20electronic%20return%20exactly.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":16.293,"y":25.414,"w":0.8339999999999999,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":16.293,"y":27.101,"w":0.8339999999999999,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":16.293,"y":27.766,"w":0.778,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.518,"y":42.533,"w":9.893,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":39.404,"y":42.533,"w":2.29,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":75.449,"y":42.533,"w":8.3915,"clr":-1,"A":"left","R":[{"T":"EIN%2FSSN%20or%20PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":52.786,"y":44.927,"w":18.19700000000001,"clr":-1,"A":"left","R":[{"T":"Daytime%20Telephone%20Number%20(%20%20%20%20%20%20%20%20%20%20%20)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":52.538,"y":42.584,"w":6.302499999999999,"clr":-1,"A":"left","R":[{"T":"Check%20if%20also","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":52.538,"y":43.021,"w":7.1705,"clr":-1,"A":"left","R":[{"T":"paid%20preparer%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":15.466000000000001,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":15.466000000000001,"w":44.529999999999994,"clr":-1,"A":"left","R":[{"T":"PA%20tax%20liability%20(Form%20PA-40%2C%20Line%2012)%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,0,0]}]},{"oc":"#2b2e34","x":76.77,"y":15.466000000000001,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":16.216,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":16.216,"w":44.69649999999998,"clr":-1,"A":"left","R":[{"T":"Total%20PA%20tax%20withheld%20(Form%20PA-40%2C%20Line%2013)%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,0,0]}]},{"oc":"#2b2e34","x":76.767,"y":16.216,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":16.966,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":16.966,"w":44.83149999999998,"clr":-1,"A":"left","R":[{"T":"Amount%20to%20be%20refunded%20(Form%20PA-40%2C%20Line%2030)%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,0,0]}]},{"oc":"#2b2e34","x":76.767,"y":16.966,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":17.716,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":17.716,"w":44.66249999999997,"clr":-1,"A":"left","R":[{"T":"Total%20payment%20(tax%20due)%20(Form%20PA-40%2C%20Line%2028)%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,0,0]}]},{"oc":"#2b2e34","x":76.767,"y":17.716,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":47.842,"y":14.716,"w":22.81520000000001,"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.","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#2b2e34","x":76.534,"y":14.716,"w":0.8783999999999998,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#2b2e34","x":12.048,"y":14.716,"w":0.9229999999999998,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":14.188,"y":14.716,"w":25.134500000000013,"clr":-1,"A":"left","R":[{"T":"Adjusted%20PA%20taxable%20income%20(Form%20PA-40%2C%20Line%2011)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":32.438,"w":77.82759999999999,"clr":-1,"A":"left","R":[{"T":"PA%20Tax%20Return%20(PA-40).%20To%20the%20best%20of%20my%20knowledge%2C%20my%20return%20is%20true%20and%20complete.%20I%20consent%20my%20return%20and%20accompanying%20schedules%20and%20statements%20may%20be%20sent%20to%20the%20Internal%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":36.81,"w":80.37299999999986,"clr":-1,"A":"left","R":[{"T":"I%20declare%20I%20have%20received%20the%20above-named%20taxpayer%E2%80%99s%20return%20and%20the%20entries%20on%20this%20form%20are%20complete%20and%20correct%20to%20the%20best%20of%20my%20knowledge.%20I%20obtained%20the%20taxpayer%E2%80%99s%20signature%20on","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":37.278,"w":81.14899999999992,"clr":-1,"A":"left","R":[{"T":"this%20form%20before%20submitting%20this%20return%20to%20the%20PA%20Department%20of%20Revenue.%20I%20provided%20the%20taxpayer%20with%20a%20copy%20of%20all%20forms%20and%20information%20to%20be%20filed%20with%20the%20IRS%20and%20the%20PA%20Department","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":37.747,"w":81.09299999999989,"clr":-1,"A":"left","R":[{"T":"of%20Revenue%20and%20followed%20all%20other%20requirements%20specified%20by%20the%20PA%20Department%20of%20Revenue%20and%20described%20in%20the%20IRS%20Publication%201345%2C%20Handbook%20for%20Electronic%20Filers%20of%20Individual%20Tax","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":38.216,"w":80.0939999999999,"clr":-1,"A":"left","R":[{"T":"Returns%20(Tax%20Year%202013).%20If%20I%20am%20the%20preparer%2C%20under%20penalty%20of%20perjury%20I%20declare%20I%20examined%20the%20above-named%20taxpayer%E2%80%99s%20return%20and%20accompanying%20schedules%20and%20statements%2C%20and%20to","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":38.685,"w":62.80899999999988,"clr":-1,"A":"left","R":[{"T":"the%20best%20of%20my%20knowledge%2C%20they%20are%20true%20and%20complete.%20I%20understand%20I%20am%20required%20to%20keep%20this%20form%20and%20supporting%20documents%20for%20three%20years.","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":34.128,"y":6.815,"w":16.947,"clr":-1,"A":"left","R":[{"T":"Primary%20Taxpayer%E2%80%99s%20First%20Name%2C%20Initial%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":77.1,"y":6.846,"w":22.507999999999996,"clr":-1,"A":"left","R":[{"T":"Secondary%20Taxpayer%E2%80%99s%20Last%20Name%20(only%20if%20different)","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":63.544,"y":12.801,"w":5.446,"clr":-1,"A":"left","R":[{"T":"Final%20Return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":19.057,"y":25.507,"w":62.04309999999994,"clr":-1,"A":"left","R":[{"T":"consent%20for%20my%20refund%20to%20be%20directly%20deposited%20as%20designated%20in%20Part%20II%20and%20declare%20all%20information%20shown%20on%20Lines%206%20through%208%20is%20correct.%20I%20certify%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.356,"y":26.029,"w":60.65359999999994,"clr":-1,"A":"left","R":[{"T":"the%20ultimate%20destination%20of%20the%20funds%20is%20within%20the%20U.S.%20or%20one%20of%20its%20territories.%20If%20I%20have%20filed%20a%20joint%20return%2C%20this%20is%20an%20irrevocable%20appointment%20of%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.414,"y":26.455,"w":22.980699999999985,"clr":-1,"A":"left","R":[{"T":"the%20other%20Taxpayer%20as%20an%20agent%20to%20receive%20the%20refund.","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.411,"y":27.794,"w":60.953799999999944,"clr":-1,"A":"left","R":[{"T":"I%20authorize%20the%20Pennsylvania%20Department%20of%20Revenue%20and%20its%20designated%20financial%20agents%20to%20initiate%20an%20electronic%20funds%20withdrawal%20entry%20to%20my%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.475,"y":28.283,"w":59.57689999999995,"clr":-1,"A":"left","R":[{"T":"designated%20account%20for%20Pennsylvania%20taxes%20owed.%20I%20also%20authorize%20my%20financial%20institution%20to%20debit%20the%20entry%20to%20my%20account%20and%20the%20financial%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.447,"y":28.771,"w":60.927599999999956,"clr":-1,"A":"left","R":[{"T":"institutions%20involved%20in%20the%20processing%20of%20my%20electronic%20payment%20of%20taxes%20to%20receive%20confidential%20information%20necessary%20to%20answer%20inquiries%20and%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.412,"y":29.24,"w":61.793899999999944,"clr":-1,"A":"left","R":[{"T":"resolve%20issues%20related%20to%20my%20payment.%20I%20certify%20the%20funds%20for%20this%20withdraw%20are%20originating%20from%20an%20account%20within%20the%20U.S.%20or%20one%20of%20its%20territories.%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.493,"y":29.709,"w":65.04309999999994,"clr":-1,"A":"left","R":[{"T":"I%20may%20revoke%20this%20authorization%20by%20notifying%20the%20Pennsylvania%20Department%20of%20Revenue%20no%20later%20than%20two%20business%20days%20prior%20to%20the%20payment%20(settlement)","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":18.523,"y":30.225,"w":49.92949999999994,"clr":-1,"A":"left","R":[{"T":"date.%20I%20understand%20notification%20must%20be%20made%20in%20writing%20by%20email%20to%20ra-achrevok%40state.pa.us%20or%20fax%20to%20717-772-9310.","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":30.869,"w":76.34419999999996,"clr":-1,"A":"left","R":[{"T":"If%20I%20have%20filed%20a%20balance-due%20return%2C%20I%20understand%20that%20if%20the%20PA%20Department%20of%20Revenue%20does%20not%20receive%20full%20and%20timely%20payment%20of%20my%20tax%20liability%2C%20I%20will%20remain%20liable%20for%20the%20tax%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.963,"y":31.372999999999998,"w":76.60739999999994,"clr":-1,"A":"left","R":[{"T":"and%20all%20applicable%20interest%20and%20penalties.%20If%20I%20have%20filed%20a%20joint%20federal%20and%20state%20tax%20return%20and%20there%20is%20an%20error%20on%20my%20state%20return%2C%20I%20understand%20my%20federal%20return%20will%20be%20rejected.","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.974,"y":31.957,"w":77.86699999999989,"clr":-1,"A":"left","R":[{"T":"I%20declare%20under%20penalties%20of%20perjury%20compared%20the%20information%20on%20my%20return%20with%20the%20information%20I%20provided%20to%20my%20electronic%20return%20originator%20and%20the%20amounts%20match%20those%20on%20my%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":4.028,"y":32.92,"w":78.86899999999993,"clr":-1,"A":"left","R":[{"T":"2013%20RevenueService%20(IRS)%20by%20my%20electronic%20return%20originator%2C%20and%20subsequently%20by%20the%20IRS%20to%20the%20PA%20Department%20of%20Revenue.%20If%20I%20am%20filing%20from%20a%20home%20computer%2C%20I%20understand%20I%20","S":-1,"TS":[0,9.65,0,0]}]},{"oc":"#2b2e34","x":3.968,"y":33.348,"w":32.06999999999999,"clr":-1,"A":"left","R":[{"T":"am%20required%20to%20keep%20this%20form%20and%20supporting%20documents%20for%20three%20years.","S":-1,"TS":[0,9.65,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SUBID","EN":0},"TI":53,"AM":0,"x":7.277,"y":1.51,"w":46.324,"h":0.907,"TU":"Submission ID"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":54,"AM":1024,"x":11.678,"y":6.266,"w":42.109,"h":0.843,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":55,"AM":1024,"x":54.245,"y":6.262,"w":42.109,"h":0.843,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":56,"AM":1024,"x":11.721,"y":7.708,"w":19.125,"h":0.843,"TU":"Primary Taxpayer's Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":57,"AM":1024,"x":31.758,"y":7.705,"w":22.045,"h":0.843,"TU":"Primary Taxpayer's First Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":58,"AM":1024,"x":54.222,"y":7.717,"w":22.269,"h":0.843,"TU":"Secondary Taxpayer's First Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":59,"AM":1024,"x":77.391,"y":7.73,"w":19.424,"h":0.843,"TU":"Secondary Taxpayer's Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":60,"AM":1024,"x":11.855,"y":9.273,"w":84.409,"h":0.843,"TU":"Home Address (Number and Street Including Rural Route or P.O. Box)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":61,"AM":1024,"x":11.967,"y":10.774,"w":25.391,"h":0.843,"TU":"City, Town or Post Office"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":62,"AM":1024,"x":65.215,"y":10.795,"w":4.507,"h":0.852,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":63,"AM":1024,"x":82.684,"y":10.758,"w":13.612,"h":0.843,"TU":"ZIP Code"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":69,"AM":1024,"x":78.802,"y":13.12,"w":16.995,"h":0.833,"TU":"Daytime Telephone Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":70,"AM":1024,"x":78.606,"y":14.848,"w":17.738,"h":0.833,"TU":"Adjusted PA Taxable Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":71,"AM":1024,"x":78.606,"y":15.598,"w":17.738,"h":0.833,"TU":"PA Tax Liability"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":72,"AM":1024,"x":78.606,"y":16.295,"w":17.738,"h":0.833,"TU":"Total PA Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":73,"AM":1024,"x":78.606,"y":17.045,"w":17.738,"h":0.833,"TU":"Amount to be Refunded"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":74,"AM":1024,"x":78.606,"y":17.858,"w":17.738,"h":0.833,"TU":"Total Payment (tax due)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":75,"AM":1024,"x":42.038,"y":20.33,"w":18.501,"h":0.833,"TU":"Routing Transit Number (RTN)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":76,"AM":1024,"x":41.941,"y":21.615,"w":35.001,"h":0.833,"TU":"Depositor Account Number (DAN)","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DEBDATE","EN":0},"TI":79,"AM":1024,"x":21.969,"y":23.82,"w":19.202,"h":0.833,"TU":"Debit Date","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPREP","EN":0},"TI":83,"AM":1024,"x":13.686,"y":43.337,"w":25.247,"h":0.833,"TU":"Preparer's Signature","V":"SELF-PREPARED"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXS","EN":0},"TI":64,"AM":1024,"x":14.455,"y":12.363,"w":1.896,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXJ","EN":0},"TI":65,"AM":1024,"x":39.571,"y":12.425,"w":1.896,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXD","EN":0},"TI":66,"AM":1024,"x":61.413,"y":12.382,"w":1.896,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXM","EN":0},"TI":67,"AM":1024,"x":14.511,"y":12.961,"w":1.896,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXF","EN":0},"TI":68,"AM":1024,"x":61.489,"y":13.056,"w":1.896,"h":0.833,"checked":false}],"id":{"Id":"BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX81","EN":0},"TI":77,"AM":1024,"x":41.438,"y":22.657,"w":2.345,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX82","EN":0},"TI":78,"AM":1024,"x":55.089,"y":22.568,"w":2.345,"h":0.833,"checked":false}],"id":{"Id":"BX8RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX9A","EN":0},"TI":80,"AM":0,"x":14.028,"y":25.557,"w":2.345,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX9B","EN":0},"TI":81,"AM":0,"x":14.062,"y":27.034,"w":2.345,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX9C","EN":0},"TI":82,"AM":0,"x":14.042,"y":27.925,"w":2.345,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/PA40.content.txt b/test/data/pa/form/PA40.content.txt new file mode 100755 index 00000000..b60031cd --- /dev/null +++ b/test/data/pa/form/PA40.content.txt @@ -0,0 +1,765 @@ +OFFICIAL USE ONLY +Net Income or Loss from the Operation of a Business, Profession or Farm. +13 +00110028 + +13 +00110028 + + + + + + + + + + + + + + + + + + +(0 +6 +- +13) + +13 +00110028 + + + + + + +E +xtension. + + +A +mende +d +Return +. + + + +R +esidency + +Sta +tus. + + +Su +f +f +ix + +R + +N + +P + + + + + +MI + +OVERSEAS +MAIL + +- + +MI + + + + + +Su +f +f +ix + + + + + + + + + +/2013 + +to + + + + + + +/ +2013 + + +F +iling Status. + +S + +Single + +J + + + +M +F + + +D + + + + + + +/ +2013 + + +Spouse + + + + + + + + +/2013 + + + + + + +State + +ZIP Code + + + + + +Farmers. + + + + + +1a. + +. +. . . . . . . . . . + . . . . . . . . . . . . . . . . . . + + +1b. + + +. +. . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . + + +1c +. + +. . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . + + +2. + +. +. . . . . . . . . + +. . + . . . . . . . . . . . . . . + + +3. + +. +. + + +1a. + + + +1b. + + + +1c +. + + + +2. + + + +3. + + + + +4. + + +. +. . + + +5. + +. +. . . . . . . + + + +LOSS + +4. + + + +5. + + + + +6. + +. +. . . . . . . . . +. + + +LOSS + +6. + + + + +7. + +. +. . . . . . . . . . + . . . . . . . . . + + +8. + + +. +. . . . . . . . . . . . + +9. + +. . . . . . . . . . . . . . + +10. + +Other Deductions. + + +. . . . . . . . . . . . . . . . . . . . . . . . + +7. + + + +8. + + + +9. + + + +10. + + + +1 +1. + +. + . . . . . . . . . + . . . . . . . . . . . + +11. + + + + + +EC +FC +Your Social Security Number +Spouse’s Social Security Number (if filing jointly) +Last Name +Your First Name +Spouse’s First Name +First Line of Address +Second Line of Address +City or Post Office +Daytime Telephone Number +School Code +See the instructions. +Fill in only one oval. +Pennsylvania Resident +Nonresident (Not Supported) +Part-Year Resident from (Not Supported) +Married, Filing Jointly +Married, Filing Separately +Final Return. Indicate reason: +Deceased +Taxpayer +Date of death +Date of death +Fill in this oval if at least +two-thirds of your gross income is +from farming. +Name of school district where you lived +on 12/31/2013: +Your occupation +Gross Compensation. Do not include exempt income, such as combat zone pay and +qualifying retirement benefits. See the instructions. +Unreimbursed Employee Business Expenses. +Net Compensation. Subtract Line 1b from Line 1a. +Interest Income. Complete +PA Schedule A +if required. +Dividend and Capital Gains Distributions Income. Complete +PA Schedule B +if required. +Net Gain or Loss from the Sale, Exchange or Disposition of Property. +Net Income or Loss from Rents, Royalties, Patents or Copyrights. +Estate or Trust Income. Complete and submit +PA Schedule J. +Gambling and Lottery Winnings. Complete and submit +PA Schedule T. +Total PA Taxable Income. +Add only the positive income amounts from Lines 1c, 2, 3, +4, 5, 6, 7 and 8. DO NOT ADD any losses reported on Lines 4, 5 or 6. +Enter the appropriate code for the type of deduction. +See the instructions for additional information. +Adjusted PA Taxable Income. +Subtract Line 10 from Line 9. +Side 1 +OFFICIAL USE ONLY +See Foreign +Address Instructions +in PA-40 booklet. +PA-40A 2013 +Pennsylvania Income Tax Return +PA Department of Revenue, Harrisburg, PA 17129 +PLEASE PRINT IN BLACK INK. ENTER ONE LETTER OR NUMBER IN EACH BOX. FILL IN OVALS COMPLETELY. +Spouse’s occupation +CARE +FULLY PRINT YOUR SOCIAL SECURITY NUMBER(S) ABOVE +LOSS +Spouse’s Last Name - Only if different from Last Name above +See the instructions. (Not Supported) +(Not Supported) +----------------Page (0) Break---------------- +Credit +Your Signature +Firm FEIN +Tax Forgiveness Credit +1300210026 + +1300210026 + + + + + + + + + + + + + + + + + + +12. + +. +. . . . . . . . . . . . . . . . . . . . + + +13. + +. +. . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . + +14. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +15. +16. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +17. + + +. . . . + +18. + + +. . . . . . . . . . . . + + + + +12. + + + +13. + + + +14. + + + +15. + + + +16. + + + +17. + + + +18. + + + + + +19a. + + +Married + +Deceased + +Separated + +19b. + + +. + . . . . . . . . . . . + +. + +. + + + +21. + +. + +. +. . . . . . . . . . . . . +. . . + + +22. +and/or + . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +21. + + + +22. + + + +23. +. + . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +23. + + + + +24. + + +. + . . . . . . . . . . . . . + + +25. + + +. +. . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . . + + +26. + + +. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +27. + +24. + + + +25. + + + +26. + + + +. . . . . +27. + + + +28. + +. +. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + + +29. + +. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . + + +30. + +. +. . . . . . . . +REFUND + + +31. + + +. +. . . + + +32. + + + +. +. . . . . . . . . . . . . . . . . . . . . . . . . . . + +33. + +. . +. + +34. + + + + +. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +35. + + +. +. . . . . . . . . . . . . . . . . . . . . . . . + +36. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +28. + + + +29. + + + +30. + + + +31. + + + +32. + + + +33. + + + +34. + + + +35. + + + +36. + + + + + + + +Date + + + + + + + + + + +PA Schedule(s) G-R +with your +PA Schedule(s) G-S, G-L, +RK-1 +PA Schedule OC +TOTAL PAYMENTS and CREDITS. +Add Lines 13, 18, 21, 22 and 23. +USE TAX. +TAX DUE. +If the total of Line 12 and Line 25 is more than Line 24, +enter the difference here. +Penalties and Interest. See the instructions for additional +information. Fill in oval if including Form REV-1630/REV-1630A +TOTAL PAYMENT DUE. +See the instructions. +OVERPAYMENT. +If Line 24 is more than the total of Line 12, Line 25 and Line 27 +enter the difference here. +The total of Lines 30 through 36 must equal Line 29. +Refund +Amount of Line 29 you want to donate to the +PA Breast Cancer Coalition’s Refunds +For Breast and Cervical Cancer Research Fund. +Amount of Line 29 you want to donate to the +Wild Resource Conservation Fund. +Amount of Line 29 you want to donate to the +Assistance Program. +Amount of Line 29 you want to donate to the +Governor Robert P. Casey Memorial +Organ and Tissue Donation Awareness Trust Fund. +Amount of Line 29 you want to donate to the +Juvenile (Type 1) Diabetes Cure +Research Fund +PLEASE DO NOT CALL ABOUT YOUR REFUND UNTIL EIGHT WEEKS AFTER YOU FILE. +PA Tax Liability. Multiply Line 11 by 3.07 percent (0.0307). +Credit from your 2012 PA Income Tax return. +2013 Estimated Installment Payments. Fill in oval if including Form REV-459B. +2013 Extension Payment. +Nonresident Tax Withheld from your +PA Schedule(s) NRK-1. +(Nonresidents only) +Total Estimated Payments and Credits. +Add Lines 14, 15, 16 and 17. +Social Security Number (shown first) +Name(s) +Dependents, Part B, Line 2, +PA Schedule SP +Unmarried or +Tax Forgiveness Credit, submit PA Schedule SP +20. + +Total Eligibility Income from Part C, Line 11, +PA Schedule SP +from Part D, Line 16, +PA Schedule SP + Total Other Credits. Submit your +Add amount. See the instructions. +– Amount of Line 29 you want as a check mailed to you +– Amount of Line 29 you want as a credit to your 2014 estimated account. +Military Family Relief +(our) belief, they are true, correct, and complete. +Preparer’s PTIN +Preparer’s Name and Telephone Number +Spouse’s Signature, if filing jointly +See the instructions. +Total PA Tax Withheld. See the instructions. +Filing Status: +PA-40 2013 +1300210026 +(06-13) + Resident Credit. Submit your +SIGNATURE(S). Under penalties of perjury, I (we) declare that I (we) have examined this return, including all accompanying schedules and statements, and to the best of my +E-File Opt Out +Side 2 +(Not Supported) +. . . .. . +. . . .. . +. . . .. . +. . . .. . +----------------Page (1) Break---------------- diff --git a/test/data/pa/form/PA40.fields.json b/test/data/pa/form/PA40.fields.json new file mode 100755 index 00000000..76b43a80 --- /dev/null +++ b/test/data/pa/form/PA40.fields.json @@ -0,0 +1 @@ +[{"id":"AMRTN","type":"box","calc":true,"value":""},{"id":"RESN","type":"box","calc":true,"value":""},{"id":"RESP","type":"box","calc":true,"value":""},{"id":"EXTS","type":"box","calc":false,"value":""},{"id":"RESL","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FS5","type":"box","calc":false,"value":""},{"id":"TPDBX","type":"box","calc":false,"value":""},{"id":"SPDBX","type":"box","calc":false,"value":""},{"id":"FRM","type":"box","calc":true,"value":""},{"id":"CFINCL","type":"box","calc":false,"value":""},{"id":"CPGAINL","type":"box","calc":false,"value":""},{"id":"SCHEINCL","type":"box","calc":false,"value":""},{"id":"CZTEXT","type":"alpha","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"TPSUFFIX","type":"alpha","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"TPINIT","type":"mask","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SPINIT","type":"mask","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"SPSUFFIX","type":"alpha","calc":false,"value":""},{"id":"ROUTE","type":"alpha","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"DAYPHONE","type":"phone","calc":false,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"SCHCODE","type":"mask","calc":false,"value":""},{"id":"REASON","type":"alpha","calc":false,"value":""},{"id":"DOD","type":"date","calc":false,"value":""},{"id":"SDOD","type":"date","calc":false,"value":""},{"id":"DISTRICT","type":"alpha","calc":false,"value":""},{"id":"TPOCC","type":"alpha","calc":false,"value":""},{"id":"SPOCC","type":"alpha","calc":false,"value":""},{"id":"Add_W2S","type":"link","calc":false,"value":""},{"id":"GRCOMP","type":"number","calc":true,"value":""},{"id":"Add_SchUE","type":"link","calc":false,"value":""},{"id":"EMPLBUS","type":"number","calc":false,"value":""},{"id":"NETTXBL","type":"number","calc":true,"value":""},{"id":"Add_PA_SchA","type":"link","calc":false,"value":""},{"id":"INT","type":"number","calc":false,"value":""},{"id":"Add_PA_SchB","type":"link","calc":false,"value":""},{"id":"DIV","type":"number","calc":false,"value":""},{"id":"Add_PA_SchC","type":"link","calc":false,"value":""},{"id":"CFINC","type":"mask","calc":false,"value":""},{"id":"Add_PA_SchD","type":"link","calc":false,"value":""},{"id":"CAPGAIN","type":"mask","calc":false,"value":""},{"id":"Add_PA_SchE","type":"link","calc":false,"value":""},{"id":"SCHEINC","type":"mask","calc":false,"value":""},{"id":"Add_PA_SchJ","type":"link","calc":false,"value":""},{"id":"ESTTRST","type":"number","calc":true,"value":""},{"id":"Add_PA_SchT","type":"link","calc":false,"value":""},{"id":"GAMBLE","type":"number","calc":true,"value":""},{"id":"GROSSTI","type":"number","calc":true,"value":""},{"id":"Add_PA_SchO","type":"link","calc":false,"value":""},{"id":"CODE","type":"alpha","calc":true,"value":""},{"id":"MEDSAV","type":"number","calc":true,"value":""},{"id":"TXBLEINC","type":"number","calc":true,"value":""},{"id":"REV459BX","type":"box","calc":false,"value":""},{"id":"TAXFSRB","type":"radio","calc":false,"value":"TAXFD"},{"id":"TAXFSRB","type":"radio","calc":false,"value":"TAXFM"},{"id":"TAXFSRB","type":"radio","calc":false,"value":"TAXFUS"},{"id":"RV1630BX","type":"box","calc":false,"value":""},{"id":"EFBX","type":"box","calc":false,"value":""},{"id":"TPSSN3","type":"ssn","calc":true,"value":""},{"id":"TPLAST3","type":"alpha","calc":true,"value":""},{"id":"TAX","type":"number","calc":true,"value":""},{"id":"WH","type":"number","calc":true,"value":""},{"id":"OVRLSTYR","type":"number","calc":false,"value":""},{"id":"ESPYMT","type":"number","calc":false,"value":""},{"id":"EXTEN","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"PWH","type":"number","calc":true,"value":""},{"id":"TOTPYMT","type":"number","calc":true,"value":""},{"id":"Add_PA_SchSP","type":"link","calc":false,"value":""},{"id":"SPDEP","type":"alpha","calc":true,"value":""},{"id":"SPINC","type":"number","calc":true,"value":""},{"id":"FORGIVE","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"STTXCR","type":"number","calc":true,"value":""},{"id":"Add_PA_SchOC","type":"link","calc":false,"value":""},{"id":"TOTOTHER","type":"number","calc":true,"value":""},{"id":"ALLPYCR","type":"number","calc":true,"value":""},{"id":"USETAX","type":"number","calc":false,"value":""},{"id":"TAXDUE","type":"number","calc":true,"value":""},{"id":"PENCODE","type":"alpha","calc":false,"value":""},{"id":"PENALTY","type":"number","calc":false,"value":""},{"id":"TOTPAY","type":"number","calc":true,"value":""},{"id":"OVRPYMT","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":false,"value":""},{"id":"CRTOES","type":"number","calc":false,"value":""},{"id":"CANCERES","type":"number","calc":false,"value":""},{"id":"WILDRES","type":"number","calc":false,"value":""},{"id":"MILPROG","type":"number","calc":false,"value":""},{"id":"ORGDON","type":"number","calc":false,"value":""},{"id":"DIABETES","type":"number","calc":false,"value":""},{"id":"PRDATE","type":"date","calc":false,"value":""},{"id":"PRNAME","type":"alpha","calc":true,"value":"SELF-PREPARED"}] \ No newline at end of file diff --git a/test/data/pa/form/PA40.json b/test/data/pa/form/PA40.json new file mode 100755 index 00000000..81c5b87f --- /dev/null +++ b/test/data/pa/form/PA40.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 - PA Personal Income Tax Return - Posted 08-27-12","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":90.956,"y":46.875,"w":4.5,"l":4.941},{"oc":"#221f1f","x":9.316,"y":46.875,"w":4.5,"l":4.95},{"oc":"#221f1f","x":9.298,"y":3.622,"w":4.5,"l":4.959},{"oc":"#221f1f","x":11.61,"y":25.881,"w":1.5,"l":84.313},{"oc":"#191919","x":11.464,"y":43.469,"w":1.5,"l":84.442},{"oc":"#221f1f","x":11.61,"y":6.619,"w":1.5,"l":84.279},{"oc":"#191919","x":72.222,"y":20.8,"w":1.5,"l":23.667},{"oc":"#191919","x":72.222,"y":7.494,"w":1.5,"l":23.667},{"oc":"#191919","x":72.239,"y":8.394,"w":1.5,"l":23.65},{"oc":"#191919","x":72.239,"y":11.975,"w":1.5,"l":23.65},{"oc":"#191919","x":72.222,"y":22.869,"w":1.5,"l":23.667},{"oc":"#191919","x":72.222,"y":24.413,"w":1.5,"l":23.667},{"oc":"#221f1f","x":78.375,"y":16.281,"w":0.75,"l":17.523},{"oc":"#221f1f","x":81.933,"y":24.225,"w":0.75,"l":13.32},{"oc":"#191919","x":11.464,"y":42.125,"w":1.5,"l":84.442},{"oc":"#221f1f","x":87.759,"y":18.531,"w":0.75,"l":1.513},{"oc":"#221f1f","x":90.217,"y":18.531,"w":0.75,"l":1.513},{"oc":"#221f1f","x":11.61,"y":5.972,"w":1.5,"l":84.279}],"VLines":[{"oc":"#221f1f","x":95.648,"y":45.844,"w":4.5,"l":1.119},{"oc":"#221f1f","x":9.565,"y":45.844,"w":4.5,"l":1.119},{"oc":"#221f1f","x":13.999,"y":2.544,"w":4.5,"l":1.131},{"oc":"#191919","x":72.248,"y":6.628,"w":1.5,"l":19.266},{"oc":"#191919","x":84.107,"y":24.409,"w":1.5,"l":1.478}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#191919","x":11.645,"y":8.847,"w":51.666,"h":0.603,"clr":-1},{"oc":"#221f1f","x":78.375,"y":11.64,"w":1.506,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.623,"y":11.64,"w":1.526,"h":0.03,"clr":-1},{"oc":"#221f1f","x":88.048,"y":11.64,"w":1.361,"h":0.03,"clr":-1},{"oc":"#221f1f","x":90.09,"y":11.64,"w":1.382,"h":0.03,"clr":-1},{"oc":"#221f1f","x":87.532,"y":20.01,"w":1.691,"h":0.03,"clr":-1},{"oc":"#221f1f","x":90.234,"y":20.01,"w":1.691,"h":0.03,"clr":-1}],"Texts":[{"oc":"#003842","x":85.364,"y":5.032,"w":10.150000000000002,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":14.147,"y":32.887,"w":32.888000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20Income%20or%20Loss%20from%20the%20Operation%20of%20a%20Business%2C%20Profession%20or%20Farm.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.045,"y":45.983,"w":1.1380000000000001,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":22.5,"y":45.982,"w":4.5520000000000005,"clr":-1,"A":"left","R":[{"T":"00110028","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":45.975,"w":1.1380000000000001,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":74.867,"y":45.975,"w":4.5520000000000005,"clr":-1,"A":"left","R":[{"T":"00110028","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":38.979,"y":3.54,"w":0.879,"clr":-1,"A":"left","R":[{"T":"(0","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.195,"y":3.54,"w":0.551,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.959,"y":3.54,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.412,"y":3.54,"w":1.433,"clr":-1,"A":"left","R":[{"T":"13)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.394,"y":2.28,"w":1.1380000000000001,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":51.85,"y":2.28,"w":4.5520000000000005,"clr":-1,"A":"left","R":[{"T":"00110028","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":78.063,"y":6.45,"w":0.66,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.865,"y":6.45,"w":4.327,"clr":-1,"A":"left","R":[{"T":"xtension.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.063,"y":7.335000000000001,"w":0.604,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":78.783,"y":7.335000000000001,"w":2.703,"clr":-1,"A":"left","R":[{"T":"mende","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":81.98,"y":7.335000000000001,"w":0.729,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":82.867,"y":7.335000000000001,"w":2.636,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":86.083,"y":7.335000000000001,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":73.422,"y":8.205,"w":0.715,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":74.288,"y":8.205,"w":4.224,"clr":-1,"A":"left","R":[{"T":"esidency","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":79.795,"y":8.205,"w":1.5350000000000001,"clr":-1,"A":"left","R":[{"T":"Sta","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":81.672,"y":8.205,"w":1.75,"clr":-1,"A":"left","R":[{"T":"tus.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":63.358,"y":9.068,"w":1.233,"clr":-1,"A":"left","R":[{"T":"Su","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.05,"y":9.068,"w":0.278,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.401,"y":9.068,"w":0.28,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.793,"y":9.068,"w":0.726,"clr":-1,"A":"left","R":[{"T":"ix","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.043,"y":8.888,"w":1.004,"clr":-1,"A":"left","R":[{"T":"R%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.043,"y":9.577,"w":1.004,"clr":-1,"A":"left","R":[{"T":"N%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.043,"y":10.275,"w":0.9550000000000001,"clr":-1,"A":"left","R":[{"T":"P%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":54.258,"y":11.048,"w":1.087,"clr":-1,"A":"left","R":[{"T":"MI","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#003842","x":57.871,"y":11.94,"w":5.772,"clr":-1,"A":"left","R":[{"T":"OVERSEAS%20","S":52,"TS":[0,9,1,0]}]},{"oc":"#003842","x":57.871,"y":12.39,"w":2.372,"clr":-1,"A":"left","R":[{"T":"MAIL","S":52,"TS":[0,9,1,0]}]},{"oc":"#003842","x":60.656,"y":12.39,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":52,"TS":[0,9,1,0]}]},{"oc":"#221f1f","x":54.262,"y":13.065,"w":1.087,"clr":-1,"A":"left","R":[{"T":"MI","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":63.667,"y":15.03,"w":1.225,"clr":-1,"A":"left","R":[{"T":"Su","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":65.337,"y":15.03,"w":0.278,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":65.688,"y":15.03,"w":0.28,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.081,"y":15.029,"w":0.726,"clr":-1,"A":"left","R":[{"T":"ix","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":82.54,"y":10.845,"w":2.567,"clr":-1,"A":"left","R":[{"T":"%2F2013","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":86.108,"y":10.845,"w":1.1,"clr":-1,"A":"left","R":[{"T":"to%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":93.03,"y":10.845,"w":0.28600000000000003,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,10.227699999999999,0,0]}]},{"oc":"#221f1f","x":93.401,"y":10.845,"w":2.2560000000000002,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,10.227699999999999,0,0]}]},{"oc":"#221f1f","x":73.422,"y":11.745,"w":0.604,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":74.144,"y":11.745,"w":5.577,"clr":-1,"A":"left","R":[{"T":"iling%20Status.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.062,"y":12.435,"w":0.9550000000000001,"clr":-1,"A":"left","R":[{"T":"S%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":79.589,"y":12.435,"w":2.7550000000000003,"clr":-1,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.062,"y":13.132,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"J%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.063,"y":13.83,"w":1.111,"clr":-1,"A":"left","R":[{"T":"M%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.064,"y":14.527,"w":0.875,"clr":-1,"A":"left","R":[{"T":"F%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.063,"y":15.93,"w":1.004,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":91.799,"y":17.708,"w":0.29100000000000004,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":92.15,"y":17.708,"w":2.2760000000000002,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.043,"y":18.577,"w":3.6719999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":91.8,"y":19.215,"w":2.567,"clr":-1,"A":"left","R":[{"T":"%2F2013","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":49.704,"y":20.985,"w":2.365,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.056,"y":20.985,"w":4.192,"clr":-1,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.043,"y":20.633,"w":4.192,"clr":-1,"A":"left","R":[{"T":"Farmers.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":11.651,"y":25.665,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"1a.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.112,"y":26.235,"w":0.538,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.876,"y":26.235,"w":5.1110000000000015,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.165,"y":26.235,"w":9.684000000000003,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.651,"y":27.488,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"1b.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.083,"y":27.488,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.847,"y":27.488,"w":3.975999999999999,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.193,"y":27.488,"w":13.916000000000011,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.713,"y":28.83,"w":1.048,"clr":-1,"A":"left","R":[{"T":"1c","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":13.176,"y":28.83,"w":0.274,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":45.309,"y":28.83,"w":4.842000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":52.206,"y":28.83,"w":11.029000000000003,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":30.172,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":48.304,"y":30.172,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.068,"y":30.173,"w":4.8279999999999985,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.956,"y":30.173,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.07,"y":30.173,"w":7.951999999999996,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":31.522,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.58,"y":31.522,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":67.344,"y":31.522,"w":0.28400000000000003,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.803,"y":26.13,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"1a.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.803,"y":27.375,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"1b.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.844,"y":28.71,"w":1.048,"clr":-1,"A":"left","R":[{"T":"1c","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":70.307,"y":28.71,"w":0.274,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.586,"y":30.068,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.586,"y":31.560000000000002,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":32.887,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":60.84,"y":32.887,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":61.604,"y":32.888,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":34.237,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.069,"y":34.237,"w":0.538,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.832,"y":34.237,"w":3.497000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#003842","x":64.554,"y":33.975,"w":2.636,"clr":-1,"A":"left","R":[{"T":"LOSS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":69.586,"y":32.767,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.586,"y":34.267,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":35.61,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.797,"y":35.61,"w":0.538,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.56,"y":35.61,"w":4.842000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":62.428,"y":35.61,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#003842","x":64.554,"y":35.325,"w":2.636,"clr":-1,"A":"left","R":[{"T":"LOSS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":69.566,"y":35.595,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":36.953,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":52.842,"y":36.953,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":53.606,"y":36.952,"w":5.395999999999998,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":60.874,"y":36.952,"w":5.111999999999998,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":38.303,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":58.263,"y":38.303,"w":0.538,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.027,"y":38.303,"w":6.187000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":39.082,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.453,"y":39.652,"w":7.263000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.645,"y":40.455,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.162,"y":40.455,"w":8.685,"clr":-1,"A":"left","R":[{"T":"Other%20Deductions.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":43.864,"y":41.032,"w":12.643000000000004,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.583,"y":36.817,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.586,"y":38.168,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.586,"y":39.532,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.803,"y":41.025,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.754,"y":42.18,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.414,"y":42.18,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":52.096,"y":42.18,"w":0.28400000000000003,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":52.469,"y":42.18,"w":5.111999999999998,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.364,"y":42.18,"w":6.531999999999997,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.892,"y":42.15,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.422,"y":44.618,"w":1.399,"clr":-1,"A":"left","R":[{"T":"EC","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":63.028,"y":44.618,"w":1.323,"clr":-1,"A":"left","R":[{"T":"FC","S":-1,"TS":[0,9.7335,0,0]}]},{"oc":"#221f1f","x":11.546,"y":6.412,"w":13.115000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.767,"y":6.412,"w":21.520000000000007,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number%20(if%20filing%20jointly)%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":9.067,"w":5.0729999999999995,"clr":-1,"A":"left","R":[{"T":"Last%20Name%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":11.047,"w":7.557000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20First%20Name%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":13.034,"w":9.477999999999998,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20First%20Name%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":17.009,"w":9.337999999999997,"clr":-1,"A":"left","R":[{"T":"First%20Line%20of%20Address%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":18.997,"w":10.803,"clr":-1,"A":"left","R":[{"T":"Second%20Line%20of%20Address%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":20.984,"w":8.216000000000001,"clr":-1,"A":"left","R":[{"T":"City%20or%20Post%20Office%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":22.972,"w":12.456999999999999,"clr":-1,"A":"left","R":[{"T":"Daytime%20Telephone%20Number%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.077,"y":22.972,"w":5.680999999999999,"clr":-1,"A":"left","R":[{"T":"School%20Code","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":84.437,"y":6.45,"w":9.448,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":84.147,"y":8.205,"w":9.104999999999999,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20only%20one%20oval.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.569,"y":8.887,"w":10.361,"clr":-1,"A":"left","R":[{"T":"Pennsylvania%20Resident%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.569,"y":9.577,"w":12.675,"clr":-1,"A":"left","R":[{"T":"Nonresident%20(Not%20Supported)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.569,"y":10.275,"w":18.017000000000007,"clr":-1,"A":"left","R":[{"T":"Part-Year%20Resident%20from%20(Not%20Supported)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.611,"y":13.132,"w":9.604,"clr":-1,"A":"left","R":[{"T":"Married%2C%20Filing%20Jointly%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.631,"y":13.829,"w":11.534999999999998,"clr":-1,"A":"left","R":[{"T":"Married%2C%20Filing%20Separately%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.591,"y":14.527,"w":13.271,"clr":-1,"A":"left","R":[{"T":"Final%20Return.%20Indicate%20reason%3A%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":79.61,"y":15.93,"w":4.897,"clr":-1,"A":"left","R":[{"T":"Deceased%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.043,"y":17.07,"w":4.391000000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":78.214,"y":17.708,"w":6.5,"clr":-1,"A":"left","R":[{"T":"Date%20of%20death%20%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.387,"y":19.215,"w":6.226,"clr":-1,"A":"left","R":[{"T":"Date%20of%20death%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":83.798,"y":20.633,"w":10.387000000000002,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20this%20oval%20if%20at%20least%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.044,"y":21.195,"w":14.051000000000004,"clr":-1,"A":"left","R":[{"T":"two-thirds%20of%20your%20gross%20income%20is%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.042,"y":21.758,"w":5.902,"clr":-1,"A":"left","R":[{"T":"from%20farming.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":73.3,"y":22.65,"w":17.457,"clr":-1,"A":"left","R":[{"T":"Name%20of%20school%20district%20where%20you%20lived%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":73.302,"y":23.205,"w":6.889999999999999,"clr":-1,"A":"left","R":[{"T":"on%2012%2F31%2F2013%3A%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":73.3,"y":24.014,"w":7.504000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20occupation%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":14.081,"y":25.665,"w":37.205,"clr":-1,"A":"left","R":[{"T":"Gross%20Compensation.%20Do%20not%20include%20exempt%20income%2C%20such%20as%20combat%20zone%20pay%20and%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.126,"y":26.235,"w":22.735000000000003,"clr":-1,"A":"left","R":[{"T":"qualifying%20retirement%20benefits.%20See%20the%20instructions.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.167,"y":27.488,"w":20.398999999999994,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20Employee%20Business%20Expenses.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.126,"y":28.83,"w":22.217000000000002,"clr":-1,"A":"left","R":[{"T":"Net%20Compensation.%20Subtract%20Line%201b%20from%20Line%201a.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.146,"y":30.173,"w":11.901,"clr":-1,"A":"left","R":[{"T":"Interest%20Income.%20Complete%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.278,"y":30.173,"w":7.391,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20A%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":40.197,"y":30.173,"w":5.308000000000001,"clr":-1,"A":"left","R":[{"T":"if%20required.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.167,"y":31.523000000000003,"w":25.462999999999997,"clr":-1,"A":"left","R":[{"T":"Dividend%20and%20Capital%20Gains%20Distributions%20Income.%20Complete%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.289,"y":31.523000000000003,"w":7.391,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20B%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":59.278,"y":31.523000000000003,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"if%20required.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.146,"y":34.238,"w":30.515000000000004,"clr":-1,"A":"left","R":[{"T":"Net%20Gain%20or%20Loss%20from%20the%20Sale%2C%20Exchange%20or%20Disposition%20of%20Property.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.146,"y":35.61,"w":28.843,"clr":-1,"A":"left","R":[{"T":"Net%20Income%20or%20Loss%20from%20Rents%2C%20Royalties%2C%20Patents%20or%20Copyrights.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.146,"y":36.953,"w":20.377000000000002,"clr":-1,"A":"left","R":[{"T":"Estate%20or%20Trust%20Income.%20Complete%20and%20submit","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.451,"y":36.953,"w":7.781000000000001,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20J.%20%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.146,"y":38.303,"w":23.754,"clr":-1,"A":"left","R":[{"T":"Gambling%20and%20Lottery%20Winnings.%20Complete%20and%20submit","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":47.127,"y":38.303,"w":7.558,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20T.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.146,"y":39.083,"w":12.393000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20PA%20Taxable%20Income.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":31.396,"y":39.083,"w":25.669000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20only%20the%20positive%20income%20amounts%20from%20Lines%201c%2C%202%2C%203%2C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.121,"y":39.653,"w":30.795,"clr":-1,"A":"left","R":[{"T":"4%2C%205%2C%206%2C%207%20and%208.%20DO%20NOT%20ADD%20any%20losses%20reported%20on%20Lines%204%2C%205%20or%206.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":26.413,"y":40.456,"w":22.377000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20appropriate%20code%20for%20the%20type%20of%20deduction.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.12,"y":41.033,"w":20.91700000000001,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions%20for%20additional%20information.%20%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.188,"y":42.181,"w":14.169999999999998,"clr":-1,"A":"left","R":[{"T":"Adjusted%20PA%20Taxable%20Income.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":33.556,"y":42.181,"w":12.998000000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2010%20from%20Line%209.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.982,"y":43.636,"w":2.952,"clr":-1,"A":"left","R":[{"T":"Side%201","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":47.229,"y":44.587,"w":10.315000000000001,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY%20","S":52,"TS":[0,9,1,0]}]},{"oc":"#003842","x":57.871,"y":12.84,"w":4.39,"clr":-1,"A":"left","R":[{"T":"See%20Foreign","S":55,"TS":[1,9,0,0]}]},{"oc":"#003842","x":57.871,"y":13.29,"w":7.109000000000002,"clr":-1,"A":"left","R":[{"T":"Address%20Instructions","S":55,"TS":[1,9,0,0]}]},{"oc":"#003842","x":57.871,"y":13.74,"w":6.211,"clr":-1,"A":"left","R":[{"T":"in%20PA-40%20booklet.","S":55,"TS":[1,9,0,0]}]},{"oc":"#221f1f","x":20.169,"y":3.705,"w":6.504,"clr":-1,"A":"left","R":[{"T":"PA-40A%20%202013%20","S":-1,"TS":[0,18.119999999999997,0,0]}]},{"oc":"#221f1f","x":20.21,"y":4.38,"w":12.792000000000005,"clr":-1,"A":"left","R":[{"T":"Pennsylvania%20Income%20Tax%20Return","S":-1,"TS":[1,14.58,1,0]}]},{"oc":"#221f1f","x":20.21,"y":4.935,"w":18.368999999999996,"clr":-1,"A":"left","R":[{"T":"PA%20Department%20of%20Revenue%2C%20Harrisburg%2C%20PA%2017129","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":16.806,"y":5.7,"w":53.686999999999976,"clr":-1,"A":"left","R":[{"T":"PLEASE%20PRINT%20IN%20BLACK%20INK.%20ENTER%20ONE%20LETTER%20OR%20NUMBER%20IN%20EACH%20BOX.%20FILL%20IN%20OVALS%20COMPLETELY.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":84.262,"y":24.014,"w":9.227,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20occupation","S":-1,"TS":[0,9.96,0,0]}]},{"x":17.467,"y":8.542,"w":2.9010000000000002,"clr":1,"A":"left","R":[{"T":"CARE","S":-1,"TS":[0,9.9785,1,0]}]},{"x":20.951,"y":8.542,"w":30.296000000000024,"clr":1,"A":"left","R":[{"T":"FULLY%20PRINT%20%20YOUR%20%20SOCIAL%20SECURITY%20NUMBER(S)%20ABOVE","S":-1,"TS":[0,9.9785,1,0]}]},{"oc":"#003842","x":64.554,"y":32.625,"w":2.906,"clr":-1,"A":"left","R":[{"T":"LOSS%20","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":11.547,"y":15.022,"w":27.271000000000008,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Last%20Name%20-%20Only%20if%20different%20from%20Last%20Name%20above%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":86.725,"y":7.335000000000001,"w":14.306000000000001,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions.%20(Not%20Supported)","S":-1,"TS":[1,9.96,0,0]}]},{"x":84.902,"y":21.74,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CZTEXT","EN":0},"TI":84,"AM":0,"x":46.493,"y":5.145,"w":12.904,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":85,"AM":0,"x":12.356,"y":7.578,"w":23.253,"h":0.957,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":86,"AM":0,"x":39.432,"y":7.637,"w":23.026,"h":0.875,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":88,"AM":0,"x":12.026,"y":10.328,"w":49.213,"h":0.903,"TU":"Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPSUFFIX","EN":0},"TI":89,"AM":0,"x":63.998,"y":10.226,"w":7.088,"h":0.995,"TU":"Suffix"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":92,"AM":0,"x":12.227,"y":12.257,"w":39.222,"h":0.957,"TU":"Your Fist Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPINIT","EN":0},"TI":93,"AM":0,"x":54.098,"y":12.257,"w":2.463,"h":0.929,"TU":"Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":94,"AM":0,"x":12.227,"y":14.268,"w":39.251,"h":0.929,"TU":"Spouse's First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPINIT","EN":0},"TI":95,"AM":0,"x":54.174,"y":14.213,"w":2.236,"h":1.012,"TU":"Spouse's Middle Iinitial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":96,"AM":0,"x":12.075,"y":16.217,"w":49.18,"h":0.957,"TU":"Spouse's Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPSUFFIX","EN":0},"TI":97,"AM":0,"x":63.867,"y":16.182,"w":7.337,"h":1.04,"TU":"Spouse's suffix"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ROUTE","EN":0},"TI":98,"AM":0,"x":12.121,"y":18.096,"w":58.91,"h":0.901,"TU":"First Line of Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":99,"AM":0,"x":12.046,"y":20.023,"w":58.91,"h":0.907,"TU":"Second Line of Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":100,"AM":0,"x":12.151,"y":22.199,"w":34.236,"h":0.929,"TU":"City or Post Office"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":101,"AM":0,"x":49.369,"y":22.171,"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":102,"AM":0,"x":56.754,"y":22.171,"w":11.882,"h":0.957},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DAYPHONE","EN":0},"TI":103,"AM":0,"x":12.241,"y":24.154,"w":25.923,"h":0.967,"TU":"Daytime Telephone Number"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_schoolcode"}},"id":{"Id":"Look_Up","EN":0},"TI":104,"AM":0,"x":64.601,"y":23.106,"w":6.535,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCHCODE","EN":0},"TI":105,"AM":0,"x":56.754,"y":24.193,"w":12.09,"h":0.874,"TU":"School Code","MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"REASON","EN":0},"TI":112,"AM":0,"x":78.137,"y":15.455,"w":17.697,"h":0.833,"TU":"Final Return. Indicate reason:"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DOD","EN":0},"TI":115,"AM":0,"x":85.942,"y":17.919,"w":5.799,"h":0.833,"TU":"Taxpayer's Date of Death","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SDOD","EN":0},"TI":117,"AM":0,"x":86.159,"y":19.424,"w":5.763,"h":0.833,"TU":"Spouse's Date of Death","MV":"mm/dd"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DISTRICT","EN":0},"TI":119,"AM":0,"x":81.94,"y":23.604,"w":13.341,"h":0.833,"TU":"Name of School District"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPOCC","EN":0},"TI":120,"AM":0,"x":72.601,"y":24.984,"w":11.041,"h":0.839,"TU":"Your Occupation"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPOCC","EN":0},"TI":121,"AM":0,"x":84.631,"y":25.013,"w":11.31,"h":0.839,"TU":"Spouse's occupation"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"W2S"}},"id":{"Id":"Add_W2S","EN":0},"TI":122,"AM":0,"x":59.037,"y":26.413,"w":5.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GRCOMP","EN":0},"TI":123,"AM":1024,"x":72.821,"y":26.233,"w":22.333,"h":0.918,"TU":"1a. Gross Compensation."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SUE"}},"id":{"Id":"Add_SchUE","EN":0},"TI":124,"AM":0,"x":59.111,"y":27.355,"w":5.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPLBUS","EN":0},"TI":125,"AM":0,"x":72.971,"y":27.572,"w":22.257,"h":0.891,"TU":"1b. Enter Unreimbursed Employee Business Expenses "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETTXBL","EN":0},"TI":126,"AM":1024,"x":72.703,"y":28.914,"w":22.55,"h":0.891,"TU":"1c. Net Compensation. Subtract Line 1b from Line 1a"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SCHABT"}},"id":{"Id":"Add_PA_SchA","EN":0},"TI":127,"AM":0,"x":59.193,"y":29.89,"w":5.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT","EN":0},"TI":128,"AM":0,"x":72.907,"y":30.247,"w":22.247,"h":0.882,"TU":"2. Enter amount from Line 8 of PA Schedule A or total interest if under $2,500"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SCHABT"}},"id":{"Id":"Add_PA_SchB","EN":0},"TI":129,"AM":0,"x":59.261,"y":31.018,"w":5.177,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV","EN":0},"TI":130,"AM":0,"x":72.821,"y":31.595,"w":22.409,"h":0.9,"TU":"3. Enter amount from Line 5 of PA Schedule B or total dividends if under $2,500"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"PAC"}},"id":{"Id":"Add_PA_SchC","EN":0},"TI":131,"AM":0,"x":59.282,"y":32.818,"w":4.877,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CFINC","EN":0},"TI":133,"AM":0,"x":72.821,"y":32.96,"w":22.409,"h":0.88,"TU":"4. Enter total of business income amount from all PA Schedules C, PA Schedules C-F Reconciliation, PA Schedule F, PA RK-1s, PA NRK-1s, and/or K-1s","MV":"+"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SCHDT"}},"id":{"Id":"Add_PA_SchD","EN":0},"TI":134,"AM":0,"x":59.31,"y":34.124,"w":4.877,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CAPGAIN","EN":0},"TI":136,"AM":0,"x":72.746,"y":34.325,"w":22.56,"h":0.957,"TU":"5. Enter am5. Net Gain or Loss from the Sale, Exchange or Disposition of Property","MV":"+"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SE"}},"id":{"Id":"Add_PA_SchE","EN":0},"TI":137,"AM":0,"x":59.29,"y":35.56,"w":4.877,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCHEINC","EN":0},"TI":139,"AM":0,"x":72.895,"y":35.698,"w":22.409,"h":0.88,"TU":"6. Enter amount from Line 23 of PA Schedule E","MV":"+"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SCHJT"}},"id":{"Id":"Add_PA_SchJ","EN":0},"TI":140,"AM":0,"x":59.24,"y":36.735,"w":5.102,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTRST","EN":0},"TI":141,"AM":1024,"x":72.821,"y":36.948,"w":22.485,"h":0.957,"TU":"7. Enter total amount from column c of PA Schedule J"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SCHJT"}},"id":{"Id":"Add_PA_SchT","EN":0},"TI":142,"AM":0,"x":59.072,"y":37.953,"w":5.177,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GAMBLE","EN":0},"TI":143,"AM":1024,"x":72.755,"y":38.355,"w":22.55,"h":0.88,"TU":"8. Enter amount from Line 6 of PA Schedule T"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GROSSTI","EN":0},"TI":144,"AM":1024,"x":72.842,"y":39.741,"w":22.464,"h":0.891,"TU":"9. Add all positive amounts from Lines 1c through Line 8"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SCHO"}},"id":{"Id":"Add_PA_SchO","EN":0},"TI":145,"AM":0,"x":59.341,"y":41.026,"w":4.952,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CODE","EN":0},"TI":146,"AM":1024,"x":65.401,"y":41.064,"w":2.362,"h":0.855},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MEDSAV","EN":0},"TI":147,"AM":1024,"x":72.614,"y":41.02,"w":22.691,"h":0.918,"TU":"10. Enter amount from Line 8 of PA Schedule O"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TXBLEINC","EN":0},"TI":148,"AM":1024,"x":72.788,"y":42.427,"w":22.464,"h":0.901,"TU":"11. Subtract Line 10 from Line 9"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMRTN","EN":0},"TI":87,"AM":1024,"x":74.277,"y":7.563,"w":1.887,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RESN","EN":0},"TI":90,"AM":1024,"x":74.321,"y":9.812,"w":1.671,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RESP","EN":0},"TI":91,"AM":1024,"x":74.299,"y":10.574,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EXTS","EN":0},"TI":106,"AM":0,"x":74.193,"y":6.58,"w":1.971,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RESL","EN":0},"TI":107,"AM":0,"x":74.352,"y":9.058,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":108,"AM":0,"x":74.62,"y":12.616,"w":2.427,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":109,"AM":0,"x":74.62,"y":13.36,"w":2.427,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":110,"AM":0,"x":74.62,"y":14.057,"w":2.351,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":111,"AM":0,"x":74.606,"y":14.836,"w":2.351,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":113,"AM":0,"x":74.762,"y":16.046,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPDBX","EN":0},"TI":114,"AM":0,"x":74.818,"y":17.24,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDBX","EN":0},"TI":116,"AM":0,"x":74.925,"y":18.675,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FRM","EN":0},"TI":118,"AM":1024,"x":75.361,"y":20.865,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFINCL","EN":0},"TI":132,"AM":0,"x":65.403,"y":33.317,"w":1.844,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CPGAINL","EN":0},"TI":135,"AM":0,"x":65.403,"y":34.766,"w":1.927,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SCHEINCL","EN":0},"TI":138,"AM":0,"x":65.327,"y":36.084,"w":2.082,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":90.948,"y":46.813,"w":4.5,"l":4.941},{"oc":"#221f1f","x":9.29,"y":46.813,"w":4.5,"l":4.95},{"oc":"#191919","x":11.55,"y":19.319,"w":1.5,"l":84.373},{"oc":"#191919","x":11.507,"y":39.594,"w":1.5,"l":84.434},{"oc":"#191919","x":11,"y":27.356,"w":1.9500000000000002,"l":84.812},{"oc":"#191919","x":11,"y":28.709,"w":1.9500000000000002,"l":84.812},{"oc":"#221f1f","x":9.273,"y":3.612,"w":4.5,"l":4.967},{"oc":"#191919","x":11.55,"y":6.959,"w":1.5,"l":84.373},{"oc":"#191919","x":11.55,"y":8.316,"w":1.5,"l":84.373},{"oc":"#191919","x":11.49,"y":15.069,"w":1.5,"l":84.434}],"VLines":[{"oc":"#221f1f","x":95.64,"y":45.781,"w":4.5,"l":1.122},{"oc":"#221f1f","x":9.539,"y":45.781,"w":4.5,"l":1.119},{"oc":"#191919","x":95.812,"y":27.356,"w":1.9500000000000002,"l":1.353},{"oc":"#191919","x":11,"y":27.356,"w":1.9500000000000002,"l":1.353},{"oc":"#221f1f","x":13.991,"y":2.531,"w":4.5,"l":1.166}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#191919","x":11.426,"y":40.687,"w":30.463,"h":0.06,"clr":-1},{"oc":"#191919","x":42.054,"y":40.687,"w":14.066,"h":0.06,"clr":-1},{"oc":"#191919","x":56.286,"y":40.687,"w":15.923,"h":0.06,"clr":-1},{"oc":"#191919","x":72.373,"y":40.687,"w":23.389,"h":0.06,"clr":-1},{"oc":"#191919","x":41.889,"y":40.748,"w":0.165,"h":0.465,"clr":-1},{"oc":"#191919","x":56.121,"y":40.748,"w":0.165,"h":0.465,"clr":-1},{"oc":"#191919","x":72.208,"y":40.748,"w":0.165,"h":0.465,"clr":-1},{"oc":"#191919","x":41.889,"y":41.213,"w":0.165,"h":1.387,"clr":-1},{"oc":"#191919","x":56.121,"y":41.213,"w":0.165,"h":1.387,"clr":-1},{"oc":"#191919","x":72.208,"y":41.213,"w":0.165,"h":1.387,"clr":-1},{"oc":"#191919","x":11.426,"y":42.6,"w":30.463,"h":0.06,"clr":-1},{"oc":"#191919","x":42.054,"y":42.6,"w":14.066,"h":0.06,"clr":-1},{"oc":"#191919","x":56.286,"y":42.6,"w":15.923,"h":0.06,"clr":-1},{"oc":"#191919","x":72.373,"y":42.6,"w":23.389,"h":0.06,"clr":-1},{"oc":"#191919","x":41.889,"y":42.66,"w":0.165,"h":0.443,"clr":-1},{"oc":"#191919","x":72.208,"y":42.66,"w":0.165,"h":0.443,"clr":-1},{"oc":"#191919","x":11.426,"y":44.49,"w":30.463,"h":0.06,"clr":-1},{"oc":"#191919","x":41.889,"y":43.103,"w":0.165,"h":1.387,"clr":-1},{"oc":"#191919","x":42.054,"y":44.49,"w":30.154,"h":0.06,"clr":-1},{"oc":"#191919","x":72.208,"y":43.103,"w":0.165,"h":1.387,"clr":-1},{"oc":"#191919","x":72.373,"y":44.49,"w":23.389,"h":0.06,"clr":-1}],"Texts":[{"oc":"#221f1f","x":14.187,"y":31.658,"w":3.069,"clr":-1,"A":"left","R":[{"T":"Credit%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#003842","x":11.939,"y":40.373,"w":6.948,"clr":-1,"A":"left","R":[{"T":"Your%20Signature%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#003842","x":72.556,"y":42.278,"w":4.537,"clr":-1,"A":"left","R":[{"T":"Firm%20FEIN","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":14.188,"y":18.112,"w":11.059000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20Forgiveness%20Credit","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.004,"y":45.915,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1300210026","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":45.915,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1300210026","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":11.671,"y":5.715,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":51.665,"y":5.715,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":52.43,"y":5.715,"w":11.076000000000004,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":7.043,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.785,"y":7.043,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.549,"y":7.043,"w":5.679999999999998,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.201,"y":7.043,"w":12.105000000000004,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":8.445,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.587,"y":8.445,"w":18.460000000000008,"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":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":9.773,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":11.078,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.397,"y":11.078,"w":26.092999999999943,"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.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.651,"y":12.45,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.637,"y":12.45,"w":2.2720000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":13.77,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":58.59,"y":13.77,"w":6.531999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":5.618,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":6.96,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":8.385,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":9.742,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":11.063,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":12.473,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":13.815,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.908,"y":15.591999999999999,"w":1.9300000000000002,"clr":-1,"A":"left","R":[{"T":"19a.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":45.127,"y":15.593,"w":3.5839999999999996,"clr":-1,"A":"left","R":[{"T":"Married","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":57.852,"y":15.593,"w":4.6370000000000005,"clr":-1,"A":"left","R":[{"T":"Deceased","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":29.225,"y":16.043,"w":4.799,"clr":-1,"A":"left","R":[{"T":"Separated","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":68.207,"y":15.623000000000001,"w":1.9300000000000002,"clr":-1,"A":"left","R":[{"T":"19b.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":81.61,"y":15.690000000000001,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.52,0,0]}]},{"oc":"#221f1f","x":81.941,"y":15.690000000000001,"w":5.016000000000001,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[1,11.52,0,0]}]},{"oc":"#221f1f","x":45.848,"y":16.613,"w":0.448,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":47.045,"y":16.613,"w":0.684,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":18.112,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":53.436,"y":18.112,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.693,"y":18.112,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.458,"y":18.113,"w":7.383999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.397,"y":18.113,"w":1.3450000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":19.11,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.85,"y":19.628,"w":2.8110000000000004,"clr":-1,"A":"left","R":[{"T":"and%2For","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.336,"y":19.628,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.729,"y":19.628,"w":19.182000000000006,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.843,"y":19.628,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.308,0,0]}]},{"oc":"#221f1f","x":68.906,"y":17.977,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":19.522,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":20.843,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":44.961,"y":20.843,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":45.333,"y":20.843,"w":14.734000000000018,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.898,"y":20.843,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.735,"y":20.813,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":22.193,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.9,"y":22.193,"w":0.269,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.313,"y":22.192,"w":6.994000000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":23.528,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.544,"y":23.528,"w":0.538,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.307,"y":23.528,"w":2.959000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":47.886,"y":23.528,"w":14.484000000000012,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":24.51,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"26.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.401,"y":25.08,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":31.166,"y":25.08,"w":26.979999999999976,"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.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.674,"y":25.657,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"27.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.907,"y":22.102,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":23.445,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":24.675,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"26.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":53.413,"y":26.22,"w":2.690000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.841,"y":26.25,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"27.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":27.398,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.569,"y":27.398,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.331,"y":27.398,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":44.096,"y":27.397,"w":17.324000000000012,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.671,"y":28.65,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.259,"y":29.22,"w":0.28400000000000003,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.631,"y":29.22,"w":22.71999999999999,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":61.589,"y":29.22,"w":4.259999999999999,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.677,"y":30.465,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":53.317,"y":30.465,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":53.729,"y":30.465,"w":4.304000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.851,"y":30.465,"w":4.172,"clr":-1,"A":"left","R":[{"T":"REFUND","S":-1,"TS":[0,13.96,1,0]}]},{"oc":"#221f1f","x":11.671,"y":31.658,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"31.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.715,"y":31.658,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.479,"y":31.656999999999996,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.568,"y":32.85,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"32.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.241,"y":33.45,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":47.005,"y":33.45,"w":15.052000000000014,"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":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.569,"y":34.222,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"33.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.212,"y":34.222,"w":1.112,"clr":-1,"A":"left","R":[{"T":".%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.823,"y":34.223,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.308,0,0]}]},{"oc":"#221f1f","x":11.568,"y":35.078,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"34.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":28.894,"y":35.67,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":29.265,"y":35.67,"w":25.853999999999974,"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.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.823,"y":35.67,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.308,0,0]}]},{"oc":"#221f1f","x":11.568,"y":36.45,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"35.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":48.408,"y":37.05,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.173,"y":37.05,"w":13.34800000000001,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.572,"y":37.785,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"36.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.935,"y":38.377,"w":31.52399999999996,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.907,"y":27.368,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":29.063,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":30.39,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":31.642000000000003,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"31.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":32.985,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"32.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":34.365,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"33.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":35.692,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"34.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":37.11,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"35.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":68.906,"y":38.385,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"36.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#003842","x":42.217,"y":40.373,"w":2.104,"clr":-1,"A":"left","R":[{"T":"Date","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":31.844,"y":19.11,"w":9.724000000000002,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule(s)%20G-R%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":44.934,"y":19.11,"w":4.069,"clr":-1,"A":"left","R":[{"T":"with%20your%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.163,"y":19.628,"w":12.225000000000005,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule(s)%20G-S%2C%20G-L%2C%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":35.139,"y":19.628,"w":2.309,"clr":-1,"A":"left","R":[{"T":"RK-1","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":33.565,"y":20.843,"w":7.891,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20OC","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.187,"y":22.193,"w":16.168000000000003,"clr":-1,"A":"left","R":[{"T":"TOTAL%20PAYMENTS%20and%20CREDITS.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":36.278,"y":22.193,"w":14.600999999999999,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2013%2C%2018%2C%2021%2C%2022%20and%2023.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.187,"y":23.528,"w":4.701,"clr":-1,"A":"left","R":[{"T":"USE%E2%80%88TAX.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.187,"y":24.51,"w":4.945,"clr":-1,"A":"left","R":[{"T":"TAX%E2%80%88DUE.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.891,"y":24.51,"w":24.808,"clr":-1,"A":"left","R":[{"T":"If%20the%20total%20of%20Line%2012%20and%20Line%2025%20is%20more%20than%20Line%2024%2C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.169,"y":25.08,"w":11.343,"clr":-1,"A":"left","R":[{"T":"enter%20the%20difference%20here.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.169,"y":25.658,"w":25.051000000000002,"clr":-1,"A":"left","R":[{"T":"Penalties%20and%20Interest.%20See%20the%20instructions%20for%20additional%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.167,"y":26.22,"w":28.035,"clr":-1,"A":"left","R":[{"T":"information.%20Fill%20in%20oval%20if%20including%20Form%20REV-1630%2FREV-1630A%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.187,"y":27.398,"w":11.167,"clr":-1,"A":"left","R":[{"T":"TOTAL%20PAYMENT%20DUE.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":29.481,"y":27.398,"w":9.250000000000004,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.187,"y":28.65,"w":8.344,"clr":-1,"A":"left","R":[{"T":"OVERPAYMENT.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":25.162,"y":28.65,"w":27.424000000000003,"clr":-1,"A":"left","R":[{"T":"If%20Line%2024%20is%20more%20than%20the%20total%20of%20Line%2012%2C%20Line%2025%20and%20Line%2027%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.171,"y":29.22,"w":11.343,"clr":-1,"A":"left","R":[{"T":"enter%20the%20difference%20here.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.274,"y":29.79,"w":23.945000000000007,"clr":-1,"A":"left","R":[{"T":"The%20total%20of%20Lines%2030%20through%2036%20must%20equal%20Line%2029.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.193,"y":30.465,"w":3.6239999999999997,"clr":-1,"A":"left","R":[{"T":"Refund%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.063,"y":32.85,"w":19.452,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Line%2029%20you%20want%20to%20donate%20to%20the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.076,"y":32.85,"w":18.115000000000006,"clr":-1,"A":"left","R":[{"T":"PA%20Breast%20Cancer%20Coalition%E2%80%99s%20Refunds","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.065,"y":33.45,"w":22.99799999999999,"clr":-1,"A":"left","R":[{"T":"For%20Breast%20and%20Cervical%20Cancer%20Research%20Fund.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.063,"y":34.222,"w":19.452,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Line%2029%20you%20want%20to%20donate%20to%20the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.17,"y":34.222,"w":16.892000000000003,"clr":-1,"A":"left","R":[{"T":"Wild%20Resource%20Conservation%20Fund.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.061,"y":35.015,"w":19.726000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Line%2029%20%20you%20want%20to%20donate%20to%20the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.062,"y":35.67,"w":10.146,"clr":-1,"A":"left","R":[{"T":"Assistance%20Program.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.061,"y":36.45,"w":19.452,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Line%2029%20you%20want%20to%20donate%20to%20the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.96,"y":36.45,"w":17.149,"clr":-1,"A":"left","R":[{"T":"Governor%20Robert%20P.%20Casey%20Memorial","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.063,"y":37.05,"w":24.754,"clr":-1,"A":"left","R":[{"T":"Organ%20and%20Tissue%20Donation%20Awareness%20Trust%20Fund.%20%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.066,"y":37.785,"w":19.452,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Line%2029%20you%20want%20to%20donate%20to%20the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.985,"y":37.785,"w":14.991999999999999,"clr":-1,"A":"left","R":[{"T":"Juvenile%20(Type%201)%20Diabetes%20Cure","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.065,"y":38.377,"w":7.446000000000001,"clr":-1,"A":"left","R":[{"T":"Research%20Fund%20","S":-1,"TS":[0,11.04,1,0]}]},{"x":27.367,"y":44.288,"w":42.186,"clr":0,"A":"left","R":[{"T":"PLEASE%20DO%20NOT%20CALL%20ABOUT%20YOUR%20REFUND%20UNTIL%20EIGHT%20WEEKS%20AFTER%20YOU%20FILE.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":14.167,"y":5.715,"w":27.622000000000007,"clr":-1,"A":"left","R":[{"T":"PA%20Tax%20Liability.%20Multiply%20Line%2011%20by%203.07%20percent%20(0.0307).%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.188,"y":8.445,"w":20.328,"clr":-1,"A":"left","R":[{"T":"Credit%20from%20your%202012%20PA%E2%80%88Income%20Tax%20return.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.105,"y":9.773,"w":34.679,"clr":-1,"A":"left","R":[{"T":"2013%20Estimated%20Installment%20Payments.%20Fill%20in%20oval%20if%20including%20Form%20REV-459B.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.188,"y":11.078,"w":11.577000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20Extension%20Payment.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.167,"y":12.45,"w":15.869000000000005,"clr":-1,"A":"left","R":[{"T":"Nonresident%20Tax%20Withheld%20from%20your","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":36.316,"y":12.45,"w":11.224,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule(s)%20NRK-1.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.073,"y":12.953,"w":8.867,"clr":-1,"A":"left","R":[{"T":"(Nonresidents%20only)%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.188,"y":13.77,"w":18.505,"clr":-1,"A":"left","R":[{"T":"Total%20Estimated%20Payments%20and%20Credits.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":39.947,"y":13.77,"w":12.948999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2014%2C%2015%2C%2016%20and%2017.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.355,"y":3.248,"w":16.026000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":45.641,"y":4.575,"w":4.079000000000001,"clr":-1,"A":"left","R":[{"T":"Name(s)%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":72.577,"y":15.082,"w":9.940000000000001,"clr":-1,"A":"left","R":[{"T":"Dependents%2C%20Part%20B%2C%20Line%202%2C","S":-1,"TS":[1,11.52,0,0]}]},{"oc":"#221f1f","x":72.556,"y":15.690000000000001,"w":6.334999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20SP","S":-1,"TS":[1,11.52,1,0]}]},{"oc":"#221f1f","x":28.976,"y":15.591999999999999,"w":6.5440000000000005,"clr":-1,"A":"left","R":[{"T":"Unmarried%20or%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.692,"y":14.813,"w":22.89600000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20Forgiveness%20Credit%2C%20submit%20PA%20Schedule%20SP","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.671,"y":16.613,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.167,"y":16.613,"w":15.950999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20Eligibility%20Income%20from%20Part%20C%2C%20Line%2011%2C","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":36.466,"y":16.613,"w":6.334999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20SP","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":29.759,"y":18.113,"w":8.827000000000004,"clr":-1,"A":"left","R":[{"T":"from%20Part%20D%2C%20Line%2016%2C","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.405,"y":18.113,"w":7.725,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20SP","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":13.589,"y":20.843,"w":14.616000000000005,"clr":-1,"A":"left","R":[{"T":"%20Total%20Other%20Credits.%20Submit%20your","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.34,"y":23.528,"w":15.149999999999999,"clr":-1,"A":"left","R":[{"T":"Add%20amount.%20See%20the%20instructions.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":19.288,"y":30.465,"w":24.513000000000012,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20Amount%20of%20Line%2029%20you%20want%20as%20a%20check%20mailed%20to%20you","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":18.581,"y":31.656999999999996,"w":32.907000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20Amount%20of%20Line%2029%20you%20want%20as%20a%20credit%20to%20your%202014%20estimated%20account.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.534,"y":35.046,"w":10.08,"clr":-1,"A":"left","R":[{"T":"Military%20Family%20Relief","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.465,"y":39.803,"w":23.307999999999996,"clr":-1,"A":"left","R":[{"T":"(our)%20belief%2C%20they%20are%20true%2C%20correct%2C%20and%20complete.","S":52,"TS":[0,9,1,0]}]},{"oc":"#003842","x":72.618,"y":40.373,"w":7.510000000000002,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20PTIN%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#003842","x":42.32,"y":42.278,"w":18.766000000000002,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20Name%20and%20Telephone%20Number%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#003842","x":11.898,"y":42.278,"w":15.32500000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Signature%2C%20if%20filing%20jointly%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":56.489,"y":40.822,"w":9.184000000000003,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions.%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":14.278,"y":7.043,"w":19.564000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20PA%E2%80%88Tax%20Withheld.%20See%20the%20instructions.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.257,"y":15.593,"w":6.088,"clr":-1,"A":"left","R":[{"T":"Filing%20Status%3A%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.499,"y":2.438,"w":5.837,"clr":-1,"A":"left","R":[{"T":"PA-40%20%202013%20","S":-1,"TS":[0,15.8182,0,0]}]},{"oc":"#221f1f","x":49.374,"y":2.37,"w":5.981000000000001,"clr":-1,"A":"left","R":[{"T":"1300210026%20","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":35.761,"y":2.437,"w":3.4610000000000003,"clr":-1,"A":"left","R":[{"T":"(06-13)%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":13.933,"y":19.11,"w":13.338000000000005,"clr":-1,"A":"left","R":[{"T":"%20Resident%20Credit.%20Submit%20your%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.465,"y":39.36,"w":78.68399999999994,"clr":-1,"A":"left","R":[{"T":"SIGNATURE(S).%20Under%20penalties%20of%20perjury%2C%20I%20(we)%20declare%20that%20I%20(we)%20have%20examined%20this%20return%2C%20including%20all%20accompanying%20schedules%20and%20statements%2C%20and%20to%20the%20best%20of%20my","S":52,"TS":[0,9,1,0]}]},{"oc":"#221f1f","x":56.489,"y":40.373,"w":6.391000000000002,"clr":-1,"A":"left","R":[{"T":"E-File%20Opt%20Out","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":51.003,"y":44.895,"w":2.952,"clr":-1,"A":"left","R":[{"T":"Side%202","S":-1,"TS":[0,11.04,1,0]}]},{"x":26.295,"y":12.95,"w":56.912000000000006,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.637,"y":12.45,"w":3.1239999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20..%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.997,"y":12.45,"w":3.1239999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20..%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":51.747,"y":12.45,"w":3.1239999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20..%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.958,"y":12.45,"w":3.1239999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20..%20.%20","S":-1,"TS":[0,11.04,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN3","EN":0},"TI":149,"AM":1024,"x":20.993,"y":4.724,"w":23.3,"h":0.929,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLAST3","EN":0},"TI":150,"AM":1024,"x":51.324,"y":4.772,"w":44.042,"h":0.88,"TU":"Enter taxpayer name or taxpayer and spouse name"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX","EN":0},"TI":151,"AM":1024,"x":72.891,"y":5.834,"w":22.57,"h":0.94,"TU":"12. PA Tax Liability. Multiply Line 11 by 3.07%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WH","EN":0},"TI":152,"AM":1024,"x":72.891,"y":7.205,"w":22.494,"h":0.967,"TU":"13. Enter totals from Box 17 of W-2 or from Column H of Part B of PA Schedule W-2S"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVRLSTYR","EN":0},"TI":153,"AM":0,"x":72.966,"y":8.518,"w":22.494,"h":0.94,"TU":"14. Enter Credit from previous year's PA-40 Tax Return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESPYMT","EN":0},"TI":155,"AM":0,"x":72.891,"y":9.86,"w":22.418,"h":0.967,"TU":"15. Enter total amount of estimated payments made"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXTEN","EN":0},"TI":156,"AM":0,"x":73.043,"y":11.238,"w":22.494,"h":0.967,"TU":"16. Enter amount of PA extension payment made"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":157,"AM":0,"x":63.338,"y":12.398,"w":4.215,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PWH","EN":0},"TI":158,"AM":1024,"x":72.891,"y":12.577,"w":22.494,"h":0.94,"TU":"Not Supported"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPYMT","EN":0},"TI":159,"AM":1024,"x":72.816,"y":13.963,"w":22.57,"h":0.94,"TU":"18. Add Lines 14, 15, 16, 17"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"SSP"}},"id":{"Id":"Add_PA_SchSP","EN":0},"TI":160,"AM":0,"x":43.964,"y":14.942,"w":6.824,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPDEP","EN":0},"TI":164,"AM":1024,"x":90.88,"y":15.84,"w":4.579,"h":0.908},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPINC","EN":0},"TI":165,"AM":1024,"x":48.983,"y":16.825,"w":22.565,"h":0.973,"TU":"Enter total eligibility income from PA Schedule SP, Part C, Line 11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORGIVE","EN":0},"TI":166,"AM":1024,"x":72.819,"y":18.181,"w":22.645,"h":0.94,"TU":"21. Tax Forgiveness Credit from Part D, line 16, PA Schedule SP"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":167,"AM":0,"x":63.252,"y":19.6,"w":4.214,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STTXCR","EN":0},"TI":168,"AM":1024,"x":72.726,"y":19.621,"w":22.645,"h":0.885,"TU":"Not Supported"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"PASCHOC"}},"id":{"Id":"Add_PA_SchOC","EN":0},"TI":169,"AM":0,"x":62.674,"y":20.62,"w":4.973,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTOTHER","EN":0},"TI":170,"AM":1024,"x":72.728,"y":20.976,"w":22.494,"h":0.912,"TU":"23. Enter your total other credits from PA Schedule OC Line 15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLPYCR","EN":0},"TI":171,"AM":1024,"x":72.878,"y":22.213,"w":22.57,"h":0.94,"TU":"24. Add Lines 13, 18, 21, 22, and 23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"USETAX","EN":0},"TI":172,"AM":0,"x":72.878,"y":23.489,"w":22.494,"h":1.023,"TU":"25. Add amount. See the instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":173,"AM":1024,"x":72.873,"y":24.961,"w":22.342,"h":0.912,"TU":"26. If the total of Line 12 and Line 25 is more than Line 24, enter the difference here"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PENCODE","EN":0},"TI":174,"AM":0,"x":57.498,"y":26.475,"w":2.891,"h":0.833,"PL":{"V":[" "," L - If Late Payment Penalty and Interest","E - If only the Estimated Underpayment Penalty","B - If both Late Payment Penalty and Interest and Estimated Underpayment Penalty","X - Indicates there is no Estimated Underpayment Penalty due to Exception 2 or the Special Exception rules as indicated on the completed and included REV- 1630 or the exception for farmaers on the completed and included REV- 1630A."],"D":["no entery","L","E","B","X"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY","EN":0},"TI":176,"AM":0,"x":72.878,"y":26.314,"w":22.266,"h":0.885,"TU":"27. Enter total amounts of penalties and interest"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTPAY","EN":0},"TI":177,"AM":1024,"x":72.782,"y":27.651,"w":22.418,"h":0.929,"TU":"28. Total Payment Due. See the instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVRPYMT","EN":0},"TI":178,"AM":1024,"x":72.936,"y":29.074,"w":22.494,"h":0.885,"TU":"29. If Line 24 is more than the total of Line 12, Line 25 and Line 27 enter the difference here"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":179,"AM":0,"x":72.861,"y":30.373,"w":22.494,"h":0.885,"TU":"30. Enter amount of Line 29 to be refunded"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRTOES","EN":0},"TI":180,"AM":0,"x":72.785,"y":31.703,"w":22.57,"h":0.912,"TU":"31. Enter amount of line 29 to be applied to next year’s estimated payments"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CANCERES","EN":0},"TI":181,"AM":0,"x":72.824,"y":33.029,"w":22.645,"h":0.94,"TU":"36. Enter amount of Line 29 to be given as a Donation to Breast and Cervical Cancer Research Fund"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WILDRES","EN":0},"TI":182,"AM":0,"x":72.861,"y":34.422,"w":22.494,"h":0.94,"TU":"33. Enter amount of Line 29 to be given as a Donation to Military Family Relief Assistance Program"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MILPROG","EN":0},"TI":183,"AM":0,"x":72.861,"y":35.729,"w":22.418,"h":0.912,"TU":"34. Enter amount of Line 29 to be given as a Donation to Gov. Robert P. Casey Memorial Organ & Tissue Donation Awareness Trust Fund"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ORGDON","EN":0},"TI":184,"AM":0,"x":72.785,"y":37.095,"w":22.57,"h":0.912,"TU":"35. Enter amount of Line 29 to be given as a Donation to Juvenile (Type 1) Diabetes Cure Research Fund"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIABETES","EN":0},"TI":185,"AM":0,"x":72.785,"y":38.391,"w":22.494,"h":0.967,"TU":"36. Enter amount of Line 29 to be given as a Donation to Breast and Cervical Cancer Research Fund"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PRDATE","EN":0},"TI":186,"AM":0,"x":42.528,"y":41.35,"w":12.959,"h":0.913,"TU":"Enter date in mm/dd/yy format","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRNAME","EN":0},"TI":188,"AM":1024,"x":42.576,"y":43.53,"w":16.952,"h":0.833,"TU":"Enter Preparer’s name and telephone number","V":"SELF-PREPARED"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REV459BX","EN":0},"TI":154,"AM":0,"x":65.956,"y":10.067,"w":2.451,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXFD","EN":0},"TI":161,"AM":0,"x":41.757,"y":15.79,"w":2.184,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXFM","EN":0},"TI":162,"AM":0,"x":54.138,"y":15.77,"w":2.26,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXFUS","EN":0},"TI":163,"AM":0,"x":25.254,"y":15.947,"w":2.032,"h":0.833,"checked":false}],"id":{"Id":"TAXFSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RV1630BX","EN":0},"TI":175,"AM":0,"x":65.873,"y":26.526,"w":2.467,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EFBX","EN":0},"TI":187,"AM":0,"x":66.502,"y":40.778,"w":2.235,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/PAC.content.txt b/test/data/pa/form/PAC.content.txt new file mode 100755 index 00000000..de863397 --- /dev/null +++ b/test/data/pa/form/PAC.content.txt @@ -0,0 +1,1755 @@ + + + +1203110059 + + + + + + + + + + + + +(FI) + + + + +20 + + + + + + + + + + + + + + + + + + +Y +es + +No + + + + + + + + +▼ + +▼ + +▼ + +▼ + +▼ + +▼ + + + + + + + + + + + +A. + + + + + + +B. + + + +C. + + + + +D + + +Cit +y + +State + + + + + +E. + + + + +(1 +) + +Cost + +(2) + + + +(3 +) + + + +F. + + + + +(1 +) + +Cash + +(2) + +Accrual + +(3) + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +G. + + + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + + + + + + +H. + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. +I. + + + + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +S +ales +T +ax + +License + +Number + +(if + +applicable) + + + + +F +ed +e +r +al + +NAICS + +Code + + + + + +1. + +a. + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +b. + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +1 +a. + + + +1b. + + +c. + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +2. + + + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +3. + + + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +4. + + + + + + + + +5. + + + + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +. + +1 +c. + + +2. + + +3. + + +4. + + +5. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + . . . . . . +credits claimed (for example, Employment +Incentive Payments Credit) on your +PA-40. +PART II Deductions +Social Securit\ numEer +Owner¶s +Product or serYice +PA Schedule C +Profit or Loss From +Business or Profession +(SOLE PROPRIETORSHIP ) +PA- 40C +(09–12) +PA DEPARTMENT OF REVENUE +Include with Form +PA-40, PA-20S/PA-65 PA-41 +or +OFFICIAL USE ONLY +Name of owner shown as on PA tax return: +Main business activity +Business name +Business address (number and street) +and ZIP Code +Federal Employer Identification Number +Method(s) used to value closing inventory. Fill in the appropriate oval: +Lower of cost or market +Other (if other, attach explanation) +Accounting method. Fill in the appropriate oval: +Other (specify) +Was there any change in determining quantities, costs, or valuations +between opening and closing inventory? If “Yes,” submit explanation. +Did you deduct expenses for an office in your home?. +If the business is out of existence, fill in this oval. +Gross receipts or sales +Returns and allowances +Balance (subtract Line 1b from Line 1a) +Cost of goods sold and/or operations (Schedule C-1, Line 8) +Gross profit (subtract Line 2 from Line 1c) +Other Income (submit statement). Include interest from accounts receivable, business checking accounts +and other business accounts. Also include sales of operational assets. See Instructions Booklet. +Total income (add Lines 3 and 4) +PART I Income + . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +6 +. +Advertising +. . . . . . . . . . . . . . . . . . . . . . . . . . . . +7. +Amortization +. . . . . . . . . . . . . . . . . . . . . . . . . . . +8. +Bad debts from sales or services +. . . . . . . . . . . . +9. +Bank charges +. +. . . . . . . . . . . . . . . . . . . . . . . . . +10. +Car and truck expenses +. . . . . . . . . . . . . . . . . . . +11. +Commissions +. . . . . . . . . . . . . . . . . . . . . . . . . . +12. +. . . . +13. +a. +Regular depreciation +. . . . . . . . . . . . . . . . . +13. +b. +Section 179 expense +. . . . . . . . . . . . . . . . +14. +Dues and publications +. . . . . . . . . . . . . . . . . . . . +15. +16. +. . . . . . . . +17. +Insurance +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . +18. +Interest on business indebtedness +. . . . . . . . . . . +19. +Laundry and cleaning +. . . . . . . . . . . . . . . . . . . . +20. +. . . . . . . . . . . . . +21. +Management fees +. . . . . . . . . . . . . . . . . . . . . . . +22. +Office supplies +. . . . . . . . . . . . . . . . . . . . . . . . . +23. +. . +24. +Postage +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +25. +Rent on business property +. . . . . . . . . . . . . . . . . +26. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +28. +S +chedule +C-1 +2 +9. +Taxes +30. +Telephone +31. +Travel and entertainment +32. +Utilities +. . . . . . +33. +Wages +34. +. . . . . . . . . . . . . . . . . . . . . +35. +. . . . . . +36. +t +3 +7. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +37. +38. +. . . . . . . . . +Loss +38. +Reduce expenses by the total business +Total expenses. (add Lines 6 through 34) +Supplies (not included on +Other expenses (specify): +Cost depletion but not percentage depletion +Employee benefit programs other than on Line 23 +Freight (not includedon Schedule C-1) +Legal and professional services +Pensionand profit-sharing plans for employees +Repair +f +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +g. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +h. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +i. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +j. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +k. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +a. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +b +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +c. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +d. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +e. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +27. Subcontractor fees +SIDE 1 +1203110059 +1203110059 +34. Total other expenses + + +Total adjusted expenses (subtract Line 36 from Line 35). +Net profit or loss (subtract Line 37 from Line 5). If a net loss, fill in the oval. Enter the result on your PA tax return. +----------------Page (0) Break---------------- +1203210057 + + + + + + +1203210057 + +1203210057 + + + +1 +. + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . + + +2 +. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + + +3 +. + + + + +. . . . . . . . . . . . . . . . . . + +1. + + +2. + + +3. + + + + + +(a) + + + + +(b) + + + + +(c) + + + + +(d) + + +depreciation + +(e) + +Life + + + +(f) + + + + +(g) + + +4 +. + + + + . . . . . . . . . . . . . . +. + +. . . +. . . . + + +. . . . + + + . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +5 +. + + + + +. . . . . . + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . + +5. + + + +6. + + +7. + + + +▼ + +▼ + + +▼ + +▼ + +▼ + + + +(FI) + + + + + + + + + + + + + + + + + + + +1 +. + + + + + +. . . . . . . . . . . . + +1 +. + + +2 +. + +a. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +b +. + + +. +. . . . . . . . . . . . . . . . . + +2 +a. + + + + +2b. + + +c +. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +3 +. + + . . . . . . . . . . . . . . . . . . . . . . . . . . . + +4 +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. +. . . . . . . . . . . . . . . . + +5 +. + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. +. . . . . . . . . . . . . . + +6 +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. +. . . . . . . . . . . . . . . + +7 +. + + +. . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. +. . . . . . . . . . . . . . . . + +8 +. + + +. . . . . . . . . + +2 +c. + +3 +. + +4 +. + +5 +. + +6 +. + +7 +. + +8 +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +6 +. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. +. . + +7 +. + + + + + +. . . . . . . . . . . . . . . . . . . + +PA Schedule C +PA-40C +(09–12) +PA DEPARTMENT OF REVENUE +Name of owner as shown on PA tax return: +Social Security Number +OFFICIAL USE ONLY +SCHEDULE C-1 - Cost of Goods Sold and/or Operations +Inventory at beginning of year (if different from last year’s closing inventory, include explanation) +Cost of items with drawn for personal use +Cost of labor (do not include salary paid to yourself or subcontractor fees) +Balance (subtract Line 2b from Line 2a) +Materials and supplies +Other costs (include schedule) +Add Lines 1, 2c, 3, 4 and 5 +Inventory at end of year +Cost of goods sold and/or operations (subtract Line 7 from Line 6) Enter here and on Part I, Line 2 +SCHEDULEC- 2 - Depreciation +PA PIT law does not permit the bonus depreciation elections added to the Internal Revenue Code (IRC) in 2002, 2003, 2008 and 2009. PA PIT +law limits IRC Section 179 current expensing to the expensing allowed at the time you placed the asset into service or in effect under +the IRC of 1986 as amended Jan.1, 1997. For each asset, you must also report straight-line depreciation, unless not using an optional +accelerated depreciation method. You need straight-line depreciation to take advantage of Pennsylvania’s Tax Benefit Rule when you sell +the asset. See the PA PIT Guide for the Tax Benefit Rule. +Total Section 179 depreciation (donotin clude in items below) +Less: Section 179 depreciation included in Schedule C-1 +Balance (subtract Line 2 from Line 1). Enter here and on Part II, Line 13b +Description of property +Date acquired +Cost or other basis +Depreciation allowed or +allowable in prior years +Method of calculating +or rate +Depreciation for this year +Other depreciation: +Furniture and fixtures +Transportation equipment +Machinery and other equipment +Other (specify) +Totals (add all Line 4 amounts) +Any depreciation included in Schedule C-1 +Balance (subtract Line 6 from Line 5). Enter here and on Part II, Line 13a. +SIDE 2 +Purchases +Buildings +----------------Page (1) Break---------------- diff --git a/test/data/pa/form/PAC.fields.json b/test/data/pa/form/PAC.fields.json new file mode 100755 index 00000000..4ba0d074 --- /dev/null +++ b/test/data/pa/form/PAC.fields.json @@ -0,0 +1 @@ +[{"id":"INVRB","type":"radio","calc":false,"value":"INVC"},{"id":"INVRB","type":"radio","calc":false,"value":"INVO"},{"id":"INVRB","type":"radio","calc":false,"value":"INVL"},{"id":"ACCTRB","type":"radio","calc":false,"value":"COST"},{"id":"ACCTRB","type":"radio","calc":false,"value":"LOWCOST"},{"id":"ACCTRB","type":"radio","calc":false,"value":"OTHER"},{"id":"CHNGRB","type":"radio","calc":false,"value":"CHNGY"},{"id":"CHNGRB","type":"radio","calc":false,"value":"CHNGN"},{"id":"HOMERB","type":"radio","calc":false,"value":"HOMEY"},{"id":"HOMERB","type":"radio","calc":false,"value":"HOMEN"},{"id":"BIZBX","type":"box","calc":false,"value":""},{"id":"L36LOSS","type":"box","calc":true,"value":""},{"id":"YR","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"A1","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"BUSNAME","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"C","type":"mask","calc":false,"value":""},{"id":"LOFCORM","type":"alpha","calc":true,"value":""},{"id":"TAXLICNO","type":"mask","calc":false,"value":""},{"id":"NAICS","type":"mask","calc":false,"value":""},{"id":"L1A","type":"number","calc":false,"value":""},{"id":"A2","type":"alpha","calc":false,"value":""},{"id":"L1B","type":"number","calc":false,"value":""},{"id":"L1C","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"EXP","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":false,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"MANFEES","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"SUBFEES","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L32T_1_","type":"alpha","calc":false,"value":""},{"id":"L32_1_","type":"number","calc":false,"value":""},{"id":"L32T_2_","type":"alpha","calc":false,"value":""},{"id":"L32_2_","type":"number","calc":false,"value":""},{"id":"L32T_3_","type":"alpha","calc":false,"value":""},{"id":"L32_3_","type":"number","calc":false,"value":""},{"id":"L32T_4_","type":"alpha","calc":false,"value":""},{"id":"L32_4_","type":"number","calc":false,"value":""},{"id":"L32T_5_","type":"alpha","calc":false,"value":""},{"id":"L32_5_","type":"number","calc":false,"value":""},{"id":"L32T_6_","type":"alpha","calc":false,"value":""},{"id":"L32_6_","type":"number","calc":false,"value":""},{"id":"L32T_7_","type":"alpha","calc":false,"value":""},{"id":"L32_7_","type":"number","calc":false,"value":""},{"id":"L32T_8_","type":"alpha","calc":false,"value":""},{"id":"L32_8_","type":"number","calc":false,"value":""},{"id":"L32T_9_","type":"alpha","calc":false,"value":""},{"id":"L32_9_","type":"number","calc":false,"value":""},{"id":"L32T_10_","type":"alpha","calc":false,"value":""},{"id":"L32_10_","type":"number","calc":false,"value":""},{"id":"L32T_11_","type":"alpha","calc":false,"value":""},{"id":"L32_11_","type":"number","calc":false,"value":""},{"id":"L32TOT","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":true,"value":""},{"id":"L34","type":"number","calc":false,"value":""},{"id":"L35","type":"number","calc":true,"value":""},{"id":"L36","type":"number","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"alpha","calc":true,"value":""},{"id":"C1","type":"number","calc":false,"value":""},{"id":"C2A","type":"number","calc":false,"value":""},{"id":"C2B","type":"number","calc":false,"value":""},{"id":"C2C","type":"number","calc":true,"value":""},{"id":"C3","type":"number","calc":false,"value":""},{"id":"C4","type":"number","calc":false,"value":""},{"id":"C5","type":"number","calc":false,"value":""},{"id":"C6","type":"number","calc":true,"value":""},{"id":"C7","type":"number","calc":false,"value":""},{"id":"C8","type":"number","calc":true,"value":""},{"id":"L1G","type":"number","calc":false,"value":""},{"id":"L1GLESS","type":"number","calc":false,"value":""},{"id":"L1GBAL","type":"number","calc":true,"value":""},{"id":"L2AB","type":"date","calc":false,"value":""},{"id":"L2AC","type":"number","calc":false,"value":""},{"id":"L2AD","type":"number","calc":false,"value":""},{"id":"L2AE","type":"alpha","calc":false,"value":""},{"id":"L2AF","type":"alpha","calc":false,"value":""},{"id":"L2AG","type":"number","calc":false,"value":""},{"id":"L2BB","type":"date","calc":false,"value":""},{"id":"L2BC","type":"number","calc":false,"value":""},{"id":"L2BD","type":"number","calc":false,"value":""},{"id":"L2BE","type":"alpha","calc":false,"value":""},{"id":"L2BF","type":"alpha","calc":false,"value":""},{"id":"L2BG","type":"number","calc":false,"value":""},{"id":"L2CB","type":"date","calc":false,"value":""},{"id":"L2CC","type":"number","calc":false,"value":""},{"id":"L2CD","type":"number","calc":false,"value":""},{"id":"L2CE","type":"alpha","calc":false,"value":""},{"id":"L2CF","type":"alpha","calc":false,"value":""},{"id":"L2CG","type":"number","calc":false,"value":""},{"id":"L2DB","type":"date","calc":false,"value":""},{"id":"L2DC","type":"number","calc":false,"value":""},{"id":"L2DD","type":"number","calc":false,"value":""},{"id":"L2DE","type":"alpha","calc":false,"value":""},{"id":"L2DF","type":"alpha","calc":false,"value":""},{"id":"L2DG","type":"number","calc":false,"value":""},{"id":"L2FA_1_","type":"alpha","calc":false,"value":""},{"id":"L2FB_1_","type":"date","calc":false,"value":""},{"id":"L2FC_1_","type":"number","calc":false,"value":""},{"id":"L2FD_1_","type":"number","calc":false,"value":""},{"id":"L2FE_1_","type":"alpha","calc":false,"value":""},{"id":"L2FF_1_","type":"alpha","calc":false,"value":""},{"id":"L2FG_1_","type":"number","calc":false,"value":""},{"id":"L2FA_2_","type":"alpha","calc":false,"value":""},{"id":"L2FB_2_","type":"date","calc":false,"value":""},{"id":"L2FC_2_","type":"number","calc":false,"value":""},{"id":"L2FD_2_","type":"number","calc":false,"value":""},{"id":"L2FE_2_","type":"alpha","calc":false,"value":""},{"id":"L2FF_2_","type":"alpha","calc":false,"value":""},{"id":"L2FG_2_","type":"number","calc":false,"value":""},{"id":"L2FA_3_","type":"alpha","calc":false,"value":""},{"id":"L2FB_3_","type":"date","calc":false,"value":""},{"id":"L2FC_3_","type":"number","calc":false,"value":""},{"id":"L2FD_3_","type":"number","calc":false,"value":""},{"id":"L2FE_3_","type":"alpha","calc":false,"value":""},{"id":"L2FF_3_","type":"alpha","calc":false,"value":""},{"id":"L2FG_3_","type":"number","calc":false,"value":""},{"id":"L2FA_4_","type":"alpha","calc":false,"value":""},{"id":"L2FB_4_","type":"date","calc":false,"value":""},{"id":"L2FC_4_","type":"number","calc":false,"value":""},{"id":"L2FD_4_","type":"number","calc":false,"value":""},{"id":"L2FE_4_","type":"alpha","calc":false,"value":""},{"id":"L2FF_4_","type":"alpha","calc":false,"value":""},{"id":"L2FG_4_","type":"number","calc":false,"value":""},{"id":"L2FA_5_","type":"alpha","calc":false,"value":""},{"id":"L2FB_5_","type":"date","calc":false,"value":""},{"id":"L2FC_5_","type":"number","calc":false,"value":""},{"id":"L2FD_5_","type":"number","calc":false,"value":""},{"id":"L2FE_5_","type":"alpha","calc":false,"value":""},{"id":"L2FF_5_","type":"alpha","calc":false,"value":""},{"id":"L2FG_5_","type":"number","calc":false,"value":""},{"id":"L2FA_6_","type":"alpha","calc":false,"value":""},{"id":"L2FB_6_","type":"date","calc":false,"value":""},{"id":"L2FC_6_","type":"number","calc":false,"value":""},{"id":"L2FD_6_","type":"number","calc":false,"value":""},{"id":"L2FE_6_","type":"alpha","calc":false,"value":""},{"id":"L2FF_6_","type":"alpha","calc":false,"value":""},{"id":"L2FG_6_","type":"number","calc":false,"value":""},{"id":"L2FA_7_","type":"alpha","calc":false,"value":""},{"id":"L2FB_7_","type":"date","calc":false,"value":""},{"id":"L2FC_7_","type":"number","calc":false,"value":""},{"id":"L2FD_7_","type":"number","calc":false,"value":""},{"id":"L2FE_7_","type":"alpha","calc":false,"value":""},{"id":"L2FF_7_","type":"alpha","calc":false,"value":""},{"id":"L2FG_7_","type":"number","calc":false,"value":""},{"id":"L2FA_8_","type":"alpha","calc":false,"value":""},{"id":"L2FB_8_","type":"date","calc":false,"value":""},{"id":"L2FC_8_","type":"number","calc":false,"value":""},{"id":"L2FD_8_","type":"number","calc":false,"value":""},{"id":"L2FE_8_","type":"alpha","calc":false,"value":""},{"id":"L2FF_8_","type":"alpha","calc":false,"value":""},{"id":"L2FG_8_","type":"number","calc":false,"value":""},{"id":"L2FA_9_","type":"alpha","calc":false,"value":""},{"id":"L2FB_9_","type":"date","calc":false,"value":""},{"id":"L2FC_9_","type":"number","calc":false,"value":""},{"id":"L2FD_9_","type":"number","calc":false,"value":""},{"id":"L2FE_9_","type":"alpha","calc":false,"value":""},{"id":"L2FF_9_","type":"alpha","calc":false,"value":""},{"id":"L2FG_9_","type":"number","calc":false,"value":""},{"id":"L2FA_10_","type":"alpha","calc":false,"value":""},{"id":"L2FB_10_","type":"date","calc":false,"value":""},{"id":"L2FC_10_","type":"number","calc":false,"value":""},{"id":"L2FD_10_","type":"number","calc":false,"value":""},{"id":"L2FE_10_","type":"alpha","calc":false,"value":""},{"id":"L2FF_10_","type":"alpha","calc":false,"value":""},{"id":"L2FG_10_","type":"number","calc":false,"value":""},{"id":"L2FA_11_","type":"alpha","calc":false,"value":""},{"id":"L2FB_11_","type":"date","calc":false,"value":""},{"id":"L2FC_11_","type":"number","calc":false,"value":""},{"id":"L2FD_11_","type":"number","calc":false,"value":""},{"id":"L2FE_11_","type":"alpha","calc":false,"value":""},{"id":"L2FF_11_","type":"alpha","calc":false,"value":""},{"id":"L2FG_11_","type":"number","calc":false,"value":""},{"id":"L2FA_12_","type":"alpha","calc":false,"value":""},{"id":"L2FB_12_","type":"date","calc":false,"value":""},{"id":"L2FC_12_","type":"number","calc":false,"value":""},{"id":"L2FD_12_","type":"number","calc":false,"value":""},{"id":"L2FE_12_","type":"alpha","calc":false,"value":""},{"id":"L2FF_12_","type":"alpha","calc":false,"value":""},{"id":"L2FG_12_","type":"number","calc":false,"value":""},{"id":"L3C","type":"number","calc":true,"value":""},{"id":"L3G","type":"number","calc":true,"value":""},{"id":"L4G","type":"number","calc":false,"value":""},{"id":"L5G","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/PAC.json b/test/data/pa/form/PAC.json new file mode 100755 index 00000000..3721b75f --- /dev/null +++ b/test/data/pa/form/PAC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"PA Schedule C (PA-40 C)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.298,"y":1.656,"w":4.5,"l":4.967},{"oc":"#d1d2d3","x":80.618,"y":13.934,"w":1.5,"l":15.245},{"oc":"#d1d2d3","x":80.618,"y":15.222,"w":1.5,"l":15.245},{"oc":"#d1d2d3","x":68.544,"y":11.212,"w":1.5,"l":22.834},{"oc":"#d1d2d3","x":68.544,"y":12.5,"w":1.5,"l":22.834},{"oc":"#2b2e34","x":33.788,"y":24.911,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":25.716,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":26.482,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":27.28,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":28.064,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":28.871,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":29.657,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":30.435,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":31.235,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":32.036,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":32.845,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":33.65,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":34.416,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":35.226,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":36.03,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":36.797,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":37.607,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":38.416,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":39.222,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":39.998,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":40.788,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":33.788,"y":41.597,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":24.908,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":25.684,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":26.471,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":27.261,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":28.07,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":28.879,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":30.498,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":31.307,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":32.117,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":32.926,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":33.735,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":34.544,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":35.353,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":36.162,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":36.972,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":37.781,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":38.59,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":39.399,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":40.209,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":77.359,"y":41.993,"w":0.75,"l":18.412},{"oc":"#2b2e34","x":9.038,"y":42.377,"w":0.75,"l":86.712},{"oc":"#221f1f","x":91.24,"y":46.378,"w":4.5,"l":4.933},{"oc":"#221f1f","x":9.496,"y":43.607,"w":0.75,"l":86.565},{"oc":"#221f1f","x":9.582,"y":46.438,"w":4.5,"l":4.933}],"VLines":[{"oc":"#221f1f","x":13.999,"y":0.578,"w":4.5,"l":1.128},{"oc":"#d1d2d3","x":95.863,"y":13.934,"w":1.5,"l":1.287},{"oc":"#d1d2d3","x":80.618,"y":13.934,"w":1.5,"l":1.287},{"oc":"#d1d2d3","x":91.377,"y":11.212,"w":1.5,"l":1.288},{"oc":"#d1d2d3","x":68.544,"y":11.212,"w":1.5,"l":1.288},{"oc":"#2b2e34","x":33.8,"y":24.032,"w":0.75,"l":18.345},{"oc":"#2b2e34","x":52.248,"y":24.029,"w":0.75,"l":18.347},{"oc":"#2b2e34","x":77.402,"y":23.999,"w":0.75,"l":17.98},{"oc":"#221f1f","x":95.932,"y":45.347,"w":4.5,"l":1.122},{"oc":"#221f1f","x":9.848,"y":45.344,"w":4.5,"l":1.119}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":38.383,"y":3.795,"w":3.527,"h":0.045,"clr":-1},{"oc":"#221f1f","x":67.873,"y":1.68,"w":0.165,"h":2.265,"clr":-1},{"oc":"#221f1f","x":9.078,"y":3.931,"w":86.516,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.137,"y":5.083,"w":45.086,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.223,"y":4.005,"w":0.083,"h":1.327,"clr":-1},{"oc":"#221f1f","x":68.413,"y":13.05,"w":2.991,"h":0.03,"clr":-1},{"oc":"#221f1f","x":71.486,"y":13.05,"w":3.094,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.331,"y":13.08,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":71.404,"y":13.08,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":74.58,"y":13.08,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":68.413,"y":13.875,"w":2.991,"h":0.03,"clr":-1},{"oc":"#221f1f","x":71.486,"y":13.875,"w":3.094,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.331,"y":13.905,"w":0.083,"h":0.825,"clr":-1},{"oc":"#221f1f","x":71.404,"y":13.905,"w":0.083,"h":0.825,"clr":-1},{"oc":"#221f1f","x":74.58,"y":13.905,"w":0.083,"h":0.825,"clr":-1},{"oc":"#221f1f","x":68.413,"y":14.73,"w":2.991,"h":0.03,"clr":-1},{"oc":"#221f1f","x":71.486,"y":14.73,"w":3.094,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.331,"y":14.76,"w":0.083,"h":0.547,"clr":-1},{"oc":"#221f1f","x":71.404,"y":14.76,"w":0.083,"h":0.547,"clr":-1},{"oc":"#221f1f","x":74.58,"y":14.76,"w":0.083,"h":0.547,"clr":-1},{"oc":"#221f1f","x":68.331,"y":15.307,"w":0.083,"h":0.548,"clr":-1},{"oc":"#221f1f","x":68.413,"y":15.855,"w":2.991,"h":0.03,"clr":-1},{"oc":"#221f1f","x":71.404,"y":15.307,"w":0.083,"h":0.548,"clr":-1},{"oc":"#221f1f","x":71.486,"y":15.855,"w":3.094,"h":0.03,"clr":-1},{"oc":"#221f1f","x":74.58,"y":15.307,"w":0.083,"h":0.548,"clr":-1},{"oc":"#221f1f","x":9.281,"y":6.165,"w":58.637,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.001,"y":6.165,"w":27.864,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":6.601,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.281,"y":7.228,"w":58.637,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.08,"y":10.157,"w":87.028,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.925,"y":8.698,"w":0.083,"h":1.472,"clr":-1},{"oc":"#221f1f","x":9.158,"y":17.715,"w":86.543,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":17.07,"w":86.543,"h":0.645,"clr":-1},{"oc":"#d1d2d3","x":73.26,"y":19.335,"w":22.44,"h":0.015,"clr":-1},{"oc":"#d1d2d3","x":73.26,"y":17.745,"w":22.44,"h":1.59,"clr":-1},{"oc":"#221f1f","x":50.655,"y":17.745,"w":0.083,"h":0.818,"clr":-1},{"oc":"#221f1f","x":54.636,"y":17.745,"w":0.083,"h":0.818,"clr":-1},{"oc":"#221f1f","x":73.178,"y":17.745,"w":0.083,"h":0.818,"clr":-1},{"oc":"#221f1f","x":50.737,"y":18.563,"w":3.898,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.718,"y":18.563,"w":18.46,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.655,"y":18.593,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":54.636,"y":18.593,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":73.178,"y":18.593,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":50.737,"y":19.35,"w":3.898,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.718,"y":19.35,"w":18.46,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.178,"y":19.38,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":77.344,"y":19.38,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":73.26,"y":20.137,"w":4.084,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.426,"y":20.137,"w":18.294,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.178,"y":20.168,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":77.344,"y":20.168,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":73.26,"y":20.925,"w":4.084,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.426,"y":20.925,"w":18.294,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.178,"y":20.955,"w":0.083,"h":0.712,"clr":-1},{"oc":"#221f1f","x":77.344,"y":20.955,"w":0.083,"h":0.712,"clr":-1},{"oc":"#221f1f","x":73.26,"y":21.668,"w":4.084,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.426,"y":21.668,"w":18.294,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.178,"y":21.698,"w":0.083,"h":1.103,"clr":-1},{"oc":"#221f1f","x":77.344,"y":21.698,"w":0.083,"h":1.103,"clr":-1},{"oc":"#221f1f","x":73.26,"y":22.8,"w":4.084,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.426,"y":22.8,"w":18.294,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.178,"y":22.83,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":77.344,"y":22.83,"w":0.083,"h":0.66,"clr":-1},{"oc":"#2b2e34","x":9.038,"y":23.563,"w":86.711,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.925,"y":7.189,"w":0.083,"h":0.997,"clr":-1},{"oc":"#221f1f","x":54.228,"y":5.248,"w":0.083,"h":0.917,"clr":-1},{"oc":"#221f1f","x":54.249,"y":5.071,"w":41.549,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":8.101,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":67.918,"y":3.975,"w":0.083,"h":1.32,"clr":-1},{"oc":"#221f1f","x":67.918,"y":5.289,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":67.918,"y":6.039,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.158,"y":8.42,"w":58.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":9.326,"w":58.761,"h":0.03,"clr":-1}],"Texts":[{"oc":"#221f1f","x":49.415,"y":0.30000000000000004,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1203110059","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":29.264,"y":2.588,"w":1.9080000000000001,"clr":-1,"A":"left","R":[{"T":"(FI)","S":-1,"TS":[2,8.4,0,0]}]},{"oc":"#221f1f","x":35.019,"y":2.947,"w":1.008,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,17.04,0,0]}]},{"oc":"#221f1f","x":68.411,"y":12.99,"w":0.73,"clr":-1,"A":"left","R":[{"T":"Y","S":-1,"TS":[2,11.04,1,0]}]},{"oc":"#221f1f","x":69.421,"y":12.99,"w":1.2429999999999999,"clr":-1,"A":"left","R":[{"T":"es","S":-1,"TS":[2,11.04,1,0]}]},{"oc":"#221f1f","x":71.794,"y":12.99,"w":1.542,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[2,11.04,1,0]}]},{"oc":"#221f1f","x":22.479,"y":6.215,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,11.04,0,0],"RA":90}]},{"oc":"#221f1f","x":26.417,"y":5.175,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,11.04,0,0],"RA":90}]},{"oc":"#221f1f","x":58.138,"y":9.337,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,11.04,0,0],"RA":90}]},{"oc":"#221f1f","x":50.713,"y":13.057,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,11.04,0,0],"RA":90}]},{"oc":"#221f1f","x":72.699,"y":22.627,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,11.04,0,0],"RA":90}]},{"oc":"#221f1f","x":66.971,"y":5.174,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,11.04,0,0],"RA":90}]},{"oc":"#221f1f","x":9.794,"y":5.108,"w":1.054,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.753,"y":6.163,"w":1.05,"clr":-1,"A":"left","R":[{"T":"B.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":68.328,"y":6.125,"w":1.044,"clr":-1,"A":"left","R":[{"T":"C.","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":9.671,"y":7.005,"w":0.771,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":11.754,"y":9.322,"w":1.3450000000000002,"clr":-1,"A":"left","R":[{"T":"Cit","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":13.342,"y":9.322,"w":0.592,"clr":-1,"A":"left","R":[{"T":"y","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":36.311,"y":9.322,"w":2.749,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":9.856,"y":10.245,"w":0.986,"clr":-1,"A":"left","R":[{"T":"E.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":11.816,"y":10.868,"w":1.078,"clr":-1,"A":"left","R":[{"T":"(1","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":13.323,"y":10.868,"w":0.448,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":17.633,"y":10.868,"w":2.224,"clr":-1,"A":"left","R":[{"T":"Cost","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":22.109,"y":10.868,"w":1.526,"clr":-1,"A":"left","R":[{"T":"(2)","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":11.815,"y":11.49,"w":1.078,"clr":-1,"A":"left","R":[{"T":"(3","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":13.321,"y":11.49,"w":0.448,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.104,"y":12.345,"w":0.9390000000000001,"clr":-1,"A":"left","R":[{"T":"F.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":11.816,"y":12.975,"w":1.078,"clr":-1,"A":"left","R":[{"T":"(1","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":13.321,"y":12.975,"w":0.448,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":17.631,"y":12.975,"w":2.7750000000000004,"clr":-1,"A":"left","R":[{"T":"Cash%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":22.128,"y":12.975,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(2)","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":27.944,"y":12.975,"w":3.6679999999999997,"clr":-1,"A":"left","R":[{"T":"Accrual","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":34.132,"y":12.975,"w":1.526,"clr":-1,"A":"left","R":[{"T":"(3)","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.312,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.157,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.003,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.849,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.674,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.52,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.365,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.19,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.036,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.861,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.707,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.552,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.377,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.223,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.069,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.894000000000005,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.739,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.564,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.41,"y":12.975,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":67.256,"y":12.975,"w":0.344,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.691,"y":13.718,"w":1.141,"clr":-1,"A":"left","R":[{"T":"G.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.499,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.344,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.19,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.036,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.882,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.727,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.573,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.398,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.244,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.069,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.914,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.76,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.585,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.431,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.256,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.101,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.947,"y":13.718,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.712,"y":15.06,"w":1.105,"clr":-1,"A":"left","R":[{"T":"H.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.104,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.929,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.775,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.621,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.446,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.291,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.116,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.962,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.787,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.633,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.479,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.304,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.149,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.974,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.82,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.666,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.491,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.336,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.161,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.007,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.853,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.678,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.523,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.348,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.194,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.04,"y":15.06,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.865,"y":15.06,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.104,"y":15.780000000000001,"w":0.8089999999999999,"clr":-1,"A":"left","R":[{"T":"I.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":42.588,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":43.434,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.28,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.105,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.951,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.796,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.621,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.467,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.292,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.138,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.983,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.788,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.633,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.479,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.325,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.15,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.995,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.841,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.666,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.512,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.337,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.182,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.028,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.853,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.699,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.545,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.37,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.215,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.04,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.886,"y":15.780000000000001,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":68.39,"y":10.26,"w":0.665,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":69.133,"y":10.26,"w":2.2489999999999997,"clr":-1,"A":"left","R":[{"T":"ales%20","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":71.731,"y":10.26,"w":0.616,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":72.309,"y":10.26,"w":1.173,"clr":-1,"A":"left","R":[{"T":"ax","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":74.001,"y":10.26,"w":3.67,"clr":-1,"A":"left","R":[{"T":"License","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":78.435,"y":10.26,"w":3.97,"clr":-1,"A":"left","R":[{"T":"Number","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":83.2,"y":10.26,"w":1.032,"clr":-1,"A":"left","R":[{"T":"(if","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":84.809,"y":10.26,"w":5.3100000000000005,"clr":-1,"A":"left","R":[{"T":"applicable)","S":-1,"TS":[2,9.5029,0,0]}]},{"oc":"#221f1f","x":82.394,"y":12.99,"w":0.5750000000000001,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":82.992,"y":12.99,"w":1.2149999999999999,"clr":-1,"A":"left","R":[{"T":"ed","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":84.313,"y":12.99,"w":0.594,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":84.953,"y":12.99,"w":0.427,"clr":-1,"A":"left","R":[{"T":"r","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":85.405,"y":12.99,"w":0.899,"clr":-1,"A":"left","R":[{"T":"al","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":86.787,"y":12.99,"w":3.17,"clr":-1,"A":"left","R":[{"T":"NAICS","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":90.705,"y":12.99,"w":2.548,"clr":-1,"A":"left","R":[{"T":"Code","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":9.774,"y":17.602,"w":1.012,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":11.837,"y":17.602,"w":0.957,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":28.398,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":29.244,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":30.09,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":30.935,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":31.781,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":32.627,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":33.452,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":34.297,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":35.122,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":35.968,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":36.814,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":37.639,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":38.485,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":39.309,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":40.155,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.001,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.826,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":42.672,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":43.497,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.342,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.188,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.013,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.859,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.704,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.529,"y":17.603,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.374,"y":17.603,"w":0.344,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":11.836,"y":18.382,"w":0.987,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":28.419,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":29.264,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":30.11,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":30.956,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":31.802,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":32.606,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":33.452,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":34.297,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":35.143,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":35.968,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":36.814,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":37.659,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":38.484,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":39.33,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":40.155,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.001,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.846,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":42.671,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":43.517,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.363,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.188,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.034,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.859,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.704,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.55,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.375,"y":18.382,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.477,"y":17.602,"w":0.632,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.365,"y":17.603,"w":0.957,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.477,"y":18.405,"w":1.6229999999999998,"clr":-1,"A":"left","R":[{"T":"1b.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":11.836,"y":19.207,"w":0.887,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":38.153,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":38.999,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":39.845,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":40.69,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.536,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":42.361,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":43.207,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.032,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.877,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.723,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.548,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.394,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.219,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.065,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.91,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.735,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.581,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.427,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.231,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.077,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.922,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.768,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.593,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.439,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.284,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.109,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.955,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.78,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.626,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.472,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.296,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.142,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.988,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.813,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.659,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":67.484,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":68.329,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":69.175,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":70,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":70.846,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":71.671,"y":19.208,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.775,"y":19.988,"w":1.012,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.199,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.045,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.891,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.736,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.582,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.428,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.273,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.098,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.944,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.769,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.615,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.461,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.286,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.131,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.956,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.802,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.648,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.473,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.318,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.143,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.989,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.835,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.66,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":67.505,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":68.351,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":69.176,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":70.022,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":70.847,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":71.692,"y":19.988,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.776,"y":20.775,"w":1.012,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":38.154,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":39,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":39.845,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":40.67,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.516,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":42.341,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":43.187,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.032,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.857,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.703,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.528,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.374,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.219,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.044,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.89,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.715,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.54,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.386,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.231,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.077,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.902,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.748,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.594,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.419,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.264,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.089,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.935,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.781,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.606,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.451,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.297,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.122,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.968,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.793,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.638,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":67.484,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":68.309,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":69.155,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":69.98,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":70.826,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":71.671,"y":20.775,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.776,"y":21.443,"w":1.012,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":22.582,"w":1.012,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":31.884,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":32.729,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":33.575,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":34.421,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":35.267,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":36.112,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":36.937,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":37.783,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":38.629,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":39.454,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":40.299,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.124,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":41.97,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":42.816,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":43.641,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":44.486,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":45.311,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.157,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.003,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":47.828,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":48.673,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.498,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":50.344,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.169,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.015,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":52.861,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":53.706,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":54.531,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":55.377,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.223,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.048,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.893,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":58.718,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":59.564,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":60.41,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":61.235,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.08,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":62.926,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":63.751000000000005,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":64.597,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":65.422,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":66.268,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":67.113,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":67.938,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":68.784,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":69.609,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":70.455,"y":22.485,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":74.31,"y":19.208,"w":0.637,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":75.196,"y":19.208,"w":0.887,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":74.887,"y":19.98,"w":1.012,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":74.825,"y":20.767,"w":1.012,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":74.846,"y":21.682,"w":1.072,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":74.846,"y":22.56,"w":1.012,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#2b2e34","x":72.53,"y":24.02,"w":0.454,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":73.169,"y":24.019,"w":4.295999999999999,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.142,"y":40.489,"w":21.382,"clr":-1,"A":"left","R":[{"T":"credits%20claimed%20(for%20example%2C%20Employment","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.142,"y":41.102,"w":18.298,"clr":-1,"A":"left","R":[{"T":"Incentive%20Payments%20Credit)%20on%20your%20","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":71.468,"y":41.102,"w":3.7719999999999994,"clr":-1,"A":"left","R":[{"T":"PA-40.","S":-1,"TS":[2,7.76,1,0]}]},{"x":9.647,"y":23.338,"w":11.031999999999998,"clr":1,"A":"left","R":[{"T":"PART%20II%20Deductions","S":-1,"TS":[2,10.74,1,0]}]},{"oc":"#221f1f","x":54.551,"y":4.115,"w":11.384999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20number","S":-1,"TS":[2,9.2665,1,0]}]},{"oc":"#221f1f","x":58.717,"y":3.6630000000000003,"w":4.037,"clr":-1,"A":"left","R":[{"T":"Owner%E2%80%99s","S":-1,"TS":[2,9.2665,1,0]}]},{"oc":"#221f1f","x":54.578,"y":5.108,"w":8.802999999999999,"clr":-1,"A":"left","R":[{"T":"Product%20or%20service","S":-1,"TS":[2,9.7394,1,0]}]},{"oc":"#221f1f","x":20.375,"y":0.375,"w":6.361,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20C%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":20.396,"y":0.8999999999999999,"w":9.754,"clr":-1,"A":"left","R":[{"T":"Profit%20or%20Loss%20From","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.334,"y":1.4620000000000002,"w":11.930999999999997,"clr":-1,"A":"left","R":[{"T":"Business%20or%20Profession%20","S":-1,"TS":[0,10.4119,1,0]}]},{"oc":"#221f1f","x":20.334,"y":2.025,"w":12.93,"clr":-1,"A":"left","R":[{"T":"(SOLE%20PROPRIETORSHIP%20)%20","S":-1,"TS":[0,10.638,0,0]}]},{"oc":"#221f1f","x":20.334,"y":2.588,"w":4.456,"clr":-1,"A":"left","R":[{"T":"PA-%2040C","S":-1,"TS":[2,8.5891,1,0]}]},{"oc":"#221f1f","x":25.057,"y":2.588,"w":4.018,"clr":-1,"A":"left","R":[{"T":"(09%E2%80%9312)","S":-1,"TS":[2,8.4,0,0]}]},{"oc":"#221f1f","x":20.334,"y":3.075,"w":17.002,"clr":-1,"A":"left","R":[{"T":"PA%20DEPARTMENT%20OF%20REVENUE%20","S":-1,"TS":[2,7.8214,1,0]}]},{"oc":"#221f1f","x":41.66,"y":3.045,"w":8.714999999999998,"clr":-1,"A":"left","R":[{"T":"Include%20with%20Form","S":-1,"TS":[2,8.3156,0,0]}]},{"oc":"#221f1f","x":50.281,"y":3.045,"w":3.6759999999999993,"clr":-1,"A":"left","R":[{"T":"PA-40%2C","S":-1,"TS":[2,8.355,1,0]}]},{"oc":"#221f1f","x":54.035,"y":3.045,"w":8.029,"clr":-1,"A":"left","R":[{"T":"PA-20S%2FPA-65","S":-1,"TS":[2,8.355,1,0]}]},{"oc":"#221f1f","x":63.172,"y":3.045,"w":3.3309999999999995,"clr":-1,"A":"left","R":[{"T":"PA-41","S":-1,"TS":[2,8.355,1,0]}]},{"oc":"#221f1f","x":61.873,"y":3.045,"w":1.034,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[2,8.3156,0,0]}]},{"oc":"#221f1f","x":86.004,"y":3.015,"w":9.972999999999999,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":-1,"TS":[2,8.280000000000001,0,0]}]},{"oc":"#221f1f","x":9.011,"y":3.6100000000000003,"w":23.766000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20of%20owner%20shown%20as%20on%20PA%20tax%20return%3A","S":-1,"TS":[2,9.8763,1,0]}]},{"oc":"#221f1f","x":11.795,"y":5.108,"w":10.887,"clr":-1,"A":"left","R":[{"T":"Main%20business%20activity","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.753,"y":6.163,"w":7.709,"clr":-1,"A":"left","R":[{"T":"Business%20name","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.753,"y":6.88,"w":20.116,"clr":-1,"A":"left","R":[{"T":"Business%20address%20(number%20and%20street)%20","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":48.322,"y":9.323,"w":6.854000000000001,"clr":-1,"A":"left","R":[{"T":"and%20ZIP%20Code","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":70.638,"y":6.125,"w":20.068999999999996,"clr":-1,"A":"left","R":[{"T":"Federal%20Employer%20Identification%20Number","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":11.816,"y":10.245,"w":35.29899999999999,"clr":-1,"A":"left","R":[{"T":"Method(s)%20used%20to%20value%20closing%20inventory.%20Fill%20in%20the%20appropriate%20oval%3A%20","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":27.944,"y":10.868,"w":11.847999999999999,"clr":-1,"A":"left","R":[{"T":"Lower%20of%20cost%20or%20market","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":17.632,"y":11.49,"w":17.411999999999995,"clr":-1,"A":"left","R":[{"T":"Other%20(if%20other%2C%20attach%20explanation)","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.816,"y":12.345,"w":24.459999999999994,"clr":-1,"A":"left","R":[{"T":"Accounting%20method.%20Fill%20in%20the%20appropriate%20oval%3A","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":39.969,"y":12.975,"w":7.425999999999999,"clr":-1,"A":"left","R":[{"T":"Other%20(specify)","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.837,"y":13.718,"w":35.06199999999999,"clr":-1,"A":"left","R":[{"T":"Was%20there%20any%20change%20in%20determining%20quantities%2C%20costs%2C%20or%20valuations%20","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.816,"y":14.355,"w":35.741,"clr":-1,"A":"left","R":[{"T":"between%20opening%20and%20closing%20inventory%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20submit%20explanation.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.795,"y":15.06,"w":26.578,"clr":-1,"A":"left","R":[{"T":"Did%20you%20deduct%20expenses%20for%20an%20office%20in%20your%20home%3F.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.796,"y":15.780000000000001,"w":24.889000000000006,"clr":-1,"A":"left","R":[{"T":"If%20the%20business%20is%20out%20of%20existence%2C%20fill%20in%20this%20oval.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":13.713,"y":17.602,"w":10.969000000000003,"clr":-1,"A":"left","R":[{"T":"Gross%20receipts%20or%20sales","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":13.755,"y":18.382,"w":11.906000000000002,"clr":-1,"A":"left","R":[{"T":"Returns%20and%20allowances","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":13.734,"y":19.207,"w":19.513999999999996,"clr":-1,"A":"left","R":[{"T":"Balance%20(subtract%20Line%201b%20from%20Line%201a)","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.837,"y":19.987,"w":30.002000000000006,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20goods%20sold%20and%2For%20operations%20(Schedule%20C-1%2C%20Line%208)","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.837,"y":20.775,"w":20.468999999999998,"clr":-1,"A":"left","R":[{"T":"Gross%20profit%20(subtract%20Line%202%20from%20Line%201c)","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.837,"y":21.442,"w":49.52300000000002,"clr":-1,"A":"left","R":[{"T":"Other%20Income%20(submit%20statement).%20Include%20interest%20from%20accounts%20receivable%2C%20business%20checking%20accounts%20","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.835,"y":22.001,"w":45.120999999999995,"clr":-1,"A":"left","R":[{"T":"and%20other%20business%20accounts.%20Also%20include%20sales%20of%20operational%20assets.%20See%20Instructions%20Booklet.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":11.837,"y":22.582,"w":16.673,"clr":-1,"A":"left","R":[{"T":"Total%20income%20(add%20Lines%203%20and%204)","S":-1,"TS":[2,9.7394,0,0]}]},{"x":9.774,"y":16.83,"w":8.523,"clr":1,"A":"left","R":[{"T":"PART%20I%20Income","S":-1,"TS":[2,10.6395,1,0]}]},{"oc":"#2b2e34","x":60.296,"y":25.582,"w":20.048000000000016,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":66.149,"y":26.37,"w":12.888000000000007,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":59.123,"y":27.179,"w":21.480000000000018,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":58.54,"y":27.988,"w":22.19600000000002,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#221f1f","x":10.858,"y":24.096,"w":0.616,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":11.353,"y":24.096,"w":0.6759999999999999,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":24.096,"w":5.729000000000001,"clr":-1,"A":"left","R":[{"T":"Advertising","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":17.273,"y":24.096,"w":20.851000000000006,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.858,"y":24.906,"w":1.2919999999999998,"clr":-1,"A":"left","R":[{"T":"7.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":24.906,"w":6.489000000000001,"clr":-1,"A":"left","R":[{"T":"Amortization","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":17.85,"y":24.906,"w":20.093000000000004,"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":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.858,"y":25.672,"w":1.2919999999999998,"clr":-1,"A":"left","R":[{"T":"8.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":25.672,"w":16.813000000000002,"clr":-1,"A":"left","R":[{"T":"Bad%20debts%20from%20sales%20or%20services%20%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":26.492,"y":25.672,"w":8.722999999999999,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.858,"y":26.467,"w":1.2919999999999998,"clr":-1,"A":"left","R":[{"T":"9.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":26.467,"w":7.034,"clr":-1,"A":"left","R":[{"T":"Bank%20charges%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":18.428,"y":26.467,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":19.005,"y":26.467,"w":18.576999999999998,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":27.254,"w":1.908,"clr":-1,"A":"left","R":[{"T":"10.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":27.254,"w":11.707999999999998,"clr":-1,"A":"left","R":[{"T":"Car%20and%20truck%20expenses","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":22.449,"y":27.254,"w":14.028999999999993,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":28.057,"w":1.908,"clr":-1,"A":"left","R":[{"T":"11.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":28.057,"w":6.8580000000000005,"clr":-1,"A":"left","R":[{"T":"Commissions%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":18.51,"y":28.057,"w":19.335,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":28.852,"w":1.908,"clr":-1,"A":"left","R":[{"T":"12.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":31.297,"y":28.852,"w":2.659,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":29.624,"w":1.908,"clr":-1,"A":"left","R":[{"T":"13.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":29.624,"w":0.893,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":14.983,"y":29.624,"w":10.209999999999999,"clr":-1,"A":"left","R":[{"T":"Regular%20depreciation","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":23.646,"y":29.624,"w":12.512999999999995,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":30.427,"w":1.908,"clr":-1,"A":"left","R":[{"T":"13.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":30.427,"w":0.987,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":14.983,"y":30.427,"w":10.71,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":24.244,"y":30.427,"w":11.754999999999995,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":31.23,"w":1.908,"clr":-1,"A":"left","R":[{"T":"14.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":31.23,"w":11.588000000000001,"clr":-1,"A":"left","R":[{"T":"Dues%20and%20publications%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":21.955,"y":31.23,"w":14.786999999999992,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":32.032,"w":1.908,"clr":-1,"A":"left","R":[{"T":"15.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":32.842,"w":1.908,"clr":-1,"A":"left","R":[{"T":"16.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":28.886,"y":32.842,"w":5.301,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":33.607,"w":1.908,"clr":-1,"A":"left","R":[{"T":"17.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.384,"y":33.607,"w":5.058000000000001,"clr":-1,"A":"left","R":[{"T":"Insurance","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":16.695,"y":33.607,"w":21.60900000000001,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":34.417,"w":1.908,"clr":-1,"A":"left","R":[{"T":"18.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.384,"y":34.417,"w":17.313,"clr":-1,"A":"left","R":[{"T":"Interest%20on%20business%20indebtedness%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":27.069,"y":34.417,"w":7.965,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":35.227,"w":1.908,"clr":-1,"A":"left","R":[{"T":"19.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.384,"y":35.227,"w":11.302,"clr":-1,"A":"left","R":[{"T":"Laundry%20and%20cleaning%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":21.893,"y":35.227,"w":14.786999999999992,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":35.992,"w":1.908,"clr":-1,"A":"left","R":[{"T":"20.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":25.915,"y":35.992,"w":9.480999999999998,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":36.802,"w":1.908,"clr":-1,"A":"left","R":[{"T":"21.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":36.802,"w":9.166,"clr":-1,"A":"left","R":[{"T":"Management%20fees%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":20.16,"y":36.802,"w":17.060999999999993,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":37.612,"w":1.908,"clr":-1,"A":"left","R":[{"T":"22.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":37.612,"w":7.523000000000001,"clr":-1,"A":"left","R":[{"T":"Office%20supplies%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":19.046,"y":37.612,"w":18.576999999999998,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":38.422,"w":1.908,"clr":-1,"A":"left","R":[{"T":"23.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":32.289,"y":38.422,"w":1.143,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":39.202,"w":1.908,"clr":-1,"A":"left","R":[{"T":"24.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.384,"y":39.202,"w":3.8890000000000002,"clr":-1,"A":"left","R":[{"T":"Postage","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":16.117,"y":39.202,"w":22.36700000000001,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":39.99,"w":1.908,"clr":-1,"A":"left","R":[{"T":"25.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":39.99,"w":13.369,"clr":-1,"A":"left","R":[{"T":"Rent%20on%20business%20property%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":23.605,"y":39.99,"w":12.512999999999995,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.343,"y":40.792,"w":1.908,"clr":-1,"A":"left","R":[{"T":"26.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":16.117,"y":40.792,"w":22.36700000000001,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":53.613,"y":24.05,"w":1.908,"clr":-1,"A":"left","R":[{"T":"28.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":66.633,"y":24.049,"w":0.703,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[2,7.7455,1,0]}]},{"oc":"#221f1f","x":67.211,"y":24.049,"w":4.332000000000001,"clr":-1,"A":"left","R":[{"T":"chedule","S":-1,"TS":[2,7.7455,1,0]}]},{"oc":"#221f1f","x":70.937,"y":24.049,"w":1.915,"clr":-1,"A":"left","R":[{"T":"C-1","S":-1,"TS":[2,7.7455,1,0]}]},{"oc":"#221f1f","x":53.612,"y":24.829,"w":0.616,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":54.128,"y":24.829,"w":1.2919999999999998,"clr":-1,"A":"left","R":[{"T":"9.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.675,"y":24.829,"w":2.8709999999999996,"clr":-1,"A":"left","R":[{"T":"Taxes","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":53.613,"y":25.617,"w":1.908,"clr":-1,"A":"left","R":[{"T":"30.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.675,"y":25.617,"w":5.465999999999999,"clr":-1,"A":"left","R":[{"T":"Telephone%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":53.613,"y":26.404,"w":1.908,"clr":-1,"A":"left","R":[{"T":"31.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.675,"y":26.404,"w":13.002999999999998,"clr":-1,"A":"left","R":[{"T":"Travel%20and%20entertainment","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":53.613,"y":27.207,"w":1.908,"clr":-1,"A":"left","R":[{"T":"32.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.675,"y":27.207,"w":4.165,"clr":-1,"A":"left","R":[{"T":"Utilities%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":59.429,"y":27.207,"w":4.548,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":53.613,"y":28.017,"w":1.908,"clr":-1,"A":"left","R":[{"T":"33.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.675,"y":28.017,"w":3.26,"clr":-1,"A":"left","R":[{"T":"Wages","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":53.613,"y":28.827,"w":1.908,"clr":-1,"A":"left","R":[{"T":"34.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":65.076,"y":38.268,"w":15.544999999999991,"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.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":54.083,"y":39.078,"w":1.908,"clr":-1,"A":"left","R":[{"T":"35.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":73.76,"y":39.078,"w":4.175,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":54.083,"y":39.888,"w":1.908,"clr":-1,"A":"left","R":[{"T":"36.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":74.675,"y":42.414,"w":0.352,"clr":-1,"A":"left","R":[{"T":"t","S":-1,"TS":[0,23.1,0,0],"RA":90}]},{"oc":"#221f1f","x":10.284,"y":42.302,"w":0.616,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.8,"y":42.302,"w":1.2919999999999998,"clr":-1,"A":"left","R":[{"T":"7.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":37.325,"y":42.242,"w":45.86499999999997,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":75.5,"y":42.302,"w":1.576,"clr":-1,"A":"left","R":[{"T":"37.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":10.284,"y":43.352,"w":1.908,"clr":-1,"A":"left","R":[{"T":"38.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":62.283,"y":43.352,"w":1.131,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":63.594,"y":43.352,"w":5.691,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":67.893,"y":43.352,"w":2.2780000000000005,"clr":-1,"A":"left","R":[{"T":"Loss","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":75.5,"y":43.352,"w":1.576,"clr":-1,"A":"left","R":[{"T":"38.","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":56.145,"y":39.888,"w":19.58,"clr":-1,"A":"left","R":[{"T":"Reduce%20expenses%20by%20the%20total%20business%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":56.145,"y":39.078,"w":20.125999999999998,"clr":-1,"A":"left","R":[{"T":"Total%20expenses.%20(add%20Lines%206%20through%2034)%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.653,"y":24.049,"w":12.989,"clr":-1,"A":"left","R":[{"T":"Supplies%20(not%20included%20on","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.674,"y":28.827,"w":12.260000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20expenses%20(specify)%3A","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.404,"y":28.851,"w":20.97,"clr":-1,"A":"left","R":[{"T":"Cost%20depletion%20but%20not%20percentage%20depletion%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.384,"y":32.031,"w":25.492999999999995,"clr":-1,"A":"left","R":[{"T":"Employee%20benefit%20programs%20other%20than%20on%20Line%2023","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.404,"y":32.841,"w":18.943,"clr":-1,"A":"left","R":[{"T":"Freight%20(not%20includedon%20Schedule%20C-1)%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.384,"y":35.991,"w":16.616,"clr":-1,"A":"left","R":[{"T":"Legal%20and%20professional%20services%20%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.384,"y":38.421,"w":24.110999999999994,"clr":-1,"A":"left","R":[{"T":"Pensionand%20profit-sharing%20plans%20for%20employees%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.405,"y":40.801,"w":3.1679999999999997,"clr":-1,"A":"left","R":[{"T":"Repair","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#2b2e34","x":55.902,"y":33.653,"w":0.352,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.142,"y":33.653,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.783,"y":33.653,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.632,"y":34.462,"w":0.987,"clr":-1,"A":"left","R":[{"T":"g.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.783,"y":34.462,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.626,"y":35.271,"w":0.997,"clr":-1,"A":"left","R":[{"T":"h.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.783,"y":35.271,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.917,"y":36.08,"w":0.638,"clr":-1,"A":"left","R":[{"T":"i.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.783,"y":36.08,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.86,"y":36.89,"w":0.708,"clr":-1,"A":"left","R":[{"T":"j.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.783,"y":36.89,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.657,"y":37.699,"w":0.956,"clr":-1,"A":"left","R":[{"T":"k.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.783,"y":37.699,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.65,"y":29.606,"w":0.965,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.44,"y":29.606,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.64,"y":30.416,"w":0.623,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.141,"y":30.416,"w":0.364,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.782,"y":30.416,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.715,"y":31.225,"w":0.885,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.782,"y":31.225,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.631,"y":32.034,"w":0.987,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.439,"y":32.034,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":55.653,"y":32.844,"w":0.96,"clr":-1,"A":"left","R":[{"T":"e.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#2b2e34","x":56.782,"y":32.844,"w":24.344000000000023,"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.","S":-1,"TS":[2,7.76,0,0]}]},{"oc":"#221f1f","x":10.3,"y":41.518,"w":11.701000000000002,"clr":-1,"A":"left","R":[{"T":"27.%20%20%20Subcontractor%20fees","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":49.204,"y":45.429,"w":3.7920000000000003,"clr":-1,"A":"left","R":[{"T":"SIDE%201","S":-1,"TS":[2,14.2105,1,0]}]},{"oc":"#221f1f","x":72.695,"y":45.489,"w":5.5600000000000005,"clr":-1,"A":"left","R":[{"T":"1203110059","S":-1,"TS":[0,15.3827,0,0]}]},{"oc":"#221f1f","x":20.348,"y":45.482,"w":5.5600000000000005,"clr":-1,"A":"left","R":[{"T":"1203110059","S":-1,"TS":[0,15.3827,0,0]}]},{"oc":"#221f1f","x":54.082,"y":38.268,"w":1.908,"clr":-1,"A":"left","R":[{"T":"34.%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":55.977,"y":38.268,"w":10.130999999999998,"clr":-1,"A":"left","R":[{"T":"Total%20other%20expenses","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.347,"y":42.302,"w":29.025000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20adjusted%20expenses%20(subtract%20Line%2036%20from%20Line%2035).%20","S":-1,"TS":[2,7.68,0,0]}]},{"oc":"#221f1f","x":12.347,"y":43.352,"w":57.87599999999999,"clr":-1,"A":"left","R":[{"T":"Net%20profit%20or%20loss%20(subtract%20Line%2037%20from%20Line%205).%20If%20a%20net%20loss%2C%20fill%20in%20the%20oval.%20Enter%20the%20result%20on%20your%20PA%20tax%20return.","S":-1,"TS":[2,7.68,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YR","EN":0},"TI":189,"AM":1024,"x":38.555,"y":2.94,"w":3.153,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":190,"AM":0,"x":9.298,"y":4.404,"w":44.373,"h":0.833,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":191,"AM":0,"x":68.847,"y":4.177,"w":24.129,"h":0.867,"TU":"Owner’s Social Security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A1","EN":0},"TI":192,"AM":0,"x":27.776,"y":5.372,"w":26.081,"h":0.833,"TU":"Main Business activity."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":193,"AM":0,"x":11.355,"y":8.585,"w":55.912,"h":0.833,"TU":"D. Business address (number and street) "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":194,"AM":0,"x":11.336,"y":7.658,"w":55.912,"h":0.833,"TU":"D. Business address (number and street) "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BUSNAME","EN":0},"TI":195,"AM":0,"x":27.748,"y":6.288,"w":38.488,"h":0.833,"TU":"Business Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":196,"AM":0,"x":16.171,"y":9.392,"w":19.942,"h":0.833,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":197,"AM":0,"x":41.557,"y":9.406,"w":3.981,"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"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":198,"AM":0,"x":58.775,"y":9.392,"w":8.861,"h":0.833,"TU":"Zip Code"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"C","EN":0},"TI":199,"AM":0,"x":68.76,"y":9.058,"w":24.686,"h":0.966,"TU":"Federal Employer Identification Number","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LOFCORM","EN":0},"TI":200,"AM":1024,"x":54.728,"y":10.454,"w":12.829,"h":0.833,"TU":"E. Method(s) used to value closing inventory."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TAXLICNO","EN":0},"TI":202,"AM":0,"x":69.135,"y":11.454,"w":21.824,"h":0.919,"TU":"Sales tax license number (if applicable).","MV":"n"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"NAICS","EN":0},"TI":208,"AM":0,"x":80.884,"y":14.068,"w":14.646,"h":1.109,"TU":"Federal NAICS Code","MV":"maxl:6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":210,"AM":0,"x":54.833,"y":17.812,"w":18.132,"h":0.833,"TU":"1.a. Gross receipts or sales"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A2","EN":0},"TI":212,"AM":0,"x":69.059,"y":5.38,"w":21.663,"h":0.833,"TU":"Product or Service"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":213,"AM":0,"x":54.908,"y":18.634,"w":17.982,"h":0.833,"TU":"1.b. Returns and allowances"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":214,"AM":1024,"x":77.509,"y":19.39,"w":18.171,"h":0.833,"TU":"1c. Balance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":215,"AM":1024,"x":77.584,"y":20.205,"w":18.171,"h":0.833,"TU":"2. Cost of good sold and /or operations"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":216,"AM":1024,"x":77.488,"y":20.985,"w":18.212,"h":0.833,"TU":"3. Gross profit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":217,"AM":0,"x":77.529,"y":21.824,"w":18.129,"h":0.867,"TU":"4. Other income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":221,"AM":1024,"x":77.563,"y":22.873,"w":18.212,"h":0.833,"TU":"5. Total income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":222,"AM":0,"x":34.351,"y":24.323,"w":17.858,"h":0.833,"TU":"6. Advertising"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":223,"AM":0,"x":34.222,"y":24.961,"w":17.742,"h":0.833,"TU":"7. Amortization"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":224,"AM":0,"x":34.297,"y":25.784,"w":17.667,"h":0.833,"TU":"8. Bad debts from sales or services"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":225,"AM":0,"x":34.147,"y":26.559,"w":17.667,"h":0.833,"TU":"6. Advertis ng . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7. Amortization . . . . . . . . . . . . . . . . . . . . . . . . . . . 8. Bad debts from sales or serv ces . . . . . . . . . . . . 9. Bank charges . . . . . . . . . . . . . . . . . . . . . . . . . . 10. Car and truck expenses . . . . . . . . . . . . . . . . . . . 11. Commissions . . . . . . . . . . . . . . . . . . . . . . . . . . 12. Cost deplet on but not percentage deplet on . . . . 13. a. Regular depreciat on . . . . . . . . . . . . . . . . . 13. b. Sect on 179 expense . . . . . . . . . . . . . . . . 14. Dues and publications . . . . . . . . . . . . . . . . . . . . 15. Employee benef t programs other than on Line 23 16. Fre ght (not included on Schedule C-1) . . . . . . . . 17. Insurance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18. Interest on business ndebtedness . . . . . . . . . . . 19. Laundry and cleaning . . . . . . . . . . . . . . . . . . . . 20. Legal and professiona serv ces . . . . . . . . . . . . . 21. Management fees . . . . . . . . . . . . . . . . . . . . . . . 22. Office suppl es . . . . . . . . . . . . . . . . . . . . . . . . . 23. Pension and prof t-sharing plans for emp oyees . . 24. Postage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25. R9. bank charges"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":226,"AM":0,"x":34.297,"y":27.353,"w":17.517,"h":0.833,"TU":"10. Car and Truck expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":227,"AM":0,"x":34.372,"y":28.152,"w":17.517,"h":0.833,"TU":"11. Commissions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":228,"AM":0,"x":34.297,"y":28.955,"w":17.443,"h":0.833,"TU":"12. Cost depletion but not percentage depletion"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":229,"AM":1024,"x":34.426,"y":29.763,"w":17.559,"h":0.833,"TU":"13.a. Regular depreciation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXP","EN":0},"TI":230,"AM":1024,"x":34.351,"y":30.494,"w":17.559,"h":0.833,"TU":"13. b. Section 179 expense"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":231,"AM":0,"x":34.351,"y":31.327,"w":17.484,"h":0.833,"TU":"14. Dues and publications"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":232,"AM":0,"x":34.127,"y":32.144,"w":17.708,"h":0.833,"TU":"15. Employee benefit programs other than on Line 23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":233,"AM":0,"x":34.277,"y":32.907,"w":17.634,"h":0.833,"TU":"16. Freight (not includedon Schedule C-1) "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":234,"AM":0,"x":34.277,"y":33.743,"w":17.559,"h":0.833,"TU":"17. Insurance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":235,"AM":0,"x":34.202,"y":34.489,"w":17.634,"h":0.833,"TU":"18. Interest on business indebtedness "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":236,"AM":0,"x":34.277,"y":35.307,"w":17.559,"h":0.833,"TU":"19. Laundry and cleaning"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":237,"AM":0,"x":34.351,"y":36.091,"w":17.484,"h":0.833,"TU":"20. Legal and professiona services "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MANFEES","EN":0},"TI":238,"AM":0,"x":34.297,"y":36.859,"w":17.518,"h":0.833,"TU":"21. Management fees "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":239,"AM":0,"x":34.297,"y":37.676,"w":17.518,"h":0.833,"TU":"22. Office supplies "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":240,"AM":0,"x":34.275,"y":38.552,"w":17.517,"h":0.833,"TU":"23. Pensionand profit-sharing plans for employees "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":241,"AM":0,"x":34.447,"y":39.245,"w":17.518,"h":0.833,"TU":"24. Postage"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":242,"AM":0,"x":34.447,"y":40.072,"w":17.592,"h":0.833,"TU":"25. Rent on business property"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":243,"AM":0,"x":34.447,"y":40.832,"w":17.518,"h":0.833,"TU":"26. Repairs"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBFEES","EN":0},"TI":244,"AM":0,"x":34.372,"y":41.642,"w":17.667,"h":0.833,"TU":"27. Subcontractor fees"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":245,"AM":0,"x":77.598,"y":24.218,"w":18.233,"h":0.833,"TU":"28. Supplies"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":246,"AM":0,"x":77.523,"y":24.931,"w":18.232,"h":0.833,"TU":"29. Taxes"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":247,"AM":0,"x":77.571,"y":25.698,"w":18.233,"h":0.833,"TU":"30. Telephone"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":248,"AM":0,"x":77.496,"y":26.522,"w":18.233,"h":0.833,"TU":"31. Travel and entertainment"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":249,"AM":0,"x":77.506,"y":27.318,"w":18.233,"h":0.833,"TU":"32. Utilities"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":250,"AM":0,"x":77.464,"y":28.105,"w":18.233,"h":0.833,"TU":"33. Wages"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_1_","EN":0},"TI":251,"AM":0,"x":57.327,"y":29.801,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_1_","EN":0},"TI":252,"AM":0,"x":77.57,"y":29.767,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_2_","EN":0},"TI":253,"AM":0,"x":57.38,"y":30.59,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_2_","EN":0},"TI":254,"AM":0,"x":77.457,"y":30.559,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_3_","EN":0},"TI":255,"AM":0,"x":57.431,"y":31.33,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_3_","EN":0},"TI":256,"AM":0,"x":77.533,"y":31.335,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_4_","EN":0},"TI":257,"AM":0,"x":57.581,"y":32.199,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_4_","EN":0},"TI":258,"AM":0,"x":77.473,"y":32.142,"w":18.232,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_5_","EN":0},"TI":259,"AM":0,"x":57.515,"y":32.962,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_5_","EN":0},"TI":260,"AM":0,"x":77.505,"y":32.935,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_6_","EN":0},"TI":261,"AM":0,"x":57.431,"y":33.791,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_6_","EN":0},"TI":262,"AM":0,"x":77.59,"y":33.793,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_7_","EN":0},"TI":263,"AM":0,"x":57.281,"y":34.608,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_7_","EN":0},"TI":264,"AM":0,"x":77.512,"y":34.578,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_8_","EN":0},"TI":265,"AM":0,"x":57.431,"y":35.398,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_8_","EN":0},"TI":266,"AM":0,"x":77.598,"y":35.429,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_9_","EN":0},"TI":267,"AM":0,"x":57.356,"y":36.235,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_9_","EN":0},"TI":268,"AM":0,"x":77.555,"y":36.222,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_10_","EN":0},"TI":269,"AM":0,"x":57.326,"y":37.052,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_10_","EN":0},"TI":270,"AM":0,"x":77.415,"y":37.046,"w":18.232,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T_11_","EN":0},"TI":271,"AM":0,"x":57.326,"y":37.89,"w":18.191,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32_11_","EN":0},"TI":272,"AM":0,"x":77.598,"y":37.826,"w":18.233,"h":0.833,"TU":"34. Other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32TOT","EN":0},"TI":273,"AM":1024,"x":77.673,"y":38.679,"w":18.233,"h":0.833,"TU":"34. Total other expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":274,"AM":1024,"x":77.523,"y":39.501,"w":18.232,"h":0.833,"TU":"35. Total expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":275,"AM":0,"x":77.507,"y":41.079,"w":18.232,"h":0.833,"TU":"36. Reduce expenses by the total business credits claimed"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":276,"AM":1024,"x":77.381,"y":42.726,"w":18.233,"h":0.84,"TU":"37. Total adjusted expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":278,"AM":1024,"x":77.306,"y":43.886,"w":18.233,"h":0.84,"TU":"38. Net profit or loss"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INVC","EN":0},"TI":201,"AM":0,"x":15.101,"y":11.099,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INVO","EN":0},"TI":209,"AM":0,"x":15.106,"y":11.713,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INVL","EN":0},"TI":218,"AM":0,"x":25.489,"y":11.04,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"INVRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COST","EN":0},"TI":203,"AM":0,"x":15.064,"y":13.149,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOWCOST","EN":0},"TI":219,"AM":0,"x":25.698,"y":13.095,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHER","EN":0},"TI":220,"AM":0,"x":37.731,"y":13.107,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"ACCTRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CHNGY","EN":0},"TI":204,"AM":0,"x":69.191,"y":13.912,"w":2.719,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CHNGN","EN":0},"TI":207,"AM":0,"x":72.42,"y":13.921,"w":2.719,"h":0.833,"checked":false}],"id":{"Id":"CHNGRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOMEY","EN":0},"TI":205,"AM":0,"x":69.159,"y":14.948,"w":2.719,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOMEN","EN":0},"TI":211,"AM":0,"x":72.433,"y":14.968,"w":2.719,"h":0.833,"checked":false}],"id":{"Id":"HOMERB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BIZBX","EN":0},"TI":206,"AM":0,"x":68.161,"y":16.013,"w":3.094,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L36LOSS","EN":0},"TI":277,"AM":1024,"x":72.055,"y":43.769,"w":1.971,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":90.948,"y":46.531,"w":4.5,"l":4.941},{"oc":"#221f1f","x":9.29,"y":46.531,"w":4.5,"l":4.959},{"oc":"#221f1f","x":9.273,"y":3.334,"w":4.5,"l":4.967},{"oc":"#221f1f","x":68.071,"y":5.616,"w":1.5,"l":27.87},{"oc":"#221f1f","x":9.281,"y":5.634,"w":0.75,"l":86.754}],"VLines":[{"oc":"#221f1f","x":95.64,"y":45.5,"w":4.5,"l":1.122},{"oc":"#221f1f","x":9.539,"y":45.5,"w":4.5,"l":1.119},{"oc":"#221f1f","x":13.991,"y":2.253,"w":4.5,"l":1.166},{"oc":"#221f1f","x":68.114,"y":3.391,"w":1.5,"l":2.256}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.24,"y":21.21,"w":66.536,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":21.21,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":21.21,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.776,"y":21.24,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":80.52,"y":21.24,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":75.859,"y":22.147,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":22.147,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.776,"y":22.177,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":80.52,"y":22.177,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":75.859,"y":23.085,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":23.085,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.776,"y":23.115,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":80.52,"y":23.115,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":9.24,"y":24.022,"w":17.965,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.287,"y":24.022,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":24.022,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":24.022,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":24.022,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":24.022,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":24.022,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":24.052,"w":0.082,"h":1.905,"clr":-1},{"oc":"#221f1f","x":37.146,"y":24.052,"w":0.083,"h":1.905,"clr":-1},{"oc":"#221f1f","x":50.717,"y":24.052,"w":0.083,"h":1.905,"clr":-1},{"oc":"#221f1f","x":65.526,"y":24.052,"w":0.083,"h":1.905,"clr":-1},{"oc":"#221f1f","x":75.776,"y":24.052,"w":0.083,"h":1.905,"clr":-1},{"oc":"#221f1f","x":80.52,"y":24.052,"w":0.083,"h":1.905,"clr":-1},{"oc":"#d1d2d3","x":27.287,"y":25.988,"w":9.859,"h":0.855,"clr":-1},{"oc":"#d1d2d3","x":37.228,"y":25.988,"w":13.489,"h":0.855,"clr":-1},{"oc":"#d1d2d3","x":50.799,"y":25.988,"w":14.726,"h":0.855,"clr":-1},{"oc":"#d1d2d3","x":65.608,"y":25.988,"w":10.148,"h":0.855,"clr":-1},{"oc":"#d1d2d3","x":75.859,"y":25.988,"w":4.661,"h":0.855,"clr":-1},{"oc":"#d1d2d3","x":80.603,"y":25.988,"w":15.407,"h":0.855,"clr":-1},{"oc":"#221f1f","x":9.24,"y":25.957,"w":17.965,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.287,"y":25.957,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":25.957,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":25.957,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":25.957,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":25.957,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":25.957,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":25.988,"w":0.082,"h":0.855,"clr":-1},{"oc":"#221f1f","x":37.146,"y":25.988,"w":0.083,"h":0.855,"clr":-1},{"oc":"#221f1f","x":50.717,"y":25.988,"w":0.083,"h":0.855,"clr":-1},{"oc":"#221f1f","x":65.526,"y":25.988,"w":0.083,"h":0.855,"clr":-1},{"oc":"#221f1f","x":75.776,"y":25.988,"w":0.083,"h":0.855,"clr":-1},{"oc":"#221f1f","x":80.52,"y":25.988,"w":0.083,"h":0.855,"clr":-1},{"oc":"#221f1f","x":27.204,"y":26.843,"w":0.082,"h":1.02,"clr":-1},{"oc":"#221f1f","x":37.146,"y":26.843,"w":0.083,"h":1.02,"clr":-1},{"oc":"#221f1f","x":50.717,"y":26.843,"w":0.083,"h":1.02,"clr":-1},{"oc":"#221f1f","x":65.526,"y":26.843,"w":0.083,"h":1.02,"clr":-1},{"oc":"#221f1f","x":75.776,"y":26.843,"w":0.083,"h":1.02,"clr":-1},{"oc":"#221f1f","x":80.52,"y":26.843,"w":0.083,"h":1.02,"clr":-1},{"oc":"#221f1f","x":27.287,"y":27.862,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":27.862,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":27.862,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":27.862,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":27.862,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":27.862,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":27.893,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":27.893,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":27.893,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":27.893,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":27.893,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":27.893,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":28.672,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":28.672,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":28.672,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":28.672,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":28.672,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":28.672,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":28.703,"w":0.082,"h":0.802,"clr":-1},{"oc":"#221f1f","x":37.146,"y":28.703,"w":0.083,"h":0.802,"clr":-1},{"oc":"#221f1f","x":50.717,"y":28.703,"w":0.083,"h":0.802,"clr":-1},{"oc":"#221f1f","x":65.526,"y":28.703,"w":0.083,"h":0.802,"clr":-1},{"oc":"#221f1f","x":75.776,"y":28.703,"w":0.083,"h":0.802,"clr":-1},{"oc":"#221f1f","x":80.52,"y":28.703,"w":0.083,"h":0.802,"clr":-1},{"oc":"#221f1f","x":27.287,"y":29.505,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":29.505,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":29.505,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":29.505,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":29.505,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":29.505,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":29.535,"w":0.082,"h":0.795,"clr":-1},{"oc":"#221f1f","x":37.146,"y":29.535,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":50.717,"y":29.535,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":65.526,"y":29.535,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":75.776,"y":29.535,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":80.52,"y":29.535,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":27.287,"y":30.33,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":30.33,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":30.33,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":30.33,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":30.33,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":30.33,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":30.36,"w":0.082,"h":0.795,"clr":-1},{"oc":"#221f1f","x":37.146,"y":30.36,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":50.717,"y":30.36,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":65.526,"y":30.36,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":75.776,"y":30.36,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":80.52,"y":30.36,"w":0.083,"h":0.795,"clr":-1},{"oc":"#221f1f","x":27.287,"y":31.155,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":31.155,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":31.155,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":31.155,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":31.155,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":31.155,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":31.185,"w":0.082,"h":0.788,"clr":-1},{"oc":"#221f1f","x":37.146,"y":31.185,"w":0.083,"h":0.788,"clr":-1},{"oc":"#221f1f","x":50.717,"y":31.185,"w":0.083,"h":0.788,"clr":-1},{"oc":"#221f1f","x":65.526,"y":31.185,"w":0.083,"h":0.788,"clr":-1},{"oc":"#221f1f","x":75.776,"y":31.185,"w":0.083,"h":0.788,"clr":-1},{"oc":"#221f1f","x":80.52,"y":31.185,"w":0.083,"h":0.788,"clr":-1},{"oc":"#221f1f","x":27.287,"y":31.973,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":31.973,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":31.973,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":31.973,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":31.973,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":31.973,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":32.002,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":32.002,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":32.002,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":32.002,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":32.002,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":32.002,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":32.782,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":32.782,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":32.782,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":32.782,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":32.782,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":32.782,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":32.813,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":32.813,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":32.813,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":32.813,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":32.813,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":32.813,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":33.593,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":33.593,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":33.593,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":33.593,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":33.593,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":33.593,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":33.623,"w":0.082,"h":0.787,"clr":-1},{"oc":"#221f1f","x":37.146,"y":33.623,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":50.717,"y":33.623,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":65.526,"y":33.623,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":75.776,"y":33.623,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":80.52,"y":33.623,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":27.287,"y":34.41,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":34.41,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":34.41,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":34.41,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":34.41,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":34.41,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":34.44,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":34.44,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":34.44,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":34.44,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":34.44,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":34.44,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":35.22,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":35.22,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":35.22,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":35.22,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":35.22,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":35.22,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":35.25,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":35.25,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":35.25,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":35.25,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":35.25,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":35.25,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":36.03,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":36.03,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":36.03,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":36.03,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":36.03,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":36.03,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":36.06,"w":0.082,"h":0.787,"clr":-1},{"oc":"#221f1f","x":37.146,"y":36.06,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":50.717,"y":36.06,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":65.526,"y":36.06,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":75.776,"y":36.06,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":80.52,"y":36.06,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":27.287,"y":36.848,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":36.848,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":36.848,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":36.848,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":36.848,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":36.848,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":36.878,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":36.878,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":36.878,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":36.878,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":36.878,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":36.878,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":37.657,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":37.657,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":37.657,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":37.657,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":37.657,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":37.657,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":37.688,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":37.688,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":37.688,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":37.688,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":37.688,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":37.688,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":38.468,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":38.468,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":38.468,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":38.468,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":38.468,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":38.468,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":38.498,"w":0.082,"h":0.787,"clr":-1},{"oc":"#221f1f","x":37.146,"y":38.498,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":50.717,"y":38.498,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":65.526,"y":38.498,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":75.776,"y":38.498,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":80.52,"y":38.498,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":27.287,"y":39.285,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":39.285,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":39.285,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":39.285,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":39.285,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":39.285,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":39.315,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.146,"y":39.315,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":50.717,"y":39.315,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":65.526,"y":39.315,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":75.776,"y":39.315,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":80.52,"y":39.315,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":27.287,"y":40.095,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":40.095,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":40.095,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":40.095,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":40.095,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":40.095,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":27.204,"y":40.125,"w":0.082,"h":0.787,"clr":-1},{"oc":"#221f1f","x":37.146,"y":40.125,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":50.717,"y":40.125,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":65.526,"y":40.125,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":75.776,"y":40.125,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":80.52,"y":40.125,"w":0.083,"h":0.787,"clr":-1},{"oc":"#221f1f","x":27.287,"y":40.912,"w":9.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.228,"y":40.912,"w":13.489,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.799,"y":40.912,"w":14.726,"h":0.03,"clr":-1},{"oc":"#221f1f","x":65.608,"y":40.912,"w":10.168,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.859,"y":40.912,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":40.912,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.146,"y":40.943,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":50.717,"y":40.943,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":75.776,"y":40.943,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":80.52,"y":40.943,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":37.228,"y":41.7,"w":13.489,"h":0.03,"clr":-1},{"x":50.799,"y":41.7,"w":24.977,"h":0.12,"clr":1},{"oc":"#221f1f","x":75.776,"y":41.7,"w":0.083,"h":0.128,"clr":-1},{"oc":"#221f1f","x":75.859,"y":41.7,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.52,"y":41.7,"w":0.083,"h":0.128,"clr":-1},{"oc":"#221f1f","x":80.603,"y":41.7,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.776,"y":41.828,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":80.52,"y":41.828,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":75.859,"y":42.637,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.603,"y":42.637,"w":15.407,"h":0.03,"clr":-1},{"oc":"#221f1f","x":75.776,"y":42.667,"w":0.083,"h":0.953,"clr":-1},{"oc":"#221f1f","x":75.859,"y":43.62,"w":4.661,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.52,"y":42.667,"w":0.083,"h":0.953,"clr":-1},{"oc":"#221f1f","x":80.603,"y":43.62,"w":15.407,"h":0.03,"clr":-1},{"oc":"#d1d2d3","x":68.31,"y":6.165,"w":27.493,"h":0.06,"clr":-1},{"oc":"#d1d2d3","x":68.145,"y":6.225,"w":0.165,"h":1.26,"clr":-1},{"oc":"#d1d2d3","x":95.803,"y":6.225,"w":0.165,"h":1.26,"clr":-1},{"oc":"#221f1f","x":9.199,"y":7.545,"w":86.666,"h":0.615,"clr":-1},{"oc":"#221f1f","x":9.199,"y":7.485,"w":58.946,"h":0.06,"clr":-1},{"oc":"#d1d2d3","x":68.31,"y":7.485,"w":27.493,"h":0.06,"clr":-1},{"oc":"#221f1f","x":73.074,"y":8.16,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":77.323,"y":8.16,"w":0.083,"h":0.907,"clr":-1},{"oc":"#d1d2d3","x":73.157,"y":10.688,"w":4.146,"h":0.172,"clr":-1},{"oc":"#d1d2d3","x":73.157,"y":9.097,"w":4.146,"h":1.59,"clr":-1},{"oc":"#221f1f","x":50.614,"y":9.067,"w":3.836,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.532,"y":9.067,"w":18.542,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.157,"y":9.067,"w":4.166,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.406,"y":9.067,"w":18.48,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.531,"y":9.097,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":54.45,"y":9.097,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":73.074,"y":9.097,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":77.323,"y":9.097,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":50.614,"y":9.96,"w":3.836,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.532,"y":9.96,"w":18.542,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.531,"y":9.99,"w":0.083,"h":0.87,"clr":-1},{"oc":"#221f1f","x":54.45,"y":9.99,"w":0.083,"h":0.87,"clr":-1},{"oc":"#221f1f","x":73.074,"y":9.99,"w":0.083,"h":0.87,"clr":-1},{"oc":"#221f1f","x":77.323,"y":9.99,"w":0.083,"h":0.87,"clr":-1},{"oc":"#221f1f","x":50.614,"y":10.86,"w":3.836,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.532,"y":10.86,"w":18.542,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.074,"y":10.89,"w":0.083,"h":0.862,"clr":-1},{"oc":"#221f1f","x":77.323,"y":10.89,"w":0.083,"h":0.862,"clr":-1},{"oc":"#221f1f","x":77.406,"y":11.752,"w":18.48,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.074,"y":11.783,"w":0.083,"h":0.862,"clr":-1},{"oc":"#221f1f","x":77.323,"y":11.783,"w":0.083,"h":0.862,"clr":-1},{"oc":"#221f1f","x":77.406,"y":12.645,"w":18.48,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.074,"y":12.675,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":77.323,"y":12.675,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":77.406,"y":13.538,"w":18.48,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.074,"y":13.568,"w":0.083,"h":0.862,"clr":-1},{"oc":"#221f1f","x":77.323,"y":13.568,"w":0.083,"h":0.862,"clr":-1},{"oc":"#221f1f","x":77.406,"y":14.43,"w":18.48,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.074,"y":14.46,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":77.323,"y":14.46,"w":0.083,"h":0.863,"clr":-1},{"oc":"#221f1f","x":77.406,"y":15.322,"w":18.48,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.074,"y":15.353,"w":0.083,"h":0.87,"clr":-1},{"oc":"#221f1f","x":77.323,"y":15.353,"w":0.083,"h":0.87,"clr":-1},{"oc":"#221f1f","x":77.406,"y":16.222,"w":18.48,"h":0.03,"clr":-1},{"oc":"#221f1f","x":73.074,"y":16.252,"w":0.083,"h":0.885,"clr":-1},{"oc":"#221f1f","x":77.323,"y":16.252,"w":0.083,"h":0.885,"clr":-1},{"oc":"#221f1f","x":9.199,"y":17.767,"w":86.666,"h":0.045,"clr":-1},{"oc":"#221f1f","x":9.199,"y":17.137,"w":86.666,"h":0.63,"clr":-1}],"Texts":[{"oc":"#221f1f","x":49.374,"y":2.093,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1203210057","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.004,"y":45.645,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1203210057","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":45.645,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1203210057","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":9.856,"y":21.15,"w":0.63,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.743,"y":21.15,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":49.621,"y":21.15,"w":18.980000000000015,"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":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.856,"y":22.087,"w":0.63,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.743,"y":22.087,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":46.218,"y":22.087,"w":21.84400000000002,"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.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.856,"y":23.025,"w":0.63,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.743,"y":23.025,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":56.634,"y":23.025,"w":12.536000000000007,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":77.424,"y":21.15,"w":1.01,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":77.444,"y":22.087,"w":1.01,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":77.444,"y":23.025,"w":1.01,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":17.405,"y":24.885,"w":1.4969999999999999,"clr":-1,"A":"left","R":[{"T":"(a)","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":31.492,"y":24.908,"w":1.519,"clr":-1,"A":"left","R":[{"T":"(b)","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":43.331,"y":24.893,"w":1.366,"clr":-1,"A":"left","R":[{"T":"(c)","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":57.418,"y":24.9,"w":1.519,"clr":-1,"A":"left","R":[{"T":"(d)","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":67.998,"y":24.352,"w":6.216999999999999,"clr":-1,"A":"left","R":[{"T":"depreciation","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":70.019,"y":24.908,"w":1.441,"clr":-1,"A":"left","R":[{"T":"(e)","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":77.259,"y":23.895,"w":1.851,"clr":-1,"A":"left","R":[{"T":"Life","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":77.506,"y":24.885,"w":1.26,"clr":-1,"A":"left","R":[{"T":"(f)","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":87.571,"y":24.772,"w":1.519,"clr":-1,"A":"left","R":[{"T":"(g)","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":9.856,"y":26.31,"w":0.63,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.743,"y":26.31,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":16.724,"y":26.97,"w":10.376000000000003,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":26.645,"y":26.97,"w":0.738,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":22.334,"y":27.795,"w":2.064,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":24.479,"y":27.795,"w":2.7520000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":24.376,"y":28.628,"w":2.7520000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":19.612,"y":30.278,"w":7.524,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":31.073,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":31.897,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":32.708,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":33.525,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":34.335,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":35.153,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":35.962,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":36.772,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":37.59,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":38.4,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":39.21,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":10.743,"y":40.028,"w":17.548000000000012,"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.","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":9.856,"y":40.83,"w":0.63,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.743,"y":40.83,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":31.451,"y":40.83,"w":3.943999999999999,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":51.539,"y":40.807,"w":19.696000000000016,"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.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":77.444,"y":40.815,"w":1.01,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":77.383,"y":41.842,"w":1.01,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":77.383,"y":42.69,"w":1.01,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":72.659,"y":16.155,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,9.96,0,0],"RA":90}]},{"oc":"#221f1f","x":73.753,"y":23.16,"w":1.305,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC%20","S":-1,"TS":[2,9.96,0,0],"RA":90}]},{"oc":"#221f1f","x":73.752,"y":22.222,"w":1.6099999999999999,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC%20%20","S":-1,"TS":[2,9.96,0,0],"RA":90}]},{"oc":"#221f1f","x":73.752,"y":21.285,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,9.96,0,0],"RA":90}]},{"oc":"#221f1f","x":75.031,"y":42.615,"w":1,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[2,9.96,0,0],"RA":90}]},{"oc":"#221f1f","x":29.305,"y":2.925,"w":1.9080000000000001,"clr":-1,"A":"left","R":[{"T":"(FI)","S":-1,"TS":[2,8.4,0,0]}]},{"oc":"#221f1f","x":9.815,"y":8.115,"w":0.622,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":8.115,"w":1.0259999999999998,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":63.672,"y":8.115,"w":7.964,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.825,"y":8.115,"w":0.622,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.444,"y":8.115,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.815,"y":9.03,"w":0.622,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":9.03,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":13.239,"y":9.03,"w":0.9229999999999999,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":21.075,"y":9.03,"w":28.032000000000004,"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.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":13.239,"y":9.922,"w":0.623,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":13.837,"y":9.922,"w":0.692,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":37.226,"y":9.922,"w":0.692,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":37.926,"y":9.922,"w":11.424000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":51.931,"y":9.015,"w":0.615,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":52.55,"y":9.015,"w":0.9229999999999999,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":51.89,"y":9.915,"w":1.6229999999999998,"clr":-1,"A":"left","R":[{"T":"2b.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":13.239,"y":10.823,"w":0.509,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":13.754,"y":10.822,"w":0.692,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":35.554,"y":10.822,"w":34.368000000000016,"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.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.815,"y":11.715,"w":0.622,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":11.715,"w":1.0259999999999998,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":51.499,"y":11.715,"w":19.332000000000015,"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.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.815,"y":12.6,"w":0.622,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":12.6,"w":1.0259999999999998,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":24.481,"y":12.6,"w":34.952000000000005,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":59.996,"y":12.6,"w":0.692,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":60.696,"y":12.6,"w":10.732000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.815,"y":13.492,"w":0.622,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":13.493,"w":1.0259999999999998,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":28.666,"y":13.493,"w":32.184000000000005,"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.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":61.419,"y":13.492,"w":0.692,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":62.12,"y":13.493,"w":9.348,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.815,"y":14.385,"w":0.622,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":14.385,"w":1.0259999999999998,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":26.543,"y":14.385,"w":33.568000000000005,"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.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":60.697,"y":14.385,"w":0.692,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":61.398,"y":14.385,"w":10.040000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.815,"y":15.277999999999999,"w":0.622,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":15.277000000000001,"w":1.0259999999999998,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":25.12,"y":15.277000000000001,"w":7.272,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":32.712,"y":15.277000000000001,"w":26.648000000000003,"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.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":59.975,"y":15.277999999999999,"w":0.692,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":60.676,"y":15.277000000000001,"w":10.732000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.815,"y":16.17,"w":0.622,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":10.433,"y":16.17,"w":1.0259999999999998,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":64.453,"y":16.013,"w":6.092,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.825,"y":10.823,"w":0.622,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.444,"y":10.822,"w":0.857,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.825,"y":11.715,"w":0.622,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.444,"y":11.715,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.846,"y":12.6,"w":0.622,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.464,"y":12.6,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.825,"y":13.492,"w":0.622,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.444,"y":13.493,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.846,"y":14.385,"w":0.622,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.464,"y":14.385,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.846,"y":15.277999999999999,"w":0.622,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.464,"y":15.277000000000001,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":74.825,"y":16.17,"w":0.622,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":75.444,"y":16.17,"w":0.35,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":9.898,"y":41.745,"w":0.63,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.784,"y":41.745,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":37.803,"y":41.745,"w":29.35600000000003,"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":[2,11.04,0,0]}]},{"oc":"#221f1f","x":72.185,"y":41.745,"w":0.716,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":72.907,"y":41.745,"w":1.08,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":9.898,"y":42.683,"w":0.63,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":10.784,"y":42.682,"w":0.704,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":57.644,"y":42.525,"w":13.252000000000008,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,11.04,0,0]}]},{"oc":"#221f1f","x":20.375,"y":2.468,"w":6.361,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20C%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":20.375,"y":2.925,"w":4.117,"clr":-1,"A":"left","R":[{"T":"PA-40C","S":-1,"TS":[2,8.5891,1,0]}]},{"oc":"#221f1f","x":25.098,"y":2.925,"w":4.018,"clr":-1,"A":"left","R":[{"T":"(09%E2%80%9312)","S":-1,"TS":[2,8.4,0,0]}]},{"oc":"#221f1f","x":20.375,"y":3.4349999999999996,"w":16.671,"clr":-1,"A":"left","R":[{"T":"PA%20DEPARTMENT%20OF%20REVENUE","S":-1,"TS":[2,7.8214,1,0]}]},{"oc":"#221f1f","x":8.969,"y":5.325,"w":23.845999999999997,"clr":-1,"A":"left","R":[{"T":"Name%20of%20owner%20as%20shown%20on%20PA%20tax%20return%3A","S":-1,"TS":[2,9.8763,1,0]}]},{"oc":"#221f1f","x":68.143,"y":5.302,"w":11.5,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":-1,"TS":[2,9.2665,0,0]}]},{"oc":"#221f1f","x":86.045,"y":4.703,"w":9.972999999999999,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":-1,"TS":[2,8.280000000000001,0,0]}]},{"x":9.815,"y":7.305,"w":30.089999999999993,"clr":1,"A":"left","R":[{"T":"SCHEDULE%20C-1%20-%20Cost%20of%20Goods%20Sold%20and%2For%20Operations","S":-1,"TS":[2,10.6395,1,0]}]},{"oc":"#221f1f","x":11.94,"y":8.115,"w":49.43599999999998,"clr":-1,"A":"left","R":[{"T":"Inventory%20at%20beginning%20of%20year%20(if%20different%20from%20last%20year%E2%80%99s%20closing%20inventory%2C%20include%20explanation)","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":14.971,"y":9.922,"w":21.644000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20items%20with%20drawn%20for%20personal%20use%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":11.94,"y":11.715,"w":36.943,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20labor%20(do%20not%20include%20salary%20paid%20to%20yourself%20or%20subcontractor%20fees)%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":15.061,"y":10.822,"w":20.020999999999997,"clr":-1,"A":"left","R":[{"T":"Balance%20(subtract%20Line%202b%20from%20Line%202a)","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":11.94,"y":12.6,"w":11.357,"clr":-1,"A":"left","R":[{"T":"Materials%20and%20supplies%20%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":11.94,"y":13.492,"w":15.016999999999998,"clr":-1,"A":"left","R":[{"T":"Other%20costs%20(include%20schedule)%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":11.94,"y":14.385,"w":13.624999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%201%2C%202c%2C%203%2C%204%20and%205","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":11.94,"y":15.277000000000001,"w":12.325,"clr":-1,"A":"left","R":[{"T":"Inventory%20at%20end%20of%20year","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":11.94,"y":16.17,"w":48.66300000000003,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20goods%20sold%20and%2For%20operations%20(subtract%20Line%207%20from%20Line%206)%20Enter%20here%20and%20on%20Part%20I%2C%20Line%202%20","S":-1,"TS":[2,8.7935,0,0]}]},{"x":9.815,"y":16.897,"w":16.189,"clr":1,"A":"left","R":[{"T":"SCHEDULEC-%202%20-%20Depreciation","S":-1,"TS":[2,10.6395,1,0]}]},{"oc":"#221f1f","x":9.217,"y":17.55,"w":72.47999999999998,"clr":-1,"A":"left","R":[{"T":"PA%20PIT%20law%20does%20%20not%20permit%20the%20bonus%20depreciation%20elections%20added%20to%20the%20Internal%20Revenue%20Code%20(IRC)%20in%202002%2C%202003%2C%202008%20and%202009.%20PA%20PIT%20","S":-1,"TS":[2,9.9759,0,0]}]},{"oc":"#221f1f","x":9.217,"y":18.15,"w":68.87200000000001,"clr":-1,"A":"left","R":[{"T":"law%20limits%20IRC%20Section%20179%20current%20expensing%20to%20the%20expensing%20allowed%20at%20the%20time%20you%20placed%20the%20asset%20into%20service%20or%20in%20effect%20under%20","S":-1,"TS":[2,10.212399999999999,0,0]}]},{"oc":"#221f1f","x":9.217,"y":18.75,"w":65.89500000000002,"clr":-1,"A":"left","R":[{"T":"the%20IRC%20of%201986%20as%20amended%20Jan.1%2C%201997.%20For%20each%20asset%2C%20you%20must%20also%20report%20straight-line%20depreciation%2C%20unless%20not%20using%20an%20optional%20","S":-1,"TS":[2,10.212399999999999,0,0]}]},{"oc":"#221f1f","x":9.217,"y":19.35,"w":67.98400000000005,"clr":-1,"A":"left","R":[{"T":"accelerated%20depreciation%20method.%20You%20need%20straight-line%20depreciation%20to%20take%20advantage%20of%20Pennsylvania%E2%80%99s%20Tax%20Benefit%20Rule%20when%20you%20sell%20","S":-1,"TS":[2,9.9759,0,0]}]},{"oc":"#221f1f","x":9.217,"y":19.95,"w":27.76100000000001,"clr":-1,"A":"left","R":[{"T":"the%20asset.%20See%20the%20PA%20PIT%20Guide%20for%20the%20Tax%20Benefit%20Rule.","S":-1,"TS":[2,10.212399999999999,0,0]}]},{"oc":"#221f1f","x":12.269,"y":21.15,"w":31.003,"clr":-1,"A":"left","R":[{"T":"Total%20Section%20179%20depreciation%20(donotin%20clude%20in%20items%20below)","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":12.269,"y":22.088,"w":28.056,"clr":-1,"A":"left","R":[{"T":"Less%3A%20Section%20179%20depreciation%20included%20in%20Schedule%20C-1","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":12.269,"y":23.025,"w":36.231999999999985,"clr":-1,"A":"left","R":[{"T":"Balance%20(subtract%20Line%202%20from%20Line%201).%20Enter%20here%20and%20on%20Part%20II%2C%20Line%2013b","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":12.991,"y":23.895,"w":11.684999999999997,"clr":-1,"A":"left","R":[{"T":"Description%20of%20property","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":29.038,"y":23.91,"w":7.077,"clr":-1,"A":"left","R":[{"T":"Date%20acquired","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":39.763,"y":23.903,"w":9.545,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":52.921,"y":23.81,"w":12.296000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation%20allowed%20or%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":52.921,"y":24.345,"w":11.701999999999998,"clr":-1,"A":"left","R":[{"T":"allowable%20in%20prior%20years","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":65.977,"y":23.91,"w":11.148000000000003,"clr":-1,"A":"left","R":[{"T":"Method%20of%20calculating%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":76.558,"y":24.323,"w":3.4040000000000004,"clr":-1,"A":"left","R":[{"T":"or%20rate","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":82.621,"y":23.843,"w":12.900999999999998,"clr":-1,"A":"left","R":[{"T":"Depreciation%20for%20this%20year","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":12.269,"y":26.31,"w":9.413,"clr":-1,"A":"left","R":[{"T":"Other%20depreciation%3A","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":12.249,"y":27.795,"w":10.766,"clr":-1,"A":"left","R":[{"T":"Furniture%20and%20fixtures","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":12.249,"y":28.628,"w":13.407000000000002,"clr":-1,"A":"left","R":[{"T":"Transportation%20equipment%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":12.249,"y":29.453,"w":16.897000000000002,"clr":-1,"A":"left","R":[{"T":"Machinery%20and%20other%20equipment%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":12.249,"y":30.153,"w":7.736000000000001,"clr":-1,"A":"left","R":[{"T":"Other%20(specify)%20","S":-1,"TS":[2,7.8,0,0]}]},{"oc":"#221f1f","x":12.269,"y":40.83,"w":15.735000000000001,"clr":-1,"A":"left","R":[{"T":"Totals%20(add%20all%20Line%204%20amounts)","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":12.311,"y":41.745,"w":21.270000000000003,"clr":-1,"A":"left","R":[{"T":"Any%20depreciation%20included%20in%20Schedule%20C-1","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":12.311,"y":42.683,"w":36.560999999999986,"clr":-1,"A":"left","R":[{"T":"Balance%20(subtract%20Line%206%20from%20Line%205).%20Enter%20here%20and%20on%20Part%20II%2C%20Line%2013a.","S":-1,"TS":[2,9.7394,0,0]}]},{"oc":"#221f1f","x":48.982,"y":45.667,"w":3.8160000000000003,"clr":-1,"A":"left","R":[{"T":"SIDE%202","S":-1,"TS":[2,14.3158,1,0]}]},{"oc":"#221f1f","x":14.95,"y":9.03,"w":5.497999999999999,"clr":-1,"A":"left","R":[{"T":"Purchases%20","S":-1,"TS":[2,8.7935,0,0]}]},{"oc":"#221f1f","x":12.249,"y":26.97,"w":5.157000000000001,"clr":-1,"A":"left","R":[{"T":"Buildings%20%20","S":-1,"TS":[2,7.8,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":279,"AM":1024,"x":9.119,"y":6.564,"w":58.575,"h":0.833,"TU":"Name of owner as shown on PA tax return"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":280,"AM":1024,"x":68.636,"y":6.416,"w":26.892,"h":1.023,"TU":"Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1","EN":0},"TI":281,"AM":0,"x":77.509,"y":8.182,"w":18.336,"h":0.885,"TU":"1. Inventory at beginning of year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2A","EN":0},"TI":282,"AM":0,"x":54.615,"y":9.135,"w":18.398,"h":0.833,"TU":"2. a. Purchases"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2B","EN":0},"TI":283,"AM":0,"x":54.615,"y":10,"w":18.398,"h":0.833,"TU":"2b. Cost of item with drawn fro personal use"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2C","EN":0},"TI":284,"AM":1024,"x":77.529,"y":10.788,"w":18.336,"h":0.885,"TU":"2c. Balance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C3","EN":0},"TI":285,"AM":0,"x":77.509,"y":11.793,"w":18.336,"h":0.833,"TU":"3. Cost of labor"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C4","EN":0},"TI":286,"AM":0,"x":77.509,"y":12.712,"w":18.336,"h":0.833,"TU":"4. Materials and supplies"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C5","EN":0},"TI":287,"AM":0,"x":77.509,"y":13.605,"w":18.336,"h":0.833,"TU":"5. Other costs"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C6","EN":0},"TI":288,"AM":1024,"x":77.509,"y":14.498,"w":18.336,"h":0.833,"TU":"6. Add lines 1, 2c, 3, 4, and 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C7","EN":0},"TI":289,"AM":0,"x":77.509,"y":15.39,"w":18.336,"h":0.833,"TU":"7. Inventory at end of year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C8","EN":0},"TI":290,"AM":1024,"x":77.509,"y":16.29,"w":18.336,"h":0.855,"TU":"8. Cost of goods sold and /or operations"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1G","EN":0},"TI":291,"AM":0,"x":80.706,"y":21.277,"w":15.262,"h":0.87,"TU":"1. Total section 179 depreciation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1GLESS","EN":0},"TI":292,"AM":0,"x":80.706,"y":22.215,"w":15.262,"h":0.87,"TU":"2. Less"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1GBAL","EN":0},"TI":293,"AM":1024,"x":80.706,"y":23.152,"w":15.262,"h":0.87,"TU":"3. Balance"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2AB","EN":0},"TI":294,"AM":0,"x":27.543,"y":26.983,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AC","EN":0},"TI":295,"AM":0,"x":37.393,"y":27.004,"w":13.179,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AD","EN":0},"TI":296,"AM":0,"x":50.964,"y":26.95,"w":14.417,"h":0.835,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2AE","EN":0},"TI":297,"AM":0,"x":65.84,"y":26.984,"w":9.85,"h":0.835,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2AF","EN":0},"TI":298,"AM":0,"x":76.119,"y":26.977,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AG","EN":0},"TI":299,"AM":0,"x":80.788,"y":26.896,"w":15.097,"h":0.889,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BB","EN":0},"TI":300,"AM":0,"x":27.493,"y":27.869,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2BC","EN":0},"TI":301,"AM":0,"x":37.311,"y":27.93,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2BD","EN":0},"TI":302,"AM":0,"x":50.882,"y":27.93,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2BE","EN":0},"TI":303,"AM":0,"x":65.691,"y":27.93,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2BF","EN":0},"TI":304,"AM":0,"x":75.996,"y":27.91,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2BG","EN":0},"TI":305,"AM":0,"x":80.706,"y":27.903,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2CB","EN":0},"TI":306,"AM":0,"x":27.51,"y":28.707,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2CC","EN":0},"TI":307,"AM":0,"x":37.311,"y":28.74,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2CD","EN":0},"TI":308,"AM":0,"x":50.987,"y":28.786,"w":14.357,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2CE","EN":0},"TI":309,"AM":0,"x":65.691,"y":28.767,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2CF","EN":0},"TI":310,"AM":0,"x":76.02,"y":28.729,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2CG","EN":0},"TI":311,"AM":0,"x":80.706,"y":28.74,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2DB","EN":0},"TI":312,"AM":0,"x":27.476,"y":29.563,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2DC","EN":0},"TI":313,"AM":0,"x":37.311,"y":29.573,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2DD","EN":0},"TI":314,"AM":0,"x":50.882,"y":29.573,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2DE","EN":0},"TI":315,"AM":0,"x":65.691,"y":29.573,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2DF","EN":0},"TI":316,"AM":0,"x":75.949,"y":29.552,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2DG","EN":0},"TI":317,"AM":0,"x":80.706,"y":29.573,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_1_","EN":0},"TI":318,"AM":0,"x":11.164,"y":31.027,"w":15.254,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_1_","EN":0},"TI":319,"AM":0,"x":27.401,"y":31.257,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_1_","EN":0},"TI":320,"AM":0,"x":37.311,"y":31.228,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_1_","EN":0},"TI":321,"AM":0,"x":50.882,"y":31.165,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_1_","EN":0},"TI":322,"AM":0,"x":65.691,"y":31.2,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_1_","EN":0},"TI":323,"AM":0,"x":76.133,"y":31.214,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_1_","EN":0},"TI":324,"AM":0,"x":80.706,"y":31.165,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)_"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_2_","EN":0},"TI":325,"AM":0,"x":11.314,"y":31.824,"w":15.18,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_2_","EN":0},"TI":326,"AM":0,"x":27.468,"y":32.051,"w":9.549,"h":0.833,"TU":"Date acqu red (b)_4. Other depreciation: Bui d ngs . . . . . . . . . . . . . . . Furniture and fixtures . . . . . . . Transportation equ pment . . . . Machinery and other equ pment Other (specify) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_2_","EN":0},"TI":327,"AM":0,"x":37.311,"y":32.038,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_2_","EN":0},"TI":328,"AM":0,"x":50.882,"y":31.948,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_2_","EN":0},"TI":329,"AM":0,"x":65.691,"y":32.038,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_2_","EN":0},"TI":330,"AM":0,"x":76.083,"y":32.006,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_2_","EN":0},"TI":331,"AM":0,"x":80.706,"y":31.975,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_3_","EN":0},"TI":332,"AM":0,"x":11.239,"y":32.685,"w":15.255,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_3_","EN":0},"TI":333,"AM":0,"x":27.373,"y":32.856,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_3_","EN":0},"TI":334,"AM":0,"x":37.311,"y":32.848,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_3_","EN":0},"TI":335,"AM":0,"x":50.882,"y":32.785,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_3_","EN":0},"TI":336,"AM":0,"x":65.691,"y":32.848,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_3_","EN":0},"TI":337,"AM":0,"x":76.109,"y":32.794,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_3_","EN":0},"TI":338,"AM":0,"x":80.706,"y":32.785,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_4_","EN":0},"TI":339,"AM":0,"x":11.239,"y":33.51,"w":15.18,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_4_","EN":0},"TI":340,"AM":0,"x":27.264,"y":33.697,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_4_","EN":0},"TI":341,"AM":0,"x":37.311,"y":33.665,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_4_","EN":0},"TI":342,"AM":0,"x":50.829,"y":33.638,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_4_","EN":0},"TI":343,"AM":0,"x":65.691,"y":33.665,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_4_","EN":0},"TI":344,"AM":0,"x":76.087,"y":33.748,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_4_","EN":0},"TI":345,"AM":0,"x":80.706,"y":33.602,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_5_","EN":0},"TI":346,"AM":0,"x":11.239,"y":34.3,"w":15.18,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_5_","EN":0},"TI":347,"AM":0,"x":27.356,"y":34.507,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_5_","EN":0},"TI":348,"AM":0,"x":37.236,"y":34.475,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_5_","EN":0},"TI":349,"AM":0,"x":50.882,"y":34.475,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_5_","EN":0},"TI":350,"AM":0,"x":65.691,"y":34.475,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_5_","EN":0},"TI":351,"AM":0,"x":76.115,"y":34.5,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_5_","EN":0},"TI":352,"AM":0,"x":80.706,"y":34.413,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_6_","EN":0},"TI":353,"AM":0,"x":11.239,"y":35.11,"w":15.18,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_6_","EN":0},"TI":354,"AM":0,"x":27.248,"y":35.301,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_6_","EN":0},"TI":355,"AM":0,"x":37.311,"y":35.285,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_6_","EN":0},"TI":356,"AM":0,"x":50.882,"y":35.223,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_6_","EN":0},"TI":357,"AM":0,"x":65.766,"y":35.285,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_6_","EN":0},"TI":358,"AM":0,"x":76.186,"y":35.323,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_6_","EN":0},"TI":359,"AM":0,"x":80.706,"y":35.25,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_7_","EN":0},"TI":360,"AM":0,"x":11.239,"y":35.92,"w":15.329,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_7_","EN":0},"TI":361,"AM":0,"x":27.215,"y":36.094,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_7_","EN":0},"TI":362,"AM":0,"x":37.386,"y":36.102,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_7_","EN":0},"TI":363,"AM":0,"x":50.882,"y":36.04,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_7_","EN":0},"TI":364,"AM":0,"x":65.691,"y":36.102,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_7_","EN":0},"TI":365,"AM":0,"x":76.037,"y":36.091,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_7_","EN":0},"TI":366,"AM":0,"x":80.706,"y":36.04,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_8_","EN":0},"TI":367,"AM":0,"x":11.239,"y":36.737,"w":15.18,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_8_","EN":0},"TI":368,"AM":0,"x":27.181,"y":36.907,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_8_","EN":0},"TI":369,"AM":0,"x":37.311,"y":36.913,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_8_","EN":0},"TI":370,"AM":0,"x":50.882,"y":36.85,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_8_","EN":0},"TI":371,"AM":0,"x":65.691,"y":36.913,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_8_","EN":0},"TI":372,"AM":0,"x":76.063,"y":36.898,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_8_","EN":0},"TI":373,"AM":0,"x":80.706,"y":36.85,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_9_","EN":0},"TI":374,"AM":0,"x":11.239,"y":37.547,"w":15.255,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_9_","EN":0},"TI":375,"AM":0,"x":27.445,"y":37.745,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_9_","EN":0},"TI":376,"AM":0,"x":37.311,"y":37.723,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_9_","EN":0},"TI":377,"AM":0,"x":50.882,"y":37.7,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_9_","EN":0},"TI":378,"AM":0,"x":65.691,"y":37.723,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_9_","EN":0},"TI":379,"AM":0,"x":76.11,"y":37.698,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_9_","EN":0},"TI":380,"AM":0,"x":80.706,"y":37.66,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_10_","EN":0},"TI":381,"AM":0,"x":11.239,"y":38.385,"w":15.404,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_10_","EN":0},"TI":382,"AM":0,"x":27.336,"y":38.539,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_10_","EN":0},"TI":383,"AM":0,"x":37.311,"y":38.54,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_10_","EN":0},"TI":384,"AM":0,"x":50.882,"y":38.498,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_10_","EN":0},"TI":385,"AM":0,"x":65.691,"y":38.54,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_10_","EN":0},"TI":386,"AM":0,"x":76.039,"y":38.541,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_10_","EN":0},"TI":387,"AM":0,"x":80.706,"y":38.477,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_11_","EN":0},"TI":388,"AM":0,"x":11.239,"y":39.202,"w":15.404,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_11_","EN":0},"TI":389,"AM":0,"x":27.418,"y":39.362,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_11_","EN":0},"TI":390,"AM":0,"x":37.311,"y":39.35,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_11_","EN":0},"TI":391,"AM":0,"x":50.957,"y":39.3,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_11_","EN":0},"TI":392,"AM":0,"x":65.691,"y":39.35,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_11_","EN":0},"TI":393,"AM":0,"x":76.017,"y":39.351,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_11_","EN":0},"TI":394,"AM":0,"x":80.706,"y":39.288,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FA_12_","EN":0},"TI":395,"AM":0,"x":11.155,"y":40.022,"w":15.255,"h":0.833,"TU":"4. Other"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2FB_12_","EN":0},"TI":396,"AM":0,"x":27.401,"y":40.188,"w":9.549,"h":0.833,"TU":"Date acquired (b)","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FC_12_","EN":0},"TI":397,"AM":0,"x":37.434,"y":40.152,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FD_12_","EN":0},"TI":398,"AM":0,"x":50.882,"y":40.152,"w":14.582,"h":0.833,"TU":"Depreciat on allowed or allowable in prior years (d)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FE_12_","EN":0},"TI":399,"AM":0,"x":65.766,"y":40.179,"w":10.024,"h":0.833,"TU":"Method of calculating depreciation(e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2FF_12_","EN":0},"TI":400,"AM":0,"x":76.032,"y":40.208,"w":4.331,"h":0.833,"TU":"Life or rate (f)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2FG_12_","EN":0},"TI":401,"AM":0,"x":80.706,"y":40.125,"w":15.262,"h":0.833,"TU":"Depreciat on for this year (g)_4. Other depreciation: Bui d ngs . . . . . . . . . . . . . . . Furniture and fixtures . . . . . . . Transportation equ pment . . . . Machinery and other equ pment Other (specify)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3C","EN":0},"TI":402,"AM":1024,"x":37.311,"y":41.007,"w":13.344,"h":0.833,"TU":"Cost or other basis (c)_"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3G","EN":0},"TI":403,"AM":1024,"x":80.706,"y":40.98,"w":15.262,"h":0.833,"TU":"5. Totals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4G","EN":0},"TI":404,"AM":0,"x":80.706,"y":41.76,"w":15.262,"h":0.877,"TU":"6. Any depreciation included in Schedule C-1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5G","EN":0},"TI":405,"AM":1024,"x":80.706,"y":42.705,"w":15.262,"h":0.915,"TU":"7. Balance"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/PASCHOC.content.txt b/test/data/pa/form/PASCHOC.content.txt new file mode 100755 index 00000000..e7a3dab5 --- /dev/null +++ b/test/data/pa/form/PASCHOC.content.txt @@ -0,0 +1,295 @@ +1. + + +2. + + +3. + + +4. + + +5. + + +6. + + +7. + + +8. + + +9. + + +10. + + +11. + + +12. + + +13. + + +14. + + + +15. + + +2013 + + +(08-13) +(I) + + +1303010027 + + + + + +2013 + +Name of the individual or fiduciary claiming the credit(s). +Married taxpayers must file separate tax returns. + + + + + +Credit + +Description + +Code + +Number + + + + + +. . + . . . . . . . . . . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1303010027 + + +1303010027 + +Identification Number +If you received more than one type of other (restricted) credit as an owner of a pass-through entity, that entity should have +provided you with a breakdown by credit type of the amounts of credits you are eligible to claim. Enter the amount from the +breakdown statement on the appropriate lines of this schedule. If all tax credits listed on this schedule are passed through to you +from pass-through entities and the amount on that schedule does not include a resident credit from another state or country, the +total on Line 15 should equal the sum of the amounts of Total Other Credits from Line 9 of your RK-1(s) or Line 7 of your NRK-1(s). +3. PA Research and Development Tax Credit. +1. PA Employment Incentive Payments Credit. . . . . . . . . . . . +2. PA Job Creation Tax Credit. . . . . . . . . . . . . . . . . . . . . . . +4. PA Film Production Tax Credit. . . . . . . . . . . . . . . . . . . . . . . +5. PA Keystone Innovation Zone Tax Credit . . . . . . . . . . . . . . +6. PA Resource Enhancement and Protection Tax Credit . . . . . +7. PA Neighborhood Assistance Program Tax Credit . . . . . . . . +8. PA Strategic Development Area Job Creation Tax Credit . . . +9. PA Educational Improvement Tax Credit . . . . . . . . . . . . . . +10. PA Opportunity Scholarship Tax Credit . . . . . . . . . +11. Keystone Special Development Zone Tax Credit . . . . . . . . . +12. Historic Preservation Incentive Tax Credit . . . . . . . . . . . . . +13. Community-Based Services Tax Credit . . . . . . . . . . . . . . . +15. Total PA Other Credits. Add Lines 1 through 14. Enter the total here +and on Line 23 of Form PA-40 or Line 14 of Form PA-41 . . . . . . . . . . . . . . . . . . . . . . . . . +PA SCHEDULE OC – Other Credits +PA DEPARTMENT OF REVENUE +PA SCHEDULE OC +OFFICIAL USE ONLY +PAGE 1 +Awardee Tax ID +14. Other restricted credits not listed above. Enter type: +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/PASCHOC.fields.json b/test/data/pa/form/PASCHOC.fields.json new file mode 100755 index 00000000..30b44585 --- /dev/null +++ b/test/data/pa/form/PASCHOC.fields.json @@ -0,0 +1 @@ +[{"id":"OCNAME","type":"alpha","calc":true,"value":""},{"id":"OCSSN","type":"ssn","calc":true,"value":""},{"id":"CRCODE1","type":"alpha","calc":false,"value":""},{"id":"AWDTX1","type":"alpha","calc":false,"value":""},{"id":"OCL1","type":"number","calc":false,"value":""},{"id":"CRCODE2","type":"alpha","calc":false,"value":""},{"id":"AWDTX2","type":"alpha","calc":false,"value":""},{"id":"OCL2","type":"number","calc":false,"value":""},{"id":"CRCODE3","type":"alpha","calc":false,"value":""},{"id":"AWDTX3","type":"alpha","calc":false,"value":""},{"id":"OCL3","type":"number","calc":false,"value":""},{"id":"CRCODE4","type":"alpha","calc":false,"value":""},{"id":"AWDTX4","type":"alpha","calc":false,"value":""},{"id":"OCL4","type":"number","calc":false,"value":""},{"id":"CRCODE6","type":"alpha","calc":false,"value":""},{"id":"AWDTX6","type":"alpha","calc":false,"value":""},{"id":"OCL6","type":"number","calc":false,"value":""},{"id":"CRCODE7","type":"alpha","calc":false,"value":""},{"id":"AWDTX7","type":"alpha","calc":false,"value":""},{"id":"OCL7","type":"number","calc":false,"value":""},{"id":"CRCODE8","type":"alpha","calc":false,"value":""},{"id":"AWDTX8","type":"alpha","calc":false,"value":""},{"id":"OCL8","type":"number","calc":false,"value":""},{"id":"CRCODE9","type":"alpha","calc":false,"value":""},{"id":"AWDTX9","type":"alpha","calc":false,"value":""},{"id":"OCL9","type":"number","calc":false,"value":""},{"id":"CRCODE10","type":"alpha","calc":false,"value":""},{"id":"AWDTX10","type":"alpha","calc":false,"value":""},{"id":"OCL10","type":"number","calc":false,"value":""},{"id":"CRCODE12","type":"alpha","calc":false,"value":""},{"id":"AWDTX11","type":"alpha","calc":false,"value":""},{"id":"OCL12","type":"number","calc":false,"value":""},{"id":"CRKEY","type":"alpha","calc":false,"value":""},{"id":"KEYTX1","type":"alpha","calc":false,"value":""},{"id":"KEYTX2","type":"number","calc":false,"value":""},{"id":"CRHIST","type":"alpha","calc":false,"value":""},{"id":"AWDHIST","type":"alpha","calc":false,"value":""},{"id":"HISTPRES","type":"number","calc":false,"value":""},{"id":"CRCOMMUN","type":"alpha","calc":false,"value":""},{"id":"AWDCOMM","type":"alpha","calc":false,"value":""},{"id":"COMMBASE","type":"number","calc":false,"value":""},{"id":"CRTYPE","type":"alpha","calc":false,"value":""},{"id":"CRCODE14","type":"alpha","calc":false,"value":""},{"id":"AWDTX13","type":"alpha","calc":false,"value":""},{"id":"RESTCR","type":"number","calc":false,"value":""},{"id":"TOTOC","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/PASCHOC.json b/test/data/pa/form/PASCHOC.json new file mode 100755 index 00000000..c80cf8ef --- /dev/null +++ b/test/data/pa/form/PASCHOC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA Schedule OC - Other Credits - Posted 09-17-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#211e1f","x":9.298,"y":3.625,"w":4.5,"l":4.959},{"oc":"#211e1f","x":9.316,"y":34.459,"w":4.5,"l":4.941},{"oc":"#211e1f","x":90.956,"y":34.422,"w":4.5,"l":4.933},{"oc":"#211e1f","x":20.109,"y":4.781,"w":0.75,"l":75.797},{"oc":"#211e1f","x":9.367,"y":5.641,"w":1.5,"l":86.556},{"oc":"#211e1f","x":9.419,"y":7.509,"w":0.75,"l":86.625}],"VLines":[{"oc":"#211e1f","x":13.991,"y":2.547,"w":4.5,"l":1.131},{"oc":"#211e1f","x":9.565,"y":33.428,"w":4.5,"l":1.119},{"oc":"#211e1f","x":95.649,"y":33.391,"w":4.5,"l":1.122}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#211e1f","x":73.549,"y":12.015,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":12.045,"w":0.083,"h":1.012,"clr":-1},{"oc":"#211e1f","x":76.911,"y":12.045,"w":0.083,"h":1.012,"clr":-1},{"oc":"#211e1f","x":92.008,"y":12.045,"w":0.083,"h":1.012,"clr":-1},{"oc":"#211e1f","x":95.968,"y":12.045,"w":0.083,"h":1.012,"clr":-1},{"oc":"#211e1f","x":73.549,"y":13.057,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":13.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":76.911,"y":13.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":92.008,"y":13.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":95.968,"y":13.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":73.549,"y":14.063,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":14.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":14.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":14.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":14.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":15.06,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":15.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":15.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":15.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":15.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":16.058,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":16.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":76.911,"y":16.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":92.008,"y":16.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":95.968,"y":16.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":73.549,"y":17.063,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":17.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":17.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":17.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":17.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":18.06,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":18.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":18.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":18.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":18.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":19.058,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":19.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":76.911,"y":19.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":92.008,"y":19.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":95.968,"y":19.087,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":73.549,"y":20.063,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":20.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":20.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":20.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":20.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":21.06,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":21.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":21.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":21.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":21.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":22.058,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":22.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":76.911,"y":22.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":92.008,"y":22.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":95.968,"y":22.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":73.549,"y":23.063,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":23.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":23.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":23.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":23.093,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":24.06,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":24.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":76.911,"y":24.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":92.008,"y":24.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":95.968,"y":24.09,"w":0.083,"h":0.968,"clr":-1},{"oc":"#211e1f","x":73.549,"y":25.058,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":25.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":76.911,"y":25.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":92.008,"y":25.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":95.968,"y":25.088,"w":0.083,"h":0.975,"clr":-1},{"oc":"#211e1f","x":73.549,"y":26.063,"w":22.502,"h":0.03,"clr":-1},{"oc":"#211e1f","x":73.549,"y":26.093,"w":0.083,"h":1.62,"clr":-1},{"oc":"#211e1f","x":73.549,"y":27.683,"w":3.362,"h":0.03,"clr":-1},{"oc":"#211e1f","x":76.911,"y":26.093,"w":0.083,"h":1.62,"clr":-1},{"oc":"#211e1f","x":76.993,"y":27.683,"w":15.015,"h":0.03,"clr":-1},{"oc":"#211e1f","x":92.008,"y":26.093,"w":0.083,"h":1.62,"clr":-1},{"oc":"#211e1f","x":92.091,"y":27.683,"w":3.877,"h":0.03,"clr":-1},{"oc":"#211e1f","x":95.968,"y":26.093,"w":0.083,"h":1.62,"clr":-1},{"oc":"#211e1f","x":47.864,"y":25.935,"w":6.435,"h":0.03,"clr":-1},{"x":0,"y":48.794,"w":4.501,"h":0.706,"clr":1},{"x":0,"y":48.794,"w":4.14,"h":0.706,"clr":1}],"Texts":[{"oc":"#211e1f","x":74.804,"y":12.105,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.825,"y":13.103,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.804,"y":14.108,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.804,"y":15.105,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.804,"y":16.103,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.804,"y":17.108,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.804,"y":18.105,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.804,"y":19.103,"w":0.9825999999999999,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74.804,"y":20.108,"w":0.9822,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74,"y":21.105,"w":1.6098999999999999,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74,"y":22.103,"w":1.6098999999999999,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74,"y":23.108,"w":1.6098999999999999,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74,"y":24.105,"w":1.6098999999999999,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74,"y":25.103,"w":1.6098999999999999,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":74,"y":26.73,"w":1.6098999999999999,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":37.432,"y":3.87,"w":2.8364,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,18.04,1,0]}]},{"oc":"#211e1f","x":20.128,"y":3.3899999999999997,"w":3.4586,"clr":-1,"A":"left","R":[{"T":"(08-13)%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#211e1f","x":24.376,"y":3.3899999999999997,"w":0.9698000000000001,"clr":-1,"A":"left","R":[{"T":"(I)","S":-1,"TS":[0,11.0308,0,0]}]},{"oc":"#211e1f","x":49.415,"y":2.28,"w":5.6880000000000015,"clr":-1,"A":"left","R":[{"T":"1303010027","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#211e1f","x":89.634,"y":4.725,"w":2.8404,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#211e1f","x":9.403,"y":5.445,"w":28.402000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20of%20the%20individual%20or%20fiduciary%20claiming%20the%20credit(s).%20","S":-1,"TS":[0,9.5029,0,0]}]},{"oc":"#211e1f","x":41.557,"y":5.445,"w":27.427000000000007,"clr":-1,"A":"left","R":[{"T":"Married%20taxpayers%20must%20file%20separate%20tax%20returns.%20","S":-1,"TS":[0,9.6647,1,0]}]},{"oc":"#211e1f","x":55.396,"y":10.575,"w":3.2584,"clr":-1,"A":"left","R":[{"T":"Credit","S":-1,"TS":[0,8.8,1,0]}]},{"oc":"#211e1f","x":53.973,"y":10.958,"w":6.058000000000001,"clr":-1,"A":"left","R":[{"T":"Description","S":-1,"TS":[0,9.0109,1,0]}]},{"oc":"#211e1f","x":55.809,"y":11.333,"w":2.7004,"clr":-1,"A":"left","R":[{"T":"Code","S":-1,"TS":[0,8.8,1,0]}]},{"oc":"#211e1f","x":64.019,"y":11.348,"w":4.3648,"clr":-1,"A":"left","R":[{"T":"Number","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#211e1f","x":42.492,"y":14.123,"w":1.0625999999999998,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":43.81,"y":14.123,"w":7.390199999999998,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":20.045,"y":33.575,"w":5.6880000000000015,"clr":-1,"A":"left","R":[{"T":"1303010027","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#211e1f","x":72.412,"y":33.575,"w":5.6880000000000015,"clr":-1,"A":"left","R":[{"T":"1303010027","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#211e1f","x":75.231,"y":5.445,"w":10.825099999999999,"clr":-1,"A":"left","R":[{"T":"Identification%20Number","S":-1,"TS":[0,9.5029,0,0]}]},{"oc":"#211e1f","x":9.196,"y":7.311999999999999,"w":63.65959999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20more%20than%20one%20type%20of%20other%20(restricted)%20credit%20as%20an%20owner%20of%20a%20pass-through%20entity%2C%20that%20entity%20should%20have%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":9.196,"y":7.912000000000001,"w":63.53260000000006,"clr":-1,"A":"left","R":[{"T":"provided%20you%20with%20a%20breakdown%20by%20credit%20type%20of%20the%20amounts%20of%20credits%20you%20are%20eligible%20to%20claim.%20Enter%20the%20amount%20from%20the%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":9.196,"y":8.505,"w":65.8686,"clr":-1,"A":"left","R":[{"T":"breakdown%20statement%20on%20the%20appropriate%20lines%20of%20this%20schedule.%20If%20all%20tax%20credits%20listed%20on%20this%20schedule%20are%20passed%20through%20to%20you%20","S":-1,"TS":[0,10.4488,0,0]}]},{"oc":"#211e1f","x":9.195,"y":9.098,"w":66.45019999999998,"clr":-1,"A":"left","R":[{"T":"from%20pass-through%20entities%20and%20the%20amount%20on%20that%20schedule%20does%20not%20include%20a%20resident%20credit%20from%20another%20state%20or%20country%2C%20the%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":9.195,"y":9.69,"w":65.9666,"clr":-1,"A":"left","R":[{"T":"total%20on%20Line%2015%20should%20equal%20the%20sum%20of%20the%20amounts%20of%20Total%20Other%20Credits%20from%20Line%209%20of%20your%20RK-1(s)%20or%20Line%207%20of%20your%20NRK-1(s).","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":14.123,"w":23.051199999999998,"clr":-1,"A":"left","R":[{"T":"3.%20%20PA%20Research%20and%20Development%20Tax%20Credit.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":12.12,"w":31.012800000000016,"clr":-1,"A":"left","R":[{"T":"1.%20%20PA%20Employment%20Incentive%20Payments%20Credit.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":13.125,"w":30.91900000000001,"clr":-1,"A":"left","R":[{"T":"2.%20%20PA%20Job%20Creation%20Tax%20Credit.%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.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":15.128,"w":31.49440000000001,"clr":-1,"A":"left","R":[{"T":"4.%20%20PA%20Film%20Production%20Tax%20Credit.%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.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":16.125,"w":31.94930000000002,"clr":-1,"A":"left","R":[{"T":"5.%20%20PA%20Keystone%20Innovation%20Zone%20Tax%20Credit%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":17.13,"w":31.717200000000002,"clr":-1,"A":"left","R":[{"T":"6.%20%20PA%20Resource%20Enhancement%20and%20Protection%20Tax%20Credit%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":18.127,"w":31.327500000000004,"clr":-1,"A":"left","R":[{"T":"7.%20%20PA%20Neighborhood%20Assistance%20Program%20Tax%20Credit%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":19.132,"w":31.330900000000003,"clr":-1,"A":"left","R":[{"T":"8.%20%20PA%20Strategic%20Development%20Area%20Job%20Creation%20Tax%20Credit%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.949,"y":20.13,"w":31.340700000000016,"clr":-1,"A":"left","R":[{"T":"9.%20%20PA%20Educational%20Improvement%20Tax%20Credit%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.124,"y":21.135,"w":27.3023,"clr":-1,"A":"left","R":[{"T":"10.%20PA%20Opportunity%20Scholarship%20Tax%20Credit%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.124,"y":22.132,"w":31.91219999999999,"clr":-1,"A":"left","R":[{"T":"11.%20Keystone%20Special%20Development%20Zone%20Tax%20Credit%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.124,"y":23.137,"w":31.699399999999994,"clr":-1,"A":"left","R":[{"T":"12.%20Historic%20Preservation%20Incentive%20Tax%20Credit%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.124,"y":24.135,"w":31.914999999999992,"clr":-1,"A":"left","R":[{"T":"13.%20Community-Based%20Services%20Tax%20Credit%20%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":10.124,"y":26.137,"w":35.75939999999999,"clr":-1,"A":"left","R":[{"T":"15.%20Total%20PA%20Other%20Credits.%20Add%20Lines%201%20through%2014.%20Enter%20the%20total%20here","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":12.806,"y":26.76,"w":27.6394,"clr":-1,"A":"left","R":[{"T":"and%20on%20Line%2023%20of%20Form%20PA-40%20or%20Line%2014%20of%20Form%20PA-41","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":50.547,"y":26.76,"w":17.097200000000015,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#211e1f","x":36.194,"y":4.725,"w":16.544999999999998,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20OC%20%E2%80%93%20Other%20Credits%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#211e1f","x":20.024,"y":3.893,"w":13.192,"clr":-1,"A":"left","R":[{"T":"PA%20DEPARTMENT%20OF%20REVENUE","S":51,"TS":[0,9,0,0]}]},{"oc":"#211e1f","x":20.024,"y":2.723,"w":8.625,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20OC","S":-1,"TS":[0,14.04,0,0]}]},{"oc":"#211e1f","x":86.746,"y":3.8550000000000004,"w":10.192300000000001,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":-1,"TS":[0,7.8,0,0]}]},{"oc":"#211e1f","x":48.549,"y":33.523,"w":4.0404,"clr":-1,"A":"left","R":[{"T":"PAGE%201","S":-1,"TS":[0,14.8421,1,0]}]},{"oc":"#211e1f","x":61.708,"y":10.973,"w":8.93,"clr":-1,"A":"left","R":[{"T":"Awardee%20Tax%20ID%20","S":-1,"TS":[0,8.8,1,0]}]},{"oc":"#211e1f","x":10.124,"y":25.14,"w":28.034599999999998,"clr":-1,"A":"left","R":[{"T":"14.%20Other%20restricted%20credits%20not%20listed%20above.%20Enter%20type%3A","S":-1,"TS":[0,11.04,0,0]}]},{"x":0.09399999999999997,"y":48.675,"w":21.3141,"clr":0,"A":"left","R":[{"T":"CO%20","S":-1,"TS":[0,15,0,0]}]},{"x":3.7569999999999997,"y":48.675,"w":7.3174,"clr":0,"A":"left","R":[{"T":"-%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.015,"y":48.675,"w":41.2816,"clr":0,"A":"left","R":[{"T":"Credits%20","S":-1,"TS":[0,15,0,0]}]},{"x":12.116,"y":48.675,"w":39.949600000000004,"clr":0,"A":"left","R":[{"T":"carried%20","S":-1,"TS":[0,15,0,0]}]},{"x":18.99,"y":48.675,"w":26.6395,"clr":0,"A":"left","R":[{"T":"over%20","S":-1,"TS":[0,15,0,0]}]},{"x":23.573,"y":48.675,"w":27.2995,"clr":0,"A":"left","R":[{"T":"from%20","S":-1,"TS":[0,15,0,0]}]},{"x":28.268,"y":48.675,"w":9.9934,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,15,0,0]}]},{"x":29.986,"y":48.675,"w":27.292200000000005,"clr":0,"A":"left","R":[{"T":"prior%20","S":-1,"TS":[0,15,0,0]}]},{"x":34.682,"y":48.675,"w":23.3108,"clr":0,"A":"left","R":[{"T":"year","S":-1,"TS":[0,15,0,0]}]},{"x":0.09399999999999997,"y":48.675,"w":21.3141,"clr":0,"A":"left","R":[{"T":"CO%20","S":-1,"TS":[0,15,0,0]}]},{"x":3.7569999999999997,"y":48.675,"w":7.3174,"clr":0,"A":"left","R":[{"T":"-%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.015,"y":48.675,"w":41.2816,"clr":0,"A":"left","R":[{"T":"Credits%20","S":-1,"TS":[0,15,0,0]}]},{"x":12.116,"y":48.675,"w":39.949600000000004,"clr":0,"A":"left","R":[{"T":"carried%20","S":-1,"TS":[0,15,0,0]}]},{"x":18.99,"y":48.675,"w":26.6395,"clr":0,"A":"left","R":[{"T":"over%20","S":-1,"TS":[0,15,0,0]}]},{"x":23.573,"y":48.675,"w":27.2995,"clr":0,"A":"left","R":[{"T":"from%20","S":-1,"TS":[0,15,0,0]}]},{"x":28.268,"y":48.675,"w":9.9934,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,15,0,0]}]},{"x":29.986,"y":48.675,"w":27.292200000000005,"clr":0,"A":"left","R":[{"T":"prior%20","S":-1,"TS":[0,15,0,0]}]},{"x":34.682,"y":48.675,"w":23.3108,"clr":0,"A":"left","R":[{"T":"year","S":-1,"TS":[0,15,0,0]}]},{"x":38.688,"y":48.675,"w":27.292200000000005,"clr":1,"A":"left","R":[{"T":"prior%20","S":-1,"TS":[0,15,0,0]}]},{"x":39.378,"y":48.675,"w":23.3108,"clr":1,"A":"left","R":[{"T":"year","S":-1,"TS":[0,15,0,0]}]},{"x":43.385,"y":48.675,"w":39.949600000000004,"clr":1,"A":"left","R":[{"T":"carried%20","S":-1,"TS":[0,15,0,0]}]},{"x":46.253,"y":48.675,"w":26.6395,"clr":1,"A":"left","R":[{"T":"over%20","S":-1,"TS":[0,15,0,0]}]},{"x":50.835,"y":48.675,"w":27.2995,"clr":1,"A":"left","R":[{"T":"from%20","S":-1,"TS":[0,15,0,0]}]},{"x":55.53,"y":48.675,"w":9.9934,"clr":1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,15,0,0]}]},{"x":57.248,"y":48.675,"w":27.292200000000005,"clr":1,"A":"left","R":[{"T":"prior%20","S":-1,"TS":[0,15,0,0]}]},{"x":61.944,"y":48.675,"w":23.3108,"clr":1,"A":"left","R":[{"T":"year","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCNAME","EN":0},"TI":406,"AM":1024,"x":9.467,"y":6.72,"w":65.01,"h":0.833,"TU":"Name of the individual or fiduciary claiming the credit(s). Married taxpayers must file separate tax returns."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"OCSSN","EN":0},"TI":407,"AM":1024,"x":74.786,"y":6.72,"w":21.223,"h":0.833,"TU":"Name of the individual or fiduciary claiming the credit(s). Married taxpayers must filIdentification Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE1","EN":0},"TI":408,"AM":0,"x":54.631,"y":12.419,"w":4.014,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX1","EN":0},"TI":409,"AM":0,"x":59.895,"y":12.388,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL1","EN":0},"TI":410,"AM":0,"x":77.501,"y":12.278,"w":14.081,"h":0.833,"TU":"1. PA Employment Incentive Payments Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE2","EN":0},"TI":411,"AM":0,"x":54.662,"y":13.469,"w":4.001,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX2","EN":0},"TI":412,"AM":0,"x":59.895,"y":13.412,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL2","EN":0},"TI":413,"AM":0,"x":77.374,"y":13.32,"w":14.38,"h":0.833,"TU":"2. PA Job Creation Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE3","EN":0},"TI":414,"AM":0,"x":54.809,"y":14.414,"w":3.939,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX3","EN":0},"TI":415,"AM":0,"x":59.895,"y":14.39,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL3","EN":0},"TI":416,"AM":0,"x":77.428,"y":14.318,"w":14.347,"h":0.833,"TU":"3. PA Research and Development Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE4","EN":0},"TI":417,"AM":0,"x":54.939,"y":15.387,"w":3.7140000000000004,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX4","EN":0},"TI":418,"AM":0,"x":59.895,"y":15.388,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL4","EN":0},"TI":419,"AM":0,"x":77.481,"y":15.225,"w":14.122,"h":0.833,"TU":"4. PA Film Production Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE6","EN":0},"TI":420,"AM":0,"x":54.919,"y":16.414,"w":3.864,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX6","EN":0},"TI":421,"AM":0,"x":59.97,"y":16.392,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL6","EN":0},"TI":422,"AM":0,"x":77.448,"y":16.32,"w":14.305,"h":0.833,"TU":"6. PA Resource Enhancement and Protection Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE7","EN":0},"TI":423,"AM":0,"x":54.93,"y":17.453,"w":3.864,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX7","EN":0},"TI":424,"AM":0,"x":59.895,"y":17.39,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL7","EN":0},"TI":425,"AM":0,"x":77.705,"y":17.255,"w":13.897,"h":0.833,"TU":"7. PA Neighborhood Assistance Program Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE8","EN":0},"TI":426,"AM":0,"x":54.931,"y":18.425,"w":3.7889999999999997,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX8","EN":0},"TI":427,"AM":0,"x":59.895,"y":18.395,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL8","EN":0},"TI":428,"AM":0,"x":77.578,"y":18.315,"w":14.197,"h":0.833,"TU":"8. PA Strategic Development Area Job Creation Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE9","EN":0},"TI":429,"AM":0,"x":55.136,"y":19.398,"w":3.6399999999999997,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX9","EN":0},"TI":430,"AM":0,"x":59.895,"y":19.4,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL9","EN":0},"TI":431,"AM":0,"x":77.523,"y":19.32,"w":14.23,"h":0.833,"TU":"9. PA Educational Improvement Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE10","EN":0},"TI":432,"AM":0,"x":55.094,"y":20.425,"w":3.6399999999999997,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX10","EN":0},"TI":433,"AM":0,"x":59.895,"y":20.397,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL10","EN":0},"TI":434,"AM":0,"x":77.503,"y":20.317,"w":14.272,"h":0.833,"TU":"10. PA Opportunity Scholarship Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE12","EN":0},"TI":435,"AM":0,"x":54.999,"y":21.363,"w":3.7889999999999997,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX11","EN":0},"TI":436,"AM":0,"x":59.82,"y":21.34,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OCL12","EN":0},"TI":437,"AM":0,"x":77.503,"y":21.253,"w":14.272,"h":0.833,"TU":"10. PA Opportunity Scholarship Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRKEY","EN":0},"TI":438,"AM":0,"x":55.118,"y":22.363,"w":3.6399999999999997,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"KEYTX1","EN":0},"TI":439,"AM":0,"x":59.97,"y":22.337,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"KEYTX2","EN":0},"TI":440,"AM":0,"x":77.448,"y":22.258,"w":14.305,"h":0.833,"TU":"13. Community-Based Services Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRHIST","EN":0},"TI":441,"AM":0,"x":55.014,"y":23.293,"w":3.6399999999999997,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDHIST","EN":0},"TI":442,"AM":0,"x":59.895,"y":23.335,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HISTPRES","EN":0},"TI":443,"AM":0,"x":77.503,"y":23.192,"w":14.272,"h":0.833,"TU":"12. Historic Preservation Incentive Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCOMMUN","EN":0},"TI":444,"AM":0,"x":55.133,"y":24.308,"w":3.7140000000000004,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDCOMM","EN":0},"TI":445,"AM":0,"x":59.895,"y":24.34,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMMBASE","EN":0},"TI":446,"AM":0,"x":77.503,"y":24.19,"w":14.272,"h":0.848,"TU":"13. Community-Based Services Tax Credit Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRTYPE","EN":0},"TI":447,"AM":0,"x":48.551,"y":25.128,"w":6.435,"h":0.869,"TU":"Enter type"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CRCODE14","EN":0},"TI":448,"AM":0,"x":55.187,"y":25.316,"w":3.7140000000000004,"h":0.833,"PL":{"V":[" ","CY - Current year credits","PT - Credits from pass-through entities","PA - Purchased or assigned credits","CO - Credits carried over from a prior year"],"D":["No entry","CY","PT","PA","CO"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AWDTX13","EN":0},"TI":449,"AM":0,"x":59.97,"y":25.365,"w":13.056,"h":0.833,"TU":"Awardee Tax ID Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESTCR","EN":0},"TI":450,"AM":0,"x":77.523,"y":25.195,"w":14.23,"h":0.876,"TU":"Other Restricted Credit Amount "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTOC","EN":0},"TI":451,"AM":1024,"x":77.587,"y":26.236,"w":14.298,"h":1.283,"TU":"Total PA Other Credits"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/SCHABT.content.txt b/test/data/pa/form/SCHABT.content.txt new file mode 100755 index 00000000..09e97408 --- /dev/null +++ b/test/data/pa/form/SCHABT.content.txt @@ -0,0 +1,273 @@ + Total PA-Taxable Dividend Income. +Capital Gains Distributions Income +Add all amounts listed (including amounts on additional schedules). +Name shown first on the PA-40 (if filing jointly) +IMPORTANT: Capital Gains Distributions are dividend income for PA purposes. +Dividend income from PA S corporation(s) andpartnerships, from your PA RK-1. Schedule(s) +If your total taxable interest and dividend income (taxpayer, spouse and/or joint) are both $2,500 or less, you must report the income but do not +OFFICIAL USE ONLY +If you need more space, you may photocopy. + + + + + + + +1301210025 + + + +- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Joint + + +1. + +1. + + + + + + + + + + + + + + + + + + + + + + + + +2. + + + +2. + + +3. + + + +3. + + +4. + + +4. + + +5. + + + + +5. + + +6. + + + + +6. + + +7. + + + + + +7. + + +8. + +8. + + + + + + + +P +A +- +40 + B + + + + + + + + + + + + + + +Spouse + +Joint + + +1. + +1. + + + + + + + + + + + + + + + + + + + + + + + + + + + +2. + + + + + + +3. + + +4. + + + + + +4. + + +5. + +5. + + + + + + +1301210025 + +1301210025 + +Interest Income /Dividend Income +PA SCHEDULE A/B +PA SCHEDULE B – PA-Taxable Dividendand +(See the instructions.) +2. Total Dividend Income. +Add all amounts listed (including amounts on additional schedules). +2013 +PA SCHEDULE A - PA-Taxable Interest Income +(See the instructions.) +PA-40 Schedule A/B +(06-13) +Social Security Number (shown first) +CAUTION: +Federal and PA rules for taxable interest and dividend income are different. +Read the instructions. +need to submit any schedule. If either your total interest or dividend income (taxpayer spouse and/or joint) is more than $2,500, you must submit a +PA Schedule A and/or B. A taxpayer and spouse must complete separate schedules to report their income or if amounts are reported on Lines 3 +through 7 of Schedule A or Lines 3 and 4 of Schedule B. However, if all the income is earned on a joint basis, one schedule may be completed. +Complete the oval to indicate whether the income included on the schedule is from the taxpayer, spouse or joint. When reporting interest and/or +dividend income from jointly owned accounts not reported on a joint Schedule A and/or B, the taxpayer and spouse must show their share of the interest +Taxpayer +Spouse + Total Interest Income. +Distributions from Life Insurance, Annuity or Endowment Contracts included in federal taxable income. +Distributions from Charitable Gift Annuities included in federal taxable income. +Distributions from IRC Section 529 Qualified Tuition Programs for noneducational purposes. +Distributions from Health/Medical Savings Accounts included in federal taxable income. +Interest income from PA S corporations and partnership(s),from your PA Schedule(s) RK1. +Add Lines 2, 3, 4, 5, 6 and 7. Enter on Line 2 of your PA-40. + Total PA-Taxable Interest Income. +Add Lines 2, 3 and 4. Enter on Line 3 of your PA-40. +3. +Capital Gains Distributions +(06-13) +PA-40 A +(06-13) +Taxpayer +Joint +Taxpayer +Spouse +and/or dividend income on their separate Schedules A and/or B. +Complete the oval to indicate whether the income included on the schedules are from the taxpayer, spouse or joint. +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/SCHABT.fields.json b/test/data/pa/form/SCHABT.fields.json new file mode 100755 index 00000000..2142d76b --- /dev/null +++ b/test/data/pa/form/SCHABT.fields.json @@ -0,0 +1 @@ +[{"id":"INDRB","type":"radio","calc":false,"value":"TPSBX"},{"id":"INDRB","type":"radio","calc":false,"value":"SPSBX"},{"id":"INDRB","type":"radio","calc":false,"value":"JTSBX"},{"id":"OWNRB","type":"radio","calc":true,"value":"TPBOX"},{"id":"OWNRB","type":"radio","calc":true,"value":"SPBOX"},{"id":"OWNRB","type":"radio","calc":true,"value":"JTBOX"},{"id":"OWNBRB","type":"radio","calc":true,"value":"TPBOXB"},{"id":"OWNBRB","type":"radio","calc":true,"value":"SPBOXB"},{"id":"OWNBRB","type":"radio","calc":true,"value":"JTBOXB"},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"INTDESC_1_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_1_","type":"number","calc":false,"value":""},{"id":"INTDESC_2_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_2_","type":"number","calc":false,"value":""},{"id":"INTDESC_3_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_3_","type":"number","calc":false,"value":""},{"id":"INTDESC_4_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_4_","type":"number","calc":false,"value":""},{"id":"INTDESC_5_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_5_","type":"number","calc":false,"value":""},{"id":"INTDESC_6_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_6_","type":"number","calc":false,"value":""},{"id":"INTDESC_7_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_7_","type":"number","calc":false,"value":""},{"id":"INTDESC_8_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_8_","type":"number","calc":false,"value":""},{"id":"INTDESC_9_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_9_","type":"number","calc":false,"value":""},{"id":"INTDESC_10_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_10_","type":"number","calc":false,"value":""},{"id":"INTDESC_11_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_11_","type":"number","calc":false,"value":""},{"id":"INTDESC_12_","type":"alpha","calc":false,"value":""},{"id":"INTAMT_12_","type":"number","calc":false,"value":""},{"id":"TOTINT","type":"number","calc":true,"value":""},{"id":"DISTLI","type":"number","calc":false,"value":""},{"id":"DISTGIFT","type":"number","calc":false,"value":""},{"id":"DIST529","type":"number","calc":false,"value":""},{"id":"DISTMSA","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"L3A","type":"number","calc":true,"value":""},{"id":"L4A","type":"number","calc":true,"value":""},{"id":"DIVDESC_1_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_1_","type":"number","calc":false,"value":""},{"id":"DIVDESC_2_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_2_","type":"number","calc":false,"value":""},{"id":"DIVDESC_3_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_3_","type":"number","calc":false,"value":""},{"id":"DIVDESC_4_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_4_","type":"number","calc":false,"value":""},{"id":"DIVDESC_5_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_5_","type":"number","calc":false,"value":""},{"id":"DIVDESC_6_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_6_","type":"number","calc":false,"value":""},{"id":"DIVDESC_7_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_7_","type":"number","calc":false,"value":""},{"id":"DIVDESC_8_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_8_","type":"number","calc":false,"value":""},{"id":"DIVDESC_9_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_9_","type":"number","calc":false,"value":""},{"id":"DIVDESC_10_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_10_","type":"number","calc":false,"value":""},{"id":"DIVDESC_11_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_11_","type":"number","calc":false,"value":""},{"id":"DIVDESC_12_","type":"alpha","calc":false,"value":""},{"id":"DIVAMT_12_","type":"number","calc":false,"value":""},{"id":"TOTDIV","type":"number","calc":true,"value":""},{"id":"L3B","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"L4B","type":"number","calc":true,"value":""},{"id":"L5B","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/SCHABT.json b/test/data/pa/form/SCHABT.json new file mode 100755 index 00000000..de366d5b --- /dev/null +++ b/test/data/pa/form/SCHABT.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule A/B - Interest Income/Dividend Income - Posted 08-27-12","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.298,"y":3.688,"w":4.5,"l":4.959},{"oc":"#221f1f","x":9.316,"y":46.866,"w":4.5,"l":4.941},{"oc":"#221f1f","x":90.956,"y":46.875,"w":4.5,"l":4.933},{"oc":"#221f1f","x":9.333,"y":6.013,"w":0.75,"l":86.573},{"oc":"#221f1f","x":9.333,"y":6.75,"w":0.75,"l":86.573},{"oc":"#221f1f","x":9.333,"y":8.388,"w":0.75,"l":86.573},{"oc":"#221f1f","x":9.333,"y":14.594,"w":1.5,"l":86.573},{"oc":"#221f1f","x":9.333,"y":30.647,"w":0.75,"l":86.573},{"oc":"#221f1f","x":9.333,"y":33.094,"w":0.75,"l":86.573},{"oc":"#221f1f","x":9.333,"y":15.966,"w":0.75,"l":86.573},{"oc":"#221f1f","x":9.333,"y":13.138,"w":0.75,"l":86.573}],"VLines":[{"oc":"#221f1f","x":13.991,"y":2.609,"w":4.5,"l":1.128},{"oc":"#221f1f","x":9.565,"y":45.834,"w":4.5,"l":1.119},{"oc":"#221f1f","x":95.648,"y":45.844,"w":4.5,"l":1.122},{"oc":"#221f1f","x":73.855,"y":6.756,"w":0.75,"l":1.619}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.281,"y":16.748,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":16.748,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":16.777,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":95.762,"y":16.777,"w":0.082,"h":0.653,"clr":-1},{"oc":"#221f1f","x":9.281,"y":17.43,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":17.43,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":17.46,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":17.46,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":18.12,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":18.12,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":18.15,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":18.15,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":18.81,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":18.81,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":18.84,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":18.84,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":19.492,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":19.492,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":19.522,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":19.522,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":20.182,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":20.182,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":20.212,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":20.212,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":20.872,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":20.872,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":20.902,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":20.902,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":21.555,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":21.555,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":21.585,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":21.585,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":22.245,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":22.245,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":22.275,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":22.275,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":22.935,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":22.935,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":22.965,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":22.965,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":23.617,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":23.617,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":23.647,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":23.647,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":24.307,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":24.307,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":24.337,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":24.337,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":24.997,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":24.997,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":25.027,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":25.027,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":25.68,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":25.68,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":25.71,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":25.71,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":26.37,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":26.37,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":26.4,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":26.4,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":27.06,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":27.06,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":27.09,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":27.09,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":27.742,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":27.742,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":27.772,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":27.772,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":28.432,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":28.432,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":28.462,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":28.462,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":29.122,"w":67.939,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.55,"y":29.123,"w":18.171,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":29.812,"w":68.063,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.22,"y":29.183,"w":0.165,"h":0.63,"clr":-1},{"oc":"#221f1f","x":77.385,"y":29.813,"w":18.336,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.721,"y":29.183,"w":0.165,"h":0.63,"clr":-1},{"oc":"#221f1f","x":9.281,"y":33.855,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":33.855,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":33.885,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":33.885,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":34.545,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":34.545,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":34.575,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":34.575,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":35.235,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":35.235,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":35.265,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":35.265,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":35.918,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":35.918,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":35.947,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":35.947,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":36.608,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":36.608,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":36.637,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":36.637,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":37.297,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":37.297,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":37.328,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":37.328,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":37.98,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":37.98,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":38.01,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":38.01,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":38.67,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":38.67,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":38.7,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":38.7,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":39.36,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":39.36,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":39.39,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":39.39,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":40.042,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":40.042,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":40.072,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":40.072,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":40.733,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":40.733,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":40.762,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":40.762,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":41.423,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":41.423,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":41.453,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":41.453,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":42.105,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":42.105,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":42.135,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":42.135,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":42.795,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":42.795,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":42.825,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.762,"y":42.825,"w":0.082,"h":0.66,"clr":-1},{"oc":"#221f1f","x":9.281,"y":43.485,"w":67.98,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.344,"y":43.485,"w":18.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.261,"y":43.515,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.762,"y":43.515,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.281,"y":44.167,"w":67.939,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.55,"y":44.168,"w":18.171,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":44.857,"w":68.063,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.22,"y":44.227,"w":0.165,"h":0.63,"clr":-1},{"oc":"#221f1f","x":77.385,"y":44.858,"w":18.336,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.721,"y":44.227,"w":0.165,"h":0.63,"clr":-1},{"oc":"#221f1f","x":0,"y":48.816,"w":1.88,"h":0.684,"clr":-1}],"Texts":[{"oc":"#221f1f","x":11.074,"y":43.942,"w":16.949,"clr":-1,"A":"left","R":[{"T":"%20Total%20PA-Taxable%20Dividend%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":25.16,"y":31.86,"w":16.479,"clr":-1,"A":"left","R":[{"T":"Capital%20Gains%20Distributions%20Income","S":-1,"TS":[0,19,1,0]}]},{"oc":"#221f1f","x":24.286,"y":24.774,"w":29.522999999999993,"clr":-1,"A":"left","R":[{"T":"Add%20all%20amounts%20listed%20(including%20amounts%20on%20additional%20schedules).","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.08,"y":6.488,"w":20.377706,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20first%20on%20the%20PA-40%20(if%20filing%20jointly)","S":-1,"TS":[0,9.931742400000001,0,0]}]},{"oc":"#221f1f","x":29.986,"y":29.617,"w":37.52400000000001,"clr":-1,"A":"left","R":[{"T":"IMPORTANT%3A%20Capital%20Gains%20Distributions%20are%20dividend%20income%20for%20PA%20purposes.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":11.424,"y":43.247,"w":40.606,"clr":-1,"A":"left","R":[{"T":"Dividend%20income%20from%20PA%20S%20corporation(s)%20andpartnerships%2C%20from%20your%20PA%20RK-1.%20Schedule(s)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.258,"y":8.973,"w":63.420999999999886,"clr":-1,"A":"left","R":[{"T":"If%20your%20total%20taxable%20interest%20and%20dividend%20income%20(taxpayer%2C%20spouse%20and%2For%20joint)%20are%20both%20%242%2C500%20or%20less%2C%20you%20must%20report%20the%20income%20but%20do%20not%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":85.344,"y":5.095,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":38.546,"y":5.785,"w":20.491000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20need%20more%20space%2C%20you%20may%20photocopy.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.415,"y":2.343,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301210025","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":22.066,"y":5.073,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":64.492,"y":15.698,"w":2.354,"clr":-1,"A":"left","R":[{"T":"Joint","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":10.083,"y":16.485,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.547,"y":16.485,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":24.805,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.544,"y":24.742,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":25.41,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.542,"y":25.41,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":26.077,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.543,"y":26.077,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":26.745,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.544,"y":26.745,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":27.427,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.543,"y":27.427,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":28.095,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.544,"y":28.095,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":28.845,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.548,"y":28.845,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.196,"y":32.887,"w":0.667,"clr":-1,"A":"left","R":[{"T":"P","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.918,"y":32.887,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":10.764,"y":32.887,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":11.177,"y":32.887,"w":1.104,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":12.518,"y":32.887,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":47.846,"y":32.805,"w":3.57,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":64.532,"y":32.805,"w":2.354,"clr":-1,"A":"left","R":[{"T":"Joint","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":10.083,"y":33.555,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.547,"y":33.555,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":75.544,"y":41.805,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":75.546,"y":42.472,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":43.185,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.544,"y":43.185,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":43.942,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.547,"y":43.942,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.045,"y":45.975,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301210025","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":45.975,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301210025","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.334,"y":4.008,"w":13.302999999999999,"clr":-1,"A":"left","R":[{"T":"Interest%20Income%20%2FDividend%20Income","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":20.334,"y":3.497,"w":9.166999999999998,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20A%2FB","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":27.037,"y":31.035,"w":21.56000000000001,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20%20B%20%E2%80%93%20PA-Taxable%20%20Dividendand","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":68.653,"y":31.847,"w":10.66,"clr":-1,"A":"left","R":[{"T":"(See%20the%20instructions.)%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":10.083,"y":41.93,"w":11.959,"clr":-1,"A":"left","R":[{"T":"2.%20Total%20Dividend%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":24.768,"y":41.93,"w":29.796999999999993,"clr":-1,"A":"left","R":[{"T":"Add%20all%20amounts%20listed%20(including%20amounts%20on%20additional%20schedules).%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":35.266,"y":5.072,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,24.79,1,0]}]},{"oc":"#221f1f","x":18.746,"y":14.895,"w":22.449,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20A%20-%20%20PA-Taxable%20Interest%20Income","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":66.458,"y":14.835,"w":10.387,"clr":-1,"A":"left","R":[{"T":"(See%20the%20instructions.)","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":20.334,"y":4.607,"w":9.557999999999998,"clr":-1,"A":"left","R":[{"T":"PA-40%20Schedule%20A%2FB","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":20.334,"y":5.072,"w":3.188,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":74.165,"y":6.453,"w":16.026000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.258,"y":8.297,"w":4.824000000000001,"clr":-1,"A":"left","R":[{"T":"CAUTION%3A","S":-1,"TS":[0,10.559999999999999,1,0]}]},{"oc":"#221f1f","x":16.043,"y":8.297,"w":33.162000000000006,"clr":-1,"A":"left","R":[{"T":"Federal%20and%20PA%20rules%20for%20taxable%20interest%20and%20dividend%20income%20are%20different.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":59.974,"y":8.297,"w":10.150000000000002,"clr":-1,"A":"left","R":[{"T":"Read%20the%20instructions.","S":-1,"TS":[0,10.559999999999999,1,0]}]},{"oc":"#221f1f","x":9.263,"y":9.505,"w":64.66000000000003,"clr":-1,"A":"left","R":[{"T":"need%20to%20submit%20any%20schedule.%20If%20either%20your%20total%20interest%20or%20dividend%20income%20(taxpayer%20spouse%20and%2For%20joint)%20is%20more%20than%20%242%2C500%2C%20you%20must%20submit%20a%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.27,"y":10.045,"w":64.25399999999989,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20A%20and%2For%20B.%20A%20taxpayer%20and%20spouse%20must%20complete%20separate%20schedules%20to%20report%20their%20income%20or%20if%20amounts%20are%20reported%20on%20Lines%203%20%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.263,"y":10.578,"w":63.66800000000001,"clr":-1,"A":"left","R":[{"T":"through%207%20of%20Schedule%20A%20or%20Lines%203%20and%204%20of%20Schedule%20B.%20However%2C%20if%20all%20the%20income%20is%20earned%20on%20a%20joint%20basis%2C%20one%20schedule%20may%20be%20completed.%20%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.271,"y":11.118,"w":65.85699999999996,"clr":-1,"A":"left","R":[{"T":"Complete%20the%20oval%20to%20indicate%20whether%20the%20income%20included%20on%20the%20schedule%20is%20from%20the%20taxpayer%2C%20spouse%20or%20joint.%20When%20reporting%20interest%20and%2For%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.271,"y":11.658,"w":65.062,"clr":-1,"A":"left","R":[{"T":"dividend%20income%20from%20jointly%20owned%20accounts%20not%20reported%20on%20a%20joint%20Schedule%20A%20and%2For%20B%2C%20the%20taxpayer%20and%20spouse%20must%20show%20their%20share%20of%20the%20interest%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":30.978,"y":15.697,"w":4.391000000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":47.992,"y":15.697,"w":3.57,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":11.074,"y":24.805,"w":10.614000000000003,"clr":-1,"A":"left","R":[{"T":"%20Total%20Interest%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":11.424,"y":25.41,"w":45.38700000000001,"clr":-1,"A":"left","R":[{"T":"Distributions%20from%20Life%20Insurance%2C%20Annuity%20or%20Endowment%20Contracts%20included%20in%20federal%20taxable%20income.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":11.424,"y":26.077,"w":34.67300000000001,"clr":-1,"A":"left","R":[{"T":"Distributions%20from%20Charitable%20Gift%20Annuities%20included%20in%20federal%20taxable%20income.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":11.424,"y":26.745,"w":40.80700000000001,"clr":-1,"A":"left","R":[{"T":"Distributions%20from%20IRC%20Section%20529%20Qualified%20Tuition%20Programs%20for%20noneducational%20purposes.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":11.424,"y":27.49,"w":38.742000000000004,"clr":-1,"A":"left","R":[{"T":"Distributions%20from%20Health%2FMedical%20Savings%20Accounts%20included%20in%20federal%20taxable%20income.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":11.445,"y":28.157,"w":39.722,"clr":-1,"A":"left","R":[{"T":"Interest%20income%20from%20PA%20S%20corporations%20and%20partnership(s)%2Cfrom%20your%20PA%20Schedule(s)%20RK1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":31.003,"y":28.844,"w":28.221000000000007,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%202%2C%203%2C%204%2C%205%2C%206%20and%207.%20Enter%20on%20Line%202%20of%20your%20PA-40.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":11.074,"y":28.844,"w":16.338,"clr":-1,"A":"left","R":[{"T":"%20Total%20PA-Taxable%20Interest%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":31.684,"y":43.942,"w":25.57900000000001,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%202%2C%203%20and%204.%20Enter%20on%20Line%203%20of%20your%20PA-40.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":42.534,"w":1.1,"clr":-1,"A":"left","R":[{"T":"3.%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":11.404,"y":42.534,"w":11.672999999999996,"clr":-1,"A":"left","R":[{"T":"Capital%20Gains%20Distributions","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":14.024,"y":15.780000000000001,"w":3.188,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.196,"y":15.780000000000001,"w":4.112,"clr":-1,"A":"left","R":[{"T":"PA-40%20A%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":14.105,"y":32.887,"w":3.1950000000000003,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":30.976,"y":32.805,"w":4.391000000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":64.22,"y":13.567,"w":2.354,"clr":-1,"A":"left","R":[{"T":"Joint","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":30.705,"y":13.567,"w":4.391000000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":47.72,"y":13.567,"w":3.57,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.257,"y":12.19,"w":28.563000000000002,"clr":-1,"A":"left","R":[{"T":"and%2For%20dividend%20income%20on%20their%20separate%20Schedules%20A%20and%2For%20B.%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":17.56,"y":12.998,"w":50.74400000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20the%20oval%20to%20indicate%20whether%20the%20income%20included%20on%20the%20schedules%20are%20from%20the%20taxpayer%2C%20spouse%20or%20joint.","S":-1,"TS":[0,10.559999999999999,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":452,"AM":1024,"x":9.573,"y":7.414,"w":63.781,"h":0.833,"TU":"Name shown first on the PA-40"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":453,"AM":1024,"x":74.316,"y":7.441,"w":21.084,"h":0.833,"TU":"Social Security Number (shown first)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_1_","EN":0},"TI":460,"AM":0,"x":12.735,"y":16.835,"w":61.84,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_1_","EN":0},"TI":461,"AM":0,"x":78.533,"y":16.866,"w":16.549,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_2_","EN":0},"TI":462,"AM":0,"x":10.217,"y":17.567,"w":64.326,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_2_","EN":0},"TI":463,"AM":0,"x":78.532,"y":17.529,"w":16.55,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_3_","EN":0},"TI":464,"AM":0,"x":9.931,"y":18.211,"w":64.554,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_3_","EN":0},"TI":465,"AM":0,"x":78.533,"y":18.183,"w":16.623,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_4_","EN":0},"TI":466,"AM":0,"x":9.931,"y":18.915,"w":64.629,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_4_","EN":0},"TI":467,"AM":0,"x":78.534,"y":18.873,"w":16.615,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_5_","EN":0},"TI":468,"AM":0,"x":9.931,"y":19.595,"w":64.48,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_5_","EN":0},"TI":469,"AM":0,"x":78.534,"y":19.658,"w":16.765,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_6_","EN":0},"TI":470,"AM":0,"x":9.931,"y":20.251,"w":64.48,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_6_","EN":0},"TI":471,"AM":0,"x":78.459,"y":20.281,"w":16.839,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_7_","EN":0},"TI":472,"AM":0,"x":9.931,"y":20.965,"w":64.555,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_7_","EN":0},"TI":473,"AM":0,"x":78.476,"y":20.933,"w":16.839,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_8_","EN":0},"TI":474,"AM":0,"x":9.931,"y":21.62,"w":64.63,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_8_","EN":0},"TI":475,"AM":0,"x":78.476,"y":21.645,"w":16.839,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_9_","EN":0},"TI":476,"AM":0,"x":9.931,"y":22.342,"w":64.555,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_9_","EN":0},"TI":477,"AM":0,"x":78.476,"y":22.396,"w":16.914,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_10_","EN":0},"TI":478,"AM":0,"x":10.006,"y":23.042,"w":64.48,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_10_","EN":0},"TI":479,"AM":0,"x":78.476,"y":23.024,"w":16.914,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_11_","EN":0},"TI":480,"AM":0,"x":9.931,"y":23.74,"w":64.703,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_11_","EN":0},"TI":481,"AM":0,"x":78.401,"y":23.736,"w":16.914,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INTDESC_12_","EN":0},"TI":482,"AM":0,"x":9.931,"y":24.419,"w":64.63,"h":0.833,"TU":"A. Name of payer of interest - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTAMT_12_","EN":0},"TI":483,"AM":0,"x":78.551,"y":24.412,"w":16.914,"h":0.833,"TU":"A. Amount of interest received - Line 1 "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTINT","EN":0},"TI":484,"AM":1024,"x":78.476,"y":25.084,"w":16.839,"h":0.833,"TU":"2. Total Interest Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISTLI","EN":0},"TI":485,"AM":0,"x":78.551,"y":25.786,"w":16.839,"h":0.833,"TU":"3. Distributions from Life Insurance, annuity, or endowment contract income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISTGIFT","EN":0},"TI":486,"AM":0,"x":78.551,"y":26.511,"w":16.765,"h":0.833,"TU":"4. Distributions from Charitable Gift Annuities"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIST529","EN":0},"TI":487,"AM":0,"x":78.551,"y":27.151,"w":16.69,"h":0.833,"TU":"5. Distributions from IRC Section 529 distributions not used for education."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DISTMSA","EN":0},"TI":488,"AM":0,"x":78.476,"y":27.839,"w":16.765,"h":0.833,"TU":"6. Distributions from Health/Medical Savings Accounts"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":489,"AM":0,"x":70.569,"y":28.392,"w":4.214,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3A","EN":0},"TI":490,"AM":1024,"x":78.476,"y":28.518,"w":16.839,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4A","EN":0},"TI":491,"AM":1024,"x":78.401,"y":29.226,"w":16.839,"h":0.833,"TU":"8. Total PA Taxable Interest Income"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_1_","EN":0},"TI":495,"AM":0,"x":13.109,"y":33.945,"w":62.064,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_1_","EN":0},"TI":496,"AM":0,"x":79.15,"y":33.922,"w":16.39,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_2_","EN":0},"TI":497,"AM":0,"x":10.083,"y":34.634,"w":64.949,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_2_","EN":0},"TI":498,"AM":0,"x":79.15,"y":34.636,"w":16.39,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_3_","EN":0},"TI":499,"AM":0,"x":10.083,"y":35.355,"w":65.024,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_3_","EN":0},"TI":500,"AM":0,"x":79.15,"y":35.306,"w":16.39,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_4_","EN":0},"TI":501,"AM":0,"x":10.083,"y":36.034,"w":64.949,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_4_","EN":0},"TI":502,"AM":0,"x":79.15,"y":36.005,"w":16.465,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_5_","EN":0},"TI":503,"AM":0,"x":10.008,"y":36.706,"w":64.949,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_5_","EN":0},"TI":504,"AM":0,"x":79.15,"y":36.669,"w":16.465,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_6_","EN":0},"TI":505,"AM":0,"x":10.083,"y":37.406,"w":64.949,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_6_","EN":0},"TI":506,"AM":0,"x":79.15,"y":37.377,"w":16.39,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_7_","EN":0},"TI":507,"AM":0,"x":10.083,"y":38.074,"w":65.024,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_7_","EN":0},"TI":508,"AM":0,"x":79.15,"y":38.038,"w":16.39,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_8_","EN":0},"TI":509,"AM":0,"x":10.083,"y":38.814,"w":64.949,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_8_","EN":0},"TI":510,"AM":0,"x":79.15,"y":38.738,"w":16.465,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_9_","EN":0},"TI":511,"AM":0,"x":10.083,"y":39.444,"w":65.024,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_9_","EN":0},"TI":512,"AM":0,"x":79.15,"y":39.449,"w":16.465,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_10_","EN":0},"TI":513,"AM":0,"x":10.083,"y":40.163,"w":65.024,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_10_","EN":0},"TI":514,"AM":0,"x":79.15,"y":40.134,"w":16.39,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_11_","EN":0},"TI":515,"AM":0,"x":10.083,"y":40.816,"w":65.099,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_11_","EN":0},"TI":516,"AM":0,"x":79.15,"y":40.835,"w":16.315,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIVDESC_12_","EN":0},"TI":517,"AM":0,"x":10.083,"y":41.5,"w":65.024,"h":0.833,"TU":"B. Name of payer of dividends - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVAMT_12_","EN":0},"TI":518,"AM":0,"x":79.15,"y":41.586,"w":16.315,"h":0.833,"TU":"B. Amount of dividends received - Line 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDIV","EN":0},"TI":519,"AM":1024,"x":79.15,"y":42.211,"w":16.39,"h":0.833,"TU":"2. Total Dividend Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3B","EN":0},"TI":520,"AM":0,"x":79.226,"y":42.867,"w":16.315,"h":0.833,"TU":"3. Capital Gains Distributions - See instructions."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":521,"AM":0,"x":70.474,"y":43.44,"w":4.215,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4B","EN":0},"TI":522,"AM":1024,"x":79.15,"y":43.573,"w":16.39,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5B","EN":0},"TI":523,"AM":1024,"x":79.15,"y":44.314,"w":16.39,"h":0.833,"TU":"5. Total PA Taxable Dividend Income"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPSBX","EN":0},"TI":454,"AM":0,"x":37.132,"y":13.748,"w":1.88,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPSBX","EN":0},"TI":455,"AM":0,"x":53.143,"y":13.71,"w":1.956,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JTSBX","EN":0},"TI":456,"AM":0,"x":68.407,"y":13.779,"w":1.805,"h":0.833,"checked":false}],"id":{"Id":"INDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPBOX","EN":0},"TI":457,"AM":1024,"x":37.843,"y":15.886,"w":1.88,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBOX","EN":0},"TI":458,"AM":1024,"x":53.855,"y":15.849,"w":1.956,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JTBOX","EN":0},"TI":459,"AM":1024,"x":69.118,"y":15.828,"w":1.805,"h":0.833,"checked":false}],"id":{"Id":"OWNRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPBOXB","EN":0},"TI":492,"AM":1024,"x":38.45,"y":33.095,"w":1.956,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBOXB","EN":0},"TI":493,"AM":1024,"x":53.853,"y":33.015,"w":1.956,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JTBOXB","EN":0},"TI":494,"AM":1024,"x":69.041,"y":33.05,"w":1.956,"h":0.833,"checked":false}],"id":{"Id":"OWNBRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/SCHDT.content.txt b/test/data/pa/form/SCHDT.content.txt new file mode 100755 index 00000000..62ebdc36 --- /dev/null +++ b/test/data/pa/form/SCHDT.content.txt @@ -0,0 +1,543 @@ +Minus adjusted basis +Sale, Exchange or Disposition of Property +Date acquired: +including inherited property. Amounts from Federal Schedule D maynot be correct for PA income tax purposes. Nonresidents should read carefully the +Add Lines 2 through 10. Enter on Line 5 of your PA-40. (If a net loss, fill in the oval) +Net gain (loss) from above sales +(If a loss, fill in oval). +If you need more space, you may photocopy. + + + + + + + + + + +- + + + + + + + + + + + + + + + + + + +Important: + + + + + +1 +0. + +H +oweve +r, +if + +all + +the + +gains + +and + +losses + +were + +realized + +on + a +joint + +basis, + +one + +schedule + +may + +be + +completed. + +Complete + +the + +oval + +to + in +dicate + +whether + +the + + + + + + + + + + + + + + + +(a +) + + + + + + + + +( +b +) + + +Month/day/year + +(c +) + + +Month/day/year + +( +d +) + + + + + + +(e +) + + + + + + +(f) + + + + + + +1. + + + + + +LOS +S + + + + + + +LOS +S + + + + + + +LOS +S + + + + + + +LOS +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + + + + + + +LO +S +S + +2. + +. + + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +LOSS + +2. + +3. + +. + +. . . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +3. + +4. + + . . . . . . . . . + +. . + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . += +4. + +5. + +. +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +LOSS + +5. + +6 +. + + +. . . . . . . . . . . . . . . . . . . . +. + +LOSS + +6. + + + + + + + + + + + + + + +(a) +residence + +( +b +) + +Month/day/year + +(c) + +Month/day/year + +(d) + + + + +(e) + + + +(f) + + + + + + + + + +7. + + + + + + + + +8. + +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +8. + + +9. + +. + +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +9. + + +10. + +. + +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +10. + + +1 +1. + +. + +. . + +LOS +S + +1 +1 +. + + + + + + + +13 +0131 +0023 + +13 +0131 +0023 + +PA SCHEDULE D +Enter total distribution +Net gain (loss) from the sale of 6-1-71 property from PA Schedule D-71 +Taxable distributions from C corporations. +Gain from installment sales from PA Schedule D-1 +Net PA Scorporation and partnership gain (loss) from your PA Schedule(s) RK-1 or NRK-1 +Taxable gain from the sale of your principal residence. If you realized a loss on the sale of your principal residence, enter a zero. +If you realized a gain/loss on the sale of the nonresidential portion of your principal residence, enter the information on Line 1 +Taxable distributions from partnerships from REV -999. +Taxable distributions from PA S corporations from REV-998 +Taxable gain from exchange of insurance contracts +Total PA Taxable Gain (Loss). +PA-40 Schedule D +(06-13) +OFFICIAL USE ONLY +Name of the taxpayer filing this schedule +Social Security Number (shown first) +A taxpayer and spouse must complete separate schedules to report their gains or losses or if any amounts are reported on Lines 3 through +gains and losses included on the schedule are from the taxpayer, spouse or joint. One spouse may not use a loss to reduce the other spouse’s gains. +When reporting the sale of jointly owned property that is not reported on a joint PA Schedule D, each must show their share of the sale on their +separate PA Schedule D. +Read the instructions. +Enter all sales, exchanges or the dispositions of real or personal tangible and intangible property, +Describe the property: +100 shares of XYZ stock, or +10 acres in Dauphin County +Date sold: +Gross salesprice +less expenses +of sale +Cost or adjusted +basis of the +property sold +Gain or loss: +(d) minus (e) +Taxable gain from selling a principal residence. +Complete and submit +Complete Columns (a) through (e) and enter your total gain on Line 7. +PA Schedule 19. +Address of +Date acquired: +Datesold: +Gross sales priceless +expenses of sale +Cost or adjusted basis of +the property sold +Gain or loss: +(d) minus (e) +1301310023 +2013 +Spouse +Joint +Taxpayer +instructions concerning intangible property. If theresultis a loss, fill in the oval next to the line. +Complete the oval to indicate whether the gains and losses included on the schedule are from the taxpayer, spouse or joint. +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/SCHDT.fields.json b/test/data/pa/form/SCHDT.fields.json new file mode 100755 index 00000000..290a464b --- /dev/null +++ b/test/data/pa/form/SCHDT.fields.json @@ -0,0 +1 @@ +[{"id":"OWNRB","type":"radio","calc":false,"value":"TPBX"},{"id":"OWNRB","type":"radio","calc":false,"value":"SPBX"},{"id":"OWNRB","type":"radio","calc":false,"value":"JTBX"},{"id":"LOSS_1_","type":"box","calc":true,"value":""},{"id":"LOSS_2_","type":"box","calc":true,"value":""},{"id":"LOSS_3_","type":"box","calc":true,"value":""},{"id":"LOSS_4_","type":"box","calc":true,"value":""},{"id":"LOSS_5_","type":"box","calc":true,"value":""},{"id":"LOSS_6_","type":"box","calc":true,"value":""},{"id":"LOSS_7_","type":"box","calc":true,"value":""},{"id":"LOSS_8_","type":"box","calc":true,"value":""},{"id":"LOSS_9_","type":"box","calc":true,"value":""},{"id":"LOSS_10_","type":"box","calc":true,"value":""},{"id":"LOSS_11_","type":"box","calc":true,"value":""},{"id":"LOSS_12_","type":"box","calc":true,"value":""},{"id":"LOSS_13_","type":"box","calc":true,"value":""},{"id":"LOSS_14_","type":"box","calc":true,"value":""},{"id":"LOSS_15_","type":"box","calc":true,"value":""},{"id":"LOSS_16_","type":"box","calc":true,"value":""},{"id":"LOSS_17_","type":"box","calc":true,"value":""},{"id":"LOSS_18_","type":"box","calc":true,"value":""},{"id":"LOSS_19_","type":"box","calc":true,"value":""},{"id":"L2LOSS","type":"box","calc":true,"value":""},{"id":"L5LOSS","type":"box","calc":true,"value":""},{"id":"L6LOSS","type":"box","calc":true,"value":""},{"id":"L11LOSS","type":"box","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"DESC_1_","type":"alpha","calc":false,"value":""},{"id":"DACQ_1_","type":"date","calc":false,"value":""},{"id":"DSOLD_1_","type":"date","calc":false,"value":""},{"id":"SALES_1_","type":"number","calc":false,"value":""},{"id":"COST_1_","type":"number","calc":false,"value":""},{"id":"NETGL_1_","type":"number","calc":true,"value":""},{"id":"DESC_2_","type":"alpha","calc":false,"value":""},{"id":"DACQ_2_","type":"date","calc":false,"value":""},{"id":"DSOLD_2_","type":"date","calc":false,"value":""},{"id":"SALES_2_","type":"number","calc":false,"value":""},{"id":"COST_2_","type":"number","calc":false,"value":""},{"id":"NETGL_2_","type":"number","calc":true,"value":""},{"id":"DESC_3_","type":"alpha","calc":false,"value":""},{"id":"DACQ_3_","type":"date","calc":false,"value":""},{"id":"DSOLD_3_","type":"date","calc":false,"value":""},{"id":"SALES_3_","type":"number","calc":false,"value":""},{"id":"COST_3_","type":"number","calc":false,"value":""},{"id":"NETGL_3_","type":"number","calc":true,"value":""},{"id":"DESC_4_","type":"alpha","calc":false,"value":""},{"id":"DACQ_4_","type":"date","calc":false,"value":""},{"id":"DSOLD_4_","type":"date","calc":false,"value":""},{"id":"SALES_4_","type":"number","calc":false,"value":""},{"id":"COST_4_","type":"number","calc":false,"value":""},{"id":"NETGL_4_","type":"number","calc":true,"value":""},{"id":"DESC_5_","type":"alpha","calc":false,"value":""},{"id":"DACQ_5_","type":"date","calc":false,"value":""},{"id":"DSOLD_5_","type":"date","calc":false,"value":""},{"id":"SALES_5_","type":"number","calc":false,"value":""},{"id":"COST_5_","type":"number","calc":false,"value":""},{"id":"NETGL_5_","type":"number","calc":true,"value":""},{"id":"DESC_6_","type":"alpha","calc":false,"value":""},{"id":"DACQ_6_","type":"date","calc":false,"value":""},{"id":"DSOLD_6_","type":"date","calc":false,"value":""},{"id":"SALES_6_","type":"number","calc":false,"value":""},{"id":"COST_6_","type":"number","calc":false,"value":""},{"id":"NETGL_6_","type":"number","calc":true,"value":""},{"id":"DESC_7_","type":"alpha","calc":false,"value":""},{"id":"DACQ_7_","type":"date","calc":false,"value":""},{"id":"DSOLD_7_","type":"date","calc":false,"value":""},{"id":"SALES_7_","type":"number","calc":false,"value":""},{"id":"COST_7_","type":"number","calc":false,"value":""},{"id":"NETGL_7_","type":"number","calc":true,"value":""},{"id":"DESC_8_","type":"alpha","calc":false,"value":""},{"id":"DACQ_8_","type":"date","calc":false,"value":""},{"id":"DSOLD_8_","type":"date","calc":false,"value":""},{"id":"SALES_8_","type":"number","calc":false,"value":""},{"id":"COST_8_","type":"number","calc":false,"value":""},{"id":"NETGL_8_","type":"number","calc":true,"value":""},{"id":"DESC_9_","type":"alpha","calc":false,"value":""},{"id":"DACQ_9_","type":"date","calc":false,"value":""},{"id":"DSOLD_9_","type":"date","calc":false,"value":""},{"id":"SALES_9_","type":"number","calc":false,"value":""},{"id":"COST_9_","type":"number","calc":false,"value":""},{"id":"NETGL_9_","type":"number","calc":true,"value":""},{"id":"DESC_10_","type":"alpha","calc":false,"value":""},{"id":"DACQ_10_","type":"date","calc":false,"value":""},{"id":"DSOLD_10_","type":"date","calc":false,"value":""},{"id":"SALES_10_","type":"number","calc":false,"value":""},{"id":"COST_10_","type":"number","calc":false,"value":""},{"id":"NETGL_10_","type":"number","calc":true,"value":""},{"id":"DESC_11_","type":"alpha","calc":false,"value":""},{"id":"DACQ_11_","type":"date","calc":false,"value":""},{"id":"DSOLD_11_","type":"date","calc":false,"value":""},{"id":"SALES_11_","type":"number","calc":false,"value":""},{"id":"COST_11_","type":"number","calc":false,"value":""},{"id":"NETGL_11_","type":"number","calc":true,"value":""},{"id":"DESC_12_","type":"alpha","calc":false,"value":""},{"id":"DACQ_12_","type":"date","calc":false,"value":""},{"id":"DSOLD_12_","type":"date","calc":false,"value":""},{"id":"SALES_12_","type":"number","calc":false,"value":""},{"id":"COST_12_","type":"number","calc":false,"value":""},{"id":"NETGL_12_","type":"number","calc":true,"value":""},{"id":"DESC_13_","type":"alpha","calc":false,"value":""},{"id":"DACQ_13_","type":"date","calc":false,"value":""},{"id":"DSOLD_13_","type":"date","calc":false,"value":""},{"id":"SALES_13_","type":"number","calc":false,"value":""},{"id":"COST_13_","type":"number","calc":false,"value":""},{"id":"NETGL_13_","type":"number","calc":true,"value":""},{"id":"DESC_14_","type":"alpha","calc":false,"value":""},{"id":"DACQ_14_","type":"date","calc":false,"value":""},{"id":"DSOLD_14_","type":"date","calc":false,"value":""},{"id":"SALES_14_","type":"number","calc":false,"value":""},{"id":"COST_14_","type":"number","calc":false,"value":""},{"id":"NETGL_14_","type":"number","calc":true,"value":""},{"id":"DESC_15_","type":"alpha","calc":false,"value":""},{"id":"DACQ_15_","type":"date","calc":false,"value":""},{"id":"DSOLD_15_","type":"date","calc":false,"value":""},{"id":"SALES_15_","type":"number","calc":false,"value":""},{"id":"COST_15_","type":"number","calc":false,"value":""},{"id":"NETGL_15_","type":"number","calc":true,"value":""},{"id":"DESC_16_","type":"alpha","calc":false,"value":""},{"id":"DACQ_16_","type":"date","calc":false,"value":""},{"id":"DSOLD_16_","type":"date","calc":false,"value":""},{"id":"SALES_16_","type":"number","calc":false,"value":""},{"id":"COST_16_","type":"number","calc":false,"value":""},{"id":"NETGL_16_","type":"number","calc":true,"value":""},{"id":"DESC_17_","type":"alpha","calc":false,"value":""},{"id":"DACQ_17_","type":"date","calc":false,"value":""},{"id":"DSOLD_17_","type":"date","calc":false,"value":""},{"id":"SALES_17_","type":"number","calc":false,"value":""},{"id":"COST_17_","type":"number","calc":false,"value":""},{"id":"NETGL_17_","type":"number","calc":true,"value":""},{"id":"DESC_18_","type":"alpha","calc":false,"value":""},{"id":"DACQ_18_","type":"date","calc":false,"value":""},{"id":"DSOLD_18_","type":"date","calc":false,"value":""},{"id":"SALES_18_","type":"number","calc":false,"value":""},{"id":"COST_18_","type":"number","calc":false,"value":""},{"id":"NETGL_18_","type":"number","calc":true,"value":""},{"id":"DESC_19_","type":"alpha","calc":false,"value":""},{"id":"DACQ_19_","type":"date","calc":false,"value":""},{"id":"DSOLD_19_","type":"date","calc":false,"value":""},{"id":"SALES_19_","type":"number","calc":false,"value":""},{"id":"COST_19_","type":"number","calc":false,"value":""},{"id":"NETGL_19_","type":"number","calc":true,"value":""},{"id":"NETABOVE","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"SCHD1","type":"number","calc":true,"value":""},{"id":"DIST","type":"number","calc":false,"value":""},{"id":"ADJBASIS","type":"number","calc":false,"value":""},{"id":"NETDIST","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"SCHD71","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"SCHRK","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"RADDR","type":"alpha","calc":true,"value":""},{"id":"RDACQ","type":"date","calc":true,"value":""},{"id":"RDSOLD","type":"date","calc":true,"value":""},{"id":"RSALES","type":"number","calc":true,"value":""},{"id":"RCOST","type":"number","calc":true,"value":""},{"id":"SCHPA19","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"DPARTSCH","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"DSCORSCH","type":"number","calc":true,"value":""},{"id":"GAIN","type":"number","calc":false,"value":""},{"id":"TOTAL","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/SCHDT.json b/test/data/pa/form/SCHDT.json new file mode 100755 index 00000000..277afbe9 --- /dev/null +++ b/test/data/pa/form/SCHDT.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule D - Sale, Exchange or Disposition of Property - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.273,"y":2.678,"w":4.5,"l":4.967},{"oc":"#221f1f","x":9.29,"y":46.784,"w":4.5,"l":4.95},{"oc":"#221f1f","x":90.948,"y":46.784,"w":4.5,"l":4.941},{"oc":"#221f1f","x":68.071,"y":5,"w":1.5,"l":27.87},{"oc":"#221f1f","x":9.281,"y":5.028,"w":0.75,"l":86.737},{"oc":"#221f1f","x":54.545,"y":31.653,"w":2.25,"l":18.477},{"oc":"#221f1f","x":54.545,"y":33.278,"w":2.25,"l":18.477},{"oc":"#221f1f","x":54.648,"y":32.481,"w":0.75,"l":18.399},{"oc":"#221f1f","x":9.281,"y":5.841,"w":0.75,"l":86.737},{"oc":"#221f1f","x":9.281,"y":7.219,"w":0.75,"l":86.737},{"oc":"#221f1f","x":9.281,"y":11.219,"w":0.75,"l":86.737}],"VLines":[{"oc":"#221f1f","x":13.991,"y":1.597,"w":4.5,"l":1.166},{"oc":"#221f1f","x":9.539,"y":45.753,"w":4.5,"l":1.119},{"oc":"#221f1f","x":95.64,"y":45.753,"w":4.5,"l":1.119},{"oc":"#221f1f","x":73.021,"y":31.653,"w":2.25,"l":1.625},{"oc":"#221f1f","x":54.545,"y":31.653,"w":2.25,"l":1.625},{"oc":"#221f1f","x":72.952,"y":5.844,"w":0.75,"l":1.372}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.199,"y":12.818,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":12.818,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":12.818,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":12.818,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":12.818,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":12.818,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":12.848,"w":0.082,"h":2.22,"clr":-1},{"oc":"#221f1f","x":47.52,"y":12.848,"w":0.083,"h":2.22,"clr":-1},{"oc":"#221f1f","x":57.668,"y":12.848,"w":0.083,"h":2.22,"clr":-1},{"oc":"#221f1f","x":69.568,"y":12.848,"w":0.083,"h":2.22,"clr":-1},{"oc":"#221f1f","x":81.448,"y":12.848,"w":0.083,"h":2.22,"clr":-1},{"oc":"#221f1f","x":9.199,"y":15.068,"w":27.906,"h":0.06,"clr":-1},{"oc":"#221f1f","x":37.269,"y":15.068,"w":10.251,"h":0.06,"clr":-1},{"oc":"#221f1f","x":47.685,"y":15.068,"w":9.983,"h":0.06,"clr":-1},{"oc":"#221f1f","x":57.833,"y":15.068,"w":11.735,"h":0.06,"clr":-1},{"oc":"#221f1f","x":69.733,"y":15.068,"w":11.715,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.613,"y":15.068,"w":14.314,"h":0.06,"clr":-1},{"oc":"#221f1f","x":37.104,"y":15.127,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":47.52,"y":15.127,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":57.668,"y":15.127,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":69.568,"y":15.127,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":81.448,"y":15.127,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":9.199,"y":15.908,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":15.908,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":15.908,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":15.908,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":15.908,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":15.908,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":15.938,"w":0.082,"h":0.758,"clr":-1},{"oc":"#221f1f","x":47.52,"y":15.938,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":57.668,"y":15.938,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":69.568,"y":15.938,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":81.448,"y":15.938,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":9.199,"y":16.695,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":16.695,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":16.695,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":16.695,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":16.695,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":16.695,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":16.725,"w":0.082,"h":0.757,"clr":-1},{"oc":"#221f1f","x":47.52,"y":16.725,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":57.668,"y":16.725,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":69.568,"y":16.725,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.448,"y":16.725,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.199,"y":17.483,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":17.483,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":17.483,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":17.483,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":17.483,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":17.483,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":17.512,"w":0.082,"h":0.758,"clr":-1},{"oc":"#221f1f","x":47.52,"y":17.512,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":57.668,"y":17.512,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":69.568,"y":17.512,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":81.448,"y":17.512,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":9.199,"y":18.27,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":18.27,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":18.27,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":18.27,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":18.27,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":18.27,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":18.3,"w":0.082,"h":0.757,"clr":-1},{"oc":"#221f1f","x":47.52,"y":18.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":57.668,"y":18.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":69.568,"y":18.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.448,"y":18.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.199,"y":19.057,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":19.057,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":19.057,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":19.057,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":19.057,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":19.057,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":19.087,"w":0.082,"h":0.758,"clr":-1},{"oc":"#221f1f","x":47.52,"y":19.087,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":57.668,"y":19.087,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":69.568,"y":19.087,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":81.448,"y":19.087,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":9.199,"y":19.845,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":19.845,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":19.845,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":19.845,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":19.845,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":19.845,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":19.875,"w":0.082,"h":0.758,"clr":-1},{"oc":"#221f1f","x":47.52,"y":19.875,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":57.668,"y":19.875,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":69.568,"y":19.875,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":81.448,"y":19.875,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":9.199,"y":20.632,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":20.632,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":20.632,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":20.632,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":20.632,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":20.632,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":20.663,"w":0.082,"h":0.757,"clr":-1},{"oc":"#221f1f","x":47.52,"y":20.663,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":57.668,"y":20.663,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":69.568,"y":20.663,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.448,"y":20.663,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.199,"y":21.42,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":21.42,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":21.42,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":21.42,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":21.42,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":21.42,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":21.45,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":21.45,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":21.45,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":21.45,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":21.45,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":22.2,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":22.2,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":22.2,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":22.2,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":22.2,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":22.2,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":22.23,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":22.23,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":22.23,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":22.23,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":22.23,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":22.98,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":22.98,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":22.98,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":22.98,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":22.98,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":22.98,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":23.01,"w":0.082,"h":0.757,"clr":-1},{"oc":"#221f1f","x":47.52,"y":23.01,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":57.668,"y":23.01,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":69.568,"y":23.01,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.448,"y":23.01,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.199,"y":23.767,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":23.767,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":23.767,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":23.767,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":23.767,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":23.767,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":23.797,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":23.797,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":23.797,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":23.797,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":23.797,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":24.547,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":24.547,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":24.547,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":24.547,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":24.547,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":24.547,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":24.577,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":24.577,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":24.577,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":24.577,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":24.577,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":25.327,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":25.327,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":25.327,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":25.327,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":25.327,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":25.327,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":25.358,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":25.358,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":25.358,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":25.358,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":25.358,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":26.107,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":26.107,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":26.107,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":26.107,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":26.107,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":26.107,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":26.137,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":26.137,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":26.137,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":26.137,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":26.137,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":26.887,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":26.887,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":26.887,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":26.887,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":26.887,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":26.887,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":26.917,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":26.917,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":26.917,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":26.917,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":26.917,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":27.667,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":27.667,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":27.667,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":27.667,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":27.667,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":27.667,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":27.698,"w":0.082,"h":0.757,"clr":-1},{"oc":"#221f1f","x":47.52,"y":27.698,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":57.668,"y":27.698,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":69.568,"y":27.698,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.448,"y":27.698,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.199,"y":28.455,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":28.455,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":28.455,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":28.455,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":28.455,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":28.455,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":28.485,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":28.485,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":28.485,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":28.485,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":28.485,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":29.235,"w":27.906,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.187,"y":29.235,"w":10.333,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.602,"y":29.235,"w":10.065,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.75,"y":29.235,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.651,"y":29.235,"w":11.797,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":29.235,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.104,"y":29.265,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":47.52,"y":29.265,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":57.668,"y":29.265,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":69.568,"y":29.265,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":81.448,"y":29.265,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.199,"y":30.015,"w":27.906,"h":0.06,"clr":-1},{"oc":"#221f1f","x":37.269,"y":30.015,"w":10.251,"h":0.06,"clr":-1},{"oc":"#221f1f","x":47.685,"y":30.015,"w":9.983,"h":0.06,"clr":-1},{"oc":"#221f1f","x":57.833,"y":30.015,"w":11.735,"h":0.06,"clr":-1},{"oc":"#221f1f","x":69.733,"y":30.015,"w":11.715,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.613,"y":30.015,"w":14.314,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.448,"y":30.075,"w":0.083,"h":0.712,"clr":-1},{"oc":"#221f1f","x":81.531,"y":30.787,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":30.818,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.531,"y":31.575,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":31.605,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.531,"y":32.362,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":32.393,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.531,"y":33.15,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":33.18,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":81.531,"y":33.9,"w":14.396,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":34.71,"w":72.249,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.448,"y":33.93,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":81.613,"y":34.71,"w":14.314,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.281,"y":35.723,"w":31.928,"h":0.06,"clr":-1},{"oc":"#221f1f","x":41.374,"y":35.723,"w":8.064,"h":0.06,"clr":-1},{"oc":"#221f1f","x":49.603,"y":35.723,"w":8.126,"h":0.06,"clr":-1},{"oc":"#221f1f","x":57.894,"y":35.723,"w":11.735,"h":0.06,"clr":-1},{"oc":"#221f1f","x":69.795,"y":35.723,"w":11.653,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.613,"y":35.723,"w":14.231,"h":0.06,"clr":-1},{"oc":"#221f1f","x":41.209,"y":35.782,"w":0.082,"h":1.425,"clr":-1},{"oc":"#221f1f","x":49.438,"y":35.782,"w":0.083,"h":1.425,"clr":-1},{"oc":"#221f1f","x":57.729,"y":35.782,"w":0.083,"h":1.425,"clr":-1},{"oc":"#221f1f","x":69.63,"y":35.782,"w":0.083,"h":1.425,"clr":-1},{"oc":"#221f1f","x":81.448,"y":35.782,"w":0.083,"h":1.425,"clr":-1},{"oc":"#d1d2d3","x":81.531,"y":37.268,"w":14.334,"h":0.667,"clr":-1},{"oc":"#221f1f","x":9.281,"y":37.208,"w":31.928,"h":0.06,"clr":-1},{"oc":"#221f1f","x":41.374,"y":37.208,"w":8.064,"h":0.06,"clr":-1},{"oc":"#221f1f","x":49.603,"y":37.208,"w":8.126,"h":0.06,"clr":-1},{"oc":"#221f1f","x":57.894,"y":37.208,"w":11.735,"h":0.06,"clr":-1},{"oc":"#221f1f","x":69.795,"y":37.208,"w":11.653,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.613,"y":37.208,"w":14.231,"h":0.06,"clr":-1},{"oc":"#221f1f","x":41.209,"y":37.268,"w":0.082,"h":0.667,"clr":-1},{"oc":"#221f1f","x":49.438,"y":37.268,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":57.729,"y":37.268,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":69.63,"y":37.268,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":81.448,"y":37.268,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":9.281,"y":37.935,"w":31.928,"h":0.03,"clr":-1},{"oc":"#221f1f","x":41.291,"y":37.935,"w":8.147,"h":0.03,"clr":-1},{"oc":"#221f1f","x":49.521,"y":37.935,"w":8.209,"h":0.03,"clr":-1},{"oc":"#221f1f","x":57.812,"y":37.935,"w":11.818,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.713,"y":37.935,"w":11.735,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":37.935,"w":14.314,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":37.965,"w":0.083,"h":1.178,"clr":-1},{"oc":"#221f1f","x":9.281,"y":39.143,"w":72.167,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":39.143,"w":14.314,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":39.172,"w":0.083,"h":0.915,"clr":-1},{"oc":"#221f1f","x":9.281,"y":40.088,"w":72.167,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":40.088,"w":14.314,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":40.117,"w":0.083,"h":0.915,"clr":-1},{"oc":"#221f1f","x":9.281,"y":41.033,"w":72.167,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.531,"y":41.033,"w":14.314,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.448,"y":41.063,"w":0.083,"h":0.877,"clr":-1},{"oc":"#221f1f","x":9.281,"y":41.94,"w":72.126,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.737,"y":41.94,"w":14.025,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":42.878,"w":72.249,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.407,"y":42,"w":0.165,"h":0.877,"clr":-1},{"oc":"#221f1f","x":81.572,"y":42.878,"w":14.19,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.762,"y":42,"w":0.165,"h":0.877,"clr":-1}],"Texts":[{"oc":"#221f1f","x":39.578,"y":32.175,"w":9.615000000000002,"clr":-1,"A":"left","R":[{"T":"Minus%20adjusted%20basis%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.747,"y":3.053,"w":15.580999999999992,"clr":-1,"A":"left","R":[{"T":"Sale%2C%20Exchange%20or%20Disposition%20of%20Property","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":38.257,"y":13.072,"w":6.721,"clr":-1,"A":"left","R":[{"T":"Date%20acquired%3A%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.196,"y":9.693,"w":66.49200000000003,"clr":-1,"A":"left","R":[{"T":"including%20inherited%20property.%20Amounts%20from%20Federal%20Schedule%20D%20maynot%20be%20correct%20for%20PA%20income%20tax%20purposes.%20Nonresidents%20should%20read%20carefully%20the%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":28.319,"y":41.872,"w":30.571999999999996,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%202%20through%2010.%20Enter%20on%20Line%205%20of%20your%20PA-40.%20(If%20a%20net%20loss%2C%20fill%20in%20the%20oval)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.796,"y":29.955,"w":14.906309999999996,"clr":-1,"A":"left","R":[{"T":"Net%20gain%20(loss)%20from%20above%20sales","S":-1,"TS":[0,10.999799999999999,0,0]}]},{"oc":"#221f1f","x":83.946,"y":14.063,"w":8.564000000000002,"clr":-1,"A":"left","R":[{"T":"(If%20a%20loss%2C%20fill%20in%20oval).","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":38.69,"y":4.807,"w":20.491000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20need%20more%20space%2C%20you%20may%20photocopy.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":22.561,"y":4.11,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.196,"y":7,"w":4.864000000000001,"clr":-1,"A":"left","R":[{"T":"Important%3A","S":-1,"TS":[0,10.559999999999999,1,0]}]},{"oc":"#221f1f","x":9.203,"y":7.548,"w":0.555,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.925,"y":7.548,"w":0.8320000000000001,"clr":-1,"A":"left","R":[{"T":"0.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":11.513,"y":7.548,"w":0.721,"clr":-1,"A":"left","R":[{"T":"H","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":12.441,"y":7.547000000000001,"w":2.8850000000000002,"clr":-1,"A":"left","R":[{"T":"oweve","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":16.153,"y":7.547000000000001,"w":0.889,"clr":-1,"A":"left","R":[{"T":"r%2C%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":17.433,"y":7.547000000000001,"w":0.468,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":18.547,"y":7.547000000000001,"w":0.997,"clr":-1,"A":"left","R":[{"T":"all","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":20.32,"y":7.547000000000001,"w":1.387,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":22.631,"y":7.547000000000001,"w":2.31,"clr":-1,"A":"left","R":[{"T":"gains","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":26.22,"y":7.547000000000001,"w":1.665,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":28.881,"y":7.547000000000001,"w":2.738,"clr":-1,"A":"left","R":[{"T":"losses","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":33.067,"y":7.547000000000001,"w":2.007,"clr":-1,"A":"left","R":[{"T":"were","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":36.347,"y":7.547000000000001,"w":3.4930000000000008,"clr":-1,"A":"left","R":[{"T":"realized","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":41.379,"y":7.547000000000001,"w":1.11,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":42.823,"y":7.547000000000001,"w":1.112,"clr":-1,"A":"left","R":[{"T":"%20a%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":44.515,"y":7.547000000000001,"w":1.754,"clr":-1,"A":"left","R":[{"T":"joint","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":47.402,"y":7.547000000000001,"w":2.516,"clr":-1,"A":"left","R":[{"T":"basis%2C","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":51.279,"y":7.547000000000001,"w":1.665,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":53.94,"y":7.547000000000001,"w":3.9940000000000007,"clr":-1,"A":"left","R":[{"T":"schedule","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":59.633,"y":7.547000000000001,"w":1.865,"clr":-1,"A":"left","R":[{"T":"may","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":62.583,"y":7.547000000000001,"w":1.11,"clr":-1,"A":"left","R":[{"T":"be","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":64.5,"y":7.547000000000001,"w":4.731,"clr":-1,"A":"left","R":[{"T":"completed.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":71.348,"y":7.547000000000001,"w":4.271000000000001,"clr":-1,"A":"left","R":[{"T":"Complete","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":77.412,"y":7.547000000000001,"w":1.342,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":79.702,"y":7.547000000000001,"w":1.77,"clr":-1,"A":"left","R":[{"T":"oval","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":82.568,"y":7.547000000000001,"w":0.8500000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":83.661,"y":7.547000000000001,"w":1.056,"clr":-1,"A":"left","R":[{"T":"%20in","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":85.146,"y":7.547000000000001,"w":2.6620000000000004,"clr":-1,"A":"left","R":[{"T":"dicate","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":89.126,"y":7.547000000000001,"w":3.5500000000000003,"clr":-1,"A":"left","R":[{"T":"whether","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":94.221,"y":7.547000000000001,"w":1.604,"clr":-1,"A":"left","R":[{"T":"the%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":22.252,"y":12.562,"w":0.879,"clr":-1,"A":"left","R":[{"T":"(a","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":23.305,"y":12.562,"w":0.328,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":41.413,"y":12.555,"w":0.334,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":41.804,"y":12.555,"w":0.612,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":42.525,"y":12.555,"w":0.334,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":38.029,"y":13.63,"w":6.835999999999999,"clr":-1,"A":"left","R":[{"T":"Month%2Fday%2Fyear","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":51.05,"y":12.578,"w":0.879,"clr":-1,"A":"left","R":[{"T":"(c","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":52.103,"y":12.578,"w":0.328,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":48.3,"y":13.58,"w":6.835999999999999,"clr":-1,"A":"left","R":[{"T":"Month%2Fday%2Fyear","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":62.78,"y":12.57,"w":0.334,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":63.171,"y":12.57,"w":0.612,"clr":-1,"A":"left","R":[{"T":"d","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":63.893,"y":12.57,"w":0.334,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":74.763,"y":12.563,"w":0.879,"clr":-1,"A":"left","R":[{"T":"(e","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":75.815,"y":12.562,"w":0.328,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":88.149,"y":12.555,"w":0.984,"clr":-1,"A":"left","R":[{"T":"(f)","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.98,"y":14.925,"w":0.8940000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":81.652,"y":14.663,"w":1.977,"clr":-1,"A":"left","R":[{"T":"LOS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":14.663,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":15.45,"w":1.977,"clr":-1,"A":"left","R":[{"T":"LOS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":15.45,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":16.238,"w":1.977,"clr":-1,"A":"left","R":[{"T":"LOS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":16.238,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":17.025,"w":1.977,"clr":-1,"A":"left","R":[{"T":"LOS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":17.025,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":17.812,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":17.812,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":17.813,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":18.592,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":18.592,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":18.593,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":19.38,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":19.38,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":19.38,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":20.167,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":20.167,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":20.168,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":20.955,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":20.955,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":20.955,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":21.742,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":21.742,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":21.743,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":22.53,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":22.53,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":22.53,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":23.332,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":23.332,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":23.332,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":24.105,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":24.105,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":24.105,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":24.885,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":24.885,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":24.885,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":25.658,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":25.657,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":25.657,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":26.438,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":26.438,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":26.438,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":27.233,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":27.232,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":27.232,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":28.02,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":28.02,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":28.02,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":81.652,"y":28.8,"w":1.318,"clr":-1,"A":"left","R":[{"T":"LO","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":82.807,"y":28.8,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":83.386,"y":28.8,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":10.001,"y":29.955,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":28.898,"y":29.955,"w":0.583764,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,10.002839999999999,0,0]}]},{"oc":"#221f1f","x":32.158,"y":29.955,"w":31.52399999999996,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":75.011,"y":29.608,"w":2.54,"clr":-1,"A":"left","R":[{"T":"LOSS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":79.589,"y":29.955,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.001,"y":30.683,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.223,"y":30.683,"w":0.448,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":39.42,"y":30.683,"w":1.4200000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.34,"y":30.683,"w":26.695999999999977,"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.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":79.596,"y":30.683,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.008,"y":31.462000000000003,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":32.797,"y":31.462000000000003,"w":4.332000000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.815,"y":32.175,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":13.363,"y":32.175,"w":18.460000000000008,"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":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":76.354,"y":32.175,"w":0.862,"clr":-1,"A":"left","R":[{"T":"%3D%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":79.613,"y":32.175,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.024,"y":32.903,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.329,"y":32.903,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":50.09,"y":32.903,"w":17.215999999999998,"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":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":74.969,"y":32.59,"w":2.604,"clr":-1,"A":"left","R":[{"T":"LOSS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":79.589,"y":32.903,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.042,"y":33.592,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.805,"y":33.592,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":59.802,"y":33.593,"w":11.120000000000012,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.552,"y":33.593,"w":0.538,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":74.681,"y":33.403,"w":2.636,"clr":-1,"A":"left","R":[{"T":"LOSS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":79.589,"y":33.592,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.417,"y":35.415,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":23.015,"y":36.323,"w":3.7800000000000002,"clr":-1,"A":"left","R":[{"T":"residence","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":44.507,"y":35.408,"w":0.332,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":44.877,"y":35.408,"w":0.555,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":45.496,"y":35.408,"w":0.332,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":41.908,"y":36.315,"w":6.002000000000001,"clr":-1,"A":"left","R":[{"T":"Month%2Fday%2Fyear","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":52.164,"y":35.408,"w":1.444,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":50.136,"y":36.295,"w":6.002000000000001,"clr":-1,"A":"left","R":[{"T":"Month%2Fday%2Fyear","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":62.903,"y":35.408,"w":1.219,"clr":-1,"A":"left","R":[{"T":"(d)","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":74.784,"y":35.408,"w":1.219,"clr":-1,"A":"left","R":[{"T":"(e)","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":88.212,"y":35.408,"w":0.944,"clr":-1,"A":"left","R":[{"T":"(f)","S":-1,"TS":[0,9.48,0,0]}]},{"oc":"#221f1f","x":9.98,"y":37.688,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.021,"y":39.06,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.717,"y":39.06,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.542,"y":39.06,"w":24.46399999999998,"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.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.82,"y":39.06,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":79.553,"y":39.06,"w":0.766,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.021,"y":39.998,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.842,"y":39.998,"w":0.448,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":43.996,"y":39.998,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":44.821,"y":39.997,"w":22.23999999999999,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.8,"y":39.997,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":79.553,"y":39.997,"w":0.766,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.299,"y":40.935,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.635,"y":40.935,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":39.915,"y":40.935,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.76,"y":40.935,"w":25.575999999999976,"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.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.916,"y":40.935,"w":1.288,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.402,"y":41.872,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.063,"y":41.872,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":71.767,"y":41.872,"w":0.228,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":72.468,"y":41.872,"w":1.344,"clr":-1,"A":"left","R":[{"T":".%20.%20%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":74.722,"y":41.625,"w":1.977,"clr":-1,"A":"left","R":[{"T":"LOS","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":76.456,"y":41.625,"w":0.659,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,8.04,0,0]}]},{"oc":"#221f1f","x":78.991,"y":41.872,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":79.61,"y":41.872,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.331,"y":41.872,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.004,"y":45.9,"w":1.1380000000000001,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":22.459,"y":45.9,"w":2.2760000000000002,"clr":-1,"A":"left","R":[{"T":"0131","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":27.388,"y":45.9,"w":2.2760000000000002,"clr":-1,"A":"left","R":[{"T":"0023","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.268,"y":45.9,"w":1.1380000000000001,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":74.723,"y":45.9,"w":2.2760000000000002,"clr":-1,"A":"left","R":[{"T":"0131","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":79.652,"y":45.9,"w":2.2760000000000002,"clr":-1,"A":"left","R":[{"T":"0023","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.746,"y":2.535,"w":8.166999999999998,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":38.778,"y":31.462000000000003,"w":9.935,"clr":-1,"A":"left","R":[{"T":"Enter%20total%20distribution","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.82,"y":32.903,"w":27.241999999999997,"clr":-1,"A":"left","R":[{"T":"Net%20gain%20(loss)%20from%20the%20sale%20of%206-1-71%20property%20from%20PA%20Schedule%20D-71","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.804,"y":31.462000000000003,"w":15.403999999999996,"clr":-1,"A":"left","R":[{"T":"Taxable%20distributions%20from%20C%20corporations.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.797,"y":30.683,"w":19.18700000000001,"clr":-1,"A":"left","R":[{"T":"Gain%20from%20installment%20sales%20from%20PA%20Schedule%20D-1","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.797,"y":33.592,"w":34.736,"clr":-1,"A":"left","R":[{"T":"Net%20PA%20Scorporation%20and%20partnership%20gain%20(loss)%20from%20your%20PA%20Schedule(s)%20RK-1%20or%20NRK-1%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.775,"y":37.687,"w":46.72000000000008,"clr":-1,"A":"left","R":[{"T":"Taxable%20gain%20from%20the%20sale%20of%20your%20principal%20residence.%20If%20you%20realized%20a%20loss%20on%20the%20sale%20of%20your%20principal%20residence%2C%20enter%20a%20zero.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.86,"y":38.25,"w":45.447000000000074,"clr":-1,"A":"left","R":[{"T":"If%20you%20realized%20a%20gain%2Floss%20on%20the%20sale%20of%20the%20nonresidential%20portion%20of%20your%20principal%20residence%2C%20enter%20the%20information%20on%20Line%201%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.775,"y":39.06,"w":20.235,"clr":-1,"A":"left","R":[{"T":"Taxable%20distributions%20from%20partnerships%20from%20REV%20-999.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.775,"y":39.997,"w":21.648,"clr":-1,"A":"left","R":[{"T":"Taxable%20distributions%20from%20PA%20S%20corporations%20from%20REV-998","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":40.935,"w":18.596999999999998,"clr":-1,"A":"left","R":[{"T":"Taxable%20gain%20from%20exchange%20of%20insurance%20contracts","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.797,"y":41.873,"w":11.802999999999999,"clr":-1,"A":"left","R":[{"T":"Total%20PA%20Taxable%20Gain%20(Loss).%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":20.849,"y":3.6529999999999996,"w":8.835999999999999,"clr":-1,"A":"left","R":[{"T":"PA-40%20Schedule%20D%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":20.829,"y":4.11,"w":3.188,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.406,"y":4.117,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":9.196,"y":5.545,"w":18.118000000000002,"clr":-1,"A":"left","R":[{"T":"Name%20of%20the%20taxpayer%20filing%20this%20schedule%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":73.132,"y":5.545,"w":16.026000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":15.920000000000002,"y":7,"w":61.36299999999989,"clr":-1,"A":"left","R":[{"T":"A%20taxpayer%20and%20spouse%20must%20complete%20separate%20schedules%20to%20report%20their%20gains%20or%20losses%20or%20if%20any%20amounts%20are%20reported%20on%20Lines%203%20through","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.204,"y":8.08,"w":66.16400000000004,"clr":-1,"A":"left","R":[{"T":"gains%20and%20losses%20included%20on%20the%20schedule%20are%20from%20the%20taxpayer%2C%20spouse%20or%20joint.%20One%20spouse%20may%20not%20use%20a%20loss%20to%20reduce%20the%20other%20spouse%E2%80%99s%20gains.%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.195,"y":8.62,"w":63.164,"clr":-1,"A":"left","R":[{"T":"When%20reporting%20the%20sale%20of%20jointly%20owned%20property%20that%20is%20not%20reported%20on%20a%20joint%20PA%20Schedule%20D%2C%20each%20must%20show%20their%20share%20of%20the%20sale%20on%20their%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":9.201,"y":9.16,"w":10.86,"clr":-1,"A":"left","R":[{"T":"separate%20PA%20Schedule%20D.","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":23.635,"y":9.16,"w":10.479999999999997,"clr":-1,"A":"left","R":[{"T":"Read%20the%20instructions.","S":-1,"TS":[0,10.559999999999999,1,0]}]},{"oc":"#221f1f","x":37.501,"y":9.16,"w":41.25399999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20all%20sales%2C%20exchanges%20or%20the%20dispositions%20of%20real%20or%20personal%20tangible%20and%20intangible%20property%2C","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":17.013,"y":13.065,"w":9.748999999999999,"clr":-1,"A":"left","R":[{"T":"Describe%20the%20property%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":15.488,"y":13.567,"w":12.231000000000002,"clr":-1,"A":"left","R":[{"T":"100%20shares%20of%20XYZ%20stock%2C%20or","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":15.468,"y":14.07,"w":12.234999999999998,"clr":-1,"A":"left","R":[{"T":"10%20acres%20in%20Dauphin%20County","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":49.751,"y":13.015,"w":4.736000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20sold%3A%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":59.011,"y":13.088,"w":7.93,"clr":-1,"A":"left","R":[{"T":"Gross%20salesprice%20%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":59.726,"y":13.59,"w":6.284000000000001,"clr":-1,"A":"left","R":[{"T":"less%20expenses","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":61.767,"y":14.078,"w":2.918,"clr":-1,"A":"left","R":[{"T":"of%20sale","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.22,"y":13.072,"w":7.4910000000000005,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20adjusted%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":72.39,"y":13.575,"w":5.340000000000001,"clr":-1,"A":"left","R":[{"T":"basis%20of%20the%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":72,"y":14.077,"w":5.715000000000001,"clr":-1,"A":"left","R":[{"T":"property%20sold","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.343,"y":13.072,"w":5.835000000000001,"clr":-1,"A":"left","R":[{"T":"Gain%20or%20loss%3A%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.301,"y":13.567,"w":5.602,"clr":-1,"A":"left","R":[{"T":"(d)%20minus%20(e)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.196,"y":34.665,"w":18.458999999999996,"clr":-1,"A":"left","R":[{"T":"Taxable%20gain%20from%20selling%20a%20principal%20residence.","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":34.972,"y":34.665,"w":7.881000000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20and%20submit","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":55.041,"y":34.665,"w":25.825999999999997,"clr":-1,"A":"left","R":[{"T":"Complete%20Columns%20(a)%20through%20(e)%20and%20enter%20your%20total%20gain%20on%20Line%207.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":46.048,"y":34.665,"w":6.381,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%2019.","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":22.788,"y":35.865,"w":4.423,"clr":-1,"A":"left","R":[{"T":"Address%20of%20","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":42.051,"y":35.865,"w":5.845999999999999,"clr":-1,"A":"left","R":[{"T":"Date%20acquired%3A%20","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":51.215,"y":35.845,"w":3.882,"clr":-1,"A":"left","R":[{"T":"Datesold%3A%20","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":58.86,"y":35.865,"w":8.240000000000002,"clr":-1,"A":"left","R":[{"T":"Gross%20sales%20priceless%20","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":59.953,"y":36.315,"w":6.554000000000001,"clr":-1,"A":"left","R":[{"T":"expenses%20of%20sale","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":70.121,"y":35.865,"w":9.746999999999998,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20adjusted%20basis%20of%20","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":71.874,"y":36.315,"w":6.329000000000001,"clr":-1,"A":"left","R":[{"T":"the%20property%20sold","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":86.023,"y":35.865,"w":4.971000000000002,"clr":-1,"A":"left","R":[{"T":"Gain%20or%20loss%3A%20","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":86.002,"y":36.315,"w":4.946000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%20minus%20(e)","S":-1,"TS":[1,9.48,0,0]}]},{"oc":"#221f1f","x":49.374,"y":1.4329999999999998,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301310023","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":35.411,"y":4.09,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,24.79,1,0]}]},{"oc":"#221f1f","x":46.707,"y":11.693,"w":3.57,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":63.372,"y":11.693,"w":2.354,"clr":-1,"A":"left","R":[{"T":"Joint","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":29.816,"y":11.692,"w":4.391000000000001,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.192,"y":10.233,"w":41.240999999999964,"clr":-1,"A":"left","R":[{"T":"instructions%20concerning%20intangible%20property.%20If%20theresultis%20a%20loss%2C%20fill%20in%20the%20oval%20next%20to%20the%20line.%20","S":-1,"TS":[0,10.559999999999999,0,0]}]},{"oc":"#221f1f","x":18.393,"y":11.045,"w":54.582999999999934,"clr":-1,"A":"left","R":[{"T":"Complete%20the%20oval%20to%20indicate%20whether%20the%20gains%20and%20losses%20included%20on%20the%20schedule%20are%20from%20the%20taxpayer%2C%20spouse%20or%20joint.","S":-1,"TS":[0,10.559999999999999,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":524,"AM":1024,"x":9.642,"y":6.369,"w":62.945,"h":0.833,"TU":" Name of the taxpayer filing this schedule (if filing a PA-40 jointly enter the name shown first)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":525,"AM":1024,"x":73.676,"y":6.369,"w":22.423,"h":0.833,"TU":"Social Security Number "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_1_","EN":0},"TI":529,"AM":0,"x":11.624,"y":15.088,"w":25.242,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_1_","EN":0},"TI":530,"AM":0,"x":37.328,"y":15.173,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_1_","EN":0},"TI":531,"AM":0,"x":47.627,"y":15.065,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_1_","EN":0},"TI":532,"AM":0,"x":58.498,"y":15.034,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_1_","EN":0},"TI":533,"AM":0,"x":70.198,"y":15.034,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_1_","EN":0},"TI":535,"AM":1024,"x":84.83,"y":15.15,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_2_","EN":0},"TI":536,"AM":0,"x":9.021,"y":15.84,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_2_","EN":0},"TI":537,"AM":0,"x":37.328,"y":15.98,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_2_","EN":0},"TI":538,"AM":0,"x":47.627,"y":15.844,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_2_","EN":0},"TI":539,"AM":0,"x":58.498,"y":15.922,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_2_","EN":0},"TI":540,"AM":0,"x":70.198,"y":15.876,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_2_","EN":0},"TI":542,"AM":1024,"x":84.904,"y":15.956,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_3_","EN":0},"TI":543,"AM":0,"x":9.021,"y":16.636,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_3_","EN":0},"TI":544,"AM":0,"x":37.253,"y":16.776,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_3_","EN":0},"TI":545,"AM":0,"x":47.627,"y":16.671,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_3_","EN":0},"TI":546,"AM":0,"x":58.498,"y":16.691,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_3_","EN":0},"TI":547,"AM":0,"x":70.198,"y":16.691,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_3_","EN":0},"TI":549,"AM":1024,"x":85.054,"y":16.753,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_4_","EN":0},"TI":550,"AM":0,"x":9.021,"y":17.453,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_4_","EN":0},"TI":551,"AM":0,"x":37.328,"y":17.566,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_4_","EN":0},"TI":552,"AM":0,"x":47.627,"y":17.43,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_4_","EN":0},"TI":553,"AM":0,"x":58.498,"y":17.462,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_4_","EN":0},"TI":554,"AM":0,"x":70.198,"y":17.563,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_4_","EN":0},"TI":556,"AM":1024,"x":84.979,"y":17.515,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_5_","EN":0},"TI":557,"AM":0,"x":9.021,"y":18.274,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_5_","EN":0},"TI":558,"AM":0,"x":37.328,"y":18.324,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_5_","EN":0},"TI":559,"AM":0,"x":47.627,"y":18.215,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_5_","EN":0},"TI":560,"AM":0,"x":58.498,"y":18.321,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_5_","EN":0},"TI":561,"AM":0,"x":70.198,"y":18.356,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_5_","EN":0},"TI":563,"AM":1024,"x":84.979,"y":18.301,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_6_","EN":0},"TI":564,"AM":0,"x":9.021,"y":18.978,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_6_","EN":0},"TI":565,"AM":0,"x":37.253,"y":19.137,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_6_","EN":0},"TI":566,"AM":0,"x":47.627,"y":19.001,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_6_","EN":0},"TI":567,"AM":0,"x":58.498,"y":19.052,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_6_","EN":0},"TI":568,"AM":0,"x":70.198,"y":19.134,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_6_","EN":0},"TI":570,"AM":1024,"x":84.979,"y":19.032,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_7_","EN":0},"TI":571,"AM":0,"x":9.021,"y":19.765,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_7_","EN":0},"TI":572,"AM":0,"x":37.328,"y":19.843,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_7_","EN":0},"TI":573,"AM":0,"x":47.627,"y":19.788,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_7_","EN":0},"TI":574,"AM":0,"x":58.562,"y":19.804,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_7_","EN":0},"TI":575,"AM":0,"x":70.198,"y":19.894,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_7_","EN":0},"TI":577,"AM":1024,"x":84.979,"y":19.792,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_8_","EN":0},"TI":578,"AM":0,"x":9.021,"y":20.56,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_8_","EN":0},"TI":579,"AM":0,"x":37.328,"y":20.583,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_8_","EN":0},"TI":580,"AM":0,"x":47.627,"y":20.583,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_8_","EN":0},"TI":581,"AM":0,"x":58.498,"y":20.552,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_8_","EN":0},"TI":582,"AM":0,"x":70.198,"y":20.634,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_8_","EN":0},"TI":584,"AM":1024,"x":84.979,"y":20.587,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_9_","EN":0},"TI":585,"AM":0,"x":9.021,"y":21.342,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_9_","EN":0},"TI":586,"AM":0,"x":37.328,"y":21.365,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_9_","EN":0},"TI":587,"AM":0,"x":47.702,"y":21.365,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_9_","EN":0},"TI":588,"AM":0,"x":58.498,"y":21.416,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_9_","EN":0},"TI":589,"AM":0,"x":70.198,"y":21.444,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_9_","EN":0},"TI":591,"AM":1024,"x":84.979,"y":21.369,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_10_","EN":0},"TI":592,"AM":0,"x":9.021,"y":22.212,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_10_","EN":0},"TI":593,"AM":0,"x":37.328,"y":22.154,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_10_","EN":0},"TI":594,"AM":0,"x":47.627,"y":22.154,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_10_","EN":0},"TI":595,"AM":0,"x":58.498,"y":22.123,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_10_","EN":0},"TI":596,"AM":0,"x":70.198,"y":22.232,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_10_","EN":0},"TI":598,"AM":1024,"x":84.979,"y":22.157,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_11_","EN":0},"TI":599,"AM":0,"x":9.021,"y":22.979,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_11_","EN":0},"TI":600,"AM":0,"x":37.328,"y":23.002,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_11_","EN":0},"TI":601,"AM":0,"x":47.776,"y":22.984,"w":9.762,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_11_","EN":0},"TI":602,"AM":0,"x":58.573,"y":22.999,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_11_","EN":0},"TI":603,"AM":0,"x":70.198,"y":23.081,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_11_","EN":0},"TI":605,"AM":1024,"x":84.979,"y":22.924,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_12_","EN":0},"TI":606,"AM":0,"x":9.021,"y":23.793,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_12_","EN":0},"TI":607,"AM":0,"x":37.328,"y":23.761,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_12_","EN":0},"TI":608,"AM":0,"x":47.627,"y":23.707,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_12_","EN":0},"TI":609,"AM":0,"x":58.498,"y":23.676,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_12_","EN":0},"TI":610,"AM":0,"x":70.198,"y":23.785,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_12_","EN":0},"TI":612,"AM":1024,"x":84.979,"y":23.711,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_13_","EN":0},"TI":613,"AM":0,"x":9.021,"y":24.526,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_13_","EN":0},"TI":614,"AM":0,"x":37.328,"y":24.577,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_13_","EN":0},"TI":615,"AM":0,"x":47.627,"y":24.495,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_13_","EN":0},"TI":616,"AM":0,"x":58.498,"y":24.464,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_13_","EN":0},"TI":617,"AM":0,"x":70.198,"y":24.601,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_13_","EN":0},"TI":619,"AM":1024,"x":85.054,"y":24.608,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_14_","EN":0},"TI":620,"AM":0,"x":9.021,"y":25.255,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_14_","EN":0},"TI":621,"AM":0,"x":37.328,"y":25.278,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_14_","EN":0},"TI":622,"AM":0,"x":47.702,"y":25.278,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_14_","EN":0},"TI":623,"AM":0,"x":58.498,"y":25.329,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_14_","EN":0},"TI":624,"AM":0,"x":70.198,"y":25.411,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_14_","EN":0},"TI":626,"AM":1024,"x":84.979,"y":25.336,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_15_","EN":0},"TI":627,"AM":0,"x":9.021,"y":26.043,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_15_","EN":0},"TI":628,"AM":0,"x":37.328,"y":26.066,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_15_","EN":0},"TI":629,"AM":0,"x":47.605,"y":26.066,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_15_","EN":0},"TI":630,"AM":0,"x":58.498,"y":26.036,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_15_","EN":0},"TI":631,"AM":0,"x":70.198,"y":26.172,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_15_","EN":0},"TI":633,"AM":1024,"x":84.979,"y":26.124,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_16_","EN":0},"TI":634,"AM":0,"x":9.021,"y":26.811,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_16_","EN":0},"TI":635,"AM":0,"x":37.328,"y":26.943,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_16_","EN":0},"TI":636,"AM":0,"x":47.627,"y":26.834,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_16_","EN":0},"TI":637,"AM":0,"x":58.498,"y":26.804,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_16_","EN":0},"TI":638,"AM":0,"x":70.198,"y":26.967,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_16_","EN":0},"TI":640,"AM":1024,"x":84.979,"y":26.947,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_17_","EN":0},"TI":641,"AM":0,"x":9.021,"y":27.596,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_17_","EN":0},"TI":642,"AM":0,"x":37.328,"y":27.7,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_17_","EN":0},"TI":643,"AM":0,"x":47.627,"y":27.619,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_17_","EN":0},"TI":644,"AM":0,"x":58.498,"y":27.588,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_17_","EN":0},"TI":645,"AM":0,"x":70.198,"y":27.779,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_17_","EN":0},"TI":647,"AM":1024,"x":84.904,"y":27.704,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_18_","EN":0},"TI":648,"AM":0,"x":9.021,"y":28.381,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_18_","EN":0},"TI":649,"AM":0,"x":37.328,"y":28.485,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_18_","EN":0},"TI":650,"AM":0,"x":47.627,"y":28.404,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_18_","EN":0},"TI":651,"AM":0,"x":58.498,"y":28.373,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_18_","EN":0},"TI":652,"AM":0,"x":70.198,"y":28.509,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_18_","EN":0},"TI":654,"AM":1024,"x":84.979,"y":28.544,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_19_","EN":0},"TI":655,"AM":0,"x":9.021,"y":29.164,"w":28.188,"h":0.833,"TU":"Describe the property: 100 shares of XYZ stock, or 10 acres in Dauphin County"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DACQ_19_","EN":0},"TI":656,"AM":0,"x":37.328,"y":29.234,"w":10.038,"h":0.833,"TU":"Date acquired: Month/day/year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DSOLD_19_","EN":0},"TI":657,"AM":0,"x":47.627,"y":29.187,"w":9.954,"h":0.833,"TU":"Date sold: Month/Day/Year","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALES_19_","EN":0},"TI":658,"AM":0,"x":58.434,"y":29.18,"w":10.7,"h":0.833,"TU":"Gross sales price "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_19_","EN":0},"TI":659,"AM":0,"x":70.198,"y":29.293,"w":10.7,"h":0.833,"TU":"Required. Cost or Adjusted Basis."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETGL_19_","EN":0},"TI":661,"AM":1024,"x":84.967,"y":29.3,"w":11.387,"h":0.833,"TU":"Gain or loss (d) minus (e)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETABOVE","EN":0},"TI":663,"AM":1024,"x":81.583,"y":30.107,"w":14.771,"h":0.833,"TU":"Net gain (loss) from above sales"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":664,"AM":0,"x":74.122,"y":30.795,"w":4.214,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCHD1","EN":0},"TI":665,"AM":1024,"x":81.595,"y":30.864,"w":14.771,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIST","EN":0},"TI":666,"AM":0,"x":55.301,"y":31.756,"w":17.016,"h":0.833,"TU":"Enter total distribution"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJBASIS","EN":0},"TI":667,"AM":0,"x":55.376,"y":32.541,"w":17.016,"h":0.833,"TU":"Minus Adjusted Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETDIST","EN":0},"TI":668,"AM":1024,"x":81.785,"y":32.412,"w":14.771,"h":0.833,"TU":"Taxable distributions from C corporations"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":669,"AM":0,"x":70.134,"y":33.265,"w":4.215,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCHD71","EN":0},"TI":671,"AM":1024,"x":81.785,"y":33.215,"w":14.771,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":672,"AM":0,"x":70.215,"y":33.92,"w":4.214,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCHRK","EN":0},"TI":674,"AM":1024,"x":81.785,"y":34.035,"w":14.771,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":675,"AM":0,"x":90.774,"y":34.735,"w":4.813,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RADDR","EN":0},"TI":676,"AM":1024,"x":9.475,"y":37.255,"w":31.829,"h":0.833,"TU":"Address of residence"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"RDACQ","EN":0},"TI":677,"AM":1024,"x":41.526,"y":37.317,"w":7.669,"h":0.833,"TU":"Date acquired","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"RDSOLD","EN":0},"TI":678,"AM":1024,"x":49.679,"y":37.29,"w":7.795,"h":0.833,"TU":"Date sold","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSALES","EN":0},"TI":679,"AM":1024,"x":57.953,"y":37.263,"w":11.578,"h":0.833,"TU":"Gross sales price"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RCOST","EN":0},"TI":680,"AM":1024,"x":69.789,"y":37.29,"w":11.552,"h":0.833,"TU":"Cost or Adjusted Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCHPA19","EN":0},"TI":681,"AM":1024,"x":81.746,"y":38.251,"w":14.159,"h":0.833,"TU":"Taxable gain from the sale of your principal residence."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":682,"AM":0,"x":74.217,"y":39.187,"w":4.215,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPARTSCH","EN":0},"TI":683,"AM":1024,"x":81.828,"y":39.313,"w":14.084,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":684,"AM":0,"x":74.237,"y":40.175,"w":4.214,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DSCORSCH","EN":0},"TI":685,"AM":1024,"x":81.753,"y":40.232,"w":14.084,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GAIN","EN":0},"TI":686,"AM":0,"x":81.671,"y":41.092,"w":14.084,"h":0.833,"TU":"Taxable gain from exchange of insurance contracts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":688,"AM":1024,"x":81.753,"y":41.998,"w":14.084,"h":0.833,"TU":"Total PA taxable gain (loss). "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPBX","EN":0},"TI":526,"AM":0,"x":35.477,"y":11.82,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBX","EN":0},"TI":527,"AM":0,"x":51.486,"y":11.87,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"JTBX","EN":0},"TI":528,"AM":0,"x":66.739,"y":11.862,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"OWNRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_1_","EN":0},"TI":534,"AM":1024,"x":82.396,"y":15.159,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_2_","EN":0},"TI":541,"AM":1024,"x":82.396,"y":15.938,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_3_","EN":0},"TI":548,"AM":1024,"x":82.396,"y":16.735,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_4_","EN":0},"TI":555,"AM":1024,"x":82.396,"y":17.524,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_5_","EN":0},"TI":562,"AM":1024,"x":82.396,"y":18.31,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_6_","EN":0},"TI":569,"AM":1024,"x":82.396,"y":19.095,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_7_","EN":0},"TI":576,"AM":1024,"x":82.396,"y":19.883,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_8_","EN":0},"TI":583,"AM":1024,"x":82.396,"y":20.677,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_9_","EN":0},"TI":590,"AM":1024,"x":82.396,"y":21.46,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_10_","EN":0},"TI":597,"AM":1024,"x":82.396,"y":22.248,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_11_","EN":0},"TI":604,"AM":1024,"x":82.396,"y":23.015,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_12_","EN":0},"TI":611,"AM":1024,"x":82.396,"y":23.836,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_13_","EN":0},"TI":618,"AM":1024,"x":82.396,"y":24.609,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_14_","EN":0},"TI":625,"AM":1024,"x":82.396,"y":25.388,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_15_","EN":0},"TI":632,"AM":1024,"x":82.396,"y":26.162,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_16_","EN":0},"TI":639,"AM":1024,"x":82.396,"y":26.95,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_17_","EN":0},"TI":646,"AM":1024,"x":82.396,"y":27.73,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_18_","EN":0},"TI":653,"AM":1024,"x":82.396,"y":28.531,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LOSS_19_","EN":0},"TI":660,"AM":1024,"x":82.396,"y":29.309,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2LOSS","EN":0},"TI":662,"AM":1024,"x":75.702,"y":30.15,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L5LOSS","EN":0},"TI":670,"AM":1024,"x":75.73,"y":33.324,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6LOSS","EN":0},"TI":673,"AM":1024,"x":75.73,"y":34.096,"w":1.461,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L11LOSS","EN":0},"TI":687,"AM":1024,"x":75.709,"y":42.205,"w":1.461,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/SCHJT.content.txt b/test/data/pa/form/SCHJT.content.txt new file mode 100755 index 00000000..4ead4fc3 --- /dev/null +++ b/test/data/pa/form/SCHJT.content.txt @@ -0,0 +1,292 @@ + . . . +(S). +Total Gambling and Lottery Winnings. +2013 +2013 +PA SCHEDULE J – Income from Estates or Trusts +PA SCHEDULE J/T + + + + + + + +2013 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +T/S/ +J + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. +. + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . + + + + + + + + + + + +• + + + + + +• + + + + +IM +P +OR +T +AN +T: + + + + +• + + + + + + +1. + + + +1. + + + +2. + + + +, + +2. + + + +3. + + + + + +3. + + + +4. + + +4. + + + +5. + + + + +5. + + + + +6. + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . + + + +7. + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . + + + + + + + + + +Name shown first on the PA-40 (if filing jointly) +Social Security Number (shown first) +PA SCHEDULE T – Gambling and Lottery Winnings +For both PA residents and non-PA residents, prizes from playing games of the Pennsylvania Lottery are not taxable, but you must include your winnings in +eligibility income if claiming Tax Forgiveness on PA Schedule SP. You may not deduct your cost to play games of the Pennsylvania Lottery from other winnings. +Spouses may not use each other’s costs to reduce the amount of winnings on the is schedule. +Enter your total winnings from all Federal Forms W-2G. +Enter your total winnings from all other gambling, betting and lottery +activities. Include cash and the market value or stated value of +property, trips, services, etc. +Total Winnings. +Add Lines 1 and 2. +Enter your total costs for tickets, bets and other wagering. Do not include +any expenses (travel, meals, programs, tip sheets, etc.) you incurred to +play a game of chance. You must be able to document your costs. +Gambling and lottery winnings. Subtract Line 4 from Line 3. +If Line 4 is more than Line 3, enter zero. +Add only the winnings from Line +5 of each column, and enter the total here and on Line 8 of your PA-40. +Enter the total amount of any PA tax with held from Federal Forms W-2G. +Enter here and include on Line 13 of your PA-40. +Non-PA residents must report all PA-taxable gambling and lottery winnings from sources within Pennsylvania. +PA residents must report all PA-taxable gambling and lottery winnings from all sources, whether receiving a Federal Form W-2G or not. +Name shown first on the PA-40 (if filing jointly) +Social Security Number (shown first) +Add Column(c). Enter on Line 7 of your PA-40. +Total Estate or Trust Income. +Income from partnerships and PA S corporations, from your PA-20S/PA-65 Schedules RK-1 or NRK-1. +List the name, address and identification number of each estate or trust. Check box if income is reported from PA-41 Schedule RK-1 or NRK-1. If you +the PA-40) or the spouse +(J) +if you and your spouse are joint beneficiaries. +(a) Name and Address of Each Estate or Trust +(b) Federal EIN +(c) Income Amount +(positive amounts only) + Use +received a Federal Schedule K-1 instead of a PA-41 Schedule RK-1 or NRK-1. see the instructions. Indicate if the beneficiary is the taxpayer +(T += the name shown first on +Read the instructions. +PA-40 T +OFFICIAL USE ONLY +1302910029 +1302910029 +1302910029 +PA-40 Schedule J/T +(06-13) +PA-40 J +(06-13) +Schedule +RK-1/NRK-1 +(06-13) +Spouse +Taxpayer +(Not Supported) +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/SCHJT.fields.json b/test/data/pa/form/SCHJT.fields.json new file mode 100755 index 00000000..0b4a748e --- /dev/null +++ b/test/data/pa/form/SCHJT.fields.json @@ -0,0 +1 @@ +[{"id":"RK1BX_1_","type":"box","calc":false,"value":""},{"id":"RK1BX_2_","type":"box","calc":false,"value":""},{"id":"RK1BX_3_","type":"box","calc":false,"value":""},{"id":"RK1BX_4_","type":"box","calc":false,"value":""},{"id":"RK1BX_5_","type":"box","calc":false,"value":""},{"id":"RK1BX_6_","type":"box","calc":false,"value":""},{"id":"RK1BX_7_","type":"box","calc":false,"value":""},{"id":"RK1BX_8_","type":"box","calc":false,"value":""},{"id":"RK1BX_9_","type":"box","calc":false,"value":""},{"id":"RK1BX_10_","type":"box","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"TRUS_1_","type":"alpha","calc":false,"value":""},{"id":"TSJ_1_","type":"alpha","calc":false,"value":""},{"id":"FEDE_1_","type":"mask","calc":false,"value":""},{"id":"INCO_1_","type":"number","calc":false,"value":""},{"id":"TRUS_2_","type":"alpha","calc":false,"value":""},{"id":"TSJ_2_","type":"alpha","calc":false,"value":""},{"id":"FEDE_2_","type":"mask","calc":false,"value":""},{"id":"INCO_2_","type":"number","calc":false,"value":""},{"id":"TRUS_3_","type":"alpha","calc":false,"value":""},{"id":"TSJ_3_","type":"alpha","calc":false,"value":""},{"id":"FEDE_3_","type":"mask","calc":false,"value":""},{"id":"INCO_3_","type":"number","calc":false,"value":""},{"id":"TRUS_4_","type":"alpha","calc":false,"value":""},{"id":"TSJ_4_","type":"alpha","calc":false,"value":""},{"id":"FEDE_4_","type":"mask","calc":false,"value":""},{"id":"INCO_4_","type":"number","calc":false,"value":""},{"id":"TRUS_5_","type":"alpha","calc":false,"value":""},{"id":"TSJ_5_","type":"alpha","calc":false,"value":""},{"id":"FEDE_5_","type":"mask","calc":false,"value":""},{"id":"INCO_5_","type":"number","calc":false,"value":""},{"id":"TRUS_6_","type":"alpha","calc":false,"value":""},{"id":"TSJ_6_","type":"alpha","calc":false,"value":""},{"id":"FEDE_6_","type":"mask","calc":false,"value":""},{"id":"INCO_6_","type":"number","calc":false,"value":""},{"id":"TRUS_7_","type":"alpha","calc":false,"value":""},{"id":"TSJ_7_","type":"alpha","calc":false,"value":""},{"id":"FEDE_7_","type":"mask","calc":false,"value":""},{"id":"INCO_7_","type":"number","calc":false,"value":""},{"id":"TRUS_8_","type":"alpha","calc":false,"value":""},{"id":"TSJ_8_","type":"alpha","calc":false,"value":""},{"id":"FEDE_8_","type":"mask","calc":false,"value":""},{"id":"INCO_8_","type":"number","calc":false,"value":""},{"id":"TRUS_9_","type":"alpha","calc":false,"value":""},{"id":"TSJ_9_","type":"alpha","calc":false,"value":""},{"id":"FEDE_9_","type":"mask","calc":false,"value":""},{"id":"INCO_9_","type":"number","calc":false,"value":""},{"id":"TRUS_10_","type":"alpha","calc":false,"value":""},{"id":"TSJ_10_","type":"alpha","calc":false,"value":""},{"id":"FEDE_10_","type":"mask","calc":false,"value":""},{"id":"INCO_10_","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"SHAB","type":"number","calc":true,"value":""},{"id":"TOTZ","type":"number","calc":true,"value":""},{"id":"NAME3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"W2GT","type":"number","calc":false,"value":""},{"id":"FMVT","type":"number","calc":false,"value":""},{"id":"TOTWINT","type":"number","calc":true,"value":""},{"id":"COSTT","type":"number","calc":false,"value":""},{"id":"WINT","type":"number","calc":true,"value":""},{"id":"W2GS","type":"number","calc":false,"value":""},{"id":"FMVS","type":"number","calc":false,"value":""},{"id":"TOTWINS","type":"number","calc":true,"value":""},{"id":"COSTS","type":"number","calc":false,"value":""},{"id":"WINS","type":"number","calc":true,"value":""},{"id":"TOTALG","type":"number","calc":true,"value":""},{"id":"PAW2GWH","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/SCHJT.json b/test/data/pa/form/SCHJT.json new file mode 100755 index 00000000..29df0272 --- /dev/null +++ b/test/data/pa/form/SCHJT.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule J/T - Income from Estates or Trusts and Gambling and Lottery Winnings - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.29,"y":3.458,"w":4.5,"l":4.967},{"oc":"#221f1f","x":9.307,"y":46.788,"w":4.5,"l":4.941},{"oc":"#221f1f","x":90.948,"y":46.788,"w":4.5,"l":4.933},{"oc":"#221f1f","x":68.028,"y":5.74,"w":1.5,"l":27.861},{"oc":"#221f1f","x":9.281,"y":5.796,"w":1.5,"l":86.702},{"oc":"#221f1f","x":9.281,"y":25.122,"w":0.75,"l":86.737},{"oc":"#221f1f","x":9.367,"y":6.815,"w":0.75,"l":86.608},{"oc":"#221f1f","x":9.367,"y":8.337,"w":0.75,"l":86.608},{"oc":"#221f1f","x":9.281,"y":26.1,"w":0.75,"l":86.737},{"oc":"#221f1f","x":9.281,"y":27.62,"w":0.75,"l":86.737},{"oc":"#221f1f","x":77.284,"y":24.678,"w":1.5,"l":18.64},{"oc":"#221f1f","x":77.284,"y":23.491,"w":1.5,"l":18.64},{"oc":"#221f1f","x":77.284,"y":41.259,"w":1.5,"l":18.64},{"oc":"#221f1f","x":77.284,"y":39.863,"w":1.5,"l":18.64},{"oc":"#221f1f","x":77.284,"y":43.384,"w":1.5,"l":18.64},{"oc":"#221f1f","x":77.284,"y":41.988,"w":1.5,"l":18.64}],"VLines":[{"oc":"#221f1f","x":13.999,"y":2.377,"w":4.5,"l":1.131},{"oc":"#221f1f","x":9.556,"y":45.759,"w":4.5,"l":1.119},{"oc":"#221f1f","x":95.64,"y":45.756,"w":4.5,"l":1.119},{"oc":"#221f1f","x":72.961,"y":6.802,"w":0.75,"l":1.521},{"oc":"#221f1f","x":72.961,"y":26.085,"w":0.75,"l":1.581},{"oc":"#221f1f","x":95.923,"y":23.491,"w":1.5,"l":1.188},{"oc":"#221f1f","x":77.284,"y":23.491,"w":1.5,"l":1.188},{"oc":"#221f1f","x":95.923,"y":39.863,"w":1.5,"l":1.397},{"oc":"#221f1f","x":77.284,"y":39.863,"w":1.5,"l":1.397},{"oc":"#221f1f","x":95.923,"y":41.988,"w":1.5,"l":1.397},{"oc":"#221f1f","x":77.284,"y":41.988,"w":1.5,"l":1.397}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.343,"y":10.058,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":10.058,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":10.058,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":10.058,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":10.058,"w":18.727,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":10.087,"w":0.083,"h":1.133,"clr":-1},{"oc":"#221f1f","x":54.615,"y":10.087,"w":0.083,"h":1.133,"clr":-1},{"oc":"#221f1f","x":59.132,"y":10.087,"w":0.083,"h":1.133,"clr":-1},{"oc":"#221f1f","x":77.117,"y":10.087,"w":0.083,"h":1.133,"clr":-1},{"oc":"#221f1f","x":9.343,"y":11.22,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":11.22,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":11.22,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":11.22,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":11.22,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":11.25,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":54.615,"y":11.25,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":59.132,"y":11.25,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.117,"y":11.25,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":11.25,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.343,"y":12.285,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":12.285,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":12.285,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":12.285,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":12.285,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":12.315,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":54.615,"y":12.315,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":59.132,"y":12.315,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.117,"y":12.315,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":12.315,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.343,"y":13.35,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":13.35,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":13.35,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":13.35,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":13.35,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":13.38,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":54.615,"y":13.38,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":59.132,"y":13.38,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":77.117,"y":13.38,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":95.886,"y":13.38,"w":0.082,"h":1.027,"clr":-1},{"oc":"#221f1f","x":9.343,"y":14.407,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":14.407,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":14.407,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":14.407,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":14.407,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":14.438,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":54.615,"y":14.438,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":59.132,"y":14.438,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.117,"y":14.438,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":14.438,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.343,"y":15.473,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":15.473,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":15.473,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":15.473,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":15.473,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":15.503,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":54.615,"y":15.503,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":59.132,"y":15.503,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.117,"y":15.503,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":15.503,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.343,"y":16.538,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":16.538,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":16.538,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":16.538,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":16.538,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":16.567,"w":0.083,"h":1.028,"clr":-1},{"oc":"#221f1f","x":54.615,"y":16.567,"w":0.083,"h":1.028,"clr":-1},{"oc":"#221f1f","x":59.132,"y":16.567,"w":0.083,"h":1.028,"clr":-1},{"oc":"#221f1f","x":77.117,"y":16.567,"w":0.083,"h":1.028,"clr":-1},{"oc":"#221f1f","x":95.886,"y":16.567,"w":0.082,"h":1.028,"clr":-1},{"oc":"#221f1f","x":9.343,"y":17.595,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":17.595,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":17.595,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":17.595,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":17.595,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":17.625,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":54.615,"y":17.625,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":59.132,"y":17.625,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.117,"y":17.625,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":17.625,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.343,"y":18.66,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":18.66,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":18.66,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":18.66,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":18.66,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":18.69,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":54.615,"y":18.69,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":59.132,"y":18.69,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.117,"y":18.69,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":18.69,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.343,"y":19.725,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":19.725,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":19.725,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":19.725,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":19.725,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":19.755,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":54.615,"y":19.755,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":59.132,"y":19.755,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":77.117,"y":19.755,"w":0.083,"h":1.027,"clr":-1},{"oc":"#221f1f","x":95.886,"y":19.755,"w":0.082,"h":1.027,"clr":-1},{"oc":"#221f1f","x":9.343,"y":20.782,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":20.782,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":20.782,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":20.782,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":20.782,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.582,"y":20.813,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":54.615,"y":20.813,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":59.132,"y":20.813,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.117,"y":20.813,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":20.813,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.343,"y":21.847,"w":38.239,"h":0.03,"clr":-1},{"oc":"#221f1f","x":47.664,"y":21.847,"w":6.951,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.698,"y":21.847,"w":4.434,"h":0.03,"clr":-1},{"oc":"#221f1f","x":59.214,"y":21.847,"w":17.903,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":21.847,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.219,"y":22.912,"w":67.897,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.117,"y":21.878,"w":0.083,"h":1.035,"clr":-1},{"oc":"#221f1f","x":77.199,"y":22.912,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.886,"y":21.878,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":9.281,"y":30.832,"w":48.902,"h":0.03,"clr":-1},{"oc":"#221f1f","x":58.266,"y":30.832,"w":18.851,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":30.832,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":30.863,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":58.183,"y":30.863,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":77.117,"y":30.863,"w":0.083,"h":0.75,"clr":-1},{"oc":"#221f1f","x":95.886,"y":30.863,"w":0.082,"h":0.75,"clr":-1},{"oc":"#221f1f","x":9.281,"y":31.612,"w":2.207,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.571,"y":31.612,"w":44.406,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.059,"y":31.612,"w":2.124,"h":0.03,"clr":-1},{"oc":"#221f1f","x":58.266,"y":31.612,"w":18.851,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":31.612,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":31.643,"w":0.082,"h":1.282,"clr":-1},{"oc":"#221f1f","x":11.488,"y":31.643,"w":0.083,"h":1.282,"clr":-1},{"oc":"#221f1f","x":55.976,"y":31.643,"w":0.083,"h":1.282,"clr":-1},{"oc":"#221f1f","x":58.183,"y":31.643,"w":0.083,"h":1.282,"clr":-1},{"oc":"#221f1f","x":77.117,"y":31.643,"w":0.083,"h":1.282,"clr":-1},{"oc":"#221f1f","x":95.886,"y":31.643,"w":0.082,"h":1.282,"clr":-1},{"oc":"#221f1f","x":9.281,"y":32.925,"w":2.207,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.571,"y":32.925,"w":44.406,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.059,"y":32.925,"w":2.124,"h":0.03,"clr":-1},{"oc":"#221f1f","x":58.266,"y":32.925,"w":18.851,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":32.925,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":32.955,"w":0.082,"h":1.83,"clr":-1},{"oc":"#221f1f","x":11.488,"y":32.955,"w":0.083,"h":1.83,"clr":-1},{"oc":"#221f1f","x":55.976,"y":32.955,"w":0.083,"h":1.83,"clr":-1},{"oc":"#221f1f","x":58.183,"y":32.955,"w":0.083,"h":1.83,"clr":-1},{"oc":"#221f1f","x":77.117,"y":32.955,"w":0.083,"h":1.83,"clr":-1},{"oc":"#221f1f","x":95.886,"y":32.955,"w":0.082,"h":1.83,"clr":-1},{"oc":"#221f1f","x":9.281,"y":34.785,"w":2.207,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.571,"y":34.785,"w":44.406,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.059,"y":34.785,"w":2.124,"h":0.03,"clr":-1},{"oc":"#221f1f","x":58.266,"y":34.785,"w":18.851,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":34.785,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":34.815,"w":0.082,"h":1.275,"clr":-1},{"oc":"#221f1f","x":11.488,"y":34.815,"w":0.083,"h":1.275,"clr":-1},{"oc":"#221f1f","x":55.976,"y":34.815,"w":0.083,"h":1.275,"clr":-1},{"oc":"#221f1f","x":58.183,"y":34.815,"w":0.083,"h":1.275,"clr":-1},{"oc":"#221f1f","x":77.117,"y":34.815,"w":0.083,"h":1.275,"clr":-1},{"oc":"#221f1f","x":95.886,"y":34.815,"w":0.082,"h":1.275,"clr":-1},{"oc":"#221f1f","x":9.281,"y":36.09,"w":2.207,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.571,"y":36.09,"w":44.406,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.059,"y":36.09,"w":2.124,"h":0.03,"clr":-1},{"oc":"#221f1f","x":58.266,"y":36.09,"w":18.851,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":36.09,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":36.12,"w":0.082,"h":1.935,"clr":-1},{"oc":"#221f1f","x":11.488,"y":36.12,"w":0.083,"h":1.935,"clr":-1},{"oc":"#221f1f","x":55.976,"y":36.12,"w":0.083,"h":1.935,"clr":-1},{"oc":"#221f1f","x":58.183,"y":36.12,"w":0.083,"h":1.935,"clr":-1},{"oc":"#221f1f","x":77.117,"y":36.12,"w":0.083,"h":1.935,"clr":-1},{"oc":"#221f1f","x":95.886,"y":36.12,"w":0.082,"h":1.935,"clr":-1},{"oc":"#221f1f","x":9.281,"y":38.055,"w":2.207,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.571,"y":38.055,"w":44.406,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.059,"y":38.055,"w":2.124,"h":0.03,"clr":-1},{"oc":"#221f1f","x":58.266,"y":38.055,"w":18.851,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":38.055,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":38.085,"w":0.082,"h":1.252,"clr":-1},{"oc":"#221f1f","x":9.281,"y":39.337,"w":2.207,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.488,"y":38.085,"w":0.083,"h":1.252,"clr":-1},{"oc":"#221f1f","x":11.571,"y":39.337,"w":44.406,"h":0.03,"clr":-1},{"oc":"#221f1f","x":55.976,"y":38.085,"w":0.083,"h":1.252,"clr":-1},{"oc":"#221f1f","x":56.059,"y":39.337,"w":2.124,"h":0.03,"clr":-1},{"oc":"#221f1f","x":58.183,"y":38.085,"w":0.083,"h":1.252,"clr":-1},{"oc":"#221f1f","x":58.266,"y":39.337,"w":18.851,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.117,"y":38.085,"w":0.083,"h":1.252,"clr":-1},{"oc":"#221f1f","x":77.199,"y":39.337,"w":18.686,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.886,"y":38.085,"w":0.082,"h":1.252,"clr":-1}],"Texts":[{"oc":"#221f1f","x":73.709,"y":42.277,"w":1.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.775,"y":9.06,"w":1.305,"clr":-1,"A":"left","R":[{"T":"(S).","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":12.414,"y":39.532,"w":18.336000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20Gambling%20and%20Lottery%20Winnings.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":88.314,"y":25.28,"w":2.248,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,21.7273,1,0]}]},{"oc":"#221f1f","x":88.356,"y":5.871,"w":2.248,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,21.7273,1,0]}]},{"oc":"#221f1f","x":24.768,"y":5.871,"w":24.117,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20%20J%20%E2%80%93%20Income%20from%20Estates%20or%20Trusts%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":20.354,"y":3.771,"w":9.553056,"clr":-1,"A":"left","R":[{"T":"PA%20%20SCHEDULE%20J%2FT","S":-1,"TS":[0,16.00384,1,0]}]},{"oc":"#221f1f","x":35.287,"y":4.858,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23.79,0,0]}]},{"oc":"#221f1f","x":55.046,"y":9.758,"w":1.858,"clr":-1,"A":"left","R":[{"T":"T%2FS%2F","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":57.583,"y":9.758,"w":0.562,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":39.22,"y":23.64,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":39.982,"y":23.64,"w":0.28400000000000003,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.333,"y":23.64,"w":21.583999999999996,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.786,"y":23.64,"w":4.573000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.815,"y":27.427,"w":0.752,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20","S":-1,"TS":[1,15,0,0]}]},{"oc":"#221f1f","x":9.815,"y":28.05,"w":0.752,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20","S":-1,"TS":[1,15,0,0]}]},{"oc":"#221f1f","x":9.304,"y":28.62,"w":0.919,"clr":-1,"A":"left","R":[{"T":"IM","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":10.562,"y":28.62,"w":0.551,"clr":-1,"A":"left","R":[{"T":"P","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":11.325,"y":28.62,"w":1.238,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":13.037,"y":28.62,"w":0.501,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":13.677,"y":28.62,"w":1.194,"clr":-1,"A":"left","R":[{"T":"AN","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":15.306,"y":28.62,"w":1.002,"clr":-1,"A":"left","R":[{"T":"T%3A%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":9.815,"y":29.94,"w":0.752,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20","S":-1,"TS":[1,15,0,0]}]},{"oc":"#221f1f","x":9.774,"y":31.424999999999997,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.366,"y":31.424999999999997,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":32.715,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":16.827,"y":33.915,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%2C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.345,"y":32.715,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":34.583,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.366,"y":34.583,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":35.91,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.366,"y":35.91,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":37.83,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.324,"y":37.83,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.815,"y":39.532,"w":1.374,"clr":-1,"A":"left","R":[{"T":"6.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":56.779,"y":40.14,"w":14.484000000000012,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.815,"y":41.678,"w":1.374,"clr":-1,"A":"left","R":[{"T":"7.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.059,"y":42.277,"w":14.484000000000012,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.299,"y":6.451,"w":20.529000000000003,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20first%20on%20the%20PA-40%20(if%20filing%20jointly)%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":73.484,"y":6.451,"w":16.026000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":23.18,"y":25.155,"w":24.837,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20T%20%E2%80%93%20Gambling%20and%20Lottery%20%20Winnings%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":16.565,"y":28.62,"w":56.99200000000004,"clr":-1,"A":"left","R":[{"T":"For%20both%20PA%20residents%20and%20non-PA%20residents%2C%20prizes%20from%20playing%20games%20of%20the%20Pennsylvania%20Lottery%20are%20not%20taxable%2C%20but%20you%20must%20include%20your%20winnings%20in","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.317,"y":29.228,"w":57.460000000000115,"clr":-1,"A":"left","R":[{"T":"eligibility%20income%20if%20claiming%20Tax%20Forgiveness%20on%20PA%20Schedule%20SP.%20You%20may%20not%20deduct%20your%20cost%20to%20play%20games%20of%20the%20Pennsylvania%20Lottery%20from%20other%20winnings.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.877,"y":29.88,"w":34.734000000000016,"clr":-1,"A":"left","R":[{"T":"Spouses%20may%20not%20use%20each%20other%E2%80%99s%20costs%20to%20reduce%20the%20amount%20of%20winnings%20on%20the%20is%20schedule.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":31.424999999999997,"w":24.509000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20winnings%20from%20all%20Federal%20Forms%20W-2G.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":32.715,"w":29.896000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20winnings%20from%20all%20other%20gambling%2C%20betting%20and%20lottery%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":33.315,"w":27.392,"clr":-1,"A":"left","R":[{"T":"activities.%20Include%20cash%20and%20the%20market%20value%20or%20stated%20value%20of%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":33.915,"w":12.380000000000003,"clr":-1,"A":"left","R":[{"T":"property%2C%20trips%2C%20services%2C%20etc.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":34.582,"w":6.891000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Winnings.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":35.175,"w":8.267,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%201%20and%202.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":35.91,"w":31.01599999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20total%20costs%20for%20tickets%2C%20bets%20and%20other%20wagering.%20Do%20not%20include%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.897,"y":36.502,"w":30.348000000000006,"clr":-1,"A":"left","R":[{"T":"any%20expenses%20(travel%2C%20meals%2C%20programs%2C%20tip%20sheets%2C%20etc.)%20you%20incurred%20to%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":37.102,"w":28.355000000000008,"clr":-1,"A":"left","R":[{"T":"play%20a%20game%20of%20chance.%20You%20must%20be%20able%20to%20document%20your%20costs.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":37.83,"w":26.272000000000006,"clr":-1,"A":"left","R":[{"T":"Gambling%20and%20lottery%20winnings.%20Subtract%20Line%204%20from%20Line%203.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":38.43,"w":18.211999999999996,"clr":-1,"A":"left","R":[{"T":"If%20Line%204%20is%20more%20than%20Line%203%2C%20enter%20zero.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":37.412,"y":39.532,"w":14.323000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20only%20the%20winnings%20from%20Line%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.394,"y":40.14,"w":31.519000000000013,"clr":-1,"A":"left","R":[{"T":"5%20of%20each%20column%2C%20and%20enter%20the%20total%20here%20and%20on%20Line%208%20of%20your%20PA-40.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.394,"y":41.678,"w":32.77700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20any%20PA%20tax%20with%20held%20from%20Federal%20Forms%20W-2G.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.394,"y":42.278,"w":21.761000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20here%20and%20include%20on%20Line%2013%20of%20your%20PA-40.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.879,"y":27.982,"w":38.88600000000001,"clr":-1,"A":"left","R":[{"T":"Non-PA%20residents%20must%20report%20all%20PA-taxable%20gambling%20and%20lottery%20winnings%20from%20sources%20within%20Pennsylvania.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":11.879,"y":27.367,"w":48.99300000000008,"clr":-1,"A":"left","R":[{"T":"PA%20residents%20must%20report%20all%20PA-taxable%20gambling%20and%20lottery%20winnings%20from%20all%20sources%2C%20whether%20receiving%20a%20Federal%20Form%20W-2G%20or%20not.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.299,"y":25.86,"w":20.255000000000003,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20first%20on%20the%20PA-40%20(if%20filing%20jointly)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":73.484,"y":25.86,"w":16.300000000000004,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.297,"y":23.64,"w":20.770000000000007,"clr":-1,"A":"left","R":[{"T":"Add%20Column(c).%20Enter%20on%20Line%207%20of%20your%20PA-40.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.299,"y":23.033,"w":13.781000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20Estate%20or%20Trust%20Income.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.258,"y":21.81,"w":43.60100000000001,"clr":-1,"A":"left","R":[{"T":"Income%20from%20partnerships%20and%20PA%20S%20corporations%2C%20from%20your%20PA-20S%2FPA-65%20Schedules%20RK-1%20or%20NRK-1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.572,"y":7.9879999999999995,"w":55.27600000000003,"clr":-1,"A":"left","R":[{"T":"List%20the%20name%2C%20address%20and%20identification%20number%20of%20each%20estate%20or%20trust.%20Check%20box%20if%20income%20is%20reported%20from%20PA-41%20Schedule%20RK-1%20or%20NRK-1.%20If%20you%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.316,"y":9.06,"w":9.245000000000001,"clr":-1,"A":"left","R":[{"T":"the%20PA-40)%20or%20the%20spouse%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":26.035,"y":9.06,"w":0.9900000000000001,"clr":-1,"A":"left","R":[{"T":"(J)","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":27.855,"y":9.06,"w":16.267000000000007,"clr":-1,"A":"left","R":[{"T":"if%20you%20and%20your%20spouse%20are%20joint%20beneficiaries.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":13.011,"y":9.757,"w":21.563,"clr":-1,"A":"left","R":[{"T":"(a)%20Name%20and%20Address%20of%20Each%20Estate%20or%20Trust","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":62.717,"y":9.757,"w":6.981999999999999,"clr":-1,"A":"left","R":[{"T":"(b)%20Federal%20EIN","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":80.289,"y":9.757,"w":8.971,"clr":-1,"A":"left","R":[{"T":"(c)%20Income%20Amount","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":78.743,"y":10.32,"w":11.108999999999998,"clr":-1,"A":"left","R":[{"T":"(positive%20amounts%20only)","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":23.411,"y":9.06,"w":1.894,"clr":-1,"A":"left","R":[{"T":"%20Use%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.304,"y":8.52,"w":52.129000000000026,"clr":-1,"A":"left","R":[{"T":"received%20a%20Federal%20Schedule%20K-1%20instead%20of%20a%20PA-41%20Schedule%20RK-1%20or%20NRK-1.%20see%20the%20instructions.%20Indicate%20if%20the%20beneficiary%20is%20the%20taxpayer%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":80.802,"y":8.52,"w":0.788,"clr":-1,"A":"left","R":[{"T":"(T","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":81.891,"y":8.52,"w":9.822999999999999,"clr":-1,"A":"left","R":[{"T":"%3D%20the%20name%20shown%20first%20on%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.299,"y":7.9879999999999995,"w":8.436000000000002,"clr":-1,"A":"left","R":[{"T":"Read%20the%20instructions.","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":9.299,"y":25.058,"w":4.0009999999999994,"clr":-1,"A":"left","R":[{"T":"PA-40%20T%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":85.364,"y":4.859,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":49.518,"y":2.113,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1302910029","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.045,"y":45.9,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1302910029","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":45.9,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1302910029","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.354,"y":4.273,"w":9.281,"clr":-1,"A":"left","R":[{"T":"PA-40%20Schedule%20J%2FT","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":20.521,"y":4.776,"w":3.188,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.299,"y":5.713,"w":3.946,"clr":-1,"A":"left","R":[{"T":"PA-40%20J%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":14.002,"y":5.713,"w":3.1950000000000003,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":48.136,"y":9.758,"w":4.414,"clr":-1,"A":"left","R":[{"T":"Schedule","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":47.704,"y":10.29,"w":4.696,"clr":-1,"A":"left","R":[{"T":"RK-1%2FNRK-1","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":14.064,"y":25.057,"w":3.1950000000000003,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":83.962,"y":30.645,"w":3.367,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":63.935,"y":30.645,"w":4.168,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,11.04,0,0]}]},{"x":42.8,"y":42.246,"w":64.026,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":689,"AM":1024,"x":9.743,"y":7.505,"w":62.87,"h":0.833,"TU":"Name shown first on the PA-40 (even if filing jointly)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":690,"AM":1024,"x":74.289,"y":7.47,"w":21.258,"h":0.833,"TU":"Social Security Number (shown first)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_1_","EN":0},"TI":691,"AM":0,"x":10.087,"y":11.476,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_1_","EN":0},"TI":693,"AM":0,"x":54.953,"y":11.38,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_1_","EN":0},"TI":694,"AM":0,"x":59.843,"y":11.394,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_1_","EN":0},"TI":695,"AM":0,"x":77.822,"y":11.404,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_2_","EN":0},"TI":696,"AM":0,"x":10.087,"y":12.49,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_2_","EN":0},"TI":698,"AM":0,"x":54.904,"y":12.429,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_2_","EN":0},"TI":699,"AM":0,"x":59.843,"y":12.505,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_2_","EN":0},"TI":700,"AM":0,"x":77.747,"y":12.481,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_3_","EN":0},"TI":701,"AM":0,"x":10.087,"y":13.543,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_3_","EN":0},"TI":703,"AM":0,"x":55.034,"y":13.484,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_3_","EN":0},"TI":704,"AM":0,"x":59.843,"y":13.496,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_3_","EN":0},"TI":705,"AM":0,"x":77.747,"y":13.534,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_4_","EN":0},"TI":706,"AM":0,"x":10.087,"y":14.661,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_4_","EN":0},"TI":708,"AM":0,"x":54.939,"y":14.593,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_4_","EN":0},"TI":709,"AM":0,"x":59.843,"y":14.552,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_4_","EN":0},"TI":710,"AM":0,"x":77.822,"y":14.59,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_5_","EN":0},"TI":711,"AM":0,"x":10.087,"y":15.675,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_5_","EN":0},"TI":713,"AM":0,"x":54.919,"y":15.62,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_5_","EN":0},"TI":714,"AM":0,"x":59.843,"y":15.628,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_5_","EN":0},"TI":715,"AM":0,"x":77.747,"y":15.666,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_6_","EN":0},"TI":716,"AM":0,"x":10.087,"y":16.73,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_6_","EN":0},"TI":718,"AM":0,"x":54.824,"y":16.701,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_6_","EN":0},"TI":719,"AM":0,"x":59.843,"y":16.683,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_6_","EN":0},"TI":720,"AM":0,"x":77.747,"y":16.756,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_7_","EN":0},"TI":721,"AM":0,"x":10.087,"y":17.846,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_7_","EN":0},"TI":723,"AM":0,"x":54.953,"y":17.783,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_7_","EN":0},"TI":724,"AM":0,"x":59.843,"y":17.737,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_7_","EN":0},"TI":725,"AM":0,"x":77.747,"y":17.783,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_8_","EN":0},"TI":726,"AM":0,"x":10.087,"y":18.86,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_8_","EN":0},"TI":728,"AM":0,"x":54.859,"y":18.81,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_8_","EN":0},"TI":729,"AM":0,"x":59.843,"y":18.813,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_8_","EN":0},"TI":730,"AM":0,"x":77.597,"y":18.805,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_9_","EN":0},"TI":731,"AM":0,"x":10.087,"y":19.936,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_9_","EN":0},"TI":733,"AM":0,"x":54.913,"y":19.865,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_9_","EN":0},"TI":734,"AM":0,"x":59.843,"y":19.889,"w":16.785,"h":0.862,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_9_","EN":0},"TI":735,"AM":0,"x":77.672,"y":19.908,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TRUS_10_","EN":0},"TI":736,"AM":0,"x":10.087,"y":21.033,"w":37.089,"h":0.85,"TU":"Name & address of each estate or trust"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TSJ_10_","EN":0},"TI":738,"AM":0,"x":54.893,"y":20.919,"w":3.49,"h":0.833,"PL":{"V":[null,"T","S","J"],"D":[" ","T","S","J"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"FEDE_10_","EN":0},"TI":739,"AM":0,"x":59.843,"y":20.922,"w":16.785,"h":0.837,"TU":"Federal EIN","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCO_10_","EN":0},"TI":740,"AM":0,"x":77.747,"y":20.915,"w":17.962,"h":0.85,"TU":"Income Amount (Positive Amounts Only)"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":741,"AM":0,"x":72.282,"y":21.921,"w":4.215,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SHAB","EN":0},"TI":742,"AM":1024,"x":77.747,"y":22.008,"w":17.962,"h":0.85,"TU":"Not Supported"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTZ","EN":0},"TI":743,"AM":1024,"x":77.747,"y":23.628,"w":17.962,"h":0.959,"TU":"Total Estate or Trust Income "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME3","EN":0},"TI":744,"AM":1024,"x":9.29,"y":26.775,"w":63.214,"h":0.833,"TU":"Name shown first on the PA-40 (even if filing jointly)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":745,"AM":1024,"x":73.728,"y":26.775,"w":21.371,"h":0.833,"TU":"Social Security Number (shown first)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"W2GT","EN":0},"TI":746,"AM":0,"x":58.861,"y":31.906,"w":17.962,"h":0.98,"TU":"Taxpayer - Enter your total winnings from all Federal Forms W-2G."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FMVT","EN":0},"TI":747,"AM":0,"x":58.785,"y":33.732,"w":17.962,"h":0.98,"TU":"Taxpayer - Enter your total winnings from all other gambling, betting, and lottery activities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTWINT","EN":0},"TI":748,"AM":1024,"x":58.785,"y":35.017,"w":17.962,"h":0.98,"TU":"Taxpayer - Total Winnings."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COSTT","EN":0},"TI":749,"AM":0,"x":58.785,"y":36.987,"w":17.962,"h":0.98,"TU":"Taxpayer - Enter your total costs for tickets, bets, and other wagering."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WINT","EN":0},"TI":750,"AM":1024,"x":58.785,"y":38.292,"w":17.962,"h":0.98,"TU":"Taxpayer - Gambling and lottery winnings. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"W2GS","EN":0},"TI":751,"AM":0,"x":77.699,"y":31.906,"w":17.962,"h":0.98,"TU":"Spouse - Enter your total winnings from all Federal Forms W-2G."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FMVS","EN":0},"TI":752,"AM":0,"x":77.699,"y":33.732,"w":17.962,"h":0.98,"TU":"Spouse - Enter your total winnings from all other gambling, betting, and lottery activities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTWINS","EN":0},"TI":753,"AM":1024,"x":77.773,"y":34.935,"w":17.962,"h":0.98,"TU":"Spouse - Total Winnings."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COSTS","EN":0},"TI":754,"AM":0,"x":77.699,"y":36.987,"w":17.962,"h":0.98,"TU":"Spouse - Enter your total costs for tickets, bets, and other wagering."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WINS","EN":0},"TI":755,"AM":1024,"x":77.848,"y":38.265,"w":17.962,"h":0.98,"TU":"Spouse - Gambling and lottery winnings. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALG","EN":0},"TI":756,"AM":1024,"x":77.699,"y":40.171,"w":17.962,"h":0.98,"TU":"Total gambling and lottery winnings. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAW2GWH","EN":0},"TI":757,"AM":1024,"x":77.699,"y":42.261,"w":17.962,"h":0.98,"TU":"Enter the total amount of any PA tax withheld from Federal Forms W-2G"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_1_","EN":0},"TI":692,"AM":0,"x":50.005,"y":11.401,"w":2.305,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_2_","EN":0},"TI":697,"AM":0,"x":50.005,"y":12.388,"w":2.23,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_3_","EN":0},"TI":702,"AM":0,"x":50.005,"y":13.414,"w":2.155,"h":0.865}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_4_","EN":0},"TI":707,"AM":0,"x":50.005,"y":14.524,"w":2.192,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_5_","EN":0},"TI":712,"AM":0,"x":50.005,"y":15.573,"w":2.08,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_6_","EN":0},"TI":717,"AM":0,"x":50.005,"y":16.546,"w":2.155,"h":0.851}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_7_","EN":0},"TI":722,"AM":0,"x":50.005,"y":17.717,"w":2.117,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_8_","EN":0},"TI":727,"AM":0,"x":50.005,"y":18.794,"w":2.08,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_9_","EN":0},"TI":732,"AM":0,"x":50.005,"y":19.815,"w":2.117,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"RK1BX_10_","EN":0},"TI":737,"AM":0,"x":50.005,"y":20.939,"w":2.109,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/SCHO.content.txt b/test/data/pa/form/SCHO.content.txt new file mode 100755 index 00000000..b5211b45 --- /dev/null +++ b/test/data/pa/form/SCHO.content.txt @@ -0,0 +1,330 @@ +Beneficiary + +Information: + +Contributions + +by: + +Name: + + + + + +Spouse + + +1. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +2. + + + + + + + + + + + +1301610026 + + + + +- + +2013 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1. + + + + + + + + + + + + + + + +2. + + + + + + + + + +3. + + + + + + + + + +3. + + + +4. + + + + + + + + + +4. + + + +5. + + + + + + + + + + + + + + + +5. + + + +6. + + + + + + + + + + + + + +6. + + + +7. + + + + + + + + + + + + +7. + + + + +8. + + + + + + + + + + + + + + + + + + + + + + + + +8. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1301610026 + +1301610026 + +PA SCHEDULE O +Other Deductions +PA-40 Schedule O +(06-13) +OFFICIAL USE ONLY +Name shown first on the PA-40 (if filing jointly) +Social Security Number (shown first) +(See the instructions.) +additional schedules). +Medical Savings Account contributions allowed for federal purposes. +Health Savings Account contributions allowed for federal purposes. +Enter here and on Line 10 of your PA-40. +PART I - IRC Section 529 Qualified Tuition Program Contributions +(Limit $14,000 per beneficiary, per taxpayer-spouse.) +Add Lines 2, 3 and 4 and enter amounts here for tax payer and/or spouse. +Total income reported on PA-40 Line 9 by taxpayer and spouse separately. +Lesser of Line 5 or Line 6 for taxpayer and/or spouse. +- Add the amounts from Line 7 for taxpayer and/or spouse together. +Total Other Deductions +PART II - Other Deductions and Limitations +Total IRC Section 529 Contributions +Social Security Number +Taxpayer +- Add all amounts listed (including amounts on +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/SCHO.fields.json b/test/data/pa/form/SCHO.fields.json new file mode 100755 index 00000000..b83dc044 --- /dev/null +++ b/test/data/pa/form/SCHO.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"NAMEB_1_","type":"alpha","calc":false,"value":""},{"id":"SSNB_1_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_1_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_1_","type":"number","calc":false,"value":""},{"id":"NAMEB_2_","type":"alpha","calc":false,"value":""},{"id":"SSNB_2_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_2_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_2_","type":"number","calc":false,"value":""},{"id":"NAMEB_3_","type":"alpha","calc":false,"value":""},{"id":"SSNB_3_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_3_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_3_","type":"number","calc":false,"value":""},{"id":"NAMEB_4_","type":"alpha","calc":false,"value":""},{"id":"SSNB_4_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_4_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_4_","type":"number","calc":false,"value":""},{"id":"NAMEB_5_","type":"alpha","calc":false,"value":""},{"id":"SSNB_5_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_5_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_5_","type":"number","calc":false,"value":""},{"id":"NAMEB_6_","type":"alpha","calc":false,"value":""},{"id":"SSNB_6_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_6_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_6_","type":"number","calc":false,"value":""},{"id":"NAMEB_7_","type":"alpha","calc":false,"value":""},{"id":"SSNB_7_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_7_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_7_","type":"number","calc":false,"value":""},{"id":"NAMEB_8_","type":"alpha","calc":false,"value":""},{"id":"SSNB_8_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_8_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_8_","type":"number","calc":false,"value":""},{"id":"NAMEB_9_","type":"alpha","calc":false,"value":""},{"id":"SSNB_9_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_9_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_9_","type":"number","calc":false,"value":""},{"id":"NAMEB_10_","type":"alpha","calc":false,"value":""},{"id":"SSNB_10_","type":"ssn","calc":false,"value":""},{"id":"CONTRIBT_10_","type":"number","calc":false,"value":""},{"id":"CONTRIBS_10_","type":"number","calc":false,"value":""},{"id":"CONTTTL","type":"number","calc":false,"value":""},{"id":"CONTSTL","type":"number","calc":false,"value":""},{"id":"MSAT","type":"number","calc":false,"value":""},{"id":"MSAS","type":"number","calc":false,"value":""},{"id":"HSAT","type":"number","calc":false,"value":""},{"id":"HSAS","type":"number","calc":false,"value":""},{"id":"DEDNT","type":"number","calc":true,"value":""},{"id":"DEDNS","type":"number","calc":true,"value":""},{"id":"INCT","type":"number","calc":false,"value":""},{"id":"INCS","type":"number","calc":false,"value":""},{"id":"LESST","type":"number","calc":true,"value":""},{"id":"LESSS","type":"number","calc":true,"value":""},{"id":"TOTDEDNS","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/SCHO.json b/test/data/pa/form/SCHO.json new file mode 100755 index 00000000..4214e84f --- /dev/null +++ b/test/data/pa/form/SCHO.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule O - Other Deductions - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.273,"y":3.616,"w":4.5,"l":4.967},{"oc":"#221f1f","x":9.29,"y":46.806,"w":4.5,"l":4.95},{"oc":"#221f1f","x":90.948,"y":46.806,"w":4.5,"l":4.941},{"oc":"#221f1f","x":68.037,"y":5.909,"w":1.5,"l":27.87},{"oc":"#221f1f","x":9.333,"y":5.947,"w":0.75,"l":86.573},{"oc":"#221f1f","x":9.281,"y":7.516,"w":0.75,"l":86.573}],"VLines":[{"oc":"#221f1f","x":13.991,"y":2.531,"w":4.5,"l":1.166},{"oc":"#221f1f","x":9.539,"y":45.775,"w":4.5,"l":1.119},{"oc":"#221f1f","x":95.64,"y":45.775,"w":4.5,"l":1.119},{"oc":"#221f1f","x":73.803,"y":6.009,"w":0.75,"l":1.491}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":12.024,"y":9.097,"w":55.729,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":9.097,"w":27.844,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":9.127,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":67.753,"y":9.127,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":95.679,"y":9.127,"w":0.083,"h":0.653,"clr":-1},{"oc":"#221f1f","x":12.024,"y":9.78,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":9.78,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":9.78,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":9.78,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":9.81,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":50.552,"y":9.81,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":67.753,"y":9.81,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":81.758,"y":9.81,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":95.679,"y":9.81,"w":0.083,"h":0.66,"clr":-1},{"oc":"#221f1f","x":12.024,"y":10.47,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":10.47,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":10.47,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":10.47,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":10.5,"w":0.083,"h":0.915,"clr":-1},{"oc":"#221f1f","x":50.552,"y":10.5,"w":0.083,"h":0.915,"clr":-1},{"oc":"#221f1f","x":67.753,"y":10.5,"w":0.083,"h":0.915,"clr":-1},{"oc":"#221f1f","x":81.758,"y":10.5,"w":0.083,"h":0.915,"clr":-1},{"oc":"#221f1f","x":95.679,"y":10.5,"w":0.083,"h":0.915,"clr":-1},{"oc":"#221f1f","x":12.024,"y":11.415,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":11.415,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":11.415,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":11.415,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":11.445,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":50.552,"y":11.445,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":67.753,"y":11.445,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.758,"y":11.445,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.679,"y":11.445,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":12.024,"y":12.353,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":12.353,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":12.353,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":12.353,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":12.382,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":50.552,"y":12.382,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":67.753,"y":12.382,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":81.758,"y":12.382,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":95.679,"y":12.382,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":12.024,"y":13.29,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":13.29,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":13.29,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":13.29,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":13.32,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":50.552,"y":13.32,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":67.753,"y":13.32,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.758,"y":13.32,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.679,"y":13.32,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":12.024,"y":14.227,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":14.227,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":14.227,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":14.227,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":14.258,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":50.552,"y":14.258,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":67.753,"y":14.258,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.758,"y":14.258,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.679,"y":14.258,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":12.024,"y":15.165,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":15.165,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":15.165,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":15.165,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":15.195,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":50.552,"y":15.195,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":67.753,"y":15.195,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":81.758,"y":15.195,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":95.679,"y":15.195,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":12.024,"y":16.103,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":16.103,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":16.103,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":16.103,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":16.133,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":50.552,"y":16.133,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":67.753,"y":16.133,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.758,"y":16.133,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.679,"y":16.133,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":12.024,"y":17.04,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":17.04,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":17.04,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":17.04,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":17.07,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":50.552,"y":17.07,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":67.753,"y":17.07,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.758,"y":17.07,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.679,"y":17.07,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":12.024,"y":17.977,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":17.977,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":17.977,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":17.977,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":18.007,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":50.552,"y":18.007,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":67.753,"y":18.007,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":81.758,"y":18.007,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":95.679,"y":18.007,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":12.024,"y":18.915,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":18.915,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":18.915,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":18.915,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":18.945,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":50.552,"y":18.945,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":67.753,"y":18.945,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.758,"y":18.945,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.679,"y":18.945,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":12.024,"y":19.852,"w":38.528,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.634,"y":19.852,"w":17.119,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":19.852,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.84,"y":19.852,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.942,"y":19.883,"w":0.083,"h":1.597,"clr":-1},{"oc":"#221f1f","x":12.024,"y":21.48,"w":55.729,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.753,"y":19.883,"w":0.083,"h":1.597,"clr":-1},{"oc":"#221f1f","x":67.836,"y":21.48,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.758,"y":19.883,"w":0.083,"h":1.597,"clr":-1},{"oc":"#221f1f","x":81.84,"y":21.48,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.679,"y":19.883,"w":0.083,"h":1.597,"clr":-1},{"oc":"#221f1f","x":9.281,"y":22.485,"w":58.554,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":22.485,"w":13.943,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.943,"y":22.485,"w":13.819,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":22.515,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.861,"y":22.515,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.762,"y":22.515,"w":0.082,"h":0.907,"clr":-1},{"oc":"#221f1f","x":9.281,"y":23.422,"w":58.554,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":23.422,"w":13.943,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.943,"y":23.422,"w":13.819,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":23.452,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":81.861,"y":23.452,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":95.762,"y":23.452,"w":0.082,"h":0.908,"clr":-1},{"oc":"#221f1f","x":9.281,"y":24.36,"w":58.554,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":24.36,"w":13.943,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.943,"y":24.36,"w":13.819,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":24.39,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.861,"y":24.39,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.762,"y":24.39,"w":0.082,"h":0.907,"clr":-1},{"oc":"#221f1f","x":9.281,"y":25.297,"w":58.554,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":25.297,"w":13.943,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.943,"y":25.297,"w":13.819,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":25.328,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":81.861,"y":25.328,"w":0.083,"h":0.907,"clr":-1},{"oc":"#221f1f","x":95.762,"y":25.328,"w":0.082,"h":0.907,"clr":-1},{"oc":"#221f1f","x":9.281,"y":26.235,"w":58.554,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":26.235,"w":13.943,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.943,"y":26.235,"w":13.819,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.836,"y":26.265,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":81.861,"y":26.265,"w":0.083,"h":0.908,"clr":-1},{"oc":"#221f1f","x":95.762,"y":26.265,"w":0.082,"h":0.908,"clr":-1},{"oc":"#221f1f","x":9.281,"y":27.172,"w":58.554,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.918,"y":27.172,"w":13.901,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.149,"y":27.173,"w":13.571,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":28.8,"w":72.662,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.819,"y":27.233,"w":0.165,"h":1.568,"clr":-1},{"oc":"#221f1f","x":81.984,"y":28.8,"w":13.736,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.721,"y":27.233,"w":0.165,"h":1.568,"clr":-1}],"Texts":[{"oc":"#221f1f","x":32.771,"y":8.865,"w":4.901999999999999,"clr":-1,"A":"left","R":[{"T":"Beneficiary","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":39.082,"y":8.865,"w":5.232,"clr":-1,"A":"left","R":[{"T":"Information%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":77.279,"y":8.865,"w":5.839,"clr":-1,"A":"left","R":[{"T":"Contributions","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":84.725,"y":8.865,"w":1.283,"clr":-1,"A":"left","R":[{"T":"by%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.208,"y":9.547,"w":2.9250000000000003,"clr":-1,"A":"left","R":[{"T":"Name%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.859,"y":9.547,"w":3.367,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":66.389,"y":10.425,"w":0.812,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":66.079,"y":20.49,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":49.394,"y":2.37,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301610026","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":22.067,"y":5.01,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":35.266,"y":5.033,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,24.79,1,0]}]},{"oc":"#221f1f","x":10.124,"y":10.44,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":10.124,"y":19.875,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":10.083,"y":22.425,"w":1.374,"clr":-1,"A":"left","R":[{"T":"3.%20%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":66.266,"y":22.425,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":23.362,"w":1.374,"clr":-1,"A":"left","R":[{"T":"4.%20%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":66.264,"y":23.362,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":24.3,"w":1.374,"clr":-1,"A":"left","R":[{"T":"5.%20%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":66.265,"y":24.3,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":25.238,"w":1.374,"clr":-1,"A":"left","R":[{"T":"6.%20%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":66.269,"y":25.238,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":26.175,"w":1.374,"clr":-1,"A":"left","R":[{"T":"7.%20%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":66.265,"y":26.175,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.083,"y":27.21,"w":1.374,"clr":-1,"A":"left","R":[{"T":"8.%20%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":80.185,"y":27.84,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.004,"y":45.922,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301610026","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.268,"y":45.922,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301610026","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.334,"y":3.458,"w":8.222999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20O","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":20.334,"y":3.968,"w":6.992000000000001,"clr":-1,"A":"left","R":[{"T":"Other%20Deductions","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":20.326,"y":4.453,"w":8.613999999999999,"clr":-1,"A":"left","R":[{"T":"PA-40%20Schedule%20O","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":20.335,"y":5.01,"w":3.188,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.344,"y":5.032,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":9.196,"y":5.707,"w":20.803000000000004,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20first%20on%20the%20PA-40%20(if%20filing%20jointly)%20%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":74.165,"y":5.707,"w":16.026000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":46.136,"y":7.372,"w":10.387,"clr":-1,"A":"left","R":[{"T":"(See%20the%20instructions.)","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":12.207,"y":20.49,"w":9.582999999999998,"clr":-1,"A":"left","R":[{"T":"additional%20schedules).","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.27,"y":22.425,"w":33.767999999999994,"clr":-1,"A":"left","R":[{"T":"Medical%20Savings%20Account%20contributions%20allowed%20for%20federal%20purposes.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":12.27,"y":23.362,"w":31.954999999999995,"clr":-1,"A":"left","R":[{"T":"Health%20Savings%20Account%20contributions%20allowed%20for%20federal%20purposes.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":12.288,"y":27.84,"w":18.073000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20here%20and%20on%20Line%2010%20of%20your%20PA-40.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.259,"y":8.19,"w":31.116000000000007,"clr":-1,"A":"left","R":[{"T":"PART%20I%20-%20IRC%20Section%20529%20Qualified%20Tuition%20Program%20Contributions","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":46.961,"y":8.19,"w":23.56,"clr":-1,"A":"left","R":[{"T":"(Limit%20%2414%2C000%20per%20beneficiary%2C%20per%20taxpayer-spouse.)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.27,"y":24.3,"w":33.15700000000001,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%202%2C%203%20and%204%20and%20enter%20amounts%20here%20for%20tax%20payer%20and%2For%20spouse.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.27,"y":25.237,"w":33.239000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20income%20reported%20on%20PA-40%20Line%209%20by%20taxpayer%20and%20spouse%20separately.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.27,"y":26.175,"w":23.519000000000002,"clr":-1,"A":"left","R":[{"T":"Lesser%20of%20Line%205%20or%20Line%206%20for%20taxpayer%20and%2For%20spouse.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.799,"y":27.21,"w":29.849000000000007,"clr":-1,"A":"left","R":[{"T":"-%20Add%20the%20amounts%20from%20Line%207%20for%20taxpayer%20and%2For%20spouse%20together.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.27,"y":27.21,"w":11.057000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Other%20Deductions","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.258,"y":21.622,"w":20.503000000000004,"clr":-1,"A":"left","R":[{"T":"PART%20II%20-%20Other%20Deductions%20and%20Limitations","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":12.207,"y":19.86,"w":17.058000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20IRC%20Section%20529%20Contributions","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":52.302,"y":9.548,"w":10.359000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.731,"y":9.548,"w":4.168,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":32.997,"y":19.86,"w":20.453,"clr":-1,"A":"left","R":[{"T":"-%20Add%20all%20amounts%20listed%20(including%20amounts%20on","S":-1,"TS":[0,9.96,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":758,"AM":1024,"x":9.061,"y":6.577,"w":64.309,"h":0.866,"TU":"Name Shown First on the PA-40 (if filing jointly)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":759,"AM":1024,"x":73.989,"y":6.632,"w":21.549,"h":0.86,"TU":"Social Security Number (shown first)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_1_","EN":0},"TI":760,"AM":0,"x":12.428,"y":10.581,"w":37.41,"h":0.885,"TU":"Beneficiary Name Row 1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_1_","EN":0},"TI":761,"AM":0,"x":51.127,"y":10.577,"w":14.787,"h":0.878,"TU":"Beneficiary Social Security Number Row 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_1_","EN":0},"TI":762,"AM":0,"x":68.314,"y":10.581,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_1_","EN":0},"TI":763,"AM":0,"x":82.266,"y":10.581,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_2_","EN":0},"TI":764,"AM":0,"x":12.428,"y":11.526,"w":37.634,"h":0.878,"TU":"Beneficiary Name Row 2"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_2_","EN":0},"TI":765,"AM":0,"x":51.285,"y":11.526,"w":14.702,"h":0.878,"TU":"Beneficiary Social Security Number Row 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_2_","EN":0},"TI":766,"AM":0,"x":68.06,"y":11.509,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_2_","EN":0},"TI":767,"AM":0,"x":82.012,"y":11.509,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_3_","EN":0},"TI":768,"AM":0,"x":12.503,"y":12.464,"w":37.635,"h":0.878,"TU":"Beneficiary Name Row 3"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_3_","EN":0},"TI":769,"AM":0,"x":51.36,"y":12.464,"w":14.563,"h":0.833,"TU":"Beneficiary Social Security Number Row 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_3_","EN":0},"TI":770,"AM":0,"x":68.19,"y":12.455,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_3_","EN":0},"TI":771,"AM":0,"x":82.142,"y":12.455,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_4_","EN":0},"TI":772,"AM":0,"x":12.45,"y":13.401,"w":37.709,"h":0.833,"TU":"Beneficiary Name Row 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_4_","EN":0},"TI":773,"AM":0,"x":51.435,"y":13.401,"w":14.488,"h":0.833,"TU":"Beneficiary Social Security Number Row 4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_4_","EN":0},"TI":774,"AM":0,"x":68.095,"y":13.427,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_4_","EN":0},"TI":775,"AM":0,"x":82.047,"y":13.427,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_5_","EN":0},"TI":776,"AM":0,"x":12.525,"y":14.339,"w":37.56,"h":0.878,"TU":"Beneficiary Name Row 5"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_5_","EN":0},"TI":777,"AM":0,"x":51.584,"y":14.339,"w":14.338,"h":0.833,"TU":"Beneficiary Social Security Number Row 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_5_","EN":0},"TI":778,"AM":0,"x":68.225,"y":14.346,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_5_","EN":0},"TI":779,"AM":0,"x":82.102,"y":14.346,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 5"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_6_","EN":0},"TI":780,"AM":0,"x":12.428,"y":15.276,"w":37.56,"h":0.878,"TU":"Beneficiary Name Row 6"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_6_","EN":0},"TI":781,"AM":0,"x":51.595,"y":15.276,"w":14.263,"h":0.833,"TU":"Beneficiary Social Security Number Row 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_6_","EN":0},"TI":782,"AM":0,"x":68.279,"y":15.319,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_6_","EN":0},"TI":783,"AM":0,"x":82.231,"y":15.319,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_7_","EN":0},"TI":784,"AM":0,"x":12.428,"y":16.214,"w":37.56,"h":0.833,"TU":"Beneficiary Name Row 7"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_7_","EN":0},"TI":785,"AM":0,"x":51.659,"y":16.214,"w":14.263,"h":0.833,"TU":"Beneficiary Social Security Number Row 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_7_","EN":0},"TI":786,"AM":0,"x":68.259,"y":16.21,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_7_","EN":0},"TI":787,"AM":0,"x":82.211,"y":16.21,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 7"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_8_","EN":0},"TI":788,"AM":0,"x":12.353,"y":17.151,"w":37.709,"h":0.833,"TU":"Beneficiary Name Row 8"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_8_","EN":0},"TI":789,"AM":0,"x":51.584,"y":17.151,"w":14.338,"h":0.833,"TU":"Beneficiary Social Security Number Row 8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_8_","EN":0},"TI":790,"AM":0,"x":68.389,"y":17.182,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 8"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_8_","EN":0},"TI":791,"AM":0,"x":82.266,"y":17.182,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 8"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_9_","EN":0},"TI":792,"AM":0,"x":12.353,"y":18.089,"w":37.635,"h":0.833,"TU":"Beneficiary Name Row 9"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_9_","EN":0},"TI":793,"AM":0,"x":51.584,"y":18.089,"w":14.402,"h":0.833,"TU":"Beneficiary Social Security Number Row 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_9_","EN":0},"TI":794,"AM":0,"x":68.369,"y":18.101,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_9_","EN":0},"TI":795,"AM":0,"x":82.321,"y":18.101,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 9"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAMEB_10_","EN":0},"TI":796,"AM":0,"x":12.428,"y":19.026,"w":37.485,"h":0.833,"TU":"Beneficiary Name Row 10"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSNB_10_","EN":0},"TI":797,"AM":0,"x":51.82,"y":19.026,"w":14.231,"h":0.833,"TU":"Beneficiary Social Security Number Row 10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBT_10_","EN":0},"TI":798,"AM":0,"x":68.124,"y":18.992,"w":12.99,"h":0.833,"TU":"Contributions by Taxpayer Row 10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIBS_10_","EN":0},"TI":799,"AM":0,"x":82.076,"y":18.992,"w":12.988,"h":0.833,"TU":"Contributions by Spouse Row 10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTTTL","EN":0},"TI":800,"AM":0,"x":68.174,"y":20.382,"w":13.166,"h":1.024,"TU":"Taxpayer Total IRC Section 529 Contributions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTSTL","EN":0},"TI":801,"AM":0,"x":82.403,"y":20.382,"w":12.79,"h":1.024,"TU":"Spouse Total IRC Section 529 Contributions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MSAT","EN":0},"TI":802,"AM":0,"x":68.262,"y":22.648,"w":12.968,"h":0.833,"TU":"Taxpayer Medical Savings Account Contributions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MSAS","EN":0},"TI":803,"AM":0,"x":82.639,"y":22.583,"w":12.743,"h":0.833,"TU":"Spouse Medical Savings Account Contributions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSAT","EN":0},"TI":804,"AM":0,"x":68.561,"y":23.613,"w":12.668,"h":0.833,"TU":"Taxpayer Health Savings Account Contributions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSAS","EN":0},"TI":805,"AM":0,"x":82.639,"y":23.537,"w":12.743,"h":0.833,"TU":"Spouse Health Savings Account Contributions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDNT","EN":0},"TI":806,"AM":1024,"x":68.411,"y":24.55,"w":12.818,"h":0.833,"TU":"Add Lines 2, 3 and 4 and Enter Amounts"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDNS","EN":0},"TI":807,"AM":1024,"x":82.639,"y":24.458,"w":12.743,"h":0.833,"TU":"Add Lines 2, 3 and 4 and Enter Amounts"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCT","EN":0},"TI":808,"AM":0,"x":68.411,"y":25.488,"w":12.818,"h":0.833,"TU":"Taxpayer Total Income Reported on PA-40 Line 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCS","EN":0},"TI":809,"AM":0,"x":82.639,"y":25.45,"w":12.743,"h":0.833,"TU":"Spouse Total Income Reported on PA-40 Line 9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESST","EN":0},"TI":810,"AM":1024,"x":68.636,"y":26.398,"w":12.668,"h":0.833,"TU":"Taxpayer Lesser of Line 5 or Line 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LESSS","EN":0},"TI":811,"AM":1024,"x":82.714,"y":26.306,"w":12.668,"h":0.833,"TU":"Spouse Lesser of Line 5 or Line 6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDEDNS","EN":0},"TI":812,"AM":1024,"x":82.402,"y":27.659,"w":12.865,"h":1.024,"TU":"Total Other Deductions - Add the Amounts from Line 7 for Taxpayer and/or Spouse"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/SE.content.txt b/test/data/pa/form/SE.content.txt new file mode 100755 index 00000000..380291af --- /dev/null +++ b/test/data/pa/form/SE.content.txt @@ -0,0 +1,507 @@ +Important: +Identify the property from Part A and indicate if the owner is the taxpayer +If you are in the business of renting your property, extracting +Utilities +Add Lines 21 and 22. If submitting more than one schedule, total amounts, and +Rent or royalty income (loss from PA S corporation(s) and partnerships from your +Taxes - not based on net income +Automobile and travel +Royalties received +Show the complete address and kind of each rental real estate property, and/or each source of royalty income. +gas and other minerals from your property, and the use of your patents and copyrights. +Report the income and expenses for the use of your personal property by others. Also, report the income you received for the extraction of oil, +Social Security Number (shown first) +2013 + + + + + + + +T + +S + +J + +T + +S + +J + +T + +S + +J + + +1. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +1. + +2. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +2. + + + + + + + + + + + + + + + + + + +1301410021 + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + +A + +YES + +NO + + + + +B + +YES + +NO + + + + +C + +YES + +NO + + + + +(T = + + + +Income + + + +Expenses + + +3. + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +3. + +4. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +4. + +5. + + +. . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . + +5. + +6. + +Commissions +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +6. + +7. + +Insurance + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +7. + +8. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +8. + +9. + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +9. + +10. + +. . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . +. +10. + +1 +1. + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + 1 +1. + +12. + +Repairs + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. +12. + +13. + + +. . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. +13. + +14. + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . +14 +. + +15. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . +. +15. + +16. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. +16. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Important: + + + +17. + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. +17. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. + +18. + + + +– + + + + + + +. . . . . . . . . . . . . . . . . . +. +18. + + + + + + + + + + + + + + + + + + + + +19. + + +– + + + + + + + + +. + +. . . . . . . . . . . . . . . . . +. +19. + +20. + + +– + + + + + + + + + + + + + + + + + +20. + + + + + + + +21. + + + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +21. + +22. + + +. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +22. + +23. + + + + + + + + + + + + + + + + + + + + + + + + + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +23. + + + + + + +1301410021 + +1301410021 + +PA SCHEDULE E +Name of the taxpayer filing this schedule +If you have more than three properties, photocopy this schedule. +See the instructions +(J) +Spouse may not offset income and losses. +Rent received +Advertising +Cleaning and maintenance +Legal and professional fees +Management fees +Mortgage interest +Other interest +Supplies +Depreciation expense +PA law does not permit any federal bonus depreciation. PA law limits the IRC Section 179 expensing to $25,000. See the instrucions. +Other expenses (itemize): +Add Lines 3 through 17. +Subtract Line 18 from Line 1 or 2 +Subtract Line 1or 2 from Line 18. (fillin the oval, if a net loss) +Net Income or Loss +Total Lines 19 and 20 +(fill in the oval, if a net loss) +PA Schedule(s) RK-1 or NRK-1 +.(fill in the oval, if a net loss) +include on Line 6 of your PA-40. +Net Rent and Royalty Income (Loss). +.(fill in the oval, if a net loss) +Total Expenses +Income or Loss +Rents and Royalty +Income (Loss) +PA-40 Schedule E +(06-13) +minerals from your property or producing products from your patents and copyrights – use PA Schedule C. +Note: +Part A. Property Description: +Kind of property +For Profit Property +Complete Address +Part B. + or if jointly owned +(S) +Income +the name show first on the PA-40 +) + or spouse +OFFICIAL USE ONLY +Property A +Property B +Property C +Loss +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/SE.fields.json b/test/data/pa/form/SE.fields.json new file mode 100755 index 00000000..5ce34322 --- /dev/null +++ b/test/data/pa/form/SE.fields.json @@ -0,0 +1 @@ +[{"id":"PROPARB","type":"radio","calc":false,"value":"AYBXY"},{"id":"PROPARB","type":"radio","calc":false,"value":"AYBXN"},{"id":"PROPBRB","type":"radio","calc":false,"value":"BYBXY"},{"id":"PROPBRB","type":"radio","calc":false,"value":"BYBXN"},{"id":"PROPCRB","type":"radio","calc":false,"value":"CYBXY"},{"id":"PROPCRB","type":"radio","calc":false,"value":"CYBXN"},{"id":"OWRB_1_","type":"radio","calc":false,"value":"OWHX"},{"id":"OWRB_1_","type":"radio","calc":false,"value":"OWSX"},{"id":"OWRB_1_","type":"radio","calc":false,"value":"OWJX"},{"id":"L20LOSSX_1_","type":"box","calc":true,"value":""},{"id":"OWRB_2_","type":"radio","calc":false,"value":"OWHX"},{"id":"OWRB_2_","type":"radio","calc":false,"value":"OWSX"},{"id":"OWRB_2_","type":"radio","calc":false,"value":"OWJX"},{"id":"L20LOSSX_2_","type":"box","calc":true,"value":""},{"id":"OWRB_3_","type":"radio","calc":false,"value":"OWHX"},{"id":"OWRB_3_","type":"radio","calc":false,"value":"OWSX"},{"id":"OWRB_3_","type":"radio","calc":false,"value":"OWJX"},{"id":"L20LOSSX_3_","type":"box","calc":true,"value":""},{"id":"L21LOSS","type":"box","calc":false,"value":""},{"id":"L22LOSS","type":"box","calc":true,"value":""},{"id":"L23LOSS","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"AD1_1_","type":"alpha","calc":false,"value":""},{"id":"AA1_1_","type":"alpha","calc":false,"value":" "},{"id":"AA2_1_","type":"alpha","calc":false,"value":" "},{"id":"AD1_2_","type":"alpha","calc":false,"value":""},{"id":"AA1_2_","type":"alpha","calc":false,"value":" "},{"id":"AA2_2_","type":"alpha","calc":false,"value":" "},{"id":"AD1_3_","type":"alpha","calc":false,"value":""},{"id":"AA1_3_","type":"alpha","calc":false,"value":" "},{"id":"AA2_3_","type":"alpha","calc":false,"value":" "},{"id":"L1_1_","type":"number","calc":false,"value":""},{"id":"L2_1_","type":"number","calc":false,"value":""},{"id":"L3_1_","type":"number","calc":false,"value":""},{"id":"L4_1_","type":"number","calc":false,"value":""},{"id":"L5_1_","type":"number","calc":false,"value":""},{"id":"L6_1_","type":"number","calc":false,"value":""},{"id":"L7_1_","type":"number","calc":false,"value":""},{"id":"L8_1_","type":"number","calc":false,"value":""},{"id":"L9_1_","type":"number","calc":false,"value":""},{"id":"L10_1_","type":"number","calc":false,"value":""},{"id":"L11_1_","type":"number","calc":false,"value":""},{"id":"L12_1_","type":"number","calc":false,"value":""},{"id":"L13_1_","type":"number","calc":false,"value":""},{"id":"L14_1_","type":"number","calc":false,"value":""},{"id":"L15_1_","type":"number","calc":false,"value":""},{"id":"L16_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHDESC_1_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_OTHAMT1_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHDESC_2_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_OTHAMT1_2_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHDESC_3_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_OTHAMT1_3_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHDESC_4_","type":"alpha","calc":false,"value":""},{"id":"OTHEXP_OTHAMT1_4_","type":"number","calc":false,"value":""},{"id":"L18_1_","type":"number","calc":true,"value":""},{"id":"INCOME_1_","type":"number","calc":true,"value":""},{"id":"LOSS_1_","type":"number","calc":true,"value":""},{"id":"L1_2_","type":"number","calc":false,"value":""},{"id":"L2_2_","type":"number","calc":false,"value":""},{"id":"L3_2_","type":"number","calc":false,"value":""},{"id":"L4_2_","type":"number","calc":false,"value":""},{"id":"L5_2_","type":"number","calc":false,"value":""},{"id":"L6_2_","type":"number","calc":false,"value":""},{"id":"L7_2_","type":"number","calc":false,"value":""},{"id":"L8_2_","type":"number","calc":false,"value":""},{"id":"L9_2_","type":"number","calc":false,"value":""},{"id":"L10_2_","type":"number","calc":false,"value":""},{"id":"L11_2_","type":"number","calc":false,"value":""},{"id":"L12_2_","type":"number","calc":false,"value":""},{"id":"L13_2_","type":"number","calc":false,"value":""},{"id":"L14_2_","type":"number","calc":false,"value":""},{"id":"L15_2_","type":"number","calc":false,"value":""},{"id":"L16_2_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT2_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT2_2_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT2_3_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT2_4_","type":"number","calc":false,"value":""},{"id":"L18_2_","type":"number","calc":true,"value":""},{"id":"INCOME_2_","type":"number","calc":true,"value":""},{"id":"LOSS_2_","type":"number","calc":true,"value":""},{"id":"L1_3_","type":"number","calc":false,"value":""},{"id":"L2_3_","type":"number","calc":false,"value":""},{"id":"L3_3_","type":"number","calc":false,"value":""},{"id":"L4_3_","type":"number","calc":false,"value":""},{"id":"L5_3_","type":"number","calc":false,"value":""},{"id":"L6_3_","type":"number","calc":false,"value":""},{"id":"L7_3_","type":"number","calc":false,"value":""},{"id":"L8_3_","type":"number","calc":false,"value":""},{"id":"L9_3_","type":"number","calc":false,"value":""},{"id":"L10_3_","type":"number","calc":false,"value":""},{"id":"L11_3_","type":"number","calc":false,"value":""},{"id":"L12_3_","type":"number","calc":false,"value":""},{"id":"L13_3_","type":"number","calc":false,"value":""},{"id":"L14_3_","type":"number","calc":false,"value":""},{"id":"L15_3_","type":"number","calc":false,"value":""},{"id":"L16_3_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT3_1_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT3_2_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT3_3_","type":"number","calc":false,"value":""},{"id":"OTHEXP_OTHAMT3_4_","type":"number","calc":false,"value":""},{"id":"L18_3_","type":"number","calc":true,"value":""},{"id":"INCOME_3_","type":"number","calc":true,"value":""},{"id":"LOSS_3_","type":"number","calc":true,"value":""},{"id":"NETINC","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"SCORPGL","type":"number","calc":true,"value":""},{"id":"NETRENT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/SE.json b/test/data/pa/form/SE.json new file mode 100755 index 00000000..3bcf1467 --- /dev/null +++ b/test/data/pa/form/SE.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule E - Rents and Royalty Income (Loss) - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.273,"y":3.616,"w":4.5,"l":4.967},{"oc":"#221f1f","x":9.29,"y":46.866,"w":4.5,"l":4.95},{"oc":"#221f1f","x":90.948,"y":46.866,"w":4.5,"l":4.941},{"oc":"#221f1f","x":68.071,"y":5.925,"w":1.5,"l":27.87},{"oc":"#221f1f","x":9.35,"y":5.947,"w":0.75,"l":86.668},{"oc":"#221f1f","x":9.35,"y":10.841,"w":0.75,"l":86.668},{"oc":"#221f1f","x":9.35,"y":11.634,"w":0.75,"l":86.668},{"oc":"#221f1f","x":9.35,"y":8.038,"w":0.75,"l":86.668},{"oc":"#221f1f","x":9.35,"y":6.759,"w":0.75,"l":86.668},{"oc":"#221f1f","x":9.35,"y":10.078,"w":0.75,"l":86.668},{"oc":"#221f1f","x":81.675,"y":40.163,"w":0.75,"l":14.343},{"oc":"#221f1f","x":81.632,"y":39.488,"w":0.75,"l":14.386},{"oc":"#221f1f","x":81.675,"y":41.503,"w":0.75,"l":14.343},{"oc":"#221f1f","x":81.632,"y":40.828,"w":0.75,"l":14.386},{"oc":"#221f1f","x":81.752,"y":42.222,"w":1.5,"l":14.18},{"oc":"#221f1f","x":81.752,"y":42.928,"w":1.5,"l":14.18},{"dsh":1,"oc":"#221f1f","x":52.553,"y":13.2,"w":0.72,"l":43.374},{"dsh":1,"oc":"#221f1f","x":52.553,"y":14.7,"w":0.72,"l":43.374},{"dsh":1,"oc":"#221f1f","x":52.553,"y":16.2,"w":0.72,"l":43.374}],"VLines":[{"oc":"#221f1f","x":13.991,"y":2.534,"w":4.5,"l":1.166},{"oc":"#221f1f","x":9.539,"y":45.834,"w":4.5,"l":1.119},{"oc":"#221f1f","x":95.64,"y":45.834,"w":4.5,"l":1.119},{"oc":"#221f1f","x":72.918,"y":6.759,"w":0.75,"l":1.278},{"oc":"#221f1f","x":95.975,"y":39.466,"w":0.75,"l":0.731},{"oc":"#221f1f","x":81.684,"y":39.484,"w":0.75,"l":0.688},{"oc":"#221f1f","x":95.975,"y":40.806,"w":0.75,"l":0.731},{"oc":"#221f1f","x":81.684,"y":40.825,"w":0.75,"l":0.688},{"oc":"#221f1f","x":95.932,"y":42.222,"w":1.5,"l":0.706},{"oc":"#221f1f","x":81.752,"y":42.222,"w":1.5,"l":0.706}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":52.594,"y":18.247,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":18.247,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":18.247,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":18.277,"w":0.083,"h":0.6,"clr":-1},{"oc":"#221f1f","x":67.073,"y":18.277,"w":0.083,"h":0.6,"clr":-1},{"oc":"#221f1f","x":81.593,"y":18.277,"w":0.083,"h":0.6,"clr":-1},{"oc":"#221f1f","x":95.886,"y":18.277,"w":0.082,"h":0.6,"clr":-1},{"oc":"#221f1f","x":52.594,"y":18.877,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":18.877,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":18.877,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":18.908,"w":0.083,"h":0.63,"clr":-1},{"oc":"#221f1f","x":67.073,"y":18.908,"w":0.083,"h":0.63,"clr":-1},{"oc":"#221f1f","x":81.593,"y":18.908,"w":0.083,"h":0.63,"clr":-1},{"oc":"#221f1f","x":95.886,"y":18.908,"w":0.082,"h":0.63,"clr":-1},{"oc":"#221f1f","x":52.594,"y":19.537,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":19.537,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":19.537,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":19.568,"w":0.083,"h":0.712,"clr":-1},{"oc":"#221f1f","x":9.24,"y":20.28,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.594,"y":20.28,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":20.28,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":20.28,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":20.31,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":67.073,"y":20.31,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":81.593,"y":20.31,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":95.886,"y":20.31,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":52.594,"y":20.947,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":20.947,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":20.947,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.24,"y":21.652,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":20.978,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":21.652,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.073,"y":20.978,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.155,"y":21.652,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.593,"y":20.978,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.675,"y":21.652,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.886,"y":20.978,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":9.199,"y":12.435,"w":3.032,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.313,"y":12.435,"w":40.157,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.553,"y":12.435,"w":43.374,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.231,"y":12.465,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":52.47,"y":12.465,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":12.231,"y":13.215,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":52.47,"y":13.215,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":9.199,"y":13.898,"w":3.032,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.313,"y":13.898,"w":40.157,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.553,"y":13.898,"w":43.374,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.231,"y":13.928,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":52.47,"y":13.928,"w":0.083,"h":0.758,"clr":-1},{"oc":"#221f1f","x":12.231,"y":14.715,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":52.47,"y":14.715,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":9.199,"y":15.397,"w":3.032,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.313,"y":15.397,"w":40.157,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.553,"y":15.397,"w":43.374,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.231,"y":15.428,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":52.47,"y":15.428,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.199,"y":16.913,"w":3.032,"h":0.06,"clr":-1},{"oc":"#221f1f","x":12.231,"y":16.215,"w":0.083,"h":0.698,"clr":-1},{"oc":"#221f1f","x":12.396,"y":16.913,"w":40.074,"h":0.06,"clr":-1},{"oc":"#221f1f","x":52.47,"y":16.215,"w":0.083,"h":0.698,"clr":-1},{"oc":"#221f1f","x":52.635,"y":16.913,"w":43.292,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.24,"y":22.342,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.594,"y":22.342,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":22.342,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":22.342,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":22.372,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":67.073,"y":22.372,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":81.593,"y":22.372,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":95.886,"y":22.372,"w":0.082,"h":0.638,"clr":-1},{"oc":"#221f1f","x":52.594,"y":23.01,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":23.01,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":23.01,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":23.04,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":67.073,"y":23.04,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":81.593,"y":23.04,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":95.886,"y":23.04,"w":0.082,"h":0.667,"clr":-1},{"oc":"#221f1f","x":52.594,"y":23.707,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":23.707,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":23.707,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":23.738,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":67.073,"y":23.738,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":81.593,"y":23.738,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.886,"y":23.738,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":52.594,"y":24.42,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":24.42,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":24.42,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":24.45,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":24.45,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":24.45,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":24.45,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":25.125,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":25.125,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":25.125,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":25.155,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":25.155,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":25.155,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":25.155,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":25.83,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":25.83,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":25.83,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":25.86,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":25.86,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":25.86,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":25.86,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":26.535,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":26.535,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":26.535,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":26.565,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":26.565,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":26.565,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":26.565,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":27.24,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":27.24,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":27.24,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":27.27,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":27.27,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":27.27,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":27.27,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":27.945,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":27.945,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":27.945,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":27.975,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":67.073,"y":27.975,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":81.593,"y":27.975,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":95.886,"y":27.975,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":52.594,"y":28.657,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":28.657,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":28.657,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":28.688,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":28.688,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":28.688,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":28.688,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":29.362,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":29.362,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":29.362,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":29.392,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":29.392,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":29.392,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":29.392,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":30.067,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":30.067,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":30.067,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":30.098,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":30.098,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":30.098,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":30.098,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":30.772,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":30.772,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":30.772,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":30.802,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":30.802,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":30.802,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":30.802,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":31.477,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":31.477,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":31.477,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.24,"y":32.19,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":31.507,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":52.594,"y":32.19,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.073,"y":31.507,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":67.155,"y":32.19,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.593,"y":31.507,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":81.675,"y":32.19,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.886,"y":31.507,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":9.24,"y":32.955,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.594,"y":32.955,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":32.955,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":32.955,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":32.985,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":67.073,"y":32.985,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.886,"y":32.985,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":52.594,"y":33.755,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":33.755,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":33.755,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.424,"y":33.645,"w":0.082,"h":1.055,"clr":-1},{"oc":"#221f1f","x":66.99,"y":33.654,"w":0.082,"h":1.035,"clr":-1},{"oc":"#221f1f","x":95.886,"y":33.66,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":34.523,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":34.523,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":34.523,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":34.553,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":34.553,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.556,"y":33.045,"w":0.082,"h":2.16,"clr":-1},{"oc":"#221f1f","x":95.886,"y":34.553,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":35.227,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":35.227,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":35.227,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":35.258,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.073,"y":35.258,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.593,"y":35.258,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":95.886,"y":35.258,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":35.933,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":35.933,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":35.933,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.24,"y":36.638,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":35.962,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":52.594,"y":36.638,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.073,"y":35.962,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":67.155,"y":36.638,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.593,"y":35.962,"w":0.083,"h":0.675,"clr":-1},{"oc":"#221f1f","x":81.675,"y":36.638,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.886,"y":35.962,"w":0.082,"h":0.675,"clr":-1},{"oc":"#221f1f","x":9.24,"y":37.313,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.594,"y":37.313,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":37.313,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":37.313,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":37.343,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":67.073,"y":37.343,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":81.593,"y":37.343,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.886,"y":37.343,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":52.594,"y":37.995,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.155,"y":37.995,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.675,"y":37.995,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.24,"y":38.692,"w":43.271,"h":0.03,"clr":-1},{"oc":"#221f1f","x":52.511,"y":38.025,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":52.594,"y":38.692,"w":14.479,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.073,"y":38.025,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":67.155,"y":38.692,"w":14.438,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.593,"y":38.025,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":81.675,"y":38.692,"w":14.211,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.886,"y":38.025,"w":0.082,"h":0.667,"clr":-1}],"Texts":[{"oc":"#221f1f","x":9.28,"y":17.378,"w":5.154000000000001,"clr":-1,"A":"left","R":[{"T":"Important%3A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.112,"y":16.762,"w":28.201000000000022,"clr":-1,"A":"left","R":[{"T":"Identify%20the%20property%20from%20Part%20A%20and%20indicate%20if%20the%20owner%20is%20the%20taxpayer%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":61.249,"y":8.34,"w":23.422145593999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20in%20the%20business%20of%20renting%20your%20property%2C%20extracting%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.352,"y":30.668,"w":2.9132246339999996,"clr":-1,"A":"left","R":[{"T":"Utilities","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":33.443,"y":41.318,"w":29.777416122999973,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2021%20and%2022.%20If%20submitting%20more%20than%20one%20schedule%2C%20total%20amounts%2C%20and","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.394,"y":39.968,"w":30.456227300000002,"clr":-1,"A":"left","R":[{"T":"Rent%20or%20royalty%20income%20(loss%20from%20PA%20S%20corporation(s)%20and%20partnerships%20from%20your","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.414,"y":29.963,"w":12.191000000000006,"clr":-1,"A":"left","R":[{"T":"Taxes%20-%20not%20based%20on%20net%20income","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":12.332,"y":22.897,"w":8.882027137,"clr":-1,"A":"left","R":[{"T":"Automobile%20and%20travel","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.331,"y":20.73,"w":7.582355209,"clr":-1,"A":"left","R":[{"T":"Royalties%20received%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":9.258,"y":10.628,"w":42.24699999999997,"clr":-1,"A":"left","R":[{"T":"Show%20the%20complete%20address%20and%20kind%20of%20each%20rental%20real%20estate%20property%2C%20and%2For%20each%20source%20of%20royalty%20income.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.28,"y":8.34,"w":35.28305374400002,"clr":-1,"A":"left","R":[{"T":"gas%20and%20other%20minerals%20from%20your%20property%2C%20and%20the%20use%20of%20your%20patents%20and%20copyrights.","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":21.224,"y":7.776999999999999,"w":54.51029497500013,"clr":-1,"A":"left","R":[{"T":"Report%20the%20income%20and%20expenses%20for%20the%20use%20of%20your%20personal%20property%20by%20others.%20Also%2C%20report%20the%20income%20you%20received%20for%20the%20extraction%20of%20oil%2C%20","S":-1,"TS":[1,11.000001,0,0]}]},{"oc":"#221f1f","x":73.298,"y":6.502,"w":16.118977499999996,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,10.00002,0,0]}]},{"oc":"#221f1f","x":35.411,"y":5.028,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,24.79,1,0]}]},{"oc":"#221f1f","x":55.747,"y":18.63,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":60.243,"y":18.63,"w":0.667,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":65.234,"y":18.63,"w":0.556,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":70.556,"y":18.63,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":74.99,"y":18.63,"w":0.667,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":79.961,"y":18.63,"w":0.556,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":85.138,"y":18.63,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":89.675,"y":18.63,"w":0.667,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":94.481,"y":18.63,"w":0.556,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":10.537,"y":20.062,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.54,"y":20.062,"w":22.151999999999994,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.756,"y":20.062,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.537,"y":20.73,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":22.829,"y":20.73,"w":20.448,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.776,"y":20.73,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.374,"y":2.37,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301410021","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.584,"y":7.7780000000000005,"w":0.456,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":10.207,"y":12.548,"w":0.667,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":45.414,"y":12.217,"w":2.004,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":45.723,"y":12.96,"w":1.488,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.207,"y":14.033,"w":0.667,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":45.414,"y":13.71,"w":2.004,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":45.723,"y":14.46,"w":1.488,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.166,"y":15.57,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":45.414,"y":15.21,"w":2.004,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":45.723,"y":15.96,"w":1.488,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":52.598,"y":16.763,"w":1.709,"clr":-1,"A":"left","R":[{"T":"(T%20%3D%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":9.258,"y":19.365,"w":3.537,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.258,"y":21.428,"w":4.6370000000000005,"clr":-1,"A":"left","R":[{"T":"Expenses","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":10.537,"y":22.185,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":19.035,"y":22.185,"w":23.28799999999999,"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.04,0,0]}]},{"oc":"#221f1f","x":50.778,"y":22.185,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.537,"y":22.897,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.379,"y":22.897,"w":19.312000000000005,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.778,"y":22.897,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.537,"y":23.602,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":27.432,"y":23.602,"w":4.259999999999999,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":33.558,"y":23.602,"w":12.496000000000008,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.78,"y":23.602,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.537,"y":24.307,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.332,"y":24.307,"w":4.37158324,"clr":-1,"A":"left","R":[{"T":"Commissions","S":-1,"TS":[1,10.00000188,0,0]}]},{"oc":"#221f1f","x":19.778,"y":24.307,"w":22.71999999999999,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.777,"y":24.307,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.537,"y":25.012,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.353,"y":25.012,"w":4.0210109769999995,"clr":-1,"A":"left","R":[{"T":"Insurance","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":18.273,"y":25.012,"w":22.595999999999965,"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.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.779,"y":25.012,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.537,"y":25.725,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":27.432,"y":25.725,"w":17.040000000000013,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.78,"y":25.725,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.537,"y":26.43,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":22.851,"y":26.43,"w":20.448,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.777,"y":26.43,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":27.135,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":22.088,"y":27.135,"w":12.780000000000008,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":39.682,"y":27.135,"w":6.994000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.602,"y":27.135,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.014,"y":27.135,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.877,"y":27.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.538,"y":27.84,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.563,"y":27.84,"w":21.583999999999996,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.621,"y":27.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":49.992,"y":27.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%201","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.777,"y":27.84,"w":0.796,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":28.545,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.352,"y":28.545,"w":3.1533789150000002,"clr":-1,"A":"left","R":[{"T":"Repairs","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":17.487,"y":28.545,"w":22.595999999999965,"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.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.601,"y":28.545,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.013,"y":28.545,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":29.25,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":17.51,"y":29.25,"w":1.076,"clr":-1,"A":"left","R":[{"T":".%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":19.059,"y":29.25,"w":22.71999999999999,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.638,"y":29.25,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.014,"y":29.25,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":29.963,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":30.631,"y":29.963,"w":15.290000000000019,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.06,"y":29.963,"w":1.074,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":51.524,"y":29.963,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":30.668,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":16.725,"y":30.668,"w":17.040000000000013,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":39.68,"y":30.668,"w":6.994000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.601,"y":30.668,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.013,"y":30.668,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":31.387999999999998,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.397,"y":31.387999999999998,"w":18.744000000000007,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.621,"y":31.387999999999998,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.034,"y":31.387999999999998,"w":1.3330000000000002,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.258,"y":31.972,"w":4.254478767999999,"clr":-1,"A":"left","R":[{"T":"Important%3A","S":-1,"TS":[0,10.00000188,1,0]}]},{"oc":"#221f1f","x":9.856,"y":32.783,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":26.748,"y":32.97,"w":17.040000000000013,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.704,"y":32.783,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":50.096,"y":32.783,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":13.012,"y":33.745,"w":19.028000000000006,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.999,"y":33.745,"w":7.532000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.704,"y":33.682,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":13.012,"y":34.388,"w":25.823999999999945,"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.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.704,"y":34.387,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":13.012,"y":35.1,"w":25.823999999999945,"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.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.704,"y":35.1,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":9.877,"y":35.738,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.386,"y":35.738,"w":0.456,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":35.926,"y":35.738,"w":10.224000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.683,"y":35.737,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":50.075,"y":35.737,"w":1.3330000000000002,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":37.095,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":16.828,"y":37.095,"w":0.456,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":35.307,"y":37.095,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":36.607,"y":37.095,"w":9.656,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.601,"y":37.095,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.013,"y":37.095,"w":1.3330000000000002,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.774,"y":37.807,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":15.446,"y":37.807,"w":0.456,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":49.951,"y":37.807,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.794,"y":38.617,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.65,"y":39.255,"w":23.712000000000042,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":79.013,"y":39.255,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.836,"y":39.968,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":27.828,"y":40.605,"w":0.672,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":29.23,"y":40.605,"w":22.71999999999999,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":79.024,"y":40.605,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.847,"y":41.318,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":29.51,"y":42.023,"w":20.29200000000002,"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.%20.%20.%20.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":79.061,"y":42.023,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.004,"y":45.982,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301410021","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.268,"y":45.982,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301410021","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.746,"y":3.473,"w":8.111999999999998,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20E","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":9.258,"y":6.377,"w":17.947545999999992,"clr":-1,"A":"left","R":[{"T":"Name%20of%20the%20taxpayer%20filing%20this%20schedule","S":-1,"TS":[0,10.00002,0,0]}]},{"oc":"#221f1f","x":32.482,"y":5.775,"w":28.51500000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20three%20properties%2C%20photocopy%20this%20schedule.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.258,"y":7.7780000000000005,"w":8.238000000000001,"clr":-1,"A":"left","R":[{"T":"See%20the%20instructions","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":92.043,"y":16.763,"w":1.2300000000000002,"clr":-1,"A":"left","R":[{"T":"(J)%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":16.48,"y":17.378,"w":17.500885054999998,"clr":-1,"A":"left","R":[{"T":"Spouse%20may%20not%20offset%20income%20and%20losses.%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.331,"y":20.062,"w":5.893061209000001,"clr":-1,"A":"left","R":[{"T":"Rent%20received%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.332,"y":22.185,"w":4.680259928,"clr":-1,"A":"left","R":[{"T":"Advertising%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.332,"y":23.602,"w":10.884346064999999,"clr":-1,"A":"left","R":[{"T":"Cleaning%20and%20maintenance","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.332,"y":25.725,"w":11.241142163,"clr":-1,"A":"left","R":[{"T":"Legal%20and%20professional%20fees","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.332,"y":26.43,"w":7.82673832,"clr":-1,"A":"left","R":[{"T":"Management%20fees%20%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.366,"y":27.135,"w":7.016544172999999,"clr":-1,"A":"left","R":[{"T":"Mortgage%20interest%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.353,"y":27.84,"w":5.9344592579999995,"clr":-1,"A":"left","R":[{"T":"Other%20interest%20%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.352,"y":29.25,"w":3.7789711109999997,"clr":-1,"A":"left","R":[{"T":"Supplies%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.352,"y":31.387999999999998,"w":9.124067002999999,"clr":-1,"A":"left","R":[{"T":"Depreciation%20expense%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":15.556,"y":31.972,"w":51.248023713999935,"clr":-1,"A":"left","R":[{"T":"PA%20law%20does%20not%20permit%20any%20federal%20bonus%20depreciation.%20PA%20law%20limits%20the%20IRC%20Section%20179%20expensing%20to%20%2425%2C000.%20See%20the%20instrucions.","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.434,"y":32.783,"w":10.748246587999999,"clr":-1,"A":"left","R":[{"T":"Other%20expenses%20(itemize)%3A%20%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":22.355,"y":35.738,"w":9.853609578,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%203%20through%2017.%20%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":17.838,"y":37.095,"w":13.405232260999997,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2018%20from%20Line%201%20or%202","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":16.477,"y":37.807,"w":24.158274947000013,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%201or%202%20from%20Line%2018.%20(fillin%20the%20oval%2C%20if%20a%20net%20loss)%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.373,"y":38.618,"w":8.16960416,"clr":-1,"A":"left","R":[{"T":"Net%20Income%20or%20Loss","S":-1,"TS":[0,10.00000188,1,0]}]},{"oc":"#221f1f","x":12.354,"y":39.255,"w":8.373012198999998,"clr":-1,"A":"left","R":[{"T":"Total%20Lines%2019%20and%2020","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":60.24,"y":39.255,"w":11.116042685999998,"clr":-1,"A":"left","R":[{"T":"(fill%20in%20the%20oval%2C%20if%20a%20net%20loss)%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.398,"y":40.605,"w":12.143784356,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule(s)%20RK-1%20or%20NRK-1","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":59.847,"y":40.605,"w":10.984082552,"clr":-1,"A":"left","R":[{"T":".(fill%20in%20the%20oval%2C%20if%20a%20net%20loss)%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.759,"y":42.023,"w":13.010426408,"clr":-1,"A":"left","R":[{"T":"include%20on%20Line%206%20of%20your%20PA-40.%20%20%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.425,"y":41.318,"w":15.024332489999994,"clr":-1,"A":"left","R":[{"T":"Net%20Rent%20and%20Royalty%20Income%20(Loss).%20","S":-1,"TS":[0,10.00000188,1,0]}]},{"oc":"#221f1f","x":59.875,"y":42.023,"w":11.369082552,"clr":-1,"A":"left","R":[{"T":".(fill%20in%20the%20oval%2C%20if%20a%20net%20loss)%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":12.455,"y":35.738,"w":6.387066391999999,"clr":-1,"A":"left","R":[{"T":"Total%20Expenses","S":-1,"TS":[0,10.00000188,1,0]}]},{"oc":"#221f1f","x":9.249,"y":36.37,"w":7.438229775000001,"clr":-1,"A":"left","R":[{"T":"Income%20or%20Loss","S":-1,"TS":[0,10.730339274750001,1,0]}]},{"oc":"#221f1f","x":20.87,"y":3.99,"w":7.2730000000000015,"clr":-1,"A":"left","R":[{"T":"Rents%20and%20Royalty","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":20.85,"y":4.485,"w":5.65,"clr":-1,"A":"left","R":[{"T":"Income%20(Loss)","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":20.746,"y":4.935,"w":7.2010000000000005,"clr":-1,"A":"left","R":[{"T":"PA-40%20Schedule%20E%20","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":29.669,"y":4.935,"w":2.6640000000000006,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":9.291,"y":8.902,"w":43.25170752500004,"clr":-1,"A":"left","R":[{"T":"minerals%20from%20your%20property%20or%20producing%20products%20from%20your%20patents%20and%20copyrights%20%E2%80%93%20use%20PA%20Schedule%20C.","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":57.507,"y":8.34,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":9.258,"y":9.878,"w":13.608999999999998,"clr":-1,"A":"left","R":[{"T":"Part%20A.%20Property%20Description%3A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":21.88,"y":11.437,"w":7.794,"clr":-1,"A":"left","R":[{"T":"Kind%20of%20property","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":42.548,"y":11.437,"w":8.909,"clr":-1,"A":"left","R":[{"T":"For%20Profit%20Property","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":67.112,"y":11.437,"w":8.931000000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20Address","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.258,"y":16.762,"w":3.2000003890000004,"clr":-1,"A":"left","R":[{"T":"Part%20B.%20","S":-1,"TS":[0,11.000001000000001,1,0]}]},{"oc":"#221f1f","x":81.74,"y":16.763,"w":7.209827806999999,"clr":-1,"A":"left","R":[{"T":"%20or%20if%20jointly%20owned%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":79.647,"y":16.763,"w":1.366,"clr":-1,"A":"left","R":[{"T":"(S)","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.352,"y":37.095,"w":2.9130000000000003,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":55.116,"y":16.763,"w":13.224515895000005,"clr":-1,"A":"left","R":[{"T":"the%20name%20show%20first%20on%20the%20PA-40","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":73.299,"y":16.763,"w":0.300925451,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,10.00000188,1,0]}]},{"oc":"#221f1f","x":73.702,"y":16.763,"w":4.428090708999999,"clr":-1,"A":"left","R":[{"T":"%20or%20spouse%20","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":85.406,"y":5.047,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":55.726,"y":17.978,"w":5.102,"clr":-1,"A":"left","R":[{"T":"Property%20A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":70.143,"y":17.978,"w":5.102,"clr":-1,"A":"left","R":[{"T":"Property%20B","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":84.581,"y":17.978,"w":5.102,"clr":-1,"A":"left","R":[{"T":"Property%20C","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.352,"y":37.807,"w":1.9420000000000002,"clr":-1,"A":"left","R":[{"T":"Loss","S":-1,"TS":[1,11.04,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":813,"AM":1024,"x":9.524,"y":7.266,"w":63.06,"h":0.833,"TU":"Name of Taxpayer Filing this Schedule."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":814,"AM":1024,"x":73.32,"y":7.324,"w":22.047,"h":0.833,"TU":"Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AD1_1_","EN":0},"TI":815,"AM":0,"x":12.679,"y":13.087,"w":32.722,"h":0.833,"TU":"Kind of Property A"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AA1_1_","EN":0},"TI":817,"AM":0,"x":53.063,"y":12.526,"w":42.909,"h":0.833,"TU":"Complete Property A Address Line 1","V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AA2_1_","EN":0},"TI":818,"AM":0,"x":53.013,"y":13.281,"w":42.909,"h":0.833,"TU":"Complete Property A Address Line 2","V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AD1_2_","EN":0},"TI":819,"AM":0,"x":12.679,"y":14.551,"w":32.788,"h":0.833,"TU":"Kind of Property B"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AA1_2_","EN":0},"TI":821,"AM":0,"x":53.063,"y":13.988,"w":42.909,"h":0.833,"TU":"Complete Property B Address Line 1","V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AA2_2_","EN":0},"TI":822,"AM":0,"x":53.013,"y":14.687,"w":42.909,"h":0.833,"TU":"Complete Property B Address Line 2","V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AD1_3_","EN":0},"TI":823,"AM":0,"x":12.679,"y":16.028,"w":32.722,"h":0.833,"TU":"Kind of Property C"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AA1_3_","EN":0},"TI":825,"AM":0,"x":53.063,"y":15.477,"w":42.909,"h":0.833,"TU":"Complete Property C Address Line 1","V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AA2_3_","EN":0},"TI":826,"AM":0,"x":53.138,"y":16.271,"w":42.909,"h":0.833,"TU":"Complete Property C Address Line 2","V":" "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1_1_","EN":0},"TI":831,"AM":0,"x":52.763,"y":20.331,"w":13.987,"h":0.833,"TU":"Rent Received Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2_1_","EN":0},"TI":832,"AM":0,"x":52.763,"y":21.025,"w":13.987,"h":0.833,"TU":"Royalties Received Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3_1_","EN":0},"TI":833,"AM":0,"x":52.846,"y":22.279,"w":13.987,"h":0.833,"TU":"Advertising Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4_1_","EN":0},"TI":834,"AM":0,"x":52.846,"y":22.956,"w":13.987,"h":0.833,"TU":"Automobile and Travel Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5_1_","EN":0},"TI":835,"AM":0,"x":52.846,"y":23.675,"w":13.987,"h":0.833,"TU":"Cleaning and Maintenance Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_1_","EN":0},"TI":836,"AM":0,"x":52.846,"y":24.365,"w":13.987,"h":0.833,"TU":"Commissions Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7_1_","EN":0},"TI":837,"AM":0,"x":52.846,"y":25.107,"w":13.987,"h":0.833,"TU":"Insurance Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8_1_","EN":0},"TI":838,"AM":0,"x":52.846,"y":25.808,"w":13.987,"h":0.833,"TU":"Legal and Professional Fees Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9_1_","EN":0},"TI":839,"AM":0,"x":52.846,"y":26.529,"w":13.987,"h":0.833,"TU":"Management Fees Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10_1_","EN":0},"TI":840,"AM":0,"x":52.846,"y":27.23,"w":13.987,"h":0.833,"TU":"Mortgage Interest Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11_1_","EN":0},"TI":841,"AM":0,"x":52.846,"y":27.947,"w":13.987,"h":0.833,"TU":"Other Interest Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12_1_","EN":0},"TI":842,"AM":0,"x":52.846,"y":28.661,"w":13.987,"h":0.833,"TU":"Repairs Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13_1_","EN":0},"TI":843,"AM":0,"x":52.846,"y":29.362,"w":13.987,"h":0.833,"TU":"Supplies Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14_1_","EN":0},"TI":844,"AM":0,"x":52.846,"y":30.042,"w":13.987,"h":0.833,"TU":"Taxes - Not Based on Net Income Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15_1_","EN":0},"TI":845,"AM":0,"x":52.846,"y":30.76,"w":13.987,"h":0.833,"TU":"Utilities Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16_1_","EN":0},"TI":846,"AM":0,"x":52.846,"y":31.464,"w":13.987,"h":0.833,"TU":"Depreciation Expense Property A"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHDESC_1_","EN":0},"TI":847,"AM":0,"x":26.332,"y":33.096,"w":24.181,"h":0.833,"TU":"Other expenses (itemize):"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT1_1_","EN":0},"TI":848,"AM":0,"x":52.843,"y":33.065,"w":13.987,"h":0.833,"TU":"Other Expenses Property A"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHDESC_2_","EN":0},"TI":849,"AM":0,"x":12.725,"y":33.834,"w":38.049,"h":0.833,"TU":"Other expenses (itemize):"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT1_2_","EN":0},"TI":850,"AM":0,"x":52.843,"y":33.775,"w":13.987,"h":0.833,"TU":"Other Expenses Property A"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHDESC_3_","EN":0},"TI":851,"AM":0,"x":12.725,"y":34.534,"w":38.049,"h":0.833,"TU":"Other expenses (itemize):"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT1_3_","EN":0},"TI":852,"AM":0,"x":52.843,"y":34.486,"w":13.987,"h":0.833,"TU":"Other Expenses Property A"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHDESC_4_","EN":0},"TI":853,"AM":0,"x":12.725,"y":35.206,"w":38.049,"h":0.833,"TU":"Other expenses (itemize):"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT1_4_","EN":0},"TI":854,"AM":0,"x":52.843,"y":35.187,"w":13.987,"h":0.833,"TU":"Other Expenses Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18_1_","EN":0},"TI":855,"AM":1024,"x":52.843,"y":35.897,"w":13.987,"h":0.833,"TU":"Total Expenses Porperty A – Add Lines 3 through 17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCOME_1_","EN":0},"TI":856,"AM":1024,"x":52.993,"y":37.34,"w":13.987,"h":0.833,"TU":"Income – Subtract Line 18 from Line 1 or 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOSS_1_","EN":0},"TI":859,"AM":1024,"x":55.796,"y":37.998,"w":11.056,"h":0.833,"TU":"Loss – Subtract Line 1 or 2 from Line 18"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1_2_","EN":0},"TI":862,"AM":0,"x":67.342,"y":20.331,"w":13.987,"h":0.833,"TU":"Rent Received Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2_2_","EN":0},"TI":863,"AM":0,"x":67.342,"y":21.053,"w":13.987,"h":0.833,"TU":"Royalties Received Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3_2_","EN":0},"TI":864,"AM":0,"x":67.507,"y":22.279,"w":13.987,"h":0.833,"TU":"Advertising Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4_2_","EN":0},"TI":865,"AM":0,"x":67.597,"y":22.956,"w":13.987,"h":0.833,"TU":"Automobile and Travel Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5_2_","EN":0},"TI":866,"AM":0,"x":67.597,"y":23.675,"w":13.987,"h":0.833,"TU":"Cleaning and Maintenance Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_2_","EN":0},"TI":867,"AM":0,"x":67.597,"y":24.365,"w":13.987,"h":0.833,"TU":"Commissions Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7_2_","EN":0},"TI":868,"AM":0,"x":67.597,"y":25.107,"w":13.987,"h":0.833,"TU":"Insurance Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8_2_","EN":0},"TI":869,"AM":0,"x":67.597,"y":25.808,"w":13.987,"h":0.833,"TU":"Legal and Professional Fees Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9_2_","EN":0},"TI":870,"AM":0,"x":67.597,"y":26.529,"w":13.987,"h":0.833,"TU":"Management Fees Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10_2_","EN":0},"TI":871,"AM":0,"x":67.597,"y":27.23,"w":13.987,"h":0.833,"TU":"Mortgage Interest Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11_2_","EN":0},"TI":872,"AM":0,"x":67.597,"y":27.947,"w":13.987,"h":0.833,"TU":"Other Interest Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12_2_","EN":0},"TI":873,"AM":0,"x":67.597,"y":28.661,"w":13.987,"h":0.833,"TU":"Repairs Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13_2_","EN":0},"TI":874,"AM":0,"x":67.597,"y":29.362,"w":13.987,"h":0.833,"TU":"Supplies Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14_2_","EN":0},"TI":875,"AM":0,"x":67.597,"y":30.042,"w":13.987,"h":0.833,"TU":"Taxes - Not Based on Net Income Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15_2_","EN":0},"TI":876,"AM":0,"x":67.597,"y":30.76,"w":13.987,"h":0.833,"TU":"Utilities Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16_2_","EN":0},"TI":877,"AM":0,"x":67.597,"y":31.464,"w":13.987,"h":0.833,"TU":"Depreciation Expense Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT2_1_","EN":0},"TI":878,"AM":0,"x":67.498,"y":33.038,"w":13.987,"h":0.833,"TU":"Other Expenses Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT2_2_","EN":0},"TI":879,"AM":0,"x":67.423,"y":33.775,"w":13.987,"h":0.833,"TU":"Other Expenses Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT2_3_","EN":0},"TI":880,"AM":0,"x":67.423,"y":34.486,"w":13.987,"h":0.833,"TU":"Other Expenses Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT2_4_","EN":0},"TI":881,"AM":0,"x":67.423,"y":35.187,"w":13.987,"h":0.833,"TU":"Other Expenses Property B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18_2_","EN":0},"TI":882,"AM":1024,"x":67.423,"y":35.897,"w":13.987,"h":0.833,"TU":"Property B Total Expenses – Add Lines 3 through 17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCOME_2_","EN":0},"TI":883,"AM":1024,"x":67.572,"y":37.34,"w":13.987,"h":0.833,"TU":"Income – Subtract Line 18 from Line 1 or 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOSS_2_","EN":0},"TI":886,"AM":1024,"x":70.824,"y":38.03,"w":10.554,"h":0.833,"TU":"Loss – Subtract Line 1 or 2 from Line 18"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1_3_","EN":0},"TI":889,"AM":0,"x":81.507,"y":20.331,"w":13.987,"h":0.833,"TU":"Rent Received Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2_3_","EN":0},"TI":890,"AM":0,"x":81.507,"y":21.053,"w":13.987,"h":0.833,"TU":"Royalties Received Property A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3_3_","EN":0},"TI":891,"AM":0,"x":81.934,"y":22.279,"w":13.987,"h":0.833,"TU":"Advertising Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4_3_","EN":0},"TI":892,"AM":0,"x":81.934,"y":22.956,"w":13.987,"h":0.833,"TU":"Automobile and Travel Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5_3_","EN":0},"TI":893,"AM":0,"x":81.934,"y":23.675,"w":13.987,"h":0.833,"TU":"Cleaning and Maintenance Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6_3_","EN":0},"TI":894,"AM":0,"x":81.934,"y":24.365,"w":13.987,"h":0.833,"TU":"Commissions Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7_3_","EN":0},"TI":895,"AM":0,"x":81.934,"y":25.107,"w":13.987,"h":0.833,"TU":"Insurance Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8_3_","EN":0},"TI":896,"AM":0,"x":81.934,"y":25.808,"w":13.987,"h":0.833,"TU":"Legal and Professional Fees Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9_3_","EN":0},"TI":897,"AM":0,"x":81.934,"y":26.529,"w":13.987,"h":0.833,"TU":"Management Fees Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10_3_","EN":0},"TI":898,"AM":0,"x":81.934,"y":27.23,"w":13.987,"h":0.833,"TU":"Mortgage Interest Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11_3_","EN":0},"TI":899,"AM":0,"x":81.934,"y":27.947,"w":13.987,"h":0.833,"TU":"Other Interest Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12_3_","EN":0},"TI":900,"AM":0,"x":81.934,"y":28.661,"w":13.987,"h":0.833,"TU":"Repairs Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13_3_","EN":0},"TI":901,"AM":0,"x":81.934,"y":29.362,"w":13.987,"h":0.833,"TU":"Supplies Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14_3_","EN":0},"TI":902,"AM":0,"x":81.934,"y":30.042,"w":13.987,"h":0.833,"TU":"Taxes - Not Based on Net Income Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15_3_","EN":0},"TI":903,"AM":0,"x":81.934,"y":30.76,"w":13.987,"h":0.833,"TU":"Utilities Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16_3_","EN":0},"TI":904,"AM":0,"x":81.934,"y":31.464,"w":13.987,"h":0.833,"TU":"Depreciation Expense Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT3_1_","EN":0},"TI":905,"AM":0,"x":81.931,"y":33.065,"w":13.987,"h":0.833,"TU":"Other Expenses Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT3_2_","EN":0},"TI":906,"AM":0,"x":81.931,"y":33.775,"w":13.987,"h":0.833,"TU":"Other Expenses Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT3_3_","EN":0},"TI":907,"AM":0,"x":81.931,"y":34.486,"w":13.987,"h":0.833,"TU":"Other Expenses Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_OTHAMT3_4_","EN":0},"TI":908,"AM":0,"x":81.931,"y":35.187,"w":13.987,"h":0.833,"TU":"Other Expenses Property C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18_3_","EN":0},"TI":909,"AM":1024,"x":81.931,"y":35.897,"w":13.987,"h":0.833,"TU":"Property C Total Expenses – Add Lines 3 through 17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCOME_3_","EN":0},"TI":910,"AM":1024,"x":81.909,"y":37.403,"w":13.837,"h":0.833,"TU":"Income – Subtract Line 18 from Line 1 or 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LOSS_3_","EN":0},"TI":913,"AM":1024,"x":85.191,"y":38.03,"w":10.704,"h":0.833,"TU":"Loss – Subtract Line 1 or 2 from Line 18"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETINC","EN":0},"TI":915,"AM":0,"x":81.909,"y":39.557,"w":13.837,"h":0.833,"TU":"Net Income or Loss Total Lines 19 and 20"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_expl01"}},"id":{"Id":"Add","EN":0},"TI":916,"AM":0,"x":55.84,"y":40.645,"w":4.215,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCORPGL","EN":0},"TI":918,"AM":1024,"x":81.909,"y":40.869,"w":13.912,"h":0.833,"TU":"Not Supported"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETRENT","EN":0},"TI":920,"AM":0,"x":81.984,"y":42.287,"w":13.762,"h":0.833,"TU":"Net Rent or Royalty Income (Loss)"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AYBXY","EN":0},"TI":816,"AM":0,"x":49.809,"y":12.461,"w":1.971,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AYBXN","EN":0},"TI":827,"AM":0,"x":49.752,"y":13.151,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"PROPARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BYBXY","EN":0},"TI":820,"AM":0,"x":49.775,"y":13.85,"w":1.971,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BYBXN","EN":0},"TI":828,"AM":0,"x":49.775,"y":14.621,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"PROPBRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CYBXY","EN":0},"TI":824,"AM":0,"x":49.68,"y":15.395,"w":1.971,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CYBXN","EN":0},"TI":829,"AM":0,"x":49.68,"y":16.165,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"PROPCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWHX","EN":0},"TI":830,"AM":0,"x":53.68,"y":18.894,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWSX","EN":0},"TI":858,"AM":0,"x":58.459,"y":18.903,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWJX","EN":0},"TI":860,"AM":0,"x":63.231,"y":18.896,"w":1.821,"h":0.833,"checked":false}],"id":{"Id":"OWRB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20LOSSX_1_","EN":0},"TI":857,"AM":1024,"x":53.11,"y":38.046,"w":2.515,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWHX","EN":0},"TI":861,"AM":0,"x":68.507,"y":18.898,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWSX","EN":0},"TI":884,"AM":0,"x":73.287,"y":18.908,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWJX","EN":0},"TI":887,"AM":0,"x":78.058,"y":18.9,"w":1.821,"h":0.833,"checked":false}],"id":{"Id":"OWRB_2_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20LOSSX_2_","EN":0},"TI":885,"AM":1024,"x":68.021,"y":37.984,"w":2.515,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWHX","EN":0},"TI":888,"AM":0,"x":83.236,"y":18.864,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWSX","EN":0},"TI":911,"AM":0,"x":88.016,"y":18.873,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OWJX","EN":0},"TI":921,"AM":0,"x":92.787,"y":18.866,"w":1.821,"h":0.833,"checked":false}],"id":{"Id":"OWRB_3_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20LOSSX_3_","EN":0},"TI":912,"AM":1024,"x":82.486,"y":37.984,"w":2.515,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21LOSS","EN":0},"TI":914,"AM":0,"x":75.731,"y":39.448,"w":2.515,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L22LOSS","EN":0},"TI":917,"AM":1024,"x":75.795,"y":40.863,"w":2.515,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L23LOSS","EN":0},"TI":919,"AM":0,"x":75.795,"y":42.207,"w":2.515,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/SSP.content.txt b/test/data/pa/form/SSP.content.txt new file mode 100755 index 00000000..daf702b2 --- /dev/null +++ b/test/data/pa/form/SSP.content.txt @@ -0,0 +1,525 @@ +2. If you answered “Yes” above, does the taxpayer on whose return you are a dependent qualify for tax forgiveness? +1. + + + +Age + +Relationship + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +2013 + +1301110027 + + + + + + + + + + + + + + + + + + + + + + +Y +es + +No + + + +No + + + + + + + + + + +1. + + + + + + +a. + + + + +b. + + + +S +SN: + + + + +Name: + + + + +2. + + + + + + + + +3. +Ma +rried + - + +a. + + + + + + + +b. + + + + + + + + +c. + + + + + + + +SSN: + + + + +Name: + + + + +d. + + + + +C + + + + + +4. + + + + + + + + + + + + + + + + +: + + + + +2. + + + +. . +. . . . . + +2. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Spouse + +1. + + + + +1. + + + +2. + + + + +2. + + + +3. + + +Alimony + +3. + + + +4. + + + + +4. + + + +5. + + + + +5. + + + +6. + + + + +6. + + + +7. + + + + +7. + + + +8. + + + + +8. + + + +9. + + + + + +9. + + + +10. + + + + +10. + + + +1 +1. + + + +for + + + + + + +for + + + + +1 +1. + + + + + + + + +12. + + + + +12. + + +13. + + + + +13. + + +14. + + + + +14. + + +15. + + + + + + + + + + +15. + + +16. + + + + + + + +16. + + + +Name of taxpayer claiming Tax Forgiveness (if filing a PA-40 jointly, enter the name shown first) +Social Security Number (shown first) +Spouse’s Name (even if filing separately) +Spouse’s Social Security Number +Eligibility Questions +1. Are you a dependent on another taxpayer’s (parent, guardian, step-parent, etc.) federal tax return? +Only +Column A +Eligibility Income. +If you answered “No” to Question 1, please proceed with completing Schedule SP. If you answered "Yes" to Question 1, you must also have answered +“Yes” to Question 2 to be eligible for tax forgiveness and complete Line 1b. or Line 3c. from Part A below. +Part A. Filing Status for Tax Forgiveness. +Fill in the Married oval on Line 19a of your PA-40. Enter your spouse’s name and SSN above. Fill in the oval that describes your situation: +Fill in this oval only if (a) you are separated pursuant to a written agreement or (b) you were married, but separated and lived apart for the last six +months of the year. Fill in the Unmarried oval on Line19a of your PA-40. +Separated – use +to calculate your +Eligibility Income. +Unmarried - use +Column A +to calculate your +Fill in the Unmarried oval on Line 19a of your PA-40. Fill in the oval that describes your situation: +Single. Unmarried/divorced on Dec. 31, 2013 +Single and claimed as a dependent on an other person’s PA Schedule SP. Enter the other person’s: +Married and claiming Tax Forgiveness together with my spouse. Use +Column A +to calculate +Married and filing separate PA tax returns. +Fill in this oval certifying that you and your spouse are submitting the same +information on each PA Schedule SP. Use +Columns B and C +to calculate your +Eligibility Income. +Married with a spouse who is a dependent on another person’s PA Schedule SP or federal income tax return. Use +Columns B and C +to calculate +Eligibility Income. +Enter the other person’s: +Separated and lived apart from my spouse but for less than the last six months of the year. Use +Columns B +and +to calculate +Eligibility Income. +Enter your spouse’s name and SSN above. +Deceased - use +Column A +to calculate your +Eligibility Income. +Fill in the Deceased oval on Line 19a of the PA-40. You must annualize the decedent’s income (see the instructions) and briefly describe your method : +Provide all the information for each dependent child. If more than four dependent children, submit additional sheets in this format. +Part B. Dependent Children. +Dependent’s Name +Social Security No. +claimed as your dependent(s) on your 2013 Federal +Income Tax return. +Number of dependent children. +Enter on Line 19b of your PA-40. +Part C. Eligibility Income. +Married taxpayers filing separately, and taxpayers separated but not for the last +six months of the year use +Columns B and C, + and +Eligibility Income Table2. +Married taxpayersfiling jointly use +Column A +and +Eligibility Income +Table 2. +Single filers, qualifying separated filers, and if filing for +a decedent use +Column A +and +Eligibility Income Table1. +The +Eligibility Income Tables +are on page 36 of the PA-40 booklet. +Column A +Unmarried or Married +Filing Jointly +Married Filing Separately +Column B +Column C +Taxpayer +PA taxable income from Line 9 of your PA-40 +Nontaxable interest, dividends and gains and/or annualized income +Insurance proceeds and inheritances +Gifts, awards and prizes +Nonresident income – part-year residents and nonresidents +Nontaxable military income – Do not include combat pay +Gain excluded from the sale of a residence +Nontaxable educational assistance +Cash received for personal purposes from outside your home +Total Eligibility Income +Column A +PA Tax Liability from your PA-40, Line12 (if amended return, see instructions) +Less Resident Credit from your PA-40, Line 22 +Net PA Tax Liability. Subtract Line 13 from Line 12 +Percentage of Tax Forgiveness from the +Eligibility Income Table +using your +dependents from Part B and your +Total Eligibility Income +from Line 11 +Tax Forgiveness Credit. +Multiply Line 14 by the decimalon Line 15. +Enter on your PA-40, Line 21. +Part D. Calculating your Tax Forgiveness Credit +Total Eligibility Income +Columns B and C +– add Lines 1 through 10 for each spouse and enter the total +PA SCHEDULE SP +Special Tax Forgiveness +PA-40 Schedule SP +OFFICIAL USE ONLY +IMPORTANT +(06-13) +Yes +IMPORANT: +Eligibility Income. +Certification. +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/SSP.fields.json b/test/data/pa/form/SSP.fields.json new file mode 100755 index 00000000..202c24d3 --- /dev/null +++ b/test/data/pa/form/SSP.fields.json @@ -0,0 +1 @@ +[{"id":"DEPBXRB","type":"radio","calc":false,"value":"DEPY"},{"id":"DEPBXRB","type":"radio","calc":false,"value":"DEPN"},{"id":"QUALBXRB","type":"radio","calc":false,"value":"TAXFY"},{"id":"QUALBXRB","type":"radio","calc":false,"value":"TAXFN"},{"id":"PABXRB","type":"radio","calc":false,"value":"PABXU"},{"id":"PABXRB","type":"radio","calc":false,"value":"PABXS"},{"id":"PABXRB","type":"radio","calc":false,"value":"PABXM"},{"id":"PABXRB","type":"radio","calc":false,"value":"PABXD"},{"id":"UNMARRRB","type":"radio","calc":false,"value":"PABX2"},{"id":"UNMARRRB","type":"radio","calc":false,"value":"PABX3"},{"id":"MARRIERB","type":"radio","calc":false,"value":"PABX8"},{"id":"MARRIERB","type":"radio","calc":false,"value":"PABX9"},{"id":"MARRIERB","type":"radio","calc":false,"value":"PABX10"},{"id":"MARRIERB","type":"radio","calc":false,"value":"PABX12"},{"id":"CERT","type":"box","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"SPNAM","type":"alpha","calc":true,"value":""},{"id":"SPSS","type":"ssn","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":false,"value":""},{"id":"NAME2","type":"alpha","calc":false,"value":""},{"id":"SSN4","type":"ssn","calc":false,"value":""},{"id":"NAME4","type":"alpha","calc":false,"value":""},{"id":"ANNMETH","type":"alpha","calc":false,"value":""},{"id":"Add_DEP_STM","type":"link","calc":false,"value":""},{"id":"DEPNAME_1_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_1_","type":"mask","calc":false,"value":""},{"id":"RELAT_1_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_2_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_2_","type":"mask","calc":false,"value":""},{"id":"RELAT_2_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_3_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_3_","type":"mask","calc":false,"value":""},{"id":"RELAT_3_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"DEPNAME_4_","type":"alpha","calc":false,"value":""},{"id":"DEPAGE_4_","type":"mask","calc":false,"value":""},{"id":"RELAT_4_","type":"alpha","calc":false,"value":""},{"id":"DEPSSN_4_","type":"ssn","calc":false,"value":""},{"id":"PBL2","type":"number","calc":false,"value":""},{"id":"PRTC1A","type":"number","calc":false,"value":""},{"id":"PRTC2A","type":"number","calc":false,"value":""},{"id":"PRTC3A","type":"number","calc":false,"value":""},{"id":"PRTC4A","type":"number","calc":false,"value":""},{"id":"PRTC5A","type":"number","calc":false,"value":""},{"id":"PRTC6A","type":"number","calc":true,"value":""},{"id":"PRTC7A","type":"number","calc":false,"value":""},{"id":"PRTC8A","type":"number","calc":false,"value":""},{"id":"PRTC9A","type":"number","calc":false,"value":""},{"id":"PRTC10A","type":"number","calc":false,"value":""},{"id":"TOTEI_J","type":"number","calc":true,"value":""},{"id":"PRTD12A","type":"number","calc":true,"value":""},{"id":"PRTD13A","type":"number","calc":true,"value":""},{"id":"PRTD14A","type":"number","calc":true,"value":""},{"id":"PRTD15A","type":"mask","calc":false,"value":""},{"id":"COLA_CR","type":"number","calc":true,"value":""},{"id":"PTI_T","type":"number","calc":false,"value":""},{"id":"PTI_S","type":"number","calc":false,"value":""},{"id":"NTINT_T","type":"number","calc":false,"value":""},{"id":"NTINT_S","type":"number","calc":false,"value":""},{"id":"ALIM_T","type":"number","calc":false,"value":""},{"id":"ALIM_S","type":"number","calc":false,"value":""},{"id":"INS_T","type":"number","calc":false,"value":""},{"id":"INS_S","type":"number","calc":false,"value":""},{"id":"GIFT_T","type":"number","calc":false,"value":""},{"id":"GIFT_S","type":"number","calc":false,"value":""},{"id":"NRINC_T","type":"number","calc":true,"value":""},{"id":"NRINC_S","type":"number","calc":true,"value":""},{"id":"MIL_T","type":"number","calc":false,"value":""},{"id":"MIL_S","type":"number","calc":false,"value":""},{"id":"HOUS_T","type":"number","calc":false,"value":""},{"id":"HOUS_S","type":"number","calc":false,"value":""},{"id":"ED_T","type":"number","calc":false,"value":""},{"id":"ED_S","type":"number","calc":false,"value":""},{"id":"CASH_T","type":"number","calc":false,"value":""},{"id":"CASH_S","type":"number","calc":false,"value":""},{"id":"TOTCOLBC","type":"number","calc":true,"value":""},{"id":"TAXLIAB","type":"number","calc":true,"value":""},{"id":"RESCR","type":"number","calc":true,"value":""},{"id":"NETTX","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"PCTFGV","type":"mask","calc":false,"value":""},{"id":"FORGIVE","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/SSP.json b/test/data/pa/form/SSP.json new file mode 100755 index 00000000..4affb21c --- /dev/null +++ b/test/data/pa/form/SSP.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule SP - Special Tax Forgiveness - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.298,"y":3.366,"w":4.5,"l":4.959},{"oc":"#221f1f","x":68.097,"y":5.672,"w":1.5,"l":27.87},{"oc":"#221f1f","x":9.307,"y":5.706,"w":0.75,"l":86.651},{"oc":"#221f1f","x":9.307,"y":7.131,"w":0.75,"l":86.651},{"oc":"#221f1f","x":9.307,"y":8.569,"w":0.75,"l":86.651},{"oc":"#221f1f","x":9.307,"y":24.247,"w":0.75,"l":86.651},{"oc":"#221f1f","x":13.948,"y":24.066,"w":0.75,"l":80.953},{"oc":"#221f1f","x":89.805,"y":27.331,"w":1.5,"l":5.414},{"oc":"#221f1f","x":89.805,"y":28.619,"w":1.5,"l":5.414},{"oc":"#221f1f","x":9.307,"y":29.1,"w":0.75,"l":86.651}],"VLines":[{"oc":"#221f1f","x":14.016,"y":2.284,"w":4.5,"l":1.166},{"oc":"#221f1f","x":70.555,"y":5.685,"w":0.75,"l":2.88},{"oc":"#221f1f","x":95.219,"y":27.331,"w":1.5,"l":1.287},{"oc":"#221f1f","x":89.805,"y":27.331,"w":1.5,"l":1.287}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.261,"y":25.32,"w":23.677,"h":0.03,"clr":-1},{"oc":"#221f1f","x":33.021,"y":25.32,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.393,"y":25.32,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.201,"y":25.32,"w":12.87,"h":0.03,"clr":-1},{"oc":"#221f1f","x":32.938,"y":25.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":37.311,"y":25.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":48.118,"y":25.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":61.071,"y":25.35,"w":0.083,"h":0.78,"clr":-1},{"oc":"#221f1f","x":9.261,"y":26.005,"w":23.677,"h":0.03,"clr":-1},{"oc":"#221f1f","x":33.021,"y":26.005,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.393,"y":26.005,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.201,"y":26.005,"w":12.87,"h":0.03,"clr":-1},{"oc":"#221f1f","x":32.938,"y":26.16,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":37.311,"y":26.16,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":48.118,"y":26.16,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":61.071,"y":26.16,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.261,"y":26.813,"w":23.677,"h":0.03,"clr":-1},{"oc":"#221f1f","x":33.021,"y":26.813,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.393,"y":26.813,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.201,"y":26.813,"w":12.87,"h":0.03,"clr":-1},{"oc":"#221f1f","x":32.938,"y":26.843,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":37.311,"y":26.843,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":48.118,"y":26.843,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":61.071,"y":26.843,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.261,"y":27.487,"w":23.677,"h":0.03,"clr":-1},{"oc":"#221f1f","x":33.021,"y":27.487,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.393,"y":27.487,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.201,"y":27.487,"w":12.87,"h":0.03,"clr":-1},{"oc":"#221f1f","x":32.938,"y":27.517,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":37.311,"y":27.517,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":48.118,"y":27.517,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":61.071,"y":27.517,"w":0.083,"h":0.667,"clr":-1},{"oc":"#221f1f","x":9.261,"y":28.185,"w":23.677,"h":0.03,"clr":-1},{"oc":"#221f1f","x":33.021,"y":28.185,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.393,"y":28.185,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.201,"y":28.185,"w":12.87,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.137,"y":28.883,"w":23.801,"h":0.03,"clr":-1},{"oc":"#221f1f","x":32.938,"y":28.215,"w":0.083,"h":0.668,"clr":-1},{"oc":"#221f1f","x":33.021,"y":28.883,"w":4.29,"h":0.03,"clr":-1},{"oc":"#221f1f","x":37.311,"y":28.215,"w":0.083,"h":0.668,"clr":-1},{"oc":"#221f1f","x":37.393,"y":28.883,"w":10.725,"h":0.03,"clr":-1},{"oc":"#221f1f","x":48.118,"y":28.215,"w":0.083,"h":0.668,"clr":-1},{"oc":"#221f1f","x":48.201,"y":28.883,"w":12.87,"h":0.03,"clr":-1},{"oc":"#221f1f","x":61.071,"y":28.215,"w":0.083,"h":0.668,"clr":-1},{"oc":"#221f1f","x":23.574,"y":15.032,"w":14.582,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":14.991,"w":51.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":23.616,"y":20.765,"w":14.871,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":20.765,"w":51.418,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.199,"y":29.73,"w":41.724,"h":0.03,"clr":-1},{"oc":"#221f1f","x":51.006,"y":29.73,"w":44.859,"h":0.03,"clr":-1},{"oc":"#221f1f","x":50.923,"y":29.76,"w":0.083,"h":1.688,"clr":-1},{"oc":"#221f1f","x":9.322,"y":31.448,"w":15.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":31.448,"w":25.596,"h":0.03,"clr":-1},{"oc":"#221f1f","x":51.006,"y":31.448,"w":15.819,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":31.448,"w":28.916,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":31.478,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":25.245,"y":31.478,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":66.825,"y":31.478,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.824,"y":31.478,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":66.907,"y":32.122,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":32.122,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":32.152,"w":0.082,"h":1.2,"clr":-1},{"oc":"#221f1f","x":25.245,"y":32.152,"w":0.082,"h":1.2,"clr":-1},{"oc":"#221f1f","x":66.825,"y":32.152,"w":0.083,"h":1.2,"clr":-1},{"oc":"#221f1f","x":80.829,"y":32.152,"w":0.083,"h":1.2,"clr":-1},{"oc":"#221f1f","x":95.824,"y":32.152,"w":0.083,"h":1.2,"clr":-1},{"oc":"#221f1f","x":9.24,"y":33.352,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":33.352,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":33.352,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":33.352,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":33.352,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":33.352,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":33.383,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":11.736,"y":33.383,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":25.245,"y":33.383,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":64.185,"y":33.383,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":66.825,"y":33.383,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":80.829,"y":33.383,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":95.824,"y":33.383,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":9.24,"y":34.02,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":34.02,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":34.02,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":34.02,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":34.02,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":34.02,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":34.05,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":11.736,"y":34.05,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":25.245,"y":34.05,"w":0.082,"h":0.652,"clr":-1},{"oc":"#221f1f","x":64.185,"y":34.05,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":66.825,"y":34.05,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":80.829,"y":34.05,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":95.824,"y":34.05,"w":0.083,"h":0.652,"clr":-1},{"oc":"#221f1f","x":9.24,"y":34.702,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":34.702,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":34.702,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":34.702,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":34.702,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":34.702,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":34.733,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":11.736,"y":34.733,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":25.245,"y":34.733,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":64.185,"y":34.733,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":66.825,"y":34.733,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":80.829,"y":34.733,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.824,"y":34.733,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.24,"y":35.377,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":35.377,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":35.377,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":35.377,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":35.377,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":35.377,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":35.407,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":11.736,"y":35.407,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":25.245,"y":35.407,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":64.185,"y":35.407,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":66.825,"y":35.407,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":80.829,"y":35.407,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":95.824,"y":35.407,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":9.24,"y":36.045,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":36.045,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":36.045,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":36.045,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":36.045,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":36.045,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":36.075,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":11.736,"y":36.075,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":25.245,"y":36.075,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":64.185,"y":36.075,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":66.825,"y":36.075,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":80.829,"y":36.075,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.824,"y":36.075,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.24,"y":36.72,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":36.72,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":36.72,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":36.72,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":36.72,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":36.72,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":36.75,"w":0.082,"h":0.638,"clr":-1},{"oc":"#221f1f","x":11.736,"y":36.75,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":25.245,"y":36.75,"w":0.082,"h":0.638,"clr":-1},{"oc":"#221f1f","x":64.185,"y":36.75,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":66.825,"y":36.75,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":80.829,"y":36.75,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":95.824,"y":36.75,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":9.24,"y":37.387,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":37.387,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":37.387,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":37.387,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":37.387,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":37.387,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":37.417,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":11.736,"y":37.417,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":25.245,"y":37.417,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":64.185,"y":37.417,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":66.825,"y":37.417,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":80.829,"y":37.417,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.824,"y":37.417,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.24,"y":38.063,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":38.063,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":38.063,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":38.063,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":38.063,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":38.063,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":38.093,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":11.736,"y":38.093,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":25.245,"y":38.093,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":64.185,"y":38.093,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":66.825,"y":38.093,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":80.829,"y":38.093,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":95.824,"y":38.093,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":9.24,"y":38.73,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":38.73,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":38.73,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":38.73,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":38.73,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":38.73,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":38.76,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":11.736,"y":38.76,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":25.245,"y":38.76,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":64.185,"y":38.76,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":66.825,"y":38.76,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":80.829,"y":38.76,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.824,"y":38.76,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.24,"y":39.405,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":39.405,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":39.405,"w":38.858,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":39.405,"w":2.558,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.907,"y":39.405,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":39.405,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":39.435,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":11.736,"y":39.435,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":25.245,"y":39.435,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":64.185,"y":39.435,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":66.825,"y":39.435,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":80.829,"y":39.435,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.824,"y":39.435,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.446,"y":40.08,"w":2.248,"h":0.06,"clr":-1},{"oc":"#221f1f","x":12.024,"y":40.08,"w":13.179,"h":0.06,"clr":-1},{"oc":"#221f1f","x":25.369,"y":40.08,"w":38.816,"h":0.03,"clr":-1},{"oc":"#221f1f","x":64.267,"y":40.08,"w":2.516,"h":0.03,"clr":-1},{"oc":"#221f1f","x":67.114,"y":40.08,"w":13.674,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.118,"y":40.08,"w":14.664,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.116,"y":40.14,"w":0.165,"h":0.615,"clr":-1},{"oc":"#221f1f","x":11.694,"y":40.14,"w":0.165,"h":0.615,"clr":-1},{"oc":"#221f1f","x":25.204,"y":40.14,"w":0.165,"h":0.615,"clr":-1},{"oc":"#221f1f","x":66.784,"y":40.14,"w":0.165,"h":0.615,"clr":-1},{"oc":"#221f1f","x":80.788,"y":40.14,"w":0.165,"h":0.615,"clr":-1},{"oc":"#221f1f","x":95.782,"y":40.14,"w":0.165,"h":0.615,"clr":-1},{"oc":"#221f1f","x":9.446,"y":40.755,"w":2.248,"h":0.06,"clr":-1},{"oc":"#221f1f","x":11.859,"y":40.755,"w":13.344,"h":0.06,"clr":-1},{"oc":"#221f1f","x":25.369,"y":40.755,"w":41.415,"h":0.03,"clr":-1},{"oc":"#221f1f","x":66.949,"y":40.755,"w":10.127,"h":0.06,"clr":-1},{"oc":"#221f1f","x":77.241,"y":40.755,"w":3.548,"h":0.06,"clr":-1},{"oc":"#221f1f","x":80.953,"y":40.755,"w":14.829,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":40.815,"w":0.082,"h":0.608,"clr":-1},{"oc":"#221f1f","x":77.076,"y":40.815,"w":0.165,"h":0.608,"clr":-1},{"oc":"#221f1f","x":80.788,"y":40.815,"w":0.165,"h":0.608,"clr":-1},{"oc":"#221f1f","x":95.782,"y":40.815,"w":0.165,"h":0.608,"clr":-1},{"oc":"#221f1f","x":9.24,"y":41.423,"w":67.836,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.406,"y":41.422,"w":3.383,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.118,"y":41.422,"w":14.664,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":41.482,"w":0.082,"h":0.615,"clr":-1},{"oc":"#221f1f","x":77.117,"y":41.482,"w":0.083,"h":0.615,"clr":-1},{"oc":"#221f1f","x":80.829,"y":41.482,"w":0.083,"h":0.615,"clr":-1},{"oc":"#221f1f","x":95.824,"y":41.482,"w":0.083,"h":0.615,"clr":-1},{"oc":"#221f1f","x":9.24,"y":42.098,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":42.098,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":42.098,"w":51.789,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":42.098,"w":3.63,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":42.098,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":42.127,"w":0.082,"h":0.638,"clr":-1},{"oc":"#221f1f","x":11.736,"y":42.127,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":25.245,"y":42.127,"w":0.082,"h":0.638,"clr":-1},{"oc":"#221f1f","x":77.117,"y":42.127,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":80.829,"y":42.127,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":95.824,"y":42.127,"w":0.083,"h":0.638,"clr":-1},{"oc":"#221f1f","x":9.24,"y":42.765,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":42.765,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":42.765,"w":51.789,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":42.765,"w":3.63,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":42.765,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":42.795,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":11.736,"y":42.795,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":25.245,"y":42.795,"w":0.082,"h":0.645,"clr":-1},{"oc":"#221f1f","x":77.117,"y":42.795,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":80.829,"y":42.795,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":95.824,"y":42.795,"w":0.083,"h":0.645,"clr":-1},{"oc":"#221f1f","x":9.24,"y":43.44,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":43.44,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":43.44,"w":51.789,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":43.44,"w":3.63,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":43.44,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":43.47,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":11.736,"y":43.47,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":25.245,"y":43.47,"w":0.082,"h":0.637,"clr":-1},{"oc":"#221f1f","x":77.117,"y":43.47,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":80.829,"y":43.47,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":95.824,"y":43.47,"w":0.083,"h":0.637,"clr":-1},{"oc":"#221f1f","x":9.24,"y":44.107,"w":2.496,"h":0.03,"clr":-1},{"oc":"#221f1f","x":11.818,"y":44.107,"w":13.427,"h":0.03,"clr":-1},{"oc":"#221f1f","x":25.328,"y":44.107,"w":51.789,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.199,"y":44.107,"w":3.63,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.912,"y":44.107,"w":14.912,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":44.137,"w":0.082,"h":1.088,"clr":-1},{"oc":"#221f1f","x":11.736,"y":44.137,"w":0.083,"h":1.088,"clr":-1},{"oc":"#221f1f","x":25.245,"y":44.137,"w":0.082,"h":1.088,"clr":-1},{"oc":"#221f1f","x":77.117,"y":44.137,"w":0.083,"h":1.088,"clr":-1},{"oc":"#221f1f","x":80.829,"y":44.137,"w":0.083,"h":1.088,"clr":-1},{"oc":"#221f1f","x":95.824,"y":44.137,"w":0.083,"h":1.088,"clr":-1},{"oc":"#221f1f","x":9.446,"y":45.225,"w":2.248,"h":0.06,"clr":-1},{"oc":"#221f1f","x":12.024,"y":45.225,"w":13.179,"h":0.06,"clr":-1},{"oc":"#221f1f","x":25.369,"y":45.225,"w":51.707,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.406,"y":45.225,"w":3.383,"h":0.06,"clr":-1},{"oc":"#221f1f","x":81.118,"y":45.225,"w":14.664,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.116,"y":45.285,"w":0.165,"h":1.065,"clr":-1},{"oc":"#221f1f","x":9.281,"y":46.35,"w":2.413,"h":0.06,"clr":-1},{"oc":"#221f1f","x":11.694,"y":45.285,"w":0.165,"h":1.065,"clr":-1},{"oc":"#221f1f","x":11.859,"y":46.35,"w":13.344,"h":0.06,"clr":-1},{"oc":"#221f1f","x":25.204,"y":45.285,"w":0.165,"h":1.065,"clr":-1},{"oc":"#221f1f","x":25.369,"y":46.35,"w":51.707,"h":0.03,"clr":-1},{"oc":"#221f1f","x":77.076,"y":45.285,"w":0.165,"h":1.065,"clr":-1},{"oc":"#221f1f","x":77.241,"y":46.35,"w":3.548,"h":0.06,"clr":-1},{"oc":"#221f1f","x":80.788,"y":45.285,"w":0.165,"h":1.065,"clr":-1},{"oc":"#221f1f","x":80.953,"y":46.35,"w":14.829,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.782,"y":45.285,"w":0.165,"h":1.065,"clr":-1}],"Texts":[{"oc":"#221f1f","x":9.217,"y":9.51,"w":52.33000000000003,"clr":-1,"A":"left","R":[{"T":"2.%20%20If%20you%20answered%20%E2%80%9CYes%E2%80%9D%20above%2C%20does%20the%20taxpayer%20on%20whose%20return%20you%20are%20a%20dependent%20qualify%20for%20tax%20forgiveness%3F%20%20%20%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.166,"y":25.095,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":33.905,"y":25.095,"w":1.7670000000000001,"clr":-1,"A":"left","R":[{"T":"Age","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":39.246,"y":25.095,"w":5.453999999999999,"clr":-1,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":35.246,"y":4.745,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23.79,0,0]}]},{"oc":"#221f1f","x":49.394,"y":2.12,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301110027","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":75.196,"y":8.857,"w":0.667,"clr":-1,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":75.877,"y":8.857,"w":1.048,"clr":-1,"A":"left","R":[{"T":"es","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":81.9,"y":8.857,"w":1.282,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":81.981,"y":9.51,"w":1.282,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.213,"y":12.083,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.31,"y":12.645,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.309,"y":13.253,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.045,"y":14.112,"w":0.666,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":20.829,"y":14.113,"w":1.6640000000000001,"clr":-1,"A":"left","R":[{"T":"SN%3A","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":38.712,"y":14.112,"w":2.9250000000000003,"clr":-1,"A":"left","R":[{"T":"Name%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.217,"y":14.767,"w":1.112,"clr":-1,"A":"left","R":[{"T":"2.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.219,"y":16.335,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":13.839,"y":16.335,"w":1.379,"clr":-1,"A":"left","R":[{"T":"Ma","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":15.49,"y":16.335,"w":1.975,"clr":-1,"A":"left","R":[{"T":"rried","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":17.903,"y":16.335,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%20-%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.313,"y":16.838,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.314,"y":17.52,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.309,"y":18.54,"w":1.056,"clr":-1,"A":"left","R":[{"T":"c.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.045,"y":19.97,"w":2.33,"clr":-1,"A":"left","R":[{"T":"SSN%3A","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":39.227,"y":19.97,"w":2.9250000000000003,"clr":-1,"A":"left","R":[{"T":"Name%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.311,"y":20.438,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":75.922,"y":20.438,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.214,"y":21.675,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.587,"y":25.11,"w":0.635,"clr":-1,"A":"left","R":[{"T":"%3A%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":63.028,"y":27.248,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":82.396,"y":27.75,"w":1.104,"clr":-1,"A":"left","R":[{"T":".%20.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":83.738,"y":27.75,"w":2.484,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":87.222,"y":27.75,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":86.107,"y":32.422,"w":3.367,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":33.097,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.296,"y":33.097,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":33.787,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.275,"y":33.787,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":34.478,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.758,"y":34.478,"w":3.5699999999999994,"clr":-1,"A":"left","R":[{"T":"Alimony","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.297,"y":34.478,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":35.16,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.296,"y":35.16,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":35.85,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.296,"y":35.85,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":36.502,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.296,"y":36.502,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":37.163,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.297,"y":37.163,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":37.815,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.296,"y":37.815,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.124,"y":38.512,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.295,"y":38.512,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.464,"y":39.195,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":64.615,"y":39.195,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.547,"y":39.87,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.125,"y":39.87,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":40.131,"y":39.877,"w":1.161,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":29.444,"y":40.53,"w":1.161,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.126,"y":40.523,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.704,"y":40.523,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.464,"y":41.88,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.043,"y":41.88,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.464,"y":42.57,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.042,"y":42.57,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.464,"y":43.192,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.042,"y":43.192,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.464,"y":43.845,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.041,"y":43.845,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.464,"y":44.992,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":78.021,"y":44.992,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.217,"y":5.32,"w":41.96000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20taxpayer%20claiming%20Tax%20Forgiveness%20(if%20filing%20a%20PA-40%20jointly%2C%20enter%20the%20name%20shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.073,"y":5.317,"w":16.026000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.217,"y":6.756,"w":18.009000000000004,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Name%20(even%20if%20filing%20separately)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.069,"y":6.725,"w":14.714000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.217,"y":8.325,"w":9.572,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Questions","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.217,"y":8.857,"w":44.557000000000016,"clr":-1,"A":"left","R":[{"T":"1.%20%20Are%20you%20a%20dependent%20on%20another%20taxpayer%E2%80%99s%20(parent%2C%20guardian%2C%20step-parent%2C%20etc.)%20federal%20tax%20return%3F","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.958,"y":25.109,"w":2.04,"clr":-1,"A":"left","R":[{"T":"Only","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":22.904,"y":14.767,"w":4.666,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":37.892,"y":12.082,"w":8.142,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":16.003,"y":10.155,"w":66.4639999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CNo%E2%80%9D%20to%20Question%201%2C%20please%20proceed%20with%20completing%20Schedule%20SP.%20If%20you%20answered%20%22Yes%22%20to%20Question%201%2C%20you%20must%20also%20have%20answered","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.213,"y":10.687,"w":46.52199999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CYes%E2%80%9D%20to%20Question%202%20to%20be%20eligible%20for%20tax%20forgiveness%20and%20complete%20Line%201b.%20or%20Line%203c.%20from%20Part%20A%20below.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.213,"y":11.437,"w":19.392999999999994,"clr":-1,"A":"left","R":[{"T":"Part%20A.%20Filing%20Status%20for%20Tax%20Forgiveness.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":19.057,"y":16.335,"w":61.083000000000006,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20the%20Married%20oval%20on%20Line%2019a%20of%20your%20PA-40.%20Enter%20your%20spouse%E2%80%99s%20name%20and%20SSN%20above.%20Fill%20in%20the%20oval%20that%20describes%20your%20situation%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":13.855,"y":15.285,"w":64.60900000000004,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20this%20oval%20only%20if%20(a)%20you%20are%20separated%20pursuant%20to%20a%20written%20agreement%20or%20(b)%20you%20were%20married%2C%20but%20separated%20and%20lived%20apart%20for%20the%20last%20six%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":13.86,"y":15.786999999999999,"w":31.504,"clr":-1,"A":"left","R":[{"T":"months%20of%20the%20year.%20Fill%20in%20the%20Unmarried%20oval%20on%20Line19a%20of%20your%20PA-40.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":13.836,"y":14.767,"w":7.2780000000000005,"clr":-1,"A":"left","R":[{"T":"Separated%20%E2%80%93%20use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":28.905,"y":14.767,"w":7.536,"clr":-1,"A":"left","R":[{"T":"to%20calculate%20your","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":38.017,"y":14.767,"w":8.465,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":13.832,"y":12.082,"w":6.568000000000001,"clr":-1,"A":"left","R":[{"T":"Unmarried%20-%20use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":22.846,"y":12.082,"w":4.386,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":28.624,"y":12.082,"w":7.281000000000001,"clr":-1,"A":"left","R":[{"T":"to%20calculate%20your","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":47.835,"y":12.082,"w":38.386999999999986,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20the%20Unmarried%20oval%20on%20Line%2019a%20of%20your%20PA-40.%20Fill%20in%20the%20oval%20that%20describes%20your%20situation%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":16.929,"y":12.645,"w":19.781,"clr":-1,"A":"left","R":[{"T":"Single.%20Unmarried%2Fdivorced%20on%20Dec.%2031%2C%202013","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":16.928,"y":13.252,"w":43.807,"clr":-1,"A":"left","R":[{"T":"Single%20and%20claimed%20as%20a%20dependent%20on%20an%20other%20person%E2%80%99s%20PA%20Schedule%20SP.%20Enter%20the%20other%20person%E2%80%99s%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":16.931,"y":16.837,"w":30.07399999999998,"clr":-1,"A":"left","R":[{"T":"Married%20and%20claiming%20Tax%20Forgiveness%20together%20with%20my%20spouse.%20Use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":53.428,"y":16.837,"w":4.937,"clr":-1,"A":"left","R":[{"T":"Column%20A%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":59.303,"y":16.837,"w":5.238,"clr":-1,"A":"left","R":[{"T":"to%20calculate","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":16.933,"y":17.457,"w":18.514999999999993,"clr":-1,"A":"left","R":[{"T":"Married%20and%20filing%20separate%20PA%20tax%20returns.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":51.145,"y":17.488,"w":33.448,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20this%20oval%20certifying%20that%20you%20and%20your%20spouse%20are%20submitting%20the%20same%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":16.952,"y":18.015,"w":18.631,"clr":-1,"A":"left","R":[{"T":"information%20on%20each%20PA%20Schedule%20SP.%20Use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":39.622,"y":18.015,"w":8.229000000000001,"clr":-1,"A":"left","R":[{"T":"Columns%20B%20and%20C","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":49.727,"y":18.015,"w":7.536,"clr":-1,"A":"left","R":[{"T":"to%20calculate%20your","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":58.953,"y":18.015,"w":8.465,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":16.928,"y":18.54,"w":49.81200000000003,"clr":-1,"A":"left","R":[{"T":"Married%20with%20a%20spouse%20who%20is%20a%20dependent%20on%20another%20person%E2%80%99s%20PA%20Schedule%20SP%20or%20federal%20income%20tax%20return.%20Use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":76.903,"y":18.54,"w":8.229000000000001,"clr":-1,"A":"left","R":[{"T":"Columns%20B%20and%20C","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":87.033,"y":18.508,"w":5.058000000000001,"clr":-1,"A":"left","R":[{"T":"to%20calculate","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":17.071,"y":19.049,"w":8.465,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":27.59,"y":19.049,"w":10.850000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20other%20person%E2%80%99s%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":16.929,"y":20.437,"w":41.75100000000002,"clr":-1,"A":"left","R":[{"T":"Separated%20and%20lived%20apart%20from%20my%20spouse%20but%20for%20less%20than%20the%20last%20six%20months%20of%20the%20year.%20Use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":67.182,"y":20.437,"w":5.486,"clr":-1,"A":"left","R":[{"T":"Columns%20B%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":73.642,"y":20.437,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":77.057,"y":20.437,"w":5.058000000000001,"clr":-1,"A":"left","R":[{"T":"to%20calculate","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":83.795,"y":20.437,"w":8.465,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":17.031,"y":20.947,"w":19.02,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20spouse%E2%80%99s%20name%20and%20SSN%20above.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":13.832,"y":21.674,"w":6.947000000000001,"clr":-1,"A":"left","R":[{"T":"Deceased%20-%20use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":22.28,"y":21.674,"w":4.666,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":28.081,"y":21.674,"w":7.247000000000002,"clr":-1,"A":"left","R":[{"T":"to%20calculate%20your","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":37.116,"y":21.674,"w":8.465,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":13.854,"y":22.177,"w":67.05400000000006,"clr":-1,"A":"left","R":[{"T":"Fill%20in%20the%20Deceased%20oval%20on%20Line%2019a%20of%20the%20PA-40.%20You%20must%20annualize%20the%20decedent%E2%80%99s%20income%20(see%20the%20instructions)%20and%20briefly%20describe%20your%20method%20%3A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.53,"y":24.089,"w":56.50000000000006,"clr":-1,"A":"left","R":[{"T":"Provide%20all%20the%20information%20for%20each%20dependent%20child.%20If%20more%20than%20four%20dependent%20children%2C%20submit%20additional%20sheets%20in%20this%20format.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.216,"y":24.089,"w":13.172,"clr":-1,"A":"left","R":[{"T":"Part%20B.%20Dependent%20Children.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":13.485,"y":25.094,"w":8.495000000000001,"clr":-1,"A":"left","R":[{"T":"Dependent%E2%80%99s%20Name","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":49.166,"y":25.094,"w":8.371000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20No.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":64.675,"y":25.611,"w":23.032999999999998,"clr":-1,"A":"left","R":[{"T":"claimed%20as%20your%20dependent(s)%20on%20your%202013%20Federal%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":64.675,"y":26.064,"w":8.32,"clr":-1,"A":"left","R":[{"T":"Income%20Tax%20return.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":64.595,"y":27.247,"w":13.612999999999996,"clr":-1,"A":"left","R":[{"T":"Number%20of%20dependent%20children.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":64.615,"y":27.799,"w":14.71,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20Line%2019b%20of%20your%20PA-40.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.34,"y":28.867,"w":11.895999999999997,"clr":-1,"A":"left","R":[{"T":"Part%20C.%20Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":51.539,"y":29.542,"w":33.46400000000001,"clr":-1,"A":"left","R":[{"T":"Married%20taxpayers%20filing%20separately%2C%20and%20taxpayers%20separated%20but%20not%20for%20the%20last%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":51.538,"y":30.044,"w":11.229999999999999,"clr":-1,"A":"left","R":[{"T":"six%20months%20of%20the%20year%20use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":65.256,"y":30.044,"w":8.212,"clr":-1,"A":"left","R":[{"T":"Columns%20B%20and%20C%2C","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":74.77,"y":30.044,"w":2.224,"clr":-1,"A":"left","R":[{"T":"%20%20and","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":77.595,"y":30.044,"w":11.897,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income%20Table2.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.589,"y":29.476,"w":13.977,"clr":-1,"A":"left","R":[{"T":"Married%20taxpayersfiling%20jointly%20use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":26.652,"y":29.526,"w":4.7749999999999995,"clr":-1,"A":"left","R":[{"T":"Column%20A%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":32.4,"y":29.526,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":34.716,"y":29.526,"w":8.465,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":9.588,"y":30.044,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"Table%202.%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":14.539,"y":30.044,"w":22.756999999999998,"clr":-1,"A":"left","R":[{"T":"Single%20filers%2C%20qualifying%20separated%20filers%2C%20and%20if%20filing%20for%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.588,"y":30.539,"w":6.838000000000001,"clr":-1,"A":"left","R":[{"T":"a%20decedent%20use","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":18.088,"y":30.539,"w":4.521999999999999,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":23.881,"y":30.539,"w":1.602,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":26.17,"y":30.539,"w":11.455000000000004,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income%20Table1.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":29.614,"y":31.558999999999997,"w":1.461,"clr":-1,"A":"left","R":[{"T":"The","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":31.698,"y":31.558999999999997,"w":9.895999999999999,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income%20Tables","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":43.818,"y":31.558999999999997,"w":13.763999999999998,"clr":-1,"A":"left","R":[{"T":"are%20on%20page%2036%20of%20the%20PA-40%20booklet.","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":14.393,"y":31.348999999999997,"w":4.358,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":10.392,"y":31.904000000000003,"w":10.309000000000003,"clr":-1,"A":"left","R":[{"T":"Unmarried%20or%20Married","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":13.362,"y":32.414,"w":6.069999999999999,"clr":-1,"A":"left","R":[{"T":"Filing%20Jointly","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":73.402,"y":31.214,"w":11.793,"clr":-1,"A":"left","R":[{"T":"Married%20Filing%20Separately","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":70.679,"y":31.918999999999997,"w":4.632,"clr":-1,"A":"left","R":[{"T":"Column%20B%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.364,"y":31.918999999999997,"w":4.687,"clr":-1,"A":"left","R":[{"T":"Column%20C%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":70.885,"y":32.421,"w":4.168,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":33.096,"w":20.009000000000007,"clr":-1,"A":"left","R":[{"T":"PA%20taxable%20income%20from%20Line%209%20of%20your%20PA-40","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":33.786,"w":29.476999999999997,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20interest%2C%20dividends%20and%20gains%20and%2For%20annualized%20income","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":35.159,"w":16.257,"clr":-1,"A":"left","R":[{"T":"Insurance%20proceeds%20and%20inheritances","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":35.849,"w":10.678,"clr":-1,"A":"left","R":[{"T":"Gifts%2C%20awards%20and%20prizes","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":36.501,"w":26.061,"clr":-1,"A":"left","R":[{"T":"Nonresident%20income%20%E2%80%93%20part-year%20residents%20and%20nonresidents","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":37.161,"w":24.737999999999996,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20military%20income%20%E2%80%93%20Do%20not%20include%20combat%20pay","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":37.772,"w":18.841,"clr":-1,"A":"left","R":[{"T":"Gain%20excluded%20from%20the%20sale%20of%20a%20residence","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":38.511,"w":15.319999999999999,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20educational%20assistance","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":39.193,"w":26.89,"clr":-1,"A":"left","R":[{"T":"Cash%20received%20for%20personal%20purposes%20from%20outside%20your%20home","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":27.037,"y":39.877,"w":10.892000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20Eligibility%20Income","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":41.827,"y":39.877,"w":4.666,"clr":-1,"A":"left","R":[{"T":"Column%20A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":25.758,"y":41.88,"w":34.291,"clr":-1,"A":"left","R":[{"T":"PA%20Tax%20Liability%20from%20your%20PA-40%2C%20Line12%20(if%20amended%20return%2C%20see%20instructions)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.758,"y":42.57,"w":20.495000000000005,"clr":-1,"A":"left","R":[{"T":"Less%20Resident%20Credit%20from%20your%20PA-40%2C%20Line%2022","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.758,"y":43.193,"w":22.469000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20PA%20Tax%20Liability.%20Subtract%20Line%2013%20from%20Line%2012%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.758,"y":43.853,"w":17.689000000000004,"clr":-1,"A":"left","R":[{"T":"Percentage%20of%20Tax%20Forgiveness%20from%20the","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":47.149,"y":43.853,"w":11.343,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income%20Table%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":60.569,"y":43.853,"w":4.8469999999999995,"clr":-1,"A":"left","R":[{"T":"using%20your%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":44.355,"w":14.606000000000003,"clr":-1,"A":"left","R":[{"T":"dependents%20from%20Part%20B%20and%20your","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":43.424,"y":44.355,"w":10.892000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20Eligibility%20Income","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":56.711,"y":44.355,"w":5.771,"clr":-1,"A":"left","R":[{"T":"from%20Line%2011%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":45.022,"w":11.615000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20Forgiveness%20Credit.%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":39.481,"y":45.022,"w":18.726,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%2014%20by%20the%20decimalon%20Line%2015.%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.757,"y":45.517,"w":13.058,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20your%20PA-40%2C%20Line%2021.","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.257,"y":41.22,"w":22.484999999999992,"clr":-1,"A":"left","R":[{"T":"Part%20D.%20Calculating%20your%20Tax%20Forgiveness%20Credit","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":16.29,"y":40.53,"w":10.892000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20Eligibility%20Income","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":31.109,"y":40.53,"w":8.229000000000001,"clr":-1,"A":"left","R":[{"T":"Columns%20B%20and%20C","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":41.373,"y":40.572,"w":27.073000000000008,"clr":-1,"A":"left","R":[{"T":"%E2%80%93%20add%20Lines%201%20through%2010%20for%20each%20spouse%20and%20enter%20the%20total%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.581,"y":3.253,"w":8.668999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20SP","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":20.581,"y":3.808,"w":11.579999999999998,"clr":-1,"A":"left","R":[{"T":"Special%20Tax%20Forgiveness","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.581,"y":4.715,"w":7.5200000000000005,"clr":-1,"A":"left","R":[{"T":"PA-40%20Schedule%20SP","S":-1,"TS":[1,9.96,1,0]}]},{"oc":"#221f1f","x":85.426,"y":4.797,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":64.678,"y":25.11,"w":5.925999999999999,"clr":-1,"A":"left","R":[{"T":"IMPORTANT","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":30.233,"y":4.715,"w":2.8320000000000007,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":75.278,"y":9.51,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.212,"y":10.155,"w":5.648,"clr":-1,"A":"left","R":[{"T":"IMPORANT%3A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":65.867,"y":16.838,"w":8.465,"clr":-1,"A":"left","R":[{"T":"Eligibility%20Income.","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":43.746,"y":17.489,"w":6.042,"clr":-1,"A":"left","R":[{"T":"Certification.","S":-1,"TS":[0,9.96,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":922,"AM":1024,"x":9.249,"y":6.26,"w":61.133,"h":0.833,"TU":"Name of Taxpayer Claiming Tax Forgiveness"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":923,"AM":1024,"x":70.979,"y":6.198,"w":23.808,"h":0.855,"TU":"Taxpayer Social Security Number (shown first)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAM","EN":0},"TI":924,"AM":1024,"x":9.157,"y":7.652,"w":61.108,"h":0.833,"TU":"Spouse’s Name (even if filing separately)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSS","EN":0},"TI":925,"AM":1024,"x":71.128,"y":7.641,"w":23.808,"h":0.833,"TU":"Spouse's Social Security Number "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":936,"AM":0,"x":23.336,"y":14.244,"w":15.107,"h":0.833,"TU":"Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":937,"AM":0,"x":43.59,"y":14.155,"w":51.171,"h":0.833,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN4","EN":0},"TI":943,"AM":0,"x":23.252,"y":19.948,"w":15.107,"h":0.833,"TU":"Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME4","EN":0},"TI":944,"AM":0,"x":43.59,"y":19.965,"w":51.171,"h":0.833,"TU":"Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ANNMETH","EN":0},"TI":945,"AM":0,"x":13.828,"y":23.137,"w":80.974,"h":0.833,"TU":"Annualize Decedent's Income and Describe Your Method"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"DEP"}},"id":{"Id":"Add_DEP_STM","EN":0},"TI":946,"AM":0,"x":93.718,"y":24.2,"w":4.973,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_1_","EN":0},"TI":947,"AM":0,"x":9.228,"y":26.142,"w":23.37,"h":0.833,"TU":"Dependent's Name Row 1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_1_","EN":0},"TI":948,"AM":0,"x":33.308,"y":26.205,"w":3.887,"h":0.833,"TU":"Dependent's Age Row 1","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_1_","EN":0},"TI":949,"AM":0,"x":37.734,"y":26.142,"w":10.098,"h":0.833,"TU":"Relationship to Dependent Row 1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_1_","EN":0},"TI":950,"AM":0,"x":48.557,"y":26.147,"w":12.262,"h":0.833,"TU":"Dependent Child Social Security Number_Row 1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_2_","EN":0},"TI":951,"AM":0,"x":9.228,"y":26.88,"w":23.146,"h":0.833,"TU":"Dependent's Name Row 2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_2_","EN":0},"TI":952,"AM":0,"x":33.458,"y":26.88,"w":3.738,"h":0.833,"TU":"Dependent's Age Row 2","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_2_","EN":0},"TI":953,"AM":0,"x":37.756,"y":26.88,"w":9.948,"h":0.833,"TU":"Relationship to Dependent Row 2"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_2_","EN":0},"TI":954,"AM":0,"x":48.557,"y":26.904,"w":12.262,"h":0.833,"TU":"Dependent Child Social Security Number_Row 2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_3_","EN":0},"TI":955,"AM":0,"x":9.228,"y":27.562,"w":23.146,"h":0.833,"TU":"Dependent's Name Row 3"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_3_","EN":0},"TI":956,"AM":0,"x":33.383,"y":27.562,"w":3.813,"h":0.833,"TU":"Dependent's Age Row 3","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_3_","EN":0},"TI":957,"AM":0,"x":37.756,"y":27.562,"w":9.873,"h":0.833,"TU":"Relationship to Dependent Row 3"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_3_","EN":0},"TI":958,"AM":0,"x":48.46,"y":27.557,"w":12.262,"h":0.833,"TU":"Dependent Child Social Security Number_Row 3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPNAME_4_","EN":0},"TI":959,"AM":0,"x":9.228,"y":28.26,"w":23.146,"h":0.833,"TU":"Dependent's Name Row 4"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DEPAGE_4_","EN":0},"TI":960,"AM":0,"x":33.286,"y":28.287,"w":3.738,"h":0.833,"TU":"Dependent's Age Row 4","MV":"n"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RELAT_4_","EN":0},"TI":961,"AM":0,"x":37.756,"y":28.26,"w":9.798,"h":0.833,"TU":"Relationship to Dependent Row 4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPSSN_4_","EN":0},"TI":962,"AM":0,"x":48.313,"y":28.258,"w":12.486,"h":0.833,"TU":"Dependent Child Social Security Number_Row 4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PBL2","EN":0},"TI":963,"AM":0,"x":89.969,"y":27.559,"w":5.046,"h":1.003,"TU":"Number of Dependent Children"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC1A","EN":0},"TI":964,"AM":0,"x":12.209,"y":33.423,"w":12.88,"h":0.833,"TU":"PA Taxable Income from Line 9 of Your PA-40"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC2A","EN":0},"TI":965,"AM":0,"x":12.061,"y":34.055,"w":13.028,"h":0.833,"TU":"Nontaxable Interest, Dividends and Gains"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC3A","EN":0},"TI":966,"AM":0,"x":12.061,"y":34.8,"w":13.028,"h":0.833,"TU":"Alimony"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC4A","EN":0},"TI":967,"AM":0,"x":12.061,"y":35.475,"w":13.028,"h":0.833,"TU":"Insurance Proceeds and Inheritances"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC5A","EN":0},"TI":968,"AM":0,"x":12.061,"y":36.142,"w":13.028,"h":0.833,"TU":"Gifts, Awards and Prizes"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC6A","EN":0},"TI":969,"AM":1024,"x":12.061,"y":36.817,"w":13.028,"h":0.833,"TU":"Nonresident Income - Part-Year Residents and Nonresidents"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC7A","EN":0},"TI":970,"AM":0,"x":12.061,"y":37.458,"w":13.028,"h":0.833,"TU":"Nontaxable Military Income - Do Not Include Combat Pay"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC8A","EN":0},"TI":971,"AM":0,"x":12.061,"y":38.16,"w":13.028,"h":0.833,"TU":"Gain Excluded from the Sale of a Residence"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC9A","EN":0},"TI":972,"AM":0,"x":12.061,"y":38.827,"w":13.028,"h":0.833,"TU":"Nontaxable Educational Assistance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTC10A","EN":0},"TI":973,"AM":0,"x":12.061,"y":39.502,"w":13.028,"h":0.833,"TU":"Cash Received for Personal Purposes from Outside Your Home"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTEI_J","EN":0},"TI":974,"AM":1024,"x":12.061,"y":40.222,"w":13.028,"h":0.833,"TU":"Total Eligibility Income for Column A"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTD12A","EN":0},"TI":975,"AM":1024,"x":12.04,"y":42.195,"w":13.09,"h":0.833,"TU":"PA Tax Liability from Your PA-40, Line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTD13A","EN":0},"TI":976,"AM":1024,"x":12.04,"y":42.862,"w":13.09,"h":0.833,"TU":"Less Resident Credit from Your PA-40, Line 22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PRTD14A","EN":0},"TI":977,"AM":1024,"x":12.04,"y":43.537,"w":13.09,"h":0.833,"TU":"Net PA Tax Liability"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PRTD15A","EN":0},"TI":978,"AM":0,"x":12.134,"y":44.367,"w":13.017,"h":0.833,"TU":"Percentage of Tax Forgiveness from the Eligibility Income Table. Enter as a decimal .XX","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COLA_CR","EN":0},"TI":979,"AM":1024,"x":12.081,"y":45.495,"w":12.877,"h":0.833,"TU":"Tax Forgiveness Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PTI_T","EN":0},"TI":980,"AM":0,"x":67.13,"y":33.45,"w":13.179,"h":0.833,"TU":"Taxpayer PA Taxable Income from Line 9 of Your PA-40"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PTI_S","EN":0},"TI":981,"AM":0,"x":81.134,"y":33.45,"w":14.211,"h":0.833,"TU":"Spouse PA Taxable Income from Line 9 of Your PA-40"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTINT_T","EN":0},"TI":982,"AM":0,"x":67.13,"y":34.117,"w":13.179,"h":0.833,"TU":"Taxpayer Nontaxable Interest, Dividends and Gains"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTINT_S","EN":0},"TI":983,"AM":0,"x":81.134,"y":34.117,"w":14.211,"h":0.833,"TU":"Spouse Nontaxable Interest, Dividends and Gains"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALIM_T","EN":0},"TI":984,"AM":0,"x":67.13,"y":34.8,"w":13.179,"h":0.833,"TU":"Taxpayer Alimony"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALIM_S","EN":0},"TI":985,"AM":0,"x":81.134,"y":34.8,"w":14.211,"h":0.833,"TU":"Spouse Alimony"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INS_T","EN":0},"TI":986,"AM":0,"x":67.13,"y":35.475,"w":13.179,"h":0.833,"TU":"Taxpayer Insurance Proceeds and Inheritances"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INS_S","EN":0},"TI":987,"AM":0,"x":81.134,"y":35.475,"w":14.211,"h":0.833,"TU":"Spouse Insurance Proceeds and Inheritances"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GIFT_T","EN":0},"TI":988,"AM":0,"x":67.13,"y":36.142,"w":13.179,"h":0.833,"TU":"Taxpayer Gifts, Awards and Prizes"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GIFT_S","EN":0},"TI":989,"AM":0,"x":81.134,"y":36.142,"w":14.211,"h":0.833,"TU":"Spouse Gifts, Awards and Prizes"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NRINC_T","EN":0},"TI":990,"AM":1024,"x":67.13,"y":36.817,"w":13.179,"h":0.833,"TU":"Taxpayer Nonresident Income - Part-Year Residents and Nonresidents"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NRINC_S","EN":0},"TI":991,"AM":1024,"x":81.134,"y":36.817,"w":14.211,"h":0.833,"TU":"Spouse Nonresident Income - Part-Year Residents and Nonresidents"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MIL_T","EN":0},"TI":992,"AM":0,"x":67.13,"y":37.485,"w":13.179,"h":0.833,"TU":"Taxpayer Nontaxable Military Income - Do Not Include Combat Pay"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MIL_S","EN":0},"TI":993,"AM":0,"x":81.134,"y":37.485,"w":14.211,"h":0.833,"TU":"Spouse Nontaxable Military Income - Do Not Include Combat Pay"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOUS_T","EN":0},"TI":994,"AM":0,"x":67.13,"y":38.16,"w":13.179,"h":0.833,"TU":"Taxpayer Gain Excluded from the Sale of a Residence"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOUS_S","EN":0},"TI":995,"AM":0,"x":81.134,"y":38.16,"w":14.211,"h":0.833,"TU":"Spouse Gain Excluded from the Sale of a Residence"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ED_T","EN":0},"TI":996,"AM":0,"x":67.13,"y":38.827,"w":13.179,"h":0.833,"TU":"Taxpayer Nontaxable Educational Assitance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ED_S","EN":0},"TI":997,"AM":0,"x":81.134,"y":38.827,"w":14.211,"h":0.833,"TU":"Spouse Nontaxable Educational Assitance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CASH_T","EN":0},"TI":998,"AM":0,"x":67.13,"y":39.502,"w":13.179,"h":0.833,"TU":"Taxpayer Cash Received for Personal Purposes from Outside Your Home"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CASH_S","EN":0},"TI":999,"AM":0,"x":81.134,"y":39.502,"w":14.211,"h":0.833,"TU":"Spouse Cash Received for Personal Purposes from Outside Your Home"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCOLBC","EN":0},"TI":1000,"AM":1024,"x":81.4,"y":40.897,"w":14.096,"h":0.833,"TU":"Total Eligibility Income for Columns B and C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXLIAB","EN":0},"TI":1001,"AM":1024,"x":81.175,"y":42.195,"w":14.341,"h":0.833,"TU":"PA Tax Liability from Your PA-40, Line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESCR","EN":0},"TI":1002,"AM":1024,"x":81.175,"y":42.862,"w":14.341,"h":0.833,"TU":"Less Resident Credit from Your PA-40, Line 22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETTX","EN":0},"TI":1003,"AM":1024,"x":81.175,"y":43.537,"w":14.341,"h":0.833,"TU":"Net PA Tax Liability"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:pa_ins_IncTable"}},"id":{"Id":"Add","EN":0},"TI":1004,"AM":0,"x":64.4,"y":44.546,"w":5.414,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PCTFGV","EN":0},"TI":1005,"AM":0,"x":81.216,"y":44.26,"w":14.46,"h":0.858,"TU":"Percentage of Tax Forgiveness from the Eligibility Income Table. Enter as a decimal .XX","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FORGIVE","EN":0},"TI":1006,"AM":1024,"x":81.12,"y":45.453,"w":14.335,"h":0.833,"TU":"Tax Forgiveness Credit"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPY","EN":0},"TI":926,"AM":0,"x":78.093,"y":8.955,"w":1.653,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPN","EN":0},"TI":927,"AM":0,"x":84.378,"y":8.958,"w":1.653,"h":0.833,"checked":false}],"id":{"Id":"DEPBXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXFY","EN":0},"TI":928,"AM":0,"x":78.19,"y":9.72,"w":1.501,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TAXFN","EN":0},"TI":929,"AM":0,"x":84.378,"y":9.696,"w":1.729,"h":0.833,"checked":false}],"id":{"Id":"QUALBXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABXU","EN":0},"TI":930,"AM":0,"x":10.734,"y":12.292,"w":1.501,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABXS","EN":0},"TI":931,"AM":0,"x":10.835,"y":14.854,"w":1.729,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABXM","EN":0},"TI":932,"AM":0,"x":10.815,"y":16.48,"w":1.577,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABXD","EN":0},"TI":933,"AM":0,"x":10.834,"y":21.754,"w":1.577,"h":0.833,"checked":false}],"id":{"Id":"PABXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABX2","EN":0},"TI":934,"AM":0,"x":14.474,"y":12.854,"w":1.577,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABX3","EN":0},"TI":935,"AM":0,"x":14.59,"y":13.523,"w":1.577,"h":0.833,"checked":false}],"id":{"Id":"UNMARRRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABX8","EN":0},"TI":938,"AM":0,"x":14.106,"y":17.083,"w":1.577,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABX9","EN":0},"TI":939,"AM":0,"x":14.076,"y":17.776,"w":1.577,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABX10","EN":0},"TI":940,"AM":0,"x":14.172,"y":18.665,"w":1.577,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PABX12","EN":0},"TI":941,"AM":0,"x":14.267,"y":20.548,"w":1.577,"h":0.833,"checked":false}],"id":{"Id":"MARRIERB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CERT","EN":0},"TI":942,"AM":0,"x":42.225,"y":17.625,"w":1.821,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/SUE.content.txt b/test/data/pa/form/SUE.content.txt new file mode 100755 index 00000000..01f49868 --- /dev/null +++ b/test/data/pa/form/SUE.content.txt @@ -0,0 +1,1726 @@ +1301710024 + +1301710024 + + + + + + + + + + + + + + +1301710024 + + + + + +2013 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +CAUTION: + + +must + + + + + + +each + + + + + + + + + + + + + + + + + +1. + +Union dues. + + + + + + + + + + + + + + + + + + + + + +1. + +2. + + + + + + + + + + + + + + + +Description: + + + +2. + +3. + + + + + + + + + + + + + + + +Description: + + + +3. + +4. + + + + + + + + + + + + + + + +Description: + + + +4. + +5. + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +5. + + + + + + + + + + + + + + + + + + + + + + + + + + + +CAUTION: + + + + + + + + + + + + + + + + + + + + + + +V +ehicle + +Expenses: + +Standard + +Mileage + +Rate. + +6. + +Enter + +the + +amount + +from + +your + +Form + +2106 + +or + +2106 +- +EZ, + +OR + +Enter + +your + +total + +business + +miles + + +and + +multiply + +by + +the + +federal + +standard + +mileage + +rate. + +6. + + + + + + + + +7. + + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . + +7. + +8. + + + + + + + + + + + + + + + + + +. . . . . + +8. + +9. + + + + + + + + + + + + + + + + + + + + + + + + + + + +. + +9. + +10. + + + + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . + +10. + + + + +1 +1. + + + + + + + + + + + + + + + +. + +. . . . . . . . . + +1 +1. + +12. + + + + + + + + + + + + + + + + +. + +. . + +12. + +13. + + + + + + + + + + + + + + +. . . . . . . . . . . . + +13. + +14. + + + + + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . + +14. + + + + + + + + + + + + + + + + + + + + + + + + + + +15. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +15. + + + + + + + + + + + + + + + +A. + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +A. +B. + + + + + + + +. . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +B. +C. + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +C +. +D. + + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +D +. +E. + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +E. +F +. + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +F +. +G. + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . + +G. +H. + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . + +H +. +I +. + +Reimbursements. + + + + + + + + + + + + + + + + +. . . + +I +. + +J. + + + + + + + + + + + + + + + +. . . . . . . . . . . . . . + +J +. + + + + + + + + + + + + + + + +MORE + + + + + + + + + + + + + + + +MORE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PA SCHEDULE UE +Allowable Employee +Business Expenses +PA Schedule UE +(06-13) +PA DEPARTMENT OF REVENUE +OFFICIAL USE ONLY +Name of taxpayer claiming expenses +Employer’s Name +Social Security Number (shown first) +Employer Identification Number +Employer’s Telephone Number +Describe the duties of the job in which you incurred these expenses +complete a separate schedule for +job or position. Spouses +may not +file joint +PA Schedule(s) UE. +Itemize your additional expenses, including those PA allowable Business Expenses not itemized on your Form 2106 or 2106-EZ. +You must account for reimbursements, if any. +Enter payments that your employer DID NOT include in box 16 of your Form W-2. +Subtract Line I from Line H. Enter the difference, and: +than Line I, include on Line 1b, on your PA-40. +than Line H, include the excess on Line 1a, on your PA-40. +Nonresidents and part-year residents may also need to complete PA Schedule NRH. See instructions. +If Line H is +If Line I is +Description +Amount +List union name(s) and amount(s)paid. Enter thetotal. Submit additional sheets, if needed. +Name of union(s) and amount(s). +Work clothes and uniforms. +Needed for your employment and not suitable for every day use. +Small tools and supplies. +Needed for your employment and not provided by your employer. +Professional license fees, malpractice insurance and fidelity bond premiums. +Required as a +condition of your employment. +Total Direct Employee Business Expenses. +Add Lines 1 through 4. +Part B. Business Travel Expenses. +You may use appropriate amounts from Lines 1, 2, 3 and 5 of your federal Form 2106 or Federal Form +2106-EZ. +You +may not +use Line 4 of Form 2106. You must itemize these expenses in Part C of this schedule. +You +Part A. Direct Employee Business Expenses. +Vehicle Expenses: Actual Travel and Mileage Expenses. +Enter the amount from your Form 2106. Make the following adjustments: +Add back the “Inclusion Amount” from Form 2106. This adjustment does not apply for PA purposes. +Optional Depreciation. +You may use any generally accepted method. If not using your Form 2106, enter +your allowable depreciation expenses and the method you use +Actual Travel and Mileage Expenses for PA Purposes. +Total Lines 7 through 9. +Other Business Travel Expenses. +Parking fees, tolls and transportation. +Enter the amount from your Form 2106 or 2106-EZ. +Travel expenses while away from home overnight. +Enter the amount from your Form 2106 or 2106-EZ +Meals and entertainment expenses. +Enter the amount from your Form 2106 or 2106-EZ. +Total Business Travel Expenses. +Add Lines 6 or 10 and Lines 11, 12 and 13. +Part C. Miscellaneous Expenses. +Total Miscellaneous Expenses. +Total Allowable PA Employee Business Expenses. +Direct Expenses from Line 5. +Business Travel Expenses from Line 14. +Miscellaneous Expenses from Line 15. +Office or Work Area Expenses from Line16, on Side 2. +Net expense or reimbursement. +Total Allowable Employee Business Expenses. +Add Lines A through G. +Total Depreciation Expenses from Line24, on Side 2. +Education Expenses from Line 23, on Side 2. +Moving Expenses from Line 19, on Side 2. +Side 1 +Employer’s address +City +State +ZIP Code +----------------Page (0) Break---------------- +1301810022 + +1301810022 + + + + + + + + + + + + + + +1301810022 + + + + + +2013 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +D1. + + + + + + + + + + + + + + + + + + +No +D2. + + + + + + + + + + + + + + + + + +No +D3. + + + + + + + + + + + + + + + + + + + +No + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +a. + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . + +a +. +b. + + + + +. . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . + +b +. +c. + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . + +c +. +d. + +Utilities. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . + +d +. +e. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . + +e +. +f. + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +f. +g. + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. + +g +. +h. + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . + +. . . . . + +h +. +i. + +. + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . + +i +. + + + + + + + + + + +j. + + + + + + + + + + + + + + + + + + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . + +j. + + + +% + +k. + + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +k +. +l. + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . + +l +. + +16. + + + + + + +Add + +Lines + +k + +and + +l. + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +16. + + + + + + +E1. + + + + + + + + + + + + + + +. . . . . . . . . . . + +. . . . . . . . . . . . . . . . . + + + + + +E2. + + + + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. + + + + +miles + +E3. + + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . + + + + +miles + + + + + + + + + + + + + + + + + + + + + + + + + +17. + + + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . + +17. + +18. + + + + + + + + + + + + + + + + + + + +. . . . + +18. + +19. + +T + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +19. + + + + + + + + + + + + + + + + + + +F1. + + + + + + + + + + + + + + + + + + + +YES + +NO + + + + + + + + + + + + + + +F2. + + + + + + + + + + + + + + + + + + +YES + +NO +F3. + + + + + + + + + + + + + + + + + +YES + + +NO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +20. + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . . . + +20. + +21. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . + +21. + +22. + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +. . . . . . . . . . . . . . . . . + +22. + +23. + + + + + + + + +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + +23. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +24. + + + + + + + + + + + +. . . . +. . . . . . . . . . . . . . . . . . . . . . . + +24. + + + + + + + +Yes +PA SCHEDULE UE +Social Security Number (shown first) +(a) Description of property +(b) Date acquired +(c) Cost or other basis +(d) Depreciation method +(e) Section 179 expense +(f) Depreciation expenses +Allowable Employee +Business Expenses +PA Schedule UE +(06-13) +PA DEPARTMENT OF REVENUE +OFFICIAL USE ONLY +Does your employer require you to maintain a suitable work area away from the employer’s premises? +Is this work area the principal place where you perform the duties of your employment? +Do you use this work area regularly and exclusively to perform the duties of your employment? +If you answer YES to ALL three questions, continue. If you answer NO to ANY question, you may not claim office or work area expenses. +Mortgage interest (home owners only) +Rent (renters only). +If you answer YES, continue. If you answer NO, you may not claim education expenses. +Did your employer (or law)require that you obtain this education to retain your present position or job? +Name of taxpayer claiming expenses +Part D. Office or Work Area Expenses. +You must answer ALL three questions or the Department will disallow your expenses. +Yes +Yes +Actual Office or Work Area Expenses. +Enter expenses for the entire year and then calculate the business portion. +Depreciation expense (homeowners only) +Real estate taxes. +Property insurance. +Property maintenance expenses from statement. See the instructions. +Other apportionable expenses from statement.See the instructions. +Total +Add Lines a through h. Enter the total here. +Business percentage of property. +Divide the total square footage of your work area by the total squareb footage +of your entire property.Round to 2 decimal places. +Apportioned expenses. +Multiply Line i by the percentage on Line j. +Total office supplies from statement. See the instructions. +Total Office or Work Area Expenses. +Part E. Moving Expenses. +miles +Distance Test. +Enter the number of miles from your old home to your new work place. +Enter the number of miles from your old home to your old workplace. +Subtract Line E2 from Line E1 and enter the difference. +If Line E3 is 35 miles or more,continue. If it is not at least 35 miles, you may not claim any moving expenses. +Transportation expenses in moving household goods and personal effects. +Travel, meals, and lodging expenses during the actual move from your old home to your new home. +otal Moving Expenses. +Add Lines 17 and 18. +Part F. Education Expenses. +You must answer ALL three questions or the Department will disallow your expenses. +Did you need this education to meet the entry level o rminimum requirements to obtain your job? +Will this education, program or course of study qualify you for a new business or profession? +If you answer NO to questions F2 and F3, continue. If you answer YES to either question, you may not claim education expenses. +Name of college, university or educational institution: +Course of study: +Tuition or fees. +Course materials. +Travel expenses. +Total Education Expenses. +Add Lines 20 through 22. +Part G. Depreciation Expenses. +PA law does not allow any federal bonus depreciation and limits IRC Section 179 expensing to $25,000. +Total Depreciation Expenses. +Add the amounts from columns (e) and (f). +Side 2 +----------------Page (1) Break---------------- diff --git a/test/data/pa/form/SUE.fields.json b/test/data/pa/form/SUE.fields.json new file mode 100755 index 00000000..469c41cc --- /dev/null +++ b/test/data/pa/form/SUE.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":false,"value":""},{"id":"ENAM","type":"alpha","calc":false,"value":""},{"id":"EIN","type":"mask","calc":false,"value":""},{"id":"EADDR","type":"alpha","calc":false,"value":""},{"id":"ECITY","type":"alpha","calc":false,"value":""},{"id":"ESTATE","type":"alpha","calc":false,"value":""},{"id":"EZIP","type":"zip","calc":false,"value":""},{"id":"OCCUP","type":"alpha","calc":false,"value":""},{"id":"TELE","type":"phone","calc":false,"value":""},{"id":"L11T","type":"alpha","calc":false,"value":""},{"id":"L11","type":"number","calc":false,"value":""},{"id":"L12T","type":"alpha","calc":false,"value":""},{"id":"L12","type":"number","calc":false,"value":""},{"id":"L13T","type":"alpha","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14T","type":"alpha","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":true,"value":""},{"id":"PAMILES","type":"alpha","calc":false,"value":""},{"id":"PASMREXP","type":"number","calc":false,"value":""},{"id":"PACARADJ","type":"number","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L5","type":"alpha","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"PAPARKG","type":"number","calc":false,"value":""},{"id":"PATRVL","type":"number","calc":false,"value":""},{"id":"PAMEALS","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"MISCDESC_1_","type":"alpha","calc":false,"value":""},{"id":"OTHAMT_1_","type":"number","calc":false,"value":""},{"id":"MISCDESC_2_","type":"alpha","calc":false,"value":""},{"id":"OTHAMT_2_","type":"number","calc":false,"value":""},{"id":"MISCDESC_3_","type":"alpha","calc":false,"value":""},{"id":"OTHAMT_3_","type":"number","calc":false,"value":""},{"id":"MISCDESC_4_","type":"alpha","calc":false,"value":""},{"id":"OTHAMT_4_","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"LCA","type":"number","calc":true,"value":""},{"id":"LCB","type":"number","calc":true,"value":""},{"id":"LCC","type":"number","calc":true,"value":""},{"id":"LCD","type":"number","calc":true,"value":""},{"id":"LCE","type":"number","calc":true,"value":""},{"id":"LCF","type":"number","calc":true,"value":""},{"id":"LCG","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"L29","type":"number","calc":false,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"CX1RB","type":"radio","calc":false,"value":"C1Y"},{"id":"CX1RB","type":"radio","calc":false,"value":"C1N"},{"id":"CX2RB","type":"radio","calc":false,"value":"C2Y"},{"id":"CX2RB","type":"radio","calc":false,"value":"C2N"},{"id":"CX3RB","type":"radio","calc":false,"value":"C3Y"},{"id":"CX3RB","type":"radio","calc":false,"value":"C3N"},{"id":"E1RB","type":"radio","calc":false,"value":"E1Y"},{"id":"E1RB","type":"radio","calc":false,"value":"E1N"},{"id":"E2RB","type":"radio","calc":false,"value":"E2Y"},{"id":"E2RB","type":"radio","calc":false,"value":"E2N"},{"id":"E3RB","type":"radio","calc":false,"value":"E3Y"},{"id":"E3RB","type":"radio","calc":false,"value":"E3N"},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"CA","type":"number","calc":false,"value":""},{"id":"CB","type":"number","calc":false,"value":""},{"id":"CC","type":"number","calc":false,"value":""},{"id":"CD","type":"number","calc":false,"value":"100"},{"id":"CE","type":"number","calc":false,"value":""},{"id":"CF","type":"number","calc":false,"value":""},{"id":"CG","type":"number","calc":false,"value":""},{"id":"CH","type":"number","calc":false,"value":"100"},{"id":"CI","type":"number","calc":true,"value":""},{"id":"CJ","type":"alpha","calc":false,"value":""},{"id":"CK","type":"number","calc":true,"value":""},{"id":"CL","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":true,"value":""},{"id":"DA","type":"number","calc":false,"value":""},{"id":"DB","type":"number","calc":false,"value":""},{"id":"DC","type":"number","calc":true,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"alpha","calc":false,"value":""},{"id":"L21","type":"alpha","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"DESC_1_","type":"alpha","calc":false,"value":""},{"id":"PGDATE_1_","type":"date","calc":false,"value":""},{"id":"COST_1_","type":"number","calc":false,"value":""},{"id":"METH_1_","type":"alpha","calc":false,"value":""},{"id":"SEC179_1_","type":"number","calc":false,"value":""},{"id":"DEPR_1_","type":"number","calc":false,"value":""},{"id":"DESC_2_","type":"alpha","calc":false,"value":""},{"id":"PGDATE_2_","type":"date","calc":false,"value":""},{"id":"COST_2_","type":"number","calc":false,"value":""},{"id":"METH_2_","type":"alpha","calc":false,"value":""},{"id":"SEC179_2_","type":"number","calc":false,"value":""},{"id":"DEPR_2_","type":"number","calc":false,"value":""},{"id":"DESC_3_","type":"alpha","calc":false,"value":""},{"id":"PGDATE_3_","type":"date","calc":false,"value":""},{"id":"COST_3_","type":"number","calc":false,"value":""},{"id":"METH_3_","type":"alpha","calc":false,"value":""},{"id":"SEC179_3_","type":"number","calc":false,"value":""},{"id":"DEPR_3_","type":"number","calc":false,"value":""},{"id":"DESC_4_","type":"alpha","calc":false,"value":""},{"id":"PGDATE_4_","type":"date","calc":false,"value":""},{"id":"COST_4_","type":"number","calc":false,"value":""},{"id":"METH_4_","type":"alpha","calc":false,"value":""},{"id":"SEC179_4_","type":"number","calc":false,"value":""},{"id":"DEPR_4_","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/SUE.json b/test/data/pa/form/SUE.json new file mode 100755 index 00000000..3abc5a9f --- /dev/null +++ b/test/data/pa/form/SUE.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule UE - Allowable Employee Business Expenses - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":90.956,"y":49.542,"w":4.5,"l":4.933},{"oc":"#221f1f","x":9.316,"y":49.542,"w":4.5,"l":4.941},{"oc":"#221f1f","x":9.298,"y":1,"w":4.5,"l":4.959},{"oc":"#221f1f","x":9.359,"y":10.869,"w":1.5,"l":86.505},{"oc":"#221f1f","x":9.367,"y":9.981,"w":1.5,"l":86.496},{"oc":"#221f1f","x":9.281,"y":18.378,"w":1.5,"l":86.582},{"oc":"#221f1f","x":80.154,"y":16.916,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":17.634,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":17.641,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":18.359,"w":0.75,"l":15.658},{"oc":"#221f1f","x":9.281,"y":19.794,"w":1.5,"l":86.582},{"oc":"#221f1f","x":9.281,"y":36.41,"w":1.5,"l":86.582},{"oc":"#221f1f","x":9.281,"y":35.664,"w":0.75,"l":86.582},{"oc":"#221f1f","x":80.154,"y":35.676,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":36.395,"w":0.75,"l":15.658},{"oc":"#221f1f","x":9.281,"y":46.804,"w":1.5,"l":86.625},{"oc":"#221f1f","x":9.281,"y":30.897,"w":1.5,"l":86.582},{"oc":"#221f1f","x":9.281,"y":30.034,"w":1.5,"l":86.582},{"oc":"#221f1f","x":80.154,"y":27.128,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":27.847,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":27.853,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":28.572,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":28.578,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":29.297,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":29.303,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":30.022,"w":0.75,"l":15.658},{"oc":"#221f1f","x":9.281,"y":32.922,"w":0.75,"l":86.582},{"oc":"#221f1f","x":80.154,"y":11.919,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":12.638,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":13.337,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":14.056,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":14.803,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":15.522,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":21.403,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":22.122,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":22.813,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":23.531,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":23.538,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":24.256,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":25,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":25.719,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":25.725,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":26.444,"w":0.75,"l":15.658},{"oc":"#221f1f","x":9.267,"y":33.87,"w":0.75,"l":86.582},{"oc":"#221f1f","x":9.238,"y":34.807,"w":0.75,"l":86.582},{"oc":"#221f1f","x":9.281,"y":31.922,"w":0.75,"l":86.582}],"VLines":[{"oc":"#221f1f","x":95.648,"y":48.51,"w":4.5,"l":1.122},{"oc":"#221f1f","x":9.565,"y":48.51,"w":4.5,"l":1.119},{"oc":"#221f1f","x":13.991,"y":-0.078,"w":4.5,"l":1.131},{"oc":"#221f1f","x":95.812,"y":16.916,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":16.916,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":17.641,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":17.641,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":35.676,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":35.676,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":27.128,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":27.128,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":27.853,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":27.853,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":28.578,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":28.578,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":29.303,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":29.303,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":11.919,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":11.919,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":13.337,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":13.337,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":14.803,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":14.803,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":21.403,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":21.403,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":22.813,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":22.813,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":23.538,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":23.538,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":25,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":25,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":25.725,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":25.725,"w":0.75,"l":0.719}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.24,"y":3.293,"w":67.237,"h":0.03,"clr":-1},{"oc":"#221f1f","x":76.56,"y":3.292,"w":19.264,"h":0.06,"clr":-1},{"oc":"#221f1f","x":76.363,"y":3.353,"w":0.083,"h":1.32,"clr":-1},{"oc":"#221f1f","x":9.24,"y":4.797,"w":31.268,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.59,"y":4.797,"w":35.888,"h":0.03,"clr":-1},{"oc":"#221f1f","x":76.56,"y":4.797,"w":19.264,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.24,"y":7.79,"w":31.268,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.59,"y":7.79,"w":35.888,"h":0.03,"clr":-1},{"oc":"#221f1f","x":76.56,"y":7.79,"w":19.264,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.116,"y":9.205,"w":67.361,"h":0.03,"clr":-1},{"oc":"#221f1f","x":76.443,"y":7.731,"w":0.082,"h":1.475,"clr":-1},{"oc":"#221f1f","x":76.56,"y":9.205,"w":19.264,"h":0.03,"clr":-1},{"oc":"#221f1f","x":32.753,"y":12.438,"w":43.746,"h":0.037,"clr":-1},{"oc":"#221f1f","x":19.697,"y":13.9,"w":56.801,"h":0.037,"clr":-1},{"oc":"#221f1f","x":19.697,"y":15.37,"w":56.801,"h":0.037,"clr":-1},{"oc":"#221f1f","x":19.697,"y":17.44,"w":56.801,"h":0.037,"clr":-1},{"oc":"#221f1f","x":31.68,"y":22.08,"w":7.177,"h":0.038,"clr":-1},{"oc":"#221f1f","x":50.779,"y":25.657,"w":23.306,"h":0.038,"clr":-1},{"oc":"#221f1f","x":80.252,"y":37.189,"w":15.531,"h":0.06,"clr":-1},{"oc":"#221f1f","x":80.128,"y":37.249,"w":0.083,"h":0.69,"clr":-1},{"oc":"#221f1f","x":95.782,"y":37.249,"w":0.082,"h":0.69,"clr":-1},{"oc":"#221f1f","x":80.169,"y":37.939,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":37.969,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":37.969,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.169,"y":38.652,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":38.682,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":38.682,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.169,"y":39.364,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":39.394,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":95.782,"y":39.394,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.169,"y":40.077,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":40.107,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":40.107,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.169,"y":40.789,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":40.819,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":95.782,"y":40.819,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.169,"y":41.502,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":41.532,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":95.782,"y":41.532,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.169,"y":42.214,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":42.244,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":42.244,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.169,"y":42.927,"w":15.613,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":42.957,"w":0.083,"h":0.69,"clr":-1},{"oc":"#221f1f","x":95.782,"y":42.957,"w":0.082,"h":0.69,"clr":-1},{"oc":"#221f1f","x":80.252,"y":43.647,"w":15.489,"h":0.06,"clr":-1},{"oc":"#221f1f","x":80.087,"y":43.707,"w":0.165,"h":0.63,"clr":-1},{"oc":"#221f1f","x":80.252,"y":44.337,"w":15.489,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.741,"y":43.707,"w":0.165,"h":0.63,"clr":-1},{"oc":"#221f1f","x":67.463,"y":31.93,"w":0.082,"h":3.797,"clr":-1},{"oc":"#221f1f","x":9.24,"y":6.235,"w":31.268,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.59,"y":6.235,"w":35.888,"h":0.03,"clr":-1},{"oc":"#221f1f","x":76.56,"y":6.235,"w":19.264,"h":0.03,"clr":-1},{"oc":"#221f1f","x":76.271,"y":4.794,"w":0.082,"h":1.475,"clr":-1}],"Texts":[{"oc":"#221f1f","x":20.045,"y":48.649,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301710024","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":48.642,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301710024","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":49.415,"y":-0.345,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301710024","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":35.514,"y":2.362,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23.79,0,0]}]},{"oc":"#221f1f","x":14.105,"y":8.973,"w":4.96,"clr":-1,"A":"left","R":[{"T":"CAUTION%3A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":23.277,"y":8.973,"w":2.3529999999999998,"clr":-1,"A":"left","R":[{"T":"must","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":46.344,"y":8.973,"w":2.263,"clr":-1,"A":"left","R":[{"T":"each","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":10.002,"y":10.722,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.818,"y":10.722,"w":5.833,"clr":-1,"A":"left","R":[{"T":"Union%20dues.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":77.961,"y":11.635,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.001,"y":12.192,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":13.097,"w":5.505000000000001,"clr":-1,"A":"left","R":[{"T":"Description%3A%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.96,"y":13.097,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.001,"y":13.655,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":14.567,"w":5.505000000000001,"clr":-1,"A":"left","R":[{"T":"Description%3A%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.96,"y":14.567,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.001,"y":15.117,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":16.637,"w":5.505000000000001,"clr":-1,"A":"left","R":[{"T":"Description%3A%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.961,"y":16.637,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.001,"y":17.44,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.899,"y":17.44,"w":16.756000000000014,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.978,"y":17.44,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.772,"y":18.783,"w":4.96,"clr":-1,"A":"left","R":[{"T":"CAUTION%3A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.217,"y":19.712,"w":0.667,"clr":-1,"A":"left","R":[{"T":"V","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":10.063,"y":19.712,"w":2.8110000000000004,"clr":-1,"A":"left","R":[{"T":"ehicle","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":14.333,"y":19.712,"w":4.966,"clr":-1,"A":"left","R":[{"T":"Expenses%3A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":21.633,"y":19.712,"w":4.3020000000000005,"clr":-1,"A":"left","R":[{"T":"Standard","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":27.923,"y":19.712,"w":3.64,"clr":-1,"A":"left","R":[{"T":"Mileage","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":33.347,"y":19.712,"w":2.425,"clr":-1,"A":"left","R":[{"T":"Rate.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":10,"y":20.433,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":20.433,"w":2.3700000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":15.507,"y":20.433,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":17.837,"y":20.433,"w":3.2209999999999996,"clr":-1,"A":"left","R":[{"T":"amount","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":22.828,"y":20.433,"w":1.924,"clr":-1,"A":"left","R":[{"T":"from","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":26.004,"y":20.433,"w":1.929,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":29.097,"y":20.433,"w":2.257,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":32.725,"y":20.433,"w":2.208,"clr":-1,"A":"left","R":[{"T":"2106","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":36.19,"y":20.433,"w":0.881,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":37.84,"y":20.433,"w":2.208,"clr":-1,"A":"left","R":[{"T":"2106","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.891,"y":20.433,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.346,"y":20.433,"w":1.514,"clr":-1,"A":"left","R":[{"T":"EZ%2C","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.902,"y":20.433,"w":1.496,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.795,"y":21.152,"w":2.3700000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":15.528,"y":21.152,"w":1.929,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":18.599,"y":21.152,"w":1.9200000000000002,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.631,"y":21.152,"w":3.794,"clr":-1,"A":"left","R":[{"T":"business","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":27.448,"y":21.152,"w":2.9030000000000005,"clr":-1,"A":"left","R":[{"T":"miles%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.606,"y":21.152,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":41.308,"y":21.152,"w":3.357,"clr":-1,"A":"left","R":[{"T":"multiply","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.422,"y":21.152,"w":1.048,"clr":-1,"A":"left","R":[{"T":"by","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":48.278,"y":21.152,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.608,"y":21.152,"w":3.0290000000000004,"clr":-1,"A":"left","R":[{"T":"federal","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.208,"y":21.152,"w":3.8590000000000004,"clr":-1,"A":"left","R":[{"T":"standard","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":60.962,"y":21.152,"w":3.473,"clr":-1,"A":"left","R":[{"T":"mileage","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.222,"y":21.152,"w":1.981,"clr":-1,"A":"left","R":[{"T":"rate.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.957,"y":21.152,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10,"y":22.585,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.247,"y":22.585,"w":14.257000000000005,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.037,"y":22.585,"w":0.796,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.995,"y":23.298,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.229,"y":23.298,"w":3.1239999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.994,"y":23.298,"w":0.796,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.993,"y":24.01,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.834,"y":24.73,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.959,"y":24.73,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.237,"y":25.442,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":62.408,"y":25.442,"w":10.508000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.093,"y":25.442,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.316,"y":26.875,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.977,"y":26.875,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.252,"y":26.875,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":70.016,"y":26.875,"w":4.8279999999999985,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.173,"y":26.875,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.834,"y":26.875,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.235,"y":27.588,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.981,"y":27.588,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":75.28,"y":27.588,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":".%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":76.992,"y":27.588,"w":1.3330000000000002,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.239,"y":28.3,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":67.91,"y":28.3,"w":6.531999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.233,"y":28.3,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.232,"y":29.02,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":60.998,"y":29.02,"w":11.029000000000003,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.209,"y":29.02,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.237,"y":35.457,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":32.689,"y":35.457,"w":32.659999999999954,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.177,"y":35.457,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.98,"y":37.017,"w":0.9550000000000001,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":31.409,"y":37.017,"w":32.27999999999991,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.022,"y":37.017,"w":1.2080000000000002,"clr":-1,"A":"left","R":[{"T":"A.%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":9.98,"y":37.737,"w":0.9550000000000001,"clr":-1,"A":"left","R":[{"T":"B.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":39.037,"y":37.737,"w":8.235999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":50.505,"y":37.737,"w":19.880000000000003,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.022,"y":37.737,"w":1.2080000000000002,"clr":-1,"A":"left","R":[{"T":"B.%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":9.98,"y":38.457,"w":0.988,"clr":-1,"A":"left","R":[{"T":"C.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.277,"y":38.457,"w":28.967999999999968,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.938,"y":38.457,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.929,"y":38.457,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.021,"y":39.177,"w":0.988,"clr":-1,"A":"left","R":[{"T":"D.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":48.198,"y":39.177,"w":21.583999999999996,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.939,"y":39.177,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.929,"y":39.177,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.083,"y":39.889,"w":0.9550000000000001,"clr":-1,"A":"left","R":[{"T":"E.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.566,"y":39.889,"w":27.263999999999974,"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.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.022,"y":39.889,"w":1.2080000000000002,"clr":-1,"A":"left","R":[{"T":"E.%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.372,"y":40.609,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.053,"y":40.609,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.137,"y":40.609,"w":26.411999999999978,"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.%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.012,"y":40.609,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":78.929,"y":40.609,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":9.918,"y":41.329,"w":1.052,"clr":-1,"A":"left","R":[{"T":"G.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":47.435,"y":41.329,"w":16.756000000000014,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":70.37,"y":41.329,"w":4.842000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.963,"y":41.329,"w":1.319,"clr":-1,"A":"left","R":[{"T":"G.%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.001,"y":42.049,"w":0.988,"clr":-1,"A":"left","R":[{"T":"H.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":58.162,"y":42.049,"w":13.450000000000005,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.94,"y":42.049,"w":0.722,"clr":-1,"A":"left","R":[{"T":"H","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.929,"y":42.049,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.454,"y":42.807,"w":0.421,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.053,"y":42.807,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.085,"y":42.807,"w":8.331,"clr":-1,"A":"left","R":[{"T":"Reimbursements.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":74.966,"y":42.807,"w":1.9880000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.373,"y":42.807,"w":0.421,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,10.921800000000001,0,0]}]},{"oc":"#221f1f","x":78.929,"y":42.807,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.228,"y":43.534,"w":0.794,"clr":-1,"A":"left","R":[{"T":"J.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":66.554,"y":43.534,"w":8.235999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.228,"y":43.534,"w":0.5,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.929,"y":43.534,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":21.383,"y":44.284,"w":2.916,"clr":-1,"A":"left","R":[{"T":"MORE","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.966,"y":45.034,"w":2.976,"clr":-1,"A":"left","R":[{"T":"MORE","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.396,"y":0.20999999999999996,"w":8.723999999999998,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20UE","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":20.375,"y":0.7869999999999999,"w":9.777999999999997,"clr":-1,"A":"left","R":[{"T":"Allowable%20Employee","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.375,"y":1.342,"w":9.325000000000001,"clr":-1,"A":"left","R":[{"T":"Business%20Expenses","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.375,"y":1.875,"w":7.779999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20UE","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":29.965,"y":1.875,"w":3.1950000000000003,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.495,"y":2.385,"w":12.848000000000003,"clr":-1,"A":"left","R":[{"T":"PA%20%20DEPARTMENT%20OF%20REVENUE","S":56,"TS":[1,9,1,0]}]},{"oc":"#221f1f","x":85.364,"y":2.408,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":9.258,"y":3.097,"w":13.173000000000004,"clr":-1,"A":"left","R":[{"T":"Name%20of%20taxpayer%20claiming%20expenses","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.279,"y":4.528,"w":6.575000000000002,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20Name","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":76.723,"y":3.097,"w":13.511999999999993,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":76.826,"y":4.528,"w":11.648999999999997,"clr":-1,"A":"left","R":[{"T":"Employer%20Identification%20Number","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":76.723,"y":7.5120000000000005,"w":11.490999999999998,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20Telephone%20Number","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.258,"y":7.5120000000000005,"w":24.054000000000013,"clr":-1,"A":"left","R":[{"T":"Describe%20the%20duties%20of%20the%20job%20in%20which%20you%20incurred%20these%20expenses","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":26.712,"y":8.973,"w":14.177000000000005,"clr":-1,"A":"left","R":[{"T":"complete%20a%20separate%20schedule%20for","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.519,"y":8.973,"w":10.576,"clr":-1,"A":"left","R":[{"T":"job%20or%20position.%20Spouses","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.003,"y":8.973,"w":3.876,"clr":-1,"A":"left","R":[{"T":"may%20not","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":69.323,"y":8.973,"w":3.41,"clr":-1,"A":"left","R":[{"T":"file%20joint","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":74.066,"y":8.973,"w":9.558000000000002,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule(s)%20UE.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":29.945,"y":29.86,"w":48.963361541000005,"clr":-1,"A":"left","R":[{"T":"Itemize%20your%20additional%20expenses%2C%20including%20those%20PA%20allowable%20Business%20Expenses%20not%20itemized%20on%20your%20Form%202106%20or%202106-EZ.","S":-1,"TS":[0,10.00000188,0,0]}]},{"oc":"#221f1f","x":42.364,"y":36.207,"w":20.119,"clr":-1,"A":"left","R":[{"T":"You%20must%20account%20for%20reimbursements%2C%20if%20any.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":23.596,"y":42.807,"w":34.86399999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20payments%20that%20your%20employer%20DID%20NOT%20include%20in%20box%2016%20of%20your%20Form%20W-2.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":32.503,"y":43.555,"w":23.459000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20I%20from%20Line%20H.%20Enter%20the%20difference%2C%20and%3A","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":25.941,"y":44.284,"w":20.380000000000006,"clr":-1,"A":"left","R":[{"T":"than%20Line%20I%2C%20include%20on%20Line%201b%2C%20on%20your%20PA-40.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":25.524,"y":45.034,"w":25.838000000000005,"clr":-1,"A":"left","R":[{"T":"than%20Line%20H%2C%20include%20the%20excess%20on%20Line%201a%2C%20on%20your%20PA-40.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.361,"y":45.777,"w":44.74200000000002,"clr":-1,"A":"left","R":[{"T":"Nonresidents%20and%20part-year%20residents%20may%20also%20need%20to%20complete%20PA%20Schedule%20NRH.%20See%20instructions.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.373,"y":44.284,"w":4.795999999999999,"clr":-1,"A":"left","R":[{"T":"If%20Line%20H%20is","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":14.368,"y":45.034,"w":4.351999999999999,"clr":-1,"A":"left","R":[{"T":"If%20Line%20I%20is","S":-1,"TS":[0,11.04,0,0]}]},{"x":31.24,"y":30.817,"w":40.008,"clr":0,"A":"left","R":[{"T":"Description","S":-1,"TS":[0,11,0,0]}]},{"x":78.339,"y":30.817,"w":27.568,"clr":0,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.809,"y":10.722,"w":38.571999999999996,"clr":-1,"A":"left","R":[{"T":"List%20union%20name(s)%20and%20amount(s)paid.%20Enter%20thetotal.%20Submit%20additional%20sheets%2C%20if%20needed.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":11.635,"w":14.758000000000004,"clr":-1,"A":"left","R":[{"T":"Name%20of%20union(s)%20and%20amount(s).%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.775,"y":12.192,"w":13.169000000000002,"clr":-1,"A":"left","R":[{"T":"Work%20clothes%20and%20uniforms.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":29.804,"y":12.192,"w":26.349999999999984,"clr":-1,"A":"left","R":[{"T":"Needed%20for%20your%20employment%20and%20not%20suitable%20for%20every%20day%20use.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.796,"y":13.655,"w":11.529000000000003,"clr":-1,"A":"left","R":[{"T":"Small%20tools%20and%20supplies.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":27.74,"y":13.655,"w":26.771999999999984,"clr":-1,"A":"left","R":[{"T":"Needed%20for%20your%20employment%20and%20not%20provided%20by%20your%20employer.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.796,"y":15.117,"w":36.376,"clr":-1,"A":"left","R":[{"T":"Professional%20license%20fees%2C%20malpractice%20insurance%20and%20fidelity%20bond%20premiums.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":61.983,"y":15.117,"w":6.447000000000002,"clr":-1,"A":"left","R":[{"T":"Required%20as%20a%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.791,"y":15.815000000000001,"w":13.222999999999999,"clr":-1,"A":"left","R":[{"T":"condition%20of%20your%20employment.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.816,"y":17.44,"w":20.452000000000012,"clr":-1,"A":"left","R":[{"T":"Total%20Direct%20Employee%20Business%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":39.996,"y":17.44,"w":9.974,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%201%20through%204.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.214,"y":18.153,"w":16.263999999999996,"clr":-1,"A":"left","R":[{"T":"Part%20B.%20Business%20Travel%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":31.456,"y":18.153,"w":45.297999999999945,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20appropriate%20amounts%20from%20Lines%201%2C%202%2C%203%20and%205%20of%20your%20federal%20Form%202106%20or%20Federal%20Form","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.205,"y":18.783,"w":4.081,"clr":-1,"A":"left","R":[{"T":"2106-EZ.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.459,"y":18.783,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.095,"y":18.783,"w":3.876,"clr":-1,"A":"left","R":[{"T":"may%20not","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":29.358,"y":18.783,"w":37.682000000000016,"clr":-1,"A":"left","R":[{"T":"use%20Line%204%20of%20Form%202106.%20You%20must%20itemize%20these%20expenses%20in%20Part%20C%20of%20this%20schedule.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.706,"y":8.972,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.22,"y":9.842,"w":21.117999999999995,"clr":-1,"A":"left","R":[{"T":"Part%20A.%20Direct%20Employee%20Business%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.217,"y":21.865,"w":26.56700000000001,"clr":-1,"A":"left","R":[{"T":"Vehicle%20Expenses%3A%20Actual%20Travel%20and%20Mileage%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.795,"y":22.585,"w":32.067,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20your%20Form%202106.%20Make%20the%20following%20adjustments%3A%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.79,"y":23.298,"w":43.85800000000001,"clr":-1,"A":"left","R":[{"T":"Add%20back%20the%20%E2%80%9CInclusion%20Amount%E2%80%9D%20from%20Form%202106.%20This%20adjustment%20does%20not%20apply%20for%20PA%20purposes.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.788,"y":24.01,"w":10.691,"clr":-1,"A":"left","R":[{"T":"Optional%20Depreciation.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":26.743,"y":24.01,"w":35.628999999999984,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20any%20generally%20accepted%20method.%20If%20not%20using%20your%20Form%202106%2C%20enter","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":24.73,"w":27.718999999999998,"clr":-1,"A":"left","R":[{"T":"your%20allowable%20depreciation%20expenses%20and%20the%20method%20you%20use%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.837,"y":25.442,"w":23.070000000000004,"clr":-1,"A":"left","R":[{"T":"Actual%20Travel%20and%20Mileage%20Expenses%20for%20PA%20Purposes.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":46.259,"y":25.442,"w":10.506000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Lines%207%20through%209.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.215,"y":26.155,"w":15.715999999999998,"clr":-1,"A":"left","R":[{"T":"Other%20Business%20Travel%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.792,"y":26.875,"w":17.208000000000006,"clr":-1,"A":"left","R":[{"T":"Parking%20fees%2C%20tolls%20and%20transportation.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":36.641,"y":26.875,"w":22.651000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20your%20Form%202106%20or%202106-EZ.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.813,"y":27.588,"w":23.842000000000002,"clr":-1,"A":"left","R":[{"T":"Travel%20expenses%20while%20away%20from%20home%20overnight.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":44.6,"y":27.588,"w":20.966999999999985,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20your%20Form%202106%20or%202106-EZ","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.797,"y":28.3,"w":16.212000000000007,"clr":-1,"A":"left","R":[{"T":"Meals%20and%20entertainment%20expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":35.623,"y":28.3,"w":22.925000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20your%20Form%202106%20or%202106-EZ.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.81,"y":29.02,"w":15.562000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20Business%20Travel%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":33.424,"y":29.02,"w":19.23,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%206%20or%2010%20and%20Lines%2011%2C%2012%20and%2013.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.209,"y":29.86,"w":14.973000000000008,"clr":-1,"A":"left","R":[{"T":"Part%20C.%20Miscellaneous%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.816,"y":35.457,"w":15.006000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20Miscellaneous%20Expenses.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.218,"y":36.207,"w":23.95300000000001,"clr":-1,"A":"left","R":[{"T":"Total%20Allowable%20PA%20Employee%20Business%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.939,"y":37.017,"w":13.614999999999998,"clr":-1,"A":"left","R":[{"T":"Direct%20Expenses%20from%20Line%205.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.939,"y":37.737,"w":18.966999999999995,"clr":-1,"A":"left","R":[{"T":"Business%20Travel%20Expenses%20from%20Line%2014.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.002,"y":38.457,"w":18.415,"clr":-1,"A":"left","R":[{"T":"Miscellaneous%20Expenses%20from%20Line%2015.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.064,"y":39.177,"w":25.303999999999995,"clr":-1,"A":"left","R":[{"T":"Office%20or%20Work%20Area%20Expenses%20from%20Line16%2C%20on%20Side%202.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.96,"y":43.534,"w":14.775000000000002,"clr":-1,"A":"left","R":[{"T":"Net%20expense%20or%20reimbursement.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.043,"y":42.049,"w":22.286000000000012,"clr":-1,"A":"left","R":[{"T":"Total%20Allowable%20Employee%20Business%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":43.001,"y":42.049,"w":10.581000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20through%20G.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.023,"y":41.329,"w":24.897000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20Depreciation%20Expenses%20from%20Line24%2C%20on%20Side%202.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.085,"y":40.609,"w":21.327999999999992,"clr":-1,"A":"left","R":[{"T":"Education%20Expenses%20from%20Line%2023%2C%20on%20Side%202.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":12.022,"y":39.889,"w":19.654999999999994,"clr":-1,"A":"left","R":[{"T":"Moving%20Expenses%20from%20Line%2019%2C%20on%20Side%202.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":49.745,"y":46.669,"w":2.928,"clr":-1,"A":"left","R":[{"T":"Side%201","S":-1,"TS":[0,13.48,1,0]}]},{"oc":"#221f1f","x":9.413,"y":6.065,"w":7.561000000000002,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20address%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":68.999,"y":6.065,"w":1.6750000000000003,"clr":-1,"A":"left","R":[{"T":"City%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":78.866,"y":6.065,"w":2.185,"clr":-1,"A":"left","R":[{"T":"State%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":87.032,"y":6.065,"w":3.5200000000000005,"clr":-1,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[1,11.04,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1007,"AM":0,"x":9.392,"y":3.914,"w":66.59,"h":0.847,"TU":"Name of taxpayer claiming expenses"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1008,"AM":0,"x":76.732,"y":3.929,"w":19.14,"h":0.833,"TU":"Social Security Number (shown first)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ENAM","EN":0},"TI":1009,"AM":0,"x":9.392,"y":5.367,"w":66.406,"h":0.833,"TU":"Employer s Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":1010,"AM":0,"x":76.732,"y":5.367,"w":19.14,"h":0.833,"TU":"Employer Identification Number","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EADDR","EN":0},"TI":1011,"AM":0,"x":9.543,"y":6.946,"w":49.743,"h":0.833,"TU":"Employer s address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ECITY","EN":0},"TI":1012,"AM":0,"x":61.48,"y":6.942,"w":15.974,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE","EN":0},"TI":1013,"AM":0,"x":78.354,"y":6.82,"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":"EZIP","EN":0},"TI":1014,"AM":0,"x":85.124,"y":6.978,"w":10.359,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCCUP","EN":0},"TI":1015,"AM":0,"x":9.412,"y":8.344,"w":66.719,"h":0.833,"TU":"Describe the duties of the job in which you incurred these expenses"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"TELE","EN":0},"TI":1016,"AM":0,"x":76.732,"y":8.344,"w":19.14,"h":0.833,"TU":"Employer s Telephone Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11T","EN":0},"TI":1017,"AM":0,"x":32.822,"y":11.605,"w":43.766,"h":0.833,"TU":"1. Union dues. List union name(s) "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":1018,"AM":0,"x":80.28,"y":11.962,"w":15.489,"h":0.833,"TU":"1. Union dues. List union amount(s) "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L12T","EN":0},"TI":1019,"AM":0,"x":19.642,"y":13.087,"w":56.946,"h":0.833,"TU":"2. Work clothes and uniforms. Description:"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":1020,"AM":0,"x":80.28,"y":13.379,"w":15.489,"h":0.833,"TU":"2. Work clothes and uniforms. Amount:"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13T","EN":0},"TI":1021,"AM":0,"x":19.642,"y":14.644,"w":56.946,"h":0.833,"TU":"3. Small tools and supplies. Description: "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":1022,"AM":0,"x":80.28,"y":14.842,"w":15.489,"h":0.833,"TU":"3. Small tools and supplies. Amount: "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14T","EN":0},"TI":1023,"AM":0,"x":19.642,"y":16.697,"w":56.946,"h":0.833,"TU":"4. Professional License fees, malpractice insurance and fidelity bond premiums. Description:"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":1024,"AM":0,"x":80.305,"y":16.981,"w":15.599,"h":0.833,"TU":"4. Professional License fees, malpractice insurance and fidelity bond premiums. Amount:"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":1025,"AM":1024,"x":80.244,"y":17.709,"w":15.599,"h":0.833,"TU":"5. Total Direct Employee Business."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAMILES","EN":0},"TI":1026,"AM":0,"x":31.298,"y":21.345,"w":7.466,"h":0.833,"TU":"Enter your total business miles"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PASMREXP","EN":0},"TI":1027,"AM":0,"x":80.184,"y":21.434,"w":15.489,"h":0.833,"TU":"6. Vehicle Expenses: Standard Mileage Rate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACARADJ","EN":0},"TI":1028,"AM":0,"x":80.075,"y":22.864,"w":15.489,"h":0.833,"TU":"7. Enter the amount from your Form 2106."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1029,"AM":0,"x":80.204,"y":23.592,"w":15.489,"h":0.833,"TU":"8. Add back the \"Inclusion Amount\" from Form 2106."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1030,"AM":0,"x":50.739,"y":24.92,"w":23.306,"h":0.833,"TU":"If not using your Form 2106, enter your allowable depreciation expenses and the method you use"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1031,"AM":0,"x":80.305,"y":24.985,"w":15.3,"h":0.833,"TU":"9. Optional Depreciation. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1032,"AM":1024,"x":80.239,"y":25.783,"w":15.489,"h":0.833,"TU":"10. Actual Travel and Mileage Expenses for PA purposes."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAPARKG","EN":0},"TI":1033,"AM":0,"x":80.294,"y":27.137,"w":15.489,"h":0.833,"TU":"11. Parking fees, tolls and transportation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PATRVL","EN":0},"TI":1034,"AM":0,"x":80.199,"y":27.892,"w":15.489,"h":0.833,"TU":"12. Travel expenses while away from home overnight."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAMEALS","EN":0},"TI":1035,"AM":0,"x":80.179,"y":28.592,"w":15.489,"h":0.833,"TU":"13. Meals and entertainment expenses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":1036,"AM":1024,"x":80.233,"y":29.32,"w":15.489,"h":0.833,"TU":"14. Total Business Travel Expenses."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MISCDESC_1_","EN":0},"TI":1037,"AM":0,"x":10.182,"y":31.98,"w":56.103,"h":0.858,"TU":"Miscellaneous Expenses Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHAMT_1_","EN":0},"TI":1038,"AM":0,"x":80.332,"y":31.999,"w":15.375,"h":0.833,"TU":"Miscellaneous Expenses Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MISCDESC_2_","EN":0},"TI":1039,"AM":0,"x":10.206,"y":32.972,"w":56.103,"h":0.858,"TU":"Miscellaneous Expenses Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHAMT_2_","EN":0},"TI":1040,"AM":0,"x":80.357,"y":32.985,"w":15.375,"h":0.833,"TU":"Miscellaneous Expenses Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MISCDESC_3_","EN":0},"TI":1041,"AM":0,"x":10.186,"y":33.945,"w":56.103,"h":0.833,"TU":"Miscellaneous Expenses Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHAMT_3_","EN":0},"TI":1042,"AM":0,"x":80.261,"y":33.904,"w":15.375,"h":0.833,"TU":"Miscellaneous Expenses Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MISCDESC_4_","EN":0},"TI":1043,"AM":0,"x":10.091,"y":34.863,"w":56.103,"h":0.833,"TU":"Miscellaneous Expenses Description"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHAMT_4_","EN":0},"TI":1044,"AM":0,"x":80.241,"y":34.822,"w":15.375,"h":0.833,"TU":"Miscellaneous Expenses Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":1045,"AM":1024,"x":80.205,"y":35.693,"w":15.489,"h":0.833,"TU":"15. Total Miscellaneous Expenses. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LCA","EN":0},"TI":1046,"AM":1024,"x":80.28,"y":37.268,"w":15.489,"h":0.833,"TU":"A. Direct Expenses from Line 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LCB","EN":0},"TI":1047,"AM":1024,"x":80.205,"y":37.988,"w":15.489,"h":0.833,"TU":"B. Business Travel Expenses from Line 14."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LCC","EN":0},"TI":1048,"AM":1024,"x":80.205,"y":38.7,"w":15.489,"h":0.833,"TU":"C. Miscellaneous Expenses from Line 15."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LCD","EN":0},"TI":1049,"AM":1024,"x":80.205,"y":39.413,"w":15.489,"h":0.833,"TU":"D. Office or Work Area Expenses from Line 16, on Side 2. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . D"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LCE","EN":0},"TI":1050,"AM":1024,"x":80.205,"y":40.125,"w":15.489,"h":0.833,"TU":"E. Moving Expenses from Line 19, on Side 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LCF","EN":0},"TI":1051,"AM":1024,"x":80.205,"y":40.838,"w":15.489,"h":0.833,"TU":"F. Education Expenses from Line 23, on Side 2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LCG","EN":0},"TI":1052,"AM":1024,"x":80.205,"y":41.55,"w":15.489,"h":0.833,"TU":"G. Total Depreciation Expenses from Line 24, on Side 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":1053,"AM":1024,"x":80.205,"y":42.263,"w":15.489,"h":0.833,"TU":"H. Total Allowable Employee Business Expenses. Add Lines A through G"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":1054,"AM":0,"x":80.205,"y":42.975,"w":15.489,"h":0.833,"TU":"I. Reimbursements"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":1055,"AM":1024,"x":80.224,"y":43.661,"w":15.489,"h":0.833,"TU":"J. Net expense or reimbursement."}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":90.948,"y":46.813,"w":4.5,"l":4.941},{"oc":"#221f1f","x":9.29,"y":46.813,"w":4.5,"l":4.95},{"oc":"#221f1f","x":9.273,"y":3.428,"w":4.5,"l":4.967},{"oc":"#221f1f","x":68.071,"y":5.731,"w":1.5,"l":27.87},{"oc":"#221f1f","x":9.281,"y":5.759,"w":0.75,"l":86.625},{"oc":"#221f1f","x":9.307,"y":7.25,"w":0.75,"l":86.599},{"oc":"#221f1f","x":9.307,"y":7.997,"w":0.75,"l":86.599},{"oc":"#221f1f","x":9.238,"y":11.053,"w":0.75,"l":86.582},{"oc":"#221f1f","x":9.238,"y":21.756,"w":0.75,"l":86.728},{"oc":"#221f1f","x":80.154,"y":19.619,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":20.337,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":20.331,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":21.05,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":21.044,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":21.762,"w":0.75,"l":15.658},{"oc":"#221f1f","x":9.238,"y":22.553,"w":0.75,"l":86.728},{"oc":"#221f1f","x":9.238,"y":28.431,"w":0.75,"l":86.728},{"oc":"#221f1f","x":80.154,"y":26.291,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":27.009,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":27.003,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":27.722,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":27.716,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":28.434,"w":0.75,"l":15.658},{"oc":"#221f1f","x":9.238,"y":29.184,"w":0.75,"l":86.728},{"oc":"#221f1f","x":9.281,"y":36.816,"w":0.75,"l":86.539},{"oc":"#221f1f","x":80.154,"y":33.959,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":34.678,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":34.672,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":35.391,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":35.384,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":36.103,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":36.097,"w":0.75,"l":15.658},{"oc":"#221f1f","x":80.154,"y":36.816,"w":0.75,"l":15.658},{"oc":"#221f1f","x":9.281,"y":43.438,"w":0.75,"l":86.685}],"VLines":[{"oc":"#221f1f","x":95.64,"y":45.781,"w":4.5,"l":1.122},{"oc":"#221f1f","x":9.539,"y":45.781,"w":4.5,"l":1.119},{"oc":"#221f1f","x":13.991,"y":2.347,"w":4.5,"l":1.166},{"oc":"#221f1f","x":76.57,"y":5.751,"w":0.75,"l":1.499},{"oc":"#221f1f","x":95.812,"y":19.619,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":19.619,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":20.331,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":20.331,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":21.044,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":21.044,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":26.291,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":26.291,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":27.003,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":27.003,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":27.716,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":27.716,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":33.959,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":33.959,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":34.672,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":34.672,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":35.384,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":35.384,"w":0.75,"l":0.719},{"oc":"#221f1f","x":95.812,"y":36.097,"w":0.75,"l":0.719},{"oc":"#221f1f","x":80.154,"y":36.097,"w":0.75,"l":0.719}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.24,"y":11.7,"w":70.888,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.211,"y":11.7,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":11.73,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":95.782,"y":11.73,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.211,"y":12.413,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":12.443,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":12.443,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.211,"y":13.125,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":13.155,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":13.155,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.211,"y":13.838,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":13.867,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":95.782,"y":13.867,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.211,"y":14.55,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":14.58,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":14.58,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.211,"y":15.262,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":15.293,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":15.293,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.211,"y":15.975,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":16.005,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":95.782,"y":16.005,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.211,"y":16.688,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":16.718,"w":0.083,"h":0.682,"clr":-1},{"oc":"#221f1f","x":95.782,"y":16.718,"w":0.082,"h":0.682,"clr":-1},{"oc":"#221f1f","x":80.211,"y":17.4,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":80.128,"y":17.43,"w":0.083,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.211,"y":18.112,"w":15.572,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.782,"y":17.43,"w":0.082,"h":0.683,"clr":-1},{"oc":"#221f1f","x":80.499,"y":19.44,"w":9.199,"h":0.038,"clr":-1},{"oc":"#221f1f","x":80.004,"y":23.91,"w":9.178,"h":0.037,"clr":-1},{"oc":"#221f1f","x":79.984,"y":24.608,"w":9.178,"h":0.037,"clr":-1},{"oc":"#221f1f","x":80.025,"y":25.357,"w":9.178,"h":0.038,"clr":-1},{"oc":"#221f1f","x":45.004,"y":33.868,"w":20.481,"h":0.037,"clr":-1},{"oc":"#221f1f","x":80.025,"y":33.743,"w":15.881,"h":0.037,"clr":-1},{"oc":"#221f1f","x":9.24,"y":37.643,"w":21.471,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.793,"y":37.643,"w":9.384,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.26,"y":37.643,"w":13.798,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.141,"y":37.643,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.063,"y":37.643,"w":13.86,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.005,"y":37.643,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.711,"y":37.672,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":40.178,"y":37.672,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":54.058,"y":37.672,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":67.98,"y":37.672,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":81.923,"y":37.672,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":95.927,"y":37.672,"w":0.083,"h":0.81,"clr":-1},{"oc":"#221f1f","x":9.24,"y":38.482,"w":21.471,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.793,"y":38.482,"w":9.384,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.26,"y":38.482,"w":13.798,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.141,"y":38.482,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.063,"y":38.482,"w":13.86,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.005,"y":38.482,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.711,"y":38.513,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":40.178,"y":38.513,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":54.058,"y":38.513,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":67.98,"y":38.513,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.923,"y":38.513,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":95.927,"y":38.513,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.24,"y":39.27,"w":21.471,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.793,"y":39.27,"w":9.384,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.26,"y":39.27,"w":13.798,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.141,"y":39.27,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.063,"y":39.27,"w":13.86,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.005,"y":39.27,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.711,"y":39.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":40.178,"y":39.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":54.058,"y":39.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":67.98,"y":39.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.923,"y":39.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":95.927,"y":39.3,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.24,"y":40.057,"w":21.471,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.793,"y":40.057,"w":9.384,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.26,"y":40.057,"w":13.798,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.141,"y":40.057,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.063,"y":40.057,"w":13.86,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.005,"y":40.057,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.711,"y":40.088,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":40.178,"y":40.088,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":54.058,"y":40.088,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":67.98,"y":40.088,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.923,"y":40.088,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":95.927,"y":40.088,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.24,"y":40.845,"w":21.471,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.793,"y":40.845,"w":9.384,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.26,"y":40.845,"w":13.798,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.141,"y":40.845,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.063,"y":40.845,"w":13.86,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.005,"y":40.845,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.711,"y":40.875,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":40.178,"y":40.875,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":54.058,"y":40.875,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":67.98,"y":40.875,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":81.923,"y":40.875,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":95.927,"y":40.875,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":9.24,"y":41.632,"w":21.471,"h":0.03,"clr":-1},{"oc":"#221f1f","x":30.793,"y":41.632,"w":9.384,"h":0.03,"clr":-1},{"oc":"#221f1f","x":40.26,"y":41.632,"w":13.798,"h":0.03,"clr":-1},{"oc":"#221f1f","x":54.141,"y":41.632,"w":13.839,"h":0.03,"clr":-1},{"oc":"#221f1f","x":68.063,"y":41.632,"w":13.86,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.005,"y":41.632,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.116,"y":42.42,"w":72.806,"h":0.03,"clr":-1},{"oc":"#221f1f","x":81.923,"y":41.663,"w":0.083,"h":0.757,"clr":-1},{"oc":"#221f1f","x":82.005,"y":42.42,"w":13.922,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.927,"y":41.663,"w":0.083,"h":0.757,"clr":-1}],"Texts":[{"oc":"#221f1f","x":20.004,"y":45.915,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301810022","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":45.915,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301810022","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":49.374,"y":2.183,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301810022","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":35.431,"y":4.83,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23.79,0,0]}]},{"oc":"#221f1f","x":9.21,"y":7.731999999999999,"w":1.538,"clr":-1,"A":"left","R":[{"T":"D1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.062,"y":7.731999999999999,"w":1.4929999999999999,"clr":-1,"A":"left","R":[{"T":"No%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.202,"y":8.483,"w":1.538,"clr":-1,"A":"left","R":[{"T":"D2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.016,"y":8.483,"w":1.538,"clr":-1,"A":"left","R":[{"T":"No%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.198,"y":9.233,"w":1.538,"clr":-1,"A":"left","R":[{"T":"D3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.139,"y":9.233,"w":1.266,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.145,"y":11.475,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.298,"y":11.475,"w":22.864999999999963,"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.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":71.154,"y":11.475,"w":4.8279999999999985,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.187,"y":11.475,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":11.475,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.166,"y":12.187,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":23.778,"y":12.187,"w":12.212000000000007,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.61,"y":12.187,"w":16.409000000000002,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.267,"y":12.187,"w":9.940000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.19,"y":12.187,"w":0.556,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":12.187,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.207,"y":12.907,"w":0.794,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":35.244,"y":12.907,"w":25.275999999999982,"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.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.605,"y":12.907,"w":5.649000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.248,"y":12.907,"w":0.5,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":12.907,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.124,"y":13.62,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.94,"y":13.62,"w":3.8000000000000007,"clr":-1,"A":"left","R":[{"T":"Utilities.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":17.674,"y":13.62,"w":30.396999999999917,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":61.212,"y":13.62,"w":12.212000000000007,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.187,"y":13.62,"w":0.556,"clr":-1,"A":"left","R":[{"T":"d","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":13.62,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.124,"y":14.333,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"e.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.541,"y":14.333,"w":16.188000000000017,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.714,"y":14.333,"w":13.34800000000001,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.029,"y":14.333,"w":9.372,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.187,"y":14.333,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":14.333,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.578,"y":15.045,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":"f.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.13,"y":15.045,"w":17.040000000000013,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.407,"y":15.045,"w":0.8190000000000001,"clr":-1,"A":"left","R":[{"T":"f.%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.248,"y":15.758,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"g.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.344,"y":15.758,"w":16.188000000000017,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":76.495,"y":15.758,"w":0.807,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.187,"y":15.758,"w":0.556,"clr":-1,"A":"left","R":[{"T":"g","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":15.758,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.124,"y":16.477,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"h.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":24.541,"y":16.477,"w":29.251999999999967,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.265,"y":16.477,"w":6.531999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.443,"y":16.477,"w":3.1239999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.187,"y":16.477,"w":0.556,"clr":-1,"A":"left","R":[{"T":"h","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":16.477,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.661,"y":17.182,"w":0.504,"clr":-1,"A":"left","R":[{"T":"i.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":15.198,"y":17.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.918,"y":17.182,"w":22.435999999999993,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.464,"y":17.182,"w":2.556,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.469,"y":17.182,"w":0.222,"clr":-1,"A":"left","R":[{"T":"i","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.95,"y":17.182,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.454,"y":17.91,"w":0.504,"clr":-1,"A":"left","R":[{"T":"j.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.864,"y":18.638,"w":21.299999999999997,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":72.883,"y":18.638,"w":3.1239999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.61,"y":18.638,"w":0.504,"clr":-1,"A":"left","R":[{"T":"j.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.445,"y":18.638,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":10.207,"y":19.245,"w":0.794,"clr":-1,"A":"left","R":[{"T":"k.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.239,"y":19.245,"w":16.409000000000002,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.165,"y":19.245,"w":0.5,"clr":-1,"A":"left","R":[{"T":"k","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.867,"y":19.245,"w":0.546,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":10.392,"y":19.972,"w":0.504,"clr":-1,"A":"left","R":[{"T":"l.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":47.95,"y":19.972,"w":17.484999999999996,"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":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":73.154,"y":19.972,"w":2.556,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.393,"y":19.972,"w":0.222,"clr":-1,"A":"left","R":[{"T":"l","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":78.702,"y":19.972,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":9.238,"y":20.745,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":35.886,"y":20.745,"w":1.7670000000000001,"clr":-1,"A":"left","R":[{"T":"Add","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":38.752,"y":20.745,"w":2.37,"clr":-1,"A":"left","R":[{"T":"Lines","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":42.444,"y":20.745,"w":0.5,"clr":-1,"A":"left","R":[{"T":"k","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.558,"y":20.745,"w":1.6560000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.28,"y":20.745,"w":0.739,"clr":-1,"A":"left","R":[{"T":"l.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":47.993,"y":20.745,"w":20.17499999999998,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.197,"y":20.745,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.217,"y":23.107,"w":1.489,"clr":-1,"A":"left","R":[{"T":"E1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.678,"y":23.107,"w":5.963999999999998,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.094,"y":23.107,"w":11.076000000000004,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.217,"y":23.805,"w":1.489,"clr":-1,"A":"left","R":[{"T":"E2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":54.914,"y":23.805,"w":15.620000000000015,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":76.303,"y":23.805,"w":1.8830000000000005,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.545,"y":23.805,"w":2.343,"clr":-1,"A":"left","R":[{"T":"miles","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.217,"y":24.555,"w":1.489,"clr":-1,"A":"left","R":[{"T":"E3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.544,"y":24.555,"w":19.028000000000006,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":72.511,"y":24.555,"w":4.8279999999999985,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20%20%20%20%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.589,"y":24.555,"w":2.343,"clr":-1,"A":"left","R":[{"T":"miles","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.234,"y":26.048,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.967,"y":26.048,"w":13.181000000000004,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.23,"y":26.048,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.23,"y":26.798,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":74.03,"y":26.798,"w":1.8830000000000005,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.247,"y":26.798,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.205,"y":27.533,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.804,"y":27.533,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":41.893,"y":27.533,"w":25.84399999999998,"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.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.203,"y":27.533,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.202,"y":28.973,"w":1.433,"clr":-1,"A":"left","R":[{"T":"F1.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.168,"y":28.973,"w":1.971,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":88.876,"y":28.973,"w":1.76,"clr":-1,"A":"left","R":[{"T":"NO%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.194,"y":30.541,"w":1.433,"clr":-1,"A":"left","R":[{"T":"F2.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.657,"y":30.541,"w":2.016,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.032,"y":30.541,"w":1.7149999999999999,"clr":-1,"A":"left","R":[{"T":"NO%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.192,"y":31.32,"w":1.433,"clr":-1,"A":"left","R":[{"T":"F3.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.652,"y":31.32,"w":1.971,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":89.026,"y":31.32,"w":1.7149999999999999,"clr":-1,"A":"left","R":[{"T":"NO%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.237,"y":33.698,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.344,"y":33.698,"w":30.387999999999963,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":62.594,"y":33.698,"w":10.508000000000003,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.28,"y":33.698,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.237,"y":34.455,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":23.677,"y":34.455,"w":22.057999999999968,"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.04,0,0]}]},{"oc":"#221f1f","x":55.038,"y":34.455,"w":6.531999999999997,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.144,"y":34.455,"w":9.372,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.302,"y":34.455,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.239,"y":35.182,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":22.893,"y":35.182,"w":30.387999999999963,"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.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":64.144,"y":35.182,"w":9.372,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.302,"y":35.182,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.239,"y":35.895,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":45.705,"y":35.895,"w":23.00399999999999,"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.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.199,"y":35.895,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.155,"y":41.482,"w":1.3780000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":57.912,"y":41.482,"w":2.2720000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":60.965,"y":41.482,"w":12.374000000000004,"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","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":79.218,"y":41.482,"w":1.3330000000000002,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.976,"y":9.233,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":20.478,"y":2.64,"w":8.723999999999998,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20UE","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":76.765,"y":5.475,"w":13.511999999999993,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number%20(shown%20first)","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":13.631,"y":37.403,"w":10.019000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20Description%20of%20property","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":31.224,"y":37.403,"w":6.675,"clr":-1,"A":"left","R":[{"T":"(b)%20Date%20acquired","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":41.763,"y":37.403,"w":8.526000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20Cost%20or%20other%20basis","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":55.231,"y":37.403,"w":9.256000000000004,"clr":-1,"A":"left","R":[{"T":"(d)%20Depreciation%20method","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":69.091,"y":37.403,"w":9.349000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20Section%20179%20expense","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":82.786,"y":37.403,"w":9.843000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20Depreciation%20expenses","S":-1,"TS":[1,9.96,0,0]}]},{"oc":"#221f1f","x":20.478,"y":3.218,"w":9.777999999999997,"clr":-1,"A":"left","R":[{"T":"Allowable%20Employee","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.478,"y":3.7720000000000002,"w":9.325000000000001,"clr":-1,"A":"left","R":[{"T":"Business%20Expenses","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.478,"y":4.335,"w":7.779999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20Schedule%20UE","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":30.068,"y":4.335,"w":3.1950000000000003,"clr":-1,"A":"left","R":[{"T":"(06-13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.478,"y":4.823,"w":12.620000000000003,"clr":-1,"A":"left","R":[{"T":"PA%20DEPARTMENT%20OF%20REVENUE","S":56,"TS":[1,9,1,0]}]},{"oc":"#221f1f","x":85.385,"y":4.853,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":11.808,"y":7.731999999999999,"w":48.62600000000004,"clr":-1,"A":"left","R":[{"T":"Does%20your%20employer%20require%20you%20to%20maintain%20a%20suitable%20work%20area%20away%20from%20the%20employer%E2%80%99s%20premises%3F%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.8,"y":8.483,"w":47.907999999999916,"clr":-1,"A":"left","R":[{"T":"Is%20this%20work%20area%20the%20principal%20place%20where%20you%20perform%20the%20duties%20of%20your%20employment%3F%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.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":9.233,"w":41.23599999999997,"clr":-1,"A":"left","R":[{"T":"Do%20you%20use%20this%20work%20area%20regularly%20and%20exclusively%20to%20perform%20the%20duties%20of%20your%20employment%3F","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.193,"y":9.99,"w":61.38199999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20answer%20YES%20to%20ALL%20three%20questions%2C%20continue.%20If%20you%20answer%20NO%20to%20ANY%20question%2C%20you%20may%20not%20claim%20office%20or%20work%20area%20expenses.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.94,"y":12.907,"w":16.695,"clr":-1,"A":"left","R":[{"T":"Mortgage%20interest%20(home%20owners%20only)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.94,"y":16.478,"w":8.437000000000001,"clr":-1,"A":"left","R":[{"T":"Rent%20(renters%20only).%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.775,"y":29.753,"w":39.41099999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20answer%20YES%2C%20continue.%20If%20you%20answer%20NO%2C%20you%20may%20not%20claim%20education%20expenses.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.781,"y":28.973,"w":44.28399999999995,"clr":-1,"A":"left","R":[{"T":"Did%20your%20employer%20(or%20law)require%20that%20you%20obtain%20this%20education%20to%20retain%20your%20present%20position%20or%20job%3F","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.299,"y":5.475,"w":13.173000000000004,"clr":-1,"A":"left","R":[{"T":"Name%20of%20taxpayer%20claiming%20expenses","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.217,"y":7.065,"w":17.968999999999994,"clr":-1,"A":"left","R":[{"T":"Part%20D.%20Office%20or%20Work%20Area%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":34.625,"y":7.065,"w":37.79299999999999,"clr":-1,"A":"left","R":[{"T":"You%20must%20answer%20ALL%20three%20questions%20or%20the%20Department%20will%20disallow%20your%20expenses.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.647,"y":7.731999999999999,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.748,"y":8.483,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.192,"y":10.83,"w":16.653999999999996,"clr":-1,"A":"left","R":[{"T":"Actual%20Office%20or%20Work%20Area%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":34.332,"y":10.83,"w":32.662,"clr":-1,"A":"left","R":[{"T":"Enter%20expenses%20for%20the%20entire%20year%20and%20then%20calculate%20the%20business%20portion.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.96,"y":11.475,"w":18.572999999999997,"clr":-1,"A":"left","R":[{"T":"Depreciation%20expense%20(homeowners%20only)%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.981,"y":12.188,"w":7.932000000000001,"clr":-1,"A":"left","R":[{"T":"Real%20estate%20taxes.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.919,"y":14.333,"w":8.594000000000001,"clr":-1,"A":"left","R":[{"T":"Property%20insurance.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.001,"y":15.045,"w":30.635,"clr":-1,"A":"left","R":[{"T":"Property%20maintenance%20expenses%20from%20statement.%20See%20the%20instructions.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.043,"y":15.758,"w":29.695,"clr":-1,"A":"left","R":[{"T":"Other%20apportionable%20expenses%20from%20statement.See%20the%20instructions.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.022,"y":17.183,"w":2.389,"clr":-1,"A":"left","R":[{"T":"Total","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":15.879000000000001,"y":17.183,"w":18.947000000000006,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20a%20through%20h.%20Enter%20the%20total%20here.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.815,"y":17.91,"w":15.764999999999997,"clr":-1,"A":"left","R":[{"T":"Business%20percentage%20of%20property.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":34.152,"y":17.91,"w":34.39700000000001,"clr":-1,"A":"left","R":[{"T":"Divide%20the%20total%20square%20footage%20of%20your%20work%20area%20by%20the%20total%20squareb%20footage","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.166,"y":18.638,"w":21.920999999999996,"clr":-1,"A":"left","R":[{"T":"of%20your%20entire%20property.Round%20to%202%20decimal%20places.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.96,"y":19.245,"w":11.079000000000002,"clr":-1,"A":"left","R":[{"T":"Apportioned%20expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":27.531,"y":19.245,"w":19.044000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%20i%20by%20the%20percentage%20on%20Line%20j.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.754,"y":19.972,"w":25.956000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20office%20supplies%20from%20statement.%20See%20the%20instructions.%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.816,"y":20.745,"w":17.28300000000001,"clr":-1,"A":"left","R":[{"T":"Total%20Office%20or%20Work%20Area%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.217,"y":21.585,"w":12.349,"clr":-1,"A":"left","R":[{"T":"Part%20E.%20Moving%20Expenses.%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":89.566,"y":23.107,"w":2.333,"clr":-1,"A":"left","R":[{"T":"miles","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.218,"y":22.372,"w":6.724,"clr":-1,"A":"left","R":[{"T":"Distance%20Test.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":11.773,"y":23.107,"w":31.125000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20miles%20from%20your%20old%20home%20to%20your%20new%20work%20place.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.773,"y":23.805,"w":30.351000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20miles%20from%20your%20old%20home%20to%20your%20old%20workplace.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.773,"y":24.555,"w":24.512000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20E2%20from%20Line%20E1%20and%20enter%20the%20difference.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.898,"y":25.297,"w":48.57499999999997,"clr":-1,"A":"left","R":[{"T":"If%20Line%20E3%20is%2035%20miles%20or%20more%2Ccontinue.%20If%20it%20is%20not%20at%20least%2035%20miles%2C%20you%20may%20not%20claim%20any%20moving%20expenses.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.812,"y":26.048,"w":33.01700000000002,"clr":-1,"A":"left","R":[{"T":"Transportation%20expenses%20in%20moving%20household%20goods%20and%20personal%20effects.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.808,"y":26.798,"w":44.07499999999996,"clr":-1,"A":"left","R":[{"T":"Travel%2C%20meals%2C%20and%20lodging%20expenses%20during%20the%20actual%20move%20from%20your%20old%20home%20to%20your%20new%20home.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":12.525,"y":27.533,"w":10.802000000000001,"clr":-1,"A":"left","R":[{"T":"otal%20Moving%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":27.766,"y":27.533,"w":9.645,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2017%20and%2018.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.202,"y":28.253,"w":13.340999999999998,"clr":-1,"A":"left","R":[{"T":"Part%20F.%20Education%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":27.993,"y":28.253,"w":37.79299999999999,"clr":-1,"A":"left","R":[{"T":"You%20must%20answer%20ALL%20three%20questions%20or%20the%20Department%20will%20disallow%20your%20expenses.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.772,"y":30.541,"w":42.00399999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20need%20this%20education%20to%20meet%20the%20entry%20level%20o%20rminimum%20requirements%20to%20obtain%20your%20job%3F","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.729,"y":31.32,"w":41.59600000000002,"clr":-1,"A":"left","R":[{"T":"Will%20this%20education%2C%20program%20or%20course%20of%20study%20qualify%20you%20for%20a%20new%20business%20or%20profession%3F%20%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.187,"y":32.093,"w":58.11799999999993,"clr":-1,"A":"left","R":[{"T":"If%20you%20answer%20NO%20to%20questions%20F2%20and%20F3%2C%20continue.%20If%20you%20answer%20YES%20to%20either%20question%2C%20you%20may%20not%20claim%20education%20expenses.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.795,"y":32.94,"w":23.285000000000004,"clr":-1,"A":"left","R":[{"T":"Name%20of%20college%2C%20university%20or%20educational%20institution%3A%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.029,"y":32.94,"w":7.217000000000001,"clr":-1,"A":"left","R":[{"T":"Course%20of%20study%3A","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.816,"y":33.698,"w":6.614000000000001,"clr":-1,"A":"left","R":[{"T":"Tuition%20or%20fees.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.816,"y":34.455,"w":8.041000000000002,"clr":-1,"A":"left","R":[{"T":"Course%20materials.%20","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.817,"y":35.182,"w":7.614000000000001,"clr":-1,"A":"left","R":[{"T":"Travel%20expenses.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.817,"y":35.895,"w":12.726000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20Education%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":29.514,"y":35.895,"w":11.078,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2020%20through%2022.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.219,"y":36.615,"w":14.718999999999998,"clr":-1,"A":"left","R":[{"T":"Part%20G.%20Depreciation%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":30.131,"y":36.615,"w":2.834,"clr":-1,"A":"left","R":[{"T":"PAlaw","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":34.453,"y":36.615,"w":2.168,"clr":-1,"A":"left","R":[{"T":"does","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":37.871,"y":36.615,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":40.212,"y":36.615,"w":2.278,"clr":-1,"A":"left","R":[{"T":"allow","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":43.765,"y":36.615,"w":1.612,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":46.396,"y":36.615,"w":3.0570000000000004,"clr":-1,"A":"left","R":[{"T":"federal","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":51.038,"y":36.615,"w":2.724,"clr":-1,"A":"left","R":[{"T":"bonus","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.246,"y":36.615,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"depreciation","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":63.183,"y":36.615,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":65.916,"y":36.615,"w":2.277,"clr":-1,"A":"left","R":[{"T":"limits","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":69.464,"y":36.615,"w":1.722,"clr":-1,"A":"left","R":[{"T":"IRC","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":72.269,"y":36.615,"w":3.3350000000000004,"clr":-1,"A":"left","R":[{"T":"Section","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":77.304,"y":36.615,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"179","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":80.017,"y":36.615,"w":4.558000000000001,"clr":-1,"A":"left","R":[{"T":"expensing","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":86.745,"y":36.615,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":88.304,"y":36.615,"w":3.8920000000000003,"clr":-1,"A":"left","R":[{"T":"%2425%2C000.","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":11.733,"y":41.483,"w":13.949000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20Depreciation%20Expenses.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":31.182,"y":41.483,"w":18.621000000000006,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20from%20columns%20(e)%20and%20(f).","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.745,"y":43.995,"w":2.928,"clr":-1,"A":"left","R":[{"T":"Side%202","S":-1,"TS":[0,13.48,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1056,"AM":1024,"x":9.416,"y":6.464,"w":67.114,"h":0.833,"TU":"Name of taxpayer claiming expenses"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1057,"AM":1024,"x":76.757,"y":6.479,"w":19.181,"h":0.833,"TU":"Social Security Number (shown first)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CA","EN":0},"TI":1064,"AM":0,"x":80.155,"y":11.734,"w":15.525,"h":0.833,"TU":"a. Deperciation expense"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CB","EN":0},"TI":1065,"AM":0,"x":80.206,"y":12.462,"w":15.525,"h":0.833,"TU":"b. Real estate taxes"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CC","EN":0},"TI":1066,"AM":0,"x":80.186,"y":13.162,"w":15.525,"h":0.833,"TU":"c. Mortgage interest"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CD","EN":0},"TI":1067,"AM":0,"x":80.166,"y":13.863,"w":15.525,"h":0.833,"TU":"d. Utilities","V":"100"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CE","EN":0},"TI":1068,"AM":0,"x":80.221,"y":14.618,"w":15.525,"h":0.833,"TU":"e. Property insurance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CF","EN":0},"TI":1069,"AM":0,"x":80.201,"y":15.319,"w":15.525,"h":0.833,"TU":"f. Property maintenance expense from statement"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CG","EN":0},"TI":1070,"AM":0,"x":80.256,"y":16.019,"w":15.525,"h":0.833,"TU":"g. Other apportionable expenses from statement"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CH","EN":0},"TI":1071,"AM":0,"x":80.236,"y":16.72,"w":15.525,"h":0.833,"TU":"h. Rent","V":"100"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CI","EN":0},"TI":1072,"AM":1024,"x":80.365,"y":17.42,"w":15.525,"h":0.833,"TU":"i. Total."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CJ","EN":0},"TI":1073,"AM":0,"x":80.414,"y":18.707,"w":9.261,"h":0.833,"TU":"j. Business percentage of property"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CK","EN":0},"TI":1074,"AM":1024,"x":80.27,"y":19.672,"w":15.525,"h":0.833,"TU":"k. Apportioned expenses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CL","EN":0},"TI":1075,"AM":0,"x":80.4,"y":20.4,"w":15.376,"h":0.833,"TU":"I. Total office supplies from statement."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":1076,"AM":1024,"x":80.305,"y":21.155,"w":15.525,"h":0.833,"TU":"16. Total Office or Work area Expenses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DA","EN":0},"TI":1077,"AM":0,"x":80.242,"y":23.209,"w":9.261,"h":0.833,"TU":"E1. Enter the number of miles from your old home to your new workplace"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DB","EN":0},"TI":1078,"AM":0,"x":80.22,"y":23.922,"w":9.261,"h":0.833,"TU":"E2. Enter the number of miles from your old home to your old workplace"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DC","EN":0},"TI":1079,"AM":1024,"x":80.242,"y":24.719,"w":9.261,"h":0.833,"TU":"E3. Subtract Line E2 from Line E1 and enter the difference"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":1080,"AM":0,"x":80.241,"y":26.305,"w":15.525,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":1081,"AM":0,"x":80.206,"y":27.054,"w":15.525,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":1082,"AM":1024,"x":80.261,"y":27.728,"w":15.525,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":1089,"AM":0,"x":45.056,"y":33.159,"w":20.522,"h":0.833,"TU":"Name of college, university or educational institution"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":1090,"AM":0,"x":80.242,"y":33.097,"w":15.819,"h":0.833,"TU":"Course of study"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":1091,"AM":0,"x":80.209,"y":33.979,"w":15.819,"h":0.833,"TU":"20. Tuition or fees"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":1092,"AM":0,"x":80.189,"y":34.734,"w":15.819,"h":0.833,"TU":"21. Course material"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":1093,"AM":0,"x":80.169,"y":35.407,"w":15.819,"h":0.833,"TU":"22. Travel expenses"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":1094,"AM":1024,"x":80.224,"y":36.217,"w":15.819,"h":0.833,"TU":"23. Total Education Expenses"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_1_","EN":0},"TI":1095,"AM":0,"x":9.416,"y":38.609,"w":21.347,"h":0.833,"TU":"(a) Description of property_Row_1"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PGDATE_1_","EN":0},"TI":1096,"AM":0,"x":30.99,"y":38.582,"w":9.24,"h":0.833,"TU":"(b) Date acquired_Row_1","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_1_","EN":0},"TI":1097,"AM":0,"x":40.457,"y":38.609,"w":13.654,"h":0.833,"TU":"(c) Cost or other basis_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"METH_1_","EN":0},"TI":1098,"AM":0,"x":54.337,"y":38.609,"w":13.716,"h":0.833,"TU":"(d) Depreciation method_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC179_1_","EN":0},"TI":1099,"AM":0,"x":68.133,"y":38.567,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPR_1_","EN":0},"TI":1100,"AM":0,"x":82.202,"y":38.609,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_2_","EN":0},"TI":1101,"AM":0,"x":9.416,"y":39.397,"w":21.347,"h":0.833,"TU":"(a) Description of property_Row_2"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PGDATE_2_","EN":0},"TI":1102,"AM":0,"x":30.99,"y":39.397,"w":9.24,"h":0.833,"TU":"(b) Date acquired_Row_2","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_2_","EN":0},"TI":1103,"AM":0,"x":40.457,"y":39.397,"w":13.654,"h":0.833,"TU":"(c) Cost or other basis_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"METH_2_","EN":0},"TI":1104,"AM":0,"x":54.337,"y":39.397,"w":13.716,"h":0.833,"TU":"(d) Depreciation method_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC179_2_","EN":0},"TI":1105,"AM":0,"x":68.133,"y":39.354,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPR_2_","EN":0},"TI":1106,"AM":0,"x":82.202,"y":39.397,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_3_","EN":0},"TI":1107,"AM":0,"x":9.491,"y":40.184,"w":21.347,"h":0.833,"TU":"(a) Description of property_Row_3"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PGDATE_3_","EN":0},"TI":1108,"AM":0,"x":30.99,"y":40.157,"w":9.24,"h":0.833,"TU":"(b) Date acquired_Row_3","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_3_","EN":0},"TI":1109,"AM":0,"x":40.457,"y":40.184,"w":13.654,"h":0.833,"TU":"(c) Cost or other basis_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"METH_3_","EN":0},"TI":1110,"AM":0,"x":54.337,"y":40.184,"w":13.716,"h":0.833,"TU":"(d) Depreciation method_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC179_3_","EN":0},"TI":1111,"AM":0,"x":68.133,"y":40.142,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPR_3_","EN":0},"TI":1112,"AM":0,"x":82.202,"y":40.184,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC_4_","EN":0},"TI":1113,"AM":0,"x":9.416,"y":40.972,"w":21.347,"h":0.833,"TU":"(a) Description of property_Row_4"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"PGDATE_4_","EN":0},"TI":1114,"AM":0,"x":30.99,"y":40.972,"w":9.24,"h":0.833,"TU":"(b) Date acquired_Row_4","MV":"mmddyyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COST_4_","EN":0},"TI":1115,"AM":0,"x":40.457,"y":40.999,"w":13.654,"h":0.833,"TU":"(c) Cost or other basis_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"METH_4_","EN":0},"TI":1116,"AM":0,"x":54.337,"y":40.972,"w":13.716,"h":0.833,"TU":"(d) Depreciation method_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC179_4_","EN":0},"TI":1117,"AM":0,"x":68.133,"y":40.929,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPR_4_","EN":0},"TI":1118,"AM":0,"x":82.202,"y":40.972,"w":13.695,"h":0.833,"TU":"(e) Section 179 expense_Row_4"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":1119,"AM":1024,"x":82.052,"y":41.732,"w":14.002,"h":0.833,"TU":"24. Total Depreciation Expenses. "}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1Y","EN":0},"TI":1058,"AM":0,"x":83.926,"y":7.933,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1N","EN":0},"TI":1059,"AM":0,"x":91.588,"y":7.956,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"CX1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2Y","EN":0},"TI":1060,"AM":0,"x":83.931,"y":8.657,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2N","EN":0},"TI":1061,"AM":0,"x":91.623,"y":8.758,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"CX2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3Y","EN":0},"TI":1062,"AM":0,"x":83.966,"y":9.404,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C3N","EN":0},"TI":1063,"AM":0,"x":91.583,"y":9.452,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"CX3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"E1Y","EN":0},"TI":1083,"AM":0,"x":83.851,"y":29.182,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"E1N","EN":0},"TI":1084,"AM":0,"x":91.243,"y":29.229,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"E1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"E2Y","EN":0},"TI":1085,"AM":0,"x":84.036,"y":30.692,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"E2N","EN":0},"TI":1086,"AM":0,"x":91.502,"y":30.657,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"E2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"E3Y","EN":0},"TI":1087,"AM":0,"x":83.995,"y":31.44,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"E3N","EN":0},"TI":1088,"AM":0,"x":91.462,"y":31.487,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"E3RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/VOUCH.content.txt b/test/data/pa/form/VOUCH.content.txt new file mode 100755 index 00000000..0a044ff7 --- /dev/null +++ b/test/data/pa/form/VOUCH.content.txt @@ -0,0 +1,24 @@ +For use with your 2013 Annual Pennsylvania Tax Return +Your Social Security No. Spouse's Social Security No. +P.O. Box, Apt, Suite, Floor, Rural Route No., etc +Payment Amount +$ +Make check or money order +payable to the Pennsylvania +Department of Revenue +Last Name +Your First Name +Your Middle Initial +Spouse's Last Name +Spouse's First Name +Middle Initial +City +State +ZIP Code +Telephone +Form +Pennsylvania +PA-V +Payment Voucher +2013 +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/VOUCH.fields.json b/test/data/pa/form/VOUCH.fields.json new file mode 100755 index 00000000..01dcdde2 --- /dev/null +++ b/test/data/pa/form/VOUCH.fields.json @@ -0,0 +1 @@ +[{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"RT","type":"mask","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"TFNAME","type":"alpha","calc":true,"value":""},{"id":"TPMI","type":"mask","calc":true,"value":""},{"id":"SLNAME","type":"alpha","calc":true,"value":""},{"id":"SFNAME","type":"alpha","calc":true,"value":""},{"id":"SPMI","type":"mask","calc":true,"value":""},{"id":"ADDR1","type":"alpha","calc":true,"value":""},{"id":"ADDR2","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"PHONE","type":"phone","calc":true,"value":""},{"id":"AMOUNT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/VOUCH.json b/test/data/pa/form/VOUCH.json new file mode 100755 index 00000000..54d553e6 --- /dev/null +++ b/test/data/pa/form/VOUCH.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"paiz3401.pfm : default","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":12.547,"y":3.938,"w":79.571,"h":0.06,"clr":0},{"x":73.391,"y":12,"w":18.645,"h":0.03,"clr":0},{"x":12.547,"y":15.75,"w":79.489,"h":0.03,"clr":0}],"Texts":[{"x":29.395,"y":2.689,"w":26.67500000000001,"clr":0,"A":"left","R":[{"T":"For%20use%20with%20your%202013%20Annual%20Pennsylvania%20Tax%20Return","S":-1,"TS":[2,13.96,1,0]}]},{"x":14.7,"y":5.689,"w":11.366999999999999,"clr":0,"A":"left","R":[{"T":"Your%20Social%20Security%20No.","S":-1,"TS":[2,10.98,0,0]}]},{"x":50.796,"y":5.689,"w":13.405,"clr":0,"A":"left","R":[{"T":"Spouse's%20Social%20Security%20No.","S":-1,"TS":[2,10.98,0,0]}]},{"x":14.7,"y":10.251,"w":22.547,"clr":0,"A":"left","R":[{"T":"P.O.%20Box%2C%20Apt%2C%20Suite%2C%20Floor%2C%20Rural%20Route%20No.%2C%20etc","S":-1,"TS":[2,10.98,0,0]}]},{"x":71.419,"y":10.001,"w":8.007,"clr":0,"A":"left","R":[{"T":"Payment%20Amount","S":-1,"TS":[2,10.98,0,0]}]},{"x":71.759,"y":11.126,"w":0.6,"clr":0,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,12.96,0,0]}]},{"x":71.766,"y":12.516,"w":99.14400000000002,"clr":0,"A":"left","R":[{"T":"Make%20check%20or%20money%20order","S":-1,"TS":[0,11,0,0]}]},{"x":71.868,"y":13.205,"w":100.05599999999998,"clr":0,"A":"left","R":[{"T":"payable%20to%20the%20Pennsylvania","S":-1,"TS":[0,11,0,0]}]},{"x":71.85,"y":14.025,"w":84.92800000000003,"clr":0,"A":"left","R":[{"T":"Department%20of%20Revenue","S":-1,"TS":[0,11,0,0]}]},{"x":14.7,"y":7.189,"w":4.978,"clr":0,"A":"left","R":[{"T":"Last%20Name","S":-1,"TS":[2,10.98,0,0]}]},{"x":50.794,"y":7.189,"w":7.58,"clr":0,"A":"left","R":[{"T":"Your%20First%20Name","S":-1,"TS":[2,10.98,0,0]}]},{"x":71.42,"y":7.189,"w":8.376999999999999,"clr":0,"A":"left","R":[{"T":"Your%20Middle%20Initial","S":-1,"TS":[2,10.98,0,0]}]},{"x":14.7,"y":8.689,"w":9.525999999999998,"clr":0,"A":"left","R":[{"T":"Spouse's%20Last%20Name","S":-1,"TS":[2,10.98,0,0]}]},{"x":50.795,"y":8.689,"w":9.617999999999999,"clr":0,"A":"left","R":[{"T":"Spouse's%20First%20Name","S":-1,"TS":[2,10.98,0,0]}]},{"x":71.422,"y":8.689,"w":5.866999999999998,"clr":0,"A":"left","R":[{"T":"Middle%20Initial","S":-1,"TS":[2,10.98,0,0]}]},{"x":14.7,"y":12.501,"w":1.768,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,10.98,0,0]}]},{"x":30.169,"y":12.501,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,10.98,0,0]}]},{"x":35.325,"y":12.501,"w":4.29,"clr":0,"A":"left","R":[{"T":"ZIP%20Code","S":-1,"TS":[2,10.98,0,0]}]},{"x":44.607,"y":12.501,"w":4.818,"clr":0,"A":"left","R":[{"T":"Telephone","S":-1,"TS":[2,10.98,0,0]}]},{"x":17.835,"y":1.189,"w":2.385,"clr":0,"A":"left","R":[{"T":"Form","S":44,"TS":[2,12,0,0]}]},{"x":47.391,"y":1.189,"w":6.179999999999999,"clr":0,"A":"left","R":[{"T":"Pennsylvania","S":44,"TS":[2,12,0,0]}]},{"x":17.226,"y":1.939,"w":2.3890000000000002,"clr":0,"A":"left","R":[{"T":"PA-V","S":-1,"TS":[2,16,1,0]}]},{"x":43.461,"y":1.939,"w":8.447,"clr":0,"A":"left","R":[{"T":"Payment%20Voucher","S":-1,"TS":[2,16,1,0]}]},{"x":82.359,"y":1.939,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,16,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":1120,"AM":1024,"x":12.54,"y":6.54,"w":14.541,"h":0.833,"TU":"Your Social Security No"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RT","EN":0},"TI":1121,"AM":1024,"x":38.362,"y":6.57,"w":2.908,"h":0.833,"TU":"Check this box to suppress calculation and printing of Form PA-V","MV":"maxl:2"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":1122,"AM":1024,"x":50.696,"y":6.54,"w":12.478,"h":0.833,"TU":"Spouse's Social Security No"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":1123,"AM":1024,"x":12.54,"y":8.04,"w":28.978,"h":0.833,"TU":"Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TFNAME","EN":0},"TI":1124,"AM":1024,"x":50.696,"y":8.04,"w":12.478,"h":0.833,"TU":"Your First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPMI","EN":0},"TI":1125,"AM":1024,"x":71.692,"y":8.102,"w":2.647,"h":0.833,"TU":"Taxpayer's Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNAME","EN":0},"TI":1126,"AM":1024,"x":12.54,"y":9.54,"w":28.978,"h":0.833,"TU":"Spouse's Last Name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SFNAME","EN":0},"TI":1127,"AM":1024,"x":50.696,"y":9.54,"w":12.478,"h":0.833,"TU":"Spouse's First Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPMI","EN":0},"TI":1128,"AM":1024,"x":71.791,"y":9.576,"w":2.647,"h":0.833,"TU":"Spouse's Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR1","EN":0},"TI":1129,"AM":1024,"x":12.615,"y":11.138,"w":36.197,"h":0.833,"TU":"P.O. Box, Apt, Suite, Floor, Rural Route No., etc [1]"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":1130,"AM":1024,"x":12.54,"y":12.038,"w":36.197,"h":0.833,"TU":"P.O. Box, Apt, Suite, Floor, Rural Route No., etc [2]"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":1131,"AM":1024,"x":12.54,"y":13.478,"w":13.509,"h":0.833,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":1132,"AM":1024,"x":29.474,"y":13.471,"w":4.507,"h":0.833,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":1133,"AM":1024,"x":35.227,"y":13.415,"w":6.291,"h":0.833,"TU":"ZIP Code"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"PHONE","EN":0},"TI":1134,"AM":1024,"x":44.509,"y":13.415,"w":13.509,"h":0.833,"TU":"Telephone"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMOUNT","EN":0},"TI":1135,"AM":0,"x":73.384,"y":11.165,"w":18.666,"h":0.833,"TU":"Payment Amount"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/form/W2S.content.txt b/test/data/pa/form/W2S.content.txt new file mode 100755 index 00000000..7830b8af --- /dev/null +++ b/test/data/pa/form/W2S.content.txt @@ -0,0 +1,833 @@ +Line 1a +If you need more space, you may photocopy this schedule or make your own schedules in this format. +Security Number that appears first on the PA tax return and enter S for the second or spouse SSN. From the Forms W-2, enter each employer’s federal identification number. +YOU MUST SUBMIT COPIES OF EACH FORM OR STATEMENT LISTED IN THIS PART + + + + + + + + +1301910020 + +P +A +- +40 + +Schedule + +W +- +2S + +(06 +- +13) + +2013 + + + + + +Summary + +of + +P +A +- +T +axable + +Employee, + +Non +- +employee + +and + +Miscellaneous + +Compensation + +Name + +shown + +first + +on + +the + +P +A +- +40 + +(if + +filing + +jointly) + +Social + +Security + +Number + +(shown + +first) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +T/S + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +A +. +T/S + +B +. + +C +. + +Payer + +name + +D +. + + + +E +. + + + + +F +. + + + + +G +. + + + +H +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +A. + + + +B. + + + + +C. + + + +D. + + + + +E. + +Honorarium + +F +. + + + + + +G. + + + + + + + + + + + +H. + + + + + + + + +I. + + + + + + + + + + + + +J. + + + + + + + +K. + + + + + + + + + +L. + + + + + + + + + + +1301910020 + +1301910020 + +PA SCHEDULE W-2S +Wage Statement Summary +OFFICIAL USE ONLY +Use this schedule to list and calculate your total PA-taxable compensation and PA tax withheld from all sources. +List each federal Form W-2 for you and your spouse, if married, received from your employer(s). In the first column enter T for the taxpayer’s Social +Enter the amounts from the Forms W-2 in each column. +IMPORTANT: +You do not have to submit a copy of your Form W-2 if you earned all your income in Pennsylvania +See the PA Schedule W-2S instructions for a list of when a copy of a W-2 is required. +a copy of your Form W-2 in certain circumstances. +Part B Instructions: +IMPORTANT: +must submit +The federal and Pennsylvania (state) wages may be different in Part A and Part B. +List each source of income received during the taxable year on a form or statement other than a federal Form W-2. Enter eachpayer’s name. List the +does not have separately stated amounts, enter the amount shown in both federal and PA columns. +payment type that most closely describes the source of your non-employee compensation. Enter the amount of other compensation that you earned. If the form or statement +Part A - Federal Forms W-2 +SEE THE INSTRUCTIONS FOR WHEN TO SUBMIT FORM(S) W-2 +Employer’s identification number from Box b +Federal wages +from Box 1 +Medicare wages +from Box 5 +PA compensation +PA incometax +from Box 16 +withheld from Box 17 +Total Part A - Add the Pennsylvania columns +Part B - Miscellaneous and Non-employee Compensation from federal Forms 1099-R,1099-MISC and other statements +1099R code +Total federal amount +PA tax withheld +PA compensation +Adjusted plan basis +Total Part B - Add the Pennsylvania columns +TOTAL- Add the totals from Parts A and B +Enter the TOTALS on your PA tax return on: +Line 13 +Payment type: +Executor fee +Jury duty pay +Covenant not to compete +Director’s fee +Expert witness fee +Damages or settlement for lost wages, other than personal injury +Other nonemployee compensation. Describe: +Distribution from employer sponsored retirement, pension or qualified deferred compensation plan +Distribution from IRA (Traditional or Roth) +Distribution from Life Insurance, Annuity or Endowment Contracts +Distribution from Charitable Gift Annuities +Part A Instructions: +You +not the income was taxable in PA. +a copy of each form and statement that you list in Part B, whether or not the payer withheld any PA income tax and regardless of whether or +CAUTION: +must submit + +and your employer reported your PA wages correctly and withheld the correct amount of PA income tax.You +Type +----------------Page (0) Break---------------- diff --git a/test/data/pa/form/W2S.fields.json b/test/data/pa/form/W2S.fields.json new file mode 100755 index 00000000..9642a689 --- /dev/null +++ b/test/data/pa/form/W2S.fields.json @@ -0,0 +1 @@ +[{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"SSN1","type":"ssn","calc":true,"value":""},{"id":"W2TS_1_","type":"alpha","calc":false,"value":""},{"id":"EIN_1_","type":"mask","calc":false,"value":""},{"id":"FWAGES_1_","type":"number","calc":false,"value":""},{"id":"MWAGES_1_","type":"number","calc":false,"value":""},{"id":"PACOMP_1_","type":"number","calc":false,"value":""},{"id":"PAWH_1_","type":"number","calc":false,"value":""},{"id":"W2TS_2_","type":"alpha","calc":false,"value":""},{"id":"EIN_2_","type":"mask","calc":false,"value":""},{"id":"FWAGES_2_","type":"number","calc":false,"value":""},{"id":"MWAGES_2_","type":"number","calc":false,"value":""},{"id":"PACOMP_2_","type":"number","calc":false,"value":""},{"id":"PAWH_2_","type":"number","calc":false,"value":""},{"id":"W2TS_3_","type":"alpha","calc":false,"value":""},{"id":"EIN_3_","type":"mask","calc":false,"value":""},{"id":"FWAGES_3_","type":"number","calc":false,"value":""},{"id":"MWAGES_3_","type":"number","calc":false,"value":""},{"id":"PACOMP_3_","type":"number","calc":false,"value":""},{"id":"PAWH_3_","type":"number","calc":false,"value":""},{"id":"W2TS_4_","type":"alpha","calc":false,"value":""},{"id":"EIN_4_","type":"mask","calc":false,"value":""},{"id":"FWAGES_4_","type":"number","calc":false,"value":""},{"id":"MWAGES_4_","type":"number","calc":false,"value":""},{"id":"PACOMP_4_","type":"number","calc":false,"value":""},{"id":"PAWH_4_","type":"number","calc":false,"value":""},{"id":"W2TS_5_","type":"alpha","calc":false,"value":""},{"id":"EIN_5_","type":"mask","calc":false,"value":""},{"id":"FWAGES_5_","type":"number","calc":false,"value":""},{"id":"MWAGES_5_","type":"number","calc":false,"value":""},{"id":"PACOMP_5_","type":"number","calc":false,"value":""},{"id":"PAWH_5_","type":"number","calc":false,"value":""},{"id":"W2TS_6_","type":"alpha","calc":false,"value":""},{"id":"EIN_6_","type":"mask","calc":false,"value":""},{"id":"FWAGES_6_","type":"number","calc":false,"value":""},{"id":"MWAGES_6_","type":"number","calc":false,"value":""},{"id":"PACOMP_6_","type":"number","calc":false,"value":""},{"id":"PAWH_6_","type":"number","calc":false,"value":""},{"id":"W2TS_7_","type":"alpha","calc":false,"value":""},{"id":"EIN_7_","type":"mask","calc":false,"value":""},{"id":"FWAGES_7_","type":"number","calc":false,"value":""},{"id":"MWAGES_7_","type":"number","calc":false,"value":""},{"id":"PACOMP_7_","type":"number","calc":false,"value":""},{"id":"PAWH_7_","type":"number","calc":false,"value":""},{"id":"W2TS_8_","type":"alpha","calc":false,"value":""},{"id":"EIN_8_","type":"mask","calc":false,"value":""},{"id":"FWAGES_8_","type":"number","calc":false,"value":""},{"id":"MWAGES_8_","type":"number","calc":false,"value":""},{"id":"PACOMP_8_","type":"number","calc":false,"value":""},{"id":"PAWH_8_","type":"number","calc":false,"value":""},{"id":"W2TS_9_","type":"alpha","calc":false,"value":""},{"id":"EIN_9_","type":"mask","calc":false,"value":""},{"id":"FWAGES_9_","type":"number","calc":false,"value":""},{"id":"MWAGES_9_","type":"number","calc":false,"value":""},{"id":"PACOMP_9_","type":"number","calc":false,"value":""},{"id":"PAWH_9_","type":"number","calc":false,"value":""},{"id":"W2TS_10_","type":"alpha","calc":false,"value":""},{"id":"EIN_10_","type":"mask","calc":false,"value":""},{"id":"FWAGES_10_","type":"number","calc":false,"value":""},{"id":"MWAGES_10_","type":"number","calc":false,"value":""},{"id":"PACOMP_10_","type":"number","calc":false,"value":""},{"id":"PAWH_10_","type":"number","calc":false,"value":""},{"id":"TOTCOMP","type":"number","calc":true,"value":""},{"id":"TOTWH","type":"number","calc":true,"value":""},{"id":"MCTS_1_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_1_","type":"alpha","calc":false,"value":""},{"id":"PNAME_1_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_1_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_1_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_1_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_1_","type":"number","calc":false,"value":""},{"id":"TAXHELD_1_","type":"number","calc":false,"value":""},{"id":"MCTS_2_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_2_","type":"alpha","calc":false,"value":""},{"id":"PNAME_2_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_2_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_2_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_2_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_2_","type":"number","calc":false,"value":""},{"id":"TAXHELD_2_","type":"number","calc":false,"value":""},{"id":"MCTS_3_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_3_","type":"alpha","calc":false,"value":""},{"id":"PNAME_3_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_3_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_3_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_3_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_3_","type":"number","calc":false,"value":""},{"id":"TAXHELD_3_","type":"number","calc":false,"value":""},{"id":"MCTS_4_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_4_","type":"alpha","calc":false,"value":""},{"id":"PNAME_4_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_4_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_4_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_4_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_4_","type":"number","calc":false,"value":""},{"id":"TAXHELD_4_","type":"number","calc":false,"value":""},{"id":"MCTS_5_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_5_","type":"alpha","calc":false,"value":""},{"id":"PNAME_5_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_5_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_5_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_5_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_5_","type":"number","calc":false,"value":""},{"id":"TAXHELD_5_","type":"number","calc":false,"value":""},{"id":"MCTS_6_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_6_","type":"alpha","calc":false,"value":""},{"id":"PNAME_6_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_6_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_6_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_6_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_6_","type":"number","calc":false,"value":""},{"id":"TAXHELD_6_","type":"number","calc":false,"value":""},{"id":"MCTS_7_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_7_","type":"alpha","calc":false,"value":""},{"id":"PNAME_7_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_7_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_7_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_7_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_7_","type":"number","calc":false,"value":""},{"id":"TAXHELD_7_","type":"number","calc":false,"value":""},{"id":"MCTS_8_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_8_","type":"alpha","calc":false,"value":""},{"id":"PNAME_8_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_8_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_8_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_8_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_8_","type":"number","calc":false,"value":""},{"id":"TAXHELD_8_","type":"number","calc":false,"value":""},{"id":"MCTS_9_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_9_","type":"alpha","calc":false,"value":""},{"id":"PNAME_9_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_9_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_9_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_9_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_9_","type":"number","calc":false,"value":""},{"id":"TAXHELD_9_","type":"number","calc":false,"value":""},{"id":"MCTS_10_","type":"alpha","calc":false,"value":""},{"id":"MCCODE_10_","type":"alpha","calc":false,"value":""},{"id":"PNAME_10_","type":"alpha","calc":false,"value":""},{"id":"CODE99R_10_","type":"mask","calc":false,"value":""},{"id":"FTAXINC_10_","type":"number","calc":false,"value":""},{"id":"ADJPLAN_10_","type":"number","calc":false,"value":""},{"id":"TAXCOMP_10_","type":"number","calc":false,"value":""},{"id":"TAXHELD_10_","type":"number","calc":false,"value":""},{"id":"COMPTOT","type":"number","calc":true,"value":""},{"id":"HELDTOT","type":"number","calc":true,"value":""},{"id":"TOTAL1A","type":"number","calc":true,"value":""},{"id":"TOTAL13","type":"number","calc":true,"value":""},{"id":"COMPDESC","type":"alpha","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/pa/form/W2S.json b/test/data/pa/form/W2S.json new file mode 100755 index 00000000..76bd4f43 --- /dev/null +++ b/test/data/pa/form/W2S.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 - PA-40 Schedule W-2S - Wage Statement Summary - Posted 08-27-13","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":9.298,"y":3.622,"w":4.5,"l":4.959},{"oc":"#221f1f","x":9.316,"y":46.791,"w":4.5,"l":4.941},{"oc":"#221f1f","x":90.956,"y":46.794,"w":4.5,"l":4.933},{"oc":"#221f1f","x":68.028,"y":5.906,"w":1.5,"l":27.87},{"oc":"#221f1f","x":9.281,"y":5.966,"w":0.75,"l":86.728},{"oc":"#221f1f","x":9.281,"y":6.716,"w":0.75,"l":86.728},{"oc":"#221f1f","x":9.419,"y":14.475,"w":0.75,"l":86.599},{"oc":"#221f1f","x":9.281,"y":7.966,"w":0.75,"l":86.728}],"VLines":[{"oc":"#221f1f","x":13.991,"y":2.544,"w":4.5,"l":1.131},{"oc":"#221f1f","x":9.565,"y":45.759,"w":4.5,"l":1.119},{"oc":"#221f1f","x":95.648,"y":45.762,"w":4.5,"l":1.122},{"oc":"#221f1f","x":73.013,"y":6.731,"w":0.75,"l":1.256}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":9.24,"y":15.285,"w":86.646,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":15.315,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":95.886,"y":15.315,"w":0.082,"h":0.78,"clr":-1},{"oc":"#221f1f","x":9.24,"y":16.095,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":16.095,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":16.095,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":16.095,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":16.095,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":16.095,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":16.125,"w":0.082,"h":1.177,"clr":-1},{"oc":"#221f1f","x":15.345,"y":16.125,"w":0.083,"h":1.177,"clr":-1},{"oc":"#221f1f","x":43.189,"y":16.125,"w":0.082,"h":1.177,"clr":-1},{"oc":"#221f1f","x":56.368,"y":16.125,"w":0.083,"h":1.177,"clr":-1},{"oc":"#221f1f","x":69.527,"y":16.125,"w":0.083,"h":1.177,"clr":-1},{"oc":"#221f1f","x":82.706,"y":16.125,"w":0.083,"h":1.177,"clr":-1},{"oc":"#221f1f","x":95.886,"y":16.125,"w":0.082,"h":1.177,"clr":-1},{"oc":"#221f1f","x":9.24,"y":17.303,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":17.303,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":17.303,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":17.303,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":17.303,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":17.303,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":17.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":17.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":17.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":17.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":17.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":17.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":17.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":18.052,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":18.052,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":18.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":18.052,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":18.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":18.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":18.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":18.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":18.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":18.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":18.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":18.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":18.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":18.802,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":18.802,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":18.802,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":18.802,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":18.802,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":18.802,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":18.832,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":18.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":18.832,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":18.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":18.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":18.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":18.832,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":19.552,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":19.552,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":19.552,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":19.552,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":19.552,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":19.552,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":19.582,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":19.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":19.582,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":19.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":19.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":19.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":19.582,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":20.302,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":20.302,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":20.302,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":20.302,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":20.302,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":20.302,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":20.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":20.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":20.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":20.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":20.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":20.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":20.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":21.052,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":21.052,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":21.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":21.052,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":21.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":21.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":21.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":21.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":21.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":21.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":21.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":21.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":21.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":21.802,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":21.802,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":21.802,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":21.802,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":21.802,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":21.802,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":21.832,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":21.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":21.832,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":21.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":21.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":21.832,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":21.832,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":22.552,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":22.552,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":22.552,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":22.552,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":22.552,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":22.552,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":22.582,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":22.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":22.582,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":22.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":22.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":22.582,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":22.582,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":23.302,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":23.302,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":23.302,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":23.302,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":23.302,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":23.302,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":23.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":23.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":23.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":23.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":23.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":23.332,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":23.332,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":24.052,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":24.052,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":24.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":24.052,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":24.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":24.052,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":9.158,"y":24.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":15.345,"y":24.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":43.189,"y":24.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":56.368,"y":24.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":24.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":24.082,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":24.082,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":24.802,"w":6.105,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.428,"y":24.802,"w":27.761,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":24.802,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":24.802,"w":13.035,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.816,"y":24.803,"w":12.849,"h":0.06,"clr":-1},{"oc":"#221f1f","x":82.995,"y":24.803,"w":12.849,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":24.862,"w":0.082,"h":0.698,"clr":-1},{"oc":"#221f1f","x":9.24,"y":25.56,"w":60.246,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.486,"y":24.862,"w":0.165,"h":0.698,"clr":-1},{"oc":"#221f1f","x":69.651,"y":25.56,"w":13.014,"h":0.06,"clr":-1},{"oc":"#221f1f","x":82.665,"y":24.862,"w":0.165,"h":0.698,"clr":-1},{"oc":"#221f1f","x":82.83,"y":25.56,"w":13.014,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.844,"y":24.862,"w":0.165,"h":0.698,"clr":-1},{"oc":"#221f1f","x":9.24,"y":26.325,"w":86.646,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":26.355,"w":0.082,"h":1.41,"clr":-1},{"oc":"#221f1f","x":95.886,"y":26.355,"w":0.082,"h":1.41,"clr":-1},{"oc":"#221f1f","x":9.24,"y":27.765,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":27.765,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":27.765,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":27.765,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":27.765,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":27.765,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":27.765,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":27.765,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":27.795,"w":0.082,"h":1.178,"clr":-1},{"oc":"#221f1f","x":13.764,"y":27.795,"w":0.083,"h":1.178,"clr":-1},{"oc":"#221f1f","x":18.308,"y":27.795,"w":0.083,"h":1.178,"clr":-1},{"oc":"#221f1f","x":37.259,"y":27.795,"w":0.082,"h":1.178,"clr":-1},{"oc":"#221f1f","x":44.907,"y":27.795,"w":0.083,"h":1.178,"clr":-1},{"oc":"#221f1f","x":57.399,"y":27.795,"w":0.083,"h":1.178,"clr":-1},{"oc":"#221f1f","x":69.527,"y":27.795,"w":0.083,"h":1.178,"clr":-1},{"oc":"#221f1f","x":82.706,"y":27.795,"w":0.083,"h":1.178,"clr":-1},{"oc":"#221f1f","x":95.886,"y":27.795,"w":0.082,"h":1.178,"clr":-1},{"oc":"#221f1f","x":9.24,"y":28.972,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":28.972,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":28.972,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":28.972,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":28.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":28.972,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":28.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":28.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":29.003,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":29.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":29.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":29.003,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":29.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":29.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":29.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":29.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":29.003,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":29.722,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":29.722,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":29.722,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":29.722,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":29.722,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":29.722,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":29.722,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":29.722,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":29.753,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":29.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":29.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":29.753,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":29.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":29.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":29.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":29.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":29.753,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":30.472,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":30.472,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":30.472,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":30.472,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":30.472,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":30.472,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":30.472,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":30.472,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":30.503,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":30.503,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":30.503,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":30.503,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":30.503,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":30.503,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":30.503,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":30.503,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":30.503,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":31.222,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":31.222,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":31.222,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":31.222,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":31.222,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":31.222,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":31.222,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":31.222,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":31.253,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":31.253,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":31.253,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":31.253,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":31.253,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":31.253,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":31.253,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":31.253,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":31.253,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":31.972,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":31.972,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":31.972,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":31.972,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":31.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":31.972,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":31.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":31.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":32.003,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":32.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":32.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":32.003,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":32.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":32.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":32.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":32.003,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":32.003,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":32.722,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":32.722,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":32.722,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":32.722,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":32.722,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":32.722,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":32.722,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":32.722,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":32.753,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":32.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":32.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":32.753,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":32.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":32.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":32.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":32.753,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":32.753,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":33.473,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":33.473,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":33.473,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":33.473,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":33.473,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":33.473,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":33.473,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":33.473,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":33.502,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":33.502,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":33.502,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":33.502,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":33.502,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":33.502,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":33.502,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":33.502,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":33.502,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":34.223,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":34.223,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":34.223,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":34.223,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":34.223,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":34.223,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":34.223,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":34.223,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":34.252,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":34.252,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":34.252,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":34.252,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":34.252,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":34.252,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":34.252,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":34.252,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":34.252,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":34.972,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":34.972,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":34.972,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":34.972,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":34.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":34.972,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":34.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":34.972,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":35.002,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":35.002,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":35.002,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":35.002,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":35.002,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":35.002,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":35.002,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":35.002,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":35.002,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":35.723,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":35.723,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":35.723,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":35.723,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":35.723,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":35.723,"w":13.076,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.609,"y":35.723,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":82.789,"y":35.723,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":8.986,"y":35.752,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":13.764,"y":35.752,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":18.308,"y":35.752,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":37.259,"y":35.752,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":44.907,"y":35.752,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":57.399,"y":35.752,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":69.527,"y":35.752,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":82.706,"y":35.752,"w":0.083,"h":0.72,"clr":-1},{"oc":"#221f1f","x":95.886,"y":35.752,"w":0.082,"h":0.72,"clr":-1},{"oc":"#221f1f","x":9.24,"y":36.473,"w":3.321,"h":0.03,"clr":-1},{"oc":"#221f1f","x":12.643,"y":36.473,"w":3.259,"h":0.03,"clr":-1},{"oc":"#221f1f","x":15.984,"y":36.473,"w":20.501,"h":0.03,"clr":-1},{"oc":"#221f1f","x":36.568,"y":36.473,"w":6.621,"h":0.03,"clr":-1},{"oc":"#221f1f","x":43.271,"y":36.473,"w":13.097,"h":0.03,"clr":-1},{"oc":"#221f1f","x":56.451,"y":36.473,"w":13.035,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.816,"y":36.472,"w":12.849,"h":0.06,"clr":-1},{"oc":"#221f1f","x":82.995,"y":36.472,"w":12.849,"h":0.06,"clr":-1},{"oc":"#221f1f","x":8.986,"y":36.533,"w":0.082,"h":0.69,"clr":-1},{"oc":"#221f1f","x":9.24,"y":37.222,"w":60.246,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.486,"y":36.533,"w":0.165,"h":0.69,"clr":-1},{"oc":"#221f1f","x":69.651,"y":37.222,"w":13.014,"h":0.06,"clr":-1},{"oc":"#221f1f","x":82.665,"y":36.533,"w":0.165,"h":0.69,"clr":-1},{"oc":"#221f1f","x":82.83,"y":37.222,"w":13.014,"h":0.06,"clr":-1},{"oc":"#221f1f","x":95.844,"y":36.533,"w":0.165,"h":0.69,"clr":-1},{"oc":"#221f1f","x":9.24,"y":37.935,"w":60.287,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.692,"y":37.935,"w":12.973,"h":0.06,"clr":-1},{"oc":"#221f1f","x":82.83,"y":37.935,"w":13.014,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":37.995,"w":0.082,"h":0.69,"clr":-1},{"oc":"#221f1f","x":69.527,"y":37.995,"w":0.165,"h":0.69,"clr":-1},{"oc":"#221f1f","x":82.665,"y":37.995,"w":0.165,"h":0.69,"clr":-1},{"oc":"#221f1f","x":95.844,"y":37.995,"w":0.165,"h":0.69,"clr":-1},{"oc":"#221f1f","x":9.24,"y":38.685,"w":60.287,"h":0.03,"clr":-1},{"oc":"#221f1f","x":69.692,"y":38.685,"w":12.973,"h":0.06,"clr":-1},{"oc":"#221f1f","x":82.83,"y":38.685,"w":13.014,"h":0.06,"clr":-1},{"oc":"#221f1f","x":9.158,"y":38.745,"w":0.082,"h":0.69,"clr":-1},{"oc":"#221f1f","x":9.24,"y":39.435,"w":86.646,"h":0.03,"clr":-1},{"oc":"#221f1f","x":95.886,"y":38.745,"w":0.082,"h":0.69,"clr":-1},{"oc":"#221f1f","x":49.665,"y":41.843,"w":45.045,"h":0.037,"clr":-1}],"Texts":[{"oc":"#221f1f","x":73.443,"y":38.505,"w":3.453,"clr":-1,"A":"left","R":[{"T":"Line%201a","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":18.931,"y":14.265,"w":49.268999999999956,"clr":-1,"A":"left","R":[{"T":"If%20you%20need%20more%20space%2C%20you%20may%20photocopy%20this%20schedule%20or%20make%20your%20own%20schedules%20in%20this%20format.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.363,"y":8.812,"w":62.21899999999987,"clr":-1,"A":"left","R":[{"T":"Security%20Number%20that%20appears%20first%20on%20the%20PA%20tax%20return%20and%20enter%20S%20for%20the%20second%20or%20spouse%20SSN.%20From%20the%20Forms%20W-2%2C%20enter%20each%20employer%E2%80%99s%20federal%20identification%20number.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":24.866,"y":26.798,"w":39.86999999999999,"clr":-1,"A":"left","R":[{"T":"YOU%20MUST%20SUBMIT%20COPIES%20OF%20EACH%20FORM%20OR%20STATEMENT%20LISTED%20IN%20THIS%20PART","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":49.415,"y":2.28,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301910020","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.231,"y":4.575,"w":0.667,"clr":-1,"A":"left","R":[{"T":"P","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":20.952,"y":4.575,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":21.798,"y":4.575,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":22.21,"y":4.575,"w":1.104,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":23.902,"y":4.575,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":29.554,"y":4.575,"w":0.9440000000000001,"clr":-1,"A":"left","R":[{"T":"W","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":30.688,"y":4.575,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":31.081,"y":4.575,"w":1.215,"clr":-1,"A":"left","R":[{"T":"2S","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":20.314,"y":5.04,"w":1.4300000000000002,"clr":-1,"A":"left","R":[{"T":"(06","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":22.047,"y":5.04,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":22.439,"y":5.04,"w":1.433,"clr":-1,"A":"left","R":[{"T":"13)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":35.287,"y":4.92,"w":2.24,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23.79,0,0]}]},{"oc":"#221f1f","x":24.686,"y":5.79,"w":4.599000000000001,"clr":-1,"A":"left","R":[{"T":"Summary","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":31.367,"y":5.79,"w":0.946,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":33.079,"y":5.79,"w":0.667,"clr":-1,"A":"left","R":[{"T":"P","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":33.925,"y":5.79,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":34.854,"y":5.79,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":35.328,"y":5.79,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":36.049,"y":5.79,"w":3.089,"clr":-1,"A":"left","R":[{"T":"axable","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":40.751,"y":5.79,"w":4.966,"clr":-1,"A":"left","R":[{"T":"Employee%2C","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":47.991,"y":5.79,"w":1.926,"clr":-1,"A":"left","R":[{"T":"Non","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":50.672,"y":5.79,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":51.125,"y":5.79,"w":4.5809999999999995,"clr":-1,"A":"left","R":[{"T":"employee","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":57.87,"y":5.79,"w":1.766,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":60.696,"y":5.79,"w":6.784000000000001,"clr":-1,"A":"left","R":[{"T":"Miscellaneous","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":70.452,"y":5.79,"w":6.897,"clr":-1,"A":"left","R":[{"T":"Compensation","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.32,"y":6.412,"w":2.6510000000000002,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":12.888,"y":6.412,"w":2.955,"clr":-1,"A":"left","R":[{"T":"shown","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":16.725,"y":6.412,"w":1.5860000000000003,"clr":-1,"A":"left","R":[{"T":"first","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":19.014,"y":6.412,"w":1.1380000000000001,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":20.726,"y":6.412,"w":1.3840000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":22.768,"y":6.412,"w":0.667,"clr":-1,"A":"left","R":[{"T":"P","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":23.49,"y":6.412,"w":0.667,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":24.293,"y":6.412,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":24.686,"y":6.412,"w":1.1380000000000001,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":26.398,"y":6.412,"w":0.8180000000000001,"clr":-1,"A":"left","R":[{"T":"(if","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":27.759,"y":6.412,"w":2.068,"clr":-1,"A":"left","R":[{"T":"filing","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":30.625,"y":6.412,"w":2.857,"clr":-1,"A":"left","R":[{"T":"jointly)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":73.484,"y":6.412,"w":2.699,"clr":-1,"A":"left","R":[{"T":"Social","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":77.114,"y":6.412,"w":3.58,"clr":-1,"A":"left","R":[{"T":"Security","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":81.838,"y":6.412,"w":3.5320000000000005,"clr":-1,"A":"left","R":[{"T":"Number","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":86.478,"y":6.412,"w":3.1930000000000005,"clr":-1,"A":"left","R":[{"T":"(shown","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":90.726,"y":6.412,"w":1.932,"clr":-1,"A":"left","R":[{"T":"first)","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":11.156,"y":16.072,"w":1.565,"clr":-1,"A":"left","R":[{"T":"T%2FS","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":10.083,"y":27.495,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":10.929,"y":27.495,"w":0.5860000000000001,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.753,"y":27.99,"w":1.55,"clr":-1,"A":"left","R":[{"T":"T%2FS","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":14.947,"y":27.495,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":15.812999999999999,"y":27.495,"w":0.552,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":24.613,"y":27.495,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":25.48,"y":27.495,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":26.14,"y":27.495,"w":2.677,"clr":-1,"A":"left","R":[{"T":"Payer","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":25.438,"y":27.99,"w":2.4850000000000003,"clr":-1,"A":"left","R":[{"T":"name","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":40.24,"y":27.48,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":41.107,"y":27.48,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":50.329,"y":27.48,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":51.113,"y":27.48,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":62.866,"y":27.48,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":63.567,"y":27.48,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":75.403,"y":27.48,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":-1,"TS":[0,9.8357,1,0]}]},{"oc":"#221f1f","x":76.31,"y":27.48,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":88.602,"y":27.48,"w":0.722,"clr":-1,"A":"left","R":[{"T":"H","S":-1,"TS":[0,9.96,1,0]}]},{"oc":"#221f1f","x":89.469,"y":27.48,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,9.8262,0,0]}]},{"oc":"#221f1f","x":19.612,"y":39.525,"w":0.8999999999999999,"clr":-1,"A":"left","R":[{"T":"A.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":33.513,"y":39.525,"w":0.988,"clr":-1,"A":"left","R":[{"T":"B.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":54.138,"y":39.525,"w":0.988,"clr":-1,"A":"left","R":[{"T":"C.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":73.051,"y":39.525,"w":0.988,"clr":-1,"A":"left","R":[{"T":"D.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":19.653,"y":40.163,"w":0.9550000000000001,"clr":-1,"A":"left","R":[{"T":"E.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":21.365,"y":40.163,"w":5.183000000000001,"clr":-1,"A":"left","R":[{"T":"Honorarium","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":33.823,"y":40.163,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":34.503,"y":40.163,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":54.076,"y":40.163,"w":1.052,"clr":-1,"A":"left","R":[{"T":"G.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":19.591,"y":41.04,"w":0.988,"clr":-1,"A":"left","R":[{"T":"H.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.21,"y":41.648,"w":0.5680000000000001,"clr":-1,"A":"left","R":[{"T":"I.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":19.815,"y":42.27,"w":0.8260000000000001,"clr":-1,"A":"left","R":[{"T":"J.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":54.052,"y":42.27,"w":0.988,"clr":-1,"A":"left","R":[{"T":"K.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":19.757,"y":42.9,"w":0.891,"clr":-1,"A":"left","R":[{"T":"L.","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":20.045,"y":45.9,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301910020","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":72.412,"y":45.9,"w":5.69,"clr":-1,"A":"left","R":[{"T":"1301910020","S":-1,"TS":[0,15.6519,0,0]}]},{"oc":"#221f1f","x":20.334,"y":3.375,"w":9.834999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20SCHEDULE%20W-2S","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":20.334,"y":3.9299999999999997,"w":12.614,"clr":-1,"A":"left","R":[{"T":"Wage%20Statement%20Summary","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":85.344,"y":5.032,"w":9.870000000000003,"clr":-1,"A":"left","R":[{"T":"OFFICIAL%20USE%20ONLY","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":22.293,"y":7.68,"w":42.944,"clr":-1,"A":"left","R":[{"T":"Use%20this%20schedule%20to%20list%20and%20calculate%20your%20total%20PA-taxable%20compensation%20and%20PA%20tax%20withheld%20from%20all%20sources.","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":19.815,"y":8.242,"w":54.60100000000005,"clr":-1,"A":"left","R":[{"T":"List%20each%20federal%20Form%20W-2%20for%20you%20and%20your%20spouse%2C%20if%20married%2C%20received%20from%20your%20employer(s).%20In%20the%20first%20column%20enter%20T%20for%20the%20taxpayer%E2%80%99s%20Social%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.371,"y":9.374,"w":20.554000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amounts%20from%20the%20Forms%20W-2%20in%20each%20column.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":37.82,"y":9.374,"w":5.187,"clr":-1,"A":"left","R":[{"T":"IMPORTANT%3A","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":44.97,"y":9.374,"w":35.461000000000006,"clr":-1,"A":"left","R":[{"T":"You%20do%20not%20have%20to%20submit%20a%20copy%20of%20your%20Form%20W-2%20if%20you%20earned%20all%20your%20income%20in%20Pennsylvania","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.334,"y":10.499,"w":30.563000000000027,"clr":-1,"A":"left","R":[{"T":"See%20the%20PA%20Schedule%20W-2S%20instructions%20for%20a%20list%20of%20when%20a%20copy%20of%20a%20W-2%20is%20required.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":70.563,"y":9.937,"w":18.502,"clr":-1,"A":"left","R":[{"T":"a%20copy%20of%20your%20Form%20W-2%20in%20certain%20circumstances.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.341,"y":11.063,"w":7.709000000000001,"clr":-1,"A":"left","R":[{"T":"Part%20B%20Instructions%3A","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":9.379,"y":12.749,"w":5.496,"clr":-1,"A":"left","R":[{"T":"IMPORTANT%3A%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":18.707,"y":12.749,"w":5.061999999999999,"clr":-1,"A":"left","R":[{"T":"must%20submit","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":32.97,"y":13.312,"w":31.512,"clr":-1,"A":"left","R":[{"T":"The%20federal%20and%20Pennsylvania%20(state)%20wages%20may%20be%20different%20in%20Part%20A%20and%20Part%20B.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":19.612,"y":11.063,"w":55.04200000000004,"clr":-1,"A":"left","R":[{"T":"List%20each%20source%20of%20income%20received%20during%20the%20taxable%20year%20on%20a%20form%20or%20statement%20other%20than%20a%20federal%20Form%20W-2.%20Enter%20eachpayer%E2%80%99s%20name.%20List%20the%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.284,"y":12.187,"w":35.724000000000025,"clr":-1,"A":"left","R":[{"T":"does%20not%20have%20separately%20stated%20amounts%2C%20enter%20the%20amount%20shown%20in%20both%20federal%20and%20PA%20columns.","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.343,"y":11.625,"w":62.04999999999985,"clr":-1,"A":"left","R":[{"T":"payment%20type%20that%20most%20closely%20describes%20the%20source%20of%20your%20non-employee%20compensation.%20Enter%20the%20amount%20of%20other%20compensation%20that%20you%20earned.%20If%20the%20form%20or%20statement%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.258,"y":15.12,"w":12.731999999999998,"clr":-1,"A":"left","R":[{"T":"Part%20A%20-%20Federal%20Forms%20W-2","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":31.513,"y":15.12,"w":29.658000000000005,"clr":-1,"A":"left","R":[{"T":"SEE%20THE%20INSTRUCTIONS%20FOR%20WHEN%20TO%20SUBMIT%20FORM(S)%20W-2","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":16.993,"y":16.072,"w":18.830999999999996,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20identification%20number%20from%20Box%20b","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":45.641,"y":15.832,"w":3.362,"clr":-1,"A":"left","R":[{"T":"Federal","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":50.056,"y":15.832,"w":3.144,"clr":-1,"A":"left","R":[{"T":"wages%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":46.672,"y":16.327,"w":4.785,"clr":-1,"A":"left","R":[{"T":"from%20Box%201","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":58.325,"y":15.832,"w":7.498,"clr":-1,"A":"left","R":[{"T":"Medicare%20wages%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":59.769,"y":16.327,"w":4.785,"clr":-1,"A":"left","R":[{"T":"from%20Box%205","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.278,"y":15.832,"w":8.115,"clr":-1,"A":"left","R":[{"T":"PA%20compensation%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.282,"y":15.832,"w":6.446999999999999,"clr":-1,"A":"left","R":[{"T":"PA%20incometax%20","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":72.659,"y":16.327,"w":5.336,"clr":-1,"A":"left","R":[{"T":"from%20Box%2016","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":83.467,"y":16.327,"w":9.256999999999998,"clr":-1,"A":"left","R":[{"T":"withheld%20from%20Box%2017","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.258,"y":24.63,"w":21.28300000000001,"clr":-1,"A":"left","R":[{"T":"Total%20Part%20A%20-%20Add%20the%20Pennsylvania%20columns","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.258,"y":26.16,"w":55.355,"clr":-1,"A":"left","R":[{"T":"Part%20B%20-%20Miscellaneous%20and%20Non-employee%20Compensation%20from%20federal%20Forms%201099-R%2C1099-MISC%20and%20other%20statements","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":37.58,"y":27.99,"w":5.352,"clr":-1,"A":"left","R":[{"T":"1099R%20code","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":45.4,"y":27.99,"w":9.171000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20federal%20amount","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":85.117,"y":27.99,"w":6.892,"clr":-1,"A":"left","R":[{"T":"PA%20tax%20withheld","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":71.381,"y":27.99,"w":7.837000000000001,"clr":-1,"A":"left","R":[{"T":"PA%20compensation","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":58.143,"y":27.99,"w":8.595,"clr":-1,"A":"left","R":[{"T":"Adjusted%20plan%20basis","S":-1,"TS":[0,9.96,0,0]}]},{"oc":"#221f1f","x":9.258,"y":36.323,"w":21.28300000000001,"clr":-1,"A":"left","R":[{"T":"Total%20Part%20B%20-%20Add%20the%20Pennsylvania%20columns","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.258,"y":37.755,"w":19.946,"clr":-1,"A":"left","R":[{"T":"TOTAL-%20Add%20the%20totals%20from%20Parts%20A%20and%20B","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":39.267,"y":38.505,"w":20.737000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20TOTALS%20on%20your%20PA%20tax%20return%20on%3A","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":86.684,"y":38.505,"w":3.453,"clr":-1,"A":"left","R":[{"T":"Line%2013","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":9.237,"y":39.525,"w":6.427,"clr":-1,"A":"left","R":[{"T":"Payment%20type%3A%20","S":-1,"TS":[0,11.04,1,0]}]},{"oc":"#221f1f","x":21.365,"y":39.525,"w":5.566000000000001,"clr":-1,"A":"left","R":[{"T":"Executor%20fee","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":35.307,"y":39.525,"w":5.882000000000001,"clr":-1,"A":"left","R":[{"T":"Jury%20duty%20pay","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":35.308,"y":40.163,"w":11.081,"clr":-1,"A":"left","R":[{"T":"Covenant%20not%20to%20compete","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.953,"y":39.525,"w":5.6240000000000006,"clr":-1,"A":"left","R":[{"T":"Director%E2%80%99s%20fee","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":74.846,"y":39.525,"w":8.098,"clr":-1,"A":"left","R":[{"T":"Expert%20witness%20fee","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.933,"y":40.163,"w":28.367,"clr":-1,"A":"left","R":[{"T":"Damages%20or%20settlement%20for%20lost%20wages%2C%20other%20than%20personal%20injury","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.406,"y":41.04,"w":20.310000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20nonemployee%20compensation.%20Describe%3A","S":-1,"TS":[0,10.905999999999999,0,0]}]},{"oc":"#221f1f","x":21.407,"y":41.648,"w":42.911000000000016,"clr":-1,"A":"left","R":[{"T":"Distribution%20from%20employer%20sponsored%20retirement%2C%20pension%20or%20qualified%20deferred%20compensation%20plan","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.383,"y":42.27,"w":18.221000000000004,"clr":-1,"A":"left","R":[{"T":"Distribution%20from%20IRA%20(Traditional%20or%20Roth)","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":55.806,"y":42.27,"w":28.755000000000003,"clr":-1,"A":"left","R":[{"T":"Distribution%20from%20Life%20Insurance%2C%20Annuity%20or%20Endowment%20Contracts","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":21.408,"y":42.9,"w":18.167,"clr":-1,"A":"left","R":[{"T":"Distribution%20from%20Charitable%20Gift%20Annuities","S":-1,"TS":[0,11.04,0,0]}]},{"oc":"#221f1f","x":9.343,"y":8.242,"w":7.709000000000001,"clr":-1,"A":"left","R":[{"T":"Part%20A%20Instructions%3A","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":16.591,"y":12.749,"w":1.459,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":9.416,"y":13.312,"w":13.329000000000002,"clr":-1,"A":"left","R":[{"T":"not%20the%20income%20was%20taxable%20in%20PA.%20","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":25.77,"y":12.749,"w":50.68800000000009,"clr":-1,"A":"left","R":[{"T":"a%20copy%20of%20each%20form%20and%20statement%20that%20you%20list%20in%20Part%20B%2C%20whether%20or%20not%20the%20payer%20withheld%20any%20PA%20income%20tax%20and%20regardless%20of%20whether%20or","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":27.35,"y":13.312,"w":4.4159999999999995,"clr":-1,"A":"left","R":[{"T":"CAUTION%3A%20","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":63.81100000000001,"y":9.937,"w":4.952000000000001,"clr":-1,"A":"left","R":[{"T":"must%20submit","S":-1,"TS":[1,11.04,1,0]}]},{"oc":"#221f1f","x":9.266,"y":9.937,"w":39.874000000000024,"clr":-1,"A":"left","R":[{"T":"and%20your%20employer%20reported%20your%20PA%20wages%20correctly%20and%20withheld%20the%20correct%20amount%20of%20PA%20income%20tax.You","S":-1,"TS":[1,11.04,0,0]}]},{"oc":"#221f1f","x":14.246,"y":27.99,"w":2.223,"clr":-1,"A":"left","R":[{"T":"Type","S":-1,"TS":[0,9.96,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME1","EN":0},"TI":1136,"AM":1024,"x":9.293,"y":7.252,"w":63.425,"h":0.833,"TU":"Name Shown First on the PA-40 (if filing jointly)"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN1","EN":0},"TI":1137,"AM":1024,"x":73.07,"y":7.251,"w":22.385,"h":0.833,"TU":"Social Security Number (shown first)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_1_","EN":0},"TI":1138,"AM":0,"x":9.508,"y":17.342,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_1_","EN":0},"TI":1139,"AM":0,"x":15.422,"y":17.332,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_1_","EN":0},"TI":1140,"AM":0,"x":43.266,"y":17.332,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_1_","EN":0},"TI":1141,"AM":0,"x":56.445,"y":17.332,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_1_","EN":0},"TI":1142,"AM":0,"x":69.624,"y":17.332,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_1_","EN":0},"TI":1143,"AM":0,"x":82.783,"y":17.332,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_2_","EN":0},"TI":1144,"AM":0,"x":9.422,"y":18.092,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_2_","EN":0},"TI":1145,"AM":0,"x":15.497,"y":18.055,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_2_","EN":0},"TI":1146,"AM":0,"x":43.266,"y":18.082,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_2_","EN":0},"TI":1147,"AM":0,"x":56.445,"y":18.082,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_2_","EN":0},"TI":1148,"AM":0,"x":69.624,"y":18.082,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_2_","EN":0},"TI":1149,"AM":0,"x":82.783,"y":18.082,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_3_","EN":0},"TI":1150,"AM":0,"x":9.477,"y":18.82,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_3_","EN":0},"TI":1151,"AM":0,"x":15.422,"y":18.832,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_3_","EN":0},"TI":1152,"AM":0,"x":43.266,"y":18.832,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_3_","EN":0},"TI":1153,"AM":0,"x":56.445,"y":18.832,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_3_","EN":0},"TI":1154,"AM":0,"x":69.624,"y":18.832,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_3_","EN":0},"TI":1155,"AM":0,"x":82.783,"y":18.832,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_4_","EN":0},"TI":1156,"AM":0,"x":9.232,"y":19.547,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_4_","EN":0},"TI":1157,"AM":0,"x":15.422,"y":19.582,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_4_","EN":0},"TI":1158,"AM":0,"x":43.341,"y":19.555,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_4_","EN":0},"TI":1159,"AM":0,"x":56.445,"y":19.582,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_4_","EN":0},"TI":1160,"AM":0,"x":69.624,"y":19.582,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_4_","EN":0},"TI":1161,"AM":0,"x":82.783,"y":19.582,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_5_","EN":0},"TI":1162,"AM":0,"x":9.617,"y":20.242,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_5_","EN":0},"TI":1163,"AM":0,"x":15.422,"y":20.332,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_5_","EN":0},"TI":1164,"AM":0,"x":43.266,"y":20.332,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_5_","EN":0},"TI":1165,"AM":0,"x":56.445,"y":20.332,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_5_","EN":0},"TI":1166,"AM":0,"x":69.624,"y":20.332,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_5_","EN":0},"TI":1167,"AM":0,"x":82.783,"y":20.332,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_6_","EN":0},"TI":1168,"AM":0,"x":9.417,"y":21.085,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_6_","EN":0},"TI":1169,"AM":0,"x":15.422,"y":21.082,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_6_","EN":0},"TI":1170,"AM":0,"x":43.266,"y":21.082,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_6_","EN":0},"TI":1171,"AM":0,"x":56.445,"y":21.082,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_6_","EN":0},"TI":1172,"AM":0,"x":69.624,"y":21.082,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_6_","EN":0},"TI":1173,"AM":0,"x":82.783,"y":21.082,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_7_","EN":0},"TI":1174,"AM":0,"x":9.344,"y":21.812,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_7_","EN":0},"TI":1175,"AM":0,"x":15.422,"y":21.832,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_7_","EN":0},"TI":1176,"AM":0,"x":43.266,"y":21.832,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_7_","EN":0},"TI":1177,"AM":0,"x":56.445,"y":21.832,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_7_","EN":0},"TI":1178,"AM":0,"x":69.624,"y":21.832,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_7_","EN":0},"TI":1179,"AM":0,"x":82.783,"y":21.832,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_8_","EN":0},"TI":1180,"AM":0,"x":9.302,"y":22.567,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_8_","EN":0},"TI":1181,"AM":0,"x":15.422,"y":22.582,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_8_","EN":0},"TI":1182,"AM":0,"x":43.266,"y":22.582,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_8_","EN":0},"TI":1183,"AM":0,"x":56.445,"y":22.582,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_8_","EN":0},"TI":1184,"AM":0,"x":69.624,"y":22.582,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_8_","EN":0},"TI":1185,"AM":0,"x":82.783,"y":22.582,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_9_","EN":0},"TI":1186,"AM":0,"x":9.282,"y":23.349,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_9_","EN":0},"TI":1187,"AM":0,"x":15.422,"y":23.332,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_9_","EN":0},"TI":1188,"AM":0,"x":43.266,"y":23.332,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_9_","EN":0},"TI":1189,"AM":0,"x":56.445,"y":23.332,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_9_","EN":0},"TI":1190,"AM":0,"x":69.624,"y":23.332,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_9_","EN":0},"TI":1191,"AM":0,"x":82.783,"y":23.332,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"W2TS_10_","EN":0},"TI":1192,"AM":0,"x":9.411,"y":24.05,"w":5.362,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN_10_","EN":0},"TI":1193,"AM":0,"x":15.422,"y":24.082,"w":27.658,"h":0.833,"TU":"Employer's Identification Number from Box B","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FWAGES_10_","EN":0},"TI":1194,"AM":0,"x":43.266,"y":24.082,"w":12.994,"h":0.833,"TU":"Federal Wages from Box 1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MWAGES_10_","EN":0},"TI":1195,"AM":0,"x":56.445,"y":24.082,"w":12.994,"h":0.833,"TU":"Medicare Wages from Box 5"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PACOMP_10_","EN":0},"TI":1196,"AM":0,"x":69.624,"y":24.082,"w":12.973,"h":0.833,"TU":"PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAWH_10_","EN":0},"TI":1197,"AM":0,"x":82.783,"y":24.082,"w":12.994,"h":0.833,"TU":"PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCOMP","EN":0},"TI":1198,"AM":1024,"x":69.666,"y":24.877,"w":12.932,"h":0.833,"TU":"Total PA Compensation from Box 16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTWH","EN":0},"TI":1199,"AM":1024,"x":82.745,"y":24.802,"w":12.994,"h":0.833,"TU":"Total PA Income Tax Withheld from Box 17"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_1_","EN":0},"TI":1200,"AM":0,"x":9.273,"y":29.009,"w":3.939,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_1_","EN":0},"TI":1201,"AM":0,"x":14.449,"y":29.076,"w":2.803,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_1_","EN":0},"TI":1202,"AM":0,"x":18.732,"y":29.01,"w":18.676,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_1_","EN":0},"TI":1203,"AM":0,"x":37.937,"y":29.01,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_1_","EN":0},"TI":1204,"AM":0,"x":44.768,"y":29.01,"w":12.694,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_1_","EN":0},"TI":1205,"AM":0,"x":57.418,"y":29.01,"w":12.02,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_1_","EN":0},"TI":1206,"AM":0,"x":69.624,"y":29.01,"w":12.973,"h":0.833,"TU":"Total Part A and B PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_1_","EN":0},"TI":1207,"AM":0,"x":82.783,"y":29.01,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_2_","EN":0},"TI":1208,"AM":0,"x":9.273,"y":29.758,"w":3.6399999999999997,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_2_","EN":0},"TI":1209,"AM":0,"x":14.553,"y":29.812,"w":2.798,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_2_","EN":0},"TI":1210,"AM":0,"x":18.957,"y":29.76,"w":18.451,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_2_","EN":0},"TI":1211,"AM":0,"x":37.937,"y":29.76,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_2_","EN":0},"TI":1212,"AM":0,"x":44.843,"y":29.76,"w":12.619,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_2_","EN":0},"TI":1213,"AM":0,"x":57.418,"y":29.76,"w":12.02,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_2_","EN":0},"TI":1214,"AM":0,"x":69.624,"y":29.76,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_2_","EN":0},"TI":1215,"AM":0,"x":82.783,"y":29.732,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_3_","EN":0},"TI":1216,"AM":0,"x":9.252,"y":30.512,"w":3.7140000000000004,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_3_","EN":0},"TI":1217,"AM":0,"x":14.699,"y":30.588,"w":2.802,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_3_","EN":0},"TI":1218,"AM":0,"x":18.957,"y":30.51,"w":18.377,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_3_","EN":0},"TI":1219,"AM":0,"x":37.937,"y":30.51,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_3_","EN":0},"TI":1220,"AM":0,"x":44.843,"y":30.51,"w":12.619,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_3_","EN":0},"TI":1221,"AM":0,"x":57.493,"y":30.51,"w":11.946,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_3_","EN":0},"TI":1222,"AM":0,"x":69.624,"y":30.51,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_3_","EN":0},"TI":1223,"AM":0,"x":82.783,"y":30.51,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_4_","EN":0},"TI":1224,"AM":0,"x":9.158,"y":31.267,"w":3.864,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_4_","EN":0},"TI":1225,"AM":0,"x":14.592,"y":31.246,"w":2.728,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_4_","EN":0},"TI":1226,"AM":0,"x":18.882,"y":31.26,"w":18.526,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_4_","EN":0},"TI":1227,"AM":0,"x":37.937,"y":31.26,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_4_","EN":0},"TI":1228,"AM":0,"x":44.768,"y":31.26,"w":12.694,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_4_","EN":0},"TI":1229,"AM":0,"x":57.493,"y":31.232,"w":11.946,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_4_","EN":0},"TI":1230,"AM":0,"x":69.624,"y":31.26,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_4_","EN":0},"TI":1231,"AM":0,"x":82.783,"y":31.26,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_5_","EN":0},"TI":1232,"AM":0,"x":9.212,"y":32.022,"w":3.864,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_5_","EN":0},"TI":1233,"AM":0,"x":14.568,"y":32.07,"w":2.803,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_5_","EN":0},"TI":1234,"AM":0,"x":18.877,"y":31.981,"w":18.451,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_5_","EN":0},"TI":1235,"AM":0,"x":38.012,"y":32.01,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_5_","EN":0},"TI":1236,"AM":0,"x":44.918,"y":32.01,"w":12.544,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_5_","EN":0},"TI":1237,"AM":0,"x":57.418,"y":32.01,"w":12.02,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_5_","EN":0},"TI":1238,"AM":0,"x":69.624,"y":32.01,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_5_","EN":0},"TI":1239,"AM":0,"x":82.783,"y":32.01,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_6_","EN":0},"TI":1240,"AM":0,"x":9.33,"y":32.729,"w":3.5650000000000004,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_6_","EN":0},"TI":1241,"AM":0,"x":14.517,"y":32.741,"w":2.802,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_6_","EN":0},"TI":1242,"AM":0,"x":18.807,"y":32.783,"w":18.601,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_6_","EN":0},"TI":1243,"AM":0,"x":37.937,"y":32.76,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_6_","EN":0},"TI":1244,"AM":0,"x":44.843,"y":32.76,"w":12.619,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_6_","EN":0},"TI":1245,"AM":0,"x":57.493,"y":32.76,"w":11.946,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_6_","EN":0},"TI":1246,"AM":0,"x":69.624,"y":32.76,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_6_","EN":0},"TI":1247,"AM":0,"x":82.783,"y":32.76,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_7_","EN":0},"TI":1248,"AM":0,"x":9.33,"y":33.478,"w":3.6399999999999997,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_7_","EN":0},"TI":1249,"AM":0,"x":14.436,"y":33.574,"w":3.027,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_7_","EN":0},"TI":1250,"AM":0,"x":18.899,"y":33.544,"w":18.601,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_7_","EN":0},"TI":1251,"AM":0,"x":37.937,"y":33.51,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_7_","EN":0},"TI":1252,"AM":0,"x":44.918,"y":33.51,"w":12.544,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_7_","EN":0},"TI":1253,"AM":0,"x":57.493,"y":33.51,"w":11.946,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_7_","EN":0},"TI":1254,"AM":0,"x":69.624,"y":33.51,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_7_","EN":0},"TI":1255,"AM":0,"x":82.783,"y":33.51,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_8_","EN":0},"TI":1256,"AM":0,"x":9.31,"y":34.233,"w":3.6399999999999997,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_8_","EN":0},"TI":1257,"AM":0,"x":14.537,"y":34.33,"w":2.877,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_8_","EN":0},"TI":1258,"AM":0,"x":18.957,"y":34.26,"w":18.451,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_8_","EN":0},"TI":1259,"AM":0,"x":37.937,"y":34.26,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_8_","EN":0},"TI":1260,"AM":0,"x":44.918,"y":34.26,"w":12.544,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_8_","EN":0},"TI":1261,"AM":0,"x":57.418,"y":34.26,"w":12.02,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_8_","EN":0},"TI":1262,"AM":0,"x":69.624,"y":34.26,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_8_","EN":0},"TI":1263,"AM":0,"x":82.783,"y":34.26,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_9_","EN":0},"TI":1264,"AM":0,"x":9.215,"y":34.988,"w":4.014,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_9_","EN":0},"TI":1265,"AM":0,"x":14.506,"y":35.077,"w":2.877,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_9_","EN":0},"TI":1266,"AM":0,"x":18.807,"y":35.01,"w":18.601,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_9_","EN":0},"TI":1267,"AM":0,"x":37.937,"y":35.01,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_9_","EN":0},"TI":1268,"AM":0,"x":44.843,"y":35.01,"w":12.619,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_9_","EN":0},"TI":1269,"AM":0,"x":57.343,"y":35.01,"w":12.095,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_9_","EN":0},"TI":1270,"AM":0,"x":69.624,"y":35.01,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_9_","EN":0},"TI":1271,"AM":0,"x":82.783,"y":35.01,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCTS_10_","EN":0},"TI":1272,"AM":0,"x":9.27,"y":35.797,"w":4.164,"h":0.833,"PL":{"V":[" "," T"," S"],"D":["no entry","T","S"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MCCODE_10_","EN":0},"TI":1273,"AM":0,"x":14.542,"y":35.784,"w":2.877,"h":0.833,"PL":{"V":[" ","A. Executor fee","B. Jury duty pay","C. Director's fee","D. Expert witness fee","E. Honorarium","F. Covenant not to compute","G. Damages or settlement for lost wages, other than personal injury","H. Other nonemployee compensation","I. Distribution from employer sponsored retirement, pension or qualified deferred compensation plan","J. Distribution from IRA (Traditional or Roth)","K. Distribution from Life Insurance, Annuity or Endowment Contracts","L. Distribution from Charitable Gift Annuties"],"D":["no entry","A","B","C","D","E","F","G","H","I","J","K","L"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAME_10_","EN":0},"TI":1274,"AM":0,"x":18.736,"y":35.731,"w":18.751,"h":0.833,"TU":"Payer Name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"CODE99R_10_","EN":0},"TI":1275,"AM":0,"x":37.937,"y":35.76,"w":6.518,"h":0.833,"TU":"1099R Code","MV":"maxl:2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTAXINC_10_","EN":0},"TI":1276,"AM":0,"x":44.993,"y":35.76,"w":12.47,"h":0.833,"TU":"Total Federal Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADJPLAN_10_","EN":0},"TI":1277,"AM":0,"x":57.493,"y":35.76,"w":11.946,"h":0.833,"TU":"Adjusted Plan Basis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCOMP_10_","EN":0},"TI":1278,"AM":0,"x":69.624,"y":35.76,"w":12.973,"h":0.833,"TU":"PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXHELD_10_","EN":0},"TI":1279,"AM":0,"x":82.783,"y":35.76,"w":12.994,"h":0.833,"TU":"PA Tax Withheld"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COMPTOT","EN":0},"TI":1280,"AM":1024,"x":69.666,"y":36.569,"w":12.891,"h":0.833,"TU":"Total PA Compensation - Add the totals from Parts A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HELDTOT","EN":0},"TI":1281,"AM":1024,"x":82.82,"y":36.536,"w":12.994,"h":0.833,"TU":"Total PA Tax Withheld - Add the totals from Parts A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL1A","EN":0},"TI":1282,"AM":1024,"x":69.741,"y":38.017,"w":12.932,"h":0.833,"TU":"Total Part B PA Compensation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL13","EN":0},"TI":1283,"AM":1024,"x":82.969,"y":38.006,"w":12.994,"h":0.833,"TU":"Total Part B PA Tax Withheld"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COMPDESC","EN":0},"TI":1284,"AM":0,"x":49.536,"y":41.121,"w":45.107,"h":0.833,"TU":"Other Nonemployee Compensation Description"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/pa/formset.json b/test/data/pa/formset.json new file mode 100755 index 00000000..813f5da3 --- /dev/null +++ b/test/data/pa/formset.json @@ -0,0 +1,38 @@ +{ + "formset" :{ + "id": "S2013PAD", + "version": "0.2", + "agency": "pa", + "main": "PA40", + "forms": [ + {"id": "PA40", "name":"PA-40 - Pennsylvania Income Tax Return", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_pa40", "cid": "40"}, + {"id": "SCHABT", "name":"PA Schedule A/B - Interest Income/Dividend Income", "mc": true, "max": 3, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchAB_TP"}, + {"id": "PAC", "name":"PA Schedule C - Profit or Loss from Business or Profession (Sole Proprietorship)", "mc": true, "max": 10, "parent": null, + "inst":"pa_ins_schc", "cid": "40SchC"}, + {"id": "SCHDT", "name":"PA Schedule D - Sale, Exchange or Disposition of Property", "mc": true, "max": 3, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchDT"}, + {"id": "SE", "name":"PA Schedule E - Rents and Royalty Income (Loss)", "mc": true, "max": 15, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchESFF"}, + {"id": "SCHJT", "name":"PA Schedule J/T - Schedule J - Income from Estates or Trusts and Schedule T - Gambling and Lottery Winnings", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchJT"}, + {"id": "SCHO", "name":"PA Schedule O - Other Deductions", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchO"}, + {"id": "PASCHOC", "name":"PA Schedule OC - Other Credits", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_schoc", "cid": "40SchOC"}, + {"id": "SSP", "name":"PA Schedule SP - Special Tax Forgiveness", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchSP"}, + {"id": "DEP", "name":"PA Schedule SP Dependents Statement", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchSP"}, + {"id": "SUE", "name":"PA Schedule UE - Allowable Employee Business Expenses", "mc": true, "max": 30, "parent": null, + "inst":"pa_ins_pa40", "cid": "40SchUE"}, + {"id": "F8453", "name":"PA 8453 - Pennsylvania Individual Income Tax Declaration for Electronic Filing", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_8453", "cid": "8453"}, + {"id": "VOUCH", "name":"PA-V - Pennsylvania Payment Voucher", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_pa-v", "cid": "PAV"}, + {"id": "W2S", "name":"PA Schedule W-2s - Wage Statement Summary", "mc": false, "max": 1, "parent": null, + "inst":"pa_ins_pa40", "cid": "40W2S"} + ] + } +} \ No newline at end of file diff --git a/test/data/pa/inst/pa_ins_pa40.pdf b/test/data/pa/inst/pa_ins_pa40.pdf new file mode 100755 index 00000000..1b97817e Binary files /dev/null and b/test/data/pa/inst/pa_ins_pa40.pdf differ diff --git a/test/data/pa/inst/pa_schoolcode.pdf b/test/data/pa/inst/pa_schoolcode.pdf new file mode 100755 index 00000000..fd6b9793 Binary files /dev/null and b/test/data/pa/inst/pa_schoolcode.pdf differ diff --git a/test/data/pa/pageset.json b/test/data/pa/pageset.json new file mode 100755 index 00000000..b978ae7f --- /dev/null +++ b/test/data/pa/pageset.json @@ -0,0 +1,62 @@ +{ + "headerData": { + "siteName": "Pennsylvania State Fillable Forms", + "valueLabel": [ + {"href": "#/pa/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "https://revenue-pa.custhelp.com/app/home", "target": "_blank", "label": "Contact PA Tax", + "styleClass": "formImage"}, + {"href": "#/pa/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "stateTaxUrl":"http://www.pafreefile.com", + "eFileLinkUrl":"http://www.pafreefile.com", + "faqFooter":"View more of your state-specific FAQs", + "howItWorksList": {}, + "noteList": { + "item1": "This program does not support prior-year returns, part-year, non-resident or amended returns." + } + }, + + "landingData": { + "formNumber":"PA-40", + "makeSureList": {}, + "tipsList": { + "item1": "" + }, + "beforeList": { + "item1":"Enter your exemption." + } + }, + + "loginData": { + "stateAbbr":"PA", + "signInHelpLink":"https://revenue-pa.custhelp.com/app/answers/list/c/183,186" + }, + + "recoveryData": { + "forgotAnswerLink":"https://revenue-pa.custhelp.com/app/answers/list/c/183,186" + }, + + "homeHeaderData": { + "href": "https://revenue-pa.custhelp.com/app/answers/list/c/183,186" + }, + + "efileData": { + "efRefundLink":" http://www.doreservices.state.pa.us/individual/refunddefault.htm", + "efRequiredInfo":"Social Security number and amount of your expected refund", + "efPaymentDueDate":"April 15, 2014", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + + "commonData": { + "state":"Pennsylvania", + "stateAbbr":"PA", + "departmentName":"Pennsylvania Department of Revenue", + "siteName": "Pennsylvania State Fillable Forms", + "url": "https://www.statefillableforms.com/pa", + "currentTaxYear": "2013" + } +} \ No newline at end of file diff --git a/test/data/sc/availability.json b/test/data/sc/availability.json new file mode 100755 index 00000000..e4b1cabd --- /dev/null +++ b/test/data/sc/availability.json @@ -0,0 +1,19 @@ +{ + "formset": [ + { + "id": "S2013SCD", + "version": "0.1", + "agency": "sc", + "main": "F1040", + "display_name": "Form 1040", + "forms": [ + {"id": "F1040", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F1040DEP", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F319", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F330", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "F8453", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + } + ] +} diff --git a/test/data/sc/form/F1040.content.txt b/test/data/sc/form/F1040.content.txt new file mode 100755 index 00000000..7912e4a4 --- /dev/null +++ b/test/data/sc/form/F1040.content.txt @@ -0,0 +1,534 @@ +30751028 +SC1040 +(Rev. 8/20/13) +3075 +STATE OF SOUTH CAROLINA +DEPARTMENT OF REVENUE +2013 INDIVIDUAL INCOME TAX RETURN +. . . . . . . . . . . . . . . . . +Check this box if you have filed a federal or state extension . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . +Check this box if this return is affected +by a federally declared DISASTER AREA . +. . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . +Enter the name of the combat zone: +Enter the name of the disaster area: +CHECK YOUR +(1) +Enter spouse's SSN here +: +FEDERAL FILING STATUS +(2) Married filing jointly (4) Head-of +-household (5) Widow(er) with dependent child +. . . +Federal Exemptions +. . . . . . +Dependents: +Print your first name and initial Last name +Spouse’s first name, if ma +rried filing jointly Last name +Check if +new address +Zip +State Area code Daytime telephone +City +Check if address +is outside US +Foreign country address including +Postal code (see instructions) +County code +Mailing address (number and street, Apt. no or P. +O. Box) Foreign address, see instructions +Suff. +Social security number +Relationship +Date of birth (MM/DD/YYYY) +1350 +Your social security number +Check if +deceased +Spouse's social security number +Check if +deceased +DO NOT USE THIS FORM TO FILE A +CORRECTED RETURN. SEE SC1040 +INSTRUCTIONS FOR ADDITIONAL +INFORMATION. +For the year January 1 - December 31, 2013, or fiscal tax year beginning + +2013 and ending + +2014 +(Not Supported) +(Not Supported) +Check this box if you are filing SC Schedule NR (Part year/Nonresident) + . . . . . . . . . . . . . . . . . . . . . . . . . . . +Check this box ONLY if filing a composite return on behalf of the nonresident partners/shareholders of a partnership or "S" corporation . +Check this box if you served in a Military COMBAT ZONE during the filing period + . . . . . . . . . . . . . . . . . . . . . . . +Enter the number of exemptions from your 2013 federal return + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +Enter the number of exemptions listed above that were under the age of 6 years on December 31, 2013 + . . . . . . . +Enter the number of taxpayers age 65 or older, as of December 31, 2013 + . . . . . . . . . . . . . . . . . . . . . . . . . . . . + First name + +Last name +Single +(3) Married filing separately. +Enter additional dependents +(Not Supported) +(Not Supported) +----------------Page (0) Break---------------- +This is your +.......................................... +states and political subdivisions +Other additions to income. Attach an explanation +SUBTRACTIONS FROM FEDERAL TAXABLE INCOME +Out-of-state income/gain – Do not include personal service income +f +g +h +i +j + 00 +Add lines +f through v +and enter here. These are your +total subtractions +.............................. +4 +South Carolina INCOME SUBJECT TO TAX +5 + 00 +4 +5 +44% of net capital gains held for more than +one year +Active Trade or Business Income deduction +Certain nontaxable National Guard or Reserve Pay +q +l +m +n +o +p +or the SC Tuition Prepayment Program +k +Caution: Retirement Deduction +(See instructions) +Spouse: date of birth . . . . . . . . . . . . . . . . . . . . . . . . . +Age 65 and older deduction +Taxpayer: date of birth . . . . . . . . . . . . . . . . . . . . . . . . . +Spouse: date of birth . . . . . . . . . . . . . . . . . . . . . . . . . +Negative amount of federal taxable income . . . +. . . . . . . . . . . . . . . . . . . . . . . . +Consumer Protection Services +........................................... +r +s +t +30752026 +TAX +6 + 00 +6 +7 + 00 +8 + 00 +9 + 00 +Add lines 6 through 9 and enter the total here +TOTAL SOUTH CAROLINA TAX +10 +10 +11 + 00 +12 + 00 +TAX on Lump Sum Distribution +(Attach SC4972) +........................... +7 +TAX on Active Trade or Business Income +(Attach I-335) +..................... +8 +9 +Child and Dependent Care +. +11 +Two Wage Earner Credit +12 + 00 + 00 + 00 +q-1 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 + 00 +f +g +h +i +j +l +m +n +o + 00 +r +s +t +k + 00 +Dollars + 00 +Add lines +a through e +and enter the total here. These are your +total additions +.......................... +2 +Add lines 1 and 2 and enter the total here . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . +3 + 00 +2 +3 +u +u +Dollars +1 +1 +ADDITIONS TO FEDERAL TAXABLE INCOME +State tax add back,if itemizing on federal return +Out-of-state losses +(See instructions) +Interest income on obligations of +other +than +a +b +c +d +e +a +b +c + 00 +d + 00 + 00 + 00 + 00 + 00 +e +INCOME AND ADJUSTMENTS +p-1 +p-3 +p-1 +p-2 +p-3 +p-4 +p-2 +p-4 +q-2 +q-1 +q-2 + 00 + 00 +14 +. . . . +15 +SUBTRACT line 14 from line 10. Enter the difference BUT NOT LESS THAN ZERO here . . . . . . . . . . . . . . . . . . . . . +15 +14 + 00 +13 + 00 +13 +Page 2 of 3 +Reserve Police +Taxpayer: date of birth . . . . . . . . . . . . . . . . . . . . . . . . . +Nonresident filers complete +Schedule NR and enter total from line 50 on line 5 below +.................... +. . . . +2013 +Other subtractions + 00 +v +v +.............. +Check type of loss: + +Rental + +Business +Other + . . . +Expenses related to National Guard and Military Reserve income + . . . . . . . . . . . . +............ +State tax refund, if included on your federal return + . . . . . . . . . . . . . . . . . . . . . . . +Check type of income/gain: + +Rental +Business + +Other +........ + Firefighter + +HazMat + +Rescue Squad + DNR + +Other +Total and permanent disability retirement income, if taxed on your federal return +Volunteer deductions (See instructions) Check type of deduction: +Contributions to the SC College Investment Program (“Future Scholar”) +................. +Interest income from obligations of the US government + . . . . . . . . . . . . . . . . . . . . . +......... +(See instructions) +(See instructions) +(See instructions) +..................... +(See instructions) +(See instructions) +(See instructions) +Social security and/or railroad retirement, if taxed on your federal return . . . . . +Surviving spouse #1: date of birth of deceased spouse + . . +Surviving spouse #2: date of birth of deceased spouse + . . +(See instructions) +Subsistence allowance + +days @ $8.00 + . . . . . . . . . . . . . . . . . . . . . . . . . . +Dependents under the age of 6 years on December 31 of the tax year + . . . . . . +....................................... +(See instructions) +Residents subtract line 4 from line 3 and enter the difference. Nonresidents enter amount from Schedule NR, +.......... +........................... +.................................. +.................................... +(See instructions) +(See instructions) +Other non-refundable credits. Attach SC1040TC and other state return(s) + . . . . . . +TOTAL non-refundable credits. Add lines 11 through 13 and enter the total here + . . . . . . . . . . . . . . . . . . . . . . . . +line 50. If less than zero, enter zero here +TAX on excess withdrawals from Catastrophe Savings Accounts + . . . . . . . . . . . . . +............. ..... +South Carolina +: enter tax from South Carolina tax tables +(Not Supported) +Enter federal taxable income from your federal form. If zero or less, enter zero here. +----------------Page (1) Break---------------- +here. Prepare SC1040-V +30753024 +19 + 00 + 00 + 00 + 00 +16 SC INCOME TAX WITHHELD + 00 + 00 +18 +Amount paid with extension . . + 00 +Check type: +Page 3 of 3 +22 +Other refundable credit(s) +17 +2013 estimated tax payments +20 +Other SC withholding +(Attach Form 1099) +....... +21 +Tuition tax credit +(Attach I-319) +............ +Milk Credit +(Attach I-334) +Anhydrous Ammonia +(Attach I-333) +PAYMENTS AND REFUNDABLE CREDITS +2013 +Classroom Teacher Expenses (Attach I-360) +34 +30 +AMOUNT TO BE REFUNDED TO YOU (line 30a check box entry is required) +................ +REFUND +31 +Penalty for Underpayment of Estimated Tax +33 +32 +Add lines 31 through 33 and enter the +AMOUNT YOU OWE +BALANCE DUE +29 +26 +27 +USE TAX: +26 +Amount of line 24 to be credited to your +2014 Estimated Tax +............... +27 +28 +Total Contributions for Check-offs +(Attach I-330) +........................... +Add lines 26 through 28 and enter the total here . . . . . . . . . +. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . +28 + 00 +31 + 00 + 00 + 00 + 00 + 00 + 00 + 00 +29 +33 +32 +34 +30 +Late filing and/or late payment: Penalties _________ Interest ________ + 00 + 00 +23 +Add lines 16 through 22 and enter the total here.. +TOTAL PAYMENTS +24 +25 +23 +25 +24 + 00 +(See instructions and enter letter in box if applicable) +Exception to Underpayment of Estimated Tax + 00 +No +Preparer's printed name +Yes +I +authorize +the Director of the Department of Revenue or delegate to +Check here and enter your email +address if you wish to receive +information about obtaining your +1099-G/INT Income Tax Refund +statement electronically. +Date Check +if self- +employed +FEIN +PTIN +Date +Your signature +Go Paperless! +SCDOR will offer the option to receive your Form 1099-G/INT electr +onically instead of receiving it in the mail. Form 1099-G/INT is used +when preparing your federal tax return. +Email Address +REFUND OPTIONS (subject to program limitations) +30a Mark one refund choice: +30b Direct Deposit (for US Accounts Only) Type: Checking Savings +Routing Number +(RTN) +Bank Account Number +(BAN) +Direct Deposit +(30b required) +Debit Card* Paper Check +*SCDOR Income Tax Refund Prepaid Debit +Card issued by Bank Of America +1-17 digits +Must be 9 digits. +The first two numbers of the +RTN must be 01 through 12 or 21 through 32 +Paid +Preparer's +Use Only +Preparer +signature +Firm name (or yours +if self-employed) and +address and Zip Code +BALANCE DUE +REFUNDS OR ZERO TAX +SC1040 Processing Center, PO Box 101100, Columbia, SC 29211-0100 +Taxable Processing Center, PO Box 101105, Columbia, SC 29211-0105 +MAIL TO: +Phone No. +........... +...... +(Attach W-2 or SC41) +NR sale of real estate +...................... +These are your +If line 23 is LARGER than line 15, subtract line 15 from line 23 and enter the OVERPAYMENT + . . . . . . . . . . . . . . . . +If line 15 is LARGER than line 23, subtract line 23 from line 15 and enter the AMOUNT DUE + . . . . . . . . . . . . . . . . . . +......................................... +(See instructions) +If line 29 is larger than line 24, go to line 31. Otherwise, subtract line 29 from line 24 and enter the +Tax Due: Add lines 25 and 29. If line 29 is larger than line 24, subtract line 24 from line 29 and enter the amount + . . +(See instructions) +..... +.................... +Enter total here +(Attach SC2210) + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +(EFW) or include SC1040-V +with your check or money order for the fu +Pay electronically free of charge at www.sctax.org. Click on DORePay and pay with Visa, Master Card or by Electronic Funds Withdrawal +Spouse's signature (if married filing jointly, BOTH must sign) +discuss this return, attachments and related tax matters with the preparer. +If prepared by a person other than the taxpayer, his declaration is based on all information of which he has any knowledge. +I declare that this return and all attachments are true, correct and complete to the best of my knowledge and belief. +ll amount payable to “SC Department of Revenue”. Write your +social security number and “2013 SC1040” on the payment. +(Not Supported) +(Not Supported) +(Not Supported) +----------------Page (2) Break---------------- diff --git a/test/data/sc/form/F1040.fields.json b/test/data/sc/form/F1040.fields.json new file mode 100755 index 00000000..ee5d55e8 --- /dev/null +++ b/test/data/sc/form/F1040.fields.json @@ -0,0 +1 @@ +[{"id":"TPDEADBX","type":"box","calc":false,"value":""},{"id":"SPDEADBX","type":"box","calc":false,"value":""},{"id":"NEWBX","type":"box","calc":false,"value":""},{"id":"OUTUS","type":"box","calc":true,"value":""},{"id":"BX2","type":"box","calc":true,"value":""},{"id":"BX4","type":"box","calc":true,"value":""},{"id":"BX3","type":"box","calc":false,"value":""},{"id":"COMBATBX","type":"box","calc":false,"value":""},{"id":"DISTERBX","type":"box","calc":false,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"FS1"},{"id":"FSRB","type":"radio","calc":false,"value":"FS3"},{"id":"FSRB","type":"radio","calc":false,"value":"FS2"},{"id":"FSRB","type":"radio","calc":false,"value":"FS4"},{"id":"FSRB","type":"radio","calc":false,"value":"FS5"},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"YRBG","type":"date","calc":false,"value":""},{"id":"MOED","type":"date","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":false,"value":""},{"id":"TPMI","type":"mask","calc":false,"value":""},{"id":"TPLNAME","type":"alpha","calc":false,"value":""},{"id":"SRNAM","type":"alpha","calc":false,"value":""},{"id":"SPFNAME","type":"alpha","calc":false,"value":""},{"id":"SPMI","type":"mask","calc":false,"value":""},{"id":"SPLNAME","type":"alpha","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"COUNTY","type":"mask","calc":false,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"STATE","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"DPHONE","type":"phone","calc":false,"value":""},{"id":"COMBATZN","type":"alpha","calc":false,"value":""},{"id":"DISASTER","type":"alpha","calc":false,"value":""},{"id":"SPSSN2","type":"ssn","calc":false,"value":""},{"id":"XFED","type":"number","calc":false,"value":""},{"id":"AGEOFSIX","type":"number","calc":false,"value":""},{"id":"SNR65","type":"number","calc":false,"value":""},{"id":"A494_DEPFIRST_1_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPLAST_1_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"A494_DEPRELAT_1_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPDOB_1_","type":"date","calc":false,"value":""},{"id":"A494_DEPFIRST_2_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPLAST_2_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"A494_DEPRELAT_2_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPDOB_2_","type":"date","calc":false,"value":""},{"id":"A494_DEPFIRST_3_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPLAST_3_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"A494_DEPRELAT_3_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPDOB_3_","type":"date","calc":false,"value":""},{"id":"A494_DEPFIRST_4_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPLAST_4_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPSSN_4_","type":"ssn","calc":false,"value":""},{"id":"A494_DEPRELAT_4_","type":"alpha","calc":false,"value":""},{"id":"A494_DEPDOB_4_","type":"date","calc":false,"value":""},{"id":"Add_F1040DEP","type":"link","calc":false,"value":""},{"id":"BX35A","type":"box","calc":false,"value":""},{"id":"BX35B","type":"box","calc":false,"value":""},{"id":"BX35C","type":"box","calc":false,"value":""},{"id":"BX48A","type":"box","calc":false,"value":""},{"id":"BX48B","type":"box","calc":false,"value":""},{"id":"BX48C","type":"box","calc":false,"value":""},{"id":"A371RB","type":"radio","calc":false,"value":"BX52E"},{"id":"A371RB","type":"radio","calc":false,"value":"BX52A"},{"id":"A371RB","type":"radio","calc":false,"value":"BX52B"},{"id":"A371RB","type":"radio","calc":false,"value":"BX52F"},{"id":"A371RB","type":"radio","calc":false,"value":"BX52C"},{"id":"A371RB","type":"radio","calc":false,"value":"BX52D"},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"FEDTXINC","type":"number","calc":false,"value":""},{"id":"ITEMDED","type":"number","calc":false,"value":""},{"id":"BX35OTH","type":"alpha","calc":false,"value":""},{"id":"OSLOSS","type":"number","calc":false,"value":""},{"id":"RESERVE","type":"number","calc":false,"value":""},{"id":"OSMUNI","type":"number","calc":false,"value":""},{"id":"OTHADD","type":"number","calc":false,"value":""},{"id":"TOTALADD","type":"number","calc":true,"value":""},{"id":"SUML1L2","type":"number","calc":true,"value":""},{"id":"STTAXREF","type":"number","calc":false,"value":""},{"id":"DRETINC","type":"number","calc":false,"value":""},{"id":"AAD3","type":"alpha","calc":false,"value":""},{"id":"OSTINC","type":"number","calc":false,"value":""},{"id":"CAPGAIN","type":"number","calc":false,"value":""},{"id":"HAZMAT","type":"number","calc":false,"value":""},{"id":"OTHERVOL","type":"alpha","calc":false,"value":""},{"id":"COLLINV","type":"number","calc":false,"value":""},{"id":"ACTIVDED","type":"number","calc":false,"value":""},{"id":"USGOVINT","type":"number","calc":false,"value":""},{"id":"NGTNGPAY","type":"number","calc":false,"value":""},{"id":"SSRR","type":"number","calc":false,"value":""},{"id":"TPDOB","type":"date","calc":false,"value":""},{"id":"TPRETDED","type":"number","calc":false,"value":""},{"id":"SPDOB","type":"date","calc":false,"value":""},{"id":"SPRETDED","type":"number","calc":false,"value":""},{"id":"A473_SSPDOB_1_","type":"date","calc":false,"value":""},{"id":"A473_SSPDED_1_","type":"number","calc":false,"value":""},{"id":"A473_SSPDOB_2_","type":"date","calc":false,"value":""},{"id":"A473_SSPDED_2_","type":"number","calc":false,"value":""},{"id":"TP65DOB","type":"date","calc":false,"value":""},{"id":"TP65DED","type":"number","calc":false,"value":""},{"id":"SP65DOB","type":"date","calc":false,"value":""},{"id":"SP65DED","type":"number","calc":false,"value":""},{"id":"NEGFTI","type":"number","calc":false,"value":""},{"id":"DAYS","type":"number","calc":false,"value":""},{"id":"SUBSIST","type":"number","calc":true,"value":""},{"id":"DEPUND6","type":"number","calc":false,"value":""},{"id":"CPSERV","type":"number","calc":false,"value":""},{"id":"OTHSUB","type":"number","calc":false,"value":""},{"id":"TOTALSUB","type":"number","calc":true,"value":""},{"id":"SCTXINC","type":"number","calc":true,"value":""},{"id":"SCTAX","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"LUMPSUM","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"TAXACTV","type":"number","calc":true,"value":""},{"id":"TAXCATS","type":"number","calc":false,"value":""},{"id":"SCTOTTAX","type":"number","calc":true,"value":""},{"id":"DEPCARE","type":"number","calc":false,"value":""},{"id":"TWOWEC","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"OTHNREF","type":"number","calc":true,"value":""},{"id":"TOTNREF","type":"number","calc":true,"value":""},{"id":"SCNETTAX","type":"number","calc":true,"value":""},{"id":"BXREF1","type":"box","calc":true,"value":""},{"id":"BXREF2","type":"box","calc":true,"value":""},{"id":"BXREF3","type":"box","calc":true,"value":""},{"id":"BX495RB","type":"radio","calc":false,"value":"BXDD"},{"id":"BX495RB","type":"radio","calc":false,"value":"BXDEB"},{"id":"BX495RB","type":"radio","calc":false,"value":"BXPC"},{"id":"BX504RB","type":"radio","calc":false,"value":"BXCK"},{"id":"BX504RB","type":"radio","calc":false,"value":"BXSV"},{"id":"INFO","type":"box","calc":false,"value":""},{"id":"NAME3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"SCTAXWH","type":"number","calc":false,"value":""},{"id":"OTHSCWH","type":"number","calc":false,"value":""},{"id":"ESTTAX","type":"number","calc":false,"value":""},{"id":"PDEXT","type":"number","calc":false,"value":""},{"id":"Add_I319","type":"link","calc":false,"value":""},{"id":"I319CR","type":"number","calc":true,"value":""},{"id":"NONRESRE","type":"number","calc":true,"value":""},{"id":"OTHRCRED","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"TAXPMTS","type":"number","calc":true,"value":""},{"id":"OVERPAY","type":"number","calc":true,"value":""},{"id":"DUE","type":"number","calc":true,"value":""},{"id":"USETAX","type":"number","calc":false,"value":""},{"id":"OVERPYAP","type":"number","calc":false,"value":""},{"id":"Add_I330","type":"link","calc":false,"value":""},{"id":"CONTRIB","type":"number","calc":true,"value":""},{"id":"A414","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"BAN","type":"mask","calc":false,"value":""},{"id":"NEW31","type":"number","calc":true,"value":""},{"id":"PENALTY","type":"number","calc":false,"value":""},{"id":"INTEREST","type":"number","calc":false,"value":""},{"id":"LATEPEN","type":"number","calc":true,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"AR47","type":"number","calc":true,"value":""},{"id":"BXEXCEPT","type":"alpha","calc":true,"value":""},{"id":"BALDUE","type":"number","calc":true,"value":""},{"id":"Add_SC1040V","type":"link","calc":false,"value":""},{"id":"EMAIL","type":"alpha","calc":false,"value":""},{"id":"PEIN","type":"alpha","calc":true,"value":"FFF"},{"id":"PNAM","type":"alpha","calc":true,"value":"SELF PREPARED"}] \ No newline at end of file diff --git a/test/data/sc/form/F1040.json b/test/data/sc/form/F1040.json new file mode 100755 index 00000000..16e55cde --- /dev/null +++ b/test/data/sc/form/F1040.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"F1040.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.398,"y":7.515,"w":0.8639999999999999,"l":92.404},{"oc":"#231f20","x":6.188,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.126,"y":29.268,"w":1.8359999999999999,"l":92.776},{"oc":"#231f20","x":6.126,"y":28.517,"w":1.8359999999999999,"l":92.776},{"oc":"#231f20","x":6.126,"y":31.5,"w":1.8359999999999999,"l":92.776},{"oc":"#231f20","x":6.154,"y":35.904,"w":1.8359999999999999,"l":91.848},{"oc":"#231f20","x":6.154,"y":33.096,"w":1.8359999999999999,"l":91.848},{"oc":"#231f20","x":78.334,"y":39.002,"w":0.756,"l":6.311},{"oc":"#231f20","x":78.334,"y":37.517,"w":0.756,"l":6.311},{"oc":"#231f20","x":78.334,"y":38.268,"w":0.756,"l":6.311},{"oc":"#231f20","x":6.188,"y":41.252,"w":0.8639999999999999,"l":92.701},{"oc":"#231f20","x":6.188,"y":40.275,"w":0.8639999999999999,"l":92.701},{"oc":"#231f20","x":6.15,"y":42.003,"w":0.8639999999999999,"l":92.726},{"oc":"#231f20","x":6.15,"y":43.502,"w":0.8639999999999999,"l":92.726},{"oc":"#231f20","x":6.15,"y":42.75,"w":0.8639999999999999,"l":92.726},{"oc":"#231f20","x":6.188,"y":44.253,"w":0.8639999999999999,"l":92.689},{"oc":"#231f20","x":6.188,"y":41.238,"w":0.8639999999999999,"l":92.689},{"oc":"#231f20","x":6.398,"y":21.744,"w":0.8639999999999999,"l":92.392},{"oc":"#231f20","x":6.398,"y":26.244,"w":0.8639999999999999,"l":92.392},{"oc":"#231f20","x":6.336,"y":24.791,"w":0.8639999999999999,"l":92.454},{"oc":"#231f20","x":6.398,"y":23.247,"w":0.8639999999999999,"l":92.417},{"oc":"#231f20","x":6.225,"y":19.49,"w":1.8359999999999999,"l":92.59},{"oc":"#231f20","x":6.336,"y":13.473,"w":0.756,"l":34.303},{"oc":"#231f20","x":6.039,"y":15.759,"w":0.8639999999999999,"l":34.761},{"oc":"#231f20","x":6.039,"y":11.129,"w":0.8639999999999999,"l":34.761},{"oc":"#231f20","x":6.15,"y":15.746,"w":0.8639999999999999,"l":34.551},{"oc":"#231f20","x":6.15,"y":11.169,"w":0.8639999999999999,"l":34.551},{"oc":"#231f20","x":6.311,"y":15.7,"w":1.8359999999999999,"l":34.266},{"oc":"#231f20","x":6.311,"y":11.214,"w":1.8359999999999999,"l":34.266},{"oc":"#231f20","x":6.222,"y":27.636,"w":1.8359999999999999,"l":92.743},{"oc":"#231f20","x":6.222,"y":20.239,"w":1.8359999999999999,"l":92.743}],"VLines":[{"oc":"#231f20","x":6.188,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":19.8,"y":4.725,"w":0.8639999999999999,"l":2.79},{"oc":"#231f20","x":82.913,"y":4.725,"w":0.8639999999999999,"l":2.79},{"oc":"#231f20","x":98.002,"y":33.096,"w":1.8359999999999999,"l":2.809},{"oc":"#231f20","x":6.154,"y":33.096,"w":1.8359999999999999,"l":2.809},{"oc":"#231f20","x":98.889,"y":40.275,"w":0.8639999999999999,"l":0.977},{"oc":"#231f20","x":6.188,"y":40.275,"w":0.8639999999999999,"l":0.977},{"oc":"#231f20","x":23.513,"y":40.275,"w":0.8639999999999999,"l":3.978},{"oc":"#231f20","x":43.325,"y":40.275,"w":0.8639999999999999,"l":3.978},{"oc":"#231f20","x":60.65,"y":40.275,"w":0.8639999999999999,"l":3.978},{"oc":"#231f20","x":79.237,"y":40.275,"w":0.8639999999999999,"l":3.978},{"oc":"#231f20","x":98.876,"y":41.238,"w":0.8639999999999999,"l":3.015},{"oc":"#231f20","x":6.188,"y":41.238,"w":0.8639999999999999,"l":3.015},{"oc":"#231f20","x":6.188,"y":41.252,"w":0.8639999999999999,"l":3.001},{"oc":"#231f20","x":81.642,"y":23.217,"w":0.8639999999999999,"l":1.539},{"oc":"#231f20","x":25.493,"y":26.301,"w":0.8639999999999999,"l":1.476},{"oc":"#231f20","x":51.381,"y":24.791,"w":0.8639999999999999,"l":1.426},{"oc":"#231f20","x":74.98,"y":24.791,"w":0.8639999999999999,"l":1.426},{"oc":"#231f20","x":62.048,"y":24.791,"w":0.8639999999999999,"l":1.44},{"oc":"#231f20","x":17.612,"y":23.247,"w":0.8639999999999999,"l":1.539},{"oc":"#231f20","x":57.408,"y":20.21,"w":0.8639999999999999,"l":3.024},{"oc":"#231f20","x":86.897,"y":20.223,"w":0.8639999999999999,"l":1.503},{"oc":"#231f20","x":22.065,"y":12.699,"w":0.756,"l":0.752},{"oc":"#231f20","x":15.939,"y":12.699,"w":0.756,"l":0.752},{"oc":"#231f20","x":22.065,"y":14.908,"w":0.756,"l":0.752},{"oc":"#231f20","x":15.939,"y":14.908,"w":0.756,"l":0.752},{"oc":"#231f20","x":40.8,"y":11.129,"w":0.8639999999999999,"l":4.63},{"oc":"#231f20","x":6.039,"y":11.129,"w":0.8639999999999999,"l":4.63},{"oc":"#231f20","x":30.839,"y":11.214,"w":0.756,"l":4.495},{"oc":"#231f20","x":40.701,"y":11.169,"w":0.8639999999999999,"l":4.577},{"oc":"#231f20","x":6.15,"y":11.169,"w":0.8639999999999999,"l":4.577},{"oc":"#231f20","x":40.578,"y":11.214,"w":1.8359999999999999,"l":4.486},{"oc":"#231f20","x":6.311,"y":11.214,"w":1.8359999999999999,"l":4.486},{"oc":"#231f20","x":98.965,"y":20.239,"w":1.8359999999999999,"l":7.398},{"oc":"#231f20","x":6.222,"y":20.239,"w":1.8359999999999999,"l":7.398}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":51.498,"y":25.455,"w":10.332,"h":0.762,"clr":1},{"x":28.262,"y":33.813,"w":1.596,"h":0.581,"clr":1},{"x":47.022,"y":33.828,"w":1.596,"h":0.581,"clr":1},{"x":28.25,"y":34.598,"w":1.596,"h":0.581,"clr":1},{"x":46.927,"y":34.611,"w":1.596,"h":0.581,"clr":1},{"x":65.474,"y":34.603,"w":1.596,"h":0.581,"clr":1}],"Texts":[{"oc":"#231f20","x":10.888,"y":46.383,"w":5.759999999999999,"clr":-1,"A":"left","R":[{"T":"30751028","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":85.62,"y":4.808,"w":3.6087999999999996,"clr":-1,"A":"left","R":[{"T":"SC1040","S":11,"TS":[0,18,1,0]}]},{"oc":"#231f20","x":85.596,"y":5.559,"w":6.334600000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%208%2F20%2F13)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":88.429,"y":6.311,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"3075","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.032,"y":4.614,"w":14.030400000000002,"clr":-1,"A":"left","R":[{"T":"STATE%20OF%20SOUTH%20CAROLINA","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.444,"y":5.258,"w":13.718399999999995,"clr":-1,"A":"left","R":[{"T":"DEPARTMENT%20OF%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":29.524,"y":6.324,"w":19.2339,"clr":-1,"A":"left","R":[{"T":"2013%20INDIVIDUAL%20INCOME%20TAX%20RETURN","S":-1,"TS":[0,19.5,1,0]}]},{"oc":"#231f20","x":74.262,"y":27.573,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.876,"y":29.081,"w":29.314000000000007,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20if%20you%20have%20filed%20a%20federal%20or%20state%20extension%20%20.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":46.21,"y":29.081,"w":17.434399999999997,"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","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":70.166,"y":29.081,"w":12.654000000000003,"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.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.876,"y":31.451999999999998,"w":18.747999999999998,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20if%20this%20return%20is%20affected%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":31.657,"y":31.451999999999998,"w":20.364600000000006,"clr":-1,"A":"left","R":[{"T":"by%20a%20federally%20declared%20DISASTER%20AREA%20%20.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":59.67,"y":31.451999999999998,"w":12.372800000000003,"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","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.671,"y":31.451999999999998,"w":9.842000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":77.09,"y":29.904,"w":9.560800000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.876,"y":30.624,"w":16.9436,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20name%20of%20the%20combat%20zone%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.876,"y":32.127,"w":17.0014,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20name%20of%20the%20disaster%20area%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":7.163,"y":33.545,"w":6.975800000000001,"clr":-1,"A":"left","R":[{"T":"CHECK%20YOUR%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":25.589,"y":33.545,"w":1.2187000000000001,"clr":-1,"A":"left","R":[{"T":"(1)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.214,"y":33.536,"w":11.8691,"clr":-1,"A":"left","R":[{"T":"Enter%20spouse's%20SSN%20here","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":81.524,"y":33.536,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":7.187,"y":34.346,"w":12.8164,"clr":-1,"A":"left","R":[{"T":"FEDERAL%20FILING%20STATUS%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":25.589,"y":34.346,"w":1.2217,"clr":-1,"A":"left","R":[{"T":"(2)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.727,"y":34.346,"w":3.388300000000001,"clr":-1,"A":"left","R":[{"T":"Married","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.786,"y":34.346,"w":2.0554,"clr":-1,"A":"left","R":[{"T":"filing","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.004,"y":34.346,"w":2.5553,"clr":-1,"A":"left","R":[{"T":"jointly","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.684,"y":34.346,"w":1.2217,"clr":-1,"A":"left","R":[{"T":"(4)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.205,"y":34.346,"w":3.5563000000000002,"clr":-1,"A":"left","R":[{"T":"Head-of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.11,"y":34.346,"w":4.941,"clr":-1,"A":"left","R":[{"T":"-household","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.494,"y":34.346,"w":1.2202000000000002,"clr":-1,"A":"left","R":[{"T":"(5)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.631,"y":34.346,"w":4.549600000000001,"clr":-1,"A":"left","R":[{"T":"Widow(er)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.289,"y":34.346,"w":1.7755999999999998,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.116,"y":34.346,"w":4.7206,"clr":-1,"A":"left","R":[{"T":"dependent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.026,"y":34.346,"w":2.053,"clr":-1,"A":"left","R":[{"T":"child","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.247,"y":38.216,"w":1.4060000000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.875,"y":35.952,"w":3.557,"clr":-1,"A":"left","R":[{"T":"Federal","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":11.161,"y":35.952,"w":5.668,"clr":-1,"A":"left","R":[{"T":"Exemptions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":69.544,"y":36.717,"w":3.093200000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.875,"y":39.192,"w":6.0516000000000005,"clr":-1,"A":"left","R":[{"T":"Dependents%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.853,"y":19.955,"w":13.7406,"clr":-1,"A":"left","R":[{"T":"Print%20your%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":57.643,"y":19.955,"w":4.6726,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.841,"y":21.444,"w":11.522200000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name%2C%20if%20ma","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":20.707,"y":21.444,"w":7.448100000000001,"clr":-1,"A":"left","R":[{"T":"rried%20filing%20jointly%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":57.608,"y":21.444,"w":4.669899999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.89,"y":23.159,"w":3.8783,"clr":-1,"A":"left","R":[{"T":"Check%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.89,"y":23.609,"w":5.6579999999999995,"clr":-1,"A":"left","R":[{"T":"new%20address","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":62.281,"y":24.477,"w":1.3935,"clr":-1,"A":"left","R":[{"T":"Zip","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":51.577,"y":24.486,"w":2.3355,"clr":-1,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":75.142,"y":24.486,"w":14.566200000000006,"clr":-1,"A":"left","R":[{"T":"Area%20code%20%20%20%20%20Daytime%20telephone%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.89,"y":24.486,"w":1.7212,"clr":-1,"A":"left","R":[{"T":"City","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.89,"y":26.147,"w":7.704600000000002,"clr":-1,"A":"left","R":[{"T":"Check%20if%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.89,"y":26.597,"w":5.8845,"clr":-1,"A":"left","R":[{"T":"is%20outside%20US","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":26.577,"y":25.94,"w":15.256799999999995,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20address%20including%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":44.724,"y":25.94,"w":13.101,"clr":-1,"A":"left","R":[{"T":"Postal%20code%20(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":81.765,"y":22.947,"w":5.5986,"clr":-1,"A":"left","R":[{"T":"County%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":17.697,"y":22.947,"w":22.131,"clr":-1,"A":"left","R":[{"T":"Mailing%20address%20(number%20and%20street%2C%20Apt.%20no%20or%20P.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":44.346,"y":22.947,"w":18.665600000000005,"clr":-1,"A":"left","R":[{"T":"O.%20Box)%20%20Foreign%20address%2C%20see%20instructions","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":87.18,"y":19.923,"w":2.0685000000000002,"clr":-1,"A":"left","R":[{"T":"Suff.","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":43.422,"y":40.097,"w":10.1118,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.833,"y":40.083,"w":5.499599999999999,"clr":-1,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.506,"y":40.088,"w":13.0408,"clr":-1,"A":"left","R":[{"T":"Date%20of%20birth%20(MM%2FDD%2FYYYY)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.061,"y":2.148,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":10.875,"y":11.022,"w":12.609399999999997,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":31.096,"y":13.731,"w":3.6016,"clr":-1,"A":"left","R":[{"T":"Check%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":31.096,"y":14.231,"w":4.3224,"clr":-1,"A":"left","R":[{"T":"deceased","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":9.576,"y":13.286,"w":14.562600000000005,"clr":-1,"A":"left","R":[{"T":"Spouse's%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":31.096,"y":11.495,"w":3.6016,"clr":-1,"A":"left","R":[{"T":"Check%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":31.096,"y":11.994,"w":4.3224,"clr":-1,"A":"left","R":[{"T":"deceased","S":2,"TS":[0,10,0,0]}]},{"oc":"#686868","x":10.294,"y":15.899999999999999,"w":17.15199999999999,"clr":-1,"A":"left","R":[{"T":"DO%20NOT%20USE%20THIS%20FORM%20TO%20FILE%20A","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#686868","x":10.219,"y":16.647,"w":17.233400000000003,"clr":-1,"A":"left","R":[{"T":"CORRECTED%20RETURN.%20SEE%20SC1040","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#686868","x":10.9,"y":17.399,"w":16.297900000000002,"clr":-1,"A":"left","R":[{"T":"INSTRUCTIONS%20FOR%20ADDITIONAL","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#686868","x":17.496,"y":18.15,"w":7.319800000000001,"clr":-1,"A":"left","R":[{"T":"INFORMATION.","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#231f20","x":5.876,"y":19.298,"w":32.15219999999998,"clr":-1,"A":"left","R":[{"T":"For%20the%20year%20January%201%20-%20December%2031%2C%202013%2C%20or%20fiscal%20tax%20year%20beginning","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.932,"y":19.298,"w":7.7216000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20%20and%20ending","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.524,"y":19.298,"w":2.2224000000000004,"clr":-1,"A":"left","R":[{"T":"2014","S":-1,"TS":[0,11,0,0]}]},{"x":17.726,"y":26.392,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"x":93.451,"y":27.538,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"oc":"#231f20","x":5.876,"y":27.573,"w":33.97430000000002,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20if%20you%20are%20filing%20SC%20Schedule%20NR%20(Part%20year%2FNonresident)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":52.631,"y":27.573,"w":15.584799999999992,"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","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.876,"y":28.329,"w":65.30899999999997,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20ONLY%20if%20filing%20a%20composite%20return%20on%20behalf%20of%20the%20nonresident%20partners%2Fshareholders%20of%20a%20partnership%20or%20%22S%22%20corporation%20.%20","S":-1,"TS":[0,10.3,1,0]}]},{"oc":"#231f20","x":5.876,"y":29.904,"w":38.27740000000001,"clr":-1,"A":"left","R":[{"T":"Check%20this%20box%20if%20you%20served%20in%20a%20Military%20COMBAT%20ZONE%20during%20the%20filing%20period","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":58.54,"y":29.904,"w":13.372800000000016,"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","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.875,"y":36.717,"w":27.46900000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20exemptions%20from%20your%202013%20federal%20return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.678,"y":36.717,"w":18.639399999999988,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.875,"y":37.473,"w":45.83170000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20exemptions%20listed%20above%20that%20were%20under%20the%20age%20of%206%20years%20on%20December%2031%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.963,"y":37.473,"w":3.8962000000000017,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.875,"y":38.216,"w":32.225000000000016,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20taxpayers%20age%2065%20or%20older%2C%20as%20of%20December%2031%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.235,"y":38.216,"w":15.834599999999977,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.877,"y":40.092,"w":5.024100000000001,"clr":-1,"A":"left","R":[{"T":"%20First%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.606,"y":40.092,"w":4.687900000000001,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.712,"y":33.536,"w":2.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.848,"y":33.536,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(3)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.394,"y":33.536,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"Married","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.454,"y":33.536,"w":2.056,"clr":-1,"A":"left","R":[{"T":"filing","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.673,"y":33.536,"w":4.891,"clr":-1,"A":"left","R":[{"T":"separately.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.961,"y":44.436,"w":12.457400000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20additional%20dependents","S":-1,"TS":[0,11,0,0]}]},{"x":93.58,"y":28.241,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"x":60.694,"y":25.892,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":0,"AM":0,"x":6.491,"y":12.125,"w":24.056,"h":1.39,"TU":"Your social security number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":2,"AM":0,"x":6.491,"y":14.491,"w":24.206,"h":1.219,"TU":"Spouse's social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YRBG","EN":0},"TI":4,"AM":0,"x":50.656,"y":19.65,"w":5.31,"h":0.833,"TU":"For the year January 1 -December 31 2013 or fiscal tax year beginning","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"MOED","EN":0},"TI":5,"AM":0,"x":67.283,"y":19.669,"w":6.106,"h":0.833,"TU":"2013 and ending","MV":"mm/dd"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":6,"AM":0,"x":6.521,"y":20.912,"w":36.747,"h":0.846,"TU":"Print your first name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TPMI","EN":0},"TI":7,"AM":0,"x":44.797,"y":20.864,"w":11.627,"h":0.867,"TU":"Taxpayer middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":8,"AM":0,"x":57.743,"y":20.881,"w":29.079,"h":0.9,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SRNAM","EN":0},"TI":9,"AM":0,"x":87.583,"y":20.861,"w":10.961,"h":0.9,"TU":"Suffix"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":10,"AM":0,"x":6.483,"y":22.399,"w":36.784,"h":0.854,"TU":"Spouse's first name, if married filing jointly"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SPMI","EN":0},"TI":11,"AM":0,"x":44.842,"y":22.404,"w":11.628,"h":0.867,"TU":"Spouse middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":12,"AM":0,"x":58.04,"y":22.453,"w":40.462,"h":0.833,"TU":"Last name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":14,"AM":0,"x":18.231,"y":24.025,"w":62.894,"h":0.833,"TU":"Mailing address (number and street, Apt. no or P.O. Box) Foreign address, see instructions."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"COUNTY","EN":0},"TI":15,"AM":0,"x":81.766,"y":24.008,"w":5.014,"h":0.833,"TU":"County Code","MV":"99"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:SCCntyCd"}},"id":{"Id":"Look_Up","EN":0},"TI":16,"AM":0,"x":87.093,"y":23.964,"w":4.14,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":17,"AM":0,"x":6.826,"y":25.471,"w":43.964,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":18,"AM":0,"x":51.534,"y":25.482,"w":9.834,"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":19,"AM":0,"x":62.678,"y":25.441,"w":11.765,"h":0.833,"TU":"ZIP Code"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":20,"AM":0,"x":75.593,"y":25.517,"w":22.887,"h":0.833,"TU":"Daytime telephone"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COMBATZN","EN":0},"TI":26,"AM":0,"x":30.446,"y":30.91,"w":57.874,"h":0.833,"TU":"Enterr the name of the combat zone"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DISASTER","EN":0},"TI":28,"AM":0,"x":30.89,"y":32.407,"w":57.276,"h":0.833,"TU":"Enter the name of the disaster area"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN2","EN":0},"TI":31,"AM":0,"x":82.74,"y":33.907,"w":14.61,"h":0.833,"TU":"Married filing separately. Enter spouse's SSN here"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"XFED","EN":0},"TI":35,"AM":0,"x":77.955,"y":36.925,"w":6.884,"h":0.833,"TU":"Enter the number of exemptions from your 2013 federal return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGEOFSIX","EN":0},"TI":36,"AM":0,"x":77.955,"y":37.729,"w":6.959,"h":0.833,"TU":"Enter the number of exemptions listed above that were under the age of 6 years on December 31, 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SNR65","EN":0},"TI":37,"AM":0,"x":77.88,"y":38.464,"w":7.109,"h":0.833,"TU":"Enter the number of taxpayers age 65 or older, as of December 31, 2013"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPFIRST_1_","EN":0},"TI":38,"AM":0,"x":6.125,"y":41.352,"w":16.995,"h":0.833,"TU":"First name_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPLAST_1_","EN":0},"TI":39,"AM":0,"x":23.45,"y":41.352,"w":19.511,"h":0.833,"TU":"Last name_Row_1"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A494_DEPSSN_1_","EN":0},"TI":40,"AM":0,"x":43.381,"y":41.352,"w":17.077,"h":0.833,"TU":"Social security number_Row_1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPRELAT_1_","EN":0},"TI":41,"AM":0,"x":61.183,"y":41.298,"w":17.309,"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":"date","TypeInfo":{}},"id":{"Id":"A494_DEPDOB_1_","EN":0},"TI":42,"AM":0,"x":79.564,"y":41.271,"w":18.986,"h":0.833,"TU":"Date of birth (MM/DD/YYYY)_Row_1","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPFIRST_2_","EN":0},"TI":43,"AM":0,"x":6.125,"y":42.102,"w":16.995,"h":0.833,"TU":"First name_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPLAST_2_","EN":0},"TI":44,"AM":0,"x":23.45,"y":42.102,"w":19.511,"h":0.833,"TU":"Last name_Row_2"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A494_DEPSSN_2_","EN":0},"TI":45,"AM":0,"x":43.516,"y":42.065,"w":17.013,"h":0.833,"TU":"Social security number_Row_2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPRELAT_2_","EN":0},"TI":46,"AM":0,"x":61.182,"y":42.063,"w":17.309,"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":"date","TypeInfo":{}},"id":{"Id":"A494_DEPDOB_2_","EN":0},"TI":47,"AM":0,"x":79.567,"y":42.01,"w":19.05,"h":0.833,"TU":"Date of birth (MM/DD/YYYY)_Row_2","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPFIRST_3_","EN":0},"TI":48,"AM":0,"x":6.125,"y":42.852,"w":16.995,"h":0.833,"TU":"First name_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPLAST_3_","EN":0},"TI":49,"AM":0,"x":23.45,"y":42.852,"w":19.511,"h":0.833,"TU":"Last name_Row_3"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A494_DEPSSN_3_","EN":0},"TI":50,"AM":0,"x":43.426,"y":42.798,"w":17.078,"h":0.833,"TU":"Social security number_Row_3"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPRELAT_3_","EN":0},"TI":51,"AM":0,"x":61.183,"y":42.818,"w":17.245,"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":"date","TypeInfo":{}},"id":{"Id":"A494_DEPDOB_3_","EN":0},"TI":52,"AM":0,"x":79.611,"y":42.729,"w":18.922,"h":0.833,"TU":"Date of birth (MM/DD/YYYY)_Row_3","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPFIRST_4_","EN":0},"TI":53,"AM":0,"x":6.125,"y":43.602,"w":16.995,"h":0.833,"TU":"First name_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPLAST_4_","EN":0},"TI":54,"AM":0,"x":23.45,"y":43.602,"w":19.511,"h":0.833,"TU":"Last name_Row_4"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A494_DEPSSN_4_","EN":0},"TI":55,"AM":0,"x":43.39,"y":43.572,"w":17.078,"h":0.833,"TU":"Social security number_Row_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A494_DEPRELAT_4_","EN":0},"TI":56,"AM":0,"x":61.238,"y":43.592,"w":17.181,"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":"date","TypeInfo":{}},"id":{"Id":"A494_DEPDOB_4_","EN":0},"TI":57,"AM":0,"x":79.615,"y":43.468,"w":18.986,"h":0.833,"TU":"Date of birth (MM/DD/YYYY)_Row_4","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1040DEP"}},"id":{"Id":"Add_F1040DEP","EN":0},"TI":58,"AM":0,"x":23.616,"y":44.605,"w":2.268,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPDEADBX","EN":0},"TI":1,"AM":0,"x":38.089,"y":11.918,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDEADBX","EN":0},"TI":3,"AM":0,"x":38.114,"y":14.146,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NEWBX","EN":0},"TI":13,"AM":0,"x":14.425,"y":23.802,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OUTUS","EN":0},"TI":21,"AM":1024,"x":16.329,"y":26.634,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2","EN":0},"TI":22,"AM":1024,"x":91.451,"y":27.702,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX4","EN":0},"TI":23,"AM":1024,"x":91.495,"y":28.438,"w":1.554,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3","EN":0},"TI":24,"AM":0,"x":91.44,"y":29.242,"w":1.81,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COMBATBX","EN":0},"TI":25,"AM":0,"x":91.495,"y":30.056,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DISTERBX","EN":0},"TI":27,"AM":0,"x":91.411,"y":31.628,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":29,"AM":0,"x":28.291,"y":33.704,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":30,"AM":0,"x":46.922,"y":33.719,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":32,"AM":0,"x":28.15,"y":34.512,"w":1.8,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":33,"AM":0,"x":46.763,"y":34.478,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":34,"AM":0,"x":65.182,"y":34.541,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":60.638,"y":19.499,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":18.747,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":36.005,"w":0.8639999999999999,"l":38.165},{"oc":"#231f20","x":60.638,"y":17.294,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":6.398,"y":15.79,"w":1.8359999999999999,"l":92.404},{"oc":"#231f20","x":60.638,"y":16.542,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":6.398,"y":38.255,"w":1.8359999999999999,"l":92.404},{"oc":"#231f20","x":79.2,"y":36.756,"w":0.8639999999999999,"l":19.602},{"oc":"#231f20","x":60.638,"y":26.253,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":25.506,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":24.755,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":24.003,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":21.753,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":23.256,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":6.188,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":60.638,"y":41.256,"w":0.8639999999999999,"l":38.165},{"oc":"#231f20","x":6.287,"y":42.003,"w":1.8359999999999999,"l":92.516},{"oc":"#231f20","x":60.638,"y":39.753,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":40.505,"w":0.8639999999999999,"l":18.513},{"oc":"#231f20","x":60.638,"y":42.755,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":43.502,"w":0.8639999999999999,"l":18.637},{"oc":"#231f20","x":25.369,"y":33.606,"w":0.8639999999999999,"l":3.502},{"oc":"#231f20","x":60.638,"y":30.006,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":39.006,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":28.586,"y":27.612,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":28.586,"y":28.364,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":48.423,"y":29.115,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":48.423,"y":29.862,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":28.797,"y":31.356,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":28.797,"y":32.108,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":60.638,"y":36.005,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":32.256,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":33.003,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":34.506,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.638,"y":33.755,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":79.2,"y":15.043,"w":0.8639999999999999,"l":19.602},{"oc":"#231f20","x":79.2,"y":14.292,"w":0.8639999999999999,"l":19.602},{"oc":"#231f20","x":6.435,"y":5.994,"w":1.8359999999999999,"l":92.404},{"oc":"#231f20","x":60.687,"y":12.776,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":6.435,"y":7.524,"w":1.8359999999999999,"l":92.342},{"oc":"#231f20","x":60.687,"y":11.272,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":6.398,"y":15.048,"w":1.8359999999999999,"l":92.38},{"oc":"#231f20","x":60.687,"y":9.022,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.687,"y":10.526,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.712,"y":13.532,"w":0.8639999999999999,"l":38.066},{"oc":"#231f20","x":48.052,"y":10.426,"w":0.8639999999999999,"l":7.846},{"oc":"#231f20","x":60.7,"y":27.756,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.687,"y":29.25,"w":0.8639999999999999,"l":18.464},{"oc":"#231f20","x":60.625,"y":28.499,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.675,"y":31.5,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":79.274,"y":44.964,"w":0.8639999999999999,"l":19.478},{"oc":"#231f20","x":79.237,"y":45.716,"w":1.8359999999999999,"l":19.515},{"oc":"#231f20","x":60.625,"y":44.276,"w":0.8639999999999999,"l":38.004},{"oc":"#231f20","x":6.435,"y":8.258,"w":1.8359999999999999,"l":92.293},{"oc":"#231f20","x":47.854,"y":21.523,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":50.119,"y":18.599,"w":0.8639999999999999,"l":7.833},{"oc":"#231f20","x":60.638,"y":35.253,"w":0.8639999999999999,"l":18.563}],"VLines":[{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":82.059,"y":15.827,"w":0.8639999999999999,"l":22.406},{"oc":"#231f20","x":76.564,"y":15.836,"w":0.8639999999999999,"l":8.595},{"oc":"#231f20","x":63.496,"y":15.8,"w":0.8639999999999999,"l":8.631},{"oc":"#231f20","x":79.2,"y":15.827,"w":0.8639999999999999,"l":8.604},{"oc":"#231f20","x":76.564,"y":23.63,"w":0.8639999999999999,"l":12.371},{"oc":"#231f20","x":63.496,"y":23.63,"w":0.8639999999999999,"l":12.371},{"oc":"#231f20","x":79.2,"y":23.63,"w":0.8639999999999999,"l":12.447},{"oc":"#231f20","x":6.188,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":60.638,"y":38.255,"w":0.8639999999999999,"l":3.002},{"oc":"#231f20","x":79.2,"y":35.928,"w":0.8639999999999999,"l":7.551},{"oc":"#231f20","x":63.496,"y":42.003,"w":0.8639999999999999,"l":2.254},{"oc":"#231f20","x":63.496,"y":38.264,"w":0.8639999999999999,"l":2.993},{"oc":"#231f20","x":76.564,"y":42.003,"w":0.8639999999999999,"l":2.264},{"oc":"#231f20","x":82.059,"y":35.892,"w":0.8639999999999999,"l":9.823},{"oc":"#231f20","x":60.638,"y":15.827,"w":0.8639999999999999,"l":8.604},{"oc":"#231f20","x":60.638,"y":23.629,"w":0.8639999999999999,"l":12.371},{"oc":"#231f20","x":82.083,"y":8.289,"w":0.8639999999999999,"l":6.786},{"oc":"#231f20","x":96.08,"y":13.54,"w":0.8639999999999999,"l":1.503},{"oc":"#231f20","x":96.154,"y":15.849,"w":0.8639999999999999,"l":29.151},{"oc":"#231f20","x":76.564,"y":38.304,"w":0.8639999999999999,"l":2.952},{"oc":"#231f20","x":63.471,"y":8.257,"w":0.8639999999999999,"l":5.269},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":82.121,"y":5.998,"w":0.8639999999999999,"l":1.525},{"oc":"#231f20","x":96.327,"y":6.008,"w":0.8639999999999999,"l":1.517},{"oc":"#231f20","x":76.564,"y":8.276,"w":0.8639999999999999,"l":5.247},{"oc":"#231f20","x":60.687,"y":8.276,"w":0.8639999999999999,"l":5.265},{"oc":"#231f20","x":79.25,"y":8.266,"w":0.8639999999999999,"l":6.759},{"oc":"#231f20","x":60.613,"y":42.053,"w":0.8639999999999999,"l":2.214},{"oc":"#231f20","x":79.2,"y":43.502,"w":0.8639999999999999,"l":2.192},{"oc":"#231f20","x":79.25,"y":6.048,"w":0.8639999999999999,"l":1.467}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":26.763,"y":20.248,"w":1.596,"h":0.581,"clr":1},{"x":13.094,"y":20.26,"w":1.596,"h":0.581,"clr":1},{"x":41.621,"y":20.288,"w":1.596,"h":0.581,"clr":1},{"x":41.651,"y":20.986,"w":1.596,"h":0.581,"clr":1},{"x":13.082,"y":21.045,"w":1.596,"h":0.581,"clr":1},{"x":26.668,"y":21.031,"w":1.596,"h":0.581,"clr":1}],"Texts":[{"oc":"#231f20","x":41.541,"y":37.242,"w":5.1011999999999995,"clr":-1,"A":"left","R":[{"T":"This%20is%20your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.577,"y":11.767,"w":23.444399999999987,"clr":-1,"A":"left","R":[{"T":"..........................................","S":-1,"TS":[0,11.9776,0,0]}]},{"oc":"#231f20","x":30.749,"y":11.139,"w":2.665,"clr":-1,"A":"left","R":[{"T":"states","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.816,"y":11.139,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.502,"y":11.139,"w":3.3295000000000003,"clr":-1,"A":"left","R":[{"T":"political","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.492,"y":11.139,"w":5.44,"clr":-1,"A":"left","R":[{"T":"subdivisions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":12.588,"w":2.5005,"clr":-1,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.301,"y":12.588,"w":4.001100000000001,"clr":-1,"A":"left","R":[{"T":"additions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.212,"y":12.588,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.742,"y":12.588,"w":3.5003,"clr":-1,"A":"left","R":[{"T":"income.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.966,"y":12.588,"w":2.8344000000000005,"clr":-1,"A":"left","R":[{"T":"Attach","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.252,"y":12.588,"w":1.1118000000000001,"clr":-1,"A":"left","R":[{"T":"an","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.171,"y":12.588,"w":5.112900000000001,"clr":-1,"A":"left","R":[{"T":"explanation","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":14.879,"w":25.404000000000007,"clr":-1,"A":"left","R":[{"T":"SUBTRACTIONS%20FROM%20FEDERAL%20TAXABLE%20INCOME","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.467,"y":17.16,"w":5.274,"clr":-1,"A":"left","R":[{"T":"Out-of-state","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.114,"y":17.16,"w":5.385500000000001,"clr":-1,"A":"left","R":[{"T":"income%2Fgain","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.937,"y":17.16,"w":0.5555000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%93","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.088,"y":17.16,"w":1.2770000000000001,"clr":-1,"A":"left","R":[{"T":"Do","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.23,"y":17.16,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.534,"y":17.16,"w":3.164500000000001,"clr":-1,"A":"left","R":[{"T":"include","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.296,"y":17.16,"w":3.8310000000000004,"clr":-1,"A":"left","R":[{"T":"personal","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.984,"y":17.16,"w":3.1635,"clr":-1,"A":"left","R":[{"T":"service","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.756,"y":17.16,"w":3.2200000000000006,"clr":-1,"A":"left","R":[{"T":"income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.413,"y":15.611999999999998,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":16.355,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":17.183,"w":0.611,"clr":-1,"A":"left","R":[{"T":"h","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":18.605,"w":0.278,"clr":-1,"A":"left","R":[{"T":"i","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":19.455,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":15.671,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":8.413,"y":35.817,"w":1.7799,"clr":-1,"A":"left","R":[{"T":"Add","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.244,"y":35.817,"w":2.0575,"clr":-1,"A":"left","R":[{"T":"lines","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.476,"y":35.817,"w":0.334,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":15.318,"y":35.817,"w":3.7840000000000003,"clr":-1,"A":"left","R":[{"T":"through","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":20.903,"y":35.817,"w":0.557,"clr":-1,"A":"left","R":[{"T":"v","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":22.05,"y":35.817,"w":1.665,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.735,"y":35.817,"w":2.274,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.256,"y":35.817,"w":2.2740000000000005,"clr":-1,"A":"left","R":[{"T":"here.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.783,"y":35.817,"w":2.7740000000000005,"clr":-1,"A":"left","R":[{"T":"These","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.003,"y":35.817,"w":1.4420000000000002,"clr":-1,"A":"left","R":[{"T":"are","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.379,"y":35.817,"w":1.941,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.454,"y":35.817,"w":2.112,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":44.75,"y":35.817,"w":6.003400000000001,"clr":-1,"A":"left","R":[{"T":"subtractions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":53.396,"y":35.817,"w":16.745999999999995,"clr":-1,"A":"left","R":[{"T":"..............................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":35.817,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":49.015,"y":37.266,"w":20.247600000000002,"clr":-1,"A":"left","R":[{"T":"South%20Carolina%20INCOME%20SUBJECT%20TO%20TAX","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.148,"y":36.614,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":42.635,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":79.804,"y":35.817,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.779,"y":37.32,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.467,"y":18.605,"w":1.9992,"clr":-1,"A":"left","R":[{"T":"44%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.611,"y":18.605,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.146,"y":18.605,"w":1.3882,"clr":-1,"A":"left","R":[{"T":"net","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.449,"y":18.605,"w":2.8858,"clr":-1,"A":"left","R":[{"T":"capital","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.826,"y":18.605,"w":2.387,"clr":-1,"A":"left","R":[{"T":"gains","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.512,"y":18.605,"w":1.8876,"clr":-1,"A":"left","R":[{"T":"held","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.504,"y":18.605,"w":1.1652,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.492,"y":18.605,"w":2.2756,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.015,"y":18.605,"w":1.9436,"clr":-1,"A":"left","R":[{"T":"than","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.098,"y":18.605,"w":1.7774,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":39.928,"y":18.605,"w":2.0562000000000005,"clr":-1,"A":"left","R":[{"T":"year","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.479,"y":23.069,"w":2.7194000000000003,"clr":-1,"A":"left","R":[{"T":"Active","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.618,"y":23.069,"w":2.609,"clr":-1,"A":"left","R":[{"T":"Trade","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.602,"y":23.069,"w":0.8878,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.211,"y":23.069,"w":4.0522,"clr":-1,"A":"left","R":[{"T":"Business","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.2,"y":23.069,"w":3.2754,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.107,"y":23.069,"w":4.3306000000000004,"clr":-1,"A":"left","R":[{"T":"deduction","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":24.567,"w":3.2188000000000003,"clr":-1,"A":"left","R":[{"T":"Certain","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.3,"y":24.567,"w":4.886,"clr":-1,"A":"left","R":[{"T":"nontaxable","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.438,"y":24.567,"w":3.6632000000000002,"clr":-1,"A":"left","R":[{"T":"National","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.879,"y":24.567,"w":2.7760000000000002,"clr":-1,"A":"left","R":[{"T":"Guard","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.087,"y":24.567,"w":0.8878,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.696,"y":24.567,"w":3.7188,"clr":-1,"A":"left","R":[{"T":"Reserve","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.225,"y":24.567,"w":1.7212,"clr":-1,"A":"left","R":[{"T":"Pay","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.413,"y":29.819,"w":0.611,"clr":-1,"A":"left","R":[{"T":"q","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":23.001,"w":0.278,"clr":-1,"A":"left","R":[{"T":"l","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":23.82,"w":0.889,"clr":-1,"A":"left","R":[{"T":"m","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":24.567,"w":0.611,"clr":-1,"A":"left","R":[{"T":"n","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":25.319,"w":0.611,"clr":-1,"A":"left","R":[{"T":"o","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":26.07,"w":0.611,"clr":-1,"A":"left","R":[{"T":"p","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.467,"y":22.263,"w":17.276799999999998,"clr":-1,"A":"left","R":[{"T":"or%20the%20SC%20Tuition%20Prepayment%20Program","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.413,"y":21.642,"w":0.556,"clr":-1,"A":"left","R":[{"T":"k","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.479,"y":26.07,"w":4.0558,"clr":-1,"A":"left","R":[{"T":"Caution%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":16.442,"y":26.07,"w":5.224,"clr":-1,"A":"left","R":[{"T":"Retirement","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":24.024,"y":26.07,"w":4.889900000000001,"clr":-1,"A":"left","R":[{"T":"Deduction","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":31.133,"y":26.07,"w":8.451400000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":8,"TS":[0,10,1,0]}]},{"oc":"#231f20","x":13.895,"y":27.578,"w":32.01119999999998,"clr":-1,"A":"left","R":[{"T":"Spouse%3A%20%20%20%20date%20of%20birth%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":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":29.819,"w":1.7775000000000003,"clr":-1,"A":"left","R":[{"T":"Age","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.309,"y":29.819,"w":1.1110000000000002,"clr":-1,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.227,"y":29.819,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.914,"y":29.819,"w":2.2205000000000004,"clr":-1,"A":"left","R":[{"T":"older","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.365,"y":29.819,"w":4.3315,"clr":-1,"A":"left","R":[{"T":"deduction","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.895,"y":30.57,"w":32.222,"clr":-1,"A":"left","R":[{"T":"Taxpayer%3A%20date%20of%20birth%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":[0,11,0,0]}]},{"oc":"#231f20","x":13.895,"y":31.322000000000003,"w":32.29179999999998,"clr":-1,"A":"left","R":[{"T":"Spouse%3A%20%20%20date%20of%20birth%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":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":32.069,"w":20.979000000000003,"clr":-1,"A":"left","R":[{"T":"Negative%20amount%20of%20federal%20taxable%20income%20.%20.%20.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.337,"y":32.069,"w":13.497600000000004,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":34.319,"w":4.6088000000000005,"clr":-1,"A":"left","R":[{"T":"Consumer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.228,"y":34.319,"w":4.498000000000001,"clr":-1,"A":"left","R":[{"T":"Protection","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.813,"y":34.319,"w":3.8308000000000004,"clr":-1,"A":"left","R":[{"T":"Services","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.5,"y":34.319,"w":23.873599999999982,"clr":-1,"A":"left","R":[{"T":"...........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":8.413,"y":32.069,"w":0.389,"clr":-1,"A":"left","R":[{"T":"r","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":32.82,"w":0.556,"clr":-1,"A":"left","R":[{"T":"s","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":33.567,"w":0.333,"clr":-1,"A":"left","R":[{"T":"t","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.888,"y":46.383,"w":5.759999999999999,"clr":-1,"A":"left","R":[{"T":"30752026","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":8.4,"y":38.067,"w":1.9985000000000002,"clr":-1,"A":"left","R":[{"T":"TAX","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.148,"y":38.067,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":38.135,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":61.254,"y":38.067,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.148,"y":38.819,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":38.882,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":6.148,"y":39.57,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":39.633,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":6.148,"y":40.317,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":40.385,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":8.413,"y":41.069,"w":1.7778000000000003,"clr":-1,"A":"left","R":[{"T":"Add","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.242,"y":41.069,"w":2.0540000000000003,"clr":-1,"A":"left","R":[{"T":"lines","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.467,"y":41.069,"w":0.5556000000000001,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.618,"y":41.069,"w":3.3882000000000003,"clr":-1,"A":"left","R":[{"T":"through","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.678,"y":41.069,"w":0.5556000000000001,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.829,"y":41.069,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.516,"y":41.069,"w":2.277,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.04,"y":41.069,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.338,"y":41.069,"w":1.8880000000000003,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.325,"y":41.069,"w":1.9994000000000003,"clr":-1,"A":"left","R":[{"T":"here","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.752,"y":41.069,"w":14.932000000000002,"clr":-1,"A":"left","R":[{"T":"TOTAL%20SOUTH%20CAROLINA%20TAX","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.024,"y":41.069,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.594,"y":41.069,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.024,"y":41.78,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.662,"y":41.132,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":6.024,"y":42.567,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":41.883,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":8.4,"y":38.819,"w":3.3362,"clr":-1,"A":"left","R":[{"T":"TAX%20on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.377,"y":38.819,"w":2.5018000000000002,"clr":-1,"A":"left","R":[{"T":"Lump","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.213,"y":38.819,"w":2.0566,"clr":-1,"A":"left","R":[{"T":"Sum","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.428,"y":38.819,"w":5.003400000000001,"clr":-1,"A":"left","R":[{"T":"Distribution","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.718,"y":38.819,"w":7.387499999999999,"clr":-1,"A":"left","R":[{"T":"(Attach%20SC4972)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":36.987,"y":38.819,"w":15.071399999999995,"clr":-1,"A":"left","R":[{"T":"...........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.254,"y":38.819,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.4,"y":39.57,"w":3.3320000000000007,"clr":-1,"A":"left","R":[{"T":"TAX%20on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.373,"y":39.57,"w":2.7200000000000006,"clr":-1,"A":"left","R":[{"T":"Active","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.512,"y":39.57,"w":2.6095000000000006,"clr":-1,"A":"left","R":[{"T":"Trade","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.496,"y":39.57,"w":0.8880000000000001,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.106,"y":39.57,"w":4.053,"clr":-1,"A":"left","R":[{"T":"Business","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.096,"y":39.57,"w":3.2760000000000007,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.016,"y":39.57,"w":6.056600000000002,"clr":-1,"A":"left","R":[{"T":"(Attach%20I-335)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":41.677,"y":39.57,"w":11.722199999999999,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.254,"y":39.57,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.254,"y":40.317,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":41.82,"w":2.2735000000000003,"clr":-1,"A":"left","R":[{"T":"Child","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.933,"y":41.82,"w":1.6653000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.618,"y":41.82,"w":4.883900000000001,"clr":-1,"A":"left","R":[{"T":"Dependent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.749,"y":41.82,"w":2.1634,"clr":-1,"A":"left","R":[{"T":"Care","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.591,"y":41.82,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.994,"y":41.892,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.412,"y":42.567,"w":1.8868999999999998,"clr":-1,"A":"left","R":[{"T":"Two","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.394,"y":42.567,"w":2.6092,"clr":-1,"A":"left","R":[{"T":"Wage","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.378,"y":42.567,"w":2.9968,"clr":-1,"A":"left","R":[{"T":"Earner","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.892,"y":42.567,"w":2.6627999999999994,"clr":-1,"A":"left","R":[{"T":"Credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.994,"y":42.567,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.662,"y":35.885,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.662,"y":37.383,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":28.428,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":10.504,"y":30.588,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"q-1","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":17.921,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":18.672,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":16.422,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":20.882,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":22.385,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":23.132,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":23.883,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":24.635,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":25.382,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.084,"y":26.912,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":30.665,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":32.132,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":32.883,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":33.635,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.072,"y":34.382,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":61.6,"y":15.608,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.415,"y":16.355,"w":0.611,"clr":-1,"A":"left","R":[{"T":"g","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.415,"y":17.858,"w":0.611,"clr":-1,"A":"left","R":[{"T":"h","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.638,"y":18.605,"w":0.278,"clr":-1,"A":"left","R":[{"T":"i","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.638,"y":20.819,"w":0.278,"clr":-1,"A":"left","R":[{"T":"j","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.638,"y":23.069,"w":0.278,"clr":-1,"A":"left","R":[{"T":"l","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.316,"y":23.82,"w":0.889,"clr":-1,"A":"left","R":[{"T":"m","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.415,"y":24.567,"w":0.611,"clr":-1,"A":"left","R":[{"T":"n","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.415,"y":25.319,"w":0.611,"clr":-1,"A":"left","R":[{"T":"o","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.084,"y":31.380000000000003,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":61.18,"y":32.069,"w":0.389,"clr":-1,"A":"left","R":[{"T":"r","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.18,"y":32.82,"w":0.556,"clr":-1,"A":"left","R":[{"T":"s","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.18,"y":33.567,"w":0.333,"clr":-1,"A":"left","R":[{"T":"t","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.452,"y":22.245,"w":0.556,"clr":-1,"A":"left","R":[{"T":"k","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.072,"y":27.668,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":85.905,"y":15.608,"w":3.397,"clr":-1,"A":"left","R":[{"T":"Dollars","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.748,"y":14.172,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":8.413,"y":13.344,"w":1.7799,"clr":-1,"A":"left","R":[{"T":"Add","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.244,"y":13.344,"w":2.0575,"clr":-1,"A":"left","R":[{"T":"lines","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.476,"y":13.344,"w":0.557,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":15.627,"y":13.344,"w":3.7840000000000003,"clr":-1,"A":"left","R":[{"T":"through","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":21.212,"y":13.344,"w":0.557,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":22.359,"y":13.344,"w":1.6656,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.045,"y":13.344,"w":2.275,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.567,"y":13.344,"w":1.3876,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.864,"y":13.344,"w":1.8860000000000001,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.848,"y":13.344,"w":2.2750000000000004,"clr":-1,"A":"left","R":[{"T":"here.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.377,"y":13.344,"w":2.7750000000000004,"clr":-1,"A":"left","R":[{"T":"These","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.597,"y":13.344,"w":1.4426,"clr":-1,"A":"left","R":[{"T":"are","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.974,"y":13.344,"w":1.9418,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.06,"y":13.344,"w":2.115,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":50.359,"y":13.344,"w":4.4522,"clr":-1,"A":"left","R":[{"T":"additions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":56.861,"y":13.344,"w":14.513199999999996,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":13.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":14.105,"w":42.22900000000009,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202%20and%20enter%20the%20total%20here%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":[0,11,0,0]}]},{"oc":"#231f20","x":66.508,"y":14.105,"w":8.717200000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":14.114,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.748,"y":13.421,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":79.742,"y":13.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.742,"y":14.105,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.18,"y":34.319,"w":0.611,"clr":-1,"A":"left","R":[{"T":"u","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":34.319,"w":0.611,"clr":-1,"A":"left","R":[{"T":"u","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":86.004,"y":5.829,"w":3.397,"clr":-1,"A":"left","R":[{"T":"Dollars","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.804,"y":6.513,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.037,"y":5.928,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.185,"y":7.359,"w":21.6942,"clr":-1,"A":"left","R":[{"T":"ADDITIONS%20TO%20FEDERAL%20TAXABLE%20INCOME%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.479,"y":8.124,"w":20.8892,"clr":-1,"A":"left","R":[{"T":"State%20tax%20add%20back%2Cif%20itemizing%20on%20federal%20return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":8.839,"w":5.2884,"clr":-1,"A":"left","R":[{"T":"Out-of-state","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.144,"y":8.839,"w":2.8382000000000005,"clr":-1,"A":"left","R":[{"T":"losses","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.557,"y":12.597,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.479,"y":11.139,"w":3.3334000000000006,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.466,"y":11.139,"w":3.2218000000000004,"clr":-1,"A":"left","R":[{"T":"income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.303,"y":11.139,"w":1.1116000000000001,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.222,"y":11.139,"w":4.777800000000001,"clr":-1,"A":"left","R":[{"T":"obligations","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.207,"y":11.139,"w":0.8336000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.426,"y":11.139,"w":2.5004999999999997,"clr":-1,"A":"left","R":[{"T":"other","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.479,"y":11.783,"w":2.1086,"clr":-1,"A":"left","R":[{"T":"than","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.45,"y":8.124,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.45,"y":8.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.45,"y":10.338,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.45,"y":11.148,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.45,"y":12.588,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.266,"y":8.111,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.266,"y":9.65,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":61.266,"y":10.37,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.109,"y":9.654,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":61.266,"y":11.837,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.109,"y":8.151,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.109,"y":11.904,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.109,"y":10.401,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.909,"y":6.621,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.109,"y":12.651,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":61.217,"y":12.597,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.148,"y":5.095,"w":14.1934,"clr":-1,"A":"left","R":[{"T":"INCOME%20AND%20ADJUSTMENTS","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":10.479,"y":26.844,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-1","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.504,"y":28.343,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-3","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":60.586,"y":26.835,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-1","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.479,"y":27.591,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":60.66,"y":28.352,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-3","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.454,"y":29.085,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-4","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":60.647,"y":27.591,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":60.623,"y":29.085,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"p-4","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.504,"y":31.335,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"q-2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":60.672,"y":30.57,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"q-1","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":60.672,"y":31.322000000000003,"w":1.5003,"clr":-1,"A":"left","R":[{"T":"q-2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.06,"y":29.135,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.625,"y":44.844,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":6.024,"y":44.03,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":75.759,"y":44.052,"w":1.9684000000000004,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.024,"y":44.777,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":44.777,"w":51.1046000000001,"clr":-1,"A":"left","R":[{"T":"SUBTRACT%20line%2014%20from%20line%2010.%20Enter%20the%20difference%20BUT%20NOT%20LESS%20THAN%20ZERO%20here%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,0,0]}]},{"oc":"#231f20","x":79.557,"y":44.777,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.557,"y":44.052,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.625,"y":44.093,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":6.024,"y":43.319,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.047,"y":43.44,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":60.957,"y":43.373,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":86.524,"y":2.814,"w":5.2866,"clr":-1,"A":"left","R":[{"T":"Page%202%20of%203","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":28.609,"y":20.76,"w":6.7114,"clr":-1,"A":"left","R":[{"T":"Reserve%20Police","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.895,"y":26.826,"w":31.9415,"clr":-1,"A":"left","R":[{"T":"Taxpayer%3A%20date%20of%20birth%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":[0,11,0,0]}]},{"oc":"#231f20","x":8.45,"y":6.612,"w":5.8362,"clr":-1,"A":"left","R":[{"T":"Nonresident","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":16.865,"y":6.612,"w":2.3912,"clr":-1,"A":"left","R":[{"T":"filers","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":20.536,"y":6.612,"w":4.3916,"clr":-1,"A":"left","R":[{"T":"complete","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":26.975,"y":6.612,"w":25.006400000000017,"clr":-1,"A":"left","R":[{"T":"Schedule%20NR%20and%20enter%20total%20from%20line%2050%20on%20line%205%20below","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.872,"y":6.612,"w":11.164,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.449,"y":7.062,"w":1.9684000000000004,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.728,"y":5.132,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"2013","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":10.479,"y":35.07,"w":2.4990000000000006,"clr":-1,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.299,"y":35.07,"w":5.3862000000000005,"clr":-1,"A":"left","R":[{"T":"subtractions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.072,"y":35.133,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":61.18,"y":35.07,"w":0.556,"clr":-1,"A":"left","R":[{"T":"v","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":35.07,"w":0.556,"clr":-1,"A":"left","R":[{"T":"v","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":49.422,"y":8.124,"w":7.772800000000001,"clr":-1,"A":"left","R":[{"T":"..............","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.479,"y":9.587,"w":8.491700000000002,"clr":-1,"A":"left","R":[{"T":"Check%20type%20of%20loss%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.597,"y":9.587,"w":2.9038,"clr":-1,"A":"left","R":[{"T":"Rental","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.61,"y":9.587,"w":4.0754,"clr":-1,"A":"left","R":[{"T":"Business","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.058,"y":9.587,"w":2.5125,"clr":-1,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.514,"y":9.587,"w":8.128700000000006,"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":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.516,"y":10.338,"w":28.72680000000001,"clr":-1,"A":"left","R":[{"T":"Expenses%20related%20to%20National%20Guard%20and%20Military%20Reserve%20income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.055,"y":10.338,"w":6.947499999999997,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.833,"y":12.588,"w":6.662400000000001,"clr":-1,"A":"left","R":[{"T":"............","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.479,"y":15.608,"w":21.9508,"clr":-1,"A":"left","R":[{"T":"State%20tax%20refund%2C%20if%20included%20on%20your%20federal%20return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.705,"y":15.608,"w":13.06130000000001,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.467,"y":17.804,"w":12.102600000000004,"clr":-1,"A":"left","R":[{"T":"Check%20type%20of%20income%2Fgain%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.173,"y":17.804,"w":2.8996,"clr":-1,"A":"left","R":[{"T":"Rental","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.248,"y":17.804,"w":4.0698,"clr":-1,"A":"left","R":[{"T":"Business","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.305,"y":17.804,"w":2.5090000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.228,"y":18.605,"w":4.4416,"clr":-1,"A":"left","R":[{"T":"........","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.468,"y":20.085,"w":7.883000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20Firefighter","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.672,"y":20.085,"w":3.457,"clr":-1,"A":"left","R":[{"T":"HazMat","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.478,"y":20.085,"w":6.583,"clr":-1,"A":"left","R":[{"T":"Rescue%20Squad","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.473,"y":20.724,"w":5.4825,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20DNR","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.598,"y":20.724,"w":2.7712000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":16.355,"w":35.26130000000003,"clr":-1,"A":"left","R":[{"T":"Total%20and%20permanent%20disability%20retirement%20income%2C%20if%20taxed%20on%20your%20federal%20return","S":-1,"TS":[0,10.9,0,0]}]},{"oc":"#231f20","x":10.801,"y":19.442,"w":28.723200000000006,"clr":-1,"A":"left","R":[{"T":"Volunteer%20deductions%20(See%20instructions)%20Check%20type%20of%20deduction%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.467,"y":21.624,"w":31.475700000000025,"clr":-1,"A":"left","R":[{"T":"Contributions%20to%20the%20SC%20College%20Investment%20Program%20(%E2%80%9CFuture%20Scholar%E2%80%9D)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.732,"y":23.053,"w":9.4384,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,5.20472,0,0]}]},{"oc":"#231f20","x":10.479,"y":23.82,"w":24.198200000000007,"clr":-1,"A":"left","R":[{"T":"Interest%20income%20from%20obligations%20of%20the%20US%20government","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.765,"y":23.82,"w":11.6928,"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.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.02,"y":24.567,"w":4.9968,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":39.461,"y":8.066,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":51.084,"y":17.183,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":43.071,"y":18.574,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":47.469,"y":22.262,"w":11.659199999999997,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,8.851939999999999,0,0]}]},{"oc":"#231f20","x":34.37,"y":22.277,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":37.21,"y":23.074,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":42.039,"y":24.55,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.479,"y":25.319,"w":34.364999999999995,"clr":-1,"A":"left","R":[{"T":"Social%20security%20and%2For%20railroad%20retirement%2C%20if%20taxed%20on%20your%20federal%20return%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.907,"y":28.329,"w":24.336200000000012,"clr":-1,"A":"left","R":[{"T":"Surviving%20spouse%20%231%3A%20%20date%20of%20birth%20of%20deceased%20spouse","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.414,"y":28.329,"w":8.889599999999998,"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.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.895,"y":29.076,"w":24.336200000000012,"clr":-1,"A":"left","R":[{"T":"Surviving%20spouse%20%232%3A%20%20date%20of%20birth%20of%20deceased%20spouse","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.402,"y":29.076,"w":8.889599999999998,"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.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.795,"y":29.824,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.479,"y":32.82,"w":10.213,"clr":-1,"A":"left","R":[{"T":"Subsistence%20allowance","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.517,"y":32.82,"w":6.2090000000000005,"clr":-1,"A":"left","R":[{"T":"days%20%40%20%248.00","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.045,"y":32.82,"w":14.55999999999999,"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":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.479,"y":33.567,"w":30.7356,"clr":-1,"A":"left","R":[{"T":"Dependents%20under%20the%20age%20of%206%20years%20on%20December%2031%20of%20the%20tax%20year","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.819,"y":33.567,"w":3.3251999999999993,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.17,"y":35.07,"w":21.652799999999985,"clr":-1,"A":"left","R":[{"T":".......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":22.059,"y":35.027,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":8.413,"y":36.623,"w":48.05559999999998,"clr":-1,"A":"left","R":[{"T":"Residents%20subtract%20line%204%20from%20line%203%20and%20enter%20the%20difference.%20Nonresidents%20enter%20amount%20from%20Schedule%20NR%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.502,"y":37.255,"w":5.582000000000002,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,9.10319,0,0]}]},{"oc":"#231f20","x":50.753,"y":38.064,"w":15.09029999999999,"clr":-1,"A":"left","R":[{"T":"...........................","S":-1,"TS":[0,6.62939,0,0]}]},{"oc":"#231f20","x":34.819,"y":41.82,"w":18.87679999999999,"clr":-1,"A":"left","R":[{"T":"..................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":33.656,"y":42.567,"w":19.987199999999987,"clr":-1,"A":"left","R":[{"T":"....................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":24.895,"y":41.832,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":23.864,"y":42.55,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":8.413,"y":43.319,"w":32.34090000000001,"clr":-1,"A":"left","R":[{"T":"Other%20non-refundable%20credits.%20Attach%20SC1040TC%20and%20other%20state%20return(s)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.92,"y":43.319,"w":3.3347999999999995,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.413,"y":44.052,"w":35.18599999999999,"clr":-1,"A":"left","R":[{"T":"TOTAL%20non-refundable%20credits.%20Add%20lines%2011%20through%2013%20and%20enter%20the%20total%20here","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.843,"y":44.052,"w":13.622000000000016,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.41,"y":37.255,"w":17.867900000000006,"clr":-1,"A":"left","R":[{"T":"line%2050.%20If%20less%20than%20zero%2C%20enter%20zero%20here","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.4,"y":40.317,"w":28.43730000000001,"clr":-1,"A":"left","R":[{"T":"TAX%20on%20excess%20withdrawals%20from%20Catastrophe%20Savings%20Accounts","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.535,"y":40.317,"w":7.220200000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.491,"y":41.069,"w":7.256600000000002,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.853,"y":41.069,"w":2.7910000000000004,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.996,"y":11.836,"w":6.646200000000001,"clr":-1,"A":"left","R":[{"T":"South%20Carolina","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.933,"y":38.11,"w":18.2716,"clr":-1,"A":"left","R":[{"T":"%3A%20enter%20tax%20from%20South%20Carolina%20tax%20tables","S":-1,"TS":[0,11,0,0]}]},{"x":47.03,"y":23.097,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"oc":"#231f20","x":8.462,"y":5.914,"w":39.64119999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20federal%20taxable%20income%20from%20your%20federal%20form.%20If%20zero%20or%20less%2C%20enter%20zero%20here.","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":59,"AM":1024,"x":6.573,"y":2.912,"w":61.708,"h":0.9},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":60,"AM":1024,"x":69.577,"y":2.98,"w":16.345,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEDTXINC","EN":0},"TI":61,"AM":0,"x":82.38,"y":6.773,"w":13.546,"h":0.833,"TU":"Line 1. Enter federal taxable income from your federal form. If zero or less, enter zero here. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ITEMDED","EN":0},"TI":62,"AM":0,"x":63.298,"y":8.306,"w":13.118,"h":0.833,"TU":"Line a. State tax add back, if itemizing on federal return (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BX35OTH","EN":0},"TI":66,"AM":0,"x":48.239,"y":9.752,"w":10.073,"h":0.833,"TU":"Other loss description."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OSLOSS","EN":0},"TI":67,"AM":0,"x":63.456,"y":9.464,"w":12.952,"h":1.092,"TU":"Line b. Out-of-state losses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESERVE","EN":0},"TI":68,"AM":0,"x":63.373,"y":10.631,"w":13.118,"h":0.833,"TU":"Line c. Expenses related to National Guard and Military Reserve income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OSMUNI","EN":0},"TI":69,"AM":0,"x":63.456,"y":11.667,"w":12.952,"h":1.079,"TU":"Line d. Interest income on obligations of states and political subdivisions other than South Carolina."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHADD","EN":0},"TI":70,"AM":0,"x":63.373,"y":12.821,"w":13.118,"h":0.833,"TU":"Line e. Other additions to income. Attach an explanation. (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALADD","EN":0},"TI":71,"AM":1024,"x":82.305,"y":13.606,"w":13.545,"h":0.833,"TU":"Line 2. Add lines a through e and enter the total here. These are your total additions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUML1L2","EN":0},"TI":72,"AM":1024,"x":82.349,"y":14.306,"w":13.481,"h":0.833,"TU":"Line 3. Add lines 1 and 2 and enter the total here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STTAXREF","EN":0},"TI":73,"AM":0,"x":63.456,"y":15.836,"w":12.788,"h":0.833,"TU":"Line f. State tax refund, if included on your federal return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DRETINC","EN":0},"TI":74,"AM":0,"x":63.456,"y":16.571,"w":12.788,"h":0.833,"TU":"Line g. Total and permanent disability retirement income, if taxed on your federal return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"AAD3","EN":0},"TI":78,"AM":0,"x":50.174,"y":18.091,"w":8.373,"h":0.833,"TU":"Other income/gain description."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OSTINC","EN":0},"TI":79,"AM":0,"x":63.603,"y":17.76,"w":12.622,"h":0.922,"TU":"Line h. Out-of-state income/gain - Do not include personal service income (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CAPGAIN","EN":0},"TI":80,"AM":0,"x":63.497,"y":18.813,"w":12.788,"h":0.833,"TU":"Line i. 44% of net capital gains held for more than one year (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HAZMAT","EN":0},"TI":84,"AM":0,"x":63.602,"y":20.477,"w":12.668,"h":1.258,"TU":"Line j. Volunteer deductions (See instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHERVOL","EN":0},"TI":88,"AM":0,"x":47.618,"y":21.004,"w":10.405,"h":0.833,"TU":"Other volunteer deductions description."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COLLINV","EN":0},"TI":89,"AM":0,"x":63.497,"y":22.172,"w":12.705,"h":1.043,"TU":"Line k. Contributions to the SC College Investment Program (\"Future Scholar\") or the SC Tuition Prepayment Program (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ACTIVDED","EN":0},"TI":90,"AM":0,"x":63.572,"y":23.333,"w":12.788,"h":0.833,"TU":"Line l. Active Trade of Business Income deduction (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"USGOVINT","EN":0},"TI":91,"AM":0,"x":63.456,"y":24.041,"w":12.788,"h":0.833,"TU":"Line m. Interest income from obligations of the US government."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NGTNGPAY","EN":0},"TI":92,"AM":0,"x":63.456,"y":24.791,"w":12.788,"h":0.833,"TU":"Line n. Certain nontaxable National Guard or Reserve Pay (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SSRR","EN":0},"TI":93,"AM":0,"x":63.456,"y":25.541,"w":12.788,"h":0.833,"TU":"Line o. Social security and/or railroad retirement, if taxed on your federal return."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPDOB","EN":0},"TI":94,"AM":0,"x":28.36,"y":26.932,"w":14.808,"h":0.833,"TU":"Line p-1. Taxpayer date of birth.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPRETDED","EN":0},"TI":95,"AM":0,"x":63.538,"y":26.637,"w":12.687,"h":1.045,"TU":"Line p-1. Taxpayer Retirement deduction."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPDOB","EN":0},"TI":96,"AM":0,"x":28.312,"y":27.736,"w":14.916,"h":0.833,"TU":"Line p-2. Spouse date of birth.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPRETDED","EN":0},"TI":97,"AM":0,"x":63.456,"y":27.851,"w":12.788,"h":0.833,"TU":"Line p-2. Spouse Retirement deduction."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A473_SSPDOB_1_","EN":0},"TI":98,"AM":0,"x":47.967,"y":28.435,"w":10.291,"h":0.833,"TU":"Line p-3. Surviving spouse #1 date of birth of deceased spouse.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_SSPDED_1_","EN":0},"TI":99,"AM":0,"x":63.456,"y":28.646,"w":12.788,"h":0.833,"TU":"Line p-3. Surviving spouse #1 Retirement deduction."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A473_SSPDOB_2_","EN":0},"TI":100,"AM":0,"x":48.058,"y":29.24,"w":10.26,"h":0.833,"TU":"Line p-4. Surviving spouse #2 date of birth of deceased spouse.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_SSPDED_2_","EN":0},"TI":101,"AM":0,"x":63.4,"y":29.357,"w":12.788,"h":0.833,"TU":"Line p-4. Surviving spouse #2 Retirement deduction."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TP65DOB","EN":0},"TI":102,"AM":0,"x":28.364,"y":30.765,"w":10.601,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TP65DED","EN":0},"TI":103,"AM":0,"x":63.497,"y":30.291,"w":12.705,"h":1.212,"TU":"Line q-1. Taxpayer age 65 and older deduction."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SP65DOB","EN":0},"TI":104,"AM":0,"x":28.316,"y":31.57,"w":10.784,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SP65DED","EN":0},"TI":105,"AM":0,"x":63.456,"y":31.601,"w":12.788,"h":0.833,"TU":"Line q-2. Spouse age 65 and older deduction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NEGFTI","EN":0},"TI":106,"AM":0,"x":63.456,"y":32.351,"w":12.788,"h":0.833,"TU":"Line r. Negative amount of federal taxable income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DAYS","EN":0},"TI":107,"AM":0,"x":24.843,"y":33.101,"w":4.596,"h":0.833,"TU":"Line s. Subsistence allowance number of days."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBSIST","EN":0},"TI":108,"AM":1024,"x":63.456,"y":33.041,"w":12.788,"h":0.833,"TU":"Line s. Subsistence allowance."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPUND6","EN":0},"TI":109,"AM":0,"x":63.456,"y":33.791,"w":12.788,"h":0.833,"TU":"Line t. Dependents under the age of 6 years on December 31 of the tax year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CPSERV","EN":0},"TI":110,"AM":0,"x":63.456,"y":34.541,"w":12.788,"h":0.833,"TU":"Line u. Consumer Protection Services."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHSUB","EN":0},"TI":111,"AM":0,"x":63.456,"y":35.291,"w":12.788,"h":0.833,"TU":"Line v. Other subtractions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTALSUB","EN":0},"TI":112,"AM":1024,"x":84.108,"y":36.026,"w":11.771,"h":0.833,"TU":"Line 4. Add lines f through v and enter here. These are your total subtractions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCTXINC","EN":0},"TI":113,"AM":1024,"x":82.262,"y":37.092,"w":13.695,"h":1.12,"TU":"Line 5. Residents subtract line 4 from line 3 and enter the difference. If less than zero, enter zero here. This is your South Carolina INCOME SUBJECT TO TAX."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCTAX","EN":0},"TI":114,"AM":0,"x":63.456,"y":38.306,"w":12.788,"h":0.833,"TU":"Line 6. Tax, enter tax from South Carolina tax tables."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":115,"AM":0,"x":37.024,"y":38.941,"w":2.268,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LUMPSUM","EN":0},"TI":116,"AM":1024,"x":63.478,"y":39.041,"w":12.787,"h":0.833,"TU":"Line 7. Tax on Lump Sum Distribution (Attach SC4972)"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":117,"AM":0,"x":42.066,"y":39.613,"w":2.343,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXACTV","EN":0},"TI":118,"AM":1024,"x":63.456,"y":39.881,"w":12.788,"h":0.833,"TU":"Line 8. Tax on Active Trade or Business Income (Attach I-335)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCATS","EN":0},"TI":119,"AM":0,"x":63.456,"y":40.541,"w":12.788,"h":0.833,"TU":"Line 9. Tax on excess withdrawals from Catastrophe Savings Accounts."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCTOTTAX","EN":0},"TI":120,"AM":1024,"x":82.018,"y":41.276,"w":13.86,"h":0.833,"TU":"Line 10. Add lines 6 through 9 and enter the total here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPCARE","EN":0},"TI":121,"AM":0,"x":63.456,"y":42.056,"w":12.788,"h":0.833,"TU":"Line 11. Child and Dependent Care (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TWOWEC","EN":0},"TI":122,"AM":0,"x":63.456,"y":42.881,"w":12.788,"h":0.833,"TU":"Line 12 Two Wage Earner Credit (see instructions)"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":123,"AM":0,"x":51.886,"y":43.522,"w":2.193,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHNREF","EN":0},"TI":124,"AM":1024,"x":63.456,"y":43.541,"w":12.788,"h":0.833,"TU":"Line 13. Other non-refundable credits. Attach SC1040TC and other state returns."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTNREF","EN":0},"TI":125,"AM":1024,"x":82.018,"y":44.306,"w":13.86,"h":0.833,"TU":"Line 14. Total non-refundable credits. Add lines 11 through 13 and enter the total here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCNETTAX","EN":0},"TI":126,"AM":1024,"x":82.052,"y":45.047,"w":13.86,"h":0.833,"TU":"Line 15. Subtract line 14 from line 10. Enter the difference but not less than zero here."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX35A","EN":0},"TI":63,"AM":0,"x":23.412,"y":9.768,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX35B","EN":0},"TI":64,"AM":0,"x":32.013,"y":9.788,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX35C","EN":0},"TI":65,"AM":0,"x":41.875,"y":9.753,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX48A","EN":0},"TI":75,"AM":0,"x":27.935,"y":18.014,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX48B","EN":0},"TI":76,"AM":0,"x":35.552,"y":18.034,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX48C","EN":0},"TI":77,"AM":0,"x":44.067,"y":17.999,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX52E","EN":0},"TI":81,"AM":0,"x":13.086,"y":20.2,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX52A","EN":0},"TI":82,"AM":0,"x":26.679,"y":20.165,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX52B","EN":0},"TI":83,"AM":0,"x":41.538,"y":20.205,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX52F","EN":0},"TI":85,"AM":0,"x":12.935,"y":20.946,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX52C","EN":0},"TI":86,"AM":0,"x":26.52,"y":20.931,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX52D","EN":0},"TI":87,"AM":0,"x":41.504,"y":20.886,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"A371RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.188,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.398,"y":5.242,"w":1.8359999999999999,"l":92.355},{"oc":"#231f20","x":30.096,"y":6.003,"w":0.8639999999999999,"l":18.154},{"oc":"#231f20","x":31.804,"y":7.502,"w":0.8639999999999999,"l":13.204},{"oc":"#231f20","x":31.829,"y":8.253,"w":0.8639999999999999,"l":13.179},{"oc":"#231f20","x":31.829,"y":9,"w":0.8639999999999999,"l":13.179},{"oc":"#231f20","x":31.804,"y":9.752,"w":0.8639999999999999,"l":13.204},{"oc":"#231f20","x":65.761,"y":7.502,"w":0.8639999999999999,"l":13.402},{"oc":"#231f20","x":65.761,"y":9.004,"w":0.8639999999999999,"l":13.377},{"oc":"#231f20","x":6.361,"y":6.003,"w":1.8359999999999999,"l":92.392},{"oc":"#231f20","x":65.761,"y":9.765,"w":0.8639999999999999,"l":13.291},{"oc":"#231f20","x":6.188,"y":37.71,"w":1.8359999999999999,"l":92.503},{"oc":"#231f20","x":6.188,"y":35.982,"w":1.8359999999999999,"l":92.503},{"oc":"#231f20","x":6.188,"y":39.452,"w":1.8359999999999999,"l":92.503},{"oc":"#231f20","x":6.188,"y":37.728,"w":1.8359999999999999,"l":92.503},{"oc":"#231f20","x":60.601,"y":15.034,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":60.601,"y":16.533,"w":0.8639999999999999,"l":18.946},{"oc":"#231f20","x":60.601,"y":15.786,"w":0.8639999999999999,"l":18.563},{"oc":"#231f20","x":79.571,"y":16.533,"w":0.8639999999999999,"l":19.181},{"oc":"#231f20","x":79.151,"y":17.284,"w":0.8639999999999999,"l":19.602},{"oc":"#231f20","x":79.2,"y":27.99,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":79.2,"y":26.491,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":79.2,"y":25.74,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":79.2,"y":18.752,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":79.2,"y":29.552,"w":0.8639999999999999,"l":19.392},{"oc":"#231f20","x":66.433,"y":27.934,"w":0.8639999999999999,"l":3.601},{"oc":"#231f20","x":66.433,"y":27.246,"w":0.8639999999999999,"l":3.601},{"oc":"#231f20","x":60.563,"y":14.27,"w":0.8639999999999999,"l":38.189},{"oc":"#231f20","x":79.163,"y":13.504,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":6.361,"y":12.753,"w":1.8359999999999999,"l":92.392},{"oc":"#231f20","x":6.188,"y":35.253,"w":1.8359999999999999,"l":92.441},{"oc":"#231f20","x":6.188,"y":32.702,"w":1.8359999999999999,"l":92.441},{"oc":"#231f20","x":16.446,"y":41.675,"w":1.8359999999999999,"l":82.393},{"oc":"#231f20","x":6.188,"y":40.334,"w":1.8359999999999999,"l":92.565},{"oc":"#231f20","x":6.188,"y":32.702,"w":1.8359999999999999,"l":92.441},{"oc":"#231f20","x":6.188,"y":31.428,"w":1.8359999999999999,"l":92.441},{"oc":"#231f20","x":78.99,"y":24.975,"w":0.8639999999999999,"l":19.602},{"oc":"#231f20","x":8.662,"y":24.975,"w":1.8359999999999999,"l":70.538},{"oc":"#231f20","x":8.662,"y":18.752,"w":1.8359999999999999,"l":70.538},{"oc":"#231f20","x":8.662,"y":21.002,"w":1.8359999999999999,"l":70.538},{"oc":"#231f20","x":33.413,"y":23.252,"w":0.8639999999999999,"l":21.656},{"oc":"#231f20","x":33.413,"y":21.978,"w":0.8639999999999999,"l":21.656},{"oc":"#231f20","x":33.413,"y":24.75,"w":0.8639999999999999,"l":40.219},{"oc":"#231f20","x":33.413,"y":23.477,"w":0.8639999999999999,"l":40.219},{"oc":"#231f20","x":16.706,"y":45.941,"w":1.8359999999999999,"l":25.27},{"oc":"#231f20","x":16.706,"y":44.892,"w":1.8359999999999999,"l":25.27},{"oc":"#231f20","x":16.706,"y":44.627,"w":1.8359999999999999,"l":25.27},{"oc":"#231f20","x":16.706,"y":43.578,"w":1.8359999999999999,"l":25.27},{"oc":"#231f20","x":6.435,"y":43.173,"w":1.8359999999999999,"l":92.404},{"oc":"#231f20","x":29.131,"y":42.426,"w":1.8359999999999999,"l":69.709}],"VLines":[{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":6.188,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":96.117,"y":6.044,"w":0.8639999999999999,"l":23.58},{"oc":"#231f20","x":82.034,"y":5.985,"w":0.8639999999999999,"l":23.567},{"oc":"#231f20","x":31.804,"y":6.003,"w":0.8639999999999999,"l":3.748},{"oc":"#231f20","x":76.515,"y":6.003,"w":0.8639999999999999,"l":3.748},{"oc":"#231f20","x":79.163,"y":6.075,"w":0.8639999999999999,"l":6.525},{"oc":"#231f20","x":65.761,"y":6.03,"w":0.8639999999999999,"l":3.735},{"oc":"#231f20","x":45.008,"y":6.003,"w":0.8639999999999999,"l":3.748},{"oc":"#231f20","x":42.36,"y":6.003,"w":0.8639999999999999,"l":3.748},{"oc":"#231f20","x":98.691,"y":35.982,"w":1.8359999999999999,"l":1.728},{"oc":"#231f20","x":6.188,"y":35.982,"w":1.8359999999999999,"l":1.728},{"oc":"#231f20","x":57.989,"y":35.987,"w":1.8359999999999999,"l":1.737},{"oc":"#231f20","x":48.04,"y":35.987,"w":1.8359999999999999,"l":1.737},{"oc":"#231f20","x":98.691,"y":37.728,"w":1.8359999999999999,"l":1.723},{"oc":"#231f20","x":6.188,"y":37.728,"w":1.8359999999999999,"l":1.723},{"oc":"#231f20","x":6.188,"y":37.71,"w":1.8359999999999999,"l":1.741},{"oc":"#231f20","x":79.163,"y":24.975,"w":0.8639999999999999,"l":4.577},{"oc":"#231f20","x":60.576,"y":14.283,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":76.515,"y":14.283,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":63.447,"y":14.283,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":79.163,"y":16.461,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":70.034,"y":27.246,"w":0.8639999999999999,"l":0.689},{"oc":"#231f20","x":66.433,"y":27.246,"w":0.8639999999999999,"l":0.689},{"oc":"#231f20","x":54.215,"y":37.701,"w":1.8359999999999999,"l":1.742},{"oc":"#231f20","x":66.677,"y":37.719,"w":1.8359999999999999,"l":1.724},{"oc":"#231f20","x":98.629,"y":32.702,"w":1.8359999999999999,"l":2.551},{"oc":"#231f20","x":6.188,"y":32.702,"w":1.8359999999999999,"l":2.551},{"oc":"#231f20","x":75.488,"y":40.334,"w":1.8359999999999999,"l":1.364},{"oc":"#231f20","x":54.549,"y":40.334,"w":1.8359999999999999,"l":1.341},{"oc":"#231f20","x":65.489,"y":40.334,"w":1.8359999999999999,"l":1.341},{"oc":"#231f20","x":98.629,"y":31.428,"w":1.8359999999999999,"l":1.273},{"oc":"#231f20","x":6.188,"y":31.428,"w":1.8359999999999999,"l":1.273},{"oc":"#231f20","x":32.485,"y":32.702,"w":1.8359999999999999,"l":2.52},{"oc":"#231f20","x":79.2,"y":18.752,"w":1.8359999999999999,"l":6.224},{"oc":"#231f20","x":8.662,"y":18.752,"w":1.8359999999999999,"l":6.224},{"oc":"#231f20","x":55.069,"y":21.978,"w":0.8639999999999999,"l":1.273},{"oc":"#231f20","x":33.413,"y":21.978,"w":0.8639999999999999,"l":1.273},{"oc":"#231f20","x":73.631,"y":23.477,"w":0.8639999999999999,"l":1.273},{"oc":"#231f20","x":33.413,"y":23.477,"w":0.8639999999999999,"l":1.273},{"oc":"#231f20","x":33.413,"y":23.252,"w":0.8639999999999999,"l":1.499},{"oc":"#231f20","x":79.163,"y":12.245,"w":0.8639999999999999,"l":12.807},{"oc":"#231f20","x":6.398,"y":40.334,"w":1.8359999999999999,"l":2.853},{"oc":"#231f20","x":41.976,"y":44.892,"w":1.8359999999999999,"l":1.048},{"oc":"#231f20","x":16.706,"y":44.892,"w":1.8359999999999999,"l":1.048},{"oc":"#231f20","x":41.976,"y":43.578,"w":1.8359999999999999,"l":1.048},{"oc":"#231f20","x":16.706,"y":43.578,"w":1.8359999999999999,"l":1.048},{"oc":"#231f20","x":70.636,"y":41.697,"w":1.8359999999999999,"l":1.476},{"oc":"#231f20","x":98.79,"y":40.334,"w":1.8359999999999999,"l":2.875}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"x":44.46,"y":28.545,"w":88.04000000000002,"clr":0,"A":"left","R":[{"T":"here.%20Prepare%20SC1040-V","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.888,"y":46.383,"w":5.759999999999999,"clr":-1,"A":"left","R":[{"T":"30753024","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":8.4,"y":8.817,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":41.88,"y":6.684,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":41.88,"y":7.382,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":41.88,"y":8.129,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":41.88,"y":8.88,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":8.4,"y":6.04,"w":15.2148,"clr":-1,"A":"left","R":[{"T":"16%20%20SC%20INCOME%20TAX%20WITHHELD","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.035,"y":6.553,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.035,"y":8.128,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":8.4,"y":8.066,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.974,"y":8.066,"w":3.4466,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.107,"y":8.066,"w":1.8904,"clr":-1,"A":"left","R":[{"T":"paid","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.101,"y":8.066,"w":1.7784,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.931,"y":8.066,"w":4.2809,"clr":-1,"A":"left","R":[{"T":"extension","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.238,"y":8.066,"w":0.2781,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.005,"y":8.066,"w":0.2781,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.035,"y":8.939,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":45.624,"y":10.185,"w":5.2635000000000005,"clr":-1,"A":"left","R":[{"T":"Check%20type%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.524,"y":2.814,"w":5.2866,"clr":-1,"A":"left","R":[{"T":"Page%203%20of%203","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":45.686,"y":8.889,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":47.877,"y":8.889,"w":2.4990000000000006,"clr":-1,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.697,"y":8.889,"w":4.721,"clr":-1,"A":"left","R":[{"T":"refundable","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.6,"y":8.889,"w":3.6074,"clr":-1,"A":"left","R":[{"T":"credit(s)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.4,"y":7.314,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.974,"y":7.314,"w":2.2232000000000003,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.43,"y":7.314,"w":4.3332,"clr":-1,"A":"left","R":[{"T":"estimated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.794,"y":7.314,"w":1.3334000000000001,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.018,"y":7.314,"w":4.333400000000001,"clr":-1,"A":"left","R":[{"T":"payments","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.748,"y":5.964,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":47.938,"y":5.964,"w":9.454,"clr":-1,"A":"left","R":[{"T":"Other%20SC%20withholding","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.938,"y":6.414,"w":8.6068,"clr":-1,"A":"left","R":[{"T":"(Attach%20Form%201099)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":58.618,"y":6.414,"w":3.8864000000000005,"clr":-1,"A":"left","R":[{"T":".......","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":45.748,"y":7.4670000000000005,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":47.938,"y":7.4670000000000005,"w":3.0003,"clr":-1,"A":"left","R":[{"T":"Tuition","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.458,"y":7.4670000000000005,"w":1.3337,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.683,"y":7.4670000000000005,"w":2.4444,"clr":-1,"A":"left","R":[{"T":"credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.938,"y":7.917,"w":6.056600000000002,"clr":-1,"A":"left","R":[{"T":"(Attach%20I-319)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":55.549,"y":7.917,"w":6.662400000000001,"clr":-1,"A":"left","R":[{"T":"............","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":55.475,"y":10.257,"w":1.7789999999999997,"clr":-1,"A":"left","R":[{"T":"Milk","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.313,"y":10.257,"w":2.6700000000000004,"clr":-1,"A":"left","R":[{"T":"Credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.38,"y":10.257,"w":6.056600000000002,"clr":-1,"A":"left","R":[{"T":"(Attach%20I-334)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":55.512,"y":9.65,"w":4.78,"clr":-1,"A":"left","R":[{"T":"Anhydrous","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.5,"y":9.65,"w":4.223000000000001,"clr":-1,"A":"left","R":[{"T":"Ammonia","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.704,"y":9.65,"w":6.056600000000002,"clr":-1,"A":"left","R":[{"T":"(Attach%20I-333)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.024,"y":5.127,"w":19.83920000000001,"clr":-1,"A":"left","R":[{"T":"PAYMENTS%20AND%20REFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":94.728,"y":4.308,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"2013","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":55.475,"y":10.86,"w":4.7708,"clr":-1,"A":"left","R":[{"T":"Classroom","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#231f20","x":61.394,"y":10.86,"w":3.6624000000000003,"clr":-1,"A":"left","R":[{"T":"Teacher","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#231f20","x":66.024,"y":10.86,"w":4.384600000000001,"clr":-1,"A":"left","R":[{"T":"Expenses","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#231f20","x":71.495,"y":10.86,"w":6.046800000000001,"clr":-1,"A":"left","R":[{"T":"(Attach%20I-360)","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#231f20","x":6.185,"y":28.496,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.111,"y":17.16,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.375,"y":17.795,"w":35.52279999999997,"clr":-1,"A":"left","R":[{"T":"AMOUNT%20TO%20BE%20REFUNDED%20TO%20YOU%20(line%2030a%20check%20box%20entry%20is%20required)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":57.805,"y":17.791,"w":8.931200000000002,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,10.64835,0,0]}]},{"oc":"#231f20","x":69.322,"y":17.804,"w":4.1564,"clr":-1,"A":"left","R":[{"T":"REFUND","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":6.148,"y":24.806,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":26.25,"w":19.6792,"clr":-1,"A":"left","R":[{"T":"Penalty%20for%20Underpayment%20of%20Estimated%20Tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":26.237,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.148,"y":25.557,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":28.536,"w":1.7778000000000003,"clr":-1,"A":"left","R":[{"T":"Add","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.242,"y":28.536,"w":2.0540000000000003,"clr":-1,"A":"left","R":[{"T":"lines","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.467,"y":28.536,"w":1.1112000000000002,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.386,"y":28.536,"w":3.3882000000000003,"clr":-1,"A":"left","R":[{"T":"through","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.446,"y":28.536,"w":1.1112000000000002,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.365,"y":28.536,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.052,"y":28.536,"w":2.277,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.577,"y":28.536,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.887999999999998,"y":28.536,"w":9.484600000000002,"clr":-1,"A":"left","R":[{"T":"AMOUNT%20YOU%20OWE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":64.014,"y":28.541,"w":7.256100000000001,"clr":-1,"A":"left","R":[{"T":"BALANCE%20DUE","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":6.111,"y":16.35,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.111,"y":14.1,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.111,"y":14.847,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.375,"y":14.1,"w":4.6494,"clr":-1,"A":"left","R":[{"T":"USE%20TAX%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":60.796,"y":14.127,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.375,"y":14.847,"w":3.4454000000000002,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.506,"y":14.847,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.042,"y":14.847,"w":1.5556,"clr":-1,"A":"left","R":[{"T":"line","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.574,"y":14.847,"w":1.1118000000000001,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.494,"y":14.847,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.023,"y":14.847,"w":1.1118000000000001,"clr":-1,"A":"left","R":[{"T":"be","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.943,"y":14.847,"w":3.5562000000000005,"clr":-1,"A":"left","R":[{"T":"credited","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.241,"y":14.847,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.771,"y":14.847,"w":1.9446,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.853,"y":14.847,"w":2.2212,"clr":-1,"A":"left","R":[{"T":"2014","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":36.307,"y":14.847,"w":4.7726999999999995,"clr":-1,"A":"left","R":[{"T":"Estimated","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":43.269,"y":14.847,"w":1.7208999999999999,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":46.032,"y":14.847,"w":8.373000000000003,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.796,"y":14.879,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.11,"y":15.599,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.375,"y":15.599,"w":2.2235000000000005,"clr":-1,"A":"left","R":[{"T":"Total","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.825,"y":15.599,"w":5.8923,"clr":-1,"A":"left","R":[{"T":"Contributions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.34,"y":15.599,"w":1.1673,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.329,"y":15.599,"w":4.78,"clr":-1,"A":"left","R":[{"T":"Check-offs","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.314,"y":15.599,"w":6.056600000000002,"clr":-1,"A":"left","R":[{"T":"(Attach%20I-330)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":36.974,"y":15.599,"w":15.071399999999995,"clr":-1,"A":"left","R":[{"T":"...........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.376,"y":16.35,"w":26.508900000000008,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2026%20through%2028%20and%20enter%20the%20total%20here%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.865,"y":16.35,"w":16.872,"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","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.048,"y":16.35,"w":7.873600000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.821,"y":15.629999999999999,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.035,"y":14.163,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":79.557,"y":24.788,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":76.035,"y":15.661999999999999,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.624,"y":16.413,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":76.035,"y":14.91,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.624,"y":17.93,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.662,"y":24.869,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.662,"y":27.128,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.662,"y":25.62,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":79.594,"y":16.35,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.569,"y":27.051,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.569,"y":25.557,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.569,"y":28.518,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.532,"y":17.862,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.413,"y":25.557,"w":1.9448000000000003,"clr":-1,"A":"left","R":[{"T":"Late","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.479,"y":25.557,"w":2.0542000000000002,"clr":-1,"A":"left","R":[{"T":"filing","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.695,"y":25.557,"w":2.8332000000000006,"clr":-1,"A":"left","R":[{"T":"and%2For","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.989,"y":25.557,"w":1.6108000000000002,"clr":-1,"A":"left","R":[{"T":"late","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.593,"y":25.557,"w":4.1106,"clr":-1,"A":"left","R":[{"T":"payment%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.039,"y":25.557,"w":4.1103,"clr":-1,"A":"left","R":[{"T":"Penalties","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.091,"y":25.557,"w":5.0013,"clr":-1,"A":"left","R":[{"T":"_________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.771,"y":25.557,"w":3.3326,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.757,"y":25.557,"w":4.4456,"clr":-1,"A":"left","R":[{"T":"________","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":95.662,"y":28.581,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":95.625,"y":12.629,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":6.111,"y":11.814,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.375,"y":11.814,"w":1.7781000000000002,"clr":-1,"A":"left","R":[{"T":"Add","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.205,"y":11.814,"w":2.0545,"clr":-1,"A":"left","R":[{"T":"lines","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.431,"y":11.814,"w":1.1114000000000002,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.35,"y":11.814,"w":3.3889000000000005,"clr":-1,"A":"left","R":[{"T":"through","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.411,"y":11.814,"w":1.1114000000000002,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.33,"y":11.814,"w":1.6671000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.017,"y":11.814,"w":2.2775000000000003,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.542,"y":11.814,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.840000000000003,"y":11.814,"w":1.8885000000000003,"clr":-1,"A":"left","R":[{"T":"total","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.827,"y":11.814,"w":2.5552,"clr":-1,"A":"left","R":[{"T":"here..","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.684,"y":11.814,"w":9.1922,"clr":-1,"A":"left","R":[{"T":"TOTAL%20PAYMENTS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.111,"y":12.566,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.111,"y":13.317,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.556,"y":11.819,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.556,"y":13.317,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.556,"y":12.566,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.625,"y":13.38,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":8.138,"y":27.024,"w":23.276800000000005,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20and%20enter%20letter%20in%20box%20if%20applicable)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":38.184,"y":27.024,"w":4.388299999999999,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.629,"y":27.024,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.159,"y":27.024,"w":6.5544,"clr":-1,"A":"left","R":[{"T":"Underpayment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.598,"y":27.024,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.134,"y":27.024,"w":4.4433,"clr":-1,"A":"left","R":[{"T":"Estimated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":63.64,"y":27.024,"w":1.6661000000000001,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":95.625,"y":11.882,"w":1.3909,"clr":-1,"A":"left","R":[{"T":"%2000","S":-1,"TS":[0,14.4,1,0]}]},{"oc":"#231f20","x":60.462,"y":37.991,"w":1.2736,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.169,"y":37.464,"w":10.6904,"clr":-1,"A":"left","R":[{"T":"Preparer's%20printed%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":54.893,"y":37.991,"w":1.7257000000000002,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.928,"y":37.676,"w":0.278,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.066,"y":37.676,"w":4.4468,"clr":-1,"A":"left","R":[{"T":"authorize","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":14.947,"y":37.676,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.627,"y":37.676,"w":3.4952000000000005,"clr":-1,"A":"left","R":[{"T":"Director","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.207,"y":37.676,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.113,"y":37.676,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.782,"y":37.676,"w":5.217999999999999,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.734,"y":37.676,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.641,"y":37.676,"w":3.9978000000000002,"clr":-1,"A":"left","R":[{"T":"Revenue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.935,"y":37.676,"w":0.8878,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.915,"y":37.676,"w":3.8312000000000004,"clr":-1,"A":"left","R":[{"T":"delegate","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.961,"y":37.676,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.737,"y":32.523,"w":2.8295,"clr":-1,"A":"left","R":[{"T":"Check","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.283,"y":32.523,"w":1.9974000000000003,"clr":-1,"A":"left","R":[{"T":"here","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.674,"y":32.523,"w":1.6653000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.607,"y":32.523,"w":2.2745,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.376,"y":32.523,"w":1.9414000000000002,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.696,"y":32.523,"w":2.3844999999999996,"clr":-1,"A":"left","R":[{"T":"email","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.737,"y":32.973,"w":3.5507,"clr":-1,"A":"left","R":[{"T":"address","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.668,"y":32.973,"w":0.4982,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.372,"y":32.973,"w":1.6093000000000002,"clr":-1,"A":"left","R":[{"T":"you","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.617,"y":32.973,"w":1.9964,"clr":-1,"A":"left","R":[{"T":"wish","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.379,"y":32.973,"w":0.8322,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.539,"y":32.973,"w":3.2166999999999994,"clr":-1,"A":"left","R":[{"T":"receive","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.737,"y":33.423,"w":4.9437999999999995,"clr":-1,"A":"left","R":[{"T":"information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.445,"y":33.423,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"about","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.805,"y":33.423,"w":4.0562000000000005,"clr":-1,"A":"left","R":[{"T":"obtaining","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.297,"y":33.423,"w":1.9442000000000002,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.737,"y":33.873,"w":5.219,"clr":-1,"A":"left","R":[{"T":"1099-G%2FINT","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.85,"y":33.873,"w":3.2760000000000007,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.315,"y":33.873,"w":1.6655000000000002,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.543,"y":33.873,"w":3.221000000000001,"clr":-1,"A":"left","R":[{"T":"Refund","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.737,"y":34.323,"w":11.011800000000001,"clr":-1,"A":"left","R":[{"T":"statement%20electronically.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.296,"y":40.002,"w":2.1036,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":65.738,"y":40.002,"w":3.0994,"clr":-1,"A":"left","R":[{"T":"Check%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":65.746,"y":40.38,"w":2.6774000000000004,"clr":-1,"A":"left","R":[{"T":"if%20self-","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":65.746,"y":40.754,"w":4.331,"clr":-1,"A":"left","R":[{"T":"employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":71.253,"y":41.492,"w":2.2888,"clr":-1,"A":"left","R":[{"T":"FEIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":76.549,"y":40.002,"w":2.2888,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":51.428,"y":35.781,"w":2.1052,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.643,"y":35.754,"w":6.497400000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.21,"y":31.187,"w":1.389,"clr":-1,"A":"left","R":[{"T":"Go","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#231f20","x":8.536,"y":31.187,"w":5.058000000000001,"clr":-1,"A":"left","R":[{"T":"Paperless!","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#231f20","x":15.763000000000002,"y":31.187,"w":3.6095000000000006,"clr":-1,"A":"left","R":[{"T":"SCDOR","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":21.06,"y":31.187,"w":1.3868,"clr":-1,"A":"left","R":[{"T":"will","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":23.381,"y":31.187,"w":1.9995000000000003,"clr":-1,"A":"left","R":[{"T":"offer","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":26.53,"y":31.187,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":28.853,"y":31.187,"w":2.7222,"clr":-1,"A":"left","R":[{"T":"option","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":32.957,"y":31.187,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":34.536,"y":31.187,"w":3.2209000000000003,"clr":-1,"A":"left","R":[{"T":"receive","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":39.32,"y":31.187,"w":1.9438000000000002,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":42.406,"y":31.187,"w":2.3318000000000003,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":45.995,"y":31.187,"w":5.221,"clr":-1,"A":"left","R":[{"T":"1099-G%2FINT","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":53.443,"y":31.187,"w":2.4432,"clr":-1,"A":"left","R":[{"T":"electr","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":56.734,"y":31.187,"w":3.331600000000001,"clr":-1,"A":"left","R":[{"T":"onically","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":61.647,"y":31.187,"w":3.2218999999999998,"clr":-1,"A":"left","R":[{"T":"instead","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":66.423,"y":31.187,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":68.02,"y":31.187,"w":3.9982999999999995,"clr":-1,"A":"left","R":[{"T":"receiving","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":73.841,"y":31.187,"w":0.4994,"clr":-1,"A":"left","R":[{"T":"it","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":74.976,"y":31.187,"w":0.7774000000000001,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":76.482,"y":31.187,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":78.804,"y":31.187,"w":2.1095,"clr":-1,"A":"left","R":[{"T":"mail.","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":82.471,"y":31.187,"w":2.3318000000000003,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":86.06,"y":31.187,"w":5.221,"clr":-1,"A":"left","R":[{"T":"1099-G%2FINT","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":93.508,"y":31.187,"w":0.7214,"clr":-1,"A":"left","R":[{"T":"is","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":94.941,"y":31.187,"w":2.1668000000000003,"clr":-1,"A":"left","R":[{"T":"used","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":6.21,"y":31.637,"w":17.206599999999998,"clr":-1,"A":"left","R":[{"T":"when%20preparing%20your%20federal%20tax%20return.","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#231f20","x":32.853,"y":32.447,"w":6.4525,"clr":-1,"A":"left","R":[{"T":"Email%20Address","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.623,"y":18.564,"w":24.478999999999996,"clr":-1,"A":"left","R":[{"T":"REFUND%20OPTIONS%20(subject%20to%20program%20limitations)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.821,"y":19.316,"w":13.7904,"clr":-1,"A":"left","R":[{"T":"30a%20%20Mark%20one%20refund%20choice%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":8.821,"y":20.814,"w":1.7236,"clr":-1,"A":"left","R":[{"T":"30b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":11.968,"y":20.814,"w":2.8352,"clr":-1,"A":"left","R":[{"T":"Direct","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":16.252,"y":20.814,"w":3.6684,"clr":-1,"A":"left","R":[{"T":"Deposit","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":21.685,"y":20.814,"w":1.6668,"clr":-1,"A":"left","R":[{"T":"(for","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":24.36,"y":20.814,"w":6.225200000000001,"clr":-1,"A":"left","R":[{"T":"US%20Accounts","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":33.315,"y":20.814,"w":5.225,"clr":-1,"A":"left","R":[{"T":"Only)Type%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":45.581,"y":20.814,"w":4.5026,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":57.959,"y":20.814,"w":3.8364000000000007,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":11.89,"y":22.313,"w":3.7784000000000004,"clr":-1,"A":"left","R":[{"T":"Routing","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":17.469,"y":22.313,"w":3.7792000000000003,"clr":-1,"A":"left","R":[{"T":"Number","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":23.052,"y":22.313,"w":2.7155,"clr":-1,"A":"left","R":[{"T":"(RTN)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.89,"y":23.816,"w":2.4434000000000005,"clr":-1,"A":"left","R":[{"T":"Bank","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":15.64,"y":23.816,"w":3.9972000000000003,"clr":-1,"A":"left","R":[{"T":"Account","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":21.529,"y":23.816,"w":3.7756000000000003,"clr":-1,"A":"left","R":[{"T":"Number","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":27.111,"y":23.816,"w":2.732,"clr":-1,"A":"left","R":[{"T":"(BAN)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.163,"y":19.163,"w":6.7664,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit","S":8,"TS":[0,10,1,0]}]},{"oc":"#231f20","x":33.163,"y":19.541,"w":6.267399999999999,"clr":-1,"A":"left","R":[{"T":"(30b%20required)","S":51,"TS":[0,9,0,0]}]},{"oc":"#231f20","x":48.013,"y":19.32,"w":5.441699999999999,"clr":-1,"A":"left","R":[{"T":"Debit%20Card*","S":8,"TS":[0,10,1,0]}]},{"oc":"#231f20","x":61.624,"y":19.32,"w":6.0547,"clr":-1,"A":"left","R":[{"T":"Paper%20Check","S":8,"TS":[0,10,1,0]}]},{"oc":"#231f20","x":28.423,"y":20.067,"w":20.504,"clr":-1,"A":"left","R":[{"T":"*SCDOR%20Income%20Tax%20Refund%20Prepaid%20Debit%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#231f20","x":53.115,"y":20.067,"w":15.786100000000005,"clr":-1,"A":"left","R":[{"T":"Card%20issued%20by%20Bank%20Of%20America%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#231f20","x":73.592,"y":23.672,"w":4.6152,"clr":-1,"A":"left","R":[{"T":"1-17%20digits","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#231f20","x":55.373,"y":21.795,"w":7.8469,"clr":-1,"A":"left","R":[{"T":"Must%20be%209%20digits.","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#231f20","x":64.716,"y":21.795,"w":12.377200000000002,"clr":-1,"A":"left","R":[{"T":"The%20first%20two%20numbers%20of%20the","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#231f20","x":55.373,"y":22.245,"w":19.929799999999997,"clr":-1,"A":"left","R":[{"T":"RTN%20must%20be%2001%20through%2012%20or%2021%20through%2032","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#231f20","x":6.742,"y":40.304,"w":2.1204,"clr":-1,"A":"left","R":[{"T":"Paid","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":6.742,"y":41.055,"w":4.907000000000001,"clr":-1,"A":"left","R":[{"T":"Preparer's","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":6.742,"y":41.802,"w":4.3374,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":16.147,"y":40.016,"w":3.8852,"clr":-1,"A":"left","R":[{"T":"Preparer","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":16.147,"y":40.578,"w":4.1085,"clr":-1,"A":"left","R":[{"T":"signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":16.147,"y":41.388,"w":9.268999999999998,"clr":-1,"A":"left","R":[{"T":"Firm%20name%20(or%20yours%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":16.147,"y":41.838,"w":9.283100000000001,"clr":-1,"A":"left","R":[{"T":"if%20self-employed)%20and","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":16.147,"y":42.288,"w":9.814,"clr":-1,"A":"left","R":[{"T":"address%20and%20Zip%20Code","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":23.485,"y":44.916,"w":7.256100000000001,"clr":-1,"A":"left","R":[{"T":"BALANCE%20DUE","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":19.884,"y":43.602,"w":11.926,"clr":-1,"A":"left","R":[{"T":"REFUNDS%20OR%20ZERO%20TAX","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":44.176,"y":43.499,"w":33.187400000000004,"clr":-1,"A":"left","R":[{"T":"SC1040%20Processing%20Center%2C%20PO%20Box%20101100%2C%20Columbia%2C%20SC%2029211-0100","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":44.176,"y":44.817,"w":33.30500000000001,"clr":-1,"A":"left","R":[{"T":"Taxable%20Processing%20Center%2C%20PO%20Box%20101105%2C%20Columbia%2C%20SC%2029211-0105","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":7.7940000000000005,"y":43.184,"w":4.4608,"clr":-1,"A":"left","R":[{"T":"MAIL%20TO%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":71.191,"y":42.252,"w":4.7178,"clr":-1,"A":"left","R":[{"T":"Phone%20No.","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":25.361,"y":6.467,"w":6.101700000000001,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,6.81315,0,0]}]},{"oc":"#231f20","x":24.621,"y":8.817,"w":3.3492000000000006,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.813,"y":6.553,"w":8.361249999999998,"clr":-1,"A":"left","R":[{"T":"(Attach%20W-2%20or%20SC41)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.642,"y":8.808,"w":9.6216,"clr":-1,"A":"left","R":[{"T":"NR%20sale%20of%20real%20estate","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.756,"y":11.814,"w":12.280399999999998,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.094,"y":11.783,"w":6.712400000000001,"clr":-1,"A":"left","R":[{"T":"These%20are%20your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.375,"y":12.565,"w":41.592,"clr":-1,"A":"left","R":[{"T":"If%20line%2023%20is%20LARGER%20than%20line%2015%2C%20subtract%20line%2015%20from%20line%2023%20and%20enter%20the%20OVERPAYMENT","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.634,"y":12.565,"w":8.9024,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.375,"y":13.317,"w":40.636900000000004,"clr":-1,"A":"left","R":[{"T":"If%20line%2015%20is%20LARGER%20than%20line%2023%2C%20subtract%20line%2023%20from%20line%2015%20and%20enter%20the%20AMOUNT%20DUE","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":64.332,"y":13.317,"w":10.011600000000007,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.293,"y":14.1,"w":22.886199999999988,"clr":-1,"A":"left","R":[{"T":".........................................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.098,"y":14.082,"w":8.8860508,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":-1,"TS":[0,11.00002,0,0]}]},{"oc":"#231f20","x":8.375,"y":17.151,"w":43.45299999999998,"clr":-1,"A":"left","R":[{"T":"If%20line%2029%20is%20larger%20than%20line%2024%2C%20go%20to%20line%2031.%20Otherwise%2C%20subtract%20line%2029%20from%20line%2024%20and%20enter%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.413,"y":24.806,"w":49.70460000000005,"clr":-1,"A":"left","R":[{"T":"Tax%20Due%3A%20Add%20lines%2025%20and%2029.%20%20If%20line%2029%20is%20larger%20than%20line%2024%2C%20subtract%20line%2024%20from%20line%2029%20and%20enter%20the%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.853,"y":24.806,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"%20.%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.276,"y":25.582,"w":7.7745999999999995,"clr":-1,"A":"left","R":[{"T":"(See%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":73.258,"y":25.557,"w":2.7895000000000003,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.98,"y":28.525,"w":11.164,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,3.722222,0,0]}]},{"oc":"#231f20","x":63.218,"y":25.606,"w":6.8322,"clr":-1,"A":"left","R":[{"T":"Enter%20total%20here","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.065,"y":26.25,"w":7.431000000000002,"clr":-1,"A":"left","R":[{"T":"(Attach%20SC2210)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.309,"y":26.252,"w":19.64199999999999,"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.","S":-1,"TS":[0,12.31742,0,0]}]},{"oc":"#231f20","x":5.938,"y":29.94,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"(EFW)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.39,"y":29.94,"w":1.0004,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":12.232,"y":29.94,"w":3.5024,"clr":-1,"A":"left","R":[{"T":"include","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":17.531,"y":29.94,"w":4.6146,"clr":-1,"A":"left","R":[{"T":"SC1040-V","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":24.162,"y":29.94,"w":2.0008,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":27.391,"y":29.94,"w":2.1677999999999997,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":30.842,"y":29.94,"w":2.836,"clr":-1,"A":"left","R":[{"T":"check","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":35.239,"y":29.94,"w":1.0004,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":37.082,"y":29.94,"w":3.224,"clr":-1,"A":"left","R":[{"T":"money","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":42.01,"y":29.94,"w":2.5569999999999995,"clr":-1,"A":"left","R":[{"T":"order","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":45.995,"y":29.94,"w":1.3336,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":48.309,"y":29.94,"w":1.5006,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":50.846,"y":29.94,"w":0.9443999999999999,"clr":-1,"A":"left","R":[{"T":"fu","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.938,"y":29.316,"w":64.89490000000004,"clr":-1,"A":"left","R":[{"T":"Pay%20electronically%20free%20of%20charge%20at%20www.sctax.org.%20Click%20on%20DORePay%20and%20pay%20with%20Visa%2C%20Master%20Card%20or%20by%20Electronic%20Funds%20Withdrawal","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":58.754,"y":35.759,"w":26.643,"clr":-1,"A":"left","R":[{"T":"Spouse's%20signature%20(if%20married%20filing%20jointly%2C%20BOTH%20must%20sign)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.928,"y":38.238,"w":32.87259999999996,"clr":-1,"A":"left","R":[{"T":"discuss%20this%20return%2C%20attachments%20and%20related%20tax%20matters%20with%20the%20preparer.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":39.251,"w":54.20079999999996,"clr":-1,"A":"left","R":[{"T":"If%20prepared%20by%20a%20person%20other%20than%20the%20taxpayer%2C%20his%20declaration%20is%20based%20on%20all%20information%20of%20which%20he%20has%20any%20knowledge.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":35.048,"w":50.73879999999994,"clr":-1,"A":"left","R":[{"T":"I%20declare%20that%20this%20return%20and%20all%20attachments%20are%20true%2C%20correct%20and%20complete%20to%20the%20best%20of%20my%20knowledge%20and%20belief.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.142,"y":29.94,"w":0.556,"clr":-1,"A":"left","R":[{"T":"ll","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":53.389,"y":29.94,"w":3.6109999999999998,"clr":-1,"A":"left","R":[{"T":"amount","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":58.848,"y":29.94,"w":3.7239999999999998,"clr":-1,"A":"left","R":[{"T":"payable","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":64.451,"y":29.94,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":66.235,"y":29.94,"w":1.889,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CSC","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":69.303,"y":29.94,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":77.443,"y":29.94,"w":0.944,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.212,"y":29.94,"w":7.724000000000001,"clr":-1,"A":"left","R":[{"T":"Revenue%E2%80%9D.%20Write","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":90.302,"y":29.94,"w":2.167,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.103,"y":30.471,"w":28.566000000000006,"clr":-1,"A":"left","R":[{"T":"social%20security%20number%20and%20%E2%80%9C2013%20SC1040%E2%80%9D%20on%20the%20payment.%20","S":-1,"TS":[0,11,1,0]}]},{"x":69.871,"y":27.068,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"x":10.574,"y":9.318,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]},{"x":47.957,"y":9.349,"w":42.68399999999998,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME3","EN":0},"TI":127,"AM":1024,"x":6.668,"y":2.912,"w":61.527,"h":0.9},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":128,"AM":1024,"x":69.672,"y":2.98,"w":16.345,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCTAXWH","EN":0},"TI":129,"AM":0,"x":31.761,"y":6.488,"w":10.23,"h":0.915,"TU":"Line 16. SC Income Tax Withheld."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHSCWH","EN":0},"TI":130,"AM":0,"x":65.733,"y":6.582,"w":10.798,"h":0.892,"TU":"Line 20. Other SC withholding."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESTTAX","EN":0},"TI":131,"AM":0,"x":31.72,"y":7.479,"w":10.313,"h":0.833,"TU":"Line 17. 2013 estimated tax payments."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PDEXT","EN":0},"TI":132,"AM":0,"x":31.72,"y":8.229,"w":10.313,"h":0.833,"TU":"Line 18. Amount paid with extension."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F319"}},"id":{"Id":"Add_I319","EN":0},"TI":133,"AM":0,"x":56.79,"y":8.196,"w":4.589,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"I319CR","EN":0},"TI":134,"AM":1024,"x":65.71,"y":8.022,"w":10.78,"h":0.882,"TU":"Line 21. Tuition tax credit. (Attach I-319)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NONRESRE","EN":0},"TI":135,"AM":1024,"x":31.784,"y":9.025,"w":10.313,"h":0.833,"TU":"Line 19. NR sale of real estate."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHRCRED","EN":0},"TI":136,"AM":1024,"x":65.884,"y":9.049,"w":10.56,"h":0.833,"TU":"Line 22. Other refundable credit(s)"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":138,"AM":0,"x":78.89,"y":9.795,"w":2.418,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":140,"AM":0,"x":78.906,"y":10.445,"w":2.343,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":142,"AM":0,"x":78.859,"y":11.013,"w":2.343,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPMTS","EN":0},"TI":143,"AM":1024,"x":82.003,"y":11.892,"w":13.687,"h":0.833,"TU":"Line 23. Add lines 16 through 22 and enter the total here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPAY","EN":0},"TI":144,"AM":1024,"x":81.944,"y":12.767,"w":13.86,"h":0.833,"TU":"Line 24. If line 23 is larger than line 15, subtract line 15 from line 23 and enter the overpayment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DUE","EN":0},"TI":145,"AM":1024,"x":81.88,"y":13.479,"w":13.86,"h":0.833,"TU":"Line 25. If line 15 is larger than line 23, subtract line 23 from line 15 and enter the amount due."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"USETAX","EN":0},"TI":146,"AM":0,"x":63.638,"y":14.199,"w":12.549,"h":0.833,"TU":"Line 26. Use tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPYAP","EN":0},"TI":147,"AM":0,"x":63.638,"y":15.009,"w":12.549,"h":0.833,"TU":"Line 27. Amount of line 24 to be credited to your 2014 estimated tax."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F330"}},"id":{"Id":"Add_I330","EN":0},"TI":148,"AM":0,"x":37.613,"y":15.739,"w":4.589,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRIB","EN":0},"TI":149,"AM":1024,"x":63.746,"y":15.821,"w":12.614,"h":0.833,"TU":"Line 28. Total Contributions for Check-offs (Attach I-330)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A414","EN":0},"TI":150,"AM":1024,"x":82.2,"y":16.494,"w":13.539,"h":0.833,"TU":"Line 29. Add lines 26 through 28 and enter the total here."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":151,"AM":1024,"x":82.242,"y":17.73,"w":13.457,"h":0.979,"TU":"Line 30. If line 29 is larger than line 23, go to line 31. Otherwise, subtract line 29 from line 24 and enter the amount to be refunded to you. (line 30a check box entry is required)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":157,"AM":0,"x":33.281,"y":22.076,"w":21.487,"h":1.139,"TU":"Routing Number","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"BAN","EN":0},"TI":158,"AM":0,"x":33.307,"y":23.595,"w":40.064,"h":1.079,"TU":"Bank Account Number","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NEW31","EN":0},"TI":159,"AM":1024,"x":81.88,"y":24.909,"w":13.86,"h":0.833,"TU":"Line 31. Tax Due. Add lines 25 and 29. If line 29 is larger than line 24, subtract line 24 from line 29 and enter the amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY","EN":0},"TI":160,"AM":0,"x":34.251,"y":25.679,"w":6.876,"h":0.833,"TU":"Line 32 Penalties amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTEREST","EN":0},"TI":161,"AM":0,"x":47.02,"y":25.687,"w":6.195,"h":0.833,"TU":"Line 33 Interest Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LATEPEN","EN":0},"TI":162,"AM":1024,"x":81.88,"y":25.719,"w":13.86,"h":0.833,"TU":"Line 32. Late filing and/or late payment. (see instructions) Enter total here."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:NotSpt"}},"id":{"Id":"Add","EN":0},"TI":163,"AM":0,"x":45.574,"y":26.395,"w":2.268,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AR47","EN":0},"TI":164,"AM":1024,"x":81.921,"y":26.767,"w":13.778,"h":1.173,"TU":"Line 33. Penalty for Underpayment of Estimated Tax (Attach SC2210) ( See instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"BXEXCEPT","EN":0},"TI":165,"AM":1024,"x":66.428,"y":27.269,"w":3.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BALDUE","EN":0},"TI":166,"AM":1024,"x":81.962,"y":28.315,"w":13.695,"h":1.194,"TU":"Line 34. Add lines 31 through 33 and enter the amount you owe here."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VOUCHEF"}},"id":{"Id":"Add_SC1040V","EN":0},"TI":167,"AM":0,"x":59.224,"y":28.697,"w":3.691,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMAIL","EN":0},"TI":168,"AM":0,"x":32.503,"y":33.407,"w":65.629,"h":1.717,"TU":"Email Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PEIN","EN":0},"TI":170,"AM":1024,"x":75.72,"y":40.853,"w":22.723,"h":0.833,"V":"FFF"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":171,"AM":1024,"x":28.656,"y":41.737,"w":41.813,"h":0.833,"V":"SELF PREPARED"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXREF1","EN":0},"TI":137,"AM":1024,"x":53.539,"y":9.951,"w":1.671,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXREF2","EN":0},"TI":139,"AM":1024,"x":53.496,"y":10.523,"w":1.746,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXREF3","EN":0},"TI":141,"AM":1024,"x":53.498,"y":11.205,"w":1.597,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXDD","EN":0},"TI":152,"AM":0,"x":30.742,"y":19.518,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXDEB","EN":0},"TI":153,"AM":0,"x":45.565,"y":19.49,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXPC","EN":0},"TI":154,"AM":0,"x":59.171,"y":19.51,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX495RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXCK","EN":0},"TI":155,"AM":0,"x":43.49,"y":20.973,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXSV","EN":0},"TI":156,"AM":0,"x":56.227,"y":20.988,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX504RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"INFO","EN":0},"TI":169,"AM":0,"x":7.271,"y":33.838,"w":1.597,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/sc/form/F1040DEP.content.txt b/test/data/sc/form/F1040DEP.content.txt new file mode 100755 index 00000000..ec5cacb0 --- /dev/null +++ b/test/data/sc/form/F1040DEP.content.txt @@ -0,0 +1,10 @@ +SC1040 +Additional Dependents Statement 2013 + Attach to your return +Statement +Name(s) shown on return +Your social security number + Dependents: +First name Last name Social security Relationship Date of birth +number (MM/DD/YYYY) +----------------Page (0) Break---------------- diff --git a/test/data/sc/form/F1040DEP.fields.json b/test/data/sc/form/F1040DEP.fields.json new file mode 100755 index 00000000..0442cb1f --- /dev/null +++ b/test/data/sc/form/F1040DEP.fields.json @@ -0,0 +1 @@ +[{"id":"STMT","type":"alpha","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"A6_DEPFIRST_1_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_1_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_1_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_1_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_1_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_2_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_2_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_2_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_2_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_2_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_3_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_3_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_3_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_3_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_3_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_4_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_4_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_4_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_4_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_4_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_5_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_5_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_5_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_5_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_5_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_6_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_6_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_6_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_6_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_6_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_7_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_7_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_7_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_7_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_7_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_8_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_8_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_8_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_8_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_8_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_9_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_9_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_9_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_9_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_9_","type":"date","calc":false,"value":""},{"id":"A6_DEPFIRST_10_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPLAST_10_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPSSN_10_","type":"ssn","calc":false,"value":""},{"id":"A6_DEPRELAT_10_","type":"alpha","calc":false,"value":""},{"id":"A6_DEPDOB_10_","type":"date","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/sc/form/F1040DEP.json b/test/data/sc/form/F1040DEP.json new file mode 100755 index 00000000..f9c32b6a --- /dev/null +++ b/test/data/sc/form/F1040DEP.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"scdepstmt.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":80.438,"y":3,"w":18.903,"h":0.124,"clr":0},{"x":1.031,"y":3,"w":79.747,"h":0.124,"clr":0},{"x":90.75,"y":3,"w":8.333,"h":0.03,"clr":0},{"x":1.031,"y":4.5,"w":98.309,"h":0.124,"clr":0},{"x":1.031,"y":6.75,"w":98.134,"h":0.06,"clr":0},{"x":1.031,"y":8.25,"w":98.134,"h":0.06,"clr":0},{"x":1.031,"y":9,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":9.75,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":10.5,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":11.25,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":12,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":12.75,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":13.5,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":14.25,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":15,"w":98.051,"h":0.03,"clr":0},{"x":1.031,"y":15.75,"w":98.051,"h":0.03,"clr":0},{"x":15.469,"y":1.5,"w":0.083,"h":1.53,"clr":0},{"x":80.438,"y":1.5,"w":0.082,"h":3.03,"clr":0},{"x":90.75,"y":1.5,"w":0.083,"h":1.53,"clr":0},{"x":1.031,"y":6.75,"w":0.165,"h":1.56,"clr":0},{"x":26.813,"y":6.75,"w":0.165,"h":1.56,"clr":0},{"x":52.594,"y":6.75,"w":0.165,"h":1.56,"clr":0},{"x":68.063,"y":6.75,"w":0.165,"h":1.56,"clr":0},{"x":83.531,"y":6.75,"w":0.165,"h":1.56,"clr":0},{"x":99,"y":6.75,"w":0.165,"h":1.56,"clr":0},{"x":1.031,"y":8.25,"w":0.082,"h":7.53,"clr":0},{"x":26.813,"y":8.25,"w":0.082,"h":7.53,"clr":0},{"x":52.594,"y":8.25,"w":0.083,"h":7.53,"clr":0},{"x":68.063,"y":8.25,"w":0.083,"h":7.53,"clr":0},{"x":83.531,"y":8.25,"w":0.082,"h":7.53,"clr":0},{"x":99,"y":8.25,"w":0.083,"h":7.53,"clr":0}],"Texts":[{"x":3.184,"y":1.376,"w":3.6130000000000004,"clr":0,"A":"left","R":[{"T":"SC1040","S":-1,"TS":[2,17.9535,1,0]}]},{"x":32.059,"y":1.376,"w":16.002,"clr":0,"A":"left","R":[{"T":"Additional%20Dependents%20Statement","S":-1,"TS":[2,15.9773,1,0]}]},{"x":91.873,"y":1.376,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,15.9773,1,0]}]},{"x":40.443,"y":2.126,"w":9.898,"clr":0,"A":"left","R":[{"T":"%20Attach%20to%20your%20return","S":-1,"TS":[2,11.9829,0,0]}]},{"x":81.559,"y":2.126,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,13.941,1,0]}]},{"x":1.122,"y":2.876,"w":11.798000000000002,"clr":0,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[2,10.9648,0,0]}]},{"x":80.528,"y":2.876,"w":13.449000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[2,10.9648,1,0]}]},{"x":0.693,"y":5.126,"w":6.334,"clr":0,"A":"left","R":[{"T":"%20Dependents%3A","S":-1,"TS":[2,11.9829,1,0]}]},{"x":2.153,"y":6.626,"w":4.952999999999999,"clr":0,"A":"left","R":[{"T":"First%20name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":27.935,"y":6.626,"w":4.861,"clr":0,"A":"left","R":[{"T":"Last%20name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.718,"y":6.626,"w":6.760999999999999,"clr":0,"A":"left","R":[{"T":"Social%20security","S":-1,"TS":[2,11.9829,0,0]}]},{"x":69.189,"y":6.626,"w":5.699,"clr":0,"A":"left","R":[{"T":"Relationship","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.659,"y":6.626,"w":5.7299999999999995,"clr":0,"A":"left","R":[{"T":"Date%20of%20birth","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.715,"y":7.3759999999999994,"w":3.5020000000000002,"clr":0,"A":"left","R":[{"T":"number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":84.653,"y":7.3759999999999994,"w":7.126000000000002,"clr":0,"A":"left","R":[{"T":"(MM%2FDD%2FYYYY)","S":-1,"TS":[2,11.9829,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":172,"AM":0,"x":90.915,"y":2.232,"w":8.207,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":173,"AM":1024,"x":1.093,"y":3.769,"w":79.09,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":174,"AM":1024,"x":80.795,"y":3.769,"w":18.494,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_1_","EN":0},"TI":175,"AM":0,"x":1.113,"y":8.329,"w":25.049,"h":0.833,"TU":"First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_1_","EN":0},"TI":176,"AM":0,"x":27.233,"y":8.303,"w":24.753,"h":0.833,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_1_","EN":0},"TI":177,"AM":0,"x":53.175,"y":8.299,"w":14.556,"h":0.833,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_1_","EN":0},"TI":178,"AM":0,"x":68.487,"y":8.263,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_1_","EN":0},"TI":179,"AM":0,"x":84.124,"y":8.335,"w":14.985,"h":0.833,"TU":"Date of birth.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_2_","EN":0},"TI":180,"AM":0,"x":1.118,"y":9.058,"w":25.113,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_2_","EN":0},"TI":181,"AM":0,"x":27.174,"y":9.033,"w":24.882,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_2_","EN":0},"TI":182,"AM":0,"x":53.115,"y":9.029,"w":14.685,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_2_","EN":0},"TI":183,"AM":0,"x":68.41,"y":9.065,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_2_","EN":0},"TI":184,"AM":0,"x":84.064,"y":9.064,"w":15.049,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_3_","EN":0},"TI":185,"AM":0,"x":1.116,"y":9.819,"w":25.113,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_3_","EN":0},"TI":186,"AM":0,"x":27.235,"y":9.793,"w":24.753,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_3_","EN":0},"TI":187,"AM":0,"x":53.177,"y":9.789,"w":14.621,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_3_","EN":0},"TI":188,"AM":0,"x":68.539,"y":9.778,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_3_","EN":0},"TI":189,"AM":0,"x":84.062,"y":9.825,"w":14.92,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_4_","EN":0},"TI":190,"AM":0,"x":1.12,"y":10.548,"w":25.241,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_4_","EN":0},"TI":191,"AM":0,"x":27.304,"y":10.523,"w":24.689,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_4_","EN":0},"TI":192,"AM":0,"x":53.181,"y":10.589,"w":14.621,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_4_","EN":0},"TI":193,"AM":0,"x":68.461,"y":10.58,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_4_","EN":0},"TI":194,"AM":0,"x":84.002,"y":10.554,"w":15.177,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_5_","EN":0},"TI":195,"AM":0,"x":1.03,"y":11.307,"w":25.305,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_5_","EN":0},"TI":196,"AM":0,"x":27.278,"y":11.282,"w":24.753,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_5_","EN":0},"TI":197,"AM":0,"x":53.219,"y":11.278,"w":14.557,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_5_","EN":0},"TI":198,"AM":0,"x":68.513,"y":11.282,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_5_","EN":0},"TI":199,"AM":0,"x":83.912,"y":11.313,"w":15.177,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_6_","EN":0},"TI":200,"AM":0,"x":1.034,"y":12.037,"w":25.369,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_6_","EN":0},"TI":201,"AM":0,"x":27.282,"y":12.012,"w":24.689,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_6_","EN":0},"TI":202,"AM":0,"x":53.223,"y":12.008,"w":14.557,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_6_","EN":0},"TI":203,"AM":0,"x":68.435,"y":12.051,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_6_","EN":0},"TI":204,"AM":0,"x":83.916,"y":12.043,"w":15.177,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_7_","EN":0},"TI":205,"AM":0,"x":1.032,"y":12.797,"w":25.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_7_","EN":0},"TI":206,"AM":0,"x":27.28,"y":12.772,"w":24.625,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_7_","EN":0},"TI":207,"AM":0,"x":53.285,"y":12.768,"w":14.428,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_7_","EN":0},"TI":208,"AM":0,"x":68.564,"y":12.797,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_7_","EN":0},"TI":209,"AM":0,"x":83.914,"y":12.803,"w":15.177,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_8_","EN":0},"TI":210,"AM":0,"x":1.036,"y":13.527,"w":25.369,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_8_","EN":0},"TI":211,"AM":0,"x":27.348,"y":13.502,"w":24.561,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_8_","EN":0},"TI":212,"AM":0,"x":53.418,"y":13.498,"w":14.3,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_8_","EN":0},"TI":213,"AM":0,"x":68.487,"y":13.534,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_8_","EN":0},"TI":214,"AM":0,"x":83.918,"y":13.533,"w":15.177,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_9_","EN":0},"TI":215,"AM":0,"x":1.111,"y":14.306,"w":25.305,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_9_","EN":0},"TI":216,"AM":0,"x":27.295,"y":14.281,"w":24.625,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_9_","EN":0},"TI":217,"AM":0,"x":53.429,"y":14.277,"w":14.236,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_9_","EN":0},"TI":218,"AM":0,"x":68.629,"y":14.301,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_9_","EN":0},"TI":219,"AM":0,"x":83.929,"y":14.312,"w":15.241,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPFIRST_10_","EN":0},"TI":220,"AM":0,"x":1.116,"y":15.059,"w":25.305,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPLAST_10_","EN":0},"TI":221,"AM":0,"x":27.364,"y":15.011,"w":24.561,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A6_DEPSSN_10_","EN":0},"TI":222,"AM":0,"x":53.369,"y":15.007,"w":14.3,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A6_DEPRELAT_10_","EN":0},"TI":223,"AM":0,"x":68.551,"y":15.005,"w":14.288,"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":"date","TypeInfo":{}},"id":{"Id":"A6_DEPDOB_10_","EN":0},"TI":224,"AM":0,"x":84.062,"y":15.042,"w":15.113,"h":0.833,"MV":"mm/dd/yyyy"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/sc/form/F319.content.txt b/test/data/sc/form/F319.content.txt new file mode 100755 index 00000000..6f42ac00 --- /dev/null +++ b/test/data/sc/form/F319.content.txt @@ -0,0 +1,287 @@ +When did the student receive the high school diploma? +When did the student enroll in a qualifying institution? +(See Qualifying Colleges +or Universities for com +plete list) Is the enrollment within 12 months +after +30 +credit hours or +30 +equivalent hours? +Did the student attend one but not both Spring and Fall semester at +Converse, Erskine, or Wofford and complete the required +equivalent hours? +is a legal SC resident? +ELIGIBLE +FOR + TUITION TAX CREDIT +Are y +ou +claiming credit hours earned after 4 years from the date the student first enrolled in a +qualifying college or university? Answer +NO +if additional time was granted due to medical +necessity. +Was the student in default on a student loan? Answer +NO +if the loan was paid in full. +ted misdemeanor during the year? +NOT +ELIGIBLE +Has the student ever been found guilty of any felonies? Answer +NO +if the record has been +expunged. +NO +NO +NO +NO +NO +NOT +ELIGIBLE +NOT +ELIGIBLE +NOT +ELIGIBLE +NOT +ELIGIBLE +NOT +ELIGIBLE +NOT +ELIGIBLE +NOT +ELIGIBLE +NOT +ELIGIBLE +NO +NOT +ELIGIBLE +YES +YES +YES +YES +YES +YES +YES +NO +YES +NO +YES +NO +NO +YES +YES +YES +YES +NO +NO +NO +Did the student attend one but not both Spring and Fall +semester and complete at least +15 +credit hours? +YES +33501024 +graduating from high school? +Did t +he +student complete the required equivalent +hours that have been approved by the Disability +NO +NOT +ELIGIBLE + A SC high school? +A preparatory high school outside SC while being a dependent of a parent or guardian who +STUDE +NT ELIGIBILITY FOR TUITION TAX CREDIT. +◄ +▼ +I-319 +(Rev. 8/8/13) +3350 +STATE + OF SOUTH CAROLINA +DEPAR +TMEN +T OF REVENUE +1350 +Did the student receive a high school diploma from one of the following: + A high school home school program in SC in the manner required by law? +Did the student receive this diploma during or after May 2008? +► STOP +STOP +STOP +STOP +STOP +STOP +STOP +STOP +STOP +STOP +STOP +Did the student qualify for in-state tuition during the tax year? +Was the +student admitted, enrolled and classified as a degree seeking undergraduate or was +the student enrolled in a certificate or diploma program of at least one year? +Service Provider at the qualifying institution? +Did the student receive a LIFE or Palmetto Fellows Scholarship for all semesters attended? +Was the student found guilty of any alcohol or drug rela +How many credit hours were completed in 2013? Is it at least +► +► +► +► +► +► +► +► +► +► +◄ +◄ +◄ +▼ +▼ +▼ +▼ +▼ +▼ +▼ +▼ +▼ +▼ +2013 TUITION TAX CREDIT +----------------Page (0) Break---------------- +I-319 +(Rev. 8/8/13) +3350 +1350 +2013 TUITION TAX CREDIT +Name of +Qualified +College or University in which st +udent was first enrolled: +Month/Year First Enrolled: +Name of High School: +Month/Year Graduated: +Name of Qualified College or University attended during the tax year: +Name of Qualified College or University attended during the tax year: +Name of Qualified College or University attended during the tax year: +33502022 +Complete one I-319 +for each student. This form +must be attached to the SC1040. +Check +www.sctax.org +for SC Revenue Ruling # 09-3 for more information. +NAME OF TAXPAYER + SOCIAL SECURITY NUMBER +You must select one of the following: +If yes, + +Spring 2013 +Fall 2013 + Legal Guardian +Credit Hours and Tuition Information +What qualifies as tuition? +3. +4. +$ +$ +3. +4. +5. +6. +7. +8. +9. +........ +Subtract +line +5 +from 4 ............................................................................................................................... +Multiply line 6 +by 25% (. +25) ........................................................................................................ +.............. +What do I need to list as a scholarship grant? +You must deduct any scholarship or grant used to pay qualified tuition +before calculating the credit. Scholarship grants do not include +grants not used to pay qualified tuition, student +$ +$ +$ +$ +$ +5. +6. +7. +8. +9. +(See instructions for +Tuition Limit) +............................................................................................................ +Total +Fall Term Interim +Summer Term +Spring Term +1. See +next +page for +Credit Hours Requirements. +Number of semester hours completed during tax year: +$ +2. +STATE + OF SOUTH CAROLINA +DEPAR +TMEN +T OF REVENUE + Other person eligible to claim student as a dependent +Did the student receive the LIFE or Palmetto Fellows Scholarship? +Month/Year through Month/Year: +Month/Year through Month/Year: +Month/Year through Month/Year: +Qualified tuition paid ........................................................ +Qualified t +uition +means the amount charged by a college or university as a condition of enrollment and includes required fees. The +cost of dorm rooms, books and meals are not included in tuition. +Student's +First +Name and Initial : +Student's Last Name +Student's Social Security Number: +Tuition limit for 4 year independent College or University (if it applies) +loans, I +RC +Section 127 educational assistance plans, payment for teaching, research +or other services, or veteran educational assistance benefits. +Amount of scholarships and grants .................................................................................................. +Enter the smaller of 7 or 8. This is your tuition tax credit. Enter on SC1040, line 21 +................................. +If more than 1 form is completed, combine the tuition tax credit amounts and enter on SC1040, line 21. + ................................... +Smaller of lines 2 (Total) or 3 (Enter amount from line 2 if line 3 does not apply.) +< + +> +Credit limit ($850.00 for 4 year College or University or $350.00 for 2 year college or university) +........... +Student + +Parent +Did you pay the tuition? + +Yes + +No + +Yes + +No +$ +$ +$ +$ +----------------Page (1) Break---------------- diff --git a/test/data/sc/form/F319.fields.json b/test/data/sc/form/F319.fields.json new file mode 100755 index 00000000..eff1bdfc --- /dev/null +++ b/test/data/sc/form/F319.fields.json @@ -0,0 +1 @@ +[{"id":"DESCR","type":"alpha","calc":true,"value":""},{"id":"DIPLOMA","type":"date","calc":false,"value":""},{"id":"ENROLL","type":"date","calc":false,"value":""},{"id":"CRDHOURS","type":"number","calc":false,"value":""},{"id":"STDNRB","type":"radio","calc":false,"value":"STDNT"},{"id":"STDNRB","type":"radio","calc":false,"value":"PARNT"},{"id":"STDNRB","type":"radio","calc":false,"value":"LGLGUARD"},{"id":"STDNRB","type":"radio","calc":false,"value":"OTHPER"},{"id":"TUITRB","type":"radio","calc":false,"value":"TUITY"},{"id":"TUITRB","type":"radio","calc":false,"value":"TUITN"},{"id":"SEMESTRB","type":"radio","calc":false,"value":"SPRINGBX"},{"id":"SEMESTRB","type":"radio","calc":false,"value":"FALLBX"},{"id":"BX1RB","type":"radio","calc":false,"value":"YESBOX"},{"id":"BX1RB","type":"radio","calc":false,"value":"NOBOX"},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"STDFNAME","type":"alpha","calc":false,"value":""},{"id":"STDMI","type":"mask","calc":false,"value":""},{"id":"STDLNAME","type":"alpha","calc":false,"value":""},{"id":"STDSSN","type":"ssn","calc":false,"value":""},{"id":"HS","type":"alpha","calc":false,"value":""},{"id":"YGRAD","type":"date","calc":false,"value":""},{"id":"INST1","type":"alpha","calc":false,"value":""},{"id":"ENTER1","type":"date","calc":false,"value":""},{"id":"INST2","type":"alpha","calc":false,"value":""},{"id":"BMONTH1","type":"date","calc":false,"value":""},{"id":"EMONTH1","type":"date","calc":false,"value":""},{"id":"INST3","type":"alpha","calc":false,"value":""},{"id":"BMONTH2","type":"date","calc":false,"value":""},{"id":"EMONTH2","type":"date","calc":false,"value":""},{"id":"INST4","type":"alpha","calc":false,"value":""},{"id":"BMONTH3","type":"date","calc":false,"value":""},{"id":"EMONTH3","type":"date","calc":false,"value":""},{"id":"SEMHRS1","type":"number","calc":false,"value":""},{"id":"SEMHRS2","type":"number","calc":false,"value":""},{"id":"SEMHRS3","type":"number","calc":false,"value":""},{"id":"SEMHRS4","type":"number","calc":false,"value":""},{"id":"HRSTOT","type":"number","calc":true,"value":""},{"id":"PAID1","type":"number","calc":false,"value":""},{"id":"PAID2","type":"number","calc":false,"value":""},{"id":"PAID3","type":"number","calc":false,"value":""},{"id":"PAID4","type":"number","calc":false,"value":""},{"id":"TUITPD","type":"number","calc":true,"value":""},{"id":"TUITLMT","type":"number","calc":false,"value":""},{"id":"TUITTOT","type":"number","calc":true,"value":""},{"id":"GRANTOT","type":"mask","calc":false,"value":""},{"id":"NETUIT","type":"number","calc":true,"value":""},{"id":"TUIT25","type":"number","calc":true,"value":""},{"id":"CRDLMT","type":"number","calc":false,"value":""},{"id":"TOTCRED","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/sc/form/F319.json b/test/data/sc/form/F319.json new file mode 100755 index 00000000..59622958 --- /dev/null +++ b/test/data/sc/form/F319.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"I319_Fi_f1.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":10.729,"y":4.725,"w":3.024,"l":83.321},{"oc":"#231f20","x":10.729,"y":5.773,"w":3.024,"l":83.321},{"oc":"#231f20","x":85.598,"y":23.477,"w":0.8639999999999999,"l":3.712},{"oc":"#231f20","x":5.977,"y":8.923,"w":1.8359999999999999,"l":60.019},{"oc":"#231f20","x":5.977,"y":5.998,"w":1.8359999999999999,"l":60.019},{"oc":"#231f20","x":34.44,"y":23.4,"w":0.8639999999999999,"l":13.613},{"oc":"#231f20","x":20.208,"y":26.924,"w":0.10799999999999998,"l":0.21},{"oc":"#231f20","x":34.44,"y":27,"w":0.8639999999999999,"l":13.613},{"oc":"#231f20","x":34.242,"y":30.15,"w":0.8639999999999999,"l":12.375},{"oc":"#231f20","x":67.035,"y":8.401,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":67.035,"y":11.236,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":67.233,"y":14.035,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":67.233,"y":16.727,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":67.233,"y":19.35,"w":0.8639999999999999,"l":9.9},{"oc":"#231f20","x":70.723,"y":33.3,"w":0.8639999999999999,"l":9.108},{"oc":"#231f20","x":70.723,"y":35.699,"w":0.8639999999999999,"l":9.108},{"oc":"#231f20","x":70.537,"y":38.101,"w":0.8639999999999999,"l":9.108},{"oc":"#231f20","x":70.723,"y":40.725,"w":0.8639999999999999,"l":9.108},{"oc":"#231f20","x":70.921,"y":42.975,"w":0.8639999999999999,"l":9.108},{"oc":"#231f20","x":68.273,"y":21.6,"w":0.8639999999999999,"l":21.038},{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":47.236,"y":31.424,"w":1.8359999999999999,"l":33.004},{"oc":"#231f20","x":47.236,"y":29.322,"w":1.8359999999999999,"l":33.004},{"oc":"#231f20","x":81.675,"y":30.749,"w":0.8639999999999999,"l":3.923},{"oc":"#231f20","x":6.188,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.187,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":10.729,"y":4.5,"w":0.8639999999999999,"l":83.321},{"oc":"#231f20","x":48.731,"y":27.723,"w":1.8359999999999999,"l":42.616},{"oc":"#231f20","x":48.731,"y":25.652,"w":1.8359999999999999,"l":42.616},{"oc":"#231f20","x":48.66,"y":24.196,"w":1.8359999999999999,"l":35.712},{"oc":"#231f20","x":48.66,"y":22.804,"w":1.8359999999999999,"l":35.712},{"oc":"#231f20","x":5.998,"y":11.489,"w":1.8359999999999999,"l":60.019},{"oc":"#231f20","x":5.998,"y":10.011,"w":1.8359999999999999,"l":60.019},{"oc":"#231f20","x":6,"y":14.604,"w":1.8359999999999999,"l":60.703},{"oc":"#231f20","x":6,"y":12.771,"w":1.8359999999999999,"l":60.703},{"oc":"#231f20","x":6.002,"y":19.647,"w":1.8359999999999999,"l":61.387},{"oc":"#231f20","x":6.002,"y":18.228,"w":1.8359999999999999,"l":61.387},{"oc":"#231f20","x":6.002,"y":22.397,"w":1.8359999999999999,"l":61.387},{"oc":"#231f20","x":6.002,"y":20.978,"w":1.8359999999999999,"l":61.387},{"oc":"#231f20","x":5.957,"y":17.034,"w":1.8359999999999999,"l":60.617},{"oc":"#231f20","x":5.957,"y":15.904,"w":1.8359999999999999,"l":60.617},{"oc":"#231f20","x":8.367,"y":33.885,"w":1.8359999999999999,"l":62.156},{"oc":"#231f20","x":8.367,"y":32.032,"w":1.8359999999999999,"l":62.156},{"oc":"#231f20","x":8.324,"y":36.125,"w":1.8359999999999999,"l":62.071},{"oc":"#231f20","x":8.324,"y":35.125,"w":1.8359999999999999,"l":62.071},{"oc":"#231f20","x":8.324,"y":38.292,"w":1.8359999999999999,"l":62.071},{"oc":"#231f20","x":8.324,"y":37.292,"w":1.8359999999999999,"l":62.071},{"oc":"#231f20","x":8.239,"y":41.133,"w":1.8359999999999999,"l":62.241},{"oc":"#231f20","x":8.239,"y":39.762,"w":1.8359999999999999,"l":62.241},{"oc":"#231f20","x":8.24,"y":43.386,"w":1.8359999999999999,"l":62.583},{"oc":"#231f20","x":8.24,"y":42.364,"w":1.8359999999999999,"l":62.583},{"oc":"#231f20","x":16.888,"y":45.912,"w":1.8359999999999999,"l":50.443},{"oc":"#231f20","x":16.888,"y":44.463,"w":1.8359999999999999,"l":50.443},{"oc":"#231f20","x":79.907,"y":8.889,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":7.736,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":11.847,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":10.695,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":14.597,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":13.445,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":17.222,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":16.07,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":19.931,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":79.907,"y":18.778,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":87.985,"y":31.337,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":87.985,"y":30.184,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":33.868,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":32.716,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":36.285,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":35.132,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":38.66,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":37.507,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":41.285,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":40.132,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":43.577,"w":1.8359999999999999,"l":5.301},{"oc":"#231f20","x":82.858,"y":42.424,"w":1.8359999999999999,"l":5.301}],"VLines":[{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":33.004,"y":22.5,"w":0.8639999999999999,"l":8.923},{"oc":"#231f20","x":35.032,"y":8.961,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":65.996,"y":5.998,"w":1.8359999999999999,"l":2.925},{"oc":"#231f20","x":5.977,"y":5.998,"w":1.8359999999999999,"l":2.925},{"oc":"#231f20","x":89.31,"y":21.6,"w":0.8639999999999999,"l":1.877},{"oc":"#231f20","x":72.802,"y":24.525,"w":0.8639999999999999,"l":0.824},{"oc":"#231f20","x":72.802,"y":27.977,"w":0.8639999999999999,"l":0.9},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":80.24,"y":29.322,"w":1.8359999999999999,"l":2.102},{"oc":"#231f20","x":47.236,"y":29.322,"w":1.8359999999999999,"l":2.102},{"oc":"#231f20","x":6.188,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":6.187,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":82.913,"y":2.173,"w":0.8639999999999999,"l":2.326},{"oc":"#231f20","x":18.563,"y":2.173,"w":0.8639999999999999,"l":2.326},{"oc":"#231f20","x":91.347,"y":25.652,"w":1.8359999999999999,"l":2.072},{"oc":"#231f20","x":48.731,"y":25.652,"w":1.8359999999999999,"l":2.072},{"oc":"#231f20","x":84.372,"y":22.804,"w":1.8359999999999999,"l":1.391},{"oc":"#231f20","x":48.66,"y":22.804,"w":1.8359999999999999,"l":1.391},{"oc":"#231f20","x":66.017,"y":10.011,"w":1.8359999999999999,"l":1.478},{"oc":"#231f20","x":5.998,"y":10.011,"w":1.8359999999999999,"l":1.478},{"oc":"#231f20","x":66.703,"y":12.771,"w":1.8359999999999999,"l":1.832},{"oc":"#231f20","x":6,"y":12.771,"w":1.8359999999999999,"l":1.832},{"oc":"#231f20","x":67.389,"y":18.228,"w":1.8359999999999999,"l":1.418},{"oc":"#231f20","x":6.002,"y":18.228,"w":1.8359999999999999,"l":1.418},{"oc":"#231f20","x":67.389,"y":20.978,"w":1.8359999999999999,"l":1.418},{"oc":"#231f20","x":6.002,"y":20.978,"w":1.8359999999999999,"l":1.418},{"oc":"#231f20","x":66.574,"y":15.904,"w":1.8359999999999999,"l":1.13},{"oc":"#231f20","x":5.957,"y":15.904,"w":1.8359999999999999,"l":1.13},{"oc":"#231f20","x":70.524,"y":32.032,"w":1.8359999999999999,"l":1.853},{"oc":"#231f20","x":8.367,"y":32.032,"w":1.8359999999999999,"l":1.853},{"oc":"#231f20","x":70.395,"y":35.125,"w":1.8359999999999999,"l":1},{"oc":"#231f20","x":8.324,"y":35.125,"w":1.8359999999999999,"l":1},{"oc":"#231f20","x":70.395,"y":37.292,"w":1.8359999999999999,"l":1},{"oc":"#231f20","x":8.324,"y":37.292,"w":1.8359999999999999,"l":1},{"oc":"#231f20","x":70.48,"y":39.762,"w":1.8359999999999999,"l":1.371},{"oc":"#231f20","x":8.239,"y":39.762,"w":1.8359999999999999,"l":1.371},{"oc":"#231f20","x":70.823,"y":42.364,"w":1.8359999999999999,"l":1.022},{"oc":"#231f20","x":8.24,"y":42.364,"w":1.8359999999999999,"l":1.022},{"oc":"#231f20","x":67.331,"y":44.463,"w":1.8359999999999999,"l":1.449},{"oc":"#231f20","x":16.888,"y":44.463,"w":1.8359999999999999,"l":1.449},{"oc":"#231f20","x":85.208,"y":7.736,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":79.907,"y":7.736,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":85.208,"y":10.695,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":79.907,"y":10.695,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":85.208,"y":13.445,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":79.907,"y":13.445,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":85.208,"y":16.07,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":79.907,"y":16.07,"w":1.8359999999999999,"l":1.153},{"oc":"#231f20","x":85.208,"y":18.778,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":79.907,"y":18.778,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":93.286,"y":30.184,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":87.985,"y":30.184,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":88.158,"y":32.716,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":82.858,"y":32.716,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":88.158,"y":35.132,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":82.858,"y":35.132,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":88.158,"y":37.507,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":82.858,"y":37.507,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":88.158,"y":40.132,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":82.858,"y":40.132,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":88.158,"y":42.424,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":82.858,"y":42.424,"w":1.8359999999999999,"l":1.152},{"oc":"#231f20","x":35.032,"y":11.586,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":35.032,"y":14.774,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":35.032,"y":17.086,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":35.032,"y":19.836,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":36.966,"y":33.945,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":36.966,"y":36.195,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":36.966,"y":38.508,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":36.966,"y":41.258,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":36.966,"y":43.383,"w":0.8639999999999999,"l":0.752}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#231f20","x":6.358,"y":9.938,"w":24.263499999999986,"clr":-1,"A":"left","R":[{"T":"When%20did%20the%20student%20receive%20the%20high%20school%20diploma%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.358,"y":12.489,"w":23.623000000000015,"clr":-1,"A":"left","R":[{"T":"When%20did%20the%20student%20enroll%20in%20a%20qualifying%20institution%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.358,"y":13.051,"w":2.1108000000000002,"clr":-1,"A":"left","R":[{"T":"(See","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.783,"y":13.051,"w":4.443,"clr":-1,"A":"left","R":[{"T":"Qualifying","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.433,"y":13.051,"w":3.8876,"clr":-1,"A":"left","R":[{"T":"Colleges","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.325,"y":13.051,"w":0.8884000000000001,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.07,"y":13.051,"w":5.163399999999999,"clr":-1,"A":"left","R":[{"T":"Universities","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.729,"y":13.051,"w":1.1661000000000001,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.854,"y":13.051,"w":1.8881000000000001,"clr":-1,"A":"left","R":[{"T":"com","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.464,"y":13.051,"w":2.1710000000000003,"clr":-1,"A":"left","R":[{"T":"plete","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.992,"y":13.051,"w":1.5579999999999998,"clr":-1,"A":"left","R":[{"T":"list)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.662,"y":13.051,"w":0.7792000000000001,"clr":-1,"A":"left","R":[{"T":"Is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.255,"y":13.051,"w":1.3918000000000004,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.691,"y":13.051,"w":4.674,"clr":-1,"A":"left","R":[{"T":"enrollment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.665,"y":13.051,"w":2.5596,"clr":-1,"A":"left","R":[{"T":"within","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.71,"y":13.051,"w":1.1132000000000002,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.766,"y":13.051,"w":3.2826,"clr":-1,"A":"left","R":[{"T":"months","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.358,"y":13.614,"w":2.0060000000000002,"clr":-1,"A":"left","R":[{"T":"after","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.782,"y":20.872,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":51.7,"y":20.872,"w":2.4390000000000005,"clr":-1,"A":"left","R":[{"T":"credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.461,"y":20.872,"w":2.496,"clr":-1,"A":"left","R":[{"T":"hours","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.297,"y":20.872,"w":0.887,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.907,"y":20.872,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.358,"y":21.435,"w":7.882799999999999,"clr":-1,"A":"left","R":[{"T":"equivalent%20hours%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.04,"y":25.633,"w":1.4985000000000002,"clr":-1,"A":"left","R":[{"T":"Did","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.5,"y":25.633,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.822,"y":25.633,"w":3.2765000000000004,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.749,"y":25.633,"w":2.777000000000001,"clr":-1,"A":"left","R":[{"T":"attend","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.986,"y":25.633,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.684,"y":25.633,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"but","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68,"y":25.633,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.329,"y":25.633,"w":1.9440000000000004,"clr":-1,"A":"left","R":[{"T":"both","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.406,"y":25.633,"w":2.8870000000000005,"clr":-1,"A":"left","R":[{"T":"Spring","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.78,"y":25.633,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":80.491,"y":25.633,"w":1.6090000000000002,"clr":-1,"A":"left","R":[{"T":"Fall","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.109,"y":25.633,"w":4.1080000000000005,"clr":-1,"A":"left","R":[{"T":"semester","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.196,"y":25.633,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"at","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.04,"y":26.196,"w":4.5516000000000005,"clr":-1,"A":"left","R":[{"T":"Converse%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.637,"y":26.196,"w":3.6072,"clr":-1,"A":"left","R":[{"T":"Erskine%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.936,"y":26.196,"w":0.8878,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.462,"y":26.196,"w":3.496800000000001,"clr":-1,"A":"left","R":[{"T":"Wofford","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":71.578,"y":26.196,"w":1.6662,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":75.179,"y":26.196,"w":4.0522,"clr":-1,"A":"left","R":[{"T":"complete","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":82.075,"y":26.196,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":85.3,"y":26.196,"w":3.6632000000000007,"clr":-1,"A":"left","R":[{"T":"required","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.04,"y":26.758,"w":7.882799999999999,"clr":-1,"A":"left","R":[{"T":"equivalent%20hours%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.298,"y":7.989000000000001,"w":10.006300000000003,"clr":-1,"A":"left","R":[{"T":"is%20a%20legal%20SC%20resident%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.721,"y":44.826,"w":4.908,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE%20","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":32.207,"y":44.826,"w":2.117,"clr":-1,"A":"left","R":[{"T":"FOR","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":38.022,"y":44.826,"w":10.594000000000001,"clr":-1,"A":"left","R":[{"T":"%20TUITION%20TAX%20CREDIT","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":9.217,"y":31.839,"w":1.5545000000000002,"clr":-1,"A":"left","R":[{"T":"Are","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.921,"y":31.839,"w":0.4995,"clr":-1,"A":"left","R":[{"T":"y","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.604,"y":31.839,"w":1.1110000000000002,"clr":-1,"A":"left","R":[{"T":"ou","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.705,"y":31.839,"w":3.6630000000000003,"clr":-1,"A":"left","R":[{"T":"claiming","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.337,"y":31.839,"w":2.442,"clr":-1,"A":"left","R":[{"T":"credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.287,"y":31.839,"w":2.4985000000000004,"clr":-1,"A":"left","R":[{"T":"hours","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.298,"y":31.839,"w":3.1100000000000003,"clr":-1,"A":"left","R":[{"T":"earned","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.165,"y":31.839,"w":1.9985000000000004,"clr":-1,"A":"left","R":[{"T":"after","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.485,"y":31.839,"w":0.5555000000000001,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.808,"y":31.839,"w":2.4425000000000003,"clr":-1,"A":"left","R":[{"T":"years","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.76,"y":31.839,"w":1.9980000000000002,"clr":-1,"A":"left","R":[{"T":"from","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.085,"y":31.839,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.555,"y":31.839,"w":1.9440000000000004,"clr":-1,"A":"left","R":[{"T":"date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.806,"y":31.839,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.276,"y":31.839,"w":3.2765000000000004,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.377,"y":31.839,"w":1.6085,"clr":-1,"A":"left","R":[{"T":"first","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.17,"y":31.839,"w":3.553000000000001,"clr":-1,"A":"left","R":[{"T":"enrolled","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":66.636,"y":31.839,"w":0.7770000000000001,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.277,"y":31.839,"w":0.5555000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.214,"y":32.402,"w":4.218,"clr":-1,"A":"left","R":[{"T":"qualifying","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.861,"y":32.402,"w":3.1638,"clr":-1,"A":"left","R":[{"T":"college","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.055,"y":32.402,"w":0.8878,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.098,"y":32.402,"w":4.7724,"clr":-1,"A":"left","R":[{"T":"university%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.523,"y":32.402,"w":3.3304,"clr":-1,"A":"left","R":[{"T":"Answer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.944,"y":32.402,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":38.815,"y":32.402,"w":0.5004,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.323,"y":32.402,"w":4.282,"clr":-1,"A":"left","R":[{"T":"additional","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.044,"y":32.402,"w":1.8898,"clr":-1,"A":"left","R":[{"T":"time","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.462,"y":32.402,"w":1.7786,"clr":-1,"A":"left","R":[{"T":"was","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.734,"y":32.402,"w":3.3924000000000003,"clr":-1,"A":"left","R":[{"T":"granted","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.233,"y":32.402,"w":1.6686,"clr":-1,"A":"left","R":[{"T":"due","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.355,"y":32.402,"w":0.8344,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":64.319,"y":32.402,"w":3.4464,"clr":-1,"A":"left","R":[{"T":"medical","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.214,"y":32.964,"w":4.434,"clr":-1,"A":"left","R":[{"T":"necessity.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.214,"y":34.989,"w":1.9985000000000002,"clr":-1,"A":"left","R":[{"T":"Was","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.357,"y":34.989,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.654,"y":34.989,"w":3.2765000000000004,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.569,"y":34.989,"w":0.7770000000000001,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.025,"y":34.989,"w":2.9985,"clr":-1,"A":"left","R":[{"T":"default","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.549,"y":34.989,"w":1.1110000000000002,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.467,"y":34.989,"w":0.5555000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.617,"y":34.989,"w":3.2765000000000004,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.532,"y":34.989,"w":2.4435000000000002,"clr":-1,"A":"left","R":[{"T":"loan%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.292,"y":34.989,"w":3.331000000000001,"clr":-1,"A":"left","R":[{"T":"Answer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.28,"y":34.989,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":44.718,"y":34.989,"w":0.5002,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.792,"y":34.989,"w":1.3903,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":48.092,"y":34.989,"w":1.8904,"clr":-1,"A":"left","R":[{"T":"loan","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.087,"y":34.989,"w":1.7783,"clr":-1,"A":"left","R":[{"T":"was","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.925,"y":34.989,"w":1.8904,"clr":-1,"A":"left","R":[{"T":"paid","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.921,"y":34.989,"w":0.7782,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.378,"y":34.989,"w":1.5565,"clr":-1,"A":"left","R":[{"T":"full.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.862,"y":42.266,"w":15.219399999999998,"clr":-1,"A":"left","R":[{"T":"ted%20misdemeanor%20during%20the%20year%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":90.283,"y":7.539,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":88.563,"y":8.102,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":9.239,"y":39.584,"w":1.7759,"clr":-1,"A":"left","R":[{"T":"Has","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.075,"y":39.584,"w":1.3879000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.371,"y":39.584,"w":3.2750999999999997,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.284,"y":39.584,"w":1.9422000000000001,"clr":-1,"A":"left","R":[{"T":"ever","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.358,"y":39.584,"w":2.2212,"clr":-1,"A":"left","R":[{"T":"been","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.812,"y":39.584,"w":2.4985,"clr":-1,"A":"left","R":[{"T":"found","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.645,"y":39.584,"w":2.3298,"clr":-1,"A":"left","R":[{"T":"guilty","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.247,"y":39.584,"w":0.8326,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.783,"y":39.584,"w":1.6099,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.395,"y":39.584,"w":3.9956999999999994,"clr":-1,"A":"left","R":[{"T":"felonies%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.303,"y":39.584,"w":3.3298,"clr":-1,"A":"left","R":[{"T":"Answer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":48.294,"y":39.584,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":50.732,"y":39.584,"w":0.4988,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.806,"y":39.584,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.102,"y":39.584,"w":2.8304000000000005,"clr":-1,"A":"left","R":[{"T":"record","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.401,"y":39.584,"w":1.6102,"clr":-1,"A":"left","R":[{"T":"has","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.014,"y":39.584,"w":2.2216,"clr":-1,"A":"left","R":[{"T":"been","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.239,"y":40.146,"w":4.657400000000001,"clr":-1,"A":"left","R":[{"T":"expunged.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.285,"y":7.314,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":70.285,"y":15.639,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":70.285,"y":18.263,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":70.285,"y":10.163,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":70.285,"y":12.962,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":92.968,"y":37.167,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":91.248,"y":37.73,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":90.283,"y":10.239,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":88.563,"y":10.802,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":92.968,"y":32.289,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":91.248,"y":32.852,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":90.283,"y":12.962,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":88.563,"y":13.524,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":90.283,"y":15.716000000000001,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":88.563,"y":16.278,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":90.283,"y":18.416,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":88.563,"y":18.978,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":92.968,"y":41.892,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":91.248,"y":42.455,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":92.968,"y":34.688,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":91.248,"y":35.25,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":70.285,"y":20.513,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":92.968,"y":39.642,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":91.248,"y":40.205,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":72.413,"y":37.014,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":72.624,"y":41.892,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":72.624,"y":32.213,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":72.624,"y":34.616,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":37.565,"y":16.989,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":37.565,"y":8.889,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":37.565,"y":11.589,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":67.81,"y":27.938,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":37.565,"y":14.739,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":39.619,"y":41.141,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":37.565,"y":19.689,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":67.81,"y":24.414,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":39.619,"y":33.864,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":38.592,"y":22.389,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":38.592,"y":25.913,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":38.592,"y":29.063,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":29.311,"y":22.691,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":39.619,"y":43.391,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":39.619,"y":36.114,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":39.619,"y":38.441,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":48.925,"y":22.691,"w":1.4985000000000002,"clr":-1,"A":"left","R":[{"T":"Did","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.473,"y":22.691,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.869,"y":22.691,"w":3.2765000000000004,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.87,"y":22.691,"w":2.777000000000001,"clr":-1,"A":"left","R":[{"T":"attend","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":63.181,"y":22.691,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"one","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.953,"y":22.691,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"but","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.356,"y":22.691,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.747,"y":22.691,"w":1.9440000000000004,"clr":-1,"A":"left","R":[{"T":"both","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.911,"y":22.691,"w":2.8870000000000005,"clr":-1,"A":"left","R":[{"T":"Spring","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.371,"y":22.691,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.144,"y":22.691,"w":1.6090000000000002,"clr":-1,"A":"left","R":[{"T":"Fall","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":48.925,"y":23.253,"w":4.1088000000000005,"clr":-1,"A":"left","R":[{"T":"semester","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.707,"y":23.253,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.099,"y":23.253,"w":4.053800000000001,"clr":-1,"A":"left","R":[{"T":"complete","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.799,"y":23.253,"w":0.8332000000000002,"clr":-1,"A":"left","R":[{"T":"at","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.053,"y":23.253,"w":2.1100000000000003,"clr":-1,"A":"left","R":[{"T":"least","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.067,"y":23.253,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":74.703,"y":23.253,"w":2.4366000000000008,"clr":-1,"A":"left","R":[{"T":"credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.167,"y":23.253,"w":3.0486000000000004,"clr":-1,"A":"left","R":[{"T":"hours%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.624,"y":39.642,"w":2.0100000000000002,"clr":-1,"A":"left","R":[{"T":"YES","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":10.888,"y":46.383,"w":5.759999999999999,"clr":-1,"A":"left","R":[{"T":"33501024","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":9.44,"y":13.614,"w":12.8866,"clr":-1,"A":"left","R":[{"T":"graduating%20from%20high%20school%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.604,"y":29.216,"w":1.4988000000000001,"clr":-1,"A":"left","R":[{"T":"Did","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.399,"y":29.216,"w":0.2776,"clr":-1,"A":"left","R":[{"T":"t","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.789,"y":29.216,"w":1.1112000000000002,"clr":-1,"A":"left","R":[{"T":"he","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.037,"y":29.216,"w":3.2772000000000006,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.299,"y":29.216,"w":4.053800000000001,"clr":-1,"A":"left","R":[{"T":"complete","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":64.628,"y":29.216,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.272,"y":29.216,"w":3.6648000000000005,"clr":-1,"A":"left","R":[{"T":"required","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.052,"y":29.216,"w":4.554,"clr":-1,"A":"left","R":[{"T":"equivalent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.604,"y":29.778,"w":2.4975,"clr":-1,"A":"left","R":[{"T":"hours","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.814,"y":29.778,"w":1.6652000000000002,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.866,"y":29.778,"w":2.1652,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.621,"y":29.778,"w":2.2212,"clr":-1,"A":"left","R":[{"T":"been","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.446,"y":29.778,"w":4.1634,"clr":-1,"A":"left","R":[{"T":"approved","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.961,"y":29.778,"w":1.0546,"clr":-1,"A":"left","R":[{"T":"by","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":71.177,"y":29.778,"w":1.3879000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.834,"y":29.778,"w":3.992999999999999,"clr":-1,"A":"left","R":[{"T":"Disability","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.635,"y":29.738,"w":1.4956,"clr":-1,"A":"left","R":[{"T":"NO","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.755,"y":29.665,"w":2.108,"clr":-1,"A":"left","R":[{"T":"NOT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":94.035,"y":30.228,"w":4.6288,"clr":-1,"A":"left","R":[{"T":"ELIGIBLE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":6.349,"y":6.301,"w":9.907800000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20A%20SC%20high%20school%3F%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.212,"y":7.426,"w":0.6663,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.573,"y":7.426,"w":5.1053,"clr":-1,"A":"left","R":[{"T":"preparatory","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.072,"y":7.426,"w":1.8872,"clr":-1,"A":"left","R":[{"T":"high","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.138,"y":7.426,"w":2.8857999999999997,"clr":-1,"A":"left","R":[{"T":"school","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.589,"y":7.426,"w":3.2191,"clr":-1,"A":"left","R":[{"T":"outside","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.485,"y":7.426,"w":1.3876,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.831000000000003,"y":7.426,"w":2.2745,"clr":-1,"A":"left","R":[{"T":"while","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.414,"y":7.426,"w":2.4425,"clr":-1,"A":"left","R":[{"T":"being","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.236,"y":7.426,"w":0.5553,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.448,"y":7.426,"w":4.7197000000000005,"clr":-1,"A":"left","R":[{"T":"dependent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.419,"y":7.426,"w":0.8326,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.016,"y":7.426,"w":0.5553,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.228,"y":7.426,"w":2.8308,"clr":-1,"A":"left","R":[{"T":"parent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.586,"y":7.426,"w":0.8876000000000001,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.258,"y":7.426,"w":3.8853999999999997,"clr":-1,"A":"left","R":[{"T":"guardian","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.073,"y":7.426,"w":1.8319,"clr":-1,"A":"left","R":[{"T":"who","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.916,"y":4.807,"w":3.382,"clr":-1,"A":"left","R":[{"T":"STUDE","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":34.918,"y":4.807,"w":20.559800000000003,"clr":-1,"A":"left","R":[{"T":"NT%20ELIGIBILITY%20FOR%20TUITION%20TAX%20CREDIT.","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":83.936,"y":22.992,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%97%84","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":33.963,"y":9.3,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":86.734,"y":2.058,"w":2.2775000000000003,"clr":-1,"A":"left","R":[{"T":"I-319","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":85.113,"y":2.805,"w":5.780000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%208%2F8%2F13)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":87.563,"y":3.556,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"3350","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.766,"y":1.9140000000000001,"w":3.2739999999999996,"clr":-1,"A":"left","R":[{"T":"STATE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":47.286,"y":1.9140000000000001,"w":10.985599999999998,"clr":-1,"A":"left","R":[{"T":"%20OF%20SOUTH%20CAROLINA","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":40.761,"y":2.585,"w":3.457,"clr":-1,"A":"left","R":[{"T":"DEPAR","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":46.687,"y":2.585,"w":2.8426,"clr":-1,"A":"left","R":[{"T":"TMEN","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":51.567,"y":2.584,"w":7.418799999999999,"clr":-1,"A":"left","R":[{"T":"T%20OF%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":11.037,"y":2.148,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":6.346,"y":5.739,"w":31.860199999999978,"clr":-1,"A":"left","R":[{"T":"Did%20the%20student%20receive%20a%20high%20school%20diploma%20from%20one%20of%20the%20following%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.35,"y":6.864,"w":34.36320000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20A%20high%20school%20home%20school%20program%20in%20SC%20in%20the%20manner%20required%20by%20law%3F%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.358,"y":10.5,"w":27.549400000000013,"clr":-1,"A":"left","R":[{"T":"Did%20the%20student%20receive%20this%20diploma%20during%20or%20after%20May%202008%3F","S":-1,"TS":[0,11,0,0]}]},{"x":76.807,"y":7.813000000000001,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":80.228,"y":7.813000000000001,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":80.245,"y":10.771,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":80.245,"y":13.521,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":80.245,"y":16.146,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":80.245,"y":18.854,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":88.323,"y":30.261,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":83.195,"y":32.792,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":83.195,"y":35.209,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":83.195,"y":37.584,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":83.195,"y":40.209,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"x":83.195,"y":42.5,"w":27.230000000000004,"clr":0,"A":"left","R":[{"T":"STOP","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":6.358,"y":15.940999999999999,"w":26.958000000000006,"clr":-1,"A":"left","R":[{"T":"Did%20the%20student%20qualify%20for%20in-state%20tuition%20during%20the%20tax%20year%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.358,"y":18.038,"w":1.9982000000000002,"clr":-1,"A":"left","R":[{"T":"Was","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.613,"y":18.038,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.026,"y":18.038,"w":3.2758000000000003,"clr":-1,"A":"left","R":[{"T":"student","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.051,"y":18.038,"w":4.107600000000001,"clr":-1,"A":"left","R":[{"T":"admitted%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.211,"y":18.038,"w":3.5522000000000005,"clr":-1,"A":"left","R":[{"T":"enrolled","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.613,"y":18.038,"w":1.6662,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.41,"y":18.038,"w":4.106,"clr":-1,"A":"left","R":[{"T":"classified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.594,"y":18.038,"w":1.0548,"clr":-1,"A":"left","R":[{"T":"as","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.55,"y":18.038,"w":0.5554,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.813,"y":18.038,"w":3.1094,"clr":-1,"A":"left","R":[{"T":"degree","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.605,"y":18.038,"w":3.4418,"clr":-1,"A":"left","R":[{"T":"seeking","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.858,"y":18.038,"w":6.4962,"clr":-1,"A":"left","R":[{"T":"undergraduate","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.326,"y":18.038,"w":0.8878,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.047,"y":18.038,"w":1.7762,"clr":-1,"A":"left","R":[{"T":"was","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.358,"y":18.6,"w":33.49260000000002,"clr":-1,"A":"left","R":[{"T":"the%20student%20enrolled%20in%20a%20certificate%20or%20diploma%20program%20of%20at%20least%20one%20year%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.604,"y":30.341,"w":19.679700000000004,"clr":-1,"A":"left","R":[{"T":"Service%20Provider%20at%20the%20qualifying%20institution%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.217,"y":37.203,"w":40.367999999999974,"clr":-1,"A":"left","R":[{"T":"Did%20the%20student%20receive%20a%20LIFE%20or%20Palmetto%20Fellows%20Scholarship%20for%20all%20semesters%20attended%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.217,"y":42.266,"w":24.445800000000002,"clr":-1,"A":"left","R":[{"T":"Was%20the%20student%20found%20guilty%20of%20any%20alcohol%20or%20drug%20rela","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.358,"y":20.873,"w":1.9985000000000002,"clr":-1,"A":"left","R":[{"T":"How","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.491,"y":20.873,"w":2.443,"clr":-1,"A":"left","R":[{"T":"many","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.249,"y":20.873,"w":2.442,"clr":-1,"A":"left","R":[{"T":"credit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.014,"y":20.873,"w":2.4985000000000004,"clr":-1,"A":"left","R":[{"T":"hours","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.852,"y":20.873,"w":2.165,"clr":-1,"A":"left","R":[{"T":"were","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.221,"y":20.873,"w":4.608500000000001,"clr":-1,"A":"left","R":[{"T":"completed","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.97,"y":20.873,"w":0.7770000000000001,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.426,"y":20.873,"w":2.7775000000000007,"clr":-1,"A":"left","R":[{"T":"2013%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.407,"y":20.873,"w":0.777,"clr":-1,"A":"left","R":[{"T":"Is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.861,"y":20.873,"w":0.499,"clr":-1,"A":"left","R":[{"T":"it","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.935,"y":20.873,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"at","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.471,"y":20.873,"w":2.1095,"clr":-1,"A":"left","R":[{"T":"least","S":-1,"TS":[0,11,0,0]}]},{"x":76.807,"y":10.688,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":76.807,"y":13.438,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":76.807,"y":16.125,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":76.807,"y":18.75,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":85.444,"y":30.203,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":79.557,"y":32.75,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":79.557,"y":35.125,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":79.557,"y":37.5,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":79.557,"y":40.188,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"x":79.557,"y":42.375,"w":9.9,"clr":0,"A":"left","R":[{"T":"%E2%96%BA","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":32.503,"y":22.899,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%97%84","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":32.503,"y":26.524,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%97%84","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":32.503,"y":29.711,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%97%84","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":33.963,"y":11.925,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":33.963,"y":15.112,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":33.963,"y":17.425,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":33.963,"y":20.175,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":35.897,"y":34.284,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":35.897,"y":36.534,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":35.897,"y":38.846,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":35.897,"y":41.597,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":35.897,"y":43.722,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":31.987000000000002,"y":31.253,"w":0.9886,"clr":-1,"A":"left","R":[{"T":"%E2%96%BC","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":37.395,"y":3.5119999999999996,"w":12.780000000000001,"clr":-1,"A":"left","R":[{"T":"2013%20TUITION%20TAX%20CREDIT","S":11,"TS":[0,18,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESCR","EN":0},"TI":225,"AM":1024,"x":43.031,"y":1.146,"w":18.621,"h":0.98},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DIPLOMA","EN":0},"TI":226,"AM":0,"x":40.748,"y":10.138,"w":19.534,"h":0.833,"TU":"When did the student receive the high school diploma?","MV":"mm/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ENROLL","EN":0},"TI":227,"AM":0,"x":40.144,"y":12.79,"w":20.775,"h":0.833,"TU":"When did the student enroll in a qualifying institution?","MV":"mm/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDHOURS","EN":0},"TI":228,"AM":0,"x":36.568,"y":21.04,"w":5.737,"h":0.833,"TU":"How many credit hours were completed in 2013?"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.398,"y":8.266,"w":0.8639999999999999,"l":92.404},{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":11.137,"y":8.262,"w":0.8639999999999999,"l":82.913},{"oc":"#231f20","x":6.398,"y":22.518,"w":0.756,"l":92.602},{"oc":"#231f20","x":6.398,"y":16.515,"w":0.756,"l":92.602},{"oc":"#231f20","x":6.398,"y":18.014,"w":0.756,"l":92.602},{"oc":"#231f20","x":6.398,"y":19.517,"w":0.756,"l":92.602},{"oc":"#231f20","x":6.398,"y":21.02,"w":0.756,"l":92.602},{"oc":"#231f20","x":6.188,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.398,"y":9.796,"w":1.08,"l":92.602},{"oc":"#231f20","x":6.398,"y":8.248,"w":1.08,"l":92.602},{"oc":"#231f20","x":6.398,"y":9.796,"w":3.024,"l":92.602},{"oc":"#231f20","x":6.398,"y":14.702,"w":3.024,"l":92.602},{"oc":"#231f20","x":83.742,"y":33.003,"w":0.8639999999999999,"l":14.293},{"oc":"#231f20","x":83.742,"y":34.502,"w":0.8639999999999999,"l":14.293},{"oc":"#231f20","x":83.754,"y":38.993,"w":0.8639999999999999,"l":14.305},{"oc":"#231f20","x":83.804,"y":41.994,"w":0.8639999999999999,"l":14.293},{"oc":"#231f20","x":83.804,"y":45.144,"w":0.8639999999999999,"l":13.65},{"oc":"#231f20","x":83.779,"y":40.491,"w":0.8639999999999999,"l":14.293},{"oc":"#231f20","x":82.987,"y":45.302,"w":0.8639999999999999,"l":15.11},{"oc":"#231f20","x":82.987,"y":43.727,"w":0.8639999999999999,"l":15.11},{"oc":"#231f20","x":83.804,"y":43.493,"w":0.8639999999999999,"l":14.293},{"oc":"#231f20","x":6.398,"y":25.101,"w":3.024,"l":92.602},{"oc":"#231f20","x":49.29,"y":26.091,"w":1.08,"l":47.174},{"oc":"#231f20","x":49.29,"y":27.752,"w":1.08,"l":47.186},{"oc":"#231f20","x":49.29,"y":25.488,"w":1.08,"l":47.186},{"oc":"#231f20","x":49.29,"y":26.919,"w":0.8639999999999999,"l":47.174},{"oc":"#231f20","x":6.398,"y":24.075,"w":3.024,"l":92.602}],"VLines":[{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":6.188,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":75.834,"y":8.248,"w":1.08,"l":1.548},{"oc":"#231f20","x":99,"y":8.248,"w":1.08,"l":1.548},{"oc":"#231f20","x":6.398,"y":8.248,"w":1.08,"l":1.548},{"oc":"#231f20","x":98.097,"y":43.727,"w":0.8639999999999999,"l":1.575},{"oc":"#231f20","x":82.987,"y":43.727,"w":0.8639999999999999,"l":1.575},{"oc":"#231f20","x":96.476,"y":25.488,"w":1.08,"l":2.263},{"oc":"#231f20","x":49.29,"y":25.488,"w":1.08,"l":2.263},{"oc":"#231f20","x":49.29,"y":26.091,"w":1.08,"l":1.66},{"oc":"#231f20","x":86.056,"y":25.488,"w":1.08,"l":2.263},{"oc":"#231f20","x":58.472,"y":25.488,"w":1.08,"l":2.263},{"oc":"#231f20","x":67.667,"y":25.488,"w":1.08,"l":2.263},{"oc":"#231f20","x":76.861,"y":25.488,"w":1.08,"l":2.263},{"oc":"#231f20","x":18.563,"y":5.4,"w":0.8639999999999999,"l":2.849},{"oc":"#231f20","x":82.913,"y":5.4,"w":0.8639999999999999,"l":2.849},{"oc":"#231f20","x":22.3,"y":2.327,"w":1.08,"l":1.35}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":0,"y":49.5,"w":0.723,"h":0.263,"clr":-1}],"Texts":[{"oc":"#231f20","x":87.613,"y":5.559,"w":2.2775000000000003,"clr":-1,"A":"left","R":[{"T":"I-319","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":85.979,"y":6.311,"w":5.780000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%208%2F8%2F13)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":88.429,"y":7.057,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"3350","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.036,"y":2.148,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":33.459,"y":5.951,"w":12.780000000000001,"clr":-1,"A":"left","R":[{"T":"2013%20TUITION%20TAX%20CREDIT","S":-1,"TS":[0,19.5,1,0]}]},{"oc":"#231f20","x":6.148,"y":17.849,"w":2.6673999999999998,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.207,"y":17.849,"w":0.8342,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.743,"y":17.849,"w":3.9469000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.565,"y":17.848,"w":3.3907,"clr":-1,"A":"left","R":[{"T":"College","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.628,"y":17.848,"w":0.8892,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.239,"y":17.848,"w":4.39,"clr":-1,"A":"left","R":[{"T":"University","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.693,"y":17.848,"w":0.7782,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.151,"y":17.848,"w":2.5564999999999998,"clr":-1,"A":"left","R":[{"T":"which","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.067,"y":17.848,"w":0.7782,"clr":-1,"A":"left","R":[{"T":"st","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.128,"y":17.848,"w":2.5000000000000004,"clr":-1,"A":"left","R":[{"T":"udent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.975,"y":17.848,"w":1.7768000000000002,"clr":-1,"A":"left","R":[{"T":"was","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.812,"y":17.848,"w":1.609,"clr":-1,"A":"left","R":[{"T":"first","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.42,"y":17.848,"w":3.8314000000000004,"clr":-1,"A":"left","R":[{"T":"enrolled%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.572,"y":17.848,"w":5.165000000000001,"clr":-1,"A":"left","R":[{"T":"Month%2FYear","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.069,"y":17.848,"w":1.9420000000000002,"clr":-1,"A":"left","R":[{"T":"First","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.138,"y":17.848,"w":3.9424000000000006,"clr":-1,"A":"left","R":[{"T":"Enrolled%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":16.345,"w":2.665,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.204,"y":16.345,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.74,"y":16.345,"w":2.0540000000000003,"clr":-1,"A":"left","R":[{"T":"High","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.956,"y":16.345,"w":3.3315,"clr":-1,"A":"left","R":[{"T":"School%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.567,"y":16.345,"w":5.1690000000000005,"clr":-1,"A":"left","R":[{"T":"Month%2FYear","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.069,"y":16.345,"w":5.003,"clr":-1,"A":"left","R":[{"T":"Graduated%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":22.353,"w":2.6666,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.206,"y":22.353,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.742,"y":22.353,"w":3.945100000000001,"clr":-1,"A":"left","R":[{"T":"Qualified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.561,"y":22.353,"w":3.3893000000000004,"clr":-1,"A":"left","R":[{"T":"College","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.623,"y":22.353,"w":0.8888,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.233,"y":22.353,"w":4.388000000000001,"clr":-1,"A":"left","R":[{"T":"University","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.758,"y":22.353,"w":3.8912000000000013,"clr":-1,"A":"left","R":[{"T":"attended","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.51,"y":22.353,"w":2.7784000000000004,"clr":-1,"A":"left","R":[{"T":"during","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.732,"y":22.353,"w":1.3897000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.031,"y":22.353,"w":1.3337,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.255,"y":22.353,"w":2.2225,"clr":-1,"A":"left","R":[{"T":"year%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":19.351,"w":2.6666,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.206,"y":19.351,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.742,"y":19.351,"w":3.945100000000001,"clr":-1,"A":"left","R":[{"T":"Qualified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.561,"y":19.351,"w":3.3893000000000004,"clr":-1,"A":"left","R":[{"T":"College","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.623,"y":19.351,"w":0.8888,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.233,"y":19.351,"w":4.388000000000001,"clr":-1,"A":"left","R":[{"T":"University","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.758,"y":19.351,"w":3.8912000000000013,"clr":-1,"A":"left","R":[{"T":"attended","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.51,"y":19.351,"w":2.7784000000000004,"clr":-1,"A":"left","R":[{"T":"during","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.732,"y":19.351,"w":1.3897000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.031,"y":19.351,"w":1.3337,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.255,"y":19.351,"w":2.2225,"clr":-1,"A":"left","R":[{"T":"year%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":20.85,"w":2.6666,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.206,"y":20.85,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.742,"y":20.85,"w":3.945100000000001,"clr":-1,"A":"left","R":[{"T":"Qualified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.561,"y":20.85,"w":3.3893000000000004,"clr":-1,"A":"left","R":[{"T":"College","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.623,"y":20.85,"w":0.8888,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.233,"y":20.85,"w":4.388000000000001,"clr":-1,"A":"left","R":[{"T":"University","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.758,"y":20.85,"w":3.8912000000000013,"clr":-1,"A":"left","R":[{"T":"attended","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.51,"y":20.85,"w":2.7784000000000004,"clr":-1,"A":"left","R":[{"T":"during","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.732,"y":20.85,"w":1.3897000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.031,"y":20.85,"w":1.3337,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.255,"y":20.85,"w":2.2225,"clr":-1,"A":"left","R":[{"T":"year%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.974,"y":46.383,"w":5.759999999999999,"clr":-1,"A":"left","R":[{"T":"33502022","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":22.211,"y":6.67,"w":4.2782,"clr":-1,"A":"left","R":[{"T":"Complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.283,"y":6.67,"w":1.6677000000000002,"clr":-1,"A":"left","R":[{"T":"one","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":32.318,"y":6.67,"w":2.2785,"clr":-1,"A":"left","R":[{"T":"I-319","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.301,"y":6.67,"w":1.1667,"clr":-1,"A":"left","R":[{"T":"for","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":38.55,"y":6.67,"w":2.1676,"clr":-1,"A":"left","R":[{"T":"each","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":42.356,"y":6.67,"w":3.5572,"clr":-1,"A":"left","R":[{"T":"student.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":48.321,"y":6.67,"w":4.1661,"clr":-1,"A":"left","R":[{"T":"This%20form","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":55.215,"y":6.67,"w":2.3857999999999997,"clr":-1,"A":"left","R":[{"T":"must","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":59.349,"y":6.67,"w":1.1654,"clr":-1,"A":"left","R":[{"T":"be","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":61.587,"y":6.67,"w":4.1056,"clr":-1,"A":"left","R":[{"T":"attached","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":68.405,"y":6.67,"w":0.9423999999999999,"clr":-1,"A":"left","R":[{"T":"to","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":70.299,"y":6.67,"w":1.4975999999999998,"clr":-1,"A":"left","R":[{"T":"the","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":73.056,"y":6.67,"w":3.8854000000000006,"clr":-1,"A":"left","R":[{"T":"SC1040.","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":24.809,"y":7.314,"w":2.8245,"clr":-1,"A":"left","R":[{"T":"Check","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.623,"y":7.314,"w":7.0606,"clr":-1,"A":"left","R":[{"T":"www.sctax.org","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":40.996,"y":7.314,"w":1.1661000000000001,"clr":-1,"A":"left","R":[{"T":"for","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":43.244,"y":7.314,"w":5.6659999999999995,"clr":-1,"A":"left","R":[{"T":"SC%20Revenue","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":52.477,"y":7.314,"w":2.8322000000000003,"clr":-1,"A":"left","R":[{"T":"Ruling","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":57.313,"y":7.314,"w":0.5557000000000001,"clr":-1,"A":"left","R":[{"T":"%23","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":58.612,"y":7.314,"w":1.9998000000000002,"clr":-1,"A":"left","R":[{"T":"09-3","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":62.166,"y":7.314,"w":1.1661000000000001,"clr":-1,"A":"left","R":[{"T":"for","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.414,"y":7.314,"w":2.2768,"clr":-1,"A":"left","R":[{"T":"more","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":68.383,"y":7.314,"w":5.2204,"clr":-1,"A":"left","R":[{"T":"information.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.754,"y":8.097,"w":10.491200000000003,"clr":-1,"A":"left","R":[{"T":"NAME%20%20OF%20TAXPAYER","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":79.088,"y":7.989000000000001,"w":13.920900000000001,"clr":-1,"A":"left","R":[{"T":"%20SOCIAL%20SECURITY%20NUMBER","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#231f20","x":6.148,"y":9.974,"w":17.750900000000005,"clr":-1,"A":"left","R":[{"T":"You%20must%20select%20one%20of%20the%20following%3A","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":72.528,"y":13.366,"w":2.6498,"clr":-1,"A":"left","R":[{"T":"If%20yes%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.695,"y":12.7,"w":5.386500000000002,"clr":-1,"A":"left","R":[{"T":"Spring%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.695,"y":13.434,"w":4.113899999999999,"clr":-1,"A":"left","R":[{"T":"Fall%202013","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":34.741,"y":10.932,"w":12.171800000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20Legal%20Guardian%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":24.144,"w":17.518999999999995,"clr":-1,"A":"left","R":[{"T":"Credit%20Hours%20and%20Tuition%20Information","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":6.148,"y":28.271,"w":12.407200000000003,"clr":-1,"A":"left","R":[{"T":"What%20qualifies%20as%20tuition%3F%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":6.148,"y":31.205,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":33.455,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.343,"y":32.064,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.343,"y":33.563,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.695,"y":31.951999999999998,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.695,"y":33.455,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":37.977,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":39.48,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":40.979,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":42.477,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":43.98,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":76.962,"y":37.977,"w":2.2487999999999997,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.021,"y":39.48,"w":3.7272000000000003,"clr":-1,"A":"left","R":[{"T":"Subtract","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.234,"y":39.48,"w":1.5576,"clr":-1,"A":"left","R":[{"T":"line","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":19.089,"y":39.48,"w":0.5564,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":20.392,"y":39.48,"w":2.0124,"clr":-1,"A":"left","R":[{"T":"from","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":23.944,"y":39.48,"w":0.5591,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":25.243,"y":39.48,"w":35.69969999999996,"clr":-1,"A":"left","R":[{"T":"...............................................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.021,"y":40.979,"w":3.3985999999999996,"clr":-1,"A":"left","R":[{"T":"Multiply","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":15.712,"y":40.979,"w":1.5608,"clr":-1,"A":"left","R":[{"T":"line","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":18.571,"y":40.979,"w":0.5572,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":19.872,"y":40.979,"w":1.0538,"clr":-1,"A":"left","R":[{"T":"by","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":21.938,"y":40.979,"w":1.9977,"clr":-1,"A":"left","R":[{"T":"25%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":25.477,"y":40.979,"w":0.6088,"clr":-1,"A":"left","R":[{"T":"(.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.426,"y":40.979,"w":1.4543000000000001,"clr":-1,"A":"left","R":[{"T":"25)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.129,"y":40.979,"w":29.234399999999944,"clr":-1,"A":"left","R":[{"T":"........................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":74.323,"y":40.979,"w":3.9340000000000015,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":34.562,"w":21.867200000000004,"clr":-1,"A":"left","R":[{"T":"What%20do%20I%20need%20to%20list%20as%20a%20scholarship%20grant%3F%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":6.148,"y":35.255,"w":1.7775000000000003,"clr":-1,"A":"left","R":[{"T":"You","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.335,"y":35.255,"w":2.165,"clr":-1,"A":"left","R":[{"T":"must","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":13.122,"y":35.255,"w":2.999,"clr":-1,"A":"left","R":[{"T":"deduct","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":18.228,"y":35.255,"w":1.6105000000000003,"clr":-1,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":21.162,"y":35.255,"w":5.051500000000001,"clr":-1,"A":"left","R":[{"T":"scholarship","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.448,"y":35.255,"w":0.8880000000000001,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":31.267,"y":35.255,"w":2.2765000000000004,"clr":-1,"A":"left","R":[{"T":"grant","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":35.255,"y":35.255,"w":2.1660000000000004,"clr":-1,"A":"left","R":[{"T":"used","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":39.059,"y":35.255,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":40.786,"y":35.255,"w":1.6105000000000003,"clr":-1,"A":"left","R":[{"T":"pay","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":43.719,"y":35.255,"w":3.7195,"clr":-1,"A":"left","R":[{"T":"qualified","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":49.954,"y":35.255,"w":2.6645000000000003,"clr":-1,"A":"left","R":[{"T":"tuition","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":54.547,"y":35.255,"w":2.8338000000000005,"clr":-1,"A":"left","R":[{"T":"before","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":59.397,"y":35.255,"w":4.7218,"clr":-1,"A":"left","R":[{"T":"calculating","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":67.167,"y":35.255,"w":1.3894000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":69.762,"y":35.255,"w":2.7216000000000005,"clr":-1,"A":"left","R":[{"T":"credit.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":74.859,"y":35.255,"w":5.2218,"clr":-1,"A":"left","R":[{"T":"Scholarship","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.401,"y":35.255,"w":2.7778000000000005,"clr":-1,"A":"left","R":[{"T":"grants","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":88.153,"y":35.255,"w":1.1116000000000001,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":90.319,"y":35.255,"w":1.3894000000000002,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":92.92,"y":35.255,"w":3.1666000000000003,"clr":-1,"A":"left","R":[{"T":"include","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":35.948,"w":2.7778000000000005,"clr":-1,"A":"left","R":[{"T":"grants","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.937,"y":35.948,"w":1.3894000000000002,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":13.575,"y":35.948,"w":2.1672000000000002,"clr":-1,"A":"left","R":[{"T":"used","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":17.405,"y":35.948,"w":0.8336000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":19.169,"y":35.948,"w":1.6114000000000002,"clr":-1,"A":"left","R":[{"T":"pay","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":22.142,"y":35.948,"w":3.7222000000000004,"clr":-1,"A":"left","R":[{"T":"qualified","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":28.405,"y":35.948,"w":2.9444000000000004,"clr":-1,"A":"left","R":[{"T":"tuition%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":33.453,"y":35.948,"w":3.2786000000000004,"clr":-1,"A":"left","R":[{"T":"student","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.343,"y":37.977,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.343,"y":39.48,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.343,"y":40.979,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.343,"y":42.477,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.343,"y":43.98,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.485,"y":37.977,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.485,"y":39.48,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.485,"y":40.979,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.485,"y":42.477,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.485,"y":43.98,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.021,"y":32.046,"w":2.1092,"clr":-1,"A":"left","R":[{"T":"(See","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":13.729,"y":32.046,"w":5.0485999999999995,"clr":-1,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":22.003,"y":32.046,"w":1.1649,"clr":-1,"A":"left","R":[{"T":"for","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":23.708,"y":32.046,"w":6.346999999999999,"clr":-1,"A":"left","R":[{"T":"Tuition%20Limit)","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":33.484,"y":32.046,"w":30.36959999999992,"clr":-1,"A":"left","R":[{"T":"............................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":89.271,"y":25.229,"w":2.2255000000000003,"clr":-1,"A":"left","R":[{"T":"Total","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":69.1,"y":25.229,"w":4.2265,"clr":-1,"A":"left","R":[{"T":"Fall%20Term","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.902,"y":25.229,"w":3.0595,"clr":-1,"A":"left","R":[{"T":"Interim","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.989,"y":25.233,"w":6.3911999999999995,"clr":-1,"A":"left","R":[{"T":"Summer%20Term","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":49.844,"y":25.229,"w":5.4977,"clr":-1,"A":"left","R":[{"T":"Spring%20Term","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":25.188,"w":0.8326,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.233,"y":25.188,"w":1.7769,"clr":-1,"A":"left","R":[{"T":"See","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":13.421,"y":25.188,"w":1.8872000000000002,"clr":-1,"A":"left","R":[{"T":"next","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.792,"y":25.188,"w":2.2212,"clr":-1,"A":"left","R":[{"T":"page","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":20.692,"y":25.188,"w":1.1649,"clr":-1,"A":"left","R":[{"T":"for","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":22.942,"y":25.188,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"Credit","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":27.854,"y":25.188,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"Hours","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":32.754,"y":25.188,"w":6.946,"clr":-1,"A":"left","R":[{"T":"Requirements.","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":10.233,"y":25.912,"w":23.872499999999988,"clr":-1,"A":"left","R":[{"T":"Number%20of%20semester%20hours%20completed%20during%20tax%20year%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":49.238,"y":26.66,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":26.921,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":41.739,"y":4.313,"w":3.2739999999999996,"clr":-1,"A":"left","R":[{"T":"STATE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":46.259,"y":4.313,"w":10.985599999999998,"clr":-1,"A":"left","R":[{"T":"%20OF%20SOUTH%20CAROLINA","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":39.734,"y":4.983,"w":3.457,"clr":-1,"A":"left","R":[{"T":"DEPAR","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":45.66,"y":4.983,"w":2.8426,"clr":-1,"A":"left","R":[{"T":"TMEN","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":50.537,"y":4.983,"w":7.418799999999999,"clr":-1,"A":"left","R":[{"T":"T%20OF%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":53.573,"y":10.932,"w":25.951799999999995,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20Other%20person%20eligible%20to%20claim%20student%20as%20a%20dependent","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":13.443,"w":29.36849999999998,"clr":-1,"A":"left","R":[{"T":"Did%20the%20student%20receive%20the%20LIFE%20or%20Palmetto%20Fellows%20Scholarship%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":73.493,"y":19.338,"w":14.584,"clr":-1,"A":"left","R":[{"T":"Month%2FYear%20through%20Month%2FYear%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.493,"y":20.841,"w":14.584,"clr":-1,"A":"left","R":[{"T":"Month%2FYear%20through%20Month%2FYear%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.493,"y":22.34,"w":14.584,"clr":-1,"A":"left","R":[{"T":"Month%2FYear%20through%20Month%2FYear%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.021,"y":27.002,"w":24.969200000000022,"clr":-1,"A":"left","R":[{"T":"Qualified%20tuition%20paid%20........................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":29.022,"w":3.9433,"clr":-1,"A":"left","R":[{"T":"Qualified","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":12.805,"y":29.022,"w":0.2777,"clr":-1,"A":"left","R":[{"T":"t","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":13.239,"y":29.022,"w":2.3882000000000003,"clr":-1,"A":"left","R":[{"T":"uition","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":17.483,"y":29.022,"w":2.9995000000000003,"clr":-1,"A":"left","R":[{"T":"means","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":22.666,"y":29.022,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":25.359,"y":29.022,"w":3.3332,"clr":-1,"A":"left","R":[{"T":"amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":31.075,"y":29.022,"w":3.6109,"clr":-1,"A":"left","R":[{"T":"charged","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":37.235,"y":29.022,"w":1.0554000000000001,"clr":-1,"A":"left","R":[{"T":"by","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":39.401,"y":29.022,"w":0.5557000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":40.799,"y":29.022,"w":3.1658999999999997,"clr":-1,"A":"left","R":[{"T":"college","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":46.256,"y":29.022,"w":0.8884000000000001,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":48.175,"y":29.022,"w":4.220000000000001,"clr":-1,"A":"left","R":[{"T":"university","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":55.267,"y":29.022,"w":1.0554000000000001,"clr":-1,"A":"left","R":[{"T":"as","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":57.435,"y":29.022,"w":0.5557000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":58.833,"y":29.022,"w":3.9993,"clr":-1,"A":"left","R":[{"T":"condition","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":65.586,"y":29.022,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":67.419,"y":29.022,"w":4.665,"clr":-1,"A":"left","R":[{"T":"enrollment","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":75.211,"y":29.022,"w":1.6671000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":78.344,"y":29.022,"w":3.6655999999999995,"clr":-1,"A":"left","R":[{"T":"includes","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":84.571,"y":29.022,"w":3.6656000000000004,"clr":-1,"A":"left","R":[{"T":"required","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":90.823,"y":29.022,"w":2.1665,"clr":-1,"A":"left","R":[{"T":"fees.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":95.156,"y":29.022,"w":1.7221000000000002,"clr":-1,"A":"left","R":[{"T":"The","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":29.774,"w":28.61100000000001,"clr":-1,"A":"left","R":[{"T":"cost%20of%20dorm%20rooms%2C%20books%20and%20meals%20are%20not%20included%20in%20tuition.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":14.613,"w":4.140700000000001,"clr":-1,"A":"left","R":[{"T":"Student's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.232,"y":14.613,"w":1.9455,"clr":-1,"A":"left","R":[{"T":"First","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.305,"y":14.613,"w":2.6681999999999997,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.366,"y":14.613,"w":1.6689,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.055,"y":14.613,"w":2.6144000000000003,"clr":-1,"A":"left","R":[{"T":"Initial%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.458,"y":14.613,"w":4.140700000000001,"clr":-1,"A":"left","R":[{"T":"Student's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.538,"y":14.613,"w":1.8912,"clr":-1,"A":"left","R":[{"T":"Last","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.541,"y":14.613,"w":2.6681999999999997,"clr":-1,"A":"left","R":[{"T":"Name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.566,"y":14.613,"w":4.140700000000001,"clr":-1,"A":"left","R":[{"T":"Student's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.744,"y":14.613,"w":2.7248,"clr":-1,"A":"left","R":[{"T":"Social","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.892,"y":14.613,"w":3.6144,"clr":-1,"A":"left","R":[{"T":"Security","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.264,"y":14.613,"w":3.8361,"clr":-1,"A":"left","R":[{"T":"Number%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.021,"y":31.295,"w":30.51740000000002,"clr":-1,"A":"left","R":[{"T":"Tuition%20limit%20for%204%20year%20independent%20College%20or%20University%20(if%20it%20applies)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":39.041,"y":35.948,"w":2.6637999999999997,"clr":-1,"A":"left","R":[{"T":"loans%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":43.658,"y":35.948,"w":0.27730000000000005,"clr":-1,"A":"left","R":[{"T":"I","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":44.093,"y":35.948,"w":1.4425999999999999,"clr":-1,"A":"left","R":[{"T":"RC","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":46.79,"y":35.948,"w":3.3301,"clr":-1,"A":"left","R":[{"T":"Section","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":52.423,"y":35.948,"w":1.6659000000000002,"clr":-1,"A":"left","R":[{"T":"127","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":55.493,"y":35.948,"w":5.1063,"clr":-1,"A":"left","R":[{"T":"educational","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.918000000000006,"y":35.948,"w":4.717,"clr":-1,"A":"left","R":[{"T":"assistance","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.708,"y":35.948,"w":2.6637999999999997,"clr":-1,"A":"left","R":[{"T":"plans%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":76.313,"y":35.948,"w":3.8301,"clr":-1,"A":"left","R":[{"T":"payment","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":82.736,"y":35.948,"w":1.1649,"clr":-1,"A":"left","R":[{"T":"for","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":85.02,"y":35.948,"w":4.0517,"clr":-1,"A":"left","R":[{"T":"teaching%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":91.798,"y":35.948,"w":3.8844,"clr":-1,"A":"left","R":[{"T":"research","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":36.641,"w":27.166400000000003,"clr":-1,"A":"left","R":[{"T":"or%20other%20services%2C%20or%20veteran%20educational%20assistance%20benefits.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.021,"y":37.977,"w":15.3663,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20scholarships%20and%20grants","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":34.346,"y":37.977,"w":27.155800000000053,"clr":-1,"A":"left","R":[{"T":"..................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.021,"y":43.98,"w":36.208800000000025,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%207%20or%208.%20This%20is%20your%20tuition%20tax%20credit.%20Enter%20on%20SC1040%2C%20line%2021","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.956999999999994,"y":43.966,"w":9.183899999999998,"clr":-1,"A":"left","R":[{"T":".................................","S":-1,"TS":[0,13.3252,0,0]}]},{"oc":"#231f20","x":10.059,"y":45.074,"w":45.32039999999995,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%201%20form%20is%20completed%2C%20combine%20the%20tuition%20tax%20credit%20amounts%20and%20enter%20on%20SC1040%2C%20line%2021.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.634,"y":33.545,"w":10.116000000000001,"clr":-1,"A":"left","R":[{"T":"%20...................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.021,"y":33.545,"w":35.26120000000003,"clr":-1,"A":"left","R":[{"T":"Smaller%20of%20lines%202%20(Total)%20or%203%20(Enter%20amount%20from%20line%202%20if%20line%203%20does%20not%20apply.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":85.385,"y":38.216,"w":0.5868,"clr":-1,"A":"left","R":[{"T":"%3C","S":-1,"TS":[0,17,0,0]}]},{"oc":"#231f20","x":96.27,"y":38.216,"w":0.5868,"clr":-1,"A":"left","R":[{"T":"%3E","S":-1,"TS":[0,17,0,0]}]},{"oc":"#231f20","x":10.021,"y":42.477,"w":41.919399999999975,"clr":-1,"A":"left","R":[{"T":"Credit%20limit%20(%24850.00%20for%204%20year%20College%20or%20University%20or%20%24350.00%20for%202%20year%20college%20or%20university)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":75.703,"y":42.477,"w":3.0536000000000003,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.148,"y":10.932,"w":3.465200000000001,"clr":-1,"A":"left","R":[{"T":"Student","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":21.513,"y":10.932,"w":8.573599999999997,"clr":-1,"A":"left","R":[{"T":"Parent%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":"#231f20","x":6.148,"y":12.039,"w":10.474000000000004,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20the%20tuition%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.278,"y":12.039,"w":1.726,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":35.038,"y":12.039,"w":1.28,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":55.893,"y":13.443,"w":1.7320000000000002,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.653,"y":13.443,"w":1.284,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":58.432,"y":26.66,"w":6.6869,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.627,"y":26.66,"w":6.6869,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.809,"y":26.66,"w":6.6869,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.003,"y":26.66,"w":6.6869,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":229,"AM":1024,"x":6.628,"y":8.987,"w":66.451,"h":0.833,"TU":"Name of Taxpayer"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":230,"AM":1024,"x":76.466,"y":9.011,"w":22.148,"h":0.833,"TU":"Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STDFNAME","EN":0},"TI":241,"AM":0,"x":6.082,"y":15.707,"w":28.038,"h":0.833,"TU":"Student's First Name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"STDMI","EN":0},"TI":242,"AM":0,"x":34.747,"y":15.733,"w":5.859,"h":0.833,"TU":"Initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STDLNAME","EN":0},"TI":243,"AM":0,"x":41.673,"y":15.705,"w":31.756,"h":0.833,"TU":"Student's Last Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"STDSSN","EN":0},"TI":244,"AM":0,"x":73.624,"y":15.728,"w":25.245,"h":0.833,"TU":"Student's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"HS","EN":0},"TI":245,"AM":0,"x":6.082,"y":17.207,"w":67.05,"h":0.833,"TU":"Name of High School"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YGRAD","EN":0},"TI":246,"AM":0,"x":73.534,"y":17.202,"w":25.424,"h":0.833,"TU":"Month and Year Graduated","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INST1","EN":0},"TI":247,"AM":0,"x":6.005,"y":18.675,"w":67.051,"h":0.833,"TU":"Name of Qualified College or University in which student was first enrolled"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"ENTER1","EN":0},"TI":248,"AM":0,"x":73.457,"y":18.67,"w":25.424,"h":0.833,"TU":"Month and Year First Enrolled","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INST2","EN":0},"TI":249,"AM":0,"x":6.06,"y":20.247,"w":67.051,"h":0.833,"TU":"Name of Qualified College or University attended during the tax year."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BMONTH1","EN":0},"TI":250,"AM":0,"x":73.512,"y":20.242,"w":12.697,"h":0.833,"TU":"Month and Year started","MV":"mm/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EMONTH1","EN":0},"TI":251,"AM":0,"x":86.411,"y":20.197,"w":12.398,"h":0.833,"TU":"Month and Year ended.","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INST3","EN":0},"TI":252,"AM":0,"x":6.107,"y":21.76,"w":67.05,"h":0.833,"TU":"Name of Qualified College or University attended during the tax year"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BMONTH2","EN":0},"TI":253,"AM":0,"x":73.559,"y":21.755,"w":12.697,"h":0.833,"TU":"Month and Year started","MV":"mm/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EMONTH2","EN":0},"TI":254,"AM":0,"x":86.533,"y":21.738,"w":12.398,"h":0.833,"TU":"Month and Year ended.","MV":"mm/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INST4","EN":0},"TI":255,"AM":0,"x":6.012,"y":23.25,"w":67.051,"h":0.833,"TU":"Name of Qualified College or University attended during the tax year"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BMONTH3","EN":0},"TI":256,"AM":0,"x":73.464,"y":23.246,"w":12.697,"h":0.833,"TU":"Month and Year started","MV":"mm/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EMONTH3","EN":0},"TI":257,"AM":0,"x":86.438,"y":23.228,"w":12.398,"h":0.833,"TU":"Month and Year ended.","MV":"mm/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEMHRS1","EN":0},"TI":258,"AM":0,"x":49.679,"y":26.099,"w":8.188,"h":0.833,"TU":"Line 1. Spring Term Number of Semester Hours."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEMHRS2","EN":0},"TI":259,"AM":0,"x":58.895,"y":26.123,"w":8.317,"h":0.833,"TU":"Line 1. Summer Term number of semester hours completed"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEMHRS3","EN":0},"TI":260,"AM":0,"x":68.094,"y":26.12,"w":8.445,"h":0.833,"TU":"Line 1. Fall Term number of semester hours completed."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEMHRS4","EN":0},"TI":261,"AM":0,"x":77.219,"y":26.136,"w":8.509,"h":0.833,"TU":"Line 1. Interim number of semester hours completed."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HRSTOT","EN":0},"TI":262,"AM":1024,"x":87.007,"y":26.078,"w":9.086,"h":0.833,"TU":"Line 1. Total number of semester hours completed"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAID1","EN":0},"TI":263,"AM":0,"x":50.638,"y":27.018,"w":7.549,"h":0.833,"TU":"Line 2. Spring Term qualified tuition paid"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAID2","EN":0},"TI":264,"AM":0,"x":59.855,"y":26.995,"w":7.677,"h":0.833,"TU":"Line 2. Summer Term qualified tuition paid"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAID3","EN":0},"TI":265,"AM":0,"x":68.669,"y":26.991,"w":8.126,"h":0.833,"TU":"Line 2. Fall Term qualified tuition paid"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAID4","EN":0},"TI":266,"AM":0,"x":78.178,"y":26.984,"w":7.87,"h":0.833,"TU":"Line 2. Interim qualified tuition paid"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TUITPD","EN":0},"TI":267,"AM":1024,"x":87.39,"y":27.02,"w":8.767,"h":0.833,"TU":"Line 2. Total qualified tuition paid."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TUITLMT","EN":0},"TI":268,"AM":0,"x":84.776,"y":32.253,"w":13.057,"h":0.833,"TU":"Line 3. Tuition limit for 4 year independent College or University ( if it applies). See next page for Tuition Limit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TUITTOT","EN":0},"TI":269,"AM":1024,"x":84.942,"y":33.75,"w":12.929,"h":0.833,"TU":"Smaller of lines 2 (Total) or 3 (Enter amount from line 2 if line 3 does not apply)"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"GRANTOT","EN":0},"TI":270,"AM":0,"x":87.402,"y":38.201,"w":8.627,"h":0.833,"TU":"Line 5. Amount of scholarships and grants.","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NETUIT","EN":0},"TI":271,"AM":1024,"x":84.795,"y":39.726,"w":13.057,"h":0.833,"TU":"Line 6. Subtract line 5 from 4. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TUIT25","EN":0},"TI":272,"AM":1024,"x":84.833,"y":41.223,"w":13.057,"h":0.833,"TU":"Line 7. Multiply line 6 by 25%."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDLMT","EN":0},"TI":273,"AM":0,"x":84.925,"y":42.727,"w":13.057,"h":0.833,"TU":"Line 8. Credit limit ($850.00 for 4 year College or University or $350.00 for 2 year college or university)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCRED","EN":0},"TI":274,"AM":1024,"x":84.706,"y":44.341,"w":13.057,"h":0.833,"TU":"Line 9. Enter the smaller of 7 or 8. This is your tuition tax credit. Enter on SC1040, line 21."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STDNT","EN":0},"TI":231,"AM":0,"x":12.526,"y":11.118,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PARNT","EN":0},"TI":232,"AM":0,"x":26.977,"y":11.114,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LGLGUARD","EN":0},"TI":233,"AM":0,"x":47.62,"y":11.134,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHPER","EN":0},"TI":234,"AM":0,"x":91.364,"y":11.107,"w":1.564,"h":0.833,"checked":false}],"id":{"Id":"STDNRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TUITY","EN":0},"TI":235,"AM":0,"x":29.804,"y":12.232,"w":1.521,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TUITN","EN":0},"TI":236,"AM":0,"x":37.736,"y":12.226,"w":1.521,"h":0.833,"checked":false}],"id":{"Id":"TUITRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPRINGBX","EN":0},"TI":237,"AM":0,"x":78.937,"y":12.813,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FALLBX","EN":0},"TI":240,"AM":0,"x":78.807,"y":13.583,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"SEMESTRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"YESBOX","EN":0},"TI":238,"AM":0,"x":59.202,"y":13.654,"w":1.522,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NOBOX","EN":0},"TI":239,"AM":0,"x":67.458,"y":13.662,"w":1.522,"h":0.833,"checked":false}],"id":{"Id":"BX1RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/sc/form/F330.content.txt b/test/data/sc/form/F330.content.txt new file mode 100755 index 00000000..b62c65cf --- /dev/null +++ b/test/data/sc/form/F330.content.txt @@ -0,0 +1,90 @@ +I-330 +(Rev. 4/29/13) +3384 +1350 +STATE OF SOUTH CAROLINA +DEPARTMENT OF REVENUE +2013 CONTRIBUTIONS FOR CHECK-OFFS +33841032 +NAME + 00 + 00 + 00 + 00 + 00 +. +........................................................................................................... + 00 + 00 +Dollars Cents + 00 + 00 + 1. + 2. + 3. + 4. + 5. + 6. + 7. + 8. + 9. +10. +11. +12. +13. +14. +15. +16. +Cents + 00 + 00 + 00 + 00 + 00 + 00 +YOUR SOCIAL SECURITY NUMBER +South Carolinians have the opportunity to make +certain contributions through +their tax returns. See Line 28 of SC1040. Contributions +can be made to the following organizations: +14. +15. +.. +17. + 00 +16. + 00 +1. Endangered Wildlife Fund +.................................................................................................... +2. Children's Trust Fund +.......................................................................................................... +3. Eldercare Trust Fund +4. SC Veterans' Trust Fund +...................................................................................................... +5. Donate Life South Carolina +.................................................................................................. +6. SC First Steps to School Readiness Fund +........................................................................... +7. War Between the States Heritage Trust Fund +...................................................................... +8. SC Litter Control Enforcement Program +............................................................................... +9. SC Law Enforcement Assistance Program +.......................................................................... +10. K-12 Public Education Fund +................................................................................................. +11. SC State Parks Fund +........................................................................................................... +12. SC Military Family Relief Fund + ........................................................................................... +13. SC Conservation Bank Trust Fund +....................................................................................... +SC Financial Literacy Trust Fund +......................................................................................... +SC State Forests Fund +........................................................................................................ +SC Department of Natural Resources Fund +......................................................................... +17. Total Contributions. Add Lines 1 through 16. Enter the total on Line 28 of SC1040 +........... +----------------Page (0) Break---------------- diff --git a/test/data/sc/form/F330.fields.json b/test/data/sc/form/F330.fields.json new file mode 100755 index 00000000..21564d25 --- /dev/null +++ b/test/data/sc/form/F330.fields.json @@ -0,0 +1 @@ +[{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"ENDNGFND","type":"number","calc":false,"value":""},{"id":"CHILDTFN","type":"number","calc":false,"value":""},{"id":"ELDTFND","type":"number","calc":false,"value":""},{"id":"VETFND","type":"number","calc":false,"value":""},{"id":"GOLTFND","type":"number","calc":false,"value":""},{"id":"FSTSPFND","type":"number","calc":false,"value":""},{"id":"WARFND","type":"number","calc":false,"value":""},{"id":"LTTRFND","type":"number","calc":false,"value":""},{"id":"LAWFND","type":"number","calc":false,"value":""},{"id":"K12FND","type":"number","calc":false,"value":""},{"id":"STPRKFND","type":"number","calc":false,"value":""},{"id":"MLTRYFND","type":"number","calc":false,"value":""},{"id":"CONBTFND","type":"number","calc":false,"value":""},{"id":"FINLFND","type":"number","calc":false,"value":""},{"id":"FRSTFND","type":"number","calc":false,"value":""},{"id":"NATRES","type":"number","calc":false,"value":""},{"id":"TOTCONT","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/sc/form/F330.json b/test/data/sc/form/F330.json new file mode 100755 index 00000000..94379b43 --- /dev/null +++ b/test/data/sc/form/F330.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"I330_Fi_f1.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.398,"y":7.515,"w":0.8639999999999999,"l":92.404},{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.188,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.188,"y":9.752,"w":1.08,"l":92.813},{"oc":"#231f20","x":6.188,"y":7.502,"w":1.08,"l":92.813},{"oc":"#231f20","x":78.371,"y":13.5,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":14.998,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":16.502,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":21.002,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":19.499,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":18,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":25.502,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":23.999,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":22.5,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":30.002,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":28.499,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":27,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":31.487,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":32.985,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":34.502,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.371,"y":36,"w":1.08,"l":20.629},{"oc":"#231f20","x":78.283,"y":38.516,"w":1.8359999999999999,"l":21.324},{"oc":"#231f20","x":78.283,"y":11.828,"w":1.8359999999999999,"l":21.324}],"VLines":[{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":19.8,"y":4.725,"w":0.8639999999999999,"l":2.79},{"oc":"#231f20","x":82.913,"y":4.725,"w":0.8639999999999999,"l":2.79},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":6.188,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":7.502,"w":1.08,"l":2.25},{"oc":"#231f20","x":6.188,"y":7.502,"w":1.08,"l":2.25},{"oc":"#231f20","x":76.317,"y":7.502,"w":1.08,"l":2.25},{"oc":"#231f20","x":94.669,"y":11.849,"w":1.08,"l":26.402},{"oc":"#231f20","x":99.608,"y":11.828,"w":1.8359999999999999,"l":26.689},{"oc":"#231f20","x":78.283,"y":11.828,"w":1.8359999999999999,"l":26.689}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#231f20","x":87.613,"y":4.807,"w":2.2775000000000003,"clr":-1,"A":"left","R":[{"T":"I-330","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":85.596,"y":5.559,"w":6.334600000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%204%2F29%2F13)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":88.429,"y":6.311,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"3384","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.036,"y":2.148,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":43.001,"y":4.614,"w":14.030400000000002,"clr":-1,"A":"left","R":[{"T":"STATE%20OF%20SOUTH%20CAROLINA","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.444,"y":5.258,"w":13.718399999999995,"clr":-1,"A":"left","R":[{"T":"DEPARTMENT%20OF%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":28.423,"y":6.324,"w":20.047099999999997,"clr":-1,"A":"left","R":[{"T":"2013%20CONTRIBUTIONS%20FOR%20CHECK-OFFS","S":-1,"TS":[0,19.5,1,0]}]},{"oc":"#231f20","x":10.888,"y":46.383,"w":5.759999999999999,"clr":-1,"A":"left","R":[{"T":"33841032","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":6.965,"y":7.319000000000001,"w":2.901,"clr":-1,"A":"left","R":[{"T":"NAME","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":94.97,"y":12.611,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.97,"y":15.611999999999998,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.97,"y":20.112,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.97,"y":24.612,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.97,"y":21.611,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":70.329,"y":14.024,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":24.042,"y":15.521999999999998,"w":30.088399999999922,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":94.97,"y":37.329,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.983,"y":26.111,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":84.94,"y":11.742,"w":3.1082,"clr":-1,"A":"left","R":[{"T":"Dollars","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#231f20","x":95.036,"y":11.742,"w":2.6100000000000003,"clr":-1,"A":"left","R":[{"T":"Cents","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#231f20","x":94.97,"y":17.111,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.871,"y":33.594,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":71.739,"y":12.52,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%201.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":14.023,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%202.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":15.521999999999998,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%203.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":17.02,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%204.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":18.523,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%205.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":20.022,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%206.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":21.52,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%207.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":23.023,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%208.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.739,"y":24.522,"w":1.3940000000000001,"clr":-1,"A":"left","R":[{"T":"%20%209.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.736,"y":26.02,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.736,"y":27.523,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.736,"y":29.022,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.736,"y":30.52,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"13.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.736,"y":32.023,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"14.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.736,"y":33.522,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"15.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.736,"y":35.02,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"16.","S":3,"TS":[0,12,0,0]}]},{"x":95.038,"y":25.242,"w":2.6100000000000003,"clr":1,"A":"left","R":[{"T":"Cents","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#231f20","x":94.97,"y":18.609,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.97,"y":14.109,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.983,"y":27.609,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.983,"y":29.107,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.97,"y":23.109,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":94.97,"y":30.611,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":77.911,"y":7.323,"w":17.086,"clr":-1,"A":"left","R":[{"T":"YOUR%20%20SOCIAL%20SECURITY%20NUMBER","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#231f20","x":5.938,"y":9.897,"w":2.6130000000000004,"clr":-1,"A":"left","R":[{"T":"South","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":10.522,"y":9.897,"w":5.0009999999999994,"clr":-1,"A":"left","R":[{"T":"Carolinians","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":18.829,"y":9.897,"w":2.168,"clr":-1,"A":"left","R":[{"T":"have","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":22.735,"y":9.897,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":25.43,"y":9.897,"w":4.947000000000001,"clr":-1,"A":"left","R":[{"T":"opportunity","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":33.67,"y":9.897,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":35.497,"y":9.897,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"make","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":39.82,"y":9.897,"w":2.9996000000000005,"clr":-1,"A":"left","R":[{"T":"certain","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":45.017,"y":9.897,"w":5.666400000000001,"clr":-1,"A":"left","R":[{"T":"contributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":54.356,"y":9.897,"w":3.3896000000000006,"clr":-1,"A":"left","R":[{"T":"through","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":60.177,"y":9.897,"w":1.9430000000000003,"clr":-1,"A":"left","R":[{"T":"their","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.733,"y":9.897,"w":1.3328000000000002,"clr":-1,"A":"left","R":[{"T":"tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":66.327,"y":9.897,"w":3.3868000000000005,"clr":-1,"A":"left","R":[{"T":"returns.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":72.148,"y":9.897,"w":1.7778000000000003,"clr":-1,"A":"left","R":[{"T":"See","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":75.435,"y":9.897,"w":1.8884000000000003,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":78.909,"y":9.897,"w":1.1112000000000002,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":81.174,"y":9.897,"w":0.8332000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":83.008,"y":9.897,"w":3.8882000000000008,"clr":-1,"A":"left","R":[{"T":"SC1040.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":89.581,"y":9.897,"w":5.885800000000001,"clr":-1,"A":"left","R":[{"T":"Contributions","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":10.648,"w":19.214799999999997,"clr":-1,"A":"left","R":[{"T":"can%20be%20made%20to%20the%20following%20organizations%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":32.006,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"14.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":33.428,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"15.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":69.788,"y":29.04,"w":0.5624,"clr":-1,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.638,"y":37.266,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"17.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":94.97,"y":32.096,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":5.938,"y":35.075,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"16.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":94.871,"y":35.097,"w":1.6676000000000002,"clr":-1,"A":"left","R":[{"T":"%2000%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":6.841,"y":12.521,"w":12.608899999999998,"clr":-1,"A":"left","R":[{"T":"1.%20Endangered%20Wildlife%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":27.481,"y":12.521,"w":27.76999999999996,"clr":-1,"A":"left","R":[{"T":"....................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.841,"y":14.024,"w":10.6414,"clr":-1,"A":"left","R":[{"T":"2.%20Children's%20Trust%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":24.253,"y":14.024,"w":29.478599999999936,"clr":-1,"A":"left","R":[{"T":"..........................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.841,"y":15.521999999999998,"w":10.501700000000001,"clr":-1,"A":"left","R":[{"T":"3.%20Eldercare%20Trust%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.841,"y":17.021,"w":12.090200000000003,"clr":-1,"A":"left","R":[{"T":"4.%20SC%20Veterans'%20Trust%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.489,"y":17.021,"w":28.376399999999926,"clr":-1,"A":"left","R":[{"T":"......................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.841,"y":18.524,"w":13.1093,"clr":-1,"A":"left","R":[{"T":"5.%20Donate%20Life%20South%20Carolina","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":28.12,"y":18.524,"w":27.21459999999996,"clr":-1,"A":"left","R":[{"T":"..................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.841,"y":20.022,"w":19.589199999999998,"clr":-1,"A":"left","R":[{"T":"6.%20SC%20First%20Steps%20to%20School%20Readiness%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":38.257,"y":20.022,"w":20.89500000000004,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.717,"y":21.521,"w":21.083000000000002,"clr":-1,"A":"left","R":[{"T":"7.%20War%20Between%20the%20States%20Heritage%20Trust%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":40.501,"y":21.521,"w":19.48800000000001,"clr":-1,"A":"left","R":[{"T":"......................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.841,"y":23.024,"w":18.578,"clr":-1,"A":"left","R":[{"T":"8.%20SC%20Litter%20Control%20Enforcement%20Program","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.369,"y":23.024,"w":21.993600000000022,"clr":-1,"A":"left","R":[{"T":"...............................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":6.804,"y":24.522,"w":19.793000000000006,"clr":-1,"A":"left","R":[{"T":"9.%20SC%20Law%20Enforcement%20Assistance%20Program","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":38.436,"y":24.522,"w":20.586799999999975,"clr":-1,"A":"left","R":[{"T":"..........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":26.021,"w":14.075,"clr":-1,"A":"left","R":[{"T":"10.%20K-12%20Public%20Education%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":28.7,"y":26.021,"w":27.004800000000046,"clr":-1,"A":"left","R":[{"T":".................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":27.524,"w":11.0886,"clr":-1,"A":"left","R":[{"T":"11.%20SC%20State%20Parks%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":24.046,"y":27.524,"w":29.874399999999962,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":29.04,"w":15.4235,"clr":-1,"A":"left","R":[{"T":"12.%20%20SC%20Military%20Family%20Relief%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.807,"y":29.04,"w":25.65880000000001,"clr":-1,"A":"left","R":[{"T":"%20...........................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":30.57,"w":17.459400000000002,"clr":-1,"A":"left","R":[{"T":"13.%20%20SC%20Conservation%20Bank%20Trust%20Fund%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":32.953,"y":30.57,"w":24.203399999999952,"clr":-1,"A":"left","R":[{"T":".......................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.155,"y":31.988,"w":14.572799999999997,"clr":-1,"A":"left","R":[{"T":"SC%20Financial%20Literacy%20Trust%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":32.2,"y":31.988,"w":24.777600000000035,"clr":-1,"A":"left","R":[{"T":".........................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.155,"y":33.405,"w":10.202499999999997,"clr":-1,"A":"left","R":[{"T":"SC%20State%20Forests%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":25.8,"y":33.405,"w":29.06799999999995,"clr":-1,"A":"left","R":[{"T":"........................................................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":9.155,"y":35.057,"w":19.121900000000004,"clr":-1,"A":"left","R":[{"T":"SC%20Department%20of%20Natural%20Resources%20Fund","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":39.292,"y":35.057,"w":20.301299999999987,"clr":-1,"A":"left","R":[{"T":".........................................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.939,"y":37.352,"w":37.646499999999996,"clr":-1,"A":"left","R":[{"T":"17.%20Total%20Contributions.%20Add%20Lines%201%20through%2016.%20Enter%20the%20total%20on%20Line%2028%20of%20SC1040","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":65.699,"y":37.352,"w":3.0524999999999998,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":275,"AM":1024,"x":6.496,"y":8.314,"w":67.805,"h":1.366,"TU":"Name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":276,"AM":1024,"x":76.534,"y":8.295,"w":22.234,"h":1.448,"TU":"Your Social Security Number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ENDNGFND","EN":0},"TI":277,"AM":0,"x":78.608,"y":12.71,"w":15.922,"h":0.833,"TU":"Line 1. Endangered Wildlife Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHILDTFN","EN":0},"TI":278,"AM":0,"x":78.596,"y":13.631,"w":15.923,"h":1.312,"TU":"Line 2. Children's Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ELDTFND","EN":0},"TI":279,"AM":0,"x":78.689,"y":15.221,"w":15.773,"h":1.257,"TU":"Line 3. Eldercare Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VETFND","EN":0},"TI":280,"AM":0,"x":78.677,"y":16.654,"w":15.922,"h":1.312,"TU":"Line 4. SC Veterans' Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GOLTFND","EN":0},"TI":281,"AM":0,"x":78.717,"y":18.154,"w":15.922,"h":1.312,"TU":"Line 5. Donate Life South Carolina."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FSTSPFND","EN":0},"TI":282,"AM":0,"x":78.81,"y":19.72,"w":15.773,"h":1.257,"TU":"Line 6. SC First Steps to School Readiness Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WARFND","EN":0},"TI":283,"AM":0,"x":78.798,"y":21.153,"w":15.923,"h":1.312,"TU":"Line 7. War Between the States Heritage Trust."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LTTRFND","EN":0},"TI":284,"AM":0,"x":78.732,"y":22.683,"w":15.923,"h":1.312,"TU":"Line 8. SC Litter Control Enforcement Program."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LAWFND","EN":0},"TI":285,"AM":0,"x":78.824,"y":24.249,"w":15.773,"h":1.257,"TU":"Line 9. SC Law Enforcement Assistance Program."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"K12FND","EN":0},"TI":286,"AM":0,"x":78.877,"y":25.682,"w":15.923,"h":1.312,"TU":"Line 10. K-12 Public Education Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STPRKFND","EN":0},"TI":287,"AM":0,"x":78.853,"y":27.182,"w":15.922,"h":1.312,"TU":"Line 11. SC State Parks Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MLTRYFND","EN":0},"TI":288,"AM":0,"x":78.817,"y":28.678,"w":15.965,"h":1.257,"TU":"Line 12. SC Military Family Relief Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONBTFND","EN":0},"TI":289,"AM":0,"x":78.613,"y":30.112,"w":15.922,"h":1.312,"TU":"Line 13. SC Conservation Bank Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FINLFND","EN":0},"TI":290,"AM":0,"x":78.637,"y":31.633,"w":15.923,"h":1.312,"TU":"Line 14. SC Financial Literacy Trust Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRSTFND","EN":0},"TI":291,"AM":0,"x":78.729,"y":33.199,"w":15.773,"h":1.257,"TU":"Line 15. SC State Forests Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NATRES","EN":0},"TI":292,"AM":0,"x":78.718,"y":34.632,"w":15.923,"h":1.312,"TU":"Line 156. SC Department of Natural Resources Fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCONT","EN":0},"TI":293,"AM":1024,"x":78.619,"y":36.738,"w":16.072,"h":1.662,"TU":"Line 17. Total Contributions. Add Lines 1 through 16. Enter the total on Line 28 of SC1040."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/sc/form/F8453.content.txt b/test/data/sc/form/F8453.content.txt new file mode 100755 index 00000000..15a7b9b3 --- /dev/null +++ b/test/data/sc/form/F8453.content.txt @@ -0,0 +1,197 @@ +STAPLE +13. +If I have filed a balance due return, I understand that if the SC Department of Re +venue does not receive full and timely payment of my tax liability, I will +Sign Here +I consent that my refund be directly deposited +as designated in Part II, and declare that the information shown on lines 1 through 8 is +Declaration of Taxpayer +(Sign only after Part I is completed.) +Spouse's signature (If joint, BOTH must sign) Date +Your signature Date +Paid +Preparer's +Use +Only +Tax Year +Spouse's social security number +Your social security number +Your first name and initial + Last name +Daytime telephone # + 9. Routing transit number (RTN) +Home address (number and street, apt. number or RR) +City, town or post office, state and ZIP code +Please +print or +type. +2. Net SC tax (SC1040, line 15). . . . . . . . . . . . . . . . . + . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . +. . . . +6. Tuition Tax Credit (SC1040, line 21) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . +If joint return, +spouse's first name and initial Last name, if different +Part IV +8. Amount you owe (SC1040, line 34) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . +(See Instructions.) +1. Federal taxable income +( +SC1040, line 1). +................................................. +Tax Return Information +(Whole dollars only) +Part I +Part II +Direct Deposit of Refund or EFW Payment of Tax Due +(Optional - See instructions.) +Part III +Preparer +signature +00 +1 +2 +5 +3 +4 +00 +00 +00 +00 +The first two numbers of the RTN must +be 01 through 12 or 21 through 32. +10. Bank account number (BAN) +Date +Check if +also paid +preparer +Check +if self- +employed +PTIN +Firm name (or +yours if self-employed) +and address +ZIP code +I declare that I have compared the information (inc +luding direct deposit or EFW data) on my return with +the information I have provided to my electronic +return originator (ERO) and the amounts agree +with the amounts on my SC tax return. To the best of my knowledge, my return is true and complete. I +consent that my return and accompanying schedul +es and statements be sent to the Internal Rev +enue Service (IRS) by my ERO, and subsequently by +the IRS to the SC Department of Revenue. +Do not submit this form to the SC Department of Revenue. Keep with your records. +ERO's +Use +Only +Date +Check if +self- +employed +ZIP code +PTIN +ERO +signature +Firm name (or +yours if self-employed) +and address +D +O +N +O +T +M +A +I +L +K +E +E +P +F +O +R +Y +O +U +R +R +E +C +O +R +D +S +7. Refund (SC1040, line 30) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . + . . . . . . . . . . . +6 +00 +a. +3. Use Tax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . + 7 + 8 +4. Total Tax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +. . . . . . . . . . . . . . . . . +00 +00 +12. Withdrawal Date + Withdrawal Amount $ +e an Electronic Funds Withdrawal +(payment) entry to my financial institution a +ccount designated in Part II for payment of my S +outh Carolina taxes owed, and (2) my financial +institution to debit the entry to my account. I al +so authorize the financial institutions involved +in the processing of my electronic payment of +Revenue no later than two business days prior +to the withdrawal (settl +ement) date by calling 803-896-1715. +I declare that I have received the above taxpayer's return and the entries +on this form are complete and correct to the best of my knowledge. I have +obtained the taxpayer's signature on this form bef +ore submitting this return to the SC Department of Revenue. I have provided the taxpayer with a copy +of all forms and information to be filed with the IRS and the SC Department +of Revenue, and have followed all other requirements described in the IRS +Pub. 1345 Authorized IRS e-file Providers of Individual Income Tax Retur +ns, and requirements specified by the SC Department of Revenue. If I am the +preparer, I declare that I have examined the above taxpayer's return and +they are true and complete. This declaration is based on all information of which I have knowledge. +I understand I do not mail this form. I am +required to keep this form and the supporting documents for three (3) years. +1350 +1350 +STATE OF SOUTH CAROLINA +DEPARTMENT OF REVENUE +(Rev. 7/23/10) + 3299 +INDIVIDUAL INCOME TAX +DECLARATION FOR ELECTRONIC FILING +SC8453 +FEIN +FEIN +5. SC Income Tax Withheld (SC1040, lines 16 & 20) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . +11. Type of account: + +Checking + +Savings +correct. If I have filed a joint return, this is an irrevocable appointment of the other spouse as an agent to receive the refund. +b. I authorize (1) the South Carolina Department of Revenue and its designated financial agents to initiat +taxes to receive confidential information necessary to answer inquiries and resolve issues related to my payment. Under the items of this +authorization, I can revoke this authorization by notifying the South Carolina Department of +remain liable for the tax liability and all applicable interest and penalties. +Declaration of Electronic Return Originator (ERO) and Paid Preparer +accompanying schedules and statements, and to the best of my knowledge, + +COPIES OF +STATE W-2(s) + + +HERE +and 1099(s) +----------------Page (0) Break---------------- diff --git a/test/data/sc/form/F8453.fields.json b/test/data/sc/form/F8453.fields.json new file mode 100755 index 00000000..fee5b65f --- /dev/null +++ b/test/data/sc/form/F8453.fields.json @@ -0,0 +1 @@ +[{"id":"L8XRB","type":"radio","calc":false,"value":"L8XC"},{"id":"L8XRB","type":"radio","calc":false,"value":"L8XS"},{"id":"DDBOX1","type":"box","calc":false,"value":""},{"id":"DDBOX3","type":"box","calc":false,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"TPLNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":true,"value":""},{"id":"TAXYR","type":"date","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"DAN","type":"mask","calc":false,"value":""},{"id":"WDDATE","type":"date","calc":false,"value":""},{"id":"WDAMT","type":"number","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":true,"value":"SELF PREPARED"}] \ No newline at end of file diff --git a/test/data/sc/form/F8453.json b/test/data/sc/form/F8453.json new file mode 100755 index 00000000..6e619e61 --- /dev/null +++ b/test/data/sc/form/F8453.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"SC8453_Fi_f1.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":6.188,"y":25.502,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":6.188,"y":24.75,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":6.188,"y":12.748,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":6.188,"y":11.997,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":6.188,"y":19.499,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":6.188,"y":18.747,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":6.188,"y":37.503,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":6.188,"y":36.752,"w":0.21599999999999997,"l":7.215},{"oc":"#231f20","x":17.498,"y":36,"w":0.8639999999999999,"l":38.189},{"oc":"#231f20","x":58.781,"y":36,"w":0.8639999999999999,"l":38.152},{"oc":"#231f20","x":28.574,"y":47.628,"w":0.8639999999999999,"l":70.426},{"oc":"#231f20","x":15.468,"y":46.877,"w":0.8639999999999999,"l":83.494},{"oc":"#231f20","x":6.188,"y":45,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":6.188,"y":18.752,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":12.585,"y":10.498,"w":0.8639999999999999,"l":63.731},{"oc":"#231f20","x":6.188,"y":19.503,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":12.524,"y":7.502,"w":0.8639999999999999,"l":86.477},{"oc":"#231f20","x":12.524,"y":9,"w":0.8639999999999999,"l":86.464},{"oc":"#231f20","x":6.188,"y":12.002,"w":1.8359999999999999,"l":70.129},{"oc":"#231f20","x":6.188,"y":12.748,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":79.411,"y":18,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":79.411,"y":13.5,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":79.411,"y":14.999,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":79.584,"y":17.249,"w":0.8639999999999999,"l":19.627},{"oc":"#231f20","x":6.188,"y":24.75,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":6.188,"y":25.502,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":6.188,"y":37.503,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":6.188,"y":48.375,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":6.188,"y":36.752,"w":1.8359999999999999,"l":92.813},{"oc":"#231f20","x":79.411,"y":15.75,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":41.246,"y":21.002,"w":1.1880000000000002,"l":28.252},{"oc":"#231f20","x":41.246,"y":19.877,"w":1.1880000000000002,"l":28.252},{"oc":"#231f20","x":27.745,"y":44.253,"w":0.8639999999999999,"l":71.255},{"oc":"#231f20","x":14.442,"y":43.502,"w":0.8639999999999999,"l":84.559},{"oc":"#231f20","x":79.411,"y":16.502,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":44.34,"y":22.5,"w":1.1880000000000002,"l":54.042},{"oc":"#231f20","x":44.34,"y":21.375,"w":1.1880000000000002,"l":54.042},{"oc":"#231f20","x":79.411,"y":14.252,"w":0.8639999999999999,"l":19.59},{"oc":"#231f20","x":71.565,"y":24.525,"w":0.8639999999999999,"l":18.983},{"oc":"#231f20","x":29.292,"y":24.525,"w":0.8639999999999999,"l":18.971},{"oc":"#231f20","x":6.225,"y":6.008,"w":0.8639999999999999,"l":89.15}],"VLines":[{"oc":"#231f20","x":13.402,"y":24.75,"w":0.21599999999999997,"l":0.751},{"oc":"#231f20","x":6.188,"y":24.75,"w":0.21599999999999997,"l":0.751},{"oc":"#231f20","x":13.402,"y":11.997,"w":0.21599999999999997,"l":0.751},{"oc":"#231f20","x":6.188,"y":11.997,"w":0.21599999999999997,"l":0.751},{"oc":"#231f20","x":13.402,"y":18.747,"w":0.21599999999999997,"l":0.752},{"oc":"#231f20","x":6.188,"y":18.747,"w":0.21599999999999997,"l":0.752},{"oc":"#231f20","x":13.402,"y":36.752,"w":0.21599999999999997,"l":0.751},{"oc":"#231f20","x":6.188,"y":36.752,"w":0.21599999999999997,"l":0.751},{"oc":"#231f20","x":48.473,"y":35.123,"w":0.8639999999999999,"l":0.877},{"oc":"#231f20","x":89.719,"y":35.123,"w":0.8639999999999999,"l":0.877},{"oc":"#231f20","x":70.129,"y":42.003,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":12.585,"y":6.016,"w":0.8639999999999999,"l":5.985},{"oc":"#231f20","x":82.504,"y":12.807,"w":0.8639999999999999,"l":5.945},{"oc":"#231f20","x":76.317,"y":6.017,"w":0.8639999999999999,"l":6.732},{"oc":"#231f20","x":59.549,"y":9,"w":0.8639999999999999,"l":1.498},{"oc":"#231f20","x":95.906,"y":12.749,"w":0.8639999999999999,"l":6.003},{"oc":"#231f20","x":79.411,"y":12.753,"w":0.8639999999999999,"l":5.998},{"oc":"#231f20","x":49.5,"y":42.003,"w":0.8639999999999999,"l":1.498},{"oc":"#231f20","x":80.438,"y":42.003,"w":0.8639999999999999,"l":1.498},{"oc":"#231f20","x":83.531,"y":6.75,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":95.201,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":44.389,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":47.52,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":50.651,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":53.782,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":56.913,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":60.044,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":63.187,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":66.305,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":69.498,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":41.246,"y":19.877,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":47.52,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":50.701,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":53.881,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":57.061,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":60.242,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":63.422,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":59.809,"y":42.003,"w":0.8639999999999999,"l":1.498},{"oc":"#231f20","x":80.438,"y":45.378,"w":0.8639999999999999,"l":1.498},{"oc":"#231f20","x":59.809,"y":45.378,"w":0.8639999999999999,"l":1.498},{"oc":"#231f20","x":70.129,"y":45.378,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":83.531,"y":8.248,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":90.746,"y":6.75,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":90.746,"y":8.248,"w":0.8639999999999999,"l":0.752},{"oc":"#231f20","x":66.602,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":69.77,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":72.951,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":76.131,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":79.312,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":82.492,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":85.66,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":88.84,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":92.021,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":98.382,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":44.34,"y":21.375,"w":1.1880000000000002,"l":1.125},{"oc":"#231f20","x":0.21,"y":21.375,"w":0.8639999999999999,"l":0.927},{"oc":"#231f20","x":13.402,"y":19.499,"w":0.8639999999999999,"l":5.252},{"oc":"#231f20","x":19.825,"y":2.552,"w":0.8639999999999999,"l":3.452},{"oc":"#231f20","x":82.888,"y":2.552,"w":0.8639999999999999,"l":3.452}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":6.188,"y":24.75,"w":7.215,"h":0.751,"clr":-1},{"oc":"#231f20","x":6.188,"y":11.997,"w":7.215,"h":0.751,"clr":-1},{"oc":"#231f20","x":6.188,"y":18.747,"w":7.215,"h":0.752,"clr":-1},{"oc":"#231f20","x":6.188,"y":36.752,"w":7.215,"h":0.751,"clr":-1}],"Texts":[{"oc":"#231f20","x":7.278,"y":19.544,"w":3.8482000000000003,"clr":-1,"A":"left","R":[{"T":"STAPLE","S":-1,"TS":[0,10.000000000000071,0,0]}]},{"oc":"#231f20","x":5.938,"y":25.422,"w":1.3864,"clr":-1,"A":"left","R":[{"T":"13.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":30.287,"w":0.5552,"clr":-1,"A":"left","R":[{"T":"If","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":7.121,"y":30.287,"w":0.2776,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":7.926,"y":30.287,"w":2.1664000000000003,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.346,"y":30.287,"w":1.8320000000000003,"clr":-1,"A":"left","R":[{"T":"filed","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.293,"y":30.287,"w":0.5556000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.481,"y":30.287,"w":3.4992000000000005,"clr":-1,"A":"left","R":[{"T":"balance","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.744,"y":30.287,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"due","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.48,"y":30.287,"w":2.8872000000000004,"clr":-1,"A":"left","R":[{"T":"return%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.886,"y":30.287,"w":0.2776,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.69,"y":30.287,"w":4.9990000000000006,"clr":-1,"A":"left","R":[{"T":"understand","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.021,"y":30.287,"w":1.6664000000000003,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.74,"y":30.287,"w":0.4992,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.851,"y":30.287,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.186,"y":30.287,"w":1.3882,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.508,"y":30.287,"w":5.22,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.129,"y":30.287,"w":0.8332000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.701,"y":30.287,"w":1.2772000000000001,"clr":-1,"A":"left","R":[{"T":"Re","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.471,"y":30.287,"w":2.7235000000000005,"clr":-1,"A":"left","R":[{"T":"venue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.665,"y":30.287,"w":2.1676,"clr":-1,"A":"left","R":[{"T":"does","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":63.084,"y":30.287,"w":1.3897000000000002,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.426,"y":30.287,"w":3.2223000000000006,"clr":-1,"A":"left","R":[{"T":"receive","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.31,"y":30.287,"w":1.2776,"clr":-1,"A":"left","R":[{"T":"full","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.507,"y":30.287,"w":1.6677000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":75.232,"y":30.287,"w":2.6104000000000003,"clr":-1,"A":"left","R":[{"T":"timely","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.253,"y":30.287,"w":3.8343000000000007,"clr":-1,"A":"left","R":[{"T":"payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.975,"y":30.287,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.548,"y":30.287,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":88.808,"y":30.287,"w":1.3337,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.07,"y":30.287,"w":3.277,"clr":-1,"A":"left","R":[{"T":"liability%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":96.021,"y":30.287,"w":0.27790000000000004,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":96.825,"y":30.287,"w":1.3876,"clr":-1,"A":"left","R":[{"T":"will","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":35.097,"w":4.674300000000001,"clr":-1,"A":"left","R":[{"T":"Sign%20Here","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":14.192,"y":25.463,"w":0.2777,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.108,"y":25.463,"w":3.4999,"clr":-1,"A":"left","R":[{"T":"consent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.502,"y":25.463,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.346,"y":25.463,"w":1.3324,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.718,"y":25.463,"w":2.8332000000000006,"clr":-1,"A":"left","R":[{"T":"refund","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.172,"y":25.463,"w":1.1114000000000002,"clr":-1,"A":"left","R":[{"T":"be","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.239,"y":25.463,"w":3.1646,"clr":-1,"A":"left","R":[{"T":"directly","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.16,"y":25.463,"w":4.3333,"clr":-1,"A":"left","R":[{"T":"deposited","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.694,"y":25.463,"w":1.0556,"clr":-1,"A":"left","R":[{"T":"as","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.687,"y":25.463,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"designated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.991,"y":25.463,"w":0.7776000000000001,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.597,"y":25.463,"w":1.8332000000000002,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.664,"y":25.463,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"II%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.351,"y":25.463,"w":1.6674000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.187,"y":25.463,"w":3.2776000000000005,"clr":-1,"A":"left","R":[{"T":"declare","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.266,"y":25.463,"w":1.6672000000000002,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.097,"y":25.463,"w":1.3894000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.557,"y":25.463,"w":4.9437999999999995,"clr":-1,"A":"left","R":[{"T":"information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.918,"y":25.463,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"shown","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.443,"y":25.463,"w":1.1116000000000001,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.523,"y":25.463,"w":2.055,"clr":-1,"A":"left","R":[{"T":"lines","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.898,"y":25.463,"w":0.5558000000000001,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.209,"y":25.463,"w":3.3896000000000006,"clr":-1,"A":"left","R":[{"T":"through","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":96.433,"y":25.463,"w":0.5558000000000001,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":97.732,"y":25.463,"w":0.7216,"clr":-1,"A":"left","R":[{"T":"is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":24.635,"w":5.441599999999999,"clr":-1,"A":"left","R":[{"T":"Declaration","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":24.023,"y":24.635,"w":0.9432,"clr":-1,"A":"left","R":[{"T":"of","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":26.125,"y":24.635,"w":4.3878,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":34.153,"y":24.635,"w":15.913999999999998,"clr":-1,"A":"left","R":[{"T":"(Sign%20only%20after%20Part%20I%20is%20completed.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":58.531,"y":35.741,"w":4.0836,"clr":-1,"A":"left","R":[{"T":"Spouse's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":64.548,"y":35.741,"w":4.114800000000001,"clr":-1,"A":"left","R":[{"T":"signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.618,"y":35.741,"w":0.8896,"clr":-1,"A":"left","R":[{"T":"(If","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.224,"y":35.741,"w":2.1132,"clr":-1,"A":"left","R":[{"T":"joint%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":75.523,"y":35.741,"w":5.2248,"clr":-1,"A":"left","R":[{"T":"BOTH%20must","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.107,"y":35.741,"w":2.168,"clr":-1,"A":"left","R":[{"T":"sign)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.552,"y":35.741,"w":2.1128,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.248,"y":35.741,"w":2.1112,"clr":-1,"A":"left","R":[{"T":"Your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.538,"y":35.741,"w":4.1112,"clr":-1,"A":"left","R":[{"T":"signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.24,"y":35.741,"w":2.1112,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":45.051,"w":2.1204,"clr":-1,"A":"left","R":[{"T":"Paid","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":5.938,"y":45.798,"w":4.907000000000001,"clr":-1,"A":"left","R":[{"T":"Preparer's","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":5.938,"y":46.55,"w":1.8289,"clr":-1,"A":"left","R":[{"T":"Use","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":5.938,"y":47.301,"w":2.231,"clr":-1,"A":"left","R":[{"T":"Only","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":85.125,"y":8.74,"w":4.0506,"clr":-1,"A":"left","R":[{"T":"Tax%20Year","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.849,"y":7.246,"w":14.5658,"clr":-1,"A":"left","R":[{"T":"Spouse's%20%20social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.861,"y":5.748,"w":12.331599999999998,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.917,"y":5.739,"w":19.444800000000022,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial%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,0,0]}]},{"oc":"#231f20","x":39.666,"y":5.739,"w":14.7985,"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%20Last%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.744,"y":8.741,"w":9.441,"clr":-1,"A":"left","R":[{"T":"Daytime%20telephone%20%23%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.196,"y":20.022,"w":15.0668,"clr":-1,"A":"left","R":[{"T":"%209.%20Routing%20transit%20number%20%20(RTN)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":12.88,"y":8.731,"w":24.3318,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street%2C%20apt.%20number%20or%20RR)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.917,"y":10.239,"w":19.361,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%20and%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":7.539,"w":3.1702000000000004,"clr":-1,"A":"left","R":[{"T":"Please","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.938,"y":8.291,"w":3.7834000000000003,"clr":-1,"A":"left","R":[{"T":"print%20or%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.938,"y":9.038,"w":2.331,"clr":-1,"A":"left","R":[{"T":"type.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.938,"y":13.366,"w":23.575000000000045,"clr":-1,"A":"left","R":[{"T":"2.%20Net%20SC%20tax%20(SC1040%2C%20line%2015).%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":"#231f20","x":42.41,"y":13.366,"w":17.434399999999997,"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":"#231f20","x":69.36,"y":13.366,"w":5.905200000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":75.561,"y":15.521999999999998,"w":1.9684000000000004,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":16.274,"w":41.805400000000056,"clr":-1,"A":"left","R":[{"T":"6.%20Tuition%20Tax%20Credit%20(SC1040%2C%20line%2021)%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":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":70.613,"y":16.274,"w":5.061600000000001,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":12.917,"y":7.237,"w":6.4674000000000005,"clr":-1,"A":"left","R":[{"T":"If%20joint%20return%2C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":22.174,"y":7.237,"w":3.9118000000000004,"clr":-1,"A":"left","R":[{"T":"spouse's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.969,"y":7.237,"w":1.609,"clr":-1,"A":"left","R":[{"T":"first","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.577,"y":7.237,"w":2.4994000000000005,"clr":-1,"A":"left","R":[{"T":"name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.41,"y":7.237,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.097,"y":7.237,"w":2.2752000000000003,"clr":-1,"A":"left","R":[{"T":"initial","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.585,"y":7.237,"w":1.8884000000000003,"clr":-1,"A":"left","R":[{"T":"Last","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.585,"y":7.237,"w":2.7770000000000006,"clr":-1,"A":"left","R":[{"T":"name%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.803,"y":7.237,"w":0.4992,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":63.876999999999995,"y":7.237,"w":3.6094000000000004,"clr":-1,"A":"left","R":[{"T":"different","S":-1,"TS":[0,11,0,0]}]},{"x":6.346,"y":36.632,"w":3.0703000000000005,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":5.938,"y":17.772,"w":42.4870999999999,"clr":-1,"A":"left","R":[{"T":"8.%20Amount%20you%20owe%20(SC1040%2C%20line%2034)%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":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.659,"y":17.772,"w":4.499200000000001,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":70.3,"y":36.632,"w":8.1159,"clr":-1,"A":"left","R":[{"T":"(See%20Instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":5.727,"y":12.633,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":7.461,"y":12.633,"w":3.3858,"clr":-1,"A":"left","R":[{"T":"Federal","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":13.166,"y":12.633,"w":3.2198,"clr":-1,"A":"left","R":[{"T":"taxable","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":18.607,"y":12.633,"w":3.2194,"clr":-1,"A":"left","R":[{"T":"income","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":24.092,"y":12.633,"w":0.333,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":24.661,"y":12.633,"w":7.1636,"clr":-1,"A":"left","R":[{"T":"SC1040%2C%20line%201).","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.244,"y":12.633,"w":27.44980000000004,"clr":-1,"A":"left","R":[{"T":".................................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":14.192,"y":11.881,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Tax","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":17.632,"y":11.881,"w":3.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Return","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":23.651,"y":11.881,"w":5.5,"clr":-1,"A":"left","R":[{"T":"Information","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":35.996,"y":11.881,"w":8.822999999999999,"clr":-1,"A":"left","R":[{"T":"(Whole%20dollars%20only)","S":-1,"TS":[0,13,0,0]}]},{"x":6.346,"y":11.881,"w":2.3984,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"x":6.346,"y":18.632,"w":2.6813000000000002,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":13.981,"y":18.632,"w":8.001,"clr":-1,"A":"left","R":[{"T":"Direct%20Deposit%20of","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":28.213,"y":18.632,"w":3.444,"clr":-1,"A":"left","R":[{"T":"Refund","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":34.614,"y":18.632,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":36.815,"y":18.632,"w":2.222,"clr":-1,"A":"left","R":[{"T":"EFW","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":41.115,"y":18.632,"w":5.39,"clr":-1,"A":"left","R":[{"T":"Payment%20of","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":50.858,"y":18.632,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Tax","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":54.299,"y":18.632,"w":1.889,"clr":-1,"A":"left","R":[{"T":"Due","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":58.507,"y":18.632,"w":12.668000000000003,"clr":-1,"A":"left","R":[{"T":"(Optional%20-%20See%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"x":6.346,"y":24.634,"w":2.9628,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":15.219,"y":45.38,"w":3.8852,"clr":-1,"A":"left","R":[{"T":"Preparer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.219,"y":45.942,"w":4.1085,"clr":-1,"A":"left","R":[{"T":"signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":96.275,"y":16.381,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":80.336,"y":12.633,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":80.336,"y":13.384,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":80.336,"y":15.634,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":80.336,"y":14.131,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":80.336,"y":14.883,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":96.275,"y":12.633,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":96.275,"y":14.131,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":96.275,"y":14.883,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":96.275,"y":15.634,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":71.315,"y":19.541,"w":18.4423,"clr":-1,"A":"left","R":[{"T":"The%20first%20two%20numbers%20of%20the%20RTN%20must","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":71.315,"y":20.103,"w":16.396400000000007,"clr":-1,"A":"left","R":[{"T":"be%2001%20through%2012%20or%2021%20through%2032.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":14.192,"y":21.521,"w":14.3979,"clr":-1,"A":"left","R":[{"T":"10.%20Bank%20account%20number%20(BAN)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.271,"y":45.042,"w":2.1052,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.598,"y":41.667,"w":3.6016,"clr":-1,"A":"left","R":[{"T":"Check%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":60.598,"y":42.117,"w":4.001100000000001,"clr":-1,"A":"left","R":[{"T":"also%20paid","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":60.598,"y":42.567,"w":3.7694000000000005,"clr":-1,"A":"left","R":[{"T":"preparer","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":70.696,"y":45.047,"w":2.8245,"clr":-1,"A":"left","R":[{"T":"Check","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":70.696,"y":45.497,"w":2.6774000000000004,"clr":-1,"A":"left","R":[{"T":"if%20self-","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":70.696,"y":45.947,"w":4.331,"clr":-1,"A":"left","R":[{"T":"employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":87.959,"y":45.047,"w":2.2888,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":15.219,"y":46.59,"w":6.283200000000001,"clr":-1,"A":"left","R":[{"T":"Firm%20name%20(or","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":15.219,"y":47.04,"w":10.048799999999998,"clr":-1,"A":"left","R":[{"T":"yours%20if%20self-employed)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":15.219,"y":47.49,"w":5.4876,"clr":-1,"A":"left","R":[{"T":"and%20address","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":72.973,"y":47.445,"w":4.005999999999999,"clr":-1,"A":"left","R":[{"T":"ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":5.938,"y":31.637,"w":0.2777,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.742,"y":31.637,"w":3.2769000000000004,"clr":-1,"A":"left","R":[{"T":"declare","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.709,"y":31.637,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.429,"y":31.637,"w":0.2777,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.234,"y":31.637,"w":2.1668000000000003,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.655,"y":31.637,"w":4.4436,"clr":-1,"A":"left","R":[{"T":"compared","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.23,"y":31.637,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.565,"y":31.637,"w":4.942699999999999,"clr":-1,"A":"left","R":[{"T":"information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.801,"y":31.637,"w":1.6098000000000001,"clr":-1,"A":"left","R":[{"T":"(inc","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.019,"y":31.637,"w":2.6674000000000007,"clr":-1,"A":"left","R":[{"T":"luding","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.142,"y":31.637,"w":2.4444,"clr":-1,"A":"left","R":[{"T":"direct","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.959,"y":31.637,"w":3.223300000000001,"clr":-1,"A":"left","R":[{"T":"deposit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.841,"y":31.637,"w":0.8888,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.488,"y":31.637,"w":2.2217000000000002,"clr":-1,"A":"left","R":[{"T":"EFW","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.972,"y":31.637,"w":2.2785,"clr":-1,"A":"left","R":[{"T":"data)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.536,"y":31.637,"w":1.1118000000000001,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.492,"y":31.637,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.752,"y":31.637,"w":2.6114000000000006,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":66.787,"y":31.637,"w":1.7776,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":69.656,"y":31.637,"w":1.3903,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":71.993,"y":31.637,"w":4.9471,"clr":-1,"A":"left","R":[{"T":"information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.235,"y":31.637,"w":0.2781,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":80.052,"y":31.637,"w":2.1684,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.474,"y":31.637,"w":3.8358,"clr":-1,"A":"left","R":[{"T":"provided","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.201,"y":31.637,"w":0.8342,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":90.78,"y":31.637,"w":1.3332,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":93.041,"y":31.637,"w":4.279999999999999,"clr":-1,"A":"left","R":[{"T":"electronic","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.937,"y":32.136,"w":2.6108000000000002,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.996,"y":32.136,"w":4.166,"clr":-1,"A":"left","R":[{"T":"originator","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.205,"y":32.136,"w":2.8320000000000003,"clr":-1,"A":"left","R":[{"T":"(ERO)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.547,"y":32.136,"w":1.6674000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.309,"y":32.136,"w":1.3894000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.681,"y":32.136,"w":3.8336000000000006,"clr":-1,"A":"left","R":[{"T":"amounts","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.431,"y":32.136,"w":2.5560000000000005,"clr":-1,"A":"left","R":[{"T":"agree","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.427,"y":32.136,"w":1.7776,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.33,"y":32.136,"w":1.3897000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.703,"y":32.136,"w":3.8343000000000007,"clr":-1,"A":"left","R":[{"T":"amounts","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.454,"y":32.136,"w":1.1118000000000001,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":48.447,"y":32.136,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.733,"y":32.136,"w":1.3888,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.092,"y":32.136,"w":1.3337,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.39,"y":32.136,"w":2.8893000000000004,"clr":-1,"A":"left","R":[{"T":"return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.835,"y":32.136,"w":1.1668,"clr":-1,"A":"left","R":[{"T":"To","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.9,"y":32.136,"w":1.3897000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":64.273,"y":32.136,"w":1.8896000000000002,"clr":-1,"A":"left","R":[{"T":"best","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.349,"y":32.136,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.959,"y":32.136,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":71.256,"y":32.136,"w":5.057000000000001,"clr":-1,"A":"left","R":[{"T":"knowledge%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.705,"y":32.136,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.003,"y":32.136,"w":2.6114000000000006,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":85.062,"y":32.136,"w":0.7218,"clr":-1,"A":"left","R":[{"T":"is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.52,"y":32.136,"w":1.7226000000000001,"clr":-1,"A":"left","R":[{"T":"true","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.352,"y":32.136,"w":1.6677000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":92.114,"y":32.136,"w":4.3341,"clr":-1,"A":"left","R":[{"T":"complete.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":98.559,"y":32.136,"w":0.27790000000000004,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.937,"y":32.636,"w":3.4957,"clr":-1,"A":"left","R":[{"T":"consent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.253,"y":32.636,"w":1.6644,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.008,"y":32.636,"w":1.3312,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.316,"y":32.636,"w":2.6066,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.37,"y":32.636,"w":1.6653000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.143,"y":32.636,"w":6.436200000000001,"clr":-1,"A":"left","R":[{"T":"accompanying","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.51,"y":32.636,"w":3.4396999999999998,"clr":-1,"A":"left","R":[{"T":"schedul","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.246,"y":32.636,"w":1.0556,"clr":-1,"A":"left","R":[{"T":"es","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.215,"y":32.636,"w":1.6674000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.989,"y":32.636,"w":4.889000000000001,"clr":-1,"A":"left","R":[{"T":"statements","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.194,"y":32.636,"w":1.1116000000000001,"clr":-1,"A":"left","R":[{"T":"be","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.2,"y":32.636,"w":1.8892000000000002,"clr":-1,"A":"left","R":[{"T":"sent","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.275,"y":32.636,"w":0.8336000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.892,"y":32.636,"w":1.3894000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.277,"y":32.636,"w":3.3334000000000006,"clr":-1,"A":"left","R":[{"T":"Internal","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":63.335,"y":32.636,"w":1.7774,"clr":-1,"A":"left","R":[{"T":"Rev","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.782,"y":32.636,"w":2.2228000000000003,"clr":-1,"A":"left","R":[{"T":"enue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":69.337,"y":32.636,"w":3.3319,"clr":-1,"A":"left","R":[{"T":"Service","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.4,"y":32.636,"w":2.3315,"clr":-1,"A":"left","R":[{"T":"(IRS)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.07,"y":32.636,"w":1.0554000000000001,"clr":-1,"A":"left","R":[{"T":"by","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.989,"y":32.636,"w":1.3324,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":82.299,"y":32.636,"w":2.4438,"clr":-1,"A":"left","R":[{"T":"ERO%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.12,"y":32.636,"w":1.6671000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":88.882,"y":32.636,"w":5.8884,"clr":-1,"A":"left","R":[{"T":"subsequently","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":97.501,"y":32.636,"w":1.0554000000000001,"clr":-1,"A":"left","R":[{"T":"by","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":33.135,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.236,"y":33.135,"w":2.4995000000000003,"clr":-1,"A":"left","R":[{"T":"IRSto","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.056,"y":33.135,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.355,"y":33.135,"w":6.8871,"clr":-1,"A":"left","R":[{"T":"SC%20Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.231,"y":33.135,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.767,"y":33.135,"w":4.2776000000000005,"clr":-1,"A":"left","R":[{"T":"Revenue.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.445,"y":33.135,"w":1.333,"clr":-1,"A":"left","R":[{"T":"Do","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":34.663,"y":33.135,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":37.185,"y":33.135,"w":3.278,"clr":-1,"A":"left","R":[{"T":"submit","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":42.084,"y":33.135,"w":1.778,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":44.913,"y":33.135,"w":2.222,"clr":-1,"A":"left","R":[{"T":"form","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":48.353,"y":33.135,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":50.038,"y":33.135,"w":1.5,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":52.488,"y":33.135,"w":6.945,"clr":-1,"A":"left","R":[{"T":"SCDepartment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":62.439,"y":33.135,"w":0.944,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":64.121,"y":33.135,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Revenue.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":71.019,"y":33.135,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"Keep","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":74.775,"y":33.135,"w":4.167,"clr":-1,"A":"left","R":[{"T":"withyour","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":80.889,"y":33.135,"w":3.946,"clr":-1,"A":"left","R":[{"T":"records.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.938,"y":42.162,"w":2.9625000000000004,"clr":-1,"A":"left","R":[{"T":"ERO's","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":5.938,"y":42.914,"w":1.8289,"clr":-1,"A":"left","R":[{"T":"Use","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":5.938,"y":43.661,"w":2.231,"clr":-1,"A":"left","R":[{"T":"Only","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":52.95,"y":41.667,"w":2.1052,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.696,"y":41.672,"w":3.6016,"clr":-1,"A":"left","R":[{"T":"Check%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":70.696,"y":42.122,"w":1.8880000000000001,"clr":-1,"A":"left","R":[{"T":"self-","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":70.696,"y":42.572,"w":4.331,"clr":-1,"A":"left","R":[{"T":"employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":73.802,"y":44.07,"w":4.005999999999999,"clr":-1,"A":"left","R":[{"T":"ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":87.959,"y":41.672,"w":2.2888,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":14.192,"y":42.009,"w":2.176,"clr":-1,"A":"left","R":[{"T":"ERO","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":42.572,"w":4.1085,"clr":-1,"A":"left","R":[{"T":"signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":43.215,"w":6.283200000000001,"clr":-1,"A":"left","R":[{"T":"Firm%20name%20(or","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":14.192,"y":43.665,"w":10.048799999999998,"clr":-1,"A":"left","R":[{"T":"yours%20if%20self-employed)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":14.192,"y":44.115,"w":5.4876,"clr":-1,"A":"left","R":[{"T":"and%20address","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":99.716,"y":8.731,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.641,"y":9.632,"w":0.778,"clr":-1,"A":"left","R":[{"T":"O","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":11.432,"w":0.722,"clr":-1,"A":"left","R":[{"T":"N","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.641,"y":12.331,"w":0.778,"clr":-1,"A":"left","R":[{"T":"O","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.864,"y":13.232,"w":0.611,"clr":-1,"A":"left","R":[{"T":"T","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.567,"y":15.032,"w":0.833,"clr":-1,"A":"left","R":[{"T":"M","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":15.931999999999999,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":100.322,"y":16.832,"w":0.278,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.864,"y":17.732,"w":0.611,"clr":-1,"A":"left","R":[{"T":"L","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":25.832,"w":0.722,"clr":-1,"A":"left","R":[{"T":"K","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.79,"y":26.732,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.79,"y":27.632,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.79,"y":28.532,"w":0.667,"clr":-1,"A":"left","R":[{"T":"P","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.864,"y":30.332,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.641,"y":31.232,"w":0.778,"clr":-1,"A":"left","R":[{"T":"O","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":32.132,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.79,"y":33.932,"w":0.667,"clr":-1,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.641,"y":34.832,"w":0.778,"clr":-1,"A":"left","R":[{"T":"O","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":35.732,"w":0.722,"clr":-1,"A":"left","R":[{"T":"U","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":36.632,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":38.432,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.79,"y":39.332,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":40.232,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.641,"y":41.132,"w":0.778,"clr":-1,"A":"left","R":[{"T":"O","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":42.032,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.716,"y":42.932,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":99.79,"y":43.832,"w":0.667,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,20,1,0]}]},{"oc":"#231f20","x":5.938,"y":17.021,"w":40.51250000000011,"clr":-1,"A":"left","R":[{"T":"7.%20Refund%20(SC1040%2C%20line%2030)%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":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":68.593,"y":17.021,"w":6.186400000000002,"clr":-1,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":80.336,"y":16.381,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":96.275,"y":17.885,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":12.125,"y":25.463,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":14.024,"w":37.74199999999992,"clr":-1,"A":"left","R":[{"T":"3.%20Use%20Tax%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":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.273,"y":14.024,"w":9.560800000000002,"clr":-1,"A":"left","R":[{"T":".%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":"#231f20","x":79.779,"y":17.133,"w":0.8404,"clr":-1,"A":"left","R":[{"T":"%207","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":79.779,"y":17.884,"w":0.8404,"clr":-1,"A":"left","R":[{"T":"%208","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":5.938,"y":14.77,"w":37.63099999999992,"clr":-1,"A":"left","R":[{"T":"4.%20Total%20Tax%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":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.107,"y":14.77,"w":9.279600000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":96.275,"y":13.384,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":96.275,"y":17.133,"w":1.1096000000000001,"clr":-1,"A":"left","R":[{"T":"00","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":14.192,"y":23.771,"w":18.00610000000003,"clr":-1,"A":"left","R":[{"T":"12.%20Withdrawal%20Date%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":"#231f20","x":42.039,"y":23.771,"w":18.5163,"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%20Withdrawal%20Amount%20%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":77.78,"y":26.516,"w":0.5556000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.036,"y":26.516,"w":1.1112000000000002,"clr":-1,"A":"left","R":[{"T":"an","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.067,"y":26.516,"w":4.386,"clr":-1,"A":"left","R":[{"T":"Electronic","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":87.604,"y":26.516,"w":2.777,"clr":-1,"A":"left","R":[{"T":"Funds","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.923,"y":26.516,"w":4.941,"clr":-1,"A":"left","R":[{"T":"Withdrawal","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":27.015,"w":4.5037,"clr":-1,"A":"left","R":[{"T":"(payment)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.806,"y":27.015,"w":2.2245,"clr":-1,"A":"left","R":[{"T":"entry","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.285,"y":27.015,"w":0.8346,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.84,"y":27.015,"w":1.3336,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.076,"y":27.015,"w":3.6707000000000005,"clr":-1,"A":"left","R":[{"T":"financial","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.562,"y":27.015,"w":4.2273000000000005,"clr":-1,"A":"left","R":[{"T":"institution","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.803,"y":27.015,"w":0.5563,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.571,"y":27.015,"w":2.9454000000000002,"clr":-1,"A":"left","R":[{"T":"ccount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.054,"y":27.015,"w":4.891000000000001,"clr":-1,"A":"left","R":[{"T":"designated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.224,"y":27.015,"w":0.7778,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.706,"y":27.015,"w":1.8336000000000001,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.625,"y":27.015,"w":0.5558000000000001,"clr":-1,"A":"left","R":[{"T":"II","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.796,"y":27.015,"w":1.1667,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.81,"y":27.015,"w":3.8343000000000007,"clr":-1,"A":"left","R":[{"T":"payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.508,"y":27.015,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.068,"y":27.015,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":69.316,"y":27.015,"w":0.6669,"clr":-1,"A":"left","R":[{"T":"S","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.231,"y":27.015,"w":1.9428,"clr":-1,"A":"left","R":[{"T":"outh","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.302,"y":27.015,"w":3.7166000000000006,"clr":-1,"A":"left","R":[{"T":"Carolina","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.841,"y":27.015,"w":2.386,"clr":-1,"A":"left","R":[{"T":"taxes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":82.552,"y":27.015,"w":2.664,"clr":-1,"A":"left","R":[{"T":"owed%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.626,"y":27.015,"w":1.6656,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.337,"y":27.015,"w":1.2196,"clr":-1,"A":"left","R":[{"T":"(2)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.416,"y":27.015,"w":1.3314,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":93.663,"y":27.015,"w":3.6608000000000005,"clr":-1,"A":"left","R":[{"T":"financial","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":27.515,"w":4.2262,"clr":-1,"A":"left","R":[{"T":"institution","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.431,"y":27.515,"w":0.8344,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.999,"y":27.515,"w":2.169,"clr":-1,"A":"left","R":[{"T":"debit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.405,"y":27.515,"w":1.3906,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.741,"y":27.515,"w":2.224,"clr":-1,"A":"left","R":[{"T":"entry","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.232,"y":27.515,"w":0.8344,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.787,"y":27.515,"w":1.3334,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.048,"y":27.515,"w":3.7816,"clr":-1,"A":"left","R":[{"T":"account.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.69,"y":27.515,"w":0.2782,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.495,"y":27.515,"w":0.7784,"clr":-1,"A":"left","R":[{"T":"al","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.574,"y":27.515,"w":1.0552000000000001,"clr":-1,"A":"left","R":[{"T":"so","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.452,"y":27.515,"w":4.109400000000001,"clr":-1,"A":"left","R":[{"T":"authorize","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.552,"y":27.515,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.875,"y":27.515,"w":3.6644000000000005,"clr":-1,"A":"left","R":[{"T":"financial","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.365,"y":27.515,"w":4.719200000000001,"clr":-1,"A":"left","R":[{"T":"institutions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.303,"y":27.515,"w":3.6648000000000005,"clr":-1,"A":"left","R":[{"T":"involved","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.807,"y":27.515,"w":0.7772000000000001,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.301,"y":27.515,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.624,"y":27.515,"w":4.831000000000001,"clr":-1,"A":"left","R":[{"T":"processing","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.738,"y":27.515,"w":0.8332000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.299,"y":27.515,"w":1.3322,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":85.559,"y":27.515,"w":4.275,"clr":-1,"A":"left","R":[{"T":"electronic","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.891,"y":27.515,"w":3.8322000000000007,"clr":-1,"A":"left","R":[{"T":"payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":97.598,"y":27.515,"w":0.8332000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.201,"y":28.514,"w":3.9957,"clr":-1,"A":"left","R":[{"T":"Revenue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.133,"y":28.514,"w":1.1102,"clr":-1,"A":"left","R":[{"T":"no","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.076,"y":28.514,"w":1.9405000000000001,"clr":-1,"A":"left","R":[{"T":"later","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.161,"y":28.514,"w":1.9424000000000001,"clr":-1,"A":"left","R":[{"T":"than","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.25,"y":28.514,"w":1.5533000000000001,"clr":-1,"A":"left","R":[{"T":"two","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.782,"y":28.514,"w":3.9388,"clr":-1,"A":"left","R":[{"T":"business","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":92.65,"y":28.514,"w":2.1084,"clr":-1,"A":"left","R":[{"T":"days","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":95.982,"y":28.514,"w":1.9955000000000003,"clr":-1,"A":"left","R":[{"T":"prior","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":29.013,"w":9.9576,"clr":-1,"A":"left","R":[{"T":"to%20the%20withdrawal%20(settl","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.888,"y":29.013,"w":16.546000000000006,"clr":-1,"A":"left","R":[{"T":"ement)%20date%20by%20calling%20803-896-1715.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":37.316,"w":0.2771,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.817,"y":37.316,"w":3.2727000000000004,"clr":-1,"A":"left","R":[{"T":"declare","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.852,"y":37.316,"w":1.6644,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.644,"y":37.316,"w":0.2771,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.536,"y":37.316,"w":2.1644,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.028,"y":37.316,"w":3.7717999999999994,"clr":-1,"A":"left","R":[{"T":"received","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.748,"y":37.316,"w":1.3873000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.168,"y":37.316,"w":2.7195,"clr":-1,"A":"left","R":[{"T":"above","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.428,"y":37.316,"w":4.517,"clr":-1,"A":"left","R":[{"T":"taxpayer's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.179,"y":37.316,"w":2.6066,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.27,"y":37.316,"w":1.6653000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.08,"y":37.316,"w":1.3873000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.487,"y":37.316,"w":2.9947000000000004,"clr":-1,"A":"left","R":[{"T":"entries","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.146,"y":37.316,"w":1.1110000000000002,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.188,"y":37.316,"w":1.5540000000000003,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.829,"y":37.316,"w":1.9980000000000002,"clr":-1,"A":"left","R":[{"T":"form","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.093,"y":37.316,"w":1.4435000000000002,"clr":-1,"A":"left","R":[{"T":"are","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.581,"y":37.316,"w":4.053000000000001,"clr":-1,"A":"left","R":[{"T":"complete","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.674,"y":37.316,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":71.485,"y":37.316,"w":3.0524999999999998,"clr":-1,"A":"left","R":[{"T":"correct","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.209,"y":37.316,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.863,"y":37.316,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":80.272,"y":37.316,"w":1.8880000000000003,"clr":-1,"A":"left","R":[{"T":"best","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.383,"y":37.316,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":85.042,"y":37.316,"w":1.332,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":87.376,"y":37.316,"w":5.053000000000001,"clr":-1,"A":"left","R":[{"T":"knowledge.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.869,"y":37.316,"w":0.2775,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":95.748,"y":37.316,"w":2.1660000000000004,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":37.878,"w":3.8303999999999996,"clr":-1,"A":"left","R":[{"T":"obtained","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.648,"y":37.878,"w":1.3879000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.97,"y":37.878,"w":4.518999999999999,"clr":-1,"A":"left","R":[{"T":"taxpayer's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.637,"y":37.878,"w":4.1067,"clr":-1,"A":"left","R":[{"T":"signature","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.734,"y":37.878,"w":1.1106,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.677,"y":37.878,"w":1.5532000000000001,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.242,"y":37.878,"w":1.9971999999999999,"clr":-1,"A":"left","R":[{"T":"form","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.419,"y":37.878,"w":1.3879000000000001,"clr":-1,"A":"left","R":[{"T":"bef","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.362,"y":37.878,"w":1.4441000000000002,"clr":-1,"A":"left","R":[{"T":"ore","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.77,"y":37.878,"w":4.554,"clr":-1,"A":"left","R":[{"T":"submitting","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.476,"y":37.878,"w":1.5548000000000002,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":48.044,"y":37.878,"w":2.6102,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.052,"y":37.878,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.619,"y":37.878,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.954,"y":37.878,"w":1.3884,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.264,"y":37.878,"w":5.221,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.886,"y":37.878,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.459,"y":37.878,"w":4.2776000000000005,"clr":-1,"A":"left","R":[{"T":"Revenue.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":73.781,"y":37.878,"w":0.2777,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.586,"y":37.878,"w":2.1668000000000003,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.007,"y":37.878,"w":3.8326000000000002,"clr":-1,"A":"left","R":[{"T":"provided","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.717,"y":37.878,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.052,"y":37.878,"w":3.8326000000000002,"clr":-1,"A":"left","R":[{"T":"taxpayer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.776,"y":37.878,"w":1.7768000000000002,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.629,"y":37.878,"w":0.5557000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":95.817,"y":37.878,"w":2.1108000000000002,"clr":-1,"A":"left","R":[{"T":"copy","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":38.441,"w":0.8344,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":7.524,"y":38.441,"w":1.0006,"clr":-1,"A":"left","R":[{"T":"all","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.342,"y":38.441,"w":2.501,"clr":-1,"A":"left","R":[{"T":"forms","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":13.223,"y":38.441,"w":1.6686,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.949000000000002,"y":38.441,"w":4.9482,"clr":-1,"A":"left","R":[{"T":"information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.204,"y":38.441,"w":0.8344,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.784,"y":38.441,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"be","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.753,"y":38.441,"w":1.835,"clr":-1,"A":"left","R":[{"T":"filed","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.716,"y":38.441,"w":1.7788,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.596,"y":38.441,"w":1.3906,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.945,"y":38.441,"w":1.6676,"clr":-1,"A":"left","R":[{"T":"IRS","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.654,"y":38.441,"w":1.6686,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.392,"y":38.441,"w":1.3906,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.741,"y":38.441,"w":1.3894,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.076,"y":38.441,"w":5.226000000000001,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.74,"y":38.441,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":54.325,"y":38.441,"w":4.2752,"clr":-1,"A":"left","R":[{"T":"Revenue%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.657,"y":38.441,"w":1.6662,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":63.392,"y":38.441,"w":2.1656,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":66.825,"y":38.441,"w":3.6632000000000002,"clr":-1,"A":"left","R":[{"T":"followed","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.31,"y":38.441,"w":0.9982000000000001,"clr":-1,"A":"left","R":[{"T":"all","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.126,"y":38.441,"w":2.276,"clr":-1,"A":"left","R":[{"T":"other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.699,"y":38.441,"w":5.8278,"clr":-1,"A":"left","R":[{"T":"requirements","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.18,"y":38.441,"w":4.3296,"clr":-1,"A":"left","R":[{"T":"described","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":92.596,"y":38.441,"w":0.7768,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.102,"y":38.441,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":96.448,"y":38.441,"w":1.6652,"clr":-1,"A":"left","R":[{"T":"IRS","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":39.003,"w":2.0566000000000004,"clr":-1,"A":"left","R":[{"T":"Pub.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.203,"y":39.003,"w":2.2236000000000002,"clr":-1,"A":"left","R":[{"T":"1345","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.696,"y":39.003,"w":4.779000000000002,"clr":-1,"A":"left","R":[{"T":"Authorized","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.724,"y":39.003,"w":1.6667,"clr":-1,"A":"left","R":[{"T":"IRS","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.433,"y":39.003,"w":2.1664000000000003,"clr":-1,"A":"left","R":[{"T":"e-file","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.853,"y":39.003,"w":4.2221,"clr":-1,"A":"left","R":[{"T":"Providers","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.105,"y":39.003,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.691,"y":39.003,"w":4.223000000000001,"clr":-1,"A":"left","R":[{"T":"Individual","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.952,"y":39.003,"w":3.2784000000000004,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.913,"y":39.003,"w":1.6667,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.635,"y":39.003,"w":2.4445,"clr":-1,"A":"left","R":[{"T":"Retur","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.001,"y":39.003,"w":1.3328000000000002,"clr":-1,"A":"left","R":[{"T":"ns%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.289,"y":39.003,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.013,"y":39.003,"w":5.8302000000000005,"clr":-1,"A":"left","R":[{"T":"requirements","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":64.496,"y":39.003,"w":3.9424000000000006,"clr":-1,"A":"left","R":[{"T":"specified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.373,"y":39.003,"w":1.0552000000000001,"clr":-1,"A":"left","R":[{"T":"by","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.267,"y":39.003,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.602,"y":39.003,"w":1.3882,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.935,"y":39.003,"w":5.22,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.557,"y":39.003,"w":0.8332000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.142,"y":39.003,"w":4.276800000000001,"clr":-1,"A":"left","R":[{"T":"Revenue.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":92.488,"y":39.003,"w":0.5552,"clr":-1,"A":"left","R":[{"T":"If","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":93.671,"y":39.003,"w":0.2776,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.488,"y":39.003,"w":1.3882,"clr":-1,"A":"left","R":[{"T":"am","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":96.828,"y":39.003,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":39.566,"w":4.0489,"clr":-1,"A":"left","R":[{"T":"preparer%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.003,"y":39.566,"w":0.2771,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.845,"y":39.566,"w":3.2727000000000004,"clr":-1,"A":"left","R":[{"T":"declare","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.843,"y":39.566,"w":1.6644,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":20.611,"y":39.566,"w":0.2771,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.465,"y":39.566,"w":2.1644,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.92,"y":39.566,"w":4.3278,"clr":-1,"A":"left","R":[{"T":"examined","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.374,"y":39.566,"w":1.3873000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.757,"y":39.566,"w":2.7195,"clr":-1,"A":"left","R":[{"T":"above","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":37.992,"y":39.566,"w":4.517,"clr":-1,"A":"left","R":[{"T":"taxpayer's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.694,"y":39.566,"w":2.6066,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":48.761,"y":39.566,"w":1.6653000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.938,"y":40.128,"w":1.8880000000000003,"clr":-1,"A":"left","R":[{"T":"they","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.139,"y":40.128,"w":1.4435000000000002,"clr":-1,"A":"left","R":[{"T":"are","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.727,"y":40.128,"w":1.7210000000000003,"clr":-1,"A":"left","R":[{"T":"true","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.706,"y":40.128,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.603,"y":40.128,"w":4.330500000000001,"clr":-1,"A":"left","R":[{"T":"complete.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.18,"y":40.128,"w":1.8870000000000002,"clr":-1,"A":"left","R":[{"T":"This","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":27.38,"y":40.128,"w":4.8855,"clr":-1,"A":"left","R":[{"T":"declaration","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.726,"y":40.128,"w":0.721,"clr":-1,"A":"left","R":[{"T":"is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":36.332,"y":40.128,"w":2.7215000000000007,"clr":-1,"A":"left","R":[{"T":"based","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.693,"y":40.128,"w":1.1110000000000002,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.822,"y":40.128,"w":0.9985000000000002,"clr":-1,"A":"left","R":[{"T":"all","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.799,"y":40.128,"w":4.940500000000001,"clr":-1,"A":"left","R":[{"T":"information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.206,"y":40.128,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.964,"y":40.128,"w":2.5535000000000005,"clr":-1,"A":"left","R":[{"T":"which","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.088,"y":40.128,"w":0.2775,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.066,"y":40.128,"w":2.1660000000000004,"clr":-1,"A":"left","R":[{"T":"have","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.659,"y":40.128,"w":5.053000000000001,"clr":-1,"A":"left","R":[{"T":"knowledge.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.263,"y":40.128,"w":0.27830000000000005,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":71.253,"y":40.128,"w":5.4479999999999995,"clr":-1,"A":"left","R":[{"T":"understand","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":79.351,"y":40.128,"w":0.27830000000000005,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":80.328,"y":40.128,"w":1.2226,"clr":-1,"A":"left","R":[{"T":"do","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":82.605,"y":40.128,"w":1.5558999999999998,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":85.338,"y":40.128,"w":2.0022,"clr":-1,"A":"left","R":[{"T":"mail","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":88.707,"y":40.128,"w":1.7792000000000001,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":91.748,"y":40.128,"w":2.5015000000000005,"clr":-1,"A":"left","R":[{"T":"form.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":95.788,"y":40.128,"w":0.27830000000000005,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":96.766,"y":40.128,"w":1.4456,"clr":-1,"A":"left","R":[{"T":"am","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.938,"y":40.691,"w":36.292600000000014,"clr":-1,"A":"left","R":[{"T":"required%20to%20keep%20this%20form%20and%20the%20supporting%20documents%20for%20three%20(3)%20years.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":11.036,"y":2.148,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":11.036,"y":2.148,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":41.578,"y":2.472,"w":14.030400000000002,"clr":-1,"A":"left","R":[{"T":"STATE%20OF%20SOUTH%20CAROLINA","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":40.427,"y":3.219,"w":13.998799999999996,"clr":-1,"A":"left","R":[{"T":"DEPARTMENT%20OF%20%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":84.457,"y":3.9349999999999996,"w":6.334600000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%207%2F23%2F10)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":86.367,"y":4.758,"w":3.062900000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%203299","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":39.635,"y":4.061,"w":12.5252,"clr":-1,"A":"left","R":[{"T":"INDIVIDUAL%20INCOME%20TAX%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":31.950000000000003,"y":4.879,"w":19.9703,"clr":-1,"A":"left","R":[{"T":"DECLARATION%20FOR%20ELECTRONIC%20FILING","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":83.777,"y":3.057,"w":3.6087999999999996,"clr":-1,"A":"left","R":[{"T":"SC8453","S":-1,"TS":[0,22,1,0]}]},{"oc":"#231f20","x":70.708,"y":43.328,"w":2.2888,"clr":-1,"A":"left","R":[{"T":"FEIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":70.696,"y":46.68,"w":2.2888,"clr":-1,"A":"left","R":[{"T":"FEIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":5.938,"y":15.521999999999998,"w":44.76170000000005,"clr":-1,"A":"left","R":[{"T":"5.%20SC%20Income%20Tax%20Withheld%20(SC1040%2C%20lines%2016%20%26%2020)%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":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":14.192,"y":22.645,"w":9.095000000000002,"clr":-1,"A":"left","R":[{"T":"11.%20Type%20of%20account%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.945,"y":22.645,"w":4.1816,"clr":-1,"A":"left","R":[{"T":"Checking","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":47.743,"y":22.645,"w":3.5689,"clr":-1,"A":"left","R":[{"T":"Savings","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":14.192,"y":25.967,"w":54.63599999999996,"clr":-1,"A":"left","R":[{"T":"correct.%20If%20I%20have%20filed%20a%20joint%20return%2C%20this%20is%20an%20irrevocable%20appointment%20of%20the%20other%20spouse%20as%20an%20agent%20to%20receive%20the%20refund.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":12.125,"y":26.516,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.193,"y":26.516,"w":0.2775,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":15.059,"y":26.516,"w":4.1085,"clr":-1,"A":"left","R":[{"T":"authorize","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.22,"y":26.516,"w":1.2205000000000001,"clr":-1,"A":"left","R":[{"T":"(1)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.387,"y":26.516,"w":1.3885000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.796,"y":26.516,"w":2.6105,"clr":-1,"A":"left","R":[{"T":"South","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.872,"y":26.516,"w":3.7190000000000003,"clr":-1,"A":"left","R":[{"T":"Carolina","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":35.488,"y":26.516,"w":5.219,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.169,"y":26.516,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.816,"y":26.516,"w":3.998500000000001,"clr":-1,"A":"left","R":[{"T":"Revenue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":50.826,"y":26.516,"w":1.6665000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.612,"y":26.516,"w":0.9984999999999999,"clr":-1,"A":"left","R":[{"T":"its","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.472,"y":26.516,"w":4.887000000000001,"clr":-1,"A":"left","R":[{"T":"designated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":62.71,"y":26.516,"w":3.6635,"clr":-1,"A":"left","R":[{"T":"financial","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.272,"y":26.516,"w":2.999,"clr":-1,"A":"left","R":[{"T":"agents","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":72.898,"y":26.516,"w":0.8330000000000002,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.526,"y":26.516,"w":2.3305000000000002,"clr":-1,"A":"left","R":[{"T":"initiat","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":28.014,"w":2.387,"clr":-1,"A":"left","R":[{"T":"taxes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":17.941,"y":28.014,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.532,"y":28.014,"w":3.2188000000000003,"clr":-1,"A":"left","R":[{"T":"receive","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.437,"y":28.014,"w":5.0508,"clr":-1,"A":"left","R":[{"T":"confidential","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":31.863999999999997,"y":28.014,"w":4.9394,"clr":-1,"A":"left","R":[{"T":"information","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.121,"y":28.014,"w":4.5516,"clr":-1,"A":"left","R":[{"T":"necessary","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":45.878,"y":28.014,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.481,"y":28.014,"w":3.2194000000000003,"clr":-1,"A":"left","R":[{"T":"answer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.376,"y":28.014,"w":3.7176,"clr":-1,"A":"left","R":[{"T":"inquiries","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.962,"y":28.014,"w":1.6662,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.709,"y":28.014,"w":3.2188000000000003,"clr":-1,"A":"left","R":[{"T":"resolve","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.614,"y":28.014,"w":2.8304,"clr":-1,"A":"left","R":[{"T":"issues","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":69.986,"y":28.014,"w":3.0528000000000004,"clr":-1,"A":"left","R":[{"T":"related","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.645,"y":28.014,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.235,"y":28.014,"w":1.3317999999999999,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":78.532,"y":28.014,"w":4.1082,"clr":-1,"A":"left","R":[{"T":"payment.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.653,"y":28.014,"w":2.7199999999999998,"clr":-1,"A":"left","R":[{"T":"Under","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":88.851,"y":28.014,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.21,"y":28.014,"w":2.386,"clr":-1,"A":"left","R":[{"T":"items","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.946,"y":28.014,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":96.543,"y":28.014,"w":1.5536,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":28.514,"w":5.998800000000001,"clr":-1,"A":"left","R":[{"T":"authorization%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.888,"y":28.514,"w":0.2777,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":23.667,"y":28.514,"w":1.6111000000000002,"clr":-1,"A":"left","R":[{"T":"can","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.308,"y":28.514,"w":2.9992,"clr":-1,"A":"left","R":[{"T":"revoke","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.872,"y":28.514,"w":1.5548000000000002,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":33.427,"y":28.514,"w":5.721100000000001,"clr":-1,"A":"left","R":[{"T":"authorization","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":41.737,"y":28.514,"w":1.0554000000000001,"clr":-1,"A":"left","R":[{"T":"by","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.607,"y":28.514,"w":3.7213000000000003,"clr":-1,"A":"left","R":[{"T":"notifying","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.154,"y":28.514,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.476,"y":28.514,"w":2.6115000000000004,"clr":-1,"A":"left","R":[{"T":"South","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.465,"y":28.514,"w":3.7206,"clr":-1,"A":"left","R":[{"T":"Carolina","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.009,"y":28.514,"w":5.221,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.618,"y":28.514,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":5.937,"y":30.786,"w":31.743800000000014,"clr":-1,"A":"left","R":[{"T":"remain%20liable%20for%20the%20tax%20liability%20and%20all%20applicable%20interest%20and%20penalties.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":14.192,"y":36.632,"w":5.448200000000001,"clr":-1,"A":"left","R":[{"T":"Declaration","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":24.034,"y":36.632,"w":0.9443999999999999,"clr":-1,"A":"left","R":[{"T":"of","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":26.136,"y":36.632,"w":8.3384,"clr":-1,"A":"left","R":[{"T":"Electronic%20Return","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":40.949,"y":36.632,"w":10.005,"clr":-1,"A":"left","R":[{"T":"Originator%20(ERO)%20and","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":58.628,"y":36.632,"w":2.1128,"clr":-1,"A":"left","R":[{"T":"Paid","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":62.742,"y":36.632,"w":4.1146,"clr":-1,"A":"left","R":[{"T":"Preparer","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":51.552,"y":39.566,"w":6.436200000000001,"clr":-1,"A":"left","R":[{"T":"accompanying","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":60.932,"y":39.566,"w":4.4939,"clr":-1,"A":"left","R":[{"T":"schedules","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":67.617,"y":39.566,"w":1.6653000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":70.389,"y":39.566,"w":5.1591000000000005,"clr":-1,"A":"left","R":[{"T":"statements%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.985,"y":39.566,"w":1.6653000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":80.744,"y":39.566,"w":0.8322,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":82.359,"y":39.566,"w":1.3873000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":84.742,"y":39.566,"w":1.8864,"clr":-1,"A":"left","R":[{"T":"best","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":87.826,"y":39.566,"w":0.8322,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.435,"y":39.566,"w":1.3312,"clr":-1,"A":"left","R":[{"T":"my","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":91.743,"y":39.566,"w":5.049,"clr":-1,"A":"left","R":[{"T":"knowledge%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.231,"y":20.106,"w":5.4658,"clr":-1,"A":"left","R":[{"T":"COPIES%20OF","S":-1,"TS":[0,10.000000000000071,0,0]}]},{"oc":"#231f20","x":5.082,"y":20.795,"w":6.509600000000001,"clr":-1,"A":"left","R":[{"T":"STATE%20W-2(s)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":9.277,"y":21.979,"w":2.7744,"clr":-1,"A":"left","R":[{"T":"HERE","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.374,"y":21.42,"w":5.3448,"clr":-1,"A":"left","R":[{"T":"and%201099(s)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":294,"AM":1024,"x":13.108,"y":6.691,"w":29.013,"h":0.833,"TU":"Your first name and initial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLNAME","EN":0},"TI":295,"AM":1024,"x":42.906,"y":6.691,"w":32.97,"h":0.833,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":296,"AM":1024,"x":76.54,"y":6.701,"w":22.424,"h":0.833,"TU":"Your social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":297,"AM":1024,"x":13.403,"y":8.14,"w":28.35,"h":0.833,"TU":"If joint return, spouse's first name and initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":298,"AM":1024,"x":42.88,"y":8.14,"w":32.971,"h":0.836,"TU":"Last name, if different."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":299,"AM":1024,"x":76.485,"y":8.111,"w":22.574,"h":0.852,"TU":"Spouse's social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":300,"AM":1024,"x":12.722,"y":9.701,"w":46.631,"h":0.833,"TU":"Home address (number and street, apt. number, or RR)."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":301,"AM":1024,"x":59.687,"y":9.734,"w":16.619,"h":0.833,"TU":"Daytime telephone number."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TAXYR","EN":0},"TI":302,"AM":1024,"x":76.597,"y":9.759,"w":22.456,"h":2.892,"TU":"Tax Year","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":303,"AM":1024,"x":12.828,"y":11.193,"w":36.885,"h":0.833,"TU":"City, town, or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":304,"AM":1024,"x":50.714,"y":11.221,"w":10.199,"h":0.833,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":305,"AM":1024,"x":62.229,"y":11.18,"w":13.506,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":306,"AM":1024,"x":82.55,"y":12.806,"w":13.139,"h":0.833,"TU":"Line 1. Federal taxable income (SC1040, line 1)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":307,"AM":1024,"x":82.517,"y":13.555,"w":13.139,"h":0.833,"TU":"Line 2. Net SC tax (SC1040, line 15)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":308,"AM":1024,"x":82.652,"y":14.269,"w":13.139,"h":0.833,"TU":"Line 3. Use Tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":309,"AM":1024,"x":82.727,"y":15.081,"w":13.139,"h":0.833,"TU":"Line 4. Total Tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":310,"AM":1024,"x":82.682,"y":15.848,"w":13.139,"h":0.833,"TU":"Line 5. SC Income Tax Withheld (SC1040, lines 16 & 20)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":311,"AM":1024,"x":82.756,"y":16.534,"w":13.139,"h":0.833,"TU":"Line 6. Tuition Tax Credit (SC1040, line 21)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":312,"AM":1024,"x":82.719,"y":17.311,"w":13.139,"h":0.833,"TU":"Line 7. Refund (SC1040, line 30)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":313,"AM":1024,"x":82.794,"y":18.06,"w":13.139,"h":0.833,"TU":"Line 8. Amount you owe (SC1040, line 34)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":314,"AM":0,"x":41.289,"y":19.952,"w":28.225,"h":1.057,"TU":"Line 9. Routing Number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DAN","EN":0},"TI":315,"AM":0,"x":44.309,"y":21.416,"w":54.064,"h":1.107,"TU":"Line 10. Bank Account Number.","MV":"maxl:17"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"WDDATE","EN":0},"TI":318,"AM":0,"x":29.377,"y":23.765,"w":18.683,"h":0.833,"TU":"Line 12. Withdrawal Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WDAMT","EN":0},"TI":319,"AM":0,"x":71.683,"y":23.609,"w":18.808,"h":0.839,"TU":"Withdrawal Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":322,"AM":1024,"x":28.523,"y":46.884,"w":41.514,"h":0.833,"V":"SELF PREPARED"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8XC","EN":0},"TI":316,"AM":0,"x":34.514,"y":22.845,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8XS","EN":0},"TI":317,"AM":0,"x":45.829,"y":22.887,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"L8XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DDBOX1","EN":0},"TI":320,"AM":0,"x":10.204,"y":25.602,"w":1.821,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DDBOX3","EN":0},"TI":321,"AM":0,"x":10.207,"y":26.551,"w":1.746,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/sc/form/VOUCHEF.content.txt b/test/data/sc/form/VOUCHEF.content.txt new file mode 100755 index 00000000..a274255b --- /dev/null +++ b/test/data/sc/form/VOUCHEF.content.txt @@ -0,0 +1,103 @@ +SC1040-V must be used to pay the BALANCE +STATE OF SOUTH CAROLINA +DEPARTMENT OF REVENUE + 2013 +Individual Income Tax Payment Voucher +DEPARTMENT OF REVENUE +SC1040-V +(Rev. 9/4/13) +3332 +Name Control (first 4 letters of last name) +Name and Address (include spouse's name if joint) +SC1040V +(Rev. 9/4/13) +3332 +PAYMENT +AMOUNT +Your Social Security Number Composite Filer + Individual Income Tax Payment Voucher +DUE +for your South Carolina individual income tax return +if paying by check or money order. +Do not send cash. +Write your social security number and "SC1040-V" on check or money order and make payable to +SCDOR +. +14-0801 +Office Use Only +2013 +detach here + Spouse's Social Security Number (if joint) +1350 +1350 +INSTRUCTIONS FOR FORM SC1040-V +1. Use only black ink on this form and on your check. +3. Enter the spouse’s Social Security number. + Do not use hyphens or apostrophes. +If filing a paper return, mail your return, SC1040-V +and payment to: +Taxable Processing Center +PO Box 101105 +Columbia, SC 29211-0105 +You may choose to pay your SC1040-V +electronically +at +www.sctax.org +. Click on +DOR ePay +and pay with VISA +or MasterCard or by Electronic Funds Withdrawal (EFW). +Do not submit SC1040-V if payment is made by credit +card or electronic funds withdrawal (EFW). +It is mandatory that you provide your social security number on this tax for +m. 42 U.S.C 405(c)(2)(C)(i) permits a state to use an individual's social +security number as means of identific +ation in administration of any tax. SC Regulation +117-201 mandates that any person required to make a return to +the SC Department of Revenue shall provide identifyi +ng numbers, as prescribed, for securing proper i +for identification purposes. +1, 2014 to submit the return and full payment of taxes and still +avoid interest and penalties. Failure to file and pay the tax due +Make check payable to +SCDOR +and enter the Social Security number(s) and “2013 SC1040-V” in the memo section of the +check. +Include your SC1040-V and payment in the envelope. +Coupon must accompany payment. +Do not +staple the +check to the coupon. +Do not +fold coupon or check. +Only +use an original coupon. +Do not +send a photocopy. + enter “00” in the cents field. (Example: 154.00) +SC DEPARTMENT OF REVENUE +If filing electronically, +mail only your SC1040-V and +payment to: +SC Department of Revenue +Individual Income Tax Payment +Columbia, SC 29214-0020 +33321043 +A taxpayer owing fifteen thousand dollars or more +in connection with any return to be filed with the +NOTE: +(Not Supported) +department should pay electronically per SC Code of Laws Section 12-54-250(A)(1). +2. Enter the primary taxpayer’s Social Security number. +4. "X" the box for composite filer if this payment will be claimed on a composite return filed + for nonresident partnership/shareholders of a partnership/S corporation. +5. Enter the taxpayer’s name control (the first 4 letters of the taxpayer’s last name). Use all upper case letters. +6. Enter the taxpayer’s name(s) and address, including apartment number and zip code. +7. Enter the payment amount. Do not enter a dollar sign $. If entering a whole dollar amount, you must +8. If filing a paper return, mail your return and SC1040-V with payment. +9. If filing electronically, mail your SC1040-V with payment only. Do not mail a copy of your return. +The total amount of tax due must be paidi n full. As an incentive for using an electronic filing method, you will be given until May +by May 1, 2014 will result in penalties and interest from April 15, 2014 until the return is filed and the tax is paid. +Social Security Privacy Act Disclosure +dentification. Your social security number is used +----------------Page (0) Break---------------- diff --git a/test/data/sc/form/VOUCHEF.fields.json b/test/data/sc/form/VOUCHEF.fields.json new file mode 100755 index 00000000..f1154895 --- /dev/null +++ b/test/data/sc/form/VOUCHEF.fields.json @@ -0,0 +1 @@ +[{"id":"CFILERBX","type":"box","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"CONTROL","type":"alpha","calc":true,"value":""},{"id":"TPFNAME","type":"alpha","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"SPFNAME","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"PAY","type":"number","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/sc/form/VOUCHEF.json b/test/data/sc/form/VOUCHEF.json new file mode 100755 index 00000000..b71694d3 --- /dev/null +++ b/test/data/sc/form/VOUCHEF.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"SC1040V_Fi_f1.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":96.674,"y":3.735,"w":1.08,"l":0.94},{"oc":"#231f20","x":96.674,"y":3.046,"w":1.08,"l":0.94},{"oc":"#231f20","x":7.561,"y":46.485,"w":1.08,"l":0.94},{"oc":"#231f20","x":7.561,"y":45.797,"w":1.08,"l":0.94},{"oc":"#231f20","x":96.686,"y":46.467,"w":1.08,"l":0.94},{"oc":"#231f20","x":96.686,"y":45.779,"w":1.08,"l":0.94},{"oc":"#231f20","x":7.561,"y":3.717,"w":1.08,"l":0.94},{"oc":"#231f20","x":7.561,"y":3.028,"w":1.08,"l":0.94},{"oc":"#231f20","x":7.561,"y":35.991,"w":1.08,"l":0.94},{"oc":"#231f20","x":7.561,"y":35.303,"w":1.08,"l":0.94},{"oc":"#231f20","x":96.686,"y":35.978,"w":1.08,"l":0.94},{"oc":"#231f20","x":96.686,"y":35.289,"w":1.08,"l":0.94},{"oc":"#231f20","x":63.261,"y":41.976,"w":1.08,"l":0.94},{"oc":"#231f20","x":63.261,"y":41.288,"w":1.08,"l":0.94},{"oc":"#231f20","x":11.1,"y":5.252,"w":0.8639999999999999,"l":82.851},{"oc":"#231f20","x":11.1,"y":5.252,"w":0.8639999999999999,"l":82.851},{"oc":"#231f20","x":6.101,"y":34.506,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.188,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":96.525,"y":47.25,"w":2.268,"l":2.475},{"oc":"#231f20","x":11.137,"y":36.752,"w":0.8639999999999999,"l":82.913},{"oc":"#231f20","x":6.398,"y":39.749,"w":0.8639999999999999,"l":92.392},{"oc":"#231f20","x":96.525,"y":34.506,"w":2.268,"l":2.475},{"oc":"#231f20","x":64.35,"y":42.75,"w":0.8639999999999999,"l":34.44},{"oc":"#231f20","x":73.607,"y":39.299,"w":0.8639999999999999,"l":11.224},{"dsh":1,"oc":"#231f20","x":12.165,"y":32.999,"w":0.8639999999999999,"l":35.306},{"dsh":1,"oc":"#231f20","x":57.334,"y":32.999,"w":0.8639999999999999,"l":36.717},{"oc":"#231f20","x":96.525,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":6.101,"y":2.259,"w":2.268,"l":2.475},{"oc":"#231f20","x":7.425,"y":10.822,"w":1.08,"l":90.548},{"oc":"#231f20","x":7.425,"y":5.472,"w":1.08,"l":90.548},{"oc":"#231f20","x":73.631,"y":42.3,"w":0.8639999999999999,"l":24.75},{"oc":"#231f20","x":37.888,"y":6.234,"w":1.08,"l":11.622},{"oc":"#231f20","x":48.48,"y":6.228,"w":1.08,"l":3.626}],"VLines":[{"oc":"#231f20","x":97.614,"y":3.046,"w":1.08,"l":0.688},{"oc":"#231f20","x":96.674,"y":3.046,"w":1.08,"l":0.688},{"oc":"#231f20","x":8.502,"y":45.797,"w":1.08,"l":0.688},{"oc":"#231f20","x":7.561,"y":45.797,"w":1.08,"l":0.688},{"oc":"#231f20","x":97.627,"y":45.779,"w":1.08,"l":0.688},{"oc":"#231f20","x":96.686,"y":45.779,"w":1.08,"l":0.688},{"oc":"#231f20","x":8.502,"y":3.028,"w":1.08,"l":0.689},{"oc":"#231f20","x":7.561,"y":3.028,"w":1.08,"l":0.689},{"oc":"#231f20","x":8.502,"y":35.303,"w":1.08,"l":0.688},{"oc":"#231f20","x":7.561,"y":35.303,"w":1.08,"l":0.688},{"oc":"#231f20","x":97.627,"y":35.289,"w":1.08,"l":0.689},{"oc":"#231f20","x":96.686,"y":35.289,"w":1.08,"l":0.689},{"oc":"#231f20","x":64.202,"y":41.288,"w":1.08,"l":0.689},{"oc":"#231f20","x":63.261,"y":41.288,"w":1.08,"l":0.689},{"oc":"#231f20","x":81.65,"y":3.002,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":19.788,"y":2.984,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":81.65,"y":3.002,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":19.788,"y":2.984,"w":0.8639999999999999,"l":2.25},{"oc":"#231f20","x":6.188,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":99,"y":45.756,"w":2.268,"l":1.544},{"oc":"#231f20","x":53.213,"y":36.752,"w":0.8639999999999999,"l":3.001},{"oc":"#231f20","x":82.912,"y":34.425,"w":0.8639999999999999,"l":2.327},{"oc":"#231f20","x":29.7,"y":36.752,"w":0.8639999999999999,"l":3.001},{"oc":"#231f20","x":64.35,"y":36.752,"w":0.8639999999999999,"l":8.402},{"oc":"#231f20","x":6.188,"y":34.461,"w":2.268,"l":1.548},{"oc":"#231f20","x":99,"y":34.461,"w":2.268,"l":1.548},{"oc":"#231f20","x":18.563,"y":34.425,"w":0.8639999999999999,"l":2.327},{"oc":"#231f20","x":99,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":6.188,"y":2.214,"w":2.268,"l":1.544},{"oc":"#231f20","x":97.973,"y":5.472,"w":1.08,"l":5.351},{"oc":"#231f20","x":7.425,"y":5.472,"w":1.08,"l":5.351}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#231f20","x":96.674,"y":3.046,"w":0.94,"h":0.688,"clr":-1},{"oc":"#231f20","x":7.561,"y":45.797,"w":0.94,"h":0.688,"clr":-1},{"oc":"#231f20","x":96.686,"y":45.779,"w":0.94,"h":0.688,"clr":-1},{"oc":"#231f20","x":7.561,"y":3.028,"w":0.94,"h":0.689,"clr":-1},{"oc":"#231f20","x":7.561,"y":35.303,"w":0.94,"h":0.688,"clr":-1},{"oc":"#231f20","x":96.686,"y":35.289,"w":0.94,"h":0.689,"clr":-1},{"oc":"#231f20","x":63.261,"y":41.288,"w":0.94,"h":0.689,"clr":-1}],"Texts":[{"oc":"#231f20","x":10.108,"y":5.397,"w":8.723400000000002,"clr":-1,"A":"left","R":[{"T":"SC1040-V%20must%20be","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":25.583,"y":5.397,"w":2.3336,"clr":-1,"A":"left","R":[{"T":"used","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":30.075,"y":5.397,"w":0.9438,"clr":-1,"A":"left","R":[{"T":"to","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":32.178,"y":5.397,"w":1.7227000000000001,"clr":-1,"A":"left","R":[{"T":"pay","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":35.619,"y":5.397,"w":1.4997,"clr":-1,"A":"left","R":[{"T":"the","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":38.674,"y":5.397,"w":4.8873,"clr":-1,"A":"left","R":[{"T":"BALANCE","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":42.9,"y":1.968,"w":14.030400000000002,"clr":-1,"A":"left","R":[{"T":"STATE%20OF%20SOUTH%20CAROLINA","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":42.159,"y":2.715,"w":13.718399999999995,"clr":-1,"A":"left","R":[{"T":"DEPARTMENT%20OF%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":31.658,"y":2.26,"w":3.062900000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%202013","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":32.556,"y":3.8360000000000003,"w":19.191499999999998,"clr":-1,"A":"left","R":[{"T":"Individual%20Income%20Tax%20Payment%20Voucher","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":42.159,"y":2.715,"w":13.718399999999995,"clr":-1,"A":"left","R":[{"T":"DEPARTMENT%20OF%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":82.7,"y":2.949,"w":4.607399999999999,"clr":-1,"A":"left","R":[{"T":"SC1040-V","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":83.479,"y":3.511,"w":5.780000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%209%2F4%2F13)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":85.93,"y":4.074,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"3332","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.023,"y":36.492,"w":18.3002,"clr":-1,"A":"left","R":[{"T":"Name%20Control%20(first%204%20letters%20of%20last%20name)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":6.147,"y":39.494,"w":22.50849999999999,"clr":-1,"A":"left","R":[{"T":"Name%20and%20Address%20(include%20spouse's%20name%20if%20joint)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":84.927,"y":34.359,"w":4.275099999999999,"clr":-1,"A":"left","R":[{"T":"SC1040V","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":85.286,"y":34.926,"w":5.780000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%209%2F4%2F13)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":87.736,"y":35.489,"w":2.2192000000000003,"clr":-1,"A":"left","R":[{"T":"3332","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":65.56,"y":40.322,"w":4.8549999999999995,"clr":-1,"A":"left","R":[{"T":"PAYMENT","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":66.031,"y":40.821,"w":4.3456,"clr":-1,"A":"left","R":[{"T":"AMOUNT","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.888,"y":36.492,"w":12.8451,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":53.386,"y":36.492,"w":7.5621,"clr":-1,"A":"left","R":[{"T":"%20%20Composite%20Filer","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":33.204,"y":35.178,"w":20.596600000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20Individual%20Income%20Tax%20Payment%20Voucher","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":47.542,"y":5.397,"w":2.1104000000000003,"clr":-1,"A":"left","R":[{"T":"DUE","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":51.651,"y":5.397,"w":1.333,"clr":-1,"A":"left","R":[{"T":"for","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":54.423,"y":5.397,"w":2.167,"clr":-1,"A":"left","R":[{"T":"your","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":58.631,"y":5.397,"w":2.833,"clr":-1,"A":"left","R":[{"T":"South","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":63.989999999999995,"y":5.397,"w":4.001,"clr":-1,"A":"left","R":[{"T":"Carolina","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":71.353,"y":5.397,"w":4.667999999999999,"clr":-1,"A":"left","R":[{"T":"individual","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":79.88,"y":5.397,"w":3.5010000000000003,"clr":-1,"A":"left","R":[{"T":"income","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":86.377,"y":5.397,"w":4.3340000000000005,"clr":-1,"A":"left","R":[{"T":"taxreturn","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":38.2,"y":5.96,"w":16.561000000000003,"clr":-1,"A":"left","R":[{"T":"if%20paying%20by%20check%20or%20money%20order.","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":9.031,"y":44.889,"w":8.6062,"clr":-1,"A":"left","R":[{"T":"Do%20not%20send%20cash.","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":22.805,"y":44.889,"w":2.329,"clr":-1,"A":"left","R":[{"T":"Write","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":26.853,"y":44.889,"w":1.9418,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":30.31,"y":44.889,"w":2.5512,"clr":-1,"A":"left","R":[{"T":"social","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":34.706,"y":44.889,"w":3.4386,"clr":-1,"A":"left","R":[{"T":"security","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":40.471,"y":44.889,"w":3.3852,"clr":-1,"A":"left","R":[{"T":"number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":46.171,"y":44.889,"w":1.6656,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":49.204,"y":44.889,"w":5.315,"clr":-1,"A":"left","R":[{"T":"%22SC1040-V%22","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":57.873,"y":44.889,"w":1.1104,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":60.039,"y":44.889,"w":2.608,"clr":-1,"A":"left","R":[{"T":"check","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.514,"y":44.889,"w":0.8874,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":66.334,"y":44.889,"w":2.9970000000000003,"clr":-1,"A":"left","R":[{"T":"money","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.415,"y":44.889,"w":2.33,"clr":-1,"A":"left","R":[{"T":"order","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":75.488,"y":44.889,"w":1.6656,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":78.521,"y":44.889,"w":2.4418,"clr":-1,"A":"left","R":[{"T":"make","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":82.739,"y":44.889,"w":3.4964000000000004,"clr":-1,"A":"left","R":[{"T":"payable","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":88.618,"y":44.889,"w":0.8324,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":90.36,"y":44.889,"w":3.6040000000000005,"clr":-1,"A":"left","R":[{"T":"SCDOR","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":95.929,"y":44.889,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":65.746,"y":41.514,"w":3.660600000000001,"clr":-1,"A":"left","R":[{"T":"14-0801","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.834,"y":42.603,"w":7.0184999999999995,"clr":-1,"A":"left","R":[{"T":"Office%20Use%20Only","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":28.175,"y":35.196,"w":2.88,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":48.359,"y":32.397,"w":5.2711,"clr":-1,"A":"left","R":[{"T":"detach%20here","S":-1,"TS":[0,11.6,0,0]}]},{"oc":"#231f20","x":29.454,"y":36.492,"w":18.932200000000005,"clr":-1,"A":"left","R":[{"T":"%20%20Spouse's%20Social%20Security%20Number%20(if%20joint)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":10.888,"y":34.382,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":11.035,"y":2.148,"w":2.88,"clr":-1,"A":"left","R":[{"T":"1350","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":35.031,"y":10.946,"w":18.008000000000003,"clr":-1,"A":"left","R":[{"T":"INSTRUCTIONS%20FOR%20FORM%20SC1040-V","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231f20","x":12.744,"y":11.774,"w":24.20499999999999,"clr":-1,"A":"left","R":[{"T":"1.%20%20%20Use%20only%20black%20ink%20on%20this%20form%20and%20on%20your%20check.%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":12.744,"y":13.425,"w":21.074600000000004,"clr":-1,"A":"left","R":[{"T":"3.%20%20%20Enter%20the%20spouse%E2%80%99s%20Social%20Security%20number.%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":12.749,"y":16.296,"w":17.784,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20Do%20not%20use%20hyphens%20or%20apostrophes.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":10.578,"y":26.21,"w":23.649200000000004,"clr":-1,"A":"left","R":[{"T":"If%20filing%20a%20paper%20return%2C%20mail%20your%20return%2C%20SC1040-V","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":24.265,"y":26.853,"w":7.7185000000000015,"clr":-1,"A":"left","R":[{"T":"and%20payment%20to%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":20.552,"y":27.492,"w":12.04,"clr":-1,"A":"left","R":[{"T":"Taxable%20Processing%20Center","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":24.833,"y":28.136,"w":7.054800000000001,"clr":-1,"A":"left","R":[{"T":"PO%20Box%20101105","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":20.293,"y":28.78,"w":12.339000000000008,"clr":-1,"A":"left","R":[{"T":"Columbia%2C%20SC%20%2029211-0105%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":8.003,"y":6.918,"w":1.7757,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":11.635,"y":6.918,"w":1.8857,"clr":-1,"A":"left","R":[{"T":"may","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":15.464,"y":6.918,"w":3.2174,"clr":-1,"A":"left","R":[{"T":"choose","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":21.571,"y":6.918,"w":0.8318000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":23.594,"y":6.918,"w":1.6087000000000002,"clr":-1,"A":"left","R":[{"T":"pay","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":26.934,"y":6.918,"w":1.9406000000000003,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":30.847,"y":6.918,"w":4.6042,"clr":-1,"A":"left","R":[{"T":"SC1040-V","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":39.374,"y":6.918,"w":6.403200000000002,"clr":-1,"A":"left","R":[{"T":"electronically","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":50.945,"y":6.918,"w":0.8316000000000001,"clr":-1,"A":"left","R":[{"T":"at","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":52.975,"y":6.918,"w":7.0606,"clr":-1,"A":"left","R":[{"T":"www.sctax.org","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":65.102,"y":6.918,"w":0.2782,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":66.649,"y":6.918,"w":2.167,"clr":-1,"A":"left","R":[{"T":"Click","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":70.958,"y":6.918,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":73.443,"y":6.918,"w":2.219,"clr":-1,"A":"left","R":[{"T":"DOR","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":77.836,"y":6.918,"w":2.3310000000000004,"clr":-1,"A":"left","R":[{"T":"ePay","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":82.439,"y":6.918,"w":1.6704000000000003,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":85.886,"y":6.918,"w":1.6144000000000003,"clr":-1,"A":"left","R":[{"T":"pay","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":89.245,"y":6.918,"w":1.7812000000000001,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":92.882,"y":6.918,"w":2.2822000000000005,"clr":-1,"A":"left","R":[{"T":"VISA","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":8.003,"y":7.481,"w":0.8882000000000001,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":10.059,"y":7.481,"w":5.219,"clr":-1,"A":"left","R":[{"T":"MasterCard","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":19.552,"y":7.481,"w":0.8882000000000001,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":21.608,"y":7.481,"w":1.0552000000000001,"clr":-1,"A":"left","R":[{"T":"by","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":23.948,"y":7.481,"w":4.386,"clr":-1,"A":"left","R":[{"T":"Electronic","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":32.005,"y":7.481,"w":2.777,"clr":-1,"A":"left","R":[{"T":"Funds","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":37.302,"y":7.481,"w":4.941,"clr":-1,"A":"left","R":[{"T":"Withdrawal","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":46.321,"y":7.481,"w":3.1636,"clr":-1,"A":"left","R":[{"T":"(EFW).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":52.789,"y":7.481,"w":1.3328,"clr":-1,"A":"left","R":[{"T":"Do","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":55.626,"y":7.481,"w":1.5547,"clr":-1,"A":"left","R":[{"T":"not","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":58.828,"y":7.481,"w":3.2773999999999996,"clr":-1,"A":"left","R":[{"T":"submit","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":64.988,"y":7.481,"w":4.612200000000001,"clr":-1,"A":"left","R":[{"T":"SC1040-V","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":73.447,"y":7.481,"w":0.6108,"clr":-1,"A":"left","R":[{"T":"if","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":75.026,"y":7.481,"w":4.111300000000001,"clr":-1,"A":"left","R":[{"T":"payment","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":82.618,"y":7.481,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"is","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":84.581,"y":7.481,"w":2.6116,"clr":-1,"A":"left","R":[{"T":"made","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":89.597,"y":7.481,"w":1.1668,"clr":-1,"A":"left","R":[{"T":"by","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":92.132,"y":7.481,"w":2.7224,"clr":-1,"A":"left","R":[{"T":"credit","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":8.003,"y":8.043,"w":20.294600000000006,"clr":-1,"A":"left","R":[{"T":"card%20or%20electronic%20funds%20withdrawal%20(EFW).","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":6.148,"y":30.116,"w":0.5554,"clr":-1,"A":"left","R":[{"T":"It","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":7.468,"y":30.116,"w":0.7214,"clr":-1,"A":"left","R":[{"T":"is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":9.012,"y":30.116,"w":4.7213,"clr":-1,"A":"left","R":[{"T":"mandatory","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.087,"y":30.116,"w":1.6668000000000003,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.944,"y":30.116,"w":1.6111000000000002,"clr":-1,"A":"left","R":[{"T":"you","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":21.732,"y":30.116,"w":3.2769000000000004,"clr":-1,"A":"left","R":[{"T":"provide","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":26.822,"y":30.116,"w":1.9438000000000002,"clr":-1,"A":"left","R":[{"T":"your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":30.07,"y":30.116,"w":2.5542000000000007,"clr":-1,"A":"left","R":[{"T":"social","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.172,"y":30.116,"w":3.4426,"clr":-1,"A":"left","R":[{"T":"security","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":39.483,"y":30.116,"w":3.3882000000000003,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.716,"y":30.116,"w":1.1114000000000002,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.808,"y":30.116,"w":1.5548000000000002,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.511,"y":30.116,"w":1.3331000000000002,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":51.908,"y":30.116,"w":1.1661000000000001,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":53.517,"y":30.116,"w":1.1112,"clr":-1,"A":"left","R":[{"T":"m.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":55.607,"y":30.116,"w":1.1122,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":57.7,"y":30.116,"w":2.6675,"clr":-1,"A":"left","R":[{"T":"U.S.C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":61.911,"y":30.116,"w":6.3335,"clr":-1,"A":"left","R":[{"T":"405(c)(2)(C)(i)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":71.201,"y":30.116,"w":3.2786999999999997,"clr":-1,"A":"left","R":[{"T":"permits","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.281,"y":30.116,"w":0.5561,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":77.606,"y":30.116,"w":2.1685,"clr":-1,"A":"left","R":[{"T":"state","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.155,"y":30.116,"w":0.8342,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":82.859,"y":30.116,"w":1.6123,"clr":-1,"A":"left","R":[{"T":"use","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":85.649,"y":30.116,"w":1.1122,"clr":-1,"A":"left","R":[{"T":"an","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":87.742,"y":30.116,"w":4.860199999999999,"clr":-1,"A":"left","R":[{"T":"individual's","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":95.003,"y":30.116,"w":2.5566000000000004,"clr":-1,"A":"left","R":[{"T":"social","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":30.615,"w":3.4450000000000003,"clr":-1,"A":"left","R":[{"T":"security","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":11.339,"y":30.615,"w":3.3900000000000006,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":16.438,"y":30.615,"w":1.056,"clr":-1,"A":"left","R":[{"T":"as","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.321,"y":30.615,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"means","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":22.9,"y":30.615,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":24.473,"y":30.615,"w":3.39,"clr":-1,"A":"left","R":[{"T":"identific","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.132,"y":30.615,"w":2.1685,"clr":-1,"A":"left","R":[{"T":"ation","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":32.565,"y":30.615,"w":0.7782,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.06,"y":30.615,"w":6.2254000000000005,"clr":-1,"A":"left","R":[{"T":"administration","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":43.087,"y":30.615,"w":0.8342,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":44.661,"y":30.615,"w":1.6123,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":47.312,"y":30.615,"w":1.6124,"clr":-1,"A":"left","R":[{"T":"tax.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":49.962,"y":30.615,"w":1.3892,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":52.297,"y":30.615,"w":4.781000000000001,"clr":-1,"A":"left","R":[{"T":"Regulation","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":59.323,"y":30.615,"w":3.6648,"clr":-1,"A":"left","R":[{"T":"117-201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":64.808,"y":30.615,"w":4.3862000000000005,"clr":-1,"A":"left","R":[{"T":"mandates","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":71.286,"y":30.615,"w":1.6656,"clr":-1,"A":"left","R":[{"T":"that","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":74.017,"y":30.615,"w":1.6102,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.667,"y":30.615,"w":3.0534000000000003,"clr":-1,"A":"left","R":[{"T":"person","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":81.313,"y":30.615,"w":3.6632000000000007,"clr":-1,"A":"left","R":[{"T":"required","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":86.794,"y":30.615,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":88.372,"y":30.615,"w":2.4426,"clr":-1,"A":"left","R":[{"T":"make","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":92.169,"y":30.615,"w":0.5554,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":93.356,"y":30.615,"w":2.6084,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":97.374,"y":30.615,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":31.115,"w":1.3881999999999999,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":8.469,"y":31.115,"w":1.3878,"clr":-1,"A":"left","R":[{"T":"SC","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":10.79,"y":31.115,"w":5.217999999999999,"clr":-1,"A":"left","R":[{"T":"Department","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":18.396,"y":31.115,"w":0.8328,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":19.969,"y":31.115,"w":3.9978000000000002,"clr":-1,"A":"left","R":[{"T":"Revenue","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":25.903,"y":31.115,"w":2.053,"clr":-1,"A":"left","R":[{"T":"shall","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":29.17,"y":31.115,"w":3.2748000000000004,"clr":-1,"A":"left","R":[{"T":"provide","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":34.109,"y":31.115,"w":3.3846000000000003,"clr":-1,"A":"left","R":[{"T":"identifyi","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":38.785,"y":31.115,"w":1.1102,"clr":-1,"A":"left","R":[{"T":"ng","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":40.761,"y":31.115,"w":4.1608,"clr":-1,"A":"left","R":[{"T":"numbers%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":46.922,"y":31.115,"w":1.0542,"clr":-1,"A":"left","R":[{"T":"as","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":48.803,"y":31.115,"w":4.9361,"clr":-1,"A":"left","R":[{"T":"prescribed%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":56.046,"y":31.115,"w":1.1643000000000001,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":58.07,"y":31.115,"w":3.7718,"clr":-1,"A":"left","R":[{"T":"securing","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":63.703,"y":31.115,"w":2.8846,"clr":-1,"A":"left","R":[{"T":"proper","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":68.11,"y":31.115,"w":0.2211,"clr":-1,"A":"left","R":[{"T":"i","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":31.613999999999997,"w":11.6636,"clr":-1,"A":"left","R":[{"T":"for%20identification%20purposes.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":6.148,"y":21.827,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"1%2C","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":8.055,"y":21.827,"w":2.2236000000000002,"clr":-1,"A":"left","R":[{"T":"2014","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":12.216,"y":21.827,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":14.116,"y":21.827,"w":2.944400000000001,"clr":-1,"A":"left","R":[{"T":"submit","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":19.461,"y":21.827,"w":1.3897000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":22.266,"y":21.827,"w":2.6114000000000006,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":27.08,"y":21.827,"w":1.6677000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":30.337,"y":21.827,"w":1.2776,"clr":-1,"A":"left","R":[{"T":"full","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":32.954,"y":21.827,"w":3.8343000000000007,"clr":-1,"A":"left","R":[{"T":"payment","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":39.753,"y":21.827,"w":0.8338000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":41.66,"y":21.827,"w":2.3895,"clr":-1,"A":"left","R":[{"T":"taxes","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":46.105,"y":21.827,"w":1.6677000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":49.375,"y":21.827,"w":1.4435,"clr":-1,"A":"left","R":[{"T":"still","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":52.27,"y":21.827,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"avoid","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":56.703,"y":21.827,"w":3.2774000000000005,"clr":-1,"A":"left","R":[{"T":"interest","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":62.595,"y":21.827,"w":1.6674000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":65.851,"y":21.827,"w":4.2780000000000005,"clr":-1,"A":"left","R":[{"T":"penalties.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":73.819,"y":21.827,"w":3.0546000000000006,"clr":-1,"A":"left","R":[{"T":"Failure","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":79.346,"y":21.827,"w":0.8336000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":81.246,"y":21.827,"w":1.2772000000000001,"clr":-1,"A":"left","R":[{"T":"file","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":83.857,"y":21.827,"w":1.6674000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":87.114,"y":21.827,"w":1.6114000000000002,"clr":-1,"A":"left","R":[{"T":"pay","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":90.283,"y":21.827,"w":1.3894000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":93.088,"y":21.827,"w":1.3334000000000001,"clr":-1,"A":"left","R":[{"T":"tax","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":95.807,"y":21.827,"w":1.6674000000000002,"clr":-1,"A":"left","R":[{"T":"due","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":6.148,"y":23.758,"w":2.4398,"clr":-1,"A":"left","R":[{"T":"Make","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":10.808,"y":23.758,"w":2.6055,"clr":-1,"A":"left","R":[{"T":"check","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":15.749,"y":23.758,"w":3.4929,"clr":-1,"A":"left","R":[{"T":"payable","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":22.13,"y":23.758,"w":0.8314000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":24.179,"y":23.758,"w":3.6045,"clr":-1,"A":"left","R":[{"T":"SCDOR","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#231f20","x":30.749,"y":23.758,"w":1.6671000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":34.154,"y":23.758,"w":2.2775000000000003,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":38.546,"y":23.758,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":41.498,"y":23.758,"w":2.7212000000000005,"clr":-1,"A":"left","R":[{"T":"Social","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":46.606,"y":23.758,"w":3.6096,"clr":-1,"A":"left","R":[{"T":"Security","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":53.17,"y":23.758,"w":4.5533,"clr":-1,"A":"left","R":[{"T":"number(s)","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":61.294,"y":23.758,"w":1.6671000000000002,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":64.687,"y":23.758,"w":2.5555000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%9C2013","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":69.529,"y":23.758,"w":4.9433,"clr":-1,"A":"left","R":[{"T":"SC1040-V%E2%80%9D","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":78.277,"y":23.758,"w":0.7774000000000001,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":80.216,"y":23.758,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":83.157,"y":23.758,"w":2.7767999999999997,"clr":-1,"A":"left","R":[{"T":"memo","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":88.368,"y":23.758,"w":3.1658999999999997,"clr":-1,"A":"left","R":[{"T":"section","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":94.21,"y":23.758,"w":0.8334000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":96.254,"y":23.758,"w":1.3891000000000002,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":6.148,"y":24.396,"w":2.8756,"clr":-1,"A":"left","R":[{"T":"check.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":11.853,"y":24.396,"w":3.5031,"clr":-1,"A":"left","R":[{"T":"Include","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":18.425,"y":24.396,"w":2.1682,"clr":-1,"A":"left","R":[{"T":"your","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":22.719,"y":24.396,"w":4.615400000000001,"clr":-1,"A":"left","R":[{"T":"SC1040-V","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":31.207,"y":24.396,"w":1.7789,"clr":-1,"A":"left","R":[{"T":"and","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":34.821,"y":24.396,"w":4.1141000000000005,"clr":-1,"A":"left","R":[{"T":"payment","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":42.455,"y":24.396,"w":0.8896,"clr":-1,"A":"left","R":[{"T":"in","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":44.542,"y":24.396,"w":1.5009000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":47.686,"y":24.396,"w":4.6156999999999995,"clr":-1,"A":"left","R":[{"T":"envelope.","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":56.65,"y":24.396,"w":3.4966,"clr":-1,"A":"left","R":[{"T":"Coupon","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":63.212,"y":24.396,"w":2.1633999999999998,"clr":-1,"A":"left","R":[{"T":"must","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":67.502,"y":24.396,"w":5.104900000000001,"clr":-1,"A":"left","R":[{"T":"accompany","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":76.821,"y":24.396,"w":4.1058,"clr":-1,"A":"left","R":[{"T":"payment.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":84.927,"y":24.396,"w":1.3326,"clr":-1,"A":"left","R":[{"T":"Do","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":87.79,"y":24.396,"w":1.5544,"clr":-1,"A":"left","R":[{"T":"not","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":91.015,"y":24.396,"w":2.6656000000000004,"clr":-1,"A":"left","R":[{"T":"staple","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":96.146,"y":24.396,"w":1.3888000000000003,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":6.147,"y":25.04,"w":2.604,"clr":-1,"A":"left","R":[{"T":"check","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":11.1,"y":25.04,"w":0.8308,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":13.009,"y":25.04,"w":1.3852,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":15.870999999999999,"y":25.04,"w":3.5468000000000006,"clr":-1,"A":"left","R":[{"T":"coupon.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":22.952,"y":25.04,"w":1.3326,"clr":-1,"A":"left","R":[{"T":"Do","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":25.728,"y":25.04,"w":1.5544,"clr":-1,"A":"left","R":[{"T":"not","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":28.88,"y":25.04,"w":1.6076000000000001,"clr":-1,"A":"left","R":[{"T":"fold","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":32.121,"y":25.04,"w":3.2734,"clr":-1,"A":"left","R":[{"T":"coupon","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":38.225,"y":25.04,"w":0.8868,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":40.229,"y":25.04,"w":2.8834,"clr":-1,"A":"left","R":[{"T":"check.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":46.156,"y":25.04,"w":2.231,"clr":-1,"A":"left","R":[{"T":"Only","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":50.463,"y":25.04,"w":1.609,"clr":-1,"A":"left","R":[{"T":"use","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":53.708,"y":25.04,"w":1.11,"clr":-1,"A":"left","R":[{"T":"an","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":56.095,"y":25.04,"w":3.2150000000000007,"clr":-1,"A":"left","R":[{"T":"original","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":62.099,"y":25.04,"w":3.5510000000000006,"clr":-1,"A":"left","R":[{"T":"coupon.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":69.173,"y":25.04,"w":1.3326,"clr":-1,"A":"left","R":[{"T":"Do","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":71.948,"y":25.04,"w":1.5544,"clr":-1,"A":"left","R":[{"T":"not","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":75.101,"y":25.04,"w":2.1628000000000003,"clr":-1,"A":"left","R":[{"T":"send","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":79.298,"y":25.04,"w":0.5547000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":80.733,"y":25.04,"w":4.8790000000000004,"clr":-1,"A":"left","R":[{"T":"photocopy.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":12.748,"y":18.579,"w":22.82260000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20enter%20%E2%80%9C00%E2%80%9D%20in%20the%20cents%20field.%20%20(Example%3A%20154.00)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":39.152,"y":34.059,"w":15.394999999999996,"clr":-1,"A":"left","R":[{"T":"SC%20DEPARTMENT%20OF%20REVENUE","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":53.978,"y":26.21,"w":10.535199999999998,"clr":-1,"A":"left","R":[{"T":"If%20filing%20electronically%2C%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":72.085,"y":26.21,"w":13.740499999999997,"clr":-1,"A":"left","R":[{"T":"mail%20only%20your%20SC1040-V%20and","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":69.718,"y":26.854,"w":5.9366,"clr":-1,"A":"left","R":[{"T":"payment%20to%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#231f20","x":64.273,"y":27.493,"w":12.285400000000003,"clr":-1,"A":"left","R":[{"T":"SC%20Department%20of%20Revenue","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":62.838,"y":28.137,"w":13.947100000000002,"clr":-1,"A":"left","R":[{"T":"Individual%20Income%20Tax%20Payment","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":64.223,"y":28.78,"w":12.339000000000008,"clr":-1,"A":"left","R":[{"T":"Columbia%2C%20SC%20%2029214-0020%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":10.887,"y":46.384,"w":5.759999999999999,"clr":-1,"A":"left","R":[{"T":"33321043","S":-1,"TS":[3,13,0,0]}]},{"oc":"#231f20","x":14.29,"y":9.155,"w":0.6664,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":16.394,"y":9.155,"w":3.8302000000000005,"clr":-1,"A":"left","R":[{"T":"taxpayer","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":23.923,"y":9.155,"w":2.609,"clr":-1,"A":"left","R":[{"T":"owing","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":29.354,"y":9.155,"w":2.7198,"clr":-1,"A":"left","R":[{"T":"fifteen","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":34.976,"y":9.155,"w":4.1092,"clr":-1,"A":"left","R":[{"T":"thousand","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":42.984,"y":9.155,"w":2.9408,"clr":-1,"A":"left","R":[{"T":"dollars","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":48.992,"y":9.155,"w":0.8878,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":51.469,"y":9.155,"w":2.2756,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":56.353,"y":9.155,"w":0.7784,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":58.64,"y":9.155,"w":4.838000000000001,"clr":-1,"A":"left","R":[{"T":"connection","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":67.897,"y":9.155,"w":1.7788,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":71.901,"y":9.155,"w":1.6126,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":75.618,"y":9.155,"w":2.6132,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":81.067,"y":9.155,"w":0.8344,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":83.45,"y":9.155,"w":1.1124,"clr":-1,"A":"left","R":[{"T":"be","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":86.31,"y":9.155,"w":1.835,"clr":-1,"A":"left","R":[{"T":"filed","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":90.41,"y":9.155,"w":1.7788,"clr":-1,"A":"left","R":[{"T":"with","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":94.414,"y":9.155,"w":1.3906,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":7.955,"y":9.155,"w":3.1115,"clr":-1,"A":"left","R":[{"T":"NOTE%3A","S":10,"TS":[0,14,1,0]}]},{"x":53.979,"y":37.098,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":14.29,"y":9.718,"w":37.570999999999984,"clr":-1,"A":"left","R":[{"T":"department%20should%20pay%20electronically%20per%20SC%20Code%20of%20Laws%20Section%2012-54-250(A)(1).%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":12.744,"y":12.597,"w":25.01470000000001,"clr":-1,"A":"left","R":[{"T":"2.%20%20%20Enter%20the%20primary%20taxpayer%E2%80%99s%20Social%20Security%20number.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":12.744,"y":14.19,"w":40.65379999999998,"clr":-1,"A":"left","R":[{"T":"4.%20%20%20%22X%22%20the%20box%20for%20composite%20filer%20if%20this%20payment%20will%20be%20claimed%20on%20a%20composite%20return%20filed%20","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":12.749,"y":14.834,"w":33.41280000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20for%20nonresident%20partnership%2Fshareholders%20of%20a%20partnership%2FS%20corporation.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":12.744,"y":15.652000000000001,"w":49.020999999999944,"clr":-1,"A":"left","R":[{"T":"5.%20%20%20Enter%20the%20taxpayer%E2%80%99s%20name%20control%20(the%20first%204%20letters%20of%20the%20taxpayer%E2%80%99s%20last%20name).%20Use%20all%20upper%20case%20letters.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":12.743,"y":17.111,"w":39.73220000000003,"clr":-1,"A":"left","R":[{"T":"6.%20%20%20Enter%20the%20taxpayer%E2%80%99s%20name(s)%20and%20address%2C%20including%20apartment%20number%20and%20zip%20code.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":12.743,"y":17.935,"w":46.29900000000001,"clr":-1,"A":"left","R":[{"T":"7.%20%20%20Enter%20the%20payment%20amount.%20%20Do%20not%20enter%20a%20dollar%20sign%20%24.%20%20If%20entering%20a%20whole%20dollar%20amount%2C%20you%20must","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":12.743,"y":19.362,"w":31.962199999999996,"clr":-1,"A":"left","R":[{"T":"8.%20%20%20If%20filing%20a%20paper%20return%2C%20mail%20your%20return%20and%20SC1040-V%20with%20payment.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":12.743,"y":20.185,"w":44.10019999999997,"clr":-1,"A":"left","R":[{"T":"9.%20%20%20If%20filing%20electronically%2C%20mail%20your%20SC1040-V%20with%20payment%20only.%20Do%20not%20mail%20a%20copy%20of%20your%20return.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":6.148,"y":21.183,"w":56.277599999999964,"clr":-1,"A":"left","R":[{"T":"The%20total%20amount%20of%20tax%20due%20must%20be%20paidi%20n%20full.%20As%20an%20incentive%20for%20using%20an%20electronic%20filing%20method%2C%20you%20will%20be%20given%20until%20May","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":6.148,"y":22.47,"w":49.26879999999994,"clr":-1,"A":"left","R":[{"T":"by%20May%201%2C%202014%20will%20result%20in%20penalties%20and%20interest%20from%20April%2015%2C%202014%20until%20the%20return%20is%20filed%20and%20the%20tax%20is%20paid.","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#231f20","x":6.148,"y":29.513,"w":18.3354,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Privacy%20Act%20Disclosure","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":68.418,"y":31.115,"w":5.609799999999999,"clr":-1,"A":"left","R":[{"T":"dentification.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":76.572,"y":31.115,"w":2.1108000000000002,"clr":-1,"A":"left","R":[{"T":"Your","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":79.898,"y":31.115,"w":2.5542000000000007,"clr":-1,"A":"left","R":[{"T":"social","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":83.852,"y":31.115,"w":3.4426,"clr":-1,"A":"left","R":[{"T":"security","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":89.039,"y":31.115,"w":3.3882000000000003,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":94.124,"y":31.115,"w":0.7214,"clr":-1,"A":"left","R":[{"T":"is","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231f20","x":95.531,"y":31.115,"w":2.1668000000000003,"clr":-1,"A":"left","R":[{"T":"used","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":323,"AM":1024,"x":6.391,"y":38.918,"w":22.741,"h":0.849,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":324,"AM":1024,"x":30.375,"y":38.918,"w":22.184,"h":0.849,"TU":"Spouse's Social Security Number (if joint)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CONTROL","EN":0},"TI":326,"AM":1024,"x":73.546,"y":38.524,"w":11.535,"h":0.833,"TU":"Name Control (first 4 letters of last name)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFNAME","EN":0},"TI":327,"AM":1024,"x":6.182,"y":40.559,"w":25.54,"h":0.833,"TU":"Taxpayer's first name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":328,"AM":1024,"x":33.136,"y":40.578,"w":28.351,"h":0.833,"TU":"Taxpayer's last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNAME","EN":0},"TI":329,"AM":1024,"x":6.218,"y":41.417,"w":25.54,"h":0.833,"TU":"Spouse's first name (include if joint)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":330,"AM":1024,"x":33.172,"y":41.436,"w":28.351,"h":0.833,"TU":"Spouse's last name (include if joint)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY","EN":0},"TI":331,"AM":0,"x":73.546,"y":41.416,"w":24.915,"h":0.902,"TU":"Payment Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":332,"AM":1024,"x":6.127,"y":42.309,"w":55.487,"h":0.833,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":333,"AM":1024,"x":6.054,"y":43.245,"w":32.47,"h":0.833,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":334,"AM":1024,"x":39.558,"y":43.293,"w":8.091,"h":0.833,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":335,"AM":1024,"x":48.437,"y":43.27,"w":13.115,"h":0.833,"TU":"Payer's ZIP Code"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CFILERBX","EN":0},"TI":325,"AM":1024,"x":57.903,"y":38.188,"w":1.821,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/sc/formset.json b/test/data/sc/formset.json new file mode 100755 index 00000000..0e105ebc --- /dev/null +++ b/test/data/sc/formset.json @@ -0,0 +1,18 @@ +{ + "formset" :{ + "id": "S2013SCD", + "version": "0.1", + "agency": "sc", + "main": "F1040", + "forms": [ + {"id": "F1040", "name":"SC1040 - INDIVIDUAL INCOME TAX RETURN", "mc": false, "max": 1, "parent": null, + "inst":"sc_ins_1040", "efmid":"EFINFOSC", "cid": "1040"}, + {"id": "F1040DEP", "name":"Additional Dependents Statement", "mc": false, "max": 1, "parent": null, + "inst":"sc_ins_1040", "cid": "1040"}, + {"id": "F319","name":"I-319 - TUITION TAX CREDIT", "mc": true, "max": 5, "parent": null, "inst":"sc_ins_319", "cid": "i319"}, + {"id": "F330","name":"I-330 - CONTRIBUTIONS FOR CHECK-OFFS", "mc": false, "max": 1, "parent": null, "inst":"sc_ins_330", "cid": "i330"}, + {"id": "VOUCHEF", "name":"SC1040-V - INDIVIDUAL INCOME TAX PAYMENT VOUCHER", "mc": false, "max": 1, "parent": null, "inst":"sc_ins_1040V", "cid": "1040v"}, + {"id": "F8453", "name":"SC8453 - INDIVIDUAL INCOME TAX DECLARATION FOR ELECTRONIC FILING", "mc": false, "max": 1, "parent": null, "inst":"sc_ins_8453", "cid": "8453"} + ] + } +} \ No newline at end of file diff --git a/test/data/sc/inst/sc_ins_1040.pdf b/test/data/sc/inst/sc_ins_1040.pdf new file mode 100755 index 00000000..65943255 Binary files /dev/null and b/test/data/sc/inst/sc_ins_1040.pdf differ diff --git a/test/data/sc/pageset.json b/test/data/sc/pageset.json new file mode 100755 index 00000000..31fed008 --- /dev/null +++ b/test/data/sc/pageset.json @@ -0,0 +1,63 @@ +{ + "headerData": { + "valueLabel": [ + {"href": "#/sc/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "http://www.sctax.org/Contact+Information/default.htm", "target": "_blank", "label": "Contact SC Tax", + "styleClass": "formImage"}, + {"href": "#/sc/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "eFileLinkUrl":"http://www.sctax.org/Electronic+Services/FastFile/freefile_free.htm", + "faqFooter":"View more of your state-specific FAQs", + "stateTaxUrl":"http://www.sctax.org/default.htm", + "howItWorksList": {}, + "noteList": { + "item1": "This program does not support prior-year returns, part-year, non-resident or amended returns." + } + }, + + "landingData": { + "formNumber":"SC1040", + "makeSureList": {}, + "tipsList": { + "item1": "Complete your federal return first. You will need the Federal Taxable Income from your federal return to begin your state return." + }, + "beforeList": { + "item1":"Make sure the Federal Taxable Income agrees with your federal return.", + "item2":"Enter your exemption." + } + }, + + "loginData": { + "signInHelpLink":"https://www.sctax.org/NR/rdonlyres/E48D8964-C0C6-4916-A4A9-57111A6EABB6/0/SCfillableforms_FAQS.pdf" + }, + + "recoveryData": { + "forgotAnswerLink":"https://www.sctax.org/NR/rdonlyres/E48D8964-C0C6-4916-A4A9-57111A6EABB6/0/SCfillableforms_FAQS.pdf" + }, + + "homeHeaderData": { + "href": "https://www.sctax.org/NR/rdonlyres/E48D8964-C0C6-4916-A4A9-57111A6EABB6/0/SCfillableforms_FAQS.pdf" + }, + + "efileData": { + "efRefundLink":"https://www.sctax.org/refundstatus/refund.aspx", + "efRequiredInfo":"Social Security number and amount of your expected refund", + "efPaymentDueDate":"May 1, 2014", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + + "commonData": { + "state":"South Carolina", + "stateAbbr":"SC", + "departmentName":"South Carolina Department of Revenue", + "siteName": "South Carolina State Fillable Forms", + "url": "https://www.statefillableforms.com/sc", + "currentTaxYear": "2013" + + } + +} \ No newline at end of file diff --git a/test/data/va/availability.json b/test/data/va/availability.json new file mode 100755 index 00000000..e32bbd2d --- /dev/null +++ b/test/data/va/availability.json @@ -0,0 +1,24 @@ +{ + "formset": [ + { + "id": "S2013VAD", + "version": "0.2", + "agency": "va", + "main": "VA760", + "display_name": "Form 760", + "forms": [ + {"id": "VA760", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VA760C", "planned_date":"02-13-14", "actual_date": "01-28-14"}, + {"id": "VA760F", "planned_date":"02-13-14", "actual_date": "01-28-14"}, + {"id": "VA760PFF", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VOUCHEF", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VAADJ", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VASCR", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VASCR2", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VASCR3", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VAOSC", "planned_date":"01-28-14", "actual_date": "01-28-14"}, + {"id": "VAFED", "planned_date":"01-28-14", "actual_date": "01-28-14"} + ] + } +] +} diff --git a/test/data/va/form/VA760.content.txt b/test/data/va/form/VA760.content.txt new file mode 100755 index 00000000..a480671d --- /dev/null +++ b/test/data/va/form/VA760.content.txt @@ -0,0 +1,677 @@ +2013 + V +irginia Resident Form 760 +Individual Income T +ax Return + +Locality Code +See instructions +Y +our first name +M.I. + + +Last name +Number and Street - If this is a change you must check this box +City +, town or post office +ZIP Code +Y +our Social Security Number + +First 4 letters of +your last name +- +- +Spouse’ +s Social Security Number +First 4 letters of +spouse’s last name +(Reported as taxable on federal return) + Forms W +-2, W-2G, 1099 and VK-1 reporting VA + +withholding here. +1. +Federal +Adjusted Gross Income + +................................................................................................. +1 +2. +T +otal Additions from +attached +Schedule +ADJ, Line 3 + +................................................................... +2 +3. +Add Lines 1 and 2 + + +............................................................... +......................................................... +3 +4. +Deduction for age on January 1, 2014. See Instructions. Be sure to provide date of birth above. + +4 +5. +Social Security +Act and equivalent Tier 1 Railroad Retirement Act benefits + +................................ +5 +6. +State Income +Tax refund or overpayment credit (reported as income on federal return) + +............... +6 +7. +Subtractions from +attached +Schedule +ADJ, Line 7 + +....................................................................... +7 +8. +Add Lines 4, 5, 6 and 7 + + +............................................................... +................................................. +8 +9. +V +irginia Adjusted Gross Income (VAGI) - Subtract Line 8 from Line 3 + +.................................... +9 +10. +Deductions- +Enter Standard: + += $3,000; +2 += $6,000; +3 += $3,000 + +OR + + Itemized +: + + + + + + +10 + +1 +1. +Exemptions. Sum of total from Exe +mption Section A multiplied by $930 plus sum of total from +Exemption Section B multiplied by +$800 + +...................................................................................... +1 +1 + +12. + + + +.................................... +12 +13. +Add Lines 10, 1 +1 and 12 + + +.............................................................. +.............................................. +13 +14. +V +irginia Taxable Income - Subtract Line 13 from Line 9 + +........................................................ +14 +. +, +, +0 +0 +. +, +, +0 +0 +. +, +, +0 +0 +. +, +0 +0 + +Y +ou +00 +, ++ += +. +. +Spouse +00 +, +. +, +, +0 +0 +. +, +, +0 +0 +. +,, +, +, +0 +0 +. +, +, +0 +0 +. +, +, +0 +0 +. +, +, +0 +0 +MINUS +10a. T +otal Itemized Deductions 10b. State and Local Income Taxes claimed on Sch. A +, +, +, +, +. += +. +00 +00 +. +, +0 +0 +. +,, +, +, +0 +0 +. +, +, +0 +0 +. +, +, +0 +0 +Of +fice Use +(You must attach Schedule ADJ) +(You must attach Schedule ADJ) +Staple payment here +ST +APLE +ST +APLE +Last name +ST +APLE + + +Suf +fix +Suffix +2601031 01/13 +- +- +(2) Married filing joint return (Enter spouse’ +s SSN above) +Y +es +Select a button to indicate status +Exemptions +Filing Status ++ ++ +Y +ou + +Spouse + + +Dependents +Y +ou +65 +or over += +Spouse +65 + + or over +Y +ou +Blind +Spouse + +Blind ++ ++ ++ +T +otal += +T +otal +A +B +x $930 +x $800 += += +Add the +Dollar +Amounts +and Enter +T +otal on +Line 11 +} +File by May 1, 2014 - PLEASE USE BLA +CK INK +( +From federal return - +NOT FEDERAL + TAXABLE INCOME +) +Date of Birth +Y +our Birth Date +Spouse’ +s Birth Date +(mm-dd-yyyy) +(mm-dd-yyyy) +- - +- - +Check all boxes that apply: +Name + or +filing status + has changed since last filing +V +irginia return was not filed last year +Dependent on another’s return +Amended Return - Fill in oval if result of NOL +I (We) authorize the Dept. of Taxation to discuss my +(our) return with my (our) preparer +(Not Supported) +(Not Supported) +(3) Married filing separate return (Enter spouse’ +s SSN above) +Spouse’s first name + M.I. +Last name +Suffix +(1) Single. Did you claim federal head of household? +Filing Status 1 +Deductions from Virginia Adjusted Gross Income Schedule ADJ, Line 9 +State +Spouse’s first name (joint returns only) M.I. +powered by pdf2json +----------------Page (0) Break---------------- +whole +15. + +Amount of Tax from Tax Table or Tax Rate Schedule (round to whole dollars) + +........................... +15 +16. + +Spouse Tax Adjustment. For Filing Status 2 only. Enter +VAGI + in + + +dollars + below. See instructions. + + + + +16 +17. + +Net Amount of Tax - Subtract Line 16 from Line 15 + + +............................................................... +17 +18. + +Virginia tax withheld for 2013. + + +18a. Your Virginia withholding + +................................................................................................... +18a + + +18b. Spouse’s Virginia withholding (filing status 2 only) + +........................................................... +18b +19. + + + +.................................................... +19 + +(Include overpayment credited from taxable year 2012) + +20. Extension Payments (from Form 760IP) + +...................................................................................... +20 + +21. + +Tax Credit for Low-Income Individuals or Earned Income Credit from +attached +Sch. ADJ, Line 17 + +.... +21 + +22. + +Credit for Tax Paid to Another State from +attached +Sch. OSC, Line 21 + +...................................... +22 + +23. + +Other Credits from +attached Schedule CR + + +................................................................................ +23 + +24. + +Add Lines 18a, 18b and 19 through 23 + + +.................................................................................... +24 + +25. + +If Line 24 is less than Line 17, subtract Line 24 from Line 17. This is the Tax You Owe + +............ +25 + +(Skip to Line 28) + +26. + +If Line 17 is less than Line 24, subtract Line 17 from Line 24. This is Your Tax Overpayment + +... +26 + +27. + +Amount of overpayment you want credited to next year’s estimated tax + +.................................... +27 + +28. + +Adjustments and Voluntary Contributions from +attached +Schedule ADJ, Line 24 + +....................... +28 + +29. + +Add Lines 27 and 28 +..................................................................................................................... +29 + +30. + +If you owe tax on Line 25, add Lines 25 and 29. +OR + +If Line 26 is less than Line 29, subtract Line 26 from Line 29. +AMOUNT YOU OWE + + +................ +30 + + + + + + + + + + + + + + +31. + +If Line 26 is greater than Line 29, subtract Line 29 from Line 26. +YOUR REFUND + + +.................... +31 +. +, +, +00 +16a - Enter Your VAGI below +16b - Enter Spouse’s VAGI below +.00 +.00 +, +, +, +, +. +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +, +, +00 +. +, +, +00 +. +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +, +. +, +00 +. +, +, +00 +Your SSN +Page 2 +Form 760 +Year +2013 +- +- +(You must attach Schedule ADJ) +(You must attach Sch. OSC and a copy of all other state returns) +- +- +- +- +- +- +Your business phone number +Home phone number +Spouse’s business phone number +Preparer’s PTIN + Firm Name + Preparer’s Name +Filing + +Election +Phone Number +Your Signature + +Date +Spouse’s Signature +Date +I (We), the undersigned, declare under penalty of law that I (we) have examined this return and to the best of my (our) knowledge, it is a true, correct and complete return. + + +Qualifying farmer, fisherman +or merchant seaman + + +Overseas on due date + + +I agree to obtain my Form 1099-G income tax refund statement electronically at +www.tax.virginia.gov + instead of receiving a paper copy. + + +Primary Taxpayer Deceased + + +Federal Schedule C filed +with federal return + + +Spouse Deceased + + +Earned Income Credit from federal +return. Amount claimed: +, +Check all +boxes +that +apply: +DIRECT BANK DEPOSIT +Domestic Accounts Only +No International Deposits +Bank Routing Transit Number +Checking +Savings +Bank Account Number +Choose Direct Deposit or Debit Card + +Direct Bank Deposit + +Debit Card + (Fees may apply) +You authorize the Department to issue a Debit Card if the Direct Deposit section below is not completed. +Estimated Tax Paid for taxable year 2013 (from Form 760ES) +(If claiming Political Contribution Credit only - check this box - see instructions) +CHECK THIS BOX IF PAYING BY CREDIT OR DEBIT CARD - SEE INSTRUCTIONS +----------------Page (1) Break---------------- diff --git a/test/data/va/form/VA760.fields.json b/test/data/va/form/VA760.fields.json new file mode 100755 index 00000000..830529cc --- /dev/null +++ b/test/data/va/form/VA760.fields.json @@ -0,0 +1 @@ +[{"id":"STATCHGX","type":"box","calc":false,"value":""},{"id":"LASTY","type":"box","calc":false,"value":""},{"id":"ADDRCH","type":"box","calc":false,"value":""},{"id":"DARTRN","type":"box","calc":false,"value":""},{"id":"AMX1","type":"box","calc":true,"value":""},{"id":"AUTHBX","type":"box","calc":true,"value":""},{"id":"FSRB","type":"radio","calc":false,"value":"Single"},{"id":"FSRB","type":"radio","calc":false,"value":"Joint"},{"id":"FSRB","type":"radio","calc":false,"value":"Separate"},{"id":"HOHX","type":"box","calc":false,"value":""},{"id":"SPEXEMPT","type":"box","calc":false,"value":""},{"id":"TP65BX","type":"box","calc":false,"value":""},{"id":"SP65BX","type":"box","calc":false,"value":""},{"id":"TPBLX","type":"box","calc":false,"value":""},{"id":"SPBLX","type":"box","calc":false,"value":""},{"id":"APPROVED","type":"alpha","calc":true,"value":"Virginia Approved Form for Filing"},{"id":"NAME","type":"alpha","calc":false,"value":""},{"id":"PRTMI","type":"mask","calc":false,"value":""},{"id":"PRTLNAME","type":"alpha","calc":false,"value":""},{"id":"PRTS","type":"alpha","calc":false,"value":""},{"id":"STFNAME","type":"alpha","calc":false,"value":""},{"id":"STMI","type":"mask","calc":false,"value":""},{"id":"STLNAME","type":"alpha","calc":false,"value":""},{"id":"STS","type":"alpha","calc":false,"value":""},{"id":"ADDR","type":"alpha","calc":false,"value":""},{"id":"ADDR2","type":"alpha","calc":false,"value":""},{"id":"CITY","type":"alpha","calc":false,"value":""},{"id":"ST","type":"alpha","calc":false,"value":""},{"id":"ZIP","type":"zip","calc":false,"value":""},{"id":"TPSSN","type":"ssn","calc":false,"value":""},{"id":"TPLN","type":"alpha","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":false,"value":""},{"id":"SPLN","type":"alpha","calc":true,"value":""},{"id":"RESJ1","type":"mask","calc":false,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"DEPS","type":"number","calc":false,"value":""},{"id":"TOTEXS","type":"number","calc":true,"value":""},{"id":"EXA","type":"number","calc":true,"value":""},{"id":"EXEMPTS","type":"number","calc":true,"value":""},{"id":"EXB","type":"number","calc":true,"value":""},{"id":"MFSSPFNM","type":"alpha","calc":false,"value":""},{"id":"MFSSPMI","type":"alpha","calc":false,"value":""},{"id":"MFSSPLNM","type":"alpha","calc":false,"value":""},{"id":"MFSSPS","type":"alpha","calc":false,"value":""},{"id":"TPBDAY","type":"date","calc":false,"value":""},{"id":"SPBDAY","type":"date","calc":false,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"Add_Sch_ADJ_Line_3","type":"link","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":true,"value":""},{"id":"L4TP","type":"number","calc":false,"value":""},{"id":"L4SP","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"Add_Sch_ADJ_Line_7","type":"link","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10FED","type":"number","calc":false,"value":""},{"id":"L10ST","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"Add_Sch_ADJ_Line_9","type":"link","calc":false,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":true,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"OTHCRS","type":"box","calc":false,"value":""},{"id":"CCBX","type":"box","calc":false,"value":""},{"id":"REFTYPRB","type":"radio","calc":false,"value":"DBDBX"},{"id":"REFTYPRB","type":"radio","calc":false,"value":"DCBX"},{"id":"A768XRB","type":"radio","calc":false,"value":"ACCTC"},{"id":"A768XRB","type":"radio","calc":false,"value":"ACCTS"},{"id":"FARMBX","type":"box","calc":false,"value":""},{"id":"FEDSCHC","type":"box","calc":false,"value":""},{"id":"FEIC","type":"box","calc":false,"value":""},{"id":"OSBX","type":"box","calc":false,"value":""},{"id":"TPDEC","type":"box","calc":false,"value":""},{"id":"SPDEC","type":"box","calc":false,"value":""},{"id":"X99G","type":"box","calc":false,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L16TP","type":"number","calc":false,"value":""},{"id":"L16SP","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"WITHHELD","type":"number","calc":false,"value":""},{"id":"SPWHELD","type":"number","calc":false,"value":""},{"id":"TAXPYMTS","type":"number","calc":false,"value":""},{"id":"EXTPYMTS","type":"number","calc":false,"value":""},{"id":"Add_Sch_ADJ","type":"link","calc":false,"value":""},{"id":"L21","type":"number","calc":true,"value":""},{"id":"Add_Sch_OSC","type":"link","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"Add_Sch_CR","type":"link","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"L25","type":"number","calc":true,"value":""},{"id":"OVERPYMT","type":"number","calc":true,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"number","calc":true,"value":""},{"id":"Add_Sch_ADJ_line_24","type":"link","calc":false,"value":""},{"id":"L29","type":"number","calc":true,"value":""},{"id":"AMTDUE","type":"number","calc":true,"value":""},{"id":"REFUND","type":"number","calc":true,"value":""},{"id":"RTN","type":"mask","calc":false,"value":""},{"id":"BANK","type":"mask","calc":false,"value":""},{"id":"FEIC11A","type":"number","calc":false,"value":""},{"id":"TBPHONE","type":"phone","calc":false,"value":""},{"id":"HMPHONE","type":"phone","calc":false,"value":""},{"id":"SBPHONE","type":"phone","calc":false,"value":""},{"id":"PNAM","type":"alpha","calc":true,"value":"SELF-PREPARED"}] \ No newline at end of file diff --git a/test/data/va/form/VA760.json b/test/data/va/form/VA760.json new file mode 100755 index 00000000..216f3b5d --- /dev/null +++ b/test/data/va/form/VA760.json @@ -0,0 +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":"#b8e3d4","x":5.741,"y":11.716,"w":3,"l":53.238},{"oc":"#b8e3d4","x":5.741,"y":4.319,"w":3,"l":53.238},{"oc":"#abdecc","x":6.188,"y":4.141,"w":1.5,"l":92.813},{"oc":"#abdecc","x":7.735,"y":46.672,"w":1.5,"l":90.982},{"oc":"#b8e3d4","x":57.544,"y":11.716,"w":3,"l":41.955},{"oc":"#90d4bc","x":5.861,"y":6.244,"w":1.5,"l":53.066},{"oc":"#90d4bc","x":5.792,"y":8.056,"w":1.5,"l":53.135},{"oc":"#90d4bc","x":5.767,"y":10.059,"w":1.5,"l":53.015},{"oc":"#c6e9dc","x":6.222,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":6.213,"y":14.475,"w":6,"l":2.449},{"oc":"#c6e9dc","x":8.697,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":8.663,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":11.172,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":11.138,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":13.647,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":13.613,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":16.122,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":16.088,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.597,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.563,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":21.072,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":21.038,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":23.547,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":23.513,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":26.022,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":25.988,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":89.556,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":89.573,"y":14.475,"w":6,"l":2.423},{"oc":"#c6e9dc","x":92.031,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":91.996,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":94.506,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":94.471,"y":14.475,"w":6,"l":2.475},{"oc":"#b8e3d4","x":3.601,"y":22.372,"w":0.75,"l":1.358},{"oc":"#b8e3d4","x":3.61,"y":35.163,"w":0.75,"l":1.358},{"oc":"#2b2e34","x":53.105,"y":37.43,"w":1.0979999999999999,"l":2.114},{"oc":"#c6e9dc","x":67.718,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.193,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.668,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.143,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.618,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.093,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.568,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.043,"y":23.603,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.449,"y":23.6,"w":6,"l":3.266},{"oc":"#c6e9dc","x":67.752,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.227,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.702,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.177,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.652,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.127,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.602,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.077,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.552,"y":22.356,"w":6,"l":2.475},{"oc":"#c6e9dc","x":93.774,"y":22.36,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":23.606,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":22.36,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":23.606,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.219,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":25.247,"w":6,"l":2.458},{"oc":"#c6e9dc","x":70.184,"y":25.247,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":25.247,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":25.247,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":25.247,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":25.247,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":25.247,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":25.247,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.501,"y":25.25,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.774,"y":24.003,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":25.25,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":24.003,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":25.25,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":26.774,"w":6,"l":2.458},{"oc":"#c6e9dc","x":70.219,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":26.774,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":26.774,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":26.774,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":26.774,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":26.774,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":26.774,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":26.774,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":25.527,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.501,"y":26.774,"w":6,"l":3.197},{"oc":"#c6e9dc","x":93.774,"y":25.534,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":26.78,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":25.534,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":26.78,"w":6,"l":3.205},{"oc":"#c6e9dc","x":77.644,"y":27.418,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":28.665,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":27.418,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":28.665,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":27.418,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":28.665,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":27.418,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":28.665,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":27.418,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.449,"y":28.671,"w":6,"l":3.24},{"oc":"#c6e9dc","x":93.774,"y":27.418,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":28.665,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":27.418,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":28.665,"w":6,"l":3.205},{"oc":"#c6e9dc","x":39.668,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":39.659,"y":28.818,"w":6,"l":2.449},{"oc":"#c6e9dc","x":42.143,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":42.108,"y":28.818,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.618,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.583,"y":28.818,"w":6,"l":2.475},{"oc":"#c6e9dc","x":47.093,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":47.058,"y":28.818,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.568,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.533,"y":28.824,"w":6,"l":3.188},{"oc":"#c6e9dc","x":10.801,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":10.775,"y":28.818,"w":6,"l":2.466},{"oc":"#c6e9dc","x":13.276,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":13.242,"y":28.818,"w":6,"l":2.475},{"oc":"#c6e9dc","x":15.751,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":15.717,"y":28.818,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.226,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.192,"y":28.818,"w":6,"l":2.475},{"oc":"#c6e9dc","x":20.701,"y":27.743,"w":6,"l":2.475},{"oc":"#c6e9dc","x":20.667,"y":28.827,"w":6,"l":3.188},{"oc":"#c6e9dc","x":67.744,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.709,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.219,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":30.308,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":29.062,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.423,"y":30.315,"w":6,"l":3.266},{"oc":"#c6e9dc","x":93.774,"y":29.065,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":30.312,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":29.065,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":30.312,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":31.952,"w":6,"l":2.458},{"oc":"#c6e9dc","x":70.219,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":31.952,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":31.952,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":31.952,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":31.952,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":31.952,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":31.952,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":31.952,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.501,"y":31.955,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.774,"y":30.705,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":31.952,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":30.705,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":31.952,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":33.602,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.219,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":33.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":33.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":33.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":33.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":33.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":33.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":33.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.501,"y":33.596,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.774,"y":32.352,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":33.599,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":32.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":33.599,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":35.243,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.219,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":35.24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":35.24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":35.24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":35.24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":35.24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":35.24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":35.24,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.406,"y":35.246,"w":6,"l":3.283},{"oc":"#c6e9dc","x":93.774,"y":33.993,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":35.24,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":33.993,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":35.24,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":36.887,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.219,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":36.884,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":36.884,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":36.884,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":36.884,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":36.884,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":36.884,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":36.884,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":35.637,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.44,"y":36.884,"w":6,"l":3.257},{"oc":"#c6e9dc","x":93.774,"y":35.64,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":36.887,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":35.64,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":36.887,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":39.746,"w":6,"l":2.57},{"oc":"#c6e9dc","x":70.219,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":39.752,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":39.752,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":39.752,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":39.752,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":39.752,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":39.752,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":39.752,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.509,"y":39.743,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.774,"y":38.505,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":39.752,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":38.505,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":39.752,"w":6,"l":3.205},{"oc":"#c6e9dc","x":5.009,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":5.009,"y":39.627,"w":6,"l":2.441},{"oc":"#c6e9dc","x":7.484,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":7.45,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":9.959,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":9.925,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":12.434,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":12.4,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":14.909,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":14.875,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":17.384,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":17.35,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":19.859,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":19.816,"y":39.627,"w":6,"l":3.214},{"oc":"#c6e9dc","x":34.64,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":34.632,"y":39.627,"w":6,"l":2.449},{"oc":"#c6e9dc","x":37.115,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":37.081,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":39.59,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":39.556,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":42.065,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":42.031,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.54,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.506,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":47.015,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":46.981,"y":39.627,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.49,"y":38.38,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.361,"y":39.627,"w":6,"l":3.291},{"oc":"#c6e9dc","x":77.652,"y":40.149,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.652,"y":41.396,"w":6,"l":2.441},{"oc":"#c6e9dc","x":80.127,"y":40.149,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.093,"y":41.396,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.602,"y":40.149,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.568,"y":41.396,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.077,"y":40.149,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.043,"y":41.396,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.552,"y":40.149,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.501,"y":41.393,"w":6,"l":3.214},{"oc":"#c6e9dc","x":93.774,"y":40.149,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":41.396,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":40.149,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":41.396,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":43.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.219,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":43.043,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":43.043,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":43.043,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":43.043,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":43.043,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":43.043,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":43.043,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.501,"y":43.04,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.774,"y":41.796,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":43.043,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":41.796,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":43.043,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":44.687,"w":6,"l":2.458},{"oc":"#c6e9dc","x":70.219,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":44.687,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":44.687,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":44.687,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":44.687,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":44.687,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":44.687,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":44.687,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":43.44,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.475,"y":44.687,"w":6,"l":3.214},{"oc":"#c6e9dc","x":93.774,"y":43.443,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":44.69,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":43.443,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":44.69,"w":6,"l":3.205},{"oc":"#c6e9dc","x":67.744,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.726,"y":46.292,"w":6,"l":2.458},{"oc":"#c6e9dc","x":70.219,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.184,"y":46.292,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.694,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.659,"y":46.292,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.168,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.134,"y":46.292,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.644,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.609,"y":46.292,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.119,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.084,"y":46.292,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.594,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.559,"y":46.292,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.069,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.034,"y":46.292,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.544,"y":45.045,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.423,"y":46.292,"w":6,"l":3.274},{"oc":"#c6e9dc","x":93.774,"y":45.048,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.774,"y":46.295,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.768,"y":45.048,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.733,"y":46.295,"w":6,"l":3.205},{"oc":"#c6e9dc","x":74.113,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":74.087,"y":14.478,"w":6,"l":2.466},{"oc":"#c6e9dc","x":76.588,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":76.553,"y":14.478,"w":6,"l":2.475},{"oc":"#c6e9dc","x":79.063,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":79.028,"y":14.478,"w":6,"l":2.475},{"oc":"#c6e9dc","x":81.538,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":81.503,"y":14.478,"w":6,"l":2.544},{"oc":"#90d4bc","x":5.741,"y":11.591,"w":1.5,"l":53.041},{"oc":"#2b2e34","x":3.363,"y":12.049,"w":3,"l":2.432},{"oc":"#c6e9dc","x":31.565,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":31.556,"y":14.478,"w":6,"l":2.449},{"oc":"#c6e9dc","x":34.04,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":34.006,"y":14.478,"w":6,"l":2.475},{"oc":"#c6e9dc","x":36.515,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":36.481,"y":14.478,"w":6,"l":2.475},{"oc":"#c6e9dc","x":38.99,"y":13.231,"w":6,"l":2.475},{"oc":"#c6e9dc","x":38.956,"y":14.478,"w":6,"l":2.552},{"oc":"#2b2e34","x":3.363,"y":47.617,"w":3,"l":2.432},{"oc":"#c6e9dc","x":46.913,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":46.905,"y":14.475,"w":6,"l":2.449},{"oc":"#c6e9dc","x":49.388,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.354,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":51.863,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":51.829,"y":14.475,"w":6,"l":2.621},{"oc":"#c6e9dc","x":54.347,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":54.313,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":56.822,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":56.788,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":59.288,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":59.254,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":61.763,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":61.729,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":64.247,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":64.092,"y":14.475,"w":6,"l":2.63},{"oc":"#c6e9dc","x":66.722,"y":13.228,"w":6,"l":2.475},{"oc":"#c6e9dc","x":66.688,"y":14.475,"w":6,"l":2.475},{"oc":"#c6e9dc","x":6.028,"y":20.302,"w":3,"l":93.397},{"oc":"#b8e3d4","x":6.028,"y":14.767,"w":3,"l":93.311},{"oc":"#c6e9dc","x":70.894,"y":15.874,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.894,"y":17.12,"w":6,"l":2.441},{"oc":"#c6e9dc","x":73.369,"y":15.874,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.334,"y":17.12,"w":6,"l":3.205},{"oc":"#c6e9dc","x":62.687,"y":15.874,"w":6,"l":2.475},{"oc":"#c6e9dc","x":62.652,"y":17.121,"w":6,"l":2.475},{"oc":"#c6e9dc","x":65.162,"y":15.874,"w":6,"l":2.475},{"oc":"#c6e9dc","x":65.127,"y":17.121,"w":6,"l":3.205},{"oc":"#c6e9dc","x":73.644,"y":18.502,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.635,"y":19.749,"w":6,"l":3.154},{"oc":"#c6e9dc","x":44.889,"y":17.399,"w":3,"l":46.527},{"oc":"#abdecc","x":84.73,"y":17.099,"w":1.5,"l":8.293},{"oc":"#abdecc","x":84.73,"y":19.196,"w":1.5,"l":8.293},{"oc":"#2b2e34","x":97.763,"y":7.216,"w":3,"l":2.432},{"oc":"#c6e9dc","x":6.188,"y":22.075,"w":3,"l":92.989},{"oc":"#abdecc","x":33.195,"y":21.672,"w":1.5,"l":22.55},{"oc":"#abdecc","x":33.195,"y":20.7,"w":1.5,"l":22.55},{"oc":"#abdecc","x":75.859,"y":21.672,"w":1.5,"l":22.55},{"oc":"#abdecc","x":75.859,"y":20.7,"w":1.5,"l":22.55},{"oc":"#2b2e34","x":64.626,"y":5.656,"w":0.9885,"l":3.608},{"oc":"#2b2e34","x":71.015,"y":5.656,"w":0.9885,"l":6.813},{"oc":"#2b2e34","x":96.967,"y":47.831,"w":3,"l":2.432}],"VLines":[{"oc":"#b8e3d4","x":58.979,"y":4.319,"w":3,"l":7.397},{"oc":"#b8e3d4","x":5.741,"y":4.319,"w":3,"l":7.397},{"oc":"#b8e3d4","x":59.675,"y":4.194,"w":3,"l":7.522},{"oc":"#c6e9dc","x":6.557,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":9.032,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":11.507,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":13.982,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":16.457,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":18.932,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":21.407,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":23.882,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":26.357,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":28.755,"y":13.103,"w":6,"l":1.494},{"oc":"#c6e9dc","x":89.891,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":92.366,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.841,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":97.23,"y":13.103,"w":6,"l":1.494},{"oc":"#b8e3d4","x":3.653,"y":22.36,"w":0.75,"l":0.497},{"oc":"#b8e3d4","x":3.653,"y":34.647,"w":0.75,"l":0.531},{"oc":"#c6e9dc","x":68.087,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.562,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.037,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.512,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.987,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.462,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.937,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.412,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.887,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.362,"y":22.235,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":22.238,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":22.238,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":23.878,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":23.881,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":23.881,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":25.405,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":25.412,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":25.412,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":27.296,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":27.296,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":27.296,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":27.296,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":27.296,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":27.293,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.118,"y":27.296,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":27.296,"w":6,"l":1.35},{"oc":"#c6e9dc","x":40.003,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":42.478,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":44.953,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":47.428,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":49.903,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":52.378,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":11.136,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":13.611,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":16.086,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":18.561,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":21.036,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":23.511,"y":27.621,"w":6,"l":1.162},{"oc":"#c6e9dc","x":68.079,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":28.94,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":28.937,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.118,"y":28.943,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":28.943,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":30.584,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":32.224,"w":6,"l":1.356},{"oc":"#c6e9dc","x":94.118,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":32.231,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":33.871,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":35.515,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":35.512,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":35.518,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":35.518,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":38.383,"w":6,"l":1.35},{"oc":"#c6e9dc","x":5.344,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":7.819,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":10.294,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":12.769,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":15.244,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":17.719,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":20.194,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":22.669,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":34.976,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":37.451,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":39.926,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":42.401,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":44.876,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":47.351,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":49.826,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":52.301,"y":38.258,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.987,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.462,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.937,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.412,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.887,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.362,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":40.027,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":41.668,"w":6,"l":1.356},{"oc":"#c6e9dc","x":94.118,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":41.674,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":43.318,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":43.312,"w":6,"l":1.356},{"oc":"#c6e9dc","x":94.118,"y":43.321,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":43.321,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.079,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.554,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.029,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.504,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.979,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.454,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.929,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.404,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.879,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.354,"y":44.923,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.118,"y":44.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.578,"y":44.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":74.448,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":76.923,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":79.398,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":81.873,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":84.339,"y":13.103,"w":6,"l":1.494},{"oc":"#2b2e34","x":3.535,"y":11.99,"w":3,"l":0.884},{"oc":"#c6e9dc","x":31.9,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":34.375,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":36.85,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":39.325,"y":13.11,"w":6,"l":1.35},{"oc":"#c6e9dc","x":41.809,"y":13.103,"w":6,"l":1.503},{"oc":"#2b2e34","x":3.535,"y":46.792,"w":3,"l":0.884},{"oc":"#90d4bc","x":32.003,"y":4.372,"w":1.5,"l":3.65},{"oc":"#90d4bc","x":28.549,"y":4.272,"w":1.5,"l":3.75},{"oc":"#c6e9dc","x":47.249,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":49.724,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":52.199,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":54.682,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":57.157,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":59.624,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":62.099,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":64.582,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":67.057,"y":13.106,"w":6,"l":1.35},{"oc":"#c6e9dc","x":69.455,"y":13.103,"w":6,"l":1.494},{"oc":"#c6e9dc","x":44.906,"y":14.699,"w":3,"l":5.659},{"oc":"#c6e9dc","x":71.229,"y":15.752,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.704,"y":15.752,"w":6,"l":1.35},{"oc":"#c6e9dc","x":76.179,"y":15.752,"w":6,"l":1.35},{"oc":"#c6e9dc","x":63.022,"y":15.752,"w":6,"l":1.35},{"oc":"#c6e9dc","x":65.497,"y":15.752,"w":6,"l":1.35},{"oc":"#c6e9dc","x":67.972,"y":15.752,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.979,"y":18.38,"w":6,"l":1.35},{"oc":"#c6e9dc","x":76.454,"y":18.374,"w":6,"l":1.356},{"oc":"#2b2e34","x":100.023,"y":7.153,"w":3,"l":0.884},{"oc":"#abdecc","x":55.745,"y":20.7,"w":1.5,"l":0.972},{"oc":"#abdecc","x":33.195,"y":20.7,"w":1.5,"l":0.972},{"oc":"#abdecc","x":98.409,"y":20.7,"w":1.5,"l":0.972},{"oc":"#abdecc","x":75.859,"y":20.7,"w":1.5,"l":0.972},{"oc":"#2b2e34","x":99.253,"y":47.006,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c6e9dc","x":82.035,"y":23.234,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.593,"y":23.216,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":24.878,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":24.86,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":26.405,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":26.387,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":28.296,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":44.051,"y":28.48,"w":1.856,"h":0.372,"clr":-1},{"oc":"#c6e9dc","x":15.184,"y":28.48,"w":1.856,"h":0.372,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":29.94,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":29.921,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":31.584,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":31.565,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":33.231,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":33.212,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":34.871,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":34.853,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":36.515,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":36.496,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":39.383,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":39.365,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":14.342,"y":39.258,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":6.9,"y":39.24,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":43.973,"y":39.258,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":36.531,"y":39.24,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.035,"y":41.027,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":42.674,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":42.655,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":44.318,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":44.299,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.026,"y":45.923,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.584,"y":45.905,"w":1.856,"h":0.431,"clr":-1},{"oc":"#b8e3d4","x":6.028,"y":14.699,"w":11.026,"h":1.019,"clr":-1},{"oc":"#b8e3d4","x":44.958,"y":14.73,"w":10.347,"h":1.016,"clr":-1},{"oc":"#abdecc","x":45.465,"y":16.064,"w":3.171,"h":1.153,"clr":-1},{"oc":"#abdecc","x":45.465,"y":18.268,"w":3.171,"h":1.153,"clr":-1},{"oc":"#2b2e34","x":51.119,"y":16.477,"w":2.14,"h":0.438,"clr":-1},{"oc":"#b8e3d4","x":6.028,"y":20.239,"w":11.026,"h":1.019,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":7.106,"y":1.569,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":13.989,"y":1.569,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"%20V","S":-1,"TS":[0,17,1,0]}]},{"oc":"#2b2e34","x":16.061,"y":1.569,"w":12.226000000000003,"clr":-1,"A":"left","R":[{"T":"irginia%20Resident%20Form%20760","S":-1,"TS":[0,17,1,0]}]},{"oc":"#2b2e34","x":7.106,"y":2.469,"w":9.336,"clr":-1,"A":"left","R":[{"T":"Individual%20Income%20T","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":26.206,"y":2.469,"w":4.612,"clr":-1,"A":"left","R":[{"T":"ax%20Return","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":88.214,"y":11.469,"w":5.377000000000002,"clr":-1,"A":"left","R":[{"T":"Locality%20Code","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":88.146,"y":12.108,"w":6.380000000000001,"clr":-1,"A":"left","R":[{"T":"See%20instructions","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.436,"y":4.191,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":7.166,"y":4.191,"w":5.2410000000000005,"clr":-1,"A":"left","R":[{"T":"our%20first%20name%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":29.124,"y":4.191,"w":1.367,"clr":-1,"A":"left","R":[{"T":"M.I.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":32.681,"y":4.191,"w":3.829,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.436,"y":7.781000000000001,"w":23.018,"clr":-1,"A":"left","R":[{"T":"Number%20and%20Street%20-%20If%20this%20is%20a%20change%20you%20must%20check%20this%20box","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.436,"y":9.913,"w":1.412,"clr":-1,"A":"left","R":[{"T":"City","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.527,"y":9.913,"w":7.1110000000000015,"clr":-1,"A":"left","R":[{"T":"%2C%20town%20or%20post%20office","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":42.787,"y":9.957,"w":3.464,"clr":-1,"A":"left","R":[{"T":"ZIP%20Code","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":7.789,"y":11.871,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":8.626,"y":11.871,"w":10.754999999999999,"clr":-1,"A":"left","R":[{"T":"our%20Social%20Security%20Number","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":31.279,"y":11.469,"w":6.380000000000001,"clr":-1,"A":"left","R":[{"T":"First%204%20letters%20of%20","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":31.592,"y":12.032,"w":5.788000000000002,"clr":-1,"A":"left","R":[{"T":"your%20last%20name","S":34,"TS":[1,14,1,0]}]},{"x":13.371,"y":13.3,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"x":18.313,"y":13.318,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":46.528,"y":11.871,"w":3.19,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":51.959,"y":11.871,"w":10.118,"clr":-1,"A":"left","R":[{"T":"s%20Social%20Security%20Number%20","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":73.83,"y":11.469,"w":6.380000000000001,"clr":-1,"A":"left","R":[{"T":"First%204%20letters%20of%20","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":72.64,"y":12.032,"w":7.566000000000002,"clr":-1,"A":"left","R":[{"T":"spouse%E2%80%99s%20last%20name","S":34,"TS":[1,14,1,0]}]},{"oc":"#2b2e34","x":14.162,"y":30.166,"w":14.129999999999997,"clr":-1,"A":"left","R":[{"T":"(Reported%20as%20taxable%20on%20federal%20return)","S":27,"TS":[1,12,0,0]}]},{"oc":"#b8e3d4","x":4.278,"y":32.193,"w":5.445000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20Forms%20W","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#b8e3d4","x":4.279,"y":29.819,"w":17.39700000000001,"clr":-1,"A":"left","R":[{"T":"-2%2C%20W-2G%2C%201099%20and%20VK-1%20reporting%20VA%20","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#b8e3d4","x":5.31,"y":29.008,"w":7.837,"clr":-1,"A":"left","R":[{"T":"withholding%20%20here.","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#2b2e34","x":5.568,"y":22.678,"w":0.684,"clr":-1,"A":"left","R":[{"T":"1.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":22.678,"w":3.1450000000000005,"clr":-1,"A":"left","R":[{"T":"Federal%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":12.861,"y":22.678,"w":9.205,"clr":-1,"A":"left","R":[{"T":"Adjusted%20Gross%20Income","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":27.438,"y":22.678,"w":22.11600000000003,"clr":-1,"A":"left","R":[{"T":".................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.787,"y":22.678,"w":0.456,"clr":-1,"A":"left","R":[{"T":"1","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":24.253,"w":0.684,"clr":-1,"A":"left","R":[{"T":"2.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":24.253,"w":0.501,"clr":-1,"A":"left","R":[{"T":"T","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.677,"y":24.253,"w":7.019,"clr":-1,"A":"left","R":[{"T":"otal%20Additions%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":19.009,"y":24.253,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":24.578,"y":24.253,"w":3.6470000000000002,"clr":-1,"A":"left","R":[{"T":"Schedule%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":30.149,"y":24.253,"w":4.694999999999999,"clr":-1,"A":"left","R":[{"T":"ADJ%2C%20Line%203%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":38.019,"y":24.253,"w":15.275999999999991,"clr":-1,"A":"left","R":[{"T":"...................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.788,"y":24.253,"w":0.456,"clr":-1,"A":"left","R":[{"T":"2","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":25.828,"w":0.684,"clr":-1,"A":"left","R":[{"T":"3.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":25.828,"w":7.018000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%201%20and%202","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":19.325,"y":25.828,"w":14.363999999999992,"clr":-1,"A":"left","R":[{"T":"...............................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.547,"y":25.828,"w":12.995999999999993,"clr":-1,"A":"left","R":[{"T":".........................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.788,"y":25.828,"w":0.456,"clr":-1,"A":"left","R":[{"T":"3","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":26.503,"w":0.684,"clr":-1,"A":"left","R":[{"T":"4.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":26.503,"w":34.41800000000001,"clr":-1,"A":"left","R":[{"T":"Deduction%20for%20age%20on%20January%201%2C%202014.%20See%20Instructions.%20Be%20sure%20to%20provide%20date%20of%20birth%20above.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.943,"y":27.853,"w":0.456,"clr":-1,"A":"left","R":[{"T":"4","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":29.372,"w":0.684,"clr":-1,"A":"left","R":[{"T":"5.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":29.372,"w":5.651000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":16.716,"y":29.372,"w":21.78700000000001,"clr":-1,"A":"left","R":[{"T":"Act%20and%20equivalent%20Tier%201%20Railroad%20Retirement%20Act%20benefits%20%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":50.365,"y":29.372,"w":7.2959999999999985,"clr":-1,"A":"left","R":[{"T":"................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.943,"y":29.372,"w":0.456,"clr":-1,"A":"left","R":[{"T":"5","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":31.172,"w":0.684,"clr":-1,"A":"left","R":[{"T":"6.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":31.172,"w":5.0600000000000005,"clr":-1,"A":"left","R":[{"T":"State%20Income%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":15.847999999999999,"y":31.172,"w":26.115999999999993,"clr":-1,"A":"left","R":[{"T":"Tax%20refund%20or%20overpayment%20credit%20(reported%20as%20income%20on%20federal%20return)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":56.361,"y":31.172,"w":3.4200000000000013,"clr":-1,"A":"left","R":[{"T":"...............","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.788,"y":31.172,"w":0.456,"clr":-1,"A":"left","R":[{"T":"6","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":32.691,"w":0.684,"clr":-1,"A":"left","R":[{"T":"7.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":32.691,"w":6.654,"clr":-1,"A":"left","R":[{"T":"Subtractions%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.994,"y":32.691,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":23.334,"y":32.691,"w":3.6470000000000002,"clr":-1,"A":"left","R":[{"T":"Schedule%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":28.905,"y":32.691,"w":4.467,"clr":-1,"A":"left","R":[{"T":"ADJ%2C%20Line%207%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":36.609,"y":32.691,"w":16.18799999999999,"clr":-1,"A":"left","R":[{"T":".......................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.788,"y":32.691,"w":0.456,"clr":-1,"A":"left","R":[{"T":"7","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":34.491,"w":0.684,"clr":-1,"A":"left","R":[{"T":"8.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":34.491,"w":8.842,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%204%2C%205%2C%206%20and%207","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":22.147,"y":34.491,"w":14.363999999999992,"clr":-1,"A":"left","R":[{"T":"...............................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":44.37,"y":34.491,"w":11.171999999999995,"clr":-1,"A":"left","R":[{"T":".................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.788,"y":34.491,"w":0.456,"clr":-1,"A":"left","R":[{"T":"8","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":35.728,"w":0.684,"clr":-1,"A":"left","R":[{"T":"9.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":35.728,"w":0.547,"clr":-1,"A":"left","R":[{"T":"V","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.867,"y":35.729,"w":25.97400000000001,"clr":-1,"A":"left","R":[{"T":"irginia%20Adjusted%20Gross%20Income%20(VAGI)%20-%20Subtract%20Line%208%20from%20Line%203","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":48.954,"y":35.728,"w":8.207999999999998,"clr":-1,"A":"left","R":[{"T":"....................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.788,"y":35.728,"w":0.456,"clr":-1,"A":"left","R":[{"T":"9","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":36.613,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":36.613,"w":4.375,"clr":-1,"A":"left","R":[{"T":"Deductions-","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.812,"y":36.613,"w":6.151000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20Standard%3A","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":33.701,"y":36.613,"w":3.6710000000000003,"clr":-1,"A":"left","R":[{"T":"%3D%20%243%2C000%3B%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":39.379,"y":36.613,"w":0.684,"clr":-1,"A":"left","R":[{"T":"2%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":40.437,"y":36.613,"w":3.6710000000000003,"clr":-1,"A":"left","R":[{"T":"%3D%20%246%2C000%3B%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":46.116,"y":36.613,"w":0.684,"clr":-1,"A":"left","R":[{"T":"3%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":47.174,"y":36.613,"w":3.443,"clr":-1,"A":"left","R":[{"T":"%3D%20%243%2C000%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":52.855,"y":36.613,"w":1.23,"clr":-1,"A":"left","R":[{"T":"OR","S":34,"TS":[1,14,1,0]}]},{"oc":"#2b2e34","x":55.322,"y":36.613,"w":3.5090000000000003,"clr":-1,"A":"left","R":[{"T":"%20Itemized","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":60.75,"y":36.613,"w":0.228,"clr":-1,"A":"left","R":[{"T":"%3A","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.22,"y":38.773,"w":0.912,"clr":-1,"A":"left","R":[{"T":"10","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":39.853,"w":0.456,"clr":-1,"A":"left","R":[{"T":"1","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.18,"y":39.853,"w":0.684,"clr":-1,"A":"left","R":[{"T":"1.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":39.853,"w":12.624999999999996,"clr":-1,"A":"left","R":[{"T":"Exemptions.%20Sum%20of%20total%20from%20Exe","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":27.574,"y":39.853,"w":21.103000000000005,"clr":-1,"A":"left","R":[{"T":"mption%20Section%20A%20multiplied%20by%20%24930%20plus%20sum%20of%20total%20from","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":40.528,"w":12.625,"clr":-1,"A":"left","R":[{"T":"Exemption%20Section%20B%20multiplied%20by%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":27.575,"y":40.528,"w":1.824,"clr":-1,"A":"left","R":[{"T":"%24800","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":30.612,"y":40.528,"w":19.608000000000015,"clr":-1,"A":"left","R":[{"T":"......................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.152,"y":40.528,"w":0.456,"clr":-1,"A":"left","R":[{"T":"1","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":61.787,"y":40.528,"w":0.456,"clr":-1,"A":"left","R":[{"T":"1","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":42.103,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":48.248,"y":42.103,"w":8.207999999999998,"clr":-1,"A":"left","R":[{"T":"....................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.082,"y":42.103,"w":0.912,"clr":-1,"A":"left","R":[{"T":"12","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":43.622,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":43.622,"w":6.016000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2010%2C%201","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":17.279,"y":43.622,"w":3.282,"clr":-1,"A":"left","R":[{"T":"1%20and%2012","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":22.852,"y":43.622,"w":14.135999999999992,"clr":-1,"A":"left","R":[{"T":"..............................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":44.722,"y":43.622,"w":10.487999999999996,"clr":-1,"A":"left","R":[{"T":"..............................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.082,"y":43.622,"w":0.912,"clr":-1,"A":"left","R":[{"T":"13","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568,"y":45.14,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043,"y":45.14,"w":0.547,"clr":-1,"A":"left","R":[{"T":"V","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.867,"y":45.14,"w":20.827,"clr":-1,"A":"left","R":[{"T":"irginia%20Taxable%20Income%20-%20Subtract%20Line%2013%20from%20Line%209%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":41.194,"y":45.14,"w":12.767999999999994,"clr":-1,"A":"left","R":[{"T":"........................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.082,"y":45.14,"w":0.912,"clr":-1,"A":"left","R":[{"T":"14","S":33,"TS":[1,12,1,0]}]},{"oc":"#c6e9dc","x":91.436,"y":22.724,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.326,"y":22.656,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.884,"y":22.656,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":22.663,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":22.662,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":24.281,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":24.3,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":24.3,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":24.307,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":24.307,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":25.808,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":25.827,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":25.827,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":25.837,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":25.837,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":27.701,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":27.717,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":27.721,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":27.722,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":7.346,"y":27.809,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":8.1,"y":27.809,"w":1.002,"clr":-1,"A":"left","R":[{"T":"ou","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":54.182,"y":28.005,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"x":44.342,"y":27.955,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":30.334,"y":27.743,"w":0.5640000000000001,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,17,0,0]}]},{"oc":"#231e21","x":59.64,"y":27.774,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":11,"TS":[0,18,1,0]}]},{"oc":"#231e21","x":52.764,"y":28.017,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":24.241,"y":28.017,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":33.629,"y":27.684,"w":2.9619999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":25.315,"y":28.005,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"x":15.475,"y":27.955,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.436,"y":29.389,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":29.361,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":29.361,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":29.368,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":29.368,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":30.983,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":31.005,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":31.005,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":31.009,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":31.009,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":32.677,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.412,"y":32.645,"w":0.666,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":32.652,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":32.652,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":32.656,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":32.656,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":34.318,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":34.293,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":34.293,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":34.297,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":34.296,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":35.961,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":35.936,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":35.936,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":35.944,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":35.943,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":38.833,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":38.805,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":38.805,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":38.809,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":38.808,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":28.125,"y":38.44,"w":3.2219999999999995,"clr":-1,"A":"left","R":[{"T":"MINUS","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":4.933,"y":37.302,"w":2.325,"clr":-1,"A":"left","R":[{"T":"10a.%20T","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":8.437,"y":37.303,"w":9.66,"clr":-1,"A":"left","R":[{"T":"otal%20Itemized%20Deductions","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":27.311,"y":37.303,"w":20.874000000000006,"clr":-1,"A":"left","R":[{"T":"10b.%20State%20and%20Local%20Income%20Taxes%20claimed%20on%20Sch.%20A","S":33,"TS":[1,12,1,0]}]},{"x":14.633,"y":38.68,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":7.191,"y":38.68,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":44.265,"y":38.68,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":36.822,"y":38.68,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":23.15,"y":38.945,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":59.639,"y":38.383,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":11,"TS":[0,18,1,0]}]},{"oc":"#231e21","x":52.781,"y":38.926,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":24.576,"y":38.792,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":54.268,"y":38.792,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.436,"y":40.47,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.326,"y":40.449,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":40.453,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":40.453,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":42.121,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.412,"y":42.089,"w":0.666,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":42.096,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":42.096,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":42.1,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":42.099,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":43.761,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":43.739,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":43.739,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":43.747,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":43.746,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.436,"y":45.413,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.318,"y":45.345,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.876,"y":45.345,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.289,"y":45.352,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":96.226,"y":45.351,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":84.837,"y":46.666,"w":0.866,"clr":-1,"A":"left","R":[{"T":"Of","S":27,"TS":[1,12,0,0]}]},{"oc":"#b8e3d4","x":86.155,"y":46.666,"w":2.962,"clr":-1,"A":"left","R":[{"T":"fice%20Use","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.172,"y":25.063,"w":11.896,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Schedule%20ADJ)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.172,"y":33.466,"w":11.896,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Schedule%20ADJ)","S":27,"TS":[1,12,0,0]}]},{"oc":"#b8e3d4","x":5.61,"y":44.656,"w":9.227,"clr":-1,"A":"left","R":[{"T":"Staple%20payment%20here","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#b8e3d4","x":3.998,"y":43.253,"w":1.167,"clr":-1,"A":"left","R":[{"T":"ST","S":1,"TS":[0,8,0,0],"RA":90}]},{"oc":"#b8e3d4","x":3.9989999999999997,"y":42.913,"w":2.5,"clr":-1,"A":"left","R":[{"T":"APLE","S":1,"TS":[0,8,0,0],"RA":90}]},{"oc":"#b8e3d4","x":3.875,"y":1.525,"w":1.167,"clr":-1,"A":"left","R":[{"T":"ST","S":-1,"TS":[0,7.999952049770077,0,0],"RA":45}]},{"oc":"#b8e3d4","x":4.536,"y":1.2850000000000001,"w":2.5,"clr":-1,"A":"left","R":[{"T":"APLE","S":-1,"TS":[0,7.999952049770077,0,0],"RA":45}]},{"oc":"#2b2e34","x":32.518,"y":6.094,"w":3.829,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#b8e3d4","x":4.355,"y":33.263,"w":1.167,"clr":-1,"A":"left","R":[{"T":"ST","S":1,"TS":[0,8,0,0],"RA":90}]},{"oc":"#b8e3d4","x":4.355,"y":32.923,"w":2.5,"clr":-1,"A":"left","R":[{"T":"APLE","S":1,"TS":[0,8,0,0],"RA":90}]},{"oc":"#2b2e34","x":55.051,"y":4.191,"w":1.231,"clr":-1,"A":"left","R":[{"T":"Suf","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":56.933,"y":4.191,"w":0.8200000000000001,"clr":-1,"A":"left","R":[{"T":"fix","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":55.051,"y":6.094,"w":2.051,"clr":-1,"A":"left","R":[{"T":"Suffix","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":4.312,"y":4.807,"w":6.950000000000001,"clr":-1,"A":"left","R":[{"T":"2601031%20%2001%2F13","S":51,"TS":[0,9,0,0],"RA":90}]},{"x":54.08,"y":13.3,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"x":59.004,"y":13.318,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":9.462,"y":16.747,"w":15.539999999999997,"clr":-1,"A":"left","R":[{"T":"(2)%20Married%20filing%20joint%20return%20(Enter%20spouse%E2%80%99","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":33.481,"y":16.747,"w":5.059,"clr":-1,"A":"left","R":[{"T":"s%20SSN%20above)","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":39.742,"y":15.768,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":-1,"TS":[1,11.73,0,0]}]},{"oc":"#231e21","x":40.45,"y":15.768,"w":0.8660000000000001,"clr":-1,"A":"left","R":[{"T":"es","S":-1,"TS":[1,11.73,0,0]}]},{"oc":"#231e21","x":17.706,"y":14.614,"w":12.416000000000006,"clr":-1,"A":"left","R":[{"T":"Select%20a%20button%20to%20indicate%20status","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231e21","x":45.094,"y":14.664,"w":4.648000000000001,"clr":-1,"A":"left","R":[{"T":"Exemptions","S":-1,"TS":[1,16,1,0]}]},{"oc":"#231e21","x":6.053,"y":14.601,"w":4.921000000000001,"clr":-1,"A":"left","R":[{"T":"Filing%20Status","S":-1,"TS":[1,16,1,0]}]},{"oc":"#90d4bc","x":54.041,"y":16.098,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#90d4bc","x":60.228,"y":16.054,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":50.792,"y":15.489,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":51.546,"y":15.489,"w":1.002,"clr":-1,"A":"left","R":[{"T":"ou","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":55.742,"y":15.489,"w":2.9619999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":61.689,"y":14.73,"w":4.693,"clr":-1,"A":"left","R":[{"T":"Dependents","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":51.076,"y":17.34,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":51.829,"y":17.339,"w":1.23,"clr":-1,"A":"left","R":[{"T":"ou%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":51.522,"y":17.839,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"65%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":50.077,"y":18.339,"w":2.78,"clr":-1,"A":"left","R":[{"T":"or%20over","S":33,"TS":[1,12,1,0]}]},{"oc":"#90d4bc","x":68.693,"y":15.928999999999998,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":55.587,"y":17.339,"w":3.19,"clr":-1,"A":"left","R":[{"T":"Spouse%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":57.172,"y":17.839,"w":0.912,"clr":-1,"A":"left","R":[{"T":"65","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":55.551,"y":18.34,"w":3.008,"clr":-1,"A":"left","R":[{"T":"%20or%20over","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":62.586,"y":17.521,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":63.34,"y":17.521,"w":1.23,"clr":-1,"A":"left","R":[{"T":"ou%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":62.153,"y":18.196,"w":2.05,"clr":-1,"A":"left","R":[{"T":"Blind","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":67.275,"y":17.521,"w":2.9619999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":67.98,"y":18.196,"w":2.05,"clr":-1,"A":"left","R":[{"T":"Blind","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":54.041,"y":19.023,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":60.022,"y":19.023,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":66.09,"y":19.023,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":71.649,"y":14.73,"w":0.501,"clr":-1,"A":"left","R":[{"T":"T","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":72.331,"y":14.73,"w":1.458,"clr":-1,"A":"left","R":[{"T":"otal","S":33,"TS":[1,12,1,0]}]},{"oc":"#90d4bc","x":71.615,"y":18.489,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":73.342,"y":17.365,"w":0.501,"clr":-1,"A":"left","R":[{"T":"T","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":74.025,"y":17.365,"w":1.458,"clr":-1,"A":"left","R":[{"T":"otal","S":33,"TS":[1,12,1,0]}]},{"x":45.938,"y":16.136,"w":0.778,"clr":1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,16,1,0]}]},{"x":46.123,"y":18.295,"w":0.778,"clr":1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":77.054,"y":15.850999999999999,"w":2.75,"clr":-1,"A":"left","R":[{"T":"x%20%24930","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231e21","x":77.054,"y":18.37,"w":2.75,"clr":-1,"A":"left","R":[{"T":"x%20%24800","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231e21","x":82.383,"y":15.963999999999999,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":82.632,"y":18.257,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":96.097,"y":15.332999999999998,"w":3.28,"clr":-1,"A":"left","R":[{"T":"Add%20the%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":96.66,"y":16.008,"w":2.552,"clr":-1,"A":"left","R":[{"T":"Dollar%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":95.709,"y":16.683,"w":4.009,"clr":-1,"A":"left","R":[{"T":"Amounts%20%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":95.531,"y":17.358,"w":4.01,"clr":-1,"A":"left","R":[{"T":"and%20Enter%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":96.035,"y":18.033,"w":0.501,"clr":-1,"A":"left","R":[{"T":"T","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":96.719,"y":18.033,"w":2.916,"clr":-1,"A":"left","R":[{"T":"otal%20on%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":96.306,"y":18.708,"w":2.826,"clr":-1,"A":"left","R":[{"T":"Line%2011","S":33,"TS":[1,12,1,0]}]},{"oc":"#c6e9dc","x":92.773,"y":16.833,"w":0.274,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[1,51,0,0]}]},{"oc":"#2b2e34","x":7.098,"y":3.049,"w":20.997999999999998,"clr":-1,"A":"left","R":[{"T":"File%20by%20May%201%2C%202014%20-%20PLEASE%20USE%20BLA","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":35.951,"y":3.048,"w":3.9990000000000006,"clr":-1,"A":"left","R":[{"T":"CK%20INK","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":14.142,"y":23.488,"w":0.273,"clr":-1,"A":"left","R":[{"T":"(","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.565,"y":23.488,"w":7.747,"clr":-1,"A":"left","R":[{"T":"From%20federal%20return%20-%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":25.747,"y":23.488,"w":5.8309999999999995,"clr":-1,"A":"left","R":[{"T":"NOT%20FEDERAL","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":34.737,"y":23.488,"w":7.607999999999998,"clr":-1,"A":"left","R":[{"T":"%20TAXABLE%20INCOME","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":46.848,"y":23.488,"w":0.273,"clr":-1,"A":"left","R":[{"T":")","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":6.08,"y":20.15,"w":4.920000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth","S":-1,"TS":[1,16,1,0]}]},{"oc":"#2b2e34","x":21.578,"y":20.259,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":22.331,"y":20.259,"w":5.695,"clr":-1,"A":"left","R":[{"T":"our%20Birth%20Date%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":61.797,"y":20.259,"w":3.19,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":66.685,"y":20.259,"w":4.602,"clr":-1,"A":"left","R":[{"T":"s%20Birth%20Date","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":21.578,"y":20.934,"w":5.604,"clr":-1,"A":"left","R":[{"T":"(mm-dd-yyyy)%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":62.966,"y":20.934,"w":5.376,"clr":-1,"A":"left","R":[{"T":"(mm-dd-yyyy)","S":33,"TS":[1,12,1,0]}]},{"oc":"#90d4bc","x":39.386,"y":20.599,"w":3.1680000000000006,"clr":-1,"A":"left","R":[{"T":"-%20%20%20%20%20%20%20%20%20-","S":-1,"TS":[0,15,0,0]}]},{"oc":"#90d4bc","x":82.05,"y":20.599,"w":3.1680000000000006,"clr":-1,"A":"left","R":[{"T":"-%20%20%20%20%20%20%20%20%20-","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":64.35,"y":3.819,"w":10.573,"clr":-1,"A":"left","R":[{"T":"Check%20all%20boxes%20that%20apply%3A","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":64.35,"y":4.85,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":68.475,"y":4.85,"w":1.445,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.711,"y":4.85,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"filing%20status","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.448,"y":4.85,"w":13.062000000000003,"clr":-1,"A":"left","R":[{"T":"%20has%20changed%20since%20last%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.35,"y":6.162,"w":0.667,"clr":-1,"A":"left","R":[{"T":"V","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.355,"y":6.163,"w":15.450000000000005,"clr":-1,"A":"left","R":[{"T":"irginia%20return%20was%20not%20filed%20last%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.351,"y":7.475,"w":13.841000000000003,"clr":-1,"A":"left","R":[{"T":"Dependent%20on%20another%E2%80%99s%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.351,"y":8.787,"w":19.84,"clr":-1,"A":"left","R":[{"T":"Amended%20Return%20-%20Fill%20in%20oval%20if%20result%20of%20NOL","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.351,"y":10.025,"w":23.287000000000006,"clr":-1,"A":"left","R":[{"T":"I%20(We)%20authorize%20the%20Dept.%20of%20Taxation%20to%20discuss%20my%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.351,"y":10.7,"w":15.114000000000003,"clr":-1,"A":"left","R":[{"T":"(our)%20return%20with%20my%20(our)%20preparer","S":3,"TS":[0,12,0,0]}]},{"x":93.293,"y":8.786,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"x":85.688,"y":10.686,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.462,"y":17.647,"w":17.226999999999997,"clr":-1,"A":"left","R":[{"T":"(3)%20Married%20filing%20separate%20return%20(Enter%20spouse%E2%80%99","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":36.088,"y":17.647,"w":5.059,"clr":-1,"A":"left","R":[{"T":"s%20SSN%20above)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":9.557,"y":18.534,"w":7.201000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":23.332,"y":18.562,"w":1.823,"clr":-1,"A":"left","R":[{"T":"%20%20M.I.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":26.932,"y":18.521,"w":3.829,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":40.145,"y":18.534,"w":2.051,"clr":-1,"A":"left","R":[{"T":"Suffix","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":9.461,"y":15.767,"w":19.280999999999995,"clr":-1,"A":"left","R":[{"T":"(1)%20Single.%20Did%20you%20claim%20federal%20head%20of%20household%3F%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":24.678,"y":36.613,"w":5.833000000000001,"clr":-1,"A":"left","R":[{"T":"Filing%20Status%201%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.043,"y":42.102,"w":26.025,"clr":-1,"A":"left","R":[{"T":"Deductions%20from%20Virginia%20Adjusted%20Gross%20Income%20Schedule%20ADJ%2C%20Line%209%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":34.021,"y":9.956,"w":1.915,"clr":-1,"A":"left","R":[{"T":"State","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.436,"y":6.093,"w":15.813999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name%20(joint%20returns%20only)%20%20M.I.","S":27,"TS":[1,12,0,0]}]},{"x":62.158,"y":1.71,"w":100.76400000000001,"clr":0,"A":"left","R":[{"T":"powered%20by%20pdf2json","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":0,"AM":1024,"x":61.637,"y":0.535,"w":37.211,"h":1.292,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1,"AM":0,"x":5.913,"y":5.143,"w":22.357,"h":1.075,"TU":"Your first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PRTMI","EN":0},"TI":2,"AM":0,"x":28.662,"y":5.17,"w":3.073,"h":1.048,"TU":"Your Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRTLNAME","EN":0},"TI":3,"AM":0,"x":32.127,"y":5.17,"w":20.609,"h":1.048,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRTS","EN":0},"TI":4,"AM":0,"x":52.954,"y":5.155,"w":5.843,"h":1.075,"TU":"Suffix."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STFNAME","EN":0},"TI":6,"AM":0,"x":5.913,"y":7.048,"w":22.357,"h":0.978,"TU":"Spouse’s first name (joint returns only)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"STMI","EN":0},"TI":7,"AM":0,"x":28.662,"y":7.021,"w":3.073,"h":1.005,"TU":"Spouse's middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STLNAME","EN":0},"TI":8,"AM":0,"x":32.127,"y":7.021,"w":20.609,"h":1.005,"TU":"Spouse's last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STS","EN":0},"TI":9,"AM":0,"x":52.895,"y":6.979,"w":5.843,"h":1.075,"TU":"Spouse's Suffix."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":13,"AM":0,"x":6.083,"y":8.827,"w":52.813,"h":0.833,"TU":"Number and Street."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":14,"AM":0,"x":6.007,"y":9.523,"w":52.738,"h":0.833,"TU":"Number and Street continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":16,"AM":0,"x":5.892,"y":10.756,"w":27.433,"h":0.833,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":17,"AM":0,"x":34.094,"y":10.717,"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":18,"AM":0,"x":39.815,"y":10.763,"w":18.823,"h":0.833,"TU":"ZIP Code."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":20,"AM":0,"x":6.841,"y":13.415,"w":21.466,"h":0.945,"TU":"Your Social Security Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLN","EN":0},"TI":21,"AM":1024,"x":32.153,"y":13.428,"w":9.316,"h":0.946,"TU":"First 4 Letters Your Last Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":22,"AM":0,"x":47.394,"y":13.426,"w":21.541,"h":0.946,"TU":"Spouse's Social Security Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLN","EN":0},"TI":23,"AM":1024,"x":74.678,"y":13.448,"w":9.316,"h":0.945,"TU":"4 letters Spouse's last name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RESJ1","EN":0},"TI":24,"AM":0,"x":90.196,"y":13.405,"w":6.672,"h":0.945,"TU":"Locality Code.","MV":"999"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:VALoclCd"}},"id":{"Id":"Look_Up","EN":0},"TI":25,"AM":0,"x":97.687,"y":13.069,"w":3.765,"h":1.25},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPS","EN":0},"TI":29,"AM":0,"x":63.282,"y":16.104,"w":4.399,"h":0.967,"TU":"Number of Dependents."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTEXS","EN":0},"TI":30,"AM":1024,"x":71.492,"y":16.081,"w":4.399,"h":0.939,"TU":"Total Dependents"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXA","EN":0},"TI":31,"AM":1024,"x":84.638,"y":16.081,"w":8.291,"h":1.028,"TU":"Total Dependent Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMPTS","EN":0},"TI":34,"AM":1024,"x":74.192,"y":18.736,"w":1.924,"h":0.885,"TU":"Total B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXB","EN":0},"TI":35,"AM":1024,"x":84.638,"y":18.197,"w":8.291,"h":1.028,"TU":"undefined"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPFNM","EN":0},"TI":36,"AM":0,"x":9.32,"y":19.457,"w":12.794,"h":0.833,"TU":"Spouse’s First Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPMI","EN":0},"TI":37,"AM":0,"x":22.517,"y":19.436,"w":3.137,"h":0.833,"TU":"Spouse’s Middle Initial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPLNM","EN":0},"TI":38,"AM":0,"x":26.373,"y":19.463,"w":13.169,"h":0.833,"TU":"Spouse’s Last Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPS","EN":0},"TI":39,"AM":0,"x":40.054,"y":19.49,"w":4.185,"h":0.833,"TU":"Spouse's Suffix."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPBDAY","EN":0},"TI":44,"AM":0,"x":33.274,"y":20.788,"w":22.461,"h":0.911,"TU":"Your Birth Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPBDAY","EN":0},"TI":45,"AM":0,"x":75.906,"y":20.809,"w":22.735,"h":0.883,"TU":"Spouse Birth Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":46,"AM":0,"x":68.198,"y":22.543,"w":21.769,"h":0.992,"TU":"Line 1. Federal Adjusted Gross Income."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_Line_3","EN":0},"TI":47,"AM":0,"x":37.805,"y":24.4,"w":2.781,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":48,"AM":1024,"x":68.198,"y":24.195,"w":21.769,"h":0.992,"TU":"Line 2. Total Additions from attached Schedule ADJ, Line 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":49,"AM":1024,"x":68.198,"y":25.724,"w":21.769,"h":0.992,"TU":"Add Lines 1 and 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4TP","EN":0},"TI":50,"AM":0,"x":11.226,"y":27.874,"w":11.869,"h":0.898,"TU":"Line 4. You. Deduction for age on January 1, 2014, See instuctions. Be sure to provide date of birth above."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4SP","EN":0},"TI":51,"AM":0,"x":40.214,"y":27.838,"w":11.869,"h":0.898,"TU":"Line 4. Spouse. Deduction for age on January 1, 2014, See instuctions. Be sure to provide date of birth above."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":52,"AM":1024,"x":78.211,"y":27.57,"w":11.756,"h":0.992,"TU":"Age Deduction"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":53,"AM":0,"x":68.198,"y":29.271,"w":21.769,"h":0.992,"TU":"Line 5. Social Secuirty Act and equivalent Tier 1 Railroad Retirement Act benefits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":54,"AM":0,"x":68.198,"y":30.874,"w":21.769,"h":0.992,"TU":"Line 6. State Income Tax refund or overpayment credit (reported as income on federal return)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_Line_7","EN":0},"TI":55,"AM":0,"x":36.914,"y":32.683,"w":2.856,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":56,"AM":1024,"x":68.198,"y":32.583,"w":21.769,"h":0.992,"TU":"Subtractions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":57,"AM":1024,"x":68.198,"y":34.211,"w":21.769,"h":0.992,"TU":"Add Lines 4 - 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":58,"AM":1024,"x":68.198,"y":35.851,"w":21.769,"h":0.992,"TU":"Virginial Adjusted Gross Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10FED","EN":0},"TI":59,"AM":0,"x":5.489,"y":38.587,"w":16.706,"h":0.992,"TU":"Line 10a. Total Itemized Deductions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10ST","EN":0},"TI":60,"AM":0,"x":35.095,"y":38.524,"w":16.856,"h":1.073,"TU":"Line 10b. State and Local Income Taxes claimed on Schedule A."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":61,"AM":0,"x":68.198,"y":38.715,"w":21.769,"h":0.992,"TU":"Line 10. Deductions. Enter standard or Itemized."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":62,"AM":1024,"x":78.211,"y":40.356,"w":11.756,"h":0.992,"TU":"Exemptions"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_Line_9","EN":0},"TI":63,"AM":0,"x":48.685,"y":42.169,"w":2.781,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":64,"AM":1024,"x":68.198,"y":41.97,"w":21.769,"h":0.992,"TU":"Deductions from ADJ"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":65,"AM":1024,"x":68.198,"y":43.631,"w":21.769,"h":0.992,"TU":"Add Lines 10 - 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":66,"AM":1024,"x":68.198,"y":45.254,"w":21.769,"h":0.992,"TU":"Virginia Taxable Income"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STATCHGX","EN":0},"TI":5,"AM":0,"x":60.513,"y":5.095,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LASTY","EN":0},"TI":10,"AM":0,"x":60.513,"y":6.422,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADDRCH","EN":0},"TI":11,"AM":0,"x":40.457,"y":7.995,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DARTRN","EN":0},"TI":12,"AM":0,"x":60.513,"y":7.667,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMX1","EN":0},"TI":15,"AM":1024,"x":60.438,"y":9.115,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AUTHBX","EN":0},"TI":19,"AM":1024,"x":60.513,"y":10.35,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Single","EN":0},"TI":26,"AM":0,"x":6.628,"y":15.913,"w":1.999,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Joint","EN":0},"TI":32,"AM":0,"x":6.554,"y":16.893,"w":1.924,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Separate","EN":0},"TI":33,"AM":0,"x":6.426,"y":17.818,"w":2.074,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOHX","EN":0},"TI":27,"AM":0,"x":42.014,"y":15.938,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPEXEMPT","EN":0},"TI":28,"AM":0,"x":56.376,"y":16.299,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP65BX","EN":0},"TI":40,"AM":0,"x":50.733,"y":19.217,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP65BX","EN":0},"TI":41,"AM":0,"x":56.414,"y":19.204,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPBLX","EN":0},"TI":42,"AM":0,"x":62.407,"y":19.215,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBLX","EN":0},"TI":43,"AM":0,"x":68.151,"y":19.217,"w":2.756,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":42.085,"y":6.032,"w":0.9885,"l":3.314},{"oc":"#2b2e34","x":45.751,"y":6.032,"w":0.9885,"l":3.737},{"oc":"#c6e9dc","x":68.068,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":5.375,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":5.375,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":5.375,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":5.375,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":5.375,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":5.375,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":5.375,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":5.375,"w":6,"l":2.552},{"oc":"#c6e9dc","x":87.868,"y":4.128,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":5.372,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.797,"y":4.125,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":5.372,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":4.125,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":5.372,"w":6,"l":3.205},{"oc":"#c6e9dc","x":8.694,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":8.694,"y":8.17,"w":6,"l":2.441},{"oc":"#c6e9dc","x":11.169,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":11.134,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":13.644,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":13.609,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":16.119,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":16.084,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.593,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.559,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":21.068,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":21.034,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":23.543,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":23.509,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":26.018,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":25.975,"y":8.174,"w":6,"l":3.188},{"oc":"#c6e9dc","x":37.44,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":37.431,"y":8.17,"w":6,"l":2.449},{"oc":"#c6e9dc","x":39.915,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":39.88,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":42.39,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":42.355,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.865,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.83,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":47.34,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":47.305,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.815,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.78,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":52.29,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":52.255,"y":8.17,"w":6,"l":2.475},{"oc":"#c6e9dc","x":54.765,"y":6.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":54.704,"y":8.183,"w":6,"l":3.188},{"oc":"#c6e9dc","x":82.806,"y":5.895,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.797,"y":7.142,"w":6,"l":2.449},{"oc":"#c6e9dc","x":85.281,"y":5.895,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.247,"y":7.142,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.756,"y":5.895,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.722,"y":7.142,"w":6,"l":2.57},{"oc":"#c6e9dc","x":93.797,"y":5.889,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":7.136,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":5.889,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":7.136,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":8.905,"w":6,"l":2.441},{"oc":"#c6e9dc","x":68.05,"y":7.658,"w":6,"l":4.967},{"oc":"#c6e9dc","x":70.508,"y":8.905,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":8.905,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":8.905,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":8.905,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":8.905,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":8.905,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":8.905,"w":6,"l":2.535},{"oc":"#c6e9dc","x":87.868,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":8.908,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.797,"y":7.658,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":8.905,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":7.658,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":8.905,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":10.449,"w":6,"l":2.827},{"oc":"#c6e9dc","x":70.543,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.749,"y":10.449,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.224,"y":10.449,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.699,"y":10.449,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":78.174,"y":10.449,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.529,"y":10.449,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":83.124,"y":10.449,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.599,"y":10.449,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":9.202,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":10.455,"w":6,"l":3.163},{"oc":"#c6e9dc","x":93.797,"y":9.208,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":10.455,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":9.208,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":10.455,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":12.033,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":12.033,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":12.033,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":12.033,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":12.033,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":12.033,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":12.033,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":12.033,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.816,"y":12.039,"w":6,"l":3.197},{"oc":"#c6e9dc","x":93.797,"y":10.786,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":12.033,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":10.786,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":12.033,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":13.599,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":13.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":13.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":13.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":13.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":13.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":13.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":13.599,"w":6,"l":2.552},{"oc":"#c6e9dc","x":87.868,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":13.605,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.797,"y":12.352,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":13.599,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":12.352,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":13.599,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":15.296,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":15.296,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":15.296,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":15.296,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":15.296,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":15.296,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":15.296,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":15.296,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.833,"y":15.292,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.797,"y":14.049,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":15.296,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":14.049,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":15.296,"w":6,"l":3.205},{"oc":"#c6e9dc","x":77.968,"y":15.733,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":16.98,"w":6,"l":2.441},{"oc":"#c6e9dc","x":80.443,"y":15.733,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":16.98,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":15.733,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":16.98,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":15.733,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":16.98,"w":6,"l":2.552},{"oc":"#c6e9dc","x":87.868,"y":15.733,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":16.98,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.797,"y":15.733,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":16.98,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":15.733,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":16.98,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":18.577,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":18.577,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":18.577,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":18.577,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":18.577,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":18.577,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":18.577,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":18.577,"w":6,"l":2.664},{"oc":"#c6e9dc","x":87.868,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":18.583,"w":6,"l":3.188},{"oc":"#c6e9dc","x":93.797,"y":17.33,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":18.577,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":17.33,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":18.577,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":20.171,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":20.171,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":20.171,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":20.171,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":20.171,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":20.171,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":20.171,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":20.171,"w":6,"l":2.595},{"oc":"#c6e9dc","x":87.868,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":20.168,"w":6,"l":3.171},{"oc":"#c6e9dc","x":93.797,"y":18.924,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":20.171,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":18.924,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":20.171,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":21.761,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":21.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":21.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":21.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":21.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":21.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":21.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":21.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.816,"y":21.764,"w":6,"l":3.205},{"oc":"#c6e9dc","x":93.797,"y":20.514,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":21.761,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":20.514,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":21.761,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.08,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.08,"y":23.346,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.555,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.521,"y":23.346,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.03,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.996,"y":23.346,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.505,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.471,"y":23.346,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.98,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.946,"y":23.346,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.455,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.421,"y":23.346,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.93,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.896,"y":23.346,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.405,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.371,"y":23.346,"w":6,"l":2.552},{"oc":"#c6e9dc","x":87.88,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.854,"y":23.352,"w":6,"l":3.18},{"oc":"#c6e9dc","x":93.81,"y":22.099,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.81,"y":23.346,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.803,"y":22.099,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.769,"y":23.346,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":25.046,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":25.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":25.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":25.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":25.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":25.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":25.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":25.046,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":23.799,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.799,"y":25.046,"w":6,"l":3.223},{"oc":"#c6e9dc","x":93.797,"y":23.802,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":25.049,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":23.802,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":25.049,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":26.758,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":26.758,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":26.758,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":26.758,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":26.758,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":26.758,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":26.758,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":26.758,"w":6,"l":2.561},{"oc":"#c6e9dc","x":87.868,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":26.755,"w":6,"l":3.18},{"oc":"#c6e9dc","x":93.797,"y":25.512,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":26.758,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":25.512,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":26.758,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":28.352,"w":6,"l":2.466},{"oc":"#c6e9dc","x":70.543,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":28.358,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":28.358,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":28.358,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":28.358,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":28.358,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":28.358,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":28.358,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.816,"y":28.358,"w":6,"l":3.205},{"oc":"#c6e9dc","x":93.797,"y":27.111,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":28.358,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":27.111,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":28.358,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.068,"y":30.008,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.508,"y":30.008,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":30.008,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":30.008,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":30.008,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":30.008,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":30.008,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":30.008,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.833,"y":30.011,"w":6,"l":3.188},{"oc":"#c6e9dc","x":68.068,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.543,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.868,"y":28.761,"w":6,"l":2.475},{"oc":"#c6e9dc","x":93.797,"y":28.765,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":30.011,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":28.765,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":30.011,"w":6,"l":3.18},{"oc":"#c6e9dc","x":68.068,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.068,"y":31.846,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.543,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":31.846,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.018,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":31.846,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.493,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":31.846,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.968,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":31.846,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.443,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":31.846,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.918,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":31.846,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.393,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":31.846,"w":6,"l":2.552},{"oc":"#c6e9dc","x":87.868,"y":30.599,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.842,"y":31.855,"w":6,"l":3.18},{"oc":"#c6e9dc","x":93.797,"y":30.605,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":31.852,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":30.605,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.757,"y":31.852,"w":6,"l":3.205},{"oc":"#c6e9dc","x":68.067,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.067,"y":33.657,"w":6,"l":2.441},{"oc":"#c6e9dc","x":70.542,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.508,"y":33.657,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.017,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.983,"y":33.657,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.492,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.458,"y":33.657,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.967,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.933,"y":33.657,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.442,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.408,"y":33.657,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.917,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.883,"y":33.657,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.392,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.358,"y":33.657,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.867,"y":32.41,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.721,"y":33.657,"w":6,"l":3.3},{"oc":"#c6e9dc","x":93.797,"y":32.413,"w":6,"l":1.994},{"oc":"#c6e9dc","x":93.797,"y":33.66,"w":6,"l":1.959},{"oc":"#c6e9dc","x":95.791,"y":32.413,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.756,"y":33.66,"w":6,"l":3.205},{"oc":"#c6e9dc","x":73.86,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.826,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":76.335,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":76.301,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":78.81,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":78.776,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":81.285,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":81.251,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":83.76,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":83.726,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":86.235,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":86.201,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":88.71,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":88.676,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":91.185,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":91.151,"y":3.619,"w":6,"l":2.475},{"oc":"#c6e9dc","x":93.66,"y":2.372,"w":6,"l":2.475},{"oc":"#c6e9dc","x":93.626,"y":3.619,"w":6,"l":2.475},{"oc":"#2b2e34","x":96.599,"y":45.025,"w":3,"l":2.432},{"oc":"#2b2e34","x":98.831,"y":1.894,"w":3,"l":2.432},{"oc":"#2b2e34","x":5.024,"y":11.631,"w":3,"l":2.432},{"oc":"#2b2e34","x":5.007,"y":45.025,"w":3,"l":2.432},{"oc":"#c6e9dc","x":18.387,"y":44.928,"w":1.5,"l":0.705},{"oc":"#c6e9dc","x":18.387,"y":44.603,"w":1.5,"l":0.705},{"oc":"#c6e9dc","x":10.997,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":10.962,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":13.472,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":13.437,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":15.947,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":15.912,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.422,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":18.387,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":20.897,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":20.862,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":23.372,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":23.337,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":25.847,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":25.812,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":28.322,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":28.287,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":30.797,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":30.762,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":33.272,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":33.237,"y":45.378,"w":6,"l":3.197},{"oc":"#c6e9dc","x":25.821,"y":44.972,"w":1.5,"l":0.696},{"oc":"#c6e9dc","x":25.821,"y":44.578,"w":1.5,"l":0.696},{"oc":"#c6e9dc","x":47.34,"y":44.928,"w":1.5,"l":0.705},{"oc":"#c6e9dc","x":47.34,"y":44.603,"w":1.5,"l":0.705},{"oc":"#c6e9dc","x":39.949,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":39.932,"y":45.378,"w":6,"l":2.458},{"oc":"#c6e9dc","x":42.424,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":42.39,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.899,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.865,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":47.374,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":47.34,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.849,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.815,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":52.324,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":52.29,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":54.799,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":54.765,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":57.274,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":57.24,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":59.749,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":59.715,"y":45.378,"w":6,"l":2.475},{"oc":"#c6e9dc","x":62.224,"y":44.131,"w":6,"l":2.475},{"oc":"#c6e9dc","x":62.19,"y":45.378,"w":6,"l":3.188},{"oc":"#c6e9dc","x":54.773,"y":44.972,"w":1.5,"l":0.696},{"oc":"#c6e9dc","x":54.773,"y":44.578,"w":1.5,"l":0.696},{"oc":"#c6e9dc","x":75.012,"y":44.931,"w":1.5,"l":0.705},{"oc":"#c6e9dc","x":75.012,"y":44.606,"w":1.5,"l":0.705},{"oc":"#c6e9dc","x":67.621,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":67.604,"y":45.381,"w":6,"l":2.458},{"oc":"#c6e9dc","x":70.096,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.062,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.571,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":72.537,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.046,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.012,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.521,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":77.487,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":79.996,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":79.962,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.471,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":82.437,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":84.946,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":84.912,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.421,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.387,"y":45.381,"w":6,"l":2.475},{"oc":"#c6e9dc","x":89.896,"y":44.134,"w":6,"l":2.475},{"oc":"#c6e9dc","x":89.862,"y":45.381,"w":6,"l":3.18},{"oc":"#c6e9dc","x":82.445,"y":44.975,"w":1.5,"l":0.696},{"oc":"#c6e9dc","x":82.445,"y":44.581,"w":1.5,"l":0.696},{"oc":"#c6e9dc","x":6.416,"y":48.009,"w":3,"l":69.197},{"oc":"#c6e9dc","x":6.416,"y":46.731,"w":3,"l":69.197},{"oc":"#c6e9dc","x":6.91,"y":43.489,"w":3,"l":44.825},{"oc":"#c6e9dc","x":6.91,"y":42.114,"w":3,"l":44.825},{"oc":"#c6e9dc","x":53.469,"y":43.489,"w":3,"l":44.825},{"oc":"#c6e9dc","x":53.469,"y":42.114,"w":3,"l":44.825},{"oc":"#c6e9dc","x":87.312,"y":39.694,"w":6,"l":2.475},{"oc":"#c6e9dc","x":87.174,"y":38.457,"w":6,"l":2.475},{"oc":"#c6e9dc","x":89.649,"y":38.457,"w":6,"l":2.475},{"oc":"#c6e9dc","x":89.615,"y":39.704,"w":6,"l":2.475},{"oc":"#c6e9dc","x":92.124,"y":38.457,"w":6,"l":2.475},{"oc":"#c6e9dc","x":92.09,"y":39.704,"w":6,"l":2.552},{"oc":"#c6e9dc","x":94.599,"y":38.457,"w":6,"l":2.475},{"oc":"#c6e9dc","x":94.574,"y":39.704,"w":6,"l":3.188},{"oc":"#c6e9dc","x":29.517,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":29.5,"y":37.382,"w":6,"l":2.484},{"oc":"#c6e9dc","x":31.992,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":31.958,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":34.467,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":34.433,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":36.942,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":36.908,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":39.417,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":39.383,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":41.892,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":41.858,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.367,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":44.333,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":46.842,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":46.808,"y":37.382,"w":6,"l":2.741},{"oc":"#c6e9dc","x":49.317,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":49.403,"y":37.382,"w":6,"l":3.059},{"oc":"#c6e9dc","x":55.968,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":55.951,"y":37.382,"w":6,"l":2.458},{"oc":"#c6e9dc","x":58.443,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":58.409,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":60.918,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":60.884,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":63.393,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":63.359,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":65.868,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":65.834,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.343,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":68.309,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.818,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":70.784,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.293,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":73.259,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.768,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":75.734,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":78.243,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":78.209,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.718,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":80.684,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":83.193,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":83.159,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.668,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":85.634,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":88.143,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":88.109,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":90.618,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":90.584,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":93.093,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":93.059,"y":37.382,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.568,"y":36.135,"w":6,"l":2.475},{"oc":"#c6e9dc","x":95.534,"y":37.382,"w":6,"l":2.475},{"oc":"#b8e3d4","x":6.024,"y":35.063,"w":3,"l":93.311},{"oc":"#b8e3d4","x":6.139,"y":37.833,"w":3,"l":93.311}],"VLines":[{"oc":"#c6e9dc","x":68.403,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":4.006,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":4.003,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":4.003,"w":6,"l":1.35},{"oc":"#c6e9dc","x":9.029,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":11.504,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":13.979,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":16.454,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":18.929,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":21.404,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":23.879,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":26.354,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":28.829,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":37.775,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":40.25,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":42.725,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":45.2,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":47.675,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":50.15,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":52.625,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":55.1,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":57.575,"y":6.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.141,"y":5.774,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.616,"y":5.774,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.091,"y":5.774,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.558,"y":5.774,"w":6,"l":1.494},{"oc":"#c6e9dc","x":94.141,"y":5.767,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":5.767,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":7.536,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":9.08,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":9.086,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":9.086,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":10.664,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":12.23,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":13.927,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":15.611,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":17.205,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.141,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":17.208,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":18.799,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.141,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":18.802,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":20.389,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.141,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":20.392,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.415,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.89,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.365,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.84,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.315,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.79,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.265,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.74,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.215,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.69,"y":21.974,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.153,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.614,"y":21.977,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":23.677,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":23.68,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":23.68,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":25.386,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.141,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":25.39,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":26.986,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.141,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":26.989,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":28.64,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":28.633,"w":6,"l":1.356},{"oc":"#c6e9dc","x":94.141,"y":28.643,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":28.643,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.403,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.878,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.353,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.828,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.303,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.778,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.253,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.728,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.203,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.678,"y":30.477,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.141,"y":30.483,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":30.483,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.402,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.877,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.352,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.827,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.302,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.777,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.252,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.727,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.202,"y":32.288,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.677,"y":32.285,"w":6,"l":1.353},{"oc":"#c6e9dc","x":94.141,"y":32.291,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.601,"y":32.291,"w":6,"l":1.35},{"oc":"#c6e9dc","x":74.195,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":76.67,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":79.145,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":81.62,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":84.095,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":86.57,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":89.045,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":91.52,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":93.995,"y":2.25,"w":6,"l":1.35},{"oc":"#c6e9dc","x":96.393,"y":2.244,"w":6,"l":1.503},{"oc":"#2b2e34","x":98.885,"y":44.2,"w":3,"l":0.884},{"oc":"#2b2e34","x":101.093,"y":1.833,"w":3,"l":0.884},{"oc":"#2b2e34","x":5.179,"y":11.571,"w":3,"l":0.884},{"oc":"#2b2e34","x":5.179,"y":44.2,"w":3,"l":0.884},{"oc":"#c6e9dc","x":19.092,"y":44.603,"w":1.5,"l":0.325},{"oc":"#c6e9dc","x":18.387,"y":44.603,"w":1.5,"l":0.325},{"oc":"#c6e9dc","x":11.332,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":13.807,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":16.282,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":18.757,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":21.232,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":23.707,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":26.182,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":28.657,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":31.132,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":33.607,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":36.082,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":26.517,"y":44.578,"w":1.5,"l":0.394},{"oc":"#c6e9dc","x":25.821,"y":44.578,"w":1.5,"l":0.394},{"oc":"#c6e9dc","x":48.044,"y":44.603,"w":1.5,"l":0.325},{"oc":"#c6e9dc","x":47.34,"y":44.603,"w":1.5,"l":0.325},{"oc":"#c6e9dc","x":40.284,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":42.759,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":45.234,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":47.709,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":50.184,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":52.659,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":55.134,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":57.609,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":60.084,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":62.559,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":65.034,"y":44.009,"w":6,"l":1.35},{"oc":"#c6e9dc","x":55.469,"y":44.578,"w":1.5,"l":0.394},{"oc":"#c6e9dc","x":54.773,"y":44.578,"w":1.5,"l":0.394},{"oc":"#c6e9dc","x":75.716,"y":44.606,"w":1.5,"l":0.325},{"oc":"#c6e9dc","x":75.012,"y":44.606,"w":1.5,"l":0.325},{"oc":"#c6e9dc","x":67.956,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":70.431,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":72.906,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":75.381,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":77.856,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":80.331,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":82.806,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":85.281,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":87.756,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.231,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":92.706,"y":44.012,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.141,"y":44.581,"w":1.5,"l":0.394},{"oc":"#c6e9dc","x":82.445,"y":44.581,"w":1.5,"l":0.394},{"oc":"#c6e9dc","x":75.613,"y":46.731,"w":3,"l":1.278},{"oc":"#c6e9dc","x":6.416,"y":46.731,"w":3,"l":1.278},{"oc":"#c6e9dc","x":27.737,"y":46.709,"w":1.5,"l":1.306},{"oc":"#c6e9dc","x":67.071,"y":46.756,"w":1.5,"l":1.306},{"oc":"#d8d8da","x":50.385,"y":46.702,"w":1.5,"l":1.306},{"oc":"#c6e9dc","x":51.735,"y":42.114,"w":3,"l":1.375},{"oc":"#c6e9dc","x":6.91,"y":42.114,"w":3,"l":1.375},{"oc":"#c6e9dc","x":43.949,"y":42.086,"w":1.5,"l":1.381},{"oc":"#c6e9dc","x":98.294,"y":42.114,"w":3,"l":1.375},{"oc":"#c6e9dc","x":53.469,"y":42.114,"w":3,"l":1.375},{"oc":"#c6e9dc","x":89.949,"y":42.086,"w":1.5,"l":1.397},{"oc":"#c6e9dc","x":87.509,"y":38.335,"w":6,"l":1.35},{"oc":"#c6e9dc","x":89.984,"y":38.335,"w":6,"l":1.35},{"oc":"#c6e9dc","x":92.459,"y":38.335,"w":6,"l":1.35},{"oc":"#c6e9dc","x":94.934,"y":38.335,"w":6,"l":1.35},{"oc":"#c6e9dc","x":97.409,"y":38.335,"w":6,"l":1.35},{"oc":"#c6e9dc","x":29.852,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":32.327,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":34.802,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":37.277,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":39.752,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":42.227,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":44.702,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":47.177,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":49.652,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":52.127,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":56.303,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":58.778,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":61.253,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":63.728,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":66.203,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":68.678,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":71.153,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":73.628,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":76.103,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":78.578,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":81.053,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":83.528,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":86.003,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":88.478,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":90.953,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":93.428,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":95.903,"y":36.013,"w":6,"l":1.35},{"oc":"#c6e9dc","x":98.31,"y":36.01,"w":6,"l":1.497},{"oc":"#c6e9dc","x":53.799,"y":35.56,"w":3,"l":2.207}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c6e9dc","x":82.35,"y":5.006,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":4.987,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":20.501,"y":7.802,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":13.059,"y":7.783,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":49.247,"y":7.802,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":41.805,"y":7.783,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":8.536,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":8.518,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":10.08,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":10.061,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":11.664,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":11.646,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":13.23,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":13.211,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":14.927,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":14.908,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":16.611,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":18.208,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":18.189,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":19.802,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":19.783,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":21.392,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":21.374,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.363,"y":22.977,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.921,"y":22.958,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":24.677,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":24.658,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":26.39,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":26.371,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":27.989,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":27.971,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":29.639,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":29.621,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":31.458,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":31.477,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":82.35,"y":33.288,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":74.908,"y":33.269,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c6e9dc","x":18.387,"y":44.603,"w":0.705,"h":0.325,"clr":-1},{"oc":"#c6e9dc","x":25.821,"y":44.578,"w":0.696,"h":0.394,"clr":-1},{"oc":"#c6e9dc","x":47.34,"y":44.603,"w":0.705,"h":0.325,"clr":-1},{"oc":"#c6e9dc","x":54.773,"y":44.578,"w":0.696,"h":0.394,"clr":-1},{"oc":"#c6e9dc","x":75.012,"y":44.606,"w":0.705,"h":0.325,"clr":-1},{"oc":"#c6e9dc","x":82.445,"y":44.581,"w":0.696,"h":0.394,"clr":-1},{"oc":"#c6e9dc","x":89.082,"y":39.335,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":41.835,"y":5.222,"w":2.142,"clr":-1,"A":"left","R":[{"T":"whole","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.381,"y":4.547,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":4.547,"w":28.25799999999999,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Tax%20from%20Tax%20Table%20or%20Tax%20Rate%20Schedule%20(round%20to%20whole%20dollars)%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":52.236,"y":4.547,"w":6.156,"clr":-1,"A":"left","R":[{"T":"...........................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":4.547,"w":0.912,"clr":-1,"A":"left","R":[{"T":"15","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381,"y":5.222,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":5.222,"w":19.964,"clr":-1,"A":"left","R":[{"T":"Spouse%20Tax%20Adjustment.%20For%20Filing%20Status%202%20only.%20Enter","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":37.134,"y":5.222,"w":2.0050000000000003,"clr":-1,"A":"left","R":[{"T":"VAGI","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":40.142,"y":5.222,"w":0.8660000000000001,"clr":-1,"A":"left","R":[{"T":"%20in","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":45.501,"y":5.222,"w":2.415,"clr":-1,"A":"left","R":[{"T":"dollars","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":49.238,"y":5.222,"w":8.888000000000002,"clr":-1,"A":"left","R":[{"T":"%20below.%20See%20instructions.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.912,"y":6.572,"w":0.912,"clr":-1,"A":"left","R":[{"T":"16","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381,"y":8.225,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":8.225,"w":19.502000000000002,"clr":-1,"A":"left","R":[{"T":"Net%20Amount%20of%20Tax%20-%20Subtract%20Line%2016%20from%20Line%2015","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":39.538,"y":8.225,"w":14.363999999999992,"clr":-1,"A":"left","R":[{"T":"...............................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":8.225,"w":0.912,"clr":-1,"A":"left","R":[{"T":"17","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381,"y":9.034,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":9.034,"w":10.756999999999998,"clr":-1,"A":"left","R":[{"T":"Virginia%20tax%20withheld%20for%202013.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":9.709,"w":11.076,"clr":-1,"A":"left","R":[{"T":"18a.%20%20Your%20Virginia%20withholding","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":26.134,"y":9.709,"w":22.572000000000035,"clr":-1,"A":"left","R":[{"T":"...................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.19,"y":9.709,"w":1.368,"clr":-1,"A":"left","R":[{"T":"18a","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.856,"y":11.284,"w":20.237000000000002,"clr":-1,"A":"left","R":[{"T":"18b.%20%20Spouse%E2%80%99s%20Virginia%20withholding%20(filing%20status%202%20only)%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":40.244,"y":11.284,"w":13.451999999999993,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.12,"y":11.284,"w":1.413,"clr":-1,"A":"left","R":[{"T":"18b","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381,"y":12.859,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":43.418,"y":12.859,"w":11.855999999999995,"clr":-1,"A":"left","R":[{"T":"....................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":12.859,"w":0.912,"clr":-1,"A":"left","R":[{"T":"19","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":11.95,"y":13.534,"w":19.917999999999992,"clr":-1,"A":"left","R":[{"T":"(Include%20overpayment%20credited%20from%20taxable%20year%202012)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.574,"y":14.569,"w":15.996999999999996,"clr":-1,"A":"left","R":[{"T":"20.%20Extension%20Payments%20(from%20Form%20760IP)%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":31.424,"y":14.569,"w":19.608000000000015,"clr":-1,"A":"left","R":[{"T":"......................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":14.569,"w":0.912,"clr":-1,"A":"left","R":[{"T":"20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574,"y":16.053,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":16.053,"w":25.02,"clr":-1,"A":"left","R":[{"T":"Tax%20Credit%20for%20Low-Income%20Individuals%20or%20Earned%20Income%20Credit%20from%20","S":-1,"TS":[1,11.73,0,0]}]},{"oc":"#2b2e34","x":42.968,"y":16.053,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":-1,"TS":[1,11.73,1,0]}]},{"oc":"#2b2e34","x":48.12,"y":16.053,"w":6.564000000000003,"clr":-1,"A":"left","R":[{"T":"Sch.%20ADJ%2C%20Line%2017","S":-1,"TS":[1,11.73,0,0]}]},{"oc":"#2b2e34","x":60.349,"y":16.053,"w":0.912,"clr":-1,"A":"left","R":[{"T":"....","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":16.053,"w":0.912,"clr":-1,"A":"left","R":[{"T":"21","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":17.719,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":17.719,"w":15.086999999999996,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Tax%20Paid%20to%20Another%20State%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":30.13,"y":17.719,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":35.699,"y":17.719,"w":6.7920000000000025,"clr":-1,"A":"left","R":[{"T":"Sch.%20OSC%2C%20Line%2021","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":48.357,"y":17.719,"w":8.663999999999998,"clr":-1,"A":"left","R":[{"T":"......................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":17.719,"w":0.912,"clr":-1,"A":"left","R":[{"T":"22","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":19.384,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":19.384,"w":6.972,"clr":-1,"A":"left","R":[{"T":"Other%20Credits%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":18.611,"y":19.384,"w":8.658000000000003,"clr":-1,"A":"left","R":[{"T":"attached%20Schedule%20CR","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":33.542,"y":19.384,"w":18.240000000000006,"clr":-1,"A":"left","R":[{"T":"................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":19.384,"w":0.912,"clr":-1,"A":"left","R":[{"T":"23","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":20.959,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":20.959,"w":14.719999999999995,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2018a%2C%2018b%20and%2019%20through%2023","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":32.131,"y":20.959,"w":19.15200000000001,"clr":-1,"A":"left","R":[{"T":"....................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":20.959,"w":0.912,"clr":-1,"A":"left","R":[{"T":"24","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":22.625,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":22.625,"w":31.54400000000001,"clr":-1,"A":"left","R":[{"T":"If%20Line%2024%20is%20less%20than%20Line%2017%2C%20subtract%20Line%2024%20from%20Line%2017.%20%20This%20is%20the%20Tax%20You%20Owe%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":57.528,"y":22.625,"w":2.7360000000000007,"clr":-1,"A":"left","R":[{"T":"............","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":22.625,"w":0.912,"clr":-1,"A":"left","R":[{"T":"25","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":11.95,"y":23.3,"w":5.971000000000001,"clr":-1,"A":"left","R":[{"T":"(Skip%20to%20Line%2028)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.575,"y":24.425,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"26.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":24.425,"w":33.68500000000002,"clr":-1,"A":"left","R":[{"T":"If%20Line%2017%20is%20less%20than%20Line%2024%2C%20subtract%20Line%2017%20from%20Line%2024.%20%20This%20is%20Your%20Tax%20Overpayment%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":60.701,"y":24.425,"w":0.684,"clr":-1,"A":"left","R":[{"T":"...","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":24.425,"w":0.912,"clr":-1,"A":"left","R":[{"T":"26","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574,"y":25.909,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"27.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":25.909,"w":25.799000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20overpayment%20you%20want%20credited%20to%20next%20year%E2%80%99s%20estimated%20tax%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":49.062,"y":25.909,"w":8.207999999999998,"clr":-1,"A":"left","R":[{"T":"....................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":25.909,"w":0.912,"clr":-1,"A":"left","R":[{"T":"27","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":27.575,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":27.575,"w":16.955,"clr":-1,"A":"left","R":[{"T":"Adjustments%20and%20Voluntary%20Contributions%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":32.725,"y":27.575,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":38.065,"y":27.575,"w":8.342,"clr":-1,"A":"left","R":[{"T":"Schedule%20ADJ%2C%20Line%2024","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":53.648,"y":27.575,"w":5.244000000000001,"clr":-1,"A":"left","R":[{"T":".......................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":27.575,"w":0.912,"clr":-1,"A":"left","R":[{"T":"28","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":29.15,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":29.15,"w":7.523000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2027%20and%2028","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":20.49,"y":29.15,"w":26.676000000000062,"clr":-1,"A":"left","R":[{"T":".....................................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":29.15,"w":0.912,"clr":-1,"A":"left","R":[{"T":"29","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":29.825,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":29.825,"w":17.69,"clr":-1,"A":"left","R":[{"T":"If%20you%20owe%20tax%20on%20Line%2025%2C%20add%20Lines%2025%20and%2029.%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":36.224,"y":29.825,"w":1.458,"clr":-1,"A":"left","R":[{"T":"OR%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.856,"y":30.5,"w":22.383000000000003,"clr":-1,"A":"left","R":[{"T":"If%20Line%2026%20is%20less%20than%20Line%2029%2C%20subtract%20Line%2026%20from%20Line%2029.%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":40.048,"y":30.5,"w":7.789999999999999,"clr":-1,"A":"left","R":[{"T":"AMOUNT%20YOU%20OWE","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":56.117,"y":30.5,"w":3.6480000000000015,"clr":-1,"A":"left","R":[{"T":"................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":30.5,"w":0.912,"clr":-1,"A":"left","R":[{"T":"30","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.575,"y":32.525,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"31.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":32.525,"w":23.294999999999998,"clr":-1,"A":"left","R":[{"T":"If%20Line%2026%20is%20greater%20than%20Line%2029%2C%20subtract%20Line%2029%20from%20Line%2026.%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.573,"y":32.525,"w":6.013,"clr":-1,"A":"left","R":[{"T":"YOUR%20REFUND","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":54.706,"y":32.525,"w":4.560000000000001,"clr":-1,"A":"left","R":[{"T":"....................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895,"y":32.525,"w":0.912,"clr":-1,"A":"left","R":[{"T":"31","S":33,"TS":[1,12,1,0]}]},{"oc":"#c6e9dc","x":91.657,"y":4.499,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":4.427,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":4.427,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":4.428,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":11.169,"y":6.004,"w":11.073999999999998,"clr":-1,"A":"left","R":[{"T":"16a%20-%20Enter%20Your%20VAGI%20below","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":38.514,"y":6.004,"w":12.897,"clr":-1,"A":"left","R":[{"T":"16b%20-%20Enter%20Spouse%E2%80%99s%20VAGI%20below","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":29.112,"y":7.173,"w":1.667,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":58.451,"y":7.276,"w":1.667,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,16,1,0]}]},{"x":20.793,"y":7.223,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":13.351,"y":7.223,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":49.539,"y":7.223,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":42.097,"y":7.223,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.656,"y":6.145,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":6.193,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":7.9830000000000005,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":7.958,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":7.958,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":7.962,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":9.482,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.522,"y":9.501,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.08,"y":9.501,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":9.511,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":11.064,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":11.086,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":11.086,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":11.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":12.676,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":80.915,"y":12.651,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":73.474,"y":12.651,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":82.651,"y":12.648,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.209,"y":12.648,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":12.655,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":14.373,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":14.348,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":14.348,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":14.352,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":16.054,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":16.032,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":16.036,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":17.654,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":17.629,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":17.629,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":17.634,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":19.245,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":19.223,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":19.223,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":19.227,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":20.839,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":20.814,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":20.814,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":20.818,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.669,"y":22.423,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.654,"y":22.398,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.212,"y":22.398,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.325,"y":22.402,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":24.123,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":24.098,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":24.098,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":24.105,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":25.833,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":25.811,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":25.811,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":25.815,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":27.436,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":27.411,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":27.411,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":27.415,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.657,"y":29.089,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":29.061,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.2,"y":29.061,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":29.068,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":75.2,"y":30.898,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.657,"y":30.923,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":30.898,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":30.908,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.656,"y":32.731,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.642,"y":32.709,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.199,"y":32.709,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.312,"y":32.716,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":81.427,"y":1.197,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Your%20SSN","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.501,"y":1.4169999999999998,"w":2.644,"clr":-1,"A":"left","R":[{"T":"Page%202","S":-1,"TS":[1,16,1,0]}]},{"oc":"#2b2e34","x":6.501,"y":2.292,"w":3.646,"clr":-1,"A":"left","R":[{"T":"Form%20760","S":35,"TS":[1,18,1,0]}]},{"oc":"#2b2e34","x":6.501,"y":3.417,"w":2.0060000000000002,"clr":-1,"A":"left","R":[{"T":"Year%20","S":-1,"TS":[1,16,1,0]}]},{"oc":"#2b2e34","x":10.546,"y":3.417,"w":1.824,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[1,22,1,0]}]},{"x":81.009,"y":2.443,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"x":85.951,"y":2.462,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":12.68,"y":28.163,"w":11.896,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Schedule%20ADJ)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":12.13,"y":18.309,"w":23.429000000000002,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Sch.%20OSC%20and%20a%20copy%20of%20all%20other%20state%20returns)","S":27,"TS":[1,12,0,0]}]},{"x":18.223,"y":44.132,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":25.64,"y":44.147,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":47.176,"y":44.194,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":54.592,"y":44.191,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":74.848,"y":44.185,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":82.273,"y":44.182,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"oc":"#231e21","x":15.713,"y":43.166,"w":11.574,"clr":-1,"A":"left","R":[{"T":"Your%20business%20phone%20number","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":46.766,"y":43.166,"w":8.201000000000002,"clr":-1,"A":"left","R":[{"T":"Home%20phone%20number","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":70.901,"y":43.166,"w":13.351999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20business%20phone%20number","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":82.975,"y":45.71,"w":6.153,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20PTIN","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":36.442,"y":45.774,"w":4.466,"clr":-1,"A":"left","R":[{"T":"%20Firm%20Name","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":11.686,"y":45.774,"w":6.746,"clr":-1,"A":"left","R":[{"T":"%20Preparer%E2%80%99s%20Name","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":69.393,"y":45.378,"w":2.187,"clr":-1,"A":"left","R":[{"T":"Filing","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":68.618,"y":45.878,"w":3.19,"clr":-1,"A":"left","R":[{"T":"Election","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":54.049,"y":45.774,"w":5.832000000000001,"clr":-1,"A":"left","R":[{"T":"Phone%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":7.013,"y":41.955,"w":5.878000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20Signature","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":43.914,"y":41.955,"w":1.7770000000000001,"clr":-1,"A":"left","R":[{"T":"Date","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":53.58,"y":41.955,"w":7.6560000000000015,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Signature","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":90.009,"y":41.955,"w":1.7770000000000001,"clr":-1,"A":"left","R":[{"T":"Date","S":34,"TS":[1,14,1,0]}]},{"oc":"#2b2e34","x":6.488,"y":41.128,"w":75.03399999999989,"clr":-1,"A":"left","R":[{"T":"I%20(We)%2C%20the%20undersigned%2C%20declare%20under%20penalty%20of%20law%20that%20I%20(we)%20have%20examined%20this%20return%20and%20to%20the%20best%20of%20my%20(our)%20knowledge%2C%20it%20is%20a%20true%2C%20correct%20and%20complete%20return.","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#2b2e34","x":17.717,"y":38.029,"w":10.527,"clr":-1,"A":"left","R":[{"T":"Qualifying%20farmer%2C%20fisherman%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.717,"y":38.591,"w":7.520000000000001,"clr":-1,"A":"left","R":[{"T":"or%20merchant%20seaman","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.717,"y":39.502,"w":8.069000000000003,"clr":-1,"A":"left","R":[{"T":"Overseas%20on%20due%20date","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.717,"y":40.413,"w":29.034000000000002,"clr":-1,"A":"left","R":[{"T":"I%20agree%20to%20obtain%20my%20Form%201099-G%20income%20tax%20refund%20statement%20electronically%20at%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":58.97,"y":40.413,"w":9.948,"clr":-1,"A":"left","R":[{"T":"www.tax.virginia.gov","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":72.58,"y":40.413,"w":12.49,"clr":-1,"A":"left","R":[{"T":"%20instead%20of%20receiving%20a%20paper%20copy.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.298,"y":39.502,"w":10.389999999999999,"clr":-1,"A":"left","R":[{"T":"Primary%20Taxpayer%20Deceased","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.298,"y":38.029,"w":9.207,"clr":-1,"A":"left","R":[{"T":"Federal%20Schedule%20C%20filed%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.298,"y":38.591,"w":6.563000000000001,"clr":-1,"A":"left","R":[{"T":"with%20federal%20return","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":66.145,"y":39.502,"w":6.701000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%20Deceased","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":66.145,"y":37.991,"w":12.806999999999997,"clr":-1,"A":"left","R":[{"T":"Earned%20Income%20Credit%20from%20federal%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":66.145,"y":38.554,"w":8.933000000000002,"clr":-1,"A":"left","R":[{"T":"return.%20%20Amount%20claimed%3A","S":27,"TS":[1,12,0,0]}]},{"x":89.373,"y":38.756,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":6.162,"y":38.016,"w":3.6010000000000004,"clr":-1,"A":"left","R":[{"T":"Check%20all","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.162,"y":38.691,"w":2.37,"clr":-1,"A":"left","R":[{"T":"boxes","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.162,"y":39.366,"w":1.731,"clr":-1,"A":"left","R":[{"T":"that%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.162,"y":40.041,"w":2.4150000000000005,"clr":-1,"A":"left","R":[{"T":"apply%3A","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.046,"y":35.026,"w":9.475999999999999,"clr":-1,"A":"left","R":[{"T":"DIRECT%20BANK%20DEPOSIT","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.046,"y":35.701,"w":8.932000000000002,"clr":-1,"A":"left","R":[{"T":"Domestic%20Accounts%20Only","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.046,"y":36.376,"w":9.663000000000002,"clr":-1,"A":"left","R":[{"T":"No%20International%20Deposits%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":31.625,"y":34.979,"w":11.618,"clr":-1,"A":"left","R":[{"T":"Bank%20Routing%20Transit%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":75.631,"y":34.923,"w":3.418,"clr":-1,"A":"left","R":[{"T":"Checking","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":85.452,"y":34.923,"w":2.9170000000000003,"clr":-1,"A":"left","R":[{"T":"Savings","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":56.187,"y":34.979,"w":8.839,"clr":-1,"A":"left","R":[{"T":"Bank%20Account%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.501,"y":33.364,"w":14.216,"clr":-1,"A":"left","R":[{"T":"Choose%20Direct%20Deposit%20or%20Debit%20Card","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":32.798,"y":33.364,"w":7.246000000000001,"clr":-1,"A":"left","R":[{"T":"Direct%20Bank%20Deposit","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":48.266,"y":33.364,"w":3.919,"clr":-1,"A":"left","R":[{"T":"Debit%20Card","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":53.985,"y":33.364,"w":6.562000000000001,"clr":-1,"A":"left","R":[{"T":"%20(Fees%20may%20apply)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.501,"y":34.039,"w":37.831000000000024,"clr":-1,"A":"left","R":[{"T":"You%20authorize%20the%20Department%20to%20issue%20a%20Debit%20Card%20if%20the%20Direct%20Deposit%20section%20below%20is%20not%20completed.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856,"y":12.859,"w":22.286999999999995,"clr":-1,"A":"left","R":[{"T":"Estimated%20Tax%20Paid%20for%20taxable%20year%202013%20(from%20Form%20760ES)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":10.266,"y":19.973,"w":31.077000000000016,"clr":-1,"A":"left","R":[{"T":"(If%20claiming%20Political%20Contribution%20Credit%20only%20-%20check%20this%20box%20-%20see%20instructions)","S":33,"TS":[1,12,1,0]}]},{"x":23.941,"y":31.141,"w":228.37200000000004,"clr":0,"A":"left","R":[{"T":"CHECK%20THIS%20BOX%20IF%20PAYING%20BY%20CREDIT%20OR%20DEBIT%20CARD%20-%20SEE%20INSTRUCTIONS","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":67,"AM":1024,"x":74.371,"y":2.561,"w":21.466,"h":0.945,"TU":"Your SSN"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":68,"AM":0,"x":68.758,"y":4.297,"w":21.525,"h":0.978,"TU":"Line 15. Amount of Tax from Tax Table or Tax Rate Schedule (round to whole dollars)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":69,"AM":0,"x":83.454,"y":5.982,"w":6.994,"h":1.046,"TU":"Line 16. Spouse Tax Adjustment. For Filing Status 2 only. Enter in whole dollars below. See instuctions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16TP","EN":0},"TI":70,"AM":0,"x":9.372,"y":7.074,"w":18.975,"h":1.015,"TU":"Line 16a. Enter Your VAGI."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16SP","EN":0},"TI":71,"AM":0,"x":37.955,"y":7.074,"w":19.2,"h":0.988,"TU":"Line 16b. Enter Spouse's VAGI."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":72,"AM":1024,"x":68.758,"y":7.792,"w":21.525,"h":0.978,"TU":"Line 17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WITHHELD","EN":0},"TI":73,"AM":0,"x":68.758,"y":9.343,"w":21.525,"h":0.978,"TU":"Line 18a. Your Virgina withholding."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPWHELD","EN":0},"TI":74,"AM":0,"x":68.758,"y":10.94,"w":21.525,"h":0.978,"TU":"Line 18b. Spouse's Virginia withholding (filing status 2 only)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPYMTS","EN":0},"TI":75,"AM":0,"x":68.758,"y":12.508,"w":21.525,"h":0.978,"TU":"Line 19. Estimated Tax Paid for taxable year 2013 (from Form 760ES) (Include overpayment credited from taxable year 2012)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXTPYMTS","EN":0},"TI":76,"AM":0,"x":68.758,"y":14.177,"w":21.525,"h":0.978,"TU":"Line 20. Extension Payments (from Form 760IP)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ","EN":0},"TI":77,"AM":0,"x":57.791,"y":16.129,"w":2.845,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":78,"AM":1024,"x":78.647,"y":15.915,"w":11.606,"h":1.005,"TU":"Line 21"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAOSC"}},"id":{"Id":"Add_Sch_OSC","EN":0},"TI":79,"AM":0,"x":47.053,"y":17.781,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":80,"AM":1024,"x":68.758,"y":17.453,"w":21.525,"h":0.978,"TU":"Line 22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":81,"AM":0,"x":68.822,"y":19.063,"w":21.525,"h":0.978,"TU":"Line 23. Other Credits from attached Schedule CR."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VASCR"}},"id":{"Id":"Add_Sch_CR","EN":0},"TI":82,"AM":0,"x":32.951,"y":19.438,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":84,"AM":1024,"x":68.758,"y":20.66,"w":21.525,"h":0.978,"TU":"Line 24"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":85,"AM":1024,"x":68.758,"y":22.261,"w":21.525,"h":0.978,"TU":"Line 25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPYMT","EN":0},"TI":86,"AM":1024,"x":68.758,"y":23.933,"w":21.525,"h":0.978,"TU":"Line 26"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":87,"AM":0,"x":68.758,"y":25.635,"w":21.525,"h":0.978,"TU":"Line 27. Amount of overpayment you want credited to next year's estimated tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":88,"AM":1024,"x":68.833,"y":27.206,"w":21.675,"h":1.114,"TU":"Line 28"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_line_24","EN":0},"TI":89,"AM":0,"x":51.702,"y":27.61,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":90,"AM":1024,"x":68.758,"y":28.875,"w":21.525,"h":0.978,"TU":"Line 29"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTDUE","EN":0},"TI":91,"AM":1024,"x":68.758,"y":30.785,"w":21.525,"h":0.978,"TU":"Line 30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":93,"AM":1024,"x":68.758,"y":32.626,"w":21.525,"h":0.978,"TU":"Line 31"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":98,"AM":0,"x":30.19,"y":36.351,"w":21.731,"h":0.951,"TU":"Bank Routing Transit Number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"BANK","EN":0},"TI":99,"AM":0,"x":56.624,"y":36.333,"w":41.306,"h":0.923,"TU":"Bank Account Number.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEIC11A","EN":0},"TI":103,"AM":0,"x":87.798,"y":38.584,"w":9.638,"h":1.019,"TU":"Amount of EIC claimed."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"TBPHONE","EN":0},"TI":108,"AM":0,"x":11.709,"y":44.344,"w":24.131,"h":0.964,"TU":"Your Business Phone number."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"HMPHONE","EN":0},"TI":109,"AM":0,"x":40.519,"y":44.305,"w":24.131,"h":1.019,"TU":"Home Phone number."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"SBPHONE","EN":0},"TI":110,"AM":0,"x":68.206,"y":44.35,"w":24.131,"h":0.964,"TU":"Spouse's Business Phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":111,"AM":1024,"x":27.919,"y":46.902,"w":22.294,"h":1.033,"TU":"Firm's Name","V":"SELF-PREPARED"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHCRS","EN":0},"TI":83,"AM":0,"x":64.396,"y":20.221,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CCBX","EN":0},"TI":92,"AM":0,"x":64.47,"y":31.429,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DBDBX","EN":0},"TI":94,"AM":0,"x":30.499,"y":33.524,"w":2.171,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DCBX","EN":0},"TI":95,"AM":0,"x":46.124,"y":33.505,"w":2.246,"h":0.833,"checked":false}],"id":{"Id":"REFTYPRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCTC","EN":0},"TI":96,"AM":0,"x":81.409,"y":35.046,"w":1.946,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCTS","EN":0},"TI":97,"AM":0,"x":90.254,"y":35.065,"w":2.021,"h":0.833,"checked":false}],"id":{"Id":"A768XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FARMBX","EN":0},"TI":100,"AM":0,"x":13.906,"y":38.265,"w":2.532,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FEDSCHC","EN":0},"TI":101,"AM":0,"x":37.437,"y":38.258,"w":2.532,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FEIC","EN":0},"TI":102,"AM":0,"x":62.23,"y":38.169,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OSBX","EN":0},"TI":104,"AM":0,"x":13.862,"y":39.654,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPDEC","EN":0},"TI":105,"AM":0,"x":37.308,"y":39.7,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDEC","EN":0},"TI":106,"AM":0,"x":62.362,"y":39.693,"w":2.756,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"X99G","EN":0},"TI":107,"AM":0,"x":13.884,"y":40.624,"w":2.756,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VA760C.content.txt b/test/data/va/form/VA760C.content.txt new file mode 100755 index 00000000..7989baf6 --- /dev/null +++ b/test/data/va/form/VA760C.content.txt @@ -0,0 +1,462 @@ +760C - 2013 + +Underpayment of Virginia Estimated + + + +Tax by Individuals, Estates and Trusts +• Attach + +this + +form + +to + +Form + +760, + +763, + +760PY + +or + +770. +Fiscal + +Year + +Filers +: Enter beginning date + 20 + , ending date + 20 + , and check here +First Name, Middle Initial and Last Name (of Both If Joint) - OR - Name of Estate or Trust +Your Social Security Number or FEIN +c +If Estate or Trust, Name and Title of Fiduciary +Spouse's Social Security Number +Office Use SC +Office Use Payment +c +Part + +I + +- + +Compute + +Your + +Underpayment +1. +2013 Income Tax Liability After Spouse Tax Adjustment and Tax Credits. See instructions. +(If $150 or less, you are not required to file Form 760C) +1. +2. +Enter 90% of the Amount Shown on Line 1 +2. +3. +2012 Income Tax Liability After Spouse Tax Adjustment and Tax Credits +3. +4. +Enter the Amount From Line 2 or Line 3, Whichever is Less +4. +5. +Enter the Number of Installment Periods for Which You Were Liable to Make Payments +5. +Line + +6 + +Through + +14: + +Complete + +Each + +Line + +Across + +All + +Columns + +Before + +Continuing + +to + +Next + +Line +A +B +C +D +6. +Due Dates of Installment Payments +May 1, 2013 +June 15, 2013 +Sept. 15, 2013 +Jan. 15, 2014 +7. +Tax Liability +(Divide the amount on Line 4 by the number of installments +reported on Line 5 and enter the result in the appropriate +columns) +8. +Enter the Income Tax Withheld for Each Installment Period +9. +Enter the Overpayment Credit from Your 2012 Income Tax +Return +10. +Enter the Amount of Any +Timely + Payment Made for Each +Installment Period in the Appropriate Column +(Do not enter any late payments) +11. +Underpayment or [Overpayment] +(Subtract Lines 8, 9 and 10 from Line 7. See instructions for +overpayment) +12. +Other Payments +(Enter the payments from the Late Payment/Overpayment Table +below, beginning with the earliest payment recorded. +Do not +enter + +more + +than + +the + +underpayment + +in + +any + +column.) +Date +Amount +a. + +First Payment + +/ + +/ +b. + +Second Payment + +/ + +/ +c. + +Third Payment + +/ + +/ +d. + +Fourth Payment + +/ + +/ +13. +Enter the Total +Timely + Payments Made as of Each Installment +Due Date From Lines 8, 9, 10 and 12 +14. +Subtract Line 13 from Line 7 +(If the sum of all underpayments ( +do + +not + +include + +any + +OVERPAYMENTS +) reported is $150 or less, stop here; you are +not subject to an addition to tax. If your underpayments total +more than $150, proceed to Part II) +Continued + +on + +Back + g +Late + +Payment/Overpayment + +Table + +(See + +Instructions + +for + +Lines + +11 + +and + +12.) +Date of Payment +Date of Payment +Date of Payment +Date of Payment +Payment Amount +$ +Payment Amount +$ + Payment Amount +$ +Payment Amount +$ +VA. Dept. of Taxation 760C 2601033 (REV 12/13) +(For ex., in Column A enter all payments made by May 1, 2013) +----------------Page (0) Break---------------- +760C - 2013 +Page + +2 +Part + +II + +- + +Exceptions + +That + +Void + +the + +Addition + +to + +Tax +A +May 1, 2013 +B +June 15, 2013 +C +Sept. 15, 2013 +D +Jan. 15, 2014 +15. +Total Amount Paid and Withheld from January 1, 2013 through the +Installment Date Indicated +16. +Exception + +1: + Prior Year's Tax +(Multiply the 2012 tax by the percentage in each col.) +100% of 2012 Tax +25% +50% +75% +100% +17. +Exception + +2: + Tax on Prior Year's Income Using the +2013 Rates and Exemptions +(Multiply the 2012 tax by the percentage in each col.) +100% of Tax +25% +50% +75% +100% +18. +Exception + +3 + +Worksheet: + Tax on Annualized 2013 Income (Use the formula below to compute the amount on lines 18a, b and c for each col.) +Lines 18a, b and c: + +April 30 column: + +Multiply the actual amount for the period ended April 30, 2013, by 3. + +May 31 column: + +Multiply the actual amount for the period ended May 31, 2013, by 2.4. + +August 31 column: + +Multiply the actual amount for the period ended August 31, 2013, by 1.5. + +From January 1 to: +April 30 +May 31 +August 31 +a. + +Annualized Virginia Adjusted Gross Income (VAGI) for Each Period +Note +Estates +and trusts +should use +end dates +of March +31, April 30 +& July 31. +b. + +Compute the Annualized Itemized Deductions Using the Formula +Above +OR + Enter the Full Standard Deduction in Each Column if You +Did Not Claim Itemized Deductions +c. + +Compute the Annualized Child and Dependent Care Expenses and +Other Deductions for Each Period +d. + +Total + Dollar Amount of Exemptions Claimed on Your Return +e. + +Virginia Taxable Income + +(Subtract Lines 18b, c and d from Line 18a) +f. + +Virginia Tax + +(Enter the Virginia income tax for the amount(s) on line 18e) +g. + +Multiply Line 18f by the Percentage Shown for Each Period +22.5% +45% +67.5% +Note +Exceptions +3 and 4 do +not apply to +the fourth +installment +period. +19. +Exception + +4 + +Worksheet: + Tax on 2013 Income Over a 4, 5 and 8 Month Period* (* 3, 4 and 7 months for estates and trusts) +From January 1 to: +April 30 +May 31 +August 31 +a. + +Enter Your Virginia Adjusted Gross Income (VAGI) for Each Period +b. + +Enter the Itemized Deductions Claimed for Each Period +OR + (If +Greater) the Full Standard Deduction +c. + +Enter the Child and Dependent Care Expenses and Other +Deductions for Each Period +d. + +Enter the Total Dollar Amount of Exemptions Claimed on Your +Return +e. + +Virginia Taxable Income + +(Subtract Lines 19b, c and d from Line 19a) +f. + +Virginia Tax + +(Enter the Virginia income tax for the amount(s) on Line 19e) +g. + +Multiply Line 19f by 90% (.90) for Each Period +Part + +III + +- + +Compute + +the + +Addition + +to + +Tax +If an exception has been met (Part II) for any installment period, complete the column for that period as follows: write "Exception" and the exception +number (1, 2, 3, or 4) on Line 20; skip Lines 21 through 23; and enter "0" on Line 24. For all other periods, complete each line as instructed below +. +A +May 1, 2013 +B +June 15, 2013 +C +Sept. 15, 2013 +D +Jan. 15, 2014 +20. +Amount of Underpayment from Part I, Line 14 +21. +Date of Payment from Part I, Line 12 +(If no payments were entered on Line 12, enter the actual date of +payment or May 1, 2014, whichever is earlier.) +22. +Number of Days After Installment Due Date Through Date Paid or May +1, 2014, Whichever Is Earlier +(if +May 1, 2014, + is earlier, enter 365, 320, +228 and 106, respectively). +23. +Multiply the Number of Days in Each Column on Line 22 by the Daily +Rate of .00014 (5% Per Annum) +24. +Multiply the Amount on Line 20 by Line 23 for Each Column +25. +Addition to Tax +(Total the amounts on Line 24. Enter here and on the "Addition to Tax" line on your +income tax return) +c +----------------Page (1) Break---------------- diff --git a/test/data/va/form/VA760C.fields.json b/test/data/va/form/VA760C.fields.json new file mode 100755 index 00000000..fd11f626 --- /dev/null +++ b/test/data/va/form/VA760C.fields.json @@ -0,0 +1 @@ +[{"id":"APPROVED","type":"alpha","calc":true,"value":"Virginia Approved Form for Filing"},{"id":"TPNAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L7A","type":"number","calc":false,"value":""},{"id":"L7B","type":"number","calc":false,"value":""},{"id":"L7C","type":"number","calc":false,"value":""},{"id":"L7D","type":"number","calc":false,"value":""},{"id":"L8A","type":"number","calc":false,"value":""},{"id":"L8B","type":"number","calc":false,"value":""},{"id":"L8C","type":"number","calc":false,"value":""},{"id":"L8D","type":"number","calc":false,"value":""},{"id":"L9A","type":"number","calc":false,"value":""},{"id":"L9B","type":"number","calc":false,"value":""},{"id":"L9C","type":"number","calc":false,"value":""},{"id":"L9D","type":"number","calc":false,"value":""},{"id":"L10A","type":"number","calc":false,"value":""},{"id":"L10B","type":"number","calc":false,"value":""},{"id":"L10C","type":"number","calc":false,"value":""},{"id":"L10D","type":"number","calc":false,"value":""},{"id":"L11A","type":"number","calc":true,"value":""},{"id":"L11B","type":"number","calc":true,"value":""},{"id":"L11C","type":"number","calc":true,"value":""},{"id":"L11D","type":"number","calc":true,"value":""},{"id":"L12DT1","type":"date","calc":false,"value":""},{"id":"L12AT1","type":"number","calc":false,"value":""},{"id":"L12A1","type":"number","calc":false,"value":""},{"id":"L12A2","type":"number","calc":false,"value":""},{"id":"L12A3","type":"number","calc":false,"value":""},{"id":"L12A4","type":"number","calc":false,"value":""},{"id":"L12DT2","type":"date","calc":false,"value":""},{"id":"L12AT2","type":"number","calc":false,"value":""},{"id":"L12B1","type":"number","calc":false,"value":""},{"id":"L12B2","type":"number","calc":false,"value":""},{"id":"L12B3","type":"number","calc":false,"value":""},{"id":"L12B4","type":"number","calc":false,"value":""},{"id":"L12DT3","type":"date","calc":false,"value":""},{"id":"L12AT3","type":"number","calc":false,"value":""},{"id":"L12C1","type":"number","calc":false,"value":""},{"id":"L12C2","type":"number","calc":false,"value":""},{"id":"L12C3","type":"number","calc":false,"value":""},{"id":"L12C4","type":"number","calc":false,"value":""},{"id":"L12DT4","type":"date","calc":false,"value":""},{"id":"L12AT4","type":"number","calc":false,"value":""},{"id":"L12D1","type":"number","calc":false,"value":""},{"id":"L12D2","type":"number","calc":false,"value":""},{"id":"L12D3","type":"number","calc":false,"value":""},{"id":"L12D4","type":"number","calc":false,"value":""},{"id":"L13A","type":"number","calc":false,"value":""},{"id":"L13B","type":"number","calc":false,"value":""},{"id":"L13C","type":"number","calc":false,"value":""},{"id":"L13D","type":"number","calc":false,"value":""},{"id":"L14A","type":"number","calc":true,"value":""},{"id":"L14B","type":"number","calc":true,"value":""},{"id":"L14C","type":"number","calc":true,"value":""},{"id":"L14D","type":"number","calc":true,"value":""},{"id":"DAT3","type":"date","calc":false,"value":""},{"id":"DAT4","type":"date","calc":false,"value":""},{"id":"DAT5","type":"date","calc":false,"value":""},{"id":"DAT6","type":"date","calc":false,"value":""},{"id":"PAY1","type":"number","calc":false,"value":""},{"id":"PAY2","type":"number","calc":false,"value":""},{"id":"PAY3","type":"number","calc":false,"value":""},{"id":"PAY4","type":"number","calc":false,"value":""},{"id":"NAM3","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"L15A","type":"number","calc":false,"value":""},{"id":"L15B","type":"number","calc":false,"value":""},{"id":"L15C","type":"number","calc":false,"value":""},{"id":"L15D","type":"number","calc":false,"value":""},{"id":"L16A1","type":"number","calc":false,"value":""},{"id":"L16A","type":"number","calc":true,"value":""},{"id":"L16B","type":"number","calc":true,"value":""},{"id":"L16C","type":"number","calc":true,"value":""},{"id":"L16D","type":"number","calc":true,"value":""},{"id":"L17A1","type":"number","calc":false,"value":""},{"id":"L17A","type":"number","calc":true,"value":""},{"id":"L17B","type":"number","calc":true,"value":""},{"id":"L17C","type":"number","calc":true,"value":""},{"id":"L17D","type":"number","calc":true,"value":""},{"id":"L18A1","type":"number","calc":false,"value":""},{"id":"L18A2","type":"number","calc":false,"value":""},{"id":"L18A3","type":"number","calc":false,"value":""},{"id":"L18B1","type":"number","calc":false,"value":""},{"id":"L18B2","type":"number","calc":false,"value":""},{"id":"L18B3","type":"number","calc":false,"value":""},{"id":"L18C1","type":"number","calc":false,"value":""},{"id":"L18C2","type":"number","calc":false,"value":""},{"id":"L18C3","type":"number","calc":false,"value":""},{"id":"L18D1","type":"number","calc":true,"value":""},{"id":"L18D2","type":"number","calc":true,"value":""},{"id":"L18D3","type":"number","calc":true,"value":""},{"id":"L18E1","type":"number","calc":true,"value":""},{"id":"L18E2","type":"number","calc":true,"value":""},{"id":"L18E3","type":"number","calc":true,"value":""},{"id":"L18F1","type":"number","calc":false,"value":""},{"id":"L18F2","type":"number","calc":false,"value":""},{"id":"L18F3","type":"number","calc":false,"value":""},{"id":"L18G1","type":"number","calc":true,"value":""},{"id":"L18G2","type":"number","calc":true,"value":""},{"id":"L18G3","type":"number","calc":true,"value":""},{"id":"L19A1","type":"number","calc":false,"value":""},{"id":"L19A2","type":"number","calc":false,"value":""},{"id":"L19A3","type":"number","calc":false,"value":""},{"id":"L19B1","type":"number","calc":false,"value":""},{"id":"L19B2","type":"number","calc":false,"value":""},{"id":"L19B3","type":"number","calc":false,"value":""},{"id":"L19C1","type":"number","calc":false,"value":""},{"id":"L19C2","type":"number","calc":false,"value":""},{"id":"L19C3","type":"number","calc":false,"value":""},{"id":"L19D1","type":"number","calc":true,"value":""},{"id":"L19D2","type":"number","calc":true,"value":""},{"id":"L19D3","type":"number","calc":true,"value":""},{"id":"L19E1","type":"number","calc":true,"value":""},{"id":"L19E2","type":"number","calc":true,"value":""},{"id":"L19E3","type":"number","calc":true,"value":""},{"id":"L19F1","type":"number","calc":false,"value":""},{"id":"L19F2","type":"number","calc":false,"value":""},{"id":"L19F3","type":"number","calc":false,"value":""},{"id":"L19G1","type":"number","calc":true,"value":""},{"id":"L19G2","type":"number","calc":true,"value":""},{"id":"L19G3","type":"number","calc":true,"value":""},{"id":"EXCEPA","type":"alpha","calc":true,"value":""},{"id":"EXCEPB","type":"alpha","calc":true,"value":""},{"id":"EXCEPC","type":"alpha","calc":true,"value":""},{"id":"EXCEPD","type":"alpha","calc":true,"value":""},{"id":"L20A","type":"alpha","calc":true,"value":""},{"id":"L20B","type":"alpha","calc":true,"value":""},{"id":"L20C","type":"alpha","calc":true,"value":""},{"id":"L20D","type":"alpha","calc":true,"value":""},{"id":"L21A","type":"date","calc":false,"value":""},{"id":"L21B","type":"date","calc":false,"value":""},{"id":"L21C","type":"date","calc":false,"value":""},{"id":"L21D","type":"date","calc":false,"value":""},{"id":"L22A","type":"number","calc":false,"value":""},{"id":"L22B","type":"number","calc":false,"value":""},{"id":"L22C","type":"number","calc":false,"value":""},{"id":"L22D","type":"number","calc":false,"value":""},{"id":"L23A","type":"mask","calc":true,"value":""},{"id":"L23B","type":"zip","calc":true,"value":""},{"id":"L23C","type":"mask","calc":true,"value":""},{"id":"L23D","type":"mask","calc":true,"value":""},{"id":"L24A","type":"mask","calc":true,"value":""},{"id":"L24B","type":"mask","calc":true,"value":""},{"id":"L24C","type":"mask","calc":true,"value":""},{"id":"L24D","type":"mask","calc":true,"value":""},{"id":"L25","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VA760C.json b/test/data/va/form/VA760C.json new file mode 100755 index 00000000..7375f5a9 --- /dev/null +++ b/test/data/va/form/VA760C.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 760C Flat 01 07 14.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":31.236,"y":5.871,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":45.904,"y":5.871,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":58.744,"y":5.871,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":73.413,"y":5.871,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":6.188,"y":6.24,"w":0.75,"l":61.574},{"oc":"#2b2e34","x":67.762,"y":6.24,"w":0.75,"l":14.438},{"oc":"#2b2e34","x":82.199,"y":6.24,"w":0.75,"l":14.48},{"oc":"#2b2e34","x":6.188,"y":7.865,"w":0.75,"l":61.574},{"oc":"#2b2e34","x":67.762,"y":7.865,"w":0.75,"l":14.438},{"oc":"#2b2e34","x":82.199,"y":7.865,"w":0.75,"l":14.48},{"oc":"#2b2e34","x":6.188,"y":9.465,"w":0.75,"l":61.574},{"oc":"#2b2e34","x":67.762,"y":9.465,"w":0.75,"l":14.438},{"oc":"#2b2e34","x":82.199,"y":9.465,"w":0.75,"l":14.48},{"oc":"#2b2e34","x":67.719,"y":10.965,"w":0.75,"l":14.48},{"oc":"#2b2e34","x":82.199,"y":10.965,"w":0.75,"l":14.48},{"oc":"#2b2e34","x":8.035,"y":11.809,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":11.809,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.297,"y":11.809,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":84.391,"y":11.809,"w":0.75,"l":14.652},{"oc":"#2b2e34","x":8.035,"y":13.121,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":13.121,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.297,"y":13.121,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":84.391,"y":13.121,"w":0.75,"l":14.652},{"oc":"#2b2e34","x":8.035,"y":14.434,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":14.434,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.297,"y":14.434,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":84.391,"y":14.434,"w":0.75,"l":14.652},{"oc":"#2b2e34","x":8.035,"y":15.746,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":15.746,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.297,"y":15.746,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":84.391,"y":15.746,"w":0.75,"l":14.652},{"oc":"#2b2e34","x":8.035,"y":17.059,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":17.059,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.297,"y":17.059,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":84.391,"y":17.059,"w":0.75,"l":14.652},{"oc":"#2b2e34","x":8.035,"y":18.371,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":18.371,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.297,"y":18.371,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":84.391,"y":18.371,"w":0.75,"l":14.652},{"oc":"#2b2e34","x":49.457,"y":19.528,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":61.875,"y":19.528,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":19.528,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":19.528,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":20.267,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":20.267,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":20.267,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":20.267,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":20.267,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":20.267,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":20.267,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":20.267,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":21.042,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":21.042,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":21.042,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":21.042,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":21.042,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":21.042,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":21.042,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":21.042,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":23.468,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":23.468,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":23.468,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":23.468,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":23.468,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":23.468,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":23.468,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":23.468,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":24.781,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":24.781,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":24.781,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":24.781,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":24.781,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":24.781,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":24.781,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":24.781,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":26.093,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":26.093,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":26.093,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":26.093,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":26.093,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":26.093,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":26.093,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":26.093,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":27.957,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":27.957,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":27.957,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":27.957,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":27.957,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":27.957,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":27.957,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":27.957,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":29.893,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":29.893,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":29.893,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":29.893,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":29.893,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":29.893,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":29.893,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":29.893,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":11.172,"y":32.319,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":32.319,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":32.319,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":32.319,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":32.319,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":32.319,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":32.319,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":28.832,"y":33.069,"w":0.75,"l":10.355},{"oc":"#2b2e34","x":39.188,"y":33.069,"w":0.75,"l":10.355},{"oc":"#2b2e34","x":11.172,"y":34.194,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":34.194,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":34.194,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":34.194,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":34.194,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":34.194,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":34.194,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":11.172,"y":35.319,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":35.319,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":35.319,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":35.319,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":35.319,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":35.319,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":35.319,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":11.172,"y":36.444,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":36.444,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":36.444,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":36.444,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":36.444,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":36.444,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":36.444,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":37.569,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":37.569,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":37.569,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":37.569,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":37.569,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":37.569,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":37.569,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":37.569,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":39.433,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":39.433,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":39.433,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":39.433,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":39.433,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":39.433,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":39.433,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":39.433,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.035,"y":42.422,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.172,"y":42.422,"w":0.75,"l":17.703},{"oc":"#2b2e34","x":28.875,"y":42.422,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":39.188,"y":42.422,"w":0.75,"l":10.313},{"oc":"#2b2e34","x":49.5,"y":42.422,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":61.875,"y":42.422,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":74.25,"y":42.422,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":86.625,"y":42.422,"w":0.75,"l":12.418},{"oc":"#2b2e34","x":8.207,"y":43.954,"w":0.75,"l":23.16},{"oc":"#2b2e34","x":31.367,"y":43.954,"w":0.75,"l":23.117},{"oc":"#2b2e34","x":54.484,"y":43.954,"w":0.75,"l":23.117},{"oc":"#2b2e34","x":77.602,"y":43.954,"w":0.75,"l":21.441},{"oc":"#2b2e34","x":8.207,"y":45.454,"w":0.75,"l":23.16},{"oc":"#2b2e34","x":31.367,"y":45.454,"w":0.75,"l":23.117},{"oc":"#2b2e34","x":54.484,"y":45.454,"w":0.75,"l":23.117},{"oc":"#2b2e34","x":77.602,"y":45.454,"w":0.75,"l":21.441},{"oc":"#2b2e34","x":8.207,"y":46.954,"w":0.75,"l":23.16},{"oc":"#2b2e34","x":31.367,"y":46.954,"w":0.75,"l":23.117},{"oc":"#2b2e34","x":54.484,"y":46.954,"w":0.75,"l":23.117},{"oc":"#2b2e34","x":77.602,"y":46.954,"w":0.75,"l":21.441}],"VLines":[{"oc":"#2b2e34","x":6.23,"y":6.256,"w":0.75,"l":1.594},{"oc":"#2b2e34","x":67.762,"y":6.256,"w":0.75,"l":1.594},{"oc":"#2b2e34","x":96.637,"y":6.256,"w":0.75,"l":1.594},{"oc":"#2b2e34","x":6.23,"y":7.881,"w":0.75,"l":1.569},{"oc":"#2b2e34","x":67.762,"y":7.881,"w":0.75,"l":1.569},{"oc":"#2b2e34","x":96.637,"y":7.881,"w":0.75,"l":1.569},{"oc":"#2b2e34","x":67.762,"y":9.481,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":82.199,"y":9.481,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.637,"y":9.481,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":84.391,"y":11.825,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":99,"y":11.825,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":84.391,"y":13.137,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":99,"y":13.137,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":84.391,"y":14.45,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":99,"y":14.45,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":84.391,"y":15.762,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":99,"y":15.762,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":84.391,"y":17.075,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":99,"y":17.075,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":8.078,"y":11.825,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":8.078,"y":13.137,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":8.078,"y":14.45,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":8.078,"y":15.762,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":8.078,"y":17.075,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":49.5,"y":19.543,"w":0.75,"l":0.708},{"oc":"#2b2e34","x":61.875,"y":19.543,"w":0.75,"l":0.708},{"oc":"#2b2e34","x":74.25,"y":19.543,"w":0.75,"l":0.708},{"oc":"#2b2e34","x":86.625,"y":19.543,"w":0.75,"l":0.708},{"oc":"#2b2e34","x":99,"y":19.543,"w":0.75,"l":0.708},{"oc":"#2b2e34","x":49.5,"y":20.282,"w":0.75,"l":0.744},{"oc":"#2b2e34","x":61.875,"y":20.282,"w":0.75,"l":0.744},{"oc":"#2b2e34","x":74.25,"y":20.282,"w":0.75,"l":0.744},{"oc":"#2b2e34","x":86.625,"y":20.282,"w":0.75,"l":0.744},{"oc":"#2b2e34","x":99,"y":20.282,"w":0.75,"l":0.744},{"oc":"#2b2e34","x":49.5,"y":21.057,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":61.875,"y":21.057,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":74.25,"y":21.057,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":86.625,"y":21.057,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":99,"y":21.057,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":49.5,"y":23.484,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":61.875,"y":23.484,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":74.25,"y":23.484,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":86.625,"y":23.484,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":99,"y":23.484,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":49.5,"y":24.796,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":61.875,"y":24.796,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":74.25,"y":24.796,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":86.625,"y":24.796,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":99,"y":24.796,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":49.5,"y":26.109,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":61.875,"y":26.109,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":74.25,"y":26.109,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":86.625,"y":26.109,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":99,"y":26.109,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":49.5,"y":27.973,"w":0.75,"l":1.904},{"oc":"#2b2e34","x":61.875,"y":27.973,"w":0.75,"l":1.904},{"oc":"#2b2e34","x":74.25,"y":27.973,"w":0.75,"l":1.904},{"oc":"#2b2e34","x":86.625,"y":27.973,"w":0.75,"l":1.904},{"oc":"#2b2e34","x":99,"y":27.973,"w":0.75,"l":1.904},{"oc":"#2b2e34","x":49.5,"y":29.909,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":61.875,"y":29.909,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":74.25,"y":29.909,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":86.625,"y":29.909,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":99,"y":29.909,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":28.875,"y":32.335,"w":0.75,"l":0.719},{"oc":"#2b2e34","x":39.188,"y":32.335,"w":0.75,"l":0.719},{"oc":"#2b2e34","x":49.5,"y":32.335,"w":0.75,"l":0.719},{"oc":"#2b2e34","x":61.875,"y":32.335,"w":0.75,"l":0.734},{"oc":"#2b2e34","x":74.25,"y":32.335,"w":0.75,"l":0.734},{"oc":"#2b2e34","x":86.625,"y":32.335,"w":0.75,"l":0.734},{"oc":"#2b2e34","x":99,"y":32.335,"w":0.75,"l":0.734},{"oc":"#2b2e34","x":28.875,"y":33.085,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":39.188,"y":33.085,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":49.5,"y":33.085,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":61.875,"y":33.069,"w":0.75,"l":1.109},{"oc":"#2b2e34","x":74.25,"y":33.069,"w":0.75,"l":1.109},{"oc":"#2b2e34","x":86.625,"y":33.069,"w":0.75,"l":1.109},{"oc":"#2b2e34","x":99,"y":33.069,"w":0.75,"l":1.109},{"oc":"#2b2e34","x":28.875,"y":34.21,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":39.188,"y":34.21,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":49.5,"y":34.21,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":61.875,"y":34.21,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":74.25,"y":34.21,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":86.625,"y":34.21,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":99,"y":34.21,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":28.875,"y":35.335,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":39.188,"y":35.335,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":49.5,"y":35.335,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":61.875,"y":35.335,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":74.25,"y":35.335,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":86.625,"y":35.335,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":99,"y":35.335,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":28.875,"y":36.46,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":39.188,"y":36.46,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":49.5,"y":36.46,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":61.875,"y":36.46,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":74.25,"y":36.46,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":86.625,"y":36.46,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":99,"y":36.46,"w":0.75,"l":1.094},{"oc":"#2b2e34","x":49.5,"y":37.585,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":61.875,"y":37.585,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":74.25,"y":37.585,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":86.625,"y":37.585,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":99,"y":37.585,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":49.5,"y":39.449,"w":0.75,"l":2.958},{"oc":"#2b2e34","x":61.875,"y":39.449,"w":0.75,"l":2.958},{"oc":"#2b2e34","x":74.25,"y":39.449,"w":0.75,"l":2.958},{"oc":"#2b2e34","x":86.625,"y":39.449,"w":0.75,"l":2.958},{"oc":"#2b2e34","x":99,"y":39.449,"w":0.75,"l":2.958},{"oc":"#2b2e34","x":8.078,"y":20.282,"w":0.75,"l":0.744},{"oc":"#2b2e34","x":8.078,"y":21.057,"w":0.75,"l":2.395},{"oc":"#2b2e34","x":8.078,"y":23.484,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":8.078,"y":24.796,"w":0.75,"l":1.281},{"oc":"#2b2e34","x":8.078,"y":26.109,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":8.078,"y":27.973,"w":0.75,"l":1.904},{"oc":"#2b2e34","x":8.078,"y":29.909,"w":0.75,"l":2.411},{"oc":"#2b2e34","x":8.078,"y":32.319,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":8.078,"y":33.069,"w":0.75,"l":1.125},{"oc":"#2b2e34","x":8.078,"y":34.194,"w":0.75,"l":1.125},{"oc":"#2b2e34","x":8.078,"y":35.319,"w":0.75,"l":1.125},{"oc":"#2b2e34","x":8.078,"y":36.444,"w":0.75,"l":1.109},{"oc":"#2b2e34","x":8.078,"y":37.585,"w":0.75,"l":1.833},{"oc":"#2b2e34","x":8.078,"y":39.449,"w":0.75,"l":2.958},{"oc":"#2b2e34","x":8.25,"y":43.969,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":31.367,"y":43.969,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":54.484,"y":43.969,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":77.602,"y":43.969,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":99,"y":43.969,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":45.469,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":31.367,"y":45.469,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":54.484,"y":45.469,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":77.602,"y":45.469,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":99,"y":45.469,"w":0.75,"l":1.469}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.938,"y":2.137,"w":5.503,"clr":-1,"A":"left","R":[{"T":"760C%20-%202013","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":22.36,"y":2.137,"w":17.226000000000003,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Virginia%20Estimated","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":21.354,"y":3.074,"w":18.173000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20by%20Individuals%2C%20Estates%20and%20Trusts","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":5.938,"y":4.387,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8,"y":4.387,"w":3.1109999999999998,"clr":-1,"A":"left","R":[{"T":"Attach","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":12.66,"y":4.387,"w":1.778,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":15.487,"y":4.387,"w":2.222,"clr":-1,"A":"left","R":[{"T":"form","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.924,"y":4.387,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":20.605,"y":4.387,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.424,"y":4.387,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"760%2C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":27.482,"y":4.387,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"763%2C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":30.54,"y":4.387,"w":3.002,"clr":-1,"A":"left","R":[{"T":"760PY","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":35.026,"y":4.387,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":36.783,"y":4.387,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"770.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.938,"y":5.137,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"Fiscal","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.193,"y":5.137,"w":2.168,"clr":-1,"A":"left","R":[{"T":"Year","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":13.481,"y":5.137,"w":2.668,"clr":-1,"A":"left","R":[{"T":"Filers","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":17.149,"y":5.137,"w":10.062000000000003,"clr":-1,"A":"left","R":[{"T":"%3A%20Enter%20beginning%20date%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.361,"y":5.137,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%2020%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":49.779,"y":5.137,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"%20%2C%20ending%20date%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.869,"y":5.137,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%2020%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":77.288,"y":5.137,"w":8.227,"clr":-1,"A":"left","R":[{"T":"%20%2C%20and%20check%20here%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":5.919,"w":39.29099999999997,"clr":-1,"A":"left","R":[{"T":"First%20Name%2C%20Middle%20Initial%20and%20Last%20Name%20(of%20Both%20If%20Joint)%20-%20OR%20-%20Name%20of%20Estate%20or%20Trust","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":67.942,"y":5.919,"w":16.560000000000006,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number%20or%20FEIN","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":96.939,"y":6.653,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":6.41,"y":7.5440000000000005,"w":20.17400000000001,"clr":-1,"A":"left","R":[{"T":"If%20Estate%20or%20Trust%2C%20Name%20and%20Title%20of%20Fiduciary","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":67.942,"y":7.5440000000000005,"w":14.807,"clr":-1,"A":"left","R":[{"T":"Spouse's%20Social%20Security%20Number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":67.942,"y":9.144,"w":6.334999999999999,"clr":-1,"A":"left","R":[{"T":"Office%20Use%20SC","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":82.379,"y":9.144,"w":8.892000000000001,"clr":-1,"A":"left","R":[{"T":"Office%20Use%20Payment","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":96.939,"y":9.815,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":10.793,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.994,"y":10.793,"w":0.278,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.759,"y":10.793,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.599,"y":10.793,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Compute","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":16.913,"y":10.793,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Your","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":20.326,"y":10.793,"w":7.001,"clr":-1,"A":"left","R":[{"T":"Underpayment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.345,"y":11.61,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":11.61,"w":40.18399999999999,"clr":-1,"A":"left","R":[{"T":"2013%20Income%20Tax%20Liability%20After%20Spouse%20Tax%20Adjustment%20and%20Tax%20Credits.%20See%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":12.173,"w":24.399000000000004,"clr":-1,"A":"left","R":[{"T":"(If%20%24150%20or%20less%2C%20you%20are%20not%20required%20to%20file%20Form%20760C)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.564,"y":12.215,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.345,"y":13.209,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":13.209,"w":18.900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%2090%25%20of%20the%20Amount%20Shown%20on%20Line%201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.564,"y":13.209,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.345,"y":14.522,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":14.522,"w":31.95800000000001,"clr":-1,"A":"left","R":[{"T":"2012%20Income%20Tax%20Liability%20After%20Spouse%20Tax%20Adjustment%20and%20Tax%20Credits","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.564,"y":14.522,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.345,"y":15.834,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":15.834,"w":26.233000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Amount%20From%20Line%202%20or%20Line%203%2C%20Whichever%20is%20Less","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.564,"y":15.834,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.345,"y":17.147,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":17.147,"w":38.514999999999986,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Number%20of%20Installment%20Periods%20for%20Which%20You%20Were%20Liable%20to%20Make%20Payments","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.564,"y":17.147,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":22.448,"y":18.324,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Line","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":25.657,"y":18.324,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.804,"y":18.324,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Through","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":32.762,"y":18.324,"w":1.445,"clr":-1,"A":"left","R":[{"T":"14%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":35.131,"y":18.324,"w":4.556,"clr":-1,"A":"left","R":[{"T":"Complete","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":41.778,"y":18.324,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Each","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":45.446,"y":18.324,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Line","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":48.602,"y":18.324,"w":3.39,"clr":-1,"A":"left","R":[{"T":"Across","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":53.594,"y":18.324,"w":1.278,"clr":-1,"A":"left","R":[{"T":"All","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":55.734,"y":18.324,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Columns","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":61.998,"y":18.324,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Before","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":66.735,"y":18.324,"w":5.276999999999999,"clr":-1,"A":"left","R":[{"T":"Continuing","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":74.373,"y":18.324,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":76.054,"y":18.324,"w":2.1670000000000003,"clr":-1,"A":"left","R":[{"T":"Next","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":79.415,"y":18.324,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Line","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":55.017,"y":19.329,"w":0.667,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.353,"y":19.329,"w":0.667,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":79.69,"y":19.329,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.065,"y":19.329,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.258,"y":20.068,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.436,"y":20.068,"w":15.673,"clr":-1,"A":"left","R":[{"T":"Due%20Dates%20of%20Installment%20Payments","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":51.652,"y":20.068,"w":5.503,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":63.453,"y":20.068,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"June%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":75.713,"y":20.068,"w":6.505000000000001,"clr":-1,"A":"left","R":[{"T":"Sept.%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":88.394,"y":20.068,"w":6.0600000000000005,"clr":-1,"A":"left","R":[{"T":"Jan.%2015%2C%202014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.257,"y":20.843,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":20.843,"w":5.557000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20Liability%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":21.406,"w":26.401000000000003,"clr":-1,"A":"left","R":[{"T":"(Divide%20the%20amount%20on%20Line%204%20by%20the%20number%20of%20installments%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":21.968,"w":25.34800000000001,"clr":-1,"A":"left","R":[{"T":"reported%20on%20Line%205%20and%20enter%20the%20result%20in%20the%20appropriate%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":22.531,"w":4.056,"clr":-1,"A":"left","R":[{"T":"columns)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.257,"y":23.557,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":23.557,"w":26.011000000000013,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Income%20Tax%20Withheld%20for%20Each%20Installment%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.257,"y":24.583,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":24.583,"w":26.233000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Overpayment%20Credit%20from%20Your%202012%20Income%20Tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":25.145,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.492,"y":25.895,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":25.895,"w":11.173,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Amount%20of%20Any%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":28.026,"y":25.895,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Timely","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":32.463,"y":25.895,"w":11.561000000000003,"clr":-1,"A":"left","R":[{"T":"%20Payment%20Made%20for%20Each%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":26.458,"w":20.175000000000008,"clr":-1,"A":"left","R":[{"T":"Installment%20Period%20in%20the%20Appropriate%20Column%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":27.02,"w":14.562000000000001,"clr":-1,"A":"left","R":[{"T":"(Do%20not%20enter%20any%20late%20payments)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.594,"y":27.759,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":27.759,"w":14.839000000000004,"clr":-1,"A":"left","R":[{"T":"Underpayment%20or%20%5BOverpayment%5D%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":28.322,"w":26.680000000000003,"clr":-1,"A":"left","R":[{"T":"(Subtract%20Lines%208%2C%209%20and%2010%20from%20Line%207.%20See%20instructions%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":28.884,"w":6.113000000000001,"clr":-1,"A":"left","R":[{"T":"overpayment)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.492,"y":29.695,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":29.695,"w":7.503000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20Payments%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":30.257,"w":28.735000000000003,"clr":-1,"A":"left","R":[{"T":"(Enter%20the%20payments%20from%20the%20Late%20Payment%2FOverpayment%20Table%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.435,"y":30.82,"w":23.622000000000003,"clr":-1,"A":"left","R":[{"T":"below%2C%20beginning%20with%20the%20earliest%20payment%20recorded.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":44.313,"y":30.82,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.435,"y":31.381999999999998,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":15.179,"y":31.381999999999998,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.923,"y":31.381999999999998,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"than","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":22.208,"y":31.381999999999998,"w":1.5,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.653,"y":31.381999999999998,"w":6.890000000000001,"clr":-1,"A":"left","R":[{"T":"underpayment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":34.509,"y":31.381999999999998,"w":0.889,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":36.113,"y":31.381999999999998,"w":1.723,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":38.865,"y":31.381999999999998,"w":4.167,"clr":-1,"A":"left","R":[{"T":"column.)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":32.327,"y":32.127,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":41.722,"y":32.127,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35,"y":33.064,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.897,"y":33.064,"w":6.168000000000001,"clr":-1,"A":"left","R":[{"T":"First%20Payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.147,"y":33.064,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.24,"y":33.064,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35,"y":34.189,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.898,"y":34.189,"w":7.615,"clr":-1,"A":"left","R":[{"T":"Second%20Payment","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#2b2e34","x":32.148,"y":34.189,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.242,"y":34.189,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":35.314,"w":0.778,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.898,"y":35.314,"w":6.502000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20Payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.148,"y":35.314,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.242,"y":35.314,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.352,"y":36.439,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.898,"y":36.439,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"Fourth%20Payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.148,"y":36.439,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.242,"y":36.439,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.494,"y":37.371,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.437,"y":37.371,"w":6.8370000000000015,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Total%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":20.498,"y":37.371,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Timely","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.829,"y":37.371,"w":17.897,"clr":-1,"A":"left","R":[{"T":"%20Payments%20Made%20as%20of%20Each%20Installment%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.437,"y":37.933,"w":16.73100000000001,"clr":-1,"A":"left","R":[{"T":"Due%20Date%20From%20Lines%208%2C%209%2C%2010%20and%2012%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.495,"y":39.235,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.437,"y":39.235,"w":12.840000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2013%20from%20Line%207%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.437,"y":39.797,"w":14.895000000000005,"clr":-1,"A":"left","R":[{"T":"(If%20the%20sum%20of%20all%20underpayments%20(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.032,"y":39.797,"w":1.222,"clr":-1,"A":"left","R":[{"T":"do","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":37.459,"y":39.797,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":40.402,"y":39.797,"w":3.5010000000000003,"clr":-1,"A":"left","R":[{"T":"include","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":46.251,"y":39.797,"w":1.723,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.439,"y":40.36,"w":8.39,"clr":-1,"A":"left","R":[{"T":"OVERPAYMENTS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":22.703,"y":40.36,"w":19.954,"clr":-1,"A":"left","R":[{"T":")%20reported%20is%20%24150%20or%20less%2C%20stop%20here%3B%20you%20are%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.439,"y":40.922,"w":27.07100000000001,"clr":-1,"A":"left","R":[{"T":"not%20subject%20to%20an%20addition%20to%20tax.%20%20If%20your%20underpayments%20total%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.439,"y":41.485,"w":15.56400000000001,"clr":-1,"A":"left","R":[{"T":"more%20than%20%24150%2C%20proceed%20to%20Part%20II)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":84.866,"y":42.375,"w":4.944,"clr":-1,"A":"left","R":[{"T":"Continued","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":92.047,"y":42.375,"w":1.222,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":94.109,"y":42.375,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Back","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":97.394,"y":42.375,"w":0.987,"clr":-1,"A":"left","R":[{"T":"%20g","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":28.784,"y":42.938,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Late","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":31.994,"y":42.938,"w":10.837000000000002,"clr":-1,"A":"left","R":[{"T":"Payment%2FOverpayment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":47.277,"y":42.938,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Table","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":51.149,"y":42.938,"w":2.112,"clr":-1,"A":"left","R":[{"T":"(See","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":54.435,"y":42.938,"w":5.723,"clr":-1,"A":"left","R":[{"T":"Instructions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":62.686,"y":42.938,"w":1.333,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":64.901,"y":42.938,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Lines","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":68.875,"y":42.938,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":70.709,"y":42.938,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":73.536,"y":42.938,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12.)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.43,"y":43.633,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":31.547,"y":43.633,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":54.665,"y":43.633,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":77.782,"y":43.633,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.431,"y":45.133,"w":7.948,"clr":-1,"A":"left","R":[{"T":"Payment%20Amount%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.43,"y":45.733,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":31.547,"y":45.133,"w":7.67,"clr":-1,"A":"left","R":[{"T":"Payment%20Amount","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":31.547,"y":45.733,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.664,"y":45.133,"w":7.948,"clr":-1,"A":"left","R":[{"T":"%20Payment%20Amount","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":54.664,"y":45.733,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":77.781,"y":45.133,"w":7.948,"clr":-1,"A":"left","R":[{"T":"Payment%20Amount%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":77.781,"y":45.733,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.639,"y":46.515,"w":23.79100000000001,"clr":-1,"A":"left","R":[{"T":"VA.%20Dept.%20of%20Taxation%20%20%20760C%20%20%202601033%20%20%20(REV%2012%2F13)","S":51,"TS":[0,9,0,0],"RA":90}]},{"oc":"#2b2e34","x":11.438,"y":38.496,"w":28.122,"clr":-1,"A":"left","R":[{"T":"(For%20ex.%2C%20in%20Column%20A%20enter%20all%20payments%20made%20by%20May%201%2C%202013)","S":-1,"TS":[0,10.68,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":112,"AM":1024,"x":60.725,"y":0.593,"w":37.211,"h":1.292,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":113,"AM":1024,"x":6.227,"y":6.809,"w":61.091,"h":1.01,"TU":"First Name, Middle Initial and Last Name (of Both If Joint) - OR - Name of Estate or Trust"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":114,"AM":1024,"x":67.934,"y":6.796,"w":28.603,"h":1.01,"TU":"Your Social Security Number or FEIN"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":115,"AM":1024,"x":67.917,"y":8.423,"w":28.695,"h":1.01,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":116,"AM":1024,"x":84.377,"y":11.923,"w":14.293,"h":1.154,"TU":"1. 2012 Income Tax Liability After Spouse Tax Adjustment and Tax Credits. See instructions. (If $150 or less, you are not required to file Form 760C) 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":117,"AM":1024,"x":84.292,"y":13.236,"w":14.293,"h":1.154,"TU":"2. Enter 90% of the Amount Shown on Line 1 2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":118,"AM":0,"x":84.292,"y":14.548,"w":14.293,"h":1.154,"TU":"3. 2011 Income Tax Liability After Spouse Tax Adjustment and Tax Credits 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":119,"AM":1024,"x":84.292,"y":15.861,"w":14.293,"h":1.154,"TU":"4. Enter the Amount From Line 2 or Line 3, Whichever is Less 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":120,"AM":0,"x":84.292,"y":17.173,"w":14.293,"h":1.154,"TU":"5. Enter the Number of Installment Periods for Which You Were Liable to Make Payments 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":121,"AM":0,"x":49.477,"y":22.373,"w":11.901,"h":0.974,"TU":"June 15, 2012_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":122,"AM":0,"x":61.852,"y":22.373,"w":11.901,"h":0.974,"TU":"June 15, 2012_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7C","EN":0},"TI":123,"AM":0,"x":74.227,"y":22.373,"w":11.901,"h":0.974,"TU":"Sept. 15, 2012_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7D","EN":0},"TI":124,"AM":0,"x":86.602,"y":22.373,"w":11.901,"h":0.974,"TU":"Jan. 15, 2013_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":125,"AM":0,"x":49.395,"y":23.766,"w":12.066,"h":0.974,"TU":"May 1, 2012_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":126,"AM":0,"x":61.77,"y":23.766,"w":12.066,"h":0.974,"TU":"June 15, 2012_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":127,"AM":0,"x":74.145,"y":23.766,"w":12.066,"h":0.974,"TU":"Sept. 15, 2012_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8D","EN":0},"TI":128,"AM":0,"x":86.52,"y":23.766,"w":12.066,"h":0.974,"TU":"Jan. 15, 2013_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":129,"AM":0,"x":49.395,"y":25.078,"w":12.066,"h":0.974,"TU":"May 1, 2012_9. Enter the Overpayment Credit From Your 2011 Income Tax Return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":130,"AM":0,"x":61.77,"y":25.078,"w":12.066,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":131,"AM":0,"x":74.145,"y":25.078,"w":12.066,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9D","EN":0},"TI":132,"AM":0,"x":86.52,"y":25.078,"w":12.066,"h":0.974,"TU":"Jan. 15, 2013_9. Enter the Overpayment Credit From Your 2011 Income Tax Return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":133,"AM":0,"x":49.436,"y":26.931,"w":11.983,"h":0.974,"TU":"May 1, 2012_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":134,"AM":0,"x":61.811,"y":26.931,"w":11.983,"h":0.974,"TU":"May 1, 2012_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10C","EN":0},"TI":135,"AM":0,"x":74.186,"y":26.931,"w":11.983,"h":0.974,"TU":"Sept. 15, 2012_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10D","EN":0},"TI":136,"AM":0,"x":86.561,"y":26.931,"w":11.983,"h":0.974,"TU":"Jan. 15, 2013_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":137,"AM":1024,"x":49.436,"y":28.891,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":138,"AM":1024,"x":61.811,"y":28.891,"w":11.983,"h":0.974,"TU":"June 15, 2012_11. Underpayment or [Overpayment] (Subtract Lines 8, 9 and 10 from Line 7. See instructions for overpayment)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C","EN":0},"TI":139,"AM":1024,"x":74.186,"y":28.891,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11D","EN":0},"TI":140,"AM":1024,"x":86.561,"y":28.891,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT1","EN":0},"TI":141,"AM":0,"x":28.818,"y":33.171,"w":10.044,"h":0.974,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT1","EN":0},"TI":142,"AM":0,"x":39.062,"y":33.171,"w":10.044,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A1","EN":0},"TI":143,"AM":0,"x":49.436,"y":33.171,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A2","EN":0},"TI":144,"AM":0,"x":61.811,"y":33.171,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A3","EN":0},"TI":145,"AM":0,"x":74.186,"y":33.108,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A4","EN":0},"TI":146,"AM":0,"x":86.561,"y":33.171,"w":11.983,"h":0.974,"TU":"Jan. 15, 2013_Row_7"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT2","EN":0},"TI":147,"AM":0,"x":28.728,"y":34.296,"w":10.044,"h":0.974,"TU":"Date","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT2","EN":0},"TI":148,"AM":0,"x":39.062,"y":34.296,"w":10.044,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B1","EN":0},"TI":149,"AM":0,"x":49.374,"y":34.296,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B2","EN":0},"TI":150,"AM":0,"x":61.749,"y":34.296,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B3","EN":0},"TI":151,"AM":0,"x":74.124,"y":34.296,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B4","EN":0},"TI":152,"AM":0,"x":86.499,"y":34.296,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT3","EN":0},"TI":153,"AM":0,"x":28.728,"y":35.421,"w":10.044,"h":0.974,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT3","EN":0},"TI":154,"AM":0,"x":39.137,"y":35.448,"w":10.044,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C1","EN":0},"TI":155,"AM":0,"x":49.374,"y":35.421,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C2","EN":0},"TI":156,"AM":0,"x":61.749,"y":35.421,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C3","EN":0},"TI":157,"AM":0,"x":74.124,"y":35.421,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C4","EN":0},"TI":158,"AM":0,"x":86.499,"y":35.421,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT4","EN":0},"TI":159,"AM":0,"x":28.728,"y":36.546,"w":10.044,"h":0.974,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT4","EN":0},"TI":160,"AM":0,"x":39.062,"y":36.546,"w":10.044,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D1","EN":0},"TI":161,"AM":0,"x":49.374,"y":36.546,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D2","EN":0},"TI":162,"AM":0,"x":61.749,"y":36.546,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D3","EN":0},"TI":163,"AM":0,"x":74.124,"y":36.546,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D4","EN":0},"TI":164,"AM":0,"x":86.499,"y":36.546,"w":12.107,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":165,"AM":0,"x":49.436,"y":38.406,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":166,"AM":0,"x":61.811,"y":38.406,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13C","EN":0},"TI":167,"AM":0,"x":74.186,"y":38.406,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13D","EN":0},"TI":168,"AM":0,"x":86.561,"y":38.406,"w":11.983,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A","EN":0},"TI":169,"AM":1024,"x":49.477,"y":41.388,"w":11.901,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":170,"AM":1024,"x":61.852,"y":41.388,"w":11.901,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C","EN":0},"TI":171,"AM":1024,"x":74.227,"y":41.388,"w":11.901,"h":0.974},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14D","EN":0},"TI":172,"AM":1024,"x":86.602,"y":41.388,"w":11.901,"h":0.974},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT3","EN":0},"TI":173,"AM":0,"x":8.169,"y":44.502,"w":22.766,"h":0.838,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT4","EN":0},"TI":174,"AM":0,"x":31.237,"y":44.506,"w":22.991,"h":0.838,"TU":"Date of Payment","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT5","EN":0},"TI":175,"AM":0,"x":54.435,"y":44.506,"w":22.893,"h":0.838,"TU":"Date of Payment","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT6","EN":0},"TI":176,"AM":0,"x":77.658,"y":44.506,"w":21.079,"h":0.838,"TU":"Date of Payment","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY1","EN":0},"TI":177,"AM":0,"x":9.429,"y":46.006,"w":21.506,"h":0.838,"TU":"Payment Amount $"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY2","EN":0},"TI":178,"AM":0,"x":32.722,"y":46.006,"w":21.506,"h":0.838,"TU":"Payment Amount $"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY3","EN":0},"TI":179,"AM":0,"x":55.822,"y":46.006,"w":21.506,"h":0.838,"TU":"Payment Amount $"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY4","EN":0},"TI":180,"AM":0,"x":78.851,"y":46.006,"w":19.886,"h":0.838,"TU":"Payment Amount $"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":7.382,"y":6.07,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":6.07,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":6.07,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":7.382,"y":7.309,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":7.309,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":7.309,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":7.309,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":7.309,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":7.309,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":7.309,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":7.309,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":7.309,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":7.309,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":7.382,"y":8.548,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":8.548,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":8.548,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":8.548,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":8.548,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":8.548,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":8.548,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":8.548,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":8.548,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":8.548,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":7.382,"y":10.349,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":10.349,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":10.349,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":10.349,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":10.349,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":10.349,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":10.349,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":10.349,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":10.349,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":10.349,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":55.057,"y":12.776,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":66.1,"y":12.776,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":12.776,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":55.1,"y":13.452,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":13.452,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":13.452,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":14.327,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":14.327,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":14.327,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":14.327,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":14.327,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":16.129,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":16.129,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":16.129,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":16.129,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":16.129,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":17.368,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":17.368,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":17.368,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":17.368,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":17.368,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":18.257,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":18.257,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":18.257,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":18.257,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":18.257,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":19.496,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":19.496,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":19.496,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":19.496,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":19.496,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":20.735,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":20.735,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":20.735,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":20.735,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":20.735,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":22.235,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":22.235,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":22.235,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":22.235,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":22.235,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":55.057,"y":22.985,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":66.1,"y":22.985,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":22.985,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":55.1,"y":23.662,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":23.662,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":23.662,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":24.551,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":24.551,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":24.551,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":24.551,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":24.551,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":25.79,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":25.79,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":25.79,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":25.79,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":25.79,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":27.029,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":27.029,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":27.029,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":27.029,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":27.029,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":28.268,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":28.268,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":28.268,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":28.268,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":28.268,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":29.507,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":29.507,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":29.507,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":29.507,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":29.507,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":11.1,"y":30.746,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":30.746,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":30.746,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":30.746,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":30.746,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":7.382,"y":31.635,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":31.635,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":31.635,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":31.635,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":31.635,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":31.635,"w":0.75,"l":11},{"oc":"#2b2e34","x":55.057,"y":33.635,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":66.1,"y":33.635,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":33.635,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":33.635,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":33.635,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":33.635,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":33.635,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":7.382,"y":34.874,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":34.874,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":34.874,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":34.874,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":34.874,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":34.874,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":34.874,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":34.874,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":34.874,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":34.874,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":7.382,"y":37.187,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":37.187,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":37.187,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":37.187,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":37.187,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":37.187,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":37.187,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":37.187,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":37.187,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":37.187,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":7.382,"y":38.988,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":38.988,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":38.988,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":38.988,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":38.988,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":38.988,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":38.988,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":38.988,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":38.988,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":38.988,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":55.1,"y":40.79,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":40.79,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":40.79,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":40.79,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":40.79,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":40.79,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":40.79,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":11.1,"y":13.452,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":13.452,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":11.1,"y":23.662,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":23.662,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":7.382,"y":22.235,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":89.088,"y":20.735,"w":0.75,"l":5.763},{"oc":"#2b2e34","x":94.851,"y":20.735,"w":0.75,"l":3.26},{"oc":"#2b2e34","x":89.088,"y":27.029,"w":0.75,"l":5.763},{"oc":"#2b2e34","x":94.851,"y":27.029,"w":0.75,"l":3.26},{"oc":"#2b2e34","x":89.088,"y":13.452,"w":0.75,"l":5.763},{"oc":"#2b2e34","x":94.851,"y":13.452,"w":0.75,"l":3.26},{"oc":"#2b2e34","x":89.088,"y":19.496,"w":0.75,"l":5.763},{"oc":"#2b2e34","x":94.851,"y":19.496,"w":0.75,"l":3.26},{"oc":"#2b2e34","x":88.1,"y":31.635,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":31.635,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":31.635,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":31.635,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":55.057,"y":4.831,"w":0.75,"l":11.043},{"oc":"#2b2e34","x":66.1,"y":4.831,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":4.831,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":4.831,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":4.831,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":4.831,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":4.831,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":55.1,"y":6.07,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":6.07,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":6.07,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":6.07,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":6.07,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":6.07,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":6.07,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":11.1,"y":40.79,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":40.79,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":7.382,"y":40.79,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":7.382,"y":45.364,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":45.364,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":45.364,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":45.364,"w":0.75,"l":10.871},{"oc":"#2b2e34","x":65.971,"y":45.364,"w":2.25,"l":11.129},{"oc":"#2b2e34","x":77.1,"y":45.364,"w":2.25,"l":11},{"oc":"#2b2e34","x":88.1,"y":45.364,"w":2.25,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":45.364,"w":2.25,"l":5.849},{"oc":"#2b2e34","x":7.382,"y":42.029,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":42.029,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":42.029,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":42.029,"w":0.75,"l":11},{"oc":"#2b2e34","x":66.1,"y":42.029,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.1,"y":42.029,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.1,"y":42.029,"w":0.75,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":42.029,"w":0.75,"l":5.72},{"oc":"#2b2e34","x":94.851,"y":42.029,"w":0.75,"l":3.218},{"oc":"#2b2e34","x":98.069,"y":42.029,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":7.382,"y":42.918,"w":0.75,"l":3.718},{"oc":"#2b2e34","x":11.1,"y":42.918,"w":0.75,"l":32.141},{"oc":"#2b2e34","x":43.241,"y":42.918,"w":0.75,"l":11.859},{"oc":"#2b2e34","x":55.1,"y":42.918,"w":0.75,"l":10.871},{"oc":"#2b2e34","x":94.98,"y":42.918,"w":0.75,"l":3.089},{"oc":"#2b2e34","x":98.069,"y":42.918,"w":0.75,"l":1.074},{"oc":"#2b2e34","x":65.971,"y":42.918,"w":2.25,"l":11.129},{"oc":"#2b2e34","x":77.1,"y":42.918,"w":2.25,"l":11},{"oc":"#2b2e34","x":88.1,"y":42.918,"w":2.25,"l":1.031},{"oc":"#2b2e34","x":89.131,"y":42.918,"w":2.25,"l":5.849}],"VLines":[{"clr":1,"x":88.1,"y":42.965,"w":0.75,"l":1.723},{"clr":1,"x":88.1,"y":44.688,"w":0.75,"l":0.629},{"oc":"#2b2e34","x":7.425,"y":6.085,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":55.1,"y":6.085,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":6.085,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":6.085,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":6.085,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":99.1,"y":6.085,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":7.324,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":43.241,"y":7.324,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":55.1,"y":7.324,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":7.324,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":7.324,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":7.324,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":99.1,"y":7.324,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":8.563,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":43.241,"y":8.563,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":55.1,"y":8.563,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":66.1,"y":8.563,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":77.1,"y":8.563,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":88.1,"y":8.563,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":99.1,"y":8.563,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":7.425,"y":10.365,"w":0.75,"l":2.411},{"oc":"#2b2e34","x":99.1,"y":10.365,"w":0.75,"l":2.411},{"oc":"#2b2e34","x":7.425,"y":12.776,"w":0.75,"l":0.676},{"oc":"#2b2e34","x":55.1,"y":12.791,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":66.1,"y":12.791,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":77.1,"y":12.791,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":88.1,"y":12.791,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":99.1,"y":12.776,"w":0.75,"l":0.676},{"oc":"#2b2e34","x":7.425,"y":13.452,"w":0.75,"l":0.875},{"oc":"#2b2e34","x":55.1,"y":13.468,"w":0.75,"l":0.844},{"oc":"#2b2e34","x":66.1,"y":13.468,"w":0.75,"l":0.844},{"oc":"#2b2e34","x":77.1,"y":13.468,"w":0.75,"l":0.844},{"oc":"#2b2e34","x":7.425,"y":14.327,"w":0.75,"l":1.801},{"oc":"#2b2e34","x":55.1,"y":14.343,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":66.1,"y":14.343,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":77.1,"y":14.343,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":7.425,"y":16.129,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":16.144,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":16.144,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":16.144,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":17.368,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":55.1,"y":17.383,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":66.1,"y":17.383,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":77.1,"y":17.383,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":7.425,"y":18.257,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":18.273,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":18.273,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":18.273,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":19.496,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":19.512,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":19.512,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":19.512,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":19.512,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":20.735,"w":0.75,"l":1.484},{"oc":"#2b2e34","x":55.1,"y":20.751,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":66.1,"y":20.751,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":77.1,"y":20.751,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":7.425,"y":22.251,"w":0.75,"l":0.734},{"oc":"#2b2e34","x":7.425,"y":22.985,"w":0.75,"l":0.676},{"oc":"#2b2e34","x":55.1,"y":23.001,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":66.1,"y":23.001,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":77.1,"y":23.001,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":7.425,"y":23.662,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":55.1,"y":23.677,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":66.1,"y":23.677,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":77.1,"y":23.677,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":7.425,"y":24.551,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":24.566,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":24.566,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":24.566,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":25.79,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":25.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":25.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":25.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":27.029,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":27.044,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":27.044,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":27.044,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":27.044,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":28.268,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":28.284,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":28.284,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":28.284,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":28.284,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":29.507,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":55.1,"y":29.523,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":29.523,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":29.523,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":29.523,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":30.746,"w":0.75,"l":0.874},{"oc":"#2b2e34","x":55.1,"y":30.761,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":66.1,"y":30.761,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":77.1,"y":30.761,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":88.1,"y":30.761,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":55.1,"y":33.651,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":33.651,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":33.651,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":33.651,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":99.1,"y":33.651,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.348,"y":34.921,"w":0.75,"l":2.158},{"oc":"#2b2e34","x":55.043,"y":34.9,"w":0.75,"l":2.201},{"oc":"#2b2e34","x":66.129,"y":34.9,"w":0.75,"l":2.201},{"oc":"#2b2e34","x":77.086,"y":34.876,"w":0.75,"l":2.436},{"oc":"#2b2e34","x":88.043,"y":34.876,"w":0.75,"l":2.528},{"oc":"#2b2e34","x":99.129,"y":34.921,"w":0.75,"l":2.158},{"oc":"#2b2e34","x":7.425,"y":37.202,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":55.1,"y":37.202,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":66.1,"y":37.202,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":77.1,"y":37.202,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":88.1,"y":37.202,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":99.1,"y":37.202,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":7.425,"y":39.004,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":55.1,"y":39.004,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":66.1,"y":39.004,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":77.1,"y":39.004,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":88.1,"y":39.004,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":99.1,"y":39.004,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":7.425,"y":40.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":55.1,"y":40.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":40.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":40.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":40.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":99.1,"y":40.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":55.1,"y":42.044,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":66.1,"y":42.044,"w":0.75,"l":0.827},{"oc":"#2b2e34","x":77.1,"y":42.044,"w":0.75,"l":0.827},{"oc":"#2b2e34","x":88.1,"y":42.044,"w":0.75,"l":0.827},{"oc":"#2b2e34","x":99.1,"y":13.452,"w":0.75,"l":0.875},{"oc":"#2b2e34","x":99.1,"y":14.327,"w":0.75,"l":1.801},{"oc":"#2b2e34","x":99.1,"y":16.129,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":99.1,"y":17.368,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":99.1,"y":18.257,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":99.1,"y":19.496,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":99.1,"y":20.735,"w":0.75,"l":1.5},{"oc":"#2b2e34","x":99.1,"y":22.235,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":99.1,"y":22.985,"w":0.75,"l":0.676},{"oc":"#2b2e34","x":99.1,"y":23.662,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":99.1,"y":24.551,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":99.1,"y":25.79,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":89.131,"y":20.751,"w":0.75,"l":1.484},{"oc":"#2b2e34","x":98.069,"y":20.751,"w":0.75,"l":1.484},{"oc":"#2b2e34","x":89.131,"y":22.235,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":98.069,"y":22.235,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":89.131,"y":22.985,"w":0.75,"l":0.676},{"oc":"#2b2e34","x":98.069,"y":22.985,"w":0.75,"l":0.676},{"oc":"#2b2e34","x":89.131,"y":23.662,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":98.069,"y":23.662,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":89.131,"y":24.551,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":98.069,"y":24.551,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":89.131,"y":25.79,"w":0.75,"l":1.223},{"oc":"#2b2e34","x":98.069,"y":25.79,"w":0.75,"l":1.223},{"oc":"#2b2e34","x":88.1,"y":20.751,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":88.1,"y":22.251,"w":0.75,"l":0.719},{"oc":"#2b2e34","x":88.1,"y":23.001,"w":0.75,"l":0.645},{"oc":"#2b2e34","x":88.1,"y":23.677,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":88.1,"y":24.566,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":25.805,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":89.131,"y":13.468,"w":0.75,"l":0.859},{"oc":"#2b2e34","x":98.069,"y":13.468,"w":0.75,"l":0.859},{"oc":"#2b2e34","x":89.131,"y":14.327,"w":0.75,"l":1.801},{"oc":"#2b2e34","x":98.069,"y":14.327,"w":0.75,"l":1.801},{"oc":"#2b2e34","x":89.131,"y":16.129,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":98.069,"y":16.129,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":89.131,"y":17.368,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":98.069,"y":17.368,"w":0.75,"l":0.889},{"oc":"#2b2e34","x":89.131,"y":18.257,"w":0.75,"l":1.223},{"oc":"#2b2e34","x":98.069,"y":18.257,"w":0.75,"l":1.223},{"oc":"#2b2e34","x":88.1,"y":13.468,"w":0.75,"l":0.844},{"oc":"#2b2e34","x":88.1,"y":14.343,"w":0.75,"l":1.77},{"oc":"#2b2e34","x":88.1,"y":16.144,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":17.383,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":88.1,"y":18.273,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":99.1,"y":27.029,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":99.1,"y":28.268,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":99.1,"y":29.507,"w":0.75,"l":1.239},{"oc":"#2b2e34","x":99.1,"y":30.746,"w":0.75,"l":0.874},{"oc":"#2b2e34","x":55.1,"y":4.846,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":66.1,"y":4.846,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":77.1,"y":4.846,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":88.1,"y":4.846,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":99.1,"y":4.846,"w":0.75,"l":1.208},{"oc":"#2b2e34","x":7.425,"y":42.933,"w":0.75,"l":1.755},{"oc":"#2b2e34","x":7.425,"y":44.688,"w":0.75,"l":0.66},{"dsh":1,"oc":"#2b2e34","x":88.1,"y":43.088,"w":0.75,"l":1.416},{"dsh":1,"oc":"#2b2e34","x":88.1,"y":44.793,"w":0.75,"l":0.367},{"oc":"#2b2e34","x":66.1,"y":42.965,"w":2.25,"l":1.723},{"oc":"#2b2e34","x":94.851,"y":42.965,"w":2.25,"l":1.723},{"oc":"#2b2e34","x":66.1,"y":44.688,"w":2.25,"l":0.629},{"oc":"#2b2e34","x":94.851,"y":44.688,"w":2.25,"l":0.629},{"oc":"#2b2e34","x":7.425,"y":42.044,"w":0.75,"l":0.858},{"oc":"#2b2e34","x":99.1,"y":42.044,"w":0.75,"l":0.858}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":77.1,"y":38.988,"w":11,"h":1.801,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.938,"y":2.137,"w":5.503,"clr":-1,"A":"left","R":[{"T":"760C%20-%202013","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":5.938,"y":2.737,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Page","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.606,"y":2.737,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.917,"y":4.601,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.974,"y":4.601,"w":0.556,"clr":-1,"A":"left","R":[{"T":"II","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.121,"y":4.601,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.961,"y":4.601,"w":5.335,"clr":-1,"A":"left","R":[{"T":"Exceptions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.679,"y":4.601,"w":2.111,"clr":-1,"A":"left","R":[{"T":"That","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":21.963,"y":4.601,"w":2.167,"clr":-1,"A":"left","R":[{"T":"Void","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":25.222,"y":4.601,"w":1.5,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":27.615,"y":4.601,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Addition","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":33.573,"y":4.601,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":35.253,"y":4.601,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":59.854,"y":4.601,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":56.567,"y":5.163,"w":5.503,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.854,"y":4.601,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":66.993,"y":5.163,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"June%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":81.854,"y":4.601,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":77.878,"y":5.163,"w":6.505000000000001,"clr":-1,"A":"left","R":[{"T":"Sept.%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.854,"y":4.601,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":89.184,"y":5.163,"w":6.0600000000000005,"clr":-1,"A":"left","R":[{"T":"Jan.%2015%2C%202014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.606,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281,"y":5.84,"w":29.682000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20Amount%20Paid%20and%20Withheld%20from%20January%201%2C%202013%20through%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281,"y":6.402,"w":11.561,"clr":-1,"A":"left","R":[{"T":"Installment%20Date%20Indicated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.606,"y":7.079,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281,"y":7.079,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.234,"y":7.079,"w":0.889,"clr":-1,"A":"left","R":[{"T":"1%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.457,"y":7.079,"w":7.415000000000001,"clr":-1,"A":"left","R":[{"T":"%20Prior%20Year's%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":7.641,"w":23.456000000000007,"clr":-1,"A":"left","R":[{"T":"(Multiply%20the%202012%20tax%20by%20the%20percentage%20in%20each%20col.)","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#2b2e34","x":43.429,"y":7.079,"w":8.116,"clr":-1,"A":"left","R":[{"T":"100%25%20of%202012%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.974,"y":7.079,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"25%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.974,"y":7.079,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"50%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":80.974,"y":7.079,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"75%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.592,"y":7.079,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"100%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.606,"y":8.318,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281,"y":8.318,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.235,"y":8.318,"w":0.889,"clr":-1,"A":"left","R":[{"T":"2%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.457,"y":8.318,"w":17.142000000000003,"clr":-1,"A":"left","R":[{"T":"%20Tax%20on%20Prior%20Year's%20Income%20Using%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281,"y":8.88,"w":12.840000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20Rates%20and%20Exemptions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":9.443,"w":23.456000000000007,"clr":-1,"A":"left","R":[{"T":"(Multiply%20the%202012%20tax%20by%20the%20percentage%20in%20each%20col.)","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#2b2e34","x":45.149,"y":8.318,"w":5.614000000000001,"clr":-1,"A":"left","R":[{"T":"100%25%20of%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.973,"y":8.318,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"25%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.973,"y":8.318,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"50%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":80.973,"y":8.318,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"75%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.591,"y":8.318,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"100%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.605,"y":10.119,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":10.119,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.234,"y":10.119,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.38,"y":10.119,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Worksheet%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.841,"y":10.119,"w":51.52599999999993,"clr":-1,"A":"left","R":[{"T":"%20Tax%20on%20Annualized%202013%20Income%20%20(Use%20the%20formula%20below%20to%20compute%20the%20amount%20on%20lines%2018a%2C%20b%20and%20c%20for%20each%20col.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":10.744,"w":8.450000000000001,"clr":-1,"A":"left","R":[{"T":"Lines%2018a%2C%20b%20and%20c%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.843,"y":10.744,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"April%2030%20column%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.249,"y":10.744,"w":30.01600000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20actual%20amount%20for%20the%20period%20ended%20April%2030%2C%202013%2C%20by%203.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.843,"y":11.307,"w":7.336000000000002,"clr":-1,"A":"left","R":[{"T":"May%2031%20column%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.249,"y":11.307,"w":30.739000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20actual%20amount%20for%20the%20period%20ended%20May%2031%2C%202013%2C%20by%202.4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.843,"y":11.869,"w":8.560000000000002,"clr":-1,"A":"left","R":[{"T":"August%2031%20column%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.249,"y":11.869,"w":31.963000000000008,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20actual%20amount%20for%20the%20period%20ended%20August%2031%2C%202013%2C%20by%201.5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":42.882,"y":12.546,"w":8.392000000000001,"clr":-1,"A":"left","R":[{"T":"From%20January%201%20to%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.019,"y":12.546,"w":3.39,"clr":-1,"A":"left","R":[{"T":"April%2030","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.096,"y":12.546,"w":3.279,"clr":-1,"A":"left","R":[{"T":"May%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":79.255,"y":12.546,"w":4.503,"clr":-1,"A":"left","R":[{"T":"August%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.195,"y":13.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"a.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":13.322,"w":29.734,"clr":-1,"A":"left","R":[{"T":"Annualized%20Virginia%20Adjusted%20Gross%20Income%20(VAGI)%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.631,"y":13.679,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":90.771,"y":14.429,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Estates%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.954,"y":15.054,"w":4.6690000000000005,"clr":-1,"A":"left","R":[{"T":"and%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.61,"y":15.678999999999998,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"should%20use%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.953,"y":16.304,"w":4.67,"clr":-1,"A":"left","R":[{"T":"end%20dates%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.341,"y":16.928,"w":4.168000000000001,"clr":-1,"A":"left","R":[{"T":"of%20March%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.48,"y":17.553,"w":5.336,"clr":-1,"A":"left","R":[{"T":"31%2C%20April%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.953,"y":18.178,"w":4.391,"clr":-1,"A":"left","R":[{"T":"%26%20July%2031.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":14.097,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":14.097,"w":29.01200000000001,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20Annualized%20Itemized%20Deductions%20Using%20the%20Formula%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":14.66,"w":3.113,"clr":-1,"A":"left","R":[{"T":"Above%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":17.021,"y":14.66,"w":1.5,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.084,"y":14.66,"w":25.790000000000013,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20Full%20Standard%20Deduction%20in%20Each%20Column%20if%20You%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":15.222,"w":15.504000000000005,"clr":-1,"A":"left","R":[{"T":"Did%20Not%20Claim%20Itemized%20Deductions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":15.899000000000001,"w":0.778,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":15.899000000000001,"w":29.960000000000015,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20Annualized%20Child%20and%20Dependent%20Care%20Expenses%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":16.461,"w":14.951000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20Deductions%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":17.244,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":17.244,"w":2.389,"clr":-1,"A":"left","R":[{"T":"Total","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":15.924,"y":17.244,"w":24.231000000000005,"clr":-1,"A":"left","R":[{"T":"%20Dollar%20Amount%20of%20Exemptions%20Claimed%20on%20Your%20Return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":18.027,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":18.027,"w":11.004000000000003,"clr":-1,"A":"left","R":[{"T":"Virginia%20Taxable%20Income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":18.59,"w":19.232000000000006,"clr":-1,"A":"left","R":[{"T":"(Subtract%20Lines%2018b%2C%20c%20and%20d%20from%20Line%2018a)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":19.266,"w":0.556,"clr":-1,"A":"left","R":[{"T":"f.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":19.266,"w":5.279,"clr":-1,"A":"left","R":[{"T":"Virginia%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":19.829,"w":26.511000000000006,"clr":-1,"A":"left","R":[{"T":"(Enter%20the%20Virginia%20income%20tax%20for%20the%20amount(s)%20on%20line%2018e)","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":20.505,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"g.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":20.505,"w":26.124000000000013,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%2018f%20by%20the%20Percentage%20Shown%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.644,"y":20.46,"w":2.835,"clr":-1,"A":"left","R":[{"T":"22.5%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":70.146,"y":20.46,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"45%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":80.645,"y":20.46,"w":2.835,"clr":-1,"A":"left","R":[{"T":"67.5%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":91.631,"y":21.399,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":89.566,"y":22.149,"w":5.1690000000000005,"clr":-1,"A":"left","R":[{"T":"Exceptions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.695,"y":22.774,"w":5.004,"clr":-1,"A":"left","R":[{"T":"3%20and%204%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.351,"y":23.399,"w":5.448,"clr":-1,"A":"left","R":[{"T":"not%20apply%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.083,"y":24.024,"w":4.503,"clr":-1,"A":"left","R":[{"T":"the%20fourth%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.654,"y":24.649,"w":5.057,"clr":-1,"A":"left","R":[{"T":"installment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.986,"y":25.274,"w":3.057,"clr":-1,"A":"left","R":[{"T":"period.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.605,"y":22.005,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":22.005,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.233,"y":22.005,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.38,"y":22.005,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Worksheet%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.841,"y":22.005,"w":43.52299999999996,"clr":-1,"A":"left","R":[{"T":"%20Tax%20on%202013%20Income%20Over%20a%204%2C%205%20and%208%20Month%20Period*%20%20(*%203%2C%204%20and%207%20months%20for%20estates%20and%20trusts)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":42.882,"y":22.755,"w":8.392000000000001,"clr":-1,"A":"left","R":[{"T":"From%20January%201%20to%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.019,"y":22.755,"w":3.39,"clr":-1,"A":"left","R":[{"T":"April%2030","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.096,"y":22.755,"w":3.279,"clr":-1,"A":"left","R":[{"T":"May%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":79.255,"y":22.755,"w":4.503,"clr":-1,"A":"left","R":[{"T":"August%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.195,"y":23.538,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":23.538,"w":29.567000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20Your%20Virginia%20Adjusted%20Gross%20Income%20(VAGI)%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.195,"y":24.321,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":24.321,"w":24.788000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Itemized%20Deductions%20Claimed%20for%20Each%20Period%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":46.828,"y":24.321,"w":1.5,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":48.89,"y":24.321,"w":1.445,"clr":-1,"A":"left","R":[{"T":"%20(If%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":24.884,"w":16.396000000000008,"clr":-1,"A":"left","R":[{"T":"Greater)%20the%20Full%20Standard%20Deduction","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.195,"y":25.56,"w":0.778,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":25.56,"w":25.84700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Child%20and%20Dependent%20Care%20Expenses%20and%20Other%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":26.123,"w":12.172000000000004,"clr":-1,"A":"left","R":[{"T":"Deductions%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.195,"y":26.799,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":26.799,"w":27.789000000000012,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Total%20Dollar%20Amount%20of%20Exemptions%20Claimed%20on%20Your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":27.362,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.195,"y":28.038,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":28.038,"w":10.726000000000003,"clr":-1,"A":"left","R":[{"T":"Virginia%20Taxable%20Income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":28.601,"w":19.232000000000006,"clr":-1,"A":"left","R":[{"T":"(Subtract%20Lines%2019b%2C%20c%20and%20d%20from%20Line%2019a)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.195,"y":29.277,"w":0.556,"clr":-1,"A":"left","R":[{"T":"f.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.742,"y":29.277,"w":5.279,"clr":-1,"A":"left","R":[{"T":"Virginia%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":29.84,"w":26.845000000000006,"clr":-1,"A":"left","R":[{"T":"(Enter%20the%20Virginia%20income%20tax%20for%20the%20amount(s)%20on%20Line%2019e)","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":30.622,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"g.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741,"y":30.622,"w":20.342000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%2019f%20by%2090%25%20(.90)%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.917,"y":31.604,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.973,"y":31.604,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"III","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.502,"y":31.604,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.342,"y":31.604,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Compute","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":17.682,"y":31.604,"w":1.5,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":20.075,"y":31.604,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Addition","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.033,"y":31.604,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":27.713,"y":31.604,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":7.978999999999999,"y":32.166,"w":65.2959999999999,"clr":-1,"A":"left","R":[{"T":"If%20an%20exception%20has%20been%20met%20(Part%20II)%20for%20any%20installment%20period%2C%20complete%20the%20column%20for%20that%20period%20as%20follows%3A%20write%20%22Exception%22%20and%20the%20exception%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.978999999999999,"y":32.729,"w":64.2429999999999,"clr":-1,"A":"left","R":[{"T":"number%20(1%2C%202%2C%203%2C%20or%204)%20on%20Line%2020%3B%20skip%20Lines%2021%20through%2023%3B%20and%20enter%20%220%22%20on%20Line%2024.%20For%20all%20other%20periods%2C%20complete%20each%20line%20as%20instructed%20below","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":96.244,"y":32.729,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.852,"y":33.405,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":56.565,"y":33.968,"w":5.503,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.852,"y":33.405,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":66.991,"y":33.968,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"June%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":81.852,"y":33.405,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":77.876,"y":33.968,"w":6.505000000000001,"clr":-1,"A":"left","R":[{"T":"Sept.%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.852,"y":33.405,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":89.182,"y":33.968,"w":6.0600000000000005,"clr":-1,"A":"left","R":[{"T":"Jan.%2015%2C%202014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.604,"y":35.525,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279,"y":35.525,"w":20.732,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Underpayment%20from%20Part%20I%2C%20Line%2014%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.604,"y":36.957,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279,"y":36.957,"w":16.508000000000003,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20from%20Part%20I%2C%20Line%2012%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279,"y":37.52,"w":29.016999999999996,"clr":-1,"A":"left","R":[{"T":"(If%20no%20payments%20were%20entered%20on%20Line%2012%2C%20enter%20the%20actual%20date%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279,"y":38.082,"w":20.507000000000005,"clr":-1,"A":"left","R":[{"T":"payment%20or%20May%201%2C%202014%2C%20whichever%20is%20earlier.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.604,"y":38.759,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.192,"y":38.759,"w":31.512000000000004,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Days%20After%20Installment%20Due%20Date%20Through%20Date%20Paid%20or%20May%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.192,"y":39.321,"w":13.116,"clr":-1,"A":"left","R":[{"T":"1%2C%202014%2C%20Whichever%20Is%20Earlier%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.229,"y":39.321,"w":1.1110000000000002,"clr":-1,"A":"left","R":[{"T":"(if%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":30.695,"y":39.321,"w":5.781000000000001,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202014%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":38.645,"y":39.321,"w":11.617000000000004,"clr":-1,"A":"left","R":[{"T":"%20is%20earlier%2C%20enter%20365%2C%20320%2C%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":11.194,"y":39.883,"w":12.006000000000002,"clr":-1,"A":"left","R":[{"T":"228%20and%20106%2C%20respectively).","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":7.605,"y":40.56,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.193,"y":40.56,"w":30.62300000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20Number%20of%20Days%20in%20Each%20Column%20on%20Line%2022%20by%20the%20Daily%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.193,"y":41.122,"w":14.229000000000003,"clr":-1,"A":"left","R":[{"T":"Rate%20of%20.00014%20(5%25%20Per%20Annum)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.605,"y":41.905,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":41.905,"w":26.346000000000007,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20Amount%20on%20Line%2020%20by%20Line%2023%20for%20Each%20Column","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.605,"y":42.813,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":42.813,"w":6.948,"clr":-1,"A":"left","R":[{"T":"Addition%20to%20Tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":43.376,"w":36.89699999999999,"clr":-1,"A":"left","R":[{"T":"(Total%20the%20amounts%20on%20Line%2024.%20Enter%20here%20and%20on%20the%20%22Addition%20to%20Tax%22%20line%20on%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.28,"y":43.938,"w":8.058,"clr":-1,"A":"left","R":[{"T":"income%20tax%20return)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":95.031,"y":43.544,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM3","EN":0},"TI":181,"AM":1024,"x":22.724,"y":2.018,"w":30.317,"h":0.892},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":182,"AM":1024,"x":78.024,"y":1.774,"w":21.466,"h":0.945},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":183,"AM":0,"x":55.259,"y":6.657,"w":10.684,"h":0.833,"TU":"A May 1, 2012_15. Total Amount Paid and Withheld from January 1, 2012 through the Installment Date Indicated"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":184,"AM":0,"x":66.252,"y":6.657,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C","EN":0},"TI":185,"AM":0,"x":77.245,"y":6.657,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15D","EN":0},"TI":186,"AM":0,"x":88.259,"y":6.657,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A1","EN":0},"TI":187,"AM":0,"x":43.358,"y":7.961,"w":11.633,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":188,"AM":1024,"x":55.218,"y":7.961,"w":10.766,"h":0.833,"TU":"25%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":189,"AM":1024,"x":66.211,"y":7.961,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16C","EN":0},"TI":190,"AM":1024,"x":77.204,"y":7.989,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16D","EN":0},"TI":191,"AM":1024,"x":88.218,"y":7.989,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17A1","EN":0},"TI":192,"AM":0,"x":43.4,"y":9.667,"w":11.55,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17A","EN":0},"TI":193,"AM":1024,"x":55.259,"y":9.667,"w":10.684,"h":0.833,"TU":"25%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17B","EN":0},"TI":194,"AM":1024,"x":66.252,"y":9.667,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17C","EN":0},"TI":195,"AM":1024,"x":77.245,"y":9.667,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17D","EN":0},"TI":196,"AM":1024,"x":88.259,"y":9.667,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A1","EN":0},"TI":197,"AM":0,"x":55.218,"y":13.53,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A2","EN":0},"TI":198,"AM":0,"x":66.211,"y":13.53,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A3","EN":0},"TI":199,"AM":0,"x":77.204,"y":13.53,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18B1","EN":0},"TI":200,"AM":0,"x":55.3,"y":15.305,"w":10.601,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18B2","EN":0},"TI":201,"AM":0,"x":66.293,"y":15.305,"w":10.601,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18B3","EN":0},"TI":202,"AM":0,"x":77.287,"y":15.305,"w":10.622,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C1","EN":0},"TI":203,"AM":0,"x":55.259,"y":16.59,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C2","EN":0},"TI":204,"AM":0,"x":66.252,"y":16.59,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C3","EN":0},"TI":205,"AM":0,"x":77.245,"y":16.59,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18D1","EN":0},"TI":206,"AM":1024,"x":55.218,"y":17.508,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18D2","EN":0},"TI":207,"AM":1024,"x":66.211,"y":17.508,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18D3","EN":0},"TI":208,"AM":1024,"x":77.204,"y":17.508,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18E1","EN":0},"TI":209,"AM":1024,"x":55.259,"y":18.657,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18E2","EN":0},"TI":210,"AM":1024,"x":66.252,"y":18.657,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18E3","EN":0},"TI":211,"AM":1024,"x":77.245,"y":18.657,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18F1","EN":0},"TI":212,"AM":0,"x":55.259,"y":19.895,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18F2","EN":0},"TI":213,"AM":0,"x":66.252,"y":19.895,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18F3","EN":0},"TI":214,"AM":0,"x":77.245,"y":19.895,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18G1","EN":0},"TI":215,"AM":1024,"x":55.238,"y":21.427,"w":10.725,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18G2","EN":0},"TI":216,"AM":1024,"x":66.232,"y":21.427,"w":10.725,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18G3","EN":0},"TI":217,"AM":1024,"x":77.225,"y":21.427,"w":10.746,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A1","EN":0},"TI":218,"AM":0,"x":55.218,"y":23.738,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A2","EN":0},"TI":219,"AM":0,"x":66.211,"y":23.738,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A3","EN":0},"TI":220,"AM":0,"x":77.204,"y":23.738,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B1","EN":0},"TI":221,"AM":0,"x":55.259,"y":24.95,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B2","EN":0},"TI":222,"AM":0,"x":66.252,"y":24.95,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B3","EN":0},"TI":223,"AM":0,"x":77.245,"y":24.95,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19C1","EN":0},"TI":224,"AM":0,"x":55.259,"y":26.195,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19C2","EN":0},"TI":225,"AM":0,"x":66.252,"y":26.195,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19C3","EN":0},"TI":226,"AM":0,"x":77.245,"y":26.195,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19D1","EN":0},"TI":227,"AM":1024,"x":55.259,"y":27.433,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19D2","EN":0},"TI":228,"AM":1024,"x":66.252,"y":27.433,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19D3","EN":0},"TI":229,"AM":1024,"x":77.245,"y":27.433,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19E1","EN":0},"TI":230,"AM":1024,"x":55.259,"y":28.67,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19E2","EN":0},"TI":231,"AM":1024,"x":66.252,"y":28.67,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19E3","EN":0},"TI":232,"AM":1024,"x":77.245,"y":28.67,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19F1","EN":0},"TI":233,"AM":0,"x":55.259,"y":29.907,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19F2","EN":0},"TI":234,"AM":0,"x":66.252,"y":29.907,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19F3","EN":0},"TI":235,"AM":0,"x":77.245,"y":29.907,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19G1","EN":0},"TI":236,"AM":1024,"x":55.218,"y":30.817,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19G2","EN":0},"TI":237,"AM":1024,"x":66.211,"y":30.817,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19G3","EN":0},"TI":238,"AM":1024,"x":77.204,"y":30.817,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPA","EN":0},"TI":239,"AM":1024,"x":55.273,"y":35.422,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPB","EN":0},"TI":240,"AM":1024,"x":66.266,"y":35.422,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPC","EN":0},"TI":241,"AM":1024,"x":77.259,"y":35.422,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPD","EN":0},"TI":242,"AM":1024,"x":88.273,"y":35.422,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20A","EN":0},"TI":243,"AM":1024,"x":55.218,"y":36.325,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":244,"AM":1024,"x":66.211,"y":36.325,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20C","EN":0},"TI":245,"AM":1024,"x":77.204,"y":36.325,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20D","EN":0},"TI":246,"AM":1024,"x":88.218,"y":36.325,"w":10.766,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21A","EN":0},"TI":247,"AM":0,"x":55.3,"y":38.167,"w":10.601,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21B","EN":0},"TI":248,"AM":0,"x":66.293,"y":38.167,"w":10.601,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21C","EN":0},"TI":249,"AM":0,"x":77.287,"y":38.167,"w":10.622,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21D","EN":0},"TI":250,"AM":0,"x":88.3,"y":38.167,"w":10.601,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22A","EN":0},"TI":251,"AM":0,"x":55.3,"y":39.968,"w":10.601,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22B","EN":0},"TI":252,"AM":0,"x":66.293,"y":39.968,"w":10.601,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22C","EN":0},"TI":253,"AM":0,"x":77.287,"y":39.968,"w":10.622,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22D","EN":0},"TI":254,"AM":0,"x":88.3,"y":39.968,"w":10.601,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L23A","EN":0},"TI":255,"AM":1024,"x":55.259,"y":41.19,"w":10.684,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"L23B","EN":0},"TI":256,"AM":1024,"x":66.252,"y":41.19,"w":10.684,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L23C","EN":0},"TI":257,"AM":1024,"x":77.245,"y":41.19,"w":10.704,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L23D","EN":0},"TI":258,"AM":1024,"x":88.197,"y":41.19,"w":10.704,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24A","EN":0},"TI":259,"AM":1024,"x":55.218,"y":42.1,"w":10.766,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24B","EN":0},"TI":260,"AM":1024,"x":66.211,"y":42.1,"w":10.766,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24C","EN":0},"TI":261,"AM":1024,"x":77.204,"y":42.1,"w":10.787,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24D","EN":0},"TI":262,"AM":1024,"x":88.218,"y":42.1,"w":10.766,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":263,"AM":1024,"x":66.293,"y":43.928,"w":21.519,"h":1.297}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VA760F.content.txt b/test/data/va/form/VA760F.content.txt new file mode 100755 index 00000000..5196e605 --- /dev/null +++ b/test/data/va/form/VA760F.content.txt @@ -0,0 +1,599 @@ +760F + +Underpayment of Virginia Estimated Tax by +2013 + +Farmers, Fishermen and Merchant Seamen + +Attach this form to Form 760, 763, 760PY or 770 +Calendar Year 2013 or taxable year beginning + , 2013 and ending + , + . +First Name, Middle Initial and Last Name (of Both if Joint) - OR - Name of Estate or Trust +Your Social Security Number or FEIN +v +If Estate or Trust, Name and Title of Fiduciary +(For Office Use) +v +Do You Have to File Form 760F? +• If + +your + +Virginia + +adjusted + +gross + +income + + + +below the filing threshold, +you are not required to complete this form because you +are not required to file an income tax return. +• If + +your + +Virginia + +income + +tax liability is $150 or less + +after + +subtracting + +your + +Spouse + +Tax + +Adjustment + +and + +other + +tax + +credits + +(except + +withholding, + +estimated, + +and + +extension + +payments), + +you + +do + +not + +have + +to + +complete + +this + +form; + +you + +do + +not + +owe + +an + +addition + +to + +your + +tax. +• If + +you + +meet both of the following tests, + +you + +do + +not + +have + +to + +complete + +this + +form; + +you + +do + +not + +owe + +an + +addition + +to + +your + +tax. + + Test + +1 + +- Your + +gross + +income + +from + +self-employment + +as + +a + +farmer, + +fisherman + +and/or + +being + +a + +merchant + +seaman + +is + +at + +least + +two-thirds + +of your annual gross income for the taxable year, +and + +Test 2 - + +You filed Form 760, Form 760PY, Form 763 or Form 770, and paid the entire tax due by March 1, 2014. +PA +RT I - Exceptions Which Void the Addition to Tax +• If + +you + +underpaid + +your + +tax, + +determine + +if + +you + +meet + +one + +of + +the + +exceptions + +on + +Line + +1 + +or + +Line + +2. + +If + +you + +meet + +either + +exception, + +complete + +the + +appropriate + +line + +on + +this + +form + +and + +attach + +this + +form + +to + +your + +return. + +If + +you + +do + +not + +meet + +either + +exception, + +then + +proceed + +to + +PART + +II + +to + +compute the addition to your tax. +1. +Exception + +1 + +- + +2012 + +Virginia + +Income + +Tax + +(Form 760 filers use the net tax amount from Line 17) +1. +2. +Exception 2 - Estimated Tax Based on 2012 Income Using 2013 Rates and Exemptions +2. +PART II - How to Compute Your Underpayment +3. +Enter + +the + +Amount + +of + +Your + +2013 + +Virginia + +Income + +Tax + +Liability + +After + +the + +Spouse + +Tax + + +Adjustment + +and + +Tax + +Credits. + +See + +instructions. + + +(If $150 or less, you are not required to file Form 760F) +3. +4. +Enter 66 +2 +/ +3 +% + +(.667) + +of + +the + +Amount + +on + +Line + +3 +4. +5. +Enter + +2012 + +Income + +Tax + +Liability + +After + +the + +Spouse + +Tax + +Adjustment + +and + +Tax + +Credits +5. +6. +Enter + +the + +Amount + +from + +Line + +4 + +or + +Line + +5, + +Whichever + +is + +Less +6. +7. +Enter + +the + +Amount + +of + +Tax + +Withheld + +and/or + +the + +Amount + +of + +Estimated + +Tax + +Paid + +or + +Credited + +by + +January 15, 2014 +7. +8. +Underpayment of Estimated Tax + +(Subtract the amount on Line 7 from the amount on Line 6) +8. +PART III - How to Compute the Addition to Tax +9. +Amount + +of + +Underpayment + +From + +Line + +8 +9. +10. +Number + +of + +Days + +After + +January + +15, + +2014, + +Through + +the + +Date + +the + +Amount + +on + +Line + +9 + +Was + +Paid + +or + +May + +1, + +2014, + + + + +(If May 1 is earlier, enter 106) +10. +11. +Multiply Line 10 by the Daily Interest Rate of .00014 (5% per annum) +11. +% +12. +Addition + +to + +Tax + +Balance + +Due + +- + +Multiply + +the + +Amount + +on + +Line + +9 + +by + +Line + +11 + +(See instructions on back) +12. +v +Va. + +Dept. + +Of + +Taxation + +2601036 + +(REV + +12/13) +(VAGI) is +Whichever +is +Earlier +----------------Page (0) Break---------------- diff --git a/test/data/va/form/VA760F.fields.json b/test/data/va/form/VA760F.fields.json new file mode 100755 index 00000000..6fe87785 --- /dev/null +++ b/test/data/va/form/VA760F.fields.json @@ -0,0 +1 @@ +[{"id":"APPROVED","type":"alpha","calc":true,"value":"Virginia Approved Form for Filing"},{"id":"BDATE","type":"date","calc":false,"value":""},{"id":"EDATE","type":"date","calc":false,"value":""},{"id":"YEAR","type":"date","calc":false,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L1","type":"number","calc":true,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":true,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"number","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":false,"value":""},{"id":"L11","type":"mask","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VA760F.json b/test/data/va/form/VA760F.json new file mode 100755 index 00000000..084225a9 --- /dev/null +++ b/test/data/va/form/VA760F.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 760 F 01 07 14.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":38.094,"y":5.809,"w":0.75,"l":16.5},{"oc":"#2b2e34","x":67.84,"y":5.809,"w":0.75,"l":16.5},{"oc":"#2b2e34","x":85.629,"y":5.809,"w":0.75,"l":6.188},{"oc":"#2b2e34","x":6.188,"y":6.465,"w":0.75,"l":66.043},{"oc":"#2b2e34","x":72.23,"y":6.465,"w":0.75,"l":24.793},{"oc":"#2b2e34","x":6.188,"y":7.965,"w":0.75,"l":66.043},{"oc":"#2b2e34","x":72.23,"y":7.965,"w":0.75,"l":24.793},{"oc":"#2b2e34","x":6.188,"y":9.465,"w":0.75,"l":66.043},{"oc":"#2b2e34","x":72.23,"y":9.465,"w":0.75,"l":24.793},{"oc":"#2b2e34","x":8.207,"y":22.668,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":22.668,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":22.668,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":22.668,"w":0.75,"l":12.332},{"oc":"#2b2e34","x":92.855,"y":22.668,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.207,"y":27.803,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":27.803,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":27.803,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":27.803,"w":0.75,"l":12.332},{"oc":"#2b2e34","x":92.855,"y":27.803,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.207,"y":29.303,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":29.303,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":29.303,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":29.303,"w":0.75,"l":12.332},{"oc":"#2b2e34","x":92.855,"y":29.303,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.207,"y":30.803,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":30.803,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":30.803,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":30.803,"w":0.75,"l":12.332},{"oc":"#2b2e34","x":92.855,"y":30.803,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.207,"y":32.303,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":32.303,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":32.303,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":32.303,"w":0.75,"l":12.332},{"oc":"#2b2e34","x":92.855,"y":32.303,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.207,"y":33.803,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":33.803,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":33.803,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":33.803,"w":0.75,"l":12.332},{"oc":"#2b2e34","x":92.855,"y":33.803,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.207,"y":38.262,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":38.262,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":38.262,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":38.262,"w":0.75,"l":12.332},{"oc":"#2b2e34","x":92.855,"y":38.262,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.207,"y":40.47,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":40.47,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":40.47,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":40.47,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":40.47,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":8.207,"y":41.97,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":41.97,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":41.97,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":41.97,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":41.97,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":8.207,"y":43.47,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":43.47,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":43.47,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":43.47,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":43.47,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":8.207,"y":24.168,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":24.168,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":24.168,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":24.168,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":24.168,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":8.207,"y":25.668,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":25.668,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":25.668,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":25.668,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":25.668,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":8.207,"y":21.168,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":21.168,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":21.168,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":21.168,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":21.168,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":8.207,"y":36.762,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":36.762,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":36.762,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":36.762,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":36.762,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":8.207,"y":35.262,"w":0.75,"l":3.137},{"oc":"#2b2e34","x":11.344,"y":35.262,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.344,"y":35.262,"w":0.75,"l":3.094},{"oc":"#2b2e34","x":80.438,"y":35.262,"w":0.75,"l":12.375},{"oc":"#2b2e34","x":92.813,"y":35.262,"w":0.75,"l":4.168},{"oc":"#2b2e34","x":6.703,"y":18.656,"w":0.75,"l":37.583},{"oc":"#2b2e34","x":6.703,"y":25.326,"w":0.75,"l":34.118},{"oc":"#2b2e34","x":6.703,"y":36.42,"w":0.75,"l":33.741}],"VLines":[{"oc":"#2b2e34","x":6.23,"y":6.481,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":72.23,"y":6.481,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.98,"y":6.481,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":7.981,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":72.23,"y":7.981,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.98,"y":7.981,"w":0.75,"l":1.469},{"clr":1,"x":92.813,"y":36.778,"w":0.75,"l":1.484},{"clr":1,"x":92.813,"y":38.262,"w":0.75,"l":2.192},{"clr":1,"x":92.813,"y":25.684,"w":0.75,"l":2.119},{"clr":1,"x":92.813,"y":27.803,"w":0.75,"l":1.5},{"clr":1,"x":92.813,"y":29.303,"w":0.75,"l":1.5},{"clr":1,"x":92.813,"y":30.803,"w":0.75,"l":1.5},{"clr":1,"x":92.813,"y":32.303,"w":0.75,"l":1.5},{"clr":1,"x":92.813,"y":33.803,"w":0.75,"l":1.444},{"clr":1,"x":92.813,"y":21.184,"w":0.75,"l":1.484},{"clr":1,"x":92.813,"y":22.668,"w":0.75,"l":1.484},{"clr":1,"x":92.813,"y":41.986,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":21.184,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":21.184,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":21.184,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":22.684,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":22.684,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":22.684,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":25.684,"w":0.75,"l":2.103},{"oc":"#2b2e34","x":80.438,"y":25.684,"w":0.75,"l":2.103},{"oc":"#2b2e34","x":96.938,"y":25.684,"w":0.75,"l":2.103},{"oc":"#2b2e34","x":8.25,"y":27.818,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":27.818,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":27.818,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":29.318,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":29.318,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":29.318,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":30.818,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":30.818,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":30.818,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":32.318,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":32.318,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":32.318,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":33.818,"w":0.75,"l":1.428},{"oc":"#2b2e34","x":80.438,"y":33.818,"w":0.75,"l":1.428},{"oc":"#2b2e34","x":96.938,"y":33.818,"w":0.75,"l":1.428},{"oc":"#2b2e34","x":8.25,"y":36.778,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":36.778,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":36.778,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":38.278,"w":0.75,"l":2.177},{"oc":"#2b2e34","x":80.438,"y":38.278,"w":0.75,"l":2.177},{"oc":"#2b2e34","x":96.938,"y":38.278,"w":0.75,"l":2.177},{"oc":"#2b2e34","x":8.25,"y":40.486,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":40.486,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":40.486,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":8.25,"y":41.986,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":80.438,"y":41.986,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":96.938,"y":41.986,"w":0.75,"l":1.469},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":36.902,"w":0.75,"l":1.175},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":38.384,"w":0.75,"l":1.888},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":25.816,"w":0.75,"l":1.788},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":27.928,"w":0.75,"l":1.188},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":29.428,"w":0.75,"l":1.188},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":30.928,"w":0.75,"l":1.188},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":32.428,"w":0.75,"l":1.188},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":33.923,"w":0.75,"l":1.143},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":21.308,"w":0.75,"l":1.175},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":22.792,"w":0.75,"l":1.175},{"dsh":1,"oc":"#2b2e34","x":92.813,"y":42.108,"w":0.75,"l":1.163}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.938,"y":2.137,"w":2.279,"clr":-1,"A":"left","R":[{"T":"760F","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":15.209,"y":2.137,"w":20.672000000000004,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Virginia%20Estimated%20Tax%20by","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":5.938,"y":3.074,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":15.363,"y":3.074,"w":20.451000000000008,"clr":-1,"A":"left","R":[{"T":"Farmers%2C%20Fishermen%20and%20Merchant%20Seamen","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":22.488,"y":3.8869999999999996,"w":22.61900000000001,"clr":-1,"A":"left","R":[{"T":"Attach%20this%20form%20to%20Form%20760%2C%20763%2C%20760PY%20or%20770","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":5.938,"y":5.074,"w":20.73300000000001,"clr":-1,"A":"left","R":[{"T":"Calendar%20Year%202013%20or%20taxable%20year%20beginning%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.344,"y":5.075,"w":8.562000000000001,"clr":-1,"A":"left","R":[{"T":"%20%2C%202013%20and%20ending%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.09,"y":5.075,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":91.567,"y":5.075,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.496,"y":6.175,"w":39.23499999999997,"clr":-1,"A":"left","R":[{"T":"First%20Name%2C%20Middle%20Initial%20and%20Last%20Name%20(of%20Both%20if%20Joint)%20-%20OR%20-%20Name%20of%20Estate%20or%20Trust","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":72.496,"y":6.175,"w":16.560000000000006,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number%20or%20FEIN","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":97.074,"y":6.69,"w":0.866,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":49,"TS":[3,12,0,0]}]},{"oc":"#2b2e34","x":6.496,"y":7.675000000000001,"w":20.17400000000001,"clr":-1,"A":"left","R":[{"T":"If%20Estate%20or%20Trust%2C%20Name%20and%20Title%20of%20Fiduciary","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":73.012,"y":7.675000000000001,"w":7.111999999999999,"clr":-1,"A":"left","R":[{"T":"(For%20Office%20Use)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":97.074,"y":8.19,"w":0.866,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":49,"TS":[3,12,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":9.918,"w":15.337000000000007,"clr":-1,"A":"left","R":[{"T":"Do%20You%20Have%20to%20File%20Form%20760F%3F","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":5.938,"y":10.918,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.9990000000000006,"y":10.918,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.314,"y":10.918,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.779,"y":10.918,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.365,"y":10.918,"w":3.7800000000000002,"clr":-1,"A":"left","R":[{"T":"adjusted","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.669,"y":10.918,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"gross","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.907,"y":10.918,"w":3.223,"clr":-1,"A":"left","R":[{"T":"income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":40.99,"y":10.918,"w":12.391000000000005,"clr":-1,"A":"left","R":[{"T":"below%20the%20filing%20threshold%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":60.145,"y":10.918,"w":24.456000000000003,"clr":-1,"A":"left","R":[{"T":"you%20are%20not%20required%20to%20complete%20this%20form%20because%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.9990000000000006,"y":11.543,"w":19.398000000000003,"clr":-1,"A":"left","R":[{"T":"are%20not%20required%20to%20file%20an%20income%20tax%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":12.355,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.9990000000000006,"y":12.355,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.144,"y":12.355,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.411,"y":12.355,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.749,"y":12.355,"w":3.223,"clr":-1,"A":"left","R":[{"T":"income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.969,"y":12.355,"w":12.285000000000004,"clr":-1,"A":"left","R":[{"T":"tax%20liability%20is%20%24150%20or%20less","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":41.375,"y":12.355,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"after","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.716,"y":12.355,"w":4.891000000000001,"clr":-1,"A":"left","R":[{"T":"subtracting","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.452,"y":12.355,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.721,"y":12.355,"w":3.391,"clr":-1,"A":"left","R":[{"T":"Spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.172,"y":12.355,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.766000000000005,"y":12.355,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.686,"y":12.355,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.538,"y":12.355,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"other","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.31,"y":12.355,"w":1.334,"clr":-1,"A":"left","R":[{"T":"tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.644,"y":12.355,"w":2.9450000000000003,"clr":-1,"A":"left","R":[{"T":"credits","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.421,"y":12.355,"w":3.2790000000000004,"clr":-1,"A":"left","R":[{"T":"(except","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.714,"y":12.355,"w":5.279999999999999,"clr":-1,"A":"left","R":[{"T":"withholding%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.993,"y":12.98,"w":4.613000000000001,"clr":-1,"A":"left","R":[{"T":"estimated%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.559,"y":12.98,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.569,"y":12.98,"w":4.28,"clr":-1,"A":"left","R":[{"T":"extension","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.62,"y":12.98,"w":4.9460000000000015,"clr":-1,"A":"left","R":[{"T":"payments)%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.185,"y":12.98,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":36.109,"y":12.98,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.259,"y":12.98,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":40.839,"y":12.98,"w":2.168,"clr":-1,"A":"left","R":[{"T":"have","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.623,"y":12.98,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.343,"y":12.98,"w":4.057,"clr":-1,"A":"left","R":[{"T":"complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.049,"y":12.98,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.886,"y":12.98,"w":2.278,"clr":-1,"A":"left","R":[{"T":"form%3B","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.839,"y":12.98,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.763,"y":12.98,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.913,"y":12.98,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.493,"y":12.98,"w":1.834,"clr":-1,"A":"left","R":[{"T":"owe","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.76,"y":12.98,"w":1.112,"clr":-1,"A":"left","R":[{"T":"an","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.911,"y":12.98,"w":3.5020000000000002,"clr":-1,"A":"left","R":[{"T":"addition","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.758,"y":12.98,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.478,"y":12.98,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.917,"y":12.98,"w":1.612,"clr":-1,"A":"left","R":[{"T":"tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.931,"y":13.793,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.993,"y":13.793,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.283,"y":13.793,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.207,"y":13.793,"w":15.335000000000006,"clr":-1,"A":"left","R":[{"T":"meet%20both%20of%20the%20following%20tests%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":36.012,"y":13.793,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.935,"y":13.793,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.085,"y":13.793,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":43.665,"y":13.793,"w":2.168,"clr":-1,"A":"left","R":[{"T":"have","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.449,"y":13.793,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":49.169,"y":13.793,"w":4.057,"clr":-1,"A":"left","R":[{"T":"complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.875,"y":13.793,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.712,"y":13.793,"w":2.278,"clr":-1,"A":"left","R":[{"T":"form%3B","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.666,"y":13.793,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.589,"y":13.793,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.739,"y":13.793,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.32,"y":13.793,"w":1.834,"clr":-1,"A":"left","R":[{"T":"owe","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.587,"y":13.793,"w":1.112,"clr":-1,"A":"left","R":[{"T":"an","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":75.737,"y":13.793,"w":3.5020000000000002,"clr":-1,"A":"left","R":[{"T":"addition","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.584,"y":13.793,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.304,"y":13.793,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":86.743,"y":13.793,"w":1.612,"clr":-1,"A":"left","R":[{"T":"tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.119,"y":14.605,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Test","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.386,"y":14.605,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.676,"y":14.605,"w":0.611,"clr":-1,"A":"left","R":[{"T":"-%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.306,"y":14.605,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.801,"y":14.605,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"gross","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.952,"y":14.605,"w":3.223,"clr":-1,"A":"left","R":[{"T":"income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.308,"y":14.605,"w":2,"clr":-1,"A":"left","R":[{"T":"from","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.77,"y":14.605,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.486,"y":14.605,"w":1.056,"clr":-1,"A":"left","R":[{"T":"as","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.489,"y":14.605,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.087,"y":14.605,"w":3.1670000000000003,"clr":-1,"A":"left","R":[{"T":"farmer%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.269,"y":14.605,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"fisherman","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.429,"y":14.605,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"and%2For","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.184,"y":14.605,"w":2.446,"clr":-1,"A":"left","R":[{"T":"being","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.338,"y":14.605,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.568,"y":14.605,"w":4.168,"clr":-1,"A":"left","R":[{"T":"merchant","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":79.385,"y":14.605,"w":3.5570000000000004,"clr":-1,"A":"left","R":[{"T":"seaman","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.257,"y":14.605,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":86.743,"y":14.605,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"at","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":88.401,"y":14.605,"w":2.112,"clr":-1,"A":"left","R":[{"T":"least","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":92.038,"y":14.605,"w":4.334,"clr":-1,"A":"left","R":[{"T":"two-thirds","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.305,"y":15.23,"w":21.95500000000001,"clr":-1,"A":"left","R":[{"T":"of%20your%20annual%20gross%20income%20for%20the%20taxable%20year%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":51.669,"y":15.23,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":12.117,"y":16.042,"w":3.39,"clr":-1,"A":"left","R":[{"T":"Test%202%20-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.305,"y":16.042,"w":45.85499999999995,"clr":-1,"A":"left","R":[{"T":"You%20filed%20Form%20760%2C%20Form%20760PY%2C%20Form%20763%20or%20Form%20770%2C%20and%20paid%20the%20entire%20tax%20due%20by%20March%201%2C%202014.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.453,"y":17.703,"w":1.389,"clr":-1,"A":"left","R":[{"T":"PA","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":8.487,"y":17.703,"w":23.17,"clr":-1,"A":"left","R":[{"T":"RT%20I%20-%20Exceptions%20Which%20Void%20the%20Addition%20to%20Tax","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":6.453,"y":18.703,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.515,"y":18.703,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.87,"y":18.703,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.86,"y":18.703,"w":4.447000000000001,"clr":-1,"A":"left","R":[{"T":"underpaid","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.237,"y":18.703,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.743,"y":18.703,"w":1.612,"clr":-1,"A":"left","R":[{"T":"tax%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.731,"y":18.703,"w":4.446,"clr":-1,"A":"left","R":[{"T":"determine","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.105,"y":18.703,"w":0.5,"clr":-1,"A":"left","R":[{"T":"if","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.374,"y":18.703,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.364,"y":18.703,"w":2.223,"clr":-1,"A":"left","R":[{"T":"meet","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.299,"y":18.703,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"one","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.376,"y":18.703,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.161,"y":18.703,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":49.807,"y":18.703,"w":4.78,"clr":-1,"A":"left","R":[{"T":"exceptions","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57.698,"y":18.703,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.915,"y":18.703,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.335,"y":18.703,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.691,"y":18.703,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":66.563,"y":18.703,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.983,"y":18.703,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.768,"y":18.703,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.123,"y":18.703,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.114,"y":18.703,"w":2.223,"clr":-1,"A":"left","R":[{"T":"meet","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.049,"y":18.703,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"either","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.414,"y":18.703,"w":4.558,"clr":-1,"A":"left","R":[{"T":"exception%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":91.961,"y":18.703,"w":4.057,"clr":-1,"A":"left","R":[{"T":"complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.52,"y":19.328,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.129,"y":19.328,"w":5.058000000000001,"clr":-1,"A":"left","R":[{"T":"appropriate","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.414,"y":19.328,"w":1.556,"clr":-1,"A":"left","R":[{"T":"line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.281,"y":19.328,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.46,"y":19.328,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.327,"y":19.328,"w":2,"clr":-1,"A":"left","R":[{"T":"form","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.88,"y":19.328,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.919,"y":19.328,"w":2.724,"clr":-1,"A":"left","R":[{"T":"attach","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.593,"y":19.328,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.459,"y":19.328,"w":2,"clr":-1,"A":"left","R":[{"T":"form","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.012,"y":19.328,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.762,"y":19.328,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.23,"y":19.328,"w":2.89,"clr":-1,"A":"left","R":[{"T":"return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.16,"y":19.328,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.478,"y":19.328,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.431,"y":19.328,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.61,"y":19.328,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.22,"y":19.328,"w":2.223,"clr":-1,"A":"left","R":[{"T":"meet","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":68.118,"y":19.328,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"either","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.446,"y":19.328,"w":4.558,"clr":-1,"A":"left","R":[{"T":"exception%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":79.956,"y":19.328,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"then","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.426,"y":19.328,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"proceed","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.474,"y":19.328,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":91.223,"y":19.328,"w":2.667,"clr":-1,"A":"left","R":[{"T":"PART","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":95.638,"y":19.328,"w":0.556,"clr":-1,"A":"left","R":[{"T":"II","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":96.956,"y":19.328,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.528,"y":19.953,"w":14.508000000000004,"clr":-1,"A":"left","R":[{"T":"compute%20the%20addition%20to%20your%20tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.299,"y":21.015,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.621,"y":21.015,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Exception","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.844,"y":21.015,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.134,"y":21.015,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.079,"y":21.015,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.949,"y":21.015,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.51,"y":21.015,"w":3.279,"clr":-1,"A":"left","R":[{"T":"Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.985,"y":21.015,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.621,"y":21.69,"w":23.621000000000002,"clr":-1,"A":"left","R":[{"T":"(Form%20760%20filers%20use%20the%20net%20tax%20amount%20from%20Line%2017)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.394,"y":21.731,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.299,"y":22.873,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.621,"y":22.873,"w":38.74099999999999,"clr":-1,"A":"left","R":[{"T":"Exception%202%20-%20Estimated%20Tax%20Based%20on%202012%20Income%20Using%202013%20Rates%20and%20Exemptions","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.394,"y":22.873,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.453,"y":24.373,"w":22.224000000000004,"clr":-1,"A":"left","R":[{"T":"PART%20II%20-%20How%20to%20Compute%20Your%20Underpayment","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":9.289,"y":25.515,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":25.515,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737,"y":25.515,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.233,"y":25.515,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.993,"y":25.515,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.685,"y":25.515,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.24,"y":25.515,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.11,"y":25.515,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.67,"y":25.515,"w":3.279,"clr":-1,"A":"left","R":[{"T":"Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.147,"y":25.515,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.984,"y":25.515,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Liability","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.488,"y":25.515,"w":2.112,"clr":-1,"A":"left","R":[{"T":"After","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.185,"y":25.515,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.765,"y":25.515,"w":3.391,"clr":-1,"A":"left","R":[{"T":"Spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.413,"y":25.515,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.612,"y":26.19,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.779,"y":26.19,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.762,"y":26.19,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.599,"y":26.19,"w":3.445,"clr":-1,"A":"left","R":[{"T":"Credits.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.358,"y":26.19,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"See","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.54,"y":26.19,"w":5.335000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.612,"y":26.865,"w":24.288000000000004,"clr":-1,"A":"left","R":[{"T":"(If%20%24150%20or%20less%2C%20you%20are%20not%20required%20to%20file%20Form%20760F)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.384,"y":26.865,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.29,"y":28.008,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.612,"y":28.008,"w":4.058000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2066%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.887,"y":27.758,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":18.388,"y":27.945,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.818,"y":28.132,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":19.32,"y":28.008,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.125,"y":28.008,"w":2.612,"clr":-1,"A":"left","R":[{"T":"(.667)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.595,"y":28.008,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.315,"y":28.008,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.811,"y":28.008,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.571,"y":28.008,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.721,"y":28.008,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.075,"y":28.008,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.382,"y":28.008,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.288,"y":29.508,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":29.508,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737,"y":29.508,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.607,"y":29.508,"w":3.279,"clr":-1,"A":"left","R":[{"T":"Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.082,"y":29.508,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.919,"y":29.508,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Liability","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.423,"y":29.508,"w":2.112,"clr":-1,"A":"left","R":[{"T":"After","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.12,"y":29.508,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.7,"y":29.508,"w":3.391,"clr":-1,"A":"left","R":[{"T":"Spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.347,"y":29.508,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.099,"y":29.508,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.267,"y":29.508,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.249,"y":29.508,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.086,"y":29.508,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Credits","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.382,"y":29.508,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.288,"y":31.008,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":31.008,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737,"y":31.008,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.232,"y":31.008,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.993,"y":31.008,"w":2,"clr":-1,"A":"left","R":[{"T":"from","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.517,"y":31.008,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.87,"y":31.008,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.16,"y":31.008,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.965,"y":31.008,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.319,"y":31.008,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.039,"y":31.008,"w":4.723000000000001,"clr":-1,"A":"left","R":[{"T":"Whichever","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.775,"y":31.008,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.322,"y":31.008,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Less","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.382,"y":31.008,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.288,"y":32.15,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":32.15,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737,"y":32.15,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.232,"y":32.15,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.993,"y":32.15,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.685,"y":32.15,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.522,"y":32.15,"w":3.89,"clr":-1,"A":"left","R":[{"T":"Withheld","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.969,"y":32.15,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"and%2For","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.785,"y":32.15,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.281,"y":32.15,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.042,"y":32.15,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":49.762,"y":32.15,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Estimated","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57.042,"y":32.15,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.879,"y":32.15,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Paid","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.404,"y":32.15,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.209,"y":32.15,"w":3.779,"clr":-1,"A":"left","R":[{"T":"Credited","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.485,"y":32.15,"w":1.056,"clr":-1,"A":"left","R":[{"T":"by","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.612,"y":32.825,"w":7.727,"clr":-1,"A":"left","R":[{"T":"January%2015%2C%202014","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.384,"y":32.866,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.29,"y":33.651,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.612,"y":33.651,"w":14.617000000000003,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Estimated%20Tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.612,"y":34.326,"w":26.014000000000003,"clr":-1,"A":"left","R":[{"T":"(Subtract%20the%20amount%20on%20Line%207%20from%20the%20amount%20on%20Line%206)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.384,"y":34.326,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.453,"y":35.467,"w":22.001,"clr":-1,"A":"left","R":[{"T":"PART%20III%20-%20How%20to%20Compute%20the%20Addition%20to%20Tax","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":9.289,"y":36.967,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":36.967,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.371,"y":36.967,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.091,"y":36.967,"w":6.558000000000002,"clr":-1,"A":"left","R":[{"T":"Underpayment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.666,"y":36.967,"w":2.333,"clr":-1,"A":"left","R":[{"T":"From","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.704,"y":36.967,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.058,"y":36.967,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.383,"y":36.967,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.428,"y":38.11,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":38.11,"w":3.556,"clr":-1,"A":"left","R":[{"T":"Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.541,"y":38.11,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.261,"y":38.11,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Days","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.13,"y":38.11,"w":2.112,"clr":-1,"A":"left","R":[{"T":"After","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.827,"y":38.11,"w":3.5570000000000004,"clr":-1,"A":"left","R":[{"T":"January","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.759,"y":38.11,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.339,"y":38.11,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2014%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.612,"y":38.11,"w":3.724,"clr":-1,"A":"left","R":[{"T":"Through","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.803,"y":38.11,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.383,"y":38.11,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Date","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.08,"y":38.11,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.575,"y":38.11,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.335,"y":38.11,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.486,"y":38.11,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.839,"y":38.11,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.129,"y":38.11,"w":2,"clr":-1,"A":"left","R":[{"T":"Was","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.596,"y":38.11,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Paid","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.121,"y":38.11,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.609,"y":38.785,"w":1.889,"clr":-1,"A":"left","R":[{"T":"May","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":14.961,"y":38.785,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.681,"y":38.785,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2014%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.609,"y":39.46,"w":13.060000000000008,"clr":-1,"A":"left","R":[{"T":"(If%20May%201%20is%20earlier%2C%20enter%20106)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":77.521,"y":39.533,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.543,"y":40.676,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":40.676,"w":30.347,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%2010%20by%20the%20Daily%20Interest%20Rate%20of%20.00014%20(5%25%20per%20annum)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":77.637,"y":40.676,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":94.797,"y":40.676,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.428,"y":41.818,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":41.818,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Addition","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.629,"y":41.818,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.322,"y":41.818,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.159,"y":41.818,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Balance","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.177,"y":41.818,"w":1.834,"clr":-1,"A":"left","R":[{"T":"Due","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.444,"y":41.818,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.39,"y":41.818,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.062,"y":41.818,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":40.559,"y":41.818,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.319,"y":41.818,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.469,"y":41.818,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":51.823,"y":41.818,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.113,"y":41.818,"w":1.056,"clr":-1,"A":"left","R":[{"T":"by","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.177,"y":41.818,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.53,"y":41.818,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61,"y":42.493,"w":11.56,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20on%20back)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":77.523,"y":42.534,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":97.032,"y":42.196,"w":0.866,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":49,"TS":[3,12,0,0]}]},{"oc":"#2b2e34","x":5.938,"y":46.773,"w":1.5010000000000001,"clr":-1,"A":"left","R":[{"T":"Va.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.696,"y":46.773,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Dept.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":10.447,"y":46.773,"w":1.056,"clr":-1,"A":"left","R":[{"T":"Of","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":11.803,"y":46.773,"w":3.835,"clr":-1,"A":"left","R":[{"T":"Taxation","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":16.217,"y":46.773,"w":3.8920000000000003,"clr":-1,"A":"left","R":[{"T":"2601036","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":21.091,"y":46.773,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"(REV","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":23.841,"y":46.773,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"12%2F13)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":34.349,"y":10.918,"w":3.0560000000000005,"clr":-1,"A":"left","R":[{"T":"(VAGI)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.525,"y":10.918,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.981,"y":38.785,"w":4.723000000000001,"clr":-1,"A":"left","R":[{"T":"Whichever","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.459,"y":38.785,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.92,"y":38.785,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"Earlier","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":264,"AM":1024,"x":61.671,"y":0.655,"w":37.211,"h":1.292,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BDATE","EN":0},"TI":265,"AM":0,"x":38.02,"y":4.8,"w":16.521,"h":0.967,"TU":"2012 beginning","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EDATE","EN":0},"TI":266,"AM":0,"x":67.762,"y":4.8,"w":16.521,"h":0.967,"TU":"2012 Ending","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR","EN":0},"TI":267,"AM":0,"x":85.54,"y":4.8,"w":6.208,"h":0.967,"TU":"Year","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":268,"AM":1024,"x":6.381,"y":7.028,"w":65.807,"h":0.891,"TU":"First Name, Middle Initial and Last Name (of Both if Joint) - OR - Name of Estate or Trust"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":269,"AM":1024,"x":72.382,"y":7.055,"w":24.482,"h":0.864,"TU":"Your Social Security Number or FEIN"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":270,"AM":0,"x":80.632,"y":21.258,"w":11.983,"h":1.334,"TU":"1. Exception 1 - 2011 Virginia Income Tax (Form 760 filers use the net tax amount from Line 17) 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":271,"AM":0,"x":80.557,"y":22.758,"w":11.983,"h":1.334,"TU":"2. Exception 2 - Tax Based on 2011 Income Using 2012 Rates and Exemptions 2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":272,"AM":1024,"x":80.557,"y":26.388,"w":11.983,"h":1.334,"TU":"3. Enter the Amount of Your 2012 Virginia Income Tax Liability After the Spouse Tax Adjustment and Tax Credits. See instructions. (If $150 or less, you are not required to file Form 760F) 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":273,"AM":1024,"x":80.632,"y":27.922,"w":11.983,"h":1.334,"TU":"4. Enter 66 2/ 3% (.666) of the Amount on Line 3 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":274,"AM":0,"x":80.557,"y":29.368,"w":11.983,"h":1.334,"TU":"5. Enter 2011 Income Tax Liability After the Spouse Tax Adjustment and Tax Credits 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":275,"AM":1024,"x":80.565,"y":30.895,"w":11.983,"h":1.334,"TU":"6. Enter the Amount From Line 4 or Line 5, Whichever is Less 6."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":276,"AM":0,"x":80.632,"y":32.422,"w":11.983,"h":1.334,"TU":"7. Enter the Amount of Tax Withheld and/or the Amount of Estimated Tax Paid or Credited by January 15, 2013 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":277,"AM":1024,"x":80.676,"y":33.915,"w":11.983,"h":1.334,"TU":"8. Underpayment of Estimated Tax (Subtract the amount on Line 7 from the amount on Line 6) 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":278,"AM":1024,"x":80.632,"y":36.885,"w":11.983,"h":1.334,"TU":"9. Amount of Underpayment From Line 8 9."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":279,"AM":0,"x":80.632,"y":39.02,"w":11.983,"h":1.334,"TU":"10. Number of Days After January 15, 2013, Through the Date the Amount on Line 9 Was Paid or May 1, 2013, Whichever is Earlier (If May 1 is earlier, enter 106) 10."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":280,"AM":1024,"x":80.632,"y":40.553,"w":14.008,"h":1.334,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":281,"AM":1024,"x":80.557,"y":42.09,"w":11.983,"h":1.334,"TU":"%_12. Addition to Tax Balance Due - Multiply the Amount on Line 9 by Line 11 (See instructions on back) 12."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VA760PFF.content.txt b/test/data/va/form/VA760PFF.content.txt new file mode 100755 index 00000000..3acc34f5 --- /dev/null +++ b/test/data/va/form/VA760PFF.content.txt @@ -0,0 +1,45 @@ +0000000000 7648888 113001 +Form 760-PFF + +2013 Payment Coupon for Farmers, Fishermen and Merchant Seamen +(DOC ID 764) + +Please do not staple +To Be Used For Payments On Previously + +Filed 2013 Individual Income Tax Returns Only +Your Social Security Number +Spouse’s Social Security Number +Mail Payment To: + +VA Department of Taxation + +P.O. Box 1478 + +Richmond, VA 23218-1478 + + + + + + + + + +Name(s) +Address +City +State +ZIP +Daytime Phone Number +Amount of + +Payment +Make your check payable to the + +Virginia Department of Taxation +. +0 + +0 +----------------Page (0) Break---------------- diff --git a/test/data/va/form/VA760PFF.fields.json b/test/data/va/form/VA760PFF.fields.json new file mode 100755 index 00000000..be043038 --- /dev/null +++ b/test/data/va/form/VA760PFF.fields.json @@ -0,0 +1 @@ +[{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":true,"value":""},{"id":"PAYMENT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VA760PFF.json b/test/data/va/form/VA760PFF.json new file mode 100755 index 00000000..f5e80ad1 --- /dev/null +++ b/test/data/va/form/VA760PFF.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"dsh":1,"oc":"#2b2e34","x":-0.172,"y":33.031,"w":1.5,"l":105.188},{"oc":"#ebecec","x":47.223,"y":37.15,"w":14.25,"l":23.873},{"oc":"#ebecec","x":47.223,"y":35.547,"w":14.25,"l":23.873},{"oc":"#ebecec","x":74.31,"y":37.15,"w":14.25,"l":23.873},{"oc":"#ebecec","x":74.31,"y":35.547,"w":14.25,"l":23.873},{"oc":"#2b2e34","x":6.188,"y":39.734,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":39.734,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":39.734,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":42.734,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":42.734,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":42.734,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":44.234,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":44.234,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":44.234,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":45.734,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":45.734,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":45.734,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":47.234,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":47.234,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":47.234,"w":0.75,"l":9.23},{"oc":"#ebecec","x":68.612,"y":46.947,"w":14.25,"l":29.571},{"oc":"#ebecec","x":68.612,"y":45.334,"w":14.25,"l":29.571},{"oc":"#2b2e34","x":6.188,"y":41.234,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":41.234,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":41.234,"w":0.75,"l":9.23}],"VLines":[{"oc":"#ebecec","x":71.096,"y":35.547,"w":14.25,"l":1.603},{"oc":"#ebecec","x":47.223,"y":35.547,"w":14.25,"l":1.603},{"oc":"#e2e2e3","x":50.454,"y":35.8,"w":3,"l":1.122},{"oc":"#e2e2e3","x":52.929,"y":35.8,"w":3,"l":1.113},{"oc":"#e2e2e3","x":55.404,"y":35.8,"w":3,"l":1.113},{"oc":"#e2e2e3","x":57.879,"y":35.8,"w":3,"l":1.094},{"oc":"#e2e2e3","x":60.354,"y":35.8,"w":3,"l":1.094},{"oc":"#e2e2e3","x":62.829,"y":35.8,"w":3,"l":1.094},{"oc":"#e2e2e3","x":65.304,"y":35.8,"w":3,"l":1.084},{"oc":"#e2e2e3","x":67.779,"y":35.8,"w":3,"l":1.075},{"oc":"#ebecec","x":98.184,"y":35.547,"w":14.25,"l":1.603},{"oc":"#ebecec","x":74.31,"y":35.547,"w":14.25,"l":1.603},{"oc":"#e2e2e3","x":77.541,"y":35.8,"w":3,"l":1.122},{"oc":"#e2e2e3","x":80.016,"y":35.8,"w":3,"l":1.113},{"oc":"#e2e2e3","x":82.491,"y":35.8,"w":3,"l":1.113},{"oc":"#e2e2e3","x":84.966,"y":35.8,"w":3,"l":1.094},{"oc":"#e2e2e3","x":87.441,"y":35.8,"w":3,"l":1.094},{"oc":"#e2e2e3","x":89.916,"y":35.8,"w":3,"l":1.094},{"oc":"#e2e2e3","x":92.391,"y":35.8,"w":3,"l":1.084},{"oc":"#e2e2e3","x":94.866,"y":35.8,"w":3,"l":1.075},{"oc":"#2b2e34","x":6.23,"y":41.25,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":41.25,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":42.75,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":42.75,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":44.25,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":35.707,"y":44.25,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":42.325,"y":44.25,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":44.25,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":45.75,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":45.75,"w":0.75,"l":1.469},{"oc":"#ebecec","x":98.184,"y":45.334,"w":14.25,"l":1.612},{"oc":"#ebecec","x":68.612,"y":45.334,"w":14.25,"l":1.612},{"oc":"#e2e2e3","x":71.87,"y":45.569,"w":1.5,"l":1.134},{"oc":"#e2e2e3","x":76.957,"y":45.597,"w":3,"l":1.116},{"oc":"#e2e2e3","x":79.544,"y":45.569,"w":1.5,"l":1.144},{"oc":"#e2e2e3","x":84.7,"y":45.531,"w":3,"l":1.197},{"oc":"#e2e2e3","x":87.295,"y":45.541,"w":1.5,"l":1.131},{"oc":"#e2e2e3","x":92.409,"y":45.541,"w":3,"l":1.116},{"oc":"#e2e2e3","x":94.987,"y":45.413,"w":1.5,"l":1.325},{"oc":"#e2e2e3","x":74.362,"y":45.569,"w":1.5,"l":1.134},{"oc":"#e2e2e3","x":82.07,"y":45.569,"w":1.5,"l":1.144},{"oc":"#e2e2e3","x":89.813,"y":45.559,"w":1.5,"l":1.131},{"oc":"#2b2e34","x":6.23,"y":39.75,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":39.75,"w":0.75,"l":1.469}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":76.407,"y":46.569,"w":1.091,"h":0.491,"clr":1},{"x":84.184,"y":46.569,"w":1.091,"h":0.491,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.869,"y":38.124,"w":15.09999999999999,"clr":-1,"A":"left","R":[{"T":"0000000000%207648888%20113001","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.109,"y":33.329,"w":6.667999999999999,"clr":-1,"A":"left","R":[{"T":"Form%20760-PFF","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":27.974,"y":33.329,"w":33.065000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20Payment%20Coupon%20for%20Farmers%2C%20Fishermen%20and%20Merchant%20Seamen","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":6.281,"y":34.267,"w":6.112,"clr":-1,"A":"left","R":[{"T":"(DOC%20ID%20764)","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":26.219,"y":34.266,"w":9.670000000000002,"clr":-1,"A":"left","R":[{"T":"Please%20do%20not%20staple","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":6.453,"y":35.641,"w":19.395000000000003,"clr":-1,"A":"left","R":[{"T":"To%20Be%20Used%20For%20Payments%20On%20Previously","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":6.625,"y":36.266,"w":22.119000000000003,"clr":-1,"A":"left","R":[{"T":"Filed%202013%20Individual%20Income%20Tax%20Returns%20Only","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":48.982,"y":34.16,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.589,"y":34.16,"w":14.838000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":75.043,"y":38.905,"w":8.224,"clr":-1,"A":"left","R":[{"T":"Mail%20Payment%20To%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.176,"y":39.655,"w":12.835000000000008,"clr":-1,"A":"left","R":[{"T":"VA%20Department%20of%20Taxation","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":76.457,"y":40.405,"w":6.67,"clr":-1,"A":"left","R":[{"T":"P.O.%20Box%201478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.475,"y":41.155,"w":12.449000000000005,"clr":-1,"A":"left","R":[{"T":"Richmond%2C%20VA%2023218-1478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":6.324,"y":39.382,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Name(s)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324,"y":42.382,"w":3.668,"clr":-1,"A":"left","R":[{"T":"Address","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324,"y":43.882,"w":1.722,"clr":-1,"A":"left","R":[{"T":"City","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":35.801,"y":43.882,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":42.418,"y":43.882,"w":1.556,"clr":-1,"A":"left","R":[{"T":"ZIP","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324,"y":45.382,"w":10.67,"clr":-1,"A":"left","R":[{"T":"Daytime%20Phone%20Number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":57.285,"y":45.226,"w":4.558,"clr":-1,"A":"left","R":[{"T":"Amount%20of","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":57.285,"y":45.976,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":72.927,"y":43.301,"w":15.061000000000007,"clr":-1,"A":"left","R":[{"T":"Make%20your%20check%20payable%20to%20the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":72.942,"y":43.901,"w":15.114000000000008,"clr":-1,"A":"left","R":[{"T":"Virginia%20Department%20of%20Taxation","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":91.841,"y":45.815,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.528,"y":45.769,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#2b2e34","x":95.325,"y":45.769,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":282,"AM":1024,"x":48.131,"y":35.869,"w":22.312,"h":0.983,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":283,"AM":1024,"x":75.225,"y":35.869,"w":22.312,"h":0.983,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME1","EN":0},"TI":284,"AM":1024,"x":6.464,"y":40.231,"w":45.024,"h":1.004,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":285,"AM":1024,"x":6.363,"y":41.646,"w":45.024,"h":1.004,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":286,"AM":1024,"x":6.464,"y":43.231,"w":45.024,"h":1.004,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":287,"AM":1024,"x":6.464,"y":44.731,"w":29.205,"h":1.004,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":288,"AM":1024,"x":35.937,"y":44.731,"w":6.353,"h":1.004,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":289,"AM":1024,"x":42.558,"y":44.731,"w":8.931,"h":1.004,"TU":"ZIP"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":290,"AM":1024,"x":6.539,"y":46.258,"w":45.024,"h":1.004,"TU":"Daytime Phone Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYMENT","EN":0},"TI":291,"AM":0,"x":69.495,"y":45.691,"w":22.818,"h":0.973,"TU":"Amount of Payment"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VAADJ.content.txt b/test/data/va/form/VAADJ.content.txt new file mode 100755 index 00000000..7dd5bf35 --- /dev/null +++ b/test/data/va/form/VAADJ.content.txt @@ -0,0 +1,302 @@ +2013 + +Virginia +Schedule ADJ +(Form 760-ADJ) + Name(s) as shown on Virginia return +Your Social Security Number +- +- +Whole Dollars Only + Additions to Federal Adjusted Gross Income + 1. Interest on obligations of other states, exempt from federal income tax but not from state tax. +............. +1 + 2. Other additions to federal adjusted gross income. + +2a. +FIXED DATE CONFORMITY ADDITION - SEE INSTRUCTIONS. + ................................................ +2a +2b - 2c. Refer to the Form 760 instructions for Other Addition Codes. +2b +2c +3 + +Subtractions from Federal Adjusted Gross Income +4. Income (interest, dividends or gains) from obligations or securities of the U.S. exempt +4 +5. Disability income reported as wages (or payments in lieu of wages) on your federal return. + 5a. Enter +YOUR +5a + + 5b. +Enter +SPOUSE’s +5b +6. Other subtractions as provided in instructions. + 6a. +FIXED DATE CONFORMITY SUBTRACTION - SEE INSTRUCTIONS. + ....................................... +6a +6b +6c +6d +7 +. +, +, +00 +. +, +, +00 +Enter Addition Amount +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +Enter Subtraction Amount +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +Enter Code +Enter Code + +Deductions from V +irginia +Adjusted Gross Income +8. Refer to the Form 760 instructions for Deduction Codes. + +8a +8b +8c +9. T +otal Deductions. +Add Lines 8a - 8c. Enter here and on Form 760, Line 12. .......................................... +9 +Continue with Line 10 on Page 2. +Enter Code +Enter Deduction Amount +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +Avoid delays + - If completed, attach Schedule ADJ to Form 760. +3. Total Additions. Add Lines 1 and 2a - 2c. Enter here and on Form 760, Line 2. ..................................... + from state income tax, but not from federal tax. ..................................................................................... +disability subtraction. ................................................................................................. +disability subtraction. +.......................................................................................... +7. +Total Subtractions. Add Lines 4, 5a, 5b and 6a - 6d. Enter here and on Form 760, Line 7. ................... +6b - 6d. Refer to the Form 760 instructions for Other Subtraction Codes. +----------------Page (0) Break---------------- + +2013 +V +irginia +Schedule ADJ + Page 2 +Your Social Security Number +- +- +2601050 01/13 +- +- +11. Enter the total number of exemptions reported in the table above. Next, refer to the Poverty +11 +12 +13. +Multiply Line 12 by $300. Enter the result on Line 13 and proceed to Line 14. If you do not qualify + +for the Tax Credit for Low-Income Individuals but claimed the Earned Income Credit on your federal +13 +14. Enter the amount of Earned Income Credit claimed on your federal return. If you did not claim the +14 +15 +16 +17. Compare the amount on Line 16 above to the amount of tax on Line 17 of Form 760 and enter the +17 +. +, +00 +. +, +00 +. +, +00 +. +, +00 +. +, +00 +18. Addition to tax. Fill in oval if addition came from +: + +18 +19 +20 +.......... +21 + +See instructions. + +22a +22b +22c +23. If contributing to a Public School Foundation + or a Public Library Foundation, enter the code +23a + for the foundation(s) and the contribution + amount(s) in boxes 23a - 23c. If contributing + to more than 3 public school or public library +23b + foundations, see Form 760 instructions. + 23c +24. Total Adjustments (add Lines 18, 19, 20, 21, 22a -22 c and 23a - 23c). + Enter here and on Line 28 of Form 760. .................................................................................... +24 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +, +00 +. +, +00 +. +, +. +, +00 +. +. +, +00 +, +. +00 +. +, +00 +, +. +, +. +00 +, +. +00 +, +. +00 +Family VAGI +Name +Social Security Number Virginia +Adjusted Gross Income (V +AGI) +You +Spouse +Dependent +Dependent +10. Total +If more than 6 exemptions, attach schedule listing the name, SSN & VAGI. +Enter total +Family VAGI + here. +. +, +00 +Adjustments and Voluntary Contributions + Credit for Low-Income Individuals or Virginia Earned Income Credit +Adjustments and V +oluntary Contributions +. +, +, +00 + Guidelines Table in the Form 760 instructions to see if you qualify for this credit. +................................. +12. +If you qualify for this credit, enter the number of personal exemptions reported on your Form 760. ..... + return, enter $0 and proceed to Line 14. ................................................................................................ + Earned Income Credit on your federal return, enter $0. ......................................................................... +15. Multiply Line 14 by 20% (.20). ................................................................................................................ +16. Enter the greater of Line 13 or Line 15 above ........................................................................................ + lesser of the two amounts here and on Line 21 of Form 760. This is your credit amount. ..................... +Form 760C Form 760F .... +19. Penalty. +Late Filing Penalty +Extension Penalty ...................... +20. Interest (interest accrued on the tax you owe). .......................................................................... +....................................................................................................... +21. Consumer’s Use Tax. +22. Voluntary Contributions. +Dependent +Dependent +----------------Page (1) Break---------------- diff --git a/test/data/va/form/VAADJ.fields.json b/test/data/va/form/VAADJ.fields.json new file mode 100755 index 00000000..c79e4c00 --- /dev/null +++ b/test/data/va/form/VAADJ.fields.json @@ -0,0 +1 @@ +[{"id":"APPROVED","type":"alpha","calc":true,"value":""},{"id":"SSN3","type":"ssn","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"INTOBLG","type":"number","calc":false,"value":""},{"id":"FIXED","type":"number","calc":false,"value":""},{"id":"L2A_1_","type":"alpha","calc":false,"value":""},{"id":"L2AA_1_","type":"number","calc":false,"value":""},{"id":"L2A_2_","type":"alpha","calc":false,"value":""},{"id":"L2AA_2_","type":"number","calc":false,"value":""},{"id":"TOTADDTN","type":"number","calc":true,"value":""},{"id":"INCOBLG","type":"number","calc":false,"value":""},{"id":"TPDISINC","type":"number","calc":false,"value":""},{"id":"SPDISINC","type":"number","calc":false,"value":""},{"id":"SUBFIXED","type":"number","calc":false,"value":""},{"id":"L6A_1_","type":"alpha","calc":false,"value":""},{"id":"L6AA_1_","type":"number","calc":false,"value":""},{"id":"L6A_2_","type":"alpha","calc":false,"value":""},{"id":"L6AA_2_","type":"number","calc":false,"value":""},{"id":"L6A_3_","type":"alpha","calc":false,"value":""},{"id":"L6AA_3_","type":"number","calc":false,"value":""},{"id":"TOTSUBTR","type":"number","calc":true,"value":""},{"id":"L8A_1_","type":"alpha","calc":false,"value":""},{"id":"L8AA_1_","type":"number","calc":false,"value":""},{"id":"L8A_2_","type":"alpha","calc":false,"value":""},{"id":"L8AA_2_","type":"number","calc":false,"value":""},{"id":"L8A_3_","type":"alpha","calc":false,"value":""},{"id":"L8AA_3_","type":"number","calc":false,"value":""},{"id":"TOTDEDUC","type":"number","calc":true,"value":""},{"id":"L20BOXRB","type":"radio","calc":false,"value":"L20BX"},{"id":"L20BOXRB","type":"radio","calc":false,"value":"L20BBOX"},{"id":"LPENRB","type":"radio","calc":false,"value":"BLPEN"},{"id":"LPENRB","type":"radio","calc":false,"value":"BEPEN"},{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"TPINFO","type":"alpha","calc":false,"value":""},{"id":"TSSN","type":"ssn","calc":false,"value":""},{"id":"TPVAGI","type":"number","calc":false,"value":""},{"id":"SPINFO","type":"alpha","calc":false,"value":""},{"id":"SSSN","type":"ssn","calc":false,"value":""},{"id":"SPVAGI","type":"number","calc":false,"value":""},{"id":"DEP_EXEINFO_1_","type":"alpha","calc":false,"value":""},{"id":"DEP_SSN_1_","type":"ssn","calc":false,"value":""},{"id":"DEP_VAGI_1_","type":"number","calc":false,"value":""},{"id":"DEP_EXEINFO_2_","type":"alpha","calc":false,"value":""},{"id":"DEP_SSN_2_","type":"ssn","calc":false,"value":""},{"id":"DEP_VAGI_2_","type":"number","calc":false,"value":""},{"id":"DEP_EXEINFO_3_","type":"alpha","calc":false,"value":""},{"id":"DEP_SSN_3_","type":"ssn","calc":false,"value":""},{"id":"DEP_VAGI_3_","type":"number","calc":false,"value":""},{"id":"DEP_EXEINFO_4_","type":"alpha","calc":false,"value":""},{"id":"DEP_SSN_4_","type":"ssn","calc":false,"value":""},{"id":"DEP_VAGI_4_","type":"number","calc":false,"value":""},{"id":"TOTVAGI","type":"mask","calc":false,"value":""},{"id":"EXMPTNS","type":"number","calc":false,"value":""},{"id":"EXMPTOT","type":"number","calc":false,"value":""},{"id":"EXMPTAMT","type":"number","calc":true,"value":""},{"id":"EIC","type":"number","calc":false,"value":""},{"id":"MULTIPLY","type":"number","calc":true,"value":""},{"id":"GREATER","type":"number","calc":true,"value":""},{"id":"TAXCR","type":"number","calc":true,"value":""},{"id":"Add_VA760C","type":"link","calc":false,"value":""},{"id":"Add_VA760F","type":"link","calc":false,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"VOL_L24A_1_","type":"alpha","calc":false,"value":""},{"id":"VOL_L24AA_1_","type":"number","calc":false,"value":""},{"id":"VOL_L24A_2_","type":"alpha","calc":false,"value":""},{"id":"VOL_L24AA_2_","type":"number","calc":false,"value":""},{"id":"VOL_L24A_3_","type":"alpha","calc":false,"value":""},{"id":"VOL_L24AA_3_","type":"number","calc":false,"value":""},{"id":"Look_Up","type":"link","calc":false,"value":""},{"id":"SCH_L25CA_1_","type":"mask","calc":false,"value":""},{"id":"SCH_L25CB_1_","type":"number","calc":false,"value":""},{"id":"SCH_L25CA_2_","type":"mask","calc":false,"value":""},{"id":"SCH_L25CB_2_","type":"number","calc":false,"value":""},{"id":"SCH_L25CA_3_","type":"mask","calc":false,"value":""},{"id":"SCH_L25CB_3_","type":"number","calc":false,"value":""},{"id":"L26","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VAADJ.json b/test/data/va/form/VAADJ.json new file mode 100755 index 00000000..d6b88a82 --- /dev/null +++ b/test/data/va/form/VAADJ.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Sch ADJ WEB 11 06 13.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#c9c9c9","x":6.298,"y":4.366,"w":0.75,"l":59.882},{"oc":"#c9c9c9","x":6.298,"y":6.147,"w":0.75,"l":59.882},{"oc":"#d2d2d2","x":37.701,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":37.666,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":40.176,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":40.141,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":42.651,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":42.616,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.126,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.091,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":47.601,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":47.566,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.076,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.041,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":52.551,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":52.516,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.026,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":54.991,"y":3.581,"w":6,"l":2.475},{"oc":"#d2d2d2","x":57.501,"y":2.334,"w":6,"l":2.475},{"oc":"#d2d2d2","x":57.466,"y":3.581,"w":6,"l":2.475},{"x":3.098,"y":44.998,"w":3,"l":2.432},{"oc":"#d2d2d2","x":68.777,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.743,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.252,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.218,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.727,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.693,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.202,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.168,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.677,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.643,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.152,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.118,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.627,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.593,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.102,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.068,"y":9.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.577,"y":7.794,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.543,"y":9.044,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":7.797,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":9.044,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":7.797,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":9.044,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.863,"y":9.913,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.812,"y":11.169,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.304,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.269,"y":11.169,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.779,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.744,"y":11.169,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.254,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.219,"y":11.169,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.729,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.694,"y":11.169,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.204,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.169,"y":11.169,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.679,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.644,"y":11.169,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.154,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.119,"y":11.169,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.629,"y":9.922,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.543,"y":11.169,"w":6,"l":3.24},{"oc":"#d2d2d2","x":94.232,"y":9.925,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":11.172,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":9.925,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":11.172,"w":6,"l":3.205},{"oc":"#d2d2d2","x":53.102,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.076,"y":13.981,"w":6,"l":2.466},{"oc":"#d2d2d2","x":55.577,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.543,"y":13.981,"w":6,"l":3.162},{"oc":"#d2d2d2","x":68.769,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.743,"y":13.981,"w":6,"l":2.466},{"oc":"#d2d2d2","x":71.244,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.209,"y":13.981,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.719,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.684,"y":13.981,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.194,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.159,"y":13.981,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.669,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.634,"y":13.981,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.144,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.109,"y":13.981,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.619,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.584,"y":13.981,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.094,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.059,"y":13.981,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.569,"y":12.734,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.096,"y":13.987,"w":6,"l":3.601},{"oc":"#d2d2d2","x":94.232,"y":12.737,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":13.984,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":12.737,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":13.984,"w":6,"l":3.205},{"oc":"#d2d2d2","x":53.094,"y":14.369,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.059,"y":15.616,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.569,"y":14.369,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.534,"y":15.616,"w":6,"l":3.163},{"oc":"#d2d2d2","x":68.751,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.726,"y":15.619,"w":6,"l":2.466},{"oc":"#d2d2d2","x":71.226,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.192,"y":15.619,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.701,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.667,"y":15.619,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.176,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.142,"y":15.619,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.651,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.617,"y":15.619,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.126,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.092,"y":15.619,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.601,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.567,"y":15.619,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.076,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.042,"y":15.619,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.551,"y":14.372,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.526,"y":15.625,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":14.369,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":15.616,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":14.369,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":15.616,"w":6,"l":3.205},{"oc":"#d2d2d2","x":88.405,"y":17.381,"w":6,"l":3.248},{"oc":"#d2d2d2","x":68.7,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.691,"y":17.375,"w":6,"l":2.449},{"oc":"#d2d2d2","x":71.175,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.14,"y":17.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.65,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.615,"y":17.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.125,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.09,"y":17.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.6,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.565,"y":17.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.075,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.04,"y":17.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.55,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.515,"y":17.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.025,"y":16.019,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.99,"y":17.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.5,"y":16.019,"w":6,"l":3.137},{"oc":"#d2d2d2","x":94.232,"y":16.022,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":17.375,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":16.022,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":17.375,"w":6,"l":3.188},{"oc":"#d2d2d2","x":68.76,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.751,"y":20.159,"w":6,"l":2.449},{"oc":"#d2d2d2","x":71.235,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.201,"y":20.159,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.71,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.676,"y":20.159,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.185,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.151,"y":20.159,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.66,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.626,"y":20.159,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.135,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.101,"y":20.159,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.61,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.576,"y":20.159,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.085,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.051,"y":20.159,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.56,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.465,"y":20.166,"w":6,"l":3.266},{"oc":"#d2d2d2","x":94.232,"y":18.803,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":20.156,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":18.803,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":20.156,"w":6,"l":3.188},{"oc":"#d2d2d2","x":68.812,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.786,"y":22.244,"w":6,"l":2.466},{"oc":"#d2d2d2","x":71.287,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.252,"y":22.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.762,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.727,"y":22.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.237,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.202,"y":22.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.712,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.677,"y":22.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.187,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.135,"y":22.241,"w":6,"l":2.57},{"oc":"#d2d2d2","x":83.662,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.627,"y":22.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.137,"y":20.888,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.102,"y":22.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.612,"y":20.888,"w":6,"l":3.154},{"oc":"#d2d2d2","x":88.491,"y":22.25,"w":6,"l":3.291},{"oc":"#d2d2d2","x":94.232,"y":20.891,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":22.244,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":20.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":22.244,"w":6,"l":3.188},{"oc":"#d2d2d2","x":68.812,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.794,"y":24.075,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.287,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.252,"y":24.075,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.762,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.727,"y":24.075,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.237,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.202,"y":24.075,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.712,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.677,"y":24.075,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.187,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.152,"y":24.075,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.662,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.627,"y":24.075,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.137,"y":22.681,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.102,"y":24.075,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.612,"y":22.681,"w":6,"l":3.154},{"oc":"#d2d2d2","x":88.569,"y":24.078,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":22.684,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":24.066,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":22.684,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":24.066,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.812,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.794,"y":25.879,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.287,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.252,"y":25.879,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.762,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.727,"y":25.879,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.237,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.202,"y":25.879,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.712,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.677,"y":25.879,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.187,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.152,"y":25.879,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.662,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.627,"y":25.879,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.137,"y":24.485,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.102,"y":25.879,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.612,"y":24.485,"w":6,"l":3.154},{"oc":"#d2d2d2","x":88.569,"y":25.882,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":24.488,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":25.869,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":24.488,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":25.869,"w":6,"l":3.205},{"oc":"#d2d2d2","x":52.99,"y":26.894,"w":6,"l":2.475},{"oc":"#d2d2d2","x":52.999,"y":28.119,"w":6,"l":2.527},{"oc":"#d2d2d2","x":55.465,"y":26.894,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.448,"y":28.125,"w":6,"l":3.163},{"oc":"#d2d2d2","x":68.777,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.76,"y":28.259,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.252,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.218,"y":28.259,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.727,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.693,"y":28.259,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.202,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.168,"y":28.259,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.677,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.643,"y":28.259,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.152,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.118,"y":28.259,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.627,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.593,"y":28.259,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.102,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.068,"y":28.259,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.577,"y":26.869,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.543,"y":28.269,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":26.872,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":28.209,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":26.872,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":28.209,"w":6,"l":3.205},{"oc":"#d2d2d2","x":52.99,"y":28.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":52.999,"y":29.879,"w":6,"l":2.432},{"oc":"#d2d2d2","x":55.465,"y":28.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.431,"y":29.879,"w":6,"l":3.188},{"oc":"#d2d2d2","x":68.863,"y":28.687,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.812,"y":30.041,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.338,"y":28.687,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.269,"y":30.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.813,"y":28.687,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.744,"y":30.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.288,"y":28.687,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.219,"y":30.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.763,"y":28.687,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.694,"y":30.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.204,"y":28.684,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.169,"y":30.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.679,"y":28.684,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.644,"y":30.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.154,"y":28.684,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.119,"y":30.041,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.629,"y":28.684,"w":6,"l":3.154},{"oc":"#d2d2d2","x":88.594,"y":30.037,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":28.691,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":30.044,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":28.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":30.044,"w":6,"l":3.188},{"oc":"#d2d2d2","x":83.644,"y":31.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.812,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.812,"y":31.784,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.287,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.269,"y":31.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.762,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.744,"y":31.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.237,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.219,"y":31.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.712,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.694,"y":31.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.187,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.169,"y":31.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.662,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.137,"y":30.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.119,"y":31.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.612,"y":30.419,"w":6,"l":2.604},{"oc":"#d2d2d2","x":88.586,"y":31.781,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":30.412,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":31.765,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":30.412,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":31.765,"w":6,"l":3.188},{"oc":"#d2d2d2","x":52.99,"y":30.385,"w":6,"l":2.475},{"oc":"#d2d2d2","x":52.999,"y":31.632,"w":6,"l":2.432},{"oc":"#d2d2d2","x":55.465,"y":30.385,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.431,"y":31.632,"w":6,"l":3.188},{"oc":"#d2d2d2","x":68.812,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.812,"y":33.568,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.287,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.269,"y":33.568,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.762,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.744,"y":33.568,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.237,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.219,"y":33.568,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.712,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.694,"y":33.568,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.187,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.169,"y":33.568,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.662,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.137,"y":32.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.119,"y":33.568,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.612,"y":32.203,"w":6,"l":2.604},{"oc":"#d2d2d2","x":88.586,"y":33.565,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":32.197,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":33.55,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":32.197,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":33.55,"w":6,"l":3.188},{"oc":"#d2d2d2","x":83.691,"y":33.579,"w":6,"l":2.475},{"x":3.097,"y":5.874,"w":3,"l":2.432},{"x":95.962,"y":5.874,"w":3,"l":2.432},{"oc":"#d2d2d2","x":53.061,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.07,"y":36.805,"w":6,"l":2.527},{"oc":"#d2d2d2","x":55.536,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.519,"y":36.811,"w":6,"l":3.163},{"oc":"#d2d2d2","x":58.256,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":58.239,"y":36.811,"w":6,"l":3.163},{"oc":"#d2d2d2","x":68.812,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.794,"y":36.974,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.287,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.252,"y":36.974,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.762,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.727,"y":36.974,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.237,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.202,"y":36.974,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.712,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.677,"y":36.974,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.187,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.152,"y":36.974,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.662,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.627,"y":36.974,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.137,"y":35.58,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.102,"y":36.974,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.612,"y":35.58,"w":6,"l":3.154},{"oc":"#d2d2d2","x":88.569,"y":36.977,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":35.583,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":36.964,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":35.583,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":36.964,"w":6,"l":3.205},{"oc":"#d2d2d2","x":53.027,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.036,"y":38.582,"w":6,"l":2.527},{"oc":"#d2d2d2","x":55.502,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.485,"y":38.588,"w":6,"l":3.163},{"oc":"#d2d2d2","x":58.222,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":58.205,"y":38.588,"w":6,"l":3.163},{"oc":"#d2d2d2","x":68.777,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.76,"y":38.748,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.252,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.218,"y":38.748,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.727,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.693,"y":38.748,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.202,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.168,"y":38.748,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.677,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.643,"y":38.748,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.152,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.118,"y":38.748,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.627,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.593,"y":38.748,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.102,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.068,"y":38.748,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.577,"y":37.357,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.543,"y":38.757,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":37.36,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":38.698,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":37.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":38.698,"w":6,"l":3.205},{"oc":"#d2d2d2","x":53.078,"y":39.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.087,"y":40.398,"w":6,"l":2.527},{"oc":"#d2d2d2","x":55.553,"y":39.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":55.536,"y":40.404,"w":6,"l":3.163},{"oc":"#d2d2d2","x":58.273,"y":39.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":58.256,"y":40.404,"w":6,"l":3.163},{"oc":"#d2d2d2","x":68.863,"y":39.176,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.812,"y":40.529,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.338,"y":39.176,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.269,"y":40.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.813,"y":39.176,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.744,"y":40.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.288,"y":39.176,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.219,"y":40.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.763,"y":39.176,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.694,"y":40.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.204,"y":39.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.169,"y":40.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.679,"y":39.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.644,"y":40.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.154,"y":39.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.119,"y":40.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.629,"y":39.173,"w":6,"l":3.154},{"oc":"#d2d2d2","x":88.594,"y":40.526,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":39.179,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":40.532,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":39.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.191,"y":40.532,"w":6,"l":3.188},{"oc":"#d2d2d2","x":68.812,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.812,"y":42.583,"w":6,"l":2.458},{"oc":"#d2d2d2","x":71.287,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.269,"y":42.583,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.762,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.744,"y":42.583,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.237,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.219,"y":42.583,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.712,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.694,"y":42.583,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.187,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.169,"y":42.583,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.662,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.137,"y":41.217,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.119,"y":42.583,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.612,"y":41.217,"w":6,"l":2.604},{"oc":"#d2d2d2","x":88.586,"y":42.58,"w":6,"l":3.188},{"oc":"#d2d2d2","x":94.232,"y":41.211,"w":6,"l":1.994},{"oc":"#d2d2d2","x":94.232,"y":42.564,"w":6,"l":1.959},{"oc":"#d2d2d2","x":96.226,"y":41.211,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.691,"y":42.593,"w":6,"l":2.475},{"oc":"#d2d2d2","x":96.111,"y":42.563,"w":6,"l":3.188},{"x":95.962,"y":44.992,"w":3,"l":2.432}],"VLines":[{"oc":"#c9c9c9","x":6.298,"y":4.366,"w":0.75,"l":1.781},{"oc":"#c9c9c9","x":66.18,"y":4.366,"w":0.75,"l":1.781},{"oc":"#d2d2d2","x":38.036,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":40.511,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":42.986,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":45.461,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":47.936,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":50.411,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":52.886,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.361,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":57.836,"y":2.212,"w":6,"l":1.35},{"oc":"#d2d2d2","x":60.234,"y":2.191,"w":6,"l":1.512},{"x":3.269,"y":44.173,"w":3,"l":0.887},{"oc":"#d2d2d2","x":69.112,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.587,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.062,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.537,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":79.012,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.487,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.962,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.437,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.912,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.387,"y":7.672,"w":6,"l":1.35},{"oc":"#d2d2d2","x":94.576,"y":7.675,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":7.675,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.164,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.639,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.114,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.589,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":79.064,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.539,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":84.014,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.489,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.964,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.439,"y":9.8,"w":6,"l":1.35},{"oc":"#d2d2d2","x":94.576,"y":9.803,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":9.803,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.437,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.912,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.387,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.104,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.579,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.054,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.529,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":79.004,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.479,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.954,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.429,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.904,"y":12.612,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.379,"y":12.609,"w":6,"l":1.503},{"oc":"#d2d2d2","x":94.576,"y":12.615,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":12.615,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.429,"y":14.247,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.904,"y":14.247,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.379,"y":14.247,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.087,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.562,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.037,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.512,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.987,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.462,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.937,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.412,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.887,"y":14.25,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.362,"y":14.247,"w":6,"l":1.353},{"oc":"#d2d2d2","x":94.576,"y":14.247,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":14.247,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.035,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.51,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":73.985,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.46,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":78.935,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.41,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.885,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.36,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.835,"y":15.897,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.31,"y":15.897,"w":6,"l":1.472},{"oc":"#d2d2d2","x":94.576,"y":16.1,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":15.9,"w":6,"l":1.359},{"oc":"#d2d2d2","x":69.095,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.57,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.045,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.52,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":78.995,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.47,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.945,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.42,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.895,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.37,"y":18.681,"w":6,"l":1.469},{"oc":"#d2d2d2","x":94.576,"y":18.881,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":18.681,"w":6,"l":1.359},{"oc":"#d2d2d2","x":69.147,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.622,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.097,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.572,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.047,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.522,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.997,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.472,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.947,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.422,"y":20.766,"w":6,"l":1.469},{"oc":"#d2d2d2","x":94.576,"y":20.969,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":20.769,"w":6,"l":1.359},{"oc":"#d2d2d2","x":69.147,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.622,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.097,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.572,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.047,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.522,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.997,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.472,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.947,"y":22.559,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.422,"y":22.559,"w":6,"l":1.634},{"oc":"#d2d2d2","x":94.576,"y":22.609,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":22.563,"w":6,"l":1.397},{"oc":"#d2d2d2","x":69.147,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.622,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.097,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.572,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.047,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.522,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.997,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.472,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.947,"y":24.363,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.422,"y":24.363,"w":6,"l":1.634},{"oc":"#d2d2d2","x":94.576,"y":24.413,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":24.366,"w":6,"l":1.397},{"oc":"#d2d2d2","x":53.326,"y":26.772,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.801,"y":26.772,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.276,"y":26.772,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.112,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.587,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.062,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.537,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.012,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.487,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.962,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.437,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.912,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.387,"y":26.747,"w":6,"l":1.469},{"oc":"#d2d2d2","x":94.576,"y":26.75,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":26.75,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.326,"y":28.51,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.801,"y":28.51,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.276,"y":28.51,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.164,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.639,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.114,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.589,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.064,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.539,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":84.014,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.489,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.964,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.439,"y":28.562,"w":6,"l":1.469},{"oc":"#d2d2d2","x":94.576,"y":28.769,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":28.569,"w":6,"l":1.359},{"oc":"#d2d2d2","x":69.164,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.639,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.114,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.589,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.064,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.539,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":84.014,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.489,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.964,"y":30.306,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.404,"y":30.297,"w":6,"l":1.606},{"oc":"#d2d2d2","x":94.576,"y":30.49,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":30.29,"w":6,"l":1.359},{"oc":"#d2d2d2","x":53.326,"y":30.263,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.801,"y":30.263,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.276,"y":30.263,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.16,"y":32.163,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.639,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.114,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.589,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.064,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.539,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":84.014,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.489,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.964,"y":32.09,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.404,"y":32.081,"w":6,"l":1.606},{"oc":"#d2d2d2","x":94.576,"y":32.275,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":32.075,"w":6,"l":1.359},{"x":3.269,"y":5.818,"w":3,"l":0.884},{"x":98.223,"y":5.818,"w":3,"l":0.884},{"oc":"#d2d2d2","x":53.396,"y":35.458,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.871,"y":35.458,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.346,"y":35.458,"w":6,"l":1.35},{"oc":"#d2d2d2","x":61.066,"y":35.458,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.147,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.622,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.097,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.572,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.047,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.522,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.997,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.472,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.947,"y":35.458,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.422,"y":35.458,"w":6,"l":1.634},{"oc":"#d2d2d2","x":94.576,"y":35.508,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":35.461,"w":6,"l":1.397},{"oc":"#d2d2d2","x":55.837,"y":37.297,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.362,"y":37.235,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.312,"y":37.235,"w":6,"l":1.35},{"oc":"#d2d2d2","x":61.032,"y":37.235,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.112,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.587,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.062,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.537,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.012,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.487,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":83.962,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.437,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.912,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.387,"y":37.235,"w":6,"l":1.469},{"oc":"#d2d2d2","x":94.576,"y":37.238,"w":6,"l":1.35},{"oc":"#d2d2d2","x":99.036,"y":37.238,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.413,"y":39.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.888,"y":39.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.363,"y":39.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":61.083,"y":39.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.164,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.639,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.114,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.589,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.064,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.539,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":84.014,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.489,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.964,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.439,"y":39.051,"w":6,"l":1.469},{"oc":"#d2d2d2","x":94.576,"y":39.257,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":39.057,"w":6,"l":1.359},{"oc":"#d2d2d2","x":69.164,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":71.639,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":74.114,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":76.589,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":79.064,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":81.539,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":84.014,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":86.489,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":88.964,"y":41.105,"w":6,"l":1.469},{"oc":"#d2d2d2","x":91.404,"y":41.095,"w":6,"l":1.606},{"oc":"#d2d2d2","x":94.576,"y":41.289,"w":6,"l":1.269},{"oc":"#d2d2d2","x":99.036,"y":41.089,"w":6,"l":1.359},{"x":98.239,"y":44.173,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":70.091,"y":5.169,"w":20.788,"h":0.9,"clr":-1},{"oc":"#c9c9c9","x":6.445,"y":17.784,"w":40.296,"h":0.9,"clr":-1},{"oc":"#c9c9c9","x":6.359,"y":7.079,"w":35.956,"h":0.9,"clr":-1},{"oc":"#d2d2d2","x":83.06,"y":8.672,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.618,"y":8.653,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":83.112,"y":10.8,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.669,"y":10.781,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":83.051,"y":13.612,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.609,"y":13.594,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":83.034,"y":15.25,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.592,"y":15.231,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.983,"y":16.984,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.54,"y":16.965,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.043,"y":19.769,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.601,"y":19.75,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.094,"y":21.853,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.652,"y":21.834,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.094,"y":23.647,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.618,"y":23.656,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.094,"y":25.451,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.618,"y":25.46,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.06,"y":27.834,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.618,"y":27.816,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.112,"y":29.65,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.669,"y":29.631,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.112,"y":31.394,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.669,"y":31.375,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.112,"y":33.178,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.669,"y":33.159,"w":1.856,"h":0.469,"clr":-1},{"oc":"#c9c9c9","x":6.36,"y":34.301,"w":40.296,"h":0.9,"clr":-1},{"oc":"#d2d2d2","x":83.094,"y":36.545,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.618,"y":36.555,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.06,"y":38.323,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.618,"y":38.304,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.112,"y":40.139,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.669,"y":40.12,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":83.112,"y":42.192,"w":1.856,"h":0.469,"clr":-1},{"oc":"#d2d2d2","x":75.669,"y":42.173,"w":1.856,"h":0.469,"clr":-1}],"Texts":[{"x":5.938,"y":2.071,"w":1.824,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[1,22,1,0]}]},{"x":11.973,"y":2.071,"w":3.2360000000000007,"clr":0,"A":"left","R":[{"T":"Virginia%20","S":-1,"TS":[1,16,1,0]}]},{"x":18.618,"y":2.071,"w":5.514,"clr":0,"A":"left","R":[{"T":"Schedule%20ADJ","S":35,"TS":[1,18,1,0]}]},{"x":5.938,"y":2.896,"w":6.1049999999999995,"clr":0,"A":"left","R":[{"T":"(Form%20760-ADJ)","S":-1,"TS":[1,15,1,0]}]},{"x":6.109,"y":4.038,"w":13.534999999999998,"clr":0,"A":"left","R":[{"T":"%20Name(s)%20as%20shown%20on%20Virginia%20return","S":27,"TS":[1,12,0,0]}]},{"oc":"#b0b0b0","x":41.153,"y":1.294,"w":10.527,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":27,"TS":[1,12,0,0]}]},{"x":44.73,"y":2.406,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":49.859,"y":2.407,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":70.716,"y":5.099,"w":9.169,"clr":1,"A":"left","R":[{"T":"Whole%20Dollars%20Only","S":-1,"TS":[0,16,1,0]}]},{"x":5.938,"y":7.118,"w":17.588999999999995,"clr":1,"A":"left","R":[{"T":"%20Additions%20to%20Federal%20Adjusted%20Gross%20Income","S":-1,"TS":[1,15,1,0]}]},{"x":5.938,"y":8.306,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%201.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.191,"y":8.306,"w":33.777000000000015,"clr":0,"A":"left","R":[{"T":"Interest%20on%20obligations%20of%20other%20states%2C%20exempt%20from%20federal%20income%20tax%20but%20not%20from%20state%20tax.%20","S":27,"TS":[1,12,0,0]}]},{"x":60.955,"y":8.306,"w":2.964000000000001,"clr":0,"A":"left","R":[{"T":".............","S":27,"TS":[1,12,0,0]}]},{"x":65.87,"y":8.306,"w":0.456,"clr":0,"A":"left","R":[{"T":"1","S":33,"TS":[1,12,1,0]}]},{"x":5.938,"y":9.387,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%202.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.191,"y":9.387,"w":17.868,"clr":0,"A":"left","R":[{"T":"Other%20additions%20to%20federal%20adjusted%20gross%20income.","S":27,"TS":[1,12,0,0]}]},{"x":9.031,"y":10.468,"w":1.368,"clr":0,"A":"left","R":[{"T":"2a.%20","S":27,"TS":[1,12,0,0]}]},{"x":11.147,"y":10.468,"w":23.782000000000007,"clr":0,"A":"left","R":[{"T":"FIXED%20DATE%20CONFORMITY%20ADDITION%20-%20SEE%20INSTRUCTIONS.","S":33,"TS":[1,12,1,0]}]},{"x":47.56,"y":10.468,"w":11.171999999999995,"clr":0,"A":"left","R":[{"T":"%20................................................","S":27,"TS":[1,12,0,0]}]},{"x":65.164,"y":10.468,"w":0.912,"clr":0,"A":"left","R":[{"T":"2a","S":33,"TS":[1,12,1,0]}]},{"x":9.203,"y":11.638,"w":25.069000000000003,"clr":0,"A":"left","R":[{"T":"2b%20-%202c.%20Refer%20to%20the%20Form%20760%20instructions%20for%20Other%20Addition%20Codes.%20","S":27,"TS":[1,12,0,0]}]},{"x":49.422,"y":13.157,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"2b","S":33,"TS":[1,12,1,0]}]},{"x":49.422,"y":14.867,"w":0.912,"clr":0,"A":"left","R":[{"T":"2c","S":33,"TS":[1,12,1,0]}]},{"x":65.87,"y":16.385,"w":0.456,"clr":0,"A":"left","R":[{"T":"3","S":33,"TS":[1,12,1,0]}]},{"x":6.259,"y":17.792,"w":19.64,"clr":1,"A":"left","R":[{"T":"Subtractions%20from%20Federal%20Adjusted%20Gross%20Income","S":-1,"TS":[1,15,1,0]}]},{"x":5.938,"y":18.748,"w":0.912,"clr":0,"A":"left","R":[{"T":"4.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.031,"y":18.748,"w":30.901,"clr":0,"A":"left","R":[{"T":"Income%20(interest%2C%20dividends%20or%20gains)%20from%20obligations%20or%20securities%20of%20the%20U.S.%20exempt","S":27,"TS":[1,12,0,0]}]},{"x":65.87,"y":19.423,"w":0.456,"clr":0,"A":"left","R":[{"T":"4","S":33,"TS":[1,12,1,0]}]},{"x":5.938,"y":20.379,"w":0.912,"clr":0,"A":"left","R":[{"T":"5.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.031,"y":20.379,"w":32.587,"clr":0,"A":"left","R":[{"T":"Disability%20income%20reported%20as%20wages%20(or%20payments%20in%20lieu%20of%20wages)%20on%20your%20federal%20return.","S":27,"TS":[1,12,0,0]}]},{"x":8.679,"y":21.617,"w":3.7840000000000007,"clr":0,"A":"left","R":[{"T":"%205a.%20Enter%20","S":27,"TS":[1,12,0,0]}]},{"x":14.39,"y":21.617,"w":2.5970000000000004,"clr":0,"A":"left","R":[{"T":"YOUR%20","S":33,"TS":[1,12,1,0]}]},{"x":65.164,"y":21.617,"w":0.912,"clr":0,"A":"left","R":[{"T":"5a","S":33,"TS":[1,12,1,0]}]},{"x":8.679,"y":23.192,"w":1.596,"clr":0,"A":"left","R":[{"T":"%205b.%20","S":27,"TS":[1,12,0,0]}]},{"x":11.147,"y":23.192,"w":2.188,"clr":0,"A":"left","R":[{"T":"Enter%20","S":27,"TS":[1,12,0,0]}]},{"x":14.532,"y":23.192,"w":4.330000000000001,"clr":0,"A":"left","R":[{"T":"SPOUSE%E2%80%99s%20","S":33,"TS":[1,12,1,0]}]},{"x":65.095,"y":23.192,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"5b","S":33,"TS":[1,12,1,0]}]},{"x":5.937,"y":24.429,"w":0.912,"clr":0,"A":"left","R":[{"T":"6.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.031,"y":24.429,"w":16.636,"clr":0,"A":"left","R":[{"T":"Other%20subtractions%20as%20provided%20in%20instructions.","S":27,"TS":[1,12,0,0]}]},{"x":8.679,"y":25.104,"w":1.596,"clr":0,"A":"left","R":[{"T":"%206a.%20","S":27,"TS":[1,12,0,0]}]},{"x":11.147,"y":25.104,"w":25.786000000000012,"clr":0,"A":"left","R":[{"T":"FIXED%20DATE%20CONFORMITY%20SUBTRACTION%20-%20SEE%20INSTRUCTIONS.","S":33,"TS":[1,12,1,0]}]},{"x":50.734,"y":25.104,"w":9.119999999999997,"clr":0,"A":"left","R":[{"T":"%20.......................................","S":27,"TS":[1,12,0,0]}]},{"x":65.164,"y":25.104,"w":0.912,"clr":0,"A":"left","R":[{"T":"6a","S":33,"TS":[1,12,1,0]}]},{"x":49.422,"y":27.298,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"6b","S":33,"TS":[1,12,1,0]}]},{"x":49.422,"y":28.817,"w":0.912,"clr":0,"A":"left","R":[{"T":"6c","S":33,"TS":[1,12,1,0]}]},{"x":49.422,"y":30.572,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"6d","S":33,"TS":[1,12,1,0]}]},{"x":65.87,"y":32.765,"w":0.456,"clr":0,"A":"left","R":[{"T":"7","S":33,"TS":[1,12,1,0]}]},{"oc":"#d2d2d2","x":92.349,"y":8.343,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.351,"y":8.093,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.909,"y":8.093,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":8.1,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.401,"y":10.334,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.403,"y":10.221,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.961,"y":10.221,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":10.228,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":74.691,"y":11.683,"w":8.205000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20Addition%20Amount","S":-1,"TS":[1,11,0,0]}]},{"oc":"#d2d2d2","x":92.349,"y":13.246,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.343,"y":13.034,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.901,"y":13.034,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":13.041,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.323,"y":14.696,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.326,"y":14.671,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.883,"y":14.671,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":14.672,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.34,"y":16.652,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.274,"y":16.374,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.88,"y":16.374,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":16.353,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.332,"y":19.399,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.334,"y":19.159,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.892,"y":19.159,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":19.135,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.383,"y":21.515,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.386,"y":21.243,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.943,"y":21.243,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":21.222,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.375,"y":23.278,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.386,"y":23.037,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.943,"y":23.037,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":23.035,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.375,"y":25.081,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.386,"y":24.84,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.943,"y":24.84,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":24.838,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":73.678,"y":25.864,"w":9.39,"clr":-1,"A":"left","R":[{"T":"Enter%20Subtraction%20Amount","S":-1,"TS":[1,11,0,0]}]},{"oc":"#d2d2d2","x":92.366,"y":27.546,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.351,"y":27.224,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.909,"y":27.224,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":27.175,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.401,"y":29.418,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.403,"y":29.04,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.961,"y":29.04,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":29.022,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.401,"y":31.002,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.403,"y":30.784,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.961,"y":30.784,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":30.744,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.401,"y":32.786,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.403,"y":32.568,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.961,"y":32.568,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":32.528,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":52.406,"y":11.511,"w":4.148000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Code","S":-1,"TS":[1,11,0,0]}]},{"oc":"#b0b0b0","x":52.749,"y":25.927,"w":4.148000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Code","S":-1,"TS":[1,11,0,0]}]},{"x":6.174,"y":34.261,"w":7.29,"clr":1,"A":"left","R":[{"T":"Deductions%20from%20V","S":-1,"TS":[1,15,1,0]}]},{"x":19.93,"y":34.262,"w":2.6890000000000005,"clr":1,"A":"left","R":[{"T":"irginia%20","S":-1,"TS":[1,15,1,0]}]},{"x":24.957,"y":34.261,"w":9.205,"clr":1,"A":"left","R":[{"T":"Adjusted%20Gross%20Income","S":-1,"TS":[1,15,1,0]}]},{"x":5.938,"y":35.218,"w":0.912,"clr":0,"A":"left","R":[{"T":"8.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.031,"y":35.218,"w":20.327999999999996,"clr":0,"A":"left","R":[{"T":"Refer%20to%20the%20Form%20760%20instructions%20for%20Deduction%20Codes.","S":27,"TS":[1,12,0,0]}]},{"x":49.422,"y":35.893,"w":0.912,"clr":0,"A":"left","R":[{"T":"8a","S":33,"TS":[1,12,1,0]}]},{"x":49.422,"y":37.693,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"8b","S":33,"TS":[1,12,1,0]}]},{"x":49.422,"y":39.493,"w":0.912,"clr":0,"A":"left","R":[{"T":"8c","S":33,"TS":[1,12,1,0]}]},{"x":5.937,"y":41.968,"w":0.912,"clr":0,"A":"left","R":[{"T":"9.%20","S":27,"TS":[1,12,0,0]}]},{"x":7.7940000000000005,"y":41.968,"w":1.185,"clr":0,"A":"left","R":[{"T":"%20%20%20T","S":27,"TS":[1,12,0,0]}]},{"x":9.464,"y":41.968,"w":6.1080000000000005,"clr":0,"A":"left","R":[{"T":"otal%20Deductions.%20","S":27,"TS":[1,12,0,0]}]},{"x":18.843,"y":41.967,"w":30.318000000000062,"clr":0,"A":"left","R":[{"T":"Add%20Lines%208a%20-%208c.%20Enter%20here%20and%20on%20Form%20760%2C%20Line%2012.%20..........................................","S":27,"TS":[1,12,0,0]}]},{"x":65.87,"y":41.967,"w":0.456,"clr":0,"A":"left","R":[{"T":"9","S":33,"TS":[1,12,1,0]}]},{"x":42.289,"y":42.999,"w":12.804999999999996,"clr":0,"A":"left","R":[{"T":"Continue%20with%20Line%2010%20on%20Page%202.","S":34,"TS":[1,14,1,0]}]},{"oc":"#b0b0b0","x":53.794,"y":34.512,"w":4.148000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Code","S":-1,"TS":[1,11,0,0]}]},{"oc":"#b0b0b0","x":73.228,"y":34.512,"w":8.934000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Deduction%20Amount","S":-1,"TS":[1,11,0,0]}]},{"oc":"#d2d2d2","x":92.375,"y":36.176,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.386,"y":35.935,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.943,"y":35.935,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":35.933,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.366,"y":38.035,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.351,"y":37.713,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.909,"y":37.713,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":37.664,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.401,"y":40.032,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.403,"y":39.529,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.961,"y":39.529,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":39.511,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.401,"y":41.801,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.403,"y":41.582,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.961,"y":41.582,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.747,"y":41.542,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":24.17,"y":46.508,"w":6.169,"clr":0,"A":"left","R":[{"T":"Avoid%20delays","S":-1,"TS":[0,16,1,0]}]},{"x":36.893,"y":46.508,"w":22.177,"clr":0,"A":"left","R":[{"T":"%20-%20If%20completed%2C%20attach%20Schedule%20ADJ%20to%20Form%20760.","S":-1,"TS":[0,15,0,0]}]},{"x":5.938,"y":16.386,"w":37.794000000000054,"clr":0,"A":"left","R":[{"T":"3.%20Total%20Additions.%20Add%20Lines%201%20and%202a%20-%202c.%20Enter%20here%20and%20on%20Form%20760%2C%20Line%202.%20.....................................","S":27,"TS":[1,12,0,0]}]},{"x":9.031,"y":19.423,"w":36.56400000000013,"clr":0,"A":"left","R":[{"T":"from%20state%20income%20tax%2C%20but%20not%20from%20federal%20tax.%20.....................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":18.549,"y":21.617,"w":29.955000000000087,"clr":0,"A":"left","R":[{"T":"disability%20subtraction.%20.................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":21.184,"y":23.192,"w":7.839000000000001,"clr":0,"A":"left","R":[{"T":"disability%20subtraction.%20","S":27,"TS":[1,12,0,0]}]},{"x":33.094,"y":23.192,"w":20.52000000000002,"clr":0,"A":"left","R":[{"T":"..........................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":5.938,"y":32.766,"w":0.912,"clr":0,"A":"left","R":[{"T":"7.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.031,"y":32.765,"w":36.74500000000003,"clr":0,"A":"left","R":[{"T":"Total%20Subtractions.%20Add%20Lines%204%2C%205a%2C%205b%20and%206a%20-%206d.%20Enter%20here%20and%20on%20Form%20760%2C%20Line%207.%20...................","S":27,"TS":[1,12,0,0]}]},{"x":9.203,"y":26.06,"w":26.072000000000003,"clr":0,"A":"left","R":[{"T":"6b%20-%206d.%20Refer%20to%20the%20Form%20760%20instructions%20for%20Other%20Subtraction%20Codes.","S":27,"TS":[1,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":292,"AM":1024,"x":32.826,"y":0.517,"w":35.963,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":293,"AM":1024,"x":38.397,"y":2.534,"w":21.431,"h":0.896,"TU":"Your SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":294,"AM":1024,"x":6.43,"y":5.045,"w":59.606,"h":1.014,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTOBLG","EN":0},"TI":295,"AM":0,"x":69.466,"y":7.997,"w":21.581,"h":0.896,"TU":"Line 1. Interest on obligations of other states, exempt from federal income tax but not from state tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIXED","EN":0},"TI":296,"AM":0,"x":69.466,"y":10.105,"w":21.581,"h":0.896,"TU":"Line 2a. Other additions to federal adjusted gross income."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2A_1_","EN":0},"TI":297,"AM":0,"x":53.966,"y":12.877,"w":3.864,"h":0.951,"PL":{"V":[" ","10 Interest on federally exempt U.S. obligations","11 Accumulation distribution income","12 Lump-sum distribution income","14 Income from Dealer Disposition of Property","16 Telework Expenses","99 Other"],"D":["no entry","10","11","12","14","16","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AA_1_","EN":0},"TI":298,"AM":0,"x":69.466,"y":12.913,"w":21.581,"h":0.896,"TU":"Line 2b. Enter addition amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2A_2_","EN":0},"TI":299,"AM":0,"x":53.832,"y":14.523,"w":3.864,"h":0.95,"PL":{"V":[" ","10 Interest on federally exempt U.S. obligations","11 Accumulation distribution income","12 Lump-sum distribution income","14 Income from Dealer Disposition of Property","16 Telework Expenses","99 Other"],"D":["no entry","10","11","12","14","16","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AA_2_","EN":0},"TI":300,"AM":0,"x":69.466,"y":14.571,"w":21.581,"h":0.896,"TU":"Line 2c. Enter addition amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTADDTN","EN":0},"TI":301,"AM":1024,"x":69.466,"y":16.247,"w":21.581,"h":0.958,"TU":"3. Total Additions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCOBLG","EN":0},"TI":302,"AM":0,"x":69.466,"y":19.092,"w":21.581,"h":0.947,"TU":"Line 4. Income (interest, dividends or gains) from obligations or securities of the U.S. exempt from state income tax, but not from federal tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPDISINC","EN":0},"TI":303,"AM":0,"x":69.466,"y":21.143,"w":21.581,"h":0.937,"TU":"Line 5a. Enter your disability subtraction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPDISINC","EN":0},"TI":304,"AM":0,"x":69.466,"y":22.891,"w":21.581,"h":1.009,"TU":"Line 5b. Enter SPOUSE's disability subtraction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBFIXED","EN":0},"TI":305,"AM":0,"x":69.402,"y":24.712,"w":21.581,"h":1.029,"TU":"Line 6a. Fixed Date Conformity Subtraction - See instructions"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_1_","EN":0},"TI":306,"AM":0,"x":53.68,"y":27.007,"w":3.864,"h":0.923,"PL":{"V":[" ","20 Income from Virginia Obligations","21 Federal Work Opportunity Tax Credit Wages","22 Tier 2 and Other Railroad Retirement and Railroad Unemployment Benefits","24 Virginia Lottery Prizes","28 Virginia National Guard Income","30 Military Pay and Allowance Attributable to Active Duty Service in a Combat Zone or a Qualified Hazadous Duty Area","31 Retirement Plan Income Previously Taxed by Another State","34 Virginia College Saving Plan Income Distribution or Refund","37 Unemployment Compensation Benefits","38 Basic Military Pay","39 Federal and State Employees","40 Income Received by Holocaust Victims","41 Payments Made under the Tobacco Settlement","42 Gain on the Sale of Land for Open-Space Use","44 Congressional Medal of Honor Recipients","46 Military Death Gratuity Payments","49 Certain Death Benefit Payments","51 Gains from Land Preservation","52 Long-Term Capital Gain","53 Historic Rehabilitation","99 Other"],"D":["no entry","20","21","22","24","28","30","31","34","37","38","39","40","41","42","44","46","49","51","52","53","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AA_1_","EN":0},"TI":307,"AM":0,"x":69.466,"y":27.152,"w":21.581,"h":1.019,"TU":"Line 6b Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_2_","EN":0},"TI":308,"AM":0,"x":53.591,"y":28.789,"w":3.864,"h":0.923,"PL":{"V":[" ","20 Income from Virginia Obligations","21 Federal Work Opportunity Tax Credit Wages","22 Tier 2 and Other Railroad Retirement and Railroad Unemployment Benefits","24 Virginia Lottery Prizes","28 Virginia National Guard Income","30 Military Pay and Allowance Attributable to Active Duty Service in a Combat Zone or a Qualified Hazadous Duty Area","31 Retirement Plan Income Previously Taxed by Another State","34 Virginia College Saving Plan Income Distribution or Refund","37 Unemployment Compensation Benefits","38 Basic Military Pay","39 Federal and State Employees","40 Income Received by Holocaust Victims","41 Payments Made under the Tobacco Settlement","42 Gain on the Sale of Land for Open-Space Use","44 Congressional Medal of Honor Recipients","46 Military Death Gratuity Payments","49 Certain Death Benefit Payments","51 Gains from Land Preservation","52 Long-Term Capital Gain","53 Historic Rehabilitation","99 Other"],"D":["no entry","20","21","22","24","28","30","31","34","37","38","39","40","41","42","44","46","49","51","52","53","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AA_2_","EN":0},"TI":309,"AM":0,"x":69.466,"y":28.897,"w":21.581,"h":1.009,"TU":"Line 6c Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_3_","EN":0},"TI":310,"AM":0,"x":53.465,"y":30.509,"w":3.864,"h":0.923,"PL":{"V":[" ","20 Income from Virginia Obligations","21 Federal Work Opportunity Tax Credit Wages","22 Tier 2 and Other Railroad Retirement and Railroad Unemployment Benefits","24 Virginia Lottery Prizes","28 Virginia National Guard Income","30 Military Pay and Allowance Attributable to Active Duty Service in a Combat Zone or a Qualified Hazadous Duty Area","31 Retirement Plan Income Previously Taxed by Another State","34 Virginia College Saving Plan Income Distribution or Refund","37 Unemployment Compensation Benefits","38 Basic Military Pay","39 Federal and State Employees","40 Income Received by Holocaust Victims","41 Payments Made under the Tobacco Settlement","42 Gain on the Sale of Land for Open-Space Use","44 Congressional Medal of Honor Recipients","46 Military Death Gratuity Payments","49 Certain Death Benefit Payments","51 Gains from Land Preservation","52 Long-Term Capital Gain","53 Historic Rehabilitation","99 Other"],"D":["no entry","20","21","22","24","28","30","31","34","37","38","39","40","41","42","44","46","49","51","52","53","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AA_3_","EN":0},"TI":311,"AM":0,"x":69.466,"y":30.635,"w":21.581,"h":1.009,"TU":"Line 6d Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTSUBTR","EN":0},"TI":312,"AM":1024,"x":69.466,"y":32.421,"w":21.581,"h":0.998,"TU":"7. Total Subtractions"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A_1_","EN":0},"TI":313,"AM":0,"x":53.755,"y":35.718,"w":6.56,"h":0.951,"PL":{"V":[" ","101 Child and Dependent Care Expenses","102 Foster Care Deduction","103 Bone Marrow Screening Fee","104 Virginia College Savings Plan Prepaid Tuition Contract Payments and Savings Account Contributions","105 Continuing Teacher Education","106 Long-Term Health Care Premiums","107 Virginia Public School Construction Grants Program","108 Tobacco Quota Buyout","109 Sales Tax Paid on Certain Energy Efficient Equipment or Appliances","110 Organ and Tissue Donor Expenses","111 Charitable Mileage","112 Bank Franchise Subchapter S Corporation","113 Income from Dealer Disposition of Property","114 Prepaid Funeral, Medical, and Dental Insurance Premiums","199 Other"],"D":["no entry","101","102","103","104","105","106","107","108","109","110","111","112","113","114","199"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AA_1_","EN":0},"TI":314,"AM":0,"x":69.466,"y":35.807,"w":21.581,"h":1.009,"TU":"Line 8a Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A_2_","EN":0},"TI":315,"AM":0,"x":53.692,"y":37.497,"w":6.56,"h":0.951,"PL":{"V":[" ","101 Child and Dependent Care Expenses","102 Foster Care Deduction","103 Bone Marrow Screening Fee","104 Virginia College Savings Plan Prepaid Tuition Contract Payments and Savings Account Contributions","105 Continuing Teacher Education","106 Long-Term Health Care Premiums","107 Virginia Public School Construction Grants Program","108 Tobacco Quota Buyout","109 Sales Tax Paid on Certain Energy Efficient Equipment or Appliances","110 Organ and Tissue Donor Expenses","111 Charitable Mileage","112 Bank Franchise Subchapter S Corporation","113 Income from Dealer Disposition of Property","114 Prepaid Funeral, Medical, and Dental Insurance Premiums","199 Other"],"D":["no entry","101","102","103","104","105","106","107","108","109","110","111","112","113","114","199"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AA_2_","EN":0},"TI":316,"AM":0,"x":69.466,"y":37.558,"w":21.581,"h":1.019,"TU":"Line 8b Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A_3_","EN":0},"TI":317,"AM":0,"x":53.705,"y":39.316,"w":6.56,"h":0.95,"PL":{"V":[" ","101 Child and Dependent Care Expenses","102 Foster Care Deduction","103 Bone Marrow Screening Fee","104 Virginia College Savings Plan Prepaid Tuition Contract Payments and Savings Account Contributions","105 Continuing Teacher Education","106 Long-Term Health Care Premiums","107 Virginia Public School Construction Grants Program","108 Tobacco Quota Buyout","109 Sales Tax Paid on Certain Energy Efficient Equipment or Appliances","110 Organ and Tissue Donor Expenses","111 Charitable Mileage","112 Bank Franchise Subchapter S Corporation","113 Income from Dealer Disposition of Property","114 Prepaid Funeral, Medical, and Dental Insurance Premiums","199 Other"],"D":["no entry","101","102","103","104","105","106","107","108","109","110","111","112","113","114","199"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AA_3_","EN":0},"TI":318,"AM":0,"x":69.466,"y":39.376,"w":21.581,"h":0.998,"TU":"Line 8c Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDEDUC","EN":0},"TI":319,"AM":1024,"x":69.541,"y":41.392,"w":21.581,"h":1.039,"TU":"9. Total Deductions"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":36.661,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":36.627,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":39.136,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":39.102,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":41.611,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":41.577,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":44.086,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":44.052,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":46.561,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":46.527,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":49.036,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":49.002,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":51.511,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":51.477,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.986,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.952,"y":2.478,"w":6,"l":2.475},{"oc":"#d2d2d2","x":56.461,"y":1.231,"w":6,"l":2.475},{"oc":"#d2d2d2","x":56.427,"y":2.478,"w":6,"l":2.475},{"x":98.845,"y":3.844,"w":3,"l":2.432},{"x":3.18,"y":3.844,"w":3,"l":2.432},{"x":98.845,"y":47.369,"w":3,"l":2.432},{"oc":"#d2d2d2","x":81.953,"y":13.911,"w":6,"l":2.776},{"oc":"#d2d2d2","x":81.91,"y":15.048,"w":6,"l":2.776},{"oc":"#d2d2d2","x":84.728,"y":13.911,"w":6,"l":2.776},{"oc":"#d2d2d2","x":84.685,"y":15.048,"w":6,"l":3.506},{"oc":"#d2d2d2","x":81.953,"y":15.809,"w":6,"l":2.776},{"oc":"#d2d2d2","x":81.91,"y":16.946,"w":6,"l":2.776},{"oc":"#d2d2d2","x":84.728,"y":15.809,"w":6,"l":2.776},{"oc":"#d2d2d2","x":84.685,"y":16.946,"w":6,"l":3.506},{"oc":"#d2d2d2","x":77.418,"y":19.224,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.427,"y":18.105,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.902,"y":18.105,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.868,"y":19.242,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.377,"y":18.105,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.343,"y":19.242,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.852,"y":18.105,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.809,"y":19.242,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.091,"y":18.108,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.091,"y":19.262,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.085,"y":18.108,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.05,"y":19.262,"w":6,"l":3.188},{"oc":"#d2d2d2","x":77.432,"y":20.988,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.427,"y":19.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.902,"y":19.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.868,"y":20.987,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.377,"y":19.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.343,"y":20.987,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.852,"y":19.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.809,"y":20.987,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.091,"y":19.853,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.091,"y":21.007,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.085,"y":19.853,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.05,"y":21.007,"w":6,"l":3.188},{"oc":"#d2d2d2","x":77.418,"y":22.965,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.427,"y":21.827,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.902,"y":21.827,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.868,"y":22.964,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.377,"y":21.827,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.343,"y":22.964,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.852,"y":21.827,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.809,"y":22.964,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.091,"y":21.83,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.091,"y":22.984,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.085,"y":21.83,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.05,"y":22.984,"w":6,"l":3.188},{"oc":"#d2d2d2","x":77.432,"y":24.496,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.427,"y":23.356,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.902,"y":23.356,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.868,"y":24.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.377,"y":23.356,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.343,"y":24.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.852,"y":23.356,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.809,"y":24.493,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.091,"y":23.359,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.091,"y":24.513,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.085,"y":23.359,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.05,"y":24.513,"w":6,"l":3.188},{"oc":"#c9c9c9","x":77.432,"y":26.438,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.427,"y":25.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.902,"y":25.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.868,"y":26.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.377,"y":25.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.343,"y":26.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.852,"y":25.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.809,"y":26.435,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.091,"y":25.301,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.091,"y":26.455,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.085,"y":25.301,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.05,"y":26.455,"w":6,"l":3.188},{"oc":"#d2d2d2","x":66.266,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":66.258,"y":29.256,"w":6,"l":2.449},{"oc":"#d2d2d2","x":68.741,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.707,"y":29.256,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.216,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.182,"y":29.256,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.691,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.657,"y":29.256,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.166,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.132,"y":29.256,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.641,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.607,"y":29.256,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.116,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.082,"y":29.256,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.591,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.557,"y":29.256,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.066,"y":28.009,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.006,"y":29.253,"w":6,"l":3.214},{"oc":"#d2d2d2","x":91.575,"y":28.006,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.575,"y":29.272,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.569,"y":28.006,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.534,"y":29.272,"w":6,"l":3.188},{"oc":"#d2d2d2","x":66.249,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":66.24,"y":30.875,"w":6,"l":2.449},{"oc":"#d2d2d2","x":68.724,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.69,"y":30.875,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.199,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.165,"y":30.875,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.674,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.64,"y":30.875,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.149,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.115,"y":30.875,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.624,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.59,"y":30.875,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.099,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.065,"y":30.875,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.574,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.54,"y":30.875,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.049,"y":29.628,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.989,"y":30.872,"w":6,"l":3.214},{"oc":"#d2d2d2","x":91.575,"y":29.578,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.575,"y":30.844,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.569,"y":29.578,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.534,"y":30.844,"w":6,"l":3.188},{"oc":"#d2d2d2","x":66.816,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":66.258,"y":32.553,"w":6,"l":2.449},{"oc":"#d2d2d2","x":69.291,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.707,"y":32.553,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.766,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.182,"y":32.553,"w":6,"l":2.475},{"oc":"#d2d2d2","x":74.241,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.657,"y":32.553,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.716,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.132,"y":32.553,"w":6,"l":2.475},{"oc":"#d2d2d2","x":79.191,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.607,"y":32.553,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.666,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.082,"y":32.553,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.141,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.557,"y":32.553,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.616,"y":31.306,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.006,"y":32.55,"w":6,"l":3.214},{"oc":"#d2d2d2","x":91.575,"y":31.3,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.575,"y":32.566,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.569,"y":31.3,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.534,"y":32.566,"w":6,"l":3.188},{"oc":"#d2d2d2","x":66.266,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":66.258,"y":34.374,"w":6,"l":2.449},{"oc":"#d2d2d2","x":68.741,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.707,"y":34.374,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.216,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.182,"y":34.374,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.691,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.545,"y":34.374,"w":6,"l":2.664},{"oc":"#d2d2d2","x":76.166,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.132,"y":34.374,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.641,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.607,"y":34.374,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.116,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.082,"y":34.374,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.591,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.557,"y":34.374,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.066,"y":33.037,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.006,"y":34.371,"w":6,"l":3.214},{"oc":"#d2d2d2","x":91.575,"y":33.034,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.575,"y":34.299,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.569,"y":33.034,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.534,"y":34.299,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.575,"y":36.431,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.534,"y":36.431,"w":6,"l":3.188},{"oc":"#d2d2d2","x":76.149,"y":35.163,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.115,"y":36.41,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.624,"y":35.163,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.59,"y":36.41,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.099,"y":35.163,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.065,"y":36.41,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.574,"y":35.163,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.54,"y":36.41,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.049,"y":35.163,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.015,"y":36.406,"w":6,"l":3.188},{"oc":"#d2d2d2","x":50.677,"y":35.163,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.152,"y":35.163,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.677,"y":36.41,"w":6,"l":5.629},{"oc":"#d2d2d2","x":91.575,"y":35.166,"w":6,"l":1.994},{"oc":"#d2d2d2","x":93.569,"y":35.166,"w":6,"l":2.475},{"clr":1,"x":80.712,"y":37.847,"w":1,"l":0.705},{"clr":1,"x":80.712,"y":38.278,"w":1,"l":0.705},{"oc":"#d2d2d2","x":76.149,"y":36.781,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.115,"y":38.028,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.624,"y":36.781,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.59,"y":38.028,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.099,"y":36.781,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.065,"y":38.028,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.574,"y":36.781,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.54,"y":38.028,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.049,"y":36.781,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.997,"y":38.031,"w":6,"l":3.205},{"oc":"#d2d2d2","x":50.686,"y":36.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.677,"y":38.031,"w":6,"l":2.449},{"oc":"#d2d2d2","x":53.161,"y":36.784,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.126,"y":38.031,"w":6,"l":3.18},{"oc":"#d2d2d2","x":91.575,"y":36.781,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.575,"y":38.047,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.569,"y":36.781,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.534,"y":38.047,"w":6,"l":3.188},{"clr":1,"x":75.84,"y":38.522,"w":6,"l":2.475},{"clr":1,"x":78.28,"y":39.769,"w":6,"l":2.475},{"clr":1,"x":80.79,"y":38.522,"w":6,"l":2.475},{"clr":1,"x":80.755,"y":39.769,"w":6,"l":2.475},{"clr":1,"x":83.265,"y":38.522,"w":6,"l":2.475},{"clr":1,"x":83.23,"y":39.769,"w":6,"l":2.475},{"clr":1,"x":85.74,"y":38.522,"w":6,"l":2.475},{"clr":1,"x":85.705,"y":39.772,"w":6,"l":3.188},{"clr":1,"x":91.575,"y":38.525,"w":6,"l":1.994},{"oc":"#d2d2d2","x":76.149,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.175,"y":39.744,"w":6,"l":2.415},{"oc":"#d2d2d2","x":78.624,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.59,"y":39.744,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.099,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.065,"y":39.744,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.574,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.54,"y":39.744,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.049,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.015,"y":39.756,"w":6,"l":3.188},{"oc":"#d2d2d2","x":50.677,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.677,"y":39.7,"w":6,"l":2.441},{"oc":"#d2d2d2","x":53.152,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.118,"y":39.7,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.575,"y":38.403,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.575,"y":39.669,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.569,"y":38.403,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.534,"y":39.669,"w":6,"l":3.188},{"clr":1,"x":75.771,"y":40.378,"w":6,"l":2.475},{"clr":1,"x":78.246,"y":40.378,"w":6,"l":2.475},{"clr":1,"x":78.212,"y":41.625,"w":6,"l":2.475},{"clr":1,"x":80.721,"y":40.378,"w":6,"l":2.475},{"clr":1,"x":80.687,"y":41.625,"w":6,"l":2.475},{"clr":1,"x":83.196,"y":40.378,"w":6,"l":2.475},{"clr":1,"x":85.671,"y":40.378,"w":6,"l":2.475},{"clr":1,"x":91.575,"y":40.381,"w":6,"l":1.994},{"clr":1,"x":91.575,"y":41.647,"w":6,"l":1.959},{"clr":1,"x":93.569,"y":40.381,"w":6,"l":2.475},{"clr":1,"x":93.534,"y":41.647,"w":6,"l":3.188},{"oc":"#d2d2d2","x":76.149,"y":40.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.132,"y":41.715,"w":6,"l":2.458},{"oc":"#d2d2d2","x":78.624,"y":40.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.59,"y":41.715,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.099,"y":40.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.065,"y":41.715,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.574,"y":40.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.54,"y":41.715,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.049,"y":40.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.015,"y":41.728,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.584,"y":40.375,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.584,"y":41.641,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.577,"y":40.375,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.543,"y":41.641,"w":6,"l":3.188},{"oc":"#d2d2d2","x":40.769,"y":40.443,"w":6,"l":2.475},{"oc":"#d2d2d2","x":40.761,"y":41.69,"w":6,"l":2.449},{"oc":"#d2d2d2","x":43.244,"y":40.443,"w":6,"l":2.475},{"oc":"#d2d2d2","x":43.21,"y":41.69,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.719,"y":40.443,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.685,"y":41.69,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.194,"y":40.443,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.16,"y":41.69,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.669,"y":40.443,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.635,"y":41.69,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.144,"y":40.443,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.11,"y":41.69,"w":6,"l":3.197},{"clr":1,"x":89.976,"y":42.75,"w":1,"l":2.063},{"clr":1,"x":89.976,"y":43.65,"w":1,"l":2.063},{"clr":1,"x":91.584,"y":43.356,"w":6,"l":1.959},{"clr":1,"x":93.543,"y":43.356,"w":6,"l":3.188},{"oc":"#d2d2d2","x":76.158,"y":42.2,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.123,"y":43.447,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.633,"y":42.2,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.598,"y":43.447,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.108,"y":42.2,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.073,"y":43.447,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.583,"y":42.2,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.548,"y":43.447,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.058,"y":42.2,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.023,"y":43.453,"w":6,"l":3.188},{"oc":"#d2d2d2","x":40.786,"y":42.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":40.769,"y":43.434,"w":6,"l":2.458},{"oc":"#d2d2d2","x":43.261,"y":42.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":43.227,"y":43.434,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.736,"y":42.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.702,"y":43.434,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.211,"y":42.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.177,"y":43.434,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.686,"y":42.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.652,"y":43.434,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.161,"y":42.188,"w":6,"l":3.154},{"oc":"#d2d2d2","x":53.127,"y":43.434,"w":6,"l":3.188},{"oc":"#d2d2d2","x":91.558,"y":42.211,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.584,"y":43.469,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.577,"y":42.203,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.543,"y":43.469,"w":6,"l":3.188},{"oc":"#d2d2d2","x":40.777,"y":43.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":40.769,"y":45.097,"w":6,"l":2.449},{"oc":"#d2d2d2","x":43.252,"y":43.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":43.218,"y":45.097,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.727,"y":43.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":45.693,"y":45.097,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.202,"y":43.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.168,"y":45.097,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.677,"y":43.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":50.643,"y":45.097,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.152,"y":43.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.118,"y":45.097,"w":6,"l":3.197},{"clr":1,"x":75.771,"y":43.862,"w":6,"l":2.475},{"clr":1,"x":75.737,"y":45.109,"w":6,"l":2.475},{"clr":1,"x":78.246,"y":43.862,"w":6,"l":2.475},{"clr":1,"x":78.212,"y":45.109,"w":6,"l":2.475},{"clr":1,"x":80.721,"y":43.862,"w":6,"l":2.475},{"clr":1,"x":80.687,"y":45.109,"w":6,"l":2.475},{"clr":1,"x":83.196,"y":43.862,"w":6,"l":2.475},{"clr":1,"x":83.162,"y":45.109,"w":6,"l":2.475},{"clr":1,"x":85.671,"y":43.862,"w":6,"l":2.475},{"clr":1,"x":85.637,"y":45.1,"w":6,"l":3.188},{"clr":1,"x":80.713,"y":44.74,"w":1,"l":0.705},{"clr":1,"x":80.713,"y":45.172,"w":1,"l":0.705},{"clr":1,"x":89.976,"y":44.578,"w":1,"l":2.063},{"clr":1,"x":89.976,"y":45.478,"w":1,"l":2.063},{"clr":1,"x":91.584,"y":43.862,"w":6,"l":1.994},{"clr":1,"x":93.577,"y":43.862,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.158,"y":43.847,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.123,"y":45.094,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.633,"y":43.847,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.598,"y":45.094,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.108,"y":43.847,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.073,"y":45.094,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.583,"y":43.847,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.548,"y":45.094,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.058,"y":43.847,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.955,"y":45.1,"w":6,"l":3.257},{"oc":"#d2d2d2","x":91.584,"y":43.85,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.584,"y":45.115,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.577,"y":43.85,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.543,"y":45.115,"w":6,"l":3.188},{"x":3.163,"y":47.375,"w":3,"l":2.432},{"oc":"#c1c1c1","x":9.443,"y":4.872,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":4.872,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":4.872,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":4.872,"w":1.5,"l":25.209},{"oc":"#c1c1c1","x":9.443,"y":5.97,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":5.97,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":5.97,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":5.97,"w":1.5,"l":25.209},{"oc":"#c1c1c1","x":9.443,"y":6.88,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":6.88,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":6.88,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":6.88,"w":1.5,"l":25.209},{"oc":"#c1c1c1","x":9.443,"y":7.789,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":7.789,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":7.789,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":7.789,"w":1.5,"l":25.209},{"oc":"#c1c1c1","x":9.443,"y":10.48,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":10.48,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":10.48,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":10.48,"w":1.5,"l":25.209},{"oc":"#c1c1c1","x":9.443,"y":11.389,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":11.389,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":11.389,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":11.389,"w":1.5,"l":25.209},{"oc":"#c1c1c1","x":9.443,"y":12.985,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":12.985,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":12.985,"w":1.5,"l":22.476},{"oc":"#d2d2d2","x":80.032,"y":13.035,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.031,"y":11.787,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.506,"y":11.787,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.472,"y":13.034,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.981,"y":11.787,"w":6,"l":2.475},{"oc":"#d2d2d2","x":84.947,"y":13.034,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.456,"y":11.787,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.408,"y":13.035,"w":6,"l":3.188},{"oc":"#d2d2d2","x":93.678,"y":11.79,"w":6,"l":1.994},{"oc":"#d2d2d2","x":93.678,"y":13.056,"w":6,"l":1.959},{"oc":"#d2d2d2","x":95.672,"y":11.79,"w":6,"l":2.475},{"oc":"#d2d2d2","x":95.637,"y":13.056,"w":6,"l":3.188},{"oc":"#d2d2d2","x":77.6,"y":13.035,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.599,"y":11.787,"w":6,"l":2.475},{"oc":"#d2d2d2","x":66.266,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":66.258,"y":47.166,"w":6,"l":2.449},{"oc":"#d2d2d2","x":68.741,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.707,"y":47.166,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.216,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":71.182,"y":47.166,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.691,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.545,"y":47.166,"w":6,"l":2.664},{"oc":"#d2d2d2","x":76.166,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":76.132,"y":47.166,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.641,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.607,"y":47.166,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.116,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":81.082,"y":47.166,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.591,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.557,"y":47.166,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.066,"y":45.828,"w":6,"l":2.475},{"oc":"#d2d2d2","x":86.006,"y":47.163,"w":6,"l":3.214},{"oc":"#d2d2d2","x":91.575,"y":45.825,"w":6,"l":1.994},{"oc":"#d2d2d2","x":91.575,"y":47.091,"w":6,"l":1.959},{"oc":"#d2d2d2","x":93.569,"y":45.825,"w":6,"l":2.475},{"oc":"#d2d2d2","x":93.534,"y":47.091,"w":6,"l":3.188},{"oc":"#c1c1c1","x":9.443,"y":8.667,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":8.667,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":8.667,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":8.667,"w":1.5,"l":25.209},{"oc":"#c1c1c1","x":9.443,"y":9.577,"w":1.5,"l":14.688},{"oc":"#c1c1c1","x":24.131,"y":9.577,"w":1.5,"l":27.176},{"oc":"#c1c1c1","x":51.307,"y":9.577,"w":1.5,"l":22.39},{"oc":"#c1c1c1","x":73.698,"y":9.577,"w":1.5,"l":25.209}],"VLines":[{"oc":"#d2d2d2","x":36.996,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":39.471,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":41.946,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":44.421,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":46.896,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":49.371,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.846,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":54.321,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":56.796,"y":1.109,"w":6,"l":1.35},{"oc":"#d2d2d2","x":59.194,"y":1.106,"w":6,"l":1.494},{"x":101.105,"y":3.781,"w":3,"l":0.884},{"x":3.334,"y":3.781,"w":3,"l":0.884},{"x":101.123,"y":46.55,"w":3,"l":0.884},{"oc":"#d2d2d2","x":82.279,"y":13.8,"w":6,"l":1.231},{"oc":"#d2d2d2","x":85.055,"y":13.8,"w":6,"l":1.231},{"oc":"#d2d2d2","x":87.839,"y":13.8,"w":6,"l":1.231},{"oc":"#d2d2d2","x":82.279,"y":15.698,"w":6,"l":1.231},{"oc":"#d2d2d2","x":85.055,"y":15.698,"w":6,"l":1.231},{"oc":"#d2d2d2","x":87.839,"y":15.698,"w":6,"l":1.231},{"oc":"#d2d2d2","x":77.762,"y":17.994,"w":6,"l":1.231},{"oc":"#d2d2d2","x":80.237,"y":17.994,"w":6,"l":1.231},{"oc":"#d2d2d2","x":82.712,"y":17.994,"w":6,"l":1.231},{"oc":"#d2d2d2","x":85.187,"y":17.994,"w":6,"l":1.231},{"oc":"#d2d2d2","x":87.662,"y":17.994,"w":6,"l":1.231},{"oc":"#d2d2d2","x":91.435,"y":18.179,"w":6,"l":1.157},{"oc":"#d2d2d2","x":95.895,"y":17.996,"w":6,"l":1.239},{"oc":"#d2d2d2","x":77.762,"y":19.739,"w":6,"l":1.231},{"oc":"#d2d2d2","x":80.237,"y":19.739,"w":6,"l":1.231},{"oc":"#d2d2d2","x":82.712,"y":19.739,"w":6,"l":1.231},{"oc":"#d2d2d2","x":85.187,"y":19.739,"w":6,"l":1.231},{"oc":"#d2d2d2","x":87.662,"y":19.739,"w":6,"l":1.231},{"oc":"#d2d2d2","x":91.435,"y":19.924,"w":6,"l":1.157},{"oc":"#d2d2d2","x":95.895,"y":19.742,"w":6,"l":1.239},{"oc":"#d2d2d2","x":77.762,"y":21.716,"w":6,"l":1.231},{"oc":"#d2d2d2","x":80.237,"y":21.716,"w":6,"l":1.231},{"oc":"#d2d2d2","x":82.712,"y":21.716,"w":6,"l":1.231},{"oc":"#d2d2d2","x":85.187,"y":21.716,"w":6,"l":1.231},{"oc":"#d2d2d2","x":87.662,"y":21.716,"w":6,"l":1.231},{"oc":"#d2d2d2","x":91.435,"y":21.901,"w":6,"l":1.157},{"oc":"#d2d2d2","x":95.895,"y":21.719,"w":6,"l":1.24},{"oc":"#d2d2d2","x":77.762,"y":23.245,"w":6,"l":1.231},{"oc":"#d2d2d2","x":80.237,"y":23.245,"w":6,"l":1.231},{"oc":"#d2d2d2","x":82.712,"y":23.245,"w":6,"l":1.231},{"oc":"#d2d2d2","x":85.187,"y":23.245,"w":6,"l":1.231},{"oc":"#d2d2d2","x":87.662,"y":23.245,"w":6,"l":1.231},{"oc":"#d2d2d2","x":91.435,"y":23.43,"w":6,"l":1.157},{"oc":"#d2d2d2","x":95.895,"y":23.248,"w":6,"l":1.239},{"oc":"#d2d2d2","x":77.762,"y":25.187,"w":6,"l":1.231},{"oc":"#d2d2d2","x":80.237,"y":25.187,"w":6,"l":1.231},{"oc":"#d2d2d2","x":82.712,"y":25.187,"w":6,"l":1.231},{"oc":"#d2d2d2","x":85.187,"y":25.187,"w":6,"l":1.231},{"oc":"#d2d2d2","x":87.662,"y":25.187,"w":6,"l":1.231},{"oc":"#d2d2d2","x":91.435,"y":25.372,"w":6,"l":1.157},{"oc":"#d2d2d2","x":95.895,"y":25.19,"w":6,"l":1.239},{"oc":"#d2d2d2","x":66.601,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.076,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.551,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.026,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.501,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.976,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.451,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.926,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.401,"y":27.887,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.876,"y":27.881,"w":6,"l":1.356},{"oc":"#d2d2d2","x":91.919,"y":28.084,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":27.884,"w":6,"l":1.359},{"oc":"#d2d2d2","x":66.584,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.059,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.534,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.009,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.484,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.959,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.434,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.909,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.384,"y":29.506,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.859,"y":29.5,"w":6,"l":1.356},{"oc":"#d2d2d2","x":91.919,"y":29.656,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":29.456,"w":6,"l":1.359},{"oc":"#d2d2d2","x":66.601,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.248,"y":31.195,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.551,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.026,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.501,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.976,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.451,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.926,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.401,"y":31.184,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.876,"y":31.178,"w":6,"l":1.356},{"oc":"#d2d2d2","x":91.919,"y":31.378,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":31.178,"w":6,"l":1.359},{"oc":"#d2d2d2","x":66.601,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.076,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.551,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.026,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.501,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.976,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.451,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.926,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.401,"y":32.915,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.876,"y":32.909,"w":6,"l":1.356},{"oc":"#d2d2d2","x":91.919,"y":33.112,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":32.912,"w":6,"l":1.359},{"oc":"#d2d2d2","x":76.484,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.959,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.434,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.909,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.384,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.859,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.012,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.487,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.962,"y":35.041,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.919,"y":35.244,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":35.044,"w":6,"l":1.359},{"clr":1,"x":91.919,"y":37.047,"w":6,"l":1.269},{"clr":1,"x":96.379,"y":36.847,"w":6,"l":1.359},{"oc":"#d2d2d2","x":76.484,"y":36.659,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.959,"y":36.659,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.383,"y":36.669,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.909,"y":36.659,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.384,"y":36.659,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.859,"y":36.659,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.021,"y":36.663,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.496,"y":36.663,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.971,"y":36.659,"w":6,"l":1.353},{"oc":"#d2d2d2","x":91.919,"y":36.859,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":36.659,"w":6,"l":1.359},{"clr":1,"x":91.919,"y":38.603,"w":6,"l":1.269},{"clr":1,"x":96.379,"y":38.403,"w":6,"l":1.359},{"oc":"#d2d2d2","x":76.484,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.959,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.434,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.909,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.384,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.859,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.012,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.487,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.962,"y":38.281,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.919,"y":38.481,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":38.281,"w":6,"l":1.359},{"clr":1,"x":91.919,"y":40.459,"w":6,"l":1.269},{"clr":1,"x":96.379,"y":40.259,"w":6,"l":1.359},{"oc":"#d2d2d2","x":76.484,"y":40.253,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.959,"y":40.253,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.434,"y":40.253,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.909,"y":40.253,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.384,"y":40.253,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.859,"y":40.253,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.927,"y":40.453,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.388,"y":40.253,"w":6,"l":1.359},{"oc":"#d2d2d2","x":41.104,"y":40.321,"w":6,"l":1.35},{"oc":"#d2d2d2","x":43.579,"y":40.321,"w":6,"l":1.35},{"oc":"#d2d2d2","x":46.054,"y":40.321,"w":6,"l":1.35},{"oc":"#d2d2d2","x":48.529,"y":40.321,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.004,"y":40.321,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.479,"y":40.321,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.954,"y":40.321,"w":6,"l":1.35},{"clr":1,"x":89.976,"y":42.75,"w":1,"l":0.9},{"clr":1,"x":92.039,"y":42.75,"w":1,"l":0.9},{"clr":1,"x":91.927,"y":42.169,"w":6,"l":1.269},{"clr":1,"x":96.388,"y":41.969,"w":6,"l":1.359},{"oc":"#d2d2d2","x":76.493,"y":42.078,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.968,"y":42.078,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.443,"y":42.078,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.918,"y":42.078,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.393,"y":42.078,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.868,"y":42.078,"w":6,"l":1.35},{"oc":"#d2d2d2","x":41.121,"y":42.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":43.596,"y":42.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":46.071,"y":42.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":48.546,"y":42.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.021,"y":42.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.496,"y":42.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.971,"y":42.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.927,"y":42.281,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.388,"y":42.081,"w":6,"l":1.359},{"oc":"#d2d2d2","x":41.112,"y":43.728,"w":6,"l":1.35},{"oc":"#d2d2d2","x":43.587,"y":43.728,"w":6,"l":1.35},{"oc":"#d2d2d2","x":46.063,"y":43.728,"w":6,"l":1.35},{"oc":"#d2d2d2","x":48.538,"y":43.728,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.013,"y":43.728,"w":6,"l":1.35},{"oc":"#d2d2d2","x":53.487,"y":43.728,"w":6,"l":1.35},{"oc":"#d2d2d2","x":55.963,"y":43.728,"w":6,"l":1.35},{"clr":1,"x":89.976,"y":44.578,"w":1,"l":0.9},{"clr":1,"x":92.039,"y":44.578,"w":1,"l":0.9},{"clr":1,"x":91.927,"y":43.94,"w":6,"l":1.269},{"clr":1,"x":96.388,"y":43.74,"w":6,"l":1.359},{"oc":"#d2d2d2","x":76.493,"y":43.725,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.968,"y":43.725,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.443,"y":43.725,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.918,"y":43.725,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.393,"y":43.725,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.868,"y":43.725,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.927,"y":43.928,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.388,"y":43.728,"w":6,"l":1.359},{"x":3.335,"y":46.55,"w":3,"l":0.884},{"oc":"#c1c1c1","x":9.529,"y":4.903,"w":1.5,"l":1.036},{"oc":"#c1c1c1","x":24.131,"y":4.903,"w":1.5,"l":1.036},{"oc":"#c1c1c1","x":51.307,"y":4.903,"w":1.5,"l":1.036},{"oc":"#c1c1c1","x":73.698,"y":4.903,"w":1.5,"l":1.036},{"oc":"#c1c1c1","x":98.821,"y":4.903,"w":1.5,"l":1.036},{"oc":"#c1c1c1","x":9.529,"y":6.001,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":24.131,"y":6.001,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":51.307,"y":6.001,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":73.698,"y":6.001,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":98.821,"y":6.001,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":9.529,"y":6.911,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":24.131,"y":6.911,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":51.307,"y":6.911,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":73.698,"y":6.911,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":98.821,"y":6.911,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":9.529,"y":9.602,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":24.131,"y":9.602,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":51.307,"y":9.602,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":73.698,"y":9.602,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":98.821,"y":9.602,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":9.529,"y":10.511,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":24.131,"y":10.511,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":51.307,"y":10.511,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":73.698,"y":10.511,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":98.821,"y":10.511,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":9.529,"y":11.421,"w":1.5,"l":1.533},{"oc":"#c1c1c1","x":24.131,"y":11.421,"w":1.5,"l":1.533},{"oc":"#c1c1c1","x":73.698,"y":11.421,"w":1.5,"l":1.533},{"oc":"#d2d2d2","x":80.366,"y":11.665,"w":6,"l":1.35},{"oc":"#d2d2d2","x":82.841,"y":11.665,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.316,"y":11.665,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.791,"y":11.665,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.266,"y":11.665,"w":6,"l":1.35},{"oc":"#d2d2d2","x":94.022,"y":11.868,"w":6,"l":1.269},{"oc":"#d2d2d2","x":98.482,"y":11.668,"w":6,"l":1.359},{"oc":"#d2d2d2","x":77.934,"y":11.665,"w":6,"l":1.35},{"oc":"#d2d2d2","x":66.601,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":69.076,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.551,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":74.026,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.501,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.976,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.451,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.926,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.401,"y":45.706,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.876,"y":45.7,"w":6,"l":1.356},{"oc":"#d2d2d2","x":91.919,"y":45.903,"w":6,"l":1.269},{"oc":"#d2d2d2","x":96.379,"y":45.703,"w":6,"l":1.359},{"oc":"#c1c1c1","x":9.529,"y":8.699,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":24.131,"y":8.699,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":51.307,"y":8.699,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":73.698,"y":8.699,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":98.821,"y":8.699,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":9.529,"y":7.824,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":24.131,"y":7.824,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":51.307,"y":7.824,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":73.698,"y":7.824,"w":1.5,"l":0.847},{"oc":"#c1c1c1","x":98.821,"y":7.824,"w":1.5,"l":0.847}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":79.335,"y":18.905,"w":1.856,"h":0.393,"clr":-1},{"oc":"#d2d2d2","x":79.335,"y":20.651,"w":1.856,"h":0.393,"clr":-1},{"oc":"#d2d2d2","x":79.335,"y":22.628,"w":1.856,"h":0.393,"clr":-1},{"oc":"#d2d2d2","x":79.335,"y":24.157,"w":1.856,"h":0.393,"clr":-1},{"oc":"#d2d2d2","x":79.335,"y":26.099,"w":1.856,"h":0.393,"clr":-1},{"oc":"#d2d2d2","x":80.549,"y":28.887,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":73.198,"y":28.942,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":80.532,"y":30.506,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":73.09,"y":30.487,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":80.549,"y":32.184,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":73.107,"y":32.166,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":80.549,"y":33.962,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":73.107,"y":33.99,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":80.532,"y":36.041,"w":1.856,"h":0.431,"clr":-1},{"x":80.154,"y":37.847,"w":1.856,"h":0.431,"clr":1},{"oc":"#d2d2d2","x":80.532,"y":37.659,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":80.566,"y":41.347,"w":1.856,"h":0.431,"clr":-1},{"x":80.154,"y":44.74,"w":1.856,"h":0.431,"clr":1},{"oc":"#d2d2d2","x":81.939,"y":12.665,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c9c9c9","x":6.806,"y":27.136,"w":31.68,"h":0.853,"clr":-1},{"oc":"#d2d2d2","x":6.806,"y":3.244,"w":51.581,"h":0.945,"clr":-1},{"oc":"#d2d2d2","x":7.103,"y":27.239,"w":31.259,"h":0.734,"clr":-1},{"oc":"#d2d2d2","x":80.549,"y":46.753,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":73.107,"y":46.781,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"x":6.246,"y":0.675,"w":2.052,"clr":0,"A":"left","R":[{"T":"2013%20","S":35,"TS":[1,18,1,0]}]},{"x":11.184,"y":0.675,"w":0.547,"clr":0,"A":"left","R":[{"T":"V","S":-1,"TS":[1,15,1,0]}]},{"x":12.19,"y":0.6759999999999999,"w":2.6890000000000005,"clr":0,"A":"left","R":[{"T":"irginia%20","S":-1,"TS":[1,15,1,0]}]},{"x":17.275,"y":0.675,"w":5.742,"clr":0,"A":"left","R":[{"T":"Schedule%20ADJ%20","S":35,"TS":[1,18,1,0]}]},{"x":5.696,"y":1.725,"w":2.8720000000000003,"clr":0,"A":"left","R":[{"T":"%20Page%202","S":35,"TS":[1,18,1,0]}]},{"oc":"#b0b0b0","x":40.113,"y":0.19099999999999995,"w":10.527,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":27,"TS":[1,12,0,0]}]},{"oc":"#b0b0b0","x":48.751,"y":1.259,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,null,1,0]}]},{"x":48.751,"y":1.259,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":48.391,"y":47.273,"w":5.472000000000001,"clr":0,"A":"left","R":[{"T":"2601050%2001%2F13","S":-1,"TS":[1,11,0,0]}]},{"x":43.693,"y":1.2999999999999998,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[3,null,1,0]}]},{"x":43.693,"y":1.2999999999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":6.477,"y":13.446,"w":1.368,"clr":0,"A":"left","R":[{"T":"11.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.835,"y":13.446,"w":33.003000000000014,"clr":0,"A":"left","R":[{"T":"Enter%20the%20total%20number%20of%20exemptions%20reported%20in%20the%20table%20above.%20Next%2C%20refer%20to%20the%20Poverty","S":27,"TS":[1,12,0,0]}]},{"x":66.322,"y":14.121,"w":1.0053,"clr":0,"A":"left","R":[{"T":"11%20","S":33,"TS":[1,12,1,0]}]},{"x":66.253,"y":15.921,"w":0.912,"clr":0,"A":"left","R":[{"T":"12","S":33,"TS":[1,12,1,0]}]},{"x":6.475,"y":17.44,"w":1.368,"clr":0,"A":"left","R":[{"T":"13.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.741,"y":17.44,"w":35.331000000000024,"clr":0,"A":"left","R":[{"T":"Multiply%20Line%2012%20by%20%24300.%20Enter%20the%20result%20on%20Line%2013%20and%20proceed%20to%20Line%2014.%20If%20you%20do%20not%20qualify%20","S":27,"TS":[1,12,0,0]}]},{"x":9.741,"y":18.002,"w":36.23500000000003,"clr":0,"A":"left","R":[{"T":"for%20the%20Tax%20Credit%20for%20Low-Income%20Individuals%20but%20claimed%20the%20Earned%20Income%20Credit%20on%20your%20federal%20","S":27,"TS":[1,12,0,0]}]},{"x":66.408,"y":18.565,"w":0.912,"clr":0,"A":"left","R":[{"T":"13","S":33,"TS":[1,12,1,0]}]},{"x":6.476,"y":19.521,"w":1.368,"clr":0,"A":"left","R":[{"T":"14.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.741,"y":19.521,"w":35.417000000000016,"clr":0,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Earned%20Income%20Credit%20claimed%20on%20your%20federal%20return.%20If%20you%20did%20not%20claim%20the%20","S":27,"TS":[1,12,0,0]}]},{"x":66.253,"y":20.196,"w":0.912,"clr":0,"A":"left","R":[{"T":"14","S":33,"TS":[1,12,1,0]}]},{"x":66.253,"y":21.996,"w":0.912,"clr":0,"A":"left","R":[{"T":"15","S":33,"TS":[1,12,1,0]}]},{"x":66.253,"y":23.796,"w":0.912,"clr":0,"A":"left","R":[{"T":"16","S":33,"TS":[1,12,1,0]}]},{"x":6.476,"y":25.033,"w":1.368,"clr":0,"A":"left","R":[{"T":"17.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.741,"y":25.033,"w":35.69600000000003,"clr":0,"A":"left","R":[{"T":"Compare%20the%20amount%20on%20Line%2016%20above%20to%20the%20amount%20of%20tax%20on%20Line%2017%20of%20Form%20760%20and%20enter%20the%20","S":27,"TS":[1,12,0,0]}]},{"x":66.408,"y":25.708,"w":0.912,"clr":0,"A":"left","R":[{"T":"17","S":33,"TS":[1,12,1,0]}]},{"oc":"#d2d2d2","x":88.624,"y":18.587,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.626,"y":18.359,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.606,"y":18.426,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.624,"y":20.332,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.626,"y":20.104,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.606,"y":20.171,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.624,"y":22.309,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.626,"y":22.081,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.606,"y":22.148,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.624,"y":23.838,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.626,"y":23.61,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.606,"y":23.677,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.624,"y":25.78,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.626,"y":25.552,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.606,"y":25.619,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":6.477,"y":28.433,"w":1.368,"clr":0,"A":"left","R":[{"T":"18.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":28.433,"w":17.136999999999997,"clr":0,"A":"left","R":[{"T":"Addition%20to%20tax.%20Fill%20in%20oval%20if%20addition%20came%20from","S":27,"TS":[1,12,0,0]}]},{"oc":"#6b6b6b","x":36.256,"y":28.433,"w":0.228,"clr":-1,"A":"left","R":[{"T":"%3A","S":27,"TS":[1,12,0,0]}]},{"x":62.165,"y":28.433,"w":0.912,"clr":0,"A":"left","R":[{"T":"18","S":33,"TS":[1,12,1,0]}]},{"x":62.165,"y":30.064,"w":0.912,"clr":0,"A":"left","R":[{"T":"19","S":33,"TS":[1,12,1,0]}]},{"x":62.165,"y":31.695,"w":0.912,"clr":0,"A":"left","R":[{"T":"20","S":33,"TS":[1,12,1,0]}]},{"x":58.328,"y":33.27,"w":2.2800000000000002,"clr":0,"A":"left","R":[{"T":"..........","S":27,"TS":[1,12,0,0]}]},{"x":62.165,"y":33.27,"w":0.912,"clr":0,"A":"left","R":[{"T":"21","S":33,"TS":[1,12,1,0]}]},{"x":9.743,"y":35.745,"w":6.518000000000001,"clr":0,"A":"left","R":[{"T":"See%20instructions.%20%20","S":27,"TS":[1,12,0,0]}]},{"x":46.009,"y":35.745,"w":1.368,"clr":0,"A":"left","R":[{"T":"22a","S":33,"TS":[1,12,1,0]}]},{"x":45.923,"y":37.455,"w":1.413,"clr":0,"A":"left","R":[{"T":"22b","S":33,"TS":[1,12,1,0]}]},{"x":45.923,"y":38.94,"w":1.368,"clr":0,"A":"left","R":[{"T":"22c","S":33,"TS":[1,12,1,0]}]},{"x":6.477,"y":40.29,"w":1.368,"clr":0,"A":"left","R":[{"T":"23.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":40.29,"w":16.046,"clr":0,"A":"left","R":[{"T":"If%20contributing%20to%20a%20Public%20School%20Foundation","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":40.965,"w":17.322,"clr":0,"A":"left","R":[{"T":"or%20a%20Public%20Library%20Foundation%2C%20enter%20the%20code%20%20%20","S":27,"TS":[1,12,0,0]}]},{"x":36.04,"y":40.965,"w":1.368,"clr":0,"A":"left","R":[{"T":"23a","S":33,"TS":[1,12,1,0]}]},{"x":9.743,"y":41.59,"w":14.997999999999996,"clr":0,"A":"left","R":[{"T":"for%20the%20foundation(s)%20and%20the%20contribution%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":42.215,"w":16.226999999999997,"clr":0,"A":"left","R":[{"T":"amount(s)%20in%20boxes%2023a%20-%2023c.%20If%20contributing%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":42.89,"w":16.499000000000002,"clr":0,"A":"left","R":[{"T":"to%20more%20than%203%20public%20school%20or%20public%20library%20%20","S":27,"TS":[1,12,0,0]}]},{"x":35.868,"y":42.89,"w":1.413,"clr":0,"A":"left","R":[{"T":"23b","S":33,"TS":[1,12,1,0]}]},{"x":9.743,"y":43.565,"w":14.585999999999997,"clr":0,"A":"left","R":[{"T":"foundations%2C%20see%20Form%20760%20instructions.%20","S":27,"TS":[1,12,0,0]}]},{"x":35.515,"y":44.24,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2023c","S":33,"TS":[1,12,1,0]}]},{"x":6.477,"y":45.477,"w":1.368,"clr":0,"A":"left","R":[{"T":"24.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":45.477,"w":25.711000000000002,"clr":0,"A":"left","R":[{"T":"Total%20Adjustments%20(add%20Lines%2018%2C%2019%2C%2020%2C%2021%2C%2022a%20-22%20c%20and%2023a%20-%2023c).%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":46.152,"w":33.740000000000116,"clr":0,"A":"left","R":[{"T":"Enter%20here%20and%20on%20Line%2028%20of%20Form%20760.%20....................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":62.165,"y":46.152,"w":0.912,"clr":0,"A":"left","R":[{"T":"24","S":33,"TS":[1,12,1,0]}]},{"oc":"#d2d2d2","x":89.717,"y":28.434,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84,"y":28.309,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.398,"y":28.309,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":28.338,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.7,"y":30.143,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.823,"y":29.927,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.381,"y":29.927,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":29.91,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.717,"y":31.865000000000002,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84,"y":31.606,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.398,"y":31.606,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":31.631999999999998,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.717,"y":33.596,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84,"y":33.336,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.398,"y":33.336,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":33.365,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.717,"y":35.434,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.823,"y":35.462,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":35.497,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":89.717,"y":37.237,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.445,"y":37.268,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.717,"y":37.081,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.823,"y":37.081,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":37.113,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":89.717,"y":38.956,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.717,"y":38.949,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.824,"y":38.84,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":38.735,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.445,"y":40.677,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":89.718,"y":40.871,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":92.09,"y":40.713,"w":1.2520000000000002,"clr":1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.717,"y":40.921,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.823,"y":40.812,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.098,"y":40.706,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.523,"y":42.387,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":89.726,"y":42.537,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.832,"y":42.499,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.726,"y":42.437,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.098,"y":42.535,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.445,"y":44.162,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":89.727,"y":44.365,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":92.098,"y":44.194,"w":1.2520000000000002,"clr":1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.832,"y":44.146,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.726,"y":44.084,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.098,"y":44.181,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":12.89,"y":4.898,"w":4.831,"clr":-1,"A":"left","R":[{"T":"Family%20VAGI","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":35.742,"y":4.898,"w":2.233,"clr":-1,"A":"left","R":[{"T":"Name","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":55.132,"y":4.898,"w":9.206000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":74.318,"y":4.898,"w":3.2360000000000007,"clr":-1,"A":"left","R":[{"T":"Virginia%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":79.255,"y":4.898,"w":10.253,"clr":-1,"A":"left","R":[{"T":"Adjusted%20Gross%20Income%20(V","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":95.022,"y":4.898,"w":1.7309999999999999,"clr":-1,"A":"left","R":[{"T":"AGI)","S":33,"TS":[1,12,1,0]}]},{"x":12.286,"y":5.88,"w":1.2334,"clr":0,"A":"left","R":[{"T":"You","S":27,"TS":[1,12,0,0]}]},{"x":12.286,"y":6.789,"w":2.781,"clr":0,"A":"left","R":[{"T":"Spouse","S":27,"TS":[1,12,0,0]}]},{"x":12.286,"y":9.48,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]},{"x":12.286,"y":10.39,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":11.642,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"10.","S":27,"TS":[1,12,0,0]}]},{"x":12.286,"y":11.642,"w":1.823,"clr":0,"A":"left","R":[{"T":"Total","S":27,"TS":[1,12,0,0]}]},{"x":24.568,"y":11.299,"w":26.985000000000007,"clr":0,"A":"left","R":[{"T":"If%20more%20than%206%20exemptions%2C%20attach%20schedule%20listing%20the%20name%2C%20SSN%20%26%20VAGI.","S":27,"TS":[1,12,0,0]}]},{"x":24.568,"y":11.974,"w":3.9660000000000006,"clr":0,"A":"left","R":[{"T":"Enter%20total%20","S":27,"TS":[1,12,0,0]}]},{"x":30.703,"y":11.974,"w":4.831,"clr":0,"A":"left","R":[{"T":"Family%20VAGI","S":33,"TS":[1,12,1,0]}]},{"x":38.176,"y":11.974,"w":2.781000000000001,"clr":0,"A":"left","R":[{"T":"%20here.%20%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#d2d2d2","x":91.228,"y":12.337,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":82.231,"y":12.087,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.164,"y":12.087,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":6.853,"y":27.133,"w":16.264999999999997,"clr":1,"A":"left","R":[{"T":"Adjustments%20and%20Voluntary%20Contributions","S":-1,"TS":[1,15,1,0]}]},{"x":6.556,"y":3.137,"w":26.43000000000001,"clr":1,"A":"left","R":[{"T":"%20Credit%20for%20Low-Income%20Individuals%20or%20Virginia%20Earned%20Income%20Credit","S":-1,"TS":[1,15,1,0]}]},{"x":6.853,"y":27.133,"w":7.4270000000000005,"clr":1,"A":"left","R":[{"T":"Adjustments%20and%20V","S":-1,"TS":[1,15,1,0]}]},{"x":20.781,"y":27.133,"w":8.838,"clr":1,"A":"left","R":[{"T":"oluntary%20Contributions","S":-1,"TS":[1,15,1,0]}]},{"oc":"#d2d2d2","x":89.717,"y":46.387,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84,"y":46.127,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.398,"y":46.127,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.09,"y":46.157,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":9.742,"y":14.121,"w":29.12500000000001,"clr":0,"A":"left","R":[{"T":"Guidelines%20Table%20in%20the%20Form%20760%20instructions%20to%20see%20if%20you%20qualify%20for%20this%20credit.%20","S":27,"TS":[1,12,0,0]}]},{"x":54.439,"y":14.121,"w":7.523999999999998,"clr":0,"A":"left","R":[{"T":".................................","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":15.921,"w":1.368,"clr":0,"A":"left","R":[{"T":"12.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":15.921,"w":36.511000000000024,"clr":0,"A":"left","R":[{"T":"If%20you%20qualify%20for%20this%20credit%2C%20enter%20the%20number%20of%20personal%20exemptions%20reported%20on%20your%20Form%20760.%20.....","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":18.565,"w":36.56800000000013,"clr":0,"A":"left","R":[{"T":"return%2C%20enter%20%240%20and%20proceed%20to%20Line%2014.%20................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":20.196,"w":36.60900000000011,"clr":0,"A":"left","R":[{"T":"Earned%20Income%20Credit%20on%20your%20federal%20return%2C%20enter%20%240.%20.........................................................................","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":21.996,"w":1.368,"clr":0,"A":"left","R":[{"T":"15.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":21.996,"w":36.56600000000013,"clr":0,"A":"left","R":[{"T":"Multiply%20Line%2014%20by%2020%25%20(.20).%20................................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":23.796,"w":1.368,"clr":0,"A":"left","R":[{"T":"16.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":23.796,"w":36.61300000000013,"clr":0,"A":"left","R":[{"T":"Enter%20the%20greater%20of%20Line%2013%20or%20Line%2015%20above%20........................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":25.708,"w":36.604000000000035,"clr":0,"A":"left","R":[{"T":"lesser%20of%20the%20two%20amounts%20here%20and%20on%20Line%2021%20of%20Form%20760.%20This%20is%20your%20credit%20amount.%20.....................","S":27,"TS":[1,12,0,0]}]},{"x":40.337,"y":28.433,"w":4.329,"clr":0,"A":"left","R":[{"T":"Form%20760C%20","S":27,"TS":[1,12,0,0]}]},{"x":52.625,"y":28.433,"w":4.2379999999999995,"clr":0,"A":"left","R":[{"T":"Form%20760F%20","S":27,"TS":[1,12,0,0]}]},{"x":60.443,"y":28.433,"w":0.912,"clr":0,"A":"left","R":[{"T":"....","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":30.064,"w":1.368,"clr":0,"A":"left","R":[{"T":"19.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":30.064,"w":3.1910000000000007,"clr":0,"A":"left","R":[{"T":"Penalty.%20","S":27,"TS":[1,12,0,0]}]},{"x":23.148,"y":30.064,"w":6.974000000000001,"clr":0,"A":"left","R":[{"T":"Late%20Filing%20Penalty%20","S":27,"TS":[1,12,0,0]}]},{"x":41.709,"y":30.064,"w":7.020000000000001,"clr":0,"A":"left","R":[{"T":"Extension%20Penalty%20%20","S":27,"TS":[1,12,0,0]}]},{"x":54.082,"y":30.064,"w":5.244000000000001,"clr":0,"A":"left","R":[{"T":"%20......................","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":31.695,"w":1.368,"clr":0,"A":"left","R":[{"T":"20.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.743,"y":31.695,"w":33.78300000000011,"clr":0,"A":"left","R":[{"T":"Interest%20(interest%20accrued%20on%20the%20tax%20you%20owe).%20..........................................................................","S":27,"TS":[1,12,0,0]}]},{"x":21.996,"y":33.27,"w":23.48400000000004,"clr":0,"A":"left","R":[{"T":".......................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":33.27,"w":9.251,"clr":0,"A":"left","R":[{"T":"21.%20Consumer%E2%80%99s%20Use%20Tax.","S":27,"TS":[1,12,0,0]}]},{"x":6.477,"y":34.845,"w":10.119,"clr":0,"A":"left","R":[{"T":"22.%20Voluntary%20Contributions.","S":27,"TS":[1,12,0,0]}]},{"x":12.287,"y":8.577,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]},{"x":12.287,"y":7.702,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":320,"AM":1024,"x":37.331,"y":1.479,"w":21.431,"h":0.896,"TU":"Your SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPINFO","EN":0},"TI":321,"AM":0,"x":24.338,"y":6.027,"w":26.854,"h":0.833,"TU":"name_You"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TSSN","EN":0},"TI":322,"AM":0,"x":51.501,"y":6.027,"w":22.089,"h":0.833,"TU":"Social Security number_You"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPVAGI","EN":0},"TI":323,"AM":0,"x":73.9,"y":6.027,"w":24.812,"h":0.833,"TU":"Virginia Adjusted Gross Income (VAGI)_You"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPINFO","EN":0},"TI":324,"AM":0,"x":24.338,"y":6.935,"w":26.854,"h":0.833,"TU":"name_Spouse"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":325,"AM":0,"x":51.501,"y":6.935,"w":22.089,"h":0.833,"TU":"Social Security number_Spouse"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPVAGI","EN":0},"TI":326,"AM":0,"x":73.9,"y":6.935,"w":24.812,"h":0.833,"TU":"Virginia Adjusted Gross Income (VAGI)_Spouse"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_1_","EN":0},"TI":327,"AM":0,"x":24.338,"y":7.842,"w":26.854,"h":0.833,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_1_","EN":0},"TI":328,"AM":0,"x":51.501,"y":7.842,"w":22.089,"h":0.833,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_1_","EN":0},"TI":329,"AM":0,"x":73.9,"y":7.842,"w":24.812,"h":0.833,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_2_","EN":0},"TI":330,"AM":0,"x":24.338,"y":8.75,"w":26.854,"h":0.833,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_2_","EN":0},"TI":331,"AM":0,"x":51.501,"y":8.75,"w":22.089,"h":0.833,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_2_","EN":0},"TI":332,"AM":0,"x":73.9,"y":8.75,"w":24.812,"h":0.833,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_3_","EN":0},"TI":333,"AM":0,"x":24.264,"y":9.699,"w":26.854,"h":0.833,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_3_","EN":0},"TI":334,"AM":0,"x":51.427,"y":9.699,"w":22.089,"h":0.833,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_3_","EN":0},"TI":335,"AM":0,"x":73.826,"y":9.699,"w":24.812,"h":0.833,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_4_","EN":0},"TI":336,"AM":0,"x":24.264,"y":10.607,"w":26.854,"h":0.833,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_4_","EN":0},"TI":337,"AM":0,"x":51.427,"y":10.607,"w":22.089,"h":0.833,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_4_","EN":0},"TI":338,"AM":0,"x":73.826,"y":10.607,"w":24.812,"h":0.833,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TOTVAGI","EN":0},"TI":339,"AM":0,"x":78.414,"y":11.961,"w":11.621,"h":0.992,"TU":"Family VAGI","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXMPTNS","EN":0},"TI":340,"AM":0,"x":82.719,"y":14.085,"w":5.006,"h":0.911,"TU":"11. Enter the total number of exemptions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXMPTOT","EN":0},"TI":341,"AM":0,"x":82.644,"y":15.909,"w":5.006,"h":0.911,"TU":"12. Enter the number of personal exemptions "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXMPTAMT","EN":0},"TI":342,"AM":1024,"x":78.219,"y":18.242,"w":9.206,"h":0.884,"TU":"13. Multiply Line 12 by $300"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EIC","EN":0},"TI":343,"AM":0,"x":78.219,"y":19.964,"w":9.206,"h":0.884,"TU":"14. Enter the amount of EIC"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTIPLY","EN":0},"TI":344,"AM":1024,"x":78.219,"y":21.983,"w":9.206,"h":0.884,"TU":"15. multiply Line 14 by 20%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GREATER","EN":0},"TI":345,"AM":1024,"x":78.219,"y":23.502,"w":9.206,"h":0.884,"TU":"16. Enter the greater of Line 13 or Line 15 "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCR","EN":0},"TI":346,"AM":1024,"x":78.219,"y":25.433,"w":9.206,"h":0.884,"TU":"17. Enter the lesser of Line 16 or Line 21 of From 760"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VA760C"}},"id":{"Id":"Add_VA760C","EN":0},"TI":348,"AM":0,"x":40.952,"y":29.196,"w":6.386,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VA760F"}},"id":{"Id":"Add_VA760F","EN":0},"TI":350,"AM":0,"x":52.808,"y":29.115,"w":6.386,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":351,"AM":1024,"x":66.98,"y":28.233,"w":21.619,"h":0.903,"TU":"18. addition to tax"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":352,"AM":0,"x":66.905,"y":29.83,"w":21.619,"h":0.903,"TU":"19. penalty"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":355,"AM":0,"x":66.905,"y":31.532,"w":21.619,"h":0.903,"TU":"20. Interest"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":356,"AM":0,"x":66.905,"y":33.294,"w":21.619,"h":0.93,"TU":"21. Consumer's Use Tax"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VOL_L24A_1_","EN":0},"TI":357,"AM":0,"x":51.359,"y":35.283,"w":4.014,"h":0.951,"PL":{"V":[" ","60 Virginia Nongame & Endangered Wildlife Program","61 Democratic Party","62 Republican Party","63 U.S. Olympic Committee","64 Virginia Housing Program","65 Department for Aging and Rehabilitative Services","66 Community Policing Fund","67 Virginia Arts Foundation","68 Open Space Recreation and Conservation Fund","71 Chesapeak Bay Restoration Fund","72 Family & Children's Trust Fund","73 Virginia's State Forests Fund","74 Virginia's Uninsured Medical Catastrophe Fund","76 Historic Resources Fund","78 Children of America Finding Hope, Inc.","81 Home Energy Assistance Fund","82 Virginia War Memorial Educational Foundation and National D-Day Memorial Foundation","84 Virginia Federation of Humane Societies","85 Virginia Tuition Assistance Grant Fund","86 Spay and Neuter Fund","88 Virginia Cancer Centers","90 Martin Luther King, Jr. Living History and Public Policy Center","92 Virginia Military Family Relief Fund (MFRF)","93 Celebrating Special Children, Inc.","00 Donating to more than 3 organizations"],"D":["no entry","60","61","62","63","64","65","66","67","68","71","72","73","74","76","78","81","82","84","85","86","88","90","92","93","00"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VOL_L24AA_1_","EN":0},"TI":358,"AM":0,"x":76.76,"y":35.37,"w":11.831,"h":0.934,"TU":"22a Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VOL_L24A_2_","EN":0},"TI":359,"AM":0,"x":51.423,"y":36.945,"w":4.014,"h":0.951,"PL":{"V":[" ","60 Virginia Nongame & Endangered Wildlife Program","61 Democratic Party","62 Republican Party","63 U.S. Olympic Committee","64 Virginia Housing Program","65 Department for Aging and Rehabilitative Services","66 Community Policing Fund","67 Virginia Arts Foundation","68 Open Space Recreation and Conservation Fund","71 Chesapeak Bay Restoration Fund","72 Family & Children's Trust Fund","73 Virginia's State Forests Fund","74 Virginia's Uninsured Medical Catastrophe Fund","76 Historic Resources Fund","78 Children of America Finding Hope, Inc.","81 Home Energy Assistance Fund","82 Virginia War Memorial Educational Foundation and National D-Day Memorial Foundation","84 Virginia Federation of Humane Societies","85 Virginia Tuition Assistance Grant Fund","86 Spay and Neuter Fund","88 Virginia Cancer Centers","90 Martin Luther King, Jr. Living History and Public Policy Center","92 Virginia Military Family Relief Fund (MFRF)","93 Celebrating Special Children, Inc.","00 Donating to more than 3 organizations"],"D":["no entry","60","61","62","63","64","65","66","67","68","71","72","73","74","76","78","81","82","84","85","86","88","90","92","93","00"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VOL_L24AA_2_","EN":0},"TI":360,"AM":0,"x":76.91,"y":37,"w":11.831,"h":0.934,"TU":"22b Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VOL_L24A_3_","EN":0},"TI":361,"AM":0,"x":51.328,"y":38.571,"w":4.014,"h":0.951,"PL":{"V":[" ","60 Virginia Nongame & Endangered Wildlife Program","61 Democratic Party","62 Republican Party","63 U.S. Olympic Committee","64 Virginia Housing Program","65 Department for Aging and Rehabilitative Services","66 Community Policing Fund","67 Virginia Arts Foundation","68 Open Space Recreation and Conservation Fund","71 Chesapeak Bay Restoration Fund","72 Family & Children's Trust Fund","73 Virginia's State Forests Fund","74 Virginia's Uninsured Medical Catastrophe Fund","76 Historic Resources Fund","78 Children of America Finding Hope, Inc.","81 Home Energy Assistance Fund","82 Virginia War Memorial Educational Foundation and National D-Day Memorial Foundation","84 Virginia Federation of Humane Societies","85 Virginia Tuition Assistance Grant Fund","86 Spay and Neuter Fund","88 Virginia Cancer Centers","90 Martin Luther King, Jr. Living History and Public Policy Center","92 Virginia Military Family Relief Fund (MFRF)","93 Celebrating Special Children, Inc.","00 Donating to more than 3 organizations"],"D":["no entry","60","61","62","63","64","65","66","67","68","71","72","73","74","76","78","81","82","84","85","86","88","90","92","93","00"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VOL_L24AA_3_","EN":0},"TI":362,"AM":0,"x":76.91,"y":38.645,"w":11.831,"h":0.954,"TU":"22c Amount"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:SchFound"}},"id":{"Id":"Look_Up","EN":0},"TI":363,"AM":0,"x":9.882,"y":44.305,"w":6.086,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCH_L25CA_1_","EN":0},"TI":364,"AM":0,"x":41.551,"y":40.597,"w":14.166,"h":0.964,"TU":"23a. Code","MV":"999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCH_L25CB_1_","EN":0},"TI":365,"AM":0,"x":76.91,"y":40.603,"w":11.831,"h":0.934,"TU":"23a Amount"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCH_L25CA_2_","EN":0},"TI":366,"AM":0,"x":41.551,"y":42.304,"w":14.166,"h":0.964,"TU":"23b.Code","MV":"999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCH_L25CB_2_","EN":0},"TI":367,"AM":0,"x":76.91,"y":42.429,"w":11.831,"h":0.934,"TU":"23b Amount"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCH_L25CA_3_","EN":0},"TI":368,"AM":0,"x":41.551,"y":44.075,"w":14.166,"h":0.964,"TU":"23c. Code","MV":"999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCH_L25CB_3_","EN":0},"TI":369,"AM":0,"x":76.91,"y":44.101,"w":11.831,"h":0.934,"TU":"23c Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":370,"AM":1024,"x":66.757,"y":46.048,"w":21.562,"h":0.934,"TU":"24. total adjustments"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20BX","EN":0},"TI":347,"AM":0,"x":37.969,"y":28.523,"w":2.475,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20BBOX","EN":0},"TI":349,"AM":0,"x":49.766,"y":28.555,"w":2.362,"h":0.833,"checked":false}],"id":{"Id":"L20BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BLPEN","EN":0},"TI":353,"AM":0,"x":19.556,"y":30.14,"w":2.588,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BEPEN","EN":0},"TI":354,"AM":0,"x":38.085,"y":30.13,"w":2.7,"h":0.833,"checked":false}],"id":{"Id":"LPENRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VAFED.content.txt b/test/data/va/form/VAFED.content.txt new file mode 100755 index 00000000..6173490e --- /dev/null +++ b/test/data/va/form/VAFED.content.txt @@ -0,0 +1,109 @@ +2013 +22. Business Locality Code + + +6. Car and truck expenses +2. Gross Receipts or Sales +4. Business Activity Code +5. Business Locality Code +SCHEDULE 2106 and/or SCHEDULE 2106-EZ INFORMATION +8. Number of miles you used your + vehicle for: +Business +10. Number of miles you used your + vehicle for: +Other +11. Number of miles you used your + vehicle for: +Business + + +12. Number of miles you used your + vehicle for: +Commuting + + +13. Number of miles you used your + vehicle for: +Other + +14. Percent of business use of + vehicle: +V +ehicle 1 + + +15. Percent of business use of + vehicle: +V +ehicle 2 + + +7. Inventory at end of year +1. Schedule Name +9. Number of miles you used your + vehicle for: +Commuting +3. Depreciation/ + Expense Deduction +16. Property Used more than 50% + Type of property + + +17. Date placed in service + + +18. Business/investment + use percentage + +19. Cost or other basis + +20. Depreciation deduction + +21. Elected section 179 cost + + + + + +First Schedule Info. +Second Schedule Info. + + + + + + + + + + + + + +Your First Name +Spouse' s First Name +Present Home Address (no. and street or rural route) +City, Town or Post Office +MI +MI +Last Name +Last Name +Suffix +Suffix +Your Social Security Number +Spouse' s Social Security Number +Locality Code +State +Z IP Code +SCHEDULE C, SCHEDULE C-EZ and/or SCHEDULE F INFORMATION + Virginia Schedule FED/CG + in a qualified business use: +% +% +% +% +% +% +SCHEDULE 4562 INFORMATION +----------------Page (0) Break---------------- diff --git a/test/data/va/form/VAFED.fields.json b/test/data/va/form/VAFED.fields.json new file mode 100755 index 00000000..20e5c03c --- /dev/null +++ b/test/data/va/form/VAFED.fields.json @@ -0,0 +1 @@ +[{"id":"APPROVED","type":"alpha","calc":true,"value":"Virginia Approved Form for Filing"},{"id":"FNAME","type":"alpha","calc":true,"value":""},{"id":"MI","type":"alpha","calc":true,"value":""},{"id":"LNAME","type":"alpha","calc":true,"value":""},{"id":"SUF","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"STFNAME","type":"alpha","calc":true,"value":""},{"id":"SPMI","type":"alpha","calc":true,"value":""},{"id":"SPLNAME","type":"alpha","calc":true,"value":""},{"id":"SPSUF","type":"alpha","calc":true,"value":""},{"id":"SSSN","type":"ssn","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"LCDTP","type":"alpha","calc":true,"value":""},{"id":"ADDR2","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"ST","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"SCHNMA","type":"alpha","calc":false,"value":""},{"id":"SCHNMB","type":"alpha","calc":false,"value":""},{"id":"S1GREC","type":"number","calc":false,"value":""},{"id":"S2GREC","type":"number","calc":false,"value":""},{"id":"S1DEPREC","type":"number","calc":false,"value":""},{"id":"S2DEPREC","type":"number","calc":false,"value":""},{"id":"S1BUSACT","type":"mask","calc":false,"value":""},{"id":"S2BUSACT","type":"mask","calc":false,"value":""},{"id":"S1BUSLOC","type":"mask","calc":false,"value":""},{"id":"S2BUSLOC","type":"mask","calc":false,"value":""},{"id":"S1CAREXP","type":"number","calc":false,"value":""},{"id":"S2CAREXP","type":"number","calc":false,"value":""},{"id":"S1INVENT","type":"number","calc":false,"value":""},{"id":"S2INVENT","type":"number","calc":false,"value":""},{"id":"S1BUSMI","type":"number","calc":false,"value":""},{"id":"S2BUSMI","type":"number","calc":false,"value":""},{"id":"S1COMMI","type":"number","calc":false,"value":""},{"id":"S2COMMI","type":"number","calc":false,"value":""},{"id":"S1OTHMI","type":"number","calc":false,"value":""},{"id":"S2OTHMI","type":"number","calc":false,"value":""},{"id":"S1BUSMI2","type":"number","calc":false,"value":""},{"id":"S2BUSMI2","type":"alpha","calc":false,"value":""},{"id":"S1COMMI2","type":"number","calc":false,"value":""},{"id":"S2COMMI2","type":"number","calc":false,"value":""},{"id":"S1OTHMI2","type":"number","calc":false,"value":""},{"id":"S2OTHMI2","type":"number","calc":false,"value":""},{"id":"L14A","type":"mask","calc":false,"value":""},{"id":"L14B","type":"mask","calc":false,"value":""},{"id":"L15A","type":"mask","calc":false,"value":""},{"id":"L15B","type":"mask","calc":false,"value":""},{"id":"S1PROP","type":"alpha","calc":false,"value":""},{"id":"S2PROP","type":"alpha","calc":false,"value":""},{"id":"S1DATE","type":"date","calc":false,"value":""},{"id":"S2DATE","type":"date","calc":false,"value":""},{"id":"L18A","type":"mask","calc":false,"value":""},{"id":"L18B","type":"mask","calc":false,"value":""},{"id":"S1COST","type":"number","calc":false,"value":""},{"id":"S2COST","type":"number","calc":false,"value":""},{"id":"S1DEP","type":"number","calc":false,"value":""},{"id":"S2DEP","type":"number","calc":false,"value":""},{"id":"S1SEC179","type":"number","calc":false,"value":""},{"id":"S2SEC179","type":"number","calc":false,"value":""},{"id":"S1LOC","type":"mask","calc":false,"value":""},{"id":"S2LOC","type":"mask","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VAFED.json b/test/data/va/form/VAFED.json new file mode 100755 index 00000000..3fc583d6 --- /dev/null +++ b/test/data/va/form/VAFED.json @@ -0,0 +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":"#cdcee8","x":0.004,"y":49.472,"w":0.375,"l":105.385}],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#010202","x":12.125,"y":2.012,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"oc":"#010202","x":5.938,"y":47.638,"w":12.061,"clr":-1,"A":"left","R":[{"T":"22.%20Business%20Locality%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":19.216,"w":12.228000000000005,"clr":-1,"A":"left","R":[{"T":"6.%20%20%20Car%20and%20truck%20expenses","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":13.25,"w":12.449000000000002,"clr":-1,"A":"left","R":[{"T":"2.%20%20%20Gross%20Receipts%20or%20Sales","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":16.25,"w":11.838000000000005,"clr":-1,"A":"left","R":[{"T":"4.%20%20%20Business%20Activity%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":17.75,"w":12.061,"clr":-1,"A":"left","R":[{"T":"5.%20%20%20Business%20Locality%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":30.827,"y":26.691,"w":28.560000000000002,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%202106%20and%2For%20SCHEDULE%202106-EZ%20INFORMATION","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.938,"y":21.544,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"8.%20%20%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":22.219,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.855,"y":22.219,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Business","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.938,"y":24.544,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"10.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":25.219,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.855,"y":25.219,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Other","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.938,"y":28.137,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"11.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":28.812,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.855,"y":28.812,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Business","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.938,"y":29.641,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"12.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":30.316,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.855,"y":30.316,"w":5.555,"clr":-1,"A":"left","R":[{"T":"Commuting","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":5.938,"y":31.141,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"13.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.938,"y":31.816000000000003,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":16.855,"y":31.816000000000003,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Other","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":5.938,"y":32.7,"w":13.730000000000004,"clr":-1,"A":"left","R":[{"T":"14.%20Percent%20of%20business%20use%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.938,"y":33.375,"w":5.6140000000000025,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":14.62,"y":33.375,"w":0.667,"clr":-1,"A":"left","R":[{"T":"V","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":15.567,"y":33.375,"w":3.6690000000000005,"clr":-1,"A":"left","R":[{"T":"ehicle%201","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":6.238,"y":34.138,"w":13.730000000000004,"clr":-1,"A":"left","R":[{"T":"15.%20Percent%20of%20business%20use%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":6.238,"y":34.813,"w":5.6140000000000025,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":14.921,"y":34.813,"w":0.667,"clr":-1,"A":"left","R":[{"T":"V","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":15.867999999999999,"y":34.813,"w":3.6690000000000005,"clr":-1,"A":"left","R":[{"T":"ehicle%202","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.938,"y":20.781,"w":12.174000000000005,"clr":-1,"A":"left","R":[{"T":"7.%20%20%20Inventory%20at%20end%20of%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":11.891,"w":8.782,"clr":-1,"A":"left","R":[{"T":"1.%20%20%20Schedule%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":23.041,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"9.%20%20%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":23.716,"w":6.781000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.425,"y":23.716,"w":5.555,"clr":-1,"A":"left","R":[{"T":"Commuting","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.938,"y":14.079,"w":7.559000000000001,"clr":-1,"A":"left","R":[{"T":"3.%20%20%20Depreciation%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":14.754,"w":10.339000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20Expense%20Deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937,"y":37.141,"w":15.674000000000007,"clr":-1,"A":"left","R":[{"T":"16.%20Property%20Used%20more%20than%2050%25%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.766,"y":38.653,"w":9.227000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20Type%20of%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.938,"y":40.1,"w":11.505000000000003,"clr":-1,"A":"left","R":[{"T":"17.%20Date%20placed%20in%20service","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.938,"y":40.953,"w":10.838000000000003,"clr":-1,"A":"left","R":[{"T":"18.%20Business%2Finvestment","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.938,"y":41.628,"w":8.561,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20use%20percentage","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.938,"y":43.185,"w":10.06,"clr":-1,"A":"left","R":[{"T":"19.%20Cost%20or%20other%20basis","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.956,"y":44.683,"w":11.895000000000007,"clr":-1,"A":"left","R":[{"T":"20.%20Depreciation%20deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":6.111,"y":46.16,"w":12.507000000000003,"clr":-1,"A":"left","R":[{"T":"21.%20Elected%20section%20179%20cost","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.136,"y":11.858,"w":9.558000000000002,"clr":-1,"A":"left","R":[{"T":"First%20Schedule%20Info.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":63.363,"y":11.858,"w":10.725000000000001,"clr":-1,"A":"left","R":[{"T":"Second%20Schedule%20Info.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.938,"y":3.016,"w":7.279000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20First%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":4.828,"w":9.336000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse'%20s%20First%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":6.578,"w":23.398,"clr":-1,"A":"left","R":[{"T":"Present%20Home%20Address%20(no.%20and%20street%20or%20rural%20route)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.938,"y":8.828,"w":11.059000000000001,"clr":-1,"A":"left","R":[{"T":"City%2C%20Town%20or%20Post%20Office","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.484,"y":3.016,"w":1.111,"clr":-1,"A":"left","R":[{"T":"MI","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.484,"y":4.703,"w":1.111,"clr":-1,"A":"left","R":[{"T":"MI","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":37.562,"y":3.016,"w":4.835,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":37.562,"y":4.578,"w":4.835,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.172,"y":3.016,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Suffix","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.172,"y":4.578,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Suffix","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.25,"y":3.016,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.25,"y":4.578,"w":14.894000000000004,"clr":-1,"A":"left","R":[{"T":"Spouse'%20s%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.344,"y":6.516,"w":6.058000000000001,"clr":-1,"A":"left","R":[{"T":"Locality%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":55.266,"y":8.828,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.515,"y":8.828,"w":0,"clr":-1,"A":"left","R":[{"T":"Z","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.608,"y":8.828,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"IP%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":27.264,"y":10.691,"w":32.501000000000005,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20C%2C%20SCHEDULE%20C-EZ%20and%2For%20SCHEDULE%20F%20INFORMATION","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":17.478,"y":2.012,"w":12.725999999999999,"clr":-1,"A":"left","R":[{"T":"%20Virginia%20Schedule%20FED%2FCG","S":-1,"TS":[0,16,1,0]}]},{"oc":"#010202","x":5.938,"y":37.816,"w":13.674000000000005,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"x":53.129,"y":33.251,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":53.129,"y":34.751,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":80.973,"y":34.751,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":80.973,"y":33.251,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":53.129,"y":41.438,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":80.973,"y":41.438,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":40.711,"y":36.391,"w":15.335,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%204562%20INFORMATION","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":371,"AM":1024,"x":67.903,"y":0.852,"w":36.313,"h":1.292,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":372,"AM":1024,"x":6.14,"y":3.984,"w":21.809,"h":1.029,"TU":"PrimaryFirstName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":373,"AM":1024,"x":28.868,"y":3.956,"w":3.119,"h":0.963,"TU":"PrimaryMI"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":374,"AM":1024,"x":34.356,"y":3.924,"w":25.872,"h":0.963,"TU":"PrimaryLastName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SUF","EN":0},"TI":375,"AM":1024,"x":63.585,"y":3.91,"w":3.118,"h":0.963,"TU":"PrimarySuffix"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":376,"AM":1024,"x":71.575,"y":3.877,"w":21.808,"h":1.029,"TU":"PrimarySSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STFNAME","EN":0},"TI":377,"AM":1024,"x":6.222,"y":5.824,"w":21.809,"h":1.029,"TU":"SpouseFirstName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPMI","EN":0},"TI":378,"AM":1024,"x":28.95,"y":5.797,"w":3.119,"h":0.963,"TU":"SpouseMI"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":379,"AM":1024,"x":34.438,"y":5.764,"w":25.871,"h":0.963,"TU":"SpouseLastName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPSUF","EN":0},"TI":380,"AM":1024,"x":63.667,"y":5.751,"w":3.119,"h":0.963,"TU":"SpouseSuffix"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":381,"AM":1024,"x":71.657,"y":5.718,"w":21.809,"h":1.029,"TU":"SpouseSSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":382,"AM":1024,"x":6.206,"y":7.471,"w":42.591,"h":0.833,"TU":"AddressLine1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCDTP","EN":0},"TI":383,"AM":1024,"x":63.765,"y":7.43,"w":3.119,"h":0.963,"TU":"Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":384,"AM":1024,"x":6.247,"y":8.272,"w":42.485,"h":0.898,"TU":"AddressLine2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":385,"AM":1024,"x":6.251,"y":9.656,"w":42.485,"h":0.898,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":386,"AM":1024,"x":55.549,"y":9.656,"w":3.867,"h":0.963,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":387,"AM":1024,"x":63.449,"y":9.623,"w":21.808,"h":1.029,"TU":"ZipCode"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCHNMA","EN":0},"TI":388,"AM":0,"x":50.446,"y":11.987,"w":3.119,"h":0.963,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoScheduleName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCHNMB","EN":0},"TI":389,"AM":0,"x":79.336,"y":11.91,"w":3.119,"h":0.963,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoScheduleName"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1GREC","EN":0},"TI":390,"AM":0,"x":36.126,"y":13.381,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoGrossReceiptsOrSales"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2GREC","EN":0},"TI":391,"AM":0,"x":63.926,"y":13.395,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoGrossReceiptsOrSales"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1DEPREC","EN":0},"TI":392,"AM":0,"x":36.104,"y":14.71,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoDeprecExpDeduct"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2DEPREC","EN":0},"TI":393,"AM":0,"x":63.904,"y":14.725,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoDeprecExpDeduct"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S1BUSACT","EN":0},"TI":394,"AM":0,"x":36.104,"y":16.361,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNAICSBusNAICS","MV":"maxl:6"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S2BUSACT","EN":0},"TI":395,"AM":0,"x":63.904,"y":16.403,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNAICSBusNAICS","MV":"maxl:6"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S1BUSLOC","EN":0},"TI":396,"AM":0,"x":36.104,"y":18.075,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoBusFIPS","MV":"999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S2BUSLOC","EN":0},"TI":397,"AM":0,"x":63.904,"y":18.09,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoBusFIPS","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1CAREXP","EN":0},"TI":398,"AM":0,"x":36.104,"y":19.388,"w":16.523,"h":0.836},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2CAREXP","EN":0},"TI":399,"AM":0,"x":63.904,"y":19.403,"w":16.523,"h":0.836},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1INVENT","EN":0},"TI":400,"AM":0,"x":36.276,"y":20.888,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoInventoryAtEnd"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2INVENT","EN":0},"TI":401,"AM":0,"x":64.076,"y":20.903,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoInventoryAtEnd"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1BUSMI","EN":0},"TI":402,"AM":0,"x":36.104,"y":22.2,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedBus"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2BUSMI","EN":0},"TI":403,"AM":0,"x":63.904,"y":22.215,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedBus"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1COMMI","EN":0},"TI":404,"AM":0,"x":36.104,"y":23.763,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedComu"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2COMMI","EN":0},"TI":405,"AM":0,"x":63.904,"y":23.778,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedComu"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1OTHMI","EN":0},"TI":406,"AM":0,"x":36.022,"y":25.075,"w":16.523,"h":0.836,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedOth"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2OTHMI","EN":0},"TI":407,"AM":0,"x":63.732,"y":25.09,"w":16.523,"h":0.836,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedOth"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1BUSMI2","EN":0},"TI":408,"AM":0,"x":36.321,"y":28.548,"w":16.523,"h":0.836,"TU":"Sch1InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedBus2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"S2BUSMI2","EN":0},"TI":409,"AM":0,"x":64.031,"y":28.562,"w":16.523,"h":0.836,"TU":"Sch2InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedBus2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1COMMI2","EN":0},"TI":410,"AM":0,"x":36.321,"y":30.235,"w":16.523,"h":0.836,"TU":"Sch1InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedComu2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2COMMI2","EN":0},"TI":411,"AM":0,"x":64.031,"y":30.25,"w":16.523,"h":0.836,"TU":"Sch2InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedComu2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1OTHMI2","EN":0},"TI":412,"AM":0,"x":36.321,"y":31.798,"w":16.523,"h":0.836,"TU":"Sch1InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedOth2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2OTHMI2","EN":0},"TI":413,"AM":0,"x":64.031,"y":31.812,"w":16.523,"h":0.836,"TU":"Sch2InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedOth2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14A","EN":0},"TI":414,"AM":0,"x":36.321,"y":33.423,"w":16.523,"h":0.836,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":415,"AM":0,"x":64.031,"y":33.437,"w":16.523,"h":0.836,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":416,"AM":0,"x":36.321,"y":34.923,"w":16.523,"h":0.836,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":417,"AM":0,"x":64.031,"y":34.937,"w":16.523,"h":0.836,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"S1PROP","EN":0},"TI":418,"AM":0,"x":36.493,"y":38.601,"w":16.523,"h":0.836,"TU":"Sch1InfoSch4562InfoPropUsedInQualBus"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"S2PROP","EN":0},"TI":419,"AM":0,"x":64.203,"y":38.616,"w":16.523,"h":0.836,"TU":"Sch2InfoSch4562InfoPropUsedInQualBus"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"S1DATE","EN":0},"TI":420,"AM":0,"x":36.493,"y":39.976,"w":16.523,"h":0.836,"TU":"Sch1InfoSch4562InfoDtPlacedInService","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"S2DATE","EN":0},"TI":421,"AM":0,"x":64.203,"y":39.958,"w":16.523,"h":0.836,"TU":"Sch2InfoSch4562InfoDtPlacedInService","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L18A","EN":0},"TI":422,"AM":0,"x":36.493,"y":41.601,"w":16.523,"h":0.836,"TU":"Sch1InfoSch4562InfoBusInvUsePercent1","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L18B","EN":0},"TI":423,"AM":0,"x":64.203,"y":41.616,"w":16.523,"h":0.836,"TU":"Sch2InfoSch4562InfoBusInvUsePercent1","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1COST","EN":0},"TI":424,"AM":0,"x":36.493,"y":43.164,"w":16.523,"h":0.836,"TU":"Sch1InfoSch4562InfoCostOrOthBasis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2COST","EN":0},"TI":425,"AM":0,"x":64.203,"y":43.178,"w":16.523,"h":0.836,"TU":"Sch2InfoSch4562InfoCostOrOthBasis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1DEP","EN":0},"TI":426,"AM":0,"x":36.493,"y":44.539,"w":16.523,"h":0.836,"TU":"Sch1InfoSch4562InfoDeprDeduct"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2DEP","EN":0},"TI":427,"AM":0,"x":64.203,"y":44.553,"w":16.523,"h":0.836,"TU":"Sch2InfoSch4562InfoDeprDeduct"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1SEC179","EN":0},"TI":428,"AM":0,"x":36.665,"y":46.039,"w":16.523,"h":0.836,"TU":"Sch1InfoSch4562InfoElectSec179Cost"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2SEC179","EN":0},"TI":429,"AM":0,"x":64.375,"y":46.053,"w":16.523,"h":0.836,"TU":"Sch2InfoSch4562InfoElectSec179Cost"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S1LOC","EN":0},"TI":430,"AM":0,"x":36.665,"y":47.601,"w":16.523,"h":0.836,"TU":"Sch1InfoSch4562InfoBusFIPS1","MV":"999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S2LOC","EN":0},"TI":431,"AM":0,"x":64.375,"y":47.616,"w":16.523,"h":0.836,"TU":"Sch2InfoSch4562InfoBusFIPS1","MV":"999"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VAOSC.content.txt b/test/data/va/form/VAOSC.content.txt new file mode 100755 index 00000000..ca90a59f --- /dev/null +++ b/test/data/va/form/VAOSC.content.txt @@ -0,0 +1,114 @@ + +2013 +V +irginia Schedule OSC +CREDIT FOR TAX PAID TO ANOTHER STATE + 1. + + +1. Single 2. Married Filing Jointly 3. Married Filing Separately 4. Other + 2. Enter the number below to identify the person claiming the credit ............................................. 2 + 1. You 2. Spouse 3. You and Spouse + 3. Qualifying taxable income on which the other state’s tax is based ............................................. 3 + 5. Qualifying tax liability owed to the other state. See instructions ................................................. 5 + 6. Identify the state and ATTACH a copy of the other state’s return ............................................... 6 + Form 763, divide line 4 by line 3. Compute to one decimal place, not to exceed 100%. For + example, 0.3163 becomes 31.6%. If claiming border, see instructions ..................................... 8 + line 5 by line 8 ............................................................................................................................. 9 + Form 763, enter the lesser of line 7 or line 9. Proceed to line 11 to compute another credit, + otherwise go to line 21. ............................................................................................................... 10 + 11. + + +1. Single 2. Married Filing Jointly 3. Married Filing Separately 4. Other + 12. Enter the number below to identify the person claiming the credit ............................................. 12 + 1. You 2. Spouse 3. You and Spouse + 13. Qualifying taxable income on which the other state’s tax is based ............................................. 13 + 14. Virginia Taxable Income. See instructions ................................................................................. 14 + 15. Qualifying tax liability owed to the other state. See instructions ................................................. 15 + 16. Identify the state and ATTACH a copy of the other state’s return ............................................... 16 + 17. Virginia Income Tax. See instructions ........................................................................................ 17 + Form 763, divide line 14 by line 13. Compute to one decimal place, not to exceed 100%. For + example, 0.3163 becomes 31.6%. If claiming border, see instructions ..................................... 18 + line 15 by line 18 ......................................................................................................................... 19 + Form 763, enter the lesser of line 17 or line 19. ........................................................................ 20 +Y +our Social Security Number +Check this box if claiming border state +Credit Computation - 1 + +Name(s) as shown on Virginia return +Y +ou must attach a copy of the return from each +state for which you are claiming credit +WHOLE + +DOLLARS + +ONL +Y +Credit Computation - 2 + +% + +% +00 +00 +00 +00 +00 +00 +00 +00 +00 +00 +00 +00 +Enter the number listed below to identify the filing status claimed on the other state’s tax return .. 1 + 7. Virginia Income Tax. See instructions ........................................................................................ 7 + 8. Income percentage. If filing Form 760 or Form 760PY, divide line 3 by line 4. If filing + 9. If filing Form 760 or Form 760PY, multiply line 7 by line 8. If filing Form 763, multiply + 10. Credit. If filing Form 760 or Form 760PY, enter the lesser of line 5 or line 9. If filing +Enter the number listed below to identify the filing status claimed on the other state’s tax return .. 11 + 18. Income percentage. If filing Form 760 or Form 760PY, divide line 13 by line 14. If filing + 19. If filing Form 760 or Form 760PY, multiply line 17 by line 18. If filing Form 763, multiply + 20. Credit. If fiing Form 760 or Form 760PY, enter the lesser of line 15 or line 19. If filing + 21. +1. Single 2. Married Filing Jointly 3. Married Filing Separately 4. Other + 22. Enter the number below to identify the person claiming the credit ............................................. 22 + 1. You 2. Spouse 3. You and Spouse + 23. Qualifying taxable income on which the other state’s tax is based ............................................. 23 +Credit Computation - 3 +00 +Enter the number listed below to identify the filing status claimed on the other state’s tax return .. 21 + 4. + +Virginia Taxable Income. See instructions + ............................................................................... +4 +----------------Page (0) Break---------------- +If claiming more than 3 credits, use additional Schedules OSC. + 24. Virginia Taxable Income. See instructions ................................................................................. 24 + 25. Qualifying tax liability owed to the other state. See instructions ................................................. 25 + 26. Identify the state and ATTACH a copy of the other state’s return ............................................... 26 + 27. Virginia Income Tax. See instructions ........................................................................................ 27 + Form 763, divide line 24 by line 23. Compute to one decimal place, not to exceed 100%. For + example, 0.3163 becomes 31.6%. If claiming border, see instructions ..................................... 28 + line 25 by line 28 ......................................................................................................................... 29 + Form 763, enter the lesser of line 27 or line 29. ........................................................................ 30 + 31. Total Credit. Enter the total of lines 10, 20 and 30 of Sch. OSC. Also enter on Form 760, line 22; + Form 760PY, line 24; or Form 763, line 24. ................................................................................ 31 +for Low Income Individuals or the Earned Income Tax Credit. Adjust line 31 to ensure it +does not exceed the limitation. +% +00 +00 +00 +00 +00 +00 + 28. Income percentage. If filing Form 760 or Form 760PY, divide line 23 by line 24. If filing + 29. If filing Form 760 or Form 760PY, multiply line 27 by line 28. If filing Form 763, multiply + 30. Credit. If fiing Form 760 or Form 760PY, enter the lesser of line 25 or line 29. If filing +Note: Schedule OSC, line 31, cannot exceed your tax liability minus the Tax Credit +----------------Page (1) Break---------------- diff --git a/test/data/va/form/VAOSC.fields.json b/test/data/va/form/VAOSC.fields.json new file mode 100755 index 00000000..00e8d75f --- /dev/null +++ b/test/data/va/form/VAOSC.fields.json @@ -0,0 +1 @@ +[{"id":"BORDERST","type":"box","calc":false,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"L1","type":"mask","calc":false,"value":""},{"id":"L2","type":"mask","calc":false,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":false,"value":""},{"id":"L6","type":"alpha","calc":false,"value":""},{"id":"L7","type":"number","calc":false,"value":""},{"id":"L8","type":"mask","calc":true,"value":""},{"id":"L9","type":"number","calc":true,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"mask","calc":false,"value":""},{"id":"L12","type":"mask","calc":false,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":false,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"alpha","calc":false,"value":""},{"id":"L17","type":"number","calc":false,"value":""},{"id":"L18","type":"mask","calc":true,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":true,"value":""},{"id":"L21","type":"mask","calc":false,"value":""},{"id":"L22","type":"mask","calc":false,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":false,"value":""},{"id":"L25","type":"number","calc":false,"value":""},{"id":"L26","type":"alpha","calc":false,"value":""},{"id":"L27","type":"number","calc":false,"value":""},{"id":"L28","type":"mask","calc":true,"value":""},{"id":"L29","type":"number","calc":true,"value":""},{"id":"L30","type":"number","calc":true,"value":""},{"id":"L41","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VAOSC.json b/test/data/va/form/VAOSC.json new file mode 100755 index 00000000..dd4cfb97 --- /dev/null +++ b/test/data/va/form/VAOSC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Sch OSC Web 09 06 12.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":43.768,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":43.785,"y":2.844,"w":6,"l":2.423},{"oc":"#d2d2d2","x":46.243,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":46.209,"y":2.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.718,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":48.684,"y":2.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":51.193,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":51.159,"y":2.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.668,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":53.634,"y":2.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":56.143,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":56.109,"y":2.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":58.618,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":58.584,"y":2.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":61.093,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":61.059,"y":2.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":63.568,"y":1.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":63.534,"y":2.844,"w":6,"l":2.475},{"x":6.6,"y":3.163,"w":0.75,"l":59.314},{"x":6.6,"y":4.944,"w":0.75,"l":59.314},{"oc":"#d2d2d2","x":67.847,"y":38.342,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":39.579,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":38.342,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":39.588,"w":6,"l":5.646},{"oc":"#d2d2d2","x":73.468,"y":38.354,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.864,"y":34.201,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":35.448,"w":6,"l":2.466},{"oc":"#d2d2d2","x":70.339,"y":34.201,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.305,"y":35.448,"w":6,"l":3.18},{"oc":"#d2d2d2","x":67.847,"y":6.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":7.357,"w":6,"l":3.163},{"oc":"#d2d2d2","x":67.847,"y":15.07,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.847,"y":16.317,"w":6,"l":2.441},{"oc":"#d2d2d2","x":70.322,"y":15.07,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.262,"y":16.317,"w":6,"l":3.223},{"oc":"#d2d2d2","x":67.847,"y":25.416,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.856,"y":26.601,"w":6,"l":3.145},{"oc":"#d2d2d2","x":67.847,"y":18.741,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":19.979,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":18.741,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.21,"y":19.979,"w":6,"l":5.732},{"oc":"#d2d2d2","x":73.433,"y":18.745,"w":6,"l":2.501},{"oc":"#d2d2d2","x":67.847,"y":27.388,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.856,"y":28.573,"w":6,"l":3.145},{"oc":"#d2d2d2","x":67.847,"y":8.242,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":9.426,"w":6,"l":3.163},{"oc":"#d2d2d2","x":87.613,"y":9.895,"w":6,"l":3.188},{"oc":"#d2d2d2","x":67.847,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":11.145,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":11.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":11.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":11.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":11.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":11.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":11.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":9.898,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":11.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":11.148,"w":6,"l":3.223},{"oc":"#d2d2d2","x":67.847,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":30.498,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":30.498,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":30.498,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":30.498,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":30.498,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":30.498,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":30.498,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":30.498,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.647,"y":29.251,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":30.495,"w":6,"l":3.205},{"oc":"#d2d2d2","x":87.613,"y":23.11,"w":6,"l":3.188},{"oc":"#d2d2d2","x":67.847,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":24.36,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":24.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":24.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":24.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":24.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":24.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":24.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":23.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":24.36,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":24.363,"w":6,"l":3.223},{"oc":"#d2d2d2","x":67.847,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":32.113,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":32.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":32.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":32.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":32.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":32.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":32.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":32.113,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.647,"y":30.866,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":32.11,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.847,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":37.051,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":37.051,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":37.051,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":37.051,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":37.051,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":37.051,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":37.051,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":37.051,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.647,"y":35.804,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":37.048,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.847,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":41.426,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":41.426,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":41.426,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":41.426,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":41.426,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":41.426,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":41.426,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":41.426,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.647,"y":40.179,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":41.423,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.873,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.865,"y":43.279,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.348,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.314,"y":43.279,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.823,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.789,"y":43.279,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.298,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.264,"y":43.279,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.773,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.739,"y":43.279,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.248,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.214,"y":43.279,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.723,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.689,"y":43.279,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.198,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.164,"y":43.279,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.673,"y":42.032,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.613,"y":43.276,"w":6,"l":3.205},{"oc":"#d2d2d2","x":87.613,"y":13.375,"w":6,"l":3.188},{"oc":"#d2d2d2","x":67.847,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":14.625,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":14.625,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":14.625,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":14.625,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":14.625,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":14.625,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":14.625,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":13.378,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":14.625,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":14.628,"w":6,"l":3.223},{"oc":"#d2d2d2","x":87.613,"y":16.688,"w":6,"l":3.188},{"oc":"#d2d2d2","x":67.847,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":17.938,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":17.938,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":17.938,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":17.938,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":17.938,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":17.938,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":17.938,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":16.691,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":17.938,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":17.941,"w":6,"l":3.223},{"oc":"#d2d2d2","x":87.613,"y":20.813,"w":6,"l":3.188},{"oc":"#d2d2d2","x":67.847,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":22.063,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":22.063,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":22.063,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":22.063,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":22.063,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":22.063,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":22.063,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":20.816,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":22.063,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":22.066,"w":6,"l":3.223},{"oc":"#d2d2d2","x":67.847,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":33.811,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":33.811,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":33.811,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":33.811,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":33.811,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":33.811,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":33.811,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":33.811,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.647,"y":32.564,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":33.808,"w":6,"l":3.205},{"oc":"#d2d2d2","x":87.613,"y":11.594,"w":6,"l":3.188},{"oc":"#d2d2d2","x":67.847,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":12.844,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.322,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":12.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.797,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":12.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.272,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":12.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.747,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":12.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.222,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":12.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.697,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":12.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.172,"y":11.597,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":12.844,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":12.847,"w":6,"l":3.223},{"oc":"#d2d2d2","x":68.019,"y":44.354,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.028,"y":45.538,"w":6,"l":3.145},{"oc":"#d2d2d2","x":68.019,"y":46.326,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.028,"y":47.51,"w":6,"l":3.145},{"oc":"#d2d2d2","x":68.019,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.839,"y":49.435,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.494,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.288,"y":49.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.969,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.763,"y":49.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.444,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.238,"y":49.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.919,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.713,"y":49.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.394,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.188,"y":49.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.869,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.663,"y":49.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.344,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.138,"y":49.435,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.819,"y":48.188,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.587,"y":49.432,"w":6,"l":3.205}],"VLines":[{"oc":"#d2d2d2","x":44.103,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":46.578,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":49.053,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":51.528,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":54.003,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":56.478,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":58.953,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":61.428,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":63.903,"y":1.475,"w":6,"l":1.35},{"oc":"#d2d2d2","x":66.301,"y":1.472,"w":6,"l":1.494},{"x":6.6,"y":3.163,"w":0.75,"l":1.781},{"x":65.914,"y":3.163,"w":0.75,"l":1.781},{"oc":"#d2d2d2","x":68.182,"y":38.22,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":38.22,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":38.22,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.599,"y":38.398,"w":6,"l":1.269},{"oc":"#d2d2d2","x":68.199,"y":34.079,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.674,"y":34.079,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.149,"y":34.079,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":6.06,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":6.045,"w":6,"l":1.366},{"oc":"#d2d2d2","x":68.182,"y":14.948,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":14.948,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":14.948,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":25.304,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":25.295,"w":6,"l":1.359},{"oc":"#d2d2d2","x":68.182,"y":18.62,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":18.62,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":18.62,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.599,"y":18.798,"w":6,"l":1.269},{"oc":"#d2d2d2","x":68.182,"y":27.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":27.266,"w":6,"l":1.359},{"oc":"#d2d2d2","x":68.182,"y":8.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":8.12,"w":6,"l":1.359},{"oc":"#d2d2d2","x":68.182,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":9.776,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":29.129,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":22.992,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":30.745,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":35.682,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":40.057,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.208,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.683,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.158,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.633,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.108,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.583,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.058,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.533,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.008,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.483,"y":41.91,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":13.257,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":16.569,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":20.694,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":32.443,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.182,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":11.476,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.354,"y":44.242,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.829,"y":44.232,"w":6,"l":1.359},{"oc":"#d2d2d2","x":68.354,"y":46.213,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.829,"y":46.204,"w":6,"l":1.359},{"oc":"#d2d2d2","x":68.182,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.657,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.132,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.607,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.082,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.557,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.032,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.507,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.982,"y":48.066,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.457,"y":48.066,"w":6,"l":1.35}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":5.818,"y":5.169,"w":28.213,"h":0.9,"clr":-1},{"oc":"#c9c9c9","x":72.876,"y":5.947,"w":21.83,"h":0.9,"clr":-1},{"oc":"#c9c9c9","x":5.818,"y":24.838,"w":28.213,"h":0.9,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":10.776,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":10.757,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":30.129,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":30.11,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":23.991,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":23.973,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":31.745,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":31.726,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":36.682,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":36.663,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":41.057,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":41.038,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.156,"y":42.91,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.714,"y":42.892,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":14.257,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":14.238,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":17.569,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":17.55,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":21.694,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":21.675,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":33.443,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":33.424,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":12.476,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":12.457,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c9c9c9","x":5.99,"y":43.775,"w":28.213,"h":0.9,"clr":-1},{"oc":"#d2d2d2","x":82.13,"y":49.066,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.688,"y":49.048,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"x":5.995,"y":1.129,"w":1.596,"clr":0,"A":"left","R":[{"T":"2013%20","S":-1,"TS":[1,22,1,0]}]},{"x":12.344,"y":1.129,"w":0.667,"clr":0,"A":"left","R":[{"T":"V","S":-1,"TS":[0,16,1,0]}]},{"x":13.682,"y":1.129,"w":10.169999999999998,"clr":0,"A":"left","R":[{"T":"irginia%20Schedule%20OSC","S":-1,"TS":[0,16,1,0]}]},{"x":6.14,"y":2.052,"w":17.631,"clr":0,"A":"left","R":[{"T":"CREDIT%20FOR%20TAX%20PAID%20TO%20ANOTHER%20STATE","S":-1,"TS":[1,16,1,0]}]},{"x":5.843,"y":6.485,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%201.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":7.16,"w":3.419,"clr":0,"A":"left","R":[{"T":"1.%20Single%20","S":27,"TS":[1,12,0,0]}]},{"x":14.933,"y":7.16,"w":8.658000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Married%20Filing%20Jointly%20","S":27,"TS":[1,12,0,0]}]},{"x":29.405,"y":7.16,"w":10.254000000000001,"clr":0,"A":"left","R":[{"T":"3.%20Married%20Filing%20Separately%20","S":27,"TS":[1,12,0,0]}]},{"x":47.74,"y":7.16,"w":2.963,"clr":0,"A":"left","R":[{"T":"4.%20Other","S":27,"TS":[1,12,0,0]}]},{"x":6.196,"y":8.398,"w":0.912,"clr":0,"A":"left","R":[{"T":"2.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":8.398,"w":34.55500000000007,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20below%20to%20identify%20the%20person%20claiming%20the%20credit%20.............................................%202","S":27,"TS":[1,12,0,0]}]},{"x":11.675,"y":9.073,"w":2.599,"clr":0,"A":"left","R":[{"T":"1.%20You%20","S":27,"TS":[1,12,0,0]}]},{"x":23.32,"y":9.073,"w":3.9210000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":39.157,"y":9.073,"w":6.976000000000002,"clr":0,"A":"left","R":[{"T":"3.%20You%20and%20Spouse","S":27,"TS":[1,12,0,0]}]},{"x":6.196,"y":10.31,"w":0.912,"clr":0,"A":"left","R":[{"T":"3.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":10.31,"w":34.69200000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20other%20state%E2%80%99s%20tax%20is%20based%20.............................................%203","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":13.55,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%205.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578,"y":13.55,"w":34.60100000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20tax%20liability%20owed%20to%20the%20other%20state.%20See%20instructions%20.................................................%205","S":27,"TS":[1,12,0,0]}]},{"x":6.196,"y":15.17,"w":0.912,"clr":0,"A":"left","R":[{"T":"6.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":15.17,"w":34.967000000000084,"clr":0,"A":"left","R":[{"T":"Identify%20the%20state%20and%20ATTACH%20a%20copy%20of%20the%20other%20state%E2%80%99s%20return%20...............................................%206%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":18.421,"w":32.72800000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20divide%20line%204%20by%20line%203.%20Compute%20to%20one%20decimal%20place%2C%20not%20to%20exceed%20100%25.%20For%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":19.096,"w":34.64500000000006,"clr":0,"A":"left","R":[{"T":"example%2C%200.3163%20becomes%2031.6%25.%20If%20claiming%20border%2C%20see%20instructions%20%20.....................................%208","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":21.29,"w":34.65400000000011,"clr":0,"A":"left","R":[{"T":"line%205%20by%20line%208%20.............................................................................................................................%209","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":22.921,"w":32.91100000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20enter%20the%20lesser%20of%20line%207%20or%20line%209.%20Proceed%20to%20line%2011%20to%20compute%20another%20credit%2C%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":23.596,"w":35.10900000000012,"clr":0,"A":"left","R":[{"T":"otherwise%20go%20to%20line%2021.%20...............................................................................................................%2010","S":27,"TS":[1,12,0,0]}]},{"x":5.537,"y":25.712,"w":1.824,"clr":0,"A":"left","R":[{"T":"%2011.%20%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":26.387,"w":3.419,"clr":0,"A":"left","R":[{"T":"1.%20Single%20","S":27,"TS":[1,12,0,0]}]},{"x":14.933,"y":26.387,"w":8.658000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Married%20Filing%20Jointly%20","S":27,"TS":[1,12,0,0]}]},{"x":29.405,"y":26.387,"w":10.254000000000001,"clr":0,"A":"left","R":[{"T":"3.%20Married%20Filing%20Separately%20","S":27,"TS":[1,12,0,0]}]},{"x":47.74,"y":26.387,"w":2.963,"clr":0,"A":"left","R":[{"T":"4.%20Other","S":27,"TS":[1,12,0,0]}]},{"x":5.488,"y":27.625,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2012.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578,"y":27.625,"w":35.011000000000074,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20below%20to%20identify%20the%20person%20claiming%20the%20credit%20.............................................%2012","S":27,"TS":[1,12,0,0]}]},{"x":11.675,"y":28.3,"w":2.599,"clr":0,"A":"left","R":[{"T":"1.%20You%20","S":27,"TS":[1,12,0,0]}]},{"x":23.32,"y":28.3,"w":3.9210000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":39.157,"y":28.3,"w":7.2040000000000015,"clr":0,"A":"left","R":[{"T":"3.%20You%20and%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":5.488,"y":29.537,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2013.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578,"y":29.537,"w":35.14800000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20other%20state%E2%80%99s%20tax%20is%20based%20.............................................%2013","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":31.157,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2014.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.931,"y":31.157,"w":35.15000000000013,"clr":0,"A":"left","R":[{"T":"Virginia%20Taxable%20Income.%20%20See%20instructions%20.................................................................................%2014","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":32.777,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2015.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.931,"y":32.777,"w":35.05700000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20tax%20liability%20owed%20to%20the%20other%20state.%20See%20instructions%20.................................................%2015","S":27,"TS":[1,12,0,0]}]},{"x":5.488,"y":34.397,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2016.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578,"y":34.397,"w":35.195000000000086,"clr":0,"A":"left","R":[{"T":"Identify%20the%20state%20and%20ATTACH%20a%20copy%20of%20the%20other%20state%E2%80%99s%20return%20...............................................%2016","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":36.017,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2017.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.931,"y":36.017,"w":35.196000000000126,"clr":0,"A":"left","R":[{"T":"Virginia%20Income%20Tax.%20%20See%20instructions%20........................................................................................%2017","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":37.93,"w":33.64000000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20divide%20line%2014%20by%20line%2013.%20Compute%20to%20one%20decimal%20place%2C%20not%20to%20exceed%20100%25.%20For%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":38.605,"w":35.10100000000006,"clr":0,"A":"left","R":[{"T":"example%2C%200.3163%20becomes%2031.6%25.%20If%20claiming%20border%2C%20see%20instructions%20%20.....................................%2018","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":40.517,"w":35.11000000000012,"clr":0,"A":"left","R":[{"T":"line%2015%20by%20line%2018%20.........................................................................................................................%2019","S":27,"TS":[1,12,0,0]}]},{"x":8.58,"y":42.43,"w":35.01400000000012,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20enter%20the%20lesser%20of%20line%2017%20or%20line%2019.%20%20........................................................................%2020","S":27,"TS":[1,12,0,0]}]},{"oc":"#c1c1c1","x":47.22,"y":0.556,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":47.951,"y":0.556,"w":9.979999999999999,"clr":-1,"A":"left","R":[{"T":"our%20Social%20Security%20Number","S":27,"TS":[1,12,0,0]}]},{"x":34.285,"y":5.302,"w":14.171999999999997,"clr":0,"A":"left","R":[{"T":"Check%20this%20box%20if%20claiming%20border%20state","S":-1,"TS":[1,14.6941,1,0]}]},{"oc":"#231e21","x":7.055,"y":5.102,"w":8.838000000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20Computation%20-%201","S":-1,"TS":[1,16,1,0]}]},{"x":6.501,"y":2.941,"w":13.307,"clr":0,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":27,"TS":[1,12,0,0]}]},{"x":67.475,"y":3.838,"w":0.666,"clr":0,"A":"left","R":[{"T":"Y","S":3,"TS":[0,12,0,0]}]},{"x":68.363,"y":3.838,"w":20.408999999999995,"clr":0,"A":"left","R":[{"T":"ou%20must%20attach%20a%20copy%20of%20the%20return%20from%20each%20","S":3,"TS":[0,12,0,0]}]},{"x":70.069,"y":4.513,"w":17.006000000000004,"clr":0,"A":"left","R":[{"T":"state%20for%20which%20you%20are%20claiming%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":73.126,"y":5.87,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"WHOLE","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":80.063,"y":5.87,"w":4.832999999999999,"clr":-1,"A":"left","R":[{"T":"DOLLARS","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":88.872,"y":5.87,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"ONL","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":92.273,"y":5.87,"w":0.667,"clr":-1,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":7.055,"y":24.752,"w":8.838000000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20Computation%20-%202","S":-1,"TS":[1,16,1,0]}]},{"oc":"#c1c1c1","x":75.933,"y":38.754,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,15,1,0]}]},{"oc":"#c1c1c1","x":76.182,"y":19.234,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,15,1,0]}]},{"oc":"#c9c9c9","x":92.479,"y":10.284,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.574,"y":29.675,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.599,"y":23.517,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.574,"y":31.36,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.574,"y":36.243,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.574,"y":40.723,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.6,"y":42.317,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.665,"y":13.694,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.754,"y":17.095,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.754,"y":21.264,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.578,"y":33.025,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.479,"y":11.984,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"x":8.581,"y":6.485,"w":35.60000000000003,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20listed%20below%20to%20identify%20the%20filing%20status%20claimed%20on%20the%20other%20state%E2%80%99s%20tax%20return%20..%201","S":-1,"TS":[1,11.73,0,0]}]},{"x":5.488,"y":16.79,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%207.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.58,"y":16.79,"w":34.74000000000012,"clr":0,"A":"left","R":[{"T":"Virginia%20Income%20Tax.%20%20See%20instructions%20........................................................................................%207","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":17.746,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%208.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578,"y":17.746,"w":30.721,"clr":0,"A":"left","R":[{"T":"Income%20percentage.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20divide%20line%203%20by%20line%204.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.328,"y":20.615,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%209.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.1,"y":20.615,"w":30.62600000000001,"clr":0,"A":"left","R":[{"T":"If%20filing%20Form%20760%20or%20Form%20760PY%2C%20multiply%20line%207%20by%20line%208.%20If%20filing%20Form%20763%2C%20multiply%20","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":22.246,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2010.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.931,"y":22.246,"w":30.401000000000007,"clr":0,"A":"left","R":[{"T":"Credit.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20%20enter%20the%20lesser%20of%20line%205%20or%20line%209.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":25.712,"w":36.05600000000003,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20listed%20below%20to%20identify%20the%20filing%20status%20claimed%20on%20the%20other%20state%E2%80%99s%20tax%20return%20..%2011","S":-1,"TS":[1,11.73,0,0]}]},{"x":5.487,"y":37.255,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2018.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.931,"y":37.255,"w":31.633,"clr":0,"A":"left","R":[{"T":"Income%20percentage.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20divide%20line%2013%20by%20line%2014.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.328,"y":39.842,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2019.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.453,"y":39.842,"w":31.538000000000007,"clr":0,"A":"left","R":[{"T":"If%20filing%20Form%20760%20or%20Form%20760PY%2C%20multiply%20line%2017%20by%20line%2018.%20If%20filing%20Form%20763%2C%20multiply%20","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":41.755,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2020.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.931,"y":41.755,"w":31.131000000000004,"clr":0,"A":"left","R":[{"T":"Credit.%20%20If%20fiing%20Form%20760%20or%20Form%20760PY%2C%20%20enter%20the%20lesser%20of%20line%2015%20or%20line%2019.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.709,"y":44.65,"w":1.824,"clr":0,"A":"left","R":[{"T":"%2021.%20%20","S":27,"TS":[1,12,0,0]}]},{"x":8.753,"y":45.324,"w":3.419,"clr":0,"A":"left","R":[{"T":"1.%20Single%20","S":27,"TS":[1,12,0,0]}]},{"x":15.104,"y":45.324,"w":8.658000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Married%20Filing%20Jointly%20","S":27,"TS":[1,12,0,0]}]},{"x":29.577,"y":45.324,"w":10.254000000000001,"clr":0,"A":"left","R":[{"T":"3.%20Married%20Filing%20Separately%20","S":27,"TS":[1,12,0,0]}]},{"x":47.912,"y":45.324,"w":2.963,"clr":0,"A":"left","R":[{"T":"4.%20Other","S":27,"TS":[1,12,0,0]}]},{"x":5.659,"y":46.562,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2022.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.75,"y":46.562,"w":35.011000000000074,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20below%20to%20identify%20the%20person%20claiming%20the%20credit%20.............................................%2022","S":27,"TS":[1,12,0,0]}]},{"x":11.847,"y":47.237,"w":2.599,"clr":0,"A":"left","R":[{"T":"1.%20You%20","S":27,"TS":[1,12,0,0]}]},{"x":23.492,"y":47.237,"w":3.9210000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":39.329,"y":47.237,"w":7.2040000000000015,"clr":0,"A":"left","R":[{"T":"3.%20You%20and%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":5.488,"y":48.474,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2023.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578,"y":48.474,"w":35.14800000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20other%20state%E2%80%99s%20tax%20is%20based%20.............................................%2023","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":7.227,"y":43.689,"w":8.382000000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20Computation%20-%203","S":-1,"TS":[1,16,1,0]}]},{"oc":"#c9c9c9","x":92.574,"y":48.612,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"x":8.753,"y":44.65,"w":36.05600000000003,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20listed%20below%20to%20identify%20the%20filing%20status%20claimed%20on%20the%20other%20state%E2%80%99s%20tax%20return%20..%2021","S":-1,"TS":[1,11.73,0,0]}]},{"x":5.488,"y":11.93,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%20%204.","S":27,"TS":[1,12,0,0]}]},{"x":8.579,"y":11.93,"w":15.085999999999999,"clr":0,"A":"left","R":[{"T":"Virginia%20Taxable%20Income.%20See%20instructions","S":27,"TS":[1,12,0,0]}]},{"x":32.05,"y":11.903,"w":18.240000000000006,"clr":0,"A":"left","R":[{"T":"%20...............................................................................","S":-1,"TS":[1,12.3589,0,0]}]},{"x":61.528,"y":11.93,"w":0.456,"clr":0,"A":"left","R":[{"T":"4","S":27,"TS":[1,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":432,"AM":1024,"x":44.574,"y":1.845,"w":21.469,"h":0.923,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":433,"AM":1024,"x":6.791,"y":3.817,"w":59.029,"h":1.147,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":435,"AM":0,"x":68.522,"y":6.419,"w":1.959,"h":0.872,"MV":"9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":436,"AM":0,"x":68.549,"y":8.45,"w":1.819,"h":0.903,"MV":"9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":437,"AM":0,"x":68.55,"y":10.118,"w":21.647,"h":1.046},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":438,"AM":0,"x":68.55,"y":11.82,"w":21.647,"h":0.934},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":439,"AM":0,"x":68.55,"y":13.598,"w":21.647,"h":0.954},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":440,"AM":0,"x":68.316,"y":15.178,"w":6.445,"h":1.035,"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":"L7","EN":0},"TI":441,"AM":0,"x":68.55,"y":16.945,"w":21.647,"h":0.944},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":442,"AM":1024,"x":68.55,"y":18.937,"w":6.797,"h":0.988,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":443,"AM":1024,"x":68.55,"y":21.074,"w":21.647,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":444,"AM":1024,"x":68.55,"y":23.346,"w":21.647,"h":0.954,"TU":"10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":445,"AM":0,"x":68.499,"y":25.626,"w":1.96,"h":0.872,"TU":"11","MV":"9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":446,"AM":0,"x":68.526,"y":27.595,"w":1.819,"h":0.903,"TU":"12","MV":"9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":447,"AM":0,"x":68.527,"y":29.501,"w":21.647,"h":0.934},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":448,"AM":0,"x":68.527,"y":31.09,"w":21.647,"h":0.934},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":449,"AM":0,"x":68.527,"y":32.805,"w":21.647,"h":0.954},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":450,"AM":0,"x":68.092,"y":34.208,"w":6.531,"h":1.171,"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":"L17","EN":0},"TI":451,"AM":0,"x":68.527,"y":36.028,"w":21.647,"h":0.944},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":452,"AM":1024,"x":68.527,"y":38.574,"w":6.797,"h":0.934,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":453,"AM":1024,"x":68.527,"y":40.407,"w":21.647,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":454,"AM":1024,"x":68.527,"y":42.241,"w":21.647,"h":0.954},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":455,"AM":0,"x":68.522,"y":44.545,"w":1.96,"h":0.872,"MV":"9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":456,"AM":0,"x":68.549,"y":46.514,"w":1.819,"h":0.903,"MV":"9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":457,"AM":0,"x":68.55,"y":48.42,"w":21.647,"h":0.934}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BORDERST","EN":0},"TI":434,"AM":0,"x":61.194,"y":5.462,"w":3.15,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":67.849,"y":7.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.84,"y":9.079,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.324,"y":7.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.289,"y":9.088,"w":6,"l":5.646},{"oc":"#d2d2d2","x":73.469,"y":7.854,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.866,"y":3.701,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.84,"y":4.948,"w":6,"l":2.466},{"oc":"#d2d2d2","x":70.341,"y":3.701,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.306,"y":4.948,"w":6,"l":3.18},{"oc":"#d2d2d2","x":67.849,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.84,"y":1.613,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.324,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.289,"y":1.613,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.799,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.764,"y":1.613,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.274,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.239,"y":1.613,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.749,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.714,"y":1.613,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.224,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.189,"y":1.613,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.699,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.664,"y":1.613,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.174,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.139,"y":1.613,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.649,"y":0.366,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.588,"y":1.61,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.849,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.84,"y":6.551,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.324,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.289,"y":6.551,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.799,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.764,"y":6.551,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.274,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.239,"y":6.551,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.749,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.714,"y":6.551,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.224,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.189,"y":6.551,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.699,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.664,"y":6.551,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.174,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.139,"y":6.551,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.649,"y":5.304,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.588,"y":6.548,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.849,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.84,"y":10.926,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.324,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.289,"y":10.926,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.799,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.764,"y":10.926,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.274,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.239,"y":10.926,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.749,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.714,"y":10.926,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.224,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.189,"y":10.926,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.699,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.664,"y":10.926,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.174,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.139,"y":10.926,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.649,"y":9.679,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.588,"y":10.923,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.874,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.866,"y":12.779,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.349,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.315,"y":12.779,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.824,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.79,"y":12.779,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.299,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.265,"y":12.779,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.774,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.74,"y":12.779,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.249,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.215,"y":12.779,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.724,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.69,"y":12.779,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.199,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.165,"y":12.779,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.674,"y":11.532,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.614,"y":12.776,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.849,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.84,"y":3.311,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.324,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.289,"y":3.311,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.799,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.764,"y":3.311,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.274,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.239,"y":3.311,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.749,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.714,"y":3.311,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.224,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.189,"y":3.311,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.699,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.664,"y":3.311,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.174,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.139,"y":3.311,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.649,"y":2.064,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.588,"y":3.308,"w":6,"l":3.205},{"oc":"#d2d2d2","x":67.832,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":67.823,"y":14.718,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.307,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.272,"y":14.718,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.782,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":72.747,"y":14.718,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.257,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.222,"y":14.718,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.732,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":77.697,"y":14.718,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.207,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.172,"y":14.718,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.682,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":82.647,"y":14.718,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.157,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.122,"y":14.718,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.632,"y":13.471,"w":6,"l":2.475},{"oc":"#d2d2d2","x":87.572,"y":14.715,"w":6,"l":3.205}],"VLines":[{"oc":"#d2d2d2","x":68.184,"y":7.719,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.659,"y":7.719,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.134,"y":7.719,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.6,"y":7.898,"w":6,"l":1.269},{"oc":"#d2d2d2","x":68.201,"y":3.579,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.676,"y":3.579,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.151,"y":3.579,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.184,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.659,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.134,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.609,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.084,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.559,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.034,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.509,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.984,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.459,"y":0.244,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.184,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.659,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.134,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.609,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.084,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.559,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.034,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.509,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.984,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.459,"y":5.182,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.184,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.659,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.134,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.609,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.084,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.559,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.034,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.509,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.984,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.459,"y":9.557,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.21,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.685,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.16,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.635,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.11,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.585,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.06,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.535,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.01,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.485,"y":11.41,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.184,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.659,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.134,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.609,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.084,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.559,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.034,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.509,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.984,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.459,"y":1.942,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.167,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":70.642,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.117,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":75.592,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.067,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":80.542,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.017,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":85.492,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":87.967,"y":13.349,"w":6,"l":1.35},{"oc":"#d2d2d2","x":90.442,"y":13.349,"w":6,"l":1.35}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.131,"y":1.244,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.689,"y":1.226,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.131,"y":6.182,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.689,"y":6.163,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.131,"y":10.557,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.689,"y":10.538,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.157,"y":12.41,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.715,"y":12.391,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.131,"y":2.942,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.689,"y":2.924,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.114,"y":14.349,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":74.672,"y":14.33,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#231e21","x":29.377,"y":16.05,"w":23.926000000000005,"clr":-1,"A":"left","R":[{"T":"If%20claiming%20more%20than%203%20credits%2C%20use%20additional%20Schedules%20OSC.","S":-1,"TS":[1,15,1,0]}]},{"x":5.489,"y":0.657,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2024.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932,"y":0.657,"w":35.15000000000013,"clr":0,"A":"left","R":[{"T":"Virginia%20Taxable%20Income.%20%20See%20instructions%20.................................................................................%2024","S":27,"TS":[1,12,0,0]}]},{"x":5.489,"y":2.277,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2025.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932,"y":2.277,"w":35.05700000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20tax%20liability%20owed%20to%20the%20other%20state.%20See%20instructions%20.................................................%2025","S":27,"TS":[1,12,0,0]}]},{"x":5.489,"y":3.8970000000000002,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2026.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.58,"y":3.8970000000000002,"w":35.195000000000086,"clr":0,"A":"left","R":[{"T":"Identify%20the%20state%20and%20ATTACH%20a%20copy%20of%20the%20other%20state%E2%80%99s%20return%20...............................................%2026","S":27,"TS":[1,12,0,0]}]},{"x":5.489,"y":5.517,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2027.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932,"y":5.517,"w":35.196000000000126,"clr":0,"A":"left","R":[{"T":"Virginia%20Income%20Tax.%20%20See%20instructions%20........................................................................................%2027","S":27,"TS":[1,12,0,0]}]},{"x":8.582,"y":7.429,"w":33.64000000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20divide%20line%2024%20by%20line%2023.%20Compute%20to%20one%20decimal%20place%2C%20not%20to%20exceed%20100%25.%20For%20","S":27,"TS":[1,12,0,0]}]},{"x":8.582,"y":8.104,"w":35.10100000000006,"clr":0,"A":"left","R":[{"T":"example%2C%200.3163%20becomes%2031.6%25.%20If%20claiming%20border%2C%20see%20instructions%20%20.....................................%2028","S":27,"TS":[1,12,0,0]}]},{"x":8.582,"y":10.017,"w":35.11000000000012,"clr":0,"A":"left","R":[{"T":"line%2025%20by%20line%2028%20.........................................................................................................................%2029","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":11.929,"w":35.01400000000012,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20enter%20the%20lesser%20of%20line%2027%20or%20line%2029.%20%20........................................................................%2030","S":27,"TS":[1,12,0,0]}]},{"x":5.487,"y":13.167,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2031.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578,"y":13.167,"w":35.00900000000003,"clr":0,"A":"left","R":[{"T":"Total%20Credit.%20Enter%20the%20total%20of%20lines%2010%2C%2020%20and%2030%20of%20Sch.%20OSC.%20Also%20enter%20on%20Form%20760%2C%20line%2022%3B%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581,"y":13.842,"w":35.10500000000012,"clr":0,"A":"left","R":[{"T":"Form%20760PY%2C%20line%2024%3B%20or%20Form%20763%2C%20line%2024.%20................................................................................%2031","S":27,"TS":[1,12,0,0]}]},{"x":8.583,"y":15.042,"w":31.724000000000004,"clr":0,"A":"left","R":[{"T":"for%20Low%20Income%20Individuals%20or%20the%20Earned%20Income%20Tax%20Credit.%20Adjust%20line%2031%20to%20ensure%20it%20","S":-1,"TS":[1,11,0,0]}]},{"x":8.583,"y":15.642,"w":11.077000000000002,"clr":0,"A":"left","R":[{"T":"does%20not%20exceed%20the%20limitation.","S":-1,"TS":[1,11,0,0]}]},{"oc":"#c1c1c1","x":75.763,"y":8.253,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,15,1,0]}]},{"oc":"#c9c9c9","x":92.575,"y":0.8600000000000001,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.575,"y":5.743,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.575,"y":10.223,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.601,"y":11.817,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.579,"y":2.524,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.138,"y":13.817,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"x":5.489,"y":6.754,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2028.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932,"y":6.754,"w":31.633,"clr":0,"A":"left","R":[{"T":"Income%20percentage.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20divide%20line%2023%20by%20line%2024.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.329,"y":9.342,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2029.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.454,"y":9.342,"w":31.310000000000006,"clr":0,"A":"left","R":[{"T":"If%20filing%20Form%20760%20or%20Form%20760PY%2C%20multiply%20line%2027%20by%20line%2028.%20If%20filing%20Form%20763%2C%20multiply","S":27,"TS":[1,12,0,0]}]},{"x":5.489,"y":11.254,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2030.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932,"y":11.254,"w":30.903000000000002,"clr":0,"A":"left","R":[{"T":"Credit.%20%20If%20fiing%20Form%20760%20or%20Form%20760PY%2C%20%20enter%20the%20lesser%20of%20line%2025%20or%20line%2029.%20If%20filing","S":27,"TS":[1,12,0,0]}]},{"x":8.583,"y":14.442,"w":30.128,"clr":0,"A":"left","R":[{"T":"Note%3A%20Schedule%20OSC%2C%20line%2031%2C%20cannot%20exceed%20your%20tax%20liability%20minus%20the%20Tax%20Credit%20","S":-1,"TS":[1,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":458,"AM":0,"x":68.474,"y":0.538,"w":21.647,"h":0.934},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":459,"AM":0,"x":68.474,"y":2.253,"w":21.647,"h":0.954},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":460,"AM":0,"x":68.147,"y":3.79,"w":6.284,"h":1.035,"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":"L27","EN":0},"TI":461,"AM":0,"x":68.474,"y":5.476,"w":21.647,"h":0.944},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":462,"AM":1024,"x":68.474,"y":8.022,"w":6.797,"h":0.934,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":463,"AM":1024,"x":68.474,"y":9.855,"w":21.647,"h":0.913},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":464,"AM":1024,"x":68.474,"y":11.688,"w":21.647,"h":0.954},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":465,"AM":1024,"x":68.395,"y":13.631,"w":21.647,"h":0.954}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VASCR.content.txt b/test/data/va/form/VASCR.content.txt new file mode 100755 index 00000000..b6c8f5a3 --- /dev/null +++ b/test/data/va/form/VASCR.content.txt @@ -0,0 +1,358 @@ +PART 1 - MAXIMUM NONREFUNDABLE CREDITS + A Enter the total tax computed on your return less the total of Spouse Tax Adjustment, Credit for + Low-Income Individuals or Virginia Earned Income Credit, and Credit for Tax Paid to Another + State. The maximum nonrefundable credits allowable in Section 2, Line 1A of Schedule CR + may not exceed this amount. +...................................................................................................... +1A + +PART 2 - ENTERPRISE ZONE ACT CREDIT + A +Credit allowable this year from Form 301 +(attach Form 301). +................................................ +2A +PART 3 - NEIGHBORHOOD ASSISTANCE ACT CREDIT + D +Credit allowable this year: +Line C or balance of maximum credit + available, whichever is less. ............................................................................................... +......... +3D + E Carryover credit to next year: Line C less Line 3D (applicable only if +PART 4 - RECYCLABLE MATERIALS PROCESSING EQUIPMENT CREDIT + B Carryover credit from prior year(s) (attach computation). + E Maximum Recyclable Materials Processing Equipment Credit. + F +Credit allowable this year: + Line E or balance of maximum credit + available, whichever is less. ............................................................................................... +......... +4F + G Carryover credit to next year: Line C less Line 4F (applicable only if +PART 5 - CONSERVATION TILLAGE EQUIPMENT CREDIT + D +Credit allowable this year: +Line C or balance of maximum credit + available, whichever is less. ............................................................................................... +......... +5D +PART 6 - PRECISION FERTILIZER AND PESTICIDE APPLICATION EQUIPMENT CREDIT + A Enter 25% of current qualifying equipment cost or $3,750, + B Carryover credit from prior year(s) (attach computation). + D +Credit allowable this year: +Line C or balance of maximum credit + available, whichever is less. ............................................................................................... +........ +6D + E Carryover credit to next year: Line C less Line 6D (applicable only if +SECTION 1 - NONREFUNDABLE CREDITS +00 +. +,, +* +00 +. +,, +00 +. +,, +* +00 +. +,, +* +00 +. +,, +* +00 +. +,, +2013 +Virginia Schedule CR +CREDIT COMPUTATION SCHEDULE - See Page 8 and Schedule CR Instructions +for required attachments. Attach this to your return. +Name(s) as shown on Virginia return +2601450 Rev. 07/13 +Your Social Security Number +- +- +Whole Dollars Only +A +__________________ +B +__________________ +C +__________________ + A +Authorized amount of Neighborhood Assistance Act Credit. +.................... + B +Carryover credit from prior year(s). +.......................................................... + C +Add Lines A and B +................................................................................... + within 5-year carryover period). +................................................................ +E +__________________ + A +Enter 10% of qualifying recyclable equipment cost. +................................. +A +__________________ +......................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + D +Enter 40% of tax per return. +..................................................................... +D +__________________ + within 10-year carryover period). .............................................................. +G +__________________ + A +Enter 25% of qualifying property cost or $4,000, whichever is less. +........ +A +__________________ +........................ +B +__________________ + B +Carryover credit from prior year(s) (attach computation) . + C +Add Lines A and B. +................................................................................... +C +__________________ + E +Carryover credit to next year: Line C less Line 5D (applicable only if + within 5-year carryover period). ................................................................ +E +__________________ + whichever is less. + ................................................................................... +A +__________________ +......................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + within 5-year carryover period). ................................................................ +E +__________________ + Line C or Line D, whichever is less. +......................................................... +E +__________________ +----------------Page (0) Break---------------- +PART 7 - RENT REDUCTION PROGRAM CREDIT + A +EXPIRED + +- December 31, 2010. + D +Credit allowable this year: + Line C or balance of maximum credit + available, whichever is less. ............................................................................................... +........ +7D + E Carryover credit to next year: Line C less Line 7D (applicable only if +PART 8 - CLEAN-FUEL VEHICLE AND VEHICLE EMISSIONS TESTING EQUIPMENT CREDITS + Clean-Fuel Vehicle and Qualified Electric Vehicle Credit + A +Qualifying Electric Vehicle + - Enter 10% of the cost used to + B Carryover credit from prior year(s) (attach computation). + D +Credit allowable this year: + Line C or balance of maximum credit +........ +8D + E Carryover credit to next year: Line C less Line 8D (applicable only if + +Vehicle Emissions Testing Equipment Credit + F Enter 20% of the purchase or lease price paid during the year for + G Carryover credit from prior year(s) (attach computation). + H Add Lines F and G. + I +Credit allowable this year: + Line H or balance of maximum credit + available, whichever is less. ............................................................................................... +.......... +8I + J Carryover credit to next year: Line H less Line 8I (applicable only +PART 9 - MAJOR BUSINESS FACILITY JOB TAX CREDIT + A Current credit amount authorized by the Department of Taxation + + D +Credit allowable this year: + Line C or the balance of the maximum + credit available, whichever is less. ........................................................................................ +..... +9D + E Carryover credit to next year: Line C less Line 9D +PART 10 - FOREIGN SOURCE RETIREMENT INCOME TAX CREDIT + A Qualifying taxable income on which the tax in the foreign + C Qualifying tax paid to the foreign country. + E Income percentage. Divide Line A by Line B. Compute to one decimal + G +Credit allowable this year: + Enter the lesser of Line C or Line F, + not to exceed the balance of maximum credit available. ......................................................... +10G +PART 11 - HISTORIC REHABILITATION TAX CREDIT + D Add Lines B and C. + E +Credit allowable this year: +Enter the amount from Line D or the + balance of maximum credit available, whichever is less. ........................................................ +11E + F Carryover credit to next year: Line D less +00 +. +,, +* +00 +. +,, +00 +. +,, +00 +. +,, +* +00 +. +,, +00 +. +, +, + Name(s) as shown on Virginia return +Schedule CR (2013) +Page 2 +Social Security Number +- +- + ........................ +A +__________________ + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + within 5-year carryover period). +................................................................ +E +__________________ + compute the credit under IRC § 30 for qualified electric vehicles............. +A +__________________ +......................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + available, whichever is less. ............................................................................................... + within 5-year carryover period). ................................................................ +E +__________________ + qualified vehicle emissions testing equipment.......................................... +F +__________________ +......................... +G +__________________ +................................................................................... +H +__________________ + if within 5-year carryover period). .............................................................. +J +__________________ +(include all expansions). +........................................................................... +A + __________________ + B Carryover credit from prior years (include all expansions). +...................... +B +__________________ + C Add Lines A and B. +................................................................................... +C +__________________ + (applicable only if within 10-year carryover period). +................................. +E +__________________ + country is based (See instructions). +......................................................... +A +__________________ + B Virginia taxable income (See instructions). +.............................................. +B +__________________ + Enter name of country:___________________________________. + ...... +C +__________________ + D Virginia income tax (See instructions). + ..................................................... +D +__________________ + place, not to exceed 100%. For example, 0.3163 becomes 31.6%. +........ +E + __________________ + F Multiply Line D by Line E. +......................................................................... +F +__________________ + A Enter the amount of eligible expenses. +.................................................... +A +__________________ + B Multiply the amount on Line A by 25% +...................................................... +B +__________________ + C Carryover credit from prior year(s). +.......................................................... +C +__________________ +................................................................................... +D +__________________ + Line 11E. (applicable only within 10-year carryover period). +.................... +F +__________________ +% +Continue to Page 3 +----------------Page (1) Break---------------- diff --git a/test/data/va/form/VASCR.fields.json b/test/data/va/form/VASCR.fields.json new file mode 100755 index 00000000..ae4805e4 --- /dev/null +++ b/test/data/va/form/VASCR.fields.json @@ -0,0 +1 @@ +[{"id":"APPROVED","type":"alpha","calc":true,"value":""},{"id":"NAME","type":"alpha","calc":true,"value":""},{"id":"SSN","type":"ssn","calc":true,"value":""},{"id":"L1","type":"number","calc":false,"value":""},{"id":"Add","type":"link","calc":false,"value":""},{"id":"L2","type":"number","calc":true,"value":""},{"id":"L3","type":"number","calc":false,"value":""},{"id":"L4","type":"number","calc":false,"value":""},{"id":"L5","type":"number","calc":true,"value":""},{"id":"L6","type":"number","calc":false,"value":""},{"id":"L7","type":"number","calc":true,"value":""},{"id":"L8","type":"number","calc":false,"value":""},{"id":"L9","type":"number","calc":false,"value":""},{"id":"L10","type":"number","calc":true,"value":""},{"id":"L11","type":"number","calc":true,"value":""},{"id":"L12","type":"number","calc":true,"value":""},{"id":"L13","type":"number","calc":false,"value":""},{"id":"L14","type":"number","calc":true,"value":""},{"id":"L15","type":"number","calc":false,"value":""},{"id":"L16","type":"number","calc":false,"value":""},{"id":"L17","type":"number","calc":true,"value":""},{"id":"L18","type":"number","calc":false,"value":""},{"id":"L19","type":"number","calc":true,"value":""},{"id":"L20","type":"number","calc":false,"value":""},{"id":"L21","type":"number","calc":false,"value":""},{"id":"L22","type":"number","calc":true,"value":""},{"id":"L23","type":"number","calc":false,"value":""},{"id":"L24","type":"number","calc":true,"value":""},{"id":"NAM2","type":"alpha","calc":true,"value":""},{"id":"SSN2","type":"ssn","calc":true,"value":""},{"id":"L26","type":"number","calc":false,"value":""},{"id":"L27","type":"number","calc":true,"value":""},{"id":"L28","type":"number","calc":false,"value":""},{"id":"L29","type":"number","calc":true,"value":""},{"id":"QEV","type":"number","calc":false,"value":""},{"id":"L31","type":"number","calc":false,"value":""},{"id":"L32","type":"number","calc":true,"value":""},{"id":"L33","type":"number","calc":false,"value":""},{"id":"L34","type":"number","calc":true,"value":""},{"id":"L35","type":"number","calc":false,"value":""},{"id":"L36","type":"number","calc":false,"value":""},{"id":"L37","type":"number","calc":true,"value":""},{"id":"L38","type":"number","calc":false,"value":""},{"id":"L39","type":"number","calc":true,"value":""},{"id":"L9A","type":"number","calc":false,"value":""},{"id":"L9B","type":"number","calc":false,"value":""},{"id":"L9C","type":"number","calc":true,"value":""},{"id":"L40","type":"number","calc":false,"value":""},{"id":"L41","type":"number","calc":true,"value":""},{"id":"L42","type":"number","calc":false,"value":""},{"id":"L43","type":"number","calc":true,"value":""},{"id":"L44TXT","type":"alpha","calc":false,"value":""},{"id":"L44","type":"number","calc":false,"value":""},{"id":"L45","type":"number","calc":true,"value":""},{"id":"L46","type":"alpha","calc":true,"value":""},{"id":"L47","type":"number","calc":true,"value":""},{"id":"L48","type":"number","calc":false,"value":""},{"id":"L49","type":"number","calc":false,"value":""},{"id":"L50","type":"number","calc":true,"value":""},{"id":"L51","type":"number","calc":false,"value":""},{"id":"L52","type":"number","calc":true,"value":""},{"id":"L53","type":"number","calc":false,"value":""},{"id":"L54","type":"number","calc":true,"value":""},{"id":"Add_VASCR2","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VASCR.json b/test/data/va/form/VASCR.json new file mode 100755 index 00000000..9571fd66 --- /dev/null +++ b/test/data/va/form/VASCR.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"green Sch CR WEB 11 13 13.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.477,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.468,"y":12.11,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.952,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.917,"y":12.11,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.427,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.392,"y":12.11,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.902,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.867,"y":12.11,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.377,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.342,"y":12.11,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.852,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.817,"y":12.11,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.327,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.292,"y":12.11,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.802,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.767,"y":12.11,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.277,"y":10.863,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.217,"y":12.107,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.477,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.468,"y":14.941,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.952,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.917,"y":14.941,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.427,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.392,"y":14.941,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.902,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.867,"y":14.941,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.377,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.342,"y":14.941,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.852,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.817,"y":14.941,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.327,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.292,"y":14.941,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.802,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.767,"y":14.941,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.276,"y":13.694,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.216,"y":14.938,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.477,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.468,"y":20.174,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.952,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.917,"y":20.174,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.427,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.392,"y":20.174,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.902,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.867,"y":20.174,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.377,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.342,"y":20.174,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.852,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.817,"y":20.174,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.327,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.292,"y":20.174,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.802,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.767,"y":20.174,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.276,"y":18.927,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.216,"y":20.171,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.477,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.468,"y":29.424,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.952,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.917,"y":29.424,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.427,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.392,"y":29.424,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.902,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.867,"y":29.424,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.377,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.342,"y":29.424,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.852,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.817,"y":29.424,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.327,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.292,"y":29.424,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.802,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.767,"y":29.424,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.276,"y":28.177,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.216,"y":29.421,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.477,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.468,"y":36.116,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.952,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.917,"y":36.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.427,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.392,"y":36.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.902,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.867,"y":36.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.377,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.342,"y":36.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.852,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.817,"y":36.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.327,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.292,"y":36.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.802,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.767,"y":36.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.276,"y":34.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.216,"y":36.113,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.477,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.468,"y":43.139,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.952,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.917,"y":43.139,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.427,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.392,"y":43.139,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.902,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.867,"y":43.139,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.377,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.342,"y":43.139,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.852,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.817,"y":43.139,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.327,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.292,"y":43.139,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.802,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.767,"y":43.139,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.276,"y":41.892,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.216,"y":43.136,"w":6,"l":3.205},{"oc":"#161616","x":6.273,"y":6.959,"w":1.5,"l":54.132},{"oc":"#161616","x":6.273,"y":5.356,"w":1.5,"l":54.132},{"oc":"#161616","x":96.62,"y":9.745,"w":3,"l":2.432},{"oc":"#c9c9c9","x":70.684,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":70.649,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":73.159,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":73.124,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":75.634,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":75.599,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":78.109,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":78.074,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":80.584,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":80.549,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":83.059,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":83.024,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":85.534,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":85.499,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":88.009,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":87.974,"y":7.097,"w":6,"l":2.475},{"oc":"#c9c9c9","x":90.484,"y":5.85,"w":6,"l":2.475},{"oc":"#c9c9c9","x":90.449,"y":7.097,"w":6,"l":2.475},{"oc":"#161616","x":65.624,"y":9.745,"w":3,"l":2.432},{"oc":"#161616","x":65.624,"y":46.928,"w":3,"l":2.432},{"oc":"#161616","x":96.62,"y":46.938,"w":3,"l":2.432}],"VLines":[{"oc":"#d2d2d2","x":68.812,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.287,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.762,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.237,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.712,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.187,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.662,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.137,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.612,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.087,"y":10.741,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.812,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.287,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.762,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.237,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.712,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.187,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.662,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.137,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.612,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.087,"y":13.572,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.812,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.287,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.762,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.237,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.712,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.187,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.662,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.137,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.612,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.087,"y":18.805,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.812,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.287,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.762,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.237,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.712,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.187,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.662,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.137,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.612,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.087,"y":28.055,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.812,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.287,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.762,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.237,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.712,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.187,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.662,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.137,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.612,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.087,"y":34.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.812,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.287,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.762,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.237,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.712,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.187,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.662,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.137,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.612,"y":41.77,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.087,"y":41.77,"w":6,"l":1.35},{"oc":"#161616","x":60.406,"y":5.356,"w":1.5,"l":1.603},{"oc":"#161616","x":6.273,"y":5.356,"w":1.5,"l":1.603},{"oc":"#161616","x":98.871,"y":9.683,"w":3,"l":0.884},{"oc":"#c9c9c9","x":71.019,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":73.494,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":75.969,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":78.444,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":80.919,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":83.394,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":85.869,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":88.344,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":90.819,"y":5.728,"w":6,"l":1.35},{"oc":"#c9c9c9","x":93.217,"y":5.734,"w":6,"l":1.484},{"oc":"#161616","x":65.796,"y":9.698,"w":3,"l":0.888},{"oc":"#161616","x":65.805,"y":46.103,"w":3,"l":0.881},{"oc":"#161616","x":98.88,"y":46.104,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":6.239,"y":7.552,"w":41.639,"h":1.02,"clr":-1},{"oc":"#d2d2d2","x":82.76,"y":11.741,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.317,"y":11.723,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.759,"y":14.572,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.317,"y":14.553,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.759,"y":19.805,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.317,"y":19.786,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.759,"y":29.055,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.317,"y":29.037,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.759,"y":35.748,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.317,"y":35.729,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.759,"y":42.77,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.317,"y":42.751,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c9c9c9","x":70.16,"y":8.294,"w":19.92,"h":0.825,"clr":-1}],"Texts":[{"oc":"#161616","x":5.989,"y":8.836,"w":23.38800000000001,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20MAXIMUM%20NONREFUNDABLE%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.922000000000001,"y":9.867,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.403,"y":9.867,"w":41.85399999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20tax%20computed%20on%20your%20return%20less%20the%20total%20of%20Spouse%20Tax%20Adjustment%2C%20Credit%20for%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":10.392,"w":41.51699999999997,"clr":-1,"A":"left","R":[{"T":"Low-Income%20Individuals%20or%20Virginia%20Earned%20Income%20Credit%2C%20and%20Credit%20for%20Tax%20Paid%20to%20Another%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":10.917,"w":40.574,"clr":-1,"A":"left","R":[{"T":"State.%20The%20maximum%20nonrefundable%20credits%20allowable%20in%20Section%202%2C%20Line%201A%20of%20Schedule%20CR%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":11.417,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"may%20not%20exceed%20this%20amount.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":29.054,"y":11.417,"w":28.355999999999963,"clr":-1,"A":"left","R":[{"T":"......................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.256,"y":11.417,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.989,"y":13.261,"w":20.224000000000004,"clr":-1,"A":"left","R":[{"T":"PART%202%20-%20ENTERPRISE%20ZONE%20ACT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.654,"y":14.236,"w":1.058,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":14.236,"w":19.562,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%20from%20Form%20301%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":36.872,"y":14.236,"w":8.781000000000002,"clr":-1,"A":"left","R":[{"T":"(attach%20Form%20301).%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":47.104,"y":14.236,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.256,"y":14.236,"w":1.278,"clr":-1,"A":"left","R":[{"T":"2A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.989,"y":15.547999999999998,"w":25.89000000000001,"clr":-1,"A":"left","R":[{"T":"PART%203%20-%20NEIGHBORHOOD%20ASSISTANCE%20ACT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.674,"y":18.848,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":18.848,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.581,"y":18.848,"w":16.561000000000003,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336,"y":19.373,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.16,"y":19.373,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.192,"y":19.373,"w":1.278,"clr":-1,"A":"left","R":[{"T":"3D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.922000000000001,"y":20.205,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":20.205,"w":30.400000000000013,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%203D%20(applicable%20only%20if%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.989,"y":22.323,"w":34.55800000000001,"clr":-1,"A":"left","R":[{"T":"PART%204%20-%20RECYCLABLE%20MATERIALS%20PROCESSING%20EQUIPMENT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.922000000000001,"y":24.073,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":24.073,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":26.698,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":26.698,"w":27.896000000000008,"clr":-1,"A":"left","R":[{"T":"Maximum%20Recyclable%20Materials%20Processing%20Equipment%20Credit.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.674,"y":28.098,"w":1.167,"clr":-1,"A":"left","R":[{"T":"%20F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":28.098,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.247,"y":28.098,"w":16.784000000000002,"clr":-1,"A":"left","R":[{"T":"%20Line%20E%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":28.661,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.16,"y":28.661,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.383,"y":28.661,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.922000000000001,"y":29.723,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":29.723,"w":29.733000000000015,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%204F%20(applicable%20only%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.989,"y":31.842,"w":27.28000000000001,"clr":-1,"A":"left","R":[{"T":"PART%205%20-%20CONSERVATION%20TILLAGE%20EQUIPMENT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.674,"y":34.917,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":34.917,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.581,"y":34.917,"w":16.283000000000005,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336,"y":35.442,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.16,"y":35.442,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.192,"y":35.442,"w":1.278,"clr":-1,"A":"left","R":[{"T":"5D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.989,"y":38.33,"w":41.28200000000001,"clr":-1,"A":"left","R":[{"T":"PART%206%20-%20PRECISION%20FERTILIZER%20AND%20PESTICIDE%20APPLICATION%20EQUIPMENT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.922000000000001,"y":39.048,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.403,"y":39.048,"w":25.791,"clr":-1,"A":"left","R":[{"T":"Enter%2025%25%20of%20current%20qualifying%20equipment%20cost%20or%20%243%2C750%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":40.292,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":40.292,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.588,"y":41.78,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":41.78,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.581,"y":41.78,"w":16.283000000000005,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336,"y":42.305,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.16,"y":42.305,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.192,"y":42.305,"w":1.278,"clr":-1,"A":"left","R":[{"T":"6D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.923,"y":43.073,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":43.073,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%206D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"x":8.11,"y":7.541,"w":19.945000000000004,"clr":1,"A":"left","R":[{"T":"SECTION%201%20-%20NONREFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.203,"y":11.149,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.241,"y":11.324,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.609,"y":11.163,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.27,"y":13.46,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.203,"y":13.979,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24,"y":14.155,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.609,"y":13.993,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.203,"y":19.212,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24,"y":19.388,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.609,"y":19.226,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.27,"y":22.522,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.203,"y":28.463,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24,"y":28.638,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.609,"y":28.477,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.27,"y":32.103,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.203,"y":35.155,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24,"y":35.331,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.609,"y":35.169,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.269,"y":38.591,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.203,"y":42.177,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24,"y":42.353,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.609,"y":42.191,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":6.238,"y":2.319,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,22,1,0]}]},{"oc":"#161616","x":6.238,"y":3.131,"w":10.392,"clr":-1,"A":"left","R":[{"T":"Virginia%20Schedule%20CR%20","S":-1,"TS":[0,20,1,0]}]},{"oc":"#161616","x":6.238,"y":3.7569999999999997,"w":38.450999999999986,"clr":-1,"A":"left","R":[{"T":"CREDIT%20COMPUTATION%20SCHEDULE%20-%20See%20Page%208%20and%20Schedule%20CR%20Instructions%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":6.238,"y":4.382,"w":25.170999999999996,"clr":-1,"A":"left","R":[{"T":"for%20required%20attachments.%20Attach%20this%20to%20your%20return.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.596,"y":5.04,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":46.29,"w":9.562000000000001,"clr":-1,"A":"left","R":[{"T":"2601450%20%20%20Rev.%2007%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#c9c9c9","x":74.627,"y":4.772,"w":13.782,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":77.885,"y":5.921,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":82.774,"y":5.94,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":70.286,"y":8.149,"w":9.169,"clr":1,"A":"left","R":[{"T":"Whole%20Dollars%20Only","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":51.659,"y":16.38,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.796,"y":16.38,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.591,"y":17.211,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.826,"y":17.211,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.526,"y":18.042,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":18.042,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":16.38,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":16.38,"w":26.401000000000003,"clr":-1,"A":"left","R":[{"T":"Authorized%20amount%20of%20Neighborhood%20Assistance%20Act%20Credit.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.763,"y":16.38,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":17.211,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":17.211,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.061,"y":17.211,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":18.042,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":18.042,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705,"y":18.042,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":20.73,"w":14.05900000000001,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":30.054,"y":20.73,"w":17.792000000000012,"clr":-1,"A":"left","R":[{"T":"................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.591,"y":20.73,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.825,"y":20.73,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":23.198,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":23.198,"w":22.677,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20of%20qualifying%20recyclable%20equipment%20cost.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.415,"y":23.198,"w":9.174000000000008,"clr":-1,"A":"left","R":[{"T":".................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.656,"y":23.198,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.824,"y":23.198,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.093,"y":24.073,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.593,"y":24.073,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":24.073,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":24.948,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":24.948,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705,"y":24.948,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.526,"y":24.948,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":24.948,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":25.823,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":25.823,"w":12.562000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2040%25%20of%20tax%20per%20return.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.384,"y":25.823,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.526,"y":25.823,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":25.823,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":30.248,"w":31.850999999999935,"clr":-1,"A":"left","R":[{"T":"within%2010-year%20carryover%20period).%20..............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.46,"y":30.248,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.828,"y":30.248,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":32.611,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":32.611,"w":29.513,"clr":-1,"A":"left","R":[{"T":"Enter%2025%25%20of%20qualifying%20property%20cost%20or%20%244%2C000%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":48.772,"y":32.611,"w":2.224,"clr":-1,"A":"left","R":[{"T":"........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.656,"y":32.611,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.824,"y":32.611,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.427,"y":33.38,"w":6.672000000000004,"clr":-1,"A":"left","R":[{"T":"........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.593,"y":33.38,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":33.38,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":33.38,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":33.38,"w":25.284000000000002,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation)%20.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":34.148,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":34.148,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705,"y":34.148,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.526,"y":34.148,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":34.148,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922000000000001,"y":36.211,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":36.211,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%205D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":36.736,"w":31.85099999999994,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.591,"y":36.736,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.825,"y":36.736,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":39.573,"w":7.835000000000001,"clr":-1,"A":"left","R":[{"T":"whichever%20is%20less.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":22.763,"y":39.573,"w":23.907999999999983,"clr":-1,"A":"left","R":[{"T":"%20...................................................................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.657,"y":39.573,"w":1.223,"clr":-1,"A":"left","R":[{"T":"A%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.826,"y":39.573,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.093,"y":40.292,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.593,"y":40.292,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":40.292,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.923,"y":41.011,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":41.011,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705,"y":41.011,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.526,"y":41.011,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827,"y":41.011,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":43.598,"w":31.85099999999994,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.591,"y":43.598,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.825,"y":43.598,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.337,"y":27.223,"w":15.894000000000002,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20Line%20D%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.394,"y":27.223,"w":15.84600000000002,"clr":-1,"A":"left","R":[{"T":".........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.591,"y":27.223,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.825,"y":27.223,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":57.088,"y":25.94,"w":1.944,"clr":-1,"A":"left","R":[{"T":"Add","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":466,"AM":1024,"x":6.445,"y":0.875,"w":35.963,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":467,"AM":1024,"x":6.36,"y":6.021,"w":53.959,"h":0.862,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":468,"AM":1024,"x":71.126,"y":6.014,"w":21.937,"h":0.914,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":469,"AM":0,"x":69.001,"y":11.07,"w":21.6,"h":0.898,"TU":"Line 1A. Enter the total tax computed on your return less the total of Spouse Tax Adjustment, Credit for Low-Income Individuals or Virginia Earned Income Credit, and Credit for Tax Paid to Another State. The maximum nonrefundable credits allowable in Section 2, Line 1A of Schedule CR may not exceed this amount."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:va_expl01"}},"id":{"Id":"Add","EN":0},"TI":470,"AM":0,"x":57.762,"y":14.019,"w":5.223,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":471,"AM":1024,"x":69.098,"y":13.913,"w":21.6,"h":0.898,"TU":"Credit allowable this year from Form 301"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":472,"AM":0,"x":53.162,"y":16.348,"w":12.045,"h":0.833,"TU":"Part 3, Line A. Authorized amount of Neighborhood Assistance Act Credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":473,"AM":0,"x":53.162,"y":17.181,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":474,"AM":1024,"x":53.162,"y":18.006,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":475,"AM":0,"x":69.001,"y":19.15,"w":21.6,"h":0.898,"TU":"Line 3D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":476,"AM":1024,"x":53.162,"y":20.698,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":477,"AM":0,"x":53.162,"y":23.165,"w":12.045,"h":0.833,"TU":"Part 4. Line A. Enter 10% of qualifying recyclable equipment cost"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":478,"AM":0,"x":53.162,"y":24.043,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s) attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":479,"AM":1024,"x":53.162,"y":24.913,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":480,"AM":1024,"x":53.162,"y":25.872,"w":12.045,"h":0.833,"TU":"Enter 40% of tax per return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":481,"AM":1024,"x":53.249,"y":27.193,"w":12.045,"h":0.833,"TU":"E Maximum Recyclable Materials Processing Equipment Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":482,"AM":0,"x":69.172,"y":28.387,"w":21.6,"h":0.898,"TU":"Line 4F Credit allowable this year. Line E or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":483,"AM":1024,"x":53.162,"y":30.216,"w":12.045,"h":0.833,"TU":"G Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":484,"AM":0,"x":53.162,"y":32.578,"w":12.045,"h":0.833,"TU":"Part 5. Line A. Enter 25% of qualifying property cost or $4,000, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":485,"AM":0,"x":53.162,"y":33.403,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s) (attach computation)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":486,"AM":1024,"x":53.162,"y":34.168,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":487,"AM":0,"x":69.172,"y":35.055,"w":21.6,"h":0.899,"TU":"Line 5D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":488,"AM":1024,"x":53.162,"y":36.703,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":489,"AM":0,"x":53.226,"y":39.538,"w":12.045,"h":0.833,"TU":"Part 6. Line A. Enter 25% of current qualifying equipment cost or $3,750, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":490,"AM":0,"x":53.162,"y":40.363,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s) (attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":491,"AM":1024,"x":53.162,"y":41.083,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":492,"AM":0,"x":69.172,"y":42.078,"w":21.6,"h":0.898,"TU":"Line 6D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":493,"AM":1024,"x":53.162,"y":43.566,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.425,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":10.515,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":10.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":10.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":10.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":10.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":10.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":10.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":10.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":9.268,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":10.512,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":18.099,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":18.099,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":18.099,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":18.099,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":18.099,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":18.099,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":18.099,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":18.099,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":16.852,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":18.096,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":24.419,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":24.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":24.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":24.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":24.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":24.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":24.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":24.419,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":23.173,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":24.416,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":30.645,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":30.645,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":30.645,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":30.645,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":30.645,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":30.645,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":30.645,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":30.645,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":29.398,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":30.642,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":40.387,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":40.387,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":40.387,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":40.387,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":40.387,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":40.387,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":40.387,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":40.387,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":39.14,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":40.384,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":45.536,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":45.536,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":45.536,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":45.536,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":45.536,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":45.536,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":45.536,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":45.536,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":44.289,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":45.533,"w":6,"l":3.205},{"clr":1,"x":75.807,"y":44.802,"w":1,"l":2.063},{"oc":"#161616","x":6.362,"y":5.979,"w":1.5,"l":30.534},{"oc":"#161616","x":6.362,"y":3.792,"w":1.5,"l":30.534},{"oc":"#c9c9c9","x":41.137,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":41.102,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.612,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.577,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.087,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.052,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.562,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.527,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.037,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.002,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.512,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.477,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.987,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.952,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.462,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.427,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.937,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.902,"y":5.569,"w":6,"l":2.475},{"oc":"#161616","x":65.581,"y":6.367,"w":3,"l":2.423},{"oc":"#161616","x":95.512,"y":6.368,"w":3,"l":2.432},{"oc":"#161616","x":67.635,"y":47.178,"w":3,"l":2.432},{"oc":"#161616","x":95.7,"y":47.188,"w":3,"l":2.432}],"VLines":[{"oc":"#d2d2d2","x":68.76,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":9.146,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":16.73,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":23.051,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":29.276,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":39.018,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":44.167,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":44.167,"w":6,"l":1.35},{"clr":1,"x":77.87,"y":44.802,"w":1,"l":0.9},{"clr":1,"x":75.807,"y":44.802,"w":1,"l":0.9},{"oc":"#161616","x":36.895,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":6.362,"y":3.792,"w":1.5,"l":2.188},{"oc":"#c9c9c9","x":41.472,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":43.947,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":46.422,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":48.897,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":51.372,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":53.847,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":56.322,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":58.797,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":61.272,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":63.67,"y":4.206,"w":6,"l":1.484},{"oc":"#161616","x":65.736,"y":6.308,"w":3,"l":0.888},{"oc":"#161616","x":97.807,"y":6.321,"w":3,"l":0.884},{"oc":"#161616","x":67.798,"y":46.359,"w":3,"l":0.884},{"oc":"#161616","x":97.96,"y":46.359,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.708,"y":10.146,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":10.127,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":17.73,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":17.711,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":24.051,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":24.032,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":30.276,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":30.258,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":40.018,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":40,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":45.167,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.312,"y":45.136,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#161616","x":5.938,"y":6.342,"w":23.167,"clr":-1,"A":"left","R":[{"T":"PART%207%20-%20RENT%20REDUCTION%20PROGRAM%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.603,"y":7.074,"w":1.058,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":7.074,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"EXPIRED","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":22.674,"y":7.074,"w":9.894000000000004,"clr":-1,"A":"left","R":[{"T":"-%20December%2031%2C%202010.","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":7.537,"y":9.267,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":9.267,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":9.267,"w":16.561000000000003,"clr":-1,"A":"left","R":[{"T":"%20Line%20C%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":9.792,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.108,"y":9.792,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.141,"y":9.792,"w":1.278,"clr":-1,"A":"left","R":[{"T":"7D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":10.524,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":10.524,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%207D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":12.08,"w":44.11600000000001,"clr":-1,"A":"left","R":[{"T":"PART%208%20-%20CLEAN-FUEL%20VEHICLE%20AND%20VEHICLE%20EMISSIONS%20TESTING%20EQUIPMENT%20CREDITS%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":13.149,"w":26.343000000000004,"clr":-1,"A":"left","R":[{"T":"Clean-Fuel%20Vehicle%20and%20Qualified%20Electric%20Vehicle%20Credit","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.603,"y":13.936,"w":1.058,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":13.936,"w":12.561,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Electric%20Vehicle","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.33,"y":13.936,"w":14.286000000000007,"clr":-1,"A":"left","R":[{"T":"%20-%20Enter%2010%25%20of%20the%20cost%20used%20to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":15.249,"w":1.223,"clr":-1,"A":"left","R":[{"T":"B%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":15.249,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":16.767,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":16.767,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":16.767,"w":16.839000000000002,"clr":-1,"A":"left","R":[{"T":"%20Line%20C%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.108,"y":17.292,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.141,"y":17.292,"w":1.278,"clr":-1,"A":"left","R":[{"T":"8D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":18.08,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":18.08,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%208D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":19.674,"w":21.228000000000005,"clr":-1,"A":"left","R":[{"T":"Vehicle%20Emissions%20Testing%20Equipment%20Credit","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":20.405,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":20.405,"w":28.959000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%2020%25%20of%20the%20purchase%20or%20lease%20price%20paid%20during%20the%20year%20for%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":21.661,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":21.661,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":22.392,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":22.392,"w":8.894000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20F%20and%20G.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":23.124,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20I%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":23.124,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":23.124,"w":16.839000000000002,"clr":-1,"A":"left","R":[{"T":"%20Line%20H%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":23.649,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.108,"y":23.649,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"..........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.903999999999996,"y":23.649,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8I","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":24.38,"w":0.778,"clr":-1,"A":"left","R":[{"T":"J%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":24.38,"w":28.622000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20H%20less%20Line%208I%20(applicable%20only","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":25.936,"w":26.836000000000006,"clr":-1,"A":"left","R":[{"T":"PART%209%20-%20MAJOR%20BUSINESS%20FACILITY%20JOB%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":26.607,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":26.607,"w":28.902000000000005,"clr":-1,"A":"left","R":[{"T":"Current%20credit%20amount%20authorized%20by%20the%20Department%20of%20Taxation%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":29.345,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":29.345,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":29.345,"w":17.452000000000005,"clr":-1,"A":"left","R":[{"T":"%20Line%20C%20or%20the%20balance%20of%20the%20maximum%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":29.87,"w":39.80199999999989,"clr":-1,"A":"left","R":[{"T":"credit%20available%2C%20whichever%20is%20less.%20........................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":61.109,"y":29.87,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":".....%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.141,"y":29.87,"w":1.278,"clr":-1,"A":"left","R":[{"T":"9D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":30.939,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":30.939,"w":22.119000000000007,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%209D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":32.495,"w":31.447000000000006,"clr":-1,"A":"left","R":[{"T":"PART%2010%20-%20FOREIGN%20SOURCE%20RETIREMENT%20INCOME%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":33.02,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":33.02,"w":25.290000000000003,"clr":-1,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20tax%20in%20the%20foreign%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":35.045,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":35.045,"w":19.009999999999998,"clr":-1,"A":"left","R":[{"T":"Qualifying%20tax%20paid%20to%20the%20foreign%20country.%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":37.07,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":37.07,"w":31.126,"clr":-1,"A":"left","R":[{"T":"Income%20percentage.%20Divide%20Line%20A%20by%20Line%20B.%20Compute%20to%20one%20decimal%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":39.095,"w":1.334,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":39.095,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":39.095,"w":16.063000000000006,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20lesser%20of%20Line%20C%20or%20Line%20F%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":39.62,"w":40.80199999999993,"clr":-1,"A":"left","R":[{"T":"not%20to%20exceed%20the%20balance%20of%20maximum%20credit%20available.%20.........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.089,"y":39.62,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"10G","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":40.464,"w":25.057000000000006,"clr":-1,"A":"left","R":[{"T":"PART%2011%20-%20HISTORIC%20REHABILITATION%20TAX%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":43.464,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":43.464,"w":8.894000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20B%20and%20C.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":44.27,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":44.27,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.529,"y":44.27,"w":15.952000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20D%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":44.795,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.374,"y":44.795,"w":1.6139999999999999,"clr":-1,"A":"left","R":[{"T":"11E","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":45.545,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":45.545,"w":18.395000000000003,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20D%20less%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#c9c9c9","x":93.151,"y":9.553,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":9.729,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":9.567,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.219,"y":12.247,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":17.137,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":17.313,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":17.151,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":23.458,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":23.634,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":23.472,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":29.684,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":29.859,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":29.698,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.218,"y":32.738,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":39.426,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":39.601,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":39.44,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":44.574,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":44.75,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":44.588,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":82.999,"y":44.588,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.932,"y":3.393,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":2.046,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.198,"y":2.046,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%202","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.573,"y":3.243,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.337,"y":4.393,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.227,"y":4.412,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":43.041,"y":7.074,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":"%20........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":7.074,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":7.074,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":7.805,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":7.805,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":7.805,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":7.805,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":7.805,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":8.536,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":8.536,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":8.536,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":8.536,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":8.536,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":11.049,"w":14.05900000000001,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":30.002,"y":11.049,"w":17.792000000000012,"clr":-1,"A":"left","R":[{"T":"................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.539,"y":11.049,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":11.049,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":14.461,"w":31.681,"clr":-1,"A":"left","R":[{"T":"compute%20the%20credit%20under%20IRC%20%C2%A7%2030%20for%20qualified%20electric%20vehicles.............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.609,"y":14.461,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.777,"y":14.461,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.041,"y":15.249,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.541,"y":15.249,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":15.249,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":16.036,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":16.036,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":16.036,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":16.036,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":16.036,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":17.292,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":18.605,"w":31.85099999999994,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.539,"y":18.605,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":18.605,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":20.93,"w":31.68399999999995,"clr":-1,"A":"left","R":[{"T":"qualified%20vehicle%20emissions%20testing%20equipment..........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":20.93,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":20.93,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.041,"y":21.661,"w":6.952500000000004,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.406,"y":21.661,"w":1.0562,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":21.661,"w":10.0098,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":22.392,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":22.392,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":22.392,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":24.905,"w":32.07299999999994,"clr":-1,"A":"left","R":[{"T":"if%20within%205-year%20carryover%20period).%20..............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.743,"y":24.905,"w":0.778,"clr":-1,"A":"left","R":[{"T":"J%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.777,"y":24.905,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":27.132,"w":11.004000000000003,"clr":-1,"A":"left","R":[{"T":"(include%20all%20expansions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.326,"y":27.132,"w":20.849999999999998,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.605,"y":27.132,"w":0.667,"clr":-1,"A":"left","R":[{"T":"A","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.341,"y":27.132,"w":10.286000000000005,"clr":-1,"A":"left","R":[{"T":"%20__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":27.864,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":27.864,"w":25.673000000000016,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20years%20(include%20all%20expansions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.041,"y":27.864,"w":6.116000000000003,"clr":-1,"A":"left","R":[{"T":"......................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538,"y":27.864,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":27.864,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":28.595,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":28.595,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":28.595,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":28.595,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":28.595,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":31.464,"w":22.618000000000002,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20if%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.363,"y":31.464,"w":9.174000000000008,"clr":-1,"A":"left","R":[{"T":".................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.537,"y":31.464,"w":1.223,"clr":-1,"A":"left","R":[{"T":"E%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":31.464,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":33.545,"w":15.895000000000008,"clr":-1,"A":"left","R":[{"T":"country%20is%20based%20(See%20instructions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.343,"y":33.545,"w":15.84600000000002,"clr":-1,"A":"left","R":[{"T":".........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.606,"y":33.545,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":33.545,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":34.295,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":34.295,"w":18.951,"clr":-1,"A":"left","R":[{"T":"Virginia%20taxable%20income%20(See%20instructions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":36.019,"y":34.295,"w":12.788000000000014,"clr":-1,"A":"left","R":[{"T":"..............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538,"y":34.295,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.773,"y":34.295,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":35.57,"w":29.85400000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20name%20of%20country%3A___________________________________.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":49.21,"y":35.57,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"%20......","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":35.57,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":35.57,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":36.32,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":36.32,"w":16.783000000000005,"clr":-1,"A":"left","R":[{"T":"Virginia%20income%20tax%20(See%20instructions).","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.455,"y":36.32,"w":15.012000000000018,"clr":-1,"A":"left","R":[{"T":"%20.....................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.473,"y":36.32,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":36.32,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":37.595,"w":29.51600000000001,"clr":-1,"A":"left","R":[{"T":"place%2C%20not%20to%20exceed%20100%25.%20For%20example%2C%200.3163%20becomes%2031.6%25.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":48.721,"y":37.595,"w":2.224,"clr":-1,"A":"left","R":[{"T":"........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538,"y":37.595,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.341,"y":37.595,"w":10.286000000000005,"clr":-1,"A":"left","R":[{"T":"%20__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":38.345,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":38.345,"w":11.560000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%20D%20by%20Line%20E.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.995,"y":38.345,"w":20.294,"clr":-1,"A":"left","R":[{"T":".........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607,"y":38.345,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":38.345,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":41.214,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":41.214,"w":17.287000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20eligible%20expenses.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":34.014,"y":41.214,"w":14.456000000000017,"clr":-1,"A":"left","R":[{"T":"....................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.605,"y":41.214,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":41.214,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":41.964,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":41.964,"w":16.786,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20Line%20A%20by%2025%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.35,"y":41.964,"w":15.012000000000018,"clr":-1,"A":"left","R":[{"T":"......................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.544,"y":41.964,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.778,"y":41.964,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":42.714,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":42.714,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":42.714,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.474,"y":42.714,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":42.714,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653,"y":43.464,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":43.464,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":43.464,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":46.07,"w":26.342999999999993,"clr":-1,"A":"left","R":[{"T":"Line%2011E.%20(applicable%20only%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.708,"y":46.07,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.604,"y":46.07,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":46.07,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"x":64.731,"y":37.579,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":35.014,"y":47.404,"w":68.488,"clr":0,"A":"left","R":[{"T":"Continue%20to%20Page%203","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":494,"AM":1024,"x":6.458,"y":5.022,"w":30.317,"h":0.892,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":495,"AM":1024,"x":41.722,"y":4.574,"w":21.937,"h":0.914,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":496,"AM":0,"x":52.793,"y":7.907,"w":12.045,"h":0.833,"TU":"Part 7. Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":497,"AM":1024,"x":52.793,"y":8.642,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":498,"AM":0,"x":68.916,"y":9.487,"w":21.6,"h":0.912,"TU":"Line 7D. Credit allowable this year: Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":499,"AM":1024,"x":52.793,"y":11.147,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QEV","EN":0},"TI":500,"AM":0,"x":52.793,"y":14.559,"w":12.045,"h":0.833,"TU":"Part 8. Line A. Qualifying Electric Vehicle. Enter 10% of the cost used to compute the credit under IRC § 30 for qualified electric vehicles."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":501,"AM":0,"x":52.793,"y":15.347,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s) (attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":502,"AM":1024,"x":52.793,"y":16.134,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":503,"AM":0,"x":68.879,"y":17.069,"w":21.6,"h":0.912,"TU":"Line 8D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":504,"AM":1024,"x":52.793,"y":18.707,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":505,"AM":0,"x":52.793,"y":21.032,"w":12.045,"h":0.833,"TU":"Line F. Enter 20% of the purchase or lease price paid during the year for qualified vehicle emissions testing equipment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":506,"AM":0,"x":52.793,"y":21.767,"w":12.045,"h":0.833,"TU":"Line G. Carryover credit from prior year(s) (attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":507,"AM":1024,"x":52.793,"y":22.494,"w":12.045,"h":0.833,"TU":"Add Lines F and G"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":508,"AM":0,"x":68.883,"y":23.373,"w":21.6,"h":0.912,"TU":"Line 8I. Credit allowable this year. Enter the amount from Line H or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":509,"AM":1024,"x":52.793,"y":25.007,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":510,"AM":0,"x":52.793,"y":27.053,"w":12.045,"h":0.833,"TU":"Current Credit amount authorized by the Department of TaxationPart 9. Line A. Current credit amount authorized by the Department of Taxation (including all expansions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":511,"AM":0,"x":52.793,"y":27.866,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior years (including all expansions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":512,"AM":1024,"x":52.793,"y":28.679,"w":12.045,"h":0.833,"TU":"Add lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":513,"AM":0,"x":68.97,"y":29.589,"w":21.6,"h":0.912,"TU":"Line 9D. Credit allowable this year. Line C or the balance of the maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":514,"AM":1024,"x":52.868,"y":31.517,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":515,"AM":0,"x":52.793,"y":33.699,"w":12.045,"h":0.833,"TU":"Part 10. Line A. Qualifying taxable income on which the tax in the foreign country is based (See instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":516,"AM":1024,"x":52.793,"y":34.449,"w":12.045,"h":0.833,"TU":"Multiply the amount\ton Line A\tby 25%"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L44TXT","EN":0},"TI":517,"AM":0,"x":35.432,"y":35.546,"w":13.783,"h":0.853,"TU":"Line C. Enter name of country."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":518,"AM":0,"x":52.793,"y":35.724,"w":12.045,"h":0.833,"TU":"Line C. Qualifying tax paid to the foreign country."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":519,"AM":1024,"x":52.793,"y":36.474,"w":12.045,"h":0.833,"TU":"Add Lines\tB and C"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":520,"AM":1024,"x":52.793,"y":37.783,"w":12.045,"h":0.833,"TU":"Income percentage"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":521,"AM":1024,"x":52.793,"y":38.499,"w":12.045,"h":0.833,"TU":"Multiply Line D by Line E"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":522,"AM":0,"x":68.879,"y":39.405,"w":21.6,"h":0.912,"TU":"Line 10G. Credit allowable this year. Enter the lesser of Line C or Line F, not to exceed the balance of maximum credit available."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":523,"AM":0,"x":52.793,"y":41.364,"w":12.045,"h":0.833,"TU":"Part 11. Line A. Enter the amount of eligible expenses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":524,"AM":1024,"x":52.793,"y":42.114,"w":12.045,"h":0.833,"TU":"Multiply the amount\ton Line A\tby 25%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":525,"AM":0,"x":52.793,"y":42.864,"w":12.045,"h":0.833,"TU":"Line C. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":526,"AM":1024,"x":52.793,"y":43.614,"w":12.045,"h":0.833,"TU":"Add Lines\tB and C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L53","EN":0},"TI":527,"AM":0,"x":68.841,"y":44.532,"w":21.6,"h":0.912,"TU":"Line 11E. Credit allowable this year. Enter the amount from Line D or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":528,"AM":1024,"x":52.793,"y":46.197,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VASCR2"}},"id":{"Id":"Add_VASCR2","EN":0},"TI":529,"AM":0,"x":47.241,"y":47.572,"w":6.311,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VASCR2.content.txt b/test/data/va/form/VASCR2.content.txt new file mode 100755 index 00000000..195d44af --- /dev/null +++ b/test/data/va/form/VASCR2.content.txt @@ -0,0 +1,344 @@ +PART 12 - DAY-CARE FACILITY INVESTMENT TAX CREDIT + + D +Credit allowable this year: + Enter the amount from Line C or the + balance of maximum credit available, whichever is less. ........................................................ +12D + E Carryover credit to next year: Line C less Line 12D (applicable only +PART 13 - LOW-INCOME HOUSING CREDIT + A +EXPIRED - June 30, 2010. + D +Credit allowable this year: + Enter amount from Line C or + the balance of maximum credit available, whichever is less. .................................................. +13D +PART 14 - RESERVED FOR FUTURE USE +PART 15 - QUALIFIED EQUITY AND SUBORDINATED DEBT INVESTMENTS TAX CREDIT + SPOUSE YOU + + +D + Credit(s) allowable this year: + Your credit: +Enter the amount from Line C, YOU column or the + balance of maximum credit available, whichever is less (not to exceed + +15D + Be sure to claim the proper credit on the total lines + E +Spouse’s credit: +Enter the amount from Line C, SPOUSE column or the + balance of maximum credit available, whichever is less (not to exceed + $50,000 per taxpayer). ............................................................................... Spouse’s credit + +15E + +F Carryover credit to next year: + Line C less Line 15D and/or Line 15E +(applicable +PART 16 - WORKER RETRAINING TAX CREDIT + A Enter amount of Worker Retraining Tax Credit authorized by the + D +Credit allowable this year: +Enter the amount from Line C or the + balance of maximum credit available, whichever is less. ........................................................ +16D + E Carryover credit to next year: Line C less Line 16D +PART 17 - WASTE MOTOR OIL BURNING EQUIPMENT CREDIT + A Enter 50% of the purchase price paid during the taxable year for + B +Credit allowable this year: + Enter the amount from Line A, up to + $5,000 (not to exceed balance of maximum credit available). ................................................ +17B +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +* +00 +. +, +Schedule CR (2013) +Page 3 +Social Security Number +- +- + Name(s) as shown on Virginia return +A +Authorized credit amount in the current year. +........................................... +A +__________________ + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + within 3-year carryover period. See instructions for limitations). .............. +E +__________________ + ....................................... +A +__________________ + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + E +Carryover credit to next year: Line C less Line 13D + (applicable only within 5-year carryover period). +...................................... +E +__________________ + A +Credit amount authorized by the +C +Add Lines A and B. +.............................................. +_________________ +_________________ + B +Carryover credit from prior year(s). +..................... +_________________ +_________________ + Department of Taxation. +...................................... +_________________ +_________________ + $50,000 per taxpayer). +........................................................................................... +Your credit + only within 15-year carryover period). +................. +__________________ +_________________ + Department of Taxation. +........................................................................... +A +__________________ + B +Carryover credit from prior year(s) +........................................................... +B +__________________ + C +Add Lines A and B. +.................................................................................. +C +__________________ + (applicable only within 3-year carryover period). +...................................... +E +__________________ + equipment used exclusively for burning waste motor oil at your facility. +.. +A +__________________ +----------------Page (0) Break---------------- +PART 18 - LONG-TERM CARE INSURANCE TAX CREDIT +If filing a joint or combined return and you and your spouse have separate policies, report total premium +payments for policies purchased prior to 1/1/2013 in Section 1 and report total premium payments for policies +purchased on or after 1/1/2013 in Section 2. + A Enter the date the policy was issued to you or to your spouse. The policy’s issue date must + be on or after 1/1/2006. If the policy was issued on or +after 1/1/2013, skip to Section 2, Line F. + Otherwise, complete Section 1. + SPOUSE _________________ YOU _________________ +Section 1 +- Complete Lines B through E ONLY if the policy was issued +prior to 1/1/2013. +for the policy’s first 12 months of coverage. Eligible premiums are the premiums actually paid + on or after 1/1/08 for the first 12 months of coverage minus any amounts you deducted on your + federal return and/or your Virginia return. DO NOT include any premiums paid for coverage beyond + + C Multiply Line B by 15% (.15). This is the maximum amount of credit you + D Enter the total amount of LTC credit claimed on your tax returns for 2008 + E Subtract Line D from Line C. If Line D is equal to Line C, enter 0. Stop. You have no remaining + credit for this policy. If Line D is less than Line C, enter the difference. + This is the remaining amount of credit for the policy. Go to Section 3. +Section 2 +- Complete Lines F and G ONLY if the policy was issued to you +on or after 1/1/2013. + F For policies issued on or after 1/1/13, enter the amount of premium paid + during taxable year 2013 less the amount deducted on your federal return +Section 3 +- Complete Lines H through J + J +Credit allowable this year: + Enter the amount from Line H or I or balance of maximum credit + available, whichever is less. If filing a joint return, and completing both Sections 1 and 2, add + Lines H and I and enter the total or balance of maximum credit available, whichever is less. .. +18J +PART 19 - BIODIESEL AND GREEN DIESEL FUELS TAX CREDIT + A Enter the amount of Biodiesel and Green Diesel Fuels Tax Credit authorized + by the Virginia Department of Taxation or the amount transferred to you +_ + F +Credit allowable this year: + Enter the amount from Line E + or the balance of maximum credit available, whichever is less. .............................................. +19F + G Carryover credit to next year: Line E less Line 19F +PART 20 - LIVABLE HOME TAX CREDIT + A Enter the amount of the Livable Home Tax Credit authorized by the + D +Credit allowable this year: +Enter the amount from Line C + or the balance of maximum credit available, whichever is less. .............................................. +20D + E Carryover credit to next year: Line C less Line 20D +PART 21 - RIPARIAN WATERWAY BUFFER TAX CREDIT + A Enter the amount of Riparian Waterway Buffer Tax Credit + D +Credit allowable this year: + Enter the amount from Line C + or the balance of maximum credit available, whichever is less. .............................................. +21D +00 +. +,, +* +00 +. +,, +00 +. +, +00 +. +,, +Schedule CR (2013) +Page 4 +Social Security Number +- +- + Name(s) as shown on Virginia return + B +For policies issued prior to 1/1/13, enter the total annual eligible premiums paid on or after 1/1/08 + the first 12 months of the policy. See Instructions. +................................... +B +_________________ + may earn and use for the life of this policy. +............................................... +C +_________________ + through 2012, excluding any carryovers from years prior to 2008. +........... +D +_________________ +...... +E +_________________ + and/or your Virginia return. See instructions. +........................................... +F +_________________ + G +2013 credit limitation for the policy. Multiply Line F by 15% (.15). +............ +G +_________________ + H If you completed Section 1, enter the total amount from Line E. +............... +H +_________________ + I +If you completed Section 2, enter the total amount from Line G. +.............. +I +_________________ + in the current year. +...................................................................................... +A +________________ + B +Carryover credit from prior year(s). +............................................................ +B +_________________ + C +Add Lines A and B. +..................................................................................... +C +_________________ + D +Enter the total credit transferred to others in the current year. +................... +D +_________________ + E +Subtract Line D from Line C. +...................................................................... +E +_________________ + (applicable only within 3-year carryover period). +........................................ +G +_________________ + Department of Housing and Community Development. +............................. +A +_________________ + B +Carryover credit from prior year(s). +............................................................ +B +_________________ + C +Add Lines A and B +..................................................................................... +C +_________________ + (applicable only within 7-year carryover period). +........................................ +E +_________________ + authorized by the Virginia Department of Forestry. +.................................. +A +__________________ + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + E +Carryover credit to next year: Line C less Line 21D + (applicable only within 5-year carryover period). +...................................... +E +__________________ +Continue to Page 5 +----------------Page (1) Break---------------- diff --git a/test/data/va/form/VASCR2.fields.json b/test/data/va/form/VASCR2.fields.json new file mode 100755 index 00000000..ab76d7e7 --- /dev/null +++ b/test/data/va/form/VASCR2.fields.json @@ -0,0 +1 @@ +[{"id":"NAM3","type":"alpha","calc":true,"value":""},{"id":"CODE1","type":"ssn","calc":true,"value":""},{"id":"L55","type":"number","calc":false,"value":""},{"id":"L56","type":"number","calc":false,"value":""},{"id":"L57","type":"number","calc":true,"value":""},{"id":"L58","type":"number","calc":false,"value":""},{"id":"L59","type":"number","calc":true,"value":""},{"id":"L60B","type":"number","calc":false,"value":""},{"id":"L60C","type":"number","calc":true,"value":""},{"id":"L61","type":"number","calc":false,"value":""},{"id":"L62","type":"number","calc":true,"value":""},{"id":"L68B","type":"number","calc":false,"value":""},{"id":"L68","type":"number","calc":false,"value":""},{"id":"L69B","type":"number","calc":false,"value":""},{"id":"L69","type":"number","calc":false,"value":""},{"id":"L70B","type":"number","calc":true,"value":""},{"id":"L70","type":"number","calc":true,"value":""},{"id":"L71","type":"number","calc":false,"value":""},{"id":"L71B","type":"number","calc":false,"value":""},{"id":"L72B","type":"number","calc":true,"value":""},{"id":"L72","type":"number","calc":true,"value":""},{"id":"L73","type":"number","calc":false,"value":""},{"id":"L74","type":"number","calc":false,"value":""},{"id":"L75","type":"number","calc":true,"value":""},{"id":"L76","type":"number","calc":false,"value":""},{"id":"L77","type":"number","calc":true,"value":""},{"id":"L78","type":"number","calc":false,"value":""},{"id":"L79","type":"number","calc":false,"value":""},{"id":"NAM4","type":"alpha","calc":true,"value":""},{"id":"CODE2","type":"ssn","calc":true,"value":""},{"id":"SPPOLICY","type":"date","calc":false,"value":""},{"id":"TPPOLICY","type":"date","calc":false,"value":""},{"id":"PREMIUM","type":"number","calc":false,"value":""},{"id":"MULT80A","type":"number","calc":true,"value":""},{"id":"CRDCLM","type":"number","calc":false,"value":""},{"id":"MAXCRD","type":"number","calc":true,"value":""},{"id":"PREPAID","type":"number","calc":false,"value":""},{"id":"MULT81","type":"number","calc":true,"value":""},{"id":"AMT80C","type":"number","calc":true,"value":""},{"id":"ADD","type":"number","calc":true,"value":""},{"id":"CREDIT","type":"number","calc":false,"value":""},{"id":"BIO","type":"number","calc":false,"value":""},{"id":"CARRYOVR","type":"number","calc":false,"value":""},{"id":"BIOADD","type":"number","calc":true,"value":""},{"id":"BIOTRANS","type":"number","calc":false,"value":""},{"id":"BIOSUB","type":"number","calc":true,"value":""},{"id":"BIOCRED","type":"number","calc":false,"value":""},{"id":"BIOCARRY","type":"number","calc":true,"value":""},{"id":"L90","type":"number","calc":false,"value":""},{"id":"L91","type":"number","calc":false,"value":""},{"id":"L92","type":"number","calc":true,"value":""},{"id":"L93","type":"number","calc":false,"value":""},{"id":"L94","type":"number","calc":true,"value":""},{"id":"L95","type":"number","calc":false,"value":""},{"id":"L96","type":"number","calc":false,"value":""},{"id":"L97","type":"number","calc":true,"value":""},{"id":"L98","type":"number","calc":false,"value":""},{"id":"L99","type":"number","calc":true,"value":""},{"id":"Add_VASCR3","type":"link","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VASCR2.json b/test/data/va/form/VASCR2.json new file mode 100755 index 00000000..043db5b0 --- /dev/null +++ b/test/data/va/form/VASCR2.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"green Sch CR WEB 11 13 13.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.425,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":10.632,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":10.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":10.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":10.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":10.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":10.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":10.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":10.632,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":9.386,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":10.629,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":16.449,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":16.449,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":16.449,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":16.449,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":16.449,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":16.449,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":16.449,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":16.449,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":15.202,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":16.446,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":27.841,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":27.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":27.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":27.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":27.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":27.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":27.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":27.841,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":26.595,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":27.838,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":31.587,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":31.587,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":31.587,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":31.587,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":31.587,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":31.587,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":31.587,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":31.587,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":30.341,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":31.584,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":38.192,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":38.192,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":38.192,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":38.192,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":38.192,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":38.192,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":38.192,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":38.192,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":36.945,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":38.189,"w":6,"l":3.205},{"oc":"#d2d2d2","x":80.8,"y":41.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":43.117,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":41.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":43.117,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":41.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":43.117,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":41.87,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":43.113,"w":6,"l":3.205},{"oc":"#c9c9c9","x":41.137,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":41.102,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.612,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.577,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.087,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.052,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.562,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.527,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.037,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.002,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.512,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.477,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.987,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.952,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.462,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.427,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.937,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.902,"y":5.569,"w":6,"l":2.475},{"oc":"#161616","x":6.365,"y":5.979,"w":1.5,"l":30.534},{"oc":"#161616","x":6.365,"y":3.792,"w":1.5,"l":30.534},{"oc":"#161616","x":69.353,"y":46.236,"w":3,"l":2.432},{"oc":"#161616","x":96.276,"y":6.464,"w":3,"l":2.432},{"oc":"#161616","x":96.277,"y":46.236,"w":3,"l":2.432},{"oc":"#161616","x":65.573,"y":6.464,"w":3,"l":2.432}],"VLines":[{"oc":"#d2d2d2","x":68.76,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":9.264,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":15.08,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":26.473,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":30.219,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":36.823,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":41.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":41.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":41.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":41.748,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":41.748,"w":6,"l":1.35},{"oc":"#c9c9c9","x":41.472,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":43.947,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":46.422,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":48.897,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":51.372,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":53.847,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":56.322,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":58.797,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":61.272,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":63.67,"y":4.206,"w":6,"l":1.484},{"oc":"#161616","x":36.899,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":6.365,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":69.525,"y":45.415,"w":3,"l":0.884},{"oc":"#161616","x":98.545,"y":6.414,"w":3,"l":0.884},{"oc":"#161616","x":98.554,"y":45.408,"w":3,"l":0.884},{"oc":"#161616","x":65.745,"y":6.404,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.708,"y":10.264,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":10.245,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":16.08,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":16.061,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":27.473,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":27.454,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":31.219,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":31.2,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":37.823,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":37.804,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":42.748,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#161616","x":5.938,"y":6.287,"w":36.11899999999998,"clr":-1,"A":"left","R":[{"T":"PART%2012%20-%20DAY-CARE%20FACILITY%20INVESTMENT%20TAX%20CREDIT%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,1,0]}]},{"oc":"#161616","x":7.536,"y":9.287,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":9.287,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":9.287,"w":16.230000000000004,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":9.812,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":9.812,"w":1.834,"clr":-1,"A":"left","R":[{"T":"12D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":10.562,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":10.562,"w":29.900000000000016,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2012D%20(applicable%20only%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":12.118,"w":20.89,"clr":-1,"A":"left","R":[{"T":"PART%2013%20-%20LOW-INCOME%20HOUSING%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.603,"y":12.868,"w":1.2782,"clr":-1,"A":"left","R":[{"T":"%20%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":12.868,"w":12.061000000000009,"clr":-1,"A":"left","R":[{"T":"EXPIRED%20-%20June%2030%2C%202010.","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":7.537,"y":15.118,"w":1.556,"clr":-1,"A":"left","R":[{"T":"%20%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":15.118,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":15.118,"w":13.172,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%20C%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":15.643,"w":40.68699999999994,"clr":-1,"A":"left","R":[{"T":"the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":15.643,"w":1.834,"clr":-1,"A":"left","R":[{"T":"13D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":18.475,"w":19.558000000000007,"clr":-1,"A":"left","R":[{"T":"PART%2014%20-%20RESERVED%20FOR%20FUTURE%20USE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":5.938,"y":20.537,"w":42.11400000000002,"clr":-1,"A":"left","R":[{"T":"PART%2015%20-%20QUALIFIED%20EQUITY%20AND%20SUBORDINATED%20DEBT%20INVESTMENTS%20TAX%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":42.961,"y":21.287,"w":4.724,"clr":-1,"A":"left","R":[{"T":"SPOUSE%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":59.171,"y":21.287,"w":2.167,"clr":-1,"A":"left","R":[{"T":"YOU","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":7.871,"y":25.375,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":25.375,"w":13.615000000000004,"clr":-1,"A":"left","R":[{"T":"Credit(s)%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.458,"y":25.9,"w":5.890000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":20.282,"y":25.9,"w":22.454000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C%2C%20YOU%20column%20or%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":26.425,"w":31.178000000000004,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20(not%20to%20exceed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":26.95,"w":1.834,"clr":-1,"A":"left","R":[{"T":"15D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":14.6,"y":28.318,"w":24.172999999999995,"clr":-1,"A":"left","R":[{"T":"Be%20sure%20to%20claim%20the%20proper%20credit%20on%20the%20total%20lines","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.536,"y":29.687,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":29.687,"w":8.058000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":22.936,"y":29.687,"w":24.177000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C%2C%20SPOUSE%20column%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":30.212,"w":31.178000000000004,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20(not%20to%20exceed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":30.737,"w":32.57899999999994,"clr":-1,"A":"left","R":[{"T":"%2450%2C000%20per%20taxpayer).%20...............................................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.881,"y":30.737,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.007,"y":30.737,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"15E","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":31.262,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":31.262,"w":13.171000000000005,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":31.787,"w":17.120000000000005,"clr":-1,"A":"left","R":[{"T":"Line%20C%20less%20Line%2015D%20and%2For%20Line%2015E%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.551,"y":31.787,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"(applicable%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":33.343,"w":22.612000000000002,"clr":-1,"A":"left","R":[{"T":"PART%2016%20-%20WORKER%20RETRAINING%20TAX%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":34.093,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":34.093,"w":28.567,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20Worker%20Retraining%20Tax%20Credit%20authorized%20by%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":36.868,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":36.868,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.529,"y":36.868,"w":15.952000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":37.393,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":37.393,"w":1.834,"clr":-1,"A":"left","R":[{"T":"16D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":38.143,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":38.143,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2016D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":39.7,"w":30.280000000000012,"clr":-1,"A":"left","R":[{"T":"PART%2017%20-%20WASTE%20MOTOR%20OIL%20BURNING%20EQUIPMENT%20CREDIT%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":40.225,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":40.225,"w":28.904,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20of%20the%20purchase%20price%20paid%20during%20the%20taxable%20year%20for%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":41.781,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":41.781,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":41.781,"w":16.398000000000007,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20A%2C%20up%20to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":42.306,"w":40.63399999999994,"clr":-1,"A":"left","R":[{"T":"%245%2C000%20(not%20to%20exceed%20balance%20of%20maximum%20credit%20available).%20................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":42.306,"w":1.834,"clr":-1,"A":"left","R":[{"T":"17B","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":9.671,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":9.847,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":9.685,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":15.486999999999998,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":15.663,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":15.501000000000001,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":26.88,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":27.055,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":26.894,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":30.626,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":30.802,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":30.64,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":37.23,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":37.406,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":37.244,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.218,"y":39.898,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":42.155,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":42.331,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":82.999,"y":42.169,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.938,"y":1.596,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.198,"y":1.596,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%203","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.573,"y":3.244,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.338,"y":4.393,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.228,"y":4.412,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.935,"y":3.393,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":7.037,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":7.037,"w":20.009,"clr":-1,"A":"left","R":[{"T":"Authorized%20credit%20amount%20in%20the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.024,"y":7.037,"w":11.954000000000013,"clr":-1,"A":"left","R":[{"T":"...........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":7.037,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":7.037,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":7.787000000000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":7.787000000000001,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":7.787000000000001,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.541,"y":7.787000000000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":7.787000000000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":8.537,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":8.537,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":8.537,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":8.537,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":8.537,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":11.087,"w":31.788999999999987,"clr":-1,"A":"left","R":[{"T":"within%203-year%20carryover%20period.%20See%20instructions%20for%20limitations).%20..............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538,"y":11.087,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":11.087,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.028,"y":12.868,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"%20.......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":12.868,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":12.868,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":13.618,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":13.618,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":13.618,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":13.618,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":13.618,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":14.368,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":14.368,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":14.368,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":14.368,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":14.368,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":16.393,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":16.393,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2013D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":16.918,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.691,"y":16.918,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.537,"y":16.918,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":16.918,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":22.037,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":22.037,"w":14.229000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20amount%20authorized%20by%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":24.625,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":24.625,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":24.625,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"..............................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.064,"y":24.625,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.446,"y":24.625,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":23.593,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":23.593,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":23.593,"w":6.394000000000004,"clr":-1,"A":"left","R":[{"T":".....................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.063,"y":23.593,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":23.593,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":22.562,"w":11.005000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.327,"y":22.562,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"......................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.063,"y":22.562,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":22.562,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":26.95,"w":10.339000000000002,"clr":-1,"A":"left","R":[{"T":"%2450%2C000%20per%20taxpayer).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":25.658,"y":26.95,"w":25.297999999999977,"clr":-1,"A":"left","R":[{"T":"...........................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":56.085,"y":26.95,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":32.312,"w":16.727000000000004,"clr":-1,"A":"left","R":[{"T":"only%20within%2015-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.345,"y":32.312,"w":5.004000000000001,"clr":-1,"A":"left","R":[{"T":".................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.391,"y":32.312,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.443,"y":32.312,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":34.618,"w":11.005000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.327,"y":34.618,"w":20.849999999999998,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607,"y":34.618,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":34.618,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":35.368,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":35.368,"w":15.335000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":31.675,"y":35.368,"w":16.40200000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":35.368,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":35.368,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":36.118,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":36.118,"w":9.117000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.988,"y":36.118,"w":22.79599999999999,"clr":-1,"A":"left","R":[{"T":"..................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":36.118,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":36.118,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":38.668,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%203-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.691,"y":38.668,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.537,"y":38.668,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":38.668,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":40.75,"w":31.233999999999998,"clr":-1,"A":"left","R":[{"T":"equipment%20used%20exclusively%20for%20burning%20waste%20motor%20oil%20at%20your%20facility.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":50.73,"y":40.75,"w":0.556,"clr":-1,"A":"left","R":[{"T":"..","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":40.75,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":40.75,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM3","EN":0},"TI":530,"AM":1024,"x":6.493,"y":5.069,"w":30.317,"h":0.9,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE1","EN":0},"TI":531,"AM":1024,"x":41.736,"y":4.539,"w":21.937,"h":0.914,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L55","EN":0},"TI":532,"AM":0,"x":52.999,"y":7.113,"w":12.045,"h":0.833,"TU":"Part 12. Line A. Authorized credit amount in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L56","EN":0},"TI":533,"AM":0,"x":52.999,"y":7.863,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57","EN":0},"TI":534,"AM":1024,"x":52.999,"y":8.613,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":535,"AM":0,"x":68.972,"y":9.595,"w":21.6,"h":0.912,"TU":"Line 12D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":536,"AM":1024,"x":53.086,"y":11.195,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60B","EN":0},"TI":537,"AM":0,"x":52.999,"y":13.675,"w":12.045,"h":0.833,"TU":"Part 13. Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60C","EN":0},"TI":538,"AM":1024,"x":52.999,"y":14.448,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L61","EN":0},"TI":539,"AM":0,"x":68.972,"y":15.399,"w":21.6,"h":0.912,"TU":"Line 13D. Credit allowable this year. Enter amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L62","EN":0},"TI":540,"AM":1024,"x":52.999,"y":16.998,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68B","EN":0},"TI":541,"AM":0,"x":40.422,"y":22.662,"w":11.364,"h":0.833,"TU":"Credit amount authorized by the Department of TaxationPart 15. Line A. Credit amount authorized by the Department of Taxation. Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68","EN":0},"TI":542,"AM":0,"x":53.572,"y":22.638,"w":11.385,"h":0.833,"TU":"Part 15. Line A. Credit amount authorized by the Department of Taxation. You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69B","EN":0},"TI":543,"AM":0,"x":40.422,"y":23.751,"w":11.364,"h":0.833,"TU":"Line B. Carryover credit from prior year(s). Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":544,"AM":0,"x":53.659,"y":23.673,"w":11.385,"h":0.833,"TU":"Line B. Carryover credit from prior year(s). You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70B","EN":0},"TI":545,"AM":1024,"x":40.294,"y":24.701,"w":11.364,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70","EN":0},"TI":546,"AM":1024,"x":53.659,"y":24.701,"w":11.385,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L71","EN":0},"TI":547,"AM":0,"x":68.972,"y":26.785,"w":21.6,"h":0.912,"TU":"Line 15D. Your credit. Enter the amount from Line C. You column or the balance of maximum credit available, whichever is less (not to exceed $50,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L71B","EN":0},"TI":548,"AM":0,"x":68.972,"y":30.549,"w":21.6,"h":0.912,"TU":"Line 15E. Spouse’s credit. Enter the amount from Line C, Spouse column or the balance of maximum credit available, whichever is less (not to exceed $50,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L72B","EN":0},"TI":549,"AM":1024,"x":39.613,"y":32.416,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L72","EN":0},"TI":550,"AM":1024,"x":53.659,"y":32.416,"w":11.385,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L73","EN":0},"TI":551,"AM":0,"x":52.999,"y":34.726,"w":12.045,"h":0.833,"TU":"Enter amount of Worker Retraining Tax Credit authorized by the Department of TaxationPart 16. Line A. Enter the amount of Worker Retraining Tax Credit authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L74","EN":0},"TI":552,"AM":0,"x":52.999,"y":35.476,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L75","EN":0},"TI":553,"AM":1024,"x":52.999,"y":36.226,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L76","EN":0},"TI":554,"AM":0,"x":68.972,"y":37.155,"w":21.6,"h":0.912,"TU":"Line 16D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L77","EN":0},"TI":555,"AM":1024,"x":52.999,"y":38.776,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L78","EN":0},"TI":556,"AM":0,"x":52.999,"y":40.853,"w":12.045,"h":0.833,"TU":"Part 17. Line A. Enter 50% of the purchase price paid during the taxable equipment used exclusively for burning waste motor oil at your facility."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L79","EN":0},"TI":557,"AM":0,"x":81.385,"y":42.085,"w":9.3,"h":0.926,"TU":"Line 17B. Credit allowable this year."}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#161616","x":43.792,"y":11.167,"w":1.1025,"l":9.562},{"oc":"#161616","x":45.396,"y":19.518,"w":1.1025,"l":11.301},{"oc":"#d2d2d2","x":68.425,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":26.027,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":26.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":26.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":26.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":26.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":26.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":26.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":26.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":24.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":26.024,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":33.555,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":33.555,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":33.555,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":33.555,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":33.555,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":33.555,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":33.555,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":33.555,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":32.308,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":33.552,"w":6,"l":3.205},{"oc":"#d2d2d2","x":80.8,"y":38.822,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":40.069,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":38.822,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":40.069,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":38.822,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":40.069,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":38.822,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":40.066,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":46.751,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":46.751,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":46.751,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":46.751,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":46.751,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":46.751,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":46.751,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":46.751,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":45.504,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":46.748,"w":6,"l":3.205},{"oc":"#161616","x":66.791,"y":49.16,"w":3,"l":2.432},{"oc":"#161616","x":65.573,"y":6.117,"w":3,"l":2.432},{"oc":"#161616","x":94.93,"y":5.469,"w":3,"l":2.432},{"oc":"#161616","x":96.133,"y":49.172,"w":3,"l":2.432},{"oc":"#c9c9c9","x":41.137,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":41.102,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.612,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.577,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.087,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.052,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.562,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.527,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.037,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.002,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.512,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.477,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.987,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.952,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.462,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.427,"y":5.194,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.937,"y":3.947,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.902,"y":5.194,"w":6,"l":2.475},{"oc":"#161616","x":6.361,"y":5.292,"w":1.5,"l":30.534},{"oc":"#161616","x":6.361,"y":3.104,"w":1.5,"l":30.534}],"VLines":[{"oc":"#d2d2d2","x":68.76,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":24.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":32.186,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":38.701,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":38.701,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":38.701,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":38.701,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":38.701,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":45.382,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":45.382,"w":6,"l":1.35},{"oc":"#161616","x":66.963,"y":48.335,"w":3,"l":0.884},{"oc":"#161616","x":65.745,"y":6.058,"w":3,"l":0.884},{"oc":"#161616","x":97.199,"y":5.416,"w":3,"l":0.884},{"oc":"#161616","x":98.385,"y":48.341,"w":3,"l":0.884},{"oc":"#c9c9c9","x":41.472,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":43.947,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":46.422,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":48.897,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":51.372,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":53.847,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":56.322,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":58.797,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":61.272,"y":3.825,"w":6,"l":1.35},{"oc":"#c9c9c9","x":63.67,"y":3.831,"w":6,"l":1.484},{"oc":"#161616","x":36.895,"y":3.104,"w":1.5,"l":2.188},{"oc":"#161616","x":6.361,"y":3.104,"w":1.5,"l":2.188}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.708,"y":25.658,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":25.639,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":33.186,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":33.168,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":39.701,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":46.382,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":46.363,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#161616","x":5.938,"y":5.327,"w":26.667000000000016,"clr":-1,"A":"left","R":[{"T":"PART%2018%20-%20LONG-TERM%20CARE%20INSURANCE%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":5.938,"y":6.133,"w":45.74299999999997,"clr":-1,"A":"left","R":[{"T":"If%20filing%20a%20joint%20or%20combined%20return%20and%20you%20and%20your%20spouse%20have%20separate%20policies%2C%20report%20total%20premium","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":6.658,"w":48.52099999999996,"clr":-1,"A":"left","R":[{"T":"payments%20for%20policies%20purchased%20prior%20to%201%2F1%2F2013%20in%20Section%201%20and%20report%20total%20premium%20payments%20for%20policies%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":7.183,"w":19.45600000000001,"clr":-1,"A":"left","R":[{"T":"purchased%20on%20or%20after%201%2F1%2F2013%20in%20Section%202.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":7.989000000000001,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.363,"y":7.989000000000001,"w":41.236,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20the%20policy%20was%20issued%20to%20you%20or%20to%20your%20spouse.%20The%20policy%E2%80%99s%20issue%20date%20must%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":8.514,"w":24.069000000000006,"clr":-1,"A":"left","R":[{"T":"be%20on%20or%20after%201%2F1%2F2006.%20If%20the%20policy%20was%20issued%20on%20or%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":41.911,"y":8.514,"w":18.643,"clr":-1,"A":"left","R":[{"T":"after%201%2F1%2F2013%2C%20skip%20to%20Section%202%2C%20Line%20F.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":9.039,"w":13.839000000000004,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20complete%20Section%201.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.474,"y":9.564,"w":26.073000000000025,"clr":-1,"A":"left","R":[{"T":"SPOUSE%20_________________%20YOU%20_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":10.37,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Section%201","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":11.286,"y":10.37,"w":26.90000000000001,"clr":-1,"A":"left","R":[{"T":"-%20Complete%20Lines%20B%20through%20E%20ONLY%20if%20the%20policy%20was%20issued%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.542,"y":10.37,"w":7.948,"clr":-1,"A":"left","R":[{"T":"prior%20to%201%2F1%2F2013.","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.328,"y":11.702,"w":41.91399999999999,"clr":-1,"A":"left","R":[{"T":"for%20the%20policy%E2%80%99s%20first%2012%20months%20of%20coverage.%20Eligible%20premiums%20are%20the%20premiums%20actually%20paid%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":12.227,"w":42.46699999999996,"clr":-1,"A":"left","R":[{"T":"on%20or%20after%201%2F1%2F08%20for%20the%20first%2012%20months%20of%20coverage%20minus%20any%20amounts%20you%20deducted%20on%20your%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":12.752,"w":44.07299999999996,"clr":-1,"A":"left","R":[{"T":"federal%20return%20and%2For%20your%20Virginia%20return.%20DO%20NOT%20include%20any%20premiums%20paid%20for%20coverage%20beyond%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":14.473,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":14.473,"w":32.345,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%20B%20by%2015%25%20(.15).%20%20This%20is%20the%20maximum%20amount%20of%20credit%20you%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":15.669,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":15.669,"w":32.404,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20LTC%20credit%20claimed%20on%20your%20tax%20returns%20for%202008%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":16.865,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":16.865,"w":42.298999999999964,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20D%20from%20Line%20C.%20If%20Line%20D%20is%20equal%20to%20Line%20C%2C%20enter%200.%20Stop.%20You%20have%20no%20remaining%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":17.39,"w":31.292,"clr":-1,"A":"left","R":[{"T":"credit%20for%20this%20policy.%20If%20Line%20D%20is%20less%20than%20Line%20C%2C%20enter%20the%20difference.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":17.915,"w":30.625,"clr":-1,"A":"left","R":[{"T":"This%20is%20the%20remaining%20amount%20of%20credit%20for%20the%20policy.%20Go%20to%20Section%203.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":18.722,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Section%202","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":11.286,"y":18.722,"w":28.234000000000012,"clr":-1,"A":"left","R":[{"T":"-%20Complete%20Lines%20F%20and%20G%20ONLY%20if%20the%20policy%20was%20issued%20to%20you%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":45.146,"y":18.722,"w":9.393000000000002,"clr":-1,"A":"left","R":[{"T":"on%20or%20after%201%2F1%2F2013.","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":7.872,"y":19.528,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":19.528,"w":32.293,"clr":-1,"A":"left","R":[{"T":"For%20policies%20issued%20on%20or%20after%201%2F1%2F13%2C%20enter%20the%20amount%20of%20premium%20paid%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":20.053,"w":33.129000000000005,"clr":-1,"A":"left","R":[{"T":"during%20taxable%20year%202013%20less%20the%20amount%20deducted%20on%20your%20federal%20return%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":22.056,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Section%203","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":11.286,"y":22.056,"w":13.005000000000004,"clr":-1,"A":"left","R":[{"T":"-%20Complete%20Lines%20H%20through%20J","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.537,"y":24.204,"w":1.056,"clr":-1,"A":"left","R":[{"T":"%20J%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":24.204,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":24.204,"w":28.511000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20H%20or%20I%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":24.729,"w":41.13099999999997,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20If%20filing%20a%20joint%20return%2C%20and%20completing%20both%20Sections%201%20and%202%2C%20add%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":25.254,"w":41.07299999999999,"clr":-1,"A":"left","R":[{"T":"Lines%20H%20and%20I%20and%20enter%20the%20total%20or%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.47,"y":25.254,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"18J","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":26.285,"w":30.393000000000015,"clr":-1,"A":"left","R":[{"T":"PART%2019%20-%20BIODIESEL%20AND%20GREEN%20DIESEL%20FUELS%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":27.092,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":27.092,"w":34.01500000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Biodiesel%20and%20Green%20Diesel%20Fuels%20Tax%20Credit%20authorized%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":27.617,"w":32.182,"clr":-1,"A":"left","R":[{"T":"by%20the%20Virginia%20Department%20of%20Taxation%20or%20the%20amount%20transferred%20to%20you%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":64.149,"y":28.142,"w":0.556,"clr":-1,"A":"left","R":[{"T":"_","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":32.173,"w":1.167,"clr":-1,"A":"left","R":[{"T":"%20F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":32.173,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":32.173,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20E","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":32.698,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.376,"y":32.698,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":33.504,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":33.504,"w":22.509000000000007,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20E%20less%20Line%2019F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":35.06,"w":18.835000000000004,"clr":-1,"A":"left","R":[{"T":"PART%2020%20-%20LIVABLE%20HOME%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":35.867,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":35.867,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20the%20Livable%20Home%20Tax%20Credit%20authorized%20by%20the%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":38.81,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":38.81,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.53,"y":38.81,"w":13.117000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":39.335,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":39.335,"w":1.834,"clr":-1,"A":"left","R":[{"T":"20D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":40.142,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":40.142,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2020D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":41.698,"w":26.722000000000012,"clr":-1,"A":"left","R":[{"T":"PART%2021%20-%20RIPARIAN%20WATERWAY%20BUFFER%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":42.504,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":42.504,"w":25.621000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Riparian%20Waterway%20Buffer%20Tax%20Credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":45.448,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":45.448,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":45.448,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":45.973,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":45.973,"w":1.834,"clr":-1,"A":"left","R":[{"T":"21D","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":25.065,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":25.241,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":25.079,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":3.703,"y":26.547,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":32.594,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":32.769,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":32.608,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":39.108,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":39.283,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":82.999,"y":39.122,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":45.789,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":45.965,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":45.803,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.938,"y":2.046,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.198,"y":2.046,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%204","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.573,"y":2.869,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.338,"y":4.018,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.228,"y":4.037,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931,"y":2.768,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":11.177,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":11.177,"w":43.353999999999964,"clr":-1,"A":"left","R":[{"T":"For%20policies%20issued%20prior%20to%201%2F1%2F13%2C%20enter%20the%20total%20annual%20eligible%20premiums%20paid%20on%20or%20after%201%2F1%2F08%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":13.37,"w":22.4,"clr":-1,"A":"left","R":[{"T":"the%20first%2012%20months%20of%20the%20policy.%20See%20Instructions.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.033,"y":13.37,"w":10.00800000000001,"clr":-1,"A":"left","R":[{"T":"...................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.229,"y":13.37,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":13.37,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":14.998,"w":19.009000000000004,"clr":-1,"A":"left","R":[{"T":"may%20earn%20and%20use%20for%20the%20life%20of%20this%20policy.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":36.023,"y":14.998,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"...............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.163,"y":14.998,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":14.998,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":16.194,"w":28.95699999999999,"clr":-1,"A":"left","R":[{"T":"through%202012%2C%20excluding%20any%20carryovers%20from%20years%20prior%20to%202008.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":48.053,"y":16.194,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"...........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.16,"y":16.194,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.443,"y":16.194,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":49.726,"y":17.915,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"......%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.229,"y":17.915,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":17.915,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":20.578,"w":20.064000000000004,"clr":-1,"A":"left","R":[{"T":"and%2For%20your%20Virginia%20return.%20%20See%20instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.357,"y":20.578,"w":12.232000000000014,"clr":-1,"A":"left","R":[{"T":"...........................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.296,"y":20.578,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":20.578,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":21.249,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":21.249,"w":28.900000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20credit%20limitation%20for%20the%20policy.%20Multiply%20Line%20%20F%20by%2015%25%20(.15).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":47.722,"y":21.249,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"............%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.097,"y":21.249,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.447,"y":21.249,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":22.862,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":22.862,"w":28.015,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Section%201%2C%20enter%20the%20total%20amount%20from%20Line%20E.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":46.717,"y":22.862,"w":4.448,"clr":-1,"A":"left","R":[{"T":"...............%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.162,"y":22.862,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444,"y":22.862,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872,"y":23.533,"w":0.556,"clr":-1,"A":"left","R":[{"T":"I%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":23.533,"w":28.125999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Section%202%2C%20enter%20the%20total%20amount%20from%20Line%20G.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":47.052,"y":23.533,"w":4.17,"clr":-1,"A":"left","R":[{"T":"..............%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.697,"y":23.533,"w":0.556,"clr":-1,"A":"left","R":[{"T":"I%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.446,"y":23.533,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":28.142,"w":8.615000000000002,"clr":-1,"A":"left","R":[{"T":"in%20the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.319,"y":28.142,"w":23.907999999999983,"clr":-1,"A":"left","R":[{"T":"......................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.295,"y":28.142,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":28.142,"w":8.896,"clr":-1,"A":"left","R":[{"T":"________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":28.948,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":28.948,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":28.948,"w":16.680000000000017,"clr":-1,"A":"left","R":[{"T":"............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.228,"y":28.948,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444,"y":28.948,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":29.754,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":29.754,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":29.754,"w":23.629999999999985,"clr":-1,"A":"left","R":[{"T":".....................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.163,"y":29.754,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":29.754,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":30.561,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":30.561,"w":27.124,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20credit%20transferred%20to%20others%20in%20the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":45.715,"y":30.561,"w":5.282000000000002,"clr":-1,"A":"left","R":[{"T":"...................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.164,"y":30.561,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.446,"y":30.561,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":31.366999999999997,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":31.366999999999997,"w":12.894000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20D%20from%20Line%20C.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.667,"y":31.366999999999997,"w":19.460000000000004,"clr":-1,"A":"left","R":[{"T":"......................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.228,"y":31.366999999999997,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":31.366999999999997,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":34.029,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%203-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.694,"y":34.029,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.094,"y":34.029,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444,"y":34.029,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":36.392,"w":24.287000000000006,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Housing%20and%20Community%20Development.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":42.369,"y":36.392,"w":8.062000000000006,"clr":-1,"A":"left","R":[{"T":".............................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.292,"y":36.392,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.442,"y":36.392,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":37.198,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":37.198,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":37.198,"w":16.680000000000017,"clr":-1,"A":"left","R":[{"T":"............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.228,"y":37.198,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444,"y":37.198,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":38.004,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":38.004,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":38.004,"w":23.629999999999985,"clr":-1,"A":"left","R":[{"T":".....................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.163,"y":38.004,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":38.004,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":40.667,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%207-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.695,"y":40.667,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.228,"y":40.667,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":40.667,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":43.029,"w":22.397999999999993,"clr":-1,"A":"left","R":[{"T":"authorized%20by%20the%20Virginia%20Department%20of%20Forestry.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.033,"y":43.029,"w":9.452000000000009,"clr":-1,"A":"left","R":[{"T":"..................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":43.029,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.777,"y":43.029,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":43.836,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":43.836,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":43.836,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":43.836,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":43.836,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":44.642,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":44.642,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":44.642,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":44.642,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":44.642,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":46.498,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":46.498,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2021D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":47.023,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.693,"y":47.023,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538,"y":47.023,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":47.023,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"x":33.606,"y":48.412,"w":68.488,"clr":0,"A":"left","R":[{"T":"Continue%20to%20Page%205","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM4","EN":0},"TI":558,"AM":1024,"x":6.411,"y":4.359,"w":30.317,"h":0.897,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE2","EN":0},"TI":559,"AM":1024,"x":41.82,"y":4.199,"w":21.937,"h":0.914,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPPOLICY","EN":0},"TI":560,"AM":0,"x":38.981,"y":9.612,"w":11.364,"h":0.833,"TU":"Part 18. Line A. SPOUSE- date the policy was issued. The policy's issue date must be on or after 1/1/2006. If the policy was issued on or after 1/1/2013, skip to Section 2, Line F. Otherwise, complete Section 1.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPPOLICY","EN":0},"TI":561,"AM":0,"x":53.797,"y":9.699,"w":11.385,"h":0.833,"TU":"Part 18. Line A. YOU - date the policy was issued. The policy's issue date must be on or after 1/1/2006. If the policy was issued on or after 1/1/2013, skip to Section 2, Line F. Otherwise, complete Section 1.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREMIUM","EN":0},"TI":562,"AM":0,"x":53.622,"y":13.574,"w":11.385,"h":0.833,"TU":"For policies issued prior to 1/1/12, enter the total annual eligible premiums paid on or after 1/1/07Section 1. Line B. for policies issued prior to 1/1/13, enter the total annual eligible premiums paid on or after 1/1/08 for the policy's first 12 months of coverage. Eligible premiums are the premiums actually paid on or after 1/1/08 for the first 12 months of coverage minus any amounts you deducted on your federal retur and / or your Virginia return. Do not include any premiums paid for coverage beyond the first 12 months of the policy. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT80A","EN":0},"TI":563,"AM":1024,"x":53.622,"y":15.024,"w":11.385,"h":0.833,"TU":"Multiply Line B by 15% (.15)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDCLM","EN":0},"TI":564,"AM":0,"x":53.622,"y":16.279,"w":11.385,"h":0.833,"TU":"Total amount of LTC credit claimed on your tax returns for 2007Line D. Enter the total amount of LTC credit claimed on your tax returns for 2008 through 2012, excluding any carryovers from years prior to 2008."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXCRD","EN":0},"TI":565,"AM":1024,"x":53.643,"y":18.004,"w":11.364,"h":0.833,"TU":"Subtract Line D from Line C."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREPAID","EN":0},"TI":566,"AM":0,"x":53.643,"y":20.632,"w":11.364,"h":0.833,"TU":"For policies issued on or after 1/1/12, enter the amount of premium paid in 2012 less the amountLine F. For policies issued on or after 1/1/13, enter the amount of premium paid during taxable year 2013 less the amount deducted on your federal return and / or your Virginia return. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT81","EN":0},"TI":567,"AM":1024,"x":53.643,"y":21.497,"w":11.364,"h":0.833,"TU":"2012 credit limitation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT80C","EN":0},"TI":568,"AM":1024,"x":53.622,"y":22.947,"w":11.385,"h":0.833,"TU":"If you completed Section 1, enter the total amount from Line E"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD","EN":0},"TI":569,"AM":1024,"x":53.622,"y":23.803,"w":11.385,"h":0.833,"TU":"If you completed Section 2, enter the total amount from Line G"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":570,"AM":0,"x":69.167,"y":25.036,"w":21.6,"h":0.912,"TU":"Line 18J. Credit allowable this year. Enter the amount from Line H or I or balance of maximum credit available, whichever is less. If filing a joint return, and completing both Sections 1 and 2, add Lines H and I and enter the total or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIO","EN":0},"TI":571,"AM":0,"x":53.622,"y":28.083,"w":11.385,"h":0.833,"TU":"Amount of Biodiesel and Green Diesel Fuels Tax authorizedPart 19. Line A. Enter the amount of Biodiesel and Green Fuels Tax Credit authorized by the Virgina Department of Taxation or the amount transferred to you in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARRYOVR","EN":0},"TI":572,"AM":0,"x":53.622,"y":28.956,"w":11.385,"h":0.833,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOADD","EN":0},"TI":573,"AM":1024,"x":53.622,"y":29.758,"w":11.385,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOTRANS","EN":0},"TI":574,"AM":0,"x":53.622,"y":30.568,"w":11.385,"h":0.833,"TU":"Line D. Enter the total credit transferred to others in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOSUB","EN":0},"TI":575,"AM":1024,"x":53.622,"y":31.433,"w":11.385,"h":0.833,"TU":"Subtract Line D from Line C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOCRED","EN":0},"TI":576,"AM":0,"x":69.101,"y":32.558,"w":21.6,"h":0.912,"TU":"Line 19F. Credit allowable this year. Enter the amount from Line E or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOCARRY","EN":0},"TI":577,"AM":1024,"x":53.622,"y":34.158,"w":11.385,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L90","EN":0},"TI":578,"AM":0,"x":53.622,"y":36.462,"w":11.385,"h":0.833,"TU":"Part 20. Line A. Amount of the Livable Home Tax Credit authorized by the Department of Housing and Community Development."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L91","EN":0},"TI":579,"AM":0,"x":53.622,"y":37.295,"w":11.385,"h":0.833,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L92","EN":0},"TI":580,"AM":1024,"x":53.622,"y":38.105,"w":11.385,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L93","EN":0},"TI":581,"AM":0,"x":81.423,"y":39.012,"w":9.337,"h":0.953,"TU":"Line 20D. Credit allowable this year. Enter the amount from Line E or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L94","EN":0},"TI":582,"AM":1024,"x":53.622,"y":40.706,"w":11.385,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L95","EN":0},"TI":583,"AM":0,"x":52.962,"y":43.095,"w":12.045,"h":0.833,"TU":"Part 21. Line A. Enter the amount of Riparian Waterway Buffer Tax Credit authorized by the Virginia Department of Forestry."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L96","EN":0},"TI":584,"AM":0,"x":52.962,"y":43.906,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L97","EN":0},"TI":585,"AM":1024,"x":52.962,"y":44.708,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L98","EN":0},"TI":586,"AM":0,"x":69.032,"y":45.693,"w":21.6,"h":0.912,"TU":"Line 21D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L99","EN":0},"TI":587,"AM":1024,"x":53.037,"y":47.12,"w":12.045,"h":0.833,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VASCR3"}},"id":{"Id":"Add_VASCR3","EN":0},"TI":588,"AM":0,"x":46.268,"y":48.525,"w":6.386,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VASCR3.content.txt b/test/data/va/form/VASCR3.content.txt new file mode 100755 index 00000000..1f7ff57f --- /dev/null +++ b/test/data/va/form/VASCR3.content.txt @@ -0,0 +1,481 @@ +PART 22 - LAND PRESERVATION TAX CREDIT + the current year. + F +Credit(s) allowable this year: + Your credit: +Enter the amount from Line E, YOU column + or the balance of maximum credit available, whichever is less +22F + Be sure to claim the proper credit on the total lines. + G +Spouse’s credit: +Enter the amount from Line E, SPOUSE column + or the balance of maximum credit available, whichever is less +22G + H Carryover credit to next year: Line E less +PART 23 - + +COMMUNITY OF OPPORTUNITY TAX CREDIT + D +Credit allowable this year: + Enter amount from Line C or + the balance of maximum credit available, whichever is less. .................................................. +23D +PART 24 - GREEN JOBS CREATION TAX CREDIT + D +Credit allowable this year: + Enter the amount from Line C + or the balance of maximum credit available, whichever is less. .............................................. +24D +PART 25 - POLITICAL CONTRIBUTIONS CREDIT + B +Credit allowable this year: + Enter the amount from Line A + or the balance of maximum credit available, whichever is less. ............................................... +25B +PART 26 - FARM WINERIES AND VINEYARDS TAX CREDIT + D +Credit allowable this year: + Enter the amount from Line C + or the balance of maximum credit available, whichever is less. .............................................. +26D +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +00 +. +,, +Schedule CR (2013) + Page 5 +Social Security Number +- +- + Name(s) as shown on Virginia return + transferred in the current year. ............................ +_________________ +_________________ + B +Carryover credit from prior year(s). +..................... +_________________ +_________________ + A +Credit amount authorized or the amount + C +Add Lines A and B. +.............................................. +_________________ +_________________ + D +Total credit transferred to others in +................................................... +_________________ +_________________ + E +Subtract Line D from Line C. +............................... +_________________ +_________________ + (not to exceed $100,000 per taxpayer) +................................................................... +Your credit + (not to exceed $100,000 per taxpayer) +........................................................... +Spouse’s credit + Line 22F and/or Line 22G (see instructions). +...... +__________________ +_________________ + Department of Housing and Community Development. +........................... +A +__________________ + A +Enter the amount of credit authorized by the + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + E +Carryover credit to next year: Line C less Line 23D + (applicable only within 5-year carryover period). +...................................... +E +__________________ + with an annual salary that is $50,000 or more. +......................................... +A +__________________ + A +Enter the total eligible credit amount for each green job + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + E +Carryover credit to next year: Line C less Line 24D + (applicable only within 5-year carryover period). +...................................... +E +__________________ + limited to $25 for individuals or $50 for married filing jointly. +.................... +A +__________________ + A +Enter 50% of the amount of eligible political contributions. Credit is + A +Enter the total eligible credit amount authorized by + the Department of Taxation. +..................................................................... +A +__________________ + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + (applicable only within 10-year carryover period). +.................................... +E +__________________ + E +Carryover credit to next year: Line C less Line 26D +SPOUSE +YOU +----------------Page (0) Break---------------- +PART 27 - INTERNATIONAL TRADE FACILITY TAX CREDIT + A Enter the total eligible credit amount authorized by + + +F + Credit allowable this year: + Enter the amount from Line E + or the balance of maximum credit available, whichever is less. .............................................. +27F +PART 28 - PORT VOLUME INCREASE TAX CREDIT + D +Credit allowable this year: + Enter the amount from Line C + or the balance of maximum credit available, whichever is less. .............................................. +28D + E Carryover credit to next year: Line C less Line 28D +PART 29 - BARGE AND RAIL USAGE TAX CREDIT + A Enter the total eligible credit amount authorized by + D +Credit allowable this year: + Enter the amount from Line C + or the balance of maximum credit available, whichever is less. .............................................. +29D + E Carryover credit to next year: Line C less Line 29D +PART 30 - RESEARCH AND DEVELOPMENT EXPENSES TAX CREDIT + D +Credit allowable this year: + Enter the amount from Line A +30D +PART 31 - TELEWORK EXPENSES TAX CREDIT + B +Credit allowable this year: + Enter amount from Line A or the + balance of maximum credit available, whichever is less. ........................................................ +31B +PART 1 - TOTAL NONREFUNDABLE CREDITS + A. Add Lines 2A, 3D, 4F, 5D, 6D, 7D, 8D, 8I, 9D, 10G, 11E, 12D, 13D, 15D, 15E, 16D, 17B, + 18J, 19F, 20D, 21D, 22F, 22G, 23D, 24D, 25B, 26D, 27F, 28D, +29D, 30D, and 31B. + (if you claimed more than the maximum allowed nonrefundable credits, + see instructions). .......................................................................................................... +............... +1A +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +SECTION 2 - TOTAL NONREFUNDABLE CREDITS +00 +. +,, +Schedule CR (2013) +Page 6 + + +Social Security Number +- +- + Name(s) as shown on Virginia return + the Department of Taxation. +..................................................................... +A +__________________ + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + D +Enter 50% of tax per return. +..................................................................... +D +__________________ + amount from Line C or Line D, whichever is less. +................................... +E +__________________ +E +Maximum International Trade Facility Tax Credit: Enter the + (applicable only within 10-year carryover period). +.................................... +G +__________________ + G +Carryover credit to next year: Line C less Line 27F + the Virginia Port Authority. +........................................................................ +A +__________________ + A +Enter the total eligible credit amount authorized by + B +Carryover credit from prior year(s). .......................................................... +B +__________________ + C +Add Lines A and B. + ................................................................................... +C +__________________ + (applicable only within 5-year carryover period). +...................................... +E +__________________ + the Department of Taxation. +..................................................................... +A +__________________ + B +Carryover credit from prior year(s). +.......................................................... +B +__________________ + C +Add Lines A and B. +................................................................................... +C +__________________ + (applicable only within 5-year carryover period). +...................................... +E +__________________ + the Department of Taxation. +..................................................................... +A +__________________ + B +Reserved for future use + A +Enter the total eligible credit amount authorized by + C +Reserved for future use + or the balance of maximum credit available, whichever is less. +.............................................. + A +Enter the amount of Telework Expenses Tax Credit authorized by + the Virginia Department of Taxation. +....................................................... +A +__________________ +----------------Page (1) Break---------------- +Schedule CR (2013) +Page 7 + + +Social Security Number +- +- + Name(s) as shown on Virginia return + PART 1 - COALFIELD EMPLOYMENT ENHANCEMENT and VIRGINIA COAL EMPLOYMENT +AND PRODUCTION INCENTIVE TAX CREDITS + A 100% Coalfield Employment Enhancement and/or Virginia Coal Employment + and Production Incentive Tax Credits from Line 2 of your 2013 Schedule 306B. +........................ +1A + B +Full credit: + Enter amount from Line 12 of your 2013 Form 306. ................................................ +1B + C +85% credit: + Enter amount from Line 13 of your 2013 Form 306. ............................................... +1C + D +Total Coal Related Tax Credits + +allowable this year +: Add Lines B and C. .................................................................................... +1D + E +2013 Coalfield Employment Enhancement Tax Credit to be applied + toward your 2016 return: + +Enter the amount from Line 11 of your 2013 Form 306. +................... +1E +PART 2 - MOTION PICTURE PRODUCTION TAX CREDIT + A Enter amount of credit authorized by the Virginia Film Office. .................................................... +2A +PART 3 - AGRICULTURAL BEST MANAGEMENT PRACTICES TAX CREDIT + A Enter amount of credit authorized by the Department of Conservation and Recreation. ............ +3A +PART 4 - RESEARCH AND DEVELOPMENT EXPENSES TAX CREDIT + A Enter amount of Research and Development Expenses Tax Credit authorized by the + Department of Taxation. ..................................................................................................... +......... +4A +PART 1 - TOTAL REFUNDABLE CREDITS + A Add Section 3, Part 1 - Line 1D, Part 2 - Line 2A, Part 3 - Line 3A and + Part 4 - Line 4A. +........................................................................................................................... +1A +PART 1 - TOTAL CURRENT YEAR CREDITS + A Total credits allowable this year. Enter the total of Section 2, Line 1A + and Section 4, Part 1 - Line 1A here and on Line 23 of Form 760, Line 25 of + Form 760PY or Line 25 of Form 763. .......................................................................................... +1A +SECTION 3 - REFUNDABLE CREDITS +* +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +00 +. +,, +SECTION 4 - TOTAL REFUNDABLE CREDITS +00 +. +,, +SECTION 5 - TOTAL CURRENT YEAR CREDITS +00 +. +,, +* +----------------Page (2) Break---------------- +Schedule CR (2013) +Page 8 + + +* +WHAT TO ATTACH +Attachments should be included with your return when claiming original or carryover credits. Computation schedules are +required for claims to be carried forward. Missing attachments may cause a credit to be disallowed. + + +Enterprise Zone Act Credit: + Form 301. + + +Recyclable Materials Processing Equipment Credit: + Approved Form 50-11S from the Department of Environmental +Quality as well as any receipts, invoices or other documentation confirming purchase price paid. + + +Conservation Tillage Equipment Credit: + Statement showing purchase date, description and credit computation. + + +Precision Fertilizer and Pesticide Application Equipment Credit: + Statement showing purchase date, description and +credit computation. + + +Vehicle Emissions Testing Equipment Credit: +Copy of the letter from the Department of Environmental Quality (DEQ) +to the equipment vendor certifying that the equipment configuration meets the regulation and equipment specification +requirements for use in the enhanced vehicle emissions inspection program. A copy of the letter may be obtained from +the equipment vendor or the DEQ Northern Virginia Regional Office in Woodbridge, Virginia by calling (703) 583-3800. + + +Foreign Source Retirement Income Tax Credit: + Copy of the tax return filed in the other country or other proof of income +tax paid to the foreign country and a schedule showing computation of foreign currency converted to United States dollars. + + +Waste Motor Oil Burning Equipment Credit: + Approved Form 50-12 from the Department of Environmental Quality, +receipts, invoices or other documentation confirming purchase price paid. + + +Biodiesel and Green Diesel Fuels Tax Credit: +The letter of certification from the Virginia Department of Taxation +authorizing the credit. + + Coalfield Employment Enhancement Tax Credit and Virginia Coal Employment and Production Incentive: +Form +306 with completed schedules, if appropriate. See the “What to Attach” section in the Form 306 instructions for additional +attachment requirements and information. + + Agricultural Best Management Practices Credit: +Copy of the tax credit approval letter from the local Soil and Water +Conservation District. +----------------Page (3) Break---------------- diff --git a/test/data/va/form/VASCR3.fields.json b/test/data/va/form/VASCR3.fields.json new file mode 100755 index 00000000..82cc1b3f --- /dev/null +++ b/test/data/va/form/VASCR3.fields.json @@ -0,0 +1 @@ +[{"id":"NAM5","type":"alpha","calc":true,"value":""},{"id":"CODE5","type":"ssn","calc":true,"value":""},{"id":"SPL100","type":"number","calc":false,"value":""},{"id":"L100","type":"number","calc":false,"value":""},{"id":"SPL101","type":"number","calc":false,"value":""},{"id":"L101","type":"number","calc":false,"value":""},{"id":"SPL102","type":"number","calc":true,"value":""},{"id":"L102","type":"number","calc":true,"value":""},{"id":"SPTOT","type":"number","calc":false,"value":""},{"id":"TOTTRANS","type":"number","calc":false,"value":""},{"id":"SPSUB","type":"number","calc":true,"value":""},{"id":"SUBBFRA","type":"number","calc":true,"value":""},{"id":"L103","type":"number","calc":false,"value":""},{"id":"SPL103","type":"number","calc":false,"value":""},{"id":"SPL104","type":"number","calc":true,"value":""},{"id":"L104","type":"number","calc":true,"value":""},{"id":"CREDCO","type":"number","calc":false,"value":""},{"id":"CPCARCR","type":"number","calc":false,"value":""},{"id":"ADDCO","type":"number","calc":true,"value":""},{"id":"ALLOWCO","type":"number","calc":false,"value":""},{"id":"CARRYCO","type":"number","calc":true,"value":""},{"id":"CREDGJ","type":"number","calc":false,"value":""},{"id":"GJCARCR","type":"number","calc":false,"value":""},{"id":"ADDGJ","type":"number","calc":true,"value":""},{"id":"ALLOWGJ","type":"number","calc":false,"value":""},{"id":"CARRYGJ","type":"number","calc":true,"value":""},{"id":"L105","type":"number","calc":false,"value":""},{"id":"L106","type":"number","calc":false,"value":""},{"id":"FARMCRD","type":"number","calc":false,"value":""},{"id":"FARMCO","type":"number","calc":false,"value":""},{"id":"ADDFARM","type":"number","calc":true,"value":""},{"id":"ALLOWFW","type":"number","calc":false,"value":""},{"id":"FMCARNY","type":"number","calc":true,"value":""},{"id":"NAM6","type":"alpha","calc":true,"value":""},{"id":"CODE6","type":"ssn","calc":true,"value":""},{"id":"INTERCR","type":"number","calc":false,"value":""},{"id":"INTERCO","type":"number","calc":false,"value":""},{"id":"ADDINTR","type":"number","calc":true,"value":""},{"id":"HALFTXRN","type":"number","calc":true,"value":""},{"id":"MAXINTCR","type":"number","calc":true,"value":""},{"id":"ALLINTCR","type":"number","calc":false,"value":""},{"id":"INTCARNY","type":"number","calc":true,"value":""},{"id":"PORTCRD","type":"number","calc":false,"value":""},{"id":"PORTCO","type":"number","calc":false,"value":""},{"id":"ADDPORT","type":"number","calc":true,"value":""},{"id":"ALLPORT","type":"number","calc":false,"value":""},{"id":"PTCARNY","type":"number","calc":true,"value":""},{"id":"RAILCRD","type":"number","calc":false,"value":""},{"id":"RAILCO","type":"number","calc":false,"value":""},{"id":"ADDRAIL","type":"number","calc":true,"value":""},{"id":"ALLRAIL","type":"number","calc":false,"value":""},{"id":"BRCARNY","type":"number","calc":true,"value":""},{"id":"RESDEVCR","type":"number","calc":false,"value":""},{"id":"ALLDEVCR","type":"number","calc":false,"value":""},{"id":"TETCAMT","type":"number","calc":false,"value":""},{"id":"TETCR","type":"number","calc":false,"value":""},{"id":"L107","type":"number","calc":true,"value":""},{"id":"NAM7","type":"alpha","calc":true,"value":""},{"id":"CODE7","type":"ssn","calc":true,"value":""},{"id":"L108","type":"number","calc":false,"value":""},{"id":"L109","type":"number","calc":false,"value":""},{"id":"L110","type":"number","calc":false,"value":""},{"id":"L111","type":"number","calc":true,"value":""},{"id":"L112","type":"number","calc":false,"value":""},{"id":"FILMCRD","type":"number","calc":false,"value":""},{"id":"AGMAN","type":"number","calc":false,"value":""},{"id":"RDCRED","type":"number","calc":false,"value":""},{"id":"TOTREFCR","type":"number","calc":true,"value":""},{"id":"L116","type":"number","calc":true,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VASCR3.json b/test/data/va/form/VASCR3.json new file mode 100755 index 00000000..8ec1f24c --- /dev/null +++ b/test/data/va/form/VASCR3.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"green Sch CR WEB 11 13 13.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.425,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":16.016,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":16.016,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":16.016,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":16.016,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":16.016,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":16.016,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":16.016,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":16.016,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":14.77,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":16.013,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":18.836,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":18.836,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":18.836,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":18.836,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":18.836,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":18.836,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":18.836,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":18.836,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":17.589,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":18.832,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":25.493,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":25.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":25.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":25.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":25.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":25.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":25.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":25.493,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":24.246,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":25.49,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":32.762,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":32.762,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":32.762,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":32.762,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":32.762,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":32.762,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":32.762,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":32.762,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":31.515,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":32.759,"w":6,"l":3.205},{"oc":"#d2d2d2","x":85.75,"y":36.887,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":38.134,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":36.887,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":38.131,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":44.363,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":44.363,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":44.363,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":44.363,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":44.363,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":44.363,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":44.363,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":44.363,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":43.116,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":44.36,"w":6,"l":3.205},{"oc":"#c9c9c9","x":41.137,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":41.102,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.612,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.577,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.087,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.052,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.562,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.527,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.037,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.002,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.512,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.477,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.987,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.952,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.462,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.427,"y":5.569,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.937,"y":4.322,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.902,"y":5.569,"w":6,"l":2.475},{"oc":"#161616","x":6.361,"y":5.979,"w":1.5,"l":30.534},{"oc":"#161616","x":6.361,"y":3.792,"w":1.5,"l":30.534},{"oc":"#161616","x":69.136,"y":46.219,"w":3,"l":2.432},{"oc":"#161616","x":65.573,"y":6.556,"w":3,"l":2.432},{"oc":"#161616","x":95.297,"y":6.556,"w":3,"l":2.432},{"oc":"#161616","x":95.249,"y":46.238,"w":3,"l":2.432}],"VLines":[{"oc":"#d2d2d2","x":68.76,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":14.648,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":17.467,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":24.124,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":31.394,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":36.766,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":36.766,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":36.766,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":42.994,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":42.994,"w":6,"l":1.35},{"oc":"#c9c9c9","x":41.472,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":43.947,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":46.422,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":48.897,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":51.372,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":53.847,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":56.322,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":58.797,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":61.272,"y":4.2,"w":6,"l":1.35},{"oc":"#c9c9c9","x":63.67,"y":4.206,"w":6,"l":1.484},{"oc":"#161616","x":36.895,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":6.361,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":69.307,"y":45.397,"w":3,"l":0.884},{"oc":"#161616","x":65.745,"y":6.494,"w":3,"l":0.884},{"oc":"#161616","x":97.557,"y":6.506,"w":3,"l":0.884},{"oc":"#161616","x":97.518,"y":45.397,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.708,"y":15.648,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":15.629,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":18.467,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":18.448,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":25.124,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":25.106,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":32.394,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":32.375,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":43.994,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":43.976,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#161616","x":5.938,"y":6.395,"w":22.224000000000007,"clr":-1,"A":"left","R":[{"T":"PART%2022%20-%20LAND%20PRESERVATION%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":13.286,"y":11.626,"w":7.559000000000003,"clr":-1,"A":"left","R":[{"T":"the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.537,"y":13.408,"w":1.167,"clr":-1,"A":"left","R":[{"T":"%20F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":13.408,"w":13.615000000000004,"clr":-1,"A":"left","R":[{"T":"Credit(s)%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.286,"y":14.158,"w":5.890000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":20.283,"y":14.158,"w":19.564000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20E%2C%20YOU%20column%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":14.683,"w":27.67600000000001,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.376,"y":15.208,"w":1.723,"clr":-1,"A":"left","R":[{"T":"22F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":14.6,"y":16.295,"w":24.450999999999993,"clr":-1,"A":"left","R":[{"T":"Be%20sure%20to%20claim%20the%20proper%20credit%20on%20the%20total%20lines.","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.537,"y":17.045,"w":1.334,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":17.045,"w":8.058000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":22.936,"y":17.045,"w":21.28700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20E%2C%20SPOUSE%20column","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.287,"y":17.57,"w":27.67600000000001,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.089,"y":18.095,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"22G","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":18.901,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":18.901,"w":18.618000000000002,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20E%20less%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":20.458,"w":5.001000000000001,"clr":-1,"A":"left","R":[{"T":"PART%2023%20-%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":12.898,"y":20.458,"w":21.612000000000005,"clr":-1,"A":"left","R":[{"T":"COMMUNITY%20OF%20OPPORTUNITY%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.536,"y":24.264,"w":1.556,"clr":-1,"A":"left","R":[{"T":"%20%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":24.264,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":24.264,"w":13.172,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%20C%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":24.789,"w":40.68699999999994,"clr":-1,"A":"left","R":[{"T":"the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":24.789,"w":1.834,"clr":-1,"A":"left","R":[{"T":"23D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":27.095,"w":23.33600000000001,"clr":-1,"A":"left","R":[{"T":"PART%2024%20-%20GREEN%20JOBS%20CREATION%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.536,"y":31.476,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":31.476,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":31.476,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":32.001,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":32.001,"w":1.834,"clr":-1,"A":"left","R":[{"T":"24D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":34.308,"w":23.168000000000003,"clr":-1,"A":"left","R":[{"T":"PART%2025%20-%20POLITICAL%20CONTRIBUTIONS%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.536,"y":36.895,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":36.895,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":36.895,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20A","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":37.42,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20...............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":37.42,"w":1.834,"clr":-1,"A":"left","R":[{"T":"25B","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":38.451,"w":27.946000000000016,"clr":-1,"A":"left","R":[{"T":"PART%2026%20-%20FARM%20WINERIES%20AND%20VINEYARDS%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.536,"y":42.833,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":42.833,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":42.833,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":43.358,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":43.358,"w":1.834,"clr":-1,"A":"left","R":[{"T":"26D","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":15.055,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":15.231,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":15.069,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":17.874,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":18.05,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":17.888,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":24.532,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":24.707,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":24.546,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":31.801000000000002,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":31.976,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":31.814999999999998,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":37.173,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":37.348,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":43.402,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":43.577,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":43.416,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.938,"y":2.046,"w":9.059000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":24.625,"y":2.046,"w":3.4470000000000005,"clr":-1,"A":"left","R":[{"T":"%20Page%205","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.573,"y":3.244,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.338,"y":4.393,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.228,"y":4.412,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931,"y":3.393,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":7.9510000000000005,"w":22.067999999999984,"clr":-1,"A":"left","R":[{"T":"transferred%20in%20the%20current%20year.%20............................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.064,"y":7.9510000000000005,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.446,"y":7.9510000000000005,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":9.264,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":9.264,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":9.264,"w":6.394000000000004,"clr":-1,"A":"left","R":[{"T":".....................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.062,"y":9.264,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":9.264,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":7.426,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":7.426,"w":17.675000000000004,"clr":-1,"A":"left","R":[{"T":"Credit%20amount%20authorized%20or%20the%20amount","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":10.295,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":10.295,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":10.295,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"..............................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.063,"y":10.295,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":10.295,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":11.101,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":11.101,"w":15.840000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20credit%20transferred%20to%20others%20in%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":21.982,"y":11.626,"w":14.734000000000018,"clr":-1,"A":"left","R":[{"T":"...................................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.063,"y":11.626,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":11.626,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":12.658,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":12.658,"w":12.894000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20D%20from%20Line%20C.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.667,"y":12.658,"w":9.174000000000008,"clr":-1,"A":"left","R":[{"T":"...............................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.063,"y":12.658,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445,"y":12.658,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":15.208,"w":16.954000000000004,"clr":-1,"A":"left","R":[{"T":"(not%20to%20exceed%20%24100%2C000%20per%20taxpayer)","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.684,"y":15.208,"w":18.62600000000001,"clr":-1,"A":"left","R":[{"T":"...................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":56.337,"y":15.208,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":18.095,"w":16.954000000000004,"clr":-1,"A":"left","R":[{"T":"(not%20to%20exceed%20%24100%2C000%20per%20taxpayer)","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.684,"y":18.095,"w":16.40200000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.553,"y":18.095,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":19.426,"w":19.787000000000003,"clr":-1,"A":"left","R":[{"T":"Line%2022F%20and%2For%20Line%2022G%20(see%20instructions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.021,"y":19.426,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"......%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.392,"y":19.426,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.443,"y":19.426,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":22.014,"w":24.287000000000006,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Housing%20and%20Community%20Development.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":42.369,"y":22.014,"w":7.506000000000006,"clr":-1,"A":"left","R":[{"T":"...........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.604,"y":22.014,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":22.014,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":21.489,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":21.489,"w":19.455000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20credit%20authorized%20by%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":22.764,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":22.764,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":22.764,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":22.764,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":22.764,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":23.514,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":23.514,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":23.514,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":23.514,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":23.514,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":25.539,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":25.539,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2023D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":26.064,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.691,"y":26.064,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.537,"y":26.064,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":26.064,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":28.651,"w":20.51,"clr":-1,"A":"left","R":[{"T":"with%20an%20annual%20salary%20that%20is%20%2450%2C000%20or%20more.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.69,"y":28.651,"w":11.398000000000012,"clr":-1,"A":"left","R":[{"T":".........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.605,"y":28.651,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.773,"y":28.651,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":28.126,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":28.126,"w":24.568000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20for%20each%20green%20job%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":29.695,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":29.695,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":29.695,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":29.695,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":29.695,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":30.726,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":30.726,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":30.726,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":30.726,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":30.726,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":32.751,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":32.751,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2024D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":33.276,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.695,"y":33.276,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":33.276,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":33.276,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":35.864,"w":26.28700000000001,"clr":-1,"A":"left","R":[{"T":"limited%20to%20%2425%20for%20individuals%20or%20%2450%20for%20married%20filing%20jointly.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.713,"y":35.864,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":35.864,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":35.864,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":35.339,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":35.339,"w":29.62400000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20of%20the%20amount%20of%20eligible%20political%20contributions.%20Credit%20is%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":39.483,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":39.483,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":40.008,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.333,"y":40.008,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607,"y":40.008,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":40.008,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":41.051,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":41.051,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":41.051,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":41.051,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":41.051,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":42.083,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":42.083,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":42.083,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":42.083,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":42.083,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":44.633,"w":21.84,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.363,"y":44.633,"w":10.00800000000001,"clr":-1,"A":"left","R":[{"T":"....................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":44.633,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":44.633,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":44.108,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":44.108,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2026D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.453,"y":6.395,"w":4.446,"clr":-1,"A":"left","R":[{"T":"SPOUSE%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":57.572,"y":6.395,"w":2.167,"clr":-1,"A":"left","R":[{"T":"YOU","S":8,"TS":[0,10,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM5","EN":0},"TI":589,"AM":1024,"x":6.35,"y":5.02,"w":30.317,"h":0.841,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE5","EN":0},"TI":590,"AM":1024,"x":41.72,"y":4.494,"w":21.563,"h":0.914,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL100","EN":0},"TI":591,"AM":0,"x":40.246,"y":7.827,"w":11.364,"h":0.907,"TU":"Part 22. Line A. Credit amount authorized or the amount transferred in the current year. Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L100","EN":0},"TI":592,"AM":0,"x":53.611,"y":7.827,"w":11.385,"h":0.907,"TU":"Part 22. Line A. Credit amount authorized or the amount transferred in the current year. You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL101","EN":0},"TI":593,"AM":0,"x":40.357,"y":9.103,"w":11.364,"h":0.907,"TU":"Line B. Carryover credit from prior year(s). Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L101","EN":0},"TI":594,"AM":0,"x":53.686,"y":9.13,"w":11.385,"h":0.907,"TU":"Line B. Carryover credit from prior year(s). You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL102","EN":0},"TI":595,"AM":1024,"x":40.246,"y":10.193,"w":11.364,"h":0.907,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L102","EN":0},"TI":596,"AM":1024,"x":53.686,"y":10.157,"w":11.385,"h":0.907,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPTOT","EN":0},"TI":597,"AM":0,"x":40.246,"y":11.465,"w":11.364,"h":0.907,"TU":"Line D. Total credit transferred to others in current year. Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTRANS","EN":0},"TI":598,"AM":0,"x":53.686,"y":11.526,"w":11.385,"h":0.907,"TU":"Line D. Total credit transferred to others in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPSUB","EN":0},"TI":599,"AM":1024,"x":40.246,"y":12.493,"w":11.364,"h":0.907,"TU":"Subtract Line D from Line C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBBFRA","EN":0},"TI":600,"AM":1024,"x":53.686,"y":12.52,"w":11.385,"h":0.907,"TU":"Subtract Line D from Line C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L103","EN":0},"TI":601,"AM":0,"x":69.062,"y":15.001,"w":21.6,"h":0.912,"TU":"Line F. Your credit. Enter the amount from Line E, You column or the balance of maximum credit available, whichever is less (not to exceed $100,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL103","EN":0},"TI":602,"AM":0,"x":69.062,"y":17.816,"w":21.6,"h":0.912,"TU":"Line 22G. Spouse'sr credit. Enter the amount from Line E, Spouse column or the balance of maximum credit available, whichever is less (not to exceed $100,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL104","EN":0},"TI":603,"AM":1024,"x":40.023,"y":19.303,"w":11.364,"h":0.907,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L104","EN":0},"TI":604,"AM":1024,"x":53.592,"y":19.317,"w":11.385,"h":0.854,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDCO","EN":0},"TI":605,"AM":0,"x":52.76,"y":21.87,"w":12.045,"h":0.881,"TU":"Amount of credit authorized by the Department of Housing and Community DevelopmentPart 23. Line A. Enter the amount of credit authorized by the Department of Housing and Community Development."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CPCARCR","EN":0},"TI":606,"AM":0,"x":52.76,"y":22.897,"w":12.045,"h":0.833,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDCO","EN":0},"TI":607,"AM":1024,"x":52.76,"y":23.647,"w":12.045,"h":0.833,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOWCO","EN":0},"TI":608,"AM":0,"x":69.062,"y":24.469,"w":21.6,"h":0.912,"TU":"Line 23D. Credit allowable this year. Ener the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARRYCO","EN":0},"TI":609,"AM":1024,"x":52.932,"y":25.941,"w":12.045,"h":0.907,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDGJ","EN":0},"TI":610,"AM":0,"x":52.932,"y":28.528,"w":12.045,"h":0.907,"TU":"Part 24. Line A. Enter the total eligible credit amount for each green job with an annual salary that is $50,000 or more."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GJCARCR","EN":0},"TI":611,"AM":0,"x":52.932,"y":29.571,"w":12.045,"h":0.907,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDGJ","EN":0},"TI":612,"AM":1024,"x":52.932,"y":30.606,"w":12.045,"h":0.907,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOWGJ","EN":0},"TI":613,"AM":0,"x":69.152,"y":31.755,"w":21.6,"h":0.912,"TU":"Line 24D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARRYGJ","EN":0},"TI":614,"AM":1024,"x":52.932,"y":33.156,"w":12.045,"h":0.907,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L105","EN":0},"TI":615,"AM":0,"x":52.76,"y":35.708,"w":12.045,"h":0.907,"TU":"50% of the amount of eligible political contributionsPart 25. Line A. Enter 50% of the amoount of eligible political contributions. Credit is limited to $25 for individuals or $50 for married filing jointly."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L106","EN":0},"TI":616,"AM":0,"x":86.268,"y":37.083,"w":4.425,"h":0.953,"TU":"Line B. Credit allowable this year. Enter the amount from Line A or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FARMCRD","EN":0},"TI":617,"AM":0,"x":52.696,"y":39.856,"w":12.045,"h":0.907,"TU":"Total eligible credit amount authorized by the Department of TaxationPart 26. Line A. Enter the total eligible credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FARMCO","EN":0},"TI":618,"AM":0,"x":52.76,"y":40.898,"w":12.045,"h":0.907,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDFARM","EN":0},"TI":619,"AM":1024,"x":52.76,"y":41.975,"w":12.045,"h":0.854,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOWFW","EN":0},"TI":620,"AM":0,"x":69.148,"y":43.335,"w":21.6,"h":0.912,"TU":"Line 26D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FMCARNY","EN":0},"TI":621,"AM":1024,"x":52.821,"y":44.496,"w":12.045,"h":0.907,"TU":"Carryover credit to next year"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.425,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":14.244,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":14.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":14.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":14.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":14.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":14.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":14.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":14.244,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":12.997,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":14.241,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":21.455,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":21.455,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":21.455,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":21.455,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":21.455,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":21.455,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":21.455,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":21.455,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":20.208,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":21.451,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":28.667,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":28.667,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":28.667,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":28.667,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":28.667,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":28.667,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":28.667,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":28.667,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":27.42,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":28.664,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":36.379,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":36.379,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":36.379,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":36.379,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":36.379,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":36.379,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":36.379,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":36.379,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":35.132,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":36.375,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":40.128,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":40.128,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":40.128,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":40.128,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":40.128,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":40.128,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":40.128,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":40.128,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":38.882,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":40.125,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":44.851,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":44.851,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":44.851,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":44.851,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":44.851,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":44.851,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":44.851,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":44.851,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":43.604,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":44.848,"w":6,"l":3.205},{"oc":"#c9c9c9","x":41.137,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":41.102,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.612,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.577,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.087,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.052,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.562,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.527,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.037,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.002,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.512,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.477,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.987,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.952,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.462,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.427,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.937,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.902,"y":5.624,"w":6,"l":2.475},{"oc":"#161616","x":6.361,"y":5.979,"w":1.5,"l":30.534},{"oc":"#161616","x":6.361,"y":3.792,"w":1.5,"l":30.534},{"oc":"#161616","x":64.987,"y":47.171,"w":3,"l":2.432},{"oc":"#161616","x":96.448,"y":47.189,"w":3,"l":2.432},{"oc":"#161616","x":65.573,"y":6.306,"w":3,"l":2.432},{"oc":"#161616","x":96.448,"y":6.306,"w":3,"l":2.432}],"VLines":[{"oc":"#d2d2d2","x":68.76,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":12.875,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":20.086,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":27.298,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":35.01,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":38.76,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":43.483,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":43.483,"w":6,"l":1.35},{"oc":"#c9c9c9","x":41.472,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":43.947,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":46.422,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":48.897,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":51.372,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":53.847,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":56.322,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":58.797,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":61.272,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":63.67,"y":4.262,"w":6,"l":1.484},{"oc":"#161616","x":36.895,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":6.361,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":65.159,"y":46.349,"w":3,"l":0.884},{"oc":"#161616","x":98.716,"y":46.349,"w":3,"l":0.884},{"oc":"#161616","x":65.745,"y":6.244,"w":3,"l":0.884},{"oc":"#161616","x":98.708,"y":6.256,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.708,"y":13.875,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":13.857,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":21.086,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":21.067,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":28.298,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":28.279,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":36.01,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":35.991,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":39.76,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":39.741,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c9c9c9","x":6.188,"y":40.833,"w":43.313,"h":1.061,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":44.483,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":44.464,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#161616","x":5.938,"y":6.227,"w":27.94500000000001,"clr":-1,"A":"left","R":[{"T":"PART%2027%20-%20INTERNATIONAL%20TRADE%20FACILITY%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":7.257999999999999,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":7.257999999999999,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":12.97,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":12.97,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":12.97,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20E","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":13.495,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.376,"y":13.495,"w":1.723,"clr":-1,"A":"left","R":[{"T":"27F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":15.802,"w":24.05800000000001,"clr":-1,"A":"left","R":[{"T":"PART%2028%20-%20PORT%20VOLUME%20INCREASE%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.536,"y":20.183,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":20.183,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":20.183,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":20.708,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":20.708,"w":1.834,"clr":-1,"A":"left","R":[{"T":"28D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":21.458,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":21.458,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2028D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":23.014,"w":23.779000000000007,"clr":-1,"A":"left","R":[{"T":"PART%2029%20-%20BARGE%20AND%20RAIL%20USAGE%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":24.045,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351,"y":24.045,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536,"y":27.395,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":27.395,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.196,"y":27.395,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":27.92,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":27.92,"w":1.834,"clr":-1,"A":"left","R":[{"T":"29D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871,"y":28.67,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":28.67,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2029D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":30.227,"w":32.893000000000015,"clr":-1,"A":"left","R":[{"T":"PART%2030%20-%20RESEARCH%20AND%20DEVELOPMENT%20EXPENSES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.536,"y":34.889,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":34.889,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":34.889,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20A","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.253,"y":35.414,"w":1.834,"clr":-1,"A":"left","R":[{"T":"30D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":36.445,"w":22.670000000000005,"clr":-1,"A":"left","R":[{"T":"PART%2031%20-%20TELEWORK%20EXPENSES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.537,"y":38.808,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":38.808,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195,"y":38.808,"w":14.785000000000002,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%20A%20or%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":39.333,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.185,"y":39.333,"w":1.834,"clr":-1,"A":"left","R":[{"T":"31B","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":42.052,"w":21.833000000000002,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20TOTAL%20NONREFUNDABLE%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":42.667,"w":1.223,"clr":-1,"A":"left","R":[{"T":"A.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":42.667,"w":39.63199999999998,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%202A%2C%203D%2C%204F%2C%205D%2C%206D%2C%207D%2C%208D%2C%208I%2C%209D%2C%2010G%2C%2011E%2C%2012D%2C%2013D%2C%2015D%2C%2015E%2C%2016D%2C%2017B%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":43.192,"w":28.404000000000007,"clr":-1,"A":"left","R":[{"T":"18J%2C%2019F%2C%2020D%2C%2021D%2C%2022F%2C%2022G%2C%2023D%2C%2024D%2C%2025B%2C%2026D%2C%2027F%2C%2028D%2C%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":46.725,"y":43.192,"w":9.061000000000002,"clr":-1,"A":"left","R":[{"T":"29D%2C%2030D%2C%20and%2031B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":43.717,"w":31.345000000000017,"clr":-1,"A":"left","R":[{"T":"(if%20you%20claimed%20more%20than%20the%20maximum%20allowed%20nonrefundable%20credits%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":44.242,"w":37.30399999999992,"clr":-1,"A":"left","R":[{"T":"see%20instructions).%20..........................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":58.104,"y":44.242,"w":4.17,"clr":-1,"A":"left","R":[{"T":"...............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204,"y":44.242,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":13.283,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":13.458,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":13.297,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":20.493,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":20.669,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":20.507,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":27.705,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":27.881,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":27.719,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":35.417,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":35.593,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":35.431,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":39.167,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":39.343,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":39.181,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"x":7.371,"y":40.884,"w":23.55600000000001,"clr":1,"A":"left","R":[{"T":"SECTION%202%20-%20TOTAL%20NONREFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":43.89,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":44.065,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":43.904,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.938,"y":2.046,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.198,"y":2.046,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%206","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.573,"y":3.2990000000000004,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.338,"y":4.448,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.228,"y":4.467,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931,"y":3.393,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":7.7829999999999995,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.332,"y":7.7829999999999995,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607,"y":7.7829999999999995,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":7.7829999999999995,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":8.827,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":8.827,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":8.827,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":8.827,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":8.827,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":9.858,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":9.858,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":9.858,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":9.858,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":9.858,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":10.889,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":10.889,"w":12.562000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20of%20tax%20per%20return.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.334,"y":10.889,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":10.889,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776,"y":10.889,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":12.22,"w":22.063,"clr":-1,"A":"left","R":[{"T":"amount%20from%20%20Line%20C%20or%20Line%20D%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.697,"y":12.22,"w":9.73000000000001,"clr":-1,"A":"left","R":[{"T":"...................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.539,"y":12.22,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":12.22,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":11.695,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":11.695,"w":26.175,"clr":-1,"A":"left","R":[{"T":"Maximum%20International%20Trade%20Facility%20Tax%20Credit%3A%20Enter%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":14.77,"w":21.84,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.363,"y":14.77,"w":10.00800000000001,"clr":-1,"A":"left","R":[{"T":"....................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.404,"y":14.77,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772,"y":14.77,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":14.245,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":14.245,"w":22.28600000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2027F","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":17.358,"w":11.894000000000004,"clr":-1,"A":"left","R":[{"T":"the%20Virginia%20Port%20Authority.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":27.33,"y":17.358,"w":20.016000000000002,"clr":-1,"A":"left","R":[{"T":"........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607,"y":17.358,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":17.358,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":16.833,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":16.833,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":18.402,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":18.402,"w":31.736999999999934,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":18.402,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":18.402,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":19.433,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":19.433,"w":8.561000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.453,"y":19.433,"w":23.351999999999986,"clr":-1,"A":"left","R":[{"T":"%20...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":19.433,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":19.433,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":21.983,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.695,"y":21.983,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":21.983,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":21.983,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":24.57,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.332,"y":24.57,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607,"y":24.57,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":24.57,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":25.614,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":25.614,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009,"y":25.614,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":25.614,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774,"y":25.614,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":26.645,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":26.645,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654,"y":26.645,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475,"y":26.645,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":26.645,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":29.195,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.695,"y":29.195,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54,"y":29.195,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":29.195,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":31.783,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.332,"y":31.783,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607,"y":31.783,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":31.783,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":32.827,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":32.827,"w":10.449000000000002,"clr":-1,"A":"left","R":[{"T":"Reserved%20for%20future%20use","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":31.258000000000003,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":31.258000000000003,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":33.858,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":33.858,"w":10.727000000000002,"clr":-1,"A":"left","R":[{"T":"Reserved%20for%20future%20use%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":35.414,"w":27.67600000000001,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":46.381,"y":35.414,"w":13.066000000000015,"clr":-1,"A":"left","R":[{"T":"..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871,"y":37.477,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":37.477,"w":28.957000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Telework%20Expenses%20Tax%20Credit%20authorized%20by","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285,"y":38.002,"w":16.285000000000007,"clr":-1,"A":"left","R":[{"T":"the%20Virginia%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.678,"y":38.002,"w":15.56800000000002,"clr":-1,"A":"left","R":[{"T":".......................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608,"y":38.002,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775,"y":38.002,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM6","EN":0},"TI":622,"AM":1024,"x":6.498,"y":5.145,"w":30.317,"h":0.87,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE6","EN":0},"TI":623,"AM":1024,"x":41.837,"y":4.616,"w":21.937,"h":0.914,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTERCR","EN":0},"TI":624,"AM":0,"x":53.031,"y":7.688,"w":12.045,"h":0.914,"TU":"ttotal eligible credit amount authorized by the Department of TaxationPart 27. Line A. Enter the total credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTERCO","EN":0},"TI":625,"AM":0,"x":53.031,"y":8.731,"w":12.045,"h":0.914,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDINTR","EN":0},"TI":626,"AM":1024,"x":53.031,"y":9.766,"w":12.045,"h":0.914,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HALFTXRN","EN":0},"TI":627,"AM":1024,"x":53.031,"y":10.801,"w":12.045,"h":0.907,"TU":"Enter 50% of tax per return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXINTCR","EN":0},"TI":628,"AM":1024,"x":53.031,"y":12.128,"w":12.045,"h":0.914},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLINTCR","EN":0},"TI":629,"AM":0,"x":69.207,"y":13.196,"w":21.6,"h":0.912,"TU":"Line 27F. Credit allowable this year. Enter the amount from Line E or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTCARNY","EN":0},"TI":630,"AM":1024,"x":53.256,"y":14.678,"w":12.045,"h":0.914},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PORTCRD","EN":0},"TI":631,"AM":0,"x":53.342,"y":17.234,"w":12.045,"h":0.914,"TU":"Part 28. Line A. Enter the total eligible credit amount authorized by the Virginia Port Authority."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PORTCO","EN":0},"TI":632,"AM":0,"x":53.256,"y":18.308,"w":12.045,"h":0.914,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDPORT","EN":0},"TI":633,"AM":1024,"x":53.256,"y":19.343,"w":12.045,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLPORT","EN":0},"TI":634,"AM":0,"x":69.132,"y":20.458,"w":21.6,"h":0.912,"TU":"Line 28D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PTCARNY","EN":0},"TI":635,"AM":1024,"x":53.256,"y":21.886,"w":12.045,"h":0.914},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RAILCRD","EN":0},"TI":636,"AM":0,"x":53.256,"y":24.522,"w":12.045,"h":0.914,"TU":"Part 29. Line A. Enter the total eligible credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RAILCO","EN":0},"TI":637,"AM":0,"x":53.256,"y":25.572,"w":12.045,"h":0.914,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDRAIL","EN":0},"TI":638,"AM":1024,"x":53.256,"y":26.575,"w":12.045,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLRAIL","EN":0},"TI":639,"AM":0,"x":69.169,"y":27.672,"w":21.6,"h":0.912,"TU":"Line 29D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BRCARNY","EN":0},"TI":640,"AM":1024,"x":53.256,"y":29.149,"w":12.045,"h":0.914},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESDEVCR","EN":0},"TI":641,"AM":0,"x":53.256,"y":31.737,"w":12.045,"h":0.914,"TU":"Part 30. Line A. Enter the total eligible credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLDEVCR","EN":0},"TI":642,"AM":0,"x":69.207,"y":35.377,"w":21.6,"h":0.912,"TU":"Line 30D. Credit allowable this year. Enter the amount from Line A or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TETCAMT","EN":0},"TI":643,"AM":0,"x":53.256,"y":37.892,"w":12.045,"h":0.914,"TU":"Part 31. Line A. Enter the amount of Telework Expenses Tax Credit authorized by the Virginia Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TETCR","EN":0},"TI":644,"AM":0,"x":69.073,"y":39.133,"w":21.6,"h":0.912,"TU":"Line 31B. Credit allowable this year. Enter the amount from Line A or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L107","EN":0},"TI":645,"AM":1024,"x":69.266,"y":43.864,"w":21.6,"h":0.912,"TU":"Paer 1_ Total Nonrefundable Credits"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#c9c9c9","x":41.137,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":41.102,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.612,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":43.577,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.087,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":46.052,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.562,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":48.527,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.037,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":51.002,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.512,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":53.477,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.987,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":55.952,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.462,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":58.427,"y":5.624,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.937,"y":4.377,"w":6,"l":2.475},{"oc":"#c9c9c9","x":60.902,"y":5.624,"w":6,"l":2.475},{"oc":"#161616","x":6.361,"y":5.979,"w":1.5,"l":30.534},{"oc":"#161616","x":6.361,"y":3.792,"w":1.5,"l":30.534},{"oc":"#d2d2d2","x":68.425,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":10.396,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":10.396,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":10.396,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":10.396,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":10.396,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":10.396,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":10.396,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":10.396,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":9.15,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":10.393,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":12.148,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":12.148,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":12.148,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":12.148,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":12.148,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":12.148,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":12.148,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":12.148,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":10.901,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":12.145,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":14.212,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":14.212,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":14.212,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":14.212,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":14.212,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":14.212,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":14.212,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":14.212,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":12.966,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":14.209,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":16.027,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":16.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":16.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":16.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":16.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":16.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":16.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":16.027,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":14.78,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":16.024,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":17.529,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":17.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":17.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":17.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":17.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":17.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":17.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":17.529,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":16.282,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":17.526,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":19.62,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":19.62,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":19.62,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":19.62,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":19.62,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":19.62,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":19.62,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":19.62,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":18.373,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":19.617,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":21.753,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":21.753,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":21.753,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":21.753,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":21.753,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":21.753,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":21.753,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":21.753,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":20.506,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":21.75,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":24.298,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":24.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":24.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":24.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":24.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":24.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":24.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":24.298,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":23.052,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":24.295,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":28.392,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":28.392,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":28.392,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":28.392,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":28.392,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":28.392,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":28.392,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":28.392,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":27.145,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":28.389,"w":6,"l":3.205},{"oc":"#d2d2d2","x":68.425,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":68.416,"y":32.891,"w":6,"l":2.449},{"oc":"#d2d2d2","x":70.9,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":70.866,"y":32.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.375,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":73.341,"y":32.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.85,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":75.816,"y":32.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.325,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":78.291,"y":32.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.8,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":80.766,"y":32.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.275,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":83.241,"y":32.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.75,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":85.716,"y":32.891,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.225,"y":31.644,"w":6,"l":2.475},{"oc":"#d2d2d2","x":88.165,"y":32.888,"w":6,"l":3.205},{"oc":"#161616","x":66.166,"y":45.998,"w":3,"l":2.432},{"oc":"#161616","x":95.211,"y":46.014,"w":3,"l":2.432},{"oc":"#161616","x":66.751,"y":6.543,"w":3,"l":2.432},{"oc":"#161616","x":95.22,"y":6.542,"w":3,"l":2.432}],"VLines":[{"oc":"#c9c9c9","x":41.472,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":43.947,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":46.422,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":48.897,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":51.372,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":53.847,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":56.322,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":58.797,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":61.272,"y":4.255,"w":6,"l":1.35},{"oc":"#c9c9c9","x":63.67,"y":4.262,"w":6,"l":1.484},{"oc":"#161616","x":36.895,"y":3.792,"w":1.5,"l":2.188},{"oc":"#161616","x":6.361,"y":3.792,"w":1.5,"l":2.188},{"oc":"#d2d2d2","x":68.76,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":9.028,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":10.779,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":12.844,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":14.658,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":16.16,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":18.251,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":20.384,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":22.93,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":27.023,"w":6,"l":1.35},{"oc":"#d2d2d2","x":68.76,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":71.235,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":73.71,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":76.185,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":78.66,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":81.135,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":83.61,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":86.085,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":88.56,"y":31.522,"w":6,"l":1.35},{"oc":"#d2d2d2","x":91.035,"y":31.522,"w":6,"l":1.35},{"oc":"#161616","x":66.337,"y":45.176,"w":3,"l":0.884},{"oc":"#161616","x":97.48,"y":45.174,"w":3,"l":0.884},{"oc":"#161616","x":66.923,"y":6.48,"w":3,"l":0.884},{"oc":"#161616","x":97.48,"y":6.492,"w":3,"l":0.884}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":6.188,"y":6.469,"w":41.639,"h":1.02,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":10.028,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":10.009,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":11.779,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":11.761,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":13.844,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":13.825,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":15.658,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":15.639,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":17.16,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":17.141,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":19.251,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":19.232,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":21.384,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":21.365,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":23.93,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":23.911,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c9c9c9","x":6.188,"y":24.994,"w":41.639,"h":1.02,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":28.023,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":28.004,"w":1.856,"h":0.431,"clr":-1},{"oc":"#c9c9c9","x":6.188,"y":29.262,"w":41.639,"h":1.02,"clr":-1},{"oc":"#d2d2d2","x":82.708,"y":32.522,"w":1.856,"h":0.431,"clr":-1},{"oc":"#d2d2d2","x":75.266,"y":32.504,"w":1.856,"h":0.431,"clr":-1}],"Texts":[{"oc":"#161616","x":5.938,"y":2.046,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.198,"y":2.046,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%207","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.573,"y":3.2990000000000004,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.338,"y":4.448,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.228,"y":4.467,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931,"y":3.393,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.938,"y":7.789,"w":43.336000000000006,"clr":-1,"A":"left","R":[{"T":"%20PART%201%20-%20COALFIELD%20EMPLOYMENT%20ENHANCEMENT%20and%20VIRGINIA%20COAL%20EMPLOYMENT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":12.125,"y":8.352,"w":21.723000000000006,"clr":-1,"A":"left","R":[{"T":"AND%20PRODUCTION%20INCENTIVE%20TAX%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":9.102,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.352,"y":9.102,"w":34.18000000000001,"clr":-1,"A":"left","R":[{"T":"100%25%20Coalfield%20Employment%20Enhancement%20and%2For%20Virginia%20Coal%20Employment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":9.627,"w":35.129,"clr":-1,"A":"left","R":[{"T":"and%20Production%20Incentive%20Tax%20Credits%20from%20Line%202%20of%20your%202013%20Schedule%20306B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":55.075,"y":9.627,"w":6.672000000000004,"clr":-1,"A":"left","R":[{"T":"........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204,"y":9.627,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.536,"y":11.502,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":11.502,"w":5.112,"clr":-1,"A":"left","R":[{"T":"Full%20credit%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":19.435,"y":11.502,"w":36.410999999999945,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%2012%20of%20your%202013%20Form%20306.%20................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.141,"y":11.502,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1B","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.536,"y":13.377,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":13.377,"w":5.335000000000001,"clr":-1,"A":"left","R":[{"T":"85%25%20credit%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":19.705,"y":13.377,"w":36.132999999999946,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%2013%20of%20your%202013%20Form%20306.%20...............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.141,"y":13.377,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1C","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.536,"y":14.745,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":14.745,"w":14.448000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20Coal%20Related%20Tax%20Credits","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.286,"y":15.27,"w":8.893,"clr":-1,"A":"left","R":[{"T":"allowable%20this%20year","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":23.985,"y":15.27,"w":32.801999999999936,"clr":-1,"A":"left","R":[{"T":"%3A%20Add%20Lines%20B%20and%20C.%20....................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.141,"y":15.27,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.536,"y":16.302,"w":1.2233,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":16.302,"w":31.453000000000003,"clr":-1,"A":"left","R":[{"T":"2013%20Coalfield%20Employment%20Enhancement%20Tax%20Credit%20to%20be%20applied","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.286,"y":16.827,"w":11.725000000000001,"clr":-1,"A":"left","R":[{"T":"toward%20your%202016%20return%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":27.727,"y":16.827,"w":24.457000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%2011%20of%20your%202013%20Form%20306.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":56.746,"y":16.827,"w":5.282000000000002,"clr":-1,"A":"left","R":[{"T":"...................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.235,"y":16.826,"w":1.223,"clr":-1,"A":"left","R":[{"T":"1E","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":17.858,"w":26.390000000000008,"clr":-1,"A":"left","R":[{"T":"PART%202%20-%20MOTION%20PICTURE%20PRODUCTION%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":18.889,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.352,"y":18.889,"w":41.466999999999935,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20credit%20authorized%20by%20the%20Virginia%20Film%20Office.%20....................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204,"y":18.889,"w":1.278,"clr":-1,"A":"left","R":[{"T":"2A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":19.92,"w":35.222000000000016,"clr":-1,"A":"left","R":[{"T":"PART%203%20-%20AGRICULTURAL%20BEST%20MANAGEMENT%20PRACTICES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":20.952,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.352,"y":20.952,"w":41.52099999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20credit%20authorized%20by%20the%20Department%20of%20Conservation%20and%20Recreation.%20............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204,"y":20.952,"w":1.278,"clr":-1,"A":"left","R":[{"T":"3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":21.983,"w":32.33700000000001,"clr":-1,"A":"left","R":[{"T":"PART%204%20-%20RESEARCH%20AND%20DEVELOPMENT%20EXPENSES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":23.014,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.352,"y":23.014,"w":37.294999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20Research%20and%20Development%20Expenses%20Tax%20Credit%20authorized%20by%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":23.539,"w":39.082999999999906,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Taxation.%20.....................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.109,"y":23.539,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204,"y":23.539,"w":1.278,"clr":-1,"A":"left","R":[{"T":"4A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":25.977,"w":19.611,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20TOTAL%20REFUNDABLE%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":27.064,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.352,"y":27.064,"w":31.294999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20Section%203%2C%20Part%201%20-%20Line%201D%2C%20Part%202%20-%20Line%202A%2C%20Part%203%20-%20Line%203A%20and%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":27.589,"w":7.504000000000001,"clr":-1,"A":"left","R":[{"T":"Part%204%20-%20Line%204A.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":21.982,"y":27.589,"w":34.19399999999994,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204,"y":27.589,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.938,"y":30.308,"w":20.667,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20TOTAL%20CURRENT%20YEAR%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871,"y":31.114,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.352,"y":31.114,"w":30.793000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20credits%20allowable%20this%20year.%20Enter%20the%20total%20of%20Section%202%2C%20Line%201A%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":31.639000000000003,"w":33.687,"clr":-1,"A":"left","R":[{"T":"and%20Section%204%2C%20Part%201%20-%20Line%201A%20here%20and%20on%20Line%2023%20of%20Form%20760%2C%20Line%2025%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286,"y":32.164,"w":41.582999999999885,"clr":-1,"A":"left","R":[{"T":"Form%20760PY%20or%20Line%2025%20of%20Form%20763.%20..........................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204,"y":32.164,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"x":7.539,"y":6.442,"w":17.723,"clr":1,"A":"left","R":[{"T":"SECTION%203%20-%20REFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":4.218,"y":7.9879999999999995,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":9.435,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":9.611,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":9.449,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":11.187,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":11.362,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":11.201,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":13.251,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":13.426,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":13.265,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":15.065,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":15.241,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":15.079,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":16.567,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":16.743,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":16.581,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":18.658,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":18.834,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":18.672,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":20.791,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":20.967,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":20.805,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":23.337,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":23.513,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":23.351,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"x":7.539,"y":24.967,"w":21.334000000000007,"clr":1,"A":"left","R":[{"T":"SECTION%204%20-%20TOTAL%20REFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":27.43,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":27.606,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":27.444,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"x":7.539,"y":29.235,"w":22.390000000000008,"clr":1,"A":"left","R":[{"T":"SECTION%205%20-%20TOTAL%20CURRENT%20YEAR%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.151,"y":31.93,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.189,"y":32.105,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.557,"y":31.944000000000003,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.219,"y":20.121,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM7","EN":0},"TI":646,"AM":1024,"x":6.642,"y":5.022,"w":30.317,"h":0.881,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE7","EN":0},"TI":647,"AM":1024,"x":41.81,"y":4.571,"w":21.937,"h":0.914,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L108","EN":0},"TI":648,"AM":0,"x":69.298,"y":9.299,"w":21.6,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L109","EN":0},"TI":649,"AM":0,"x":69.298,"y":11.044,"w":21.6,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L110","EN":0},"TI":650,"AM":0,"x":69.298,"y":13.154,"w":21.6,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L111","EN":0},"TI":651,"AM":1024,"x":69.298,"y":14.946,"w":21.6,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L112","EN":0},"TI":652,"AM":0,"x":69.298,"y":16.47,"w":21.6,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FILMCRD","EN":0},"TI":653,"AM":0,"x":69.298,"y":18.557,"w":21.6,"h":0.912,"TU":"Part 2. Line A. Enter amount of credit authorized by the Virginia Film Office."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGMAN","EN":0},"TI":654,"AM":0,"x":69.298,"y":20.711,"w":21.6,"h":0.912,"TU":"Part 3. Line A. Enter amount of credit authorized by the Department of Conservation and Recreation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RDCRED","EN":0},"TI":655,"AM":0,"x":69.385,"y":23.226,"w":21.6,"h":0.912,"TU":"Part 4. Line A. Enter amount of Research and Development Expenses Tax Credit authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTREFCR","EN":0},"TI":656,"AM":1024,"x":69.298,"y":27.361,"w":21.6,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L116","EN":0},"TI":657,"AM":1024,"x":69.298,"y":31.826,"w":21.6,"h":0.912}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#161616","x":44.575,"y":6.173,"w":1.8900000000000001,"l":18.1}],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#161616","x":5.938,"y":2.046,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.198,"y":2.046,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%208","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":42.262,"y":5.213,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#161616","x":44.325,"y":5.344,"w":9.053999999999998,"clr":-1,"A":"left","R":[{"T":"WHAT%20TO%20ATTACH","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":5.938,"y":6.909,"w":53.297999999999945,"clr":-1,"A":"left","R":[{"T":"Attachments%20should%20be%20included%20with%20your%20return%20when%20claiming%20original%20or%20carryover%20credits.%20Computation%20schedules%20are%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":7.553000000000001,"w":44.01599999999996,"clr":-1,"A":"left","R":[{"T":"required%20for%20claims%20to%20be%20carried%20forward.%20%20Missing%20attachments%20may%20cause%20a%20credit%20to%20be%20disallowed.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":8.759,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":8.759,"w":13.002,"clr":-1,"A":"left","R":[{"T":"Enterprise%20Zone%20Act%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":30.696,"y":8.759,"w":4.834999999999999,"clr":-1,"A":"left","R":[{"T":"%20Form%20301.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":9.966,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":9.966,"w":24.452000000000005,"clr":-1,"A":"left","R":[{"T":"Recyclable%20Materials%20Processing%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":50.68,"y":9.966,"w":28.178000000000004,"clr":-1,"A":"left","R":[{"T":"%20Approved%20Form%2050-11S%20from%20the%20Department%20of%20Environmental%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":10.609,"w":42.34999999999997,"clr":-1,"A":"left","R":[{"T":"Quality%20as%20well%20as%20any%20receipts%2C%20invoices%20or%20other%20documentation%20confirming%20purchase%20price%20paid.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":11.816,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":11.816,"w":18.781000000000002,"clr":-1,"A":"left","R":[{"T":"Conservation%20Tillage%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":40.659,"y":11.816,"w":31.460000000000008,"clr":-1,"A":"left","R":[{"T":"%20Statement%20showing%20purchase%20date%2C%20description%20and%20credit%20computation.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":13.022,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":13.022,"w":30.341,"clr":-1,"A":"left","R":[{"T":"Precision%20Fertilizer%20and%20Pesticide%20Application%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":60.015,"y":13.022,"w":23.012000000000008,"clr":-1,"A":"left","R":[{"T":"%20Statement%20showing%20purchase%20date%2C%20description%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":13.666,"w":8.448000000000002,"clr":-1,"A":"left","R":[{"T":"credit%20computation.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":14.872,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":14.872,"w":21.839000000000002,"clr":-1,"A":"left","R":[{"T":"Vehicle%20Emissions%20Testing%20Equipment%20Credit%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":45.44,"y":14.872,"w":31.623000000000005,"clr":-1,"A":"left","R":[{"T":"Copy%20of%20the%20letter%20from%20the%20Department%20of%20Environmental%20Quality%20(DEQ)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":15.515999999999998,"w":51.91599999999995,"clr":-1,"A":"left","R":[{"T":"to%20the%20equipment%20vendor%20certifying%20that%20the%20equipment%20configuration%20meets%20the%20regulation%20and%20equipment%20specification%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":16.159,"w":52.85699999999995,"clr":-1,"A":"left","R":[{"T":"requirements%20for%20use%20in%20the%20enhanced%20vehicle%20emissions%20inspection%20program.%20%20A%20copy%20of%20the%20letter%20may%20be%20obtained%20from%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":16.803,"w":52.577999999999946,"clr":-1,"A":"left","R":[{"T":"the%20equipment%20vendor%20or%20the%20DEQ%20Northern%20Virginia%20Regional%20Office%20in%20Woodbridge%2C%20Virginia%20by%20calling%20(703)%20583-3800.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":18.009,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":18.009,"w":21.676,"clr":-1,"A":"left","R":[{"T":"Foreign%20Source%20Retirement%20Income%20Tax%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":45.519,"y":18.009,"w":31.255999999999997,"clr":-1,"A":"left","R":[{"T":"%20Copy%20of%20the%20tax%20return%20filed%20in%20the%20other%20country%20or%20other%20proof%20of%20income%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":18.653,"w":52.807000000000016,"clr":-1,"A":"left","R":[{"T":"tax%20paid%20to%20the%20foreign%20country%20and%20a%20schedule%20showing%20computation%20of%20foreign%20currency%20converted%20to%20United%20States%20dollars.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":19.859,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":19.859,"w":20.668000000000003,"clr":-1,"A":"left","R":[{"T":"Waste%20Motor%20Oil%20Burning%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":44.721,"y":19.859,"w":31.179000000000002,"clr":-1,"A":"left","R":[{"T":"%20Approved%20Form%2050-12%20from%20the%20Department%20of%20Environmental%20Quality%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":20.503,"w":32.40200000000001,"clr":-1,"A":"left","R":[{"T":"receipts%2C%20invoices%20or%20other%20documentation%20confirming%20purchase%20price%20paid.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":21.709,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":21.709,"w":21.563000000000002,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20and%20Green%20Diesel%20Fuels%20Tax%20Credit%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":47.043,"y":21.709,"w":29.23400000000001,"clr":-1,"A":"left","R":[{"T":"The%20letter%20of%20certification%20from%20the%20Virginia%20Department%20of%20Taxation%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":22.353,"w":9.560000000000004,"clr":-1,"A":"left","R":[{"T":"authorizing%20the%20credit.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":23.559,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":23.559,"w":50.066999999999936,"clr":-1,"A":"left","R":[{"T":"Coalfield%20Employment%20Enhancement%20Tax%20Credit%20and%20Virginia%20Coal%20Employment%20and%20Production%20Incentive%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":94.74,"y":23.559,"w":2.611,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":24.203,"w":53.635999999999925,"clr":-1,"A":"left","R":[{"T":"306%20with%20completed%20schedules%2C%20if%20appropriate.%20See%20the%20%E2%80%9CWhat%20to%20Attach%E2%80%9D%20section%20in%20the%20Form%20306%20instructions%20for%20additional%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":24.847,"w":18.50800000000001,"clr":-1,"A":"left","R":[{"T":"attachment%20requirements%20and%20information.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.938,"y":26.053,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.413,"y":26.053,"w":22.95,"clr":-1,"A":"left","R":[{"T":"Agricultural%20Best%20Management%20Practices%20Credit%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":48.095,"y":26.053,"w":29.457,"clr":-1,"A":"left","R":[{"T":"Copy%20of%20the%20tax%20credit%20approval%20letter%20from%20the%20local%20Soil%20and%20Water%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.413,"y":26.697,"w":9.502,"clr":-1,"A":"left","R":[{"T":"Conservation%20District.","S":-1,"TS":[0,13,0,0]}]}],"Fields":[],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form/VOUCHEF.content.txt b/test/data/va/form/VOUCHEF.content.txt new file mode 100755 index 00000000..2f8fecd6 --- /dev/null +++ b/test/data/va/form/VOUCHEF.content.txt @@ -0,0 +1,34 @@ +0000000000 7618888 113001 +Form 760-PMT 2013 Payment Coupon +(DOC ID 761) + +Please do not staple +To Be Used For Payments On Previously + +Filed 2013 Individual Income Tax Returns Only +Your Social Security Number +Spouse’s Social Security Number +Mail Payment To: + +VA Department of Taxation + +P.O. Box 1478 + +Richmond, VA 23218-1478 +Address +City +State +ZIP +Daytime Phone Number +Amount of + +Payment +Make your check payable to the + +Virginia Department of Taxation +. +0 + +0 +Name(s) +----------------Page (0) Break---------------- diff --git a/test/data/va/form/VOUCHEF.fields.json b/test/data/va/form/VOUCHEF.fields.json new file mode 100755 index 00000000..be043038 --- /dev/null +++ b/test/data/va/form/VOUCHEF.fields.json @@ -0,0 +1 @@ +[{"id":"TPSSN","type":"ssn","calc":true,"value":""},{"id":"SPSSN","type":"ssn","calc":true,"value":""},{"id":"NAME1","type":"alpha","calc":true,"value":""},{"id":"NAME2","type":"alpha","calc":true,"value":""},{"id":"ADDR","type":"alpha","calc":true,"value":""},{"id":"CITY","type":"alpha","calc":true,"value":""},{"id":"STATE","type":"alpha","calc":true,"value":""},{"id":"ZIP","type":"zip","calc":true,"value":""},{"id":"DPHONE","type":"phone","calc":true,"value":""},{"id":"PAYMENT","type":"number","calc":false,"value":""}] \ No newline at end of file diff --git a/test/data/va/form/VOUCHEF.json b/test/data/va/form/VOUCHEF.json new file mode 100755 index 00000000..72dcbf4e --- /dev/null +++ b/test/data/va/form/VOUCHEF.json @@ -0,0 +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":"#ebecec","x":47.223,"y":5.339,"w":14.25,"l":23.873},{"oc":"#ebecec","x":47.223,"y":3.736,"w":14.25,"l":23.873},{"oc":"#ebecec","x":74.31,"y":5.339,"w":14.25,"l":23.873},{"oc":"#ebecec","x":74.31,"y":3.736,"w":14.25,"l":23.873},{"oc":"#2b2e34","x":6.188,"y":9.465,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":9.465,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":9.465,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":10.923,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":10.923,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":10.923,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":12.423,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":12.423,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":12.423,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":13.923,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":13.923,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":13.923,"w":0.75,"l":9.23},{"oc":"#2b2e34","x":6.188,"y":15.423,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":15.423,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":15.423,"w":0.75,"l":9.23},{"oc":"#ebecec","x":68.612,"y":15.136,"w":14.25,"l":29.571},{"oc":"#ebecec","x":68.612,"y":13.523,"w":14.25,"l":29.571},{"oc":"#2b2e34","x":6.188,"y":7.965,"w":0.75,"l":29.52},{"oc":"#2b2e34","x":35.707,"y":7.965,"w":0.75,"l":6.617},{"oc":"#2b2e34","x":42.325,"y":7.965,"w":0.75,"l":9.23}],"VLines":[{"oc":"#ebecec","x":71.096,"y":3.736,"w":14.25,"l":1.603},{"oc":"#ebecec","x":47.223,"y":3.736,"w":14.25,"l":1.603},{"oc":"#e2e2e3","x":50.454,"y":3.989,"w":3,"l":1.122},{"oc":"#e2e2e3","x":52.929,"y":3.989,"w":3,"l":1.113},{"oc":"#e2e2e3","x":55.404,"y":3.989,"w":3,"l":1.113},{"oc":"#e2e2e3","x":57.879,"y":3.989,"w":3,"l":1.094},{"oc":"#e2e2e3","x":60.354,"y":3.989,"w":3,"l":1.094},{"oc":"#e2e2e3","x":62.829,"y":3.989,"w":3,"l":1.094},{"oc":"#e2e2e3","x":65.304,"y":3.989,"w":3,"l":1.084},{"oc":"#e2e2e3","x":67.779,"y":3.989,"w":3,"l":1.075},{"oc":"#ebecec","x":98.184,"y":3.736,"w":14.25,"l":1.603},{"oc":"#ebecec","x":74.31,"y":3.736,"w":14.25,"l":1.603},{"oc":"#e2e2e3","x":77.541,"y":3.989,"w":3,"l":1.122},{"oc":"#e2e2e3","x":80.016,"y":3.989,"w":3,"l":1.113},{"oc":"#e2e2e3","x":82.491,"y":3.989,"w":3,"l":1.113},{"oc":"#e2e2e3","x":84.966,"y":3.989,"w":3,"l":1.094},{"oc":"#e2e2e3","x":87.441,"y":3.989,"w":3,"l":1.094},{"oc":"#e2e2e3","x":89.916,"y":3.989,"w":3,"l":1.094},{"oc":"#e2e2e3","x":92.391,"y":3.989,"w":3,"l":1.084},{"oc":"#e2e2e3","x":94.866,"y":3.989,"w":3,"l":1.075},{"oc":"#2b2e34","x":6.23,"y":9.439,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":9.439,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":10.939,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":10.939,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":12.439,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":35.707,"y":12.439,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":42.325,"y":12.439,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":12.439,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":13.939,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":51.512,"y":13.939,"w":0.75,"l":1.469},{"oc":"#ebecec","x":98.184,"y":13.523,"w":14.25,"l":1.613},{"oc":"#ebecec","x":68.612,"y":13.523,"w":14.25,"l":1.613},{"oc":"#e2e2e3","x":71.87,"y":13.757,"w":1.5,"l":1.134},{"oc":"#e2e2e3","x":76.957,"y":13.786,"w":3,"l":1.116},{"oc":"#e2e2e3","x":79.544,"y":13.757,"w":1.5,"l":1.144},{"oc":"#e2e2e3","x":84.7,"y":13.72,"w":3,"l":1.197},{"oc":"#e2e2e3","x":87.295,"y":13.729,"w":1.5,"l":1.131},{"oc":"#e2e2e3","x":92.409,"y":13.729,"w":3,"l":1.116},{"oc":"#e2e2e3","x":94.987,"y":13.601,"w":1.5,"l":1.325},{"oc":"#e2e2e3","x":74.362,"y":13.757,"w":1.5,"l":1.134},{"oc":"#e2e2e3","x":82.07,"y":13.757,"w":1.5,"l":1.144},{"oc":"#e2e2e3","x":89.813,"y":13.748,"w":1.5,"l":1.131},{"oc":"#2b2e34","x":51.512,"y":7.98,"w":0.75,"l":1.469},{"oc":"#2b2e34","x":6.23,"y":7.98,"w":0.75,"l":1.469}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":76.407,"y":14.757,"w":1.091,"h":0.491,"clr":1},{"x":84.184,"y":14.757,"w":1.091,"h":0.491,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.869,"y":6.313,"w":15.09999999999999,"clr":-1,"A":"left","R":[{"T":"0000000000%207618888%20113001","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":5.937,"y":2.426,"w":18.44900000000001,"clr":-1,"A":"left","R":[{"T":"Form%20760-PMT%20%20%202013%20Payment%20Coupon","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":5.938,"y":3.177,"w":6.112,"clr":-1,"A":"left","R":[{"T":"(DOC%20ID%20761)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.24,"y":3.177,"w":9.670000000000002,"clr":-1,"A":"left","R":[{"T":"Please%20do%20not%20staple","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":5.937,"y":3.989,"w":19.395000000000003,"clr":-1,"A":"left","R":[{"T":"To%20Be%20Used%20For%20Payments%20On%20Previously","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":5.937,"y":4.614,"w":22.119000000000003,"clr":-1,"A":"left","R":[{"T":"Filed%202013%20Individual%20Income%20Tax%20Returns%20Only","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":48.982,"y":2.348,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.589,"y":2.348,"w":14.838000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":75.043,"y":7.094,"w":8.224,"clr":-1,"A":"left","R":[{"T":"Mail%20Payment%20To%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.176,"y":7.843999999999999,"w":12.835000000000008,"clr":-1,"A":"left","R":[{"T":"VA%20Department%20of%20Taxation","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":76.457,"y":8.594,"w":6.67,"clr":-1,"A":"left","R":[{"T":"P.O.%20Box%201478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.475,"y":9.344,"w":12.449000000000005,"clr":-1,"A":"left","R":[{"T":"Richmond%2C%20VA%2023218-1478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":6.324,"y":10.571,"w":3.668,"clr":-1,"A":"left","R":[{"T":"Address","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324,"y":12.071,"w":1.722,"clr":-1,"A":"left","R":[{"T":"City","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":35.801,"y":12.071,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":42.419,"y":12.071,"w":1.556,"clr":-1,"A":"left","R":[{"T":"ZIP","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.325,"y":13.571,"w":10.67,"clr":-1,"A":"left","R":[{"T":"Daytime%20Phone%20Number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":57.285,"y":13.414,"w":4.558,"clr":-1,"A":"left","R":[{"T":"Amount%20of","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":57.285,"y":14.164,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":72.927,"y":11.49,"w":15.061000000000007,"clr":-1,"A":"left","R":[{"T":"Make%20your%20check%20payable%20to%20the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":72.942,"y":12.09,"w":15.114000000000008,"clr":-1,"A":"left","R":[{"T":"Virginia%20Department%20of%20Taxation","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":91.841,"y":14.004,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.528,"y":13.958,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#2b2e34","x":95.325,"y":13.958,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#2b2e34","x":6.324,"y":7.571,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Name(s)","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":658,"AM":1024,"x":48.036,"y":4.103,"w":22.312,"h":0.983,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":659,"AM":1024,"x":75.13,"y":4.103,"w":22.312,"h":0.983,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME1","EN":0},"TI":660,"AM":1024,"x":6.341,"y":8.481,"w":45.024,"h":1.004,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":661,"AM":1024,"x":6.273,"y":9.853,"w":45.024,"h":1.004,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":662,"AM":1024,"x":6.341,"y":11.418,"w":45.024,"h":1.004,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":663,"AM":1024,"x":6.341,"y":12.918,"w":29.205,"h":1.004,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":664,"AM":1024,"x":35.814,"y":12.918,"w":6.353,"h":1.004,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":665,"AM":1024,"x":42.435,"y":12.918,"w":8.931,"h":1.004,"TU":"ZIP"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":666,"AM":1024,"x":6.341,"y":14.418,"w":45.024,"h":1.004,"TU":"Daytime Phone Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYMENT","EN":0},"TI":667,"AM":0,"x":69.467,"y":13.924,"w":22.706,"h":0.963,"TU":"Amount of Payment"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file diff --git a/test/data/va/form_org/VA760.json b/test/data/va/form_org/VA760.json new file mode 100755 index 00000000..d60c8172 --- /dev/null +++ b/test/data/va/form_org/VA760.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#b8e3d4","x":5.740796875000001,"y":11.71575,"w":3,"l":53.23828125000001},{"oc":"#b8e3d4","x":5.740796875000001,"y":4.318875000000001,"w":3,"l":53.23828125000001},{"oc":"#abdecc","x":6.18770625,"y":4.140749999999997,"w":1.5,"l":92.8125},{"oc":"#abdecc","x":7.734581250000001,"y":46.67201875,"w":1.5,"l":90.98203125000002},{"oc":"#b8e3d4","x":57.543921875,"y":11.71575,"w":3,"l":41.9546875},{"oc":"#90d4bc","x":5.86114375,"y":6.243875000000003,"w":1.5,"l":53.06640625000001},{"oc":"#90d4bc","x":5.7923937500000005,"y":8.056375000000003,"w":1.5,"l":53.13515625},{"oc":"#90d4bc","x":5.766612500000001,"y":10.0595,"w":1.5,"l":53.014843750000004},{"oc":"#c6e9dc","x":6.2220812500000005,"y":13.228250000000003,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":6.213487500000001,"y":14.475125,"w":6,"l":2.4492187499999996},{"oc":"#c6e9dc","x":8.69708125,"y":13.228250000000003,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":8.662706250000001,"y":14.475125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":11.172081250000002,"y":13.228250000000003,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":11.137706249999999,"y":14.475125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":13.647081250000001,"y":13.228250000000003,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":13.61270625,"y":14.475125,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":16.12208125,"y":13.228250000000003,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":16.087706250000004,"y":14.475125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.597046875,"y":13.228250000000003,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.562671875000003,"y":14.475125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":21.072046875,"y":13.228250000000003,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":21.037671875,"y":14.475125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":23.547046875000003,"y":13.228250000000003,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":23.512671875,"y":14.475125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":26.022046875000004,"y":13.228250000000003,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":25.987671875,"y":14.475125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":89.55564062500002,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":89.572828125,"y":14.475125,"w":6,"l":2.4234374999999977},{"oc":"#c6e9dc","x":92.030640625,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":91.996265625,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":94.505640625,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":94.471265625,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#b8e3d4","x":3.6009875000000005,"y":22.372,"w":0.75,"l":1.3578125000000003},{"oc":"#b8e3d4","x":3.6095812500000006,"y":35.162625,"w":0.75,"l":1.3578125000000003},{"oc":"#2b2e34","x":53.104906250000006,"y":37.429624999999994,"w":1.0979999999999999,"l":2.114062499999999},{"oc":"#c6e9dc","x":67.71771875,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.19271875000001,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.66771875,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.14271875000001,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.61771875,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.09271875,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.56771875000001,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.04271875,"y":23.60325,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.44896875,"y":23.600125000000002,"w":6,"l":3.2656250000000004},{"oc":"#c6e9dc","x":67.75209375000001,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.22709375,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.70209375,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.17709375000001,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.65209375,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.12709375000001,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.60209375000001,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.07709375,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.55209375000001,"y":22.356375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":93.77396875000001,"y":22.3595,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":23.606375,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":22.3595,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":23.606375,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.2185,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":24.0001875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":25.2470625,"w":6,"l":2.4578125000000055},{"oc":"#c6e9dc","x":70.184125,"y":25.2470625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":25.2470625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":25.2470625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":25.2470625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":25.2470625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":25.2470625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":25.2470625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.50053125000001,"y":25.2501875,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.77396875000001,"y":24.003312500000003,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":25.2501875,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":24.003312500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":25.2501875,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":26.7741875,"w":6,"l":2.4578125000000055},{"oc":"#c6e9dc","x":70.2185,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":26.7741875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":26.7741875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":26.7741875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":26.7741875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":26.7741875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":26.7741875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":26.7741875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":25.527312500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.50053125000001,"y":26.7741875,"w":6,"l":3.1968749999999977},{"oc":"#c6e9dc","x":93.77396875000001,"y":25.5335625,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":26.7804375,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":25.5335625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":26.7804375,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":77.6435,"y":27.41775,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":28.664625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":27.41775,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":28.664625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":27.41775,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":28.664625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":27.41775,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":28.664625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":27.41775,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.44896875,"y":28.670875,"w":6,"l":3.2398437499999977},{"oc":"#c6e9dc","x":93.77396875000001,"y":27.41775,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":28.664625,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":27.41775,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":28.664625,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":39.667718750000006,"y":27.742875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":39.659125,"y":28.817875,"w":6,"l":2.44921875},{"oc":"#c6e9dc","x":42.14271875,"y":27.742875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":42.10834375,"y":28.817875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.61771875,"y":27.742875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.583343750000004,"y":28.817875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":47.09271875000001,"y":27.742875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":47.05834375,"y":28.817875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.567718750000004,"y":27.742875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.53334375000001,"y":28.824125,"w":6,"l":3.188281249999999},{"oc":"#c6e9dc","x":10.801243750000001,"y":27.74275,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":10.775462500000001,"y":28.81775,"w":6,"l":2.466406250000001},{"oc":"#c6e9dc","x":13.27624375,"y":27.74275,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":13.24186875,"y":28.81775,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":15.751243750000002,"y":27.74275,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":15.716868750000001,"y":28.81775,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.226312500000002,"y":27.74275,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.1919375,"y":28.81775,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":20.7013125,"y":27.74275,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":20.6669375,"y":28.827125,"w":6,"l":3.188281249999999},{"oc":"#c6e9dc","x":67.74350000000001,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.70912500000001,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.2185,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":30.3085,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":29.061625000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.42318750000001,"y":30.31475,"w":6,"l":3.2656250000000004},{"oc":"#c6e9dc","x":93.77396875000001,"y":29.06475,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":30.311625000000003,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":29.06475,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":30.311625000000003,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":31.9523125,"w":6,"l":2.4578125000000055},{"oc":"#c6e9dc","x":70.2185,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":31.9523125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":31.9523125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":31.9523125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":31.9523125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":31.9523125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":31.9523125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":31.9523125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.50053125000001,"y":31.9554375,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.77396875000001,"y":30.7054375,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":31.9523125,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":30.7054375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":31.9523125,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":33.6024375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.2185,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":33.5993125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":33.5993125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":33.5993125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":33.5993125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":33.5993125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":33.5993125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":33.5993125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.50053125000001,"y":33.5961875,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.77396875000001,"y":32.3524375,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":33.5993125,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":32.3524375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":33.5993125,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":35.2431875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.2185,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":35.2400625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":35.2400625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":35.2400625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":35.2400625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":35.2400625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":35.2400625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":35.2400625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.406,"y":35.246312499999995,"w":6,"l":3.2828124999999977},{"oc":"#c6e9dc","x":93.77396875000001,"y":33.9931875,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":35.2400625,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":33.9931875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":35.2400625,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":36.887,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.2185,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":36.883874999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":36.883874999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":36.883874999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":36.883874999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":36.883874999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":36.883874999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":36.883874999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":35.637,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.440375,"y":36.883874999999996,"w":6,"l":3.257031249999995},{"oc":"#c6e9dc","x":93.77396875000001,"y":35.640125000000005,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":36.887,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":35.640125000000005,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":36.887,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":39.745875000000005,"w":6,"l":2.569531249999995},{"oc":"#c6e9dc","x":70.2185,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":39.752125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":39.752125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":39.752125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":39.752125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":39.752125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":39.752125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":39.752125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.50912500000001,"y":39.74275,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.77396875000001,"y":38.50525,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":39.752125,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":38.50525,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":39.752125,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":5.0091937500000006,"y":38.3803125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":5.0091937500000006,"y":39.6271875,"w":6,"l":2.440625},{"oc":"#c6e9dc","x":7.484193750000001,"y":38.3803125,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":7.44981875,"y":39.6271875,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":9.95919375,"y":38.3803125,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":9.924818750000002,"y":39.6271875,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":12.434193749999999,"y":38.3803125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":12.399818750000001,"y":39.6271875,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":14.909193750000002,"y":38.3803125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":14.874818750000001,"y":39.6271875,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":17.384125,"y":38.3803125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":17.34975,"y":39.6271875,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":19.859125000000002,"y":38.3803125,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":19.816156250000002,"y":39.6271875,"w":6,"l":3.2140624999999985},{"oc":"#c6e9dc","x":34.640375000000006,"y":38.38025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":34.63178125,"y":39.627125,"w":6,"l":2.44921875},{"oc":"#c6e9dc","x":37.115375,"y":38.38025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":37.081,"y":39.627125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":39.590375,"y":38.38025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":39.556000000000004,"y":39.627125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":42.065375,"y":38.38025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":42.031000000000006,"y":39.627125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.540375000000004,"y":38.38025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.50600000000001,"y":39.627125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":47.015375,"y":38.38025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":46.981,"y":39.627125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.49037500000001,"y":38.38025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.36146875000001,"y":39.627125,"w":6,"l":3.2914062500000028},{"oc":"#c6e9dc","x":77.65209375,"y":40.149187500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.65209375,"y":41.3960625,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":80.12709375000001,"y":40.149187500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.09271875,"y":41.3960625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.60209375000001,"y":40.149187500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.56771875000001,"y":41.3960625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.07709375,"y":40.149187500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.04271875,"y":41.3960625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.55209375000001,"y":40.149187500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.50053125000001,"y":41.392937499999995,"w":6,"l":3.214062499999995},{"oc":"#c6e9dc","x":93.77396875000001,"y":40.149187500000004,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":41.3960625,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":40.149187500000004,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":41.3960625,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":43.046124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.2185,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":43.043,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":43.043,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":43.043,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":43.043,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":43.043,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":43.043,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":43.043,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.50053125000001,"y":43.039874999999995,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.77396875000001,"y":41.796124999999996,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":43.043,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":41.796124999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":43.043,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":44.68686875,"w":6,"l":2.4578125000000055},{"oc":"#c6e9dc","x":70.2185,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":44.68686875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":44.68686875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":44.68686875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":44.68686875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":44.68686875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":44.68686875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":44.68686875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":43.439993750000006,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.47475000000001,"y":44.68686875,"w":6,"l":3.214062499999995},{"oc":"#c6e9dc","x":93.77396875000001,"y":43.44311875,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":44.689993750000006,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":43.44311875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":44.689993750000006,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":67.74350000000001,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.7263125,"y":46.29214375,"w":6,"l":2.4578125000000055},{"oc":"#c6e9dc","x":70.2185,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.184125,"y":46.29214375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.69350000000001,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.659125,"y":46.29214375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.1685,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.13412500000001,"y":46.29214375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.6435,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.609125,"y":46.29214375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.11850000000001,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.08412500000001,"y":46.29214375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.5935,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.55912500000001,"y":46.29214375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.06850000000001,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.034125,"y":46.29214375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.54350000000001,"y":45.04526875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.42318750000001,"y":46.29214375,"w":6,"l":3.2742187500000055},{"oc":"#c6e9dc","x":93.77396875000001,"y":45.048399999999994,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.77396875000001,"y":46.29526875,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.76771875,"y":45.048399999999994,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.73334375,"y":46.29526875,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":74.112671875,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":74.08689062500001,"y":14.478250000000003,"w":6,"l":2.4664062499999977},{"oc":"#c6e9dc","x":76.587671875,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":76.553296875,"y":14.478250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":79.062671875,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":79.02829687500001,"y":14.478250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":81.537671875,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":81.503296875,"y":14.478250000000003,"w":6,"l":2.5437500000000055},{"oc":"#90d4bc","x":5.740831250000001,"y":11.59075,"w":1.5,"l":53.040625},{"oc":"#2b2e34","x":3.3627000000000002,"y":12.048999999999998,"w":3,"l":2.4320312500000005},{"oc":"#c6e9dc","x":31.565015625,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":31.556421875,"y":14.478250000000003,"w":6,"l":2.44921875},{"oc":"#c6e9dc","x":34.040015625,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":34.005640625000005,"y":14.478250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":36.515015625,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":36.48064062500001,"y":14.478250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":38.990015625000005,"y":13.231375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":38.955640625,"y":14.478250000000003,"w":6,"l":2.5523437499999977},{"oc":"#2b2e34","x":3.3630437500000006,"y":47.6171875,"w":3,"l":2.4320312500000005},{"oc":"#c6e9dc","x":46.913453125000004,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":46.904859375,"y":14.475125,"w":6,"l":2.44921875},{"oc":"#c6e9dc","x":49.388453125000005,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.354078125,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":51.863453125,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":51.829078125,"y":14.475125,"w":6,"l":2.62109375},{"oc":"#c6e9dc","x":54.34704687500001,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":54.312671875,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":56.822046875000005,"y":13.228250000000003,"w":6,"l":2.474999999999996},{"oc":"#c6e9dc","x":56.787671875,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":59.28845312500001,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":59.254078125,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":61.763453125,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":61.729078125,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":64.24704687500001,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":64.092359375,"y":14.475125,"w":6,"l":2.6296875000000055},{"oc":"#c6e9dc","x":66.722046875,"y":13.228250000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":66.687671875,"y":14.475125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":6.028000000000001,"y":20.301875,"w":3,"l":93.396875},{"oc":"#b8e3d4","x":6.028000000000001,"y":14.767499999999998,"w":3,"l":93.3109375},{"oc":"#c6e9dc","x":70.893625,"y":15.8735625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.893625,"y":17.120437499999998,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":73.36862500000001,"y":15.8735625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.33425000000001,"y":17.120437499999998,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":62.68659375,"y":15.873750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":62.65221875,"y":17.120625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":65.16159375000001,"y":15.873750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":65.12721875000001,"y":17.120625,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":73.643625,"y":18.501875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.63503125000001,"y":19.74875,"w":6,"l":3.1539062499999977},{"oc":"#c6e9dc","x":44.888937500000004,"y":17.398749999999996,"w":3,"l":46.5265625},{"oc":"#abdecc","x":84.7295625,"y":17.098750000000006,"w":1.5,"l":8.29296875},{"oc":"#abdecc","x":84.7295625,"y":19.195624999999996,"w":1.5,"l":8.29296875},{"oc":"#2b2e34","x":97.76267187500002,"y":7.21575,"w":3,"l":2.4320312500000028},{"oc":"#c6e9dc","x":6.187500000000001,"y":22.075,"w":3,"l":92.989359375},{"oc":"#abdecc","x":33.19542187500001,"y":21.6720625,"w":1.5,"l":22.549828125},{"oc":"#abdecc","x":33.19542187500001,"y":20.7001875,"w":1.5,"l":22.549828125},{"oc":"#abdecc","x":75.85909375,"y":21.6720625,"w":1.5,"l":22.549828125},{"oc":"#abdecc","x":75.85909375,"y":20.7001875,"w":1.5,"l":22.549828125},{"oc":"#2b2e34","x":64.625567359375,"y":5.656250437499999,"w":0.9885,"l":3.6082404531250054},{"oc":"#2b2e34","x":71.01540617187501,"y":5.656250437499999,"w":0.9885,"l":6.8129453906249955},{"oc":"#2b2e34","x":96.96689062500002,"y":47.8313875,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#b8e3d4","x":58.979078125,"y":4.318875000000001,"w":3,"l":7.396874999999999},{"oc":"#b8e3d4","x":5.740796875000001,"y":4.318875000000001,"w":3,"l":7.396874999999999},{"oc":"#b8e3d4","x":59.67517187500001,"y":4.193875000000001,"w":3,"l":7.521874999999999},{"oc":"#c6e9dc","x":6.557237500000001,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":9.0322375,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":11.5072375,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":13.982237500000002,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":16.4572375,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":18.932203125,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":21.407203125000002,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":23.882203125,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":26.357203125,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":28.754859375,"y":13.103249999999997,"w":6,"l":1.493750000000001},{"oc":"#c6e9dc","x":89.890796875,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":92.365796875,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.84079687500002,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":97.22985937500002,"y":13.103249999999997,"w":6,"l":1.493750000000001},{"oc":"#b8e3d4","x":3.6525500000000006,"y":22.3595,"w":0.75,"l":0.4968749999999981},{"oc":"#b8e3d4","x":3.6525500000000006,"y":34.647,"w":0.75,"l":0.53125},{"oc":"#c6e9dc","x":68.08725000000001,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.56225,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.03725000000001,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.51225,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.98725,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.46225000000001,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.93725,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.41225000000001,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.88725000000001,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.36225,"y":22.2345,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":22.237624999999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":22.237624999999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":23.878312500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":23.8814375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":23.8814375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":25.4054375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":25.411687500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":25.411687500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":27.295875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":27.295875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":27.295875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":27.295875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":27.295875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":27.292749999999998,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.11771875000001,"y":27.295875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":27.295875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":40.002875,"y":27.621,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":42.477875000000004,"y":27.621,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":44.952875,"y":27.621,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":47.42787500000001,"y":27.621,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":49.902875,"y":27.621,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":52.37787500000001,"y":27.621,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":11.1364,"y":27.620874999999998,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":13.611400000000001,"y":27.620874999999998,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":16.0864,"y":27.620874999999998,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":18.56146875,"y":27.620874999999998,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":21.03646875,"y":27.620874999999998,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":23.511468750000006,"y":27.620874999999998,"w":6,"l":1.162499999999999},{"oc":"#c6e9dc","x":68.07865625,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":28.939750000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":28.936625000000003,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.11771875000001,"y":28.942875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":28.942875,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":30.583562500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":32.2243125,"w":6,"l":1.3562499999999982},{"oc":"#c6e9dc","x":94.11771875000001,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":32.2305625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":33.8713125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":35.515125000000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":35.512,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":35.51825,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":35.51825,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":38.383375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":5.34435,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":7.819350000000001,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":10.294350000000001,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":12.769350000000001,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":15.244350000000003,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":17.71928125,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":20.19428125,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":22.66928125,"y":38.2584375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":34.97553125,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":37.450531250000004,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":39.925531250000006,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":42.40053125,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":44.87553125,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":47.35053125000001,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":49.825531250000004,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":52.30053125,"y":38.258375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.98725,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.46225000000001,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.93725,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.41225000000001,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.88725000000001,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.36225,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.11771875000001,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":40.0273125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.55365625,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.02865625000001,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.50365625,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":77.97865625000001,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.45365625000001,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":82.92865625,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.40365625000001,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":87.87865625,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.35365625,"y":41.668,"w":6,"l":1.3562499999999982},{"oc":"#c6e9dc","x":94.11771875000001,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.577875,"y":41.674249999999994,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.07865625,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":70.55365625,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":73.02865625000001,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":75.50365625,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":77.97865625000001,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":80.45365625000001,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":82.92865625,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":85.40365625000001,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":87.87865625,"y":43.31811875,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":90.35365625,"y":43.31186875,"w":6,"l":1.3562499999999982},{"oc":"#c6e9dc","x":94.11771875000001,"y":43.32124375,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":98.577875,"y":43.32124375,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":68.07865625,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":70.55365625,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":73.02865625000001,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":75.50365625,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":77.97865625000001,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":80.45365625000001,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":82.92865625,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":85.40365625000001,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":87.87865625,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":90.35365625,"y":44.923393749999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":94.11771875000001,"y":44.92651874999999,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":98.577875,"y":44.92651874999999,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":74.447828125,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":76.92282812500001,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":79.397828125,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":81.872828125,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":84.339234375,"y":13.103249999999997,"w":6,"l":1.493750000000001},{"oc":"#2b2e34","x":3.5345750000000002,"y":11.989625000000004,"w":3,"l":0.8843750000000009},{"oc":"#c6e9dc","x":31.900171875,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":34.37517187500001,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":36.850171875,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":39.325171875,"y":13.109500000000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":41.80876562500001,"y":13.103250000000001,"w":6,"l":1.5031249999999996},{"oc":"#2b2e34","x":3.5349187500000006,"y":46.792187500000004,"w":3,"l":0.8843749999999962},{"oc":"#90d4bc","x":32.003296875,"y":4.372000000000001,"w":1.5,"l":3.65},{"oc":"#90d4bc","x":28.548609375,"y":4.272000000000001,"w":1.5,"l":3.75},{"oc":"#c6e9dc","x":47.248609375,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":49.723609375,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":52.19860937500001,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":54.682203125,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":57.157203125,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":59.623609375,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":62.098609375,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":64.582203125,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":67.057203125,"y":13.106375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":69.454859375,"y":13.103249999999997,"w":6,"l":1.493750000000001},{"oc":"#c6e9dc","x":44.906125,"y":14.698750000000002,"w":3,"l":5.659375},{"oc":"#c6e9dc","x":71.22878125000001,"y":15.751687499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.70378125,"y":15.751687499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":76.17878125,"y":15.751687499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":63.02175000000001,"y":15.751874999999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":65.49675,"y":15.751874999999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":67.97175,"y":15.751874999999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.97878125000001,"y":18.38,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":76.45378125,"y":18.373749999999998,"w":6,"l":1.3562500000000004},{"oc":"#2b2e34","x":100.02282812500002,"y":7.153250000000001,"w":3,"l":0.8843749999999998},{"oc":"#abdecc","x":55.745250000000006,"y":20.7001875,"w":1.5,"l":0.9718750000000019},{"oc":"#abdecc","x":33.19542187500001,"y":20.7001875,"w":1.5,"l":0.9718750000000019},{"oc":"#abdecc","x":98.408921875,"y":20.7001875,"w":1.5,"l":0.9718750000000019},{"oc":"#abdecc","x":75.85909375,"y":20.7001875,"w":1.5,"l":0.9718750000000019},{"oc":"#2b2e34","x":99.25282812500001,"y":47.00639375,"w":3,"l":0.8843749999999962}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c6e9dc","x":82.03490625,"y":23.234499999999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.59271875,"y":23.21575,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":24.878312499999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":24.8595625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":26.4054375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":26.386687499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":28.295875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":44.05053125,"y":28.480375000000006,"w":1.8562499999999988,"h":0.3718749999999981,"clr":-1},{"oc":"#c6e9dc","x":15.184056250000001,"y":28.48025,"w":1.8562499999999988,"h":0.3718749999999981,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":29.93975,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":29.921000000000003,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":31.5835625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":31.564812500000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":33.2305625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":33.2118125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":34.8713125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":34.8525625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":36.515125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":36.496375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":39.383374999999994,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":39.364625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":14.342006250000003,"y":39.2584375,"w":1.8562499999999988,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":6.8998187500000006,"y":39.239687499999995,"w":1.8562500000000004,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":43.9731875,"y":39.258374999999994,"w":1.8562499999999988,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":36.531000000000006,"y":39.239625,"w":1.8562499999999988,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.03490625,"y":41.0273125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":42.67425,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":42.655499999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":44.318118750000004,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":44.299368750000006,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#c6e9dc","x":82.0263125,"y":45.92339375,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#c6e9dc","x":74.58412500000001,"y":45.90464375,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#b8e3d4","x":6.028000000000001,"y":14.698750000000004,"w":11.025781250000003,"h":1.0187499999999972,"clr":-1},{"oc":"#b8e3d4","x":44.957687500000006,"y":14.729999999999999,"w":10.346875000000002,"h":1.015625,"clr":-1},{"oc":"#abdecc","x":45.46471875,"y":16.064375000000002,"w":3.171093749999995,"h":1.1531250000000004,"clr":-1},{"oc":"#abdecc","x":45.46471875,"y":18.267500000000002,"w":3.171093749999995,"h":1.1531250000000004,"clr":-1},{"oc":"#2b2e34","x":51.11940625000001,"y":16.476874999999996,"w":2.139843749999995,"h":0.4375,"clr":-1},{"oc":"#b8e3d4","x":6.027828125,"y":20.2391875,"w":11.025781250000001,"h":1.0187500000000018,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":7.1064425,"y":1.5691874999999982,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,22,1,0]}]},{"oc":"#2b2e34","x":13.988822812500002,"y":1.5691812500000046,"w":13.171000000000003,"clr":-1,"A":"left","R":[{"T":"%20Virginia%20Resident%20Form%20760","S":-1,"TS":[0,17,1,0]}]},{"oc":"#2b2e34","x":7.106463125,"y":2.469150000000004,"w":13.948000000000002,"clr":-1,"A":"left","R":[{"T":"Individual%20Income%20Tax%20Return","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":88.214234375,"y":11.469500000000002,"w":5.377000000000002,"clr":-1,"A":"left","R":[{"T":"Locality%20Code","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":88.145553125,"y":12.108356250000005,"w":6.380000000000001,"clr":-1,"A":"left","R":[{"T":"See%20instructions","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.436150625,"y":4.190887500000002,"w":5.788000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":29.12365578125,"y":4.190887500000002,"w":1.367,"clr":-1,"A":"left","R":[{"T":"M.I.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":32.68148375000001,"y":4.190887500000002,"w":3.829,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.436119687500007,"y":7.781516250000001,"w":23.018,"clr":-1,"A":"left","R":[{"T":"Number%20and%20Street%20-%20If%20this%20is%20a%20change%20you%20must%20check%20this%20box","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.436119687500007,"y":9.912761250000008,"w":8.523,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":42.78768218750001,"y":9.956517562500002,"w":3.464,"clr":-1,"A":"left","R":[{"T":"ZIP%20Code","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":7.788610937500001,"y":11.870750000000001,"w":11.302,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":31.279042187499996,"y":11.469474999999997,"w":6.380000000000001,"clr":-1,"A":"left","R":[{"T":"First%204%20letters%20of%20","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":31.591665625,"y":12.03197625,"w":5.788000000000002,"clr":-1,"A":"left","R":[{"T":"your%20last%20name","S":34,"TS":[1,14,1,0]}]},{"x":13.371306875,"y":13.299525000000003,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"x":18.31270625,"y":13.318275,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":46.52767187500001,"y":11.870750000000001,"w":13.308,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number%20","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":73.83018750000001,"y":11.469415000000003,"w":6.380000000000001,"clr":-1,"A":"left","R":[{"T":"First%204%20letters%20of%20","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":72.64015421875,"y":12.031913749999996,"w":7.566000000000002,"clr":-1,"A":"left","R":[{"T":"spouse%E2%80%99s%20last%20name","S":34,"TS":[1,14,1,0]}]},{"oc":"#2b2e34","x":14.161925000000002,"y":30.165899999999997,"w":14.129999999999997,"clr":-1,"A":"left","R":[{"T":"(Reported%20as%20taxable%20on%20federal%20return)","S":27,"TS":[1,12,0,0]}]},{"oc":"#b8e3d4","x":4.278454218750001,"y":32.1928125,"w":22.84200000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20Forms%20W-2%2C%20W-2G%2C%201099%20and%20VK-1%20reporting%20VA%20","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#b8e3d4","x":5.309704390625001,"y":29.007900000000003,"w":7.837,"clr":-1,"A":"left","R":[{"T":"withholding%20%20here.","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#2b2e34","x":5.568168125,"y":22.67840625,"w":0.684,"clr":-1,"A":"left","R":[{"T":"1.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043168125000003,"y":22.67840625,"w":12.349999999999996,"clr":-1,"A":"left","R":[{"T":"Federal%20Adjusted%20Gross%20Income","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":27.437404249999997,"y":22.67840625,"w":22.11600000000003,"clr":-1,"A":"left","R":[{"T":".................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.78761987499999,"y":22.67840625,"w":0.456,"clr":-1,"A":"left","R":[{"T":"1","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568149562499994,"y":24.253406249999998,"w":0.684,"clr":-1,"A":"left","R":[{"T":"2.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043149562499995,"y":24.253406249999998,"w":7.5200000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20Additions%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":19.008900031249997,"y":24.253406249999998,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":24.57778924999999,"y":24.253406249999998,"w":8.342,"clr":-1,"A":"left","R":[{"T":"Schedule%20ADJ%2C%20Line%203%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":38.018816609374994,"y":24.253406249999998,"w":15.275999999999991,"clr":-1,"A":"left","R":[{"T":"...................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.787633796875,"y":24.253406249999998,"w":0.456,"clr":-1,"A":"left","R":[{"T":"2","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.5681634843750025,"y":25.828406249999997,"w":0.684,"clr":-1,"A":"left","R":[{"T":"3.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043163484375004,"y":25.828406249999997,"w":7.018000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%201%20and%202","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":19.324665171875004,"y":25.828406249999997,"w":27.360000000000067,"clr":-1,"A":"left","R":[{"T":"........................................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.787776109375,"y":25.828406249999997,"w":0.456,"clr":-1,"A":"left","R":[{"T":"3","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568305796875006,"y":26.503406249999998,"w":0.684,"clr":-1,"A":"left","R":[{"T":"4.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043305796875007,"y":26.503406249999998,"w":34.646000000000015,"clr":-1,"A":"left","R":[{"T":"Deduction%20for%20age%20on%20January%201%2C%202014.%20See%20Instructions.%20Be%20sure%20to%20provide%20date%20of%20birth%20above.%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.94261829687502,"y":27.853406250000003,"w":0.456,"clr":-1,"A":"left","R":[{"T":"4","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568305796875006,"y":29.372156250000003,"w":0.684,"clr":-1,"A":"left","R":[{"T":"5.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043305796875007,"y":29.372156250000003,"w":27.438000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Act%20and%20equivalent%20Tier%201%20Railroad%20Retirement%20Act%20benefits%20%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":50.36471834375001,"y":29.372156250000003,"w":7.2959999999999985,"clr":-1,"A":"left","R":[{"T":"................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.94324787500001,"y":29.372156250000003,"w":0.456,"clr":-1,"A":"left","R":[{"T":"5","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.5683166250000005,"y":31.17215625,"w":0.684,"clr":-1,"A":"left","R":[{"T":"6.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043316625000001,"y":31.17215625,"w":31.175999999999995,"clr":-1,"A":"left","R":[{"T":"State%20Income%20Tax%20refund%20or%20overpayment%20credit%20(reported%20as%20income%20on%20federal%20return)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":56.361038515625,"y":31.17215625,"w":3.4200000000000013,"clr":-1,"A":"left","R":[{"T":"...............","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.787831796875,"y":31.17215625,"w":0.456,"clr":-1,"A":"left","R":[{"T":"6","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568361484374997,"y":32.690906250000005,"w":0.684,"clr":-1,"A":"left","R":[{"T":"7.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043361484374998,"y":32.690906250000005,"w":6.654,"clr":-1,"A":"left","R":[{"T":"Subtractions%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.993743203124996,"y":32.690906250000005,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":23.333462890624997,"y":32.690906250000005,"w":8.114,"clr":-1,"A":"left","R":[{"T":"Schedule%20ADJ%2C%20Line%207%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":36.609053515625,"y":32.690906250000005,"w":16.18799999999999,"clr":-1,"A":"left","R":[{"T":".......................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.787847265625004,"y":32.690906250000005,"w":0.456,"clr":-1,"A":"left","R":[{"T":"7","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568376953125002,"y":34.49090625,"w":0.684,"clr":-1,"A":"left","R":[{"T":"8.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043376953125003,"y":34.49090625,"w":8.842,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%204%2C%205%2C%206%20and%207","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":22.146722046875006,"y":34.49090625,"w":25.536000000000055,"clr":-1,"A":"left","R":[{"T":"................................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.787868921875,"y":34.49090625,"w":0.456,"clr":-1,"A":"left","R":[{"T":"8","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568398609375002,"y":35.72840625,"w":0.684,"clr":-1,"A":"left","R":[{"T":"9.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043398609375004,"y":35.72840625,"w":26.521000000000008,"clr":-1,"A":"left","R":[{"T":"Virginia%20Adjusted%20Gross%20Income%20(VAGI)%20-%20Subtract%20Line%208%20from%20Line%203","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":48.954372078125004,"y":35.72840625,"w":8.207999999999998,"clr":-1,"A":"left","R":[{"T":"....................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.787927703125014,"y":35.72840625,"w":0.456,"clr":-1,"A":"left","R":[{"T":"9","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568457390625008,"y":36.613404375,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043457390625008,"y":36.613404375,"w":4.375,"clr":-1,"A":"left","R":[{"T":"Deductions-","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.81179348437501,"y":36.613404375,"w":6.151000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20Standard%3A","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":33.70133379687501,"y":36.613404375,"w":3.6710000000000003,"clr":-1,"A":"left","R":[{"T":"%3D%20%243%2C000%3B%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":39.38051520312501,"y":36.613404375,"w":0.684,"clr":-1,"A":"left","R":[{"T":"2%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":40.43869835937501,"y":36.613404375,"w":3.6710000000000003,"clr":-1,"A":"left","R":[{"T":"%3D%20%246%2C000%3B%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":46.117879765625005,"y":36.613404375,"w":0.684,"clr":-1,"A":"left","R":[{"T":"3%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":47.17606910937501,"y":36.613404375,"w":3.443,"clr":-1,"A":"left","R":[{"T":"%3D%20%243%2C000%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":52.854906250000006,"y":36.613375,"w":1.23,"clr":-1,"A":"left","R":[{"T":"OR","S":34,"TS":[1,14,1,0]}]},{"oc":"#2b2e34","x":55.321687015625,"y":36.613387499999995,"w":3.5090000000000003,"clr":-1,"A":"left","R":[{"T":"%20Itemized","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":60.750104515625,"y":36.613387499999995,"w":0.228,"clr":-1,"A":"left","R":[{"T":"%3A","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.21972803124999,"y":38.772763125000004,"w":0.912,"clr":-1,"A":"left","R":[{"T":"10","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568129453124989,"y":39.852763125,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043129453124989,"y":39.852763125,"w":33.72800000000001,"clr":-1,"A":"left","R":[{"T":"Exemptions.%20Sum%20of%20total%20from%20Exemption%20Section%20A%20multiplied%20by%20%24930%20plus%20sum%20of%20total%20from","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043129453124989,"y":40.527763125,"w":14.448999999999998,"clr":-1,"A":"left","R":[{"T":"Exemption%20Section%20B%20multiplied%20by%20%24800","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":30.612345078124992,"y":40.527763125,"w":19.608000000000015,"clr":-1,"A":"left","R":[{"T":"......................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.15167945312499,"y":40.527763125,"w":0.912,"clr":-1,"A":"left","R":[{"T":"11","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568110890624992,"y":42.102763124999996,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":48.248463406249996,"y":42.102763124999996,"w":8.207999999999998,"clr":-1,"A":"left","R":[{"T":"....................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.082235593750006,"y":42.102763124999996,"w":0.912,"clr":-1,"A":"left","R":[{"T":"12","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.5681402812499945,"y":43.621513125,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043140281249995,"y":43.621513125,"w":9.298,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2010%2C%2011%20and%2012","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":22.852056828124997,"y":43.621513125,"w":24.62400000000005,"clr":-1,"A":"left","R":[{"T":"............................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.082144328125004,"y":43.621513125,"w":0.912,"clr":-1,"A":"left","R":[{"T":"13","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":5.568049015624995,"y":45.140263125,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.043049015624995,"y":45.140263125,"w":21.374000000000006,"clr":-1,"A":"left","R":[{"T":"Virginia%20Taxable%20Income%20-%20Subtract%20Line%2013%20from%20Line%209%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":41.1938193125,"y":45.140263125,"w":12.767999999999994,"clr":-1,"A":"left","R":[{"T":"........................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.082145874999995,"y":45.140263125,"w":0.912,"clr":-1,"A":"left","R":[{"T":"14","S":33,"TS":[1,12,1,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":22.724475,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.3263125,"y":22.6557,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.88398750000002,"y":22.6557,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":22.662937499999998,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":24.2808,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":24.29955,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":24.29955,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":24.306675,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":25.80795,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":25.826700000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":25.826700000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":25.8370125,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":27.701475000000002,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":27.71715,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":27.721162500000002,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":7.3460225,"y":27.80851875,"w":1.549,"clr":-1,"A":"left","R":[{"T":"You","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":54.181643750000006,"y":28.004775,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"x":44.34186875,"y":27.95475,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":30.334159375,"y":27.743174999999997,"w":0.5640000000000001,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,17,0,0]}]},{"oc":"#231e21","x":59.639878125,"y":27.773800000000005,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":11,"TS":[0,18,1,0]}]},{"oc":"#231e21","x":52.763675000000006,"y":28.01715,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":24.241362500000005,"y":28.01715,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":33.6291921875,"y":27.683531249999998,"w":3.19,"clr":-1,"A":"left","R":[{"T":"Spouse%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":25.315306250000006,"y":28.004625,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"x":15.475469375,"y":27.9546,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.43569437500001,"y":29.389072499999997,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":29.361,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":29.361,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":29.3681625,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":30.98295,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":31.00485,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":31.00485,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":31.008862500000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":32.676825,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.4121125,"y":32.64532499999999,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.97061250000002,"y":32.64532499999999,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":32.651774999999994,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":32.651774999999994,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":32.655862500000005,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":34.317524999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":34.29255,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":34.29255,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":34.2965625,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":35.961375,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":35.9364,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":35.9364,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":35.943562500000006,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":38.83275,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":38.804624999999994,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":38.804624999999994,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":38.808678750000006,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":28.1254109375,"y":38.43976875,"w":3.2219999999999995,"clr":-1,"A":"left","R":[{"T":"MINUS","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":4.933114062499998,"y":37.30239375,"w":11.984999999999996,"clr":-1,"A":"left","R":[{"T":"10a.%20Total%20Itemized%20Deductions","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":27.3102078125,"y":37.30239375,"w":20.874000000000006,"clr":-1,"A":"left","R":[{"T":"10b.%20State%20and%20Local%20Income%20Taxes%20claimed%20on%20Sch.%20A","S":33,"TS":[1,12,1,0]}]},{"x":14.633412499999999,"y":38.679675,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":7.191231875000001,"y":38.679675,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":44.264525,"y":38.6796,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":36.82240625,"y":38.6796,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":23.15009375,"y":38.945100000000004,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":59.638675000000006,"y":38.382912499999996,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":11,"TS":[0,18,1,0]}]},{"oc":"#231e21","x":52.781,"y":38.9265,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":24.5763125,"y":38.79225,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":54.2680625,"y":38.79225,"w":1.334,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.43575625000001,"y":40.4703975,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.3263125,"y":40.448550000000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":40.452585,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":42.120509999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.4121125,"y":42.08901,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.97061250000002,"y":42.08901,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":42.095512500000005,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":42.095512500000005,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":42.09955125,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":43.761239999999994,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":43.7393625,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":43.7393625,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":43.74652875,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.43555,"y":45.413385,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.31765000000001,"y":45.34464,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":74.87553125000001,"y":45.34464,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.2888125,"y":45.3518025,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b8e3d4","x":84.83694218750001,"y":46.665903750000005,"w":3.8280000000000003,"clr":-1,"A":"left","R":[{"T":"Office%20Use","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.170587499999993,"y":25.06275375,"w":11.896,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Schedule%20ADJ)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.170587499999993,"y":33.46588499999999,"w":11.896,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Schedule%20ADJ)","S":27,"TS":[1,12,0,0]}]},{"oc":"#b8e3d4","x":5.6104940625,"y":44.656273125000006,"w":9.227,"clr":-1,"A":"left","R":[{"T":"Staple%20payment%20here","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#b8e3d4","x":3.9984062500000004,"y":43.25325,"w":3.667,"clr":-1,"A":"left","R":[{"T":"STAPLE","S":1,"TS":[0,8,0,0],"RA":90}]},{"oc":"#b8e3d4","x":3.8754313203125026,"y":1.5252216562500016,"w":3.667,"clr":-1,"A":"left","R":[{"T":"STAPLE","S":-1,"TS":[0,7.999952049770077,0,0],"RA":45}]},{"oc":"#2b2e34","x":32.5182265625,"y":6.094049999999996,"w":3.829,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#b8e3d4","x":4.3547546875,"y":33.26265625,"w":3.667,"clr":-1,"A":"left","R":[{"T":"STAPLE","S":1,"TS":[0,8,0,0],"RA":90}]},{"oc":"#2b2e34","x":55.05093593750001,"y":4.190887500000002,"w":2.051,"clr":-1,"A":"left","R":[{"T":"Suffix","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":55.05093593750001,"y":6.094010625,"w":2.051,"clr":-1,"A":"left","R":[{"T":"Suffix","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":4.3124871875,"y":4.807499999999995,"w":6.950000000000001,"clr":-1,"A":"left","R":[{"T":"2601031%20%2001%2F13","S":51,"TS":[0,9,0,0],"RA":90}]},{"x":54.0799625,"y":13.299525000000003,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"x":59.00418125,"y":13.318275,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":9.46185359375,"y":16.7467875,"w":20.598999999999997,"clr":-1,"A":"left","R":[{"T":"(2)%20Married%20filing%20joint%20return%20(Enter%20spouse%E2%80%99s%20SSN%20above)","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":39.741543453125004,"y":15.767643750000001,"w":1.4130000000000003,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[1,11.73,0,0]}]},{"oc":"#231e21","x":17.706125,"y":14.614199999999997,"w":12.416000000000006,"clr":-1,"A":"left","R":[{"T":"Select%20a%20button%20to%20indicate%20status","S":-1,"TS":[0,11,0,0]}]},{"oc":"#231e21","x":45.094475,"y":14.66355,"w":4.648000000000001,"clr":-1,"A":"left","R":[{"T":"Exemptions","S":-1,"TS":[1,16,1,0]}]},{"oc":"#231e21","x":6.0529999999999955,"y":14.601051000000004,"w":4.921000000000001,"clr":-1,"A":"left","R":[{"T":"Filing%20Status","S":-1,"TS":[1,16,1,0]}]},{"oc":"#90d4bc","x":54.040630625000006,"y":16.097923499999997,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#90d4bc","x":60.228130625,"y":16.054173000000002,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":50.7920796875,"y":15.4894875,"w":1.549,"clr":-1,"A":"left","R":[{"T":"You","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":55.742079687499995,"y":15.4894875,"w":2.9619999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":61.688947812500004,"y":14.730118124999999,"w":4.693,"clr":-1,"A":"left","R":[{"T":"Dependents","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":51.075745624999996,"y":17.33949375,"w":1.777,"clr":-1,"A":"left","R":[{"T":"You%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":51.52175609375001,"y":17.839492124999996,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"65%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":50.077222343749995,"y":18.339494437499997,"w":2.78,"clr":-1,"A":"left","R":[{"T":"or%20over","S":33,"TS":[1,12,1,0]}]},{"oc":"#90d4bc","x":68.69277500000001,"y":15.929175,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":55.58677343750001,"y":17.339493750000003,"w":3.19,"clr":-1,"A":"left","R":[{"T":"Spouse%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":57.172165625000005,"y":17.839492125000003,"w":0.912,"clr":-1,"A":"left","R":[{"T":"65","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":55.551277296875,"y":18.339494437500004,"w":3.008,"clr":-1,"A":"left","R":[{"T":"%20or%20over","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":62.58709901562499,"y":17.520741937500006,"w":1.777,"clr":-1,"A":"left","R":[{"T":"You%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":62.153185109374995,"y":18.195741937500003,"w":2.05,"clr":-1,"A":"left","R":[{"T":"Blind","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":67.27428495312499,"y":17.520741937500006,"w":2.9619999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":67.979737296875,"y":18.195741937500003,"w":2.05,"clr":-1,"A":"left","R":[{"T":"Blind","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":54.040568750000006,"y":19.023075000000002,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":60.02181875,"y":19.022903250000002,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":66.08903375000001,"y":19.022903250000002,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%2B","S":-1,"TS":[0,15,0,0]}]},{"oc":"#231e21","x":71.64905937500001,"y":14.730168749999999,"w":1.9589999999999999,"clr":-1,"A":"left","R":[{"T":"Total","S":33,"TS":[1,12,1,0]}]},{"oc":"#90d4bc","x":71.61471875000001,"y":18.488550000000004,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":73.34211406250002,"y":17.364525,"w":1.9589999999999999,"clr":-1,"A":"left","R":[{"T":"Total","S":33,"TS":[1,12,1,0]}]},{"x":45.93803750000001,"y":16.135650000000002,"w":0.778,"clr":1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,16,1,0]}]},{"x":46.1228375,"y":18.294975000000004,"w":0.778,"clr":1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":77.05421875,"y":15.850875000000002,"w":2.75,"clr":-1,"A":"left","R":[{"T":"x%20%24930","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231e21","x":77.05449374999999,"y":18.369625000000003,"w":2.75,"clr":-1,"A":"left","R":[{"T":"x%20%24800","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231e21","x":82.38261875,"y":15.963525,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":82.63183268750002,"y":18.2572725,"w":0.584,"clr":-1,"A":"left","R":[{"T":"%3D","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":96.0969546875,"y":15.333281249999999,"w":3.28,"clr":-1,"A":"left","R":[{"T":"Add%20the%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":96.66003884375,"y":16.00828125,"w":2.552,"clr":-1,"A":"left","R":[{"T":"Dollar%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":95.7094810625,"y":16.683281250000004,"w":4.009,"clr":-1,"A":"left","R":[{"T":"Amounts%20%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":95.53236078125,"y":17.358281250000005,"w":4.01,"clr":-1,"A":"left","R":[{"T":"and%20Enter%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":96.03728553125,"y":18.033281250000005,"w":3.417,"clr":-1,"A":"left","R":[{"T":"Total%20on%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":96.30617571875,"y":18.70828125000001,"w":2.826,"clr":-1,"A":"left","R":[{"T":"Line%2011","S":33,"TS":[1,12,1,0]}]},{"oc":"#c6e9dc","x":92.772875,"y":16.832700000000003,"w":0.274,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[1,51,0,0]}]},{"oc":"#2b2e34","x":7.097862500000001,"y":3.04865,"w":24.99699999999999,"clr":-1,"A":"left","R":[{"T":"File%20by%20May%201%2C%202014%20-%20PLEASE%20USE%20BLACK%20INK","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":14.142326093750002,"y":23.48773125,"w":0.273,"clr":-1,"A":"left","R":[{"T":"(","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":14.564536343750003,"y":23.48773125,"w":7.747,"clr":-1,"A":"left","R":[{"T":"From%20federal%20return%20-%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":25.746973062500004,"y":23.48773125,"w":13.439,"clr":-1,"A":"left","R":[{"T":"NOT%20FEDERAL%20TAXABLE%20INCOME","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":46.84789493750001,"y":23.48773125,"w":0.273,"clr":-1,"A":"left","R":[{"T":")","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":6.080369375,"y":20.15025,"w":4.920000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Birth","S":-1,"TS":[1,16,1,0]}]},{"oc":"#2b2e34","x":21.578107812500004,"y":20.25909375,"w":6.242,"clr":-1,"A":"left","R":[{"T":"Your%20Birth%20Date%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":61.79710531250001,"y":20.25909375,"w":7.792,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Birth%20Date","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":21.578045937500004,"y":20.934093750000002,"w":5.604,"clr":-1,"A":"left","R":[{"T":"(mm-dd-yyyy)%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":62.96623343750001,"y":20.934093750000002,"w":5.376,"clr":-1,"A":"left","R":[{"T":"(mm-dd-yyyy)","S":33,"TS":[1,12,1,0]}]},{"oc":"#90d4bc","x":39.386300000000006,"y":20.59935,"w":3.1680000000000006,"clr":-1,"A":"left","R":[{"T":"-%20%20%20%20%20%20%20%20%20-","S":-1,"TS":[0,15,0,0]}]},{"oc":"#90d4bc","x":82.04993750000001,"y":20.59935,"w":3.1680000000000006,"clr":-1,"A":"left","R":[{"T":"-%20%20%20%20%20%20%20%20%20-","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":64.34997500000001,"y":3.8188499999999976,"w":10.573,"clr":-1,"A":"left","R":[{"T":"Check%20all%20boxes%20that%20apply%3A","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":64.34997500000001,"y":4.850103750000007,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":68.47623312500001,"y":4.850103750000007,"w":1.445,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.7111890625,"y":4.850103750000007,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"filing%20status","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.4493384375,"y":4.850103750000007,"w":13.062000000000003,"clr":-1,"A":"left","R":[{"T":"%20has%20changed%20since%20last%20filing%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.34997500000001,"y":6.162601875000007,"w":16.117000000000004,"clr":-1,"A":"left","R":[{"T":"Virginia%20return%20was%20not%20filed%20last%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.34997500000001,"y":7.4751056250000065,"w":13.841000000000003,"clr":-1,"A":"left","R":[{"T":"Dependent%20on%20another%E2%80%99s%20return%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.34997500000001,"y":8.787609375000011,"w":19.84,"clr":-1,"A":"left","R":[{"T":"Amended%20Return%20-%20Fill%20in%20oval%20if%20result%20of%20NOL","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.34997500000001,"y":10.025109375000014,"w":23.287000000000006,"clr":-1,"A":"left","R":[{"T":"I%20(We)%20authorize%20the%20Dept.%20of%20Taxation%20to%20discuss%20my%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.34997500000001,"y":10.700109375000016,"w":15.114000000000003,"clr":-1,"A":"left","R":[{"T":"(our)%20return%20with%20my%20(our)%20preparer","S":3,"TS":[0,12,0,0]}]},{"x":93.29279687500001,"y":8.786437499999996,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"x":85.68743125000002,"y":10.685831249999998,"w":49.79800000000001,"clr":0,"A":"left","R":[{"T":"(Not%20Supported)","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":9.46185359375,"y":17.646843750000002,"w":22.285999999999998,"clr":-1,"A":"left","R":[{"T":"(3)%20Married%20filing%20separate%20return%20(Enter%20spouse%E2%80%99s%20SSN%20above)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":9.557823265625,"y":18.534474375000002,"w":7.201000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":23.007234687500002,"y":18.5627985,"w":1.367,"clr":-1,"A":"left","R":[{"T":"M.I.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":26.932321718749996,"y":18.521131875,"w":3.829,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":40.14532578125,"y":18.5347190625,"w":2.051,"clr":-1,"A":"left","R":[{"T":"Suffix","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":9.46197734375,"y":15.767657812499994,"w":19.280999999999995,"clr":-1,"A":"left","R":[{"T":"(1)%20Single.%20Did%20you%20claim%20federal%20head%20of%20household%3F%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":24.678524843749997,"y":36.613401562499995,"w":5.149000000000001,"clr":-1,"A":"left","R":[{"T":"Filing%20Status%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":32.98713078125,"y":36.613401562499995,"w":0.684,"clr":-1,"A":"left","R":[{"T":"1%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.04330734375,"y":42.1027603125,"w":26.025,"clr":-1,"A":"left","R":[{"T":"Deductions%20from%20Virginia%20Adjusted%20Gross%20Income%20Schedule%20ADJ%2C%20Line%209%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":34.02199015625,"y":9.956504062499997,"w":1.915,"clr":-1,"A":"left","R":[{"T":"State","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.436258906249996,"y":6.094041562499996,"w":13.990999999999998,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20first%20name%20(joint%20returns%20only)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":28.7622965,"y":6.094041562499996,"w":1.367,"clr":-1,"A":"left","R":[{"T":"M.I.","S":27,"TS":[1,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":0,"AM":1024,"x":61.636953125000005,"y":0.5350208333333342,"w":37.2109375,"h":1.2916666666666667,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1,"AM":0,"x":5.912706250000001,"y":5.143208333333329,"w":22.35729375,"h":1.0752916666666674,"TU":"Your first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PRTMI","EN":0},"TI":2,"AM":0,"x":28.661875000000002,"y":5.170458333333329,"w":3.0731249999999997,"h":1.0480416666666674,"TU":"Your Middle Initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRTLNAME","EN":0},"TI":3,"AM":0,"x":32.126875000000005,"y":5.170458333333329,"w":20.609187499999997,"h":1.0480416666666674,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PRTS","EN":0},"TI":4,"AM":0,"x":52.95400000000001,"y":5.155458333333333,"w":5.843234375,"h":1.0752916666666674,"TU":"Suffix."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STFNAME","EN":0},"TI":6,"AM":0,"x":5.912706250000001,"y":7.0482083333333305,"w":22.35729375,"h":0.9777916666666707,"TU":"Spouse’s first name (joint returns only)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"STMI","EN":0},"TI":7,"AM":0,"x":28.661875000000002,"y":7.021020833333334,"w":3.0731249999999997,"h":1.0049791666666674,"TU":"Spouse's middle initial.","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STLNAME","EN":0},"TI":8,"AM":0,"x":32.126875000000005,"y":7.021020833333334,"w":20.609359375000007,"h":1.0049791666666674,"TU":"Spouse's last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STS","EN":0},"TI":9,"AM":0,"x":52.89453125000001,"y":6.979458333333331,"w":5.843234375,"h":1.0752916666666674,"TU":"Spouse's Suffix."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":13,"AM":0,"x":6.082845312500001,"y":8.8269375,"w":52.81270156250001,"h":0.8333333333333334,"TU":"Number and Street."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":14,"AM":0,"x":6.006893750000001,"y":9.523187499999997,"w":52.737918750000006,"h":0.8333333333333334,"TU":"Number and Street continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":16,"AM":0,"x":5.89208125,"y":10.755562500000005,"w":27.4327625,"h":0.8333333333333334,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":17,"AM":0,"x":34.0938125,"y":10.716500000000005,"w":4.516171875000004,"h":0.9256249999999966,"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":18,"AM":0,"x":39.814671875,"y":10.763375000000005,"w":18.82306250000001,"h":0.8333333333333334,"TU":"ZIP Code."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":20,"AM":0,"x":6.840831250000001,"y":13.415270833333333,"w":21.465778125000007,"h":0.9454791666666722,"TU":"Your Social Security Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPLN","EN":0},"TI":21,"AM":1024,"x":32.15265625000001,"y":13.42783333333333,"w":9.31596875,"h":0.9455416666666707,"TU":"First 4 Letters Your Last Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":22,"AM":0,"x":47.393671875,"y":13.42558333333333,"w":21.540921875,"h":0.945541666666666,"TU":"Spouse's Social Security Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLN","EN":0},"TI":23,"AM":1024,"x":74.677625,"y":13.448333333333332,"w":9.31596875,"h":0.9454791666666722,"TU":"4 letters Spouse's last name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RESJ1","EN":0},"TI":24,"AM":0,"x":90.19621875000001,"y":13.405145833333336,"w":6.672359374999998,"h":0.9454791666666628,"TU":"Locality Code.","MV":"999"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:VALoclCd"}},"id":{"Id":"Look_Up","EN":0},"TI":25,"AM":0,"x":97.68670312500002,"y":13.068750000000003,"w":3.7652656249999743,"h":1.25},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEPS","EN":0},"TI":29,"AM":0,"x":63.281796875000005,"y":16.104333333333333,"w":4.398796875,"h":0.9665416666666667,"TU":"Number of Dependents."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTEXS","EN":0},"TI":30,"AM":1024,"x":71.49243750000001,"y":16.081458333333334,"w":4.3986250000000044,"h":0.939291666666667,"TU":"Total Dependents"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXA","EN":0},"TI":31,"AM":1024,"x":84.638125,"y":16.081458333333334,"w":8.291250000000002,"h":1.028041666666662,"TU":"Total Dependent Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXEMPTS","EN":0},"TI":34,"AM":1024,"x":74.19242187500001,"y":18.735520833333336,"w":1.9237968749999974,"h":0.8848541666666657,"TU":"Total B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXB","EN":0},"TI":35,"AM":1024,"x":84.638125,"y":18.19683333333333,"w":8.291250000000002,"h":1.02810416666667,"TU":"undefined"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPFNM","EN":0},"TI":36,"AM":0,"x":9.3198015625,"y":19.456875,"w":12.7944953125,"h":0.8333333333333334,"TU":"Spouse’s First Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPMI","EN":0},"TI":37,"AM":0,"x":22.51734375,"y":19.43575,"w":3.1367187500000004,"h":0.8333333333333334,"TU":"Spouse’s Middle Initial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPLNM","EN":0},"TI":38,"AM":0,"x":26.373015625000004,"y":19.463000000000005,"w":13.168890625,"h":0.8333333333333334,"TU":"Spouse’s Last Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MFSSPS","EN":0},"TI":39,"AM":0,"x":40.053578125,"y":19.49025,"w":4.184812500000006,"h":0.8333333333333334,"TU":"Spouse's Suffix."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPBDAY","EN":0},"TI":44,"AM":0,"x":33.2743125,"y":20.787958333333336,"w":22.461140625,"h":0.9106041666666632,"TU":"Your Birth Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPBDAY","EN":0},"TI":45,"AM":0,"x":75.905671875,"y":20.808645833333333,"w":22.735281249999993,"h":0.8834166666666666,"TU":"Spouse Birth Date.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":46,"AM":0,"x":68.19828125000001,"y":22.543458333333334,"w":21.76865624999999,"h":0.9916666666666695,"TU":"Line 1. Federal Adjusted Gross Income."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_Line_3","EN":0},"TI":47,"AM":0,"x":37.805453125,"y":24.3995625,"w":2.7811093750000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":48,"AM":1024,"x":68.19828125000001,"y":24.194645833333336,"w":21.76865624999999,"h":0.9916041666666663,"TU":"Line 2. Total Additions from attached Schedule ADJ, Line 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":49,"AM":1024,"x":68.19828125000001,"y":25.724145833333335,"w":21.76865624999999,"h":0.9916666666666648,"TU":"Add Lines 1 and 2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4TP","EN":0},"TI":50,"AM":0,"x":11.226410937500003,"y":27.8736875,"w":11.868604687500003,"h":0.8976874999999988,"TU":"Line 4. You. Deduction for age on January 1, 2014, See instuctions. Be sure to provide date of birth above."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4SP","EN":0},"TI":51,"AM":0,"x":40.213765625,"y":27.8385,"w":11.868828124999999,"h":0.8978125000000006,"TU":"Line 4. Spouse. Deduction for age on January 1, 2014, See instuctions. Be sure to provide date of birth above."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":52,"AM":1024,"x":78.2106875,"y":27.569645833333336,"w":11.75624999999999,"h":0.9916041666666663,"TU":"Age Deduction"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":53,"AM":0,"x":68.19828125000001,"y":29.270770833333334,"w":21.76865624999999,"h":0.9916666666666648,"TU":"Line 5. Social Secuirty Act and equivalent Tier 1 Railroad Retirement Act benefits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":54,"AM":0,"x":68.19828125000001,"y":30.874145833333333,"w":21.76865624999999,"h":0.9917291666666633,"TU":"Line 6. State Income Tax refund or overpayment credit (reported as income on federal return)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_Line_7","EN":0},"TI":55,"AM":0,"x":36.91445312500001,"y":32.683125,"w":2.8560468749999934,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":56,"AM":1024,"x":68.19828125000001,"y":32.58320833333333,"w":21.76865624999999,"h":0.9916666666666695,"TU":"Subtractions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":57,"AM":1024,"x":68.19828125000001,"y":34.210520833333334,"w":21.76865624999999,"h":0.9916666666666648,"TU":"Add Lines 4 - 7"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":58,"AM":1024,"x":68.19828125000001,"y":35.851395833333335,"w":21.76865624999999,"h":0.9916666666666695,"TU":"Virginial Adjusted Gross Income"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10FED","EN":0},"TI":59,"AM":0,"x":5.4891203125,"y":38.586645833333336,"w":16.7059578125,"h":0.9916666666666648,"TU":"Line 10a. Total Itemized Deductions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10ST","EN":0},"TI":60,"AM":0,"x":35.094984375,"y":38.52427083333333,"w":16.855953125,"h":1.0733541666666706,"TU":"Line 10b. State and Local Income Taxes claimed on Schedule A."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":61,"AM":0,"x":68.19828125000001,"y":38.71508333333333,"w":21.76865624999999,"h":0.9916666666666648,"TU":"Line 10. Deductions. Enter standard or Itemized."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":62,"AM":1024,"x":78.2106875,"y":40.355958333333334,"w":11.75624999999999,"h":0.9916666666666695,"TU":"Exemptions"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_Line_9","EN":0},"TI":63,"AM":0,"x":48.684968749999996,"y":42.1688125,"w":2.781109375000007,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":64,"AM":1024,"x":68.19828125000001,"y":41.96958333333333,"w":21.76865624999999,"h":0.9916666666666648,"TU":"Deductions from ADJ"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":65,"AM":1024,"x":68.19828125000001,"y":43.63102083333333,"w":21.76865624999999,"h":0.9916666666666742,"TU":"Add Lines 10 - 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":66,"AM":1024,"x":68.19828125000001,"y":45.25375208333333,"w":21.76865624999999,"h":0.9916666666666648,"TU":"Virginia Taxable Income"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STATCHGX","EN":0},"TI":5,"AM":0,"x":60.512890625,"y":5.094749999999995,"w":2.756015625000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LASTY","EN":0},"TI":10,"AM":0,"x":60.512890625,"y":6.421999999999997,"w":2.75618750000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ADDRCH","EN":0},"TI":11,"AM":0,"x":40.45714062500001,"y":7.994750000000001,"w":2.756187499999997,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DARTRN","EN":0},"TI":12,"AM":0,"x":60.512890625,"y":7.667437499999996,"w":2.75618750000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AMX1","EN":0},"TI":15,"AM":1024,"x":60.437953125,"y":9.115375,"w":2.75618750000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"AUTHBX","EN":0},"TI":19,"AM":1024,"x":60.512890625,"y":10.349937500000001,"w":2.75618750000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Single","EN":0},"TI":26,"AM":0,"x":6.62839375,"y":15.912562499999998,"w":1.9992843750000004,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Joint","EN":0},"TI":32,"AM":0,"x":6.5535250000000005,"y":16.892625,"w":1.924415625,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"Separate","EN":0},"TI":33,"AM":0,"x":6.425925,"y":17.818249999999995,"w":2.074153125000001,"h":0.8333333333333334,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HOHX","EN":0},"TI":27,"AM":0,"x":42.01364062500001,"y":15.937937499999995,"w":2.7563593749999997,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPEXEMPT","EN":0},"TI":28,"AM":0,"x":56.376203125,"y":16.2986875,"w":2.756187499999997,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TP65BX","EN":0},"TI":40,"AM":0,"x":50.732515625,"y":19.2174375,"w":2.756187500000004,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SP65BX","EN":0},"TI":41,"AM":0,"x":56.413671875000006,"y":19.2038125,"w":2.7563593749999997,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPBLX","EN":0},"TI":42,"AM":0,"x":62.40746875000001,"y":19.2151875,"w":2.756187499999997,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPBLX","EN":0},"TI":43,"AM":0,"x":68.1511875,"y":19.2174375,"w":2.756187499999997,"h":0.8333333333333334}]}]},{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":42.08512343750001,"y":6.031500000000004,"w":0.9885,"l":3.313578125},{"oc":"#2b2e34","x":45.75138906250001,"y":6.031500000000004,"w":0.9885,"l":3.7365624999999953},{"oc":"#c6e9dc","x":68.06765625,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":5.374875000000003,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":5.374875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":5.374875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":5.374875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":5.374875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":5.374875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":5.374875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":5.374875000000003,"w":6,"l":2.5523437499999977},{"oc":"#c6e9dc","x":87.86765625000001,"y":4.1280000000000046,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":5.371750000000001,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.79734375000001,"y":4.124875000000003,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":5.371750000000001,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":4.124875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":5.371750000000001,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":8.69350625,"y":6.923625000000001,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":8.69350625,"y":8.170499999999995,"w":6,"l":2.440625},{"oc":"#c6e9dc","x":11.168506250000002,"y":6.923625000000001,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":11.134131250000001,"y":8.170499999999995,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":13.64350625,"y":6.923625000000001,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":13.60913125,"y":8.170499999999995,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":16.118506250000003,"y":6.923625000000001,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":16.084131250000002,"y":8.170499999999995,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.593437500000004,"y":6.923625000000001,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.5590625,"y":8.170499999999995,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":21.0684375,"y":6.923625000000001,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":21.0340625,"y":8.170499999999995,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":23.5434375,"y":6.923625000000001,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":23.509062500000002,"y":8.170499999999995,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":26.0184375,"y":6.923625000000001,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":25.97546875,"y":8.173625000000001,"w":6,"l":3.188281249999999},{"oc":"#c6e9dc","x":37.43953125,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":37.430937500000006,"y":8.170499999999995,"w":6,"l":2.44921875},{"oc":"#c6e9dc","x":39.914531249999996,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":39.880156250000006,"y":8.170499999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":42.389531250000005,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":42.35515625,"y":8.170499999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.86453125,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.83015625,"y":8.170499999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":47.33953125,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":47.30515625,"y":8.170499999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.81453125,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.780156250000005,"y":8.170499999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":52.28953125000001,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":52.25515625,"y":8.170499999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":54.764531250000005,"y":6.923625000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":54.704375,"y":8.183000000000002,"w":6,"l":3.188281249999999},{"oc":"#c6e9dc","x":82.8059375,"y":5.895499999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.79734375000001,"y":7.142375000000001,"w":6,"l":2.44921875},{"oc":"#c6e9dc","x":85.28093750000001,"y":5.895499999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.24656250000001,"y":7.142375000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.7559375,"y":5.895499999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.7215625,"y":7.142375000000001,"w":6,"l":2.569531249999995},{"oc":"#c6e9dc","x":93.79734375000001,"y":5.889249999999994,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":7.1361250000000025,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":5.889249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":7.1361250000000025,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":8.905124999999998,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":68.05046875000001,"y":7.65825,"w":6,"l":4.967187500000003},{"oc":"#c6e9dc","x":70.50828125000001,"y":8.905124999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":8.905124999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":8.905124999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":8.905124999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":8.905124999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":8.905124999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":8.905124999999998,"w":6,"l":2.53515625},{"oc":"#c6e9dc","x":87.86765625000001,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":8.90825,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.79734375000001,"y":7.65825,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":8.905124999999998,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":7.65825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":8.905124999999998,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":10.448625000000002,"w":6,"l":2.827343749999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.74890625,"y":10.448625000000002,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.22390625,"y":10.448625000000002,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.69890625000001,"y":10.448625000000002,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":78.17390625,"y":10.448625000000002,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.52859375,"y":10.448625000000002,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":83.12390625,"y":10.448625000000002,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.59890625,"y":10.448625000000002,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":9.2016875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":10.454875000000001,"w":6,"l":3.1625000000000028},{"oc":"#c6e9dc","x":93.79734375000001,"y":9.207999999999998,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":10.454875000000001,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":9.207999999999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":10.454875000000001,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":12.0330625,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":12.0330625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":12.0330625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":12.0330625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":12.0330625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":12.0330625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":12.0330625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":12.0330625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.81609375000001,"y":12.039312500000003,"w":6,"l":3.1968749999999977},{"oc":"#c6e9dc","x":93.79734375000001,"y":10.786187499999997,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":12.0330625,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":10.786187499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":12.0330625,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":13.5985625,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":13.5985625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":13.5985625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":13.5985625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":13.5985625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":13.5985625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":13.5985625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":13.5985625,"w":6,"l":2.5523437499999977},{"oc":"#c6e9dc","x":87.86765625000001,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":13.604875000000002,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.79734375000001,"y":12.351750000000001,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":13.5985625,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":12.351750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":13.5985625,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":15.295562500000003,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":15.295562500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":15.295562500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":15.295562500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":15.295562500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":15.295562500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":15.295562500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":15.295562500000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.83328125,"y":15.292437499999997,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.79734375000001,"y":14.0486875,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":15.295562500000003,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":14.0486875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":15.295562500000003,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":77.96765625,"y":15.732999999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":16.979875000000003,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":80.44265625,"y":15.732999999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":16.979875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":15.732999999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":16.979875000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":15.732999999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":16.979875000000003,"w":6,"l":2.5523437499999977},{"oc":"#c6e9dc","x":87.86765625000001,"y":15.732999999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":16.979875000000003,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.79734375000001,"y":15.732999999999995,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":16.979875000000003,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":15.732999999999995,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":16.979875000000003,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":18.5769375,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":18.5769375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":18.5769375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":18.5769375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":18.5769375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":18.5769375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":18.5769375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":18.5769375,"w":6,"l":2.6640625},{"oc":"#c6e9dc","x":87.86765625000001,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":18.583187499999998,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":93.79734375000001,"y":17.330062499999997,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":18.5769375,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":17.330062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":18.5769375,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":20.170875,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":20.170875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":20.170875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":20.170875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":20.170875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":20.170875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":20.170875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":20.170875,"w":6,"l":2.5953124999999977},{"oc":"#c6e9dc","x":87.86765625000001,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":20.16775,"w":6,"l":3.171093749999995},{"oc":"#c6e9dc","x":93.79734375000001,"y":18.923999999999996,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":20.170875,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":18.923999999999996,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":20.170875,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":21.761125000000003,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":21.761125000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":21.761125000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":21.761125000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":21.761125000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":21.761125000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":21.761125000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":21.761125000000003,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.81609375000001,"y":21.76425,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":93.79734375000001,"y":20.51425,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":21.761125000000003,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":20.51425,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":21.761125000000003,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.08003125,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.08003125,"y":23.3455625,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.55503125000001,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.52065625,"y":23.3455625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.03003125,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.99565625000001,"y":23.3455625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.50503125,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.47065625,"y":23.3455625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.98003125000001,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.94565625000001,"y":23.3455625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.45503125,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.42065625000001,"y":23.3455625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.93003125000001,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.89565625,"y":23.3455625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.40503125000001,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.37065625000001,"y":23.3455625,"w":6,"l":2.5523437499999977},{"oc":"#c6e9dc","x":87.88003125,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.85425000000001,"y":23.351812500000005,"w":6,"l":3.1796875000000004},{"oc":"#c6e9dc","x":93.80971875,"y":22.0986875,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.80971875,"y":23.3455625,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.80346875000001,"y":22.0986875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.76909375000001,"y":23.3455625,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":25.0456875,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":25.0456875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":25.0456875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":25.0456875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":25.0456875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":25.0456875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":25.0456875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":25.0456875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":23.7988125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.79890625,"y":25.0456875,"w":6,"l":3.2226562500000004},{"oc":"#c6e9dc","x":93.79734375000001,"y":23.801937499999998,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":25.0488125,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":23.801937499999998,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":25.0488125,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":26.758375,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":26.758375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":26.758375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":26.758375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":26.758375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":26.758375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":26.758375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":26.758375,"w":6,"l":2.5609375000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":26.75525,"w":6,"l":3.1796875000000004},{"oc":"#c6e9dc","x":93.79734375000001,"y":25.5115,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":26.758375,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":25.5115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":26.758375,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":28.351874999999996,"w":6,"l":2.4664062499999977},{"oc":"#c6e9dc","x":70.54265625000001,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":28.358125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":28.358125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":28.358125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":28.358125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":28.358125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":28.358125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":28.358125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.81609375000001,"y":28.358125,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":93.79734375000001,"y":27.11125,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":28.358125,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":27.11125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":28.358125,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06765625,"y":30.00825,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.50828125000001,"y":30.00825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":30.00825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":30.00825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":30.00825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":30.00825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":30.00825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":30.00825,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.83328125,"y":30.011375,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":68.06765625,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.54265625000001,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86765625000001,"y":28.761375,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":93.79734375000001,"y":28.7645,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":30.011375,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":28.7645,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":30.011375,"w":6,"l":3.1796875000000004},{"oc":"#c6e9dc","x":68.06765625,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06765625,"y":31.845625,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54265625000001,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.50828125000001,"y":31.845625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.01765625,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.98328125,"y":31.845625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.49265625000001,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45828125,"y":31.845625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.96765625,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93328125000001,"y":31.845625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44265625,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.40828125,"y":31.845625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91765625000001,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88328125000001,"y":31.845625,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.39265625,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.35828125,"y":31.845625,"w":6,"l":2.5523437499999977},{"oc":"#c6e9dc","x":87.86765625000001,"y":30.59875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.841875,"y":31.855,"w":6,"l":3.1796875000000004},{"oc":"#c6e9dc","x":93.79734375000001,"y":30.605,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.79734375000001,"y":31.851874999999996,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79109375000002,"y":30.605,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.75671875,"y":31.851874999999996,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":68.06731250000001,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.06731250000001,"y":33.6566875,"w":6,"l":2.440624999999995},{"oc":"#c6e9dc","x":70.54231250000001,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.5079375,"y":33.6566875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.0173125,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.9829375,"y":33.6566875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.4923125,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.45793750000001,"y":33.6566875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.9673125,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.93293750000001,"y":33.6566875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.44231250000001,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.4079375,"y":33.6566875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.91731250000001,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.88293750000001,"y":33.6566875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.3923125,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.3579375,"y":33.6566875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.86731250000001,"y":32.4098125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.72121875,"y":33.6566875,"w":6,"l":3.299999999999995},{"oc":"#c6e9dc","x":93.797,"y":32.412937500000005,"w":6,"l":1.9937499999999975},{"oc":"#c6e9dc","x":93.797,"y":33.659812499999994,"w":6,"l":1.9593750000000028},{"oc":"#c6e9dc","x":95.79075,"y":32.412937500000005,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.756375,"y":33.659812499999994,"w":6,"l":3.2054687500000028},{"oc":"#c6e9dc","x":73.860015625,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.825640625,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":76.33501562500001,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":76.300640625,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":78.810015625,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":78.77564062500001,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":81.285015625,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":81.250640625,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":83.76001562500001,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":83.72564062500001,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":86.235015625,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":86.200640625,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":88.71001562500001,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":88.67564062500001,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":91.18501562499999,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":91.15064062500001,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":93.66001562500001,"y":2.371750000000001,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":93.625640625,"y":3.6186249999999993,"w":6,"l":2.4750000000000028},{"oc":"#2b2e34","x":96.599078125,"y":45.0251,"w":3,"l":2.4320312500000028},{"oc":"#2b2e34","x":98.83139062500001,"y":1.8943124999999934,"w":3,"l":2.4320312500000028},{"oc":"#2b2e34","x":5.0241125,"y":11.630562500000005,"w":3,"l":2.4320312499999996},{"oc":"#2b2e34","x":5.006925,"y":45.0251,"w":3,"l":2.4320312499999996},{"oc":"#c6e9dc","x":18.387359375,"y":44.928,"w":1.5,"l":0.7046874999999975},{"oc":"#c6e9dc","x":18.387359375,"y":44.603,"w":1.5,"l":0.7046874999999975},{"oc":"#c6e9dc","x":10.996768750000001,"y":44.13115,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":10.96239375,"y":45.378025,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":13.471768750000003,"y":44.13115,"w":6,"l":2.475000000000001},{"oc":"#c6e9dc","x":13.437393750000002,"y":45.378025,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":15.94676875,"y":44.13115,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":15.912393750000001,"y":45.378025,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.421734375000003,"y":44.13115,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":18.387359375,"y":45.378025,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":20.896734375,"y":44.13115,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":20.862359375000004,"y":45.378025,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":23.371734375,"y":44.13115,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":23.337359375000002,"y":45.378025,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":25.846734375000004,"y":44.13115,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":25.812359375000003,"y":45.378025,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":28.321734375000002,"y":44.13115,"w":6,"l":2.4749999999999996},{"oc":"#c6e9dc","x":28.287359374999998,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":30.796734375000003,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":30.762359375000003,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":33.271734375,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":33.237359375000004,"y":45.378025,"w":6,"l":3.1968749999999977},{"oc":"#c6e9dc","x":25.820953125000003,"y":44.97175000000001,"w":1.5,"l":0.696093750000002},{"oc":"#c6e9dc","x":25.820953125000003,"y":44.578,"w":1.5,"l":0.696093750000002},{"oc":"#c6e9dc","x":47.339703125,"y":44.928,"w":1.5,"l":0.7046892187500061},{"oc":"#c6e9dc","x":47.339703125,"y":44.603,"w":1.5,"l":0.7046892187500061},{"oc":"#c6e9dc","x":39.949078125,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":39.931890625,"y":45.378025,"w":6,"l":2.457812499999999},{"oc":"#c6e9dc","x":42.424078125,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":42.389703125000004,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.899078125,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.864703125000005,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":47.374078125,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":47.339703125,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.849078125000005,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.81470312500001,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":52.324078125,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":52.289703125,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":54.79907812500001,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":54.764703125,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":57.274078125,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":57.239703125000005,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":59.749078125000004,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":59.714703125,"y":45.378025,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":62.224078125000005,"y":44.13115,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":62.189703125,"y":45.378025,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":54.773296875,"y":44.97175000000001,"w":1.5,"l":0.6960920312499965},{"oc":"#c6e9dc","x":54.773296875,"y":44.578,"w":1.5,"l":0.6960920312499965},{"oc":"#c6e9dc","x":75.011578125,"y":44.931062499999996,"w":1.5,"l":0.7046892187500061},{"oc":"#c6e9dc","x":75.011578125,"y":44.6060625,"w":1.5,"l":0.7046892187500061},{"oc":"#c6e9dc","x":67.620953125,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":67.60376562500001,"y":45.381075,"w":6,"l":2.4578125000000055},{"oc":"#c6e9dc","x":70.09595312500001,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.06157812500001,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.570953125,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":72.536578125,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.04595312500001,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.011578125,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.520953125,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":77.48657812500001,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":79.995953125,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":79.961578125,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.47095312500001,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":82.43657812500001,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":84.945953125,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":84.911578125,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.42095312500001,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.386578125,"y":45.381075,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":89.89595312499999,"y":44.1342,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":89.86157812500001,"y":45.381075,"w":6,"l":3.1796875000000004},{"oc":"#c6e9dc","x":82.445171875,"y":44.974812500000006,"w":1.5,"l":0.6960920312499965},{"oc":"#c6e9dc","x":82.445171875,"y":44.5810625,"w":1.5,"l":0.6960920312499965},{"oc":"#c6e9dc","x":6.416265625000001,"y":48.00925,"w":3,"l":69.19687500000002},{"oc":"#c6e9dc","x":6.416265625000001,"y":46.731125,"w":3,"l":69.19687500000002},{"oc":"#c6e9dc","x":6.910234375,"y":43.488812499999995,"w":3,"l":44.825},{"oc":"#c6e9dc","x":6.910234375,"y":42.1138125,"w":3,"l":44.825},{"oc":"#c6e9dc","x":53.468765625,"y":43.488812499999995,"w":3,"l":44.82500000000002},{"oc":"#c6e9dc","x":53.468765625,"y":42.1138125,"w":3,"l":44.82500000000002},{"oc":"#c6e9dc","x":87.3118125,"y":39.6943125,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":87.17431250000001,"y":38.456812500000005,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":89.64931250000001,"y":38.456812500000005,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":89.6149375,"y":39.7036875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":92.1243125,"y":38.456812500000005,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":92.08993750000002,"y":39.7036875,"w":6,"l":2.5523437499999977},{"oc":"#c6e9dc","x":94.5993125,"y":38.456812500000005,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":94.57353125,"y":39.7036875,"w":6,"l":3.1882812500000055},{"oc":"#c6e9dc","x":29.516953125000004,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":29.499765625000002,"y":37.381875,"w":6,"l":2.4835937500000016},{"oc":"#c6e9dc","x":31.991953125000002,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":31.957578125000005,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":34.466953125,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":34.432578125,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":36.941953125000005,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":36.90757812500001,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":39.416953125,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":39.382578125,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":41.89195312500001,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":41.857578125,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.366953125,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":44.332578125000005,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":46.841953125,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":46.807578125,"y":37.381875,"w":6,"l":2.7414062500000016},{"oc":"#c6e9dc","x":49.316953125000005,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":49.402890625000005,"y":37.381875,"w":6,"l":3.059374999999999},{"oc":"#c6e9dc","x":55.968171874999996,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":55.950984375000004,"y":37.381875,"w":6,"l":2.457812499999999},{"oc":"#c6e9dc","x":58.443171875000004,"y":36.135,"w":6,"l":2.474999999999996},{"oc":"#c6e9dc","x":58.40879687500001,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":60.918171875000006,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":60.88379687500001,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":63.39317187500001,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":63.358796874999996,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":65.86817187500002,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":65.83379687500002,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.343171875,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":68.308796875,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.81817187500002,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":70.78379687500001,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.293171875,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":73.25879687500002,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.76817187500001,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":75.733796875,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":78.24317187500002,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":78.20879687500002,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.718171875,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":80.683796875,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":83.19317187500002,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":83.15879687500001,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.668171875,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":85.63379687500002,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":88.143171875,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":88.10879687500001,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":90.618171875,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":90.58379687500002,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":93.09317187500001,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":93.058796875,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.56817187500002,"y":36.135,"w":6,"l":2.4750000000000028},{"oc":"#c6e9dc","x":95.533796875,"y":37.381875,"w":6,"l":2.4750000000000028},{"oc":"#b8e3d4","x":6.024214968750001,"y":35.0625,"w":3,"l":93.31094128125},{"oc":"#b8e3d4","x":6.138799218750001,"y":37.8333125,"w":3,"l":93.31099765624998}],"VLines":[{"oc":"#c6e9dc","x":68.40281250000001,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":70.8778125,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":73.3528125,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":75.82781250000001,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":78.3028125,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":80.77781250000001,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":83.2528125,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":85.7278125,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":88.20281250000001,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":90.67781250000002,"y":4.006125000000001,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":94.14109375000001,"y":4.002999999999999,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":98.60125000000001,"y":4.002999999999999,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":9.028662500000001,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":11.5036625,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":13.9786625,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":16.4536625,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":18.92859375,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":21.403593750000002,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":23.878593750000004,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":26.35359375,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":28.82859375,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":37.774687500000006,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":40.2496875,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":42.7246875,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":45.1996875,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":47.674687500000005,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":50.1496875,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":52.6246875,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":55.0996875,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":57.57468750000001,"y":6.801750000000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":83.14109375000001,"y":5.773624999999995,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":85.61609375,"y":5.773624999999995,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":88.09109375,"y":5.773624999999995,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":90.5575,"y":5.773625000000002,"w":6,"l":1.4937499999999997},{"oc":"#c6e9dc","x":94.14109375000001,"y":5.767375,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":98.60125000000001,"y":5.767375,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":68.40281250000001,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":70.8778125,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":73.3528125,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":75.82781250000001,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":78.3028125,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":80.77781250000001,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":83.2528125,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":85.7278125,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":88.20281250000001,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":90.67781250000002,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":94.14109375000001,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":98.60125000000001,"y":7.536312500000002,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":68.40281250000001,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":70.8778125,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":73.3528125,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":75.82781250000001,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":78.3028125,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":80.77781250000001,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":83.2528125,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":85.7278125,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":88.20281250000001,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":90.67781250000002,"y":9.079875,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":94.14109375000001,"y":9.0860625,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":98.60125000000001,"y":9.0860625,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":68.40281250000001,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":70.8778125,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":73.3528125,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":75.82781250000001,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":78.3028125,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":80.77781250000001,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":83.2528125,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":85.7278125,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":88.20281250000001,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":90.67781250000002,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":94.14109375000001,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":98.60125000000001,"y":10.664312500000003,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":68.40281250000001,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.14109375000001,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":12.229812500000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.14109375000001,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":13.926812499999997,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.14109375000001,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":15.611125000000001,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":17.205062499999997,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.14109375000001,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":17.208187499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":18.799000000000003,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.14109375000001,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":18.802125000000004,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":20.38925,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.14109375000001,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":20.392375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.4151875,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.89018750000001,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3651875,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.84018750000001,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3151875,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.7901875,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.26518750000001,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7401875,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.2151875,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.69018750000001,"y":21.973687499999997,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.15346875,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.613625,"y":21.976812499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":23.676937499999998,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.14109375000001,"y":23.680062500000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":23.680062500000002,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":25.386499999999998,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.14109375000001,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":25.389625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":26.98625,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.14109375000001,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":26.989375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":28.6395,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":28.633250000000004,"w":6,"l":1.3562499999999982},{"oc":"#c6e9dc","x":94.14109375000001,"y":28.642625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":28.642625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40281250000001,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.8778125,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.3528125,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82781250000001,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.3028125,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77781250000001,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.2528125,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.7278125,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20281250000001,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67781250000002,"y":30.476875000000003,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.14109375000001,"y":30.483125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60125000000001,"y":30.483125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.40246875,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":70.87746875,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.35246875000001,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":75.82746875000001,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.30246875,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":80.77746875000001,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.25246875,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":85.72746875000001,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.20246875000001,"y":32.287937500000005,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.67746875,"y":32.2848125,"w":6,"l":1.353125000000001},{"oc":"#c6e9dc","x":94.14075,"y":32.2910625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.60090625000001,"y":32.2910625,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":74.195171875,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":76.67017187500001,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":79.145171875,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":81.62017187500001,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":84.095171875,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":86.570171875,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":89.04517187500001,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":91.520171875,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":93.99517187500001,"y":2.249874999999997,"w":6,"l":1.3500000000000003},{"oc":"#c6e9dc","x":96.39282812500001,"y":2.243625000000001,"w":6,"l":1.503125},{"oc":"#2b2e34","x":98.88501562500001,"y":44.2001,"w":3,"l":0.8843749999999962},{"oc":"#2b2e34","x":101.09275000000002,"y":1.8326250000000035,"w":3,"l":0.884375},{"oc":"#2b2e34","x":5.1788,"y":11.571187499999999,"w":3,"l":0.8843750000000009},{"oc":"#2b2e34","x":5.1788,"y":44.2001,"w":3,"l":0.8843749999999962},{"oc":"#c6e9dc","x":19.092046874999998,"y":44.603,"w":1.5,"l":0.3249999999999981},{"oc":"#c6e9dc","x":18.387359375,"y":44.603,"w":1.5,"l":0.3249999999999981},{"oc":"#c6e9dc","x":11.331925000000002,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":13.806925,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":16.281925,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":18.756890625000004,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":21.231890625000002,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":23.706890625000003,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":26.181890624999998,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":28.656890625000003,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":31.131890625000004,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":33.606890625000005,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":36.081890625,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":26.517046875000002,"y":44.578,"w":1.5,"l":0.3937500000000019},{"oc":"#c6e9dc","x":25.820953125000003,"y":44.578,"w":1.5,"l":0.3937500000000019},{"oc":"#c6e9dc","x":48.044392343750005,"y":44.603,"w":1.5,"l":0.3249999999999981},{"oc":"#c6e9dc","x":47.339703125,"y":44.603,"w":1.5,"l":0.3249999999999981},{"oc":"#c6e9dc","x":40.284234375000004,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":42.759234375000005,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":45.234234375,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":47.70923437500001,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":50.184234375,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":52.659234375,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":55.134234375000005,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":57.609234375,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":60.084234375,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":62.559234375,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":65.03423437500001,"y":44.009274999999995,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":55.469388906249996,"y":44.578,"w":1.5,"l":0.3937500000000019},{"oc":"#c6e9dc","x":54.773296875,"y":44.578,"w":1.5,"l":0.3937500000000019},{"oc":"#c6e9dc","x":75.71626734375,"y":44.6060625,"w":1.5,"l":0.3249999999999981},{"oc":"#c6e9dc","x":75.011578125,"y":44.6060625,"w":1.5,"l":0.3249999999999981},{"oc":"#c6e9dc","x":67.95610937500001,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":70.431109375,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":72.906109375,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":75.38110937500001,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":77.856109375,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":80.33110937500001,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":82.806109375,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":85.281109375,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":87.75610937500001,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":90.231109375,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":92.70610937500001,"y":44.012325,"w":6,"l":1.3500000000000039},{"oc":"#c6e9dc","x":83.14126390625,"y":44.5810625,"w":1.5,"l":0.3937500000000019},{"oc":"#c6e9dc","x":82.445171875,"y":44.5810625,"w":1.5,"l":0.3937500000000019},{"oc":"#c6e9dc","x":75.61314062500001,"y":46.731125,"w":3,"l":1.2781249999999982},{"oc":"#c6e9dc","x":6.416265625000001,"y":46.731125,"w":3,"l":1.2781249999999982},{"oc":"#c6e9dc","x":27.737359375000004,"y":46.709275,"w":1.5,"l":1.3062499999999961},{"oc":"#c6e9dc","x":67.070953125,"y":46.75615,"w":1.5,"l":1.3062499999999961},{"oc":"#d8d8da","x":50.385328125,"y":46.702400000000004,"w":1.5,"l":1.3062499999999961},{"oc":"#c6e9dc","x":51.735234375000005,"y":42.1138125,"w":3,"l":1.3749999999999953},{"oc":"#c6e9dc","x":6.910234375,"y":42.1138125,"w":3,"l":1.3749999999999953},{"oc":"#c6e9dc","x":43.949296875,"y":42.08570625,"w":1.5,"l":1.381249999999999},{"oc":"#c6e9dc","x":98.29376562500002,"y":42.1138125,"w":3,"l":1.3749999999999953},{"oc":"#c6e9dc","x":53.468765625,"y":42.1138125,"w":3,"l":1.3749999999999953},{"oc":"#c6e9dc","x":89.94923437500002,"y":42.08570625,"w":1.5,"l":1.396874999999999},{"oc":"#c6e9dc","x":87.50946875000001,"y":38.3349375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":89.98446875000002,"y":38.3349375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":92.45946875000001,"y":38.3349375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":94.93446875000001,"y":38.3349375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":97.40946875,"y":38.3349375,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":29.852109375000005,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":32.327109375,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":34.80210937500001,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":37.277109375,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":39.752109375,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":42.227109375000005,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":44.702109375,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":47.17710937500001,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":49.652109375,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":52.127109375,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":56.30332812500001,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":58.77832812500001,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":61.253328124999996,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":63.72832812500001,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":66.203328125,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":68.67832812500001,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":71.15332812500002,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":73.628328125,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":76.10332812500002,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":78.578328125,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":81.05332812500001,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":83.52832812500002,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":86.003328125,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":88.47832812500002,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":90.953328125,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":93.428328125,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":95.903328125,"y":36.013125,"w":6,"l":1.349999999999999},{"oc":"#c6e9dc","x":98.309578125,"y":36.01,"w":6,"l":1.4968749999999982},{"oc":"#c6e9dc","x":53.799453125,"y":35.56,"w":3,"l":2.2066249999999976}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c6e9dc","x":82.35046875,"y":5.0061250000000035,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":4.987375000000001,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":20.501250000000002,"y":7.801749999999995,"w":1.8562499999999988,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":13.059131250000002,"y":7.783000000000002,"w":1.8562500000000004,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":49.24734375,"y":7.801749999999995,"w":1.8562499999999988,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":41.80515625,"y":7.783000000000002,"w":1.8562499999999988,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":8.536374999999998,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":8.517562500000002,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":10.079875000000003,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":10.061125,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":11.6643125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":11.645562500000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":13.2298125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":13.211062500000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":14.926812500000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":14.908062499999994,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":16.611125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":18.208187499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":18.189437499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":19.802125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":19.783375000000003,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":21.392375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":21.373625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.36284375000001,"y":22.976812499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.92065625,"y":22.958062499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":24.676937499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":24.658187499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":26.389625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":26.370874999999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":27.989375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":27.970625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":29.639499999999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":29.62075,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.90828125,"y":31.458125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.35046875,"y":31.476874999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":82.350125,"y":33.2879375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":74.9079375,"y":33.2691875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c6e9dc","x":18.387359375,"y":44.603,"w":0.7046874999999975,"h":0.3249999999999981,"clr":-1},{"oc":"#c6e9dc","x":25.820953125000003,"y":44.578,"w":0.696093750000002,"h":0.3937500000000019,"clr":-1},{"oc":"#c6e9dc","x":47.339703125,"y":44.603,"w":0.7046892187500061,"h":0.3249999999999981,"clr":-1},{"oc":"#c6e9dc","x":54.773296875,"y":44.578,"w":0.6960920312499965,"h":0.3937500000000019,"clr":-1},{"oc":"#c6e9dc","x":75.011578125,"y":44.6060625,"w":0.7046892187500061,"h":0.3249999999999981,"clr":-1},{"oc":"#c6e9dc","x":82.445171875,"y":44.5810625,"w":0.6960920312499965,"h":0.3937500000000019,"clr":-1},{"oc":"#c6e9dc","x":89.08212500000002,"y":39.3349375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1}],"Texts":[{"oc":"#2b2e34","x":41.8350546875,"y":5.2218937499999925,"w":2.142,"clr":-1,"A":"left","R":[{"T":"whole","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.3811437500000014,"y":4.54689375,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856143750000001,"y":4.54689375,"w":28.25799999999999,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Tax%20from%20Tax%20Table%20or%20Tax%20Rate%20Schedule%20(round%20to%20whole%20dollars)%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":52.236395328125006,"y":4.54689375,"w":6.156,"clr":-1,"A":"left","R":[{"T":"...........................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895191109375006,"y":4.54689375,"w":0.912,"clr":-1,"A":"left","R":[{"T":"15","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381095796875,"y":5.221893750000002,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856095796875,"y":5.221893750000002,"w":19.964,"clr":-1,"A":"left","R":[{"T":"Spouse%20Tax%20Adjustment.%20For%20Filing%20Status%202%20only.%20Enter","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":37.134053609374995,"y":5.221893750000002,"w":2.0050000000000003,"clr":-1,"A":"left","R":[{"T":"VAGI","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":40.142447046875,"y":5.221893750000002,"w":0.8660000000000001,"clr":-1,"A":"left","R":[{"T":"%20in","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":45.501425328125,"y":5.221893750000002,"w":2.415,"clr":-1,"A":"left","R":[{"T":"dollars","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":49.237963765625004,"y":5.221893750000002,"w":8.888000000000002,"clr":-1,"A":"left","R":[{"T":"%20below.%20See%20instructions.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.912441859375,"y":6.571893750000005,"w":0.912,"clr":-1,"A":"left","R":[{"T":"16","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381176234374994,"y":8.225019375000008,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856176234374994,"y":8.225019375000008,"w":19.502000000000002,"clr":-1,"A":"left","R":[{"T":"Net%20Amount%20of%20Tax%20-%20Subtract%20Line%2016%20from%20Line%2015","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":39.537857140625,"y":8.225019375000008,"w":14.363999999999992,"clr":-1,"A":"left","R":[{"T":"...............................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89515089062499,"y":8.225019375000008,"w":0.912,"clr":-1,"A":"left","R":[{"T":"17","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381055578124991,"y":9.034395000000009,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856055578124991,"y":9.034395000000009,"w":10.756999999999998,"clr":-1,"A":"left","R":[{"T":"Virginia%20tax%20withheld%20for%202013.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.85605557812499,"y":9.70939500000001,"w":11.076,"clr":-1,"A":"left","R":[{"T":"18a.%20%20Your%20Virginia%20withholding","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":26.134035218749993,"y":9.70939500000001,"w":22.572000000000035,"clr":-1,"A":"left","R":[{"T":"...................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.189625843749994,"y":9.70939500000001,"w":1.368,"clr":-1,"A":"left","R":[{"T":"18a","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.85606021874998,"y":11.284395000000009,"w":20.237000000000002,"clr":-1,"A":"left","R":[{"T":"18b.%20%20Spouse%E2%80%99s%20Virginia%20withholding%20(filing%20status%202%20only)%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":40.24354615624999,"y":11.284395000000009,"w":13.451999999999993,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.12017115624999,"y":11.284395000000009,"w":1.413,"clr":-1,"A":"left","R":[{"T":"18b","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.381060218749991,"y":12.859395000000006,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":43.417914640624986,"y":12.859395000000006,"w":11.855999999999995,"clr":-1,"A":"left","R":[{"T":"....................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89502714062499,"y":12.859395000000006,"w":0.912,"clr":-1,"A":"left","R":[{"T":"19","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":11.949681828124985,"y":13.534395000000009,"w":19.917999999999992,"clr":-1,"A":"left","R":[{"T":"(Include%20overpayment%20credited%20from%20taxable%20year%202012)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.574291203124985,"y":14.568770625000008,"w":15.996999999999996,"clr":-1,"A":"left","R":[{"T":"20.%20Extension%20Payments%20(from%20Form%20760IP)%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":31.424064640624984,"y":14.568770625000008,"w":19.608000000000015,"clr":-1,"A":"left","R":[{"T":"......................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89502714062499,"y":14.568770625000008,"w":0.912,"clr":-1,"A":"left","R":[{"T":"20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574291203124985,"y":16.053146250000008,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856149782812501,"y":16.05316875,"w":25.02,"clr":-1,"A":"left","R":[{"T":"Tax%20Credit%20for%20Low-Income%20Individuals%20or%20Earned%20Income%20Credit%20from%20","S":-1,"TS":[1,11.73,0,0]}]},{"oc":"#2b2e34","x":42.96825648593751,"y":16.05316875,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":-1,"TS":[1,11.73,1,0]}]},{"oc":"#2b2e34","x":48.120476051562505,"y":16.05316875,"w":6.564000000000003,"clr":-1,"A":"left","R":[{"T":"Sch.%20ADJ%2C%20Line%2017","S":-1,"TS":[1,11.73,0,0]}]},{"oc":"#2b2e34","x":60.34944996875001,"y":16.05316875,"w":0.912,"clr":-1,"A":"left","R":[{"T":"....","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895245249999995,"y":16.05316875,"w":0.912,"clr":-1,"A":"left","R":[{"T":"21","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574509312499996,"y":17.718793125,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856149937499994,"y":17.718793125,"w":15.086999999999996,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Tax%20Paid%20to%20Another%20State%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":30.130012437499996,"y":17.718793125,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":35.698917125,"y":17.718793125,"w":6.7920000000000025,"clr":-1,"A":"left","R":[{"T":"Sch.%20OSC%2C%20Line%2021","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":48.35650025,"y":17.718793125,"w":8.663999999999998,"clr":-1,"A":"left","R":[{"T":"......................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895260718749995,"y":17.718793125,"w":0.912,"clr":-1,"A":"left","R":[{"T":"22","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574524781249989,"y":19.384417499999998,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856165406249989,"y":19.384417499999998,"w":6.972,"clr":-1,"A":"left","R":[{"T":"Other%20Credits%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":18.61075915624999,"y":19.384417499999998,"w":8.658000000000003,"clr":-1,"A":"left","R":[{"T":"attached%20Schedule%20CR","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":33.54182778124999,"y":19.384417499999998,"w":18.240000000000006,"clr":-1,"A":"left","R":[{"T":"................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89527309374999,"y":19.384417499999998,"w":0.912,"clr":-1,"A":"left","R":[{"T":"23","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.5745371562499795,"y":20.959417499999997,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856177781249981,"y":20.959417499999997,"w":14.719999999999995,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2018a%2C%2018b%20and%2019%20through%2023","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":32.13080553124998,"y":20.959417499999997,"w":19.15200000000001,"clr":-1,"A":"left","R":[{"T":"....................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89531021874998,"y":20.959417499999997,"w":0.912,"clr":-1,"A":"left","R":[{"T":"24","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574574281249974,"y":22.625041874999997,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856214906249974,"y":22.625041874999997,"w":31.54400000000001,"clr":-1,"A":"left","R":[{"T":"If%20Line%2024%20is%20less%20than%20Line%2017%2C%20subtract%20Line%2024%20from%20Line%2017.%20%20This%20is%20the%20Tax%20You%20Owe%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":57.527560156249976,"y":22.625041874999997,"w":2.7360000000000007,"clr":-1,"A":"left","R":[{"T":"............","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895269999999975,"y":22.625041874999997,"w":0.912,"clr":-1,"A":"left","R":[{"T":"25","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":11.949924687499966,"y":23.300041874999994,"w":5.971000000000001,"clr":-1,"A":"left","R":[{"T":"(Skip%20to%20Line%2028)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.574534062499966,"y":24.425041874999994,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"26.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856174687499966,"y":24.425041874999994,"w":33.68500000000002,"clr":-1,"A":"left","R":[{"T":"If%20Line%2017%20is%20less%20than%20Line%2024%2C%20subtract%20Line%2017%20from%20Line%2024.%20%20This%20is%20Your%20Tax%20Overpayment%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":60.70108249999997,"y":24.425041874999994,"w":0.684,"clr":-1,"A":"left","R":[{"T":"...","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89522204687497,"y":24.425041874999994,"w":0.912,"clr":-1,"A":"left","R":[{"T":"26","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574486109374966,"y":25.9094175,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"27.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856126734374966,"y":25.9094175,"w":25.799000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20overpayment%20you%20want%20credited%20to%20next%20year%E2%80%99s%20estimated%20tax%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":49.061579796874966,"y":25.9094175,"w":8.207999999999998,"clr":-1,"A":"left","R":[{"T":"....................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895274640624955,"y":25.9094175,"w":0.912,"clr":-1,"A":"left","R":[{"T":"27","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574538703124954,"y":27.575041875,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"28.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856179328124954,"y":27.575041875,"w":16.955,"clr":-1,"A":"left","R":[{"T":"Adjustments%20and%20Voluntary%20Contributions%20from%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":32.725388703124956,"y":27.575041875,"w":3.6,"clr":-1,"A":"left","R":[{"T":"attached%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":38.06512385937496,"y":27.575041875,"w":8.342,"clr":-1,"A":"left","R":[{"T":"Schedule%20ADJ%2C%20Line%2024","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":53.64755370312496,"y":27.575041875,"w":5.244000000000001,"clr":-1,"A":"left","R":[{"T":".......................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89524370312497,"y":27.575041875,"w":0.912,"clr":-1,"A":"left","R":[{"T":"28","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574507765624955,"y":29.150041875,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"29.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856148390624956,"y":29.150041875,"w":7.523000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%2027%20and%2028","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":20.490349953124955,"y":29.150041875,"w":26.676000000000062,"clr":-1,"A":"left","R":[{"T":".....................................................................................................................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.895243703124954,"y":29.150041875,"w":0.912,"clr":-1,"A":"left","R":[{"T":"29","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574507765624944,"y":29.825041875,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"30.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856148390624943,"y":29.825041875,"w":17.69,"clr":-1,"A":"left","R":[{"T":"If%20you%20owe%20tax%20on%20Line%2025%2C%20add%20Lines%2025%20and%2029.%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":36.22407964062495,"y":29.825041875,"w":1.458,"clr":-1,"A":"left","R":[{"T":"OR%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":8.856148390624943,"y":30.500041875000004,"w":22.383000000000003,"clr":-1,"A":"left","R":[{"T":"If%20Line%2026%20is%20less%20than%20Line%2029%2C%20subtract%20Line%2026%20from%20Line%2029.%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":40.048109328124944,"y":30.500041875000004,"w":7.789999999999999,"clr":-1,"A":"left","R":[{"T":"AMOUNT%20YOU%20OWE","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":56.11653326562494,"y":30.500041875000004,"w":3.6480000000000015,"clr":-1,"A":"left","R":[{"T":"................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89528701562494,"y":30.500041875000004,"w":0.912,"clr":-1,"A":"left","R":[{"T":"30","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.574555718749933,"y":32.5250323125,"w":1.1400000000000001,"clr":-1,"A":"left","R":[{"T":"31.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.856196343749934,"y":32.5250323125,"w":23.294999999999998,"clr":-1,"A":"left","R":[{"T":"If%20Line%2026%20is%20greater%20than%20Line%2029%2C%20subtract%20Line%2029%20from%20Line%2026.%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.572911968749935,"y":32.5250323125,"w":6.013,"clr":-1,"A":"left","R":[{"T":"YOUR%20REFUND","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":54.70571210937493,"y":32.5250323125,"w":4.560000000000001,"clr":-1,"A":"left","R":[{"T":"....................","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":61.89529320312492,"y":32.5250323125,"w":0.912,"clr":-1,"A":"left","R":[{"T":"31","S":33,"TS":[1,12,1,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":4.499249999999999,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":4.427399999999996,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":4.427399999999996,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":4.428262499999998,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":11.168962500000001,"y":6.003900000000006,"w":11.073999999999998,"clr":-1,"A":"left","R":[{"T":"16a%20-%20Enter%20Your%20VAGI%20below","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":38.51358750000001,"y":6.003900000000006,"w":12.897,"clr":-1,"A":"left","R":[{"T":"16b%20-%20Enter%20Spouse%E2%80%99s%20VAGI%20below","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":29.111543750000006,"y":7.173000000000002,"w":1.667,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,16,1,0]}]},{"oc":"#231e21","x":58.45060625000001,"y":7.276499999999999,"w":1.667,"clr":-1,"A":"left","R":[{"T":".00","S":-1,"TS":[0,16,1,0]}]},{"x":20.792656250000004,"y":7.223024999999997,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":13.350537500000002,"y":7.223024999999997,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":49.53875,"y":7.223024999999997,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":42.09663125,"y":7.223024999999997,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.65644375,"y":6.145274999999998,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":6.192712500000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":7.982549999999998,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":7.957575,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":7.957575,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":7.961662499999997,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":9.482324999999998,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.52163125000001,"y":9.501075,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.0795125,"y":9.501075,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":9.511350000000002,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":11.063700000000003,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":11.085525000000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":11.085525000000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":11.089612499999996,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":12.676050000000004,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":80.91535625,"y":12.651296250000001,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":73.47385625000001,"y":12.651296250000001,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":82.65053750000001,"y":12.647925,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.20903750000002,"y":12.647925,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":12.655162500000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":14.373,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":14.348024999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":14.348024999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":14.352112499999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":16.054275000000004,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":16.032375000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":16.0364625,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":17.6544,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":17.629424999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":17.629424999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":17.6335125,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":19.245225,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":19.223325000000003,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":19.223325000000003,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":19.2274125,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":20.8386,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":20.813625000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":20.813625000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":20.8177125,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.66923125,"y":22.42305,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.65425,"y":22.398075000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.21213125,"y":22.398075000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.32470000000002,"y":22.40205,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":24.12315,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":24.098174999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":24.098174999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":24.1053,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":25.832774999999998,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":25.810875,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":25.810875,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":25.814962499999996,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":27.435600000000004,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":27.410625,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":27.410625,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":27.414712499999997,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":29.0889,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":29.060774999999996,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19975625000001,"y":29.060774999999996,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":29.067899999999998,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":75.19975625000001,"y":30.898125000000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#c6e9dc","x":91.65685625,"y":30.923099999999994,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.641875,"y":30.898125000000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31232500000002,"y":30.9084,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#c6e9dc","x":91.65644375,"y":32.73105,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,16,1,0]}]},{"x":82.64166875000001,"y":32.70915,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"x":75.19934375,"y":32.70915,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#b8e3d4","x":94.31201562500002,"y":32.716275,"w":1.112,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#231e21","x":81.42685625,"y":1.1969250000000027,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Your%20SSN","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.501449375000001,"y":1.417199999999999,"w":2.644,"clr":-1,"A":"left","R":[{"T":"Page%202","S":-1,"TS":[1,16,1,0]}]},{"oc":"#2b2e34","x":6.501456250000001,"y":2.2921374999999955,"w":3.646,"clr":-1,"A":"left","R":[{"T":"Form%20760","S":35,"TS":[1,18,1,0]}]},{"oc":"#2b2e34","x":6.501449375000001,"y":3.417150000000002,"w":2.0060000000000002,"clr":-1,"A":"left","R":[{"T":"Year%20","S":-1,"TS":[1,16,1,0]}]},{"oc":"#2b2e34","x":10.545888125000001,"y":3.417225000000002,"w":1.824,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[1,22,1,0]}]},{"x":81.0092,"y":2.4430499999999995,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"x":85.95074375000002,"y":2.4617250000000013,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":12.680359062500001,"y":28.162556250000005,"w":11.896,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Schedule%20ADJ)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":12.130352187499998,"y":18.309412500000004,"w":23.429000000000002,"clr":-1,"A":"left","R":[{"T":"(You%20must%20attach%20Sch.%20OSC%20and%20a%20copy%20of%20all%20other%20state%20returns)","S":27,"TS":[1,12,0,0]}]},{"x":18.223296875000003,"y":44.131662500000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":25.639703125000004,"y":44.147287500000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":47.17564062500001,"y":44.194162500000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":54.59204687500001,"y":44.1910375,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":74.84751562500001,"y":44.184712499999996,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"x":82.27251562500001,"y":44.1815875,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":10,"TS":[0,14,1,0]}]},{"oc":"#231e21","x":15.713200000000002,"y":43.1659,"w":11.574,"clr":-1,"A":"left","R":[{"T":"Your%20business%20phone%20number","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":46.766200000000005,"y":43.1659,"w":8.201000000000002,"clr":-1,"A":"left","R":[{"T":"Home%20phone%20number","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":70.90061250000001,"y":43.1659,"w":13.351999999999997,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20business%20phone%20number","S":-1,"TS":[1,11,1,0]}]},{"oc":"#231e21","x":82.9754328125,"y":45.710075625,"w":6.153,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20PTIN","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":36.4417203125,"y":45.774395812499996,"w":4.466,"clr":-1,"A":"left","R":[{"T":"%20Firm%20Name","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":11.6856565625,"y":45.774358125,"w":6.746,"clr":-1,"A":"left","R":[{"T":"%20Preparer%E2%80%99s%20Name","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":69.39340625000001,"y":45.377930625,"w":2.187,"clr":-1,"A":"left","R":[{"T":"Filing","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":68.61769484375,"y":45.8779306875,"w":3.19,"clr":-1,"A":"left","R":[{"T":"Election","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":54.0494890625,"y":45.774391875,"w":5.832000000000001,"clr":-1,"A":"left","R":[{"T":"Phone%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#231e21","x":7.0125953125,"y":41.955000000000005,"w":5.878000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20Signature","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":43.914140625,"y":41.955000000000005,"w":1.7770000000000001,"clr":-1,"A":"left","R":[{"T":"Date","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":53.579703125,"y":41.9548125,"w":7.6560000000000015,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Signature","S":34,"TS":[1,14,1,0]}]},{"oc":"#231e21","x":90.008609375,"y":41.955011875,"w":1.7770000000000001,"clr":-1,"A":"left","R":[{"T":"Date","S":34,"TS":[1,14,1,0]}]},{"oc":"#2b2e34","x":6.488371337500001,"y":41.128350000000005,"w":75.03399999999989,"clr":-1,"A":"left","R":[{"T":"I%20(We)%2C%20the%20undersigned%2C%20declare%20under%20penalty%20of%20law%20that%20I%20(we)%20have%20examined%20this%20return%20and%20to%20the%20best%20of%20my%20(our)%20knowledge%2C%20it%20is%20a%20true%2C%20correct%20and%20complete%20return.","S":-1,"TS":[0,10.120000000000001,0,0]}]},{"oc":"#2b2e34","x":17.717195984375003,"y":38.028975,"w":10.527,"clr":-1,"A":"left","R":[{"T":"Qualifying%20farmer%2C%20fisherman%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.717110906250003,"y":38.591475,"w":7.520000000000001,"clr":-1,"A":"left","R":[{"T":"or%20merchant%20seaman","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.717195984375003,"y":39.502275,"w":8.069000000000003,"clr":-1,"A":"left","R":[{"T":"Overseas%20on%20due%20date","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":17.717195984375003,"y":40.41324375,"w":29.034000000000002,"clr":-1,"A":"left","R":[{"T":"I%20agree%20to%20obtain%20my%20Form%201099-G%20income%20tax%20refund%20statement%20electronically%20at%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":58.969567859375005,"y":40.41324375,"w":9.948,"clr":-1,"A":"left","R":[{"T":"www.tax.virginia.gov","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":72.57985582812499,"y":40.41324375,"w":12.49,"clr":-1,"A":"left","R":[{"T":"%20instead%20of%20receiving%20a%20paper%20copy.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.298358671875,"y":39.502275,"w":10.389999999999999,"clr":-1,"A":"left","R":[{"T":"Primary%20Taxpayer%20Deceased","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.298296796875,"y":38.0288625,"w":9.207,"clr":-1,"A":"left","R":[{"T":"Federal%20Schedule%20C%20filed%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":41.298296796875,"y":38.5913625,"w":6.563000000000001,"clr":-1,"A":"left","R":[{"T":"with%20federal%20return","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":66.14474445312499,"y":39.502275,"w":6.701000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%20Deceased","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":66.144667109375,"y":37.99134375,"w":12.806999999999997,"clr":-1,"A":"left","R":[{"T":"Earned%20Income%20Credit%20from%20federal%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":66.144667109375,"y":38.55384375,"w":8.933000000000002,"clr":-1,"A":"left","R":[{"T":"return.%20%20Amount%20claimed%3A","S":27,"TS":[1,12,0,0]}]},{"x":89.3734625,"y":38.756175,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":6.162199062500001,"y":38.0158125,"w":3.6010000000000004,"clr":-1,"A":"left","R":[{"T":"Check%20all","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.162199062500001,"y":38.690806875,"w":2.37,"clr":-1,"A":"left","R":[{"T":"boxes","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.162199062500001,"y":39.365806875,"w":1.731,"clr":-1,"A":"left","R":[{"T":"that%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.162199062500001,"y":40.040806875,"w":2.4150000000000005,"clr":-1,"A":"left","R":[{"T":"apply%3A","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.045672968750001,"y":35.0260125,"w":9.475999999999999,"clr":-1,"A":"left","R":[{"T":"DIRECT%20BANK%20DEPOSIT","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.045672968750001,"y":35.7010125,"w":8.932000000000002,"clr":-1,"A":"left","R":[{"T":"Domestic%20Accounts%20Only","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.045672968750001,"y":36.3760125,"w":9.663000000000002,"clr":-1,"A":"left","R":[{"T":"No%20International%20Deposits%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":31.62510734375,"y":34.979032499999995,"w":11.618,"clr":-1,"A":"left","R":[{"T":"Bank%20Routing%20Transit%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":75.63122609375002,"y":34.9231824375,"w":3.418,"clr":-1,"A":"left","R":[{"T":"Checking","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":85.45228906250001,"y":34.923300000000005,"w":2.9170000000000003,"clr":-1,"A":"left","R":[{"T":"Savings","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":56.187115625000004,"y":34.979043749999995,"w":8.839,"clr":-1,"A":"left","R":[{"T":"Bank%20Account%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":6.501490625000005,"y":33.363538125,"w":14.216,"clr":-1,"A":"left","R":[{"T":"Choose%20Direct%20Deposit%20or%20Debit%20Card","S":33,"TS":[1,12,1,0]}]},{"oc":"#2b2e34","x":32.79805625000001,"y":33.363538125,"w":7.246000000000001,"clr":-1,"A":"left","R":[{"T":"Direct%20Bank%20Deposit","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":48.26638859375001,"y":33.363538125,"w":3.919,"clr":-1,"A":"left","R":[{"T":"Debit%20Card","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":53.985417500000004,"y":33.363538125,"w":6.562000000000001,"clr":-1,"A":"left","R":[{"T":"%20(Fees%20may%20apply)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":6.501459687500006,"y":34.038538125,"w":37.831000000000024,"clr":-1,"A":"left","R":[{"T":"You%20authorize%20the%20Department%20to%20issue%20a%20Debit%20Card%20if%20the%20Direct%20Deposit%20section%20below%20is%20not%20completed.","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":8.8559890625,"y":12.859406249999997,"w":22.286999999999995,"clr":-1,"A":"left","R":[{"T":"Estimated%20Tax%20Paid%20for%20taxable%20year%202013%20(from%20Form%20760ES)","S":27,"TS":[1,12,0,0]}]},{"oc":"#2b2e34","x":10.26551703125,"y":19.973006249999997,"w":31.077000000000016,"clr":-1,"A":"left","R":[{"T":"(If%20claiming%20Political%20Contribution%20Credit%20only%20-%20check%20this%20box%20-%20see%20instructions)","S":33,"TS":[1,12,1,0]}]},{"x":23.941406250000004,"y":31.140625,"w":228.37200000000004,"clr":0,"A":"left","R":[{"T":"CHECK%20THIS%20BOX%20IF%20PAYING%20BY%20CREDIT%20OR%20DEBIT%20CARD%20-%20SEE%20INSTRUCTIONS","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":67,"AM":1024,"x":74.370828125,"y":2.5607708333333314,"w":21.465984375000005,"h":0.9454791666666722,"TU":"Your SSN"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":68,"AM":0,"x":68.757734375,"y":4.297020833333335,"w":21.524937499999993,"h":0.9779791666666616,"TU":"Line 15. Amount of Tax from Tax Table or Tax Rate Schedule (round to whole dollars)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":69,"AM":0,"x":83.45390625000002,"y":5.982458333333331,"w":6.993765624999993,"h":1.0460416666666674,"TU":"Line 16. Spouse Tax Adjustment. For Filing Status 2 only. Enter in whole dollars below. See instuctions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16TP","EN":0},"TI":70,"AM":0,"x":9.372000000000002,"y":7.074020833333331,"w":18.975343750000004,"h":1.0154166666666715,"TU":"Line 16a. Enter Your VAGI."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16SP","EN":0},"TI":71,"AM":0,"x":37.955328125,"y":7.074020833333331,"w":19.19998437500001,"h":0.9881666666666717,"TU":"Line 16b. Enter Spouse's VAGI."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":72,"AM":1024,"x":68.757734375,"y":7.792458333333333,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WITHHELD","EN":0},"TI":73,"AM":0,"x":68.757734375,"y":9.342958333333334,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 18a. Your Virgina withholding."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPWHELD","EN":0},"TI":74,"AM":0,"x":68.757734375,"y":10.940145833333332,"w":21.524937499999993,"h":0.9780416666666696,"TU":"Line 18b. Spouse's Virginia withholding (filing status 2 only)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPYMTS","EN":0},"TI":75,"AM":0,"x":68.757734375,"y":12.508083333333337,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 19. Estimated Tax Paid for taxable year 2013 (from Form 760ES) (Include overpayment credited from taxable year 2012)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXTPYMTS","EN":0},"TI":76,"AM":0,"x":68.757734375,"y":14.177208333333331,"w":21.524937499999993,"h":0.9780416666666744,"TU":"Line 20. Extension Payments (from Form 760IP)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ","EN":0},"TI":77,"AM":0,"x":57.7905625,"y":16.129499999999997,"w":2.8448750000000036,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":78,"AM":1024,"x":78.64673437500001,"y":15.914895833333333,"w":11.606203124999995,"h":1.0051666666666677,"TU":"Line 21"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAOSC"}},"id":{"Id":"Add_Sch_OSC","EN":0},"TI":79,"AM":0,"x":47.053015625,"y":17.780625,"w":3.968078125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":80,"AM":1024,"x":68.757734375,"y":17.452833333333334,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":81,"AM":0,"x":68.82184375,"y":19.06295833333333,"w":21.524937500000007,"h":0.9780416666666696,"TU":"Line 23. Other Credits from attached Schedule CR."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VASCR"}},"id":{"Id":"Add_Sch_CR","EN":0},"TI":82,"AM":0,"x":32.950671875000005,"y":19.438,"w":3.968078125000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":84,"AM":1024,"x":68.757734375,"y":20.66014583333333,"w":21.524937499999993,"h":0.9779791666666663,"TU":"Line 24"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":85,"AM":1024,"x":68.757734375,"y":22.260770833333336,"w":21.524937499999993,"h":0.9780416666666696,"TU":"Line 25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OVERPYMT","EN":0},"TI":86,"AM":1024,"x":68.757734375,"y":23.93283333333333,"w":21.524937499999993,"h":0.9780416666666696,"TU":"Line 26"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":87,"AM":0,"x":68.757734375,"y":25.634645833333337,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 27. Amount of overpayment you want credited to next year's estimated tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":88,"AM":1024,"x":68.832671875,"y":27.205520833333335,"w":21.674640624999995,"h":1.114166666666667,"TU":"Line 28"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VAADJ"}},"id":{"Id":"Add_Sch_ADJ_line_24","EN":0},"TI":89,"AM":0,"x":51.701890625000004,"y":27.6099375,"w":3.9679062500000026,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":90,"AM":1024,"x":68.757734375,"y":28.874645833333332,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 29"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMTDUE","EN":0},"TI":91,"AM":1024,"x":68.757734375,"y":30.784645833333332,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REFUND","EN":0},"TI":93,"AM":1024,"x":68.757734375,"y":32.62620833333333,"w":21.524937499999993,"h":0.9780416666666648,"TU":"Line 31"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"RTN","EN":0},"TI":98,"AM":0,"x":30.190015625,"y":36.35102083333333,"w":21.7311875,"h":0.9507916666666697,"TU":"Bank Routing Transit Number.","MV":"999999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"BANK","EN":0},"TI":99,"AM":0,"x":56.623531250000006,"y":36.333395833333334,"w":41.306203124999996,"h":0.9234791666666619,"TU":"Bank Account Number.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FEIC11A","EN":0},"TI":103,"AM":0,"x":87.797875,"y":38.583958333333335,"w":9.637546875000016,"h":1.0188541666666662,"TU":"Amount of EIC claimed."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"TBPHONE","EN":0},"TI":108,"AM":0,"x":11.7091390625,"y":44.34415833333333,"w":24.1312671875,"h":0.9643979166666649,"TU":"Your Business Phone number."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"HMPHONE","EN":0},"TI":109,"AM":0,"x":40.5185,"y":44.30453333333333,"w":24.131250000000005,"h":1.0188479166666677,"TU":"Home Phone number."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"SBPHONE","EN":0},"TI":110,"AM":0,"x":68.20601562499999,"y":44.34998958333333,"w":24.131421875000015,"h":0.9643979166666649,"TU":"Spouse's Business Phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":111,"AM":1024,"x":27.918515625,"y":46.90227083333334,"w":22.293734375000003,"h":1.0325729166666615,"TU":"Firm's Name","V":"SELF-PREPARED"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OTHCRS","EN":0},"TI":83,"AM":0,"x":64.395890625,"y":20.2205625,"w":2.756187499999997,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CCBX","EN":0},"TI":92,"AM":0,"x":64.47014062500001,"y":31.4289375,"w":2.756187499999997,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DBDBX","EN":0},"TI":94,"AM":0,"x":30.499390625,"y":33.5236875,"w":2.1711250000000044,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DCBX","EN":0},"TI":95,"AM":0,"x":46.12437500000001,"y":33.5045,"w":2.246062499999997,"h":0.8333333333333334,"checked":false}],"id":{"Id":"REFTYPRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCTC","EN":0},"TI":96,"AM":0,"x":81.40893750000001,"y":35.045875,"w":1.946484375000008,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCTS","EN":0},"TI":97,"AM":0,"x":90.25396875000001,"y":35.065125,"w":2.0214218749999944,"h":0.8333333333333334,"checked":false}],"id":{"Id":"A768XRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FARMBX","EN":0},"TI":100,"AM":0,"x":13.905684375000002,"y":38.264874999999996,"w":2.531598437500001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FEDSCHC","EN":0},"TI":101,"AM":0,"x":37.43678125,"y":38.2580625,"w":2.531546875000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FEIC","EN":0},"TI":102,"AM":0,"x":62.230093749999995,"y":38.169125,"w":2.75618750000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"OSBX","EN":0},"TI":104,"AM":0,"x":13.861787500000002,"y":39.6540625,"w":2.756204687499996,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TPDEC","EN":0},"TI":105,"AM":0,"x":37.307531250000004,"y":39.6999375,"w":2.756187500000004,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SPDEC","EN":0},"TI":106,"AM":0,"x":62.361578125,"y":39.693125,"w":2.75618750000001,"h":0.8333333333333334}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"X99G","EN":0},"TI":107,"AM":0,"x":13.884045312500001,"y":40.624375,"w":2.7562046874999995,"h":0.8333333333333334}]}]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VA760C.json b/test/data/va/form_org/VA760C.json new file mode 100755 index 00000000..50d66f6c --- /dev/null +++ b/test/data/va/form_org/VA760C.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"2013 760C Flat 01 07 14.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":31.23553125,"y":5.8713750000000005,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":45.904031249999996,"y":5.8713750000000005,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":58.744296875,"y":5.8713750000000005,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":73.41279687500001,"y":5.8713750000000005,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":6.187500000000001,"y":6.240124999999996,"w":0.75,"l":61.57421875000001},{"oc":"#2b2e34","x":67.76171875,"y":6.240124999999996,"w":0.75,"l":14.437500000000002},{"oc":"#2b2e34","x":82.19921875,"y":6.240124999999996,"w":0.75,"l":14.480468750000002},{"oc":"#2b2e34","x":6.187500000000001,"y":7.865124999999996,"w":0.75,"l":61.57421875000001},{"oc":"#2b2e34","x":67.76171875,"y":7.865124999999996,"w":0.75,"l":14.437500000000002},{"oc":"#2b2e34","x":82.19921875,"y":7.865124999999996,"w":0.75,"l":14.480468750000002},{"oc":"#2b2e34","x":6.187500000000001,"y":9.465187499999999,"w":0.75,"l":61.57421875000001},{"oc":"#2b2e34","x":67.76171875,"y":9.465187499999999,"w":0.75,"l":14.437500000000002},{"oc":"#2b2e34","x":82.19921875,"y":9.465187499999999,"w":0.75,"l":14.480468750000002},{"oc":"#2b2e34","x":67.71875,"y":10.965187499999999,"w":0.75,"l":14.480468750000002},{"oc":"#2b2e34","x":82.19921875,"y":10.965187499999999,"w":0.75,"l":14.480468750000002},{"oc":"#2b2e34","x":8.03515625,"y":11.808937499999999,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":11.808937499999999,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.296875,"y":11.808937499999999,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":84.390625,"y":11.808937499999999,"w":0.75,"l":14.652343750000002},{"oc":"#2b2e34","x":8.03515625,"y":13.121437499999999,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":13.121437499999999,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.296875,"y":13.121437499999999,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":84.390625,"y":13.121437499999999,"w":0.75,"l":14.652343750000002},{"oc":"#2b2e34","x":8.03515625,"y":14.433937499999999,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":14.433937499999999,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.296875,"y":14.433937499999999,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":84.390625,"y":14.433937499999999,"w":0.75,"l":14.652343750000002},{"oc":"#2b2e34","x":8.03515625,"y":15.746437499999999,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":15.746437499999999,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.296875,"y":15.746437499999999,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":84.390625,"y":15.746437499999999,"w":0.75,"l":14.652343750000002},{"oc":"#2b2e34","x":8.03515625,"y":17.0589375,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":17.0589375,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.296875,"y":17.0589375,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":84.390625,"y":17.0589375,"w":0.75,"l":14.652343750000002},{"oc":"#2b2e34","x":8.03515625,"y":18.3714375,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":18.3714375,"w":0.75,"l":70.125},{"oc":"#2b2e34","x":81.296875,"y":18.3714375,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":84.390625,"y":18.3714375,"w":0.75,"l":14.652343750000002},{"oc":"#2b2e34","x":49.45703125000001,"y":19.5276875,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":61.87500000000001,"y":19.5276875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":19.5276875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":19.5276875,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":20.2666875,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":20.2666875,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":20.2666875,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":20.2666875,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":20.2666875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":20.2666875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":20.2666875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":20.2666875,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":21.041625,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":21.041625,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":21.041625,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":21.041625,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":21.041625,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":21.041625,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":21.041625,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":21.041625,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":23.468125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":23.468125,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":23.468125,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":23.468125,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":23.468125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":23.468125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":23.468125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":23.468125,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":24.780625,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":24.780625,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":24.780625,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":24.780625,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":24.780625,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":24.780625,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":24.780625,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":24.780625,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":26.093125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":26.093125,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":26.093125,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":26.093125,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":26.093125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":26.093125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":26.093125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":26.093125,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":27.9571875,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":27.9571875,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":27.9571875,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":27.9571875,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":27.9571875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":27.9571875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":27.9571875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":27.9571875,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":29.892875,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":29.892875,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":29.892875,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":29.892875,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":29.892875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":29.892875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":29.892875,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":29.892875,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":11.171875,"y":32.319375,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":32.319375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":32.319375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":32.319375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":32.319375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":32.319375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":32.319375,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":28.832031250000004,"y":33.069375,"w":0.75,"l":10.35546875},{"oc":"#2b2e34","x":39.1875,"y":33.069375,"w":0.75,"l":10.35546875},{"oc":"#2b2e34","x":11.171875,"y":34.194375,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":34.194375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":34.194375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":34.194375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":34.194375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":34.194375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":34.194375,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":11.171875,"y":35.319375,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":35.319375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":35.319375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":35.319375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":35.319375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":35.319375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":35.319375,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":11.171875,"y":36.444375,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":36.444375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":36.444375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":36.444375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":36.444375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":36.444375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":36.444375,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":37.569375,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":37.569375,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":37.569375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":37.569375,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":37.569375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":37.569375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":37.569375,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":37.569375,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":39.433375000000005,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":39.433375000000005,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":39.433375000000005,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":39.433375000000005,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":39.433375000000005,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":39.433375000000005,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":39.433375000000005,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":39.433375000000005,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.03515625,"y":42.422374999999995,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.171875,"y":42.422374999999995,"w":0.75,"l":17.703125},{"oc":"#2b2e34","x":28.875000000000004,"y":42.422374999999995,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":39.1875,"y":42.422374999999995,"w":0.75,"l":10.3125},{"oc":"#2b2e34","x":49.50000000000001,"y":42.422374999999995,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":42.422374999999995,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":74.25,"y":42.422374999999995,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":86.625,"y":42.422374999999995,"w":0.75,"l":12.417968750000002},{"oc":"#2b2e34","x":8.20703125,"y":43.95365,"w":0.75,"l":23.16015625},{"oc":"#2b2e34","x":31.367187500000004,"y":43.95365,"w":0.75,"l":23.1171875},{"oc":"#2b2e34","x":54.48437500000001,"y":43.95365,"w":0.75,"l":23.1171875},{"oc":"#2b2e34","x":77.6015625,"y":43.95365,"w":0.75,"l":21.44140625},{"oc":"#2b2e34","x":8.20703125,"y":45.45365,"w":0.75,"l":23.16015625},{"oc":"#2b2e34","x":31.367187500000004,"y":45.45365,"w":0.75,"l":23.1171875},{"oc":"#2b2e34","x":54.48437500000001,"y":45.45365,"w":0.75,"l":23.1171875},{"oc":"#2b2e34","x":77.6015625,"y":45.45365,"w":0.75,"l":21.44140625},{"oc":"#2b2e34","x":8.20703125,"y":46.95365,"w":0.75,"l":23.16015625},{"oc":"#2b2e34","x":31.367187500000004,"y":46.95365,"w":0.75,"l":23.1171875},{"oc":"#2b2e34","x":54.48437500000001,"y":46.95365,"w":0.75,"l":23.1171875},{"oc":"#2b2e34","x":77.6015625,"y":46.95365,"w":0.75,"l":21.44140625}],"VLines":[{"oc":"#2b2e34","x":6.230468750000001,"y":6.255749999999996,"w":0.75,"l":1.59375},{"oc":"#2b2e34","x":67.76171875,"y":6.255749999999996,"w":0.75,"l":1.59375},{"oc":"#2b2e34","x":96.63671875000001,"y":6.255749999999996,"w":0.75,"l":1.59375},{"oc":"#2b2e34","x":6.230468750000001,"y":7.880749999999999,"w":0.75,"l":1.5688125},{"oc":"#2b2e34","x":67.76171875,"y":7.880749999999999,"w":0.75,"l":1.5688125},{"oc":"#2b2e34","x":96.63671875000001,"y":7.880749999999999,"w":0.75,"l":1.5688125},{"oc":"#2b2e34","x":67.76171875,"y":9.480812499999999,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":82.19921875,"y":9.480812499999999,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.63671875000001,"y":9.480812499999999,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":84.390625,"y":11.824562499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":99.00000000000001,"y":11.824562499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":84.390625,"y":13.137062499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":99.00000000000001,"y":13.137062499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":84.390625,"y":14.449562499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":99.00000000000001,"y":14.449562499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":84.390625,"y":15.762062499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":99.00000000000001,"y":15.762062499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":84.390625,"y":17.0745625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":99.00000000000001,"y":17.0745625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":8.078125,"y":11.824562499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":8.078125,"y":13.137062499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":8.078125,"y":14.449562499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":8.078125,"y":15.762062499999999,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":8.078125,"y":17.0745625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":49.50000000000001,"y":19.5433125,"w":0.75,"l":0.7077499999999995},{"oc":"#2b2e34","x":61.87500000000001,"y":19.5433125,"w":0.75,"l":0.7077499999999995},{"oc":"#2b2e34","x":74.25,"y":19.5433125,"w":0.75,"l":0.7077499999999995},{"oc":"#2b2e34","x":86.625,"y":19.5433125,"w":0.75,"l":0.7077499999999995},{"oc":"#2b2e34","x":99.00000000000001,"y":19.5433125,"w":0.75,"l":0.7077499999999995},{"oc":"#2b2e34","x":49.50000000000001,"y":20.2823125,"w":0.75,"l":0.7436875000000001},{"oc":"#2b2e34","x":61.87500000000001,"y":20.2823125,"w":0.75,"l":0.7436875000000001},{"oc":"#2b2e34","x":74.25,"y":20.2823125,"w":0.75,"l":0.7436875000000001},{"oc":"#2b2e34","x":86.625,"y":20.2823125,"w":0.75,"l":0.7436875000000001},{"oc":"#2b2e34","x":99.00000000000001,"y":20.2823125,"w":0.75,"l":0.7436875000000001},{"oc":"#2b2e34","x":49.50000000000001,"y":21.05725,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":61.87500000000001,"y":21.05725,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":74.25,"y":21.05725,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":86.625,"y":21.05725,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":99.00000000000001,"y":21.05725,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":49.50000000000001,"y":23.48375,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":61.87500000000001,"y":23.48375,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":74.25,"y":23.48375,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":86.625,"y":23.48375,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":99.00000000000001,"y":23.48375,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":49.50000000000001,"y":24.79625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":61.87500000000001,"y":24.79625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":74.25,"y":24.79625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":86.625,"y":24.79625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":99.00000000000001,"y":24.79625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":49.50000000000001,"y":26.1088125,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":61.87500000000001,"y":26.1088125,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":74.25,"y":26.1088125,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":86.625,"y":26.1088125,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":99.00000000000001,"y":26.1088125,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":49.50000000000001,"y":27.9728125,"w":0.75,"l":1.9044375000000002},{"oc":"#2b2e34","x":61.87500000000001,"y":27.9728125,"w":0.75,"l":1.9044375000000002},{"oc":"#2b2e34","x":74.25,"y":27.9728125,"w":0.75,"l":1.9044375000000002},{"oc":"#2b2e34","x":86.625,"y":27.9728125,"w":0.75,"l":1.9044375000000002},{"oc":"#2b2e34","x":99.00000000000001,"y":27.9728125,"w":0.75,"l":1.9044375000000002},{"oc":"#2b2e34","x":49.50000000000001,"y":29.9085,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":61.87500000000001,"y":29.9085,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":74.25,"y":29.9085,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":86.625,"y":29.9085,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":99.00000000000001,"y":29.9085,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":28.875000000000004,"y":32.335,"w":0.75,"l":0.71875},{"oc":"#2b2e34","x":39.1875,"y":32.335,"w":0.75,"l":0.71875},{"oc":"#2b2e34","x":49.50000000000001,"y":32.335,"w":0.75,"l":0.71875},{"oc":"#2b2e34","x":61.87500000000001,"y":32.335,"w":0.75,"l":0.734375},{"oc":"#2b2e34","x":74.25,"y":32.335,"w":0.75,"l":0.734375},{"oc":"#2b2e34","x":86.625,"y":32.335,"w":0.75,"l":0.734375},{"oc":"#2b2e34","x":99.00000000000001,"y":32.335,"w":0.75,"l":0.734375},{"oc":"#2b2e34","x":28.875000000000004,"y":33.085,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":39.1875,"y":33.085,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":49.50000000000001,"y":33.085,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":61.87500000000001,"y":33.069375,"w":0.75,"l":1.109375},{"oc":"#2b2e34","x":74.25,"y":33.069375,"w":0.75,"l":1.109375},{"oc":"#2b2e34","x":86.625,"y":33.069375,"w":0.75,"l":1.109375},{"oc":"#2b2e34","x":99.00000000000001,"y":33.069375,"w":0.75,"l":1.109375},{"oc":"#2b2e34","x":28.875000000000004,"y":34.21,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":39.1875,"y":34.21,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":49.50000000000001,"y":34.21,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":61.87500000000001,"y":34.21,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":74.25,"y":34.21,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":86.625,"y":34.21,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":99.00000000000001,"y":34.21,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":28.875000000000004,"y":35.335,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":39.1875,"y":35.335,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":49.50000000000001,"y":35.335,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":61.87500000000001,"y":35.335,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":74.25,"y":35.335,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":86.625,"y":35.335,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":99.00000000000001,"y":35.335,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":28.875000000000004,"y":36.46,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":39.1875,"y":36.46,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":49.50000000000001,"y":36.46,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":61.87500000000001,"y":36.46,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":74.25,"y":36.46,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":86.625,"y":36.46,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":99.00000000000001,"y":36.46,"w":0.75,"l":1.09375},{"oc":"#2b2e34","x":49.50000000000001,"y":37.585,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":61.87500000000001,"y":37.585,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":74.25,"y":37.585,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":86.625,"y":37.585,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":99.00000000000001,"y":37.585,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":49.50000000000001,"y":39.449,"w":0.75,"l":2.9577499999999994},{"oc":"#2b2e34","x":61.87500000000001,"y":39.449,"w":0.75,"l":2.9577499999999994},{"oc":"#2b2e34","x":74.25,"y":39.449,"w":0.75,"l":2.9577499999999994},{"oc":"#2b2e34","x":86.625,"y":39.449,"w":0.75,"l":2.9577499999999994},{"oc":"#2b2e34","x":99.00000000000001,"y":39.449,"w":0.75,"l":2.9577499999999994},{"oc":"#2b2e34","x":8.078125,"y":20.2823125,"w":0.75,"l":0.7436875000000001},{"oc":"#2b2e34","x":8.078125,"y":21.05725,"w":0.75,"l":2.3952499999999994},{"oc":"#2b2e34","x":8.078125,"y":23.48375,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":8.078125,"y":24.79625,"w":0.75,"l":1.28125},{"oc":"#2b2e34","x":8.078125,"y":26.1088125,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":8.078125,"y":27.9728125,"w":0.75,"l":1.9044375000000002},{"oc":"#2b2e34","x":8.078125,"y":29.9085,"w":0.75,"l":2.4108749999999994},{"oc":"#2b2e34","x":8.078125,"y":32.319375,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":8.078125,"y":33.069375,"w":0.75,"l":1.125},{"oc":"#2b2e34","x":8.078125,"y":34.194375,"w":0.75,"l":1.125},{"oc":"#2b2e34","x":8.078125,"y":35.319375,"w":0.75,"l":1.125},{"oc":"#2b2e34","x":8.078125,"y":36.444375,"w":0.75,"l":1.109375},{"oc":"#2b2e34","x":8.078125,"y":37.585,"w":0.75,"l":1.8327499999999997},{"oc":"#2b2e34","x":8.078125,"y":39.449,"w":0.75,"l":2.9577499999999994},{"oc":"#2b2e34","x":8.25,"y":43.969275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":31.367187500000004,"y":43.969275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":54.48437500000001,"y":43.969275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":77.6015625,"y":43.969275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":99.00000000000001,"y":43.969275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":45.469275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":31.367187500000004,"y":45.469275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":54.48437500000001,"y":45.469275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":77.6015625,"y":45.469275,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":99.00000000000001,"y":45.469275,"w":0.75,"l":1.46875}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.9375034375,"y":2.1370000000000005,"w":5.503,"clr":-1,"A":"left","R":[{"T":"760C%20-%202013","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":22.360159687499998,"y":2.1370000000000005,"w":17.226000000000003,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Virginia%20Estimated","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":21.354347187499993,"y":3.074125,"w":18.173000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20by%20Individuals%2C%20Estates%20and%20Trusts","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":4.3870000000000005,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8,"y":4.3870000000000005,"w":3.1109999999999998,"clr":-1,"A":"left","R":[{"T":"Attach","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":12.659875000000001,"y":4.3870000000000005,"w":1.778,"clr":-1,"A":"left","R":[{"T":"this","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":15.486875000000005,"y":4.3870000000000005,"w":2.222,"clr":-1,"A":"left","R":[{"T":"form","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.924375000000005,"y":4.3870000000000005,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":20.604625000000006,"y":4.3870000000000005,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.424375,"y":4.3870000000000005,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"760%2C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":27.482375000000005,"y":4.3870000000000005,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"763%2C","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":30.540375000000004,"y":4.3870000000000005,"w":3.002,"clr":-1,"A":"left","R":[{"T":"760PY","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":35.025625000000005,"y":4.3870000000000005,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":36.782875000000004,"y":4.3870000000000005,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"770.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":5.1370000000000005,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"Fiscal","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.193125,"y":5.1370000000000005,"w":2.168,"clr":-1,"A":"left","R":[{"T":"Year","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":13.480750000000002,"y":5.1370000000000005,"w":2.668,"clr":-1,"A":"left","R":[{"T":"Filers","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":17.149250000000002,"y":5.1370000000000005,"w":10.062000000000003,"clr":-1,"A":"left","R":[{"T":"%3A%20Enter%20beginning%20date%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.3606,"y":5.1370000000000005,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%2020%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":49.7791,"y":5.1370000000000005,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"%20%2C%20ending%20date%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.86926250000002,"y":5.1370000000000005,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%2020%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":77.28776250000001,"y":5.1370000000000005,"w":8.227,"clr":-1,"A":"left","R":[{"T":"%20%2C%20and%20check%20here%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":6.410152812500001,"y":5.919375000000002,"w":39.29099999999997,"clr":-1,"A":"left","R":[{"T":"First%20Name%2C%20Middle%20Initial%20and%20Last%20Name%20(of%20Both%20If%20Joint)%20-%20OR%20-%20Name%20of%20Estate%20or%20Trust","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":67.9417465625,"y":5.919375000000002,"w":16.560000000000006,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number%20or%20FEIN","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":96.93891875000001,"y":6.652612499999999,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":6.410152812500001,"y":7.544249999999996,"w":20.17400000000001,"clr":-1,"A":"left","R":[{"T":"If%20Estate%20or%20Trust%2C%20Name%20and%20Title%20of%20Fiduciary","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":67.9417465625,"y":7.544249999999996,"w":14.807,"clr":-1,"A":"left","R":[{"T":"Spouse's%20Social%20Security%20Number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":67.9417465625,"y":9.144371249999997,"w":6.334999999999999,"clr":-1,"A":"left","R":[{"T":"Office%20Use%20SC","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":82.3792465625,"y":9.144371249999997,"w":8.892000000000001,"clr":-1,"A":"left","R":[{"T":"Office%20Use%20Payment","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":96.93891875000001,"y":9.815212500000001,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":10.793300000000002,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.994125000000002,"y":10.793300000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.758625000000002,"y":10.793300000000002,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.598750000000004,"y":10.793300000000002,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Compute","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":16.912750000000006,"y":10.793300000000002,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Your","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":20.325500000000005,"y":10.793300000000002,"w":7.001,"clr":-1,"A":"left","R":[{"T":"Underpayment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.34545125,"y":11.61045,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35157625,"y":11.61045,"w":40.18399999999999,"clr":-1,"A":"left","R":[{"T":"2013%20Income%20Tax%20Liability%20After%20Spouse%20Tax%20Adjustment%20and%20Tax%20Credits.%20See%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35157625,"y":12.17295,"w":24.399000000000004,"clr":-1,"A":"left","R":[{"T":"(If%20%24150%20or%20less%2C%20you%20are%20not%20required%20to%20file%20Form%20760C)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.56420125000001,"y":12.214950000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.34545125,"y":13.209450000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35157625,"y":13.209450000000004,"w":18.900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%2090%25%20of%20the%20Amount%20Shown%20on%20Line%201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.56420125000001,"y":13.209450000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.34545125,"y":14.521950000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35157625,"y":14.521950000000004,"w":31.95800000000001,"clr":-1,"A":"left","R":[{"T":"2012%20Income%20Tax%20Liability%20After%20Spouse%20Tax%20Adjustment%20and%20Tax%20Credits","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.56420125000001,"y":14.521950000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.34545125,"y":15.834450000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35157625,"y":15.834450000000004,"w":26.233000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Amount%20From%20Line%202%20or%20Line%203%2C%20Whichever%20is%20Less","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.56420125000001,"y":15.834450000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.34545125,"y":17.146950000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.35157625,"y":17.146950000000004,"w":38.514999999999986,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Number%20of%20Installment%20Periods%20for%20Which%20You%20Were%20Liable%20to%20Make%20Payments","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":82.56420125000001,"y":17.146950000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":22.447826250000006,"y":18.324450000000002,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Line","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":25.657076250000006,"y":18.324450000000002,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.803826250000007,"y":18.324450000000002,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Through","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":32.76170125,"y":18.324450000000002,"w":1.445,"clr":-1,"A":"left","R":[{"T":"14%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":35.130826250000005,"y":18.324450000000002,"w":4.556,"clr":-1,"A":"left","R":[{"T":"Complete","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":41.77757625,"y":18.324450000000002,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Each","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":45.44607625,"y":18.324450000000002,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Line","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":48.60170399999999,"y":18.324450000000002,"w":3.39,"clr":-1,"A":"left","R":[{"T":"Across","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":53.59433037499999,"y":18.324450000000002,"w":1.278,"clr":-1,"A":"left","R":[{"T":"All","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":55.73383037499999,"y":18.324450000000002,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Columns","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":61.99833037499999,"y":18.324450000000002,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Before","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":66.73520537499998,"y":18.324450000000002,"w":5.276999999999999,"clr":-1,"A":"left","R":[{"T":"Continuing","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":74.373330375,"y":18.324450000000002,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":76.053580375,"y":18.324450000000002,"w":2.1670000000000003,"clr":-1,"A":"left","R":[{"T":"Next","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":79.41545537499998,"y":18.324450000000002,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Line","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":55.0168875,"y":19.3292,"w":0.667,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":67.35338750000001,"y":19.3292,"w":0.667,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":79.6898875,"y":19.3292,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.06488750000001,"y":19.3292,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.258262500000013,"y":20.0682,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.436262500000014,"y":20.0682,"w":15.673,"clr":-1,"A":"left","R":[{"T":"Due%20Dates%20of%20Installment%20Payments","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":51.65226250000001,"y":20.0682,"w":5.503,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":63.45251250000002,"y":20.0682,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"June%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":75.71338750000002,"y":20.0682,"w":6.505000000000001,"clr":-1,"A":"left","R":[{"T":"Sept.%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":88.39363750000003,"y":20.0682,"w":6.0600000000000005,"clr":-1,"A":"left","R":[{"T":"Jan.%2015%2C%202014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.256887500000007,"y":20.8432,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":20.8432,"w":5.557000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20Liability%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":21.4057,"w":26.401000000000003,"clr":-1,"A":"left","R":[{"T":"(Divide%20the%20amount%20on%20Line%204%20by%20the%20number%20of%20installments%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":21.9682,"w":25.34800000000001,"clr":-1,"A":"left","R":[{"T":"reported%20on%20Line%205%20and%20enter%20the%20result%20in%20the%20appropriate%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":22.5307,"w":4.056,"clr":-1,"A":"left","R":[{"T":"columns)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.256887500000007,"y":23.556699999999996,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":23.556699999999996,"w":26.011000000000013,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Income%20Tax%20Withheld%20for%20Each%20Installment%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":9.256887500000007,"y":24.5827,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":24.5827,"w":26.233000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Overpayment%20Credit%20from%20Your%202012%20Income%20Tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":25.1452,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.492387500000007,"y":25.8952,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":25.8952,"w":11.173,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Amount%20of%20Any%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":28.025637500000006,"y":25.8952,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Timely","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":32.46276250000001,"y":25.8952,"w":11.561000000000003,"clr":-1,"A":"left","R":[{"T":"%20Payment%20Made%20for%20Each%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":26.4577,"w":20.175000000000008,"clr":-1,"A":"left","R":[{"T":"Installment%20Period%20in%20the%20Appropriate%20Column%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":27.0202,"w":14.562000000000001,"clr":-1,"A":"left","R":[{"T":"(Do%20not%20enter%20any%20late%20payments)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.594137500000006,"y":27.759200000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":27.759200000000003,"w":14.839000000000004,"clr":-1,"A":"left","R":[{"T":"Underpayment%20or%20%5BOverpayment%5D%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":28.321700000000003,"w":26.680000000000003,"clr":-1,"A":"left","R":[{"T":"(Subtract%20Lines%208%2C%209%20and%2010%20from%20Line%207.%20See%20instructions%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":28.884200000000003,"w":6.113000000000001,"clr":-1,"A":"left","R":[{"T":"overpayment)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.492387500000007,"y":29.6947,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":29.6947,"w":7.503000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20Payments%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":30.2572,"w":28.735000000000003,"clr":-1,"A":"left","R":[{"T":"(Enter%20the%20payments%20from%20the%20Late%20Payment%2FOverpayment%20Table%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.434887500000007,"y":30.8197,"w":23.622000000000003,"clr":-1,"A":"left","R":[{"T":"below%2C%20beginning%20with%20the%20earliest%20payment%20recorded.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":44.31251250000002,"y":30.8197,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.434887500000011,"y":31.382200000000005,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"enter","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":15.179012500000013,"y":31.382200000000005,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"more","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.923137500000017,"y":31.382200000000005,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"than","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":22.208012500000013,"y":31.382200000000005,"w":1.5,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.652762500000012,"y":31.382200000000005,"w":6.890000000000001,"clr":-1,"A":"left","R":[{"T":"underpayment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":34.50876250000002,"y":31.382200000000005,"w":0.889,"clr":-1,"A":"left","R":[{"T":"in","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":36.11338750000001,"y":31.382200000000005,"w":1.723,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":38.864762500000005,"y":31.382200000000005,"w":4.167,"clr":-1,"A":"left","R":[{"T":"column.)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":32.326637500000004,"y":32.1267,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":41.722012500000005,"y":32.1267,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.349637500000005,"y":33.0642,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.896512500000005,"y":33.0642,"w":6.168000000000001,"clr":-1,"A":"left","R":[{"T":"First%20Payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.14651250000001,"y":33.0642,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.24026250000001,"y":33.0642,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.349637500000005,"y":34.1892,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.8984362625,"y":34.1889,"w":7.615,"clr":-1,"A":"left","R":[{"T":"Second%20Payment","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#2b2e34","x":32.1484375,"y":34.1889,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.2421875,"y":34.1889,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.3515625,"y":35.3139,"w":0.778,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.898437500000002,"y":35.3139,"w":6.502000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20Payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.1484375,"y":35.3139,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.2421875,"y":35.3139,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.3515625,"y":36.4389,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.898437500000002,"y":36.4389,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"Fourth%20Payment","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":32.1484375,"y":36.4389,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.2421875,"y":36.4389,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.494312500000001,"y":37.3709,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.436812500000002,"y":37.3709,"w":6.8370000000000015,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Total%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":20.498062500000003,"y":37.3709,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Timely","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.8293125,"y":37.3709,"w":17.897,"clr":-1,"A":"left","R":[{"T":"%20Payments%20Made%20as%20of%20Each%20Installment%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.4368125,"y":37.9334,"w":16.73100000000001,"clr":-1,"A":"left","R":[{"T":"Due%20Date%20From%20Lines%208%2C%209%2C%2010%20and%2012%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":8.4948075,"y":39.2349,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.437307500000001,"y":39.2349,"w":12.840000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%2013%20from%20Line%207%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.437307500000001,"y":39.7974,"w":14.895000000000005,"clr":-1,"A":"left","R":[{"T":"(If%20the%20sum%20of%20all%20underpayments%20(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":35.0323075,"y":39.7974,"w":1.222,"clr":-1,"A":"left","R":[{"T":"do","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":37.45918250000001,"y":39.7974,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":40.40168250000001,"y":39.7974,"w":3.5010000000000003,"clr":-1,"A":"left","R":[{"T":"include","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":46.25093250000002,"y":39.7974,"w":1.723,"clr":-1,"A":"left","R":[{"T":"any","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.438682500000015,"y":40.3599,"w":8.39,"clr":-1,"A":"left","R":[{"T":"OVERPAYMENTS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":22.702682500000016,"y":40.3599,"w":19.954,"clr":-1,"A":"left","R":[{"T":")%20reported%20is%20%24150%20or%20less%2C%20stop%20here%3B%20you%20are%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.438682500000015,"y":40.9224,"w":27.07100000000001,"clr":-1,"A":"left","R":[{"T":"not%20subject%20to%20an%20addition%20to%20tax.%20%20If%20your%20underpayments%20total%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.438682500000015,"y":41.4849,"w":15.56400000000001,"clr":-1,"A":"left","R":[{"T":"more%20than%20%24150%2C%20proceed%20to%20Part%20II)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":84.86643250000003,"y":42.375400000000006,"w":4.944,"clr":-1,"A":"left","R":[{"T":"Continued","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":92.04668250000002,"y":42.375400000000006,"w":1.222,"clr":-1,"A":"left","R":[{"T":"on","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":94.10918250000002,"y":42.375400000000006,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Back","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":97.39405750000002,"y":42.375400000000006,"w":0.987,"clr":-1,"A":"left","R":[{"T":"%20g","S":-1,"TS":[2,11,0,0]}]},{"oc":"#2b2e34","x":28.784307500000008,"y":42.937900000000006,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Late","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":31.99355750000001,"y":42.937900000000006,"w":10.837000000000002,"clr":-1,"A":"left","R":[{"T":"Payment%2FOverpayment","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":47.27668250000001,"y":42.937900000000006,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Table","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":51.1486825,"y":42.937900000000006,"w":2.112,"clr":-1,"A":"left","R":[{"T":"(See","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":54.4349325,"y":42.937900000000006,"w":5.723,"clr":-1,"A":"left","R":[{"T":"Instructions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":62.6863075,"y":42.937900000000006,"w":1.333,"clr":-1,"A":"left","R":[{"T":"for","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":64.9014325,"y":42.937900000000006,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Lines","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":68.87518250000001,"y":42.937900000000006,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":70.70943249999999,"y":42.937900000000006,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":73.53643249999999,"y":42.937900000000006,"w":1.723,"clr":-1,"A":"left","R":[{"T":"12.)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.4296909375,"y":43.6329,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":31.547222187500005,"y":43.6329,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":54.6647534375,"y":43.6329,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":77.78228468750001,"y":43.6329,"w":7.726000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.430722187500002,"y":45.1329,"w":7.948,"clr":-1,"A":"left","R":[{"T":"Payment%20Amount%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":8.4296875,"y":45.732910000000004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":31.546840625000005,"y":45.13291125,"w":7.67,"clr":-1,"A":"left","R":[{"T":"Payment%20Amount","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":31.546875000000004,"y":45.732910000000004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":54.66406250000001,"y":45.13291125,"w":7.948,"clr":-1,"A":"left","R":[{"T":"%20Payment%20Amount","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":54.66406250000001,"y":45.732910000000004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":77.78128437500001,"y":45.13291125,"w":7.948,"clr":-1,"A":"left","R":[{"T":"Payment%20Amount%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":77.78125,"y":45.732910000000004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.6386128125,"y":46.51499999999999,"w":23.79100000000001,"clr":-1,"A":"left","R":[{"T":"VA.%20Dept.%20of%20Taxation%20%20%20760C%20%20%202601033%20%20%20(REV%2012%2F13)","S":51,"TS":[0,9,0,0],"RA":90}]},{"oc":"#2b2e34","x":11.4375044,"y":38.4959,"w":28.122,"clr":-1,"A":"left","R":[{"T":"(For%20ex.%2C%20in%20Column%20A%20enter%20all%20payments%20made%20by%20May%201%2C%202013)","S":-1,"TS":[0,10.68,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":112,"AM":1024,"x":60.724812500000006,"y":0.5925208333333387,"w":37.21076562500001,"h":1.2916666666666667,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPNAME","EN":0},"TI":113,"AM":1024,"x":6.226996875,"y":6.809270833333339,"w":61.09111250000001,"h":1.0104791666666604,"TU":"First Name, Middle Initial and Last Name (of Both If Joint) - OR - Name of Estate or Trust"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":114,"AM":1024,"x":67.933765625,"y":6.795583333333336,"w":28.60309375000001,"h":1.01047916666667,"TU":"Your Social Security Number or FEIN"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":115,"AM":1024,"x":67.91692187500001,"y":8.423083333333333,"w":28.694875000000003,"h":1.01047916666667,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":116,"AM":1024,"x":84.377046875,"y":11.923083333333333,"w":14.293125000000002,"h":1.1541666666666686,"TU":"1. 2012 Income Tax Liability After Spouse Tax Adjustment and Tax Credits. See instructions. (If $150 or less, you are not required to file Form 760C) 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":117,"AM":1024,"x":84.292484375,"y":13.235583333333333,"w":14.293125000000028,"h":1.1541666666666686,"TU":"2. Enter 90% of the Amount Shown on Line 1 2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":118,"AM":0,"x":84.292484375,"y":14.548083333333333,"w":14.293125000000028,"h":1.1541666666666686,"TU":"3. 2011 Income Tax Liability After Spouse Tax Adjustment and Tax Credits 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":119,"AM":1024,"x":84.292484375,"y":15.860583333333333,"w":14.293125000000028,"h":1.1541666666666686,"TU":"4. Enter the Amount From Line 2 or Line 3, Whichever is Less 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":120,"AM":0,"x":84.292484375,"y":17.173083333333334,"w":14.293125000000028,"h":1.1541666666666686,"TU":"5. Enter the Number of Installment Periods for Which You Were Liable to Make Payments 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":121,"AM":0,"x":49.47748437500001,"y":22.373083333333337,"w":11.900624999999996,"h":0.9741666666666617,"TU":"June 15, 2012_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":122,"AM":0,"x":61.852484375,"y":22.373083333333337,"w":11.900625000000002,"h":0.9741666666666617,"TU":"June 15, 2012_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7C","EN":0},"TI":123,"AM":0,"x":74.227484375,"y":22.373083333333337,"w":11.900625000000002,"h":0.9741666666666617,"TU":"Sept. 15, 2012_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7D","EN":0},"TI":124,"AM":0,"x":86.602484375,"y":22.373083333333337,"w":11.900625000000016,"h":0.9741666666666617,"TU":"Jan. 15, 2013_7. Tax Liability (Divide the amount on Line 4 by the number of installments reported on Line 5 and enter the result in the appropriate columns)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":125,"AM":0,"x":49.39498437500001,"y":23.765583333333336,"w":12.065625000000002,"h":0.9741666666666665,"TU":"May 1, 2012_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":126,"AM":0,"x":61.769984375,"y":23.765583333333336,"w":12.06562500000001,"h":0.9741666666666665,"TU":"June 15, 2012_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":127,"AM":0,"x":74.144984375,"y":23.765583333333336,"w":12.06562500000001,"h":0.9741666666666665,"TU":"Sept. 15, 2012_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8D","EN":0},"TI":128,"AM":0,"x":86.519984375,"y":23.765583333333336,"w":12.065625000000022,"h":0.9741666666666665,"TU":"Jan. 15, 2013_8. Enter the Income Tax Withheld for Each Installment Period"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":129,"AM":0,"x":49.39498437500001,"y":25.078083333333336,"w":12.065625000000002,"h":0.9741666666666665,"TU":"May 1, 2012_9. Enter the Overpayment Credit From Your 2011 Income Tax Return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":130,"AM":0,"x":61.769984375,"y":25.078083333333336,"w":12.06562500000001,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":131,"AM":0,"x":74.144984375,"y":25.078083333333336,"w":12.06562500000001,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9D","EN":0},"TI":132,"AM":0,"x":86.519984375,"y":25.078083333333336,"w":12.065625000000022,"h":0.9741666666666665,"TU":"Jan. 15, 2013_9. Enter the Overpayment Credit From Your 2011 Income Tax Return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":133,"AM":0,"x":49.436234375000005,"y":26.93058333333333,"w":11.983125,"h":0.9741666666666665,"TU":"May 1, 2012_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":134,"AM":0,"x":61.81123437500001,"y":26.93058333333333,"w":11.983124999999992,"h":0.9741666666666665,"TU":"May 1, 2012_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10C","EN":0},"TI":135,"AM":0,"x":74.18623437500001,"y":26.93058333333333,"w":11.983124999999992,"h":0.9741666666666665,"TU":"Sept. 15, 2012_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10D","EN":0},"TI":136,"AM":0,"x":86.56123437500001,"y":26.93058333333333,"w":11.983124999999992,"h":0.9741666666666665,"TU":"Jan. 15, 2013_10. Enter the Amount of Any Timely Payment Made for Each Installment Period in the Appropriate Column (Do not enter any late payments)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":137,"AM":1024,"x":49.436234375000005,"y":28.890583333333336,"w":11.983125,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":138,"AM":1024,"x":61.81123437500001,"y":28.890583333333336,"w":11.983124999999992,"h":0.9741666666666665,"TU":"June 15, 2012_11. Underpayment or [Overpayment] (Subtract Lines 8, 9 and 10 from Line 7. See instructions for overpayment)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C","EN":0},"TI":139,"AM":1024,"x":74.18623437500001,"y":28.890583333333336,"w":11.983124999999992,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11D","EN":0},"TI":140,"AM":1024,"x":86.56123437500001,"y":28.890583333333336,"w":11.983124999999992,"h":0.9741666666666665},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT1","EN":0},"TI":141,"AM":0,"x":28.817765625,"y":33.17058333333333,"w":10.044375000000004,"h":0.9741666666666617,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT1","EN":0},"TI":142,"AM":0,"x":39.061859375000004,"y":33.17058333333333,"w":10.044374999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A1","EN":0},"TI":143,"AM":0,"x":49.436234375000005,"y":33.17058333333333,"w":11.983125,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A2","EN":0},"TI":144,"AM":0,"x":61.81123437500001,"y":33.17058333333333,"w":11.983124999999992,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A3","EN":0},"TI":145,"AM":0,"x":74.18623437500001,"y":33.10808333333333,"w":11.983124999999992,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A4","EN":0},"TI":146,"AM":0,"x":86.56123437500001,"y":33.17058333333333,"w":11.983124999999992,"h":0.9741666666666617,"TU":"Jan. 15, 2013_Row_7"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT2","EN":0},"TI":147,"AM":0,"x":28.727703125,"y":34.29558333333333,"w":10.044375000000004,"h":0.9741666666666617,"TU":"Date","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT2","EN":0},"TI":148,"AM":0,"x":39.061859375000004,"y":34.29558333333333,"w":10.044374999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B1","EN":0},"TI":149,"AM":0,"x":49.374359375000004,"y":34.29558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B2","EN":0},"TI":150,"AM":0,"x":61.749359375000004,"y":34.29558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B3","EN":0},"TI":151,"AM":0,"x":74.12435937500001,"y":34.29558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B4","EN":0},"TI":152,"AM":0,"x":86.49935937500001,"y":34.29558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT3","EN":0},"TI":153,"AM":0,"x":28.727703125,"y":35.42058333333333,"w":10.044375000000004,"h":0.9741666666666617,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT3","EN":0},"TI":154,"AM":0,"x":39.136796875,"y":35.447833333333335,"w":10.044374999999997,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C1","EN":0},"TI":155,"AM":0,"x":49.374359375000004,"y":35.42058333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C2","EN":0},"TI":156,"AM":0,"x":61.749359375000004,"y":35.42058333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C3","EN":0},"TI":157,"AM":0,"x":74.12435937500001,"y":35.42058333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12C4","EN":0},"TI":158,"AM":0,"x":86.49935937500001,"y":35.42058333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L12DT4","EN":0},"TI":159,"AM":0,"x":28.727703125,"y":36.54558333333333,"w":10.044375000000004,"h":0.9741666666666617,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12AT4","EN":0},"TI":160,"AM":0,"x":39.061859375000004,"y":36.54558333333333,"w":10.044374999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D1","EN":0},"TI":161,"AM":0,"x":49.374359375000004,"y":36.54558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D2","EN":0},"TI":162,"AM":0,"x":61.749359375000004,"y":36.54558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D3","EN":0},"TI":163,"AM":0,"x":74.12435937500001,"y":36.54558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12D4","EN":0},"TI":164,"AM":0,"x":86.49935937500001,"y":36.54558333333333,"w":12.106874999999997,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":165,"AM":0,"x":49.436234375000005,"y":38.40558333333333,"w":11.983125,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":166,"AM":0,"x":61.81123437500001,"y":38.40558333333333,"w":11.983124999999992,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13C","EN":0},"TI":167,"AM":0,"x":74.18623437500001,"y":38.40558333333333,"w":11.983124999999992,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13D","EN":0},"TI":168,"AM":0,"x":86.56123437500001,"y":38.40558333333333,"w":11.983124999999992,"h":0.9741666666666665},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14A","EN":0},"TI":169,"AM":1024,"x":49.47748437500001,"y":41.388083333333334,"w":11.900624999999996,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":170,"AM":1024,"x":61.852484375,"y":41.388083333333334,"w":11.900625000000002,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14C","EN":0},"TI":171,"AM":1024,"x":74.227484375,"y":41.388083333333334,"w":11.900625000000002,"h":0.9741666666666617},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14D","EN":0},"TI":172,"AM":1024,"x":86.602484375,"y":41.388083333333334,"w":11.900625000000016,"h":0.9741666666666617},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT3","EN":0},"TI":173,"AM":0,"x":8.169373437500001,"y":44.50197708333334,"w":22.7662359375,"h":0.8377979166666686,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT4","EN":0},"TI":174,"AM":0,"x":31.23690625,"y":44.505608333333335,"w":22.991203125000006,"h":0.8378041666666624,"TU":"Date of Payment","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT5","EN":0},"TI":175,"AM":0,"x":54.435218750000004,"y":44.505608333333335,"w":22.89289062499999,"h":0.8378041666666624,"TU":"Date of Payment","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DAT6","EN":0},"TI":176,"AM":0,"x":77.65810937500001,"y":44.505608333333335,"w":21.078750000000007,"h":0.8378041666666624,"TU":"Date of Payment","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY1","EN":0},"TI":177,"AM":0,"x":9.429371875000001,"y":46.005608333333335,"w":21.5062375,"h":0.8378041666666624,"TU":"Payment Amount $"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY2","EN":0},"TI":178,"AM":0,"x":32.72190625,"y":46.005608333333335,"w":21.506203125000006,"h":0.8378041666666624,"TU":"Payment Amount $"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY3","EN":0},"TI":179,"AM":0,"x":55.821906250000005,"y":46.005608333333335,"w":21.506203124999992,"h":0.8378041666666624,"TU":"Payment Amount $"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAY4","EN":0},"TI":180,"AM":0,"x":78.850578125,"y":46.005608333333335,"w":19.886281250000014,"h":0.8378041666666624,"TU":"Payment Amount $"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":7.382031250000002,"y":6.069625000000002,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":6.069625000000002,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":6.069625000000002,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":7.382031250000002,"y":7.308624999999997,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":7.308624999999997,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":7.308624999999997,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":7.308624999999997,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":7.308624999999997,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":7.308624999999997,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":7.308624999999997,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":7.308624999999997,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":7.308624999999997,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":7.308624999999997,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":7.382031250000002,"y":8.547687500000004,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":8.547687500000004,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":8.547687500000004,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":8.547687500000004,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":8.547687500000004,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":8.547687500000004,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":8.547687500000004,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":8.547687500000004,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":8.547687500000004,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":8.547687500000004,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":7.382031250000002,"y":10.3491875,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":10.3491875,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":10.3491875,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":10.3491875,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":10.3491875,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":10.3491875,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":10.3491875,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":10.3491875,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":10.3491875,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":10.3491875,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":55.0570625,"y":12.775687499999995,"w":0.75,"l":11.042968750000007},{"oc":"#2b2e34","x":66.10003125000001,"y":12.775687499999995,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":12.775687499999995,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":55.10003125,"y":13.452187499999999,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":13.452187499999999,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":13.452187499999999,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":14.327187499999999,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":14.327187499999999,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":14.327187499999999,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":14.327187499999999,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":14.327187499999999,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":16.128749999999997,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":16.128749999999997,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":16.128749999999997,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":16.128749999999997,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":16.128749999999997,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":17.36775,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":17.36775,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":17.36775,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":17.36775,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":17.36775,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":18.2570625,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":18.2570625,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":18.2570625,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":18.2570625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":18.2570625,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":19.496062500000004,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":19.496062500000004,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":19.496062500000004,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":19.496062500000004,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":19.496062500000004,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":20.735125,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":20.735125,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":20.735125,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":20.735125,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":20.735125,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":22.235125,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":22.235125,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":22.235125,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":22.235125,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":22.235125,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":55.0570625,"y":22.985125,"w":0.75,"l":11.042968750000007},{"oc":"#2b2e34","x":66.10003125000001,"y":22.985125,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":22.985125,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":55.10003125,"y":23.661625,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":23.661625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":23.661625,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":24.550812499999996,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":24.550812499999996,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":24.550812499999996,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":24.550812499999996,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":24.550812499999996,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":25.7898125,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":25.7898125,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":25.7898125,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":25.7898125,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":25.7898125,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":27.0288125,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":27.0288125,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":27.0288125,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":27.0288125,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":27.0288125,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":28.267875,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":28.267875,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":28.267875,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":28.267875,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":28.267875,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":29.506874999999997,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":29.506874999999997,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":29.506874999999997,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":29.506874999999997,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":29.506874999999997,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":11.099996875000002,"y":30.745875,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":30.745875,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":30.745875,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":30.745875,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":30.745875,"w":0.75,"l":11.04296875},{"oc":"#2b2e34","x":7.382031250000002,"y":31.6350625,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":31.6350625,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":31.6350625,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":31.6350625,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":31.6350625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":31.6350625,"w":0.75,"l":11},{"oc":"#2b2e34","x":55.0570625,"y":33.6350625,"w":0.75,"l":11.042968750000007},{"oc":"#2b2e34","x":66.10003125000001,"y":33.6350625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":33.6350625,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":33.6350625,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":33.6350625,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":33.6350625,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":33.6350625,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":7.382031250000002,"y":34.8740625,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":34.8740625,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":34.8740625,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":34.8740625,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":34.8740625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":34.8740625,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":34.8740625,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":34.8740625,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":34.8740625,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":34.8740625,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":7.382031250000002,"y":37.1865625,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":37.1865625,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":37.1865625,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":37.1865625,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":37.1865625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":37.1865625,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":37.1865625,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":37.1865625,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":37.1865625,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":37.1865625,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":7.382031250000002,"y":38.988125000000004,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":38.988125000000004,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":38.988125000000004,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":38.988125000000004,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":38.988125000000004,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":38.988125000000004,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":38.988125000000004,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":38.988125000000004,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":38.988125000000004,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":38.988125000000004,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":55.10003125,"y":40.789625,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":40.789625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":40.789625,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":40.789625,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":40.789625,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":40.789625,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":40.789625,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":11.099996875000002,"y":13.452187499999999,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":13.452187499999999,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":11.099996875000002,"y":23.661625,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":23.661625,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":7.382031250000002,"y":22.235125,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":89.08831250000001,"y":20.735125,"w":0.75,"l":5.762968749999995},{"oc":"#2b2e34","x":94.85128125,"y":20.735125,"w":0.75,"l":3.260468750000005},{"oc":"#2b2e34","x":89.08831250000001,"y":27.0288125,"w":0.75,"l":5.762968749999995},{"oc":"#2b2e34","x":94.85128125,"y":27.0288125,"w":0.75,"l":3.260468750000005},{"oc":"#2b2e34","x":89.08831250000001,"y":13.452187499999999,"w":0.75,"l":5.762968749999995},{"oc":"#2b2e34","x":94.85128125,"y":13.452187499999999,"w":0.75,"l":3.260468750000005},{"oc":"#2b2e34","x":89.08831250000001,"y":19.496062500000004,"w":0.75,"l":5.762968749999995},{"oc":"#2b2e34","x":94.85128125,"y":19.496062500000004,"w":0.75,"l":3.260468750000005},{"oc":"#2b2e34","x":88.10003125000001,"y":31.6350625,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":31.6350625,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":31.6350625,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":31.6350625,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":55.0570625,"y":4.830624999999998,"w":0.75,"l":11.042968750000007},{"oc":"#2b2e34","x":66.10003125000001,"y":4.830624999999998,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":4.830624999999998,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":4.830624999999998,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":4.830624999999998,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":4.830624999999998,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":4.830624999999998,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":55.10003125,"y":6.069625000000002,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":6.069625000000002,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":6.069625000000002,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":6.069625000000002,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":6.069625000000002,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":6.069625000000002,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":6.069625000000002,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":11.099996875000002,"y":40.789625,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":40.789625,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":7.382031250000002,"y":40.789625,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":7.382031250000002,"y":45.363756249999994,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":45.363756249999994,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":45.363756249999994,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":45.363756249999994,"w":0.75,"l":10.871093750000007},{"oc":"#2b2e34","x":65.97112500000001,"y":45.363756249999994,"w":2.25,"l":11.12890625},{"oc":"#2b2e34","x":77.10003125000001,"y":45.363756249999994,"w":2.25,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":45.363756249999994,"w":2.25,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":45.363756249999994,"w":2.25,"l":5.848906249999995},{"oc":"#2b2e34","x":7.382031250000002,"y":42.028625,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":42.028625,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":42.028625,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":42.028625,"w":0.75,"l":11.000000000000007},{"oc":"#2b2e34","x":66.10003125000001,"y":42.028625,"w":0.75,"l":11},{"oc":"#2b2e34","x":77.10003125000001,"y":42.028625,"w":0.75,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":42.028625,"w":0.75,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":42.028625,"w":0.75,"l":5.719999999999995},{"oc":"#2b2e34","x":94.85128125,"y":42.028625,"w":0.75,"l":3.217500000000005},{"oc":"#2b2e34","x":98.06878125000001,"y":42.028625,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":7.382031250000002,"y":42.917812500000004,"w":0.75,"l":3.7180000000000013},{"oc":"#2b2e34","x":11.099996875000002,"y":42.917812500000004,"w":0.75,"l":32.140625},{"oc":"#2b2e34","x":43.24065625,"y":42.917812500000004,"w":0.75,"l":11.859375},{"oc":"#2b2e34","x":55.10003125,"y":42.917812500000004,"w":0.75,"l":10.871093750000007},{"oc":"#2b2e34","x":94.9801875,"y":42.917812500000004,"w":0.75,"l":3.088593750000005},{"oc":"#2b2e34","x":98.06878125000001,"y":42.917812500000004,"w":0.75,"l":1.07421875},{"oc":"#2b2e34","x":65.97112500000001,"y":42.917812500000004,"w":2.25,"l":11.12890625},{"oc":"#2b2e34","x":77.10003125000001,"y":42.917812500000004,"w":2.25,"l":11},{"oc":"#2b2e34","x":88.10003125000001,"y":42.917812500000004,"w":2.25,"l":1.03125},{"oc":"#2b2e34","x":89.13128125000001,"y":42.917812500000004,"w":2.25,"l":5.848906249999995}],"VLines":[{"clr":1,"x":88.10003125000001,"y":42.964724999999994,"w":0.75,"l":1.7233750000000043},{"clr":1,"x":88.10003125000001,"y":44.68813125,"w":0.75,"l":0.6287499999999966},{"oc":"#2b2e34","x":7.425000000000002,"y":6.085249999999998,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":55.10003125,"y":6.085249999999998,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":6.085249999999998,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":6.085249999999998,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":6.085249999999998,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":6.085249999999998,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":7.324312500000005,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":43.24065625,"y":7.324312500000005,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":55.10003125,"y":7.324312500000005,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":7.324312500000005,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":7.324312500000005,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":7.324312500000005,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":7.324312500000005,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":8.5633125,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":43.24065625,"y":8.5633125,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":55.10003125,"y":8.5633125,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":8.5633125,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":8.5633125,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":8.5633125,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":8.5633125,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":10.364812499999994,"w":0.75,"l":2.4108749999999994},{"oc":"#2b2e34","x":99.10003125000001,"y":10.364812499999994,"w":0.75,"l":2.4108749999999994},{"oc":"#2b2e34","x":7.425000000000002,"y":12.775687499999998,"w":0.75,"l":0.6764999999999995},{"oc":"#2b2e34","x":55.10003125,"y":12.791312499999998,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":66.10003125000001,"y":12.791312499999998,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":77.10003125000001,"y":12.791312499999998,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":88.10003125000001,"y":12.791312499999998,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":99.10003125000001,"y":12.775687499999998,"w":0.75,"l":0.6764999999999995},{"oc":"#2b2e34","x":7.425000000000002,"y":13.452187499999999,"w":0.75,"l":0.875},{"oc":"#2b2e34","x":55.10003125,"y":13.467812499999999,"w":0.75,"l":0.84375},{"oc":"#2b2e34","x":66.10003125000001,"y":13.467812499999999,"w":0.75,"l":0.84375},{"oc":"#2b2e34","x":77.10003125000001,"y":13.467812499999999,"w":0.75,"l":0.84375},{"oc":"#2b2e34","x":7.425000000000002,"y":14.327249999999998,"w":0.75,"l":1.8014999999999997},{"oc":"#2b2e34","x":55.10003125,"y":14.342874999999998,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":14.342874999999998,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":14.342874999999998,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":16.12875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":16.144375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":16.144375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":16.144375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":17.367749999999997,"w":0.75,"l":0.8893125000000003},{"oc":"#2b2e34","x":55.10003125,"y":17.383374999999997,"w":0.75,"l":0.8580625000000003},{"oc":"#2b2e34","x":66.10003125000001,"y":17.383374999999997,"w":0.75,"l":0.8580625000000003},{"oc":"#2b2e34","x":77.10003125000001,"y":17.383374999999997,"w":0.75,"l":0.8580625000000003},{"oc":"#2b2e34","x":7.425000000000002,"y":18.257062500000004,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":18.272687500000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":18.272687500000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":18.272687500000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":19.496125000000003,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":19.511750000000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":19.511750000000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":19.511750000000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":19.511750000000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":20.735125,"w":0.75,"l":1.484375},{"oc":"#2b2e34","x":55.10003125,"y":20.75075,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":66.10003125000001,"y":20.75075,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":77.10003125000001,"y":20.75075,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":7.425000000000002,"y":22.25075,"w":0.75,"l":0.734375},{"oc":"#2b2e34","x":7.425000000000002,"y":22.985125,"w":0.75,"l":0.6764999999999995},{"oc":"#2b2e34","x":55.10003125,"y":23.00075,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":66.10003125000001,"y":23.00075,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":77.10003125000001,"y":23.00075,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":7.425000000000002,"y":23.661624999999997,"w":0.75,"l":0.8891875000000008},{"oc":"#2b2e34","x":55.10003125,"y":23.677249999999997,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":66.10003125000001,"y":23.677249999999997,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":77.10003125000001,"y":23.677249999999997,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":7.425000000000002,"y":24.550812500000003,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":24.566437500000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":24.566437500000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":24.566437500000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":25.7898125,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":25.8054375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":25.8054375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":25.8054375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":27.028875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":27.0445,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":27.0445,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":27.0445,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":27.0445,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":28.267875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":28.2835,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":28.2835,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":28.2835,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":28.2835,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":29.506875000000004,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":55.10003125,"y":29.522500000000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":29.522500000000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":29.522500000000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":29.522500000000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":30.745874999999998,"w":0.75,"l":0.8735625000000008},{"oc":"#2b2e34","x":55.10003125,"y":30.761499999999998,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":66.10003125000001,"y":30.761499999999998,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":77.10003125000001,"y":30.761499999999998,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":88.10003125000001,"y":30.761499999999998,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":55.10003125,"y":33.6506875,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":33.6506875,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":33.6506875,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":33.6506875,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":33.6506875,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":7.347656078125002,"y":34.92110625,"w":0.75,"l":2.157737500000001},{"oc":"#2b2e34","x":55.043005359375,"y":34.899525,"w":0.75,"l":2.200893750000001},{"oc":"#2b2e34","x":66.12894285937502,"y":34.899525,"w":0.75,"l":2.200893750000001},{"oc":"#2b2e34","x":77.08597410937502,"y":34.8755375,"w":0.75,"l":2.4363687499999997},{"oc":"#2b2e34","x":88.04300535937502,"y":34.87644375,"w":0.75,"l":2.52830625},{"oc":"#2b2e34","x":99.12894285937502,"y":34.92110625,"w":0.75,"l":2.157737500000001},{"oc":"#2b2e34","x":7.425000000000002,"y":37.20225,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":55.10003125,"y":37.20225,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":37.20225,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":37.20225,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":37.20225,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":37.20225,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":39.003750000000004,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":55.10003125,"y":39.003750000000004,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":39.003750000000004,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":39.003750000000004,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":39.003750000000004,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":39.003750000000004,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":7.425000000000002,"y":40.80525,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":55.10003125,"y":40.80525,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":66.10003125000001,"y":40.80525,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":77.10003125000001,"y":40.80525,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":40.80525,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":40.80525,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":55.10003125,"y":42.04425,"w":0.75,"l":0.8579375000000056},{"oc":"#2b2e34","x":66.10003125000001,"y":42.04425,"w":0.75,"l":0.8266875000000056},{"oc":"#2b2e34","x":77.10003125000001,"y":42.04425,"w":0.75,"l":0.8266875000000056},{"oc":"#2b2e34","x":88.10003125000001,"y":42.04425,"w":0.75,"l":0.8266875000000056},{"oc":"#2b2e34","x":99.10003125000001,"y":13.452187499999999,"w":0.75,"l":0.875},{"oc":"#2b2e34","x":99.10003125000001,"y":14.327249999999998,"w":0.75,"l":1.8014999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":16.12875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":17.367749999999997,"w":0.75,"l":0.8893125000000003},{"oc":"#2b2e34","x":99.10003125000001,"y":18.257062500000004,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":19.496125000000003,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":20.735125,"w":0.75,"l":1.5},{"oc":"#2b2e34","x":99.10003125000001,"y":22.235125,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":99.10003125000001,"y":22.985125,"w":0.75,"l":0.6764999999999995},{"oc":"#2b2e34","x":99.10003125000001,"y":23.661624999999997,"w":0.75,"l":0.8891875000000008},{"oc":"#2b2e34","x":99.10003125000001,"y":24.550812500000003,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":25.7898125,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":89.13128125000001,"y":20.75075,"w":0.75,"l":1.484375},{"oc":"#2b2e34","x":98.06878125000001,"y":20.75075,"w":0.75,"l":1.484375},{"oc":"#2b2e34","x":89.13128125000001,"y":22.235125,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":98.06878125000001,"y":22.235125,"w":0.75,"l":0.75},{"oc":"#2b2e34","x":89.13128125000001,"y":22.985125,"w":0.75,"l":0.6764999999999995},{"oc":"#2b2e34","x":98.06878125000001,"y":22.985125,"w":0.75,"l":0.6764999999999995},{"oc":"#2b2e34","x":89.13128125000001,"y":23.661624999999997,"w":0.75,"l":0.8891875000000008},{"oc":"#2b2e34","x":98.06878125000001,"y":23.661624999999997,"w":0.75,"l":0.8891875000000008},{"oc":"#2b2e34","x":89.13128125000001,"y":24.550812500000003,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":98.06878125000001,"y":24.550812500000003,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":89.13128125000001,"y":25.7898125,"w":0.75,"l":1.2233749999999997},{"oc":"#2b2e34","x":98.06878125000001,"y":25.7898125,"w":0.75,"l":1.2233749999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":20.75075,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":88.10003125000001,"y":22.25075,"w":0.75,"l":0.71875},{"oc":"#2b2e34","x":88.10003125000001,"y":23.00075,"w":0.75,"l":0.6452499999999995},{"oc":"#2b2e34","x":88.10003125000001,"y":23.677249999999997,"w":0.75,"l":0.8579375000000008},{"oc":"#2b2e34","x":88.10003125000001,"y":24.566437500000003,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":25.8054375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":89.13128125000001,"y":13.467812499999999,"w":0.75,"l":0.859375},{"oc":"#2b2e34","x":98.06878125000001,"y":13.467812499999999,"w":0.75,"l":0.859375},{"oc":"#2b2e34","x":89.13128125000001,"y":14.327249999999998,"w":0.75,"l":1.8014999999999997},{"oc":"#2b2e34","x":98.06878125000001,"y":14.327249999999998,"w":0.75,"l":1.8014999999999997},{"oc":"#2b2e34","x":89.13128125000001,"y":16.12875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":98.06878125000001,"y":16.12875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":89.13128125000001,"y":17.367749999999997,"w":0.75,"l":0.8893125000000003},{"oc":"#2b2e34","x":98.06878125000001,"y":17.367749999999997,"w":0.75,"l":0.8893125000000003},{"oc":"#2b2e34","x":89.13128125000001,"y":18.257062500000004,"w":0.75,"l":1.2233749999999997},{"oc":"#2b2e34","x":98.06878125000001,"y":18.257062500000004,"w":0.75,"l":1.2233749999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":13.467812499999999,"w":0.75,"l":0.84375},{"oc":"#2b2e34","x":88.10003125000001,"y":14.342874999999998,"w":0.75,"l":1.7702499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":16.144375,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":88.10003125000001,"y":17.383374999999997,"w":0.75,"l":0.8580625000000003},{"oc":"#2b2e34","x":88.10003125000001,"y":18.272687500000004,"w":0.75,"l":1.2077499999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":27.028875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":28.267875,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":29.506875000000004,"w":0.75,"l":1.2389999999999997},{"oc":"#2b2e34","x":99.10003125000001,"y":30.745874999999998,"w":0.75,"l":0.8735625000000008},{"oc":"#2b2e34","x":55.10003125,"y":4.846250000000002,"w":0.75,"l":1.20775},{"oc":"#2b2e34","x":66.10003125000001,"y":4.846250000000002,"w":0.75,"l":1.20775},{"oc":"#2b2e34","x":77.10003125000001,"y":4.846250000000002,"w":0.75,"l":1.20775},{"oc":"#2b2e34","x":88.10003125000001,"y":4.846250000000002,"w":0.75,"l":1.20775},{"oc":"#2b2e34","x":99.10003125000001,"y":4.846250000000002,"w":0.75,"l":1.20775},{"oc":"#2b2e34","x":7.425000000000002,"y":42.933474999999994,"w":0.75,"l":1.7546250000000043},{"oc":"#2b2e34","x":7.425000000000002,"y":44.68813125,"w":0.75,"l":0.6599999999999966},{"dsh":1,"oc":"#2b2e34","x":88.10003125000001,"y":43.087812500000005,"w":0.75,"l":1.4156249999999961},{"dsh":1,"oc":"#2b2e34","x":88.10003125000001,"y":44.792868750000004,"w":0.75,"l":0.3668124999999994},{"oc":"#2b2e34","x":66.10003125000001,"y":42.964724999999994,"w":2.25,"l":1.7233750000000043},{"oc":"#2b2e34","x":94.85128125,"y":42.964724999999994,"w":2.25,"l":1.7233750000000043},{"oc":"#2b2e34","x":66.10003125000001,"y":44.68813125,"w":2.25,"l":0.6287499999999966},{"oc":"#2b2e34","x":94.85128125,"y":44.68813125,"w":2.25,"l":0.6287499999999966},{"oc":"#2b2e34","x":7.425000000000002,"y":42.04425,"w":0.75,"l":0.8579375000000056},{"oc":"#2b2e34","x":99.10003125000001,"y":42.04425,"w":0.75,"l":0.8579375000000056}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":77.10003125000001,"y":38.988125000000004,"w":11,"h":1.8014999999999997,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.9375034375,"y":2.1370000000000005,"w":5.503,"clr":-1,"A":"left","R":[{"T":"760C%20-%202013","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":2.737000000000004,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Page","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":9.606000000000003,"y":2.737000000000004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":5.91719125,"y":4.6009000000000055,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.97381625,"y":4.6009000000000055,"w":0.556,"clr":-1,"A":"left","R":[{"T":"II","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.120566250000001,"y":4.6009000000000055,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.960691250000002,"y":4.6009000000000055,"w":5.335,"clr":-1,"A":"left","R":[{"T":"Exceptions","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.678566250000006,"y":4.6009000000000055,"w":2.111,"clr":-1,"A":"left","R":[{"T":"That","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":21.963441250000006,"y":4.6009000000000055,"w":2.167,"clr":-1,"A":"left","R":[{"T":"Void","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":25.22219125,"y":4.6009000000000055,"w":1.5,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":27.614688500000003,"y":4.6009000000000055,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Addition","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":33.5725635,"y":4.6009000000000055,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":35.252813499999995,"y":4.6009000000000055,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":59.8543135,"y":4.6009000000000055,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":56.566688500000005,"y":5.1634000000000055,"w":5.503,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.8543135,"y":4.6009000000000055,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":66.9933135,"y":5.1634000000000055,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"June%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":81.8543135,"y":4.6009000000000055,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":77.8778135,"y":5.1634000000000055,"w":6.505000000000001,"clr":-1,"A":"left","R":[{"T":"Sept.%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.8543135,"y":4.6009000000000055,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":89.1844385,"y":5.1634000000000055,"w":6.0600000000000005,"clr":-1,"A":"left","R":[{"T":"Jan.%2015%2C%202014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.605688500000002,"y":5.8399,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281063500000002,"y":5.8399,"w":29.682000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20Amount%20Paid%20and%20Withheld%20from%20January%201%2C%202013%20through%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281063500000002,"y":6.4024,"w":11.561,"clr":-1,"A":"left","R":[{"T":"Installment%20Date%20Indicated","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.605688500000002,"y":7.078899999999995,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281063500000002,"y":7.078899999999995,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.234438500000003,"y":7.078899999999995,"w":0.889,"clr":-1,"A":"left","R":[{"T":"1%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.456813500000003,"y":7.078899999999995,"w":7.415000000000001,"clr":-1,"A":"left","R":[{"T":"%20Prior%20Year's%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279681900000002,"y":7.6413999999999955,"w":23.456000000000007,"clr":-1,"A":"left","R":[{"T":"(Multiply%20the%202012%20tax%20by%20the%20percentage%20in%20each%20col.)","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#2b2e34","x":43.4286625,"y":7.078899999999995,"w":8.116,"clr":-1,"A":"left","R":[{"T":"100%25%20of%202012%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.97441250000001,"y":7.078899999999995,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"25%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.97441250000001,"y":7.078899999999995,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"50%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":80.97441250000001,"y":7.078899999999995,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"75%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.5921625,"y":7.078899999999995,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"100%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.605787499999987,"y":8.317899999999995,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281162499999986,"y":8.317899999999995,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.234537499999988,"y":8.317899999999995,"w":0.889,"clr":-1,"A":"left","R":[{"T":"2%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.456912499999987,"y":8.317899999999995,"w":17.142000000000003,"clr":-1,"A":"left","R":[{"T":"%20Tax%20on%20Prior%20Year's%20Income%20Using%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.281162499999986,"y":8.880399999999995,"w":12.840000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20Rates%20and%20Exemptions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279681900000002,"y":9.442950000000005,"w":23.456000000000007,"clr":-1,"A":"left","R":[{"T":"(Multiply%20the%202012%20tax%20by%20the%20percentage%20in%20each%20col.)","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#2b2e34","x":45.14920000000001,"y":8.317950000000005,"w":5.614000000000001,"clr":-1,"A":"left","R":[{"T":"100%25%20of%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.973450000000014,"y":8.317950000000005,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"25%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.97345000000001,"y":8.317950000000005,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"50%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":80.97345000000001,"y":8.317950000000005,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"75%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.5912,"y":8.317950000000005,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"100%25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.604824999999994,"y":10.11945,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.280199999999994,"y":10.11945,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.233574999999995,"y":10.11945,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.380325,"y":10.11945,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Worksheet%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.841074999999996,"y":10.11945,"w":51.52599999999993,"clr":-1,"A":"left","R":[{"T":"%20Tax%20on%20Annualized%202013%20Income%20%20(Use%20the%20formula%20below%20to%20compute%20the%20amount%20on%20lines%2018a%2C%20b%20and%20c%20for%20each%20col.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.280199999999995,"y":10.74445,"w":8.450000000000001,"clr":-1,"A":"left","R":[{"T":"Lines%2018a%2C%20b%20and%20c%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.842699999999997,"y":10.74445,"w":7.447000000000001,"clr":-1,"A":"left","R":[{"T":"April%2030%20column%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.24895,"y":10.74445,"w":30.01600000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20actual%20amount%20for%20the%20period%20ended%20April%2030%2C%202013%2C%20by%203.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.842699999999997,"y":11.30695,"w":7.336000000000002,"clr":-1,"A":"left","R":[{"T":"May%2031%20column%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.24895,"y":11.30695,"w":30.739000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20actual%20amount%20for%20the%20period%20ended%20May%2031%2C%202013%2C%20by%202.4.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.842699999999997,"y":11.86945,"w":8.560000000000002,"clr":-1,"A":"left","R":[{"T":"August%2031%20column%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":43.24895000000001,"y":11.86945,"w":31.963000000000008,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20actual%20amount%20for%20the%20period%20ended%20August%2031%2C%202013%2C%20by%201.5.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":42.881825,"y":12.545949999999996,"w":8.392000000000001,"clr":-1,"A":"left","R":[{"T":"From%20January%201%20to%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.019200000000005,"y":12.545949999999996,"w":3.39,"clr":-1,"A":"left","R":[{"T":"April%2030","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.0962,"y":12.545949999999996,"w":3.279,"clr":-1,"A":"left","R":[{"T":"May%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":79.2547,"y":12.545949999999996,"w":4.503,"clr":-1,"A":"left","R":[{"T":"August%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194949999999999,"y":13.321945,"w":1.112,"clr":-1,"A":"left","R":[{"T":"a.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741825,"y":13.321945,"w":29.734,"clr":-1,"A":"left","R":[{"T":"Annualized%20Virginia%20Adjusted%20Gross%20Income%20(VAGI)%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":91.63128125000001,"y":13.678912500000001,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":90.77121256250001,"y":14.428725,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Estates%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.95447493750001,"y":15.053662499999996,"w":4.6690000000000005,"clr":-1,"A":"left","R":[{"T":"and%20trusts%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.60951717187501,"y":15.6786,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"should%20use%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.95291723437501,"y":16.303537499999994,"w":4.67,"clr":-1,"A":"left","R":[{"T":"end%20dates%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.34119368750001,"y":16.92847499999999,"w":4.168000000000001,"clr":-1,"A":"left","R":[{"T":"of%20March%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.47957967187502,"y":17.553412499999993,"w":5.336,"clr":-1,"A":"left","R":[{"T":"31%2C%20April%2030%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.95291723437501,"y":18.17834999999999,"w":4.391,"clr":-1,"A":"left","R":[{"T":"%26%20July%2031.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.19375375,"y":14.09745,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":14.09745,"w":29.01200000000001,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20Annualized%20Itemized%20Deductions%20Using%20the%20Formula%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":14.65995,"w":3.113,"clr":-1,"A":"left","R":[{"T":"Above%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":17.021003750000002,"y":14.65995,"w":1.5,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.083503750000002,"y":14.65995,"w":25.790000000000013,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20Full%20Standard%20Deduction%20in%20Each%20Column%20if%20You%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":15.22245,"w":15.504000000000005,"clr":-1,"A":"left","R":[{"T":"Did%20Not%20Claim%20Itemized%20Deductions","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.19375375,"y":15.89895,"w":0.778,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":15.89895,"w":29.960000000000015,"clr":-1,"A":"left","R":[{"T":"Compute%20the%20Annualized%20Child%20and%20Dependent%20Care%20Expenses%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":16.46145,"w":14.951000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20Deductions%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.19375375,"y":17.24445,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":17.24445,"w":2.389,"clr":-1,"A":"left","R":[{"T":"Total","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":15.923753750000003,"y":17.24445,"w":24.231000000000005,"clr":-1,"A":"left","R":[{"T":"%20Dollar%20Amount%20of%20Exemptions%20Claimed%20on%20Your%20Return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.19375375,"y":18.02745,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":18.02745,"w":11.004000000000003,"clr":-1,"A":"left","R":[{"T":"Virginia%20Taxable%20Income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":18.58995,"w":19.232000000000006,"clr":-1,"A":"left","R":[{"T":"(Subtract%20Lines%2018b%2C%20c%20and%20d%20from%20Line%2018a)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.19375375,"y":19.266450000000003,"w":0.556,"clr":-1,"A":"left","R":[{"T":"f.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":19.266450000000003,"w":5.279,"clr":-1,"A":"left","R":[{"T":"Virginia%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.740618300000001,"y":19.82885,"w":26.511000000000006,"clr":-1,"A":"left","R":[{"T":"(Enter%20the%20Virginia%20income%20tax%20for%20the%20amount(s)%20on%20line%2018e)","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#2b2e34","x":11.19375375,"y":20.505350000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"g.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":20.505350000000004,"w":26.124000000000013,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%2018f%20by%20the%20Percentage%20Shown%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.6442921875,"y":20.45985,"w":2.835,"clr":-1,"A":"left","R":[{"T":"22.5%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":70.1461671875,"y":20.45985,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"45%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":80.64462390625,"y":20.45985,"w":2.835,"clr":-1,"A":"left","R":[{"T":"67.5%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#2b2e34","x":91.63128125000001,"y":21.399224999999998,"w":2.222,"clr":-1,"A":"left","R":[{"T":"Note","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":89.566203125,"y":22.149037499999995,"w":5.1690000000000005,"clr":-1,"A":"left","R":[{"T":"Exceptions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.69459993750002,"y":22.773974999999997,"w":5.004,"clr":-1,"A":"left","R":[{"T":"3%20and%204%20do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.35119368750001,"y":23.398912499999994,"w":5.448,"clr":-1,"A":"left","R":[{"T":"not%20apply%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.08287020312501,"y":24.023849999999992,"w":4.503,"clr":-1,"A":"left","R":[{"T":"the%20fourth%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.65437964062501,"y":24.648787499999994,"w":5.057,"clr":-1,"A":"left","R":[{"T":"installment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.986239015625,"y":25.27372499999999,"w":3.057,"clr":-1,"A":"left","R":[{"T":"period.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.604687500000002,"y":22.005350000000004,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.280062500000001,"y":22.005350000000004,"w":4.779,"clr":-1,"A":"left","R":[{"T":"Exception","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":18.2334375,"y":22.005350000000004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":19.3801875,"y":22.005350000000004,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Worksheet%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.840937500000003,"y":22.005350000000004,"w":43.52299999999996,"clr":-1,"A":"left","R":[{"T":"%20Tax%20on%202013%20Income%20Over%20a%204%2C%205%20and%208%20Month%20Period*%20%20(*%203%2C%204%20and%207%20months%20for%20estates%20and%20trusts)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":42.881687500000005,"y":22.755350000000004,"w":8.392000000000001,"clr":-1,"A":"left","R":[{"T":"From%20January%201%20to%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":58.019062500000004,"y":22.755350000000004,"w":3.39,"clr":-1,"A":"left","R":[{"T":"April%2030","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":69.0960625,"y":22.755350000000004,"w":3.279,"clr":-1,"A":"left","R":[{"T":"May%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":79.2545625,"y":22.755350000000004,"w":4.503,"clr":-1,"A":"left","R":[{"T":"August%2031","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194812499999994,"y":23.538349999999998,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":23.538349999999998,"w":29.567000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20Your%20Virginia%20Adjusted%20Gross%20Income%20(VAGI)%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194812499999994,"y":24.321350000000006,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"b.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":24.321350000000006,"w":24.788000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Itemized%20Deductions%20Claimed%20for%20Each%20Period%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":46.8279375,"y":24.321350000000006,"w":1.5,"clr":-1,"A":"left","R":[{"T":"OR","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":48.8904375,"y":24.321350000000006,"w":1.445,"clr":-1,"A":"left","R":[{"T":"%20(If%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":24.883850000000006,"w":16.396000000000008,"clr":-1,"A":"left","R":[{"T":"Greater)%20the%20Full%20Standard%20Deduction","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194812499999994,"y":25.560350000000003,"w":0.778,"clr":-1,"A":"left","R":[{"T":"c.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":25.560350000000003,"w":25.84700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Child%20and%20Dependent%20Care%20Expenses%20and%20Other%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":26.122850000000003,"w":12.172000000000004,"clr":-1,"A":"left","R":[{"T":"Deductions%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194812499999994,"y":26.799350000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"d.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":26.799350000000004,"w":27.789000000000012,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20Total%20Dollar%20Amount%20of%20Exemptions%20Claimed%20on%20Your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":27.361850000000004,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194812499999994,"y":28.038350000000005,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":28.038350000000005,"w":10.726000000000003,"clr":-1,"A":"left","R":[{"T":"Virginia%20Taxable%20Income","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":28.600850000000005,"w":19.232000000000006,"clr":-1,"A":"left","R":[{"T":"(Subtract%20Lines%2019b%2C%20c%20and%20d%20from%20Line%2019a)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.194812499999994,"y":29.277350000000002,"w":0.556,"clr":-1,"A":"left","R":[{"T":"f.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.741687499999996,"y":29.277350000000002,"w":5.279,"clr":-1,"A":"left","R":[{"T":"Virginia%20Tax","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.740621599999999,"y":29.839649999999995,"w":26.845000000000006,"clr":-1,"A":"left","R":[{"T":"(Enter%20the%20Virginia%20income%20tax%20for%20the%20amount(s)%20on%20Line%2019e)","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":11.19375375,"y":30.6225,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"g.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":12.74062875,"y":30.6225,"w":20.342000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%2019f%20by%2090%25%20(.90)%20for%20Each%20Period","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":5.91650375,"y":31.604,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Part","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":8.97312875,"y":31.604,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"III","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":10.50212875,"y":31.604,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":11.342253750000001,"y":31.604,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Compute","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":17.68237875,"y":31.604,"w":1.5,"clr":-1,"A":"left","R":[{"T":"the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":20.074878750000003,"y":31.604,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Addition","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":26.032753750000005,"y":31.604,"w":0.944,"clr":-1,"A":"left","R":[{"T":"to","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":27.71300375,"y":31.604,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Tax","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":7.979003749999999,"y":32.1665,"w":65.2959999999999,"clr":-1,"A":"left","R":[{"T":"If%20an%20exception%20has%20been%20met%20(Part%20II)%20for%20any%20installment%20period%2C%20complete%20the%20column%20for%20that%20period%20as%20follows%3A%20write%20%22Exception%22%20and%20the%20exception%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.979003749999999,"y":32.729,"w":64.2429999999999,"clr":-1,"A":"left","R":[{"T":"number%20(1%2C%202%2C%203%2C%20or%204)%20on%20Line%2020%3B%20skip%20Lines%2021%20through%2023%3B%20and%20enter%20%220%22%20on%20Line%2024.%20For%20all%20other%20periods%2C%20complete%20each%20line%20as%20instructed%20below","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":96.24437875000001,"y":32.729,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":59.852253749999996,"y":33.405499999999996,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":56.564628750000004,"y":33.967999999999996,"w":5.503,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":70.85225375,"y":33.405499999999996,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":66.99125375000001,"y":33.967999999999996,"w":6.338000000000001,"clr":-1,"A":"left","R":[{"T":"June%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":81.85225375,"y":33.405499999999996,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":77.87575375,"y":33.967999999999996,"w":6.505000000000001,"clr":-1,"A":"left","R":[{"T":"Sept.%2015%2C%202013","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":92.85225375,"y":33.405499999999996,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":89.18237875000001,"y":33.967999999999996,"w":6.0600000000000005,"clr":-1,"A":"left","R":[{"T":"Jan.%2015%2C%202014","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.603628750000005,"y":35.525,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279003750000005,"y":35.525,"w":20.732,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20Underpayment%20from%20Part%20I%2C%20Line%2014%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.603628750000005,"y":36.957,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279003750000005,"y":36.957,"w":16.508000000000003,"clr":-1,"A":"left","R":[{"T":"Date%20of%20Payment%20from%20Part%20I%2C%20Line%2012%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279003750000005,"y":37.5195,"w":29.016999999999996,"clr":-1,"A":"left","R":[{"T":"(If%20no%20payments%20were%20entered%20on%20Line%2012%2C%20enter%20the%20actual%20date%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.279003750000005,"y":38.082,"w":20.507000000000005,"clr":-1,"A":"left","R":[{"T":"payment%20or%20May%201%2C%202014%2C%20whichever%20is%20earlier.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.603628750000005,"y":38.758500000000005,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.192378750000003,"y":38.758500000000005,"w":31.512000000000004,"clr":-1,"A":"left","R":[{"T":"Number%20of%20Days%20After%20Installment%20Due%20Date%20Through%20Date%20Paid%20or%20May%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.192378750000003,"y":39.321000000000005,"w":13.116,"clr":-1,"A":"left","R":[{"T":"1%2C%202014%2C%20Whichever%20Is%20Earlier%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":29.229164,"y":39.32085,"w":1.1110000000000002,"clr":-1,"A":"left","R":[{"T":"(if%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":30.695475000000005,"y":39.32085,"w":5.781000000000001,"clr":-1,"A":"left","R":[{"T":"May%201%2C%202014%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":38.644724,"y":39.32085,"w":11.617000000000004,"clr":-1,"A":"left","R":[{"T":"%20is%20earlier%2C%20enter%20365%2C%20320%2C%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":11.194004,"y":39.88335,"w":12.006000000000002,"clr":-1,"A":"left","R":[{"T":"228%20and%20106%2C%20respectively).","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#2b2e34","x":7.604687500000002,"y":40.5599,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.193437500000002,"y":40.5599,"w":30.62300000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20Number%20of%20Days%20in%20Each%20Column%20on%20Line%2022%20by%20the%20Daily%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.193437500000002,"y":41.1224,"w":14.229000000000003,"clr":-1,"A":"left","R":[{"T":"Rate%20of%20.00014%20(5%25%20Per%20Annum)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.604687500000002,"y":41.9054,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.280062500000001,"y":41.9054,"w":26.346000000000007,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20Amount%20on%20Line%2020%20by%20Line%2023%20for%20Each%20Column","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":7.604687500000002,"y":42.8134,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.280062500000001,"y":42.8134,"w":6.948,"clr":-1,"A":"left","R":[{"T":"Addition%20to%20Tax%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.280062500000001,"y":43.3759,"w":36.89699999999999,"clr":-1,"A":"left","R":[{"T":"(Total%20the%20amounts%20on%20Line%2024.%20Enter%20here%20and%20on%20the%20%22Addition%20to%20Tax%22%20line%20on%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":11.280062500000001,"y":43.9384,"w":8.058,"clr":-1,"A":"left","R":[{"T":"income%20tax%20return)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#2b2e34","x":95.031003125,"y":43.54358375,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":-1,"TS":[2,17,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM3","EN":0},"TI":181,"AM":1024,"x":22.72428125,"y":2.0178125000000002,"w":30.317031249999992,"h":0.8920624999999992},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":182,"AM":1024,"x":78.02368750000001,"y":1.7744583333333328,"w":21.465984375000005,"h":0.9454791666666628},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":183,"AM":0,"x":55.259015625,"y":6.657499999999999,"w":10.683750000000002,"h":0.8333333333333334,"TU":"A May 1, 2012_15. Total Amount Paid and Withheld from January 1, 2012 through the Installment Date Indicated"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":184,"AM":0,"x":66.252140625,"y":6.657499999999999,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15C","EN":0},"TI":185,"AM":0,"x":77.245265625,"y":6.657499999999999,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15D","EN":0},"TI":186,"AM":0,"x":88.25901562499999,"y":6.657499999999999,"w":10.683750000000028,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A1","EN":0},"TI":187,"AM":0,"x":43.358390625,"y":7.961374999999994,"w":11.632500000000006,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":188,"AM":1024,"x":55.217765625,"y":7.961374999999994,"w":10.766250000000005,"h":0.8333333333333334,"TU":"25%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":189,"AM":1024,"x":66.210890625,"y":7.961374999999994,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16C","EN":0},"TI":190,"AM":1024,"x":77.20401562500001,"y":7.988624999999999,"w":10.786874999999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16D","EN":0},"TI":191,"AM":1024,"x":88.21776562500001,"y":7.988624999999999,"w":10.766249999999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17A1","EN":0},"TI":192,"AM":0,"x":43.399640625,"y":9.667499999999999,"w":11.550000000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17A","EN":0},"TI":193,"AM":1024,"x":55.259015625,"y":9.667499999999999,"w":10.683750000000002,"h":0.8333333333333334,"TU":"25%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17B","EN":0},"TI":194,"AM":1024,"x":66.252140625,"y":9.667499999999999,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17C","EN":0},"TI":195,"AM":1024,"x":77.245265625,"y":9.667499999999999,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17D","EN":0},"TI":196,"AM":1024,"x":88.25901562499999,"y":9.667499999999999,"w":10.683750000000028,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A1","EN":0},"TI":197,"AM":0,"x":55.217765625,"y":13.530000000000001,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A2","EN":0},"TI":198,"AM":0,"x":66.210890625,"y":13.530000000000001,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18A3","EN":0},"TI":199,"AM":0,"x":77.20401562500001,"y":13.530000000000001,"w":10.786874999999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18B1","EN":0},"TI":200,"AM":0,"x":55.300265625,"y":15.304999999999998,"w":10.601249999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18B2","EN":0},"TI":201,"AM":0,"x":66.29339062500001,"y":15.304999999999998,"w":10.601249999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18B3","EN":0},"TI":202,"AM":0,"x":77.286515625,"y":15.304999999999998,"w":10.621874999999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C1","EN":0},"TI":203,"AM":0,"x":55.259015625,"y":16.590000000000003,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C2","EN":0},"TI":204,"AM":0,"x":66.252140625,"y":16.590000000000003,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18C3","EN":0},"TI":205,"AM":0,"x":77.245265625,"y":16.590000000000003,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18D1","EN":0},"TI":206,"AM":1024,"x":55.217765625,"y":17.507500000000004,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18D2","EN":0},"TI":207,"AM":1024,"x":66.210890625,"y":17.507500000000004,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18D3","EN":0},"TI":208,"AM":1024,"x":77.20401562500001,"y":17.507500000000004,"w":10.786874999999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18E1","EN":0},"TI":209,"AM":1024,"x":55.259015625,"y":18.6575,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18E2","EN":0},"TI":210,"AM":1024,"x":66.252140625,"y":18.6575,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18E3","EN":0},"TI":211,"AM":1024,"x":77.245265625,"y":18.6575,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18F1","EN":0},"TI":212,"AM":0,"x":55.259015625,"y":19.895,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18F2","EN":0},"TI":213,"AM":0,"x":66.252140625,"y":19.895,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18F3","EN":0},"TI":214,"AM":0,"x":77.245265625,"y":19.895,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18G1","EN":0},"TI":215,"AM":1024,"x":55.23839062500001,"y":21.4275,"w":10.72499999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18G2","EN":0},"TI":216,"AM":1024,"x":66.231515625,"y":21.4275,"w":10.725000000000003,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18G3","EN":0},"TI":217,"AM":1024,"x":77.224640625,"y":21.4275,"w":10.745624999999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A1","EN":0},"TI":218,"AM":0,"x":55.217765625,"y":23.7375,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A2","EN":0},"TI":219,"AM":0,"x":66.210890625,"y":23.7375,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A3","EN":0},"TI":220,"AM":0,"x":77.20401562500001,"y":23.7375,"w":10.786874999999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B1","EN":0},"TI":221,"AM":0,"x":55.259015625,"y":24.95,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B2","EN":0},"TI":222,"AM":0,"x":66.252140625,"y":24.95,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B3","EN":0},"TI":223,"AM":0,"x":77.245265625,"y":24.95,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19C1","EN":0},"TI":224,"AM":0,"x":55.259015625,"y":26.195000000000004,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19C2","EN":0},"TI":225,"AM":0,"x":66.252140625,"y":26.195000000000004,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19C3","EN":0},"TI":226,"AM":0,"x":77.245265625,"y":26.195000000000004,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19D1","EN":0},"TI":227,"AM":1024,"x":55.259015625,"y":27.4325,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19D2","EN":0},"TI":228,"AM":1024,"x":66.252140625,"y":27.4325,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19D3","EN":0},"TI":229,"AM":1024,"x":77.245265625,"y":27.4325,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19E1","EN":0},"TI":230,"AM":1024,"x":55.259015625,"y":28.67,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19E2","EN":0},"TI":231,"AM":1024,"x":66.252140625,"y":28.67,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19E3","EN":0},"TI":232,"AM":1024,"x":77.245265625,"y":28.67,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19F1","EN":0},"TI":233,"AM":0,"x":55.259015625,"y":29.9075,"w":10.683750000000002,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19F2","EN":0},"TI":234,"AM":0,"x":66.252140625,"y":29.9075,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19F3","EN":0},"TI":235,"AM":0,"x":77.245265625,"y":29.9075,"w":10.70437500000001,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19G1","EN":0},"TI":236,"AM":1024,"x":55.217765625,"y":30.8175,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19G2","EN":0},"TI":237,"AM":1024,"x":66.210890625,"y":30.8175,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19G3","EN":0},"TI":238,"AM":1024,"x":77.20401562500001,"y":30.8175,"w":10.786874999999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPA","EN":0},"TI":239,"AM":1024,"x":55.272765625000005,"y":35.42225,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPB","EN":0},"TI":240,"AM":1024,"x":66.26589062500001,"y":35.42225,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPC","EN":0},"TI":241,"AM":1024,"x":77.259015625,"y":35.42225,"w":10.786875000000013,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EXCEPD","EN":0},"TI":242,"AM":1024,"x":88.272765625,"y":35.42225,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20A","EN":0},"TI":243,"AM":1024,"x":55.217765625,"y":36.324999999999996,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":244,"AM":1024,"x":66.210890625,"y":36.324999999999996,"w":10.766250000000005,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20C","EN":0},"TI":245,"AM":1024,"x":77.20401562500001,"y":36.324999999999996,"w":10.786874999999986,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20D","EN":0},"TI":246,"AM":1024,"x":88.21776562500001,"y":36.324999999999996,"w":10.766249999999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21A","EN":0},"TI":247,"AM":0,"x":55.300265625,"y":38.1675,"w":10.601249999999999,"h":0.8333333333333334,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21B","EN":0},"TI":248,"AM":0,"x":66.29339062500001,"y":38.1675,"w":10.601249999999999,"h":0.8333333333333334,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21C","EN":0},"TI":249,"AM":0,"x":77.286515625,"y":38.1675,"w":10.621874999999992,"h":0.8333333333333334,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L21D","EN":0},"TI":250,"AM":0,"x":88.30026562500001,"y":38.1675,"w":10.601249999999999,"h":0.8333333333333334,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22A","EN":0},"TI":251,"AM":0,"x":55.300265625,"y":39.9675,"w":10.601249999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22B","EN":0},"TI":252,"AM":0,"x":66.29339062500001,"y":39.9675,"w":10.601249999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22C","EN":0},"TI":253,"AM":0,"x":77.286515625,"y":39.9675,"w":10.621874999999992,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22D","EN":0},"TI":254,"AM":0,"x":88.30026562500001,"y":39.9675,"w":10.601249999999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L23A","EN":0},"TI":255,"AM":1024,"x":55.259015625,"y":41.19,"w":10.683750000000002,"h":0.8333333333333334,"MV":"d"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"L23B","EN":0},"TI":256,"AM":1024,"x":66.252140625,"y":41.19,"w":10.683750000000014,"h":0.8333333333333334},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L23C","EN":0},"TI":257,"AM":1024,"x":77.245265625,"y":41.19,"w":10.70437500000001,"h":0.8333333333333334,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L23D","EN":0},"TI":258,"AM":1024,"x":88.19714062500002,"y":41.19,"w":10.704374999999983,"h":0.8333333333333334,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24A","EN":0},"TI":259,"AM":1024,"x":55.217765625,"y":42.1,"w":10.766250000000005,"h":0.8333333333333334,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24B","EN":0},"TI":260,"AM":1024,"x":66.210890625,"y":42.1,"w":10.766250000000005,"h":0.8333333333333334,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24C","EN":0},"TI":261,"AM":1024,"x":77.20401562500001,"y":42.1,"w":10.786874999999986,"h":0.8333333333333334,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L24D","EN":0},"TI":262,"AM":1024,"x":88.21776562500001,"y":42.1,"w":10.766249999999992,"h":0.8333333333333334,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":263,"AM":1024,"x":66.29339062500001,"y":43.928333333333335,"w":21.51943749999999,"h":1.2966666666666715}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VA760F.json b/test/data/va/form_org/VA760F.json new file mode 100755 index 00000000..ae1b9eee --- /dev/null +++ b/test/data/va/form_org/VA760F.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"2013 760 F 01 07 14.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#2b2e34","x":38.09403125,"y":5.8088750000000005,"w":0.75,"l":16.5},{"oc":"#2b2e34","x":67.839921875,"y":5.8088750000000005,"w":0.75,"l":16.5},{"oc":"#2b2e34","x":85.62932812500001,"y":5.8088750000000005,"w":0.75,"l":6.187500000000001},{"oc":"#2b2e34","x":6.187500000000001,"y":6.4651250000000005,"w":0.75,"l":66.04296875},{"oc":"#2b2e34","x":72.23046875,"y":6.4651250000000005,"w":0.75,"l":24.792968750000004},{"oc":"#2b2e34","x":6.187500000000001,"y":7.9651250000000005,"w":0.75,"l":66.04296875},{"oc":"#2b2e34","x":72.23046875,"y":7.9651250000000005,"w":0.75,"l":24.792968750000004},{"oc":"#2b2e34","x":6.187500000000001,"y":9.465125,"w":0.75,"l":66.04296875},{"oc":"#2b2e34","x":72.23046875,"y":9.465125,"w":0.75,"l":24.792968750000004},{"oc":"#2b2e34","x":8.20703125,"y":22.66825,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":22.66825,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":22.66825,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":22.66825,"w":0.75,"l":12.332031250000002},{"oc":"#2b2e34","x":92.85546875,"y":22.66825,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.20703125,"y":27.8028125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":27.8028125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":27.8028125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":27.8028125,"w":0.75,"l":12.332031250000002},{"oc":"#2b2e34","x":92.85546875,"y":27.8028125,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.20703125,"y":29.3028125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":29.3028125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":29.3028125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":29.3028125,"w":0.75,"l":12.332031250000002},{"oc":"#2b2e34","x":92.85546875,"y":29.3028125,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.20703125,"y":30.8028125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":30.8028125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":30.8028125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":30.8028125,"w":0.75,"l":12.332031250000002},{"oc":"#2b2e34","x":92.85546875,"y":30.8028125,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.20703125,"y":32.3028125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":32.3028125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":32.3028125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":32.3028125,"w":0.75,"l":12.332031250000002},{"oc":"#2b2e34","x":92.85546875,"y":32.3028125,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.20703125,"y":33.802812499999995,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":33.802812499999995,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":33.802812499999995,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":33.802812499999995,"w":0.75,"l":12.332031250000002},{"oc":"#2b2e34","x":92.85546875,"y":33.802812499999995,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.20703125,"y":38.2623125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":38.2623125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":38.2623125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":38.2623125,"w":0.75,"l":12.332031250000002},{"oc":"#2b2e34","x":92.85546875,"y":38.2623125,"w":0.75,"l":4.125},{"oc":"#2b2e34","x":8.20703125,"y":40.4703125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":40.4703125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":40.4703125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":40.4703125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":40.4703125,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":8.20703125,"y":41.9703125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":41.9703125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":41.9703125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":41.9703125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":41.9703125,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":8.20703125,"y":43.470343750000005,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":43.470343750000005,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":43.470343750000005,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":43.470343750000005,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":43.470343750000005,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":8.20703125,"y":24.16825,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":24.16825,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":24.16825,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":24.16825,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":24.16825,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":8.20703125,"y":25.66825,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":25.66825,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":25.66825,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":25.66825,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":25.66825,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":8.20703125,"y":21.16825,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":21.16825,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":21.16825,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":21.16825,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":21.16825,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":8.20703125,"y":36.7623125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":36.7623125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":36.7623125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":36.7623125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":36.7623125,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":8.20703125,"y":35.2623125,"w":0.75,"l":3.1367187500000004},{"oc":"#2b2e34","x":11.34375,"y":35.2623125,"w":0.75,"l":66},{"oc":"#2b2e34","x":77.34375,"y":35.2623125,"w":0.75,"l":3.0937500000000004},{"oc":"#2b2e34","x":80.4375,"y":35.2623125,"w":0.75,"l":12.375000000000002},{"oc":"#2b2e34","x":92.8125,"y":35.2623125,"w":0.75,"l":4.16796875},{"oc":"#2b2e34","x":6.703125000000001,"y":18.655937500000004,"w":0.75,"l":37.582703125},{"oc":"#2b2e34","x":6.703125000000001,"y":25.326125,"w":0.75,"l":34.118046875000005},{"oc":"#2b2e34","x":6.703125000000001,"y":36.420187500000004,"w":0.75,"l":33.741296875}],"VLines":[{"oc":"#2b2e34","x":6.230468750000001,"y":6.4807500000000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":72.23046875,"y":6.4807500000000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.98046875000001,"y":6.4807500000000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":7.9807500000000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":72.23046875,"y":7.9807500000000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.98046875000001,"y":7.9807500000000005,"w":0.75,"l":1.46875},{"clr":1,"x":92.8125,"y":36.7779375,"w":0.75,"l":1.484375},{"clr":1,"x":92.8125,"y":38.26225,"w":0.75,"l":2.192437500000002},{"clr":1,"x":92.8125,"y":25.683937500000003,"w":0.75,"l":2.118874999999998},{"clr":1,"x":92.8125,"y":27.8028125,"w":0.75,"l":1.5},{"clr":1,"x":92.8125,"y":29.3028125,"w":0.75,"l":1.5},{"clr":1,"x":92.8125,"y":30.8028125,"w":0.75,"l":1.5},{"clr":1,"x":92.8125,"y":32.302812499999995,"w":0.75,"l":1.5},{"clr":1,"x":92.8125,"y":33.802812499999995,"w":0.75,"l":1.443875000000001},{"clr":1,"x":92.8125,"y":21.183875,"w":0.75,"l":1.484375},{"clr":1,"x":92.8125,"y":22.66825,"w":0.75,"l":1.484375},{"clr":1,"x":92.8125,"y":41.985968750000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":21.183875,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":21.183875,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":21.183875,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":22.683875,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":22.683875,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":22.683875,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":25.683937500000003,"w":0.75,"l":2.103249999999998},{"oc":"#2b2e34","x":80.4375,"y":25.683937500000003,"w":0.75,"l":2.103249999999998},{"oc":"#2b2e34","x":96.93750000000001,"y":25.683937500000003,"w":0.75,"l":2.103249999999998},{"oc":"#2b2e34","x":8.25,"y":27.8184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":27.8184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":27.8184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":29.3184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":29.3184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":29.3184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":30.8184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":30.8184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":30.8184375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":32.318437499999995,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":32.318437499999995,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":32.318437499999995,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":33.818437499999995,"w":0.75,"l":1.428250000000001},{"oc":"#2b2e34","x":80.4375,"y":33.818437499999995,"w":0.75,"l":1.428250000000001},{"oc":"#2b2e34","x":96.93750000000001,"y":33.818437499999995,"w":0.75,"l":1.428250000000001},{"oc":"#2b2e34","x":8.25,"y":36.7779375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":36.7779375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":36.7779375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":38.277875,"w":0.75,"l":2.176812500000002},{"oc":"#2b2e34","x":80.4375,"y":38.277875,"w":0.75,"l":2.176812500000002},{"oc":"#2b2e34","x":96.93750000000001,"y":38.277875,"w":0.75,"l":2.176812500000002},{"oc":"#2b2e34","x":8.25,"y":40.4859375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":40.4859375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":40.4859375,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":8.25,"y":41.985968750000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":80.4375,"y":41.985968750000005,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":96.93750000000001,"y":41.985968750000005,"w":0.75,"l":1.46875},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":36.901625,"w":0.75,"l":1.1751249999999989},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":38.3840625,"w":0.75,"l":1.887937500000002},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":25.8163125,"w":0.75,"l":1.7878125000000011},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":27.9278125,"w":0.75,"l":1.1875},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":29.4278125,"w":0.75,"l":1.1875},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":30.9278125,"w":0.75,"l":1.1875},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":32.427812499999995,"w":0.75,"l":1.1875},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":33.923125000000006,"w":0.75,"l":1.1430624999999992},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":21.307625,"w":0.75,"l":1.1751249999999989},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":22.792,"w":0.75,"l":1.1751249999999989},{"dsh":1,"oc":"#2b2e34","x":92.8125,"y":42.108375,"w":0.75,"l":1.162749999999998}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.9375034375,"y":2.1370000000000005,"w":2.279,"clr":-1,"A":"left","R":[{"T":"760F","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":15.2087846875,"y":2.1370000000000005,"w":20.672000000000004,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Virginia%20Estimated%20Tax%20by","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":5.937503437499998,"y":3.074125,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":15.3627846875,"y":3.074125,"w":20.451000000000008,"clr":-1,"A":"left","R":[{"T":"Farmers%2C%20Fishermen%20and%20Merchant%20Seamen","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":22.487515625,"y":3.887025000000004,"w":22.61900000000001,"clr":-1,"A":"left","R":[{"T":"Attach%20this%20form%20to%20Form%20760%2C%20763%2C%20760PY%20or%20770","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":5.0744625,"w":20.73300000000001,"clr":-1,"A":"left","R":[{"T":"Calendar%20Year%202013%20or%20taxable%20year%20beginning%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.34401406250001,"y":5.07451875,"w":8.562000000000001,"clr":-1,"A":"left","R":[{"T":"%20%2C%202013%20and%20ending%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.08995625,"y":5.07451875,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":91.5667765625,"y":5.07451875,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.4960971875,"y":6.1754999999999995,"w":39.23499999999997,"clr":-1,"A":"left","R":[{"T":"First%20Name%2C%20Middle%20Initial%20and%20Last%20Name%20(of%20Both%20if%20Joint)%20-%20OR%20-%20Name%20of%20Estate%20or%20Trust","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":72.4960971875,"y":6.1754999999999995,"w":16.560000000000006,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number%20or%20FEIN","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":97.0742703125,"y":6.690131249999998,"w":0.866,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":49,"TS":[3,12,0,0]}]},{"oc":"#2b2e34","x":6.4960971875,"y":7.6754999999999995,"w":20.17400000000001,"clr":-1,"A":"left","R":[{"T":"If%20Estate%20or%20Trust%2C%20Name%20and%20Title%20of%20Fiduciary","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":73.0117221875,"y":7.6754999999999995,"w":7.111999999999999,"clr":-1,"A":"left","R":[{"T":"(For%20Office%20Use)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":97.0742703125,"y":8.190150000000003,"w":0.866,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":49,"TS":[3,12,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":9.91825,"w":15.337000000000007,"clr":-1,"A":"left","R":[{"T":"Do%20You%20Have%20to%20File%20Form%20760F%3F","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":10.918275,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.9994843750000015,"y":10.918275,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.314328125000001,"y":10.918275,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.779329671875,"y":10.918275,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.36509065625,"y":10.918275,"w":3.7800000000000002,"clr":-1,"A":"left","R":[{"T":"adjusted","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.668612468749995,"y":10.918275,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"gross","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.90704996875,"y":10.918275,"w":3.223,"clr":-1,"A":"left","R":[{"T":"income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":40.98969059375,"y":10.918275,"w":12.391000000000005,"clr":-1,"A":"left","R":[{"T":"below%20the%20filing%20threshold%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":60.14495309375,"y":10.918275,"w":24.456000000000003,"clr":-1,"A":"left","R":[{"T":"you%20are%20not%20required%20to%20complete%20this%20form%20because%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.999487468750003,"y":11.543212500000001,"w":19.398000000000003,"clr":-1,"A":"left","R":[{"T":"are%20not%20required%20to%20file%20an%20income%20tax%20return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.937503093750001,"y":12.355462500000007,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.999487468750003,"y":12.355462500000007,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.14417496875,"y":12.355462500000007,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.411176515625002,"y":12.355462500000007,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.749440593750002,"y":12.355462500000007,"w":3.223,"clr":-1,"A":"left","R":[{"T":"income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.968598390625,"y":12.355462500000007,"w":12.285000000000004,"clr":-1,"A":"left","R":[{"T":"tax%20liability%20is%20%24150%20or%20less","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":41.3748655625,"y":12.355462500000007,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"after","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.716114015625,"y":12.355462500000007,"w":4.891000000000001,"clr":-1,"A":"left","R":[{"T":"subtracting","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.452031250000005,"y":12.355462500000007,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.720579671875,"y":12.355462500000007,"w":3.391,"clr":-1,"A":"left","R":[{"T":"Spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.171765625,"y":12.355462500000007,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.76588582812499,"y":12.355462500000007,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.68589665624998,"y":12.355462500000007,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.53833570312499,"y":12.355462500000007,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"other","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.30962468749998,"y":12.355462500000007,"w":1.334,"clr":-1,"A":"left","R":[{"T":"tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.64384514062499,"y":12.355462500000007,"w":2.9450000000000003,"clr":-1,"A":"left","R":[{"T":"credits","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.42059668749998,"y":12.355462500000007,"w":3.2790000000000004,"clr":-1,"A":"left","R":[{"T":"(except","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":90.71401531249998,"y":12.355462500000007,"w":5.279999999999999,"clr":-1,"A":"left","R":[{"T":"withholding%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.993343281249972,"y":12.980400000000003,"w":4.613000000000001,"clr":-1,"A":"left","R":[{"T":"estimated%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.559108906249971,"y":12.980400000000003,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.569327656249975,"y":12.980400000000003,"w":4.28,"clr":-1,"A":"left","R":[{"T":"extension","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.619983906249974,"y":12.980400000000003,"w":4.9460000000000015,"clr":-1,"A":"left","R":[{"T":"payments)%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.18523906249997,"y":12.980400000000003,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":36.10883281249997,"y":12.980400000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.258989062499964,"y":12.980400000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":40.83917656249997,"y":12.980400000000003,"w":2.168,"clr":-1,"A":"left","R":[{"T":"have","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.622835906249975,"y":12.980400000000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.34296090624997,"y":12.980400000000003,"w":4.057,"clr":-1,"A":"left","R":[{"T":"complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.04867021874998,"y":12.980400000000003,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.88563896874997,"y":12.980400000000003,"w":2.278,"clr":-1,"A":"left","R":[{"T":"form%3B","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.83945146874997,"y":12.980400000000003,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.76304521874997,"y":12.980400000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.91320146874997,"y":12.980400000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.49338896874997,"y":12.980400000000003,"w":1.834,"clr":-1,"A":"left","R":[{"T":"owe","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.76038896874998,"y":12.980400000000003,"w":1.112,"clr":-1,"A":"left","R":[{"T":"an","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.91054521874997,"y":12.980400000000003,"w":3.5020000000000002,"clr":-1,"A":"left","R":[{"T":"addition","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.75773271874998,"y":12.980400000000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.47785771874999,"y":12.980400000000003,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.91657321874997,"y":12.980400000000003,"w":1.612,"clr":-1,"A":"left","R":[{"T":"tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":5.931334156249972,"y":13.792650000000004,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":7.993318531249971,"y":13.792650000000004,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.283412281249971,"y":13.792650000000004,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.207006031249973,"y":13.792650000000004,"w":15.335000000000006,"clr":-1,"A":"left","R":[{"T":"meet%20both%20of%20the%20following%20tests%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":36.01151735937498,"y":13.792650000000004,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.935114203124975,"y":13.792650000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.085267359374974,"y":13.792650000000004,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":43.665448671874984,"y":13.792650000000004,"w":2.168,"clr":-1,"A":"left","R":[{"T":"have","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.44910801562498,"y":13.792650000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":49.16923301562498,"y":13.792650000000004,"w":4.057,"clr":-1,"A":"left","R":[{"T":"complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.87494232812499,"y":13.792650000000004,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.71189870312498,"y":13.792650000000004,"w":2.278,"clr":-1,"A":"left","R":[{"T":"form%3B","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.665717390624984,"y":13.792650000000004,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.589304953125,"y":13.792650000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.73945501562498,"y":13.792650000000004,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.31964251562499,"y":13.792650000000004,"w":1.834,"clr":-1,"A":"left","R":[{"T":"owe","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.586642515625,"y":13.792650000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"an","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":75.736798765625,"y":13.792650000000004,"w":3.5020000000000002,"clr":-1,"A":"left","R":[{"T":"addition","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":81.583992453125,"y":13.792650000000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.30411745312502,"y":13.792650000000004,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":86.742820578125,"y":13.792650000000004,"w":1.612,"clr":-1,"A":"left","R":[{"T":"tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.118786203125005,"y":14.604900000000006,"w":1.945,"clr":-1,"A":"left","R":[{"T":"Test","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.385786203125006,"y":14.604900000000006,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.675879953125005,"y":14.604900000000006,"w":0.611,"clr":-1,"A":"left","R":[{"T":"-%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.306286203125005,"y":14.604900000000006,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.800678375000004,"y":14.604900000000006,"w":2.4450000000000003,"clr":-1,"A":"left","R":[{"T":"gross","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.95248778125,"y":14.604900000000006,"w":3.223,"clr":-1,"A":"left","R":[{"T":"income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.307764390625,"y":14.604900000000006,"w":2,"clr":-1,"A":"left","R":[{"T":"from","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.76966909375,"y":14.604900000000006,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"self-employment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.485695703125,"y":14.604900000000006,"w":1.056,"clr":-1,"A":"left","R":[{"T":"as","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.488898828125,"y":14.604900000000006,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.08682843750001,"y":14.604900000000006,"w":3.1670000000000003,"clr":-1,"A":"left","R":[{"T":"farmer%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.26887051562502,"y":14.604900000000006,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"fisherman","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.429351796875025,"y":14.604900000000006,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"and%2For","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.18444864062502,"y":14.604900000000006,"w":2.446,"clr":-1,"A":"left","R":[{"T":"being","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.33780492187502,"y":14.604900000000006,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.56757364062503,"y":14.604900000000006,"w":4.168,"clr":-1,"A":"left","R":[{"T":"merchant","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":79.38465485937502,"y":14.604900000000006,"w":3.5570000000000004,"clr":-1,"A":"left","R":[{"T":"seaman","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":85.25658926562502,"y":14.604900000000006,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":86.74313304687503,"y":14.604900000000006,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"at","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":88.40138150000003,"y":14.604900000000006,"w":2.112,"clr":-1,"A":"left","R":[{"T":"least","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":92.03808153125004,"y":14.604900000000006,"w":4.334,"clr":-1,"A":"left","R":[{"T":"two-thirds","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.30475325000003,"y":15.229837500000002,"w":21.95500000000001,"clr":-1,"A":"left","R":[{"T":"of%20your%20annual%20gross%20income%20for%20the%20taxable%20year%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":51.668836062500034,"y":15.229837500000002,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":12.117253250000028,"y":16.042087500000004,"w":3.39,"clr":-1,"A":"left","R":[{"T":"Test%202%20-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.30475325000003,"y":16.042087500000004,"w":45.85499999999995,"clr":-1,"A":"left","R":[{"T":"You%20filed%20Form%20760%2C%20Form%20760PY%2C%20Form%20763%20or%20Form%20770%2C%20and%20paid%20the%20entire%20tax%20due%20by%20March%201%2C%202014.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.453119843750001,"y":17.702812499999997,"w":1.389,"clr":-1,"A":"left","R":[{"T":"PA","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":8.48726046875,"y":17.702812499999997,"w":23.17,"clr":-1,"A":"left","R":[{"T":"RT%20I%20-%20Exceptions%20Which%20Void%20the%20Addition%20to%20Tax","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":6.453119843750001,"y":18.7029375,"w":0.6280000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%09","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.515104218750002,"y":18.7029375,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.870166718750003,"y":18.7029375,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":12.860276093750002,"y":18.7029375,"w":4.447000000000001,"clr":-1,"A":"left","R":[{"T":"underpaid","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.237322968750004,"y":18.7029375,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.742551000000002,"y":18.7029375,"w":1.612,"clr":-1,"A":"left","R":[{"T":"tax%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.73111350000001,"y":18.7029375,"w":4.446,"clr":-1,"A":"left","R":[{"T":"determine","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.105068171875004,"y":18.7029375,"w":0.5,"clr":-1,"A":"left","R":[{"T":"if","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.373505671875,"y":18.7029375,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.363619687500005,"y":18.7029375,"w":2.223,"clr":-1,"A":"left","R":[{"T":"meet","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.29887432812501,"y":18.7029375,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"one","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.375607156250005,"y":18.7029375,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":47.16068853125,"y":18.7029375,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":49.807402484375004,"y":18.7029375,"w":4.78,"clr":-1,"A":"left","R":[{"T":"exceptions","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57.69800412500001,"y":18.7029375,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.91468682812501,"y":18.7029375,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.33483209375001,"y":18.7029375,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.69143373437501,"y":18.7029375,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":66.56315712500002,"y":18.7029375,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":69.98330239062501,"y":18.7029375,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.76839614062501,"y":18.7029375,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":73.123452453125,"y":18.7029375,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":76.11356028125002,"y":18.7029375,"w":2.223,"clr":-1,"A":"left","R":[{"T":"meet","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":80.048814921875,"y":18.7029375,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"either","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":84.4140884375,"y":18.7029375,"w":4.558,"clr":-1,"A":"left","R":[{"T":"exception%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":91.961296203125,"y":18.7029375,"w":4.057,"clr":-1,"A":"left","R":[{"T":"complete","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.519764953124998,"y":19.327874999999995,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.129343078124997,"y":19.327874999999995,"w":5.058000000000001,"clr":-1,"A":"left","R":[{"T":"appropriate","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.414405578124995,"y":19.327874999999995,"w":1.556,"clr":-1,"A":"left","R":[{"T":"line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.28076340625,"y":19.327874999999995,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.460313375000002,"y":19.327874999999995,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.326668109375003,"y":19.327874999999995,"w":2,"clr":-1,"A":"left","R":[{"T":"form","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.879841531250005,"y":19.327874999999995,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.91944935937501,"y":19.327874999999995,"w":2.724,"clr":-1,"A":"left","R":[{"T":"attach","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.59256028125001,"y":19.327874999999995,"w":1.556,"clr":-1,"A":"left","R":[{"T":"this","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.45892120312501,"y":19.327874999999995,"w":2,"clr":-1,"A":"left","R":[{"T":"form","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.01210081250001,"y":19.327874999999995,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.76161489062502,"y":19.327874999999995,"w":1.945,"clr":-1,"A":"left","R":[{"T":"your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":50.229704000000005,"y":19.327874999999995,"w":2.89,"clr":-1,"A":"left","R":[{"T":"return.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.15959617187501,"y":19.327874999999995,"w":0.556,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.47753057812501,"y":19.327874999999995,"w":1.612,"clr":-1,"A":"left","R":[{"T":"you","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.430516500000024,"y":19.327874999999995,"w":1.112,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":61.61006492187502,"y":19.327874999999995,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.21964459375002,"y":19.327874999999995,"w":2.223,"clr":-1,"A":"left","R":[{"T":"meet","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":68.11777114062502,"y":19.327874999999995,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"either","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":72.44592893750003,"y":19.327874999999995,"w":4.558,"clr":-1,"A":"left","R":[{"T":"exception%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":79.95601789062502,"y":19.327874999999995,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"then","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":83.42566006250003,"y":19.327874999999995,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"proceed","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":89.47393667187502,"y":19.327874999999995,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":91.22346467187504,"y":19.327874999999995,"w":2.667,"clr":-1,"A":"left","R":[{"T":"PART","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":95.63822581250002,"y":19.327874999999995,"w":0.556,"clr":-1,"A":"left","R":[{"T":"II","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":96.95614784375002,"y":19.327874999999995,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.52750860937501,"y":19.952812499999997,"w":14.508000000000004,"clr":-1,"A":"left","R":[{"T":"compute%20the%20addition%20to%20your%20tax.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.29939923437501,"y":21.015374999999995,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.62125860937501,"y":21.015374999999995,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Exception","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.84361953125001,"y":21.015374999999995,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.133713281250014,"y":21.015374999999995,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.078853906250014,"y":21.015374999999995,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":24.94913825000001,"y":21.015374999999995,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.510153875000007,"y":21.015374999999995,"w":3.279,"clr":-1,"A":"left","R":[{"T":"Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.98454450000001,"y":21.015374999999995,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.62126325000001,"y":21.690375,"w":23.621000000000002,"clr":-1,"A":"left","R":[{"T":"(Form%20760%20filers%20use%20the%20net%20tax%20amount%20from%20Line%2017)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.39366950000002,"y":21.730874437499995,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.299403875000003,"y":22.873311937499995,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.621263250000002,"y":22.873311937499995,"w":38.74099999999999,"clr":-1,"A":"left","R":[{"T":"Exception%202%20-%20Estimated%20Tax%20Based%20on%202012%20Income%20Using%202013%20Rates%20and%20Exemptions","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.3936695,"y":22.873311937499995,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.453119843750001,"y":24.373050000000003,"w":22.224000000000004,"clr":-1,"A":"left","R":[{"T":"PART%20II%20-%20How%20to%20Compute%20Your%20Underpayment","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":9.288541718750002,"y":25.515487500000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.610401093750001,"y":25.515487500000003,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737463593750002,"y":25.515487500000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.232574515625004,"y":25.515487500000003,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.993137015625006,"y":25.515487500000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.685422906250007,"y":25.515487500000003,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Your","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.240141656250003,"y":25.515487500000003,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.11042290625,"y":25.515487500000003,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Virginia","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.66989165625,"y":25.515487500000003,"w":3.279,"clr":-1,"A":"left","R":[{"T":"Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":44.147374484375,"y":25.515487500000003,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.984346328125,"y":25.515487500000003,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Liability","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.48812603125,"y":25.515487500000003,"w":2.112,"clr":-1,"A":"left","R":[{"T":"After","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.18515728125001,"y":25.515487500000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.76533859375,"y":25.515487500000003,"w":3.391,"clr":-1,"A":"left","R":[{"T":"Spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":64.4129823125,"y":25.515487500000003,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.611957249999994,"y":26.190487500000003,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.779457249999997,"y":26.190487500000003,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.761833796874996,"y":26.190487500000003,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.598799453124997,"y":26.190487500000003,"w":3.445,"clr":-1,"A":"left","R":[{"T":"Credits.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.357818171874996,"y":26.190487500000003,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"See","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.539740046874996,"y":26.190487500000003,"w":5.335000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.611958796874998,"y":26.865487500000004,"w":24.288000000000004,"clr":-1,"A":"left","R":[{"T":"(If%20%24150%20or%20less%2C%20you%20are%20not%20required%20to%20file%20Form%20760F)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.38436504687499,"y":26.865487500000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.290099421874984,"y":28.007919375000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.611958796874983,"y":28.007919375000004,"w":4.058000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2066%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.886755604687504,"y":27.7577368125,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":18.388296875,"y":27.945037499999998,"w":0.278,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.818073509375,"y":28.132372612499996,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.247,0,0]}]},{"oc":"#2b2e34","x":19.3196703125,"y":28.00753125,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":21.1248734375,"y":28.00753125,"w":2.612,"clr":-1,"A":"left","R":[{"T":"(.667)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.5953421875,"y":28.00753125,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.315467187499994,"y":28.00753125,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.810578109375,"y":28.00753125,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.571140609375,"y":28.00753125,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.721296859375,"y":28.00753125,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":41.074921859374996,"y":28.00753125,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.382453109375,"y":28.00753125,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.288187484374998,"y":29.50771875,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.610046859374997,"y":29.50771875,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737110906249997,"y":29.50771875,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.60739215625,"y":29.50771875,"w":3.279,"clr":-1,"A":"left","R":[{"T":"Income","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.0817796875,"y":29.50771875,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.918748437499996,"y":29.50771875,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Liability","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.42252814062499,"y":29.50771875,"w":2.112,"clr":-1,"A":"left","R":[{"T":"After","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.11955939062499,"y":29.50771875,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.699746890624986,"y":29.50771875,"w":3.391,"clr":-1,"A":"left","R":[{"T":"Spouse","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.34739060937499,"y":29.50771875,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.09928123437499,"y":29.50771875,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"Adjustment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":56.26678123437499,"y":29.50771875,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.24915932812499,"y":29.50771875,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.08612807812498,"y":29.50771875,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Credits","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.38245620312497,"y":29.50771875,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.288190578124969,"y":31.00790625,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.610049953124966,"y":31.00790625,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737113999999966,"y":31.00790625,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.23222337499997,"y":31.00790625,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.99278587499997,"y":31.00790625,"w":2,"clr":-1,"A":"left","R":[{"T":"from","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":27.51656712499997,"y":31.00790625,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":30.87019212499997,"y":31.00790625,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.160285874999964,"y":31.00790625,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.96548899999996,"y":31.00790625,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.31911399999996,"y":31.00790625,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.03923899999996,"y":31.00790625,"w":4.723000000000001,"clr":-1,"A":"left","R":[{"T":"Whichever","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.77516396874996,"y":31.00790625,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.32203896874996,"y":31.00790625,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Less","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.38246084374997,"y":31.00790625,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.288195218749957,"y":32.15034375,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.610054593749954,"y":32.15034375,"w":2.3900000000000006,"clr":-1,"A":"left","R":[{"T":"Enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":15.737118640624955,"y":32.15034375,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":18.23222801562496,"y":32.15034375,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.992790515624957,"y":32.15034375,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":25.68507021874996,"y":32.15034375,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.52203896874996,"y":32.15034375,"w":3.89,"clr":-1,"A":"left","R":[{"T":"Withheld","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":34.96941396874996,"y":32.15034375,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"and%2For","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.78483584374995,"y":32.15034375,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":42.281493640624966,"y":32.15034375,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.04205923437496,"y":32.15034375,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":49.76218732812496,"y":32.15034375,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Estimated","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":57.04177798437497,"y":32.15034375,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":59.87874673437495,"y":32.15034375,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Paid","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":63.40406867187495,"y":32.15034375,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.20927798437495,"y":32.15034375,"w":3.779,"clr":-1,"A":"left","R":[{"T":"Credited","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":71.48494985937496,"y":32.15034375,"w":1.056,"clr":-1,"A":"left","R":[{"T":"by","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.611606109374948,"y":32.82534375,"w":7.727,"clr":-1,"A":"left","R":[{"T":"January%2015%2C%202014","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.38401235937495,"y":32.8658431875,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":9.28974673437494,"y":33.6505306875,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61160610937494,"y":33.6505306875,"w":14.617000000000003,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Estimated%20Tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.611606109374941,"y":34.3255306875,"w":26.014000000000003,"clr":-1,"A":"left","R":[{"T":"(Subtract%20the%20amount%20on%20Line%207%20from%20the%20amount%20on%20Line%206)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.38401235937494,"y":34.3255306875,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":6.453119843750001,"y":35.46706875,"w":22.001,"clr":-1,"A":"left","R":[{"T":"PART%20III%20-%20How%20to%20Compute%20the%20Addition%20to%20Tax","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":9.288541718750002,"y":36.96725625,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.610401093750001,"y":36.96725625,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.370963593749998,"y":36.96725625,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.091090140625003,"y":36.96725625,"w":6.558000000000002,"clr":-1,"A":"left","R":[{"T":"Underpayment","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.665527640625008,"y":36.96725625,"w":2.333,"clr":-1,"A":"left","R":[{"T":"From","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":33.704418265625,"y":36.96725625,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":37.058043265625,"y":36.96725625,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":78.38280889062501,"y":36.96725625,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.428480765625004,"y":38.10969375,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.610402640625004,"y":38.10969375,"w":3.556,"clr":-1,"A":"left","R":[{"T":"Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.541121390625005,"y":38.10969375,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.261246390625004,"y":38.10969375,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Days","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":23.129982312500005,"y":38.10969375,"w":2.112,"clr":-1,"A":"left","R":[{"T":"After","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":26.827013562500007,"y":38.10969375,"w":3.5570000000000004,"clr":-1,"A":"left","R":[{"T":"January","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.759279187500006,"y":38.10969375,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":35.3394666875,"y":38.10969375,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2014%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.61193853125,"y":38.10969375,"w":3.724,"clr":-1,"A":"left","R":[{"T":"Through","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":45.802535375,"y":38.10969375,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.38272596875,"y":38.10969375,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Date","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":52.07976340625001,"y":38.10969375,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":54.57487742187501,"y":38.10969375,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":60.33544610937501,"y":38.10969375,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":62.48559617187502,"y":38.10969375,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":65.83920260937501,"y":38.10969375,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":67.12931337500002,"y":38.10969375,"w":2,"clr":-1,"A":"left","R":[{"T":"Was","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":70.59586643750002,"y":38.10969375,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Paid","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.12117600000002,"y":38.10969375,"w":0.889,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.60886968750001,"y":38.78469375,"w":1.889,"clr":-1,"A":"left","R":[{"T":"May","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":14.960947812500008,"y":38.78469375,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":16.68107281250001,"y":38.78469375,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2014%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.608869687500006,"y":39.45969375,"w":13.060000000000008,"clr":-1,"A":"left","R":[{"T":"(If%20May%201%20is%20earlier%2C%20enter%20106)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":77.52121343750002,"y":39.5333806875,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.54296343750001,"y":40.6758181875,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61041656250001,"y":40.6758181875,"w":30.347,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%2010%20by%20the%20Daily%20Interest%20Rate%20of%20.00014%20(5%25%20per%20annum)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":77.63722906250001,"y":40.6758181875,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":94.79671343750002,"y":40.6758181875,"w":0.889,"clr":-1,"A":"left","R":[{"T":"%25","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":8.428494687500013,"y":41.8182556875,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.610416562500014,"y":41.8182556875,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Addition","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":17.629307187500014,"y":41.8182556875,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":19.321588437500015,"y":41.8182556875,"w":1.667,"clr":-1,"A":"left","R":[{"T":"Tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":22.15855254687501,"y":41.8182556875,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Balance","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.17744626562501,"y":41.8182556875,"w":1.834,"clr":-1,"A":"left","R":[{"T":"Due","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":31.44444935937501,"y":41.8182556875,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":32.389589984375014,"y":41.8182556875,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":38.06198060937501,"y":41.8182556875,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"the","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":40.55863840625001,"y":41.8182556875,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":46.31920400000001,"y":41.8182556875,"w":1.112,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":48.46935715625003,"y":41.8182556875,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":51.82298215625001,"y":41.8182556875,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":53.11307590625001,"y":41.8182556875,"w":1.056,"clr":-1,"A":"left","R":[{"T":"by","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":55.17660715625001,"y":41.8182556875,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"Line","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":58.53023834375001,"y":41.8182556875,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":11.61042584375001,"y":42.4932556875,"w":11.56,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20on%20back)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":77.52276959375003,"y":42.5337556875,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12.","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":97.03195709375002,"y":42.19625568749999,"w":0.866,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2","S":49,"TS":[3,12,0,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":46.773011249999996,"w":1.5010000000000001,"clr":-1,"A":"left","R":[{"T":"Va.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":7.6957812500000005,"y":46.773011249999996,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Dept.","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":10.447156250000003,"y":46.773011249999996,"w":1.056,"clr":-1,"A":"left","R":[{"T":"Of","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":11.803248968750003,"y":46.773011249999996,"w":3.835,"clr":-1,"A":"left","R":[{"T":"Taxation","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":16.21699896875,"y":46.773011249999996,"w":3.8920000000000003,"clr":-1,"A":"left","R":[{"T":"2601036","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":21.09068646875,"y":46.773011249999996,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"(REV","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":23.84103021875,"y":46.773011249999996,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"12%2F13)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":34.348953125,"y":10.918275,"w":3.0560000000000005,"clr":-1,"A":"left","R":[{"T":"(VAGI)","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":39.524796875,"y":10.918275,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":20.981385312500002,"y":38.78469375,"w":4.723000000000001,"clr":-1,"A":"left","R":[{"T":"Whichever","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":28.459149218750003,"y":38.78469375,"w":0.722,"clr":-1,"A":"left","R":[{"T":"is","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":29.919742625000005,"y":38.78469375,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"Earlier","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":264,"AM":1024,"x":61.67115625,"y":0.6550208333333387,"w":37.21059375000001,"h":1.2916666666666667,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BDATE","EN":0},"TI":265,"AM":0,"x":38.020296875,"y":4.799833333333339,"w":16.52062500000001,"h":0.9666666666666591,"TU":"2012 beginning","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"EDATE","EN":0},"TI":266,"AM":0,"x":67.76154687500001,"y":4.799833333333339,"w":16.520624999999995,"h":0.9666666666666591,"TU":"2012 Ending","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR","EN":0},"TI":267,"AM":0,"x":85.54029687500001,"y":4.799833333333339,"w":6.208124999999995,"h":0.9666666666666591,"TU":"Year","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":268,"AM":1024,"x":6.381478125,"y":7.0276250000000005,"w":65.80670937500001,"h":0.8913749999999965,"TU":"First Name, Middle Initial and Last Name (of Both if Joint) - OR - Name of Estate or Trust"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":269,"AM":1024,"x":72.38154687500001,"y":7.054875,"w":24.481874999999985,"h":0.8641249999999966,"TU":"Your Social Security Number or FEIN"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":270,"AM":0,"x":80.63154687500001,"y":21.257583333333333,"w":11.983124999999992,"h":1.3341666666666658,"TU":"1. Exception 1 - 2011 Virginia Income Tax (Form 760 filers use the net tax amount from Line 17) 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":271,"AM":0,"x":80.55660937500001,"y":22.757583333333333,"w":11.983125000000005,"h":1.3341666666666658,"TU":"2. Exception 2 - Tax Based on 2011 Income Using 2012 Rates and Exemptions 2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":272,"AM":1024,"x":80.55660937500001,"y":26.387583333333335,"w":11.983125000000005,"h":1.3341666666666658,"TU":"3. Enter the Amount of Your 2012 Virginia Income Tax Liability After the Spouse Tax Adjustment and Tax Credits. See instructions. (If $150 or less, you are not required to file Form 760F) 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":273,"AM":1024,"x":80.63154687500001,"y":27.92233333333333,"w":11.983124999999992,"h":1.3341666666666658,"TU":"4. Enter 66 2/ 3% (.666) of the Amount on Line 3 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":274,"AM":0,"x":80.55660937500001,"y":29.367770833333335,"w":11.983125000000005,"h":1.3341666666666658,"TU":"5. Enter 2011 Income Tax Liability After the Spouse Tax Adjustment and Tax Credits 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":275,"AM":1024,"x":80.56503125000002,"y":30.895083333333332,"w":11.983124999999992,"h":1.3341666666666658,"TU":"6. Enter the Amount From Line 4 or Line 5, Whichever is Less 6."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":276,"AM":0,"x":80.63154687500001,"y":32.422333333333334,"w":11.983124999999992,"h":1.3341666666666658,"TU":"7. Enter the Amount of Tax Withheld and/or the Amount of Estimated Tax Paid or Credited by January 15, 2013 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":277,"AM":1024,"x":80.67589062500001,"y":33.914833333333334,"w":11.983124999999992,"h":1.3341666666666658,"TU":"8. Underpayment of Estimated Tax (Subtract the amount on Line 7 from the amount on Line 6) 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":278,"AM":1024,"x":80.63154687500001,"y":36.88483333333333,"w":11.983124999999992,"h":1.3341666666666658,"TU":"9. Amount of Underpayment From Line 8 9."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":279,"AM":0,"x":80.63154687500001,"y":39.01983333333333,"w":11.983124999999992,"h":1.3341666666666658,"TU":"10. Number of Days After January 15, 2013, Through the Date the Amount on Line 9 Was Paid or May 1, 2013, Whichever is Earlier (If May 1 is earlier, enter 106) 10."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":280,"AM":1024,"x":80.63154687500001,"y":40.55258333333333,"w":14.007984374999984,"h":1.3341666666666707,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":281,"AM":1024,"x":80.55660937500001,"y":42.08983333333333,"w":11.983125000000005,"h":1.334191666666669,"TU":"%_12. Addition to Tax Balance Due - Multiply the Amount on Line 9 by Line 11 (See instructions on back) 12."}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VA760PFF.json b/test/data/va/form_org/VA760PFF.json new file mode 100755 index 00000000..369564b5 --- /dev/null +++ b/test/data/va/form_org/VA760PFF.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"dsh":1,"oc":"#2b2e34","x":-0.171875,"y":33.031124999999996,"w":1.5,"l":105.18750000000001},{"oc":"#ebecec","x":47.22265625,"y":37.15,"w":14.25,"l":23.87343749999999},{"oc":"#ebecec","x":47.22265625,"y":35.546875,"w":14.25,"l":23.87343749999999},{"oc":"#ebecec","x":74.31015625000002,"y":37.15,"w":14.25,"l":23.87343749999999},{"oc":"#ebecec","x":74.31015625000002,"y":35.546875,"w":14.25,"l":23.87343749999999},{"oc":"#2b2e34","x":6.187500000000001,"y":39.734362499999996,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.707375000000006,"y":39.734362499999996,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.324562500000006,"y":39.734362499999996,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":42.734375,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.707375000000006,"y":42.734375,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.324562500000006,"y":42.734375,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":44.234375,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.707375000000006,"y":44.234375,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.324562500000006,"y":44.234375,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":45.734375,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.707375000000006,"y":45.734375,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.324562500000006,"y":45.734375,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":47.234375,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.707375000000006,"y":47.234375,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.324562500000006,"y":47.234375,"w":0.75,"l":9.23003125},{"oc":"#ebecec","x":68.6125,"y":46.946875,"w":14.25,"l":29.571093750000006},{"oc":"#ebecec","x":68.6125,"y":45.334375,"w":14.25,"l":29.571093750000006},{"oc":"#2b2e34","x":6.187500000000001,"y":41.234375,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.707375000000006,"y":41.234375,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.324562500000006,"y":41.234375,"w":0.75,"l":9.23003125}],"VLines":[{"oc":"#ebecec","x":71.09609375,"y":35.546875,"w":14.25,"l":1.603125000000001},{"oc":"#ebecec","x":47.22265625,"y":35.546875,"w":14.25,"l":1.603125000000001},{"oc":"#e2e2e3","x":50.45390625000001,"y":35.800000000000004,"w":3,"l":1.1218749999999982},{"oc":"#e2e2e3","x":52.92890625,"y":35.8,"w":3,"l":1.1125000000000018},{"oc":"#e2e2e3","x":55.403906250000006,"y":35.8,"w":3,"l":1.1125000000000018},{"oc":"#e2e2e3","x":57.87890625000001,"y":35.800000000000004,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":60.353906249999994,"y":35.800000000000004,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":62.82890625000001,"y":35.800000000000004,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":65.30390625,"y":35.800000000000004,"w":3,"l":1.084374999999999},{"oc":"#e2e2e3","x":67.77890625000002,"y":35.800000000000004,"w":3,"l":1.0749999999999982},{"oc":"#ebecec","x":98.18359375000001,"y":35.546875,"w":14.25,"l":1.603125000000001},{"oc":"#ebecec","x":74.31015625000002,"y":35.546875,"w":14.25,"l":1.603125000000001},{"oc":"#e2e2e3","x":77.54140625,"y":35.800000000000004,"w":3,"l":1.1218749999999982},{"oc":"#e2e2e3","x":80.01640625000002,"y":35.8,"w":3,"l":1.1125000000000018},{"oc":"#e2e2e3","x":82.49140625,"y":35.8,"w":3,"l":1.1125000000000018},{"oc":"#e2e2e3","x":84.96640625000002,"y":35.800000000000004,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":87.44140625,"y":35.800000000000004,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":89.91640625,"y":35.800000000000004,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":92.39140625,"y":35.800000000000004,"w":3,"l":1.084374999999999},{"oc":"#e2e2e3","x":94.86640625000001,"y":35.800000000000004,"w":3,"l":1.0749999999999982},{"oc":"#2b2e34","x":6.230468750000001,"y":41.25,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.51162500000001,"y":41.25,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":42.75,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.51162500000001,"y":42.75,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":44.25,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":35.707375000000006,"y":44.25,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":42.324562500000006,"y":44.25,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.51162500000001,"y":44.25,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":45.75,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.51162500000001,"y":45.75,"w":0.75,"l":1.46875},{"oc":"#ebecec","x":98.18359375000001,"y":45.334375,"w":14.25,"l":1.6124999999999925},{"oc":"#ebecec","x":68.6125,"y":45.334375,"w":14.25,"l":1.6124999999999925},{"oc":"#e2e2e3","x":71.86953125,"y":45.56875,"w":1.5,"l":1.1343749999999961},{"oc":"#e2e2e3","x":76.95703125,"y":45.59687499999999,"w":3,"l":1.1156250000000039},{"oc":"#e2e2e3","x":79.54375000000002,"y":45.568749999999994,"w":1.5,"l":1.1437500000000018},{"oc":"#e2e2e3","x":84.70000000000002,"y":45.53125,"w":3,"l":1.1968749999999961},{"oc":"#e2e2e3","x":87.2953125,"y":45.540625,"w":1.5,"l":1.1312500000000039},{"oc":"#e2e2e3","x":92.40859375,"y":45.540625,"w":3,"l":1.1156250000000039},{"oc":"#e2e2e3","x":94.98671875,"y":45.4125,"w":1.5,"l":1.3249999999999982},{"oc":"#e2e2e3","x":74.36171875,"y":45.56875,"w":1.5,"l":1.1343749999999961},{"oc":"#e2e2e3","x":82.0703125,"y":45.568749999999994,"w":1.5,"l":1.1437500000000018},{"oc":"#e2e2e3","x":89.81328125,"y":45.559374999999996,"w":1.5,"l":1.1312500000000039},{"oc":"#2b2e34","x":6.230468750000001,"y":39.75000625,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.51162500000001,"y":39.75000625,"w":0.75,"l":1.46875}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":76.40703125000002,"y":46.56875,"w":1.0914062500000106,"h":0.4906250000000038,"clr":1},{"x":84.18437500000002,"y":46.56875,"w":1.0914062500000106,"h":0.4906250000000038,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.8686125,"y":38.124225,"w":15.09999999999999,"clr":-1,"A":"left","R":[{"T":"0000000000%207648888%20113001","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":6.109381875000001,"y":33.329,"w":6.667999999999999,"clr":-1,"A":"left","R":[{"T":"Form%20760-PFF","S":11,"TS":[0,18,1,0]}]},{"oc":"#2b2e34","x":27.974487500000002,"y":33.32895,"w":33.065000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20Payment%20Coupon%20for%20Farmers%2C%20Fishermen%20and%20Merchant%20Seamen","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":6.281250000000001,"y":34.2665,"w":6.112,"clr":-1,"A":"left","R":[{"T":"(DOC%20ID%20764)","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":26.218732812500004,"y":34.26646875,"w":9.670000000000002,"clr":-1,"A":"left","R":[{"T":"Please%20do%20not%20staple","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":6.453073437500002,"y":35.64146625,"w":19.395000000000003,"clr":-1,"A":"left","R":[{"T":"To%20Be%20Used%20For%20Payments%20On%20Previously","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":6.624931250000003,"y":36.266465625,"w":22.119000000000003,"clr":-1,"A":"left","R":[{"T":"Filed%202013%20Individual%20Income%20Tax%20Returns%20Only","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":48.9819265625,"y":34.1595375,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.58905,"y":34.1595375,"w":14.838000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":75.042765625,"y":38.905,"w":8.224,"clr":-1,"A":"left","R":[{"T":"Mail%20Payment%20To%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.1756125,"y":39.655,"w":12.835000000000008,"clr":-1,"A":"left","R":[{"T":"VA%20Department%20of%20Taxation","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":76.4568671875,"y":40.405,"w":6.67,"clr":-1,"A":"left","R":[{"T":"P.O.%20Box%201478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.47476093750001,"y":41.155,"w":12.449000000000005,"clr":-1,"A":"left","R":[{"T":"Richmond%2C%20VA%2023218-1478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":6.324218750000001,"y":39.3823875,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Name(s)","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324218750000001,"y":42.38239875,"w":3.668,"clr":-1,"A":"left","R":[{"T":"Address","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324218750000001,"y":43.88239875,"w":1.722,"clr":-1,"A":"left","R":[{"T":"City","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":35.80105625,"y":43.88239875,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":42.41832968750001,"y":43.88239875,"w":1.556,"clr":-1,"A":"left","R":[{"T":"ZIP","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324270312500002,"y":45.38239875,"w":10.67,"clr":-1,"A":"left","R":[{"T":"Daytime%20Phone%20Number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":57.285121875,"y":45.2255175,"w":4.558,"clr":-1,"A":"left","R":[{"T":"Amount%20of","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":57.28512187500001,"y":45.975518125,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":72.92681250000001,"y":43.3015,"w":15.061000000000007,"clr":-1,"A":"left","R":[{"T":"Make%20your%20check%20payable%20to%20the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":72.9419375,"y":43.9015,"w":15.114000000000008,"clr":-1,"A":"left","R":[{"T":"Virginia%20Department%20of%20Taxation","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":91.84055625,"y":45.81515375,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.528159375,"y":45.769031250000005,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#2b2e34","x":95.3248784375,"y":45.769031250000005,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":282,"AM":1024,"x":48.130843750000004,"y":35.869145833333334,"w":22.312468750000004,"h":0.9832291666666654,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":283,"AM":1024,"x":75.22453125,"y":35.869145833333334,"w":22.31229687499999,"h":0.9832291666666654,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME1","EN":0},"TI":284,"AM":1024,"x":6.464046875,"y":40.231145833333336,"w":45.024375000000006,"h":1.0041666666666675,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":285,"AM":1024,"x":6.3626578125,"y":41.645833333333336,"w":45.0243578125,"h":1.0041666666666675,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":286,"AM":1024,"x":6.464046875,"y":43.23114583333333,"w":45.024375000000006,"h":1.0041666666666724,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":287,"AM":1024,"x":6.464046875,"y":44.73114583333333,"w":29.205000000000002,"h":1.0041666666666724,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":288,"AM":1024,"x":35.937171875000004,"y":44.73114583333333,"w":6.3525,"h":1.0041666666666724,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":289,"AM":1024,"x":42.557796875,"y":44.73114583333333,"w":8.930625000000006,"h":1.0041666666666724,"TU":"ZIP"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":290,"AM":1024,"x":6.538915625000001,"y":46.25837083333334,"w":45.02444375,"h":1.0041666666666629,"TU":"Daytime Phone Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYMENT","EN":0},"TI":291,"AM":0,"x":69.49507812499999,"y":45.69070833333333,"w":22.818468750000005,"h":0.972991666666663,"TU":"Amount of Payment"}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VAADJ.json b/test/data/va/form_org/VAADJ.json new file mode 100755 index 00000000..713a6845 --- /dev/null +++ b/test/data/va/form_org/VAADJ.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"Sch ADJ WEB 11 06 13.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#c9c9c9","x":6.298015625000001,"y":4.365625000000004,"w":0.75,"l":59.88176562500001},{"oc":"#c9c9c9","x":6.298015625000001,"y":6.146875000000004,"w":0.75,"l":59.88176562500001},{"oc":"#d2d2d2","x":37.70078125,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":37.66640625000001,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":40.17578125,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":40.14140625000001,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":42.65078125000001,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":42.61640625,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.12578125000001,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.091406250000006,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":47.60078125,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":47.56640625,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.075781250000006,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.04140625,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":52.55078125000001,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":52.51640625000001,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.02578125,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":54.99140625,"y":3.5812499999999923,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":57.50078125000001,"y":2.3343750000000036,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":57.466406250000006,"y":3.5812499999999923,"w":6,"l":2.474999999999996},{"x":3.09753125,"y":44.997749999999996,"w":3,"l":2.43203125},{"oc":"#d2d2d2","x":68.77715625000002,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.74278125000001,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.25215625,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.21778125000002,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.72715625000001,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.69278125,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.20215625000002,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.16778125000002,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.67715625,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.64278125,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.15215625000002,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.11778125000001,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.62715625,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.59278125000002,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.10215625000001,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.06778125,"y":9.040750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.57715625,"y":7.793875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.54278125000002,"y":9.043875,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":7.796999999999997,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":9.043875,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":7.796999999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":9.043875,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.86309375000002,"y":9.912500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":11.168750000000003,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.30371875000002,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.26934375000002,"y":11.168750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.77871875,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.74434375,"y":11.168750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.25371875000002,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.21934375000001,"y":11.168750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.72871875,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.69434375000002,"y":11.168750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.20371875000001,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.16934375,"y":11.168750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.67871875000002,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.64434375000002,"y":11.168750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.15371875,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.11934375,"y":11.168750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.62871875000002,"y":9.921875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.54278125000002,"y":11.168750000000003,"w":6,"l":3.2398437499999977},{"oc":"#d2d2d2","x":94.23184375000001,"y":9.924999999999997,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":11.171875,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":9.924999999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":11.171875,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":53.10215625000001,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.076375000000006,"y":13.981062499999998,"w":6,"l":2.4664062499999977},{"oc":"#d2d2d2","x":55.57715625000001,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.542781250000004,"y":13.981062499999998,"w":6,"l":3.1624999999999965},{"oc":"#d2d2d2","x":68.76856250000002,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.74278125000001,"y":13.981062499999998,"w":6,"l":2.4664062499999977},{"oc":"#d2d2d2","x":71.2435625,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.2091875,"y":13.981062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.71856250000002,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.68418750000001,"y":13.981062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.1935625,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.15918750000002,"y":13.981062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.66856250000001,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.6341875,"y":13.981062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.14356250000002,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.10918750000002,"y":13.981062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.6185625,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.5841875,"y":13.981062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.09356250000002,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.05918750000001,"y":13.981062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.5685625,"y":12.734187499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.09590625,"y":13.987312500000002,"w":6,"l":3.600781249999995},{"oc":"#d2d2d2","x":94.23184375000001,"y":12.737312500000002,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":13.984187499999999,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":12.737312500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":13.984187499999999,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":53.093562500000004,"y":14.368875000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.05918750000001,"y":15.61575,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.568562500000006,"y":14.368875000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.53418750000001,"y":15.61575,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":68.751375,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.72559375000002,"y":15.618937500000001,"w":6,"l":2.4664062499999977},{"oc":"#d2d2d2","x":71.22637500000002,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.19200000000001,"y":15.618937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.701375,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.66700000000002,"y":15.618937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.17637500000001,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.142,"y":15.618937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.65137500000002,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.61700000000002,"y":15.618937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.126375,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.092,"y":15.618937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.60137500000002,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.56700000000001,"y":15.618937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.076375,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.04200000000002,"y":15.618937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.551375,"y":14.372062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.52559375,"y":15.625187500000001,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":14.368937500000001,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":15.615812499999995,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":14.368937500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":15.615812499999995,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":88.40528125,"y":17.3810625,"w":6,"l":3.2484375000000028},{"oc":"#d2d2d2","x":68.69981250000001,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.69121875000002,"y":17.3748125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":71.17481250000002,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.14043750000002,"y":17.3748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.6498125,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.6154375,"y":17.3748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.12481250000002,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.09043750000001,"y":17.3748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.5998125,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.56543750000002,"y":17.3748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.07481250000001,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.0404375,"y":17.3748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.54981250000002,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.51543750000002,"y":17.3748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.0248125,"y":16.0185625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.9904375,"y":17.3748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.49981250000002,"y":16.0185625,"w":6,"l":3.1367187500000004},{"oc":"#d2d2d2","x":94.23184375000001,"y":16.0216875,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":17.3748125,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":16.0216875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":17.3748125,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":68.75996875,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.751375,"y":20.159375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":71.23496875000001,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.20059375,"y":20.159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.70996875000002,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.67559375000002,"y":20.159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.18496875,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.15059375,"y":20.159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.65996875000002,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.62559375000001,"y":20.159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.13496875,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.10059375000002,"y":20.159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.60996875000001,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.57559375,"y":20.159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.08496875000002,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.05059375000002,"y":20.159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.55996875000001,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.4654375,"y":20.165624999999995,"w":6,"l":3.2656250000000004},{"oc":"#d2d2d2","x":94.23184375000001,"y":18.803125000000005,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":20.15625,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":18.803125000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":20.15625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":68.81153125000002,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.78575000000001,"y":22.2438125,"w":6,"l":2.4664062499999977},{"oc":"#d2d2d2","x":71.28653125,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.25215625,"y":22.2438125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.76153125000002,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.72715625000001,"y":22.2438125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.23653125,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.20215625000002,"y":22.2438125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.71153125000001,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.67715625,"y":22.2438125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.18653125000002,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.13496875,"y":22.240687499999996,"w":6,"l":2.569531249999995},{"oc":"#d2d2d2","x":83.66153125,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.62715625,"y":22.2438125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.13653125000002,"y":20.8875625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.10215625000001,"y":22.2438125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.61153125,"y":20.8875625,"w":6,"l":3.1539062499999977},{"oc":"#d2d2d2","x":88.49121875,"y":22.2500625,"w":6,"l":3.2914062500000028},{"oc":"#d2d2d2","x":94.23184375000001,"y":20.8906875,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":22.2438125,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":20.8906875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":22.2438125,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":68.81153125000002,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.79434375,"y":24.075,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.28653125,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.25215625,"y":24.075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.76153125000002,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.72715625000001,"y":24.075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.23653125,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.20215625000002,"y":24.075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.71153125000001,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.67715625,"y":24.075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.18653125000002,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.15215625000002,"y":24.075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.66153125,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.62715625,"y":24.075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.13653125000002,"y":22.681249999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.10215625000001,"y":24.075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.61153125,"y":22.681249999999995,"w":6,"l":3.1539062499999977},{"oc":"#d2d2d2","x":88.5685625,"y":24.078125,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":22.684375,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":24.065625,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":22.684375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":24.065625,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.79434375,"y":25.878625,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.28653125,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.25215625,"y":25.878625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.76153125000002,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.72715625000001,"y":25.878625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.23653125,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.20215625000002,"y":25.878625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.71153125000001,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.67715625,"y":25.878625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.18653125000002,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.15215625000002,"y":25.878625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.66153125,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.62715625,"y":25.878625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.13653125000002,"y":24.484875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.10215625000001,"y":25.878625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.61153125,"y":24.484875,"w":6,"l":3.1539062499999977},{"oc":"#d2d2d2","x":88.5685625,"y":25.88175,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":24.488,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":25.869250000000005,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":24.488,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":25.869250000000005,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":52.990437500000006,"y":26.893625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":52.99903125000001,"y":28.118624999999998,"w":6,"l":2.5265625000000016},{"oc":"#d2d2d2","x":55.46543750000001,"y":26.893625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.44825000000001,"y":28.124875,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":68.77715625000002,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.75996875,"y":28.259249999999998,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.25215625,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.21778125000002,"y":28.259249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.72715625000001,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.69278125,"y":28.259249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.20215625000002,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.16778125000002,"y":28.259249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.67715625,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.64278125,"y":28.259249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.15215625000002,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.11778125000001,"y":28.259249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.62715625,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.59278125000002,"y":28.259249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.10215625000001,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.06778125,"y":28.259249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.57715625,"y":26.868624999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.54278125000002,"y":28.268625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":26.871750000000002,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":28.20925,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":26.871750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":28.20925,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":52.990437500000006,"y":28.6320625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":52.99903125000001,"y":29.878937499999996,"w":6,"l":2.4320312500000028},{"oc":"#d2d2d2","x":55.46543750000001,"y":28.6320625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.431062499999996,"y":29.878937499999996,"w":6,"l":3.188281249999999},{"oc":"#d2d2d2","x":68.86309375000002,"y":28.6874375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":30.040562500000004,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.33809375,"y":28.6874375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.26934375000002,"y":30.040562500000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.81309375000001,"y":28.6874375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.74434375,"y":30.040562500000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.28809375000002,"y":28.6874375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.21934375000001,"y":30.040562500000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.76309375,"y":28.6874375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.69434375000002,"y":30.040562500000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.20371875000001,"y":28.6843125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.16934375,"y":30.040562500000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.67871875000002,"y":28.6843125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.64434375000002,"y":30.040562500000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.15371875,"y":28.6843125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.11934375,"y":30.040562500000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.62871875000002,"y":28.6843125,"w":6,"l":3.1539062499999977},{"oc":"#d2d2d2","x":88.59434375,"y":30.0374375,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":28.6905625,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":30.0436875,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":28.6905625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":30.0436875,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":83.64434375000002,"y":31.7841875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":31.7841875,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.28653125,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.26934375000002,"y":31.7841875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.76153125000002,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.74434375,"y":31.7841875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.23653125,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.21934375000001,"y":31.7841875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.71153125000001,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.69434375000002,"y":31.7841875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.18653125000002,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.16934375,"y":31.7841875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.66153125,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.13653125000002,"y":30.418562499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.11934375,"y":31.7841875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.61153125,"y":30.418562499999997,"w":6,"l":2.6039062500000028},{"oc":"#d2d2d2","x":88.58575000000002,"y":31.7810625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":30.4123125,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":31.7654375,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":30.4123125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":31.7654375,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":52.990437500000006,"y":30.3848125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":52.99903125000001,"y":31.6316875,"w":6,"l":2.4320312500000028},{"oc":"#d2d2d2","x":55.46543750000001,"y":30.3848125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.431062499999996,"y":31.6316875,"w":6,"l":3.188281249999999},{"oc":"#d2d2d2","x":68.81153125000002,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":33.568374999999996,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.28653125,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.26934375000002,"y":33.568374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.76153125000002,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.74434375,"y":33.568374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.23653125,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.21934375000001,"y":33.568374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.71153125000001,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.69434375000002,"y":33.568374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.18653125000002,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.16934375,"y":33.568374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.66153125,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.13653125000002,"y":32.20275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.11934375,"y":33.568374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.61153125,"y":32.20275,"w":6,"l":2.6039062500000028},{"oc":"#d2d2d2","x":88.58575000000002,"y":33.56525,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":32.1965,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":33.549625,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":32.1965,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":33.549625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":83.690921875,"y":33.578624999999995,"w":6,"l":2.4750000000000028},{"x":3.0968437500000006,"y":5.873874999999998,"w":3,"l":2.4320312500000005},{"x":95.96245312500001,"y":5.873812500000004,"w":3,"l":2.4320312500000028},{"oc":"#d2d2d2","x":53.061078125,"y":35.5796875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.069671875000004,"y":36.8046875,"w":6,"l":2.5265625000000016},{"oc":"#d2d2d2","x":55.53607812500001,"y":35.5796875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.518890625000004,"y":36.8109375,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":58.25600000000001,"y":35.5796875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":58.2388125,"y":36.8109375,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.79434375,"y":36.9735,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.28653125,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.25215625,"y":36.9735,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.76153125000002,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.72715625000001,"y":36.9735,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.23653125,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.20215625000002,"y":36.9735,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.71153125000001,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.67715625,"y":36.9735,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.18653125000002,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.15215625000002,"y":36.9735,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.66153125,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.62715625,"y":36.9735,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.13653125000002,"y":35.57975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.10215625000001,"y":36.9735,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.61153125,"y":35.57975,"w":6,"l":3.1539062499999977},{"oc":"#d2d2d2","x":88.5685625,"y":36.976625000000006,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":35.582875,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":36.964125,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":35.582875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":36.964125,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":53.02721875,"y":37.3571875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.035812500000006,"y":38.582187499999996,"w":6,"l":2.5265625000000016},{"oc":"#d2d2d2","x":55.50221875000001,"y":37.3571875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.485031250000006,"y":38.5884375,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":58.222140625,"y":37.3571875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":58.204953125,"y":38.5884375,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":68.77715625000002,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.75996875,"y":38.74775,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.25215625,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.21778125000002,"y":38.74775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.72715625000001,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.69278125,"y":38.74775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.20215625000002,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.16778125000002,"y":38.74775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.67715625,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.64278125,"y":38.74775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.15215625000002,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.11778125000001,"y":38.74775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.62715625,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.59278125000002,"y":38.74775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.10215625000001,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.06778125,"y":38.74775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.57715625,"y":37.357125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.54278125000002,"y":38.757125,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":37.36025,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":38.69775,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":37.36025,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":38.69775,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":53.07809375,"y":39.173,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.086687500000004,"y":40.3980625,"w":6,"l":2.5265625000000016},{"oc":"#d2d2d2","x":55.55309375,"y":39.173,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":55.535906250000004,"y":40.404312499999996,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":58.273015625000006,"y":39.173,"w":6,"l":2.474999999999996},{"oc":"#d2d2d2","x":58.255828125,"y":40.404312499999996,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":68.86309375000002,"y":39.175999999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":40.529125,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.33809375,"y":39.175999999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.26934375000002,"y":40.529125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.81309375000001,"y":39.175999999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.74434375,"y":40.529125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.28809375000002,"y":39.175999999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.21934375000001,"y":40.529125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.76309375,"y":39.175999999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.69434375000002,"y":40.529125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.20371875000001,"y":39.172875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.16934375,"y":40.529125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.67871875000002,"y":39.172875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.64434375000002,"y":40.529125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.15371875,"y":39.172875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.11934375,"y":40.529125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.62871875000002,"y":39.172875,"w":6,"l":3.1539062499999977},{"oc":"#d2d2d2","x":88.59434375,"y":40.526,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":39.179125,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":40.53225,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":39.179125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.19121875000002,"y":40.53225,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":68.81153125000002,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.81153125000002,"y":42.58275,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":71.28653125,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.26934375000002,"y":42.58275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.76153125000002,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.74434375,"y":42.58275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.23653125,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.21934375000001,"y":42.58275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.71153125000001,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.69434375000002,"y":42.58275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.18653125000002,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.16934375,"y":42.58275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.66153125,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.13653125000002,"y":41.217125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.11934375,"y":42.58275,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.61153125,"y":41.217125,"w":6,"l":2.6039062500000028},{"oc":"#d2d2d2","x":88.58575000000002,"y":42.579625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":94.23184375000001,"y":41.210874999999994,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":94.23184375000001,"y":42.564,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":96.22559375,"y":41.210874999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.690921875,"y":42.5930625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":96.11112500000002,"y":42.5625,"w":6,"l":3.1882812500000055},{"x":95.96193749999999,"y":44.991625,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#c9c9c9","x":6.298015625000001,"y":4.365625000000004,"w":0.75,"l":1.78125},{"oc":"#c9c9c9","x":66.17978125000002,"y":4.365625000000004,"w":0.75,"l":1.78125},{"oc":"#d2d2d2","x":38.03593750000001,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":40.5109375,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":42.9859375,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":45.4609375,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":47.9359375,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":50.41093750000001,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":52.8859375,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":55.360937500000006,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":57.83593750000001,"y":2.2125,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":60.23359375,"y":2.1906250000000003,"w":6,"l":1.5125},{"x":3.26940625,"y":44.17275,"w":3,"l":0.8874999999999981},{"oc":"#d2d2d2","x":69.11231250000002,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":71.5873125,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":74.06231250000002,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":76.5373125,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":79.01231250000001,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":81.48731250000002,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":83.9623125,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":86.43731250000002,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":88.9123125,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":91.3873125,"y":7.672000000000001,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":94.57559375000001,"y":7.675125000000002,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":99.03575,"y":7.675125000000002,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":69.16387500000002,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":71.638875,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":74.11387500000001,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":76.58887500000002,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":79.063875,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":81.53887500000002,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":84.013875,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":86.48887500000001,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":88.963875,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":91.43887500000001,"y":9.799999999999995,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":94.57559375000001,"y":9.803125000000003,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":99.03575,"y":9.803125000000003,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":53.437312500000004,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.912312500000006,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":58.38731250000001,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.10371875,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.57871875000001,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":74.05371875000002,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.52871875,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":79.00371875000002,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.47871875,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.95371875000001,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.42871875000002,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.90371875000001,"y":12.612312500000007,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.37871875000002,"y":12.609187500000003,"w":6,"l":1.5031249999999996},{"oc":"#d2d2d2","x":94.57559375000001,"y":12.615437499999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":99.03575,"y":12.615437499999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.42871875000001,"y":14.247,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.903718749999996,"y":14.247,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":58.378718750000004,"y":14.247,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.08653125000001,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.56153125000002,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":74.03653125,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.51153125000002,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.98653125,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.46153125000001,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.93653125000002,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.41153125,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.88653125000002,"y":14.250187499999996,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.36153125,"y":14.247062499999993,"w":6,"l":1.353125000000001},{"oc":"#d2d2d2","x":94.57559375000001,"y":14.247062500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":99.03575,"y":14.247062500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.03496875000002,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.50996875,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":73.98496875000001,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.45996875000002,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":78.93496875,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.40996875000002,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.88496875,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.35996875000001,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.83496875,"y":15.896687499999999,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.30996875000001,"y":15.896687500000006,"w":6,"l":1.4718749999999996},{"oc":"#d2d2d2","x":94.57559375000001,"y":16.099812500000006,"w":6,"l":1.2687499999999996},{"oc":"#d2d2d2","x":99.03575,"y":15.899812500000005,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":69.095125,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.57012500000002,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.045125,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.52012500000001,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":78.99512500000002,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.470125,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.94512500000002,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.420125,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.895125,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.370125,"y":18.681249999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":94.57559375000001,"y":18.881249999999998,"w":6,"l":1.2687499999999996},{"oc":"#d2d2d2","x":99.03575,"y":18.681249999999995,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":69.1466875,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.62168750000001,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.09668750000002,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.5716875,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.04668750000002,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.5216875,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.99668750000001,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.47168750000002,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.94668750000001,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.42168750000002,"y":20.7656875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":94.57559375000001,"y":20.968812500000002,"w":6,"l":1.2687499999999996},{"oc":"#d2d2d2","x":99.03575,"y":20.7688125,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":69.1466875,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.62168750000001,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.09668750000002,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.5716875,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.04668750000002,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.5216875,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.99668750000001,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.47168750000002,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.94668750000001,"y":22.559375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.42168750000002,"y":22.559375000000003,"w":6,"l":1.634375000000001},{"oc":"#d2d2d2","x":94.57559375000001,"y":22.609375000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":99.03575,"y":22.562500000000004,"w":6,"l":1.396874999999999},{"oc":"#d2d2d2","x":69.1466875,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.62168750000001,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.09668750000002,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.5716875,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.04668750000002,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.5216875,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.99668750000001,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.47168750000002,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.94668750000001,"y":24.363,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.42168750000002,"y":24.363,"w":6,"l":1.634375000000001},{"oc":"#d2d2d2","x":94.57559375000001,"y":24.413,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":99.03575,"y":24.366125,"w":6,"l":1.396874999999999},{"oc":"#d2d2d2","x":53.325593749999996,"y":26.77175,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.800593750000004,"y":26.77175,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":58.275593750000006,"y":26.77175,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.11231250000002,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.5873125,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.06231250000002,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.5373125,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.01231250000001,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.48731250000002,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.9623125,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.43731250000002,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.9123125,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.3873125,"y":26.746750000000002,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":94.57559375000001,"y":26.749875000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":99.03575,"y":26.749875000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.325593749999996,"y":28.5101875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.800593750000004,"y":28.5101875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":58.275593750000006,"y":28.5101875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.16387500000002,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.638875,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.11387500000001,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.58887500000002,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.063875,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.53887500000002,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":84.013875,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.48887500000001,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.963875,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.43887500000001,"y":28.5624375,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":94.57559375000001,"y":28.7686875,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":99.03575,"y":28.5686875,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":69.16387500000002,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.638875,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.11387500000001,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.58887500000002,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.063875,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.53887500000002,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":84.013875,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.48887500000001,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.963875,"y":30.3060625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.4045,"y":30.2966875,"w":6,"l":1.6062499999999982},{"oc":"#d2d2d2","x":94.57559375000001,"y":30.4904375,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":99.03575,"y":30.2904375,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":53.325593749999996,"y":30.262937500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.800593750000004,"y":30.262937500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":58.275593750000006,"y":30.262937500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.16009375000002,"y":32.1625625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.638875,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.11387500000001,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.58887500000002,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.063875,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.53887500000002,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":84.013875,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.48887500000001,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.963875,"y":32.09025,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.4045,"y":32.080875,"w":6,"l":1.6062499999999982},{"oc":"#d2d2d2","x":94.57559375000001,"y":32.27462499999999,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":99.03575,"y":32.074625000000005,"w":6,"l":1.359375},{"x":3.2687187500000006,"y":5.817624999999999,"w":3,"l":0.8843749999999998},{"x":98.222609375,"y":5.817562500000005,"w":3,"l":0.8843749999999998},{"oc":"#d2d2d2","x":53.396234375,"y":35.4578125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.87123437500001,"y":35.4578125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":58.346234375,"y":35.4578125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":61.066156250000006,"y":35.4578125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.1466875,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.62168750000001,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.09668750000002,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.5716875,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.04668750000002,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.5216875,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.99668750000001,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.47168750000002,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.94668750000001,"y":35.457875,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.42168750000002,"y":35.457874999999994,"w":6,"l":1.634375000000001},{"oc":"#d2d2d2","x":94.57559375000001,"y":35.507875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":99.03575,"y":35.461,"w":6,"l":1.396874999999999},{"oc":"#d2d2d2","x":55.837375,"y":37.297000000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.362375,"y":37.2353125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":58.312375,"y":37.2353125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":61.032296875,"y":37.2353125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.11231250000002,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.5873125,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.06231250000002,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.5373125,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.01231250000001,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.48731250000002,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":83.9623125,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.43731250000002,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.9123125,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.3873125,"y":37.23525,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":94.57559375000001,"y":37.238375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":99.03575,"y":37.238375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.41325,"y":39.051125000000006,"w":6,"l":1.3500624999999975},{"oc":"#d2d2d2","x":55.888250000000006,"y":39.051125000000006,"w":6,"l":1.3500624999999975},{"oc":"#d2d2d2","x":58.36325,"y":39.051125000000006,"w":6,"l":1.3500624999999975},{"oc":"#d2d2d2","x":61.083171875,"y":39.051125000000006,"w":6,"l":1.3500624999999975},{"oc":"#d2d2d2","x":69.16387500000002,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.638875,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.11387500000001,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.58887500000002,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.063875,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.53887500000002,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":84.013875,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.48887500000001,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.963875,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.43887500000001,"y":39.050999999999995,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":94.57559375000001,"y":39.25725,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":99.03575,"y":39.05725,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":69.16387500000002,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":71.638875,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":74.11387500000001,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":76.58887500000002,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":79.063875,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":81.53887500000002,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":84.013875,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":86.48887500000001,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":88.963875,"y":41.104625,"w":6,"l":1.46875},{"oc":"#d2d2d2","x":91.4045,"y":41.09525,"w":6,"l":1.6062499999999982},{"oc":"#d2d2d2","x":94.57559375000001,"y":41.288999999999994,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":99.03575,"y":41.089,"w":6,"l":1.359375},{"x":98.23928124999999,"y":44.172875000000005,"w":3,"l":0.8843749999999962}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":70.09062500000002,"y":5.168750000000007,"w":20.788281249999997,"h":0.8999999999999962,"clr":-1},{"oc":"#c9c9c9","x":6.445312500000001,"y":17.784375,"w":40.29609375,"h":0.8999999999999962,"clr":-1},{"oc":"#c9c9c9","x":6.359375000000001,"y":7.078562500000004,"w":35.95625,"h":0.8999999999999962,"clr":-1},{"oc":"#d2d2d2","x":83.05996875,"y":8.672000000000002,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":75.61778125000001,"y":8.653250000000002,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":83.11153125,"y":10.800000000000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.66934375,"y":10.781249999999995,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":83.05137500000001,"y":13.612312499999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.60918750000002,"y":13.593562500000004,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":83.03418750000002,"y":15.250187500000001,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.592,"y":15.231437499999993,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.982625,"y":16.9841875,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.5404375,"y":16.965437499999997,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.04278125000002,"y":19.76875,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.60059375000002,"y":19.75,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.09434375000001,"y":21.8531875,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.65215625000002,"y":21.834437499999996,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.09434375000001,"y":23.646875000000005,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.61778125000001,"y":23.65625,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.09434375000001,"y":25.4505,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.61778125000001,"y":25.459875,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.05996875,"y":27.83425,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.61778125000001,"y":27.8155,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.11153125,"y":29.649937500000004,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.66934375,"y":29.6311875,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.11153125,"y":31.3935625,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.66934375,"y":31.3748125,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.11153125,"y":33.177749999999996,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.66934375,"y":33.159,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#c9c9c9","x":6.3595468749999995,"y":34.300875,"w":40.29609375,"h":0.9000000000000009,"clr":-1},{"oc":"#d2d2d2","x":83.09434375000001,"y":36.545375,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.61778125000001,"y":36.554750000000006,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.05996875,"y":38.32275,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.61778125000001,"y":38.304,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.11153125,"y":40.1385,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.66934375,"y":40.11975,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":83.11153125,"y":42.192125,"w":1.8562500000000053,"h":0.46875,"clr":-1},{"oc":"#d2d2d2","x":75.66934375,"y":42.173375,"w":1.8562500000000053,"h":0.46875,"clr":-1}],"Texts":[{"x":5.937500000000001,"y":2.071274999999995,"w":1.824,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[1,22,1,0]}]},{"x":11.973096875000003,"y":2.0711999999999953,"w":3.2360000000000007,"clr":0,"A":"left","R":[{"T":"Virginia%20","S":-1,"TS":[1,16,1,0]}]},{"x":18.61775,"y":2.0711999999999953,"w":5.514,"clr":0,"A":"left","R":[{"T":"Schedule%20ADJ","S":35,"TS":[1,18,1,0]}]},{"x":5.937500000000001,"y":2.8962249999999963,"w":6.1049999999999995,"clr":0,"A":"left","R":[{"T":"(Form%20760-ADJ)","S":-1,"TS":[1,15,1,0]}]},{"x":6.109375000000001,"y":4.0376062500000005,"w":13.534999999999998,"clr":0,"A":"left","R":[{"T":"%20Name(s)%20as%20shown%20on%20Virginia%20return","S":27,"TS":[1,12,0,0]}]},{"oc":"#b0b0b0","x":41.1525734375,"y":1.2938999999999985,"w":10.527,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":27,"TS":[1,12,0,0]}]},{"x":44.72961875,"y":2.4056250000000055,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":49.85926250000001,"y":2.406899999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":70.71588125000001,"y":5.0991750000000025,"w":9.169,"clr":1,"A":"left","R":[{"T":"Whole%20Dollars%20Only","S":-1,"TS":[0,16,1,0]}]},{"x":5.937500000000001,"y":7.118162499999997,"w":17.588999999999995,"clr":1,"A":"left","R":[{"T":"%20Additions%20to%20Federal%20Adjusted%20Gross%20Income","S":-1,"TS":[1,15,1,0]}]},{"x":5.937500000000001,"y":8.305687499999996,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%201.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.190578125000002,"y":8.305687499999996,"w":33.777000000000015,"clr":0,"A":"left","R":[{"T":"Interest%20on%20obligations%20of%20other%20states%2C%20exempt%20from%20federal%20income%20tax%20but%20not%20from%20state%20tax.%20","S":27,"TS":[1,12,0,0]}]},{"x":60.955203125000004,"y":8.3056875,"w":2.964000000000001,"clr":0,"A":"left","R":[{"T":".............","S":27,"TS":[1,12,0,0]}]},{"x":65.869625,"y":8.3056875,"w":0.456,"clr":0,"A":"left","R":[{"T":"1","S":33,"TS":[1,12,1,0]}]},{"x":5.937500000000001,"y":9.3868125,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%202.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.190578125000002,"y":9.3868125,"w":17.868,"clr":0,"A":"left","R":[{"T":"Other%20additions%20to%20federal%20adjusted%20gross%20income.","S":27,"TS":[1,12,0,0]}]},{"x":9.03125,"y":10.4679375,"w":1.368,"clr":0,"A":"left","R":[{"T":"2a.%20","S":27,"TS":[1,12,0,0]}]},{"x":11.147375000000002,"y":10.4679375,"w":23.782000000000007,"clr":0,"A":"left","R":[{"T":"FIXED%20DATE%20CONFORMITY%20ADDITION%20-%20SEE%20INSTRUCTIONS.","S":33,"TS":[1,12,1,0]}]},{"x":47.5597296875,"y":10.4679375,"w":11.171999999999995,"clr":0,"A":"left","R":[{"T":"%20................................................","S":27,"TS":[1,12,0,0]}]},{"x":65.16425,"y":10.4679375,"w":0.912,"clr":0,"A":"left","R":[{"T":"2a","S":33,"TS":[1,12,1,0]}]},{"x":9.202953124999997,"y":11.637937499999998,"w":25.069000000000003,"clr":0,"A":"left","R":[{"T":"2b%20-%202c.%20Refer%20to%20the%20Form%20760%20instructions%20for%20Other%20Addition%20Codes.%20","S":27,"TS":[1,12,0,0]}]},{"x":49.421703125,"y":13.156687499999999,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"2b","S":33,"TS":[1,12,1,0]}]},{"x":49.421703125,"y":14.866687499999998,"w":0.912,"clr":0,"A":"left","R":[{"T":"2c","S":33,"TS":[1,12,1,0]}]},{"x":65.869625,"y":16.3854375,"w":0.456,"clr":0,"A":"left","R":[{"T":"3","S":33,"TS":[1,12,1,0]}]},{"x":6.258906250000001,"y":17.79194375,"w":19.64,"clr":1,"A":"left","R":[{"T":"Subtractions%20from%20Federal%20Adjusted%20Gross%20Income","S":-1,"TS":[1,15,1,0]}]},{"x":5.937500000000001,"y":18.748162499999996,"w":0.912,"clr":0,"A":"left","R":[{"T":"4.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.03125,"y":18.748162499999996,"w":30.901,"clr":0,"A":"left","R":[{"T":"Income%20(interest%2C%20dividends%20or%20gains)%20from%20obligations%20or%20securities%20of%20the%20U.S.%20exempt","S":27,"TS":[1,12,0,0]}]},{"x":65.869625,"y":19.423162499999997,"w":0.456,"clr":0,"A":"left","R":[{"T":"4","S":33,"TS":[1,12,1,0]}]},{"x":5.937500000000001,"y":20.379412499999997,"w":0.912,"clr":0,"A":"left","R":[{"T":"5.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.03125,"y":20.379412499999997,"w":32.587,"clr":0,"A":"left","R":[{"T":"Disability%20income%20reported%20as%20wages%20(or%20payments%20in%20lieu%20of%20wages)%20on%20your%20federal%20return.","S":27,"TS":[1,12,0,0]}]},{"x":8.6785625,"y":21.616912499999998,"w":3.7840000000000007,"clr":0,"A":"left","R":[{"T":"%205a.%20Enter%20","S":27,"TS":[1,12,0,0]}]},{"x":14.389625000000002,"y":21.616912499999998,"w":2.5970000000000004,"clr":0,"A":"left","R":[{"T":"YOUR%20","S":33,"TS":[1,12,1,0]}]},{"x":65.16425,"y":21.616912499999998,"w":0.912,"clr":0,"A":"left","R":[{"T":"5a","S":33,"TS":[1,12,1,0]}]},{"x":8.678562499999991,"y":23.191912499999997,"w":1.596,"clr":0,"A":"left","R":[{"T":"%205b.%20","S":27,"TS":[1,12,0,0]}]},{"x":11.147375000000002,"y":23.1916875,"w":2.188,"clr":0,"A":"left","R":[{"T":"Enter%20","S":27,"TS":[1,12,0,0]}]},{"x":14.531937500000002,"y":23.1916875,"w":4.330000000000001,"clr":0,"A":"left","R":[{"T":"SPOUSE%E2%80%99s%20","S":33,"TS":[1,12,1,0]}]},{"x":65.094640625,"y":23.1916875,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"5b","S":33,"TS":[1,12,1,0]}]},{"x":5.937499999999989,"y":24.4291875,"w":0.912,"clr":0,"A":"left","R":[{"T":"6.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.03124999999999,"y":24.4291875,"w":16.636,"clr":0,"A":"left","R":[{"T":"Other%20subtractions%20as%20provided%20in%20instructions.","S":27,"TS":[1,12,0,0]}]},{"x":8.678562499999991,"y":25.104187500000005,"w":1.596,"clr":0,"A":"left","R":[{"T":"%206a.%20","S":27,"TS":[1,12,0,0]}]},{"x":11.14737499999999,"y":25.104187500000005,"w":25.786000000000012,"clr":0,"A":"left","R":[{"T":"FIXED%20DATE%20CONFORMITY%20SUBTRACTION%20-%20SEE%20INSTRUCTIONS.","S":33,"TS":[1,12,1,0]}]},{"x":50.73391718749999,"y":25.104187500000005,"w":9.119999999999997,"clr":0,"A":"left","R":[{"T":"%20.......................................","S":27,"TS":[1,12,0,0]}]},{"x":65.16425,"y":25.104187500000005,"w":0.912,"clr":0,"A":"left","R":[{"T":"6a","S":33,"TS":[1,12,1,0]}]},{"x":49.421703125,"y":27.297937500000003,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"6b","S":33,"TS":[1,12,1,0]}]},{"x":49.421703125,"y":28.816687500000004,"w":0.912,"clr":0,"A":"left","R":[{"T":"6c","S":33,"TS":[1,12,1,0]}]},{"x":49.421703125,"y":30.571687500000007,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"6d","S":33,"TS":[1,12,1,0]}]},{"x":65.869625,"y":32.7654375,"w":0.456,"clr":0,"A":"left","R":[{"T":"7","S":33,"TS":[1,12,1,0]}]},{"oc":"#d2d2d2","x":92.34903125000001,"y":8.343224999999999,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.35137500000002,"y":8.093249999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.90925625,"y":8.093249999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":8.1004875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.40059375,"y":10.333725000000001,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.40293750000001,"y":10.221224999999995,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.96081875,"y":10.221224999999995,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":10.228425000000001,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":74.6909375,"y":11.68255,"w":8.205000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20Addition%20Amount","S":-1,"TS":[1,11,0,0]}]},{"oc":"#d2d2d2","x":92.34903125000001,"y":13.246049999999997,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.3427125,"y":13.033574999999999,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.90059375,"y":13.033574999999999,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":13.040700000000001,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.32325,"y":14.696399999999997,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.32559375,"y":14.671425,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.883475,"y":14.671425,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":14.672400000000001,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.34036875,"y":16.652325,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.27403125000001,"y":16.37415,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.87996875,"y":16.37415,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":16.35315,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.33191250000002,"y":19.39935,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.33425625000001,"y":19.15875,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.89193125000001,"y":19.15875,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":19.134712499999996,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.383475,"y":21.515024999999998,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.38581875000001,"y":21.24315,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.94349375,"y":21.24315,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":21.22215,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.37481250000002,"y":23.277525,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.38581875000001,"y":23.03685,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.94349375,"y":23.03685,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":23.0346375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.37481250000002,"y":25.08105,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.38581875000001,"y":24.84045,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.94349375,"y":24.84045,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":24.8382375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":73.6777,"y":25.86385,"w":9.39,"clr":-1,"A":"left","R":[{"T":"Enter%20Subtraction%20Amount","S":-1,"TS":[1,11,0,0]}]},{"oc":"#d2d2d2","x":92.36615000000002,"y":27.546075,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.35137500000002,"y":27.224175,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.90925625,"y":27.224175,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":27.1750875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.40059375,"y":29.417999999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.40293750000001,"y":29.03985,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.96081875,"y":29.03985,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":29.022112500000002,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.40059375,"y":31.0023,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.40293750000001,"y":30.783525,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.96081875,"y":30.783525,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":30.7438125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.40059375,"y":32.786475,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.40293750000001,"y":32.567775000000005,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.96081875,"y":32.567775000000005,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":32.5280625,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":52.40562500000001,"y":11.511499999999998,"w":4.148000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Code","S":-1,"TS":[1,11,0,0]}]},{"oc":"#b0b0b0","x":52.74937500000001,"y":25.926550000000002,"w":4.148000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Code","S":-1,"TS":[1,11,0,0]}]},{"x":6.173828125000001,"y":34.26128125,"w":7.29,"clr":1,"A":"left","R":[{"T":"Deductions%20from%20V","S":-1,"TS":[1,15,1,0]}]},{"x":19.930015625000003,"y":34.26196875,"w":2.6890000000000005,"clr":1,"A":"left","R":[{"T":"irginia%20","S":-1,"TS":[1,15,1,0]}]},{"x":24.9571875,"y":34.26128125,"w":9.205,"clr":1,"A":"left","R":[{"T":"Adjusted%20Gross%20Income","S":-1,"TS":[1,15,1,0]}]},{"x":5.937500000000001,"y":35.21754375,"w":0.912,"clr":0,"A":"left","R":[{"T":"8.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.03125,"y":35.21754375,"w":20.327999999999996,"clr":0,"A":"left","R":[{"T":"Refer%20to%20the%20Form%20760%20instructions%20for%20Deduction%20Codes.","S":27,"TS":[1,12,0,0]}]},{"x":49.421703125,"y":35.89254375,"w":0.912,"clr":0,"A":"left","R":[{"T":"8a","S":33,"TS":[1,12,1,0]}]},{"x":49.421703125,"y":37.69254375,"w":0.9570000000000001,"clr":0,"A":"left","R":[{"T":"8b","S":33,"TS":[1,12,1,0]}]},{"x":49.421703125,"y":39.49254375,"w":0.912,"clr":0,"A":"left","R":[{"T":"8c","S":33,"TS":[1,12,1,0]}]},{"x":5.937499999999995,"y":41.967543750000004,"w":0.912,"clr":0,"A":"left","R":[{"T":"9.%20","S":27,"TS":[1,12,0,0]}]},{"x":7.793749999999996,"y":41.967543750000004,"w":1.185,"clr":0,"A":"left","R":[{"T":"%20%20%20T","S":27,"TS":[1,12,0,0]}]},{"x":9.464374999999995,"y":41.967543750000004,"w":6.1080000000000005,"clr":0,"A":"left","R":[{"T":"otal%20Deductions.%20","S":27,"TS":[1,12,0,0]}]},{"x":18.843078125,"y":41.967375000000004,"w":30.318000000000062,"clr":0,"A":"left","R":[{"T":"Add%20Lines%208a%20-%208c.%20Enter%20here%20and%20on%20Form%20760%2C%20Line%2012.%20..........................................","S":27,"TS":[1,12,0,0]}]},{"x":65.869625,"y":41.967375000000004,"w":0.456,"clr":0,"A":"left","R":[{"T":"9","S":33,"TS":[1,12,1,0]}]},{"x":42.2890625,"y":42.99881250000001,"w":12.804999999999996,"clr":0,"A":"left","R":[{"T":"Continue%20with%20Line%2010%20on%20Page%202.","S":34,"TS":[1,14,1,0]}]},{"oc":"#b0b0b0","x":53.79355,"y":34.511950000000006,"w":4.148000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Code","S":-1,"TS":[1,11,0,0]}]},{"oc":"#b0b0b0","x":73.2278,"y":34.511950000000006,"w":8.934000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20Deduction%20Amount","S":-1,"TS":[1,11,0,0]}]},{"oc":"#d2d2d2","x":92.37481250000002,"y":36.176025,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.38581875000001,"y":35.93535,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.94349375,"y":35.93535,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":35.9332125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.36615000000002,"y":38.034600000000005,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.35137500000002,"y":37.712775,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.90925625,"y":37.712775,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":37.663618750000005,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.40059375,"y":40.03155,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.40293750000001,"y":39.528525,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.96081875,"y":39.528525,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":39.510625,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":92.40059375,"y":41.800875,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":83.40293750000001,"y":41.582125,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":75.96081875,"y":41.582125,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.7466875,"y":41.5424375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":24.169587500000002,"y":46.5085,"w":6.169,"clr":0,"A":"left","R":[{"T":"Avoid%20delays","S":-1,"TS":[0,16,1,0]}]},{"x":36.89315,"y":46.5085,"w":22.177,"clr":0,"A":"left","R":[{"T":"%20-%20If%20completed%2C%20attach%20Schedule%20ADJ%20to%20Form%20760.","S":-1,"TS":[0,15,0,0]}]},{"x":5.937500000000001,"y":16.385662500000006,"w":37.794000000000054,"clr":0,"A":"left","R":[{"T":"3.%20Total%20Additions.%20Add%20Lines%201%20and%202a%20-%202c.%20Enter%20here%20and%20on%20Form%20760%2C%20Line%202.%20.....................................","S":27,"TS":[1,12,0,0]}]},{"x":9.03125,"y":19.423162500000004,"w":36.56400000000013,"clr":0,"A":"left","R":[{"T":"from%20state%20income%20tax%2C%20but%20not%20from%20federal%20tax.%20.....................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":18.549171875,"y":21.6169125,"w":29.955000000000087,"clr":0,"A":"left","R":[{"T":"disability%20subtraction.%20.................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":21.183500000000002,"y":23.191912500000004,"w":7.839000000000001,"clr":0,"A":"left","R":[{"T":"disability%20subtraction.%20","S":27,"TS":[1,12,0,0]}]},{"x":33.0944375,"y":23.191912500000004,"w":20.52000000000002,"clr":0,"A":"left","R":[{"T":"..........................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":5.937500000000001,"y":32.765662500000005,"w":0.912,"clr":0,"A":"left","R":[{"T":"7.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.03125,"y":32.7654375,"w":36.74500000000003,"clr":0,"A":"left","R":[{"T":"Total%20Subtractions.%20Add%20Lines%204%2C%205a%2C%205b%20and%206a%20-%206d.%20Enter%20here%20and%20on%20Form%20760%2C%20Line%207.%20...................","S":27,"TS":[1,12,0,0]}]},{"x":9.202953125,"y":26.060437499999995,"w":26.072000000000003,"clr":0,"A":"left","R":[{"T":"6b%20-%206d.%20Refer%20to%20the%20Form%20760%20instructions%20for%20Other%20Subtraction%20Codes.","S":27,"TS":[1,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":292,"AM":1024,"x":32.82554687500001,"y":0.5172499999999994,"w":35.96329687499999,"h":0.8333333333333334},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":293,"AM":1024,"x":38.39687500000001,"y":2.5341458333333358,"w":21.431265625000005,"h":0.8962291666666621,"TU":"Your SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":294,"AM":1024,"x":6.4297578125,"y":5.044583333333331,"w":59.60616406250001,"h":1.0141666666666727,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTOBLG","EN":0},"TI":295,"AM":0,"x":69.46603125000001,"y":7.997458333333332,"w":21.581312500000003,"h":0.8962291666666667,"TU":"Line 1. Interest on obligations of other states, exempt from federal income tax but not from state tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FIXED","EN":0},"TI":296,"AM":0,"x":69.46603125000001,"y":10.104583333333332,"w":21.581312500000003,"h":0.8962291666666715,"TU":"Line 2a. Other additions to federal adjusted gross income."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2A_1_","EN":0},"TI":297,"AM":0,"x":53.96617187500001,"y":12.8771875,"w":3.864421874999999,"h":0.9505000000000052,"PL":{"V":[" ","10 Interest on federally exempt U.S. obligations","11 Accumulation distribution income","12 Lump-sum distribution income","14 Income from Dealer Disposition of Property","16 Telework Expenses","99 Other"],"D":["no entry","10","11","12","14","16","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AA_1_","EN":0},"TI":298,"AM":0,"x":69.46603125000001,"y":12.912895833333332,"w":21.581312500000003,"h":0.8962291666666715,"TU":"Line 2b. Enter addition amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L2A_2_","EN":0},"TI":299,"AM":0,"x":53.83193750000001,"y":14.523312500000003,"w":3.8644218749999926,"h":0.9504999999999958,"PL":{"V":[" ","10 Interest on federally exempt U.S. obligations","11 Accumulation distribution income","12 Lump-sum distribution income","14 Income from Dealer Disposition of Property","16 Telework Expenses","99 Other"],"D":["no entry","10","11","12","14","16","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2AA_2_","EN":0},"TI":300,"AM":0,"x":69.46603125000001,"y":14.570708333333334,"w":21.581312500000003,"h":0.8962291666666667,"TU":"Line 2c. Enter addition amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTADDTN","EN":0},"TI":301,"AM":1024,"x":69.46603125000001,"y":16.24683333333333,"w":21.581312500000003,"h":0.9576041666666649,"TU":"3. Total Additions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INCOBLG","EN":0},"TI":302,"AM":0,"x":69.46603125000001,"y":19.09227083333333,"w":21.581312500000003,"h":0.9473541666666705,"TU":"Line 4. Income (interest, dividends or gains) from obligations or securities of the U.S. exempt from state income tax, but not from federal tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPDISINC","EN":0},"TI":303,"AM":0,"x":69.46603125000001,"y":21.142583333333334,"w":21.581312500000003,"h":0.9371041666666619,"TU":"Line 5a. Enter your disability subtraction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPDISINC","EN":0},"TI":304,"AM":0,"x":69.46603125000001,"y":22.890520833333337,"w":21.581312500000003,"h":1.008729166666664,"TU":"Line 5b. Enter SPOUSE's disability subtraction."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBFIXED","EN":0},"TI":305,"AM":0,"x":69.401921875,"y":24.711645833333336,"w":21.581312500000003,"h":1.029166666666664,"TU":"Line 6a. Fixed Date Conformity Subtraction - See instructions"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_1_","EN":0},"TI":306,"AM":0,"x":53.67982812500001,"y":27.006625,"w":3.8642499999999966,"h":0.9233125000000039,"PL":{"V":[" ","20 Income from Virginia Obligations","21 Federal Work Opportunity Tax Credit Wages","22 Tier 2 and Other Railroad Retirement and Railroad Unemployment Benefits","24 Virginia Lottery Prizes","28 Virginia National Guard Income","30 Military Pay and Allowance Attributable to Active Duty Service in a Combat Zone or a Qualified Hazadous Duty Area","31 Retirement Plan Income Previously Taxed by Another State","34 Virginia College Saving Plan Income Distribution or Refund","37 Unemployment Compensation Benefits","38 Basic Military Pay","39 Federal and State Employees","40 Income Received by Holocaust Victims","41 Payments Made under the Tobacco Settlement","42 Gain on the Sale of Land for Open-Space Use","44 Congressional Medal of Honor Recipients","46 Military Death Gratuity Payments","49 Certain Death Benefit Payments","51 Gains from Land Preservation","52 Long-Term Capital Gain","53 Historic Rehabilitation","99 Other"],"D":["no entry","20","21","22","24","28","30","31","34","37","38","39","40","41","42","44","46","49","51","52","53","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AA_1_","EN":0},"TI":307,"AM":0,"x":69.46603125000001,"y":27.151645833333333,"w":21.581312500000003,"h":1.0189166666666647,"TU":"Line 6b Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_2_","EN":0},"TI":308,"AM":0,"x":53.59062500000001,"y":28.7891875,"w":3.8642499999999966,"h":0.9233124999999944,"PL":{"V":[" ","20 Income from Virginia Obligations","21 Federal Work Opportunity Tax Credit Wages","22 Tier 2 and Other Railroad Retirement and Railroad Unemployment Benefits","24 Virginia Lottery Prizes","28 Virginia National Guard Income","30 Military Pay and Allowance Attributable to Active Duty Service in a Combat Zone or a Qualified Hazadous Duty Area","31 Retirement Plan Income Previously Taxed by Another State","34 Virginia College Saving Plan Income Distribution or Refund","37 Unemployment Compensation Benefits","38 Basic Military Pay","39 Federal and State Employees","40 Income Received by Holocaust Victims","41 Payments Made under the Tobacco Settlement","42 Gain on the Sale of Land for Open-Space Use","44 Congressional Medal of Honor Recipients","46 Military Death Gratuity Payments","49 Certain Death Benefit Payments","51 Gains from Land Preservation","52 Long-Term Capital Gain","53 Historic Rehabilitation","99 Other"],"D":["no entry","20","21","22","24","28","30","31","34","37","38","39","40","41","42","44","46","49","51","52","53","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AA_2_","EN":0},"TI":309,"AM":0,"x":69.46603125000001,"y":28.896833333333333,"w":21.581312500000003,"h":1.008729166666664,"TU":"Line 6c Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6A_3_","EN":0},"TI":310,"AM":0,"x":53.46515625000001,"y":30.5089375,"w":3.8642499999999966,"h":0.9233125000000039,"PL":{"V":[" ","20 Income from Virginia Obligations","21 Federal Work Opportunity Tax Credit Wages","22 Tier 2 and Other Railroad Retirement and Railroad Unemployment Benefits","24 Virginia Lottery Prizes","28 Virginia National Guard Income","30 Military Pay and Allowance Attributable to Active Duty Service in a Combat Zone or a Qualified Hazadous Duty Area","31 Retirement Plan Income Previously Taxed by Another State","34 Virginia College Saving Plan Income Distribution or Refund","37 Unemployment Compensation Benefits","38 Basic Military Pay","39 Federal and State Employees","40 Income Received by Holocaust Victims","41 Payments Made under the Tobacco Settlement","42 Gain on the Sale of Land for Open-Space Use","44 Congressional Medal of Honor Recipients","46 Military Death Gratuity Payments","49 Certain Death Benefit Payments","51 Gains from Land Preservation","52 Long-Term Capital Gain","53 Historic Rehabilitation","99 Other"],"D":["no entry","20","21","22","24","28","30","31","34","37","38","39","40","41","42","44","46","49","51","52","53","99"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AA_3_","EN":0},"TI":311,"AM":0,"x":69.46603125000001,"y":30.635458333333332,"w":21.581312500000003,"h":1.0087291666666687,"TU":"Line 6d Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTSUBTR","EN":0},"TI":312,"AM":1024,"x":69.46603125000001,"y":32.421083333333335,"w":21.581312500000003,"h":0.9984791666666695,"TU":"7. Total Subtractions"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A_1_","EN":0},"TI":313,"AM":0,"x":53.754593750000005,"y":35.7185,"w":6.559593749999993,"h":0.9505000000000005,"PL":{"V":[" ","101 Child and Dependent Care Expenses","102 Foster Care Deduction","103 Bone Marrow Screening Fee","104 Virginia College Savings Plan Prepaid Tuition Contract Payments and Savings Account Contributions","105 Continuing Teacher Education","106 Long-Term Health Care Premiums","107 Virginia Public School Construction Grants Program","108 Tobacco Quota Buyout","109 Sales Tax Paid on Certain Energy Efficient Equipment or Appliances","110 Organ and Tissue Donor Expenses","111 Charitable Mileage","112 Bank Franchise Subchapter S Corporation","113 Income from Dealer Disposition of Property","114 Prepaid Funeral, Medical, and Dental Insurance Premiums","199 Other"],"D":["no entry","101","102","103","104","105","106","107","108","109","110","111","112","113","114","199"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AA_1_","EN":0},"TI":314,"AM":0,"x":69.46603125000001,"y":35.80733333333333,"w":21.581312500000003,"h":1.008729166666664,"TU":"Line 8a Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A_2_","EN":0},"TI":315,"AM":0,"x":53.69151562500001,"y":37.49675,"w":6.5595937499999994,"h":0.9505000000000005,"PL":{"V":[" ","101 Child and Dependent Care Expenses","102 Foster Care Deduction","103 Bone Marrow Screening Fee","104 Virginia College Savings Plan Prepaid Tuition Contract Payments and Savings Account Contributions","105 Continuing Teacher Education","106 Long-Term Health Care Premiums","107 Virginia Public School Construction Grants Program","108 Tobacco Quota Buyout","109 Sales Tax Paid on Certain Energy Efficient Equipment or Appliances","110 Organ and Tissue Donor Expenses","111 Charitable Mileage","112 Bank Franchise Subchapter S Corporation","113 Income from Dealer Disposition of Property","114 Prepaid Funeral, Medical, and Dental Insurance Premiums","199 Other"],"D":["no entry","101","102","103","104","105","106","107","108","109","110","111","112","113","114","199"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AA_2_","EN":0},"TI":316,"AM":0,"x":69.46603125000001,"y":37.557833333333335,"w":21.581312500000003,"h":1.0189166666666647,"TU":"Line 8b Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A_3_","EN":0},"TI":317,"AM":0,"x":53.705265625,"y":39.316187500000005,"w":6.559593750000006,"h":0.9504999999999958,"PL":{"V":[" ","101 Child and Dependent Care Expenses","102 Foster Care Deduction","103 Bone Marrow Screening Fee","104 Virginia College Savings Plan Prepaid Tuition Contract Payments and Savings Account Contributions","105 Continuing Teacher Education","106 Long-Term Health Care Premiums","107 Virginia Public School Construction Grants Program","108 Tobacco Quota Buyout","109 Sales Tax Paid on Certain Energy Efficient Equipment or Appliances","110 Organ and Tissue Donor Expenses","111 Charitable Mileage","112 Bank Franchise Subchapter S Corporation","113 Income from Dealer Disposition of Property","114 Prepaid Funeral, Medical, and Dental Insurance Premiums","199 Other"],"D":["no entry","101","102","103","104","105","106","107","108","109","110","111","112","113","114","199"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AA_3_","EN":0},"TI":318,"AM":0,"x":69.46603125000001,"y":39.375770833333334,"w":21.581312500000003,"h":0.9984791666666647,"TU":"Line 8c Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTDEDUC","EN":0},"TI":319,"AM":1024,"x":69.54096875,"y":41.39177083333333,"w":21.581312500000003,"h":1.0394166666666678,"TU":"9. Total Deductions"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":36.66093750000001,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":36.6265625,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":39.1359375,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":39.1015625,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":41.6109375,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":41.57656250000001,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":44.0859375,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":44.05156250000001,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":46.5609375,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":46.5265625,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":49.03593750000001,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":49.001562500000006,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":51.5109375,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":51.47656250000001,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.985937500000006,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.9515625,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":56.46093750000001,"y":1.2312500000000075,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":56.42656250000001,"y":2.4781249999999964,"w":6,"l":2.4750000000000028},{"x":98.84531250000002,"y":3.843874999999997,"w":3,"l":2.4320312500000028},{"x":3.1796875000000004,"y":3.84375,"w":3,"l":2.4320312500000005},{"x":98.84531250000002,"y":47.368875,"w":3,"l":2.4320312500000028},{"oc":"#d2d2d2","x":81.952578125,"y":13.911375000000001,"w":6,"l":2.7757812500000028},{"oc":"#d2d2d2","x":81.909609375,"y":15.048250000000005,"w":6,"l":2.7757812500000028},{"oc":"#d2d2d2","x":84.72835937500001,"y":13.911375000000001,"w":6,"l":2.7757812500000028},{"oc":"#d2d2d2","x":84.68539062500001,"y":15.048250000000005,"w":6,"l":3.5062500000000028},{"oc":"#d2d2d2","x":81.952578125,"y":15.809312499999995,"w":6,"l":2.7757812500000028},{"oc":"#d2d2d2","x":81.909609375,"y":16.946187499999997,"w":6,"l":2.7757812500000028},{"oc":"#d2d2d2","x":84.72835937500001,"y":15.809312499999995,"w":6,"l":2.7757812500000028},{"oc":"#d2d2d2","x":84.68539062500001,"y":16.946187499999997,"w":6,"l":3.5062500000000028},{"oc":"#d2d2d2","x":77.41834375000002,"y":19.223812499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.42693750000001,"y":18.10475,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.9019375,"y":18.10475,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.86756250000002,"y":19.2416875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3769375,"y":18.10475,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3425625,"y":19.2416875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.85193750000002,"y":18.10475,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.80896875000002,"y":19.2416875,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":91.09100000000002,"y":18.107625,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.09100000000002,"y":19.261625,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.08475,"y":18.107625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.050375,"y":19.261625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":77.43209375,"y":20.9885,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.42693750000001,"y":19.849875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.9019375,"y":19.849875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.86756250000002,"y":20.98675,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3769375,"y":19.849875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3425625,"y":20.98675,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.85193750000002,"y":19.849875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.80896875000002,"y":20.98675,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":91.09100000000002,"y":19.8526875,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.09100000000002,"y":21.0066875,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.08475,"y":19.8526875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.050375,"y":21.0066875,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":77.41834375000002,"y":22.964625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.42693750000001,"y":21.827125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.9019375,"y":21.827125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.86756250000002,"y":22.9640625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3769375,"y":21.827125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3425625,"y":22.9640625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.85193750000002,"y":21.827125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.80896875000002,"y":22.9640625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":91.09100000000002,"y":21.83,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.09100000000002,"y":22.983999999999998,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.08475,"y":21.83,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.050375,"y":22.983999999999998,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":77.43209375,"y":24.496,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.42693750000001,"y":23.35625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.9019375,"y":23.35625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.86756250000002,"y":24.4931875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3769375,"y":23.35625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3425625,"y":24.4931875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.85193750000002,"y":23.35625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.80896875000002,"y":24.4931875,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":91.09100000000002,"y":23.359124999999995,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.09100000000002,"y":24.513125,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.08475,"y":23.359124999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.050375,"y":24.513125,"w":6,"l":3.1882812500000055},{"oc":"#c9c9c9","x":77.43209375,"y":26.437750000000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.42693750000001,"y":25.298,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.9019375,"y":25.298,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.86756250000002,"y":26.4349375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3769375,"y":25.298,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.3425625,"y":26.4349375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.85193750000002,"y":25.298,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.80896875000002,"y":26.4349375,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":91.09100000000002,"y":25.300875,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.09100000000002,"y":26.454875,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.08475,"y":25.300875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.050375,"y":26.454875,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":66.266234375,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":66.25764062500001,"y":29.256125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":68.741234375,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.70685937500001,"y":29.256125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.21623437500001,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.18185937500002,"y":29.256125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.69123437500001,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.656859375,"y":29.256125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.16623437500002,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.131859375,"y":29.256125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.641234375,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.60685937500001,"y":29.256125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.116234375,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.08185937500001,"y":29.256125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.59123437500001,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.55685937500002,"y":29.256125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.06623437500001,"y":28.009249999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.00607812500002,"y":29.253,"w":6,"l":3.214062499999995},{"oc":"#d2d2d2","x":91.574828125,"y":28.006125,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.574828125,"y":29.27175,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.56857812500002,"y":28.006125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.53420312499999,"y":29.27175,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":66.249046875,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":66.24045312500002,"y":30.8748125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":68.72404687500001,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.68967187500002,"y":30.8748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.19904687500001,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.164671875,"y":30.8748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.67404687500002,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.639671875,"y":30.8748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.149046875,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.11467187500001,"y":30.8748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.624046875,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.58967187500001,"y":30.8748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.09904687500001,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.06467187500002,"y":30.8748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.57404687500001,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.539671875,"y":30.8748125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.04904687500002,"y":29.6279375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.988890625,"y":30.871687499999997,"w":6,"l":3.214062499999995},{"oc":"#d2d2d2","x":91.574828125,"y":29.5779375,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.574828125,"y":30.8435625,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.56857812500002,"y":29.5779375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.53420312499999,"y":30.8435625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":66.81623437500001,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":66.25764062500001,"y":32.55325,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":69.29123437500002,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.70685937500001,"y":32.55325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.766234375,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.18185937500002,"y":32.55325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":74.241234375,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.656859375,"y":32.55325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.71623437500001,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.131859375,"y":32.55325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":79.19123437500001,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.60685937500001,"y":32.55325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.66623437500002,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.08185937500001,"y":32.55325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.141234375,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.55685937500002,"y":32.55325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.616234375,"y":31.306375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.00607812500002,"y":32.550125,"w":6,"l":3.214062499999995},{"oc":"#d2d2d2","x":91.574828125,"y":31.300124999999998,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.574828125,"y":32.56575,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.56857812500002,"y":31.300124999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.53420312499999,"y":32.56575,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":66.266234375,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":66.25764062500001,"y":34.3744375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":68.741234375,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.70685937500001,"y":34.3744375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.21623437500001,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.18185937500002,"y":34.3744375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.69123437500001,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.54514062500002,"y":34.3744375,"w":6,"l":2.6640625},{"oc":"#d2d2d2","x":76.16623437500002,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.131859375,"y":34.3744375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.641234375,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.60685937500001,"y":34.3744375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.116234375,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.08185937500001,"y":34.3744375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.59123437500001,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.55685937500002,"y":34.3744375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.06623437500001,"y":33.0369375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.00607812500002,"y":34.371312499999995,"w":6,"l":3.214062499999995},{"oc":"#d2d2d2","x":91.574828125,"y":33.0338125,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.574828125,"y":34.2994375,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.56857812500002,"y":33.0338125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.53420312499999,"y":34.2994375,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":91.574828125,"y":36.431374999999996,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.534203125,"y":36.431374999999996,"w":6,"l":3.1882812499999926},{"oc":"#d2d2d2","x":76.149046875,"y":35.162625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.11467187500001,"y":36.4095,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.624046875,"y":35.162625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.58967187500001,"y":36.4095,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.09904687500001,"y":35.162625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.06467187500002,"y":36.4095,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.57404687500001,"y":35.162625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.539671875,"y":36.4095,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.04904687500002,"y":35.162625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.014671875,"y":36.406375000000004,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":50.677171875000006,"y":35.162625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.15217187500001,"y":35.162625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.677171875000006,"y":36.4095,"w":6,"l":5.62890625},{"oc":"#d2d2d2","x":91.574828125,"y":35.165749999999996,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":93.568578125,"y":35.165749999999996,"w":6,"l":2.4750000000000028},{"clr":1,"x":80.71232812500001,"y":37.8469375,"w":1,"l":0.7046874999999975},{"clr":1,"x":80.71232812500001,"y":38.2781875,"w":1,"l":0.7046874999999975},{"oc":"#d2d2d2","x":76.149046875,"y":36.781312500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.11467187500001,"y":38.0281875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.624046875,"y":36.781312500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.58967187500001,"y":38.0281875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.09904687500001,"y":36.781312500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.06467187500002,"y":38.0281875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.57404687500001,"y":36.781312500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.539671875,"y":38.0281875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.04904687500002,"y":36.781312500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.99748437500001,"y":38.031312500000006,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":50.685765625,"y":36.7844375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.677171875000006,"y":38.031312500000006,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":53.160765625,"y":36.7844375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.126390625000006,"y":38.031312500000006,"w":6,"l":3.1796875000000004},{"oc":"#d2d2d2","x":91.574828125,"y":36.781312500000006,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.574828125,"y":38.046937500000006,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.56857812500002,"y":36.781312500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.53420312499999,"y":38.046937500000006,"w":6,"l":3.1882812500000055},{"clr":1,"x":75.83967187500001,"y":38.521875,"w":6,"l":2.4750000000000028},{"clr":1,"x":78.280296875,"y":39.768750000000004,"w":6,"l":2.4750000000000028},{"clr":1,"x":80.789671875,"y":38.521875,"w":6,"l":2.4750000000000028},{"clr":1,"x":80.75529687500001,"y":39.768750000000004,"w":6,"l":2.4750000000000028},{"clr":1,"x":83.264671875,"y":38.521875,"w":6,"l":2.4750000000000028},{"clr":1,"x":83.23029687500001,"y":39.768750000000004,"w":6,"l":2.4750000000000028},{"clr":1,"x":85.73967187500001,"y":38.521875,"w":6,"l":2.4750000000000028},{"clr":1,"x":85.70529687500002,"y":39.771875,"w":6,"l":3.1882812500000055},{"clr":1,"x":91.574828125,"y":38.525,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":76.149046875,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.174828125,"y":39.74375,"w":6,"l":2.4148437500000055},{"oc":"#d2d2d2","x":78.624046875,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.58967187500001,"y":39.74375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.09904687500001,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.06467187500002,"y":39.74375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.57404687500001,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.539671875,"y":39.74375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.04904687500002,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.014671875,"y":39.75625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":50.677171875000006,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.677171875000006,"y":39.699999999999996,"w":6,"l":2.4406250000000016},{"oc":"#d2d2d2","x":53.15217187500001,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.117796875,"y":39.699999999999996,"w":6,"l":3.188281249999999},{"oc":"#d2d2d2","x":91.574828125,"y":38.403124999999996,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.574828125,"y":39.668749999999996,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.56857812500002,"y":38.403124999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.53420312499999,"y":39.668749999999996,"w":6,"l":3.1882812500000055},{"clr":1,"x":75.77109375000002,"y":40.378,"w":6,"l":2.4750000000000028},{"clr":1,"x":78.24609375,"y":40.378,"w":6,"l":2.4750000000000028},{"clr":1,"x":78.21171875000002,"y":41.624875,"w":6,"l":2.4750000000000028},{"clr":1,"x":80.72109375,"y":40.378,"w":6,"l":2.4750000000000028},{"clr":1,"x":80.68671875,"y":41.624875,"w":6,"l":2.4750000000000028},{"clr":1,"x":83.19609375000002,"y":40.378,"w":6,"l":2.4750000000000028},{"clr":1,"x":85.67109375,"y":40.378,"w":6,"l":2.4750000000000028},{"clr":1,"x":91.575,"y":40.381125000000004,"w":6,"l":1.9937499999999975},{"clr":1,"x":91.575,"y":41.64675,"w":6,"l":1.9593750000000028},{"clr":1,"x":93.56875,"y":40.381125000000004,"w":6,"l":2.4750000000000028},{"clr":1,"x":93.53437500000001,"y":41.64675,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":76.14921875000002,"y":40.374874999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.13203125,"y":41.7155,"w":6,"l":2.4578125000000055},{"oc":"#d2d2d2","x":78.62421875,"y":40.374874999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.58984375,"y":41.7155,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.09921875000002,"y":40.374874999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.06484375,"y":41.7155,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.57421875,"y":40.374874999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.53984375000002,"y":41.7155,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.04921875,"y":40.374874999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.01484375,"y":41.728,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":91.58359375000002,"y":40.374874999999996,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.58359375000002,"y":41.6405,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.57734375000001,"y":40.374874999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.54296875,"y":41.6405,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":40.769265625,"y":40.443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":40.760671875,"y":41.69,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":43.244265625000004,"y":40.443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":43.209890625,"y":41.69,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.719265625000006,"y":40.443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.684890625,"y":41.69,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.19426562500001,"y":40.443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.159890625,"y":41.69,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.669265625,"y":40.443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.634890625000004,"y":41.69,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.144265625,"y":40.443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.109890625000006,"y":41.69,"w":6,"l":3.1968749999999977},{"clr":1,"x":89.97604687500001,"y":42.750125,"w":1,"l":2.0625},{"clr":1,"x":89.97604687500001,"y":43.650124999999996,"w":1,"l":2.0625},{"clr":1,"x":91.58359375000002,"y":43.35637499999999,"w":6,"l":1.9593750000000028},{"clr":1,"x":93.54296875,"y":43.35637499999999,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":76.15781250000002,"y":42.200125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.1234375,"y":43.447,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.6328125,"y":42.200125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.59843750000002,"y":43.447,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.1078125,"y":42.200125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.0734375,"y":43.447,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.58281250000002,"y":42.200125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.54843750000002,"y":43.447,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.0578125,"y":42.200125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.0234375,"y":43.45325,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":40.78593750000001,"y":42.187625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":40.76875,"y":43.43449999999999,"w":6,"l":2.457812499999999},{"oc":"#d2d2d2","x":43.2609375,"y":42.187625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":43.2265625,"y":43.43449999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.735937500000006,"y":42.187625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.7015625,"y":43.43449999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.21093750000001,"y":42.187625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.17656250000001,"y":43.43449999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.6859375,"y":42.187625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.6515625,"y":43.43449999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.16093750000001,"y":42.187625,"w":6,"l":3.1539062499999977},{"oc":"#d2d2d2","x":53.126562500000006,"y":43.43449999999999,"w":6,"l":3.188281249999999},{"oc":"#d2d2d2","x":91.55781250000001,"y":42.2109375,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.58359375000002,"y":43.468875,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.57734375000001,"y":42.20325,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.54296875,"y":43.468875,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":40.77734375,"y":43.849812500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":40.76875,"y":45.0966875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":43.25234375000001,"y":43.849812500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":43.21796875,"y":45.0966875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.72734375000001,"y":43.849812500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":45.692968750000006,"y":45.0966875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.20234375,"y":43.849812500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.16796875000001,"y":45.0966875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.677343750000006,"y":43.849812500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":50.64296875,"y":45.0966875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.15234375000001,"y":43.849812500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.11796875000001,"y":45.0966875,"w":6,"l":3.1968749999999977},{"clr":1,"x":75.77109375000002,"y":43.8623125,"w":6,"l":2.4750000000000028},{"clr":1,"x":75.73671875,"y":45.1091875,"w":6,"l":2.4750000000000028},{"clr":1,"x":78.24609375,"y":43.8623125,"w":6,"l":2.4750000000000028},{"clr":1,"x":78.21171875000002,"y":45.1091875,"w":6,"l":2.4750000000000028},{"clr":1,"x":80.72109375,"y":43.8623125,"w":6,"l":2.4750000000000028},{"clr":1,"x":80.68671875,"y":45.1091875,"w":6,"l":2.4750000000000028},{"clr":1,"x":83.19609375000002,"y":43.8623125,"w":6,"l":2.4750000000000028},{"clr":1,"x":83.16171875000002,"y":45.1091875,"w":6,"l":2.4750000000000028},{"clr":1,"x":85.67109375,"y":43.8623125,"w":6,"l":2.4750000000000028},{"clr":1,"x":85.63671875,"y":45.099812500000006,"w":6,"l":3.1882812500000055},{"clr":1,"x":80.71250000000002,"y":44.740437500000006,"w":1,"l":0.7046874999999975},{"clr":1,"x":80.71250000000002,"y":45.1716875,"w":1,"l":0.7046874999999975},{"clr":1,"x":89.97604687500001,"y":44.5779375,"w":1,"l":2.0625},{"clr":1,"x":89.97604687500001,"y":45.477937499999996,"w":1,"l":2.0625},{"clr":1,"x":91.58359375000002,"y":43.8623125,"w":6,"l":1.9937499999999975},{"clr":1,"x":93.57734375000001,"y":43.8623125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.15781250000002,"y":43.8466875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.1234375,"y":45.0935625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.6328125,"y":43.8466875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.59843750000002,"y":45.0935625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.1078125,"y":43.8466875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.0734375,"y":45.0935625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.58281250000002,"y":43.8466875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.54843750000002,"y":45.0935625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.0578125,"y":43.8466875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.95468750000002,"y":45.099812500000006,"w":6,"l":3.257031249999995},{"oc":"#d2d2d2","x":91.58359375000002,"y":43.849812500000006,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.58359375000002,"y":45.115437500000006,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.57734375000001,"y":43.849812500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.54296875,"y":45.115437500000006,"w":6,"l":3.1882812500000055},{"x":3.163015625,"y":47.375125,"w":3,"l":2.43203125},{"oc":"#c1c1c1","x":9.4428125,"y":4.871937500000001,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":4.871937500000001,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":4.871937500000001,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":4.871937500000001,"w":1.5,"l":25.209078124999998},{"oc":"#c1c1c1","x":9.442795312500001,"y":5.970187499999999,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":5.970187499999999,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":5.970187499999999,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":5.970187499999999,"w":1.5,"l":25.209078124999998},{"oc":"#c1c1c1","x":9.442795312500001,"y":6.879687500000003,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":6.879687500000003,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":6.879687500000003,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":6.879687500000003,"w":1.5,"l":25.209078124999998},{"oc":"#c1c1c1","x":9.442795312500001,"y":7.78925,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":7.78925,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":7.78925,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":7.78925,"w":1.5,"l":25.209078124999998},{"oc":"#c1c1c1","x":9.442795312500001,"y":10.479999999999999,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":10.479999999999999,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":10.479999999999999,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":10.479999999999999,"w":1.5,"l":25.209078124999998},{"oc":"#c1c1c1","x":9.442795312500001,"y":11.389499999999998,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":11.389499999999998,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":11.389499999999998,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":11.389499999999998,"w":1.5,"l":25.209078125000012},{"oc":"#c1c1c1","x":9.442795312500001,"y":12.984687499999998,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.130889062500003,"y":12.984687499999998,"w":1.5,"l":27.1761875},{"oc":"#c1c1c1","x":51.3070765625,"y":12.984687499999998,"w":1.5,"l":22.476437500000003},{"oc":"#d2d2d2","x":80.032390625,"y":13.0350625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.03101562500001,"y":11.787187500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.506015625,"y":11.787187500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.471640625,"y":13.034062499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.98101562500001,"y":11.787187500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":84.946640625,"y":13.034062499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.456015625,"y":11.787187500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.40789062500001,"y":13.0350625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":93.677890625,"y":11.790312499999999,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":93.677890625,"y":13.055937499999999,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":95.67164062500001,"y":11.790312499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":95.637265625,"y":13.055937499999999,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":77.60035937500001,"y":13.0350625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.598984375,"y":11.787187500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":66.266234375,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":66.25764062500001,"y":47.165625,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":68.741234375,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.70685937500001,"y":47.165625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.21623437500001,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":71.18185937500002,"y":47.165625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.69123437500001,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.54514062500002,"y":47.165625,"w":6,"l":2.6640625},{"oc":"#d2d2d2","x":76.16623437500002,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":76.131859375,"y":47.165625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.641234375,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.60685937500001,"y":47.165625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.116234375,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":81.08185937500001,"y":47.165625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.59123437500001,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.55685937500002,"y":47.165625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.06623437500001,"y":45.828125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":86.00607812500002,"y":47.1625,"w":6,"l":3.214062499999995},{"oc":"#d2d2d2","x":91.574828125,"y":45.824999999999996,"w":6,"l":1.9937499999999975},{"oc":"#d2d2d2","x":91.574828125,"y":47.090624999999996,"w":6,"l":1.9593750000000028},{"oc":"#d2d2d2","x":93.56857812500002,"y":45.824999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":93.53420312499999,"y":47.090624999999996,"w":6,"l":3.1882812500000055},{"oc":"#c1c1c1","x":9.442795312500001,"y":8.667499999999999,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":8.667499999999999,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":8.667499999999999,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":8.667499999999999,"w":1.5,"l":25.209078124999998},{"oc":"#c1c1c1","x":9.442795312500001,"y":9.576999999999998,"w":1.5,"l":14.688093750000002},{"oc":"#c1c1c1","x":24.13090625,"y":9.576999999999998,"w":1.5,"l":27.176187500000005},{"oc":"#c1c1c1","x":51.30709375000001,"y":9.576999999999998,"w":1.5,"l":22.390499999999996},{"oc":"#c1c1c1","x":73.69759375,"y":9.576999999999998,"w":1.5,"l":25.209078125000012}],"VLines":[{"oc":"#d2d2d2","x":36.99609375,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":39.47109375000001,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":41.94609375000001,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":44.42109375,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":46.896093750000006,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":49.37109375000001,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":51.84609375,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":54.32109375000001,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":56.79609375,"y":1.1093750000000036,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":59.193749999999994,"y":1.106250000000004,"w":6,"l":1.4937499999999997},{"x":101.10546875000001,"y":3.781375000000003,"w":3,"l":0.8843749999999998},{"x":3.334375,"y":3.7812499999999964,"w":3,"l":0.8843749999999998},{"x":101.12265625000002,"y":46.550125,"w":3,"l":0.8843749999999962},{"oc":"#d2d2d2","x":82.27914062500001,"y":13.80025,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":85.054921875,"y":13.80025,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":87.839296875,"y":13.80025,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":82.27914062500001,"y":15.698187499999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":85.054921875,"y":15.698187499999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":87.839296875,"y":15.698187499999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":77.76209375000002,"y":17.993624999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":80.23709375,"y":17.993624999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":82.71209375000001,"y":17.993624999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":85.18709375,"y":17.993624999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":87.66209375,"y":17.993624999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":91.43475000000002,"y":18.178812499999996,"w":6,"l":1.1568749999999994},{"oc":"#d2d2d2","x":95.89490625,"y":17.996499999999997,"w":6,"l":1.2394374999999986},{"oc":"#d2d2d2","x":77.76209375000002,"y":19.73875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":80.23709375,"y":19.73875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":82.71209375000001,"y":19.73875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":85.18709375,"y":19.73875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":87.66209375,"y":19.73875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":91.43475000000002,"y":19.923937499999997,"w":6,"l":1.1568749999999994},{"oc":"#d2d2d2","x":95.89490625,"y":19.741562499999997,"w":6,"l":1.2394999999999996},{"oc":"#d2d2d2","x":77.76209375000002,"y":21.715999999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":80.23709375,"y":21.715999999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":82.71209375000001,"y":21.715999999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":85.18709375,"y":21.715999999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":87.66209375,"y":21.715999999999998,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":91.43475000000002,"y":21.90125,"w":6,"l":1.1568749999999994},{"oc":"#d2d2d2","x":95.89490625,"y":21.718874999999997,"w":6,"l":1.239500000000002},{"oc":"#d2d2d2","x":77.76209375000002,"y":23.245125,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":80.23709375,"y":23.245125,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":82.71209375000001,"y":23.245125,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":85.18709375,"y":23.245125,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":87.66209375,"y":23.245125,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":91.43475000000002,"y":23.4303125,"w":6,"l":1.1568749999999994},{"oc":"#d2d2d2","x":95.89490625,"y":23.248,"w":6,"l":1.2394374999999986},{"oc":"#d2d2d2","x":77.76209375000002,"y":25.186875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":80.23709375,"y":25.186875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":82.71209375000001,"y":25.186875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":85.18709375,"y":25.186875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":87.66209375,"y":25.186875,"w":6,"l":1.2309375000000007},{"oc":"#d2d2d2","x":91.43475000000002,"y":25.372062500000002,"w":6,"l":1.1568749999999994},{"oc":"#d2d2d2","x":95.89490625,"y":25.189750000000004,"w":6,"l":1.2394374999999986},{"oc":"#d2d2d2","x":66.60139062500001,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.07639062500002,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.551390625,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":74.026390625,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.50139062500001,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.97639062500001,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.45139062500002,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.926390625,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.401390625,"y":27.887375000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.87639062500001,"y":27.881125,"w":6,"l":1.3562499999999982},{"oc":"#d2d2d2","x":91.918578125,"y":28.084249999999997,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":27.884249999999998,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":66.58420312500002,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.059203125,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.534203125,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":74.00920312500001,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.48420312500001,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.95920312500002,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.434203125,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.909203125,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.38420312500001,"y":29.5060625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.85920312500001,"y":29.4998125,"w":6,"l":1.3562499999999982},{"oc":"#d2d2d2","x":91.918578125,"y":29.6560625,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":29.4560625,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":66.60139062500001,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.247578125,"y":31.194875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.551390625,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":74.026390625,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.50139062500001,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.97639062500001,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.45139062500002,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.926390625,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.401390625,"y":31.1845,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.87639062500001,"y":31.178250000000002,"w":6,"l":1.3562499999999982},{"oc":"#d2d2d2","x":91.918578125,"y":31.378249999999998,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":31.178250000000002,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":66.60139062500001,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":69.07639062500002,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.551390625,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":74.026390625,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.50139062500001,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.97639062500001,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.45139062500002,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.926390625,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.401390625,"y":32.9150625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.87639062500001,"y":32.9088125,"w":6,"l":1.3562499999999982},{"oc":"#d2d2d2","x":91.918578125,"y":33.1119375,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":32.9119375,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":76.48420312500001,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.95920312500002,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.434203125,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.909203125,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.38420312500001,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.85920312500001,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":51.012328125,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.487328125000005,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.962328125000006,"y":35.04075,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.918578125,"y":35.243874999999996,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":35.043875,"w":6,"l":1.359375},{"clr":1,"x":91.918578125,"y":37.0469375,"w":6,"l":1.2687500000000018},{"clr":1,"x":96.37873437500001,"y":36.8469375,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":76.48420312500001,"y":36.6594375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.95920312500002,"y":36.6594375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.3828125,"y":36.66875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.909203125,"y":36.6594375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.38420312500001,"y":36.6594375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.85920312500001,"y":36.6594375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":51.020921875000006,"y":36.6625625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.49592187500001,"y":36.6625625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.970921875,"y":36.6594375,"w":6,"l":1.353125000000001},{"oc":"#d2d2d2","x":91.918578125,"y":36.8594375,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":36.6594375,"w":6,"l":1.359375},{"clr":1,"x":91.918578125,"y":38.603125,"w":6,"l":1.2687500000000018},{"clr":1,"x":96.37873437500001,"y":38.403124999999996,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":76.48420312500001,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.95920312500002,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.434203125,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.909203125,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.38420312500001,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.85920312500001,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":51.012328125,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.487328125000005,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.962328125000006,"y":38.28125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.918578125,"y":38.481249999999996,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":38.28125,"w":6,"l":1.359375},{"clr":1,"x":91.91875,"y":40.45925,"w":6,"l":1.2687500000000018},{"clr":1,"x":96.37890625000001,"y":40.25925,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":76.484375,"y":40.253,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.959375,"y":40.253,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.43437500000002,"y":40.253,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.909375,"y":40.253,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.38437500000002,"y":40.253,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.859375,"y":40.253,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.92734375000002,"y":40.452999999999996,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.3875,"y":40.253,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":41.104421875,"y":40.32125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":43.579421875,"y":40.32125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":46.054421874999996,"y":40.32125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":48.529421875000004,"y":40.32125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":51.004421875000006,"y":40.32125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.47942187500001,"y":40.32125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.954421875,"y":40.32125,"w":6,"l":1.349999999999999},{"clr":1,"x":89.97604687500001,"y":42.750125,"w":1,"l":0.8999999999999962},{"clr":1,"x":92.03854687500001,"y":42.750125,"w":1,"l":0.8999999999999962},{"clr":1,"x":91.92734375000002,"y":42.16887499999999,"w":6,"l":1.2687500000000018},{"clr":1,"x":96.3875,"y":41.968875,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":76.49296875000002,"y":42.078250000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.96796875,"y":42.078250000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.44296875000002,"y":42.078250000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.91796875,"y":42.078250000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.39296875,"y":42.078250000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.86796875,"y":42.078250000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":41.12109375,"y":42.06575,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":43.59609375000001,"y":42.06575,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":46.07109375000001,"y":42.06575,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":48.54609375,"y":42.06575,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":51.021093750000006,"y":42.06575,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":53.49609375000001,"y":42.06575,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":55.97109375,"y":42.06575,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.92734375000002,"y":42.281375,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.3875,"y":42.081375,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":41.1125,"y":43.727937499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":43.5875,"y":43.727937499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":46.0625,"y":43.727937499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":48.5375,"y":43.727937499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":51.01250000000001,"y":43.727937499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":53.4875,"y":43.727937499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":55.962500000000006,"y":43.727937499999996,"w":6,"l":1.3500000000000039},{"clr":1,"x":89.97604687500001,"y":44.5779375,"w":1,"l":0.8999999999999962},{"clr":1,"x":92.03854687500001,"y":44.5779375,"w":1,"l":0.8999999999999962},{"clr":1,"x":91.92734375000002,"y":43.9404375,"w":6,"l":1.2687500000000018},{"clr":1,"x":96.3875,"y":43.740437500000006,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":76.49296875000002,"y":43.72481249999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":78.96796875,"y":43.72481249999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":81.44296875000002,"y":43.72481249999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":83.91796875,"y":43.72481249999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":86.39296875,"y":43.72481249999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":88.86796875,"y":43.72481249999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":91.92734375000002,"y":43.92793749999999,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.3875,"y":43.727937499999996,"w":6,"l":1.359375},{"x":3.334890625,"y":46.550125,"w":3,"l":0.8843749999999962},{"oc":"#c1c1c1","x":9.52875,"y":4.903187499999999,"w":1.5,"l":1.0357500000000002},{"oc":"#c1c1c1","x":24.13090625,"y":4.903187499999999,"w":1.5,"l":1.0357500000000002},{"oc":"#c1c1c1","x":51.30709375000001,"y":4.903187499999999,"w":1.5,"l":1.0357500000000002},{"oc":"#c1c1c1","x":73.69759375,"y":4.903187499999999,"w":1.5,"l":1.0357500000000002},{"oc":"#c1c1c1","x":98.82073437500001,"y":4.903187499999999,"w":1.5,"l":1.0357500000000002},{"oc":"#c1c1c1","x":9.528732812500001,"y":6.001437500000002,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":24.13090625,"y":6.001437500000002,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":51.30709375000001,"y":6.001437500000002,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":73.69759375,"y":6.001437500000002,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":98.82073437500001,"y":6.001437500000002,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":9.528732812500001,"y":6.9109375,"w":1.5,"l":0.8470624999999998},{"oc":"#c1c1c1","x":24.13090625,"y":6.9109375,"w":1.5,"l":0.8470624999999998},{"oc":"#c1c1c1","x":51.30709375000001,"y":6.9109375,"w":1.5,"l":0.8470624999999998},{"oc":"#c1c1c1","x":73.69759375,"y":6.9109375,"w":1.5,"l":0.8470624999999998},{"oc":"#c1c1c1","x":98.82073437500001,"y":6.9109375,"w":1.5,"l":0.8470624999999998},{"oc":"#c1c1c1","x":9.528732812500001,"y":9.60175,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":24.13090625,"y":9.60175,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":51.30709375000001,"y":9.60175,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":73.69759375,"y":9.60175,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":98.82073437500001,"y":9.60175,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":9.528732812500001,"y":10.511249999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":24.13090625,"y":10.511249999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":51.30709375000001,"y":10.511249999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":73.69759375,"y":10.511249999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":98.82073437500001,"y":10.511249999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":9.528732812500001,"y":11.420749999999998,"w":1.5,"l":1.532687499999999},{"oc":"#c1c1c1","x":24.13090625,"y":11.420749999999998,"w":1.5,"l":1.532687499999999},{"oc":"#c1c1c1","x":73.69759375,"y":11.420749999999998,"w":1.5,"l":1.532687499999999},{"oc":"#d2d2d2","x":80.366171875,"y":11.665312500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":82.841171875,"y":11.665312500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.31617187500001,"y":11.665312500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.791171875,"y":11.665312500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.266171875,"y":11.665312500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":94.021640625,"y":11.8684375,"w":6,"l":1.2687499999999996},{"oc":"#d2d2d2","x":98.481796875,"y":11.668437500000001,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":77.93414062500001,"y":11.665312500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":66.60139062500001,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":69.07639062500002,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":71.551390625,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":74.026390625,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":76.50139062500001,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":78.97639062500001,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":81.45139062500002,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":83.926390625,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":86.401390625,"y":45.70624999999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":88.87639062500001,"y":45.699999999999996,"w":6,"l":1.3562499999999982},{"oc":"#d2d2d2","x":91.918578125,"y":45.903124999999996,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":96.37873437500001,"y":45.703125,"w":6,"l":1.359375},{"oc":"#c1c1c1","x":9.528732812500001,"y":8.698749999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":24.13090625,"y":8.698749999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":51.30709375000001,"y":8.698749999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":73.69759375,"y":8.698749999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":98.82073437500001,"y":8.698749999999999,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":9.528732812500001,"y":7.823749999999998,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":24.13090625,"y":7.823749999999998,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":51.30709375000001,"y":7.823749999999998,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":73.69759375,"y":7.823749999999998,"w":1.5,"l":0.8470000000000001},{"oc":"#c1c1c1","x":98.82073437500001,"y":7.823749999999998,"w":1.5,"l":0.8470000000000001}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":79.33475,"y":18.9054375,"w":1.8562500000000053,"h":0.39318750000000097,"clr":-1},{"oc":"#d2d2d2","x":79.33475,"y":20.650562499999996,"w":1.8562500000000053,"h":0.39318750000000097,"clr":-1},{"oc":"#d2d2d2","x":79.33475,"y":22.6278125,"w":1.8562500000000053,"h":0.3932499999999995,"clr":-1},{"oc":"#d2d2d2","x":79.33475,"y":24.156937499999998,"w":1.8562500000000053,"h":0.39318750000000097,"clr":-1},{"oc":"#d2d2d2","x":79.33475,"y":26.0986875,"w":1.8562500000000053,"h":0.39318750000000097,"clr":-1},{"oc":"#d2d2d2","x":80.54904687500002,"y":28.887375000000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":73.19795312500001,"y":28.942375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":80.531859375,"y":30.5060625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":73.08967187500001,"y":30.487312499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":80.54904687500002,"y":32.1845,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":73.10685937500001,"y":32.165749999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":80.54904687500002,"y":33.9619375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":73.10685937500001,"y":33.9900625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":80.531859375,"y":36.040749999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"x":80.15373437500001,"y":37.8469375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":1},{"oc":"#d2d2d2","x":80.531859375,"y":37.6594375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":80.56640625,"y":41.34675,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"x":80.15390625000002,"y":44.740437500000006,"w":1.8562500000000053,"h":0.4312499999999962,"clr":1},{"oc":"#d2d2d2","x":81.938828125,"y":12.665312499999994,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c9c9c9","x":6.806250000000001,"y":27.136375,"w":31.680000000000003,"h":0.8526249999999985,"clr":-1},{"oc":"#d2d2d2","x":6.806421875000001,"y":3.2438750000000027,"w":51.581234374999994,"h":0.945437499999997,"clr":-1},{"oc":"#d2d2d2","x":7.103250000000001,"y":27.239375,"w":31.25925,"h":0.7343125000000015,"clr":-1},{"oc":"#d2d2d2","x":80.54904687500002,"y":46.753125000000004,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":73.10685937500001,"y":46.78125,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1}],"Texts":[{"x":6.245500000000001,"y":0.6746124999999985,"w":2.052,"clr":0,"A":"left","R":[{"T":"2013%20","S":35,"TS":[1,18,1,0]}]},{"x":11.183778125,"y":0.6748437499999984,"w":0.547,"clr":0,"A":"left","R":[{"T":"V","S":-1,"TS":[1,15,1,0]}]},{"x":12.189590625000001,"y":0.6755312499999986,"w":2.6890000000000005,"clr":0,"A":"left","R":[{"T":"irginia%20","S":-1,"TS":[1,15,1,0]}]},{"x":17.27471875,"y":0.6748750000000048,"w":5.742,"clr":0,"A":"left","R":[{"T":"Schedule%20ADJ%20","S":35,"TS":[1,18,1,0]}]},{"x":5.695843750000001,"y":1.7248750000000048,"w":2.8720000000000003,"clr":0,"A":"left","R":[{"T":"%20Page%202","S":35,"TS":[1,18,1,0]}]},{"oc":"#b0b0b0","x":40.1127640625,"y":0.19072500000000525,"w":10.527,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":27,"TS":[1,12,0,0]}]},{"oc":"#b0b0b0","x":48.75149375000001,"y":1.2587249999999983,"w":0.333,"clr":-1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,null,1,0]}]},{"x":48.75149375000001,"y":1.2587249999999983,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":48.39062500000001,"y":47.273374999999994,"w":5.472000000000001,"clr":0,"A":"left","R":[{"T":"2601050%2001%2F13","S":-1,"TS":[1,11,0,0]}]},{"x":43.692800000000005,"y":1.3004249999999993,"w":0.333,"clr":0,"A":"left","R":[{"T":"-","S":-1,"TS":[3,null,1,0]}]},{"x":43.692800000000005,"y":1.3004249999999993,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":6.476946875,"y":13.445868750000002,"w":1.368,"clr":0,"A":"left","R":[{"T":"11.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.8352125,"y":13.445868750000002,"w":33.003000000000014,"clr":0,"A":"left","R":[{"T":"Enter%20the%20total%20number%20of%20exemptions%20reported%20in%20the%20table%20above.%20Next%2C%20refer%20to%20the%20Poverty","S":27,"TS":[1,12,0,0]}]},{"x":66.32244687500001,"y":14.120868750000001,"w":1.0053,"clr":0,"A":"left","R":[{"T":"11%20","S":33,"TS":[1,12,1,0]}]},{"x":66.25283750000001,"y":15.92086875,"w":0.912,"clr":0,"A":"left","R":[{"T":"12","S":33,"TS":[1,12,1,0]}]},{"x":6.475400000000004,"y":17.439618750000005,"w":1.368,"clr":0,"A":"left","R":[{"T":"13.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.740853125000005,"y":17.439618750000005,"w":35.331000000000024,"clr":0,"A":"left","R":[{"T":"Multiply%20Line%2012%20by%20%24300.%20Enter%20the%20result%20on%20Line%2013%20and%20proceed%20to%20Line%2014.%20If%20you%20do%20not%20qualify%20","S":27,"TS":[1,12,0,0]}]},{"x":9.741265625,"y":18.002062500000005,"w":36.23500000000003,"clr":0,"A":"left","R":[{"T":"for%20the%20Tax%20Credit%20for%20Low-Income%20Individuals%20but%20claimed%20the%20Earned%20Income%20Credit%20on%20your%20federal%20","S":27,"TS":[1,12,0,0]}]},{"x":66.4079375,"y":18.564562500000005,"w":0.912,"clr":0,"A":"left","R":[{"T":"13","S":33,"TS":[1,12,1,0]}]},{"x":6.475812499999999,"y":19.520812500000005,"w":1.368,"clr":0,"A":"left","R":[{"T":"14.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.741265625,"y":19.520812500000005,"w":35.417000000000016,"clr":0,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Earned%20Income%20Credit%20claimed%20on%20your%20federal%20return.%20If%20you%20did%20not%20claim%20the%20","S":27,"TS":[1,12,0,0]}]},{"x":66.25325,"y":20.195812500000006,"w":0.912,"clr":0,"A":"left","R":[{"T":"14","S":33,"TS":[1,12,1,0]}]},{"x":66.25325,"y":21.99581250000001,"w":0.912,"clr":0,"A":"left","R":[{"T":"15","S":33,"TS":[1,12,1,0]}]},{"x":66.25325,"y":23.795812500000007,"w":0.912,"clr":0,"A":"left","R":[{"T":"16","S":33,"TS":[1,12,1,0]}]},{"x":6.475812499999999,"y":25.033312500000008,"w":1.368,"clr":0,"A":"left","R":[{"T":"17.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.741265625,"y":25.033312500000008,"w":35.69600000000003,"clr":0,"A":"left","R":[{"T":"Compare%20the%20amount%20on%20Line%2016%20above%20to%20the%20amount%20of%20tax%20on%20Line%2017%20of%20Form%20760%20and%20enter%20the%20","S":27,"TS":[1,12,0,0]}]},{"x":66.4079375,"y":25.70831250000001,"w":0.912,"clr":0,"A":"left","R":[{"T":"17","S":33,"TS":[1,12,1,0]}]},{"oc":"#d2d2d2","x":88.62374375000002,"y":18.586875000000003,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.62608750000001,"y":18.358950000000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.6059125,"y":18.42585,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.62374375000002,"y":20.3319,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.62608750000001,"y":20.103975000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.6059125,"y":20.17095,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.62374375000002,"y":22.309275,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.62608750000001,"y":22.081275,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.6059125,"y":22.1483625,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.62374375000002,"y":23.838375,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.62608750000001,"y":23.61045,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.6059125,"y":23.67735,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":88.62374375000002,"y":25.780125,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":79.62608750000001,"y":25.5522,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":91.6059125,"y":25.6191,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":6.477050000000001,"y":28.4325,"w":1.368,"clr":0,"A":"left","R":[{"T":"18.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.742503125,"y":28.4325,"w":17.136999999999997,"clr":0,"A":"left","R":[{"T":"Addition%20to%20tax.%20Fill%20in%20oval%20if%20addition%20came%20from","S":27,"TS":[1,12,0,0]}]},{"oc":"#6b6b6b","x":36.25594062500001,"y":28.4325,"w":0.228,"clr":-1,"A":"left","R":[{"T":"%3A","S":27,"TS":[1,12,0,0]}]},{"x":62.164550000000006,"y":28.4325,"w":0.912,"clr":0,"A":"left","R":[{"T":"18","S":33,"TS":[1,12,1,0]}]},{"x":62.164550000000006,"y":30.06375,"w":0.912,"clr":0,"A":"left","R":[{"T":"19","S":33,"TS":[1,12,1,0]}]},{"x":62.164550000000006,"y":31.695,"w":0.912,"clr":0,"A":"left","R":[{"T":"20","S":33,"TS":[1,12,1,0]}]},{"x":58.328300000000006,"y":33.27,"w":2.2800000000000002,"clr":0,"A":"left","R":[{"T":"..........","S":27,"TS":[1,12,0,0]}]},{"x":62.164550000000006,"y":33.27,"w":0.912,"clr":0,"A":"left","R":[{"T":"21","S":33,"TS":[1,12,1,0]}]},{"x":9.7428125,"y":35.745,"w":6.518000000000001,"clr":0,"A":"left","R":[{"T":"See%20instructions.%20%20","S":27,"TS":[1,12,0,0]}]},{"x":46.009296875000004,"y":35.745,"w":1.368,"clr":0,"A":"left","R":[{"T":"22a","S":33,"TS":[1,12,1,0]}]},{"x":45.922671875000006,"y":37.455,"w":1.413,"clr":0,"A":"left","R":[{"T":"22b","S":33,"TS":[1,12,1,0]}]},{"x":45.922671875000006,"y":38.94,"w":1.368,"clr":0,"A":"left","R":[{"T":"22c","S":33,"TS":[1,12,1,0]}]},{"x":6.477359375000001,"y":40.29,"w":1.368,"clr":0,"A":"left","R":[{"T":"23.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.742812500000001,"y":40.29,"w":16.046,"clr":0,"A":"left","R":[{"T":"If%20contributing%20to%20a%20Public%20School%20Foundation","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":40.964999999999996,"w":17.322,"clr":0,"A":"left","R":[{"T":"or%20a%20Public%20Library%20Foundation%2C%20enter%20the%20code%20%20%20","S":27,"TS":[1,12,0,0]}]},{"x":36.03968750000001,"y":40.964999999999996,"w":1.368,"clr":0,"A":"left","R":[{"T":"23a","S":33,"TS":[1,12,1,0]}]},{"x":9.7428125,"y":41.5899375,"w":14.997999999999996,"clr":0,"A":"left","R":[{"T":"for%20the%20foundation(s)%20and%20the%20contribution%20","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":42.214875,"w":16.226999999999997,"clr":0,"A":"left","R":[{"T":"amount(s)%20in%20boxes%2023a%20-%2023c.%20If%20contributing%20","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":42.889874999999996,"w":16.499000000000002,"clr":0,"A":"left","R":[{"T":"to%20more%20than%203%20public%20school%20or%20public%20library%20%20","S":27,"TS":[1,12,0,0]}]},{"x":35.867984375000006,"y":42.889874999999996,"w":1.413,"clr":0,"A":"left","R":[{"T":"23b","S":33,"TS":[1,12,1,0]}]},{"x":9.7428125,"y":43.564875,"w":14.585999999999997,"clr":0,"A":"left","R":[{"T":"foundations%2C%20see%20Form%20760%20instructions.%20","S":27,"TS":[1,12,0,0]}]},{"x":35.515296875,"y":44.239875000000005,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2023c","S":33,"TS":[1,12,1,0]}]},{"x":6.477359375000001,"y":45.477374999999995,"w":1.368,"clr":0,"A":"left","R":[{"T":"24.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.742812500000001,"y":45.477374999999995,"w":25.711000000000002,"clr":0,"A":"left","R":[{"T":"Total%20Adjustments%20(add%20Lines%2018%2C%2019%2C%2020%2C%2021%2C%2022a%20-22%20c%20and%2023a%20-%2023c).%20","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":46.152375,"w":33.740000000000116,"clr":0,"A":"left","R":[{"T":"Enter%20here%20and%20on%20Line%2028%20of%20Form%20760.%20....................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":62.164859375000006,"y":46.152375,"w":0.912,"clr":0,"A":"left","R":[{"T":"24","S":33,"TS":[1,12,1,0]}]},{"oc":"#d2d2d2","x":89.71728125000001,"y":28.43355,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84048750000001,"y":28.308525,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.39836875,"y":28.308525,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":28.337662500000004,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.70016250000002,"y":30.14295,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.82336875,"y":29.927325,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.38104375,"y":29.927325,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":29.9095125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.71728125000001,"y":31.865024999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84048750000001,"y":31.605674999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.39836875,"y":31.605674999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":31.631662499999997,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.71728125000001,"y":33.59565,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84048750000001,"y":33.3363,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.39836875,"y":33.3363,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":33.3654,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.71728125000001,"y":35.433825000000006,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.82336875,"y":35.46195,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":35.497275,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":89.71728125000001,"y":37.2369,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.44510625000001,"y":37.268175,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.71728125000001,"y":37.080675,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.82336875,"y":37.080675,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":37.112775,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":89.71728125000001,"y":38.9556,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.71728125000001,"y":38.949374999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.82378125000002,"y":38.839875,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":38.73461875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.4453125,"y":40.677375000000005,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":89.71831250000001,"y":40.870875000000005,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":92.089775,"y":40.712687499999994,"w":1.2520000000000002,"clr":1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#d2d2d2","x":89.71748749999999,"y":40.921124999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.82336875,"y":40.811775000000004,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.0984375,"y":40.70643125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.52265625,"y":42.386937499999995,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":89.72553125,"y":42.53693749999999,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.83203125,"y":42.4994375,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.72553125,"y":42.4371875,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.0984375,"y":42.53474375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.4453125,"y":44.1616875,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":89.7265625,"y":44.364937499999996,"w":0.333,"clr":1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":92.0984375,"y":44.193875,"w":1.2520000000000002,"clr":1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":80.83203125,"y":44.146056249999994,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#d2d2d2","x":89.72553125,"y":44.08380625,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.0984375,"y":44.181375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"oc":"#b0b0b0","x":12.889775000000002,"y":4.898174999999999,"w":4.831,"clr":-1,"A":"left","R":[{"T":"Family%20VAGI","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":35.741759375,"y":4.898174999999999,"w":2.233,"clr":-1,"A":"left","R":[{"T":"Name","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":55.1318375,"y":4.898174999999999,"w":9.206000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":74.31772812500002,"y":4.898174999999999,"w":3.2360000000000007,"clr":-1,"A":"left","R":[{"T":"Virginia%20","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":79.255353125,"y":4.898174999999999,"w":10.253,"clr":-1,"A":"left","R":[{"T":"Adjusted%20Gross%20Income%20(V","S":33,"TS":[1,12,1,0]}]},{"oc":"#b0b0b0","x":95.02203125000001,"y":4.898062499999999,"w":1.7309999999999999,"clr":-1,"A":"left","R":[{"T":"AGI)","S":33,"TS":[1,12,1,0]}]},{"x":12.28587500000001,"y":5.879625000000004,"w":1.2334,"clr":0,"A":"left","R":[{"T":"You","S":27,"TS":[1,12,0,0]}]},{"x":12.28587500000001,"y":6.7891875000000015,"w":2.781,"clr":0,"A":"left","R":[{"T":"Spouse","S":27,"TS":[1,12,0,0]}]},{"x":12.28587500000001,"y":9.480187500000008,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]},{"x":12.28587500000001,"y":10.389750000000012,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]},{"x":6.4773593750000105,"y":11.641875000000008,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"10.","S":27,"TS":[1,12,0,0]}]},{"x":12.28587500000001,"y":11.641875000000008,"w":1.823,"clr":0,"A":"left","R":[{"T":"Total","S":27,"TS":[1,12,0,0]}]},{"x":24.568062500000014,"y":11.299312500000013,"w":26.985000000000007,"clr":0,"A":"left","R":[{"T":"If%20more%20than%206%20exemptions%2C%20attach%20schedule%20listing%20the%20name%2C%20SSN%20%26%20VAGI.","S":27,"TS":[1,12,0,0]}]},{"x":24.568062500000014,"y":11.974312500000016,"w":3.9660000000000006,"clr":0,"A":"left","R":[{"T":"Enter%20total%20","S":27,"TS":[1,12,0,0]}]},{"x":30.702968750000014,"y":11.974312500000016,"w":4.831,"clr":0,"A":"left","R":[{"T":"Family%20VAGI","S":33,"TS":[1,12,1,0]}]},{"x":38.175921875000014,"y":11.974312500000016,"w":2.781000000000001,"clr":0,"A":"left","R":[{"T":"%20here.%20%20%20","S":27,"TS":[1,12,0,0]}]},{"oc":"#d2d2d2","x":91.22785625,"y":12.336525000000004,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":82.23123125000001,"y":12.086775000000003,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":94.16413437499999,"y":12.0870375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":6.853232812500001,"y":27.1328,"w":16.264999999999997,"clr":1,"A":"left","R":[{"T":"Adjustments%20and%20Voluntary%20Contributions","S":-1,"TS":[1,15,1,0]}]},{"x":6.5564734375,"y":3.1371249999999975,"w":26.43000000000001,"clr":1,"A":"left","R":[{"T":"%20Credit%20for%20Low-Income%20Individuals%20or%20Virginia%20Earned%20Income%20Credit","S":-1,"TS":[1,15,1,0]}]},{"x":6.853232812500001,"y":27.13259375,"w":7.4270000000000005,"clr":1,"A":"left","R":[{"T":"Adjustments%20and%20V","S":-1,"TS":[1,15,1,0]}]},{"x":20.781467187500002,"y":27.13328125,"w":8.838,"clr":1,"A":"left","R":[{"T":"oluntary%20Contributions","S":-1,"TS":[1,15,1,0]}]},{"oc":"#d2d2d2","x":89.71728125000001,"y":46.386875,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":80.84048750000001,"y":46.1275,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":73.39836875,"y":46.1275,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":92.089775,"y":46.15650625,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,21,0,0]}]},{"x":9.742400000000002,"y":14.12086875,"w":29.12500000000001,"clr":0,"A":"left","R":[{"T":"Guidelines%20Table%20in%20the%20Form%20760%20instructions%20to%20see%20if%20you%20qualify%20for%20this%20credit.%20","S":27,"TS":[1,12,0,0]}]},{"x":54.439353125000004,"y":14.12086875,"w":7.523999999999998,"clr":0,"A":"left","R":[{"T":".................................","S":27,"TS":[1,12,0,0]}]},{"x":6.476946875,"y":15.92086875,"w":1.368,"clr":0,"A":"left","R":[{"T":"12.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":15.9208125,"w":36.511000000000024,"clr":0,"A":"left","R":[{"T":"If%20you%20qualify%20for%20this%20credit%2C%20enter%20the%20number%20of%20personal%20exemptions%20reported%20on%20your%20Form%20760.%20.....","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":18.564562500000005,"w":36.56800000000013,"clr":0,"A":"left","R":[{"T":"return%2C%20enter%20%240%20and%20proceed%20to%20Line%2014.%20................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":20.195812500000002,"w":36.60900000000011,"clr":0,"A":"left","R":[{"T":"Earned%20Income%20Credit%20on%20your%20federal%20return%2C%20enter%20%240.%20.........................................................................","S":27,"TS":[1,12,0,0]}]},{"x":6.477359375000001,"y":21.995812500000003,"w":1.368,"clr":0,"A":"left","R":[{"T":"15.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.742812500000001,"y":21.995812500000003,"w":36.56600000000013,"clr":0,"A":"left","R":[{"T":"Multiply%20Line%2014%20by%2020%25%20(.20).%20................................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":6.477359375000001,"y":23.795812500000007,"w":1.368,"clr":0,"A":"left","R":[{"T":"16.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.742812500000001,"y":23.795812500000007,"w":36.61300000000013,"clr":0,"A":"left","R":[{"T":"Enter%20the%20greater%20of%20Line%2013%20or%20Line%2015%20above%20........................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":9.7428125,"y":25.708312500000005,"w":36.604000000000035,"clr":0,"A":"left","R":[{"T":"lesser%20of%20the%20two%20amounts%20here%20and%20on%20Line%2021%20of%20Form%20760.%20This%20is%20your%20credit%20amount.%20.....................","S":27,"TS":[1,12,0,0]}]},{"x":40.33690625,"y":28.432500000000005,"w":4.329,"clr":0,"A":"left","R":[{"T":"Form%20760C%20","S":27,"TS":[1,12,0,0]}]},{"x":52.62528125000001,"y":28.432500000000005,"w":4.2379999999999995,"clr":0,"A":"left","R":[{"T":"Form%20760F%20","S":27,"TS":[1,12,0,0]}]},{"x":60.44318750000001,"y":28.432500000000005,"w":0.912,"clr":0,"A":"left","R":[{"T":"....","S":27,"TS":[1,12,0,0]}]},{"x":6.477359375000001,"y":30.063750000000002,"w":1.368,"clr":0,"A":"left","R":[{"T":"19.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.742812500000001,"y":30.063750000000002,"w":3.1910000000000007,"clr":0,"A":"left","R":[{"T":"Penalty.%20","S":27,"TS":[1,12,0,0]}]},{"x":23.148031250000003,"y":30.063750000000002,"w":6.974000000000001,"clr":0,"A":"left","R":[{"T":"Late%20Filing%20Penalty%20","S":27,"TS":[1,12,0,0]}]},{"x":41.708984375,"y":30.063750000000002,"w":7.020000000000001,"clr":0,"A":"left","R":[{"T":"Extension%20Penalty%20%20","S":27,"TS":[1,12,0,0]}]},{"x":54.082437500000005,"y":30.063750000000002,"w":5.244000000000001,"clr":0,"A":"left","R":[{"T":"%20......................","S":27,"TS":[1,12,0,0]}]},{"x":6.477359375000001,"y":31.695,"w":1.368,"clr":0,"A":"left","R":[{"T":"20.%20","S":27,"TS":[1,12,0,0]}]},{"x":9.742812500000001,"y":31.695,"w":33.78300000000011,"clr":0,"A":"left","R":[{"T":"Interest%20(interest%20accrued%20on%20the%20tax%20you%20owe).%20..........................................................................","S":27,"TS":[1,12,0,0]}]},{"x":21.995609375000004,"y":33.27,"w":23.48400000000004,"clr":0,"A":"left","R":[{"T":".......................................................................................................","S":27,"TS":[1,12,0,0]}]},{"x":6.477359375000001,"y":33.27,"w":9.251,"clr":0,"A":"left","R":[{"T":"21.%20Consumer%E2%80%99s%20Use%20Tax.","S":27,"TS":[1,12,0,0]}]},{"x":6.477359375000001,"y":34.845000000000006,"w":10.119,"clr":0,"A":"left","R":[{"T":"22.%20Voluntary%20Contributions.","S":27,"TS":[1,12,0,0]}]},{"x":12.2865625,"y":8.577037500000003,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]},{"x":12.2865625,"y":7.702012500000004,"w":4.012,"clr":0,"A":"left","R":[{"T":"Dependent","S":27,"TS":[1,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":320,"AM":1024,"x":37.331078125000005,"y":1.4793958333333326,"w":21.431265625000005,"h":0.8961666666666682,"TU":"Your SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPINFO","EN":0},"TI":321,"AM":0,"x":24.337843750000005,"y":6.0274375000000004,"w":26.853921875,"h":0.8333333333333334,"TU":"name_You"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TSSN","EN":0},"TI":322,"AM":0,"x":51.501140625,"y":6.0274375000000004,"w":22.08937500000001,"h":0.8333333333333334,"TU":"Social Security number_You"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TPVAGI","EN":0},"TI":323,"AM":0,"x":73.89989062500001,"y":6.0274375000000004,"w":24.811874999999997,"h":0.8333333333333334,"TU":"Virginia Adjusted Gross Income (VAGI)_You"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPINFO","EN":0},"TI":324,"AM":0,"x":24.337843750000005,"y":6.934937499999999,"w":26.853921875,"h":0.8333333333333334,"TU":"name_Spouse"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":325,"AM":0,"x":51.501140625,"y":6.934937499999999,"w":22.08937500000001,"h":0.8333333333333334,"TU":"Social Security number_Spouse"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPVAGI","EN":0},"TI":326,"AM":0,"x":73.89989062500001,"y":6.934937499999999,"w":24.811874999999997,"h":0.8333333333333334,"TU":"Virginia Adjusted Gross Income (VAGI)_Spouse"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_1_","EN":0},"TI":327,"AM":0,"x":24.337843750000005,"y":7.842437500000003,"w":26.853921875,"h":0.8333333333333334,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_1_","EN":0},"TI":328,"AM":0,"x":51.501140625,"y":7.842437500000003,"w":22.08937500000001,"h":0.8333333333333334,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_1_","EN":0},"TI":329,"AM":0,"x":73.89989062500001,"y":7.842437500000003,"w":24.811874999999997,"h":0.8333333333333334,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_2_","EN":0},"TI":330,"AM":0,"x":24.337843750000005,"y":8.749937500000001,"w":26.853921875,"h":0.8333333333333334,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_2_","EN":0},"TI":331,"AM":0,"x":51.501140625,"y":8.749937500000001,"w":22.08937500000001,"h":0.8333333333333334,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_2_","EN":0},"TI":332,"AM":0,"x":73.89989062500001,"y":8.749937500000001,"w":24.811874999999997,"h":0.8333333333333334,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_3_","EN":0},"TI":333,"AM":0,"x":24.264109375000004,"y":9.699062499999997,"w":26.853750000000005,"h":0.8333333333333334,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_3_","EN":0},"TI":334,"AM":0,"x":51.42723437500001,"y":9.699062499999997,"w":22.089203125,"h":0.8333333333333334,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_3_","EN":0},"TI":335,"AM":0,"x":73.82598437500002,"y":9.699062499999997,"w":24.811874999999997,"h":0.8333333333333334,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEP_EXEINFO_4_","EN":0},"TI":336,"AM":0,"x":24.264109375000004,"y":10.606562500000004,"w":26.853750000000005,"h":0.8333333333333334,"TU":"name_Dependent"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEP_SSN_4_","EN":0},"TI":337,"AM":0,"x":51.42723437500001,"y":10.606562500000004,"w":22.089203125,"h":0.8333333333333334,"TU":"Social Security number_Dependent"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEP_VAGI_4_","EN":0},"TI":338,"AM":0,"x":73.82598437500002,"y":10.606562500000004,"w":24.811874999999997,"h":0.8333333333333334,"TU":"Virginia Adjusted Gross Income (VAGI)_Dependent"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TOTVAGI","EN":0},"TI":339,"AM":0,"x":78.414015625,"y":11.960958333333338,"w":11.62132812499999,"h":0.99166666666666,"TU":"Family VAGI","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXMPTNS","EN":0},"TI":340,"AM":0,"x":82.71879687500001,"y":14.085250000000002,"w":5.006375000000001,"h":0.9113750000000019,"TU":"11. Enter the total number of exemptions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXMPTOT","EN":0},"TI":341,"AM":0,"x":82.643859375,"y":15.908875000000004,"w":5.006375000000001,"h":0.9113749999999973,"TU":"12. Enter the number of personal exemptions "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXMPTAMT","EN":0},"TI":342,"AM":1024,"x":78.2189375,"y":18.241625,"w":9.206140625000005,"h":0.8840625000000036,"TU":"13. Multiply Line 12 by $300"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EIC","EN":0},"TI":343,"AM":0,"x":78.2189375,"y":19.964125,"w":9.206140625000005,"h":0.8840625000000036,"TU":"14. Enter the amount of EIC"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULTIPLY","EN":0},"TI":344,"AM":1024,"x":78.2189375,"y":21.9825,"w":9.206140625000005,"h":0.8841249999999974,"TU":"15. multiply Line 14 by 20%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GREATER","EN":0},"TI":345,"AM":1024,"x":78.2189375,"y":23.501562499999995,"w":9.206140625000005,"h":0.8841250000000022,"TU":"16. Enter the greater of Line 13 or Line 15 "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXCR","EN":0},"TI":346,"AM":1024,"x":78.2189375,"y":25.4325,"w":9.206140625000005,"h":0.8840624999999989,"TU":"17. Enter the lesser of Line 16 or Line 21 of From 760"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VA760C"}},"id":{"Id":"Add_VA760C","EN":0},"TI":348,"AM":0,"x":40.952312500000005,"y":29.19575,"w":6.385671874999997,"h":0.8333333333333334},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VA760F"}},"id":{"Id":"Add_VA760F","EN":0},"TI":350,"AM":0,"x":52.80790625,"y":29.11525,"w":6.3856718750000105,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":351,"AM":1024,"x":66.98037500000001,"y":28.232958333333332,"w":21.61878125,"h":0.9030416666666667,"TU":"18. addition to tax"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":352,"AM":0,"x":66.90543749999999,"y":29.830333333333332,"w":21.61878125,"h":0.9030416666666667,"TU":"19. penalty"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":355,"AM":0,"x":66.90543749999999,"y":31.53214583333333,"w":21.61878125,"h":0.9030416666666715,"TU":"20. Interest"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":356,"AM":0,"x":66.90543749999999,"y":33.29352083333333,"w":21.61878125,"h":0.9302916666666666,"TU":"21. Consumer's Use Tax"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VOL_L24A_1_","EN":0},"TI":357,"AM":0,"x":51.358999999999995,"y":35.282875,"w":4.013781250000004,"h":0.9505000000000005,"PL":{"V":[" ","60 Virginia Nongame & Endangered Wildlife Program","61 Democratic Party","62 Republican Party","63 U.S. Olympic Committee","64 Virginia Housing Program","65 Department for Aging and Rehabilitative Services","66 Community Policing Fund","67 Virginia Arts Foundation","68 Open Space Recreation and Conservation Fund","71 Chesapeak Bay Restoration Fund","72 Family & Children's Trust Fund","73 Virginia's State Forests Fund","74 Virginia's Uninsured Medical Catastrophe Fund","76 Historic Resources Fund","78 Children of America Finding Hope, Inc.","81 Home Energy Assistance Fund","82 Virginia War Memorial Educational Foundation and National D-Day Memorial Foundation","84 Virginia Federation of Humane Societies","85 Virginia Tuition Assistance Grant Fund","86 Spay and Neuter Fund","88 Virginia Cancer Centers","90 Martin Luther King, Jr. Living History and Public Policy Center","92 Virginia Military Family Relief Fund (MFRF)","93 Celebrating Special Children, Inc.","00 Donating to more than 3 organizations"],"D":["no entry","60","61","62","63","64","65","66","67","68","71","72","73","74","76","78","81","82","84","85","86","88","90","92","93","00"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VOL_L24AA_1_","EN":0},"TI":358,"AM":0,"x":76.76040625,"y":35.36964583333333,"w":11.831187500000002,"h":0.9336666666666673,"TU":"22a Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VOL_L24A_2_","EN":0},"TI":359,"AM":0,"x":51.4229375,"y":36.94475,"w":4.013781249999997,"h":0.9505000000000005,"PL":{"V":[" ","60 Virginia Nongame & Endangered Wildlife Program","61 Democratic Party","62 Republican Party","63 U.S. Olympic Committee","64 Virginia Housing Program","65 Department for Aging and Rehabilitative Services","66 Community Policing Fund","67 Virginia Arts Foundation","68 Open Space Recreation and Conservation Fund","71 Chesapeak Bay Restoration Fund","72 Family & Children's Trust Fund","73 Virginia's State Forests Fund","74 Virginia's Uninsured Medical Catastrophe Fund","76 Historic Resources Fund","78 Children of America Finding Hope, Inc.","81 Home Energy Assistance Fund","82 Virginia War Memorial Educational Foundation and National D-Day Memorial Foundation","84 Virginia Federation of Humane Societies","85 Virginia Tuition Assistance Grant Fund","86 Spay and Neuter Fund","88 Virginia Cancer Centers","90 Martin Luther King, Jr. Living History and Public Policy Center","92 Virginia Military Family Relief Fund (MFRF)","93 Celebrating Special Children, Inc.","00 Donating to more than 3 organizations"],"D":["no entry","60","61","62","63","64","65","66","67","68","71","72","73","74","76","78","81","82","84","85","86","88","90","92","93","00"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VOL_L24AA_2_","EN":0},"TI":360,"AM":0,"x":76.91028125,"y":36.99970833333333,"w":11.831187500000002,"h":0.9336666666666721,"TU":"22b Amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"VOL_L24A_3_","EN":0},"TI":361,"AM":0,"x":51.327890625,"y":38.5709375,"w":4.013781250000004,"h":0.9505000000000005,"PL":{"V":[" ","60 Virginia Nongame & Endangered Wildlife Program","61 Democratic Party","62 Republican Party","63 U.S. Olympic Committee","64 Virginia Housing Program","65 Department for Aging and Rehabilitative Services","66 Community Policing Fund","67 Virginia Arts Foundation","68 Open Space Recreation and Conservation Fund","71 Chesapeak Bay Restoration Fund","72 Family & Children's Trust Fund","73 Virginia's State Forests Fund","74 Virginia's Uninsured Medical Catastrophe Fund","76 Historic Resources Fund","78 Children of America Finding Hope, Inc.","81 Home Energy Assistance Fund","82 Virginia War Memorial Educational Foundation and National D-Day Memorial Foundation","84 Virginia Federation of Humane Societies","85 Virginia Tuition Assistance Grant Fund","86 Spay and Neuter Fund","88 Virginia Cancer Centers","90 Martin Luther King, Jr. Living History and Public Policy Center","92 Virginia Military Family Relief Fund (MFRF)","93 Celebrating Special Children, Inc.","00 Donating to more than 3 organizations"],"D":["no entry","60","61","62","63","64","65","66","67","68","71","72","73","74","76","78","81","82","84","85","86","88","90","92","93","00"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VOL_L24AA_3_","EN":0},"TI":362,"AM":0,"x":76.91028125,"y":38.64489583333333,"w":11.831187500000002,"h":0.9541666666666705,"TU":"22c Amount"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:SchFound"}},"id":{"Id":"Look_Up","EN":0},"TI":363,"AM":0,"x":9.882468750000001,"y":44.305299999999995,"w":6.086162499999999,"h":0.8333333333333334},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCH_L25CA_1_","EN":0},"TI":364,"AM":0,"x":41.55146875,"y":40.597208333333334,"w":14.165593750000008,"h":0.9643541666666616,"TU":"23a. Code","MV":"999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCH_L25CB_1_","EN":0},"TI":365,"AM":0,"x":76.91028125,"y":40.602645833333334,"w":11.831187500000002,"h":0.9337291666666658,"TU":"23a Amount"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCH_L25CA_2_","EN":0},"TI":366,"AM":0,"x":41.55146875,"y":42.304458333333336,"w":14.165593750000008,"h":0.9643229166666648,"TU":"23b.Code","MV":"999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCH_L25CB_2_","EN":0},"TI":367,"AM":0,"x":76.91028125,"y":42.429458333333336,"w":11.831187500000002,"h":0.9336979166666689,"TU":"23b Amount"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SCH_L25CA_3_","EN":0},"TI":368,"AM":0,"x":41.55146875,"y":44.07463333333334,"w":14.165593750000008,"h":0.9643979166666649,"TU":"23c. Code","MV":"999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SCH_L25CB_3_","EN":0},"TI":369,"AM":0,"x":76.91028125,"y":44.101452083333335,"w":11.831187500000002,"h":0.9337166666666595,"TU":"23c Amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":370,"AM":1024,"x":66.757109375,"y":46.048495833333334,"w":21.56240625000002,"h":0.9337104166666658,"TU":"24. total adjustments"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20BX","EN":0},"TI":347,"AM":0,"x":37.969078125,"y":28.5229375,"w":2.4750000000000028,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20BBOX","EN":0},"TI":349,"AM":0,"x":49.76589062500001,"y":28.55475,"w":2.3624218749999946,"h":0.8333333333333334,"checked":false}],"id":{"Id":"L20BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BLPEN","EN":0},"TI":353,"AM":0,"x":19.556453125,"y":30.14,"w":2.587578125000001,"h":0.8333333333333334,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BEPEN","EN":0},"TI":354,"AM":0,"x":38.08457812500001,"y":30.12975,"w":2.6999843749999974,"h":0.8333333333333334,"checked":false}],"id":{"Id":"LPENRB","EN":0}}]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VAFED.json b/test/data/va/form_org/VAFED.json new file mode 100755 index 00000000..d0ab3b36 --- /dev/null +++ b/test/data/va/form_org/VAFED.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#cdcee8","x":0.004296875000000001,"y":49.472125,"w":0.375,"l":105.38515625}],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#010202","x":12.125006875,"y":2.0119625000000005,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"oc":"#010202","x":5.937500000000001,"y":47.6376225,"w":12.061,"clr":-1,"A":"left","R":[{"T":"22.%20Business%20Locality%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":19.21565625,"w":12.228000000000005,"clr":-1,"A":"left","R":[{"T":"6.%20%20%20Car%20and%20truck%20expenses","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":13.249781249999998,"w":12.449000000000002,"clr":-1,"A":"left","R":[{"T":"2.%20%20%20Gross%20Receipts%20or%20Sales","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":16.24959375,"w":11.838000000000005,"clr":-1,"A":"left","R":[{"T":"4.%20%20%20Business%20Activity%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":17.749781249999998,"w":12.061,"clr":-1,"A":"left","R":[{"T":"5.%20%20%20Business%20Locality%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":30.826718749999998,"y":26.69060625,"w":28.560000000000002,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%202106%20and%2For%20SCHEDULE%202106-EZ%20INFORMATION","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":21.543854999999997,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"8.%20%20%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":22.218855,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.85534375,"y":22.218855,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Business","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":24.5436675,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"10.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":25.218667500000006,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.85534375,"y":25.218667500000006,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Other","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":28.137350625,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"11.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":28.812350625000004,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.85534375,"y":28.812350625000004,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Business","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":29.640749999999997,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"12.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":30.315749999999998,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.85534375,"y":30.315749999999998,"w":5.555,"clr":-1,"A":"left","R":[{"T":"Commuting","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":5.937500000000001,"y":31.140712500000003,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"13.%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937500000000001,"y":31.815712499999997,"w":7.059000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":16.85534375,"y":31.815712499999997,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Other","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":5.937500000000001,"y":32.6999625,"w":13.730000000000004,"clr":-1,"A":"left","R":[{"T":"14.%20Percent%20of%20business%20use%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937500000000001,"y":33.3749625,"w":5.6140000000000025,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":14.620109375,"y":33.3749625,"w":0.667,"clr":-1,"A":"left","R":[{"T":"V","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":15.566796875,"y":33.375357375,"w":3.6690000000000005,"clr":-1,"A":"left","R":[{"T":"ehicle%201","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":6.2382743750000005,"y":34.1376,"w":13.730000000000004,"clr":-1,"A":"left","R":[{"T":"15.%20Percent%20of%20business%20use%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":6.2382743750000005,"y":34.8126,"w":5.6140000000000025,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":14.920883750000002,"y":34.8126,"w":0.667,"clr":-1,"A":"left","R":[{"T":"V","S":9,"TS":[0,12,1,0]}]},{"oc":"#010202","x":15.8684313125,"y":34.8125443125,"w":3.6690000000000005,"clr":-1,"A":"left","R":[{"T":"ehicle%202","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":20.781374999999997,"w":12.174000000000005,"clr":-1,"A":"left","R":[{"T":"7.%20%20%20Inventory%20at%20end%20of%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":11.890893750000004,"w":8.782,"clr":-1,"A":"left","R":[{"T":"1.%20%20%20Schedule%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":23.040937500000002,"w":15.506000000000006,"clr":-1,"A":"left","R":[{"T":"9.%20%20%20Number%20of%20miles%20you%20used%20your","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":23.715937500000006,"w":6.781000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20vehicle%20for%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":16.425312500000004,"y":23.715937500000006,"w":5.555,"clr":-1,"A":"left","R":[{"T":"Commuting","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":5.937500000000002,"y":14.078625000000008,"w":7.559000000000001,"clr":-1,"A":"left","R":[{"T":"3.%20%20%20Depreciation%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000002,"y":14.753625000000008,"w":10.339000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20Expense%20Deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937493812500001,"y":37.14078750000001,"w":15.674000000000007,"clr":-1,"A":"left","R":[{"T":"16.%20Property%20Used%20more%20than%2050%25%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.765789140625002,"y":38.65278750000001,"w":9.227000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20Type%20of%20property","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937500000000001,"y":40.09959375,"w":11.505000000000003,"clr":-1,"A":"left","R":[{"T":"17.%20Date%20placed%20in%20service","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937500000000001,"y":40.95324375,"w":10.838000000000003,"clr":-1,"A":"left","R":[{"T":"18.%20Business%2Finvestment","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937500000000001,"y":41.62824375,"w":8.561,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20use%20percentage","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.937500000000001,"y":43.184681250000004,"w":10.06,"clr":-1,"A":"left","R":[{"T":"19.%20Cost%20or%20other%20basis","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":5.956062500000002,"y":44.68318125,"w":11.895000000000007,"clr":-1,"A":"left","R":[{"T":"20.%20Depreciation%20deduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#010202","x":6.11075,"y":46.15974375,"w":12.507000000000003,"clr":-1,"A":"left","R":[{"T":"21.%20Elected%20section%20179%20cost","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":36.1359375,"y":11.857750000000001,"w":9.558000000000002,"clr":-1,"A":"left","R":[{"T":"First%20Schedule%20Info.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":63.36299999999999,"y":11.858002000000008,"w":10.725000000000001,"clr":-1,"A":"left","R":[{"T":"Second%20Schedule%20Info.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":3.0158249999999973,"w":7.279000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20First%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":4.828318125,"w":9.336000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse'%20s%20First%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":6.578317500000002,"w":23.398,"clr":-1,"A":"left","R":[{"T":"Present%20Home%20Address%20(no.%20and%20street%20or%20rural%20route)","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":5.937500000000001,"y":8.828317500000002,"w":11.059000000000001,"clr":-1,"A":"left","R":[{"T":"City%2C%20Town%20or%20Post%20Office","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.484340625000005,"y":3.0158362500000067,"w":1.111,"clr":-1,"A":"left","R":[{"T":"MI","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":29.484340625000005,"y":4.703336250000007,"w":1.111,"clr":-1,"A":"left","R":[{"T":"MI","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":37.56246218750001,"y":3.0158362500000067,"w":4.835,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":37.56246218750001,"y":4.5783318750000035,"w":4.835,"clr":-1,"A":"left","R":[{"T":"Last%20Name","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.17175125000001,"y":3.0158362500000067,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Suffix","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.17175125000001,"y":4.5783318750000035,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Suffix","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.24987281250002,"y":3.0158362500000067,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":71.24987281250002,"y":4.5783318750000035,"w":14.894000000000004,"clr":-1,"A":"left","R":[{"T":"Spouse'%20s%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.34362453125001,"y":6.51583500000001,"w":6.058000000000001,"clr":-1,"A":"left","R":[{"T":"Locality%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":55.265502968750006,"y":8.828340000000006,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":63.5154978125,"y":8.828340000000006,"w":0,"clr":-1,"A":"left","R":[{"T":"Z","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":64.6075915625,"y":8.828340000000006,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"IP%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#231f20","x":27.264018124999993,"y":10.69074375000001,"w":32.501000000000005,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20C%2C%20SCHEDULE%20C-EZ%20and%2For%20SCHEDULE%20F%20INFORMATION","S":9,"TS":[0,12,1,0]}]},{"oc":"#231f20","x":17.478053750000004,"y":2.012024999999994,"w":12.725999999999999,"clr":-1,"A":"left","R":[{"T":"%20Virginia%20Schedule%20FED%2FCG","S":-1,"TS":[0,16,1,0]}]},{"oc":"#010202","x":5.937500000000001,"y":37.8157875,"w":13.674000000000005,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20in%20a%20qualified%20business%20use%3A","S":3,"TS":[0,12,0,0]}]},{"x":53.12921875000001,"y":33.2509375,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":53.12921875000001,"y":34.7509375,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":80.97296875,"y":34.7506246875,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":80.97296875,"y":33.2506246875,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":53.12921875000001,"y":41.4381246875,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":80.97296875,"y":41.4381251875,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"oc":"#231f20","x":40.71125000000001,"y":36.3912,"w":15.335,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%204562%20INFORMATION","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":371,"AM":1024,"x":67.90265625,"y":0.8523333333333293,"w":36.312546875,"h":1.2916666666666667,"TU":"State Approved Form","V":"Virginia Approved Form for Filing"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":372,"AM":1024,"x":6.1397015625,"y":3.9840833333333308,"w":21.808548437500004,"h":1.0290416666666715,"TU":"PrimaryFirstName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":373,"AM":1024,"x":28.868296875000006,"y":3.9563958333333367,"w":3.1186718749999973,"h":0.9633541666666664,"TU":"PrimaryMI"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAME","EN":0},"TI":374,"AM":1024,"x":34.35592187500001,"y":3.923583333333331,"w":25.871656250000008,"h":0.9633541666666758,"TU":"PrimaryLastName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SUF","EN":0},"TI":375,"AM":1024,"x":63.584812500000005,"y":3.9103333333333317,"w":3.118499999999988,"h":0.9633541666666664,"TU":"PrimarySuffix"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":376,"AM":1024,"x":71.57545312500001,"y":3.877458333333332,"w":21.808359374999988,"h":1.0290416666666715,"TU":"PrimarySSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STFNAME","EN":0},"TI":377,"AM":1024,"x":6.221651562500001,"y":5.824458333333325,"w":21.808582812500003,"h":1.028979166666673,"TU":"SpouseFirstName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPMI","EN":0},"TI":378,"AM":1024,"x":28.95028125,"y":5.796770833333331,"w":3.1185000000000014,"h":0.9633541666666664,"TU":"SpouseMI"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNAME","EN":0},"TI":379,"AM":1024,"x":34.437906250000005,"y":5.763958333333335,"w":25.871484374999998,"h":0.9632916666666631,"TU":"SpouseLastName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPSUF","EN":0},"TI":380,"AM":1024,"x":63.666625,"y":5.7507083333333355,"w":3.11867187500001,"h":0.9632916666666631,"TU":"SpouseSuffix"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":381,"AM":1024,"x":71.65726562500001,"y":5.717833333333336,"w":21.80853125000001,"h":1.0290416666666715,"TU":"SpouseSSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":382,"AM":1024,"x":6.20565,"y":7.470624999999998,"w":42.59052187499999,"h":0.8333333333333334,"TU":"AddressLine1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCDTP","EN":0},"TI":383,"AM":1024,"x":63.76528125,"y":7.429770833333332,"w":3.1185000000000014,"h":0.9632916666666679,"TU":"Code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR2","EN":0},"TI":384,"AM":1024,"x":6.2469515625000005,"y":8.271895833333337,"w":42.4847671875,"h":0.8976666666666612,"TU":"AddressLine2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":385,"AM":1024,"x":6.250784375000001,"y":9.656020833333335,"w":42.4848875,"h":0.8976666666666707,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":386,"AM":1024,"x":55.54896875000001,"y":9.656020833333335,"w":3.8671875000000004,"h":0.9633541666666664,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":387,"AM":1024,"x":63.449375,"y":9.623208333333338,"w":21.808359375,"h":1.0289791666666588,"TU":"ZipCode"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCHNMA","EN":0},"TI":388,"AM":0,"x":50.446000000000005,"y":11.987145833333335,"w":3.1185000000000014,"h":0.9633541666666616,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoScheduleName"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCHNMB","EN":0},"TI":389,"AM":0,"x":79.33646875,"y":11.910020833333334,"w":3.1185000000000014,"h":0.9632916666666631,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoScheduleName"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1GREC","EN":0},"TI":390,"AM":0,"x":36.125546875000005,"y":13.38052083333333,"w":16.523031250000003,"h":0.8359791666666752,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoGrossReceiptsOrSales"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2GREC","EN":0},"TI":391,"AM":0,"x":63.925984375000006,"y":13.395395833333339,"w":16.523031250000003,"h":0.8359791666666609,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoGrossReceiptsOrSales"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1DEPREC","EN":0},"TI":392,"AM":0,"x":36.103890625000005,"y":14.709645833333331,"w":16.52303125,"h":0.8359791666666704,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoDeprecExpDeduct"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2DEPREC","EN":0},"TI":393,"AM":0,"x":63.904328125000006,"y":14.724520833333335,"w":16.523031249999992,"h":0.8359791666666657,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoDeprecExpDeduct"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S1BUSACT","EN":0},"TI":394,"AM":0,"x":36.103890625000005,"y":16.36070833333333,"w":16.52303125,"h":0.8359791666666752,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNAICSBusNAICS","MV":"maxl:6"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S2BUSACT","EN":0},"TI":395,"AM":0,"x":63.904328125000006,"y":16.40283333333333,"w":16.523031249999992,"h":0.8359791666666752,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNAICSBusNAICS","MV":"maxl:6"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S1BUSLOC","EN":0},"TI":396,"AM":0,"x":36.103890625000005,"y":18.075458333333334,"w":16.52303125,"h":0.8359791666666657,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoBusFIPS","MV":"999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S2BUSLOC","EN":0},"TI":397,"AM":0,"x":63.904328125000006,"y":18.090333333333334,"w":16.523031249999992,"h":0.8359791666666704,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoBusFIPS","MV":"999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1CAREXP","EN":0},"TI":398,"AM":0,"x":36.103890625000005,"y":19.387958333333334,"w":16.52303125,"h":0.8359791666666657},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2CAREXP","EN":0},"TI":399,"AM":0,"x":63.904328125000006,"y":19.402833333333334,"w":16.523031249999992,"h":0.8359791666666704},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1INVENT","EN":0},"TI":400,"AM":0,"x":36.275765625000005,"y":20.887958333333334,"w":16.52303125,"h":0.8359791666666657,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoInventoryAtEnd"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2INVENT","EN":0},"TI":401,"AM":0,"x":64.076203125,"y":20.902833333333334,"w":16.523031249999992,"h":0.8359791666666704,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoInventoryAtEnd"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1BUSMI","EN":0},"TI":402,"AM":0,"x":36.103890625000005,"y":22.200458333333334,"w":16.52303125,"h":0.8359791666666657,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedBus"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2BUSMI","EN":0},"TI":403,"AM":0,"x":63.904328125000006,"y":22.215333333333334,"w":16.523031249999992,"h":0.8359791666666704,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedBus"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1COMMI","EN":0},"TI":404,"AM":0,"x":36.103890625000005,"y":23.762958333333334,"w":16.52303125,"h":0.8359791666666657,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedComu"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2COMMI","EN":0},"TI":405,"AM":0,"x":63.904328125000006,"y":23.777833333333334,"w":16.523031249999992,"h":0.8359791666666704,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedComu"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1OTHMI","EN":0},"TI":406,"AM":0,"x":36.022421875,"y":25.075458333333334,"w":16.522859375000003,"h":0.8359791666666657,"TU":"Sch1InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedOth"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2OTHMI","EN":0},"TI":407,"AM":0,"x":63.732453125000006,"y":25.090333333333334,"w":16.523031249999992,"h":0.8359791666666704,"TU":"Sch2InfoSchCSchCEZAndOrSchFInfoNoOfMilesUsedOth"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1BUSMI2","EN":0},"TI":408,"AM":0,"x":36.320968750000006,"y":28.547583333333336,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch1InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedBus2"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"S2BUSMI2","EN":0},"TI":409,"AM":0,"x":64.031,"y":28.562458333333336,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch2InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedBus2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1COMMI2","EN":0},"TI":410,"AM":0,"x":36.320968750000006,"y":30.235083333333336,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch1InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedComu2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2COMMI2","EN":0},"TI":411,"AM":0,"x":64.031,"y":30.249958333333336,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch2InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedComu2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1OTHMI2","EN":0},"TI":412,"AM":0,"x":36.320968750000006,"y":31.797583333333336,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch1InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedOth2"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2OTHMI2","EN":0},"TI":413,"AM":0,"x":64.031,"y":31.812458333333336,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch2InfoSch2106AndOrSch2106EZInfoNoOfMilesUsedOth2"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14A","EN":0},"TI":414,"AM":0,"x":36.320968750000006,"y":33.422583333333336,"w":16.523031250000003,"h":0.8359791666666657,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":415,"AM":0,"x":64.031,"y":33.43745833333333,"w":16.523031250000003,"h":0.8359791666666657,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":416,"AM":0,"x":36.320968750000006,"y":34.922583333333336,"w":16.523031250000003,"h":0.8359791666666657,"MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":417,"AM":0,"x":64.031,"y":34.93745833333333,"w":16.523031250000003,"h":0.8359791666666657,"MV":"d"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"S1PROP","EN":0},"TI":418,"AM":0,"x":36.492843750000006,"y":38.60102083333333,"w":16.523031250000003,"h":0.8359791666666704,"TU":"Sch1InfoSch4562InfoPropUsedInQualBus"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"S2PROP","EN":0},"TI":419,"AM":0,"x":64.202875,"y":38.61589583333333,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch2InfoSch4562InfoPropUsedInQualBus"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"S1DATE","EN":0},"TI":420,"AM":0,"x":36.492843750000006,"y":39.97602083333333,"w":16.523031250000003,"h":0.8359791666666704,"TU":"Sch1InfoSch4562InfoDtPlacedInService","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"S2DATE","EN":0},"TI":421,"AM":0,"x":64.202875,"y":39.95814583333333,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch2InfoSch4562InfoDtPlacedInService","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L18A","EN":0},"TI":422,"AM":0,"x":36.492843750000006,"y":41.60102083333333,"w":16.523031250000003,"h":0.8359791666666704,"TU":"Sch1InfoSch4562InfoBusInvUsePercent1","MV":"d"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L18B","EN":0},"TI":423,"AM":0,"x":64.202875,"y":41.61589583333333,"w":16.523031250000003,"h":0.8359791666666657,"TU":"Sch2InfoSch4562InfoBusInvUsePercent1","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1COST","EN":0},"TI":424,"AM":0,"x":36.492843750000006,"y":43.16352083333334,"w":16.523031250000003,"h":0.8359604166666657,"TU":"Sch1InfoSch4562InfoCostOrOthBasis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2COST","EN":0},"TI":425,"AM":0,"x":64.202875,"y":43.17839583333333,"w":16.523031250000003,"h":0.8359479166666688,"TU":"Sch2InfoSch4562InfoCostOrOthBasis"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1DEP","EN":0},"TI":426,"AM":0,"x":36.492843750000006,"y":44.53850833333333,"w":16.523031250000003,"h":0.835972916666672,"TU":"Sch1InfoSch4562InfoDeprDeduct"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2DEP","EN":0},"TI":427,"AM":0,"x":64.202875,"y":44.55337083333333,"w":16.523031250000003,"h":0.835972916666672,"TU":"Sch2InfoSch4562InfoDeprDeduct"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S1SEC179","EN":0},"TI":428,"AM":0,"x":36.664718750000006,"y":46.03850833333333,"w":16.523031250000003,"h":0.835972916666672,"TU":"Sch1InfoSch4562InfoElectSec179Cost"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"S2SEC179","EN":0},"TI":429,"AM":0,"x":64.37475,"y":46.05337083333333,"w":16.523031250000003,"h":0.835972916666672,"TU":"Sch2InfoSch4562InfoElectSec179Cost"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S1LOC","EN":0},"TI":430,"AM":0,"x":36.664718750000006,"y":47.60100833333333,"w":16.523031250000003,"h":0.835972916666672,"TU":"Sch1InfoSch4562InfoBusFIPS1","MV":"999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"S2LOC","EN":0},"TI":431,"AM":0,"x":64.37475,"y":47.61587083333333,"w":16.523031250000003,"h":0.835972916666672,"TU":"Sch2InfoSch4562InfoBusFIPS1","MV":"999"}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VAOSC.json b/test/data/va/form_org/VAOSC.json new file mode 100755 index 00000000..27ce49bd --- /dev/null +++ b/test/data/va/form_org/VAOSC.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"Sch OSC Web 09 06 12.indd","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":43.76796875000001,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":43.78515625,"y":2.84375,"w":6,"l":2.4234374999999977},{"oc":"#d2d2d2","x":46.24296875000001,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":46.208593750000006,"y":2.84375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.71796875,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":48.68359375000001,"y":2.84375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":51.192968750000006,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":51.15859375,"y":2.84375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.66796875000001,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":53.63359375000001,"y":2.84375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":56.14296875,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":56.10859375,"y":2.84375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":58.61796875000001,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":58.583593750000006,"y":2.84375,"w":6,"l":2.474999999999996},{"oc":"#d2d2d2","x":61.09296875,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":61.05859375000001,"y":2.84375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":63.56796875000001,"y":1.5968749999999925,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":63.533593749999994,"y":2.84375,"w":6,"l":2.4750000000000028},{"x":6.6,"y":3.1625000000000036,"w":0.75,"l":59.31406250000001},{"x":6.6,"y":4.943750000000004,"w":0.75,"l":59.31406250000001},{"oc":"#d2d2d2","x":67.8473125,"y":38.3415,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.83871875000001,"y":39.579,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.32231250000001,"y":38.3415,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.28793750000001,"y":39.588375,"w":6,"l":5.646093749999998},{"oc":"#d2d2d2","x":73.46762500000001,"y":38.354,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.864328125,"y":34.200875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":35.44775,"w":6,"l":2.4664062499999977},{"oc":"#d2d2d2","x":70.33932812500001,"y":34.200875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.30495312500001,"y":35.44775,"w":6,"l":3.1796875000000004},{"oc":"#d2d2d2","x":67.8473125,"y":6.172749999999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.83871875000001,"y":7.357125000000006,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":67.84714062500001,"y":15.069625000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.84714062500001,"y":16.3165,"w":6,"l":2.440624999999995},{"oc":"#d2d2d2","x":70.322140625,"y":15.069625000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.26198437500001,"y":16.3165,"w":6,"l":3.2226562500000004},{"oc":"#d2d2d2","x":67.84714062500001,"y":25.4165,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.85573437500001,"y":26.600875,"w":6,"l":3.1453125000000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":18.7415,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":19.979,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":18.7415,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.21042187500001,"y":19.979,"w":6,"l":5.732031249999998},{"oc":"#d2d2d2","x":73.43307812500001,"y":18.744625,"w":6,"l":2.5007812500000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":27.388375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.85573437500001,"y":28.57275,"w":6,"l":3.1453125000000055},{"oc":"#d2d2d2","x":67.8473125,"y":8.241500000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.83871875000001,"y":9.425875,"w":6,"l":3.1625000000000028},{"oc":"#d2d2d2","x":87.61276562500001,"y":9.894625,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":11.144625,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":11.144625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":11.144625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":11.144625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":11.144625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":11.144625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":11.144625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":9.897750000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":11.144625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":11.147750000000002,"w":6,"l":3.2226562500000004},{"oc":"#d2d2d2","x":67.84714062500001,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":30.49775,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":30.49775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":30.49775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":30.49775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":30.49775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":30.49775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":30.49775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":30.49775,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.647140625,"y":29.250874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":30.494625,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":87.61276562500001,"y":23.110249999999997,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":24.360249999999997,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":24.360249999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":24.360249999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":24.360249999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":24.360249999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":24.360249999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":24.360249999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":23.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":24.360249999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":24.363375,"w":6,"l":3.2226562500000004},{"oc":"#d2d2d2","x":67.84714062500001,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":32.113375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":32.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":32.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":32.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":32.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":32.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":32.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":32.113375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.647140625,"y":30.8665,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":32.11025,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":67.84714062500001,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":37.050875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":37.050875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":37.050875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":37.050875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":37.050875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":37.050875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":37.050875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":37.050875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.647140625,"y":35.804,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":37.04775,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":67.84714062500001,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":41.425875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":41.425875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":41.425875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":41.425875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":41.425875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":41.425875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":41.425875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":41.425875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.647140625,"y":40.179,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":41.42275,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":67.87309375000001,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.8645,"y":43.278999999999996,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.34809375,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.31371875,"y":43.278999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.82309375000001,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.78871875,"y":43.278999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.29809375,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.26371875000001,"y":43.278999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.77309375,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.73871875,"y":43.278999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.24809375000001,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.21371875000001,"y":43.278999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.72309375,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.68871875,"y":43.278999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.19809375000001,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.16371875,"y":43.278999999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.67309375,"y":42.032125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.6129375,"y":43.275875000000006,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":87.61276562500001,"y":13.375312499999998,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":14.625312499999998,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":14.625312499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":14.625312499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":14.625312499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":14.625312499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":14.625312499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":14.625312499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":13.378437499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":14.625312499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":14.628437499999999,"w":6,"l":3.2226562500000004},{"oc":"#d2d2d2","x":87.61276562500001,"y":16.687812499999996,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":17.937812499999996,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":17.937812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":17.937812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":17.937812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":17.937812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":17.937812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":17.937812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":16.6909375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":17.937812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":17.9409375,"w":6,"l":3.2226562500000004},{"oc":"#d2d2d2","x":87.61276562500001,"y":20.812812499999996,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":22.062812499999996,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":22.062812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":22.062812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":22.062812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":22.062812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":22.062812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":22.062812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":20.8159375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":22.062812499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":22.0659375,"w":6,"l":3.2226562500000004},{"oc":"#d2d2d2","x":67.84714062500001,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":33.81125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":33.81125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":33.81125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":33.81125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":33.81125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":33.81125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":33.81125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":33.81125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.647140625,"y":32.564375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":33.808125,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":87.61276562500001,"y":11.594312500000001,"w":6,"l":3.1882812500000055},{"oc":"#d2d2d2","x":67.84714062500001,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":12.844312500000001,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.322140625,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":12.844312500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.79714062500001,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":12.844312500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.272140625,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":12.844312500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.747140625,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":12.844312500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.22214062500001,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":12.844312500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.697140625,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":12.844312500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.17214062500001,"y":11.597437499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":12.844312500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":12.847437499999998,"w":6,"l":3.2226562500000004},{"oc":"#d2d2d2","x":68.01901562500001,"y":44.354000000000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.02760937500001,"y":45.538374999999995,"w":6,"l":3.1453125000000055},{"oc":"#d2d2d2","x":68.01901562500001,"y":46.325874999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.02760937500001,"y":47.510250000000006,"w":6,"l":3.1453125000000055},{"oc":"#d2d2d2","x":68.01901562500001,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":67.838546875,"y":49.435249999999996,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.494015625,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.287765625,"y":49.435249999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.96901562500001,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":72.762765625,"y":49.435249999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.444015625,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.23776562500001,"y":49.435249999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.919015625,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":77.712765625,"y":49.435249999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.39401562500001,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.18776562500001,"y":49.435249999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.869015625,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":82.662765625,"y":49.435249999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.34401562500001,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.137765625,"y":49.435249999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.819015625,"y":48.188375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":87.586984375,"y":49.432125000000006,"w":6,"l":3.2054687500000028}],"VLines":[{"oc":"#d2d2d2","x":44.103125000000006,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":46.578125,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":49.053125,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":51.52812500000001,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":54.003125,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":56.478125000000006,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":58.95312500000001,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":61.428124999999994,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":63.90312500000001,"y":1.4750000000000074,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":66.30078125,"y":1.4718750000000078,"w":6,"l":1.4937499999999997},{"x":6.6,"y":3.1625000000000036,"w":0.75,"l":1.78125},{"x":65.91406250000001,"y":3.1625000000000036,"w":0.75,"l":1.78125},{"oc":"#d2d2d2","x":68.18246875000001,"y":38.219625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.65746875,"y":38.219625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13246875,"y":38.219625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.598875,"y":38.397749999999995,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":68.19948437500001,"y":34.079,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.674484375,"y":34.079,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.149484375,"y":34.079,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.18246875000001,"y":6.06025,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":70.65746875,"y":6.044625,"w":6,"l":1.3656250000000003},{"oc":"#d2d2d2","x":68.182296875,"y":14.94775,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":14.94775,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":14.94775,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":25.304000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":25.294625,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":68.182296875,"y":18.619625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":18.619625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":18.619625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.598703125,"y":18.79775,"w":6,"l":1.2687499999999996},{"oc":"#d2d2d2","x":68.182296875,"y":27.275875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":27.266499999999997,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":68.18246875000001,"y":8.129,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":70.65746875,"y":8.119625,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":68.182296875,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":70.657296875,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":73.13229687500001,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":75.607296875,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":78.08229687500001,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":80.557296875,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":83.032296875,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":85.50729687500001,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":87.982296875,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":90.45729687500001,"y":9.775874999999997,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":68.182296875,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":29.129,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":22.991500000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":30.744625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":35.682125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":40.057125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.20825,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.68325,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.15825000000001,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.63325,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.10825000000001,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.58325,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.05825,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.53325000000001,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.00825,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.48325000000001,"y":41.910250000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":13.256562500000006,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":16.5690625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":20.6940625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":32.4425,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.182296875,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":70.657296875,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.13229687500001,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":75.607296875,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.08229687500001,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":80.557296875,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.032296875,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":85.50729687500001,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":87.982296875,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":90.45729687500001,"y":11.4755625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.354171875,"y":44.2415,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.829171875,"y":44.232124999999996,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":68.354171875,"y":46.21337499999999,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":70.829171875,"y":46.204,"w":6,"l":1.359375},{"oc":"#d2d2d2","x":68.182296875,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":70.657296875,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":73.13229687500001,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":75.607296875,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":78.08229687500001,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":80.557296875,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":83.032296875,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":85.50729687500001,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":87.98227590625001,"y":48.0665,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":90.45729687500001,"y":48.0665,"w":6,"l":1.3500000000000039}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":5.817968750000001,"y":5.168750000000007,"w":28.21328125,"h":0.8999999999999962,"clr":-1},{"oc":"#c9c9c9","x":72.875515625,"y":5.946937500000009,"w":21.829671874999992,"h":0.8999999999999962,"clr":-1},{"oc":"#c9c9c9","x":5.817968750000001,"y":24.837500000000002,"w":28.21328125,"h":0.9000000000000009,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":10.775875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":10.757124999999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":30.129,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":30.110249999999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":23.9915,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":23.97275,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":31.744625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":31.725875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":36.682125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":36.663374999999995,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":41.057125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":41.038374999999995,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.15590625,"y":42.91025,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":74.71371875000001,"y":42.89150000000001,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":14.256562499999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":14.237812500000004,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":17.569062499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":17.5503125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":21.694062499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":21.6753125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":33.4425,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":33.42375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":12.4755625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":12.456812499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c9c9c9","x":5.989843750000001,"y":43.775,"w":28.21328125,"h":0.9000000000000057,"clr":-1},{"oc":"#d2d2d2","x":82.129953125,"y":49.0665,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":74.68776562500001,"y":49.04775,"w":1.8562500000000053,"h":0.4312500000000057,"clr":-1}],"Texts":[{"x":5.995291249999999,"y":1.1293124999999975,"w":1.596,"clr":0,"A":"left","R":[{"T":"2013%20","S":-1,"TS":[1,22,1,0]}]},{"x":12.344429375,"y":1.1292749999999974,"w":0.667,"clr":0,"A":"left","R":[{"T":"V","S":-1,"TS":[0,16,1,0]}]},{"x":13.6821854375,"y":1.1292749999999974,"w":10.169999999999998,"clr":0,"A":"left","R":[{"T":"irginia%20Schedule%20OSC","S":-1,"TS":[0,16,1,0]}]},{"x":6.1396229375,"y":2.051774999999992,"w":17.631,"clr":0,"A":"left","R":[{"T":"CREDIT%20FOR%20TAX%20PAID%20TO%20ANOTHER%20STATE","S":-1,"TS":[1,16,1,0]}]},{"x":5.843125156250001,"y":6.485268750000003,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%201.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":7.160160750000003,"w":3.419,"clr":0,"A":"left","R":[{"T":"1.%20Single%20","S":27,"TS":[1,12,0,0]}]},{"x":14.932578125000001,"y":7.160160750000003,"w":8.658000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Married%20Filing%20Jointly%20","S":27,"TS":[1,12,0,0]}]},{"x":29.405140625000005,"y":7.160160750000003,"w":10.254000000000001,"clr":0,"A":"left","R":[{"T":"3.%20Married%20Filing%20Separately%20","S":27,"TS":[1,12,0,0]}]},{"x":47.74025000000001,"y":7.160160750000003,"w":2.963,"clr":0,"A":"left","R":[{"T":"4.%20Other","S":27,"TS":[1,12,0,0]}]},{"x":6.195828125000001,"y":8.397660750000005,"w":0.912,"clr":0,"A":"left","R":[{"T":"2.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":8.397660750000005,"w":34.55500000000007,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20below%20to%20identify%20the%20person%20claiming%20the%20credit%20.............................................%202","S":27,"TS":[1,12,0,0]}]},{"x":11.674859375000002,"y":9.072655125000006,"w":2.599,"clr":0,"A":"left","R":[{"T":"1.%20You%20","S":27,"TS":[1,12,0,0]}]},{"x":23.319734375000007,"y":9.072655125000006,"w":3.9210000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":39.15664062500001,"y":9.072655125000006,"w":6.976000000000002,"clr":0,"A":"left","R":[{"T":"3.%20You%20and%20Spouse","S":27,"TS":[1,12,0,0]}]},{"x":6.195828125000001,"y":10.310155125000009,"w":0.912,"clr":0,"A":"left","R":[{"T":"3.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":10.310155125000009,"w":34.69200000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20other%20state%E2%80%99s%20tax%20is%20based%20.............................................%203","S":27,"TS":[1,12,0,0]}]},{"x":5.487359375000001,"y":13.550160750000009,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%205.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578015625000003,"y":13.550160750000009,"w":34.60100000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20tax%20liability%20owed%20to%20the%20other%20state.%20See%20instructions%20.................................................%205","S":27,"TS":[1,12,0,0]}]},{"x":6.195828125000001,"y":15.170166375000008,"w":0.912,"clr":0,"A":"left","R":[{"T":"6.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":15.170166375000008,"w":34.967000000000084,"clr":0,"A":"left","R":[{"T":"Identify%20the%20state%20and%20ATTACH%20a%20copy%20of%20the%20other%20state%E2%80%99s%20return%20...............................................%206%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":18.421416375000007,"w":32.72800000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20divide%20line%204%20by%20line%203.%20Compute%20to%20one%20decimal%20place%2C%20not%20to%20exceed%20100%25.%20For%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":19.096416375000008,"w":34.64500000000006,"clr":0,"A":"left","R":[{"T":"example%2C%200.3163%20becomes%2031.6%25.%20If%20claiming%20border%2C%20see%20instructions%20%20.....................................%208","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":21.290172000000013,"w":34.65400000000011,"clr":0,"A":"left","R":[{"T":"line%205%20by%20line%208%20.............................................................................................................................%209","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":22.92142200000001,"w":32.91100000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20enter%20the%20lesser%20of%20line%207%20or%20line%209.%20Proceed%20to%20line%2011%20to%20compute%20another%20credit%2C%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":23.596422000000015,"w":35.10900000000012,"clr":0,"A":"left","R":[{"T":"otherwise%20go%20to%20line%2021.%20...............................................................................................................%2010","S":27,"TS":[1,12,0,0]}]},{"x":5.536704687500001,"y":25.711984500000014,"w":1.824,"clr":0,"A":"left","R":[{"T":"%2011.%20%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581109375,"y":26.387023874999997,"w":3.419,"clr":0,"A":"left","R":[{"T":"1.%20Single%20","S":27,"TS":[1,12,0,0]}]},{"x":14.932578125000001,"y":26.387023874999997,"w":8.658000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Married%20Filing%20Jointly%20","S":27,"TS":[1,12,0,0]}]},{"x":29.405140625000005,"y":26.387023874999997,"w":10.254000000000001,"clr":0,"A":"left","R":[{"T":"3.%20Married%20Filing%20Separately%20","S":27,"TS":[1,12,0,0]}]},{"x":47.74025000000001,"y":26.387023874999997,"w":2.963,"clr":0,"A":"left","R":[{"T":"4.%20Other","S":27,"TS":[1,12,0,0]}]},{"x":5.487514062500002,"y":27.624523875000005,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2012.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578479687500002,"y":27.624523875000005,"w":35.011000000000074,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20below%20to%20identify%20the%20person%20claiming%20the%20credit%20.............................................%2012","S":27,"TS":[1,12,0,0]}]},{"x":11.674859375000002,"y":28.299523875000006,"w":2.599,"clr":0,"A":"left","R":[{"T":"1.%20You%20","S":27,"TS":[1,12,0,0]}]},{"x":23.319734375000007,"y":28.299523875000006,"w":3.9210000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":39.15664062500001,"y":28.299523875000006,"w":7.2040000000000015,"clr":0,"A":"left","R":[{"T":"3.%20You%20and%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":5.487514062500002,"y":29.537023875000006,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2013.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578479687500002,"y":29.537023875000006,"w":35.14800000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20other%20state%E2%80%99s%20tax%20is%20based%20.............................................%2013","S":27,"TS":[1,12,0,0]}]},{"x":5.487359375000001,"y":31.157023875000004,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2014.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.930703125,"y":31.157023875000004,"w":35.15000000000013,"clr":0,"A":"left","R":[{"T":"Virginia%20Taxable%20Income.%20%20See%20instructions%20.................................................................................%2014","S":27,"TS":[1,12,0,0]}]},{"x":5.487359375000001,"y":32.777023875000005,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2015.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.930703125,"y":32.777023875000005,"w":35.05700000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20tax%20liability%20owed%20to%20the%20other%20state.%20See%20instructions%20.................................................%2015","S":27,"TS":[1,12,0,0]}]},{"x":5.487514062500002,"y":34.397023875,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2016.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578479687500002,"y":34.397023875,"w":35.195000000000086,"clr":0,"A":"left","R":[{"T":"Identify%20the%20state%20and%20ATTACH%20a%20copy%20of%20the%20other%20state%E2%80%99s%20return%20...............................................%2016","S":27,"TS":[1,12,0,0]}]},{"x":5.487359375000001,"y":36.017023875,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2017.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.930703125,"y":36.017023875,"w":35.196000000000126,"clr":0,"A":"left","R":[{"T":"Virginia%20Income%20Tax.%20%20See%20instructions%20........................................................................................%2017","S":27,"TS":[1,12,0,0]}]},{"x":8.581110921875002,"y":37.929523875,"w":33.64000000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20divide%20line%2014%20by%20line%2013.%20Compute%20to%20one%20decimal%20place%2C%20not%20to%20exceed%20100%25.%20For%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581110921875002,"y":38.604523875000005,"w":35.10100000000006,"clr":0,"A":"left","R":[{"T":"example%2C%200.3163%20becomes%2031.6%25.%20If%20claiming%20border%2C%20see%20instructions%20%20.....................................%2018","S":27,"TS":[1,12,0,0]}]},{"x":8.581107828125,"y":40.517023875,"w":35.11000000000012,"clr":0,"A":"left","R":[{"T":"line%2015%20by%20line%2018%20.........................................................................................................................%2019","S":27,"TS":[1,12,0,0]}]},{"x":8.579564046875003,"y":42.429523875,"w":35.01400000000012,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20enter%20the%20lesser%20of%20line%2017%20or%20line%2019.%20%20........................................................................%2020","S":27,"TS":[1,12,0,0]}]},{"oc":"#c1c1c1","x":47.219882796875005,"y":0.5564051249999977,"w":0.547,"clr":-1,"A":"left","R":[{"T":"Y","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":47.950645109375,"y":0.5564478750000035,"w":9.979999999999999,"clr":-1,"A":"left","R":[{"T":"our%20Social%20Security%20Number","S":27,"TS":[1,12,0,0]}]},{"x":34.28545970187501,"y":5.302218749999999,"w":14.171999999999997,"clr":0,"A":"left","R":[{"T":"Check%20this%20box%20if%20claiming%20border%20state","S":-1,"TS":[1,14.6941,1,0]}]},{"oc":"#231e21","x":7.054694375,"y":5.101725000000006,"w":8.838000000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20Computation%20-%201","S":-1,"TS":[1,16,1,0]}]},{"x":6.500564046875001,"y":2.9408949375,"w":13.307,"clr":0,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":27,"TS":[1,12,0,0]}]},{"x":67.474973421875,"y":3.8379699375000103,"w":0.666,"clr":0,"A":"left","R":[{"T":"Y","S":3,"TS":[0,12,0,0]}]},{"x":68.36319523437501,"y":3.8380858125000072,"w":20.408999999999995,"clr":0,"A":"left","R":[{"T":"ou%20must%20attach%20a%20copy%20of%20the%20return%20from%20each%20","S":3,"TS":[0,12,0,0]}]},{"x":70.069398359375,"y":4.513080187500009,"w":17.006000000000004,"clr":0,"A":"left","R":[{"T":"state%20for%20which%20you%20are%20claiming%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#231e21","x":73.12609125000002,"y":5.870222499999993,"w":3.7219999999999995,"clr":-1,"A":"left","R":[{"T":"WHOLE","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":80.06318968750001,"y":5.870222499999993,"w":4.832999999999999,"clr":-1,"A":"left","R":[{"T":"DOLLARS","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":88.87213406250001,"y":5.870222499999993,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"ONL","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":92.27273559375,"y":5.870405024999997,"w":0.667,"clr":-1,"A":"left","R":[{"T":"Y","S":-1,"TS":[0,13.8,1,0]}]},{"oc":"#231e21","x":7.0549625,"y":24.751725000000004,"w":8.838000000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20Computation%20-%202","S":-1,"TS":[1,16,1,0]}]},{"oc":"#c1c1c1","x":75.933490625,"y":38.75354375,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,15,1,0]}]},{"oc":"#c1c1c1","x":76.182296875,"y":19.233631250000002,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,15,1,0]}]},{"oc":"#c9c9c9","x":92.47896875,"y":10.284,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.57350000000001,"y":29.6746875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.59928125,"y":23.517187499999995,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.57350000000001,"y":31.3596875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.57350000000001,"y":36.2434375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.57350000000001,"y":40.722874999999995,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.599625,"y":42.317499999999995,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.66492718750001,"y":13.69375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.753625,"y":17.094687500000003,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.753625,"y":21.2639375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.57762500000001,"y":33.0246875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.47896875,"y":11.983687500000002,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"x":8.581248903125001,"y":6.485268750000003,"w":35.60000000000003,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20listed%20below%20to%20identify%20the%20filing%20status%20claimed%20on%20the%20other%20state%E2%80%99s%20tax%20return%20..%201","S":-1,"TS":[1,11.73,0,0]}]},{"x":5.487823437500001,"y":16.7902125,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%207.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.579871875000002,"y":16.7902125,"w":34.74000000000012,"clr":0,"A":"left","R":[{"T":"Virginia%20Income%20Tax.%20%20See%20instructions%20........................................................................................%207","S":27,"TS":[1,12,0,0]}]},{"x":5.4873593750000005,"y":17.746462500000003,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%208.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578015625,"y":17.746462500000003,"w":30.721,"clr":0,"A":"left","R":[{"T":"Income%20percentage.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20divide%20line%203%20by%20line%204.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.32803125,"y":20.615212500000002,"w":1.368,"clr":0,"A":"left","R":[{"T":"%20%209.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.100031249999999,"y":20.615212500000002,"w":30.62600000000001,"clr":0,"A":"left","R":[{"T":"If%20filing%20Form%20760%20or%20Form%20760PY%2C%20multiply%20line%207%20by%20line%208.%20If%20filing%20Form%20763%2C%20multiply%20","S":27,"TS":[1,12,0,0]}]},{"x":5.4873593750000005,"y":22.246462500000003,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2010.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.930703125,"y":22.246462500000003,"w":30.401000000000007,"clr":0,"A":"left","R":[{"T":"Credit.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20%20enter%20the%20lesser%20of%20line%205%20or%20line%209.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":8.581248903125001,"y":25.712137499999997,"w":36.05600000000003,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20listed%20below%20to%20identify%20the%20filing%20status%20claimed%20on%20the%20other%20state%E2%80%99s%20tax%20return%20..%2011","S":-1,"TS":[1,11.73,0,0]}]},{"x":5.4873593750000005,"y":37.254525,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2018.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.930703125,"y":37.254525,"w":31.633,"clr":0,"A":"left","R":[{"T":"Income%20percentage.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20divide%20line%2013%20by%20line%2014.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.328032796875,"y":39.842025,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2019.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.452720296874999,"y":39.842025,"w":31.538000000000007,"clr":0,"A":"left","R":[{"T":"If%20filing%20Form%20760%20or%20Form%20760PY%2C%20multiply%20line%2017%20by%20line%2018.%20If%20filing%20Form%20763%2C%20multiply%20","S":27,"TS":[1,12,0,0]}]},{"x":5.487357828125001,"y":41.754525,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2020.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.930701578125001,"y":41.754525,"w":31.131000000000004,"clr":0,"A":"left","R":[{"T":"Credit.%20%20If%20fiing%20Form%20760%20or%20Form%20760PY%2C%20%20enter%20the%20lesser%20of%20line%2015%20or%20line%2019.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.708579515625001,"y":44.649504375,"w":1.824,"clr":0,"A":"left","R":[{"T":"%2021.%20%20","S":27,"TS":[1,12,0,0]}]},{"x":8.752984203125001,"y":45.324498750000004,"w":3.419,"clr":0,"A":"left","R":[{"T":"1.%20Single%20","S":27,"TS":[1,12,0,0]}]},{"x":15.104452953125001,"y":45.324498750000004,"w":8.658000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Married%20Filing%20Jointly%20","S":27,"TS":[1,12,0,0]}]},{"x":29.577015453125007,"y":45.324498750000004,"w":10.254000000000001,"clr":0,"A":"left","R":[{"T":"3.%20Married%20Filing%20Separately%20","S":27,"TS":[1,12,0,0]}]},{"x":47.91212482812501,"y":45.324498750000004,"w":2.963,"clr":0,"A":"left","R":[{"T":"4.%20Other","S":27,"TS":[1,12,0,0]}]},{"x":5.659388890625002,"y":46.561998749999994,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2022.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.750354515625002,"y":46.561998749999994,"w":35.011000000000074,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20below%20to%20identify%20the%20person%20claiming%20the%20credit%20.............................................%2022","S":27,"TS":[1,12,0,0]}]},{"x":11.846734203125001,"y":47.236993125,"w":2.599,"clr":0,"A":"left","R":[{"T":"1.%20You%20","S":27,"TS":[1,12,0,0]}]},{"x":23.491609203125,"y":47.236993125,"w":3.9210000000000003,"clr":0,"A":"left","R":[{"T":"2.%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":39.32851545312501,"y":47.236993125,"w":7.2040000000000015,"clr":0,"A":"left","R":[{"T":"3.%20You%20and%20Spouse%20","S":27,"TS":[1,12,0,0]}]},{"x":5.487514062500002,"y":48.474493125,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2023.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578479687500002,"y":48.474493125,"w":35.14800000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20other%20state%E2%80%99s%20tax%20is%20based%20.............................................%2023","S":27,"TS":[1,12,0,0]}]},{"oc":"#231e21","x":7.226830625000001,"y":43.6892025,"w":8.382000000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20Computation%20-%203","S":-1,"TS":[1,16,1,0]}]},{"oc":"#c9c9c9","x":92.57350000000001,"y":48.61219,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"x":8.753127598437501,"y":44.649594375,"w":36.05600000000003,"clr":0,"A":"left","R":[{"T":"Enter%20the%20number%20listed%20below%20to%20identify%20the%20filing%20status%20claimed%20on%20the%20other%20state%E2%80%99s%20tax%20return%20..%2021","S":-1,"TS":[1,11.73,0,0]}]},{"x":5.487823437500001,"y":11.930156250000001,"w":1.1400000000000001,"clr":0,"A":"left","R":[{"T":"%20%204.","S":27,"TS":[1,12,0,0]}]},{"x":8.579407812500001,"y":11.930156250000001,"w":15.085999999999999,"clr":0,"A":"left","R":[{"T":"Virginia%20Taxable%20Income.%20See%20instructions","S":27,"TS":[1,12,0,0]}]},{"x":32.049581912812506,"y":11.9031,"w":18.240000000000006,"clr":0,"A":"left","R":[{"T":"%20...............................................................................","S":-1,"TS":[1,12.3589,0,0]}]},{"x":61.527546875000006,"y":11.930156250000001,"w":0.456,"clr":0,"A":"left","R":[{"T":"4","S":27,"TS":[1,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":432,"AM":1024,"x":44.573546875,"y":1.8453958333333276,"w":21.468734374999993,"h":0.9234791666666714,"TU":"SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":433,"AM":1024,"x":6.791296875,"y":3.816833333333335,"w":59.02875,"h":1.1466666666666658,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":435,"AM":0,"x":68.52175000000001,"y":6.418833333333339,"w":1.9593749999999897,"h":0.8722916666666644,"MV":"9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":436,"AM":0,"x":68.5485625,"y":8.449770833333337,"w":1.8187812500000056,"h":0.903041666666662,"MV":"9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":437,"AM":0,"x":68.54993750000001,"y":10.118270833333332,"w":21.64679687499999,"h":1.046229166666663},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":438,"AM":0,"x":68.54993750000001,"y":11.82039583333333,"w":21.64679687499999,"h":0.9337291666666706},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":439,"AM":0,"x":68.54993750000001,"y":13.59789583333333,"w":21.64679687499999,"h":0.954104166666672},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":440,"AM":0,"x":68.316359375,"y":15.177624999999997,"w":6.444781249999992,"h":1.0345625000000023,"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":"L7","EN":0},"TI":441,"AM":0,"x":68.54993750000001,"y":16.945270833333336,"w":21.64679687499999,"h":0.9439166666666665},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":442,"AM":1024,"x":68.54993750000001,"y":18.937458333333336,"w":6.796796875,"h":0.9881041666666684,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":443,"AM":1024,"x":68.54993750000001,"y":21.074458333333336,"w":21.64679687499999,"h":0.9132291666666674},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":444,"AM":1024,"x":68.54993750000001,"y":23.345645833333332,"w":21.64679687499999,"h":0.9541666666666705,"TU":"10"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":445,"AM":0,"x":68.49906250000001,"y":25.62633333333333,"w":1.9595468749999856,"h":0.8723541666666677,"TU":"11","MV":"9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":446,"AM":0,"x":68.52587500000001,"y":27.594833333333337,"w":1.8187812499999925,"h":0.9029791666666634,"TU":"12","MV":"9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":447,"AM":0,"x":68.52725000000001,"y":29.500833333333333,"w":21.646968749999985,"h":0.9336666666666673},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":448,"AM":0,"x":68.52725000000001,"y":31.090395833333332,"w":21.646968749999985,"h":0.9337291666666706},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":449,"AM":0,"x":68.52725000000001,"y":32.805395833333336,"w":21.646968749999985,"h":0.954166666666661},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":450,"AM":0,"x":68.09171875,"y":34.2075,"w":6.530546874999996,"h":1.1706874999999997,"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":"L17","EN":0},"TI":451,"AM":0,"x":68.52725000000001,"y":36.027833333333334,"w":21.646968749999985,"h":0.9439166666666665},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":452,"AM":1024,"x":68.52725000000001,"y":38.574395833333334,"w":6.796968749999996,"h":0.9337291666666658,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":453,"AM":1024,"x":68.52725000000001,"y":40.406958333333336,"w":21.646968749999985,"h":0.9132916666666612},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":454,"AM":1024,"x":68.52725000000001,"y":42.24070833333334,"w":21.646968749999985,"h":0.954166666666661},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":455,"AM":0,"x":68.52175000000001,"y":44.54530833333333,"w":1.9595468749999987,"h":0.8723541666666677,"MV":"9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":456,"AM":0,"x":68.5485625,"y":46.51380833333334,"w":1.8187812500000056,"h":0.9029791666666634,"MV":"9"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":457,"AM":0,"x":68.54993750000001,"y":48.41980833333333,"w":21.64696875,"h":0.9336691666666658}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BORDERST","EN":0},"TI":434,"AM":0,"x":61.193515625,"y":5.462312500000006,"w":3.150124999999996,"h":0.8333333333333334}]}]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":67.84868681249999,"y":7.841312500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.8400930625,"y":9.078812499999998,"w":6,"l":2.4492194374999983},{"oc":"#d2d2d2","x":70.3236868125,"y":7.841312500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.2893118125,"y":9.088187499999998,"w":6,"l":5.646094437500009},{"oc":"#d2d2d2","x":73.4689993125,"y":7.853812499999999,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.86570243749999,"y":3.700687500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.8399211875,"y":4.947562499999999,"w":6,"l":2.466406937500009},{"oc":"#d2d2d2","x":70.3407024375,"y":3.700687500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.3063274375,"y":4.947562499999999,"w":6,"l":3.1796881874999987},{"oc":"#d2d2d2","x":67.8485149375,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.8399211875,"y":1.6131874999999998,"w":6,"l":2.4492194374999983},{"oc":"#d2d2d2","x":70.32351493750001,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.2891399375,"y":1.6131874999999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.7985149375,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.76413993749999,"y":1.6131874999999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2735149375,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2391399375,"y":1.6131874999999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.74851493749999,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.71413993750001,"y":1.6131874999999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.2235149375,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.1891399375,"y":1.6131874999999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.69851493750001,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.6641399375,"y":1.6131874999999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1735149375,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1391399375,"y":1.6131874999999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.6485149375,"y":0.366312499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.5883586875,"y":1.610062499999998,"w":6,"l":3.205469437500001},{"oc":"#d2d2d2","x":67.8485149375,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.8399211875,"y":6.5506874999999996,"w":6,"l":2.4492194374999983},{"oc":"#d2d2d2","x":70.32351493750001,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.2891399375,"y":6.5506874999999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.7985149375,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.76413993749999,"y":6.5506874999999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2735149375,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2391399375,"y":6.5506874999999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.74851493749999,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.71413993750001,"y":6.5506874999999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.2235149375,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.1891399375,"y":6.5506874999999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.69851493750001,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.6641399375,"y":6.5506874999999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1735149375,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1391399375,"y":6.5506874999999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.6485149375,"y":5.303812500000002,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.5883586875,"y":6.547562499999998,"w":6,"l":3.205469437500001},{"oc":"#d2d2d2","x":67.8485149375,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.8399211875,"y":10.9256875,"w":6,"l":2.4492194374999983},{"oc":"#d2d2d2","x":70.32351493750001,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.2891399375,"y":10.9256875,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.7985149375,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.76413993749999,"y":10.9256875,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2735149375,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2391399375,"y":10.9256875,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.74851493749999,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.71413993750001,"y":10.9256875,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.2235149375,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.1891399375,"y":10.9256875,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.69851493750001,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.6641399375,"y":10.9256875,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1735149375,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1391399375,"y":10.9256875,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.6485149375,"y":9.678812500000001,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.5883586875,"y":10.922562499999998,"w":6,"l":3.205469437500001},{"oc":"#d2d2d2","x":67.8744680625,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.86587431250001,"y":12.778812499999995,"w":6,"l":2.4492194375000116},{"oc":"#d2d2d2","x":70.3494680625,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.31509306250001,"y":12.778812499999995,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.8244680625,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.79009306249999,"y":12.778812499999995,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.29946806250001,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2650930625,"y":12.778812499999995,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.77446806249999,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.7400930625,"y":12.778812499999995,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.2494680625,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.2150930625,"y":12.778812499999995,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.72446806250001,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.69009306250001,"y":12.778812499999995,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1994680625,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.16509306249999,"y":12.778812499999995,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.67446806250001,"y":11.531937499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.61431181249999,"y":12.775687500000004,"w":6,"l":3.205469437500001},{"oc":"#d2d2d2","x":67.8485149375,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.8399211875,"y":3.3110625000000007,"w":6,"l":2.4492194374999983},{"oc":"#d2d2d2","x":70.32351493750001,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.2891399375,"y":3.3110625000000007,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.7985149375,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.76413993749999,"y":3.3110625000000007,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2735149375,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2391399375,"y":3.3110625000000007,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.74851493749999,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.71413993750001,"y":3.3110625000000007,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.2235149375,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.1891399375,"y":3.3110625000000007,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.69851493750001,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.6641399375,"y":3.3110625000000007,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1735149375,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1391399375,"y":3.3110625000000007,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.6485149375,"y":2.064187499999998,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.5883586875,"y":3.307937499999999,"w":6,"l":3.205469437500001},{"oc":"#d2d2d2","x":67.8316711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":67.8230774375,"y":14.717937499999996,"w":6,"l":2.4492194374999983},{"oc":"#d2d2d2","x":70.3066711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":70.2722961875,"y":14.717937499999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.7816711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":72.7472961875,"y":14.717937499999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2566711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":75.2222961875,"y":14.717937499999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.7316711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":77.6972961875,"y":14.717937499999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.2066711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":80.1722961875,"y":14.717937499999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.6816711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":82.6472961875,"y":14.717937499999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.1566711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":85.12229618750001,"y":14.717937499999996,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.6316711875,"y":13.471062499999997,"w":6,"l":2.475000687500001},{"oc":"#d2d2d2","x":87.57151493750001,"y":14.714812500000003,"w":6,"l":3.205469437500001}],"VLines":[{"oc":"#d2d2d2","x":68.1838430625,"y":7.719437500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.65884306250001,"y":7.719437500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.13384306249999,"y":7.719437500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":75.60024931250001,"y":7.897562499999997,"w":6,"l":1.2687500000000018},{"oc":"#d2d2d2","x":68.2008586875,"y":3.5788125000000073,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.6758586875,"y":3.5788125000000073,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.15085868749999,"y":3.5788125000000073,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":68.1836711875,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.65867118749999,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.1336711875,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":75.60867118750001,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":78.0836711875,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":80.5586711875,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":83.0336711875,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":85.5086711875,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":87.983629078125,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":90.4586711875,"y":0.24443750000000364,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":68.1836711875,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.65867118749999,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.1336711875,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":75.60867118750001,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":78.0836711875,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":80.5586711875,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":83.0336711875,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":85.5086711875,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":87.983629078125,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":90.4586711875,"y":5.181937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":68.1836711875,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.65867118749999,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.1336711875,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":75.60867118750001,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":78.0836711875,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":80.5586711875,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":83.0336711875,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":85.5086711875,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":87.983629078125,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":90.4586711875,"y":9.556937500000004,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":68.20962431250001,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.68462431249999,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.1596243125,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":75.6346243125,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":78.1096243125,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":80.58462431250001,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":83.05962431249999,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":85.5346243125,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":88.00962431250001,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":90.4846243125,"y":11.41006250000001,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":68.1836711875,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.65867118749999,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.1336711875,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":75.60867118750001,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":78.0836711875,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":80.5586711875,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":83.0336711875,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":85.5086711875,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":87.983629078125,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":90.4586711875,"y":1.9423125000000045,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":68.1668274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":70.6418274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":73.1168274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":75.5918274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":78.0668274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":80.5418274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":83.01682743750001,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":85.4918274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":87.9668274375,"y":13.349187500000008,"w":6,"l":1.3499999999999943},{"oc":"#d2d2d2","x":90.44182743749998,"y":13.349187500000008,"w":6,"l":1.3499999999999943}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.13132812500001,"y":1.244437499999999,"w":1.8562499999999924,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68914062500001,"y":1.225687499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.13132812500001,"y":6.181937499999999,"w":1.8562499999999924,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68914062500001,"y":6.163187499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.13132812500001,"y":10.556937499999998,"w":1.8562499999999924,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68914062500001,"y":10.538187499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.15728125000001,"y":12.410062499999995,"w":1.8562499999999924,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.71509375000001,"y":12.391312500000003,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.13132812500001,"y":2.9423125,"w":1.8562499999999924,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.68914062500001,"y":2.923562499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.11448437500002,"y":14.349187499999994,"w":1.8562499999999924,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":74.67229687500001,"y":14.330437500000002,"w":1.8562499999999924,"h":0.43125000000000097,"clr":-1}],"Texts":[{"oc":"#231e21","x":29.3770390625,"y":16.050025,"w":23.926000000000005,"clr":-1,"A":"left","R":[{"T":"If%20claiming%20more%20than%203%20credits%2C%20use%20additional%20Schedules%20OSC.","S":-1,"TS":[1,15,1,0]}]},{"x":5.48873609375,"y":0.6568125000000009,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2024.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932079843750001,"y":0.6568125000000009,"w":35.15000000000013,"clr":0,"A":"left","R":[{"T":"Virginia%20Taxable%20Income.%20%20See%20instructions%20.................................................................................%2024","S":27,"TS":[1,12,0,0]}]},{"x":5.48873609375,"y":2.276812499999996,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2025.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932079843750001,"y":2.276812499999996,"w":35.05700000000008,"clr":0,"A":"left","R":[{"T":"Qualifying%20tax%20liability%20owed%20to%20the%20other%20state.%20See%20instructions%20.................................................%2025","S":27,"TS":[1,12,0,0]}]},{"x":5.488890781250001,"y":3.8968181250000002,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2026.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.579856406250002,"y":3.8968181250000002,"w":35.195000000000086,"clr":0,"A":"left","R":[{"T":"Identify%20the%20state%20and%20ATTACH%20a%20copy%20of%20the%20other%20state%E2%80%99s%20return%20...............................................%2026","S":27,"TS":[1,12,0,0]}]},{"x":5.48873609375,"y":5.516823749999996,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2027.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932079843750001,"y":5.516823749999996,"w":35.196000000000126,"clr":0,"A":"left","R":[{"T":"Virginia%20Income%20Tax.%20%20See%20instructions%20........................................................................................%2027","S":27,"TS":[1,12,0,0]}]},{"x":8.582487640625002,"y":7.429335,"w":33.64000000000001,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20divide%20line%2024%20by%20line%2023.%20Compute%20to%20one%20decimal%20place%2C%20not%20to%20exceed%20100%25.%20For%20","S":27,"TS":[1,12,0,0]}]},{"x":8.582487640625002,"y":8.104340625,"w":35.10100000000006,"clr":0,"A":"left","R":[{"T":"example%2C%200.3163%20becomes%2031.6%25.%20If%20claiming%20border%2C%20see%20instructions%20%20.....................................%2028","S":27,"TS":[1,12,0,0]}]},{"x":8.582484546875001,"y":10.016846249999995,"w":35.11000000000012,"clr":0,"A":"left","R":[{"T":"line%2025%20by%20line%2028%20.........................................................................................................................%2029","S":27,"TS":[1,12,0,0]}]},{"x":8.580940765625,"y":11.929340625,"w":35.01400000000012,"clr":0,"A":"left","R":[{"T":"Form%20763%2C%20enter%20the%20lesser%20of%20line%2027%20or%20line%2029.%20%20........................................................................%2030","S":27,"TS":[1,12,0,0]}]},{"x":5.487345453125001,"y":13.166846249999997,"w":1.596,"clr":0,"A":"left","R":[{"T":"%2031.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.578311078125003,"y":13.166846249999997,"w":35.00900000000003,"clr":0,"A":"left","R":[{"T":"Total%20Credit.%20Enter%20the%20total%20of%20lines%2010%2C%2020%20and%2030%20of%20Sch.%20OSC.%20Also%20enter%20on%20Form%20760%2C%20line%2022%3B%20","S":27,"TS":[1,12,0,0]}]},{"x":8.580940765625,"y":13.841846249999998,"w":35.10500000000012,"clr":0,"A":"left","R":[{"T":"Form%20760PY%2C%20line%2024%3B%20or%20Form%20763%2C%20line%2024.%20................................................................................%2031","S":27,"TS":[1,12,0,0]}]},{"x":8.58304125,"y":15.041800000000004,"w":31.724000000000004,"clr":0,"A":"left","R":[{"T":"for%20Low%20Income%20Individuals%20or%20the%20Earned%20Income%20Tax%20Credit.%20Adjust%20line%2031%20to%20ensure%20it%20","S":-1,"TS":[1,11,0,0]}]},{"x":8.58304125,"y":15.641800000000003,"w":11.077000000000002,"clr":0,"A":"left","R":[{"T":"does%20not%20exceed%20the%20limitation.","S":-1,"TS":[1,11,0,0]}]},{"oc":"#c1c1c1","x":75.76314531250001,"y":8.253293750000003,"w":1,"clr":-1,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,15,1,0]}]},{"oc":"#c9c9c9","x":92.574875,"y":0.8595000000000066,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.574875,"y":5.743249999999999,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.574875,"y":10.222687499999997,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.60100000000001,"y":11.8173125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.5790034375,"y":2.5244999999999984,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":92.13831250000001,"y":13.816687499999995,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"x":5.48873609375,"y":6.7543124999999975,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2028.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932079843750001,"y":6.7543124999999975,"w":31.633,"clr":0,"A":"left","R":[{"T":"Income%20percentage.%20%20If%20filing%20Form%20760%20or%20Form%20760PY%2C%20divide%20line%2023%20by%20line%2024.%20If%20filing%20","S":27,"TS":[1,12,0,0]}]},{"x":5.3294095156250005,"y":9.341806874999998,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2029.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.454097015624999,"y":9.341806874999998,"w":31.310000000000006,"clr":0,"A":"left","R":[{"T":"If%20filing%20Form%20760%20or%20Form%20760PY%2C%20multiply%20line%2027%20by%20line%2028.%20If%20filing%20Form%20763%2C%20multiply","S":27,"TS":[1,12,0,0]}]},{"x":5.488734546875001,"y":11.254312499999997,"w":1.824,"clr":0,"A":"left","R":[{"T":"%20%2030.%20","S":27,"TS":[1,12,0,0]}]},{"x":8.932078296875,"y":11.254312499999997,"w":30.903000000000002,"clr":0,"A":"left","R":[{"T":"Credit.%20%20If%20fiing%20Form%20760%20or%20Form%20760PY%2C%20%20enter%20the%20lesser%20of%20line%2025%20or%20line%2029.%20If%20filing","S":27,"TS":[1,12,0,0]}]},{"x":8.582628750000001,"y":14.44195,"w":30.128,"clr":0,"A":"left","R":[{"T":"Note%3A%20Schedule%20OSC%2C%20line%2031%2C%20cannot%20exceed%20your%20tax%20liability%20minus%20the%20Tax%20Credit%20","S":-1,"TS":[1,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":458,"AM":0,"x":68.47431250000001,"y":0.5380833333333328,"w":21.646968749999985,"h":0.9337291666666658},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":459,"AM":0,"x":68.47431250000001,"y":2.253083333333336,"w":21.646968749999985,"h":0.9541666666666705},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":460,"AM":0,"x":68.146546875,"y":3.7904999999999993,"w":6.2840781250000015,"h":1.0345625000000023,"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":"L27","EN":0},"TI":461,"AM":0,"x":68.47431250000001,"y":5.47552083333333,"w":21.646968749999985,"h":0.9439166666666665},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":462,"AM":1024,"x":68.47431250000001,"y":8.022083333333333,"w":6.796968749999996,"h":0.9337291666666658,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":463,"AM":1024,"x":68.47431250000001,"y":9.854645833333336,"w":21.646968749999985,"h":0.913291666666666},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":464,"AM":1024,"x":68.47431250000001,"y":11.688395833333336,"w":21.646968749999985,"h":0.954166666666661},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":465,"AM":1024,"x":68.39542187500001,"y":13.630895833333332,"w":21.64696875,"h":0.9541666666666705}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VASCR.json b/test/data/va/form_org/VASCR.json new file mode 100755 index 00000000..76ba4a99 --- /dev/null +++ b/test/data/va/form_org/VASCR.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"green Sch CR WEB 11 13 13.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.47671875,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.468125,"y":12.110062499999998,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.95171875000001,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.91734375,"y":12.110062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.42671874999999,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.39234375000001,"y":12.110062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.90171875,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.86734375,"y":12.110062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.37671875000001,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.34234375000001,"y":12.110062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.85171875,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.81734375,"y":12.110062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.32671875000001,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.29234375,"y":12.110062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.80171875,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.76734375000001,"y":12.110062499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.27671875,"y":10.8631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.21656250000001,"y":12.1069375,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.476546875,"y":13.694125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.46795312500001,"y":14.940937499999999,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.95154687500002,"y":13.694125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.91717187500001,"y":14.940937499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.426546875,"y":13.694125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.392171875,"y":14.940937499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.90154687500001,"y":13.694125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.867171875,"y":14.940937499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.376546875,"y":13.694125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.34217187500002,"y":14.940937499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.851546875,"y":13.694125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.817171875,"y":14.940937499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.32654687500002,"y":13.694125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.29217187500001,"y":14.940937499999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.801546875,"y":13.694062500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.767171875,"y":14.940874999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.276375,"y":13.694062500000001,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.216390625,"y":14.937812499999998,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.476546875,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.46795312500001,"y":20.173937500000005,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.95154687500002,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.91717187500001,"y":20.173937500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.426546875,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.392171875,"y":20.173937500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.90154687500001,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.867171875,"y":20.173937500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.376546875,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.34217187500002,"y":20.173937500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.851546875,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.817171875,"y":20.173937500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.32654687500002,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.29217187500001,"y":20.173937500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.801546875,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.767171875,"y":20.173937500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.276375,"y":18.9270625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.216390625,"y":20.1708125,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.476546875,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.46795312500001,"y":29.4240625,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.95154687500002,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.91717187500001,"y":29.4240625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.426546875,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.392171875,"y":29.4240625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.90154687500001,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.867171875,"y":29.4240625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.376546875,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.34217187500002,"y":29.4240625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.851546875,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.817171875,"y":29.4240625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.32654687500002,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.29217187500001,"y":29.4240625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.801546875,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.767171875,"y":29.4240625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.276375,"y":28.1771875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.216390625,"y":29.420937499999997,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.476546875,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.46795312500001,"y":36.116437499999996,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.95154687500002,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.91717187500001,"y":36.116437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.426546875,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.392171875,"y":36.116437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.90154687500001,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.867171875,"y":36.116437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.376546875,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.34217187500002,"y":36.116437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.851546875,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.817171875,"y":36.116437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.32654687500002,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.29217187500001,"y":36.116437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.801546875,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.767171875,"y":36.116437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.276375,"y":34.8695625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.216390625,"y":36.1133125,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.476546875,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.46795312500001,"y":43.1386875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.95154687500002,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.91717187500001,"y":43.1386875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.426546875,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.392171875,"y":43.1386875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.90154687500001,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.867171875,"y":43.1386875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.376546875,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.34217187500002,"y":43.1386875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.851546875,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.817171875,"y":43.1386875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.32654687500002,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.29217187500001,"y":43.1386875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.801546875,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.767171875,"y":43.1386875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.276375,"y":41.8918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.216390625,"y":43.1355625,"w":6,"l":3.2054687500000028},{"oc":"#161616","x":6.273437500000001,"y":6.959375000000004,"w":1.5,"l":54.13220312500001},{"oc":"#161616","x":6.273437500000001,"y":5.356250000000007,"w":1.5,"l":54.13220312500001},{"oc":"#161616","x":96.619703125,"y":9.745249999999999,"w":3,"l":2.4320312500000028},{"oc":"#c9c9c9","x":70.683765625,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":70.64939062500001,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":73.158765625,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":73.124390625,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":75.63376562500001,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":75.599390625,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":78.108765625,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":78.074390625,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":80.583765625,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":80.549390625,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":83.058765625,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":83.02439062500001,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":85.533765625,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":85.499390625,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":88.00876562500002,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":87.974390625,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":90.483765625,"y":5.850000000000004,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":90.449390625,"y":7.096874999999997,"w":6,"l":2.4750000000000028},{"oc":"#161616","x":65.624109375,"y":9.745062500000003,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":65.624109375,"y":46.9284375,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":96.619703125,"y":46.937937500000004,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#d2d2d2","x":68.811875,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.28687500000001,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.761875,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.23687500000001,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.71187499999999,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.186875,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.66187500000001,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.136875,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.611875,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.086875,"y":10.741312500000001,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.81170312500001,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.286703125,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.761703125,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.23670312500002,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.711703125,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.18670312500001,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.661703125,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.136703125,"y":13.572250000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.611703125,"y":13.572187499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.086703125,"y":13.572187499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.81170312500001,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.286703125,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.761703125,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.23670312500002,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.711703125,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.18670312500001,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.661703125,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.136703125,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.611703125,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.086703125,"y":18.805187500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.81170312500001,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.286703125,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.761703125,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.23670312500002,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.711703125,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.18670312500001,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.661703125,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.136703125,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.611703125,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.086703125,"y":28.0553125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.81170312500001,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.286703125,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.761703125,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.23670312500002,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.711703125,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.18670312500001,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.661703125,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.136703125,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.611703125,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.086703125,"y":34.7476875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.81170312500001,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.286703125,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.761703125,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.23670312500002,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.711703125,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.18670312500001,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.661703125,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.136703125,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.611703125,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.086703125,"y":41.769937500000005,"w":6,"l":1.349999999999999},{"oc":"#161616","x":60.40564062500001,"y":5.356250000000007,"w":1.5,"l":1.6031249999999961},{"oc":"#161616","x":6.273437500000001,"y":5.356250000000007,"w":1.5,"l":1.6031249999999961},{"oc":"#161616","x":98.871265625,"y":9.682749999999995,"w":3,"l":0.8843749999999998},{"oc":"#c9c9c9","x":71.018921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":73.493921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":75.968921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":78.443921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":80.91892187500001,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":83.393921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":85.868921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":88.343921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":90.818921875,"y":5.7281249999999995,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":93.216578125,"y":5.734375,"w":6,"l":1.484375},{"oc":"#161616","x":65.795984375,"y":9.698187499999996,"w":3,"l":0.8875000000000005},{"oc":"#161616","x":65.804578125,"y":46.10343749999999,"w":3,"l":0.8812500000000038},{"oc":"#161616","x":98.87985937500002,"y":46.1035625,"w":3,"l":0.8843749999999962}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":6.2390625,"y":7.552374999999998,"w":41.638953125,"h":1.0200000000000056,"clr":-1},{"oc":"#d2d2d2","x":82.75953125000001,"y":11.741312499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.31734374999999,"y":11.7225625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.759359375,"y":14.572249999999999,"w":1.8562500000000053,"h":0.43118750000000006,"clr":-1},{"oc":"#d2d2d2","x":75.317171875,"y":14.5535,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.759359375,"y":19.805187500000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.317171875,"y":19.7864375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.759359375,"y":29.0553125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.317171875,"y":29.0365625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.759359375,"y":35.7476875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.317171875,"y":35.728937499999994,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.759359375,"y":42.769937500000005,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":75.317171875,"y":42.75118750000001,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#c9c9c9","x":70.159546875,"y":8.293749999999998,"w":19.92031249999999,"h":0.8249999999999981,"clr":-1}],"Texts":[{"oc":"#161616","x":5.9890625,"y":8.8359,"w":23.38800000000001,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20MAXIMUM%20NONREFUNDABLE%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.922479218750002,"y":9.867143749999997,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.402713593750002,"y":9.867143749999997,"w":41.85399999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20tax%20computed%20on%20your%20return%20less%20the%20total%20of%20Spouse%20Tax%20Adjustment%2C%20Credit%20for%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33654171875,"y":10.392143749999997,"w":41.51699999999997,"clr":-1,"A":"left","R":[{"T":"Low-Income%20Individuals%20or%20Virginia%20Earned%20Income%20Credit%2C%20and%20Credit%20for%20Tax%20Paid%20to%20Another%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33654171875,"y":10.917130624999999,"w":40.574,"clr":-1,"A":"left","R":[{"T":"State.%20The%20maximum%20nonrefundable%20credits%20allowable%20in%20Section%202%2C%20Line%201A%20of%20Schedule%20CR%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33654171875,"y":11.417162499999998,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"may%20not%20exceed%20this%20amount.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":29.053805781250006,"y":11.417162499999998,"w":28.355999999999963,"clr":-1,"A":"left","R":[{"T":"......................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.25592187500001,"y":11.417125000000004,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.9890625,"y":13.260900000000001,"w":20.224000000000004,"clr":-1,"A":"left","R":[{"T":"PART%202%20-%20ENTERPRISE%20ZONE%20ACT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.6541823437500005,"y":14.235887500000004,"w":1.058,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33666203125,"y":14.235887500000004,"w":19.562,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%20from%20Form%20301%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":36.87171203125,"y":14.235887500000004,"w":8.781000000000002,"clr":-1,"A":"left","R":[{"T":"(attach%20Form%20301).%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":47.10416984375,"y":14.235887500000004,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.25592187500001,"y":14.235875000000002,"w":1.278,"clr":-1,"A":"left","R":[{"T":"2A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.9890625,"y":15.5484,"w":25.89000000000001,"clr":-1,"A":"left","R":[{"T":"PART%203%20-%20NEIGHBORHOOD%20ASSISTANCE%20ACT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.6739496874999995,"y":18.848362500000004,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33666203125,"y":18.848362500000004,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.580737031250003,"y":18.848362500000004,"w":16.561000000000003,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336421406250002,"y":19.373349375,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.159640156250006,"y":19.373349375,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.192156250000004,"y":19.373437500000005,"w":1.278,"clr":-1,"A":"left","R":[{"T":"3D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.922479218750002,"y":20.20465625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33654171875,"y":20.20465625,"w":30.400000000000013,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%203D%20(applicable%20only%20if%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.9890625,"y":22.323400000000003,"w":34.55800000000001,"clr":-1,"A":"left","R":[{"T":"PART%204%20-%20RECYCLABLE%20MATERIALS%20PROCESSING%20EQUIPMENT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.922479218750002,"y":24.073425,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336541718750002,"y":24.073425,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922480421875003,"y":26.698425,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336542921875003,"y":26.698425,"w":27.896000000000008,"clr":-1,"A":"left","R":[{"T":"Maximum%20Recyclable%20Materials%20Processing%20Equipment%20Credit.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.673949687500001,"y":28.098425000000002,"w":1.167,"clr":-1,"A":"left","R":[{"T":"%20F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33666203125,"y":28.098425000000002,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.24650890625,"y":28.098425000000002,"w":16.784000000000002,"clr":-1,"A":"left","R":[{"T":"%20Line%20E%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336541718749995,"y":28.660918750000004,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.15976046874999,"y":28.660918750000004,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.383453125,"y":28.6609375,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.922479218750002,"y":29.72343125,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33654171875,"y":29.72343125,"w":29.733000000000015,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%204F%20(applicable%20only%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.9890625,"y":31.8422,"w":27.28000000000001,"clr":-1,"A":"left","R":[{"T":"PART%205%20-%20CONSERVATION%20TILLAGE%20EQUIPMENT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.6739496874999995,"y":34.9172125,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33666203125,"y":34.9172125,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.580737031250003,"y":34.9172125,"w":16.283000000000005,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336421406250002,"y":35.442212500000004,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.159640156250006,"y":35.442212500000004,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.192156250000004,"y":35.442187499999996,"w":1.278,"clr":-1,"A":"left","R":[{"T":"5D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.9890625,"y":38.3297,"w":41.28200000000001,"clr":-1,"A":"left","R":[{"T":"PART%206%20-%20PRECISION%20FERTILIZER%20AND%20PESTICIDE%20APPLICATION%20EQUIPMENT%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.922479218750002,"y":39.0484375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.402713593750002,"y":39.0484375,"w":25.791,"clr":-1,"A":"left","R":[{"T":"Enter%2025%25%20of%20current%20qualifying%20equipment%20cost%20or%20%243%2C750%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922479218750002,"y":40.29220625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336541718750002,"y":40.29220625,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.588131984375,"y":41.77970625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336663234375001,"y":41.77970625,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.580738234375005,"y":41.77970625,"w":16.283000000000005,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336422609375001,"y":42.30470625,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.15964135937501,"y":42.30470625,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.192156250000004,"y":42.3046875,"w":1.278,"clr":-1,"A":"left","R":[{"T":"6D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.922599531250002,"y":43.07348125000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336662031250002,"y":43.07348125000001,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%206D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"x":8.1101546875,"y":7.541312500000004,"w":19.945000000000004,"clr":1,"A":"left","R":[{"T":"SECTION%201%20-%20NONREFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.2030609375,"y":11.148562500000002,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24075,"y":11.324175000000002,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.60875,"y":11.162550000000001,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.269755625,"y":13.4595,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.20290625,"y":13.979499999999996,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24033750000001,"y":14.155049999999997,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.60854375,"y":13.993424999999997,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.20290625,"y":19.212437499999997,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24033750000001,"y":19.388025000000003,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.60854375,"y":19.226399999999998,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.269755625,"y":22.522050000000004,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.20290625,"y":28.4625625,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24033750000001,"y":28.63815,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.60854375,"y":28.476525,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.269755625,"y":32.103212500000005,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.20290625,"y":35.154937499999996,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24033750000001,"y":35.330549999999995,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.60854375,"y":35.168925,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.2689375,"y":38.590987500000004,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.20290625,"y":42.1771875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.24033750000001,"y":42.35277,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.60854375,"y":42.191205,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":6.2383053125000005,"y":2.3189999999999977,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,22,1,0]}]},{"oc":"#161616","x":6.238295,"y":3.1314999999999977,"w":10.392,"clr":-1,"A":"left","R":[{"T":"Virginia%20Schedule%20CR%20","S":-1,"TS":[0,20,1,0]}]},{"oc":"#161616","x":6.238295,"y":3.7565499999999945,"w":38.450999999999986,"clr":-1,"A":"left","R":[{"T":"CREDIT%20COMPUTATION%20SCHEDULE%20-%20See%20Page%208%20and%20Schedule%20CR%20Instructions%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":6.238295,"y":4.3815499999999945,"w":25.170999999999996,"clr":-1,"A":"left","R":[{"T":"for%20required%20attachments.%20Attach%20this%20to%20your%20return.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.596107500000001,"y":5.040381249999996,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.937515468750001,"y":46.290466875,"w":9.562000000000001,"clr":-1,"A":"left","R":[{"T":"2601450%20%20%20Rev.%2007%2F13","S":2,"TS":[0,10,0,0]}]},{"oc":"#c9c9c9","x":74.62732656250002,"y":4.771625,"w":13.782,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":77.88451250000001,"y":5.921250000000005,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":82.7742875,"y":5.939999999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":70.28626249999999,"y":8.149124999999998,"w":9.169,"clr":1,"A":"left","R":[{"T":"Whole%20Dollars%20Only","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":51.65882812500001,"y":16.379637499999998,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.79578125000001,"y":16.379637499999998,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.591453125000015,"y":17.210891874999998,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.825859375000014,"y":17.210891874999998,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.52612343750001,"y":18.042137499999995,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82670156250002,"y":18.042137499999995,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922467187500015,"y":16.379637499999998,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500015,"y":16.379637499999998,"w":26.401000000000003,"clr":-1,"A":"left","R":[{"T":"Authorized%20amount%20of%20Neighborhood%20Assistance%20Act%20Credit.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.76335781250001,"y":16.379637499999998,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922467187500006,"y":17.21089625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500004,"y":17.21089625,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.060764062500006,"y":17.21089625,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922467187500006,"y":18.042141875,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500004,"y":18.042141875,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705060937500008,"y":18.042141875,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33652968750001,"y":20.729669375,"w":14.05900000000001,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":30.053951562500007,"y":20.729669375,"w":17.792000000000012,"clr":-1,"A":"left","R":[{"T":"................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.59061093750001,"y":20.729669375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82501718750001,"y":20.729669375,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922467187500006,"y":23.198438125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500004,"y":23.198438125,"w":22.677,"clr":-1,"A":"left","R":[{"T":"Enter%2010%25%20of%20qualifying%20recyclable%20equipment%20cost.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.41526406250001,"y":23.198438125,"w":9.174000000000008,"clr":-1,"A":"left","R":[{"T":".................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.65607296875001,"y":23.198438125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.824175000000004,"y":23.198438125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.0929390625,"y":24.073438125,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.59289687500001,"y":24.073438125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82730312500001,"y":24.073438125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922467187500006,"y":24.948438125,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500004,"y":24.948438125,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705060937500008,"y":24.948438125,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.526123437500004,"y":24.948438125,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82670156250001,"y":24.948438125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922467187500006,"y":25.823438125,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500004,"y":25.823438125,"w":12.562000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2040%25%20of%20tax%20per%20return.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.384014062500004,"y":25.823438125,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.526123437500004,"y":25.823438125,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82670156250001,"y":25.823438125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500004,"y":30.248444375000002,"w":31.850999999999935,"clr":-1,"A":"left","R":[{"T":"within%2010-year%20carryover%20period).%20..............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.4599515625,"y":30.248444375000002,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.8279046875,"y":30.248444375000002,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922467187500006,"y":32.61094875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336529687500004,"y":32.61094875,"w":29.513,"clr":-1,"A":"left","R":[{"T":"Enter%2025%25%20of%20qualifying%20property%20cost%20or%20%244%2C000%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":48.7721703125,"y":32.61094875,"w":2.224,"clr":-1,"A":"left","R":[{"T":"........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.65618125000001,"y":32.61094875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82429771875001,"y":32.61094875,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.42718162500001,"y":33.37968,"w":6.672000000000004,"clr":-1,"A":"left","R":[{"T":"........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.592791000000005,"y":33.37968,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82719725000001,"y":33.37968,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.922481625000012,"y":33.37968,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33654412500001,"y":33.37968,"w":25.284000000000002,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation)%20.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.92248162500001,"y":34.148450625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.33654412500001,"y":34.148450625,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705075375000014,"y":34.148450625,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.52613787500002,"y":34.148450625,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82672803125001,"y":34.148450625,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.9224936562500154,"y":36.210961250000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336556156250015,"y":36.210961250000004,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%205D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336556156250015,"y":36.73596125,"w":31.85099999999994,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.59063740625002,"y":36.73596125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.825043656250024,"y":36.73596125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336556156250015,"y":39.573455,"w":7.835000000000001,"clr":-1,"A":"left","R":[{"T":"whichever%20is%20less.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":22.763040531250017,"y":39.573455,"w":23.907999999999983,"clr":-1,"A":"left","R":[{"T":"%20...................................................................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.65729053125001,"y":39.573455,"w":1.223,"clr":-1,"A":"left","R":[{"T":"A%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.825530921875014,"y":39.573455,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.092983578125015,"y":40.292223750000005,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.592941390625015,"y":40.292223750000005,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.827347640625014,"y":40.292223750000005,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.9225117031250125,"y":41.01099250000001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336574203125013,"y":41.01099250000001,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.705105453125018,"y":41.01099250000001,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.52616795312501,"y":41.01099250000001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82674607812502,"y":41.01099250000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336574203125013,"y":43.598498750000005,"w":31.85099999999994,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.59065545312502,"y":43.598498750000005,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82506170312502,"y":43.598498750000005,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.336574203125013,"y":27.2234425,"w":15.894000000000002,"clr":-1,"A":"left","R":[{"T":"Line%20C%20or%20Line%20D%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.394074203125015,"y":27.2234425,"w":15.84600000000002,"clr":-1,"A":"left","R":[{"T":".........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.59065545312502,"y":27.2234425,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.82506170312502,"y":27.2234425,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APPROVED","EN":0},"TI":466,"AM":1024,"x":6.44496875,"y":0.8752500000000035,"w":35.963296875,"h":0.8333333333333334},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":467,"AM":1024,"x":6.3600109375,"y":6.021145833333331,"w":53.95866093750001,"h":0.8618541666666696,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":468,"AM":1024,"x":71.126171875,"y":6.013833333333338,"w":21.93743750000001,"h":0.9141666666666595,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":469,"AM":0,"x":69.00059375000001,"y":11.070020833333336,"w":21.600046875,"h":0.8984791666666609,"TU":"Line 1A. Enter the total tax computed on your return less the total of Spouse Tax Adjustment, Credit for Low-Income Individuals or Virginia Earned Income Credit, and Credit for Tax Paid to Another State. The maximum nonrefundable credits allowable in Section 2, Line 1A of Schedule CR may not exceed this amount."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"lookup:va_expl01"}},"id":{"Id":"Add","EN":0},"TI":470,"AM":0,"x":57.76185937500001,"y":14.018687499999999,"w":5.223281249999991,"h":0.8333333333333334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":471,"AM":1024,"x":69.09770312500001,"y":13.913208333333335,"w":21.600046875000015,"h":0.8984791666666609,"TU":"Credit allowable this year from Form 301"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":472,"AM":0,"x":53.161796875,"y":16.348,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Part 3, Line A. Authorized amount of Neighborhood Assistance Act Credit."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":473,"AM":0,"x":53.161796875,"y":17.180500000000006,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":474,"AM":1024,"x":53.161796875,"y":18.0055,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":475,"AM":0,"x":69.00059375000001,"y":19.149583333333336,"w":21.600046875,"h":0.8984791666666657,"TU":"Line 3D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":476,"AM":1024,"x":53.161796875,"y":20.697999999999997,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":477,"AM":0,"x":53.161796875,"y":23.165499999999998,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Part 4. Line A. Enter 10% of qualifying recyclable equipment cost"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":478,"AM":0,"x":53.161796875,"y":24.042999999999996,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s) attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":479,"AM":1024,"x":53.161796875,"y":24.913,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":480,"AM":1024,"x":53.161796875,"y":25.872312500000003,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Enter 40% of tax per return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":481,"AM":1024,"x":53.248593750000005,"y":27.193,"w":12.045000000000002,"h":0.8333333333333334,"TU":"E Maximum Recyclable Materials Processing Equipment Credit"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":482,"AM":0,"x":69.17246875000001,"y":28.387020833333334,"w":21.600046875,"h":0.8984791666666657,"TU":"Line 4F Credit allowable this year. Line E or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":483,"AM":1024,"x":53.161796875,"y":30.215500000000002,"w":12.045000000000002,"h":0.8333333333333334,"TU":"G Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":484,"AM":0,"x":53.161796875,"y":32.577999999999996,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Part 5. Line A. Enter 25% of qualifying property cost or $4,000, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":485,"AM":0,"x":53.161796875,"y":33.403,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s) (attach computation)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":486,"AM":1024,"x":53.161796875,"y":34.168,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":487,"AM":0,"x":69.17246875000001,"y":35.05520833333333,"w":21.600046875,"h":0.8985416666666642,"TU":"Line 5D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":488,"AM":1024,"x":53.161796875,"y":36.702999999999996,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":489,"AM":0,"x":53.22590625,"y":39.538000000000004,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Part 6. Line A. Enter 25% of current qualifying equipment cost or $3,750, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":490,"AM":0,"x":53.161796875,"y":40.363,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s) (attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":491,"AM":1024,"x":53.161796875,"y":41.083,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":492,"AM":0,"x":69.17246875000001,"y":42.077958333333335,"w":21.600046875,"h":0.8984791666666704,"TU":"Line 6D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":493,"AM":1024,"x":53.161796875,"y":43.565543749999996,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.42498437500001,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":10.514937500000002,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":10.514937500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":10.514937500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":10.514937500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":10.514937500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":10.514937500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":10.514937500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":10.514937500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":9.2680625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":10.5118125,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":18.0986875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":18.0986875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":18.0986875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":18.0986875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":18.0986875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":18.0986875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":18.0986875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":18.0986875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":16.851812500000005,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":18.0955625,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":24.4195,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":24.4195,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":24.4195,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":24.4195,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":24.4195,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":24.4195,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":24.4195,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":24.4195,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":23.1725625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":24.4163125,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":30.645124999999997,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":30.645124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":30.645124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":30.645124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":30.645124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":30.645124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":30.645124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":30.645124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":29.39825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":30.642,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":40.387062500000006,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":40.387062500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":40.387062500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":40.387062500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":40.387062500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":40.387062500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":40.387062500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":40.387062500000006,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":39.1401875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":40.3839375,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":45.535875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":45.535875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":45.535875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":45.535875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":45.535875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":45.535875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":45.535875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":45.535875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":44.288999999999994,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":45.53275,"w":6,"l":3.2054687500000028},{"clr":1,"x":75.80701562500002,"y":44.801500000000004,"w":1,"l":2.0625},{"oc":"#161616","x":6.361781250000001,"y":5.979437499999999,"w":1.5,"l":30.533593750000005},{"oc":"#161616","x":6.361781250000001,"y":3.791937499999998,"w":1.5,"l":30.533593750000005},{"oc":"#c9c9c9","x":41.136562500000004,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":41.1021875,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.611562500000005,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.5771875,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.0865625,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.0521875,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.56156250000001,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.527187500000004,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.0365625,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.002187500000005,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.511562500000004,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.4771875,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.986562500000005,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.95218750000001,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.4615625,"y":4.321812500000003,"w":6,"l":2.474999999999996},{"oc":"#c9c9c9","x":58.4271875,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.93656250000001,"y":4.321812500000003,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.902187500000004,"y":5.5686875,"w":6,"l":2.4750000000000028},{"oc":"#161616","x":65.580796875,"y":6.367437500000004,"w":3,"l":2.4234374999999977},{"oc":"#161616","x":95.512484375,"y":6.367624999999994,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":67.63487500000001,"y":47.178125,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":95.7,"y":47.1875,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#d2d2d2","x":68.76014062500002,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":71.235140625,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":73.71014062500001,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":76.185140625,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":78.660140625,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":81.13514062500002,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":83.610140625,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":86.08514062500001,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":88.560140625,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":91.035140625,"y":9.1461875,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":68.76014062500002,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":16.729937500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":71.235140625,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":73.71014062500001,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":76.185140625,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":78.660140625,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":81.13514062500002,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":83.610140625,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":86.08514062500001,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":88.560140625,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":91.035140625,"y":23.050749999999997,"w":6,"l":1.3499375000000005},{"oc":"#d2d2d2","x":68.76014062500002,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":29.276375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":39.0183125,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":71.235140625,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":73.71014062500001,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":76.185140625,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":78.660140625,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":81.13514062500002,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":83.610140625,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":86.08514062500001,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":88.560140625,"y":44.167125,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":91.035140625,"y":44.167125,"w":6,"l":1.3500000000000039},{"clr":1,"x":77.86951562500002,"y":44.801500000000004,"w":1,"l":0.8999999999999962},{"clr":1,"x":75.80701562500002,"y":44.801500000000004,"w":1,"l":0.8999999999999962},{"oc":"#161616","x":36.89537500000001,"y":3.791937499999998,"w":1.5,"l":2.1875},{"oc":"#161616","x":6.361781250000001,"y":3.791937499999998,"w":1.5,"l":2.1875},{"oc":"#c9c9c9","x":41.47171875,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":43.94671875,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":46.421718750000004,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":48.896718750000005,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":51.37171875,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":53.84671875000001,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":56.32171875,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":58.796718750000004,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":61.271718750000005,"y":4.199937499999998,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":63.669546874999995,"y":4.206187499999999,"w":6,"l":1.484375},{"oc":"#161616","x":65.73565625,"y":6.308062500000003,"w":3,"l":0.8875000000000005},{"oc":"#161616","x":97.807015625,"y":6.32075,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":67.79815625,"y":46.359375,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":97.96015625000001,"y":46.359375,"w":3,"l":0.8843749999999962}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.707796875,"y":10.146187500000002,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":10.127437500000001,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":17.729937500000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":17.711187499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":24.050749999999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":24.031937499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":30.276374999999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":30.257625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":40.0183125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":39.9995625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":45.167125,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":75.31184375000001,"y":45.135937500000004,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1}],"Texts":[{"oc":"#161616","x":5.93751375,"y":6.3424499999999995,"w":23.167,"clr":-1,"A":"left","R":[{"T":"PART%207%20-%20RENT%20REDUCTION%20PROGRAM%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.6026404687500015,"y":7.073706250000001,"w":1.058,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285176875000001,"y":7.073700000000002,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"EXPIRED","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":22.67406875,"y":7.073700000000002,"w":9.894000000000004,"clr":-1,"A":"left","R":[{"T":"-%20December%2031%2C%202010.","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":7.5365046875,"y":9.26741875,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285156250000002,"y":9.26741875,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195003125000007,"y":9.26741875,"w":16.561000000000003,"clr":-1,"A":"left","R":[{"T":"%20Line%20C%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285035937500002,"y":9.792409999999995,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.10825468750001,"y":9.792409999999995,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.14059375,"y":9.7924375,"w":1.278,"clr":-1,"A":"left","R":[{"T":"7D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":10.5237,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":10.5237,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%207D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":12.079949999999997,"w":44.11600000000001,"clr":-1,"A":"left","R":[{"T":"PART%208%20-%20CLEAN-FUEL%20VEHICLE%20AND%20VEHICLE%20EMISSIONS%20TESTING%20EQUIPMENT%20CREDITS%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871176250000001,"y":13.1487,"w":26.343000000000004,"clr":-1,"A":"left","R":[{"T":"Clean-Fuel%20Vehicle%20and%20Qualified%20Electric%20Vehicle%20Credit","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.6026404687500015,"y":13.9362,"w":1.058,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":13.9362,"w":12.561,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Electric%20Vehicle","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.330077968750004,"y":13.9362,"w":14.286000000000007,"clr":-1,"A":"left","R":[{"T":"%20-%20Enter%2010%25%20of%20the%20cost%20used%20to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870937343750002,"y":15.2487,"w":1.223,"clr":-1,"A":"left","R":[{"T":"B%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":15.2487,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536466187500003,"y":16.767441875000003,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285117750000003,"y":16.767441875000003,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.194964625000008,"y":16.767441875000003,"w":16.839000000000002,"clr":-1,"A":"left","R":[{"T":"%20Line%20C%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.10821618750001,"y":17.292437500000005,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.14059375,"y":17.292437500000002,"w":1.278,"clr":-1,"A":"left","R":[{"T":"8D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":18.07998125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":18.07998125,"w":30.122000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%208D%20(applicable%20only%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871107500000001,"y":19.6737,"w":21.228000000000005,"clr":-1,"A":"left","R":[{"T":"Vehicle%20Emissions%20Testing%20Equipment%20Credit","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":20.4049875,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":20.4049875,"w":28.959000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%2020%25%20of%20the%20purchase%20or%20lease%20price%20paid%20during%20the%20year%20for%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870937343750002,"y":21.661225,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":21.661225,"w":25.006000000000004,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20(attach%20computation).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870934937500001,"y":22.392458125,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.2849974375,"y":22.392458125,"w":8.894000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20F%20and%20G.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536464984375,"y":23.123691250000004,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20I%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285116546875,"y":23.123691250000004,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.194963421875002,"y":23.123691250000004,"w":16.839000000000002,"clr":-1,"A":"left","R":[{"T":"%20Line%20H%20or%20balance%20of%20maximum%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284996234374999,"y":23.648691250000002,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.10821498437501,"y":23.648691250000002,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"..........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.904234375,"y":23.648750000000003,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8I","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":24.37998125,"w":0.778,"clr":-1,"A":"left","R":[{"T":"J%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28499984375,"y":24.37998125,"w":28.622000000000014,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20H%20less%20Line%208I%20(applicable%20only","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":25.93625,"w":26.836000000000006,"clr":-1,"A":"left","R":[{"T":"PART%209%20-%20MAJOR%20BUSINESS%20FACILITY%20JOB%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":26.60746875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351171718750003,"y":26.60746875,"w":28.902000000000005,"clr":-1,"A":"left","R":[{"T":"Current%20credit%20amount%20authorized%20by%20the%20Department%20of%20Taxation%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":29.344945625000005,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":29.344945625000005,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.194967031250002,"y":29.344945625000005,"w":17.452000000000005,"clr":-1,"A":"left","R":[{"T":"%20Line%20C%20or%20the%20balance%20of%20the%20maximum%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843749999,"y":29.869945625000003,"w":39.80199999999989,"clr":-1,"A":"left","R":[{"T":"credit%20available%2C%20whichever%20is%20less.%20........................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":61.10933890625,"y":29.869945625000003,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":".....%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.14059375,"y":29.87,"w":1.278,"clr":-1,"A":"left","R":[{"T":"9D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871057656250002,"y":30.9387625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":30.9387625,"w":22.119000000000007,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%209D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":32.495,"w":31.447000000000006,"clr":-1,"A":"left","R":[{"T":"PART%2010%20-%20FOREIGN%20SOURCE%20RETIREMENT%20INCOME%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":33.01999375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351171718750003,"y":33.01999375,"w":25.290000000000003,"clr":-1,"A":"left","R":[{"T":"Qualifying%20taxable%20income%20on%20which%20the%20tax%20in%20the%20foreign%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870937343750002,"y":35.04500625,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":35.04500625,"w":19.009999999999998,"clr":-1,"A":"left","R":[{"T":"Qualifying%20tax%20paid%20to%20the%20foreign%20country.%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870937343750002,"y":37.070018749999996,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":37.070018749999996,"w":31.126,"clr":-1,"A":"left","R":[{"T":"Income%20percentage.%20Divide%20Line%20A%20by%20Line%20B.%20Compute%20to%20one%20decimal%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":39.09503125,"w":1.334,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":39.09503125,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.194967031250002,"y":39.09503125,"w":16.063000000000006,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20lesser%20of%20Line%20C%20or%20Line%20F%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843749999,"y":39.62003125,"w":40.80199999999993,"clr":-1,"A":"left","R":[{"T":"not%20to%20exceed%20the%20balance%20of%20maximum%20credit%20available.%20.........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.08906250000001,"y":39.62,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"10G","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":40.46375,"w":25.057000000000006,"clr":-1,"A":"left","R":[{"T":"PART%2011%20-%20HISTORIC%20REHABILITATION%20TAX%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":43.463775,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":43.463775,"w":8.894000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20B%20and%20C.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":44.270043750000006,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":44.270043750000006,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.529195156250005,"y":44.270043750000006,"w":15.952000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20D%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284879531250002,"y":44.79504375,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.374375,"y":44.795025,"w":1.6139999999999999,"clr":-1,"A":"left","R":[{"T":"11E","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":45.545023750000006,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":45.545023750000006,"w":18.395000000000003,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20D%20less%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":9.553437500000001,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":9.729075,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":9.56745,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.2187431250000005,"y":12.247275000000002,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":17.137125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":17.312699999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":17.15115,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":23.458000000000002,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":23.63355,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":23.471925000000002,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":29.683624999999996,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":29.859225,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":29.697600000000005,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.218189687500001,"y":32.738287500000006,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":39.425562500000005,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":39.601125,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":39.4395,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":44.5744,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":44.750025,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":44.5884,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"x":82.99910000000001,"y":44.5884,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931648437500002,"y":3.3934999999999986,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.937520625,"y":2.0460000000000016,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.197984375,"y":2.0460000000000016,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%202","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.572978125,"y":3.243437499999999,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.33734375000001,"y":4.393049999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.22732500000001,"y":4.4117999999999995,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":43.04060312500001,"y":7.073706250000001,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":"%20........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60769531250001,"y":7.073706250000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775820203125015,"y":7.073706250000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870984265625005,"y":7.804939375000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285046765625005,"y":7.804939375000004,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00928114062501,"y":7.804939375000004,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53997020312501,"y":7.804939375000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77437645312501,"y":7.804939375000004,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8709842656250135,"y":8.536172500000006,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285046765625012,"y":8.536172500000006,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653578015625015,"y":8.536172500000006,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47464051562501,"y":8.536172500000006,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77523067187501,"y":8.536172500000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285058796875008,"y":11.048700000000006,"w":14.05900000000001,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":30.002480671875013,"y":11.048700000000006,"w":17.792000000000012,"clr":-1,"A":"left","R":[{"T":"................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53914004687501,"y":11.048700000000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77354629687502,"y":11.048700000000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285058796875008,"y":14.461191250000004,"w":31.681,"clr":-1,"A":"left","R":[{"T":"compute%20the%20credit%20under%20IRC%20%C2%A7%2030%20for%20qualified%20electric%20vehicles.............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608680671875014,"y":14.461191250000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.776792328125005,"y":14.461191250000004,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.041465765625006,"y":15.248704375000008,"w":6.950000000000005,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.541423578125006,"y":15.248704375000008,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77582982812501,"y":15.248704375000008,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871114203125005,"y":16.036204375000008,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285176703125005,"y":16.036204375000008,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653707953125004,"y":16.036204375000008,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47477045312501,"y":16.036204375000008,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77534857812501,"y":16.036204375000008,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285056390625005,"y":17.29243750000001,"w":39.0249999999999,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20...............................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285061203125007,"y":18.604972500000006,"w":31.85099999999994,"clr":-1,"A":"left","R":[{"T":"within%205-year%20carryover%20period).%20................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53914245312501,"y":18.604972500000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77354870312501,"y":18.604972500000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285061203125002,"y":20.92998750000001,"w":31.68399999999995,"clr":-1,"A":"left","R":[{"T":"qualified%20vehicle%20emissions%20testing%20equipment..........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607720578125004,"y":20.92998750000001,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77475303125001,"y":20.92998750000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.04147178125,"y":21.661225000000012,"w":6.952500000000004,"clr":-1,"A":"left","R":[{"T":".........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.406198343750006,"y":21.661225000000012,"w":1.0562,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77427178125,"y":21.661225000000012,"w":10.0098,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.654074906250003,"y":22.392458125000008,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47501709375,"y":22.392458125000008,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775595218750006,"y":22.392458125000008,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285062406249999,"y":24.904976875000006,"w":32.07299999999994,"clr":-1,"A":"left","R":[{"T":"if%20within%205-year%20carryover%20period).%20..............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.74343428125,"y":24.904976875000006,"w":0.778,"clr":-1,"A":"left","R":[{"T":"J%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77692467187501,"y":24.904976875000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285188734375003,"y":27.13246437500001,"w":11.004000000000003,"clr":-1,"A":"left","R":[{"T":"(include%20all%20expansions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.325860609375002,"y":27.13246437500001,"w":20.849999999999998,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.605201234374995,"y":27.13246437500001,"w":0.667,"clr":-1,"A":"left","R":[{"T":"A","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.341393421875,"y":27.13246437500001,"w":10.286000000000005,"clr":-1,"A":"left","R":[{"T":"%20__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871005921874993,"y":27.863701875000007,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285068421874994,"y":27.863701875000007,"w":25.673000000000016,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20years%20(include%20all%20expansions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.040552796875,"y":27.863701875000007,"w":6.116000000000003,"clr":-1,"A":"left","R":[{"T":"......................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.537585609375,"y":27.863701875000007,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.771991859375,"y":27.863701875000007,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871005921874993,"y":28.59493500000001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28506842187499,"y":28.59493500000001,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653599671874996,"y":28.59493500000001,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47466217187499,"y":28.59493500000001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77524029687499,"y":28.59493500000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285188734374993,"y":31.46376250000001,"w":22.618000000000002,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20if%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.36271998437499,"y":31.46376250000001,"w":9.174000000000008,"clr":-1,"A":"left","R":[{"T":".................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53733295312499,"y":31.46376250000001,"w":1.223,"clr":-1,"A":"left","R":[{"T":"E%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.771739203124994,"y":31.46376250000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285056390624987,"y":33.54499375000001,"w":15.895000000000008,"clr":-1,"A":"left","R":[{"T":"country%20is%20based%20(See%20instructions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.342556390624985,"y":33.54499375000001,"w":15.84600000000002,"clr":-1,"A":"left","R":[{"T":".........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60615170312499,"y":33.54499375000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774268171875,"y":33.54499375000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.87099629687499,"y":34.294995625000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285058796874994,"y":34.294995625000006,"w":18.951,"clr":-1,"A":"left","R":[{"T":"Virginia%20taxable%20income%20(See%20instructions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":36.019308796874995,"y":34.294995625000006,"w":12.788000000000014,"clr":-1,"A":"left","R":[{"T":"..............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538418171874994,"y":34.294995625000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772824421875,"y":34.294995625000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285058796875,"y":35.57000187500001,"w":29.85400000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20name%20of%20country%3A___________________________________.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":49.209890046875,"y":35.57000187500001,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"%20......","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.475001453125,"y":35.57000187500001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775591609375,"y":35.57000187500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.87099629687499,"y":36.32000812500001,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28505879687499,"y":36.32000812500001,"w":16.783000000000005,"clr":-1,"A":"left","R":[{"T":"Virginia%20income%20tax%20(See%20instructions).","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.45544942187499,"y":36.32000812500001,"w":15.012000000000018,"clr":-1,"A":"left","R":[{"T":"%20.....................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.472968171874996,"y":36.32000812500001,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.773546296875,"y":36.32000812500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28505879687499,"y":37.59501437500001,"w":29.51600000000001,"clr":-1,"A":"left","R":[{"T":"place%2C%20not%20to%20exceed%20100%25.%20For%20example%2C%200.3163%20becomes%2031.6%25.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":48.720699421875,"y":37.59501437500001,"w":2.224,"clr":-1,"A":"left","R":[{"T":"........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538418171874994,"y":37.59501437500001,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.34090254687499,"y":37.59501437500001,"w":10.286000000000005,"clr":-1,"A":"left","R":[{"T":"%20__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.87099629687499,"y":38.34502062500001,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285058796874994,"y":38.34502062500001,"w":11.560000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%20D%20by%20Line%20E.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.99466817187499,"y":38.34502062500001,"w":20.294,"clr":-1,"A":"left","R":[{"T":".........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607357234374994,"y":38.34502062500001,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.7743896875,"y":38.34502062500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870997499999996,"y":41.21375187500001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351231874999998,"y":41.21375187500001,"w":17.287000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20eligible%20expenses.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":34.013700625,"y":41.21375187500001,"w":14.456000000000017,"clr":-1,"A":"left","R":[{"T":"....................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60543343749999,"y":41.21375187500001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.773545093749995,"y":41.21375187500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870995093749986,"y":41.963758125000005,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285057593749988,"y":41.963758125000005,"w":16.786,"clr":-1,"A":"left","R":[{"T":"Multiply%20the%20amount%20on%20Line%20A%20by%2025%25","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.34957321874998,"y":41.963758125000005,"w":15.012000000000018,"clr":-1,"A":"left","R":[{"T":"......................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54371071874999,"y":41.963758125000005,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77811696874999,"y":41.963758125000005,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870995093749986,"y":42.71376437500001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285057593749984,"y":42.71376437500001,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00929196874999,"y":42.71376437500001,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47356853124999,"y":42.71376437500001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77415868749999,"y":42.71376437500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653480562499986,"y":43.463770625000016,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.4750243125,"y":43.463770625000016,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.7756024375,"y":43.463770625000016,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285069624999988,"y":46.07001937500001,"w":26.342999999999993,"clr":-1,"A":"left","R":[{"T":"Line%2011E.%20(applicable%20only%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.70828837499999,"y":46.07001937500001,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.6044805625,"y":46.07001937500001,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.771513015625004,"y":46.07001937500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"x":64.73078125,"y":37.5790625,"w":8.89,"clr":0,"A":"left","R":[{"T":"%25","S":-1,"TS":[0,13,0,0]}]},{"x":35.013593750000005,"y":47.404374999999995,"w":68.488,"clr":0,"A":"left","R":[{"T":"Continue%20to%20Page%203","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":494,"AM":1024,"x":6.4575499999999995,"y":5.022499999999998,"w":30.316996875,"h":0.8920625000000086,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":495,"AM":1024,"x":41.7223125,"y":4.574333333333338,"w":21.93743750000001,"h":0.9141666666666689,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":496,"AM":0,"x":52.792953125000004,"y":7.906812500000001,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Part 7. Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":497,"AM":1024,"x":52.792953125000004,"y":8.6418125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":498,"AM":0,"x":68.916203125,"y":9.486770833333338,"w":21.600046875000015,"h":0.9121041666666562,"TU":"Line 7D. Credit allowable this year: Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":499,"AM":1024,"x":52.792953125000004,"y":11.146812500000001,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QEV","EN":0},"TI":500,"AM":0,"x":52.792953125000004,"y":14.559312499999995,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Part 8. Line A. Qualifying Electric Vehicle. Enter 10% of the cost used to compute the credit under IRC § 30 for qualified electric vehicles."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":501,"AM":0,"x":52.792953125000004,"y":15.346812499999999,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s) (attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":502,"AM":1024,"x":52.792953125000004,"y":16.134312500000004,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":503,"AM":0,"x":68.87873437500001,"y":17.068583333333333,"w":21.599875000000004,"h":0.9121041666666656,"TU":"Line 8D. Credit allowable this year. Line C or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":504,"AM":1024,"x":52.792953125000004,"y":18.7068125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":505,"AM":0,"x":52.792953125000004,"y":21.0318125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Line F. Enter 20% of the purchase or lease price paid during the year for qualified vehicle emissions testing equipment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":506,"AM":0,"x":52.792953125000004,"y":21.7668125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Line G. Carryover credit from prior year(s) (attach computation)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":507,"AM":1024,"x":52.792953125000004,"y":22.494312499999996,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Add Lines F and G"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":508,"AM":0,"x":68.883375,"y":23.372520833333336,"w":21.60004687499999,"h":0.9121666666666641,"TU":"Line 8I. Credit allowable this year. Enter the amount from Line H or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":509,"AM":1024,"x":52.792953125000004,"y":25.0068125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9A","EN":0},"TI":510,"AM":0,"x":52.792953125000004,"y":27.05275,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Current Credit amount authorized by the Department of TaxationPart 9. Line A. Current credit amount authorized by the Department of Taxation (including all expansions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9B","EN":0},"TI":511,"AM":0,"x":52.792953125000004,"y":27.8659375,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior years (including all expansions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":512,"AM":1024,"x":52.792953125000004,"y":28.679312499999998,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Add lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":513,"AM":0,"x":68.97034375000001,"y":29.58908333333333,"w":21.600046875000015,"h":0.9121041666666704,"TU":"Line 9D. Credit allowable this year. Line C or the balance of the maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":514,"AM":1024,"x":52.86789062500001,"y":31.517062499999998,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":515,"AM":0,"x":52.792953125000004,"y":33.6993125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Part 10. Line A. Qualifying taxable income on which the tax in the foreign country is based (See instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":516,"AM":1024,"x":52.792953125000004,"y":34.4493125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Multiply the amount\ton Line A\tby 25%"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L44TXT","EN":0},"TI":517,"AM":0,"x":35.432203125,"y":35.545562499999996,"w":13.783171874999999,"h":0.8529375000000053,"TU":"Line C. Enter name of country."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":518,"AM":0,"x":52.792953125000004,"y":35.7243125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Line C. Qualifying tax paid to the foreign country."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":519,"AM":1024,"x":52.792953125000004,"y":36.4743125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Add Lines\tB and C"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":520,"AM":1024,"x":52.792953125000004,"y":37.782625,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Income percentage"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":521,"AM":1024,"x":52.792953125000004,"y":38.4993125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Multiply Line D by Line E"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":522,"AM":0,"x":68.87873437500001,"y":39.40495833333333,"w":21.600046875,"h":0.9121041666666656,"TU":"Line 10G. Credit allowable this year. Enter the lesser of Line C or Line F, not to exceed the balance of maximum credit available."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":523,"AM":0,"x":52.792953125000004,"y":41.364312500000004,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Part 11. Line A. Enter the amount of eligible expenses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":524,"AM":1024,"x":52.792953125000004,"y":42.114312500000004,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Multiply the amount\ton Line A\tby 25%"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":525,"AM":0,"x":52.792953125000004,"y":42.864312500000004,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Line C. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":526,"AM":1024,"x":52.792953125000004,"y":43.61428125,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Add Lines\tB and C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L53","EN":0},"TI":527,"AM":0,"x":68.84109375,"y":44.53220833333333,"w":21.600046875,"h":0.9121229166666751,"TU":"Line 11E. Credit allowable this year. Enter the amount from Line D or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":528,"AM":1024,"x":52.792953125000004,"y":46.19705625,"w":12.044999999999995,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VASCR2"}},"id":{"Id":"Add_VASCR2","EN":0},"TI":529,"AM":0,"x":47.24121875000001,"y":47.5722375,"w":6.31090625,"h":0.8333333333333334}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VASCR2.json b/test/data/va/form_org/VASCR2.json new file mode 100755 index 00000000..4b40d710 --- /dev/null +++ b/test/data/va/form_org/VASCR2.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"green Sch CR WEB 11 13 13.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.42498437500001,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":10.6324375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":10.6324375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":10.6324375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":10.6324375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":10.6324375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":10.6324375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":10.6324375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":10.6324375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":9.3855625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":10.629312499999997,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":16.4489375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":16.4489375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":16.4489375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":16.4489375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":16.4489375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":16.4489375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":16.4489375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":16.4489375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":15.202062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":16.445812500000002,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":27.841375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":27.841375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":27.841375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":27.841375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":27.841375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":27.841375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":27.841375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":27.841375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":26.5945,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":27.83825,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":31.587499999999995,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":31.587499999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":31.587499999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":31.587499999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":31.587499999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":31.587499999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":31.587499999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":31.587499999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":30.340625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":31.584375000000005,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":38.1918125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":38.1918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":38.1918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":38.1918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":38.1918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":38.1918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":38.1918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":38.1918125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":36.9449375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":38.1886875,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":41.86975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":43.116625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":41.86975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":43.116625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":41.86975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":43.116625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":41.86975,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":43.113499999999995,"w":6,"l":3.2054687500000028},{"oc":"#c9c9c9","x":41.136734375,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":41.102359375000006,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.611734375000005,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.57735937500001,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.086734375000006,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.052359374999995,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.56173437500001,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.527359375,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.036734374999995,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.002359375000005,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.511734375,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.477359375000006,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.986734375000005,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.95235937500001,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.461734375000006,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.427359374999995,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.93673437500001,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.90235937500001,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#161616","x":6.365046875000001,"y":5.979374999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":6.365046875000001,"y":3.791874999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":69.35345312500002,"y":46.2364375,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":96.27629687500001,"y":6.463749999999995,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":96.2768125,"y":46.2364375,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":65.57289062500001,"y":6.463749999999995,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#d2d2d2","x":68.76014062500002,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":71.235140625,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":73.71014062500001,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":76.185140625,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":78.660140625,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":81.13514062500002,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":83.610140625,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":86.08514062500001,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":88.560140625,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":91.035140625,"y":9.263687499999998,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":68.76014062500002,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":15.080187500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":26.472624999999997,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":30.218750000000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":36.8230625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":41.747875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":41.747875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":41.747875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":41.747875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":41.747875,"w":6,"l":1.349999999999999},{"oc":"#c9c9c9","x":41.47189062500001,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":43.946890625,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":46.421890625,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":48.896890625000005,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":51.371890625000006,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":53.84689062500001,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":56.321890624999995,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":58.79689062500001,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":61.271890625000005,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":63.66971875000001,"y":4.2064375000000025,"w":6,"l":1.484375},{"oc":"#161616","x":36.898640625,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":6.365046875000001,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":69.52532812500002,"y":45.41456250000001,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":98.545046875,"y":6.413749999999999,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":98.55415625,"y":45.4083125,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":65.74476562500001,"y":6.404375000000003,"w":3,"l":0.8843749999999998}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.707796875,"y":10.2636875,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":10.244937499999997,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":16.0801875,"w":1.8562500000000053,"h":0.43118750000000006,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":16.0614375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":27.472624999999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":27.453874999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":31.218749999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":31.200000000000003,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":37.8230625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":37.8043125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":42.747875,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1}],"Texts":[{"oc":"#161616","x":5.93751375,"y":6.287050000000003,"w":36.11899999999998,"clr":-1,"A":"left","R":[{"T":"PART%2012%20-%20DAY-CARE%20FACILITY%20INVESTMENT%20TAX%20CREDIT%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,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":9.287106249999999,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":9.287106249999999,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":9.287106249999999,"w":16.230000000000004,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":9.81210625,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":9.812062500000001,"w":1.834,"clr":-1,"A":"left","R":[{"T":"12D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":10.56206875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":10.56206875,"w":29.900000000000016,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2012D%20(applicable%20only%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":12.118350000000001,"w":20.89,"clr":-1,"A":"left","R":[{"T":"PART%2013%20-%20LOW-INCOME%20HOUSING%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.603482656250002,"y":12.868350000000001,"w":1.2782,"clr":-1,"A":"left","R":[{"T":"%20%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285176875000001,"y":12.868350000000001,"w":12.061000000000009,"clr":-1,"A":"left","R":[{"T":"EXPIRED%20-%20June%2030%2C%202010.","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":7.536624999999999,"y":15.118368750000002,"w":1.556,"clr":-1,"A":"left","R":[{"T":"%20%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285998437500002,"y":15.118368750000002,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.1958453125,"y":15.118368750000002,"w":13.172,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%20C%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286359375000002,"y":15.643355624999998,"w":40.68699999999994,"clr":-1,"A":"left","R":[{"T":"the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":15.643312499999997,"w":1.834,"clr":-1,"A":"left","R":[{"T":"13D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":18.4746,"w":19.558000000000007,"clr":-1,"A":"left","R":[{"T":"PART%2014%20-%20RESERVED%20FOR%20FUTURE%20USE","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":5.93751375,"y":20.5371,"w":42.11400000000002,"clr":-1,"A":"left","R":[{"T":"PART%2015%20-%20QUALIFIED%20EQUITY%20AND%20SUBORDINATED%20DEBT%20INVESTMENTS%20TAX%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":42.960920156250005,"y":21.28711875,"w":4.724,"clr":-1,"A":"left","R":[{"T":"SPOUSE%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":59.17050296875001,"y":21.28711875,"w":2.167,"clr":-1,"A":"left","R":[{"T":"YOU","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":7.8710576562500005,"y":25.374598125000002,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285360781250002,"y":25.374598125000002,"w":13.615000000000004,"clr":-1,"A":"left","R":[{"T":"Credit(s)%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.45808140625,"y":25.899598125,"w":5.890000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":20.282447031250005,"y":25.899598125,"w":22.454000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C%2C%20YOU%20column%20or%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286154843750001,"y":26.424598125000003,"w":31.178000000000004,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20(not%20to%20exceed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.18462671875,"y":26.949624999999997,"w":1.834,"clr":-1,"A":"left","R":[{"T":"15D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":14.600173593750005,"y":28.318375,"w":24.172999999999995,"clr":-1,"A":"left","R":[{"T":"Be%20sure%20to%20claim%20the%20proper%20credit%20on%20the%20total%20lines","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":29.68711875,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":29.68711875,"w":8.058000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":22.935506093750003,"y":29.68711875,"w":24.177000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C%2C%20SPOUSE%20column%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286323281250004,"y":30.212118750000002,"w":31.178000000000004,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20(not%20to%20exceed%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286323281250004,"y":30.737118750000004,"w":32.57899999999994,"clr":-1,"A":"left","R":[{"T":"%2450%2C000%20per%20taxpayer).%20...............................................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.88116703124994,"y":30.737118750000004,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.00725171875,"y":30.737125000000002,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"15E","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.87110578125,"y":31.262118750000006,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28516828125,"y":31.262118750000006,"w":13.171000000000005,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285047968750002,"y":31.787118749999998,"w":17.120000000000005,"clr":-1,"A":"left","R":[{"T":"Line%20C%20less%20Line%2015D%20and%2For%20Line%2015E%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.550966718750004,"y":31.787118749999998,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"(applicable%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":33.343349999999994,"w":22.612000000000002,"clr":-1,"A":"left","R":[{"T":"PART%2016%20-%20WORKER%20RETRAINING%20TAX%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":34.09335625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351171718750003,"y":34.09335625,"w":28.567,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20Worker%20Retraining%20Tax%20Credit%20authorized%20by%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":36.868375,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":36.868375,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.529195156250005,"y":36.868375,"w":15.952000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C%20or%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284879531250002,"y":37.393375,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":37.393375,"w":1.834,"clr":-1,"A":"left","R":[{"T":"16D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":38.14338125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":38.14338125,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2016D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":39.69965,"w":30.280000000000012,"clr":-1,"A":"left","R":[{"T":"PART%2017%20-%20WASTE%20MOTOR%20OIL%20BURNING%20EQUIPMENT%20CREDIT%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":40.22465625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351171718750003,"y":40.22465625,"w":28.904,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20of%20the%20purchase%20price%20paid%20during%20the%20taxable%20year%20for%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536348281250001,"y":41.7808875,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285240468750002,"y":41.7808875,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195087343750004,"y":41.7808875,"w":16.398000000000007,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20A%2C%20up%20to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284879531250008,"y":42.305887500000004,"w":40.63399999999994,"clr":-1,"A":"left","R":[{"T":"%245%2C000%20(not%20to%20exceed%20balance%20of%20maximum%20credit%20available).%20................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":42.30587499999999,"w":1.834,"clr":-1,"A":"left","R":[{"T":"17B","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000002,"y":9.670937499999999,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":9.846525,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":9.684975,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":15.487437499999999,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":15.663,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":15.501375,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":26.879875000000002,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":27.0555,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":26.893874999999998,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":30.626,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":30.801599999999997,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":30.639975000000003,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":37.230312500000004,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":37.405875,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":37.24425,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.218189687500001,"y":39.8982375,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":42.155125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":42.33076500000001,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":82.99910000000001,"y":42.16914,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.937500000000001,"y":1.5960150000000035,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.197984375,"y":1.5960000000000036,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%203","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.572978125,"y":3.2438750000000027,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.33755000000001,"y":4.393274999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.22753125,"y":4.412025,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.93484875,"y":3.3934999999999986,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8710576562500005,"y":7.037087499999998,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286323281250002,"y":7.037087499999998,"w":20.009,"clr":-1,"A":"left","R":[{"T":"Authorized%20credit%20amount%20in%20the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.02397953125,"y":7.037087499999998,"w":11.954000000000013,"clr":-1,"A":"left","R":[{"T":"...........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60789984375001,"y":7.037087499999998,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77600668750001,"y":7.037087499999998,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8709301250000046,"y":7.787098125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286195750000005,"y":7.787098125,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00922700000001,"y":7.787098125,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54063793750001,"y":7.787098125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775044187500015,"y":7.787098125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8709301250000046,"y":8.5371,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286195750000005,"y":8.5371,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.65352387500001,"y":8.5371,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47506762500001,"y":8.5371,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77565778125001,"y":8.5371,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285004656250008,"y":11.087068750000006,"w":31.788999999999987,"clr":-1,"A":"left","R":[{"T":"within%203-year%20carryover%20period.%20See%20instructions%20for%20limitations).%20..............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.538003093750014,"y":11.087068750000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77240934375001,"y":11.087068750000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.027510906250015,"y":12.868354375000004,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"%20.......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60766403125001,"y":12.868354375000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77578892187501,"y":12.868354375000004,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871073296875011,"y":13.618360625000003,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28513579687501,"y":13.618360625000003,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00937017187501,"y":13.618360625000003,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.540059234375015,"y":13.618360625000003,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77446548437502,"y":13.618360625000003,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.87107329687502,"y":14.368362500000003,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285135796875018,"y":14.368362500000003,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.65366704687502,"y":14.368362500000003,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47472954687503,"y":14.368362500000003,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775307671875034,"y":14.368362500000003,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870952984375023,"y":16.393335625000006,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285015484375023,"y":16.393335625000006,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2013D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285015484375023,"y":16.918335625000008,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.691406109375016,"y":16.918335625000008,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53717173437502,"y":16.918335625000008,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77157798437503,"y":16.918335625000008,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871073296875025,"y":22.037129375000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286338921875025,"y":22.037129375000006,"w":14.229000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20amount%20authorized%20by%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871073296875023,"y":24.62460062500001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286338921875025,"y":24.62460062500001,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653667046875025,"y":24.62460062500001,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"..............................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.06357017187503,"y":24.62460062500001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44604985937503,"y":24.62460062500001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870952984375023,"y":23.59336500000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286218609375025,"y":23.59336500000001,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009249859375025,"y":23.59336500000001,"w":6.394000000000004,"clr":-1,"A":"left","R":[{"T":".....................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.06260767187503,"y":23.59336500000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44508735937503,"y":23.59336500000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286218609375025,"y":22.56212937500001,"w":11.005000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.326890484375024,"y":22.56212937500001,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"......................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.062848296875025,"y":22.56212937500001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44532798437503,"y":22.56212937500001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286218609375025,"y":26.94959812500001,"w":10.339000000000002,"clr":-1,"A":"left","R":[{"T":"%2450%2C000%20per%20taxpayer).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":25.657952984375022,"y":26.94959812500001,"w":25.297999999999977,"clr":-1,"A":"left","R":[{"T":"...........................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":56.08450298437502,"y":26.94959812500001,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285015484375023,"y":32.31212312500001,"w":16.727000000000004,"clr":-1,"A":"left","R":[{"T":"only%20within%2015-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.34471860937503,"y":32.31212312500001,"w":5.004000000000001,"clr":-1,"A":"left","R":[{"T":".................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.39114360937502,"y":32.31212312500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44292173437503,"y":32.31212312500001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285015484375025,"y":34.61836062500001,"w":11.005000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":26.326890484375024,"y":34.61836062500001,"w":20.849999999999998,"clr":-1,"A":"left","R":[{"T":"...........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.606832671875026,"y":34.61836062500001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77493951562503,"y":34.61836062500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870945765625024,"y":35.368366875000014,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285008265625024,"y":35.368366875000014,"w":15.335000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":31.674773890625026,"y":35.368366875000014,"w":16.40200000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53969107812503,"y":35.368366875000014,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77409732812503,"y":35.368366875000014,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870945765625034,"y":36.11837312500001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285008265625033,"y":36.11837312500001,"w":9.117000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.988008265625034,"y":36.11837312500001,"w":22.79599999999999,"clr":-1,"A":"left","R":[{"T":"..................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47472232812503,"y":36.11837312500001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77530045312504,"y":36.11837312500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285008265625033,"y":38.668385625000006,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%203-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69139889062504,"y":38.668385625000006,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53716451562504,"y":38.668385625000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77157076562505,"y":38.668385625000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285008265625041,"y":40.74966062500001,"w":31.233999999999998,"clr":-1,"A":"left","R":[{"T":"equipment%20used%20exclusively%20for%20burning%20waste%20motor%20oil%20at%20your%20facility.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":50.729867640625045,"y":40.74966062500001,"w":0.556,"clr":-1,"A":"left","R":[{"T":"..","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.607790359375045,"y":40.74966062500001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775910437500045,"y":40.74966062500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM3","EN":0},"TI":530,"AM":1024,"x":6.493025,"y":5.069020833333336,"w":30.316928125,"h":0.8999166666666648,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE1","EN":0},"TI":531,"AM":1024,"x":41.735546875,"y":4.538958333333331,"w":21.93743750000001,"h":0.9141666666666689,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L55","EN":0},"TI":532,"AM":0,"x":52.99903125000001,"y":7.113250000000003,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Part 12. Line A. Authorized credit amount in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L56","EN":0},"TI":533,"AM":0,"x":52.99903125000001,"y":7.863250000000003,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57","EN":0},"TI":534,"AM":1024,"x":52.99903125000001,"y":8.613250000000003,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":535,"AM":0,"x":68.972234375,"y":9.595458333333331,"w":21.600046875000015,"h":0.9121041666666656,"TU":"Line 12D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":536,"AM":1024,"x":53.085828125,"y":11.194812499999998,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60B","EN":0},"TI":537,"AM":0,"x":52.99903125000001,"y":13.674937499999999,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Part 13. Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60C","EN":0},"TI":538,"AM":1024,"x":52.99903125000001,"y":14.448250000000002,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L61","EN":0},"TI":539,"AM":0,"x":68.972234375,"y":15.398895833333333,"w":21.600046875000015,"h":0.9121041666666656,"TU":"Line 13D. Credit allowable this year. Enter amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L62","EN":0},"TI":540,"AM":1024,"x":52.99903125000001,"y":16.99825,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68B","EN":0},"TI":541,"AM":0,"x":40.422250000000005,"y":22.6615625,"w":11.364374999999995,"h":0.8333333333333334,"TU":"Credit amount authorized by the Department of TaxationPart 15. Line A. Credit amount authorized by the Department of Taxation. Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68","EN":0},"TI":542,"AM":0,"x":53.572234375,"y":22.63825,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Part 15. Line A. Credit amount authorized by the Department of Taxation. You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69B","EN":0},"TI":543,"AM":0,"x":40.422250000000005,"y":23.751125,"w":11.364374999999995,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s). Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":544,"AM":0,"x":53.65903125,"y":23.67325,"w":11.384999999999996,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s). You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70B","EN":0},"TI":545,"AM":1024,"x":40.29403125,"y":24.70075,"w":11.364375,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70","EN":0},"TI":546,"AM":1024,"x":53.65903125,"y":24.70075,"w":11.384999999999996,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L71","EN":0},"TI":547,"AM":0,"x":68.972234375,"y":26.785270833333332,"w":21.600046875000015,"h":0.9121041666666704,"TU":"Line 15D. Your credit. Enter the amount from Line C. You column or the balance of maximum credit available, whichever is less (not to exceed $50,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L71B","EN":0},"TI":548,"AM":0,"x":68.972234375,"y":30.548895833333333,"w":21.600046875000015,"h":0.9121041666666656,"TU":"Line 15E. Spouse’s credit. Enter the amount from Line C, Spouse column or the balance of maximum credit available, whichever is less (not to exceed $50,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L72B","EN":0},"TI":549,"AM":1024,"x":39.613406250000004,"y":32.4155,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L72","EN":0},"TI":550,"AM":1024,"x":53.65903125,"y":32.4155,"w":11.384999999999996,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L73","EN":0},"TI":551,"AM":0,"x":52.99903125000001,"y":34.725500000000004,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Enter amount of Worker Retraining Tax Credit authorized by the Department of TaxationPart 16. Line A. Enter the amount of Worker Retraining Tax Credit authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L74","EN":0},"TI":552,"AM":0,"x":52.99903125000001,"y":35.475500000000004,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L75","EN":0},"TI":553,"AM":1024,"x":52.99903125000001,"y":36.225500000000004,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L76","EN":0},"TI":554,"AM":0,"x":68.972234375,"y":37.154583333333335,"w":21.600046875000015,"h":0.9121041666666656,"TU":"Line 16D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L77","EN":0},"TI":555,"AM":1024,"x":52.99903125000001,"y":38.7755,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L78","EN":0},"TI":556,"AM":0,"x":52.99903125000001,"y":40.853,"w":12.04499999999999,"h":0.8333333333333334,"TU":"Part 17. Line A. Enter 50% of the purchase price paid during the taxable equipment used exclusively for burning waste motor oil at your facility."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L79","EN":0},"TI":557,"AM":0,"x":81.38470312500002,"y":42.08527083333333,"w":9.299984375000001,"h":0.9257291666666703,"TU":"Line 17B. Credit allowable this year."}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#161616","x":43.7916875,"y":11.166687500000004,"w":1.1025,"l":9.562093750000003},{"oc":"#161616","x":45.39596875,"y":19.518,"w":1.1025,"l":11.300953125000003},{"oc":"#d2d2d2","x":68.42498437500001,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":26.026750000000003,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":26.026750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":26.026750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":26.026750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":26.026750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":26.026750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":26.026750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":26.026750000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":24.779875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":26.023625,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":33.555125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":33.555125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":33.555125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":33.555125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":33.555125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":33.555125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":33.555125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":33.555125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":32.30825,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":33.552,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":38.8224375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":40.0693125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":38.8224375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":40.0693125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":38.8224375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":40.0693125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":38.8224375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":40.066187500000005,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":46.750812499999995,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":46.750812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":46.750812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":46.750812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":46.750812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":46.750812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":46.750812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":46.750812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":45.5039375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":46.747687500000005,"w":6,"l":3.2054687500000028},{"oc":"#161616","x":66.790796875,"y":49.1600625,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":65.57289062500001,"y":6.117249999999994,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":94.93,"y":5.46875,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":96.13346875,"y":49.172125,"w":3,"l":2.4320312500000028},{"oc":"#c9c9c9","x":41.136734375,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":41.102359375000006,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.611734375000005,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.57735937500001,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.086734375000006,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.052359374999995,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.56173437500001,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.527359375,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.036734374999995,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.002359375000005,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.511734375,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.477359375000006,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.986734375000005,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.95235937500001,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.461734375000006,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.427359374999995,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.93673437500001,"y":3.9470624999999964,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.90235937500001,"y":5.193937499999994,"w":6,"l":2.4750000000000028},{"oc":"#161616","x":6.3612656250000015,"y":5.291874999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":6.3612656250000015,"y":3.104374999999995,"w":1.5,"l":30.533593749999998}],"VLines":[{"oc":"#d2d2d2","x":68.76014062500002,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":24.658,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":32.186375000000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":38.700562500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":38.700562500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":38.700562500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":38.700562500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":38.700562500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":71.235140625,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":73.71014062500001,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":76.185140625,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":78.660140625,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":81.13514062500002,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":83.610140625,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":86.08514062500001,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":88.560140625,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":91.035140625,"y":45.382062499999996,"w":6,"l":1.3500000000000039},{"oc":"#161616","x":66.962671875,"y":48.33506249999999,"w":3,"l":0.8843750000000057},{"oc":"#161616","x":65.74476562500001,"y":6.057875000000002,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":97.19875,"y":5.415624999999992,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":98.38503125000001,"y":48.340875000000004,"w":3,"l":0.8843749999999962},{"oc":"#c9c9c9","x":41.47189062500001,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":43.946890625,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":46.421890625,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":48.896890625000005,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":51.371890625000006,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":53.84689062500001,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":56.321890624999995,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":58.79689062500001,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":61.271890625000005,"y":3.825187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":63.66971875000001,"y":3.831437500000002,"w":6,"l":1.484375},{"oc":"#161616","x":36.894859375,"y":3.104374999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":6.3612656250000015,"y":3.104374999999995,"w":1.5,"l":2.1875}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.707796875,"y":25.658,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":25.63925,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":33.186375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":33.167625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":39.7005625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":46.382062499999996,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":46.363312500000006,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1}],"Texts":[{"oc":"#161616","x":5.93751375,"y":5.3266000000000036,"w":26.667000000000016,"clr":-1,"A":"left","R":[{"T":"PART%2018%20-%20LONG-TERM%20CARE%20INSURANCE%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":5.937515468750001,"y":6.1329062500000004,"w":45.74299999999997,"clr":-1,"A":"left","R":[{"T":"If%20filing%20a%20joint%20or%20combined%20return%20and%20you%20and%20your%20spouse%20have%20separate%20policies%2C%20report%20total%20premium","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.937515468750001,"y":6.657906250000001,"w":48.52099999999996,"clr":-1,"A":"left","R":[{"T":"payments%20for%20policies%20purchased%20prior%20to%201%2F1%2F2013%20in%20Section%201%20and%20report%20total%20premium%20payments%20for%20policies%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.937515468750001,"y":7.182893124999997,"w":19.45600000000001,"clr":-1,"A":"left","R":[{"T":"purchased%20on%20or%20after%201%2F1%2F2013%20in%20Section%202.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872140468750002,"y":7.989161874999999,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.363202968750002,"y":7.989161874999999,"w":41.236,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20the%20policy%20was%20issued%20to%20you%20or%20to%20your%20spouse.%20The%20policy%E2%80%99s%20issue%20date%20must%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968750004,"y":8.514161875,"w":24.069000000000006,"clr":-1,"A":"left","R":[{"T":"be%20on%20or%20after%201%2F1%2F2006.%20If%20the%20policy%20was%20issued%20on%20or%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":41.910592031250005,"y":8.514161875,"w":18.643,"clr":-1,"A":"left","R":[{"T":"after%201%2F1%2F2013%2C%20skip%20to%20Section%202%2C%20Line%20F.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":9.039157500000002,"w":13.839000000000004,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20complete%20Section%201.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.47415921875,"y":9.564153124999999,"w":26.073000000000025,"clr":-1,"A":"left","R":[{"T":"SPOUSE%20_________________%20YOU%20_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.937515468749999,"y":10.37042625,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Section%201","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":11.286368593749998,"y":10.37042625,"w":26.90000000000001,"clr":-1,"A":"left","R":[{"T":"-%20Complete%20Lines%20B%20through%20E%20ONLY%20if%20the%20policy%20was%20issued%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.54166859375,"y":10.37042625,"w":7.948,"clr":-1,"A":"left","R":[{"T":"prior%20to%201%2F1%2F2013.","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.328192031249996,"y":11.701695,"w":41.91399999999999,"clr":-1,"A":"left","R":[{"T":"for%20the%20policy%E2%80%99s%20first%2012%20months%20of%20coverage.%20Eligible%20premiums%20are%20the%20premiums%20actually%20paid%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093749994,"y":12.226690625000003,"w":42.46699999999996,"clr":-1,"A":"left","R":[{"T":"on%20or%20after%201%2F1%2F08%20for%20the%20first%2012%20months%20of%20coverage%20minus%20any%20amounts%20you%20deducted%20on%20your%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093749994,"y":12.751690625000004,"w":44.07299999999996,"clr":-1,"A":"left","R":[{"T":"federal%20return%20and%2For%20your%20Virginia%20return.%20DO%20NOT%20include%20any%20premiums%20paid%20for%20coverage%20beyond%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8721885937499945,"y":14.472938125000004,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093749994,"y":14.472938125000004,"w":32.345,"clr":-1,"A":"left","R":[{"T":"Multiply%20Line%20B%20by%2015%25%20(.15).%20%20This%20is%20the%20maximum%20amount%20of%20credit%20you%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8721885937499945,"y":15.669198750000003,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093749994,"y":15.669198750000003,"w":32.404,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20LTC%20credit%20claimed%20on%20your%20tax%20returns%20for%202008%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8721885937499945,"y":16.865455,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093749994,"y":16.865455,"w":42.298999999999964,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20D%20from%20Line%20C.%20If%20Line%20D%20is%20equal%20to%20Line%20C%2C%20enter%200.%20Stop.%20You%20have%20no%20remaining%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093749998,"y":17.390455000000003,"w":31.292,"clr":-1,"A":"left","R":[{"T":"credit%20for%20this%20policy.%20If%20Line%20D%20is%20less%20than%20Line%20C%2C%20enter%20the%20difference.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093749998,"y":17.915455000000005,"w":30.625,"clr":-1,"A":"left","R":[{"T":"This%20is%20the%20remaining%20amount%20of%20credit%20for%20the%20policy.%20Go%20to%20Section%203.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.937562390624996,"y":18.721723750000006,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Section%202","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":11.286415515624995,"y":18.721723750000006,"w":28.234000000000012,"clr":-1,"A":"left","R":[{"T":"-%20Complete%20Lines%20F%20and%20G%20ONLY%20if%20the%20policy%20was%20issued%20to%20you%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":45.146082703125,"y":18.721723750000006,"w":9.393000000000002,"clr":-1,"A":"left","R":[{"T":"on%20or%20after%201%2F1%2F2013.","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":7.872187390624996,"y":19.52799687500001,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286249890624996,"y":19.52799687500001,"w":32.293,"clr":-1,"A":"left","R":[{"T":"For%20policies%20issued%20on%20or%20after%201%2F1%2F13%2C%20enter%20the%20amount%20of%20premium%20paid%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286249890624996,"y":20.05299687500001,"w":33.129000000000005,"clr":-1,"A":"left","R":[{"T":"during%20taxable%20year%202013%20less%20the%20amount%20deducted%20on%20your%20federal%20return%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.937562390624996,"y":22.055517500000008,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Section%203","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":11.286415515624995,"y":22.055517500000008,"w":13.005000000000004,"clr":-1,"A":"left","R":[{"T":"-%20Complete%20Lines%20H%20through%20J","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536515515624996,"y":24.20429875000001,"w":1.056,"clr":-1,"A":"left","R":[{"T":"%20J%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285167078124994,"y":24.20429875000001,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195013953124995,"y":24.20429875000001,"w":28.511000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20H%20or%20I%20or%20balance%20of%20maximum%20credit","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28504676562499,"y":24.729298750000012,"w":41.13099999999997,"clr":-1,"A":"left","R":[{"T":"available%2C%20whichever%20is%20less.%20If%20filing%20a%20joint%20return%2C%20and%20completing%20both%20Sections%201%20and%202%2C%20add%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28504676562499,"y":25.254298750000014,"w":41.07299999999999,"clr":-1,"A":"left","R":[{"T":"Lines%20H%20and%20I%20and%20enter%20the%20total%20or%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.46993750000001,"y":25.2541875,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"18J","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":26.2854,"w":30.393000000000015,"clr":-1,"A":"left","R":[{"T":"PART%2019%20-%20BIODIESEL%20AND%20GREEN%20DIESEL%20FUELS%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":27.09169375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351171718750003,"y":27.09169375,"w":34.01500000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Biodiesel%20and%20Green%20Diesel%20Fuels%20Tax%20Credit%20authorized%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":27.61669375,"w":32.182,"clr":-1,"A":"left","R":[{"T":"by%20the%20Virginia%20Department%20of%20Taxation%20or%20the%20amount%20transferred%20to%20you%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":64.14867328125,"y":28.14169375,"w":0.556,"clr":-1,"A":"left","R":[{"T":"_","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536468593750003,"y":32.173033124999996,"w":1.167,"clr":-1,"A":"left","R":[{"T":"%20F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":32.173033124999996,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.194967031250002,"y":32.173033124999996,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20E","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843749999,"y":32.698033125,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.376093749999995,"y":32.6979375,"w":1.723,"clr":-1,"A":"left","R":[{"T":"19F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":33.504175,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":33.504175,"w":22.509000000000007,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20E%20less%20Line%2019F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":35.060449999999996,"w":18.835000000000004,"clr":-1,"A":"left","R":[{"T":"PART%2020%20-%20LIVABLE%20HOME%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":35.866674999999994,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351171718750003,"y":35.866674999999994,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20the%20Livable%20Home%20Tax%20Credit%20authorized%20by%20the%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":38.81048125,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":38.81048125,"w":12.671000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.530037343750003,"y":38.81048125,"w":13.117000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286323281250004,"y":39.335481249999994,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":39.335437500000005,"w":1.834,"clr":-1,"A":"left","R":[{"T":"20D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":40.14170625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968750002,"y":40.14170625,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2020D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":41.69795,"w":26.722000000000012,"clr":-1,"A":"left","R":[{"T":"PART%2021%20-%20RIPARIAN%20WATERWAY%20BUFFER%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":42.50420625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351171718750003,"y":42.50420625,"w":25.621000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Riparian%20Waterway%20Buffer%20Tax%20Credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":45.448012500000004,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":45.448012500000004,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":45.448012500000004,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":45.9730125,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":45.9729625,"w":1.834,"clr":-1,"A":"left","R":[{"T":"21D","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000002,"y":25.065275,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":25.240799999999997,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":25.079250000000002,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":3.7025784375,"y":26.546525000000003,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":32.593624999999996,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":32.769225,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":32.6076,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":39.1078125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":39.283425,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":82.99910000000001,"y":39.1218,"w":0.333,"clr":1,"A":"left","R":[{"T":"%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":45.789337499999995,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":45.964965,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":45.80334,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.937520625,"y":2.0460000000000016,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.197984375,"y":2.0460000000000016,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%204","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.572978125,"y":2.8685000000000023,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.33755000000001,"y":4.018274999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.22753125,"y":4.037025,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931131093750002,"y":2.768312499999998,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872140468750002,"y":11.176712499999999,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":11.176712499999999,"w":43.353999999999964,"clr":-1,"A":"left","R":[{"T":"For%20policies%20issued%20prior%20to%201%2F1%2F13%2C%20enter%20the%20total%20annual%20eligible%20premiums%20paid%20on%20or%20after%201%2F1%2F08%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093750002,"y":13.370451250000002,"w":22.4,"clr":-1,"A":"left","R":[{"T":"the%20first%2012%20months%20of%20the%20policy.%20See%20Instructions.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.03292296875,"y":13.370451250000002,"w":10.00800000000001,"clr":-1,"A":"left","R":[{"T":"...................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.22900109375001,"y":13.370451250000002,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44536046875,"y":13.370451250000002,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093750002,"y":14.997946875000002,"w":19.009000000000004,"clr":-1,"A":"left","R":[{"T":"may%20earn%20and%20use%20for%20the%20life%20of%20this%20policy.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":36.022907343750006,"y":14.997946875000002,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"...............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.16294953125001,"y":14.997946875000002,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44548078125001,"y":14.997946875000002,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286251093750012,"y":16.194203125000005,"w":28.95699999999999,"clr":-1,"A":"left","R":[{"T":"through%202012%2C%20excluding%20any%20carryovers%20from%20years%20prior%20to%202008.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":48.05295421875002,"y":16.194203125000005,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"...........%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.160062031250014,"y":16.194203125000005,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.442605312500014,"y":16.194203125000005,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":49.72603187500001,"y":17.915459375,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"......%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.228519843750014,"y":17.915459375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44489125000001,"y":17.915459375,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286263125000005,"y":20.577996875000007,"w":20.064000000000004,"clr":-1,"A":"left","R":[{"T":"and%2For%20your%20Virginia%20return.%20%20See%20instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.35718500000001,"y":20.577996875000007,"w":12.232000000000014,"clr":-1,"A":"left","R":[{"T":"...........................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.29566625000001,"y":20.577996875000007,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444653031250006,"y":20.577996875000007,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872203031249999,"y":21.249257500000002,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286265531249999,"y":21.249257500000002,"w":28.900000000000002,"clr":-1,"A":"left","R":[{"T":"2013%20credit%20limitation%20for%20the%20policy.%20Multiply%20Line%20%20F%20by%2015%25%20(.15).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":47.722109281250006,"y":21.249257500000002,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"............%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.09703271875001,"y":21.249257500000002,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.446938968750004,"y":21.249257500000002,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.872203031249999,"y":22.861790625,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286265531249999,"y":22.861790625,"w":28.015,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Section%201%2C%20enter%20the%20total%20amount%20from%20Line%20E.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":46.717499906250005,"y":22.861790625,"w":4.448,"clr":-1,"A":"left","R":[{"T":"...............%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.16176084375001,"y":22.861790625,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444292093750015,"y":22.861790625,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8722030312500095,"y":23.533046875,"w":0.556,"clr":-1,"A":"left","R":[{"T":"I%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28626553125001,"y":23.533046875,"w":28.125999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20Section%202%2C%20enter%20the%20total%20amount%20from%20Line%20G.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":47.05196865625001,"y":23.533046875,"w":4.17,"clr":-1,"A":"left","R":[{"T":"..............%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.69739209375001,"y":23.533046875,"w":0.556,"clr":-1,"A":"left","R":[{"T":"I%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44574185937502,"y":23.533046875,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285068421875017,"y":28.141715625000003,"w":8.615000000000002,"clr":-1,"A":"left","R":[{"T":"in%20the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.31913092187502,"y":28.141715625000003,"w":23.907999999999983,"clr":-1,"A":"left","R":[{"T":"......................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.29519342187502,"y":28.141715625000003,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445263015625024,"y":28.141715625000003,"w":8.896,"clr":-1,"A":"left","R":[{"T":"________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8710083281250185,"y":28.947984375000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28507082812502,"y":28.947984375000004,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009305203125024,"y":28.947984375000004,"w":16.680000000000017,"clr":-1,"A":"left","R":[{"T":"............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.22794114062503,"y":28.947984375000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444312546875025,"y":28.947984375000004,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871020359375025,"y":29.754253125,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285082859375024,"y":29.754253125,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653614109375027,"y":29.754253125,"w":23.629999999999985,"clr":-1,"A":"left","R":[{"T":".....................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.162743796875034,"y":29.754253125,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44528707812503,"y":29.754253125,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871032390625029,"y":30.560521875000006,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285094890625027,"y":30.560521875000006,"w":27.124,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20credit%20transferred%20to%20others%20in%20the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":45.71532926562502,"y":30.560521875000006,"w":5.282000000000002,"clr":-1,"A":"left","R":[{"T":"...................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.16359801562503,"y":30.560521875000006,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44612926562503,"y":30.560521875000006,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871032390625029,"y":31.366790625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285094890625027,"y":31.366790625,"w":12.894000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20D%20from%20Line%20C.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.667048015625028,"y":31.366790625,"w":19.460000000000004,"clr":-1,"A":"left","R":[{"T":"......................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.228326140625036,"y":31.366790625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444697546875034,"y":31.366790625,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285106921875025,"y":34.02920125000001,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%203-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69390379687503,"y":34.02920125000001,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.09431004687502,"y":34.02920125000001,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44421629687502,"y":34.02920125000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285106921875023,"y":36.391701250000004,"w":24.287000000000006,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Housing%20and%20Community%20Development.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":42.36945067187502,"y":36.391701250000004,"w":8.062000000000006,"clr":-1,"A":"left","R":[{"T":".............................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.29234442187503,"y":36.391701250000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.442414015625026,"y":36.391701250000004,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871046828125026,"y":37.197970000000005,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285109328125024,"y":37.197970000000005,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009343703125026,"y":37.197970000000005,"w":16.680000000000017,"clr":-1,"A":"left","R":[{"T":"............................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.22797964062504,"y":37.197970000000005,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444351046875035,"y":37.197970000000005,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8710588593750295,"y":38.004238750000006,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28512135937503,"y":38.004238750000006,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653652609375033,"y":38.004238750000006,"w":23.629999999999985,"clr":-1,"A":"left","R":[{"T":".....................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.16278229687504,"y":38.004238750000006,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445325578125036,"y":38.004238750000006,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286336515625035,"y":40.6667325,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%207-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69513339062503,"y":40.6667325,"w":11.120000000000012,"clr":-1,"A":"left","R":[{"T":"........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.22836464062504,"y":40.6667325,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44472401562504,"y":40.6667325,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285133390625033,"y":43.029232500000006,"w":22.397999999999993,"clr":-1,"A":"left","R":[{"T":"authorized%20by%20the%20Virginia%20Department%20of%20Forestry.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.033008390625035,"y":43.029232500000006,"w":9.452000000000009,"clr":-1,"A":"left","R":[{"T":"..................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60839432812503,"y":43.029232500000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77651079687504,"y":43.029232500000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871073296875036,"y":43.83550125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285135796875036,"y":43.83550125,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00937017187504,"y":43.83550125,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54005923437504,"y":43.83550125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77446548437505,"y":43.83550125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8710732968750445,"y":44.64177,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285135796875045,"y":44.64177,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653667046875047,"y":44.64177,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47472954687504,"y":44.64177,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77530767187505,"y":44.64177,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8710732968750445,"y":46.497990625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286338921875045,"y":46.497990625,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2021D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286338921875045,"y":47.022990625000006,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69272954687505,"y":47.022990625000006,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53801392187505,"y":47.022990625000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772420171875055,"y":47.022990625000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"x":33.605765625000004,"y":48.412187499999995,"w":68.488,"clr":0,"A":"left","R":[{"T":"Continue%20to%20Page%205","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM4","EN":0},"TI":558,"AM":1024,"x":6.410989062500001,"y":4.358500000000002,"w":30.316979687499998,"h":0.8973750000000015,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE2","EN":0},"TI":559,"AM":1024,"x":41.81959375,"y":4.19883333333333,"w":21.937437499999994,"h":0.9142291666666628,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"SPPOLICY","EN":0},"TI":560,"AM":0,"x":38.980734375,"y":9.61175,"w":11.364375,"h":0.8333333333333334,"TU":"Part 18. Line A. SPOUSE- date the policy was issued. The policy's issue date must be on or after 1/1/2006. If the policy was issued on or after 1/1/2013, skip to Section 2, Line F. Otherwise, complete Section 1.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TPPOLICY","EN":0},"TI":561,"AM":0,"x":53.797390625000006,"y":9.698749999999999,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Part 18. Line A. YOU - date the policy was issued. The policy's issue date must be on or after 1/1/2006. If the policy was issued on or after 1/1/2013, skip to Section 2, Line F. Otherwise, complete Section 1.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREMIUM","EN":0},"TI":562,"AM":0,"x":53.62225,"y":13.5743125,"w":11.385000000000002,"h":0.8333333333333334,"TU":"For policies issued prior to 1/1/12, enter the total annual eligible premiums paid on or after 1/1/07Section 1. Line B. for policies issued prior to 1/1/13, enter the total annual eligible premiums paid on or after 1/1/08 for the policy's first 12 months of coverage. Eligible premiums are the premiums actually paid on or after 1/1/08 for the first 12 months of coverage minus any amounts you deducted on your federal retur and / or your Virginia return. Do not include any premiums paid for coverage beyond the first 12 months of the policy. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT80A","EN":0},"TI":563,"AM":1024,"x":53.62225,"y":15.024375000000001,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Multiply Line B by 15% (.15)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDCLM","EN":0},"TI":564,"AM":0,"x":53.62225,"y":16.279312500000003,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Total amount of LTC credit claimed on your tax returns for 2007Line D. Enter the total amount of LTC credit claimed on your tax returns for 2008 through 2012, excluding any carryovers from years prior to 2008."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXCRD","EN":0},"TI":565,"AM":1024,"x":53.642875,"y":18.0043125,"w":11.364375000000008,"h":0.8333333333333334,"TU":"Subtract Line D from Line C."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PREPAID","EN":0},"TI":566,"AM":0,"x":53.642875,"y":20.6318125,"w":11.364375000000008,"h":0.8333333333333334,"TU":"For policies issued on or after 1/1/12, enter the amount of premium paid in 2012 less the amountLine F. For policies issued on or after 1/1/13, enter the amount of premium paid during taxable year 2013 less the amount deducted on your federal return and / or your Virginia return. See instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MULT81","EN":0},"TI":567,"AM":1024,"x":53.642875,"y":21.4968125,"w":11.364375000000008,"h":0.8333333333333334,"TU":"2012 credit limitation"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT80C","EN":0},"TI":568,"AM":1024,"x":53.62225,"y":22.946874999999995,"w":11.385000000000002,"h":0.8333333333333334,"TU":"If you completed Section 1, enter the total amount from Line E"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADD","EN":0},"TI":569,"AM":1024,"x":53.62225,"y":23.803,"w":11.385000000000002,"h":0.8333333333333334,"TU":"If you completed Section 2, enter the total amount from Line G"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":570,"AM":0,"x":69.166625,"y":25.03620833333333,"w":21.600046875,"h":0.9121041666666704,"TU":"Line 18J. Credit allowable this year. Enter the amount from Line H or I or balance of maximum credit available, whichever is less. If filing a joint return, and completing both Sections 1 and 2, add Lines H and I and enter the total or balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIO","EN":0},"TI":571,"AM":0,"x":53.62225,"y":28.0830625,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Amount of Biodiesel and Green Diesel Fuels Tax authorizedPart 19. Line A. Enter the amount of Biodiesel and Green Fuels Tax Credit authorized by the Virgina Department of Taxation or the amount transferred to you in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARRYOVR","EN":0},"TI":572,"AM":0,"x":53.62225,"y":28.9555,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOADD","EN":0},"TI":573,"AM":1024,"x":53.62225,"y":29.758062500000005,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOTRANS","EN":0},"TI":574,"AM":0,"x":53.62225,"y":30.568,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Line D. Enter the total credit transferred to others in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOSUB","EN":0},"TI":575,"AM":1024,"x":53.62225,"y":31.433062499999995,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Subtract Line D from Line C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOCRED","EN":0},"TI":576,"AM":0,"x":69.101140625,"y":32.55770833333333,"w":21.600046875000015,"h":0.9122291666666674,"TU":"Line 19F. Credit allowable this year. Enter the amount from Line E or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BIOCARRY","EN":0},"TI":577,"AM":1024,"x":53.62225,"y":34.157999999999994,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L90","EN":0},"TI":578,"AM":0,"x":53.62225,"y":36.4620625,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Part 20. Line A. Amount of the Livable Home Tax Credit authorized by the Department of Housing and Community Development."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L91","EN":0},"TI":579,"AM":0,"x":53.62225,"y":37.2955,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L92","EN":0},"TI":580,"AM":1024,"x":53.62225,"y":38.1055,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L93","EN":0},"TI":581,"AM":0,"x":81.42303125000001,"y":39.01233333333334,"w":9.337453125,"h":0.9529791666666654,"TU":"Line 20D. Credit allowable this year. Enter the amount from Line E or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L94","EN":0},"TI":582,"AM":1024,"x":53.62225,"y":40.7055,"w":11.385000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L95","EN":0},"TI":583,"AM":0,"x":52.962250000000004,"y":43.095499999999994,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Part 21. Line A. Enter the amount of Riparian Waterway Buffer Tax Credit authorized by the Virginia Department of Forestry."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L96","EN":0},"TI":584,"AM":0,"x":52.962250000000004,"y":43.90550625,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L97","EN":0},"TI":585,"AM":1024,"x":52.962250000000004,"y":44.708006250000004,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L98","EN":0},"TI":586,"AM":0,"x":69.03239062499999,"y":45.69295833333334,"w":21.600046875000015,"h":0.9121229166666657,"TU":"Line 21D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L99","EN":0},"TI":587,"AM":1024,"x":53.0371875,"y":47.1202125,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"VASCR3"}},"id":{"Id":"Add_VASCR3","EN":0},"TI":588,"AM":0,"x":46.26789062500001,"y":48.525087500000005,"w":6.385671875000004,"h":0.8333333333333334}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VASCR3.json b/test/data/va/form_org/VASCR3.json new file mode 100755 index 00000000..a30852d4 --- /dev/null +++ b/test/data/va/form_org/VASCR3.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"green Sch CR WEB 11 13 13.pdf","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.42498437500001,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":16.016374999999996,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":16.016374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":16.016374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":16.016374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":16.016374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":16.016374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":16.016374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":16.016374999999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":14.769500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":16.01325,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":18.835625000000004,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":18.835625000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":18.835625000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":18.835625000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":18.835625000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":18.835625000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":18.835625000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":18.835625000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":17.58875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":18.8325,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":25.493062499999997,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":25.493062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":25.493062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":25.493062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":25.493062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":25.493062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":25.493062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":25.493062499999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":24.2461875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":25.4899375,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":32.76225,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":32.76225,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":32.76225,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":32.76225,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":32.76225,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":32.76225,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":32.76225,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":32.76225,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":31.515374999999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":32.759125000000004,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":85.749984375,"y":36.8874375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":38.1343125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":36.8874375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":38.1311875,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":44.3631875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":44.3631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":44.3631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":44.3631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":44.3631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":44.3631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":44.3631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":44.3631875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":43.1163125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":44.3600625,"w":6,"l":3.2054687500000028},{"oc":"#c9c9c9","x":41.136734375,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":41.102359375000006,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.611734375000005,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.57735937500001,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.086734375000006,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.052359374999995,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.56173437500001,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.527359375,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.036734374999995,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.002359375000005,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.511734375,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.477359375000006,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.986734375000005,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.95235937500001,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.461734375000006,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.427359374999995,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.93673437500001,"y":4.322062499999997,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.90235937500001,"y":5.568937499999994,"w":6,"l":2.4750000000000028},{"oc":"#161616","x":6.3612656250000015,"y":5.979374999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":6.3612656250000015,"y":3.791874999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":69.13551562500001,"y":46.2193125,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":65.57289062500001,"y":6.556437499999997,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":95.296609375,"y":6.556437499999997,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":95.24934375000001,"y":46.23805625,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#d2d2d2","x":68.76014062500002,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":14.647625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":17.466875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":24.124312500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":31.393500000000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":36.7655625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":36.7655625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":36.7655625,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":71.235140625,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":73.71014062500001,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":76.185140625,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":78.660140625,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":81.13514062500002,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":83.610140625,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":86.08514062500001,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":88.560140625,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":91.035140625,"y":42.9944375,"w":6,"l":1.3500000000000039},{"oc":"#c9c9c9","x":41.47189062500001,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":43.946890625,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":46.421890625,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":48.896890625000005,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":51.371890625000006,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":53.84689062500001,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":56.321890624999995,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":58.79689062500001,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":61.271890625000005,"y":4.200187500000002,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":63.66971875000001,"y":4.2064375000000025,"w":6,"l":1.484375},{"oc":"#161616","x":36.894859375,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":6.3612656250000015,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":69.30739062500001,"y":45.3974375,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":65.74476562500001,"y":6.493937500000002,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":97.556765625,"y":6.5064375000000005,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":97.51809375,"y":45.397431250000004,"w":3,"l":0.8843749999999962}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.707796875,"y":15.647624999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":15.628937499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":18.466875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":18.448125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":25.1243125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":25.1055625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":32.3935,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":32.37475,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":43.994437500000004,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":43.9756875,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1}],"Texts":[{"oc":"#161616","x":5.93751375,"y":6.395099999999999,"w":22.224000000000007,"clr":-1,"A":"left","R":[{"T":"PART%2022%20-%20LAND%20PRESERVATION%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":13.286239062499998,"y":11.626287499999998,"w":7.559000000000003,"clr":-1,"A":"left","R":[{"T":"the%20current%20year.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.536503484375,"y":13.407529374999996,"w":1.167,"clr":-1,"A":"left","R":[{"T":"%20F%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285876921875001,"y":13.407529374999996,"w":13.615000000000004,"clr":-1,"A":"left","R":[{"T":"Credit(s)%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.286237859375001,"y":14.15753125,"w":5.890000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":20.282530046875003,"y":14.15753125,"w":19.564000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20E%2C%20YOU%20column%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286237859375005,"y":14.682531250000002,"w":27.67600000000001,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.376093749999995,"y":15.2075625,"w":1.723,"clr":-1,"A":"left","R":[{"T":"22F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":14.600171875,"y":16.29506875,"w":24.450999999999993,"clr":-1,"A":"left","R":[{"T":"Be%20sure%20to%20claim%20the%20proper%20credit%20on%20the%20total%20lines.","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.53658890625,"y":17.04511875,"w":1.334,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":17.04511875,"w":8.058000000000002,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":22.935506093750003,"y":17.04511875,"w":21.28700000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%20E%2C%20SPOUSE%20column","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286563906250004,"y":17.570118750000002,"w":27.67600000000001,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.08906250000001,"y":18.095125,"w":1.8900000000000001,"clr":-1,"A":"left","R":[{"T":"22G","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":18.90134375,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":18.90134375,"w":18.618000000000002,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20E%20less%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":20.4576,"w":5.001000000000001,"clr":-1,"A":"left","R":[{"T":"PART%2023%20-%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":12.89845125,"y":20.4576,"w":21.612000000000005,"clr":-1,"A":"left","R":[{"T":"COMMUNITY%20OF%20OPPORTUNITY%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":24.26386875,"w":1.556,"clr":-1,"A":"left","R":[{"T":"%20%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":24.26386875,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":24.26386875,"w":13.172,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%20C%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":24.788868750000002,"w":40.68699999999994,"clr":-1,"A":"left","R":[{"T":"the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":24.788875,"w":1.834,"clr":-1,"A":"left","R":[{"T":"23D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":27.0951,"w":23.33600000000001,"clr":-1,"A":"left","R":[{"T":"PART%2024%20-%20GREEN%20JOBS%20CREATION%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":31.4763625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":31.4763625,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":31.4763625,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":32.0013625,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":32.001375,"w":1.834,"clr":-1,"A":"left","R":[{"T":"24D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":34.30765,"w":23.168000000000003,"clr":-1,"A":"left","R":[{"T":"PART%2025%20-%20POLITICAL%20CONTRIBUTIONS%20CREDIT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":36.89510625,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":36.89510625,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":36.89510625,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20A","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":37.420106249999996,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20...............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":37.420125,"w":1.834,"clr":-1,"A":"left","R":[{"T":"25B","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":38.4514,"w":27.946000000000016,"clr":-1,"A":"left","R":[{"T":"PART%2026%20-%20FARM%20WINERIES%20AND%20VINEYARDS%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":42.832637500000004,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":42.832637500000004,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":42.832637500000004,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":43.3576375,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":43.35765,"w":1.834,"clr":-1,"A":"left","R":[{"T":"26D","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000002,"y":15.054899999999998,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":15.230550000000003,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":15.068925000000002,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":17.874062499999997,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":18.049725,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":17.888099999999998,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":24.531562500000003,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":24.707175000000003,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":24.545550000000002,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":31.80075,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":31.976325000000003,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":31.814774999999997,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":37.1728125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":37.348425,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":43.4017125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":43.57734,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":43.415715,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.937500000000001,"y":2.046015000000002,"w":9.059000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":24.624953125,"y":2.0460000000000016,"w":3.4470000000000005,"clr":-1,"A":"left","R":[{"T":"%20Page%205","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.572978125,"y":3.2438750000000027,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.33755000000001,"y":4.393274999999998,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.22753125,"y":4.412025,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931131093750002,"y":3.3934999999999986,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286239062499998,"y":7.951287500000001,"w":22.067999999999984,"clr":-1,"A":"left","R":[{"T":"transferred%20in%20the%20current%20year.%20............................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.06383125,"y":7.951287500000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.446431249999996,"y":7.951287500000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870973437499989,"y":9.263787500000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28623906249999,"y":9.263787500000001,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00927031249999,"y":9.263787500000001,"w":6.394000000000004,"clr":-1,"A":"left","R":[{"T":".....................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.062146874999996,"y":9.263787500000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.44474687499999,"y":9.263787500000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871093749999989,"y":7.426287500000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28635937499999,"y":7.426287500000001,"w":17.675000000000004,"clr":-1,"A":"left","R":[{"T":"Credit%20amount%20authorized%20or%20the%20amount","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870973437499989,"y":10.29501,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28623906249999,"y":10.29501,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.65356718749999,"y":10.29501,"w":13.344000000000015,"clr":-1,"A":"left","R":[{"T":"..............................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.06298906249999,"y":10.29501,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.445228124999986,"y":10.29501,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870973437499989,"y":11.10127875,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28623906249999,"y":11.10127875,"w":15.840000000000007,"clr":-1,"A":"left","R":[{"T":"Total%20credit%20transferred%20to%20others%20in%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":21.98206562499999,"y":11.626278750000003,"w":14.734000000000018,"clr":-1,"A":"left","R":[{"T":"...................................................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.06262812499999,"y":11.626278750000003,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444867187499995,"y":11.626278750000003,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870973437499989,"y":12.657514375000005,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28623906249999,"y":12.657514375000005,"w":12.894000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20Line%20D%20from%20Line%20C.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.666989062499994,"y":12.657514375000005,"w":9.174000000000008,"clr":-1,"A":"left","R":[{"T":"...............................%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":40.0625078125,"y":12.657514375000005,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.444746875,"y":12.657514375000005,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286239062499998,"y":15.207518125000002,"w":16.954000000000004,"clr":-1,"A":"left","R":[{"T":"(not%20to%20exceed%20%24100%2C000%20per%20taxpayer)","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.6840203125,"y":15.207518125000002,"w":18.62600000000001,"clr":-1,"A":"left","R":[{"T":"...................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":56.3369390625,"y":15.207518125000002,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286359374999993,"y":18.095110000000005,"w":16.954000000000004,"clr":-1,"A":"left","R":[{"T":"(not%20to%20exceed%20%24100%2C000%20per%20taxpayer)","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":33.68414062499999,"y":18.095110000000005,"w":16.40200000000002,"clr":-1,"A":"left","R":[{"T":"...........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.553389062499996,"y":18.095110000000005,"w":7.114000000000001,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285035937499996,"y":19.42634375000001,"w":19.787000000000003,"clr":-1,"A":"left","R":[{"T":"Line%2022F%20and%2For%20Line%2022G%20(see%20instructions).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.021489062499995,"y":19.42634375000001,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"......%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.391645312499996,"y":19.42634375000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":53.443423437499995,"y":19.42634375000001,"w":9.452000000000002,"clr":-1,"A":"left","R":[{"T":"_________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285035937499996,"y":22.013854375000008,"w":24.287000000000006,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Housing%20and%20Community%20Development.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":42.3693796875,"y":22.013854375000008,"w":7.506000000000006,"clr":-1,"A":"left","R":[{"T":"...........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60420625,"y":22.013854375000008,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.772331140625,"y":22.013854375000008,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870984265624996,"y":21.488854375000006,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286009265624998,"y":21.488854375000006,"w":19.455000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20credit%20authorized%20by%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870984265624996,"y":22.763860625000007,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285046765624998,"y":22.763860625000007,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009281140625,"y":22.763860625000007,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.539970203125,"y":22.763860625000007,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774376453125,"y":22.763860625000007,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870984265625005,"y":23.513866875000005,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285046765625005,"y":23.513866875000005,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.65357801562501,"y":23.513866875000005,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47464051562501,"y":23.513866875000005,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77521864062501,"y":23.513866875000005,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8709842656250135,"y":25.538879375000008,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285046765625012,"y":25.538879375000008,"w":22.675000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2023D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285046765625012,"y":26.06387937500001,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69143739062501,"y":26.06387937500001,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53720301562501,"y":26.06387937500001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77160926562502,"y":26.06387937500001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285046765625012,"y":28.651385625000007,"w":20.51,"clr":-1,"A":"left","R":[{"T":"with%20an%20annual%20salary%20that%20is%20%2450%2C000%20or%20more.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":37.690437390625014,"y":28.651385625000007,"w":11.398000000000012,"clr":-1,"A":"left","R":[{"T":".........................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60529989062501,"y":28.651385625000007,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77341635937502,"y":28.651385625000007,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871106984375016,"y":28.126385625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285169484375015,"y":28.126385625,"w":24.568000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20for%20each%20green%20job%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8709866718750146,"y":29.695129375000008,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285049171875015,"y":29.695129375000008,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00928354687502,"y":29.695129375000008,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53997260937502,"y":29.695129375000008,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77437885937503,"y":29.695129375000008,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870986671875023,"y":30.726365000000005,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285049171875023,"y":30.726365000000005,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653580421875027,"y":30.726365000000005,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.474642921875024,"y":30.726365000000005,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775221046875025,"y":30.726365000000005,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871106984375023,"y":32.75137750000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286372609375023,"y":32.75137750000001,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2024D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286252296875025,"y":33.2763775,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69504917187503,"y":33.2763775,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54033354687502,"y":33.2763775,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77473979687503,"y":33.2763775,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286252296875025,"y":35.86388375000001,"w":26.28700000000001,"clr":-1,"A":"left","R":[{"T":"limited%20to%20%2425%20for%20individuals%20or%20%2450%20for%20married%20filing%20jointly.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":44.71308042187503,"y":35.86388375000001,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":"....................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.608189796875024,"y":35.86388375000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77630145312503,"y":35.86388375000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870984265625021,"y":35.33888375000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286249890625022,"y":35.33888375000001,"w":29.62400000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20of%20the%20amount%20of%20eligible%20political%20contributions.%20Credit%20is%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871104578125022,"y":39.482665000000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285167078125022,"y":39.482665000000004,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28504676562502,"y":40.00766500000001,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.332531140625026,"y":40.00766500000001,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60686395312503,"y":40.00766500000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77498042187503,"y":40.00766500000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870986671875023,"y":41.05140875000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285049171875023,"y":41.05140875000001,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00928354687503,"y":41.05140875000001,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53997260937503,"y":41.05140875000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774378859375034,"y":41.05140875000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870986671875034,"y":42.082640000000005,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285049171875032,"y":42.082640000000005,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653580421875034,"y":42.082640000000005,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47464292187504,"y":42.082640000000005,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77522104687504,"y":42.082640000000005,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286252296875043,"y":44.632652500000006,"w":21.84,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.36278354687505,"y":44.632652500000006,"w":10.00800000000001,"clr":-1,"A":"left","R":[{"T":"....................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53997260937505,"y":44.632652500000006,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77437885937505,"y":44.632652500000006,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.87110698437505,"y":44.10765250000001,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28637260937505,"y":44.10765250000001,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2026D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":43.45316792187504,"y":6.395065000000007,"w":4.446,"clr":-1,"A":"left","R":[{"T":"SPOUSE%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":57.57159917187505,"y":6.395065000000007,"w":2.167,"clr":-1,"A":"left","R":[{"T":"YOU","S":8,"TS":[0,10,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM5","EN":0},"TI":589,"AM":1024,"x":6.3502828125,"y":5.019770833333325,"w":30.317014062499997,"h":0.8412916666666774,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE5","EN":0},"TI":590,"AM":1024,"x":41.72025,"y":4.4935208333333305,"w":21.56309375000001,"h":0.9141666666666689,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL100","EN":0},"TI":591,"AM":0,"x":40.246078125000004,"y":7.826645833333335,"w":11.364375,"h":0.9066666666666615,"TU":"Part 22. Line A. Credit amount authorized or the amount transferred in the current year. Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L100","EN":0},"TI":592,"AM":0,"x":53.611078125,"y":7.826645833333335,"w":11.384999999999996,"h":0.9066666666666615,"TU":"Part 22. Line A. Credit amount authorized or the amount transferred in the current year. You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL101","EN":0},"TI":593,"AM":0,"x":40.357109375,"y":9.10270833333333,"w":11.364375000000008,"h":0.9066666666666663,"TU":"Line B. Carryover credit from prior year(s). Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L101","EN":0},"TI":594,"AM":0,"x":53.68601562500001,"y":9.12995833333333,"w":11.385000000000002,"h":0.9066666666666711,"TU":"Line B. Carryover credit from prior year(s). You."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL102","EN":0},"TI":595,"AM":1024,"x":40.246078125000004,"y":10.192708333333334,"w":11.364375,"h":0.9066666666666663,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L102","EN":0},"TI":596,"AM":1024,"x":53.68601562500001,"y":10.157458333333333,"w":11.385000000000002,"h":0.9066666666666663,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPTOT","EN":0},"TI":597,"AM":0,"x":40.246078125000004,"y":11.465208333333331,"w":11.364375,"h":0.9066666666666711,"TU":"Line D. Total credit transferred to others in current year. Spouse."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTTRANS","EN":0},"TI":598,"AM":0,"x":53.68601562500001,"y":11.52577083333333,"w":11.385000000000002,"h":0.9066666666666711,"TU":"Line D. Total credit transferred to others in the current year."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPSUB","EN":0},"TI":599,"AM":1024,"x":40.246078125000004,"y":12.492708333333331,"w":11.364375,"h":0.9066666666666711,"TU":"Subtract Line D from Line C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SUBBFRA","EN":0},"TI":600,"AM":1024,"x":53.68601562500001,"y":12.519958333333335,"w":11.385000000000002,"h":0.9066666666666663,"TU":"Subtract Line D from Line C"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L103","EN":0},"TI":601,"AM":0,"x":69.061953125,"y":15.001020833333333,"w":21.60021875000001,"h":0.9121041666666656,"TU":"Line F. Your credit. Enter the amount from Line E, You column or the balance of maximum credit available, whichever is less (not to exceed $100,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL103","EN":0},"TI":602,"AM":0,"x":69.06178125000001,"y":17.815708333333333,"w":21.60004687499999,"h":0.9121666666666689,"TU":"Line 22G. Spouse'sr credit. Enter the amount from Line E, Spouse column or the balance of maximum credit available, whichever is less (not to exceed $100,000 per taxpayer)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SPL104","EN":0},"TI":603,"AM":1024,"x":40.023328125,"y":19.303270833333332,"w":11.364375000000008,"h":0.9066666666666663,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L104","EN":0},"TI":604,"AM":1024,"x":53.592000000000006,"y":19.3175,"w":11.385000000000002,"h":0.8538750000000022,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDCO","EN":0},"TI":605,"AM":0,"x":52.760125,"y":21.87,"w":12.045000000000002,"h":0.8810624999999987,"TU":"Amount of credit authorized by the Department of Housing and Community DevelopmentPart 23. Line A. Enter the amount of credit authorized by the Department of Housing and Community Development."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CPCARCR","EN":0},"TI":606,"AM":0,"x":52.760125,"y":22.897499999999997,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDCO","EN":0},"TI":607,"AM":1024,"x":52.760125,"y":23.647499999999997,"w":12.045000000000002,"h":0.8333333333333334,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOWCO","EN":0},"TI":608,"AM":0,"x":69.06178125000001,"y":24.469145833333332,"w":21.60004687499999,"h":0.9121041666666704,"TU":"Line 23D. Credit allowable this year. Ener the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARRYCO","EN":0},"TI":609,"AM":1024,"x":52.932,"y":25.940833333333334,"w":12.045000000000002,"h":0.9066666666666663,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CREDGJ","EN":0},"TI":610,"AM":0,"x":52.932,"y":28.528333333333336,"w":12.045000000000002,"h":0.9066666666666615,"TU":"Part 24. Line A. Enter the total eligible credit amount for each green job with an annual salary that is $50,000 or more."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GJCARCR","EN":0},"TI":611,"AM":0,"x":52.932,"y":29.570833333333336,"w":12.045000000000002,"h":0.9066666666666663,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDGJ","EN":0},"TI":612,"AM":1024,"x":52.932,"y":30.605833333333333,"w":12.045000000000002,"h":0.9066666666666663,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOWGJ","EN":0},"TI":613,"AM":0,"x":69.152015625,"y":31.75452083333333,"w":21.60004687499999,"h":0.9121041666666704,"TU":"Line 24D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CARRYGJ","EN":0},"TI":614,"AM":1024,"x":52.932,"y":33.155833333333334,"w":12.045000000000002,"h":0.9066666666666663,"TU":"Carryover credit to next year"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L105","EN":0},"TI":615,"AM":0,"x":52.760125,"y":35.708333333333336,"w":12.045000000000002,"h":0.9066666666666663,"TU":"50% of the amount of eligible political contributionsPart 25. Line A. Enter 50% of the amoount of eligible political contributions. Credit is limited to $25 for individuals or $50 for married filing jointly."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L106","EN":0},"TI":616,"AM":0,"x":86.267671875,"y":37.08289583333333,"w":4.425093750000016,"h":0.9530416666666639,"TU":"Line B. Credit allowable this year. Enter the amount from Line A or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FARMCRD","EN":0},"TI":617,"AM":0,"x":52.69601562500001,"y":39.85583333333333,"w":12.045000000000002,"h":0.9066666666666663,"TU":"Total eligible credit amount authorized by the Department of TaxationPart 26. Line A. Enter the total eligible credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FARMCO","EN":0},"TI":618,"AM":0,"x":52.760125,"y":40.89833333333333,"w":12.045000000000002,"h":0.9066666666666663,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDFARM","EN":0},"TI":619,"AM":1024,"x":52.760125,"y":41.975,"w":12.045000000000002,"h":0.8538750000000022,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLOWFW","EN":0},"TI":620,"AM":0,"x":69.147546875,"y":43.33462083333333,"w":21.600046875000015,"h":0.9121916666666626,"TU":"Line 26D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FMCARNY","EN":0},"TI":621,"AM":1024,"x":52.820968750000006,"y":44.49648333333334,"w":12.044999999999995,"h":0.9066666666666663,"TU":"Carryover credit to next year"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#d2d2d2","x":68.42498437500001,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":14.244124999999997,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":14.244124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":14.244124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":14.244124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":14.244124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":14.244124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":14.244124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":14.244124999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":12.99725,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":14.241,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":21.454562499999998,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":21.454562499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":21.454562499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":21.454562499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":21.454562499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":21.454562499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":21.454562499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":21.454562499999998,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":20.207687500000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":21.4514375,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":28.666749999999997,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":28.666749999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":28.666749999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":28.666749999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":28.666749999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":28.666749999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":28.666749999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":28.666749999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":27.419875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":28.663625,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":36.378625,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":36.378625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":36.378625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":36.378625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":36.378625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":36.378625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":36.378625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":36.378625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":35.131750000000004,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":36.375499999999995,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":40.1284375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":40.1284375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":40.1284375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":40.1284375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":40.1284375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":40.1284375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":40.1284375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":40.1284375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":38.8815625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":40.1253125,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":44.8513125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":44.8513125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":44.8513125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":44.8513125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":44.8513125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":44.8513125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":44.8513125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":44.8513125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":43.604437499999996,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":44.8481875,"w":6,"l":3.2054687500000028},{"oc":"#c9c9c9","x":41.136734375,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":41.102359375000006,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.611734375000005,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.57735937500001,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.086734375000006,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.052359374999995,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.56173437500001,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.527359375,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.036734374999995,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.002359375000005,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.511734375,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.477359375000006,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.986734375000005,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.95235937500001,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.461734375000006,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.427359374999995,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.93673437500001,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.90235937500001,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#161616","x":6.3612656250000015,"y":5.979374999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":6.3612656250000015,"y":3.791874999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":64.98748437500001,"y":47.17068750000001,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":96.44765625,"y":47.1893125,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":65.57289062500001,"y":6.306249999999996,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":96.44800000000002,"y":6.306124999999999,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#d2d2d2","x":68.76014062500002,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":12.875375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":20.085812500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":27.298000000000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":35.009875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":38.7596875,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":71.235140625,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":73.71014062500001,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":76.185140625,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":78.660140625,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":81.13514062500002,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":83.610140625,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":86.08514062500001,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":88.560140625,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#d2d2d2","x":91.035140625,"y":43.4825625,"w":6,"l":1.3500000000000039},{"oc":"#c9c9c9","x":41.47189062500001,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":43.946890625,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":46.421890625,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":48.896890625000005,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":51.371890625000006,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":53.84689062500001,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":56.321890624999995,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":58.79689062500001,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":61.271890625000005,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":63.66971875000001,"y":4.2616249999999996,"w":6,"l":1.484375},{"oc":"#161616","x":36.894859375,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":6.3612656250000015,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":65.15935937500001,"y":46.34881250000001,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":98.71640625000002,"y":46.348687500000004,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":65.74476562500001,"y":6.243749999999998,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":98.70832812500001,"y":6.2561250000000035,"w":3,"l":0.8843749999999998}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#d2d2d2","x":82.707796875,"y":13.875374999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":13.856625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":21.0858125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":21.067062500000002,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":28.298,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":28.27925,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":36.009875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":35.991125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":39.7596875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":39.740937499999994,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c9c9c9","x":6.187500000000001,"y":40.832812499999996,"w":43.3125,"h":1.0610000000000024,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":44.4825625,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":44.46381250000001,"w":1.8562500000000053,"h":0.4312499999999962,"clr":-1}],"Texts":[{"oc":"#161616","x":5.93751375,"y":6.2265000000000015,"w":27.94500000000001,"clr":-1,"A":"left","R":[{"T":"PART%2027%20-%20INTERNATIONAL%20TRADE%20FACILITY%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871057656250002,"y":7.257762500000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351292031250003,"y":7.257762500000004,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8710576562500005,"y":12.970248124999998,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286082656250002,"y":12.970248124999998,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.195568593750004,"y":12.970248124999998,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20E","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286082656250004,"y":13.495248124999998,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.376093749999995,"y":13.495249999999999,"w":1.723,"clr":-1,"A":"left","R":[{"T":"27F","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":15.801550000000002,"w":24.05800000000001,"clr":-1,"A":"left","R":[{"T":"PART%2028%20-%20PORT%20VOLUME%20INCREASE%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":20.18278125,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":20.18278125,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":20.18278125,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":20.70778125,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":20.7078125,"w":1.834,"clr":-1,"A":"left","R":[{"T":"28D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871057656250002,"y":21.4577875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286323281250004,"y":21.4577875,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2028D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":23.01405,"w":23.779000000000007,"clr":-1,"A":"left","R":[{"T":"PART%2029%20-%20BARGE%20AND%20RAIL%20USAGE%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871057656250002,"y":24.04529375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.351292031250003,"y":24.04529375,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":27.395274999999998,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":27.395274999999998,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.19568890625,"y":27.395274999999998,"w":13.395000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":27.920275000000004,"w":40.74199999999995,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":27.920312499999998,"w":1.834,"clr":-1,"A":"left","R":[{"T":"29D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.871057656250002,"y":28.670325000000002,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286323281250004,"y":28.670325000000002,"w":22.39700000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2029D","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":30.22655,"w":32.893000000000015,"clr":-1,"A":"left","R":[{"T":"PART%2030%20-%20RESEARCH%20AND%20DEVELOPMENT%20EXPENSES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":34.8890375,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":34.8890375,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.194967031250002,"y":34.8890375,"w":13.340000000000003,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the%20amount%20from%20Line%20A","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.253375000000005,"y":35.4140625,"w":1.834,"clr":-1,"A":"left","R":[{"T":"30D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":36.445299999999996,"w":22.670000000000005,"clr":-1,"A":"left","R":[{"T":"PART%2031%20-%20TELEWORK%20EXPENSES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.53658890625,"y":38.80785625,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285120156250002,"y":38.80785625,"w":12.393000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20allowable%20this%20year%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":28.194967031250002,"y":38.80785625,"w":14.785000000000002,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%20A%20or%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843749999,"y":39.33285625,"w":40.686999999999934,"clr":-1,"A":"left","R":[{"T":"balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20........................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":62.184625000000004,"y":39.332812499999996,"w":1.834,"clr":-1,"A":"left","R":[{"T":"31B","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":42.0516,"w":21.833000000000002,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20TOTAL%20NONREFUNDABLE%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":42.667218749999996,"w":1.223,"clr":-1,"A":"left","R":[{"T":"A.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968750002,"y":42.667218749999996,"w":39.63199999999998,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%202A%2C%203D%2C%204F%2C%205D%2C%206D%2C%207D%2C%208D%2C%208I%2C%209D%2C%2010G%2C%2011E%2C%2012D%2C%2013D%2C%2015D%2C%2015E%2C%2016D%2C%2017B%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":43.192218749999995,"w":28.404000000000007,"clr":-1,"A":"left","R":[{"T":"18J%2C%2019F%2C%2020D%2C%2021D%2C%2022F%2C%2022G%2C%2023D%2C%2024D%2C%2025B%2C%2026D%2C%2027F%2C%2028D%2C%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":46.72477640625,"y":43.192218749999995,"w":9.061000000000002,"clr":-1,"A":"left","R":[{"T":"29D%2C%2030D%2C%20and%2031B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968750004,"y":43.71721875,"w":31.345000000000017,"clr":-1,"A":"left","R":[{"T":"(if%20you%20claimed%20more%20than%20the%20maximum%20allowed%20nonrefundable%20credits%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968750004,"y":44.24221875,"w":37.30399999999992,"clr":-1,"A":"left","R":[{"T":"see%20instructions).%20..........................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":58.104173281250006,"y":44.24221875,"w":4.17,"clr":-1,"A":"left","R":[{"T":"...............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204359375,"y":44.2422125,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000002,"y":13.282649999999999,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":13.458224999999999,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":13.296675000000002,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":20.493062499999997,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":20.66865,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":20.507025,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":27.705250000000003,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":27.880799999999997,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":27.71925,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":35.417125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":35.59275,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":35.431125,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":39.166937499999996,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":39.342525,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":39.180975,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"x":7.3713500000000005,"y":40.8844375,"w":23.55600000000001,"clr":1,"A":"left","R":[{"T":"SECTION%202%20-%20TOTAL%20NONREFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.15124062500001,"y":43.889812500000005,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":44.0654625,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":43.9038375,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":5.937500000000001,"y":2.046037499999992,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.197984375,"y":2.0460000000000016,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%206","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.572978125,"y":3.298999999999997,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.33755000000001,"y":4.448475000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.22753125,"y":4.4672250000000036,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931131093750002,"y":3.3934999999999986,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.284999843750002,"y":7.782762500000004,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.332484218750004,"y":7.782762500000004,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60681703125001,"y":7.782762500000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77493710937501,"y":7.782762500000004,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870943359375007,"y":8.826506250000003,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285005859375005,"y":8.826506250000003,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.00924023437501,"y":8.826506250000003,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53992929687501,"y":8.826506250000003,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774335546875015,"y":8.826506250000003,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870943359375014,"y":9.857733125000001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285005859375012,"y":9.857733125000001,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653537109375016,"y":9.857733125000001,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47459960937501,"y":9.857733125000001,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77517773437502,"y":9.857733125000001,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870943359375014,"y":10.888960000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286208984375016,"y":10.888960000000003,"w":12.562000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%2050%25%20of%20tax%20per%20return.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.33369335937502,"y":10.888960000000003,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47508085937502,"y":10.888960000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77565898437502,"y":10.888960000000003,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286208984375023,"y":12.220228750000004,"w":22.063,"clr":-1,"A":"left","R":[{"T":"amount%20from%20%20Line%20C%20or%20Line%20D%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.697208984375024,"y":12.220228750000004,"w":9.73000000000001,"clr":-1,"A":"left","R":[{"T":"...................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53944804687503,"y":12.220228750000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77385429687503,"y":12.220228750000004,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871063671875024,"y":11.695228750000004,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286329296875028,"y":11.695228750000004,"w":26.175,"clr":-1,"A":"left","R":[{"T":"Maximum%20International%20Trade%20Facility%20Tax%20Credit%3A%20Enter%20the%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286208984375026,"y":14.770250000000004,"w":21.84,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%2010-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":39.362740234375025,"y":14.770250000000004,"w":10.00800000000001,"clr":-1,"A":"left","R":[{"T":"....................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.40361523437503,"y":14.770250000000004,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77156835937503,"y":14.770250000000004,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8710636718750315,"y":14.245250000000004,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286329296875032,"y":14.245250000000004,"w":22.28600000000001,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20to%20next%20year%3A%20Line%20C%20less%20Line%2027F","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28500585937503,"y":17.3578,"w":11.894000000000004,"clr":-1,"A":"left","R":[{"T":"the%20Virginia%20Port%20Authority.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":27.33028710937503,"y":17.3578,"w":20.016000000000002,"clr":-1,"A":"left","R":[{"T":"........................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60706367187503,"y":17.3578,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77518014062503,"y":17.3578,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871066078125034,"y":16.832800000000002,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285128578125033,"y":16.832800000000002,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870945765625031,"y":18.401539375000002,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285008265625033,"y":18.401539375000002,"w":31.736999999999934,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53993170312504,"y":18.401539375000002,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77433795312504,"y":18.401539375000002,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.8709457656250414,"y":19.432761875,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285008265625041,"y":19.432761875,"w":8.561000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.452617640625043,"y":19.432761875,"w":23.351999999999986,"clr":-1,"A":"left","R":[{"T":"%20...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.47460201562504,"y":19.432761875,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77518014062505,"y":19.432761875,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286211390625043,"y":21.9827875,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69500826562504,"y":21.9827875,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54029264062504,"y":21.9827875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77469889062505,"y":21.9827875,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285008265625041,"y":24.57029375,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.332492640625045,"y":24.57029375,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60682545312505,"y":24.57029375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77494553125005,"y":24.57029375,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870951781250044,"y":25.6140375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285014281250044,"y":25.6140375,"w":15.613000000000008,"clr":-1,"A":"left","R":[{"T":"Carryover%20credit%20from%20prior%20year(s).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.009248656250044,"y":25.6140375,"w":16.12400000000002,"clr":-1,"A":"left","R":[{"T":"..........................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.53993771875005,"y":25.6140375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77434396875005,"y":25.6140375,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870951781250053,"y":26.645268750000003,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285014281250051,"y":26.645268750000003,"w":8.839000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20Lines%20A%20and%20B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":23.653545531250053,"y":26.645268750000003,"w":23.073999999999987,"clr":-1,"A":"left","R":[{"T":"...................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.474608031250064,"y":26.645268750000003,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.775186156250065,"y":26.645268750000003,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286217406250062,"y":29.195325,"w":21.284,"clr":-1,"A":"left","R":[{"T":"(applicable%20only%20within%205-year%20carryover%20period).%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":38.69501428125006,"y":29.195325,"w":10.56400000000001,"clr":-1,"A":"left","R":[{"T":"......................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.54029865625006,"y":29.195325,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774704906250065,"y":29.195325,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28501428125006,"y":31.78283125,"w":12.673000000000005,"clr":-1,"A":"left","R":[{"T":"the%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":28.332498656250063,"y":31.78283125,"w":19.182000000000006,"clr":-1,"A":"left","R":[{"T":".....................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.606831468750066,"y":31.78283125,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.774951546875066,"y":31.78283125,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870957796875063,"y":32.826575,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285020296875063,"y":32.826575,"w":10.449000000000002,"clr":-1,"A":"left","R":[{"T":"Reserved%20for%20future%20use","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871078109375061,"y":31.257831250000002,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28514060937506,"y":31.257831250000002,"w":22.511000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20eligible%20credit%20amount%20authorized%20by%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.870957796875061,"y":33.85780625,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285020296875063,"y":33.85780625,"w":10.727000000000002,"clr":-1,"A":"left","R":[{"T":"Reserved%20for%20future%20use%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285020296875063,"y":35.4140375,"w":27.67600000000001,"clr":-1,"A":"left","R":[{"T":"or%20the%20balance%20of%20maximum%20credit%20available%2C%20whichever%20is%20less.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":46.38058279687507,"y":35.4140375,"w":13.066000000000015,"clr":-1,"A":"left","R":[{"T":"..............................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":7.871078109375063,"y":37.4765875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28514060937506,"y":37.4765875,"w":28.957000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20of%20Telework%20Expenses%20Tax%20Credit%20authorized%20by","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.285020296875063,"y":38.0015875,"w":16.285000000000007,"clr":-1,"A":"left","R":[{"T":"the%20Virginia%20Department%20of%20Taxation.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":32.67819217187506,"y":38.0015875,"w":15.56800000000002,"clr":-1,"A":"left","R":[{"T":".......................................................%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":51.60767967187507,"y":38.0015875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":52.77519457812507,"y":38.0015875,"w":10.008000000000003,"clr":-1,"A":"left","R":[{"T":"__________________","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM6","EN":0},"TI":622,"AM":1024,"x":6.498146875000001,"y":5.145375000000001,"w":30.316962500000002,"h":0.8701250000000016,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE6","EN":0},"TI":623,"AM":1024,"x":41.837468750000006,"y":4.615520833333335,"w":21.93743749999999,"h":0.9141666666666689,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTERCR","EN":0},"TI":624,"AM":0,"x":53.031,"y":7.688458333333334,"w":12.045000000000009,"h":0.9141666666666689,"TU":"ttotal eligible credit amount authorized by the Department of TaxationPart 27. Line A. Enter the total credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTERCO","EN":0},"TI":625,"AM":0,"x":53.031,"y":8.730958333333328,"w":12.045000000000009,"h":0.9141666666666689,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDINTR","EN":0},"TI":626,"AM":1024,"x":53.031,"y":9.765958333333336,"w":12.045000000000009,"h":0.9141666666666595,"TU":"Add Lines A and B"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HALFTXRN","EN":0},"TI":627,"AM":1024,"x":53.031,"y":10.800958333333332,"w":12.045000000000009,"h":0.9066666666666663,"TU":"Enter 50% of tax per return"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"MAXINTCR","EN":0},"TI":628,"AM":1024,"x":53.031,"y":12.128458333333333,"w":12.045000000000009,"h":0.9141666666666689},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLINTCR","EN":0},"TI":629,"AM":0,"x":69.207015625,"y":13.195895833333338,"w":21.600046875000015,"h":0.9121041666666562,"TU":"Line 27F. Credit allowable this year. Enter the amount from Line E or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTCARNY","EN":0},"TI":630,"AM":1024,"x":53.255640625000005,"y":14.678458333333339,"w":12.044999999999995,"h":0.9141666666666595},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PORTCRD","EN":0},"TI":631,"AM":0,"x":53.3424375,"y":17.234395833333338,"w":12.045000000000002,"h":0.9141666666666642,"TU":"Part 28. Line A. Enter the total eligible credit amount authorized by the Virginia Port Authority."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PORTCO","EN":0},"TI":632,"AM":0,"x":53.255640625000005,"y":18.308458333333334,"w":12.044999999999995,"h":0.9141666666666689,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDPORT","EN":0},"TI":633,"AM":1024,"x":53.255640625000005,"y":19.34345833333333,"w":12.044999999999995,"h":0.9066666666666711},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLPORT","EN":0},"TI":634,"AM":0,"x":69.13190625,"y":20.45839583333333,"w":21.600046875,"h":0.9121041666666704,"TU":"Line 28D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PTCARNY","EN":0},"TI":635,"AM":1024,"x":53.255640625000005,"y":21.88595833333333,"w":12.044999999999995,"h":0.9141666666666689},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RAILCRD","EN":0},"TI":636,"AM":0,"x":53.255640625000005,"y":24.521770833333335,"w":12.044999999999995,"h":0.9141666666666689,"TU":"Part 29. Line A. Enter the total eligible credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RAILCO","EN":0},"TI":637,"AM":0,"x":53.255640625000005,"y":25.571770833333332,"w":12.044999999999995,"h":0.9141666666666642,"TU":"Line B. Carryover credit from prior year(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ADDRAIL","EN":0},"TI":638,"AM":1024,"x":53.255640625000005,"y":26.575208333333336,"w":12.044999999999995,"h":0.9066666666666615},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLRAIL","EN":0},"TI":639,"AM":0,"x":69.169375,"y":27.672020833333335,"w":21.60021875000001,"h":0.9121041666666656,"TU":"Line 29D. Credit allowable this year. Enter the amount from Line C or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BRCARNY","EN":0},"TI":640,"AM":1024,"x":53.255640625000005,"y":29.149270833333333,"w":12.044999999999995,"h":0.9141666666666689},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESDEVCR","EN":0},"TI":641,"AM":0,"x":53.255640625000005,"y":31.736770833333335,"w":12.044999999999995,"h":0.9141666666666689,"TU":"Part 30. Line A. Enter the total eligible credit amount authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ALLDEVCR","EN":0},"TI":642,"AM":0,"x":69.207015625,"y":35.376583333333336,"w":21.600046875000015,"h":0.9121041666666656,"TU":"Line 30D. Credit allowable this year. Enter the amount from Line A or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TETCAMT","EN":0},"TI":643,"AM":0,"x":53.255640625000005,"y":37.89177083333333,"w":12.044999999999995,"h":0.9141666666666642,"TU":"Part 31. Line A. Enter the amount of Telework Expenses Tax Credit authorized by the Virginia Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TETCR","EN":0},"TI":644,"AM":0,"x":69.07260937500001,"y":39.132645833333335,"w":21.60004687499999,"h":0.9121041666666704,"TU":"Line 31B. Credit allowable this year. Enter the amount from Line A or the balance of maximum credit available, whichever is less."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L107","EN":0},"TI":645,"AM":1024,"x":69.26631250000001,"y":43.86406458333334,"w":21.60004687499999,"h":0.9121291666666688,"TU":"Paer 1_ Total Nonrefundable Credits"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#c9c9c9","x":41.136734375,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":41.102359375000006,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.611734375000005,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":43.57735937500001,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.086734375000006,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":46.052359374999995,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.56173437500001,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":48.527359375,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.036734374999995,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":51.002359375000005,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.511734375,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":53.477359375000006,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.986734375000005,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":55.95235937500001,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.461734375000006,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":58.427359374999995,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.93673437500001,"y":4.377249999999994,"w":6,"l":2.4750000000000028},{"oc":"#c9c9c9","x":60.90235937500001,"y":5.624125000000002,"w":6,"l":2.4750000000000028},{"oc":"#161616","x":6.3612656250000015,"y":5.979374999999995,"w":1.5,"l":30.533593749999998},{"oc":"#161616","x":6.3612656250000015,"y":3.791874999999995,"w":1.5,"l":30.533593749999998},{"oc":"#d2d2d2","x":68.42498437500001,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":10.396374999999997,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":10.396374999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":10.396374999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":10.396374999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":10.396374999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":10.396374999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":10.396374999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":10.396374999999997,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":9.149500000000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":10.393250000000004,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":12.148249999999999,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":12.148249999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":12.148249999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":12.148249999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":12.148249999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":12.148249999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":12.148249999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":12.148249999999999,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":10.901375000000002,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":12.145124999999998,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":14.212375,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":14.212375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":14.212375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":14.212375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":14.212375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":14.212375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":14.212375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":14.212375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":12.9655,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":14.209249999999997,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":16.026812499999995,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":16.026812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":16.026812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":16.026812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":16.026812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":16.026812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":16.026812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":16.026812499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":14.779937500000003,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":16.023687500000005,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":17.5286875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":17.5286875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":17.5286875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":17.5286875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":17.5286875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":17.5286875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":17.5286875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":17.5286875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":16.2818125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":17.525562499999996,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":19.6198125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":19.6198125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":19.6198125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":19.6198125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":19.6198125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":19.6198125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":19.6198125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":19.6198125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":18.372937499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":19.6166875,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":21.7528125,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":21.7528125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":21.7528125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":21.7528125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":21.7528125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":21.7528125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":21.7528125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":21.7528125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":20.5059375,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":21.749687500000004,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":24.298437499999995,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":24.298437499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":24.298437499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":24.298437499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":24.298437499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":24.298437499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":24.298437499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":24.298437499999995,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":23.0515625,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":24.295312500000005,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":28.3916875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":28.3916875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":28.3916875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":28.3916875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":28.3916875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":28.3916875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":28.3916875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":28.3916875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":27.1448125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":28.388562499999995,"w":6,"l":3.2054687500000028},{"oc":"#d2d2d2","x":68.42498437500001,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":68.41639062500002,"y":32.8911875,"w":6,"l":2.44921875},{"oc":"#d2d2d2","x":70.899984375,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":70.86560937500002,"y":32.8911875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.374984375,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":73.340609375,"y":32.8911875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.84998437500002,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":75.81560937500001,"y":32.8911875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.324984375,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":78.290609375,"y":32.8911875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.79998437500001,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":80.765609375,"y":32.8911875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.274984375,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":83.24060937500002,"y":32.8911875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.749984375,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":85.715609375,"y":32.8911875,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.224984375,"y":31.6443125,"w":6,"l":2.4750000000000028},{"oc":"#d2d2d2","x":88.164828125,"y":32.8880625,"w":6,"l":3.2054687500000028},{"oc":"#161616","x":66.16551562500001,"y":45.997625,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":95.21135937500001,"y":46.01443750000001,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":66.750921875,"y":6.5425625000000025,"w":3,"l":2.4320312500000028},{"oc":"#161616","x":95.21995312499999,"y":6.5424999999999995,"w":3,"l":2.4320312500000028}],"VLines":[{"oc":"#c9c9c9","x":41.47189062500001,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":43.946890625,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":46.421890625,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":48.896890625000005,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":51.371890625000006,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":53.84689062500001,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":56.321890624999995,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":58.79689062500001,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":61.271890625000005,"y":4.255375,"w":6,"l":1.3500000000000003},{"oc":"#c9c9c9","x":63.66971875000001,"y":4.2616249999999996,"w":6,"l":1.484375},{"oc":"#161616","x":36.894859375,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#161616","x":6.3612656250000015,"y":3.791874999999995,"w":1.5,"l":2.1875},{"oc":"#d2d2d2","x":68.76014062500002,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":71.235140625,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":73.71014062500001,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":76.185140625,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":78.660140625,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":81.13514062500002,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":83.610140625,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":86.08514062500001,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":88.560140625,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":91.035140625,"y":9.027625000000004,"w":6,"l":1.3500000000000003},{"oc":"#d2d2d2","x":68.76014062500002,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":10.779499999999999,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":12.843624999999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":14.658062500000005,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":16.159937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":18.251062500000003,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":20.384062500000002,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":22.929687500000004,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":27.022937499999998,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":68.76014062500002,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":71.235140625,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":73.71014062500001,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":76.185140625,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":78.660140625,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":81.13514062500002,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":83.610140625,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":86.08514062500001,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":88.560140625,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#d2d2d2","x":91.035140625,"y":31.5224375,"w":6,"l":1.349999999999999},{"oc":"#161616","x":66.33739062500001,"y":45.17575,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":97.48010937500001,"y":45.173812500000004,"w":3,"l":0.8843749999999962},{"oc":"#161616","x":66.922796875,"y":6.480062499999999,"w":3,"l":0.8843749999999998},{"oc":"#161616","x":97.48010937500001,"y":6.492499999999999,"w":3,"l":0.8843749999999998}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c9c9c9","x":6.187500000000001,"y":6.468687499999997,"w":41.63895312500001,"h":1.0200000000000007,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":10.027624999999997,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":10.008875000000005,"w":1.8562500000000053,"h":0.43124999999999974,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":11.779499999999999,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":11.760749999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":13.843624999999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":13.824874999999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":15.658062499999994,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":15.639374999999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":17.159937499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":17.141187499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":19.2510625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":19.232312500000003,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":21.3840625,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":21.3653125,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":23.929687499999996,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":23.910937500000003,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c9c9c9","x":6.187500000000001,"y":24.993624999999998,"w":41.63895312500001,"h":1.0200000000000007,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":28.022937499999998,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":28.004187499999997,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#c9c9c9","x":6.187500000000001,"y":29.262375000000002,"w":41.63895312500001,"h":1.019999999999996,"clr":-1},{"oc":"#d2d2d2","x":82.707796875,"y":32.5224375,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1},{"oc":"#d2d2d2","x":75.265609375,"y":32.5036875,"w":1.8562500000000053,"h":0.43125000000000097,"clr":-1}],"Texts":[{"oc":"#161616","x":5.937520625,"y":2.0460000000000016,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.197984375,"y":2.0460000000000016,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%207","S":-1,"TS":[0,13,0,0]}]},{"oc":"#c9c9c9","x":46.572978125,"y":3.298999999999997,"w":11.225999999999999,"clr":-1,"A":"left","R":[{"T":"Social%20Security%20Number","S":8,"TS":[0,10,1,0]}]},{"x":48.33755000000001,"y":4.448475000000002,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"x":53.22753125,"y":4.4672250000000036,"w":0.333,"clr":1,"A":"left","R":[{"T":"-","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":8.931131093750002,"y":3.3934999999999986,"w":16.227,"clr":-1,"A":"left","R":[{"T":"Name(s)%20as%20shown%20on%20Virginia%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":5.93751375,"y":7.7890000000000015,"w":43.336000000000006,"clr":-1,"A":"left","R":[{"T":"%20PART%201%20-%20COALFIELD%20EMPLOYMENT%20ENHANCEMENT%20and%20VIRGINIA%20COAL%20EMPLOYMENT%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":12.12501375,"y":8.351500000000001,"w":21.723000000000006,"clr":-1,"A":"left","R":[{"T":"AND%20PRODUCTION%20INCENTIVE%20TAX%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":9.101518749999997,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.35237484375,"y":9.101518749999997,"w":34.18000000000001,"clr":-1,"A":"left","R":[{"T":"100%25%20Coalfield%20Employment%20Enhancement%20and%2For%20Virginia%20Coal%20Employment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":9.626518749999997,"w":35.129,"clr":-1,"A":"left","R":[{"T":"and%20Production%20Incentive%20Tax%20Credits%20from%20Line%202%20of%20your%202013%20Schedule%20306B.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":55.07518578125001,"y":9.626518749999997,"w":6.672000000000004,"clr":-1,"A":"left","R":[{"T":"........................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204359375,"y":9.626500000000002,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":11.501512500000004,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":11.501512500000004,"w":5.112,"clr":-1,"A":"left","R":[{"T":"Full%20credit%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":19.43537484375,"y":11.501512500000004,"w":36.410999999999945,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%2012%20of%20your%202013%20Form%20306.%20................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.14059375,"y":11.501500000000002,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1B","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":13.376506249999997,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":13.376506249999997,"w":5.335000000000001,"clr":-1,"A":"left","R":[{"T":"85%25%20credit%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":19.705115468749998,"y":13.376506249999997,"w":36.132999999999946,"clr":-1,"A":"left","R":[{"T":"%20Enter%20amount%20from%20Line%2013%20of%20your%202013%20Form%20306.%20...............................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.14059375,"y":13.376500000000002,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1C","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.5364685937500004,"y":14.74526875,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%20D%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":14.74526875,"w":14.448000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20Coal%20Related%20Tax%20Credits","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.28584203125,"y":15.270264375,"w":8.893,"clr":-1,"A":"left","R":[{"T":"allowable%20this%20year","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":23.98475140625,"y":15.270264375,"w":32.801999999999936,"clr":-1,"A":"left","R":[{"T":"%3A%20Add%20Lines%20B%20and%20C.%20....................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.14059375,"y":15.2703125,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1D","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":7.536348281250001,"y":16.301543749999997,"w":1.2233,"clr":-1,"A":"left","R":[{"T":"%20E%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.28584203125,"y":16.301543749999997,"w":31.453000000000003,"clr":-1,"A":"left","R":[{"T":"2013%20Coalfield%20Employment%20Enhancement%20Tax%20Credit%20to%20be%20applied","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":13.286202968749999,"y":16.826539375,"w":11.725000000000001,"clr":-1,"A":"left","R":[{"T":"toward%20your%202016%20return%3A","S":8,"TS":[0,10,1,0]}]},{"oc":"#161616","x":27.726829890624998,"y":16.826539375,"w":24.457000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Line%2011%20of%20your%202013%20Form%20306.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":56.746204890625,"y":16.826539375,"w":5.282000000000002,"clr":-1,"A":"left","R":[{"T":"...................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.235468749999995,"y":16.8265,"w":1.223,"clr":-1,"A":"left","R":[{"T":"1E","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":17.8578,"w":26.390000000000008,"clr":-1,"A":"left","R":[{"T":"PART%202%20-%20MOTION%20PICTURE%20PRODUCTION%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":18.889049999999997,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.35237484375,"y":18.889049999999997,"w":41.466999999999935,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20credit%20authorized%20by%20the%20Virginia%20Film%20Office.%20....................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204359375,"y":18.889062499999998,"w":1.278,"clr":-1,"A":"left","R":[{"T":"2A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":19.9203,"w":35.222000000000016,"clr":-1,"A":"left","R":[{"T":"PART%203%20-%20AGRICULTURAL%20BEST%20MANAGEMENT%20PRACTICES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":20.95155625,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.35237484375,"y":20.95155625,"w":41.52099999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20credit%20authorized%20by%20the%20Department%20of%20Conservation%20and%20Recreation.%20............","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204359375,"y":20.951562499999998,"w":1.278,"clr":-1,"A":"left","R":[{"T":"3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":21.9828,"w":32.33700000000001,"clr":-1,"A":"left","R":[{"T":"PART%204%20-%20RESEARCH%20AND%20DEVELOPMENT%20EXPENSES%20TAX%20CREDIT","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.871057656250002,"y":23.014062499999998,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.352495156250004,"y":23.014062499999998,"w":37.294999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20of%20Research%20and%20Development%20Expenses%20Tax%20Credit%20authorized%20by%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968750002,"y":23.5390625,"w":39.082999999999906,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Taxation.%20.....................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":60.10857953125001,"y":23.5390625,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":".........","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204359375,"y":23.5390625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"4A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":25.97655,"w":19.611,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20TOTAL%20REFUNDABLE%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":27.06404375,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.35237484375,"y":27.06404375,"w":31.294999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20Section%203%2C%20Part%201%20-%20Line%201D%2C%20Part%202%20-%20Line%202A%2C%20Part%203%20-%20Line%203A%20and%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":27.589043750000002,"w":7.504000000000001,"clr":-1,"A":"left","R":[{"T":"Part%204%20-%20Line%204A.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":21.98202953125,"y":27.589043750000002,"w":34.19399999999994,"clr":-1,"A":"left","R":[{"T":"...........................................................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204359375,"y":27.5890625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":5.93751375,"y":30.3078,"w":20.667,"clr":-1,"A":"left","R":[{"T":"PART%201%20-%20TOTAL%20CURRENT%20YEAR%20CREDITS","S":-1,"TS":[0,11,1,0]}]},{"oc":"#161616","x":7.870937343750002,"y":31.11406875,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.35237484375,"y":31.11406875,"w":30.793000000000006,"clr":-1,"A":"left","R":[{"T":"Total%20credits%20allowable%20this%20year.%20Enter%20the%20total%20of%20Section%202%2C%20Line%201A%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":31.63906875,"w":33.687,"clr":-1,"A":"left","R":[{"T":"and%20Section%204%2C%20Part%201%20-%20Line%201A%20here%20and%20on%20Line%2023%20of%20Form%20760%2C%20Line%2025%20of%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":13.286202968749999,"y":32.164068750000006,"w":41.582999999999885,"clr":-1,"A":"left","R":[{"T":"Form%20760PY%20or%20Line%2025%20of%20Form%20763.%20..........................................................................................","S":2,"TS":[0,10,0,0]}]},{"oc":"#161616","x":63.204359375,"y":32.1640625,"w":1.278,"clr":-1,"A":"left","R":[{"T":"1A","S":10,"TS":[0,14,1,0]}]},{"x":7.53889375,"y":6.441625000000002,"w":17.723,"clr":1,"A":"left","R":[{"T":"SECTION%203%20-%20REFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":4.218189687500001,"y":7.9876000000000005,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":9.434874999999996,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":9.610500000000002,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":9.448875000000001,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":11.186749999999998,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":11.362350000000001,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":11.200799999999996,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":13.250874999999999,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":13.426499999999999,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":13.264875000000004,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":15.0653125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":15.240899999999996,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":15.07935,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":16.567125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":16.7427,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":16.581075,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":18.658312499999997,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":18.83385,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":18.672299999999996,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":20.7913125,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":20.966925,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":20.805300000000003,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#c9c9c9","x":93.15134375000001,"y":23.3369375,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":23.512575,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":23.350949999999997,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"x":7.53889375,"y":24.9665625,"w":21.334000000000007,"clr":1,"A":"left","R":[{"T":"SECTION%204%20-%20TOTAL%20REFUNDABLE%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.15120625,"y":27.4301875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":27.605775000000005,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":27.444149999999997,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"x":7.53889375,"y":29.235312500000003,"w":22.390000000000008,"clr":1,"A":"left","R":[{"T":"SECTION%205%20-%20TOTAL%20CURRENT%20YEAR%20CREDITS","S":10,"TS":[0,14,1,0]}]},{"oc":"#c9c9c9","x":93.15120625,"y":31.9296875,"w":1.2520000000000002,"clr":-1,"A":"left","R":[{"T":"00","S":-1,"TS":[0,13,0,0]}]},{"oc":"#d2d2d2","x":92.18877500000002,"y":32.105325,"w":0.333,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,16,1,0]}]},{"x":75.55698125,"y":31.9437,"w":7.216,"clr":1,"A":"left","R":[{"T":"%2C%2C","S":-1,"TS":[3,16,1,0]}]},{"oc":"#161616","x":4.2186228125,"y":20.121399999999998,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM7","EN":0},"TI":646,"AM":1024,"x":6.642160937500001,"y":5.022187500000001,"w":30.316979687500005,"h":0.8806249999999997,"TU":"Name(s) as shown on Virginia return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CODE7","EN":0},"TI":647,"AM":1024,"x":41.809625000000004,"y":4.570520833333329,"w":21.937437499999994,"h":0.9141666666666689,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L108","EN":0},"TI":648,"AM":0,"x":69.2979375,"y":9.298645833333333,"w":21.600046875000015,"h":0.9121041666666656},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L109","EN":0},"TI":649,"AM":0,"x":69.2979375,"y":11.044083333333333,"w":21.600046875000015,"h":0.9121041666666656},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L110","EN":0},"TI":650,"AM":0,"x":69.2979375,"y":13.15395833333333,"w":21.600046875000015,"h":0.9121666666666689},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L111","EN":0},"TI":651,"AM":1024,"x":69.2979375,"y":14.946395833333332,"w":21.599703125000023,"h":0.9121666666666641},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L112","EN":0},"TI":652,"AM":0,"x":69.2979375,"y":16.470270833333334,"w":21.600046875000015,"h":0.9121041666666704},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FILMCRD","EN":0},"TI":653,"AM":0,"x":69.2979375,"y":18.556645833333334,"w":21.600046875000015,"h":0.9121041666666656,"TU":"Part 2. Line A. Enter amount of credit authorized by the Virginia Film Office."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AGMAN","EN":0},"TI":654,"AM":0,"x":69.2979375,"y":20.711145833333333,"w":21.600046875000015,"h":0.9121666666666689,"TU":"Part 3. Line A. Enter amount of credit authorized by the Department of Conservation and Recreation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RDCRED","EN":0},"TI":655,"AM":0,"x":69.38490625000001,"y":23.225958333333335,"w":21.599874999999994,"h":0.9121041666666656,"TU":"Part 4. Line A. Enter amount of Research and Development Expenses Tax Credit authorized by the Department of Taxation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTREFCR","EN":0},"TI":656,"AM":1024,"x":69.2979375,"y":27.361145833333335,"w":21.600046875000015,"h":0.9121666666666641},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L116","EN":0},"TI":657,"AM":1024,"x":69.2979375,"y":31.825958333333332,"w":21.600046875000015,"h":0.9121041666666704}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#161616","x":44.57492187500001,"y":6.173000000000002,"w":1.8900000000000001,"l":18.100328125}],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#161616","x":5.937520625,"y":2.0460000000000016,"w":9.337000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20CR%20(2013)%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#161616","x":25.197984375,"y":2.0460000000000016,"w":3.169,"clr":-1,"A":"left","R":[{"T":"Page%208","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":42.262421875,"y":5.212537499999996,"w":0.5,"clr":-1,"A":"left","R":[{"T":"*","S":-1,"TS":[3,18,1,0]}]},{"oc":"#161616","x":44.32495625000001,"y":5.343525,"w":9.053999999999998,"clr":-1,"A":"left","R":[{"T":"WHAT%20TO%20ATTACH","S":-1,"TS":[0,16,1,0]}]},{"oc":"#161616","x":5.937517187500001,"y":6.909312500000003,"w":53.297999999999945,"clr":-1,"A":"left","R":[{"T":"Attachments%20should%20be%20included%20with%20your%20return%20when%20claiming%20original%20or%20carryover%20credits.%20Computation%20schedules%20are%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500001,"y":7.553062500000001,"w":44.01599999999996,"clr":-1,"A":"left","R":[{"T":"required%20for%20claims%20to%20be%20carried%20forward.%20%20Missing%20attachments%20may%20cause%20a%20credit%20to%20be%20disallowed.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500001,"y":8.759312500000002,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500002,"y":8.759312500000002,"w":13.002,"clr":-1,"A":"left","R":[{"T":"Enterprise%20Zone%20Act%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":30.6957671875,"y":8.759312500000002,"w":4.834999999999999,"clr":-1,"A":"left","R":[{"T":"%20Form%20301.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187499999,"y":9.965562500000004,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.4125171875,"y":9.965562500000004,"w":24.452000000000005,"clr":-1,"A":"left","R":[{"T":"Recyclable%20Materials%20Processing%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":50.6800171875,"y":9.965562500000004,"w":28.178000000000004,"clr":-1,"A":"left","R":[{"T":"%20Approved%20Form%2050-11S%20from%20the%20Department%20of%20Environmental%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187499999,"y":10.60931875,"w":42.34999999999997,"clr":-1,"A":"left","R":[{"T":"Quality%20as%20well%20as%20any%20receipts%2C%20invoices%20or%20other%20documentation%20confirming%20purchase%20price%20paid.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187499998,"y":11.815568750000002,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187499999,"y":11.815568750000002,"w":18.781000000000002,"clr":-1,"A":"left","R":[{"T":"Conservation%20Tillage%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":40.659189062500005,"y":11.815568750000002,"w":31.460000000000008,"clr":-1,"A":"left","R":[{"T":"%20Statement%20showing%20purchase%20date%2C%20description%20and%20credit%20computation.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500003,"y":13.02181875,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500004,"y":13.02181875,"w":30.341,"clr":-1,"A":"left","R":[{"T":"Precision%20Fertilizer%20and%20Pesticide%20Application%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":60.0147203125,"y":13.02181875,"w":23.012000000000008,"clr":-1,"A":"left","R":[{"T":"%20Statement%20showing%20purchase%20date%2C%20description%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":13.66556875,"w":8.448000000000002,"clr":-1,"A":"left","R":[{"T":"credit%20computation.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500005,"y":14.871818750000003,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":14.871818750000003,"w":21.839000000000002,"clr":-1,"A":"left","R":[{"T":"Vehicle%20Emissions%20Testing%20Equipment%20Credit%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":45.44006406250001,"y":14.871818750000003,"w":31.623000000000005,"clr":-1,"A":"left","R":[{"T":"Copy%20of%20the%20letter%20from%20the%20Department%20of%20Environmental%20Quality%20(DEQ)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":15.51556875,"w":51.91599999999995,"clr":-1,"A":"left","R":[{"T":"to%20the%20equipment%20vendor%20certifying%20that%20the%20equipment%20configuration%20meets%20the%20regulation%20and%20equipment%20specification%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":16.15931875,"w":52.85699999999995,"clr":-1,"A":"left","R":[{"T":"requirements%20for%20use%20in%20the%20enhanced%20vehicle%20emissions%20inspection%20program.%20%20A%20copy%20of%20the%20letter%20may%20be%20obtained%20from%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":16.803068750000005,"w":52.577999999999946,"clr":-1,"A":"left","R":[{"T":"the%20equipment%20vendor%20or%20the%20DEQ%20Northern%20Virginia%20Regional%20Office%20in%20Woodbridge%2C%20Virginia%20by%20calling%20(703)%20583-3800.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500005,"y":18.009318750000002,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":18.009318750000002,"w":21.676,"clr":-1,"A":"left","R":[{"T":"Foreign%20Source%20Retirement%20Income%20Tax%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":45.519126562500006,"y":18.009318750000002,"w":31.255999999999997,"clr":-1,"A":"left","R":[{"T":"%20Copy%20of%20the%20tax%20return%20filed%20in%20the%20other%20country%20or%20other%20proof%20of%20income%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":18.653068750000003,"w":52.807000000000016,"clr":-1,"A":"left","R":[{"T":"tax%20paid%20to%20the%20foreign%20country%20and%20a%20schedule%20showing%20computation%20of%20foreign%20currency%20converted%20to%20United%20States%20dollars.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500005,"y":19.859318750000003,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":19.859318750000003,"w":20.668000000000003,"clr":-1,"A":"left","R":[{"T":"Waste%20Motor%20Oil%20Burning%20Equipment%20Credit%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":44.72111093750001,"y":19.859318750000003,"w":31.179000000000002,"clr":-1,"A":"left","R":[{"T":"%20Approved%20Form%2050-12%20from%20the%20Department%20of%20Environmental%20Quality%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":20.50306875,"w":32.40200000000001,"clr":-1,"A":"left","R":[{"T":"receipts%2C%20invoices%20or%20other%20documentation%20confirming%20purchase%20price%20paid.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500005,"y":21.709318750000005,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":21.709318750000005,"w":21.563000000000002,"clr":-1,"A":"left","R":[{"T":"Biodiesel%20and%20Green%20Diesel%20Fuels%20Tax%20Credit%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":47.0429703125,"y":21.709318750000005,"w":29.23400000000001,"clr":-1,"A":"left","R":[{"T":"The%20letter%20of%20certification%20from%20the%20Virginia%20Department%20of%20Taxation%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":22.353068750000006,"w":9.560000000000004,"clr":-1,"A":"left","R":[{"T":"authorizing%20the%20credit.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500005,"y":23.559318750000003,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":23.559318750000003,"w":50.066999999999936,"clr":-1,"A":"left","R":[{"T":"Coalfield%20Employment%20Enhancement%20Tax%20Credit%20and%20Virginia%20Coal%20Employment%20and%20Production%20Incentive%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":94.7401734375,"y":23.559318750000003,"w":2.611,"clr":-1,"A":"left","R":[{"T":"Form%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":24.203068750000003,"w":53.635999999999925,"clr":-1,"A":"left","R":[{"T":"306%20with%20completed%20schedules%2C%20if%20appropriate.%20See%20the%20%E2%80%9CWhat%20to%20Attach%E2%80%9D%20section%20in%20the%20Form%20306%20instructions%20for%20additional%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":24.846818750000008,"w":18.50800000000001,"clr":-1,"A":"left","R":[{"T":"attachment%20requirements%20and%20information.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":5.937517187500005,"y":26.053068750000005,"w":0.541,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[3,13,0,0]}]},{"oc":"#161616","x":8.412517187500006,"y":26.053068750000005,"w":22.95,"clr":-1,"A":"left","R":[{"T":"Agricultural%20Best%20Management%20Practices%20Credit%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#161616","x":48.09450156250001,"y":26.053068750000005,"w":29.457,"clr":-1,"A":"left","R":[{"T":"Copy%20of%20the%20tax%20credit%20approval%20letter%20from%20the%20local%20Soil%20and%20Water%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#161616","x":8.412517187499999,"y":26.696818750000006,"w":9.502,"clr":-1,"A":"left","R":[{"T":"Conservation%20District.","S":-1,"TS":[0,13,0,0]}]}],"Fields":[],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/form_org/VOUCHEF.json b/test/data/va/form_org/VOUCHEF.json new file mode 100755 index 00000000..6c9c8643 --- /dev/null +++ b/test/data/va/form_org/VOUCHEF.json @@ -0,0 +1 @@ +{"formImage":{"Transcoder":"pdf2json@0.6.6","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#ebecec","x":47.22265625,"y":5.338678743749999,"w":14.25,"l":23.87343749999999},{"oc":"#ebecec","x":47.22265625,"y":3.7355537437499984,"w":14.25,"l":23.87343749999999},{"oc":"#ebecec","x":74.31015625000002,"y":5.338678743749999,"w":14.25,"l":23.87343749999999},{"oc":"#ebecec","x":74.31015625000002,"y":3.7355537437499984,"w":14.25,"l":23.87343749999999},{"oc":"#2b2e34","x":6.187500000000001,"y":9.464722493750003,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.7073748109375,"y":9.464722493750003,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.3245623109375,"y":9.464722493750003,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":10.923053743750003,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.7073748109375,"y":10.923053743750003,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.3245623109375,"y":10.923053743750003,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":12.423053743750003,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.7073748109375,"y":12.423053743750003,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.3245623109375,"y":12.423053743750003,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":13.923053743750003,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.7073748109375,"y":13.923053743750003,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.3245623109375,"y":13.923053743750003,"w":0.75,"l":9.23003125},{"oc":"#2b2e34","x":6.187500000000001,"y":15.423053743750003,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.7073748109375,"y":15.423053743750003,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.3245623109375,"y":15.423053743750003,"w":0.75,"l":9.23003125},{"oc":"#ebecec","x":68.6125,"y":15.13555374375,"w":14.25,"l":29.571093750000006},{"oc":"#ebecec","x":68.6125,"y":13.523053743749998,"w":14.25,"l":29.571093750000006},{"oc":"#2b2e34","x":6.187500000000001,"y":7.964709993750003,"w":0.75,"l":29.519703125000003},{"oc":"#2b2e34","x":35.7073748109375,"y":7.964709993750003,"w":0.75,"l":6.617187500000001},{"oc":"#2b2e34","x":42.3245623109375,"y":7.964709993750003,"w":0.75,"l":9.23003125}],"VLines":[{"oc":"#ebecec","x":71.09609375,"y":3.7355537437499984,"w":14.25,"l":1.603125000000001},{"oc":"#ebecec","x":47.22265625,"y":3.7355537437499984,"w":14.25,"l":1.603125000000001},{"oc":"#e2e2e3","x":50.45390678281251,"y":3.9886787437499986,"w":3,"l":1.121875},{"oc":"#e2e2e3","x":52.9289057171875,"y":3.988679125000006,"w":3,"l":1.1125},{"oc":"#e2e2e3","x":55.4039072984375,"y":3.988679125000006,"w":3,"l":1.1125},{"oc":"#e2e2e3","x":57.87890625000001,"y":3.9886789312499977,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":60.35390520156251,"y":3.9886789312499977,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":62.8289067828125,"y":3.9886789312499977,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":65.3039057171875,"y":3.9886783625,"w":3,"l":1.0843750000000003},{"oc":"#e2e2e3","x":67.7789072984375,"y":3.9886787437499986,"w":3,"l":1.075},{"oc":"#ebecec","x":98.18359375000001,"y":3.7355537437499984,"w":14.25,"l":1.603125000000001},{"oc":"#ebecec","x":74.31015625000002,"y":3.7355537437499984,"w":14.25,"l":1.603125000000001},{"oc":"#e2e2e3","x":77.54140520156251,"y":3.9886787437499986,"w":3,"l":1.121875},{"oc":"#e2e2e3","x":80.01640678281251,"y":3.988679125000006,"w":3,"l":1.1125},{"oc":"#e2e2e3","x":82.4914057171875,"y":3.988679125000006,"w":3,"l":1.1125},{"oc":"#e2e2e3","x":84.9664072984375,"y":3.9886789312499977,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":87.44140625,"y":3.9886789312499977,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":89.91640520156251,"y":3.9886789312499977,"w":3,"l":1.09375},{"oc":"#e2e2e3","x":92.39140678281251,"y":3.9886783625,"w":3,"l":1.0843750000000003},{"oc":"#e2e2e3","x":94.8664057171875,"y":3.9886787437499986,"w":3,"l":1.075},{"oc":"#2b2e34","x":6.230468750000001,"y":9.438678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.511624106250004,"y":9.438678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":10.938678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.511624106250004,"y":10.938678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":12.438678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":35.7073748109375,"y":12.438678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":42.3245623109375,"y":12.438678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.511624106250004,"y":12.438678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":13.938678743750003,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":51.511624106250004,"y":13.938678743750003,"w":0.75,"l":1.46875},{"oc":"#ebecec","x":98.18359375000001,"y":13.523053743749998,"w":14.25,"l":1.6125000000000018},{"oc":"#ebecec","x":68.6125,"y":13.523053743749998,"w":14.25,"l":1.6125000000000018},{"oc":"#e2e2e3","x":71.86953020156251,"y":13.757428743750003,"w":1.5,"l":1.134375000000001},{"oc":"#e2e2e3","x":76.95703125,"y":13.785553362500002,"w":3,"l":1.115624999999999},{"oc":"#e2e2e3","x":79.54375053281251,"y":13.7574283625,"w":1.5,"l":1.1437499999999996},{"oc":"#e2e2e3","x":84.70000053281251,"y":13.7199283625,"w":3,"l":1.196875000000001},{"oc":"#e2e2e3","x":87.29531145156251,"y":13.729303743750004,"w":1.5,"l":1.131249999999999},{"oc":"#e2e2e3","x":92.40859270156251,"y":13.729303743750004,"w":3,"l":1.115624999999999},{"oc":"#e2e2e3","x":94.98671770156251,"y":13.601178931249997,"w":1.5,"l":1.3250000000000004},{"oc":"#e2e2e3","x":74.36171770156251,"y":13.757428743750003,"w":1.5,"l":1.134375000000001},{"oc":"#e2e2e3","x":82.0703125,"y":13.7574283625,"w":1.5,"l":1.1437499999999996},{"oc":"#e2e2e3","x":89.81328178281251,"y":13.748053931249999,"w":1.5,"l":1.131249999999999},{"oc":"#2b2e34","x":51.511624106250004,"y":7.980353743750004,"w":0.75,"l":1.46875},{"oc":"#2b2e34","x":6.230468750000001,"y":7.980353743750004,"w":0.75,"l":1.46875}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":76.4070322984375,"y":14.757429125000002,"w":1.0914062500000106,"h":0.49062499999999903,"clr":1},{"x":84.1843760484375,"y":14.757429125000002,"w":1.0914062500000106,"h":0.49062499999999903,"clr":1}],"Texts":[{"oc":"#2b2e34","x":5.868612500000001,"y":6.3129062499999975,"w":15.09999999999999,"clr":-1,"A":"left","R":[{"T":"0000000000%207618888%20113001","S":-1,"TS":[0,15,0,0]}]},{"oc":"#2b2e34","x":5.936675000000002,"y":2.426406249999997,"w":18.44900000000001,"clr":-1,"A":"left","R":[{"T":"Form%20760-PMT%20%20%202013%20Payment%20Coupon","S":-1,"TS":[0,16,1,0]}]},{"oc":"#2b2e34","x":5.937500000000001,"y":3.1766812500000015,"w":6.112,"clr":-1,"A":"left","R":[{"T":"(DOC%20ID%20761)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":24.239970312500002,"y":3.1766687499999953,"w":9.670000000000002,"clr":-1,"A":"left","R":[{"T":"Please%20do%20not%20staple","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":5.937345312500001,"y":3.9889187499999954,"w":19.395000000000003,"clr":-1,"A":"left","R":[{"T":"To%20Be%20Used%20For%20Payments%20On%20Previously","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":5.937345312500001,"y":4.613856249999995,"w":22.119000000000003,"clr":-1,"A":"left","R":[{"T":"Filed%202013%20Individual%20Income%20Tax%20Returns%20Only","S":9,"TS":[0,12,1,0]}]},{"oc":"#2b2e34","x":48.9819265625,"y":2.348218750000001,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":74.58905,"y":2.348218750000001,"w":14.838000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20Social%20Security%20Number","S":3,"TS":[0,12,0,0]}]},{"oc":"#2b2e34","x":75.042765625,"y":7.093681250000003,"w":8.224,"clr":-1,"A":"left","R":[{"T":"Mail%20Payment%20To%3A","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.175578125,"y":7.843681250000003,"w":12.835000000000008,"clr":-1,"A":"left","R":[{"T":"VA%20Department%20of%20Taxation","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":76.45729687500001,"y":8.593681250000003,"w":6.67,"clr":-1,"A":"left","R":[{"T":"P.O.%20Box%201478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":71.474640625,"y":9.343681250000003,"w":12.449000000000005,"clr":-1,"A":"left","R":[{"T":"Richmond%2C%20VA%2023218-1478","S":10,"TS":[0,14,1,0]}]},{"oc":"#2b2e34","x":6.324218750000001,"y":10.571068750000004,"w":3.668,"clr":-1,"A":"left","R":[{"T":"Address","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.324218750000001,"y":12.071068750000004,"w":1.722,"clr":-1,"A":"left","R":[{"T":"City","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":35.80146875,"y":12.071068750000004,"w":2.335,"clr":-1,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":42.419,"y":12.071068750000004,"w":1.556,"clr":-1,"A":"left","R":[{"T":"ZIP","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":6.325249999999998,"y":13.571068750000004,"w":10.67,"clr":-1,"A":"left","R":[{"T":"Daytime%20Phone%20Number","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":57.285121875,"y":13.41419375,"w":4.558,"clr":-1,"A":"left","R":[{"T":"Amount%20of","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":57.285121875,"y":14.164256250000001,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Payment","S":4,"TS":[0,14,0,0]}]},{"oc":"#2b2e34","x":72.92681250000001,"y":11.490181249999997,"w":15.061000000000007,"clr":-1,"A":"left","R":[{"T":"Make%20your%20check%20payable%20to%20the","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":72.9419375,"y":12.090181249999995,"w":15.114000000000008,"clr":-1,"A":"left","R":[{"T":"Virginia%20Department%20of%20Taxation","S":-1,"TS":[0,11,1,0]}]},{"oc":"#2b2e34","x":91.84055625000002,"y":14.00383125,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,17,0,0]}]},{"oc":"#2b2e34","x":92.528159375,"y":13.9577125,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#2b2e34","x":95.324909375,"y":13.9577125,"w":0.556,"clr":-1,"A":"left","R":[{"T":"0","S":-1,"TS":[0,21,0,0]}]},{"oc":"#2b2e34","x":6.324218750000001,"y":7.571068750000004,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Name(s)","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"TPSSN","EN":0},"TI":658,"AM":1024,"x":48.03596875000001,"y":4.102833333333336,"w":22.312468749999997,"h":0.9832291666666606,"TU":"Your Social Security Number"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SPSSN","EN":0},"TI":659,"AM":1024,"x":75.12965625000001,"y":4.102833333333336,"w":22.31229687499999,"h":0.9832291666666606,"TU":"Spouse's Social Security Number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME1","EN":0},"TI":660,"AM":1024,"x":6.3408984375,"y":8.480645833333332,"w":45.0244609375,"h":1.0041666666666629,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":661,"AM":1024,"x":6.272509375,"y":9.85270833333333,"w":45.02444375,"h":1.0041666666666724,"TU":"Name(s)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":662,"AM":1024,"x":6.3408984375,"y":11.418145833333332,"w":45.0244609375,"h":1.0041666666666629,"TU":"Address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":663,"AM":1024,"x":6.3408984375,"y":12.918145833333332,"w":29.205085937499998,"h":1.0041666666666629,"TU":"City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":664,"AM":1024,"x":35.814109375,"y":12.918145833333332,"w":6.352500000000007,"h":1.0041666666666629,"TU":"State"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":665,"AM":1024,"x":42.434734375000005,"y":12.918145833333332,"w":8.930625000000001,"h":1.0041666666666629,"TU":"ZIP"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DPHONE","EN":0},"TI":666,"AM":1024,"x":6.3408984375,"y":14.418145833333332,"w":45.0244609375,"h":1.0041666666666629,"TU":"Daytime Phone Number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PAYMENT","EN":0},"TI":667,"AM":0,"x":69.466546875,"y":13.92420833333333,"w":22.706062500000005,"h":0.9627916666666702,"TU":"Amount of Payment"}],"Boxsets":[]}],"Width":105.18750000000001}} \ No newline at end of file diff --git a/test/data/va/formset.json b/test/data/va/formset.json new file mode 100755 index 00000000..85d39e1c --- /dev/null +++ b/test/data/va/formset.json @@ -0,0 +1,32 @@ +{ + "formset" :{ + "id": "S2013VAD", + "version": "0.2", + "agency": "va", + "main": "VA760", + "forms": [ + {"id": "VA760", "name":"Form 760 - Virginia Resident Form 760 Individual Income Tax Return", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_760cg", "efmid":"EFINFOVA", "cid": "760CG"}, + {"id": "VAADJ", "name":"From 760-ADJ - Virginia Schedule ADJ", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_760cg", "cid": "SchADJ"}, + {"id": "VASCR", "name":"Virginia Schedule CR Pg 1-2 - Credit Computation Schedule", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_schcr", "cid": "SchCR", "mpf":"VASCR"}, + {"id": "VASCR2", "name":"Virginia Schedule CR Pg 3-4 - Credit Computation Schedule", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_schcr", "cid": "SchCR", "mpf":"VASCR"}, + {"id": "VASCR3", "name":"Virginia Schedule CR Pg 5-8 - Credit Computation Schedule", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_schcr", "cid": "SchCR", "mpf":"VASCR"}, + {"id": "VAFED", "name":"Sch FED - Virginia Federal Schedule Information", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_schfed", "cid": "SchFED"}, + {"id": "VAOSC", "name":"Sch OSC - Credit for Tax Paid to Another State", "mc": true, "max": 50, "parent": null, + "inst":"va_ins_760cg", "cid": "SchOSC"}, + {"id": "VA760PFF", "name":"Form 760-PFF - Payment Coupon for Farmers, Fishermen and Merchant Seamen", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_760pff", "cid": "760PFF"}, + {"id": "VOUCHEF", "name":"Form 760-PMT - Payment Coupon", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_760pmt", "cid": "760PMT"}, + {"id": "VA760C", "name":"Form 760-C - Underpayment of Virginia Estimated Tax by Individuals, Estates and Trusts", "mc": false, "max": 1, "parent": null, + "inst":"VA760c", "cid": "760C"}, + {"id": "VA760F", "name":"Form 760-F - Underpayment of Virginia Estimated Tax by Farmers, Fishermen and Merchant Seamen", "mc": false, "max": 1, "parent": null, + "inst":"va_ins_760f", "cid": "760F"} + ] + } +} diff --git a/test/data/va/inst/va_ins_760cg.pdf b/test/data/va/inst/va_ins_760cg.pdf new file mode 100755 index 00000000..abe38e83 Binary files /dev/null and b/test/data/va/inst/va_ins_760cg.pdf differ diff --git a/test/data/va/pageset.json b/test/data/va/pageset.json new file mode 100755 index 00000000..a1ec60d2 --- /dev/null +++ b/test/data/va/pageset.json @@ -0,0 +1,65 @@ +{ + "headerData" :{ + "valueLabel": [ + {"href": "#/va/faqs", "label": "Help", "target": "_blank", "styleClass": "formImage", "icon": "../img/questionFrame.png"}, + {"href": "http://www.tax.virginia.gov/site.cfm?alias=ContactUs", "label": "Contact VA Tax", "target": "_blank", + "styleClass": "formImage"}, + {"href": "#/va/login", "label": "Sign In / Create An Account", "styleClass": "login", "icon": "../img/logout.png"} + ] + }, + + "gatewayData": { + "stateTaxUrl":"http://www.tax.virginia.gov/", + "eFileLinkUrl":"http://www.tax.virginia.gov/site.cfm?alias=freefile", + "faqFooter":"View more of your state-specific FAQs", + "howItWorksList": { + "item1":"Either e-file your return using a 5-digit numeric signature pin, or print your return and mail it in." + }, + "noteList": { + "item1":"This program supports all credits on Schedule CR and Schedule OSC. However, certain credits are not eligible for e-file, and the return will have to be printed and mailed to the Virginia Department of Taxation for processing.", + "item2": "This program does not support prior-year returns, part-year, non-resident or amended returns." + } + }, + + "landingData": { + "formNumber":"760", + "makeSureList": {}, + "tipsList": { + "item1":"Complete your federal return first. You will need the Federal Adjusted Gross Income (AGI) from your federal return to begin your state return." + }, + "beforeList": { + "item1":"Make sure the Federal Adjusted Gross Income (AGI) agrees with your federal return.", + "item2":"Enter your exemption.", + "item3":"Enter your standard or itemized deductions." + } + }, + + "loginData": { + "signInHelpLink":"http://www.tax.virginia.gov/site.cfm?alias=fillableformsfaq" + }, + + "recoveryData": { + "forgotAnswerLink":"http://www.tax.virginia.gov/site.cfm?alias=fillableformsfaq" + }, + + "homeHeaderData": { + "href": "http://www.tax.virginia.gov/site.cfm?alias=fillableformsfaq" + }, + + "efileData": { + "efRefundLink":"http://www.tax.virginia.gov/site.cfm?alias=WhereIsMyRefund", + "efRequiredInfo":"Social Security number and amount of your expected refund", + "efPaymentDueDate":"May 1, 2014", + "customerServiceEmail":"customer_service@statefillableforms.com" + + }, + "commonData": { + "siteName": "Virginia State Fillable Forms", + "state":"Virginia", + "stateAbbr":"VA", + "departmentName":"Virginia Department of Taxation", + "url": "https://www.statefillableforms.com/va", + "currentTaxYear": "2013" + + } +} \ No newline at end of file diff --git a/test/index.js b/test/index.js index 0577ac56..5ea65cde 100644 --- a/test/index.js +++ b/test/index.js @@ -5,7 +5,7 @@ var vows = require('vows'), assert = require('assert'), fs = require('fs') nodeEvents = require("events"), - _ = require('underscore'), + _ = require('lodash'), PFParser = require("../pdfparser"); var suite = vows.describe('PDF Node Parser'); diff --git a/test/p2j.forms.sh b/test/p2j.forms.sh new file mode 100755 index 00000000..286fa0c8 --- /dev/null +++ b/test/p2j.forms.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash +STARTTIME=$(date +%s) +AGENCIES=("dc" "de" "ef" "fd" "nd" "or" "pa" "sc" "va") +for i in "${AGENCIES[@]}" +do + sh ./p2j.one.sh $i form "Expected: NO Exception, All Parsed OK" +done + +# Travis CI doesn't seem to support arrays in bash for testing. +# Reverting to a bunch of commands so that build button can be shown. +# sh ./p2j.one.sh dc +# sh ./p2j.one.sh de +# sh ./p2j.one.sh ef +# sh ./p2j.one.sh fd +# sh ./p2j.one.sh nd +# sh ./p2j.one.sh or +# sh ./p2j.one.sh pa +# sh ./p2j.one.sh sc +# sh ./p2j.one.sh va + +ENDTIME=$(date +%s) +echo "It takes $(($ENDTIME - $STARTTIME)) seconds to process all PDFs ..." diff --git a/test/p2j.one.sh b/test/p2j.one.sh new file mode 100755 index 00000000..85e92e5c --- /dev/null +++ b/test/p2j.one.sh @@ -0,0 +1,24 @@ +#!/usr/bin/env bash +IN_DIR_BASE=./pdf +OUT_DIR_BASE=./target +DATA_DIR_BASE=./data +PDF2JSON=../pdf2json.js +AGENCY_NAME=$1 +FORM_BASE=$2 +EXPECTED_RESULT=$3 + +echo "-----------------------------------------------------" +echo "Clean up existing $AGENCY_NAME JSON" +echo "-----------------------------------------------------" +rm -rfv $OUT_DIR_BASE/$AGENCY_NAME + +echo "-----------------------------------------------------" +echo "Update $AGENCY_NAME PDF" +echo "-----------------------------------------------------" +mkdir -p $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE +node --trace-deprecation --trace-warnings $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/ + +echo "-----------------------------------------------------" +echo "$IN_DIR_BASE/$AGENCY_NAME/$FORM_BASE : $EXPECTED_RESULT" +echo "-----------------------------------------------------" diff --git a/test/pdf/dc/form/DC2210.pdf b/test/pdf/dc/form/DC2210.pdf new file mode 100755 index 00000000..8adccac8 Binary files /dev/null and b/test/pdf/dc/form/DC2210.pdf differ diff --git a/test/pdf/dc/form/DC40.pdf b/test/pdf/dc/form/DC40.pdf new file mode 100755 index 00000000..0f7089d6 Binary files /dev/null and b/test/pdf/dc/form/DC40.pdf differ diff --git a/test/pdf/dc/form/DC40EZ.pdf b/test/pdf/dc/form/DC40EZ.pdf new file mode 100755 index 00000000..d911bd6c Binary files /dev/null and b/test/pdf/dc/form/DC40EZ.pdf differ diff --git a/test/pdf/dc/form/DCSCHH.pdf b/test/pdf/dc/form/DCSCHH.pdf new file mode 100755 index 00000000..dc30ab46 Binary files /dev/null and b/test/pdf/dc/form/DCSCHH.pdf differ diff --git a/test/pdf/dc/form/DCSCHH34.pdf b/test/pdf/dc/form/DCSCHH34.pdf new file mode 100755 index 00000000..3dd65d3d Binary files /dev/null and b/test/pdf/dc/form/DCSCHH34.pdf differ diff --git a/test/pdf/dc/form/DCSCHI.pdf b/test/pdf/dc/form/DCSCHI.pdf new file mode 100755 index 00000000..723547a8 Binary files /dev/null and b/test/pdf/dc/form/DCSCHI.pdf differ diff --git a/test/pdf/dc/form/DCSCHN.pdf b/test/pdf/dc/form/DCSCHN.pdf new file mode 100755 index 00000000..61525c25 Binary files /dev/null and b/test/pdf/dc/form/DCSCHN.pdf differ diff --git a/test/pdf/dc/form/DCSCHNS.pdf b/test/pdf/dc/form/DCSCHNS.pdf new file mode 100755 index 00000000..28cfc1d0 Binary files /dev/null and b/test/pdf/dc/form/DCSCHNS.pdf differ diff --git a/test/pdf/dc/form/DCSCHS.pdf b/test/pdf/dc/form/DCSCHS.pdf new file mode 100755 index 00000000..3f509710 Binary files /dev/null and b/test/pdf/dc/form/DCSCHS.pdf differ diff --git a/test/pdf/dc/form/DCSCHU.pdf b/test/pdf/dc/form/DCSCHU.pdf new file mode 100755 index 00000000..9bee11b3 Binary files /dev/null and b/test/pdf/dc/form/DCSCHU.pdf differ diff --git a/test/pdf/dc/form/VOUCH.pdf b/test/pdf/dc/form/VOUCH.pdf new file mode 100755 index 00000000..f05b462b Binary files /dev/null and b/test/pdf/dc/form/VOUCH.pdf differ diff --git a/test/pdf/dc/inst/dc_ins_2210.pdf b/test/pdf/dc/inst/dc_ins_2210.pdf new file mode 100755 index 00000000..2f535399 Binary files /dev/null and b/test/pdf/dc/inst/dc_ins_2210.pdf differ diff --git a/test/pdf/dc/inst/dc_ins_40.pdf b/test/pdf/dc/inst/dc_ins_40.pdf new file mode 100755 index 00000000..d6ebc459 Binary files /dev/null and b/test/pdf/dc/inst/dc_ins_40.pdf differ diff --git a/test/pdf/dc/inst/dc_ins_40ez.pdf b/test/pdf/dc/inst/dc_ins_40ez.pdf new file mode 100755 index 00000000..22d58b8c Binary files /dev/null and b/test/pdf/dc/inst/dc_ins_40ez.pdf differ diff --git a/test/pdf/de/form/DE200_01.pdf b/test/pdf/de/form/DE200_01.pdf new file mode 100755 index 00000000..08c9d146 Binary files /dev/null and b/test/pdf/de/form/DE200_01.pdf differ diff --git a/test/pdf/de/form/DE201P3.pdf b/test/pdf/de/form/DE201P3.pdf new file mode 100755 index 00000000..833292b8 Binary files /dev/null and b/test/pdf/de/form/DE201P3.pdf differ diff --git a/test/pdf/de/form/DE329S.pdf b/test/pdf/de/form/DE329S.pdf new file mode 100755 index 00000000..38f6784c Binary files /dev/null and b/test/pdf/de/form/DE329S.pdf differ diff --git a/test/pdf/de/form/DE329T.pdf b/test/pdf/de/form/DE329T.pdf new file mode 100755 index 00000000..bf502876 Binary files /dev/null and b/test/pdf/de/form/DE329T.pdf differ diff --git a/test/pdf/de/form/VOUCHEF.pdf b/test/pdf/de/form/VOUCHEF.pdf new file mode 100755 index 00000000..85920f6c Binary files /dev/null and b/test/pdf/de/form/VOUCHEF.pdf differ diff --git a/test/pdf/de/inst/de_ins_DE200-01.pdf b/test/pdf/de/inst/de_ins_DE200-01.pdf new file mode 100755 index 00000000..49d92cc6 Binary files /dev/null and b/test/pdf/de/inst/de_ins_DE200-01.pdf differ diff --git a/test/pdf/de/inst/de_ins_DEVOUCHEF.pdf b/test/pdf/de/inst/de_ins_DEVOUCHEF.pdf new file mode 100755 index 00000000..c04eb643 Binary files /dev/null and b/test/pdf/de/inst/de_ins_DEVOUCHEF.pdf differ diff --git a/test/pdf/ef/form/A1040.pdf b/test/pdf/ef/form/A1040.pdf new file mode 100755 index 00000000..9f3a2f0a Binary files /dev/null and b/test/pdf/ef/form/A1040.pdf differ diff --git a/test/pdf/ef/form/A1040A.pdf b/test/pdf/ef/form/A1040A.pdf new file mode 100755 index 00000000..499be498 Binary files /dev/null and b/test/pdf/ef/form/A1040A.pdf differ diff --git a/test/pdf/ef/form/A1040EZ.pdf b/test/pdf/ef/form/A1040EZ.pdf new file mode 100755 index 00000000..a6aef023 Binary files /dev/null and b/test/pdf/ef/form/A1040EZ.pdf differ diff --git a/test/pdf/ef/form/EFIDCEZ.pdf b/test/pdf/ef/form/EFIDCEZ.pdf new file mode 100755 index 00000000..a6922d14 Binary files /dev/null and b/test/pdf/ef/form/EFIDCEZ.pdf differ diff --git a/test/pdf/ef/form/EFIF.pdf b/test/pdf/ef/form/EFIF.pdf new file mode 100755 index 00000000..c6bd3728 Binary files /dev/null and b/test/pdf/ef/form/EFIF.pdf differ diff --git a/test/pdf/ef/form/EFIFA.pdf b/test/pdf/ef/form/EFIFA.pdf new file mode 100755 index 00000000..9205dda2 Binary files /dev/null and b/test/pdf/ef/form/EFIFA.pdf differ diff --git a/test/pdf/ef/form/EFIFEZ.pdf b/test/pdf/ef/form/EFIFEZ.pdf new file mode 100755 index 00000000..bde3dbb9 Binary files /dev/null and b/test/pdf/ef/form/EFIFEZ.pdf differ diff --git a/test/pdf/ef/form/EFINDEZ.pdf b/test/pdf/ef/form/EFINDEZ.pdf new file mode 100755 index 00000000..c8a8644a Binary files /dev/null and b/test/pdf/ef/form/EFINDEZ.pdf differ diff --git a/test/pdf/ef/form/EFINFODC.pdf b/test/pdf/ef/form/EFINFODC.pdf new file mode 100755 index 00000000..c372a7e7 Binary files /dev/null and b/test/pdf/ef/form/EFINFODC.pdf differ diff --git a/test/pdf/ef/form/EFINFODE.pdf b/test/pdf/ef/form/EFINFODE.pdf new file mode 100755 index 00000000..9e71202b Binary files /dev/null and b/test/pdf/ef/form/EFINFODE.pdf differ diff --git a/test/pdf/ef/form/EFINFOND.pdf b/test/pdf/ef/form/EFINFOND.pdf new file mode 100755 index 00000000..e27990f4 Binary files /dev/null and b/test/pdf/ef/form/EFINFOND.pdf differ diff --git a/test/pdf/ef/form/EFINFOOR.pdf b/test/pdf/ef/form/EFINFOOR.pdf new file mode 100755 index 00000000..c16130b1 Binary files /dev/null and b/test/pdf/ef/form/EFINFOOR.pdf differ diff --git a/test/pdf/ef/form/EFINFOPA.pdf b/test/pdf/ef/form/EFINFOPA.pdf new file mode 100755 index 00000000..4caa21da Binary files /dev/null and b/test/pdf/ef/form/EFINFOPA.pdf differ diff --git a/test/pdf/ef/form/EFINFOSC.pdf b/test/pdf/ef/form/EFINFOSC.pdf new file mode 100755 index 00000000..2fb323a4 Binary files /dev/null and b/test/pdf/ef/form/EFINFOSC.pdf differ diff --git a/test/pdf/ef/form/EFINFOVA.pdf b/test/pdf/ef/form/EFINFOVA.pdf new file mode 100755 index 00000000..7f68e9b1 Binary files /dev/null and b/test/pdf/ef/form/EFINFOVA.pdf differ diff --git a/test/pdf/ef/form/F1099D.pdf b/test/pdf/ef/form/F1099D.pdf new file mode 100755 index 00000000..28a66d11 Binary files /dev/null and b/test/pdf/ef/form/F1099D.pdf differ diff --git a/test/pdf/ef/form/F1099G.pdf b/test/pdf/ef/form/F1099G.pdf new file mode 100755 index 00000000..6cc12cdf Binary files /dev/null and b/test/pdf/ef/form/F1099G.pdf differ diff --git a/test/pdf/ef/form/F1099I.pdf b/test/pdf/ef/form/F1099I.pdf new file mode 100755 index 00000000..aeeee98e Binary files /dev/null and b/test/pdf/ef/form/F1099I.pdf differ diff --git a/test/pdf/ef/form/F1099R.pdf b/test/pdf/ef/form/F1099R.pdf new file mode 100755 index 00000000..4712acc8 Binary files /dev/null and b/test/pdf/ef/form/F1099R.pdf differ diff --git a/test/pdf/ef/form/F99MPER.pdf b/test/pdf/ef/form/F99MPER.pdf new file mode 100755 index 00000000..fa5f3a85 Binary files /dev/null and b/test/pdf/ef/form/F99MPER.pdf differ diff --git a/test/pdf/ef/form/FW2.pdf b/test/pdf/ef/form/FW2.pdf new file mode 100755 index 00000000..fe4dbc86 Binary files /dev/null and b/test/pdf/ef/form/FW2.pdf differ diff --git a/test/pdf/ef/form/FW2G.pdf b/test/pdf/ef/form/FW2G.pdf new file mode 100755 index 00000000..6b6bdc0f Binary files /dev/null and b/test/pdf/ef/form/FW2G.pdf differ diff --git a/test/pdf/ef/form/PAStep_2.pdf b/test/pdf/ef/form/PAStep_2.pdf new file mode 100755 index 00000000..8806fb74 Binary files /dev/null and b/test/pdf/ef/form/PAStep_2.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1040.pdf b/test/pdf/ef/inst/ef_ins_1040.pdf new file mode 100755 index 00000000..9dec084d Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1040.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1040a.pdf b/test/pdf/ef/inst/ef_ins_1040a.pdf new file mode 100755 index 00000000..666faa47 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1040a.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1040ez.pdf b/test/pdf/ef/inst/ef_ins_1040ez.pdf new file mode 100755 index 00000000..3879afbc Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1040ez.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1099div.pdf b/test/pdf/ef/inst/ef_ins_1099div.pdf new file mode 100755 index 00000000..8337d457 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1099div.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1099g.pdf b/test/pdf/ef/inst/ef_ins_1099g.pdf new file mode 100755 index 00000000..8cbcae4b Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1099g.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1099int.pdf b/test/pdf/ef/inst/ef_ins_1099int.pdf new file mode 100755 index 00000000..6f1f38c4 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1099int.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1099misc.pdf b/test/pdf/ef/inst/ef_ins_1099misc.pdf new file mode 100755 index 00000000..e5eb04bb Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1099misc.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_1099r.pdf b/test/pdf/ef/inst/ef_ins_1099r.pdf new file mode 100755 index 00000000..c12976d7 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_1099r.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_dc.pdf b/test/pdf/ef/inst/ef_ins_dc.pdf new file mode 100755 index 00000000..6759cce5 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_dc.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_de.pdf b/test/pdf/ef/inst/ef_ins_de.pdf new file mode 100755 index 00000000..feec87a3 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_de.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_fd.pdf b/test/pdf/ef/inst/ef_ins_fd.pdf new file mode 100755 index 00000000..8220de1b Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_fd.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_nd.pdf b/test/pdf/ef/inst/ef_ins_nd.pdf new file mode 100755 index 00000000..8846db56 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_nd.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_or.pdf b/test/pdf/ef/inst/ef_ins_or.pdf new file mode 100755 index 00000000..5a752089 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_or.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_pa.pdf b/test/pdf/ef/inst/ef_ins_pa.pdf new file mode 100755 index 00000000..2439848d Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_pa.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_sc.pdf b/test/pdf/ef/inst/ef_ins_sc.pdf new file mode 100755 index 00000000..ee58414d Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_sc.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_va.pdf b/test/pdf/ef/inst/ef_ins_va.pdf new file mode 100755 index 00000000..0c3a50a6 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_va.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_w2.pdf b/test/pdf/ef/inst/ef_ins_w2.pdf new file mode 100755 index 00000000..4017a264 Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_w2.pdf differ diff --git a/test/pdf/ef/inst/ef_ins_w2g.pdf b/test/pdf/ef/inst/ef_ins_w2g.pdf new file mode 100755 index 00000000..e7284abe Binary files /dev/null and b/test/pdf/ef/inst/ef_ins_w2g.pdf differ diff --git a/test/pdf/fd/form/F1040.pdf b/test/pdf/fd/form/F1040.pdf new file mode 100755 index 00000000..2b95e033 Binary files /dev/null and b/test/pdf/fd/form/F1040.pdf differ diff --git a/test/pdf/fd/form/F1040A.pdf b/test/pdf/fd/form/F1040A.pdf new file mode 100755 index 00000000..87836d5a Binary files /dev/null and b/test/pdf/fd/form/F1040A.pdf differ diff --git a/test/pdf/fd/form/F1040EZ.pdf b/test/pdf/fd/form/F1040EZ.pdf new file mode 100755 index 00000000..8c6a8904 Binary files /dev/null and b/test/pdf/fd/form/F1040EZ.pdf differ diff --git a/test/pdf/fd/form/F1040ST.pdf b/test/pdf/fd/form/F1040ST.pdf new file mode 100755 index 00000000..0977ea4e Binary files /dev/null and b/test/pdf/fd/form/F1040ST.pdf differ diff --git a/test/pdf/fd/form/F1040V.pdf b/test/pdf/fd/form/F1040V.pdf new file mode 100755 index 00000000..dd1cb1d2 Binary files /dev/null and b/test/pdf/fd/form/F1040V.pdf differ diff --git a/test/pdf/fd/form/F1116.pdf b/test/pdf/fd/form/F1116.pdf new file mode 100755 index 00000000..1c6104ea Binary files /dev/null and b/test/pdf/fd/form/F1116.pdf differ diff --git a/test/pdf/fd/form/F1310.pdf b/test/pdf/fd/form/F1310.pdf new file mode 100755 index 00000000..a0e577b8 Binary files /dev/null and b/test/pdf/fd/form/F1310.pdf differ diff --git a/test/pdf/fd/form/F1310S.pdf b/test/pdf/fd/form/F1310S.pdf new file mode 100755 index 00000000..d9666327 Binary files /dev/null and b/test/pdf/fd/form/F1310S.pdf differ diff --git a/test/pdf/fd/form/F2106.pdf b/test/pdf/fd/form/F2106.pdf new file mode 100755 index 00000000..1977804b Binary files /dev/null and b/test/pdf/fd/form/F2106.pdf differ diff --git a/test/pdf/fd/form/F2106EZ.pdf b/test/pdf/fd/form/F2106EZ.pdf new file mode 100755 index 00000000..c94b5492 Binary files /dev/null and b/test/pdf/fd/form/F2106EZ.pdf differ diff --git a/test/pdf/fd/form/F2106EZS.pdf b/test/pdf/fd/form/F2106EZS.pdf new file mode 100755 index 00000000..c94b5492 Binary files /dev/null and b/test/pdf/fd/form/F2106EZS.pdf differ diff --git a/test/pdf/fd/form/F2106S.pdf b/test/pdf/fd/form/F2106S.pdf new file mode 100755 index 00000000..1977804b Binary files /dev/null and b/test/pdf/fd/form/F2106S.pdf differ diff --git a/test/pdf/fd/form/F2120.pdf b/test/pdf/fd/form/F2120.pdf new file mode 100755 index 00000000..c9c67a47 Binary files /dev/null and b/test/pdf/fd/form/F2120.pdf differ diff --git a/test/pdf/fd/form/F2210.pdf b/test/pdf/fd/form/F2210.pdf new file mode 100755 index 00000000..b80ad1ad Binary files /dev/null and b/test/pdf/fd/form/F2210.pdf differ diff --git a/test/pdf/fd/form/F2210AI.pdf b/test/pdf/fd/form/F2210AI.pdf new file mode 100755 index 00000000..936ba54e Binary files /dev/null and b/test/pdf/fd/form/F2210AI.pdf differ diff --git a/test/pdf/fd/form/F2210F.pdf b/test/pdf/fd/form/F2210F.pdf new file mode 100755 index 00000000..7031f4c2 Binary files /dev/null and b/test/pdf/fd/form/F2210F.pdf differ diff --git a/test/pdf/fd/form/F2439.pdf b/test/pdf/fd/form/F2439.pdf new file mode 100755 index 00000000..50abbc00 Binary files /dev/null and b/test/pdf/fd/form/F2439.pdf differ diff --git a/test/pdf/fd/form/F2441.pdf b/test/pdf/fd/form/F2441.pdf new file mode 100755 index 00000000..6b1876ef Binary files /dev/null and b/test/pdf/fd/form/F2441.pdf differ diff --git a/test/pdf/fd/form/F2441DEP.pdf b/test/pdf/fd/form/F2441DEP.pdf new file mode 100755 index 00000000..654263d0 Binary files /dev/null and b/test/pdf/fd/form/F2441DEP.pdf differ diff --git a/test/pdf/fd/form/F255512S.pdf b/test/pdf/fd/form/F255512S.pdf new file mode 100755 index 00000000..a0145fbf Binary files /dev/null and b/test/pdf/fd/form/F255512S.pdf differ diff --git a/test/pdf/fd/form/F255512T.pdf b/test/pdf/fd/form/F255512T.pdf new file mode 100755 index 00000000..907060d1 Binary files /dev/null and b/test/pdf/fd/form/F255512T.pdf differ diff --git a/test/pdf/fd/form/F25553S.pdf b/test/pdf/fd/form/F25553S.pdf new file mode 100755 index 00000000..215bfbf8 Binary files /dev/null and b/test/pdf/fd/form/F25553S.pdf differ diff --git a/test/pdf/fd/form/F25553T.pdf b/test/pdf/fd/form/F25553T.pdf new file mode 100755 index 00000000..215bfbf8 Binary files /dev/null and b/test/pdf/fd/form/F25553T.pdf differ diff --git a/test/pdf/fd/form/F2555EZ.pdf b/test/pdf/fd/form/F2555EZ.pdf new file mode 100755 index 00000000..cb139a73 Binary files /dev/null and b/test/pdf/fd/form/F2555EZ.pdf differ diff --git a/test/pdf/fd/form/F2555EZS.pdf b/test/pdf/fd/form/F2555EZS.pdf new file mode 100755 index 00000000..217d9ede Binary files /dev/null and b/test/pdf/fd/form/F2555EZS.pdf differ diff --git a/test/pdf/fd/form/F3468.pdf b/test/pdf/fd/form/F3468.pdf new file mode 100755 index 00000000..774411d5 Binary files /dev/null and b/test/pdf/fd/form/F3468.pdf differ diff --git a/test/pdf/fd/form/F3800.pdf b/test/pdf/fd/form/F3800.pdf new file mode 100755 index 00000000..648b7a5b Binary files /dev/null and b/test/pdf/fd/form/F3800.pdf differ diff --git a/test/pdf/fd/form/F3800MLT.pdf b/test/pdf/fd/form/F3800MLT.pdf new file mode 100755 index 00000000..4c3b4f8e Binary files /dev/null and b/test/pdf/fd/form/F3800MLT.pdf differ diff --git a/test/pdf/fd/form/F3903.pdf b/test/pdf/fd/form/F3903.pdf new file mode 100755 index 00000000..83c8a01b Binary files /dev/null and b/test/pdf/fd/form/F3903.pdf differ diff --git a/test/pdf/fd/form/F4136.pdf b/test/pdf/fd/form/F4136.pdf new file mode 100755 index 00000000..449b62be Binary files /dev/null and b/test/pdf/fd/form/F4136.pdf differ diff --git a/test/pdf/fd/form/F4137S.pdf b/test/pdf/fd/form/F4137S.pdf new file mode 100755 index 00000000..ea72a306 Binary files /dev/null and b/test/pdf/fd/form/F4137S.pdf differ diff --git a/test/pdf/fd/form/F4137T.pdf b/test/pdf/fd/form/F4137T.pdf new file mode 100755 index 00000000..ea72a306 Binary files /dev/null and b/test/pdf/fd/form/F4137T.pdf differ diff --git a/test/pdf/fd/form/F4255.pdf b/test/pdf/fd/form/F4255.pdf new file mode 100755 index 00000000..6c9060b5 Binary files /dev/null and b/test/pdf/fd/form/F4255.pdf differ diff --git a/test/pdf/fd/form/F4562C.pdf b/test/pdf/fd/form/F4562C.pdf new file mode 100755 index 00000000..8072fcbb Binary files /dev/null and b/test/pdf/fd/form/F4562C.pdf differ diff --git a/test/pdf/fd/form/F4562E.pdf b/test/pdf/fd/form/F4562E.pdf new file mode 100755 index 00000000..8072fcbb Binary files /dev/null and b/test/pdf/fd/form/F4562E.pdf differ diff --git a/test/pdf/fd/form/F4562F.pdf b/test/pdf/fd/form/F4562F.pdf new file mode 100755 index 00000000..8072fcbb Binary files /dev/null and b/test/pdf/fd/form/F4562F.pdf differ diff --git a/test/pdf/fd/form/F4562R.pdf b/test/pdf/fd/form/F4562R.pdf new file mode 100755 index 00000000..8072fcbb Binary files /dev/null and b/test/pdf/fd/form/F4562R.pdf differ diff --git a/test/pdf/fd/form/F4684.pdf b/test/pdf/fd/form/F4684.pdf new file mode 100755 index 00000000..946bd9da Binary files /dev/null and b/test/pdf/fd/form/F4684.pdf differ diff --git a/test/pdf/fd/form/F46842.pdf b/test/pdf/fd/form/F46842.pdf new file mode 100755 index 00000000..72016382 Binary files /dev/null and b/test/pdf/fd/form/F46842.pdf differ diff --git a/test/pdf/fd/form/F46843.pdf b/test/pdf/fd/form/F46843.pdf new file mode 100755 index 00000000..489a74a4 Binary files /dev/null and b/test/pdf/fd/form/F46843.pdf differ diff --git a/test/pdf/fd/form/F4797.pdf b/test/pdf/fd/form/F4797.pdf new file mode 100755 index 00000000..d481833b Binary files /dev/null and b/test/pdf/fd/form/F4797.pdf differ diff --git a/test/pdf/fd/form/F47972.pdf b/test/pdf/fd/form/F47972.pdf new file mode 100755 index 00000000..ae62cf54 Binary files /dev/null and b/test/pdf/fd/form/F47972.pdf differ diff --git a/test/pdf/fd/form/F4835.pdf b/test/pdf/fd/form/F4835.pdf new file mode 100755 index 00000000..2f41f116 Binary files /dev/null and b/test/pdf/fd/form/F4835.pdf differ diff --git a/test/pdf/fd/form/F4868.pdf b/test/pdf/fd/form/F4868.pdf new file mode 100755 index 00000000..7b7bf33c Binary files /dev/null and b/test/pdf/fd/form/F4868.pdf differ diff --git a/test/pdf/fd/form/F4952.pdf b/test/pdf/fd/form/F4952.pdf new file mode 100755 index 00000000..6f93573d Binary files /dev/null and b/test/pdf/fd/form/F4952.pdf differ diff --git a/test/pdf/fd/form/F4972S.pdf b/test/pdf/fd/form/F4972S.pdf new file mode 100755 index 00000000..489d021d Binary files /dev/null and b/test/pdf/fd/form/F4972S.pdf differ diff --git a/test/pdf/fd/form/F4972T.pdf b/test/pdf/fd/form/F4972T.pdf new file mode 100755 index 00000000..f6e44539 Binary files /dev/null and b/test/pdf/fd/form/F4972T.pdf differ diff --git a/test/pdf/fd/form/F5329S.pdf b/test/pdf/fd/form/F5329S.pdf new file mode 100755 index 00000000..ab8a28cd Binary files /dev/null and b/test/pdf/fd/form/F5329S.pdf differ diff --git a/test/pdf/fd/form/F5329T.pdf b/test/pdf/fd/form/F5329T.pdf new file mode 100755 index 00000000..674728e7 Binary files /dev/null and b/test/pdf/fd/form/F5329T.pdf differ diff --git a/test/pdf/fd/form/F5405.pdf b/test/pdf/fd/form/F5405.pdf new file mode 100755 index 00000000..6d7aa5cf Binary files /dev/null and b/test/pdf/fd/form/F5405.pdf differ diff --git a/test/pdf/fd/form/F5695.pdf b/test/pdf/fd/form/F5695.pdf new file mode 100755 index 00000000..f8c749e9 Binary files /dev/null and b/test/pdf/fd/form/F5695.pdf differ diff --git a/test/pdf/fd/form/F5884.pdf b/test/pdf/fd/form/F5884.pdf new file mode 100755 index 00000000..8f9d7966 Binary files /dev/null and b/test/pdf/fd/form/F5884.pdf differ diff --git a/test/pdf/fd/form/F6198C.pdf b/test/pdf/fd/form/F6198C.pdf new file mode 100755 index 00000000..985557d0 Binary files /dev/null and b/test/pdf/fd/form/F6198C.pdf differ diff --git a/test/pdf/fd/form/F6198E.pdf b/test/pdf/fd/form/F6198E.pdf new file mode 100755 index 00000000..985557d0 Binary files /dev/null and b/test/pdf/fd/form/F6198E.pdf differ diff --git a/test/pdf/fd/form/F6198F.pdf b/test/pdf/fd/form/F6198F.pdf new file mode 100755 index 00000000..985557d0 Binary files /dev/null and b/test/pdf/fd/form/F6198F.pdf differ diff --git a/test/pdf/fd/form/F6198R.pdf b/test/pdf/fd/form/F6198R.pdf new file mode 100755 index 00000000..985557d0 Binary files /dev/null and b/test/pdf/fd/form/F6198R.pdf differ diff --git a/test/pdf/fd/form/F6251.pdf b/test/pdf/fd/form/F6251.pdf new file mode 100755 index 00000000..053747aa Binary files /dev/null and b/test/pdf/fd/form/F6251.pdf differ diff --git a/test/pdf/fd/form/F6252.pdf b/test/pdf/fd/form/F6252.pdf new file mode 100755 index 00000000..c641f6f3 Binary files /dev/null and b/test/pdf/fd/form/F6252.pdf differ diff --git a/test/pdf/fd/form/F6478.pdf b/test/pdf/fd/form/F6478.pdf new file mode 100755 index 00000000..b41f7bc6 Binary files /dev/null and b/test/pdf/fd/form/F6478.pdf differ diff --git a/test/pdf/fd/form/F6765.pdf b/test/pdf/fd/form/F6765.pdf new file mode 100755 index 00000000..a0140df0 Binary files /dev/null and b/test/pdf/fd/form/F6765.pdf differ diff --git a/test/pdf/fd/form/F6765P2.pdf b/test/pdf/fd/form/F6765P2.pdf new file mode 100755 index 00000000..0506168b Binary files /dev/null and b/test/pdf/fd/form/F6765P2.pdf differ diff --git a/test/pdf/fd/form/F6781.pdf b/test/pdf/fd/form/F6781.pdf new file mode 100755 index 00000000..723b6a36 Binary files /dev/null and b/test/pdf/fd/form/F6781.pdf differ diff --git a/test/pdf/fd/form/F8082.pdf b/test/pdf/fd/form/F8082.pdf new file mode 100755 index 00000000..cbc584b9 Binary files /dev/null and b/test/pdf/fd/form/F8082.pdf differ diff --git a/test/pdf/fd/form/F8275.pdf b/test/pdf/fd/form/F8275.pdf new file mode 100755 index 00000000..2a71e5f6 Binary files /dev/null and b/test/pdf/fd/form/F8275.pdf differ diff --git a/test/pdf/fd/form/F8275R.pdf b/test/pdf/fd/form/F8275R.pdf new file mode 100755 index 00000000..dd2c1f33 Binary files /dev/null and b/test/pdf/fd/form/F8275R.pdf differ diff --git a/test/pdf/fd/form/F8283.pdf b/test/pdf/fd/form/F8283.pdf new file mode 100755 index 00000000..f1a6ef78 Binary files /dev/null and b/test/pdf/fd/form/F8283.pdf differ diff --git a/test/pdf/fd/form/F8379.pdf b/test/pdf/fd/form/F8379.pdf new file mode 100755 index 00000000..fd49c407 Binary files /dev/null and b/test/pdf/fd/form/F8379.pdf differ diff --git a/test/pdf/fd/form/F8396.pdf b/test/pdf/fd/form/F8396.pdf new file mode 100755 index 00000000..dc55a010 Binary files /dev/null and b/test/pdf/fd/form/F8396.pdf differ diff --git a/test/pdf/fd/form/F8453.pdf b/test/pdf/fd/form/F8453.pdf new file mode 100755 index 00000000..d09c5b10 Binary files /dev/null and b/test/pdf/fd/form/F8453.pdf differ diff --git a/test/pdf/fd/form/F8582.pdf b/test/pdf/fd/form/F8582.pdf new file mode 100755 index 00000000..064c40ac Binary files /dev/null and b/test/pdf/fd/form/F8582.pdf differ diff --git a/test/pdf/fd/form/F8582CR.pdf b/test/pdf/fd/form/F8582CR.pdf new file mode 100755 index 00000000..c0272d34 Binary files /dev/null and b/test/pdf/fd/form/F8582CR.pdf differ diff --git a/test/pdf/fd/form/F8582W15.pdf b/test/pdf/fd/form/F8582W15.pdf new file mode 100755 index 00000000..dc7afd45 Binary files /dev/null and b/test/pdf/fd/form/F8582W15.pdf differ diff --git a/test/pdf/fd/form/F8582W6.pdf b/test/pdf/fd/form/F8582W6.pdf new file mode 100755 index 00000000..1bcd1fb0 Binary files /dev/null and b/test/pdf/fd/form/F8582W6.pdf differ diff --git a/test/pdf/fd/form/F8586.pdf b/test/pdf/fd/form/F8586.pdf new file mode 100755 index 00000000..71d819cc Binary files /dev/null and b/test/pdf/fd/form/F8586.pdf differ diff --git a/test/pdf/fd/form/F8594.pdf b/test/pdf/fd/form/F8594.pdf new file mode 100755 index 00000000..65a94f6b Binary files /dev/null and b/test/pdf/fd/form/F8594.pdf differ diff --git a/test/pdf/fd/form/F8606S.pdf b/test/pdf/fd/form/F8606S.pdf new file mode 100755 index 00000000..2b7dc936 Binary files /dev/null and b/test/pdf/fd/form/F8606S.pdf differ diff --git a/test/pdf/fd/form/F8606T.pdf b/test/pdf/fd/form/F8606T.pdf new file mode 100755 index 00000000..2b7dc936 Binary files /dev/null and b/test/pdf/fd/form/F8606T.pdf differ diff --git a/test/pdf/fd/form/F8609A.pdf b/test/pdf/fd/form/F8609A.pdf new file mode 100755 index 00000000..f54f8099 Binary files /dev/null and b/test/pdf/fd/form/F8609A.pdf differ diff --git a/test/pdf/fd/form/F8611.pdf b/test/pdf/fd/form/F8611.pdf new file mode 100755 index 00000000..64f7429d Binary files /dev/null and b/test/pdf/fd/form/F8611.pdf differ diff --git a/test/pdf/fd/form/F8615.pdf b/test/pdf/fd/form/F8615.pdf new file mode 100755 index 00000000..8df9c13a Binary files /dev/null and b/test/pdf/fd/form/F8615.pdf differ diff --git a/test/pdf/fd/form/F8689.pdf b/test/pdf/fd/form/F8689.pdf new file mode 100755 index 00000000..a2c73c39 Binary files /dev/null and b/test/pdf/fd/form/F8689.pdf differ diff --git a/test/pdf/fd/form/F8697.pdf b/test/pdf/fd/form/F8697.pdf new file mode 100755 index 00000000..8f164888 Binary files /dev/null and b/test/pdf/fd/form/F8697.pdf differ diff --git a/test/pdf/fd/form/F8801.pdf b/test/pdf/fd/form/F8801.pdf new file mode 100755 index 00000000..491139b8 Binary files /dev/null and b/test/pdf/fd/form/F8801.pdf differ diff --git a/test/pdf/fd/form/F8812.pdf b/test/pdf/fd/form/F8812.pdf new file mode 100755 index 00000000..156f6b4f Binary files /dev/null and b/test/pdf/fd/form/F8812.pdf differ diff --git a/test/pdf/fd/form/F8814.pdf b/test/pdf/fd/form/F8814.pdf new file mode 100755 index 00000000..3be21034 Binary files /dev/null and b/test/pdf/fd/form/F8814.pdf differ diff --git a/test/pdf/fd/form/F8815.pdf b/test/pdf/fd/form/F8815.pdf new file mode 100755 index 00000000..9c6a153a Binary files /dev/null and b/test/pdf/fd/form/F8815.pdf differ diff --git a/test/pdf/fd/form/F8820.pdf b/test/pdf/fd/form/F8820.pdf new file mode 100755 index 00000000..37d4afd4 Binary files /dev/null and b/test/pdf/fd/form/F8820.pdf differ diff --git a/test/pdf/fd/form/F8824.pdf b/test/pdf/fd/form/F8824.pdf new file mode 100755 index 00000000..953904be Binary files /dev/null and b/test/pdf/fd/form/F8824.pdf differ diff --git a/test/pdf/fd/form/F8826.pdf b/test/pdf/fd/form/F8826.pdf new file mode 100755 index 00000000..23d8969a Binary files /dev/null and b/test/pdf/fd/form/F8826.pdf differ diff --git a/test/pdf/fd/form/F8828.pdf b/test/pdf/fd/form/F8828.pdf new file mode 100755 index 00000000..42cca1e8 Binary files /dev/null and b/test/pdf/fd/form/F8828.pdf differ diff --git a/test/pdf/fd/form/F8829.pdf b/test/pdf/fd/form/F8829.pdf new file mode 100755 index 00000000..09373c61 Binary files /dev/null and b/test/pdf/fd/form/F8829.pdf differ diff --git a/test/pdf/fd/form/F8833.pdf b/test/pdf/fd/form/F8833.pdf new file mode 100755 index 00000000..57e80b00 Binary files /dev/null and b/test/pdf/fd/form/F8833.pdf differ diff --git a/test/pdf/fd/form/F8834.pdf b/test/pdf/fd/form/F8834.pdf new file mode 100755 index 00000000..55f601c6 Binary files /dev/null and b/test/pdf/fd/form/F8834.pdf differ diff --git a/test/pdf/fd/form/F8839.pdf b/test/pdf/fd/form/F8839.pdf new file mode 100755 index 00000000..ba0a8c12 Binary files /dev/null and b/test/pdf/fd/form/F8839.pdf differ diff --git a/test/pdf/fd/form/F8844.pdf b/test/pdf/fd/form/F8844.pdf new file mode 100755 index 00000000..fa5de87e Binary files /dev/null and b/test/pdf/fd/form/F8844.pdf differ diff --git a/test/pdf/fd/form/F8845.pdf b/test/pdf/fd/form/F8845.pdf new file mode 100755 index 00000000..af130db9 Binary files /dev/null and b/test/pdf/fd/form/F8845.pdf differ diff --git a/test/pdf/fd/form/F8846.pdf b/test/pdf/fd/form/F8846.pdf new file mode 100755 index 00000000..784e3025 Binary files /dev/null and b/test/pdf/fd/form/F8846.pdf differ diff --git a/test/pdf/fd/form/F8853.pdf b/test/pdf/fd/form/F8853.pdf new file mode 100755 index 00000000..23d83e2e Binary files /dev/null and b/test/pdf/fd/form/F8853.pdf differ diff --git a/test/pdf/fd/form/F88532.pdf b/test/pdf/fd/form/F88532.pdf new file mode 100755 index 00000000..385a2cc7 Binary files /dev/null and b/test/pdf/fd/form/F88532.pdf differ diff --git a/test/pdf/fd/form/F8859.pdf b/test/pdf/fd/form/F8859.pdf new file mode 100755 index 00000000..e7d7527c Binary files /dev/null and b/test/pdf/fd/form/F8859.pdf differ diff --git a/test/pdf/fd/form/F8862.pdf b/test/pdf/fd/form/F8862.pdf new file mode 100755 index 00000000..14959c97 Binary files /dev/null and b/test/pdf/fd/form/F8862.pdf differ diff --git a/test/pdf/fd/form/F8863.pdf b/test/pdf/fd/form/F8863.pdf new file mode 100755 index 00000000..b0f45a9c Binary files /dev/null and b/test/pdf/fd/form/F8863.pdf differ diff --git a/test/pdf/fd/form/F8863P2.pdf b/test/pdf/fd/form/F8863P2.pdf new file mode 100755 index 00000000..14b076c8 Binary files /dev/null and b/test/pdf/fd/form/F8863P2.pdf differ diff --git a/test/pdf/fd/form/F8864.pdf b/test/pdf/fd/form/F8864.pdf new file mode 100755 index 00000000..9bcac6c8 Binary files /dev/null and b/test/pdf/fd/form/F8864.pdf differ diff --git a/test/pdf/fd/form/F8874.pdf b/test/pdf/fd/form/F8874.pdf new file mode 100755 index 00000000..7a245c83 Binary files /dev/null and b/test/pdf/fd/form/F8874.pdf differ diff --git a/test/pdf/fd/form/F8880.pdf b/test/pdf/fd/form/F8880.pdf new file mode 100755 index 00000000..ed0fd9eb Binary files /dev/null and b/test/pdf/fd/form/F8880.pdf differ diff --git a/test/pdf/fd/form/F8881.pdf b/test/pdf/fd/form/F8881.pdf new file mode 100755 index 00000000..a09ade14 Binary files /dev/null and b/test/pdf/fd/form/F8881.pdf differ diff --git a/test/pdf/fd/form/F8882.pdf b/test/pdf/fd/form/F8882.pdf new file mode 100755 index 00000000..8c9eba36 Binary files /dev/null and b/test/pdf/fd/form/F8882.pdf differ diff --git a/test/pdf/fd/form/F8885S.pdf b/test/pdf/fd/form/F8885S.pdf new file mode 100755 index 00000000..9f00a8ce Binary files /dev/null and b/test/pdf/fd/form/F8885S.pdf differ diff --git a/test/pdf/fd/form/F8885T.pdf b/test/pdf/fd/form/F8885T.pdf new file mode 100755 index 00000000..9f00a8ce Binary files /dev/null and b/test/pdf/fd/form/F8885T.pdf differ diff --git a/test/pdf/fd/form/F8886.pdf b/test/pdf/fd/form/F8886.pdf new file mode 100755 index 00000000..b5906ba4 Binary files /dev/null and b/test/pdf/fd/form/F8886.pdf differ diff --git a/test/pdf/fd/form/F8888.pdf b/test/pdf/fd/form/F8888.pdf new file mode 100755 index 00000000..4b6b97f4 Binary files /dev/null and b/test/pdf/fd/form/F8888.pdf differ diff --git a/test/pdf/fd/form/F8889S.pdf b/test/pdf/fd/form/F8889S.pdf new file mode 100755 index 00000000..2f8acd5b Binary files /dev/null and b/test/pdf/fd/form/F8889S.pdf differ diff --git a/test/pdf/fd/form/F8889T.pdf b/test/pdf/fd/form/F8889T.pdf new file mode 100755 index 00000000..2f8acd5b Binary files /dev/null and b/test/pdf/fd/form/F8889T.pdf differ diff --git a/test/pdf/fd/form/F8891.pdf b/test/pdf/fd/form/F8891.pdf new file mode 100755 index 00000000..9d2554af Binary files /dev/null and b/test/pdf/fd/form/F8891.pdf differ diff --git a/test/pdf/fd/form/F8903.pdf b/test/pdf/fd/form/F8903.pdf new file mode 100755 index 00000000..63f31e26 Binary files /dev/null and b/test/pdf/fd/form/F8903.pdf differ diff --git a/test/pdf/fd/form/F8906.pdf b/test/pdf/fd/form/F8906.pdf new file mode 100755 index 00000000..78ad8b41 Binary files /dev/null and b/test/pdf/fd/form/F8906.pdf differ diff --git a/test/pdf/fd/form/F8907.pdf b/test/pdf/fd/form/F8907.pdf new file mode 100755 index 00000000..e3d10228 Binary files /dev/null and b/test/pdf/fd/form/F8907.pdf differ diff --git a/test/pdf/fd/form/F8908.pdf b/test/pdf/fd/form/F8908.pdf new file mode 100755 index 00000000..7be52556 Binary files /dev/null and b/test/pdf/fd/form/F8908.pdf differ diff --git a/test/pdf/fd/form/F8909.pdf b/test/pdf/fd/form/F8909.pdf new file mode 100755 index 00000000..f47fd381 Binary files /dev/null and b/test/pdf/fd/form/F8909.pdf differ diff --git a/test/pdf/fd/form/F8910.pdf b/test/pdf/fd/form/F8910.pdf new file mode 100755 index 00000000..759b4c43 Binary files /dev/null and b/test/pdf/fd/form/F8910.pdf differ diff --git a/test/pdf/fd/form/F8911.pdf b/test/pdf/fd/form/F8911.pdf new file mode 100755 index 00000000..a47340d3 Binary files /dev/null and b/test/pdf/fd/form/F8911.pdf differ diff --git a/test/pdf/fd/form/F8917.pdf b/test/pdf/fd/form/F8917.pdf new file mode 100755 index 00000000..cc2b5666 Binary files /dev/null and b/test/pdf/fd/form/F8917.pdf differ diff --git a/test/pdf/fd/form/F8919S.pdf b/test/pdf/fd/form/F8919S.pdf new file mode 100755 index 00000000..1ba4f652 Binary files /dev/null and b/test/pdf/fd/form/F8919S.pdf differ diff --git a/test/pdf/fd/form/F8919T.pdf b/test/pdf/fd/form/F8919T.pdf new file mode 100755 index 00000000..c52812e8 Binary files /dev/null and b/test/pdf/fd/form/F8919T.pdf differ diff --git a/test/pdf/fd/form/F8931.pdf b/test/pdf/fd/form/F8931.pdf new file mode 100755 index 00000000..a83c99ca Binary files /dev/null and b/test/pdf/fd/form/F8931.pdf differ diff --git a/test/pdf/fd/form/F8932.pdf b/test/pdf/fd/form/F8932.pdf new file mode 100755 index 00000000..d9e54e1b Binary files /dev/null and b/test/pdf/fd/form/F8932.pdf differ diff --git a/test/pdf/fd/form/F8933.pdf b/test/pdf/fd/form/F8933.pdf new file mode 100755 index 00000000..b8d8c1b6 Binary files /dev/null and b/test/pdf/fd/form/F8933.pdf differ diff --git a/test/pdf/fd/form/F8936.pdf b/test/pdf/fd/form/F8936.pdf new file mode 100755 index 00000000..13fda24f Binary files /dev/null and b/test/pdf/fd/form/F8936.pdf differ diff --git a/test/pdf/fd/form/F8938.pdf b/test/pdf/fd/form/F8938.pdf new file mode 100755 index 00000000..9f48efb4 Binary files /dev/null and b/test/pdf/fd/form/F8938.pdf differ diff --git a/test/pdf/fd/form/F8941.pdf b/test/pdf/fd/form/F8941.pdf new file mode 100755 index 00000000..637a8d08 Binary files /dev/null and b/test/pdf/fd/form/F8941.pdf differ diff --git a/test/pdf/fd/form/F8941S.pdf b/test/pdf/fd/form/F8941S.pdf new file mode 100755 index 00000000..114be799 Binary files /dev/null and b/test/pdf/fd/form/F8941S.pdf differ diff --git a/test/pdf/fd/form/F8949LT.pdf b/test/pdf/fd/form/F8949LT.pdf new file mode 100755 index 00000000..17c03fd2 Binary files /dev/null and b/test/pdf/fd/form/F8949LT.pdf differ diff --git a/test/pdf/fd/form/F8949ST.pdf b/test/pdf/fd/form/F8949ST.pdf new file mode 100755 index 00000000..ef28667d Binary files /dev/null and b/test/pdf/fd/form/F8949ST.pdf differ diff --git a/test/pdf/fd/form/F8959.pdf b/test/pdf/fd/form/F8959.pdf new file mode 100755 index 00000000..ca8322cc Binary files /dev/null and b/test/pdf/fd/form/F8959.pdf differ diff --git a/test/pdf/fd/form/F8960.pdf b/test/pdf/fd/form/F8960.pdf new file mode 100755 index 00000000..e3208ce3 Binary files /dev/null and b/test/pdf/fd/form/F8960.pdf differ diff --git a/test/pdf/fd/form/F9465.pdf b/test/pdf/fd/form/F9465.pdf new file mode 100755 index 00000000..b7c0bfeb Binary files /dev/null and b/test/pdf/fd/form/F9465.pdf differ diff --git a/test/pdf/fd/form/F982.pdf b/test/pdf/fd/form/F982.pdf new file mode 100755 index 00000000..dfb3dda5 Binary files /dev/null and b/test/pdf/fd/form/F982.pdf differ diff --git a/test/pdf/fd/form/FDEPEND.pdf b/test/pdf/fd/form/FDEPEND.pdf new file mode 100755 index 00000000..46482c43 Binary files /dev/null and b/test/pdf/fd/form/FDEPEND.pdf differ diff --git a/test/pdf/fd/form/FDEPENDA.pdf b/test/pdf/fd/form/FDEPENDA.pdf new file mode 100755 index 00000000..bc91a4f9 Binary files /dev/null and b/test/pdf/fd/form/FDEPENDA.pdf differ diff --git a/test/pdf/fd/form/FES1.pdf b/test/pdf/fd/form/FES1.pdf new file mode 100755 index 00000000..cf2581c8 Binary files /dev/null and b/test/pdf/fd/form/FES1.pdf differ diff --git a/test/pdf/fd/form/FES2.pdf b/test/pdf/fd/form/FES2.pdf new file mode 100755 index 00000000..2f4b2693 Binary files /dev/null and b/test/pdf/fd/form/FES2.pdf differ diff --git a/test/pdf/fd/form/FES3.pdf b/test/pdf/fd/form/FES3.pdf new file mode 100755 index 00000000..f693ee7d Binary files /dev/null and b/test/pdf/fd/form/FES3.pdf differ diff --git a/test/pdf/fd/form/FES4.pdf b/test/pdf/fd/form/FES4.pdf new file mode 100755 index 00000000..1b47fba3 Binary files /dev/null and b/test/pdf/fd/form/FES4.pdf differ diff --git a/test/pdf/fd/form/FSCHA.pdf b/test/pdf/fd/form/FSCHA.pdf new file mode 100755 index 00000000..ea4f0d7b Binary files /dev/null and b/test/pdf/fd/form/FSCHA.pdf differ diff --git a/test/pdf/fd/form/FSCHB.pdf b/test/pdf/fd/form/FSCHB.pdf new file mode 100755 index 00000000..205aad5b Binary files /dev/null and b/test/pdf/fd/form/FSCHB.pdf differ diff --git a/test/pdf/fd/form/FSCHB2.pdf b/test/pdf/fd/form/FSCHB2.pdf new file mode 100755 index 00000000..fcc42d2e Binary files /dev/null and b/test/pdf/fd/form/FSCHB2.pdf differ diff --git a/test/pdf/fd/form/FSCHB3.pdf b/test/pdf/fd/form/FSCHB3.pdf new file mode 100755 index 00000000..60b37cfd Binary files /dev/null and b/test/pdf/fd/form/FSCHB3.pdf differ diff --git a/test/pdf/fd/form/FSCHC.pdf b/test/pdf/fd/form/FSCHC.pdf new file mode 100755 index 00000000..c3b2e5a0 Binary files /dev/null and b/test/pdf/fd/form/FSCHC.pdf differ diff --git a/test/pdf/fd/form/FSCHCEZS.pdf b/test/pdf/fd/form/FSCHCEZS.pdf new file mode 100755 index 00000000..1b82ca76 Binary files /dev/null and b/test/pdf/fd/form/FSCHCEZS.pdf differ diff --git a/test/pdf/fd/form/FSCHCEZT.pdf b/test/pdf/fd/form/FSCHCEZT.pdf new file mode 100755 index 00000000..1b82ca76 Binary files /dev/null and b/test/pdf/fd/form/FSCHCEZT.pdf differ diff --git a/test/pdf/fd/form/FSCHD.pdf b/test/pdf/fd/form/FSCHD.pdf new file mode 100755 index 00000000..6275b0a6 Binary files /dev/null and b/test/pdf/fd/form/FSCHD.pdf differ diff --git a/test/pdf/fd/form/FSCHE1.pdf b/test/pdf/fd/form/FSCHE1.pdf new file mode 100755 index 00000000..3d6b0c0c Binary files /dev/null and b/test/pdf/fd/form/FSCHE1.pdf differ diff --git a/test/pdf/fd/form/FSCHE2.pdf b/test/pdf/fd/form/FSCHE2.pdf new file mode 100755 index 00000000..78df91fc Binary files /dev/null and b/test/pdf/fd/form/FSCHE2.pdf differ diff --git a/test/pdf/fd/form/FSCHEIC.pdf b/test/pdf/fd/form/FSCHEIC.pdf new file mode 100755 index 00000000..aa30bec1 Binary files /dev/null and b/test/pdf/fd/form/FSCHEIC.pdf differ diff --git a/test/pdf/fd/form/FSCHF.pdf b/test/pdf/fd/form/FSCHF.pdf new file mode 100755 index 00000000..a9387683 Binary files /dev/null and b/test/pdf/fd/form/FSCHF.pdf differ diff --git a/test/pdf/fd/form/FSCHHS.pdf b/test/pdf/fd/form/FSCHHS.pdf new file mode 100755 index 00000000..d60f9011 Binary files /dev/null and b/test/pdf/fd/form/FSCHHS.pdf differ diff --git a/test/pdf/fd/form/FSCHHT.pdf b/test/pdf/fd/form/FSCHHT.pdf new file mode 100755 index 00000000..f191b53d Binary files /dev/null and b/test/pdf/fd/form/FSCHHT.pdf differ diff --git a/test/pdf/fd/form/FSCHJ.pdf b/test/pdf/fd/form/FSCHJ.pdf new file mode 100755 index 00000000..0c4d8e70 Binary files /dev/null and b/test/pdf/fd/form/FSCHJ.pdf differ diff --git a/test/pdf/fd/form/FSCHR.pdf b/test/pdf/fd/form/FSCHR.pdf new file mode 100755 index 00000000..17faae09 Binary files /dev/null and b/test/pdf/fd/form/FSCHR.pdf differ diff --git a/test/pdf/fd/form/FSCHSELS.pdf b/test/pdf/fd/form/FSCHSELS.pdf new file mode 100755 index 00000000..19065619 Binary files /dev/null and b/test/pdf/fd/form/FSCHSELS.pdf differ diff --git a/test/pdf/fd/form/FSCHSELT.pdf b/test/pdf/fd/form/FSCHSELT.pdf new file mode 100755 index 00000000..19065619 Binary files /dev/null and b/test/pdf/fd/form/FSCHSELT.pdf differ diff --git a/test/pdf/fd/form/FSCHSESS.pdf b/test/pdf/fd/form/FSCHSESS.pdf new file mode 100755 index 00000000..ce2e869b Binary files /dev/null and b/test/pdf/fd/form/FSCHSESS.pdf differ diff --git a/test/pdf/fd/form/FSCHSEST.pdf b/test/pdf/fd/form/FSCHSEST.pdf new file mode 100755 index 00000000..ce2e869b Binary files /dev/null and b/test/pdf/fd/form/FSCHSEST.pdf differ diff --git a/test/pdf/fd/form/FW2G.pdf b/test/pdf/fd/form/FW2G.pdf new file mode 100755 index 00000000..6e966be7 Binary files /dev/null and b/test/pdf/fd/form/FW2G.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040.pdf b/test/pdf/fd/inst/fd_ins_1040.pdf new file mode 100755 index 00000000..82eb197b Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchA.pdf b/test/pdf/fd/inst/fd_ins_1040SchA.pdf new file mode 100755 index 00000000..df3985c9 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchA.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchC.pdf b/test/pdf/fd/inst/fd_ins_1040SchC.pdf new file mode 100755 index 00000000..b069395d Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchC.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchCEZ.pdf b/test/pdf/fd/inst/fd_ins_1040SchCEZ.pdf new file mode 100755 index 00000000..2abf449d Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchCEZ.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchD.pdf b/test/pdf/fd/inst/fd_ins_1040SchD.pdf new file mode 100755 index 00000000..d011d908 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchD.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchE.pdf b/test/pdf/fd/inst/fd_ins_1040SchE.pdf new file mode 100755 index 00000000..5aed655b Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchE.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchF.pdf b/test/pdf/fd/inst/fd_ins_1040SchF.pdf new file mode 100755 index 00000000..8a44f1fc Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchF.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchH.pdf b/test/pdf/fd/inst/fd_ins_1040SchH.pdf new file mode 100755 index 00000000..8ea4fb77 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchH.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchJ.pdf b/test/pdf/fd/inst/fd_ins_1040SchJ.pdf new file mode 100755 index 00000000..91c46e50 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchJ.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040SchSE.pdf b/test/pdf/fd/inst/fd_ins_1040SchSE.pdf new file mode 100755 index 00000000..ce053f36 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040SchSE.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040a.pdf b/test/pdf/fd/inst/fd_ins_1040a.pdf new file mode 100755 index 00000000..666faa47 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040a.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040es.pdf b/test/pdf/fd/inst/fd_ins_1040es.pdf new file mode 100755 index 00000000..bacaf2fe Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040es.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040ez.pdf b/test/pdf/fd/inst/fd_ins_1040ez.pdf new file mode 100755 index 00000000..3879afbc Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040ez.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1040v.pdf b/test/pdf/fd/inst/fd_ins_1040v.pdf new file mode 100755 index 00000000..b135da94 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1040v.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1116.pdf b/test/pdf/fd/inst/fd_ins_1116.pdf new file mode 100755 index 00000000..510bc52f Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1116.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_1310.pdf b/test/pdf/fd/inst/fd_ins_1310.pdf new file mode 100755 index 00000000..161edcca Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_1310.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2106.pdf b/test/pdf/fd/inst/fd_ins_2106.pdf new file mode 100755 index 00000000..4fa668ef Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2106.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2106EZ.pdf b/test/pdf/fd/inst/fd_ins_2106EZ.pdf new file mode 100755 index 00000000..7641a5ed Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2106EZ.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2120.pdf b/test/pdf/fd/inst/fd_ins_2120.pdf new file mode 100755 index 00000000..61fb3d1e Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2120.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2210.pdf b/test/pdf/fd/inst/fd_ins_2210.pdf new file mode 100755 index 00000000..516adeef Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2210.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2210F.pdf b/test/pdf/fd/inst/fd_ins_2210F.pdf new file mode 100755 index 00000000..f8f7a9f7 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2210F.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2439.pdf b/test/pdf/fd/inst/fd_ins_2439.pdf new file mode 100755 index 00000000..acf6d5ca Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2439.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2441.pdf b/test/pdf/fd/inst/fd_ins_2441.pdf new file mode 100755 index 00000000..14eb8363 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2441.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2555.pdf b/test/pdf/fd/inst/fd_ins_2555.pdf new file mode 100755 index 00000000..fba95a00 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2555.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_2555EZ.pdf b/test/pdf/fd/inst/fd_ins_2555EZ.pdf new file mode 100755 index 00000000..89ee17a3 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_2555EZ.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_3468.pdf b/test/pdf/fd/inst/fd_ins_3468.pdf new file mode 100755 index 00000000..0fb8fec3 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_3468.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_3800.pdf b/test/pdf/fd/inst/fd_ins_3800.pdf new file mode 100755 index 00000000..96f3c6f6 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_3800.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_3903.pdf b/test/pdf/fd/inst/fd_ins_3903.pdf new file mode 100755 index 00000000..b5ef808b Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_3903.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4136.pdf b/test/pdf/fd/inst/fd_ins_4136.pdf new file mode 100755 index 00000000..6d4b7a94 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4136.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4137.pdf b/test/pdf/fd/inst/fd_ins_4137.pdf new file mode 100755 index 00000000..fd21b6e5 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4137.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4255.pdf b/test/pdf/fd/inst/fd_ins_4255.pdf new file mode 100755 index 00000000..aa3f82d1 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4255.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4562.pdf b/test/pdf/fd/inst/fd_ins_4562.pdf new file mode 100755 index 00000000..7fe1cd98 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4562.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4684.pdf b/test/pdf/fd/inst/fd_ins_4684.pdf new file mode 100755 index 00000000..e8d15890 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4684.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4797.pdf b/test/pdf/fd/inst/fd_ins_4797.pdf new file mode 100755 index 00000000..695739a8 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4797.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4835.pdf b/test/pdf/fd/inst/fd_ins_4835.pdf new file mode 100755 index 00000000..31b85674 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4835.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4868.pdf b/test/pdf/fd/inst/fd_ins_4868.pdf new file mode 100755 index 00000000..df608296 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4868.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4952.pdf b/test/pdf/fd/inst/fd_ins_4952.pdf new file mode 100755 index 00000000..53a3c95b Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4952.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_4972.pdf b/test/pdf/fd/inst/fd_ins_4972.pdf new file mode 100755 index 00000000..a1079415 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_4972.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_5329.pdf b/test/pdf/fd/inst/fd_ins_5329.pdf new file mode 100755 index 00000000..f438ef7d Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_5329.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_5405.pdf b/test/pdf/fd/inst/fd_ins_5405.pdf new file mode 100755 index 00000000..2886f9a3 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_5405.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_5695.pdf b/test/pdf/fd/inst/fd_ins_5695.pdf new file mode 100755 index 00000000..28f0ee61 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_5695.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_5884.pdf b/test/pdf/fd/inst/fd_ins_5884.pdf new file mode 100755 index 00000000..d75f5aa9 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_5884.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_6198.pdf b/test/pdf/fd/inst/fd_ins_6198.pdf new file mode 100755 index 00000000..143010a7 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_6198.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_6251.pdf b/test/pdf/fd/inst/fd_ins_6251.pdf new file mode 100755 index 00000000..011de704 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_6251.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_6252.pdf b/test/pdf/fd/inst/fd_ins_6252.pdf new file mode 100755 index 00000000..475a158f Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_6252.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_6478.pdf b/test/pdf/fd/inst/fd_ins_6478.pdf new file mode 100755 index 00000000..ef607eba Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_6478.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_6765.pdf b/test/pdf/fd/inst/fd_ins_6765.pdf new file mode 100755 index 00000000..d5f49204 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_6765.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_6781.pdf b/test/pdf/fd/inst/fd_ins_6781.pdf new file mode 100755 index 00000000..3b141a42 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_6781.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8082.pdf b/test/pdf/fd/inst/fd_ins_8082.pdf new file mode 100755 index 00000000..15651454 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8082.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8275.pdf b/test/pdf/fd/inst/fd_ins_8275.pdf new file mode 100755 index 00000000..aa53f856 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8275.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8275R.pdf b/test/pdf/fd/inst/fd_ins_8275R.pdf new file mode 100755 index 00000000..2d15fbd7 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8275R.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8283.pdf b/test/pdf/fd/inst/fd_ins_8283.pdf new file mode 100755 index 00000000..368f6893 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8283.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8379.pdf b/test/pdf/fd/inst/fd_ins_8379.pdf new file mode 100755 index 00000000..beb32ab0 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8379.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8396.pdf b/test/pdf/fd/inst/fd_ins_8396.pdf new file mode 100755 index 00000000..785de14a Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8396.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8582.pdf b/test/pdf/fd/inst/fd_ins_8582.pdf new file mode 100755 index 00000000..82c6f761 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8582.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8582CR.pdf b/test/pdf/fd/inst/fd_ins_8582CR.pdf new file mode 100755 index 00000000..36698eb9 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8582CR.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8586.pdf b/test/pdf/fd/inst/fd_ins_8586.pdf new file mode 100755 index 00000000..6777df5f Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8586.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8594.pdf b/test/pdf/fd/inst/fd_ins_8594.pdf new file mode 100755 index 00000000..0286e672 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8594.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8606.pdf b/test/pdf/fd/inst/fd_ins_8606.pdf new file mode 100755 index 00000000..bec970b0 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8606.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8609a.pdf b/test/pdf/fd/inst/fd_ins_8609a.pdf new file mode 100755 index 00000000..6b78352b Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8609a.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8611.pdf b/test/pdf/fd/inst/fd_ins_8611.pdf new file mode 100755 index 00000000..ed3226ec Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8611.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8615.pdf b/test/pdf/fd/inst/fd_ins_8615.pdf new file mode 100755 index 00000000..f0d20a9f Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8615.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8689.pdf b/test/pdf/fd/inst/fd_ins_8689.pdf new file mode 100755 index 00000000..035ab6d4 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8689.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8697.pdf b/test/pdf/fd/inst/fd_ins_8697.pdf new file mode 100755 index 00000000..79320344 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8697.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8801.pdf b/test/pdf/fd/inst/fd_ins_8801.pdf new file mode 100755 index 00000000..1fa245cf Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8801.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8812.pdf b/test/pdf/fd/inst/fd_ins_8812.pdf new file mode 100755 index 00000000..8a2cc987 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8812.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8814.pdf b/test/pdf/fd/inst/fd_ins_8814.pdf new file mode 100755 index 00000000..b780a255 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8814.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8815.pdf b/test/pdf/fd/inst/fd_ins_8815.pdf new file mode 100755 index 00000000..93ecc911 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8815.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8820.pdf b/test/pdf/fd/inst/fd_ins_8820.pdf new file mode 100755 index 00000000..3c942f79 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8820.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8824.pdf b/test/pdf/fd/inst/fd_ins_8824.pdf new file mode 100755 index 00000000..5b828f8e Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8824.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8826.pdf b/test/pdf/fd/inst/fd_ins_8826.pdf new file mode 100755 index 00000000..7d6d6beb Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8826.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8828.pdf b/test/pdf/fd/inst/fd_ins_8828.pdf new file mode 100755 index 00000000..39a1f9c9 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8828.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8829.pdf b/test/pdf/fd/inst/fd_ins_8829.pdf new file mode 100755 index 00000000..19298c08 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8829.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8833.pdf b/test/pdf/fd/inst/fd_ins_8833.pdf new file mode 100755 index 00000000..6d54b560 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8833.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8834.pdf b/test/pdf/fd/inst/fd_ins_8834.pdf new file mode 100755 index 00000000..5ea7fee2 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8834.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8839.pdf b/test/pdf/fd/inst/fd_ins_8839.pdf new file mode 100755 index 00000000..5f95da82 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8839.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8844.pdf b/test/pdf/fd/inst/fd_ins_8844.pdf new file mode 100755 index 00000000..1b7209f5 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8844.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8845.pdf b/test/pdf/fd/inst/fd_ins_8845.pdf new file mode 100755 index 00000000..449c2de0 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8845.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8846.pdf b/test/pdf/fd/inst/fd_ins_8846.pdf new file mode 100755 index 00000000..a1778fac Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8846.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8853.pdf b/test/pdf/fd/inst/fd_ins_8853.pdf new file mode 100755 index 00000000..4633bc9c Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8853.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8859.pdf b/test/pdf/fd/inst/fd_ins_8859.pdf new file mode 100755 index 00000000..7d3399d6 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8859.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8862.pdf b/test/pdf/fd/inst/fd_ins_8862.pdf new file mode 100755 index 00000000..a2b1f60f Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8862.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8863.pdf b/test/pdf/fd/inst/fd_ins_8863.pdf new file mode 100755 index 00000000..752146e8 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8863.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8864.pdf b/test/pdf/fd/inst/fd_ins_8864.pdf new file mode 100755 index 00000000..856ed248 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8864.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8874.pdf b/test/pdf/fd/inst/fd_ins_8874.pdf new file mode 100755 index 00000000..dc4a3f03 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8874.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8880.pdf b/test/pdf/fd/inst/fd_ins_8880.pdf new file mode 100755 index 00000000..0513a251 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8880.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8881.pdf b/test/pdf/fd/inst/fd_ins_8881.pdf new file mode 100755 index 00000000..da29824e Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8881.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8882.pdf b/test/pdf/fd/inst/fd_ins_8882.pdf new file mode 100755 index 00000000..4ed3e9f5 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8882.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8885.pdf b/test/pdf/fd/inst/fd_ins_8885.pdf new file mode 100755 index 00000000..6b6d28af Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8885.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8886.pdf b/test/pdf/fd/inst/fd_ins_8886.pdf new file mode 100755 index 00000000..95fd8d5c Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8886.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8888.pdf b/test/pdf/fd/inst/fd_ins_8888.pdf new file mode 100755 index 00000000..e499723c Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8888.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8889.pdf b/test/pdf/fd/inst/fd_ins_8889.pdf new file mode 100755 index 00000000..bb6e5813 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8889.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8891.pdf b/test/pdf/fd/inst/fd_ins_8891.pdf new file mode 100755 index 00000000..176e43a4 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8891.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8903.pdf b/test/pdf/fd/inst/fd_ins_8903.pdf new file mode 100755 index 00000000..237b76b8 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8903.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8906.pdf b/test/pdf/fd/inst/fd_ins_8906.pdf new file mode 100755 index 00000000..7a07eacb Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8906.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8907.pdf b/test/pdf/fd/inst/fd_ins_8907.pdf new file mode 100755 index 00000000..617b863b Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8907.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8908.pdf b/test/pdf/fd/inst/fd_ins_8908.pdf new file mode 100755 index 00000000..a05888b6 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8908.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8909.pdf b/test/pdf/fd/inst/fd_ins_8909.pdf new file mode 100755 index 00000000..e1264717 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8909.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8910.pdf b/test/pdf/fd/inst/fd_ins_8910.pdf new file mode 100755 index 00000000..963038c2 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8910.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8911.pdf b/test/pdf/fd/inst/fd_ins_8911.pdf new file mode 100755 index 00000000..6c53f2bf Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8911.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8917.pdf b/test/pdf/fd/inst/fd_ins_8917.pdf new file mode 100755 index 00000000..707ba20d Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8917.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8919.pdf b/test/pdf/fd/inst/fd_ins_8919.pdf new file mode 100755 index 00000000..f065faaf Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8919.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8931.pdf b/test/pdf/fd/inst/fd_ins_8931.pdf new file mode 100755 index 00000000..d3d9406d Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8931.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8932.pdf b/test/pdf/fd/inst/fd_ins_8932.pdf new file mode 100755 index 00000000..6ba227f2 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8932.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8933.pdf b/test/pdf/fd/inst/fd_ins_8933.pdf new file mode 100755 index 00000000..282afaf5 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8933.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8936.pdf b/test/pdf/fd/inst/fd_ins_8936.pdf new file mode 100755 index 00000000..06320054 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8936.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8938.pdf b/test/pdf/fd/inst/fd_ins_8938.pdf new file mode 100755 index 00000000..669fa080 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8938.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8941.pdf b/test/pdf/fd/inst/fd_ins_8941.pdf new file mode 100755 index 00000000..cecd5a51 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8941.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8949.pdf b/test/pdf/fd/inst/fd_ins_8949.pdf new file mode 100755 index 00000000..862044e8 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8949.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8959.pdf b/test/pdf/fd/inst/fd_ins_8959.pdf new file mode 100755 index 00000000..96ca5133 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8959.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_8960.pdf b/test/pdf/fd/inst/fd_ins_8960.pdf new file mode 100755 index 00000000..85452461 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_8960.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_9465.pdf b/test/pdf/fd/inst/fd_ins_9465.pdf new file mode 100755 index 00000000..5f7e4d25 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_9465.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_982.pdf b/test/pdf/fd/inst/fd_ins_982.pdf new file mode 100755 index 00000000..ec5077ab Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_982.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_SchB.pdf b/test/pdf/fd/inst/fd_ins_SchB.pdf new file mode 100755 index 00000000..3a25bd1a Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_SchB.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_SchEIC.pdf b/test/pdf/fd/inst/fd_ins_SchEIC.pdf new file mode 100755 index 00000000..c9ddb07d Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_SchEIC.pdf differ diff --git a/test/pdf/fd/inst/fd_ins_SchR.pdf b/test/pdf/fd/inst/fd_ins_SchR.pdf new file mode 100755 index 00000000..ce02cb96 Binary files /dev/null and b/test/pdf/fd/inst/fd_ins_SchR.pdf differ diff --git a/test/pdf/ia/form/ia_scr_1040.pdf b/test/pdf/ia/form/ia_scr_1040.pdf new file mode 100755 index 00000000..3281a083 Binary files /dev/null and b/test/pdf/ia/form/ia_scr_1040.pdf differ diff --git a/test/pdf/ia/form/ia_scr_1040scha.pdf b/test/pdf/ia/form/ia_scr_1040scha.pdf new file mode 100755 index 00000000..3e50d5b0 Binary files /dev/null and b/test/pdf/ia/form/ia_scr_1040scha.pdf differ diff --git a/test/pdf/ia/form/ia_scr_1040schb.pdf b/test/pdf/ia/form/ia_scr_1040schb.pdf new file mode 100755 index 00000000..beb72b8f Binary files /dev/null and b/test/pdf/ia/form/ia_scr_1040schb.pdf differ diff --git a/test/pdf/ia/form/ia_scr_1040v.pdf b/test/pdf/ia/form/ia_scr_1040v.pdf new file mode 100755 index 00000000..5320905f Binary files /dev/null and b/test/pdf/ia/form/ia_scr_1040v.pdf differ diff --git a/test/pdf/ia/form/ia_scr_130.pdf b/test/pdf/ia/form/ia_scr_130.pdf new file mode 100755 index 00000000..5628a35a Binary files /dev/null and b/test/pdf/ia/form/ia_scr_130.pdf differ diff --git a/test/pdf/ia/form/ia_scr_148.pdf b/test/pdf/ia/form/ia_scr_148.pdf new file mode 100755 index 00000000..ba2a9b81 Binary files /dev/null and b/test/pdf/ia/form/ia_scr_148.pdf differ diff --git a/test/pdf/ia/form/ia_scr_4136.pdf b/test/pdf/ia/form/ia_scr_4136.pdf new file mode 100755 index 00000000..965f68fe Binary files /dev/null and b/test/pdf/ia/form/ia_scr_4136.pdf differ diff --git a/test/pdf/ia/form/ia_scr_4562a.pdf b/test/pdf/ia/form/ia_scr_4562a.pdf new file mode 100755 index 00000000..ca50349d Binary files /dev/null and b/test/pdf/ia/form/ia_scr_4562a.pdf differ diff --git a/test/pdf/ia/form/ia_scr_4562b.pdf b/test/pdf/ia/form/ia_scr_4562b.pdf new file mode 100755 index 00000000..f3f26904 Binary files /dev/null and b/test/pdf/ia/form/ia_scr_4562b.pdf differ diff --git a/test/pdf/ia/form/ia_scr_6251.pdf b/test/pdf/ia/form/ia_scr_6251.pdf new file mode 100755 index 00000000..0c5df05a Binary files /dev/null and b/test/pdf/ia/form/ia_scr_6251.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_1040.pdf b/test/pdf/ia/inst/ia_ins_1040.pdf new file mode 100755 index 00000000..87fe31e9 Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_1040.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_1040v.pdf b/test/pdf/ia/inst/ia_ins_1040v.pdf new file mode 100755 index 00000000..4c5f5381 Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_1040v.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_130.pdf b/test/pdf/ia/inst/ia_ins_130.pdf new file mode 100755 index 00000000..e494b64a Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_130.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_148.pdf b/test/pdf/ia/inst/ia_ins_148.pdf new file mode 100755 index 00000000..f929bf0c Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_148.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_4136.pdf b/test/pdf/ia/inst/ia_ins_4136.pdf new file mode 100755 index 00000000..81126b50 Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_4136.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_4562a.pdf b/test/pdf/ia/inst/ia_ins_4562a.pdf new file mode 100755 index 00000000..a4135dcc Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_4562a.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_4562b.pdf b/test/pdf/ia/inst/ia_ins_4562b.pdf new file mode 100755 index 00000000..9d0aa8b5 Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_4562b.pdf differ diff --git a/test/pdf/ia/inst/ia_ins_6251.pdf b/test/pdf/ia/inst/ia_ins_6251.pdf new file mode 100755 index 00000000..fd8eea37 Binary files /dev/null and b/test/pdf/ia/inst/ia_ins_6251.pdf differ diff --git a/test/pdf/misc/i200_test.pdf b/test/pdf/misc/i200_test.pdf new file mode 100644 index 00000000..bcf40e47 Binary files /dev/null and b/test/pdf/misc/i200_test.pdf differ diff --git a/test/pdf/misc/i221_tianjin_invoice.pdf b/test/pdf/misc/i221_tianjin_invoice.pdf new file mode 100644 index 00000000..adf695a2 Binary files /dev/null and b/test/pdf/misc/i221_tianjin_invoice.pdf differ diff --git a/test/pdf/misc/i242_testingWithTable.pdf b/test/pdf/misc/i242_testingWithTable.pdf new file mode 100644 index 00000000..b41278bf Binary files /dev/null and b/test/pdf/misc/i242_testingWithTable.pdf differ diff --git a/test/pdf/misc/i243_problem_file_anon.pdf b/test/pdf/misc/i243_problem_file_anon.pdf new file mode 100644 index 00000000..d4652dc3 Binary files /dev/null and b/test/pdf/misc/i243_problem_file_anon.pdf differ diff --git a/test/pdf/misc/i26_crash_18277.pdf b/test/pdf/misc/i26_crash_18277.pdf new file mode 100644 index 00000000..094cfa84 Binary files /dev/null and b/test/pdf/misc/i26_crash_18277.pdf differ diff --git a/test/pdf/misc/i28_line_break_210.pdf b/test/pdf/misc/i28_line_break_210.pdf new file mode 100644 index 00000000..8dbfbc69 Binary files /dev/null and b/test/pdf/misc/i28_line_break_210.pdf differ diff --git a/test/pdf/misc/i43_encrypted.pdf b/test/pdf/misc/i43_encrypted.pdf new file mode 100644 index 00000000..cb5533c5 Binary files /dev/null and b/test/pdf/misc/i43_encrypted.pdf differ diff --git a/test/pdf/misc/i64_schedule_generator.pdf b/test/pdf/misc/i64_schedule_generator.pdf new file mode 100644 index 00000000..ab88eff7 Binary files /dev/null and b/test/pdf/misc/i64_schedule_generator.pdf differ diff --git a/test/pdf/nd/form/ND1.pdf b/test/pdf/nd/form/ND1.pdf new file mode 100755 index 00000000..23093f79 Binary files /dev/null and b/test/pdf/nd/form/ND1.pdf differ diff --git a/test/pdf/nd/form/ND1CR.pdf b/test/pdf/nd/form/ND1CR.pdf new file mode 100755 index 00000000..d43ccd0e Binary files /dev/null and b/test/pdf/nd/form/ND1CR.pdf differ diff --git a/test/pdf/nd/form/ND1SA.pdf b/test/pdf/nd/form/ND1SA.pdf new file mode 100755 index 00000000..db9164c2 Binary files /dev/null and b/test/pdf/nd/form/ND1SA.pdf differ diff --git a/test/pdf/nd/form/ND1TC.pdf b/test/pdf/nd/form/ND1TC.pdf new file mode 100755 index 00000000..1efe5585 Binary files /dev/null and b/test/pdf/nd/form/ND1TC.pdf differ diff --git a/test/pdf/nd/form/NDEZ.pdf b/test/pdf/nd/form/NDEZ.pdf new file mode 100755 index 00000000..6417de98 Binary files /dev/null and b/test/pdf/nd/form/NDEZ.pdf differ diff --git a/test/pdf/nd/form/VOUCHEF.pdf b/test/pdf/nd/form/VOUCHEF.pdf new file mode 100755 index 00000000..577b67cf Binary files /dev/null and b/test/pdf/nd/form/VOUCHEF.pdf differ diff --git a/test/pdf/nd/inst/EXPL01.pdf b/test/pdf/nd/inst/EXPL01.pdf new file mode 100755 index 00000000..d7185cf0 Binary files /dev/null and b/test/pdf/nd/inst/EXPL01.pdf differ diff --git a/test/pdf/nd/inst/Federal Info Wks_Flowable.pdf b/test/pdf/nd/inst/Federal Info Wks_Flowable.pdf new file mode 100755 index 00000000..c6c8c534 Binary files /dev/null and b/test/pdf/nd/inst/Federal Info Wks_Flowable.pdf differ diff --git a/test/pdf/nd/inst/NDSchCode.pdf b/test/pdf/nd/inst/NDSchCode.pdf new file mode 100755 index 00000000..2c98cb0c Binary files /dev/null and b/test/pdf/nd/inst/NDSchCode.pdf differ diff --git a/test/pdf/nd/inst/nd_ins_1v.pdf b/test/pdf/nd/inst/nd_ins_1v.pdf new file mode 100755 index 00000000..1517202c Binary files /dev/null and b/test/pdf/nd/inst/nd_ins_1v.pdf differ diff --git a/test/pdf/nd/inst/nd_ins_cr.pdf b/test/pdf/nd/inst/nd_ins_cr.pdf new file mode 100755 index 00000000..1f541c6c Binary files /dev/null and b/test/pdf/nd/inst/nd_ins_cr.pdf differ diff --git a/test/pdf/nd/inst/nd_ins_nd1.pdf b/test/pdf/nd/inst/nd_ins_nd1.pdf new file mode 100755 index 00000000..2fa89db9 Binary files /dev/null and b/test/pdf/nd/inst/nd_ins_nd1.pdf differ diff --git a/test/pdf/nd/inst/nd_ins_nd1tc.pdf b/test/pdf/nd/inst/nd_ins_nd1tc.pdf new file mode 100755 index 00000000..4de51435 Binary files /dev/null and b/test/pdf/nd/inst/nd_ins_nd1tc.pdf differ diff --git a/test/pdf/nd/inst/nd_ins_sa.pdf b/test/pdf/nd/inst/nd_ins_sa.pdf new file mode 100755 index 00000000..7c1c4b3a Binary files /dev/null and b/test/pdf/nd/inst/nd_ins_sa.pdf differ diff --git a/test/pdf/nd/inst/nd_ins_taxtable.pdf b/test/pdf/nd/inst/nd_ins_taxtable.pdf new file mode 100755 index 00000000..f77d1462 Binary files /dev/null and b/test/pdf/nd/inst/nd_ins_taxtable.pdf differ diff --git a/test/pdf/nd/inst/nd_ins_tc.pdf b/test/pdf/nd/inst/nd_ins_tc.pdf new file mode 100755 index 00000000..aece10b5 Binary files /dev/null and b/test/pdf/nd/inst/nd_ins_tc.pdf differ diff --git a/test/pdf/or/form/OR10.pdf b/test/pdf/or/form/OR10.pdf new file mode 100755 index 00000000..a070023f Binary files /dev/null and b/test/pdf/or/form/OR10.pdf differ diff --git a/test/pdf/or/form/OR40.pdf b/test/pdf/or/form/OR40.pdf new file mode 100755 index 00000000..d2fe8847 Binary files /dev/null and b/test/pdf/or/form/OR40.pdf differ diff --git a/test/pdf/or/form/OR40DEP.pdf b/test/pdf/or/form/OR40DEP.pdf new file mode 100755 index 00000000..14409387 Binary files /dev/null and b/test/pdf/or/form/OR40DEP.pdf differ diff --git a/test/pdf/or/form/OR529.pdf b/test/pdf/or/form/OR529.pdf new file mode 100755 index 00000000..400242b6 Binary files /dev/null and b/test/pdf/or/form/OR529.pdf differ diff --git a/test/pdf/or/form/ORASC.pdf b/test/pdf/or/form/ORASC.pdf new file mode 100755 index 00000000..b4a261d4 Binary files /dev/null and b/test/pdf/or/form/ORASC.pdf differ diff --git a/test/pdf/or/form/ORSCHA.pdf b/test/pdf/or/form/ORSCHA.pdf new file mode 100755 index 00000000..b1b3e7ba Binary files /dev/null and b/test/pdf/or/form/ORSCHA.pdf differ diff --git a/test/pdf/or/form/ORWFC.pdf b/test/pdf/or/form/ORWFC.pdf new file mode 100755 index 00000000..6b147fe2 Binary files /dev/null and b/test/pdf/or/form/ORWFC.pdf differ diff --git a/test/pdf/or/form/ORWFCDEP.pdf b/test/pdf/or/form/ORWFCDEP.pdf new file mode 100755 index 00000000..3b4f9de0 Binary files /dev/null and b/test/pdf/or/form/ORWFCDEP.pdf differ diff --git a/test/pdf/or/form/VOUCH.pdf b/test/pdf/or/form/VOUCH.pdf new file mode 100755 index 00000000..cca1fb76 Binary files /dev/null and b/test/pdf/or/form/VOUCH.pdf differ diff --git a/test/pdf/or/inst/Federal Info Wks_ORD_Flowable.pdf b/test/pdf/or/inst/Federal Info Wks_ORD_Flowable.pdf new file mode 100755 index 00000000..23e6a6a0 Binary files /dev/null and b/test/pdf/or/inst/Federal Info Wks_ORD_Flowable.pdf differ diff --git a/test/pdf/or/inst/NotSpt.pdf b/test/pdf/or/inst/NotSpt.pdf new file mode 100755 index 00000000..7ec37acd Binary files /dev/null and b/test/pdf/or/inst/NotSpt.pdf differ diff --git a/test/pdf/or/inst/or_ins_10.pdf b/test/pdf/or/inst/or_ins_10.pdf new file mode 100755 index 00000000..b588c99e Binary files /dev/null and b/test/pdf/or/inst/or_ins_10.pdf differ diff --git a/test/pdf/or/inst/or_ins_40.pdf b/test/pdf/or/inst/or_ins_40.pdf new file mode 100755 index 00000000..890a1699 Binary files /dev/null and b/test/pdf/or/inst/or_ins_40.pdf differ diff --git a/test/pdf/or/inst/or_ins_ORSCHA.pdf b/test/pdf/or/inst/or_ins_ORSCHA.pdf new file mode 100755 index 00000000..df3985c9 Binary files /dev/null and b/test/pdf/or/inst/or_ins_ORSCHA.pdf differ diff --git a/test/pdf/or/inst/or_ins_WFC.pdf b/test/pdf/or/inst/or_ins_WFC.pdf new file mode 100755 index 00000000..4398da4d Binary files /dev/null and b/test/pdf/or/inst/or_ins_WFC.pdf differ diff --git a/test/pdf/pa/form/DEP.pdf b/test/pdf/pa/form/DEP.pdf new file mode 100755 index 00000000..81972336 Binary files /dev/null and b/test/pdf/pa/form/DEP.pdf differ diff --git a/test/pdf/pa/form/F8453.pdf b/test/pdf/pa/form/F8453.pdf new file mode 100755 index 00000000..2c28df02 Binary files /dev/null and b/test/pdf/pa/form/F8453.pdf differ diff --git a/test/pdf/pa/form/PA40.pdf b/test/pdf/pa/form/PA40.pdf new file mode 100755 index 00000000..1746766f Binary files /dev/null and b/test/pdf/pa/form/PA40.pdf differ diff --git a/test/pdf/pa/form/PAC.pdf b/test/pdf/pa/form/PAC.pdf new file mode 100755 index 00000000..e2fb9b71 Binary files /dev/null and b/test/pdf/pa/form/PAC.pdf differ diff --git a/test/pdf/pa/form/PASCHOC.pdf b/test/pdf/pa/form/PASCHOC.pdf new file mode 100755 index 00000000..f99058d3 Binary files /dev/null and b/test/pdf/pa/form/PASCHOC.pdf differ diff --git a/test/pdf/pa/form/SCHABT.pdf b/test/pdf/pa/form/SCHABT.pdf new file mode 100755 index 00000000..309d2ca6 Binary files /dev/null and b/test/pdf/pa/form/SCHABT.pdf differ diff --git a/test/pdf/pa/form/SCHDT.pdf b/test/pdf/pa/form/SCHDT.pdf new file mode 100755 index 00000000..b6b460df Binary files /dev/null and b/test/pdf/pa/form/SCHDT.pdf differ diff --git a/test/pdf/pa/form/SCHJT.pdf b/test/pdf/pa/form/SCHJT.pdf new file mode 100755 index 00000000..33e93ca9 Binary files /dev/null and b/test/pdf/pa/form/SCHJT.pdf differ diff --git a/test/pdf/pa/form/SCHO.pdf b/test/pdf/pa/form/SCHO.pdf new file mode 100755 index 00000000..d9769bba Binary files /dev/null and b/test/pdf/pa/form/SCHO.pdf differ diff --git a/test/pdf/pa/form/SE.pdf b/test/pdf/pa/form/SE.pdf new file mode 100755 index 00000000..02616cf2 Binary files /dev/null and b/test/pdf/pa/form/SE.pdf differ diff --git a/test/pdf/pa/form/SSP.pdf b/test/pdf/pa/form/SSP.pdf new file mode 100755 index 00000000..d6960e98 Binary files /dev/null and b/test/pdf/pa/form/SSP.pdf differ diff --git a/test/pdf/pa/form/SUE.pdf b/test/pdf/pa/form/SUE.pdf new file mode 100755 index 00000000..8282c345 Binary files /dev/null and b/test/pdf/pa/form/SUE.pdf differ diff --git a/test/pdf/pa/form/VOUCH.pdf b/test/pdf/pa/form/VOUCH.pdf new file mode 100755 index 00000000..8a29d849 Binary files /dev/null and b/test/pdf/pa/form/VOUCH.pdf differ diff --git a/test/pdf/pa/form/W2S.pdf b/test/pdf/pa/form/W2S.pdf new file mode 100755 index 00000000..27e836d3 Binary files /dev/null and b/test/pdf/pa/form/W2S.pdf differ diff --git a/test/pdf/pa/inst/pa_expl01.pdf b/test/pdf/pa/inst/pa_expl01.pdf new file mode 100755 index 00000000..d7185cf0 Binary files /dev/null and b/test/pdf/pa/inst/pa_expl01.pdf differ diff --git a/test/pdf/pa/inst/pa_ins_8453.pdf b/test/pdf/pa/inst/pa_ins_8453.pdf new file mode 100755 index 00000000..273dfabc Binary files /dev/null and b/test/pdf/pa/inst/pa_ins_8453.pdf differ diff --git a/test/pdf/pa/inst/pa_ins_IncTable.pdf b/test/pdf/pa/inst/pa_ins_IncTable.pdf new file mode 100755 index 00000000..031f09a9 Binary files /dev/null and b/test/pdf/pa/inst/pa_ins_IncTable.pdf differ diff --git a/test/pdf/pa/inst/pa_ins_pa-v.pdf b/test/pdf/pa/inst/pa_ins_pa-v.pdf new file mode 100755 index 00000000..8ae0d43d Binary files /dev/null and b/test/pdf/pa/inst/pa_ins_pa-v.pdf differ diff --git a/test/pdf/pa/inst/pa_ins_pa40.pdf b/test/pdf/pa/inst/pa_ins_pa40.pdf new file mode 100755 index 00000000..47e338b2 Binary files /dev/null and b/test/pdf/pa/inst/pa_ins_pa40.pdf differ diff --git a/test/pdf/pa/inst/pa_ins_schc.pdf b/test/pdf/pa/inst/pa_ins_schc.pdf new file mode 100755 index 00000000..d4367d2c Binary files /dev/null and b/test/pdf/pa/inst/pa_ins_schc.pdf differ diff --git a/test/pdf/pa/inst/pa_ins_schoc.pdf b/test/pdf/pa/inst/pa_ins_schoc.pdf new file mode 100755 index 00000000..9013ec06 Binary files /dev/null and b/test/pdf/pa/inst/pa_ins_schoc.pdf differ diff --git a/test/pdf/pa/inst/pa_schoolcode.pdf b/test/pdf/pa/inst/pa_schoolcode.pdf new file mode 100755 index 00000000..fd6b9793 Binary files /dev/null and b/test/pdf/pa/inst/pa_schoolcode.pdf differ diff --git a/test/pdf/sc/form/F1040.pdf b/test/pdf/sc/form/F1040.pdf new file mode 100755 index 00000000..a49ef161 Binary files /dev/null and b/test/pdf/sc/form/F1040.pdf differ diff --git a/test/pdf/sc/form/F1040DEP.pdf b/test/pdf/sc/form/F1040DEP.pdf new file mode 100755 index 00000000..c97ac9af Binary files /dev/null and b/test/pdf/sc/form/F1040DEP.pdf differ diff --git a/test/pdf/sc/form/F319.pdf b/test/pdf/sc/form/F319.pdf new file mode 100755 index 00000000..57f26019 Binary files /dev/null and b/test/pdf/sc/form/F319.pdf differ diff --git a/test/pdf/sc/form/F330.pdf b/test/pdf/sc/form/F330.pdf new file mode 100755 index 00000000..7c0ec205 Binary files /dev/null and b/test/pdf/sc/form/F330.pdf differ diff --git a/test/pdf/sc/form/F8453.pdf b/test/pdf/sc/form/F8453.pdf new file mode 100755 index 00000000..49056aac Binary files /dev/null and b/test/pdf/sc/form/F8453.pdf differ diff --git a/test/pdf/sc/form/VOUCHEF.pdf b/test/pdf/sc/form/VOUCHEF.pdf new file mode 100755 index 00000000..68a69de6 Binary files /dev/null and b/test/pdf/sc/form/VOUCHEF.pdf differ diff --git a/test/pdf/sc/inst/NotSpt.pdf b/test/pdf/sc/inst/NotSpt.pdf new file mode 100755 index 00000000..7ec37acd Binary files /dev/null and b/test/pdf/sc/inst/NotSpt.pdf differ diff --git a/test/pdf/sc/inst/SCCntyCd.pdf b/test/pdf/sc/inst/SCCntyCd.pdf new file mode 100755 index 00000000..7cd7ef4d Binary files /dev/null and b/test/pdf/sc/inst/SCCntyCd.pdf differ diff --git a/test/pdf/sc/inst/sc_ins_1040.pdf b/test/pdf/sc/inst/sc_ins_1040.pdf new file mode 100755 index 00000000..7571d85f Binary files /dev/null and b/test/pdf/sc/inst/sc_ins_1040.pdf differ diff --git a/test/pdf/sc/inst/sc_ins_1040V.pdf b/test/pdf/sc/inst/sc_ins_1040V.pdf new file mode 100755 index 00000000..5431ec1d Binary files /dev/null and b/test/pdf/sc/inst/sc_ins_1040V.pdf differ diff --git a/test/pdf/sc/inst/sc_ins_319.pdf b/test/pdf/sc/inst/sc_ins_319.pdf new file mode 100755 index 00000000..f7ec055c Binary files /dev/null and b/test/pdf/sc/inst/sc_ins_319.pdf differ diff --git a/test/pdf/sc/inst/sc_ins_330.pdf b/test/pdf/sc/inst/sc_ins_330.pdf new file mode 100755 index 00000000..9eb62c63 Binary files /dev/null and b/test/pdf/sc/inst/sc_ins_330.pdf differ diff --git a/test/pdf/sc/inst/sc_ins_8453.pdf b/test/pdf/sc/inst/sc_ins_8453.pdf new file mode 100755 index 00000000..ed4985d4 Binary files /dev/null and b/test/pdf/sc/inst/sc_ins_8453.pdf differ diff --git a/test/pdf/va/form/VA760.pdf b/test/pdf/va/form/VA760.pdf new file mode 100755 index 00000000..472a2bef Binary files /dev/null and b/test/pdf/va/form/VA760.pdf differ diff --git a/test/pdf/va/form/VA760C.pdf b/test/pdf/va/form/VA760C.pdf new file mode 100755 index 00000000..a3ed7f75 Binary files /dev/null and b/test/pdf/va/form/VA760C.pdf differ diff --git a/test/pdf/va/form/VA760F.pdf b/test/pdf/va/form/VA760F.pdf new file mode 100755 index 00000000..7d7a6d72 Binary files /dev/null and b/test/pdf/va/form/VA760F.pdf differ diff --git a/test/pdf/va/form/VA760PFF.pdf b/test/pdf/va/form/VA760PFF.pdf new file mode 100755 index 00000000..f53d9a3a Binary files /dev/null and b/test/pdf/va/form/VA760PFF.pdf differ diff --git a/test/pdf/va/form/VAADJ.pdf b/test/pdf/va/form/VAADJ.pdf new file mode 100755 index 00000000..1fbe356e Binary files /dev/null and b/test/pdf/va/form/VAADJ.pdf differ diff --git a/test/pdf/va/form/VAFED.pdf b/test/pdf/va/form/VAFED.pdf new file mode 100755 index 00000000..14a6bcad Binary files /dev/null and b/test/pdf/va/form/VAFED.pdf differ diff --git a/test/pdf/va/form/VAOSC.pdf b/test/pdf/va/form/VAOSC.pdf new file mode 100755 index 00000000..ea7882fb Binary files /dev/null and b/test/pdf/va/form/VAOSC.pdf differ diff --git a/test/pdf/va/form/VASCR.pdf b/test/pdf/va/form/VASCR.pdf new file mode 100755 index 00000000..48b7a95b Binary files /dev/null and b/test/pdf/va/form/VASCR.pdf differ diff --git a/test/pdf/va/form/VASCR2.pdf b/test/pdf/va/form/VASCR2.pdf new file mode 100755 index 00000000..8a5a316b Binary files /dev/null and b/test/pdf/va/form/VASCR2.pdf differ diff --git a/test/pdf/va/form/VASCR3.pdf b/test/pdf/va/form/VASCR3.pdf new file mode 100755 index 00000000..49217eba Binary files /dev/null and b/test/pdf/va/form/VASCR3.pdf differ diff --git a/test/pdf/va/form/VOUCHEF.pdf b/test/pdf/va/form/VOUCHEF.pdf new file mode 100755 index 00000000..a68e936f Binary files /dev/null and b/test/pdf/va/form/VOUCHEF.pdf differ diff --git a/test/pdf/va/inst/SchFound.pdf b/test/pdf/va/inst/SchFound.pdf new file mode 100755 index 00000000..17640984 Binary files /dev/null and b/test/pdf/va/inst/SchFound.pdf differ diff --git a/test/pdf/va/inst/VA SchFED Ins_Flowable.pdf b/test/pdf/va/inst/VA SchFED Ins_Flowable.pdf new file mode 100755 index 00000000..7570d1c5 Binary files /dev/null and b/test/pdf/va/inst/VA SchFED Ins_Flowable.pdf differ diff --git a/test/pdf/va/inst/VALoclCd.pdf b/test/pdf/va/inst/VALoclCd.pdf new file mode 100755 index 00000000..d6b38f50 Binary files /dev/null and b/test/pdf/va/inst/VALoclCd.pdf differ diff --git a/test/pdf/va/inst/va_expl01.pdf b/test/pdf/va/inst/va_expl01.pdf new file mode 100755 index 00000000..d7185cf0 Binary files /dev/null and b/test/pdf/va/inst/va_expl01.pdf differ diff --git a/test/pdf/va/inst/va_ins_760c.pdf b/test/pdf/va/inst/va_ins_760c.pdf new file mode 100755 index 00000000..aee85666 Binary files /dev/null and b/test/pdf/va/inst/va_ins_760c.pdf differ diff --git a/test/pdf/va/inst/va_ins_760cg.pdf b/test/pdf/va/inst/va_ins_760cg.pdf new file mode 100755 index 00000000..25a868c5 Binary files /dev/null and b/test/pdf/va/inst/va_ins_760cg.pdf differ diff --git a/test/pdf/va/inst/va_ins_760f.pdf b/test/pdf/va/inst/va_ins_760f.pdf new file mode 100755 index 00000000..3e57b6b7 Binary files /dev/null and b/test/pdf/va/inst/va_ins_760f.pdf differ diff --git a/test/pdf/va/inst/va_ins_760pff.pdf b/test/pdf/va/inst/va_ins_760pff.pdf new file mode 100755 index 00000000..272febba Binary files /dev/null and b/test/pdf/va/inst/va_ins_760pff.pdf differ diff --git a/test/pdf/va/inst/va_ins_760pmt.pdf b/test/pdf/va/inst/va_ins_760pmt.pdf new file mode 100755 index 00000000..e6b5200f Binary files /dev/null and b/test/pdf/va/inst/va_ins_760pmt.pdf differ diff --git a/test/pdf/va/inst/va_ins_efinstructions.pdf b/test/pdf/va/inst/va_ins_efinstructions.pdf new file mode 100755 index 00000000..68890dbf Binary files /dev/null and b/test/pdf/va/inst/va_ins_efinstructions.pdf differ diff --git a/test/pdf/va/inst/va_ins_schcr.pdf b/test/pdf/va/inst/va_ins_schcr.pdf new file mode 100755 index 00000000..8b09978d Binary files /dev/null and b/test/pdf/va/inst/va_ins_schcr.pdf differ diff --git a/test/pdf/va/inst/va_ins_schfed.pdf b/test/pdf/va/inst/va_ins_schfed.pdf new file mode 100755 index 00000000..ed766293 Binary files /dev/null and b/test/pdf/va/inst/va_ins_schfed.pdf differ